diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..c2658d7d1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..e69de29bb diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..c2b2682c3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: node_js +node_js: + - "4.1" + - "4.0" + - "0.12" + - "0.11" + - "0.10" + - "iojs" +notifications: + slack: sdtwarriors:lcO6puoKPxDSLQu9MzfFbtbF diff --git a/Procfile b/Procfile new file mode 100644 index 000000000..44899d931 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +worker: node bot.js diff --git a/bot.js b/bot.js index 00eb7b9bd..97d83d087 100755 --- a/bot.js +++ b/bot.js @@ -26,7 +26,7 @@ This bot demonstrates many of the core features of Botkit: Run your bot from the command line: set token= - + node bot.js # USE THE BOT: @@ -65,7 +65,6 @@ This bot demonstrates many of the core features of Botkit: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/ - if (!process.env.token) { console.log('Error: Specify token in environment'); process.exit(1); @@ -74,6 +73,8 @@ if (!process.env.token) { var MathHelper = require('./botmath.js'); var Botkit = require('./lib/Botkit.js'); var os = require('os'); +var botmath = require('./botmath.js'); +var weather = require('weather-js'); var controller = Botkit.slackbot({ debug: true, @@ -83,6 +84,32 @@ var bot = controller.spawn({ token: process.env.token }).startRTM(); +// Weather +controller.hears(['weather (.*)'],'direct_message,direct_mention,mention',function(bot, message) { + var location = message.text.match(/weather (.*)/i); + var array= location[1].split(" "); + if(array[0]=='in'){ + location=array[1]; + } + else{ + location=array[0]; + } + weather.find({search: location+', FI', degreeType: 'C'}, function(err, result) { + try{ + var array = result; + var temp = array[0].current.temperature; + var feeltemp = array[0].current.feelslike; + var place = array[0].current.observationpoint; + var skytext = array[0].current.skytext; + bot.reply(message, "Right now in "+place+" the sky is "+skytext+". It's "+temp+'C but it feels like '+feeltemp+'C to be honest.'); + } + catch(err){ + bot.reply(message,'I don\'t understand.'); + console.log(err); + } + }); +}); + controller.hears(['hello','hi'],'direct_message,direct_mention,mention',function(bot, message) { @@ -122,6 +149,34 @@ controller.hears(['call me (.*)'],'direct_message,direct_mention,mention',functi }); }); +controller.on('user_channel_join',function(bot,message) { + var rnd = (process.uptime()*1000)%4; + switch(rnd){ + case 0: + bot.reply(message,'Starved of living'); + bot.reply(message,'a life beleaguered'); + bot.reply(message,'some welcome death'); + break; + case 1: + bot.reply(message,'wedding cake'); + bot.reply(message,'filled with fruits and nuts'); + bot.reply(message,'welcome family'); + break; + case 2: + bot.reply(message,'Is your song of spring'); + bot.reply(message,'a welcoming?'); + bot.reply(message,'for you are welcome, so sing.'); + break; + case 3: + bot.reply(message,'Submarines sinking ships'); + bot.reply(message,'and Red Baron in the skies'); + bot.reply(message,'welcome to the war'); + break; + default: + bot.reply(message,'welcome to the channel.'); + } +}); + controller.hears(['what is my name','who am i'],'direct_message,direct_mention,mention',function(bot, message) { controller.storage.users.get(message.user,function(err, user) { @@ -169,6 +224,8 @@ controller.hears(['uptime','identify yourself','who are you','what is your name' }); +// Fibonacci + controller.hears(['fibonacci'], 'direct_message,direct_mention,mention', function(bot, message) { if (message.text === 'fibonacci') { bot.reply(message, '1, 1, 2, 3, 5, 8, 13, 21, 34, 55'); @@ -177,9 +234,9 @@ controller.hears(['fibonacci'], 'direct_message,direct_mention,mention', functio controller.hears(['fibonacci ([0-9]+)'], 'direct_message,direct_mention,mention', function(bot, message) { var parameter = parseInt(message.match[1]); - + var fibonacci = calculateFibonacciUpto(parameter); - + if (fibonacci[fibonacci.length-1] !== parameter) { bot.reply(message, 'That is not a Fibonacci number!'); } @@ -190,11 +247,11 @@ controller.hears(['fibonacci ([0-9]+)'], 'direct_message,direct_mention,mention' function calculateFibonacciUpto(goal) { var fibonacci = [1, 1]; - + while (fibonacci[fibonacci.length-1] < goal) { fibonacci.push(fibonacci[fibonacci.length-2] + fibonacci[fibonacci.length-1]); } - + return fibonacci; } @@ -216,6 +273,18 @@ function formatUptime(uptime) { return uptime; } +controller.hears('what is (.*) \\+ (.*)',['direct_message', 'direct_mention', 'mention'],function(bot,message) { + + var num1 = message.match[1]; + var num2 = message.match[2]; + + if (num1 != null && num2 != null) { + return bot.reply(message, num1 + ' + ' + num2 + ' = ' + botmath.sum(num1, num2)); + } +}); + +// Prime + controller.hears('prime',['direct_message', 'direct_mention', 'mention'],function(bot,message) { if (message.text === "prime") { return bot.reply(message, '2, 3, 5, 7, 11, 13, 17, 19, 23, 29'); @@ -231,12 +300,15 @@ controller.hears('prime (.*)',['direct_message', 'direct_mention', 'mention'],fu var number = parameter + 1; while (primes.length < 10) { + if(number < 2) + break; if (MathHelper.isPrime(number)) { primes.push(number); } - number++; + number--; + console.log(number); } var reply = ""; @@ -250,4 +322,3 @@ controller.hears('prime (.*)',['direct_message', 'direct_mention', 'mention'],fu return bot.reply(message, "your parameter: " + parameter + " is not Prime number"); } }); - diff --git a/botmath.js b/botmath.js old mode 100644 new mode 100755 index 20c4242a3..7431ad5d8 --- a/botmath.js +++ b/botmath.js @@ -1,5 +1,11 @@ +var sum = function (num1, num2) { + return parseFloat(num1) + parseFloat(num2); +} + +module.exports.sum = sum; + var isPrime = function (n) { - if (isNaN(n) || !isFinite(n) || n%1 || n<2) return false; + if (isNaN(n) || !isFinite(n) || n%1 || n<2) return false; if (n%2==0) return (n==2); var m=Math.sqrt(n); for (var i=3;i<=m;i+=2) { @@ -10,3 +16,14 @@ var isPrime = function (n) { module.exports.isPrime = isPrime; +function calculateFibonacciUpto(goal) { + var fibonacci = [1, 1]; + + while (fibonacci[fibonacci.length-1] < goal) { + fibonacci.push(fibonacci[fibonacci.length-2] + fibonacci[fibonacci.length-1]); + } + + return fibonacci; +} + +module.exports.calculateFibonacciUpto = calculateFibonacciUpto; diff --git a/isolate-0x2de24a0-v8.log b/isolate-0x2de24a0-v8.log new file mode 100644 index 000000000..265b09cab --- /dev/null +++ b/isolate-0x2de24a0-v8.log @@ -0,0 +1,7135 @@ +v8-version,4,6,85,31,0 +shared-library,"/usr/local/bin/node",0x00400000,0x017c4000 +shared-library,"262ec37bb000-262ec37bc000",0x262ec37bb000,0x262ec37bc000 +shared-library,"/lib/x86_64-linux-gnu/libc-2.21.so",0x7f66176e3000,0x7f66178a3000 +shared-library,"/lib/x86_64-linux-gnu/libpthread-2.21.so",0x7f6617aad000,0x7f6617ac5000 +shared-library,"/lib/x86_64-linux-gnu/libgcc_s.so.1",0x7f6617ccb000,0x7f6617ce1000 +shared-library,"/lib/x86_64-linux-gnu/libm-2.21.so",0x7f6617ee1000,0x7f6617fe8000 +shared-library,"/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.20",0x7f66181e9000,0x7f66182d9000 +shared-library,"/lib/x86_64-linux-gnu/librt-2.21.so",0x7f66184f8000,0x7f66184ff000 +shared-library,"/lib/x86_64-linux-gnu/libdl-2.21.so",0x7f6618700000,0x7f6618703000 +shared-library,"/lib/x86_64-linux-gnu/ld-2.21.so",0x7f6618904000,0x7f6618928000 +shared-library,"[vdso]",0x7fffc2959000,0x7fffc295b000 +shared-library,"[vsyscall]",0xffffffffff600000,0xffffffffff601000 +profiler,"begin",1 +tick,0xb1aa50,534,0,0x0,4 +tick,0x7f6617843112,1589,0,0x0,4 +tick,0xbe2d10,17861,0,0x0,1 +tick,0xb1e7df,18513,0,0x0,1 +code-creation,Stub,2,0xe02c6406000,446,"ArrayNoArgumentConstructorStub" +code-creation,Stub,2,0xe02c64061c0,556,"CEntryStub" +code-creation,Handler,3,0xe02c6406400,120,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6406480,332,"BinaryOpICStub" +code-creation,Stub,2,0xe02c64065e0,184,"DoubleToIStub" +code-creation,Handler,3,0xe02c64066a0,120,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6406720,2694,"RecordWriteStub" +code-creation,Stub,2,0xe02c64071c0,388,"StoreBufferOverflowStub" +code-creation,Stub,11,0xe02c6407360,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c6407440,232,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6407540,336,"StoreFastElementStub" +code-creation,Stub,11,0xe02c64076a0,256,"BinaryOpICStub" +code-creation,Stub,11,0xe02c64077a0,220,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6407880,446,"InternalArrayNoArgumentConstructorStub" +code-creation,Stub,2,0xe02c6407a40,1242,"FastNewContextStub" +code-creation,CallIC,8,0xe02c6407f20,533,"A call IC from the snapshot" +code-creation,Builtin,4,0xe02c6408140,413,"ArgumentsAdaptorTrampoline" +code-creation,Stub,2,0xe02c64082e0,380,"CEntryStub" +code-creation,Stub,2,0xe02c6408460,446,"CreateWeakCellStub" +code-creation,Stub,2,0xe02c6408620,2722,"RecordWriteStub" +code-creation,Stub,2,0xe02c64090e0,2672,"RecordWriteStub" +code-creation,Handler,3,0xe02c6409b60,272,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6409c80,2684,"RecordWriteStub" +code-creation,Stub,2,0xe02c640a700,2702,"RecordWriteStub" +code-creation,Stub,2,0xe02c640b1a0,974,"StoreFastElementStub" +code-creation,Stub,2,0xe02c640b580,2672,"RecordWriteStub" +code-creation,Stub,2,0xe02c640c000,188,"DoubleToIStub" +code-creation,Stub,2,0xe02c640c0c0,321,"StoreArrayLiteralElementStub" +code-creation,Stub,2,0xe02c640c220,1819,"RecordWriteStub" +code-creation,Stub,2,0xe02c640c940,168,"StoreBufferOverflowStub" +code-creation,CallIC,8,0xe02c640ca00,533,"A call IC from the snapshot" +code-creation,Stub,12,0xe02c640cc20,187,"CompareICStub" +code-creation,Handler,3,0xe02c640cce0,112,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c640cd60,120,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c640cde0,332,"BinaryOpICStub" +code-creation,Stub,11,0xe02c640cf40,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c640d020,471,"BinaryOpICStub" +code-creation,Stub,11,0xe02c640d200,212,"BinaryOpICStub" +code-creation,Stub,2,0xe02c640d2e0,626,"ArraySingleArgumentConstructorStub" +code-creation,Stub,11,0xe02c640d560,152,"BinaryOpICStub" +code-creation,Stub,2,0xe02c640d600,234,"CallFunctionStub" +code-creation,Stub,2,0xe02c640d700,594,"ArrayNArgumentsConstructorStub" +code-creation,Stub,2,0xe02c640d960,394,"FastNewContextStub" +code-creation,Stub,2,0xe02c640db00,572,"TypeofStub" +code-creation,Stub,11,0xe02c640dd40,284,"BinaryOpICStub" +code-creation,CallIC,8,0xe02c640de60,113,"A call IC from the snapshot" +code-creation,CallIC,8,0xe02c640dee0,368,"A call IC from the snapshot" +code-creation,Stub,2,0xe02c640e060,278,"ArrayConstructorStub" +code-creation,Stub,2,0xe02c640e180,486,"ArrayNoArgumentConstructorStub" +code-creation,Stub,2,0xe02c640e380,502,"ArrayNoArgumentConstructorStub" +code-creation,Stub,2,0xe02c640e580,446,"ArrayNoArgumentConstructorStub" +code-creation,Stub,2,0xe02c640e740,446,"ArrayNoArgumentConstructorStub" +code-creation,Stub,2,0xe02c640e900,466,"ArrayNoArgumentConstructorStub" +code-creation,Stub,2,0xe02c640eae0,466,"ArrayNoArgumentConstructorStub" +code-creation,Stub,11,0xe02c640ecc0,284,"BinaryOpICStub" +code-creation,Handler,3,0xe02c640ede0,244,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c640eee0,244,"An IC handler from the snapshot" +code-creation,Stub,12,0xe02c640efe0,195,"CompareICStub" +code-creation,Stub,11,0xe02c640f0c0,438,"BinaryOpICStub" +code-creation,Stub,11,0xe02c640f280,256,"BinaryOpICStub" +code-creation,Stub,2,0xe02c640f380,1805,"RecordWriteStub" +code-creation,Stub,2,0xe02c640faa0,586,"ArraySingleArgumentConstructorStub" +code-creation,Stub,2,0xe02c640fd00,1608,"FastCloneShallowArrayStub" +code-creation,Stub,2,0xe02c6410360,466,"ArrayNoArgumentConstructorStub" +code-creation,Stub,2,0xe02c6410540,2700,"RecordWriteStub" +code-creation,Handler,3,0xe02c6410fe0,120,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6411060,292,"BinaryOpICStub" +code-creation,Stub,11,0xe02c64111a0,220,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6411280,538,"ArgumentsAccessStub" +code-creation,Stub,11,0xe02c64114a0,232,"BinaryOpICStub" +code-creation,Stub,11,0xe02c64115a0,212,"BinaryOpICStub" +code-creation,Handler,3,0xe02c6411680,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6411700,220,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c64117e0,344,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6411940,332,"StoreFastElementStub" +code-creation,Stub,2,0xe02c6411aa0,188,"DoubleToIStub" +code-creation,Stub,2,0xe02c6411b60,353,"ArgumentsAccessStub" +code-creation,Stub,11,0xe02c6411ce0,232,"BinaryOpICStub" +code-creation,CallIC,8,0xe02c6411de0,113,"A call IC from the snapshot" +code-creation,Stub,11,0xe02c6411e60,486,"BinaryOpICStub" +code-creation,CallIC,8,0xe02c6412060,113,"A call IC from the snapshot" +code-creation,CallIC,8,0xe02c64120e0,533,"A call IC from the snapshot" +code-creation,Handler,3,0xe02c6412300,120,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6412380,434,"BinaryOpICStub" +code-creation,Stub,11,0xe02c6412540,332,"BinaryOpICStub" +code-creation,Handler,3,0xe02c64126a0,120,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6412720,462,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6412900,586,"ArraySingleArgumentConstructorStub" +code-creation,Stub,11,0xe02c6412b60,256,"BinaryOpICStub" +code-creation,Handler,3,0xe02c6412c60,272,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6412d80,510,"CreateAllocationSiteStub" +code-creation,Stub,2,0xe02c6412f80,2723,"RecordWriteStub" +code-creation,Stub,2,0xe02c6413a40,2680,"RecordWriteStub" +code-creation,Stub,11,0xe02c64144c0,458,"BinaryOpICStub" +code-creation,Stub,11,0xe02c64146a0,152,"BinaryOpICStub" +code-creation,Stub,11,0xe02c6414740,212,"BinaryOpICStub" +code-creation,Handler,3,0xe02c6414820,112,"An IC handler from the snapshot" +code-creation,CallIC,8,0xe02c64148a0,113,"A call IC from the snapshot" +code-creation,CallIC,8,0xe02c6414920,634,"A call IC from the snapshot" +code-creation,Stub,2,0xe02c6414ba0,458,"ToObjectStub" +code-creation,Handler,3,0xe02c6414d80,272,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6414ea0,462,"BinaryOpICStub" +code-creation,Handler,3,0xe02c6415080,220,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6415160,372,"JSEntryStub" +code-creation,Stub,11,0xe02c64152e0,458,"BinaryOpICStub" +code-creation,Stub,11,0xe02c64154c0,292,"BinaryOpICStub" +code-creation,Stub,11,0xe02c6415600,434,"BinaryOpICStub" +code-creation,Stub,2,0xe02c64157c0,958,"StoreFastElementStub" +code-creation,Stub,2,0xe02c6415b80,234,"CallFunctionStub" +code-creation,Handler,3,0xe02c6415c80,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6415d00,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6415d80,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6415e00,220,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6415ee0,152,"BinaryOpICStub" +code-creation,CallIC,8,0xe02c6415f80,634,"A call IC from the snapshot" +code-creation,Handler,3,0xe02c6416200,220,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c64162e0,220,"BinaryOpICStub" +code-creation,CallIC,8,0xe02c64163c0,113,"A call IC from the snapshot" +code-creation,CallIC,8,0xe02c6416440,527,"A call IC from the snapshot" +code-creation,Stub,11,0xe02c6416660,256,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6416760,1786,"RecordWriteStub" +code-creation,Stub,2,0xe02c6416e60,1222,"FastNewContextStub" +code-creation,Handler,3,0xe02c6417340,160,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c64173e0,566,"InternalArraySingleArgumentConstructorStub" +code-creation,Handler,3,0xe02c6417620,120,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c64176a0,458,"BinaryOpICStub" +code-creation,Stub,12,0xe02c6417880,173,"CompareICStub" +code-creation,CallIC,8,0xe02c6417940,113,"A call IC from the snapshot" +code-creation,CallIC,8,0xe02c64179c0,533,"A call IC from the snapshot" +code-creation,Stub,2,0xe02c6417be0,524,"CallConstructStub" +code-creation,Handler,3,0xe02c6417e00,220,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6417ee0,586,"ArraySingleArgumentConstructorStub" +code-creation,Stub,2,0xe02c6418140,1077,"StringAddStub" +code-creation,Stub,11,0xe02c6418580,111,"BinaryOpICWithAllocationSiteStub" +code-creation,Stub,2,0xe02c6418600,1177,"BinaryOpWithAllocationSiteStub" +code-creation,Stub,2,0xe02c6418aa0,507,"NumberToStringStub" +code-creation,Stub,2,0xe02c6418ca0,182,"DoubleToIStub" +code-creation,Stub,2,0xe02c6418d60,382,"FastNewContextStub" +code-creation,Stub,11,0xe02c6418ee0,152,"BinaryOpICStub" +code-creation,Handler,3,0xe02c6418f80,112,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6419000,972,"NameDictionaryLookupStub" +code-creation,Stub,11,0xe02c64193e0,438,"BinaryOpICStub" +code-creation,Stub,11,0xe02c64195a0,344,"BinaryOpICStub" +code-creation,Stub,11,0xe02c6419700,438,"BinaryOpICStub" +code-creation,Handler,3,0xe02c64198c0,120,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6419940,606,"ArraySingleArgumentConstructorStub" +code-creation,Stub,11,0xe02c6419ba0,458,"BinaryOpICStub" +code-creation,CallIC,8,0xe02c6419d80,113,"A call IC from the snapshot" +code-creation,CallIC,8,0xe02c6419e00,634,"A call IC from the snapshot" +code-creation,Handler,3,0xe02c641a080,120,"An IC handler from the snapshot" +code-creation,Stub,12,0xe02c641a100,173,"CompareICStub" +code-creation,Handler,3,0xe02c641a1c0,614,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c641a440,494,"FastNewContextStub" +code-creation,Stub,11,0xe02c641a640,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c641a720,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c641a800,332,"BinaryOpICStub" +code-creation,Stub,2,0xe02c641a960,1394,"FastNewContextStub" +code-creation,Stub,2,0xe02c641aee0,422,"FastNewContextStub" +code-creation,Stub,12,0xe02c641b0a0,173,"CompareICStub" +code-creation,CallIC,8,0xe02c641b160,113,"A call IC from the snapshot" +code-creation,Stub,11,0xe02c641b1e0,364,"BinaryOpICStub" +code-creation,LoadIC,6,0xe02c641b360,514,"A load IC from the snapshot" +code-creation,Stub,2,0xe02c641b580,336,"StoreFastElementStub" +code-creation,Stub,11,0xe02c641b6e0,212,"BinaryOpICStub" +code-creation,Handler,3,0xe02c641b7c0,156,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c641b860,116,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c641b8e0,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c641b9c0,256,"BinaryOpICStub" +code-creation,Stub,11,0xe02c641bac0,458,"BinaryOpICStub" +code-creation,Handler,3,0xe02c641bca0,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c641bd20,272,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c641be40,360,"StoreFastElementStub" +code-creation,Handler,3,0xe02c641bfc0,336,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c641c120,152,"BinaryOpICStub" +code-creation,Stub,14,0xe02c641c1c0,151,"ToBooleanStub" +code-creation,KeyedLoadIC,7,0xe02c641c260,381,"A keyed load IC from the snapshot" +code-creation,KeyedLoadIC,7,0xe02c641c3e0,1058,"A keyed load IC from the snapshot" +code-creation,Stub,2,0xe02c641c820,968,"NameDictionaryLookupStub" +code-creation,Stub,2,0xe02c641cc00,958,"StoreFastElementStub" +code-creation,Stub,11,0xe02c641cfc0,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c641d0a0,458,"BinaryOpICStub" +code-creation,Handler,3,0xe02c641d280,272,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c641d3a0,478,"FastNewContextStub" +code-creation,Stub,12,0xe02c641d580,173,"CompareICStub" +code-creation,Stub,11,0xe02c641d640,458,"BinaryOpICStub" +code-creation,Handler,3,0xe02c641d820,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c641d8a0,272,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c641d9c0,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c641da40,112,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c641dac0,434,"BinaryOpICStub" +code-creation,Handler,3,0xe02c641dc80,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c641dd00,120,"An IC handler from the snapshot" +code-creation,CallIC,8,0xe02c641dd80,533,"A call IC from the snapshot" +code-creation,Stub,11,0xe02c641dfa0,332,"BinaryOpICStub" +code-creation,Stub,2,0xe02c641e100,1804,"RecordWriteStub" +code-creation,Stub,12,0xe02c641e820,677,"CompareICStub" +code-creation,Handler,3,0xe02c641eae0,272,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c641ec00,220,"An IC handler from the snapshot" +code-creation,LoadIC,6,0xe02c641ece0,514,"A load IC from the snapshot" +code-creation,Stub,11,0xe02c641ef00,458,"BinaryOpICStub" +code-creation,Stub,11,0xe02c641f0e0,152,"BinaryOpICStub" +code-creation,Handler,3,0xe02c641f180,134,"An IC handler from the snapshot" +code-creation,Builtin,4,0xe02c641f220,122,"LoadIC_Miss" +code-creation,Handler,3,0xe02c641f2a0,120,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c641f320,1344,"BinaryOpWithAllocationSiteStub" +code-creation,Stub,11,0xe02c641f860,152,"BinaryOpICStub" +code-creation,Stub,11,0xe02c641f900,438,"BinaryOpICStub" +code-creation,Stub,13,0xe02c641fac0,151,"CompareNilICStub" +code-creation,Stub,12,0xe02c641fb60,173,"CompareICStub" +code-creation,Stub,2,0xe02c641fc20,116,"StubFailureTrampolineStub" +code-creation,Stub,2,0xe02c641fca0,199,"CallConstructStub" +code-creation,Stub,11,0xe02c641fd80,332,"BinaryOpICStub" +code-creation,Stub,2,0xe02c641fee0,562,"FastNewContextStub" +code-creation,Handler,3,0xe02c6420120,244,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6420220,590,"ArraySingleArgumentConstructorStub" +code-creation,Stub,2,0xe02c6420480,2674,"RecordWriteStub" +code-creation,Stub,11,0xe02c6420f00,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c6420fe0,212,"BinaryOpICStub" +code-creation,Stub,2,0xe02c64210c0,574,"ArrayNArgumentsConstructorStub" +code-creation,Handler,3,0xe02c6421300,120,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6421380,502,"ArrayNArgumentsConstructorStub" +code-creation,Stub,12,0xe02c6421580,187,"CompareICStub" +code-creation,Stub,11,0xe02c6421640,220,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6421720,450,"FastNewContextStub" +code-creation,Stub,2,0xe02c6421900,814,"FastNewContextStub" +code-creation,Handler,3,0xe02c6421c40,220,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6421d20,212,"BinaryOpICStub" +code-creation,CallIC,8,0xe02c6421e00,113,"A call IC from the snapshot" +code-creation,Stub,2,0xe02c6421e80,534,"ArrayNArgumentsConstructorStub" +code-creation,Handler,3,0xe02c64220a0,120,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6422120,566,"ArrayNArgumentsConstructorStub" +code-creation,Handler,3,0xe02c6422360,654,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6422600,117,"StubFailureTrampolineStub" +code-creation,Stub,2,0xe02c6422680,410,"FastNewContextStub" +code-creation,Stub,14,0xe02c6422820,228,"ToBooleanStub" +code-creation,Stub,11,0xe02c6422920,232,"BinaryOpICStub" +code-creation,CallIC,8,0xe02c6422a20,634,"A call IC from the snapshot" +tick,0x7f661772c7b5,20625,0,0x0,4 +tick,0x7f6617abcbfa,20641,0,0x0,4 +code-creation,Stub,11,0xe02c6422ca0,292,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6422de0,958,"StoreFastElementStub" +code-creation,Stub,11,0xe02c64231a0,462,"BinaryOpICStub" +code-creation,Stub,11,0xe02c6423380,458,"BinaryOpICStub" +code-creation,Stub,12,0xe02c6423560,222,"CompareICStub" +code-creation,Stub,2,0xe02c6423640,662,"FastNewContextStub" +code-creation,Stub,2,0xe02c64238e0,482,"InternalArrayNArgumentsConstructorStub" +code-creation,Stub,11,0xe02c6423ae0,458,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6423cc0,360,"StoreFastElementStub" +code-creation,Stub,2,0xe02c6423e40,1834,"RecordWriteStub" +code-creation,Stub,2,0xe02c6424580,360,"StoreFastElementStub" +code-creation,Stub,11,0xe02c6424700,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c64247e0,248,"BinaryOpICStub" +code-creation,Handler,3,0xe02c64248e0,112,"An IC handler from the snapshot" +code-creation,CallIC,8,0xe02c6424960,113,"A call IC from the snapshot" +code-creation,Handler,3,0xe02c64249e0,120,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6424a60,608,"MathPowStub" +code-creation,Stub,2,0xe02c6424cc0,1822,"RecordWriteStub" +code-creation,Stub,11,0xe02c64253e0,220,"BinaryOpICStub" +code-creation,Handler,3,0xe02c64254c0,112,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6425540,272,"An IC handler from the snapshot" +code-creation,CallIC,8,0xe02c6425660,113,"A call IC from the snapshot" +code-creation,Stub,2,0xe02c64256e0,385,"CallApiGetterStub" +code-creation,Stub,11,0xe02c6425880,486,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6425a80,366,"FastNewContextStub" +code-creation,Stub,2,0xe02c6425c00,188,"DoubleToIStub" +code-creation,Handler,3,0xe02c6425cc0,112,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6425d40,292,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6425e80,991,"NameDictionaryLookupStub" +code-creation,Stub,2,0xe02c6426260,1154,"FastNewContextStub" +code-creation,Handler,3,0xe02c6426700,120,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6426780,232,"BinaryOpICStub" +code-creation,Stub,11,0xe02c6426880,232,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6426980,482,"InternalArrayNArgumentsConstructorStub" +code-creation,Handler,3,0xe02c6426b80,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6426c00,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6426c80,272,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6426da0,152,"BinaryOpICStub" +code-creation,Handler,3,0xe02c6426e40,272,"An IC handler from the snapshot" +code-creation,Stub,12,0xe02c6426f60,195,"CompareICStub" +code-creation,Stub,2,0xe02c6427040,766,"FastNewClosureStub" +code-creation,Stub,2,0xe02c6427340,2710,"RecordWriteStub" +code-creation,Stub,2,0xe02c6427de0,918,"FastNewContextStub" +code-creation,Stub,11,0xe02c6428180,152,"BinaryOpICStub" +code-creation,Stub,12,0xe02c6428220,628,"CompareICStub" +code-creation,Stub,11,0xe02c64284a0,284,"BinaryOpICStub" +code-creation,Handler,3,0xe02c64285c0,184,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6428680,284,"BinaryOpICStub" +code-creation,Stub,11,0xe02c64287a0,458,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6428980,199,"CallConstructStub" +code-creation,Stub,2,0xe02c6428a60,566,"InternalArraySingleArgumentConstructorStub" +code-creation,Handler,3,0xe02c6428ca0,244,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6428da0,974,"StoreFastElementStub" +code-creation,Stub,11,0xe02c6429180,332,"BinaryOpICStub" +code-creation,Stub,2,0xe02c64292e0,206,"InternalArrayConstructorStub" +code-creation,Stub,2,0xe02c64293c0,446,"InternalArrayNoArgumentConstructorStub" +code-creation,Stub,11,0xe02c6429580,152,"BinaryOpICStub" +code-creation,Handler,3,0xe02c6429620,120,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c64296a0,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c6429780,486,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6429980,203,"ToNumberStub" +code-creation,Stub,11,0xe02c6429a60,284,"BinaryOpICStub" +code-creation,Stub,11,0xe02c6429b80,434,"BinaryOpICStub" +code-creation,Handler,3,0xe02c6429d40,220,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c6429e20,284,"BinaryOpICStub" +code-creation,Stub,2,0xe02c6429f40,566,"ArrayNArgumentsConstructorStub" +code-creation,Stub,11,0xe02c642a180,111,"BinaryOpICWithAllocationSiteStub" +code-creation,Stub,11,0xe02c642a200,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c642a2e0,232,"BinaryOpICStub" +code-creation,Stub,2,0xe02c642a3e0,1831,"RecordWriteStub" +code-creation,Handler,3,0xe02c642ab20,220,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c642ac00,212,"BinaryOpICStub" +code-creation,Stub,2,0xe02c642ace0,746,"FastNewContextStub" +code-creation,Handler,3,0xe02c642afe0,120,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c642b060,248,"BinaryOpICStub" +code-creation,Stub,11,0xe02c642b160,220,"BinaryOpICStub" +code-creation,Stub,2,0xe02c642b240,372,"JSEntryStub" +code-creation,Stub,12,0xe02c642b3c0,222,"CompareICStub" +code-creation,Handler,3,0xe02c642b4a0,272,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c642b5c0,554,"ArrayNArgumentsConstructorStub" +code-creation,Stub,11,0xe02c642b800,434,"BinaryOpICStub" +code-creation,Stub,11,0xe02c642b9c0,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c642baa0,364,"BinaryOpICStub" +code-creation,Stub,11,0xe02c642bc20,212,"BinaryOpICStub" +code-creation,Stub,11,0xe02c642bd00,220,"BinaryOpICStub" +code-creation,Stub,2,0xe02c642bde0,1786,"RecordWriteStub" +code-creation,Handler,3,0xe02c642c4e0,160,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c642c580,434,"BinaryOpICStub" +code-creation,Stub,13,0xe02c642c740,200,"CompareNilICStub" +code-creation,Stub,11,0xe02c642c820,458,"BinaryOpICStub" +code-creation,Stub,2,0xe02c642ca00,945,"SubStringStub" +code-creation,Stub,11,0xe02c642cdc0,232,"BinaryOpICStub" +code-creation,Handler,3,0xe02c642cec0,112,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c642cf40,232,"BinaryOpICStub" +code-creation,KeyedLoadIC,7,0xe02c642d040,393,"A keyed load IC from the snapshot" +code-creation,Stub,2,0xe02c642d1e0,796,"RecordWriteStub" +code-creation,Stub,11,0xe02c642d500,486,"BinaryOpICStub" +code-creation,Stub,2,0xe02c642d700,834,"FastNewContextStub" +code-creation,Handler,3,0xe02c642da60,272,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c642db80,590,"ArraySingleArgumentConstructorStub" +code-creation,Stub,2,0xe02c642dde0,234,"CallFunctionStub" +code-creation,Stub,11,0xe02c642dee0,296,"BinaryOpICStub" +code-creation,Handler,3,0xe02c642e020,112,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c642e0a0,332,"BinaryOpICStub" +code-creation,Stub,12,0xe02c642e200,173,"CompareICStub" +code-creation,Handler,3,0xe02c642e2c0,120,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c642e340,946,"StoreFastElementStub" +code-creation,Stub,2,0xe02c642e700,962,"StoreFastElementStub" +code-creation,Handler,3,0xe02c642eae0,120,"An IC handler from the snapshot" +code-creation,CallIC,8,0xe02c642eb60,628,"A call IC from the snapshot" +code-creation,Handler,3,0xe02c642ede0,112,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c642ee60,120,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c642eee0,502,"ArrayNArgumentsConstructorStub" +code-creation,Handler,3,0xe02c642f0e0,112,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c642f160,332,"BinaryOpICStub" +code-creation,Handler,3,0xe02c642f2c0,120,"An IC handler from the snapshot" +code-creation,Stub,14,0xe02c642f340,212,"ToBooleanStub" +code-creation,Stub,11,0xe02c642f420,152,"BinaryOpICStub" +code-creation,CallIC,8,0xe02c642f4c0,113,"A call IC from the snapshot" +code-creation,Stub,11,0xe02c642f540,152,"BinaryOpICStub" +code-creation,Stub,2,0xe02c642f5e0,566,"ArraySingleArgumentConstructorStub" +code-creation,Stub,11,0xe02c642f820,212,"BinaryOpICStub" +code-creation,Stub,2,0xe02c642f900,603,"ArrayConstructorStub" +code-creation,Handler,3,0xe02c642fb60,120,"An IC handler from the snapshot" +code-creation,Stub,11,0xe02c642fbe0,462,"BinaryOpICStub" +code-creation,Stub,2,0xe02c642fdc0,438,"FastNewContextStub" +code-creation,Stub,2,0xe02c642ff80,766,"FastNewClosureStub" +code-creation,Stub,2,0xe02c6430280,336,"StoreFastElementStub" +code-creation,Handler,3,0xe02c64303e0,272,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6430500,120,"An IC handler from the snapshot" +code-creation,Stub,2,0xe02c6430580,510,"FastNewContextStub" +code-creation,Handler,3,0xe02c6430780,220,"An IC handler from the snapshot" +code-creation,StoreIC,9,0xe02c6430860,123,"A store IC from the snapshot" +code-creation,StoreIC,9,0xe02c64308e0,123,"A store IC from the snapshot" +code-creation,StoreIC,9,0xe02c6430960,123,"A store IC from the snapshot" +code-creation,StoreIC,9,0xe02c64309e0,123,"A store IC from the snapshot" +code-creation,Builtin,4,0xe02c6430a60,115,"Illegal" +code-creation,Builtin,4,0xe02c6430ae0,569,"JSConstructStubGeneric" +code-creation,Builtin,4,0xe02c6430d20,115,"RestrictedFunctionPropertiesThrower" +code-creation,Builtin,4,0xe02c6430da0,115,"EmptyFunction" +code-creation,Builtin,4,0xe02c6430e20,500,"StringConstructCode" +code-creation,Builtin,4,0xe02c6431020,123,"ArrayCode" +code-creation,Builtin,4,0xe02c64310a0,158,"CompileLazy" +code-creation,Builtin,4,0xe02c6431140,115,"ArrayPush" +code-creation,Builtin,4,0xe02c64311c0,115,"ArrayPop" +code-creation,Builtin,4,0xe02c6431240,115,"ArrayShift" +code-creation,Builtin,4,0xe02c64312c0,115,"ArrayUnshift" +code-creation,Builtin,4,0xe02c6431340,115,"ArraySlice" +code-creation,Builtin,4,0xe02c64313c0,115,"ArraySplice" +code-creation,Builtin,4,0xe02c6431440,115,"ArrayConcat" +code-creation,Builtin,4,0xe02c64314c0,120,"HandleApiCall" +code-creation,Builtin,4,0xe02c6431540,120,"HandleApiCallConstruct" +code-creation,Builtin,4,0xe02c64315c0,115,"HandleApiCallAsFunction" +code-creation,Builtin,4,0xe02c6431640,115,"HandleApiCallAsConstructor" +code-creation,Builtin,4,0xe02c64316c0,115,"RestrictedStrictArgumentsPropertiesThrower" +code-creation,Builtin,4,0xe02c6431740,186,"InOptimizationQueue" +code-creation,Builtin,4,0xe02c6431800,268,"JSConstructStubForDerived" +code-creation,Builtin,4,0xe02c6431920,439,"JSConstructStubApi" +code-creation,Builtin,4,0xe02c6431ae0,260,"JSEntryTrampoline" +code-creation,Builtin,4,0xe02c6431c00,239,"JSConstructEntryTrampoline" +code-creation,Builtin,4,0xe02c6431d00,236,"InterpreterEntryTrampoline" +code-creation,Builtin,4,0xe02c6431e00,100,"InterpreterExitTrampoline" +code-creation,Builtin,4,0xe02c6431e80,170,"CompileOptimized" +code-creation,Builtin,4,0xe02c6431f40,170,"CompileOptimizedConcurrent" +code-creation,Builtin,4,0xe02c6432000,212,"NotifyDeoptimized" +code-creation,Builtin,4,0xe02c64320e0,222,"NotifySoftDeoptimized" +code-creation,Builtin,4,0xe02c64321c0,222,"NotifyLazyDeoptimized" +code-creation,Builtin,4,0xe02c64322a0,196,"NotifyStubFailure" +code-creation,Builtin,4,0xe02c6432380,196,"NotifyStubFailureSaveDoubles" +code-creation,Builtin,4,0xe02c6432460,122,"KeyedLoadIC_Miss" +code-creation,Builtin,4,0xe02c64324e0,123,"StoreIC_Miss" +code-creation,Builtin,4,0xe02c6432560,123,"KeyedStoreIC_Miss" +code-creation,LoadIC,6,0xe02c64325e0,134,"A load IC from the snapshot" +code-creation,KeyedLoadIC,7,0xe02c6432680,1054,"A keyed load IC from the snapshot" +code-creation,StoreIC,9,0xe02c6432aa0,136,"A store IC from the snapshot" +code-creation,KeyedStoreIC,10,0xe02c6432b40,123,"A keyed store IC from the snapshot" +code-creation,KeyedStoreIC,10,0xe02c6432bc0,123,"A keyed store IC from the snapshot" +code-creation,KeyedStoreIC,10,0xe02c6432c40,3272,"A keyed store IC from the snapshot" +code-creation,KeyedStoreIC,10,0xe02c6433920,123,"A keyed store IC from the snapshot" +code-creation,KeyedStoreIC,10,0xe02c64339a0,123,"A keyed store IC from the snapshot" +code-creation,KeyedStoreIC,10,0xe02c6433a20,3282,"A keyed store IC from the snapshot" +code-creation,Builtin,4,0xe02c6434700,449,"FunctionCall" +code-creation,Builtin,4,0xe02c64348e0,488,"FunctionApply" +code-creation,Builtin,4,0xe02c6434ae0,488,"ReflectApply" +code-creation,Builtin,4,0xe02c6434ce0,333,"ReflectConstruct" +code-creation,Builtin,4,0xe02c6434e40,116,"InternalArrayCode" +code-creation,Builtin,4,0xe02c6434ec0,178,"OnStackReplacement" +code-creation,Builtin,4,0xe02c6434f80,113,"InterruptCheck" +code-creation,Builtin,4,0xe02c6435000,165,"OsrAfterStackCheck" +code-creation,Builtin,4,0xe02c64350c0,113,"StackCheck" +code-creation,Builtin,4,0xe02c6435140,206,"MarkCodeAsToBeExecutedOnce" +code-creation,Builtin,4,0xe02c6435220,206,"MarkCodeAsExecutedOnce" +code-creation,Builtin,4,0xe02c6435300,197,"MarkCodeAsExecutedTwice" +code-creation,Builtin,4,0xe02c64353e0,197,"MakeQuadragenarianCodeYoungAgainOddMarking" +code-creation,Builtin,4,0xe02c64354c0,197,"MakeQuadragenarianCodeYoungAgainEvenMarking" +code-creation,Builtin,4,0xe02c64355a0,197,"MakeQuinquagenarianCodeYoungAgainOddMarking" +code-creation,Builtin,4,0xe02c6435680,197,"MakeQuinquagenarianCodeYoungAgainEvenMarking" +code-creation,Builtin,4,0xe02c6435760,197,"MakeSexagenarianCodeYoungAgainOddMarking" +code-creation,Builtin,4,0xe02c6435840,197,"MakeSexagenarianCodeYoungAgainEvenMarking" +code-creation,Builtin,4,0xe02c6435920,197,"MakeSeptuagenarianCodeYoungAgainOddMarking" +code-creation,Builtin,4,0xe02c6435a00,197,"MakeSeptuagenarianCodeYoungAgainEvenMarking" +code-creation,Builtin,4,0xe02c6435ae0,197,"MakeOctogenarianCodeYoungAgainOddMarking" +code-creation,Builtin,4,0xe02c6435bc0,197,"MakeOctogenarianCodeYoungAgainEvenMarking" +code-creation,Handler,3,0xe02c6435ca0,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6435d20,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6435da0,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6435e20,120,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6435ea0,121,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6435f20,121,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c6435fa0,278,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c64360c0,278,"An IC handler from the snapshot" +code-creation,Handler,3,0xe02c64361e0,350,"An IC handler from the snapshot" +code-creation,Builtin,4,0xe02c6436340,199,"Return_DebugBreak" +code-creation,Builtin,4,0xe02c6436420,197,"Slot_DebugBreak" +code-creation,Builtin,4,0xe02c6436500,97,"PlainReturn_LiveEdit" +code-creation,Builtin,4,0xe02c6436580,137,"FrameDropper_LiveEdit" +tick,0xbfbe70,21686,0,0x0,1 +tick,0xae0693,22746,0,0x0,4 +code-creation,LazyCompile,4,0xe02c6430a60,115,"Object",0x31534ff45e98, +code-creation,LazyCompile,4,0xe02c6430d20,115,"ThrowTypeError",0x31534ff462d0, +code-creation,LazyCompile,4,0xe02c6430da0,115," :1:1",0x31534ff463a0, +code-creation,LazyCompile,4,0xe02c6430a60,115,"",0x31534ff46640, +code-creation,LazyCompile,4,0xe02c6430a60,115,"Symbol",0x31534ff46f90, +code-creation,LazyCompile,4,0xe02c6430a60,115,"Number",0x31534ff470a8, +code-creation,LazyCompile,4,0xe02c6430a60,115,"Function",0x31534ff471c0, +code-creation,LazyCompile,4,0xe02c6430a60,115,"RegExp",0x31534ff47580, +code-creation,LazyCompile,4,0xe02c6430a60,115,"String",0x31534ff47728, +code-creation,LazyCompile,4,0xe02c6430a60,115,"Boolean",0x31534ff47868, +code-creation,LazyCompile,4,0xe02c6431020,123,"Array",0x31534ff47bc0, +code-creation,LazyCompile,4,0xe02c6430a60,115,"Date",0x31534ff47cd8, +code-creation,LazyCompile,4,0xe02c6430a60,115,"",0x31534ff47f28, +code-creation,LazyCompile,4,0xe02c6430a60,115,"",0x31534ff4fa90, +code-creation,LazyCompile,4,0xe02c6430a60,115,"",0x31534ff509e8, +code-creation,LazyCompile,4,0xe02c6430a60,115,"",0x31534ff63cb8, +code-creation,LazyCompile,4,0xe02c6430a60,115,"",0x31534ff63d48, +code-creation,LazyCompile,4,0xe02c6434e40,116,"InternalArray",0x31534ff68298, +code-creation,LazyCompile,4,0xe02c6431020,123,"Array",0x31534ff6ed00, +code-creation,LazyCompile,4,0xe02c64312c0,115,"unshift",0x31534ff6ee08, +code-creation,LazyCompile,4,0xe02c6431340,115,"slice",0x31534ff6eeb8, +code-creation,LazyCompile,4,0xe02c6430a60,115,"OpaqueReference",0x31534ff79178, +code-creation,LazyCompile,4,0xe02c6434e40,116,"InternalPackedArray",0x31534ff7e858, +code-creation,LazyCompile,4,0xe02c6430d20,115,"ThrowTypeError",0x31534ff7f748, +code-creation,LazyCompile,4,0xe02c6434700,449,"call",0x31534ff7f7f8, +code-creation,LazyCompile,4,0xe02c64348e0,488,"apply",0x31534ff7f8a8, +code-creation,LazyCompile,4,0xe02c6430da0,115," :1:1",0x31534ff7f978, +code-creation,LazyCompile,4,0xe02c6430a60,115,"",0x31534ff7fae0, +code-creation,LazyCompile,4,0xe02c6430a60,115,"JSON",0x31534ff81890, +code-creation,LazyCompile,4,0xe02c6430a60,115,"Math",0x31534ff9aa98, +code-creation,LazyCompile,4,0xe02c6430a60,115,"Arguments",0x31534ff9c9e0, +code-creation,LazyCompile,4,0xe02c64316c0,115,"ThrowTypeError",0x31534ff9cac8, +code-creation,LazyCompile,4,0xe02c64315c0,115,"",0x31534ff9cb58, +code-creation,LazyCompile,4,0xe02c6431640,115,"",0x31534ff9cbe8, +code-creation,LazyCompile,4,0xe02c6430a60,115,"",0x31534ff9cc78, +code-creation,LazyCompile,4,0xe02c64313c0,115,"splice",0x31534ff9e4d8, +code-creation,LazyCompile,4,0xe02c6431240,115,"shift",0x31534ff9e568, +code-creation,LazyCompile,4,0xe02c6431140,115,"push",0x31534ff9e5f8, +code-creation,LazyCompile,4,0xe02c64311c0,115,"pop",0x31534ff9e688, +code-creation,LazyCompile,4,0xe02c6431440,115,"concat",0x31534ff9e718, +tick,0x7f6617843486,23824,0,0x0,3 +code-creation,Function,0,0xe02c6436620,372," native harmony-spread.js:4:10",0x31534ffe4950,~ +code-creation,Script,0,0xe02c64367a0,284,"native harmony-spread.js",0x31534ffe4a98,~ +code-creation,Function,0,0xe02c64368c0,540," native harmony-object.js:2:10",0x31534ffe4fc8,~ +code-creation,Script,0,0xe02c6436ae0,244,"native harmony-object.js",0x31534ffe5108,~ +code-creation,LazyCompile,0,0xe02c6436be0,268,"Import native prologue.js:16:16",0x31534ff9cd98,~ +tick,0x7f6617767897,24877,0,0x2e3b6c0,2,0xca0620,0xe02c6436a93 +code-creation,LazyCompile,0,0xe02c6436d00,752,"InstallFunctions native prologue.js:48:26",0x31534ff9d6e0,~ +code-disable-optimization,"SAR","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c6437000,652,"SAR native runtime.js:248:13",0x31534ff6b938, +code-disable-optimization,"ADD","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c64372a0,956,"ADD native runtime.js:110:13",0x31534ff6a860, +code-creation,LazyCompile,0,0xe02c6437660,404,"SetFunctionName native prologue.js:27:25",0x31534ff9d448,~ +code-creation,Function,0,0xe02c6437800,484," native harmony-object-observe.js:2:10",0x31534ffe5ba8,~ +code-creation,Script,0,0xe02c6437a00,244,"native harmony-object-observe.js",0x31534ffe5ce8,~ +code-creation,LazyCompile,0,0xe02c6437b00,1128,"PostExperimentals native prologue.js:155:27",0x31534ff9df78,~ +code-creation,LazyCompile,0,0xe02c6437f80,268," native harmony-object.js:7:18",0x31534ffe4e18,~ +code-creation,LazyCompile,0,0xe02c64380a0,444," native v8natives.js:27:34",0x31534ff5bcd0,~ +tick,0x7f6617ab83b0,25945,0,0xbe2a02,2,0xca0620,0xe02c6437c8e +tick,0x919623,26994,0,0x0,2 +tick,0xc378c3,28060,0,0x0,2 +tick,0xd18890,29137,0,0x0,2 +code-creation,Function,0,0xe02c6438260,3228," node.js:10:10",0x31534fff07b0,~ +code-creation,Script,0,0xe02c6438f00,244,"node.js",0x31534fff08f8,~ +code-creation,LazyCompile,0,0xe02c6439000,1424,"WeakMap native weak-collection.js:8:28",0x31534ff9c1a0,~ +tick,0xc25d9e,30203,1,0xe193f0,3,0x93e0b0,0xe02c643898e +code-creation,LazyCompile,0,0xe02c64395a0,484,"some native array.js:987:19",0x31534ff665d8,~ +tick,0xc0821b,31293,0,0x2de24a0,2,0xca0620,0xe02c6438bf3 +code-disable-optimization,"SHR","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c64397a0,444,"SHR native runtime.js:266:13",0x31534ff6bb48, +code-creation,LazyCompile,0,0xe02c6439960,1528,"InnerArraySome native array.js:967:24",0x31534ff66508,~ +code-disable-optimization,"IN","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c6439f60,644,"IN native runtime.js:277:12",0x31534ff6bd48, +code-creation,LazyCompile,0,0xe02c643a200,476," node.js:948:58",0x31534ffefe88,~ +code-creation,LazyCompile,0,0xe02c643a3e0,428,"RegExp native regexp.js:36:27",0x31534ff7e700,~ +code-creation,LazyCompile,0,0xe02c643a5a0,1164,"DoConstructRegExp native regexp.js:20:27",0x31534ff7d1c0,~ +code-creation,LazyCompile,0,0xe02c643aa40,556,"ToString native runtime.js:453:18",0x31534ff6ca78,~ +code-creation,Handler,3,0xe02c643ac80,141,"$toString" +tick,0xc08211,32317,0,0x2de24a0,2,0xca0620,0xe02c643a38e,0xe02c6439e1a,0xe02c643973a,0xe02c6438bf3 +code-creation,LazyCompile,0,0xe02c643ad20,980,"match native string.js:122:23",0x31534ff79e30,~ +code-creation,Stub,2,0xe02c643b100,1801,"RecordWriteStub" +code-creation,Stub,2,0xe02c643b820,923,"RegExpExecStub" +code-creation,Stub,2,0xe02c643bbc0,714,"RegExpConstructResultStub" +code-creation,LazyCompile,0,0xe02c643bea0,1048,"RegExpExecNoTests native regexp.js:62:27",0x31534ff7d5b0,~ +code-creation,RegExp,5,0xe02c643c2c0,1028,"^--expose[-_]internals$" +code-creation,Stub,14,0xe02c643c6e0,204,"ToBooleanStub(Null)" +tick,0xd1025d,33378,0,0x0,2,0xca0620,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c643c7c0,6548,"startup node.js:13:19",0x31534ffeeec8,~ +code-creation,LazyCompile,0,0xe02c643e160,916,"NativeModule.require node.js:916:34",0x31534ffefc90,~ +code-creation,LazyCompile,0,0xe02c643e500,244,"NativeModule.getCached node.js:940:36",0x31534ffefd38,~ +code-creation,Stub,14,0xe02c643e600,204,"ToBooleanStub(Undefined)" +code-creation,LazyCompile,0,0xe02c643e6e0,284,"NativeModule.exists node.js:944:33",0x31534ffefde0,~ +code-creation,LazyCompile,0,0xe02c643e800,516,"hasOwnProperty native v8natives.js:111:30",0x31534ff564f0,~ +code-creation,LazyCompile,0,0xe02c643ea20,276,"ToName native runtime.js:466:16",0x31534ff6cc68,~ +code-creation,Stub,11,0xe02c643eb40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c643ebc0,340,"NativeModule node.js:906:24",0x31534ffef168,~ +code-creation,Stub,11,0xe02c643ed20,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c643eda0,260,"NativeModule.cache node.js:995:42",0x31534fff0340,~ +tick,0x7f6617840ced,34437,0,0x919f5e,2,0xca0620,0xe02c643e4ba,0xe02c643c89b,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c643eec0,692,"NativeModule.compile node.js:982:44",0x31534fff0298,~ +code-creation,LazyCompile,0,0xe02c643f180,244,"NativeModule.getSource node.js:969:36",0x31534fff0128,~ +code-creation,LazyCompile,0,0xe02c643f280,332,"NativeModule.wrap node.js:973:31",0x31534fff01d0,~ +code-creation,Stub,11,0xe02c643f3e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c643f460,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c643f4e0,308,"runInThisContext node.js:901:28",0x31534ffef0c0,~ +tick,0xd52328,35491,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c643c89b,0xe02c6438eb5 +code-creation,Stub,2,0xe02c643f620,510,"FastNewContextStub" +code-creation,Function,0,0xe02c643f820,2212," events.js:1:11",0x31534fff8700,~ +code-creation,Script,0,0xe02c64400e0,244,"events.js",0x31534fff8840,~ +code-creation,Handler,3,0xe02c64401e0,161,"undefined" +code-creation,LazyCompile,0,0xe02c64402a0,532,"create native v8natives.js:757:22",0x31534ff59960,~ +code-creation,LazyCompile,0,0xe02c64404c0,1180,"defineProperties native v8natives.js:801:32",0x31534ff59d78,~ +tick,0xc471c8,36543,0,0xffffffff00000042,2,0xca0620,0xe02c644060a,0xe02c6440464,0xe02c643c9e7,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6440960,1380,"GetOwnEnumerablePropertyNames native v8natives.js:783:39",0x31534ff59c98,~ +code-creation,Stub,3,0xe02c6440ee0,300,"LoadFastElementStub" +code-creation,LazyCompile,0,0xe02c6441020,2188,"ToPropertyDescriptor native v8natives.js:237:30",0x31534ff57400,~ +code-creation,LazyCompile,0,0xe02c64418c0,508,"PropertyDescriptor native v8natives.js:284:28",0x31534ff57878,~ +code-creation,Handler,3,0xe02c6441ac0,141,"$toName" +code-creation,LazyCompile,0,0xe02c6441b60,268,"PropertyDescriptor_SetValue native v8natives.js:315:48",0x31534ff5be58,~ +code-creation,LazyCompile,0,0xe02c6441c80,300,"IsInconsistentDescriptor native v8natives.js:198:34",0x31534ff570d0,~ +code-creation,LazyCompile,0,0xe02c6441dc0,388,"IsAccessorDescriptor native v8natives.js:186:30",0x31534ff56c10,~ +code-creation,LazyCompile,0,0xe02c6441f60,252,"PropertyDescriptor_HasGetter native v8natives.js:363:50",0x31534ff5d298,~ +code-creation,LazyCompile,0,0xe02c6442060,252,"PropertyDescriptor_HasSetter native v8natives.js:373:50",0x31534ff5d5d8,~ +code-creation,LazyCompile,0,0xe02c6442160,572,"DefineOwnProperty native v8natives.js:633:27",0x31534ff590e8,~ +tick,0xc484d2,37615,0,0x7fffc2952090,2,0xca0620,0xe02c644237b,0xe02c644082d,0xe02c6440464,0xe02c643c9e7,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6506000,8132,"DefineObjectProperty native v8natives.js:464:30",0x31534ff582e8,~ +code-creation,LazyCompile,0,0xe02c6507fe0,932,"ConvertDescriptorArrayToDescriptor native v8natives.js:377:44",0x31534ff579a0,~ +code-creation,LazyCompile,0,0xe02c65083a0,252,"PropertyDescriptor_HasEnumerable native v8natives.js:332:58",0x31534ff5c588,~ +code-disable-optimization,"BIT_OR","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c65084a0,444,"BIT_OR native runtime.js:197:16",0x31534ff6b348, +code-creation,LazyCompile,0,0xe02c6508660,252,"PropertyDescriptor_HasConfigurable native v8natives.js:350:62",0x31534ff5ccc0,~ +code-creation,LazyCompile,0,0xe02c6508760,388,"IsDataDescriptor native v8natives.js:190:26",0x31534ff56dc8,~ +code-creation,LazyCompile,0,0xe02c6508900,252,"PropertyDescriptor_HasValue native v8natives.js:322:48",0x31534ff5c120,~ +code-creation,LazyCompile,0,0xe02c6508a00,252,"PropertyDescriptor_HasWritable native v8natives.js:342:54",0x31534ff5c9d0,~ +code-creation,LazyCompile,0,0xe02c6508b00,252,"PropertyDescriptor_GetValue native v8natives.js:319:48",0x31534ff5bfa0,~ +code-creation,LazyCompile,0,0xe02c6508c00,500,"set __proto__ native v8natives.js:940:24",0x31534ff5a570,~ +tick,0x7f66177723e0,38671,0,0x7f661775d250,2,0xca0620,0xe02c643c9ff,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6508e00,284,"EventEmitter events.js:5:22",0x31534fff76e8,~ +code-creation,Stub,2,0xe02c6508f20,397,"InstanceofStub" +code-creation,LazyCompile,0,0xe02c65090c0,1012,"EventEmitter.init events.js:23:29",0x31534fff7d78,~ +code-creation,LazyCompile,0,0xe02c65094c0,212,"getPrototypeOf native v8natives.js:653:30",0x31534ff59398,~ +code-creation,Stub,12,0xe02c65095a0,677,"CompareICStub" +code-creation,LazyCompile,0,0xe02c6509860,596,"startup.setupProcessObject node.js:179:40",0x31534ffef210,~ +tick,0xaf0280,43279,0,0x0,1 +tick,0xff04d1,43987,0,0x0,1 +code-creation,LazyCompile,0,0xe02c6509ac0,1244,"Uint32Array native typedarray.js:764:32",0x31534ff8edf8,~ +code-creation,Stub,12,0xe02c6509fa0,677,"CompareICStub" +code-creation,LazyCompile,0,0xe02c650a260,724,"Uint32ArrayConstructByLength native typedarray.js:718:38",0x31534ff88410,~ +code-creation,LazyCompile,0,0xe02c650a540,436,"ToPositiveInteger native runtime.js:545:27",0x31534ff6d3e0,~ +code-creation,Stub,12,0xe02c650a700,195,"CompareICStub" +code-disable-optimization,"MUL","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c650a7e0,444,"MUL native runtime.js:164:13",0x31534ff6adf8, +code-creation,LazyCompile,0,0xe02c650a9a0,492,"ArrayBuffer native arraybuffer.js:15:32",0x31534ff8fc38,~ +code-creation,LazyCompile,0,0xe02c650aba0,244,"startup.processFatal node.js:247:34",0x31534ffef558,~ +code-creation,LazyCompile,0,0xe02c650aca0,676,"startup.globalVariables node.js:211:37",0x31534ffef2b8,~ +code-creation,Handler,3,0xe02c650af60,171,"global" +code-creation,Stub,3,0xe02c650b020,116,"LoadFieldStub" +tick,0xb3b67d,45051,0,0x7fffc2952060,0,0xbb9fc0,0xe02c643e2ea,0xe02c650ae93,0xe02c643cb35,0xe02c6438eb5 +code-creation,Stub,3,0xe02c650b0a0,120,"LoadConstantStub" +code-creation,Stub,2,0xe02c650b120,1258,"NameDictionaryLookupStub" +code-creation,Handler,3,0xe02c650b620,585,"hasOwnProperty" +code-creation,Handler,3,0xe02c650b880,164,"push" +code-creation,Handler,3,0xe02c650b940,192,"filename" +code-creation,StoreIC,9,0xe02c650ba00,134,"filename" +code-creation,Handler,3,0xe02c650baa0,192,"id" +code-creation,StoreIC,9,0xe02c650bb60,134,"id" +code-creation,Handler,3,0xe02c650bc00,192,"exports" +code-creation,StoreIC,9,0xe02c650bcc0,134,"exports" +code-creation,Handler,3,0xe02c650bd60,192,"loaded" +code-creation,StoreIC,9,0xe02c650be20,134,"loaded" +code-creation,Handler,3,0xe02c650bec0,164,"cache" +code-creation,Handler,3,0xe02c650bf80,216,"buffer" +code-creation,KeyedStoreIC,10,0xe02c650c060,153,"buffer" +code-creation,Handler,3,0xe02c650c100,164,"compile" +code-creation,Stub,3,0xe02c650c1c0,120,"LoadConstantStub" +code-creation,Stub,3,0xe02c650c240,120,"LoadConstantStub" +code-creation,Stub,3,0xe02c650c2c0,116,"LoadFieldStub" +code-creation,StoreIC,9,0xe02c650c340,134,"filename" +tick,0xc471a1,46122,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c650ae93,0xe02c643cb35,0xe02c6438eb5 +tick,0xc4810e,47194,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c650ae93,0xe02c643cb35,0xe02c6438eb5 +tick,0x919ec3,48226,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c650ae93,0xe02c643cb35,0xe02c6438eb5 +code-creation,Stub,2,0xe02c650c3e0,694,"FastNewContextStub" +tick,0xad5db8,49294,0,0x0,1 +code-creation,Function,0,0xe02c650c6a0,8412," buffer.js:1:11",0x192859e05180,~ +code-creation,Script,0,0xe02c650e780,244,"buffer.js",0x192859ef3220,~ +code-creation,Handler,3,0xe02c650e880,164,"runInThisContext" +code-creation,Handler,3,0xe02c650e940,216,"internal/util" +tick,0xbf7e06,50360,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c650cb53,0xe02c643f10e,0xe02c643e4ba,0xe02c650ae93,0xe02c643cb35,0xe02c6438eb5 +code-creation,Function,0,0xe02c650ea20,916," internal/util.js:1:11",0x192859ef5b58,~ +code-creation,Script,0,0xe02c650edc0,244,"internal/util.js",0x192859ef5c98,~ +code-creation,StoreIC,9,0xe02c650eec0,134,"loaded" +code-creation,LazyCompile,0,0xe02c650ef60,596,"createPool buffer.js:28:20",0x31534ffff998,~ +code-creation,Stub,2,0xe02c650f1c0,182,"DoubleToIStub" +code-creation,Stub,2,0xe02c650f280,424,"StoreFastElementStub" +code-creation,KeyedStoreIC,10,0xe02c650f440,134,"" +code-creation,LazyCompile,0,0xe02c650f4e0,412,"createBuffer buffer.js:22:22",0x31534ffff8f0,~ +code-creation,LazyCompile,0,0xe02c650f680,1244,"Uint8Array native typedarray.js:124:31",0x31534ff8eae0,~ +tick,0x91f6e5,51457,0,0x92059c,2,0xca0620,0xe02c650f5a4,0xe02c650f0f5,0xe02c650cdae,0xe02c643f10e,0xe02c643e4ba,0xe02c650ae93,0xe02c643cb35,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c650fb60,724,"Uint8ArrayConstructByLength native typedarray.js:78:37",0x31534ff85ed8,~ +code-creation,Handler,3,0xe02c650fe40,141,"$toPositiveInteger" +code-creation,LazyCompile,0,0xe02c650fee0,612,"setPrototypeOf native v8natives.js:656:30",0x31534ff59468,~ +code-creation,Handler,3,0xe02c6510160,171,"Object" +code-creation,Handler,3,0xe02c6510220,171,"Uint8Array" +code-creation,LazyCompile,0,0xe02c65102e0,1304,"defineProperty native v8natives.js:766:30",0x31534ff59a28,~ +code-creation,Handler,3,0xe02c6510800,192,"value_" +code-creation,StoreIC,9,0xe02c65108c0,134,"value_" +code-creation,Handler,3,0xe02c6510960,192,"hasValue_" +code-creation,StoreIC,9,0xe02c6510a20,134,"hasValue_" +code-creation,Handler,3,0xe02c6510ac0,192,"writable_" +code-creation,StoreIC,9,0xe02c6510b80,134,"writable_" +code-creation,Handler,3,0xe02c6510c20,192,"hasWritable_" +code-creation,StoreIC,9,0xe02c6510ce0,134,"hasWritable_" +code-creation,Handler,3,0xe02c6510d80,192,"enumerable_" +code-creation,StoreIC,9,0xe02c6510e40,134,"enumerable_" +code-creation,Handler,3,0xe02c6510ee0,192,"hasEnumerable_" +code-creation,StoreIC,9,0xe02c6510fa0,134,"hasEnumerable_" +code-creation,Handler,3,0xe02c6511040,192,"configurable_" +code-creation,StoreIC,9,0xe02c6511100,134,"configurable_" +code-creation,Handler,3,0xe02c65111a0,192,"hasConfigurable_" +code-creation,StoreIC,9,0xe02c6511260,134,"hasConfigurable_" +code-creation,Handler,3,0xe02c6511300,192,"get_" +code-creation,StoreIC,9,0xe02c65113c0,134,"get_" +code-creation,Handler,3,0xe02c6511460,192,"hasGetter_" +code-creation,StoreIC,9,0xe02c6511520,134,"hasGetter_" +code-creation,Handler,3,0xe02c65115c0,192,"set_" +code-creation,StoreIC,9,0xe02c6511680,134,"set_" +code-creation,Handler,3,0xe02c6511720,192,"hasSetter_" +code-creation,StoreIC,9,0xe02c65117e0,134,"hasSetter_" +code-creation,LazyCompile,0,0xe02c6511880,604,"ToBoolean native runtime.js:427:19",0x31534ff6c880,~ +code-creation,LazyCompile,0,0xe02c6511ae0,268,"PropertyDescriptor_SetEnumerable native v8natives.js:325:58",0x31534ff5c2a0,~ +tick,0x7f6617767850,52490,0,0xaab78d,2,0xca0620,0xe02c644120c,0xe02c651075e,0xe02c650d25d,0xe02c643f10e,0xe02c643e4ba,0xe02c650ae93,0xe02c643cb35,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6511c00,268,"PropertyDescriptor_SetGetter native v8natives.js:356:47",0x31534ff5cfd0,~ +code-creation,Handler,3,0xe02c6511d20,164,"hasGetter" +code-creation,Handler,3,0xe02c6511de0,164,"hasValue" +code-creation,Handler,3,0xe02c6511ea0,164,"hasEnumerable" +code-creation,LazyCompile,0,0xe02c6511f60,252,"PropertyDescriptor_IsEnumerable native v8natives.js:329:56",0x31534ff5c408,~ +code-creation,Handler,3,0xe02c6512060,164,"hasConfigurable" +code-creation,Handler,3,0xe02c6512120,164,"hasWritable" +code-creation,LazyCompile,0,0xe02c65121e0,356,"IsGenericDescriptor native v8natives.js:194:29",0x31534ff56f58,~ +code-creation,LazyCompile,0,0xe02c6512360,252,"PropertyDescriptor_GetGetter native v8natives.js:360:47",0x31534ff5d118,~ +code-creation,Handler,3,0xe02c6512460,164,"setEnumerable" +code-creation,StoreIC,9,0xe02c6512520,134,"enumerable_" +code-creation,StoreIC,9,0xe02c65125c0,134,"hasEnumerable_" +code-creation,Handler,3,0xe02c6512660,164,"setGet" +code-creation,StoreIC,9,0xe02c6512720,134,"get_" +code-creation,StoreIC,9,0xe02c65127c0,134,"hasGetter_" +code-creation,Handler,3,0xe02c6512860,164,"isEnumerable" +code-creation,Handler,3,0xe02c6512920,164,"getGet" +code-creation,Handler,3,0xe02c65129e0,164,"hasSetter" +code-disable-optimization,"exports.deprecate","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c6512aa0,492,"exports.deprecate internal/util.js:10:29",0x192859ef5540, +code-creation,Stub,11,0xe02c6512ca0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6512d20,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6512da0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6512e20,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c6512ea0,524,"exports._deprecate internal/util.js:40:30",0x192859ef5738,~ +code-creation,Handler,3,0xe02c65130c0,211,"process" +code-creation,Handler,3,0xe02c65131a0,171,"process" +code-creation,Handler,3,0xe02c6513260,566,"noDeprecation" +code-creation,Stub,11,0xe02c65134a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6513520,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xe02c64083c2,53526,0,0xe02c650d864,0,0xe02c643f10e,0xe02c643e4ba,0xe02c650ae93,0xe02c643cb35,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65135a0,748,"startup.globalTimeouts node.js:221:36",0x31534ffef360,~ +code-creation,Handler,3,0xe02c65138a0,216,"timers" +tick,0x7f66177649cb,54604,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c651366b,0xe02c643cb7d,0xe02c6438eb5 +code-creation,Stub,2,0xe02c6513980,678,"FastNewContextStub" +code-creation,Function,0,0xe02c6513c40,3452," timers.js:1:11",0x192859efdf90,~ +code-creation,Script,0,0xe02c65149c0,244,"timers.js",0x192859efe0d0,~ +code-creation,Handler,3,0xe02c6514ac0,216,"internal/linkedlist" +tick,0x7f6617ab6c80,55659,1,0xe32800,3,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6514059,0xe02c643f10e,0xe02c643e4ba,0xe02c651366b,0xe02c643cb7d,0xe02c6438eb5 +code-creation,Function,0,0xe02c6514ba0,492," internal/linkedlist.js:1:11",0x192859eff4e8,~ +code-creation,Script,0,0xe02c6514da0,244,"internal/linkedlist.js",0x192859eff628,~ +code-creation,Stub,3,0xe02c6514ea0,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6514fc0,216,"assert" +tick,0xdd5361,56724,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c65140c1,0xe02c643f10e,0xe02c643e4ba,0xe02c651366b,0xe02c643cb7d,0xe02c6438eb5 +code-creation,Function,0,0xe02c65150a0,2444," assert.js:1:11",0x2efb89c05300,~ +code-creation,Script,0,0xe02c6515a40,244,"assert.js",0x2efb89c05440,~ +code-creation,Stub,3,0xe02c6515b40,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6515c60,216,"util" +tick,0xc3938c,57799,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c651548c,0xe02c643f10e,0xe02c643e4ba,0xe02c65140c1,0xe02c643f10e,0xe02c643e4ba,0xe02c651366b,0xe02c643cb7d,0xe02c6438eb5 +tick,0xc16219,58850,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c651548c,0xe02c643f10e,0xe02c643e4ba,0xe02c65140c1,0xe02c643f10e,0xe02c643e4ba,0xe02c651366b,0xe02c643cb7d,0xe02c6438eb5 +code-creation,Stub,2,0xe02c6515d40,882,"FastNewContextStub" +code-creation,Function,0,0xe02c65160c0,5244," util.js:1:11",0x2efb89c09b60,~ +code-creation,Script,0,0xe02c6517540,244,"util.js",0x2efb89c09ca0,~ +tick,0xe02c643e685,59921,0,0xe02c643e299,0,0xe02c6516a35,0xe02c643f10e,0xe02c643e4ba,0xe02c651548c,0xe02c643f10e,0xe02c643e4ba,0xe02c65140c1,0xe02c643f10e,0xe02c643e4ba,0xe02c651366b,0xe02c643cb7d,0xe02c6438eb5 +code-creation,Stub,14,0xe02c6517640,236,"ToBooleanStub(Undefined,SpecObject)" +code-creation,LazyCompile,0,0xe02c6517740,892,"exports.inherits util.js:745:28",0x2efb89c08e70,~ +code-creation,LazyCompile,0,0xe02c6517ac0,1084,"exports.debuglog util.js:60:28",0x2efb89c08d00,~ +code-creation,LazyCompile,0,0xe02c6517f00,500,"toUpperCase native string.js:545:29",0x31534ff7aa58,~ +code-creation,Stub,11,0xe02c6518100,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6518180,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xd6c3d1,60980,0,0x7fffc29518e0,2,0xca0620,0xe02c6517d87,0xe02c6514199,0xe02c643f10e,0xe02c643e4ba,0xe02c651366b,0xe02c643cb7d,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6518200,2756,"test native regexp.js:135:20",0x31534ff7d750,~ +code-creation,RegExp,5,0xe02c6518ce0,979,"\\bTIMER\\b" +code-creation,LazyCompile,0,0xe02c65190c0,228,"init internal/linkedlist.js:3:14",0x192859efefa0,~ +code-creation,LazyCompile,0,0xe02c65191c0,300,"startup.globalConsole node.js:231:35",0x31534ffef408,~ +code-creation,LazyCompile,0,0xe02c6519300,980,"__defineGetter__ native v8natives.js:135:28",0x31534ff568b8,~ +code-creation,LazyCompile,0,0xe02c65196e0,268,"PropertyDescriptor_SetConfigurable native v8natives.js:346:44",0x31534ff5cb50,~ +code-creation,LazyCompile,0,0xe02c6519800,252,"PropertyDescriptor_IsConfigurable native v8natives.js:353:60",0x31534ff5ce48,~ +code-creation,LazyCompile,0,0xe02c6519900,300,"startup.processAssert node.js:280:35",0x31534ffef600,~ +code-creation,LazyCompile,0,0xe02c6519a40,1300,"startup.processConfig node.js:286:35",0x31534ffef6a8,~ +code-creation,LazyCompile,0,0xe02c6519f60,1260,"split native string.js:424:23",0x31534ff7a578,~ +code-creation,Stub,12,0xe02c651a460,295,"CompareICStub" +tick,0xd1b9d5,62073,0,0x60,2,0xca0620,0xe02c6519b87,0xe02c643cc55,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c651a5a0,484,"join native array.js:337:19",0x31534ff64e18,~ +code-creation,LazyCompile,0,0xe02c651a7a0,1644,"InnerArrayJoin native array.js:321:24",0x31534ff64d48,~ +code-disable-optimization,"Join","TryFinallyStatement" +code-creation,LazyCompile,0,0xe02c651ae20,4480,"Join native array.js:106:14",0x31534ff64570, +code-creation,LazyCompile,0,0xe02c651bfa0,572,"UseSparseVariant native array.js:93:26",0x31534ff644a0,~ +code-creation,KeyedStoreIC,10,0xe02c651c1e0,134,"" +code-disable-optimization,"SUB","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c651c280,444,"SUB native runtime.js:153:13",0x31534ff6abf8, +tick,0x91f8a1,63086,0,0x7fffc2951b40,2,0xca0620,0xe02c6519d4c,0xe02c643cc55,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c651c440,3268,"replace native string.js:152:23",0x31534ff79fc8,~ +code-creation,Stub,13,0xe02c651d120,200,"CompareNilICStub(NullValue)(Null)" +code-creation,Stub,3,0xe02c651d200,160,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c651d2a0,134,"lastIndex" +code-creation,Handler,3,0xe02c651d340,141,"$regexpLastMatchInfoOverride" +code-creation,LazyCompile,0,0xe02c651d3e0,660,"parse native json.js:43:19",0x31534ff81940,~ +code-creation,LazyCompile,0,0xe02c651d680,1532,"Revive native json.js:19:16",0x31534ff81af8,~ +code-creation,LazyCompile,0,0xe02c651dc80,308," node.js:298:49",0x2efb89c0dc90,~ +tick,0x7f6617ab83b3,64161,0,0xbe2a02,2,0xca0620,0xe02c651dc01,0xe02c651db21,0xe02c651db21,0xe02c651d618,0xe02c6519efd,0xe02c643cc55,0xe02c6438eb5 +code-creation,Stub,12,0xe02c651ddc0,677,"CompareICStub" +code-creation,KeyedStoreIC,10,0xe02c651e080,153,"default_configuration" +code-creation,Stub,2,0xe02c651e120,2714,"RecordWriteStub" +code-creation,Stub,3,0xe02c651ebc0,224,"StoreFieldStub" +code-creation,Handler,3,0xe02c651eca0,138,"target_defaults" +code-creation,Stub,3,0xe02c651ed40,184,"StoreFieldStub" +code-creation,Stub,3,0xe02c651ee00,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651eee0,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651efc0,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651f040,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651f120,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651f1a0,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651f280,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651f300,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651f3e0,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651f460,224,"StoreFieldStub" +tick,0xc30fcd,65218,0,0x2e27660,0,0xbbbe40,0xe02c651db7c,0xe02c651db21,0xe02c651d618,0xe02c6519efd,0xe02c643cc55,0xe02c6438eb5 +code-creation,Stub,3,0xe02c651f540,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651f5c0,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651f6a0,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651f720,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651f800,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651f880,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651f960,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651f9e0,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651fac0,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651fb40,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651fc20,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651fca0,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651fd80,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651fe00,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c651fee0,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c651ff60,224,"StoreFieldStub" +tick,0xb35181,66273,0,0x7fffc2951f60,0,0xbba1d0,0xe02c651d718,0xe02c651db21,0xe02c651db21,0xe02c651d618,0xe02c6519efd,0xe02c643cc55,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6520040,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c65200c0,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c65201c0,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6520240,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c6520340,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c65203c0,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c65204c0,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6520540,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c6520640,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c65206c0,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c65207c0,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6520840,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c6520940,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c65209c0,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c6520ac0,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6520b40,228,"StoreFieldStub" +tick,0xb43070,67328,0,0xb49315,0,0xbba1d0,0xe02c651d718,0xe02c651db21,0xe02c651db21,0xe02c651d618,0xe02c6519efd,0xe02c643cc55,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6520c40,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6520cc0,188,"StoreFieldStub" +code-creation,Stub,3,0xe02c6520d80,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6520e00,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c6520f00,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6520f80,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c6521080,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6521100,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c6521200,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6521280,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c6521380,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6521400,188,"StoreFieldStub" +code-creation,Stub,3,0xe02c65214c0,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6521540,188,"StoreFieldStub" +code-creation,Stub,3,0xe02c6521600,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6521680,188,"StoreFieldStub" +tick,0x7f6617767526,68370,0,0x2de24a0,0,0xbba1d0,0xe02c651d718,0xe02c651db21,0xe02c651db21,0xe02c651d618,0xe02c6519efd,0xe02c643cc55,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6521740,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c65217c0,188,"StoreFieldStub" +code-creation,Stub,3,0xe02c6521880,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6521900,188,"StoreFieldStub" +code-creation,Stub,3,0xe02c65219c0,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6521a40,228,"StoreFieldStub" +code-creation,Stub,3,0xe02c6521b40,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c6521bc0,188,"StoreFieldStub" +code-creation,Handler,3,0xe02c6521c80,138,"variables" +tick,0xbd82d8,69444,0,0x14,2,0xca0620,0xe02c643cc9d,0xe02c6438eb5 +code-creation,Stub,2,0xe02c6521d20,594,"FastNewContextStub" +code-creation,LazyCompile,0,0xe02c6521f80,1836,"startup.processNextTick node.js:307:37",0x31534ffef750,~ +code-creation,LazyCompile,0,0xe02c65226c0,484,"startup.processPromises node.js:550:37",0x31534ffef7f8,~ +code-creation,LazyCompile,0,0xe02c65228c0,588,"startup.processStdio node.js:659:34",0x31534ffef8a0,~ +code-creation,Handler,3,0xe02c6522b20,164,"setConfigurable" +code-creation,StoreIC,9,0xe02c6522be0,134,"configurable_" +code-creation,StoreIC,9,0xe02c6522c80,134,"hasConfigurable_" +code-creation,Handler,3,0xe02c6522d20,164,"isConfigurable" +code-creation,LazyCompile,0,0xe02c6522de0,316,"startup.processKillAndExit node.js:774:40",0x31534ffef948,~ +tick,0xc4e380,70503,0,0xffffffffffffffff,2,0xca0620,0xe02c643cdbd,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6522f20,556,"startup.processSignalHandlers node.js:816:43",0x31534ffef9f0,~ +code-creation,LazyCompile,0,0xe02c6523160,1684,"addListener events.js:191:58",0x31534fff8018,~ +code-creation,Stub,8,0xe02c6523800,533,"CallICStub(args(6), FUNCTION, " +code-creation,Stub,8,0xe02c6523a20,113,"CallICTrampolineStub" +code-creation,LazyCompile,0,0xe02c6523aa0,2648,"emit events.js:117:44",0x31534fff7f70,~ +code-creation,Stub,3,0xe02c6524500,300,"LoadFastElementStub" +code-creation,LazyCompile,0,0xe02c6524640,672,"emitTwo events.js:85:17",0x31534fff7988,~ +code-creation,LazyCompile,0,0xe02c65248e0,1132," node.js:827:39",0x2efb89c13c08,~ +tick,0xaafa78,71565,0,0x7fffc2951ef0,2,0xca0620,0xe02c6524996,0xe02c6524712,0xe02c6524232,0xe02c65233f7,0xe02c6523106,0xe02c643cdbd,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6524d60,476,"isSignal node.js:821:22",0x2efb89c13b60,~ +code-creation,LazyCompile,0,0xe02c6524f40,1220,"slice native string.js:390:21",0x31534ff7a4d0,~ +code-creation,Stub,12,0xe02c6525420,195,"CompareICStub" +code-creation,Stub,12,0xe02c6525500,413,"CompareICStub" +code-creation,Handler,3,0xe02c65256a0,201,"removeListener" +code-creation,KeyedStoreIC,10,0xe02c6525780,153,"removeListener" +code-creation,StoreIC,9,0xe02c6525820,134,symbol("normal_ic_symbol" hash 21e6e11d) +code-creation,LazyCompile,0,0xe02c65258c0,884,"startup.processChannel node.js:858:36",0x31534ffefa98,~ +code-creation,LazyCompile,0,0xe02c6525c40,524,"startup.processRawDebug node.js:881:37",0x31534ffefb40,~ +code-creation,KeyedStoreIC,10,0xe02c6525e60,134,"" +code-creation,Stub,12,0xe02c6525f00,413,"CompareICStub" +code-creation,Stub,14,0xe02c65260a0,228,"ToBooleanStub(String)" +code-creation,Stub,3,0xe02c65261a0,634,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6526420,216,"path" +tick,0xc06569,72624,1,0xe32800,3,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c643d54d,0xe02c6438eb5 +tick,0xa8c873,73667,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c643d54d,0xe02c6438eb5 +code-creation,Stub,2,0xe02c6526500,526,"FastNewContextStub" +code-creation,Function,0,0xe02c6526720,3932," path.js:1:11",0x2efb89c17f28,~ +code-creation,Script,0,0xe02c6527680,244,"path.js",0x2efb89c18068,~ +tick,0x919dbb,74736,0,0x111b190,2,0xca0620,0xe02c643d609,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6527780,1344,"posix.resolve path.js:419:25",0x2efb89c17420,~ +code-creation,LazyCompile,0,0xe02c6527cc0,444,"assertPath path.js:6:20",0x2efb89c16850,~ +code-creation,Stub,11,0xe02c6527e80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6527f00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,3,0xe02c6527f80,664,"LoadIndexedStringStub" +code-creation,Stub,3,0xe02c6528220,112,"LoadFieldStub" +code-creation,LazyCompile,0,0xe02c65282a0,1120,"normalizeArray path.js:17:24",0x2efb89c168f8,~ +tick,0xa6c4be,75844,0,0x0,0 +code-creation,Stub,11,0xe02c6528700,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,3,0xe02c6528780,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65288a0,216,"module" +tick,0xd522e9,76887,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Stub,2,0xe02c6528980,714,"FastNewContextStub" +code-creation,Function,0,0xe02c6528c60,5660," module.js:1:11",0x2efb89c1b910,~ +code-creation,Script,0,0xe02c652a280,244,"module.js",0x2efb89c1ba50,~ +tick,0xbd80a0,77943,0,0x116d0e7,0,0xbbbe40,0xe02c643ee64,0xe02c643e476,0xe02c6528ff7,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Stub,3,0xe02c652a380,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c652a4a0,216,"internal/module" +code-creation,Function,0,0xe02c652a580,340," internal/module.js:1:11",0x2efb89c1bfa0,~ +code-creation,Script,0,0xe02c652a6e0,244,"internal/module.js",0x2efb89c1c0e0,~ +code-creation,Stub,3,0xe02c652a7e0,634,"StoreTransitionStub" +code-creation,Handler,3,0xe02c652aa60,216,"vm" +tick,0xc5963f,79077,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c65290c7,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Function,0,0xe02c652ab40,1052," vm.js:1:11",0x2efb89c1cbc8,~ +code-creation,Script,0,0xe02c652af60,244,"vm.js",0x2efb89c1cd08,~ +code-creation,Stub,3,0xe02c652b060,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c652b180,216,"fs" +tick,0xc48019,80108,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +tick,0xc4bce7,81170,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +tick,0x919d86,82223,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +tick,0x7f6617851a42,83282,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +tick,0xd14af0,84343,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Stub,2,0xe02c652b260,1258,"FastNewContextStub" +tick,0xc0821b,85406,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Function,0,0xe02c652b760,16588," fs.js:1:11",0x2efb89c25cc8,~ +code-creation,Script,0,0xe02c652f840,244,"fs.js",0x2efb89c25e08,~ +code-creation,Handler,3,0xe02c652f940,164,"runInThisContext" +code-creation,Stub,3,0xe02c652fa00,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c652fb20,216,"constants" +code-creation,Function,0,0xe02c652fc00,308," constants.js:1:11",0x2efb89c29ea8,~ +code-creation,Script,0,0xe02c652fd40,244,"constants.js",0x2efb89c29fe8,~ +tick,0x8f00b0,86468,1,0xe193f0,3,0x93e0b0,0xe02c652fcda,0xe02c643f10e,0xe02c643e4ba,0xe02c652c1cd,0xe02c643f10e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Stub,3,0xe02c652fe40,634,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65300c0,216,"stream" +tick,0xdc3b77,87537,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c652c2f6,0xe02c643f10e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Function,0,0xe02c65301a0,932," stream.js:1:11",0x2efb89c2d1c0,~ +code-creation,Script,0,0xe02c6530560,244,"stream.js",0x2efb89c2d300,~ +code-creation,Handler,3,0xe02c6530660,192,"super_" +code-creation,StoreIC,9,0xe02c6530720,134,"super_" +code-creation,Stub,3,0xe02c65307c0,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65308e0,216,"_stream_readable" +tick,0xc47f4b,88594,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6530372,0xe02c643f10e,0xe02c643e4ba,0xe02c652c2f6,0xe02c643f10e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65309c0,762,"FastNewContextStub" +tick,0x914b44,89653,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6530372,0xe02c643f10e,0xe02c643e4ba,0xe02c652c2f6,0xe02c643f10e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Function,0,0xe02c6530cc0,3564," _stream_readable.js:1:11",0x2efb89c2fe60,~ +code-creation,Script,0,0xe02c6531ac0,244,"_stream_readable.js",0x2efb89c2ffa0,~ +code-creation,Handler,3,0xe02c6531bc0,186,"toUpperCase" +code-creation,Handler,3,0xe02c6531c80,171,"RegExp" +code-creation,Handler,3,0xe02c6531d40,164,"test" +code-creation,Handler,3,0xe02c6531e00,141,"harmony_regexps" +code-creation,RegExp,5,0xe02c6531ea0,1001,"\\bSTREAM\\b" +code-creation,StoreIC,9,0xe02c65322a0,134,"lastIndex" +code-creation,Handler,3,0xe02c6532340,204,"super_" +code-creation,StorePolymorphicIC,9,0xe02c6532420,154,"super_" +code-creation,Stub,3,0xe02c65324c0,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65325e0,216,"_stream_writable" +tick,0xd1879a,90697,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c65303b4,0xe02c643f10e,0xe02c643e4ba,0xe02c652c2f6,0xe02c643f10e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65326c0,662,"FastNewContextStub" +tick,0xbeedf8,91772,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c65303b4,0xe02c643f10e,0xe02c643e4ba,0xe02c652c2f6,0xe02c643f10e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Function,0,0xe02c6532960,3052," _stream_writable.js:1:11",0x2efb89c32868,~ +code-creation,Script,0,0xe02c6533560,244,"_stream_writable.js",0x2efb89c329a8,~ +code-creation,Handler,3,0xe02c6533660,204,"super_" +code-creation,StorePolymorphicIC,9,0xe02c6533740,174,"super_" +code-creation,Stub,11,0xe02c6533800,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,3,0xe02c6533880,634,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6533b00,216,"_stream_duplex" +code-creation,Function,0,0xe02c6533be0,1328," _stream_duplex.js:1:11",0x2efb89c33680,~ +code-creation,Script,0,0xe02c6534120,244,"_stream_duplex.js",0x2efb89c337c0,~ +tick,0x948aa6,92825,0,0x948bb5,2,0xca0620,0xe02c6533f10,0xe02c643f10e,0xe02c643e4ba,0xe02c65303f6,0xe02c643f10e,0xe02c643e4ba,0xe02c652c2f6,0xe02c643f10e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6534220,444,"keys native v8natives.js:177:20",0x31534ff55a00,~ +code-creation,KeyedStoreIC,10,0xe02c65343e0,153,"cork" +code-creation,Stub,3,0xe02c6534480,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65345a0,216,"_stream_transform" +code-creation,Function,0,0xe02c6534680,1084," _stream_transform.js:1:11",0x2efb89c34710,~ +code-creation,Script,0,0xe02c6534ac0,244,"_stream_transform.js",0x2efb89c34850,~ +code-creation,Stub,3,0xe02c6534bc0,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6534ce0,216,"_stream_passthrough" +tick,0x7f6617851a33,93884,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c653047a,0xe02c643f10e,0xe02c643e4ba,0xe02c652c2f6,0xe02c643f10e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Function,0,0xe02c6534dc0,628," _stream_passthrough.js:1:11",0x2efb89c34f88,~ +code-creation,Script,0,0xe02c6535040,244,"_stream_passthrough.js",0x2efb89c350c8,~ +code-creation,Stub,14,0xe02c6535140,208,"ToBooleanStub(Smi)" +code-creation,LazyCompile,0,0xe02c6535220,484,"forEach native array.js:961:22",0x31534ff66360,~ +code-creation,LazyCompile,0,0xe02c6535420,1488,"InnerArrayForEach native array.js:942:27",0x31534ff660e0,~ +code-creation,LazyCompile,0,0xe02c6535a00,500," fs.js:176:50",0x2efb89c213f0,~ +code-creation,Handler,3,0xe02c6535c00,164,"setValue" +code-creation,StoreIC,9,0xe02c6535cc0,134,"value_" +code-creation,StoreIC,9,0xe02c6535d60,134,"hasValue_" +code-creation,LazyCompile,0,0xe02c6535e00,268,"PropertyDescriptor_SetWritable native v8natives.js:335:54",0x31534ff5c708,~ +code-creation,LazyCompile,0,0xe02c6535f20,252,"PropertyDescriptor_IsWritable native v8natives.js:339:52",0x31534ff5c850,~ +code-creation,Handler,3,0xe02c6536020,164,"getValue" +tick,0xc1416e,94950,0,0x8,0,0xbb9fc0,0xe02c6507b8e,0xe02c644237b,0xe02c65107a0,0xe02c6535bad,0xe02c65358da,0xe02c65353ba,0xe02c652d2e2,0xe02c643f10e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,StoreIC,9,0xe02c65360e0,134,"value" +code-creation,Stub,3,0xe02c6536180,212,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6536260,169,"value_" +code-creation,StoreIC,9,0xe02c6536320,134,"value_" +code-creation,Handler,3,0xe02c65363c0,192,"hasValue_" +code-creation,StoreIC,9,0xe02c6536480,134,"hasValue_" +code-creation,Handler,3,0xe02c6536520,192,"writable_" +code-creation,StoreIC,9,0xe02c65365e0,134,"writable_" +code-creation,Handler,3,0xe02c6536680,192,"hasWritable_" +code-creation,StoreIC,9,0xe02c6536740,134,"hasWritable_" +code-creation,Handler,3,0xe02c65367e0,192,"enumerable_" +code-creation,StoreIC,9,0xe02c65368a0,134,"enumerable_" +code-creation,Handler,3,0xe02c6536940,192,"hasEnumerable_" +code-creation,StoreIC,9,0xe02c6536a00,134,"hasEnumerable_" +code-creation,Handler,3,0xe02c6536aa0,192,"configurable_" +code-creation,StoreIC,9,0xe02c6536b60,134,"configurable_" +code-creation,Handler,3,0xe02c6536c00,192,"hasConfigurable_" +code-creation,StoreIC,9,0xe02c6536cc0,134,"hasConfigurable_" +code-creation,Handler,3,0xe02c6536d60,192,"get_" +code-creation,StoreIC,9,0xe02c6536e20,134,"get_" +code-creation,Handler,3,0xe02c6536ec0,192,"hasGetter_" +code-creation,StoreIC,9,0xe02c6536f80,134,"hasGetter_" +code-creation,Handler,3,0xe02c6537020,192,"set_" +code-creation,StoreIC,9,0xe02c65370e0,134,"set_" +code-creation,Handler,3,0xe02c6537180,192,"hasSetter_" +code-creation,StoreIC,9,0xe02c6537240,134,"hasSetter_" +code-creation,StoreIC,9,0xe02c65372e0,134,"enumerable_" +code-creation,StoreIC,9,0xe02c6537380,134,"hasEnumerable_" +code-creation,Handler,3,0xe02c6537420,164,"setWritable" +code-creation,StoreIC,9,0xe02c65374e0,134,"writable_" +code-creation,StoreIC,9,0xe02c6537580,134,"hasWritable_" +code-creation,Handler,3,0xe02c6537620,164,"isWritable" +tick,0xd12041,96007,0,0x7fffc2951980,2,0xca0620,0xe02c652e924,0xe02c643f10e,0xe02c643e4ba,0xe02c65291cf,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65376e0,1424,"Map native collection.js:227:24",0x31534ff776c0,~ +code-creation,StoreIC,9,0xe02c6537c80,134,"configurable_" +code-creation,StoreIC,9,0xe02c6537d20,134,"hasConfigurable_" +code-creation,RegExp,5,0xe02c6537dc0,1001,"\\bMODULE\\b" +code-creation,Stub,8,0xe02c65381c0,634,"CallICStub(args(5), METHOD, " +code-creation,Stub,8,0xe02c6538440,113,"CallICTrampolineStub" +code-creation,LazyCompile,0,0xe02c65384c0,1756,"Module._initPaths module.js:434:29",0x2efb89c1b200,~ +code-creation,Handler,3,0xe02c6538ba0,186,"split" +code-creation,Handler,3,0xe02c6538c60,164,"pop" +tick,0x914d4b,97089,0,0xbddd72,0,0xbb9fc0,0xe02c6528512,0xe02c6527bbc,0xe02c6538770,0xe02c652a20f,0xe02c643f10e,0xe02c643e4ba,0xe02c643d664,0xe02c6438eb5 +code-creation,Handler,3,0xe02c6538d20,164,"join" +code-creation,Handler,3,0xe02c6538de0,185,"length" +code-creation,StoreIC,9,0xe02c6538ea0,134,"length" +code-creation,LazyCompile,0,0xe02c6538f40,412,"startup.preloadModules node.js:890:36",0x31534ffefbe8,~ +code-creation,LazyCompile,0,0xe02c65390e0,460,"Module.runMain module.js:427:26",0x2efb89c1b158,~ +code-disable-optimization,"Module._load","TryFinallyStatement" +code-creation,LazyCompile,0,0xe02c65392c0,1412,"Module._load module.js:271:24",0x2efb89c1ac18, +code-creation,LazyCompile,0,0xe02c6539860,852,"Module._resolveFilename module.js:311:35",0x2efb89c1acc0,~ +code-creation,LazyCompile,0,0xe02c6539bc0,380,"NativeModule.nonInternalExists node.js:959:46",0x31534ffeffd8,~ +code-creation,LazyCompile,0,0xe02c6539d40,3180,"Module._resolveLookupPaths module.js:209:38",0x2efb89c1ab70,~ +tick,0xd592c5,98127,0,0x7fffc29523b0,2,0xca0620,0xe02c6539f40,0xe02c65399dc,0xe02c6539417,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c653a9c0,1092,"substring native string.js:487:25",0x31534ff7a718,~ +code-creation,LazyCompile,0,0xe02c653ae20,180,"debugs.(anonymous function) util.js:72:29",0x2efb89c0c200,~ +code-creation,LazyCompile,0,0xe02c653aee0,3032,"Module._findPath module.js:128:28",0x2efb89c1aa20,~ +code-creation,LazyCompile,0,0xe02c653bac0,356,"posix.isAbsolute path.js:469:28",0x2efb89c17570,~ +code-creation,LazyCompile,0,0xe02c653bc40,2616,"stringify native json.js:158:23",0x31534ff81e48,~ +code-creation,LazyCompile,0,0xe02c653c680,188,"posix._makeLong path.js:524:27",0x2efb89c17768,~ +code-creation,LazyCompile,0,0xe02c653c740,340,"toRealPath module.js:111:20",0x2efb89c1a890,~ +tick,0xd0dd25,99207,0,0x7fff00000004,2,0xca0620,0xe02c653c845,0xe02c653b60f,0xe02c6539adb,0xe02c6539417,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c653c8a0,3592,"realpathSync fs.js:1462:40",0x2efb89c24480,~ +code-creation,LazyCompile,0,0xe02c653d6c0,884,"start fs.js:1485:17",0x2efb89c3c838,~ +code-creation,LazyCompile,0,0xe02c653da40,1928,"exec native regexp.js:88:22",0x31534ff7d688,~ +code-creation,RegExp,5,0xe02c653e1e0,846,"^[\\/]*" +code-creation,KeyedStoreIC,10,0xe02c653e540,134,"" +code-creation,RegExp,5,0xe02c653e5e0,1134,"(.*?)(?:[\\/]+|$)" +code-creation,Stub,3,0xe02c653ea60,224,"StoreGlobalStub" +code-creation,Stub,3,0xe02c653eb40,224,"StoreGlobalStub" +code-creation,StoreIC,9,0xe02c653ec20,134,"$regexpLastMatchInfoOverride" +code-creation,Stub,11,0xe02c653ecc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c653ed40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,12,0xe02c653edc0,677,"CompareICStub" +tick,0x7f6618248680,100262,0,0x7f6618248749,2,0xca0620,0xe02c653d071,0xe02c653c845,0xe02c653b60f,0xe02c6539adb,0xe02c6539417,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c653f080,452,"fs.lstatSync fs.js:885:24",0x2efb89c22c38,~ +code-creation,LazyCompile,0,0xe02c653f260,644,"nullCheck fs.js:92:19",0x2efb89c20020,~ +code-creation,Stub,11,0xe02c653f500,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,2,0xe02c653f580,200,"ArgumentsAccessStub_ReadElement" +code-creation,LazyCompile,0,0xe02c653f660,1052,"indexOf native string.js:80:25",0x31534ff79c10,~ +code-creation,LazyCompile,0,0xe02c653fa80,796,"fs.Stats fs.js:109:20",0x2efb89c20de8,~ +code-creation,LazyCompile,0,0xe02c653fda0,2596,"Date native date.js:75:25",0x31534ff99930,~ +code-creation,Handler,3,0xe02c65407e0,171,"Date" +code-creation,LazyCompile,0,0xe02c65408a0,324,"fs.Stats.isSymbolicLink fs.js:163:45",0x2efb89c211d8,~ +code-creation,LazyCompile,0,0xe02c6540a00,340,"fs.Stats._checkModeProperty fs.js:143:49",0x2efb89c20e90,~ +tick,0xaafbe1,101311,0,0x7fffc2951410,2,0xca0620,0xe02c6540ae4,0xe02c654099a,0xe02c653d0b9,0xe02c653c845,0xe02c653b60f,0xe02c6539adb,0xe02c6539417,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-disable-optimization,"BIT_AND","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c6540b60,652,"BIT_AND native runtime.js:208:17",0x31534ff6b548, +code-creation,StoreIC,9,0xe02c6540e00,134,"lastIndex" +code-creation,Handler,3,0xe02c6540ea0,164,"exec" +code-creation,StoreIC,9,0xe02c6540f60,134,"lastIndex" +code-creation,Handler,3,0xe02c6541000,164,"call" +code-creation,Stub,3,0xe02c65410c0,120,"LoadConstantStub" +code-creation,Handler,3,0xe02c6541140,186,"indexOf" +code-creation,Stub,3,0xe02c6541200,240,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6541300,184,"dev" +code-creation,StoreIC,9,0xe02c65413c0,134,"dev" +code-creation,Stub,3,0xe02c6541460,240,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6541560,184,"mode" +code-creation,StoreIC,9,0xe02c6541620,134,"mode" +code-creation,Stub,3,0xe02c65416c0,240,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65417c0,184,"nlink" +code-creation,StoreIC,9,0xe02c6541880,134,"nlink" +code-creation,Stub,3,0xe02c6541920,240,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6541a20,184,"uid" +code-creation,StoreIC,9,0xe02c6541ae0,134,"uid" +code-creation,Stub,3,0xe02c6541b80,240,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6541c80,184,"gid" +code-creation,StoreIC,9,0xe02c6541d40,134,"gid" +code-creation,Stub,3,0xe02c6541de0,240,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6541ee0,184,"rdev" +code-creation,StoreIC,9,0xe02c6541fa0,134,"rdev" +code-creation,Stub,3,0xe02c6542040,240,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6542140,184,"blksize" +code-creation,StoreIC,9,0xe02c6542200,134,"blksize" +tick,0x946217,102371,0,0x11b87b0,0,0xbbb8f0,0xe02c653fbc4,0xe3b870,0xe02c653f1f9,0xe02c653d071,0xe02c653c845,0xe02c653b60f,0xe02c6539adb,0xe02c6539417,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c65422a0,240,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65423a0,184,"ino" +code-creation,StoreIC,9,0xe02c6542460,134,"ino" +code-creation,Stub,3,0xe02c6542500,240,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6542600,184,"size" +code-creation,StoreIC,9,0xe02c65426c0,134,"size" +code-creation,Stub,3,0xe02c6542760,240,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6542860,184,"blocks" +code-creation,StoreIC,9,0xe02c6542920,134,"blocks" +code-creation,Handler,3,0xe02c65429c0,216,"atime" +code-creation,StoreIC,9,0xe02c6542aa0,134,"atime" +code-creation,Handler,3,0xe02c6542b40,216,"mtime" +code-creation,StoreIC,9,0xe02c6542c20,134,"mtime" +code-creation,Stub,3,0xe02c6542cc0,272,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6542de0,216,"ctime" +code-creation,StoreIC,9,0xe02c6542ec0,134,"ctime" +code-creation,Stub,3,0xe02c6542f60,272,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6543080,216,"birthtime" +code-creation,StoreIC,9,0xe02c6543160,134,"birthtime" +code-creation,Handler,3,0xe02c6543200,164,"isSymbolicLink" +code-creation,Handler,3,0xe02c65432c0,164,"_checkModeProperty" +code-creation,LazyCompile,0,0xe02c6543380,572,"Module module.js:26:16",0x2efb89c1a5f0,~ +code-creation,LazyCompile,0,0xe02c65435c0,1052,"Module.load module.js:334:33",0x2efb89c1ad68,~ +tick,0x7f6617842ec3,103445,0,0x919f5e,2,0xca0620,0xe02c6543737,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65439e0,340,"ok assert.js:108:12",0x2efb89c04420,~ +code-creation,LazyCompile,0,0xe02c6543b40,516,"posix.dirname path.js:529:25",0x2efb89c17810,~ +code-creation,LazyCompile,0,0xe02c6543d60,388,"posixSplitPath path.js:410:24",0x2efb89c16c40,~ +code-creation,RegExp,5,0xe02c6543f00,2544,"^(\\/?|)([\\s\\S]*?)((?:\\.{1\,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$" +code-creation,LazyCompile,0,0xe02c6544900,1268,"substr native string.js:513:22",0x31534ff7a7e8,~ +code-creation,Stub,11,0xe02c6544e00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c6544e80,1224,"Module._nodeModulePaths module.js:188:35",0x2efb89c1aac8,~ +code-creation,LazyCompile,0,0xe02c6545360,2124,"StringSplitOnRegExp native string.js:441:29",0x31534ff7a640,~ +code-creation,LazyCompile,0,0xe02c6545bc0,276,"DoRegExpExec native regexp.js:57:22",0x31534ff7d4e0,~ +tick,0x94930b,104501,0,0x2e295c0,0,0xbb74c0,0xe02c6545632,0xe02c651a42c,0xe02c6545001,0xe02c654380d,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,13,0xe02c6545ce0,232,"CompareNilICStub(NullValue)(MonomorphicMap)" +code-creation,Stub,13,0xe02c6545de0,232,"CompareNilICStub(NullValue)(MonomorphicMap)" +code-creation,KeyedStoreIC,10,0xe02c6545ee0,134,"" +code-creation,Stub,12,0xe02c6545f80,296,"CompareICStub" +code-creation,Stub,13,0xe02c65460c0,260,"CompareNilICStub(NullValue)(Null,MonomorphicMap)" +code-creation,Stub,13,0xe02c65461e0,260,"CompareNilICStub(NullValue)(Null,MonomorphicMap)" +code-creation,LazyCompile,0,0xe02c6546300,808,"ArrayConcatJS native array.js:402:23",0x31534ff65220,~ +code-creation,Handler,3,0xe02c6546640,164,"slice" +code-creation,Handler,3,0xe02c6546700,164,"concat" +code-creation,LazyCompile,0,0xe02c65467c0,260,"posix.extname path.js:561:25",0x2efb89c17960,~ +code-creation,Handler,3,0xe02c65468e0,164,"shift" +code-creation,LazyCompile,0,0xe02c65469a0,500,"Module._extensions..js module.js:402:37",0x2efb89c1af60,~ +code-disable-optimization,"fs.readFileSync","TryFinallyStatement" +tick,0xdcc2cf,105561,0,0x2e3fbb8,2,0xca0620,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6546ba0,3784,"fs.readFileSync fs.js:417:27",0x2efb89c21930, +code-creation,LazyCompile,0,0xe02c6547a80,436,"assertEncoding fs.js:86:24",0x2efb89c1ff78,~ +code-creation,LazyCompile,0,0xe02c6547c40,1352,"Buffer.isEncoding buffer.js:194:29",0x31534ff98970,~ +code-creation,LazyCompile,0,0xe02c65481a0,244,"isFd fs.js:104:14",0x2efb89c200c8,~ +code-creation,LazyCompile,0,0xe02c65482a0,596,"NonNumberToNumber native runtime.js:444:27",0x31534ff6c9d0,~ +code-creation,Stub,11,0xe02c6548500,250,"BinaryOpICStub(SHR:Generic*Smi->Smi)" +code-creation,Stub,12,0xe02c6548600,686,"CompareICStub" +code-creation,LazyCompile,0,0xe02c65488c0,556,"fs.openSync fs.js:581:23",0x2efb89c21bd0,~ +code-creation,LazyCompile,0,0xe02c6548b00,468,"modeNum fs.js:556:17",0x2efb89c20608,~ +code-creation,LazyCompile,0,0xe02c6548ce0,3284,"stringToFlags fs.js:502:23",0x2efb89c20560,~ +code-creation,LazyCompile,0,0xe02c65499c0,300,"fs.fstatSync fs.js:881:24",0x2efb89c22b90,~ +code-creation,LazyCompile,0,0xe02c6549b00,324,"fs.Stats.isFile fs.js:151:37",0x2efb89c20fe0,~ +tick,0x7f66177da4fd,106620,0,0x0,2,0xca0620,0xe02c6547096,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6549c60,516,"Buffer buffer.js:47:16",0x31534ffffae8,~ +code-creation,LazyCompile,0,0xe02c6549e80,892,"allocate buffer.js:81:18",0x31534ffffc38,~ +code-creation,LazyCompile,0,0xe02c654a200,956,"fs.readSync fs.js:633:23",0x2efb89c21d20,~ +code-creation,LazyCompile,0,0xe02c654a5c0,300,"fs.closeSync fs.js:552:24",0x2efb89c21a80,~ +code-creation,LazyCompile,0,0xe02c654a700,612,"Buffer.toString buffer.js:395:37",0x31534ff931f0,~ +code-disable-optimization,"APPLY_PREPARE","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c654a980,1388,"APPLY_PREPARE native runtime.js:336:23",0x31534ff6c1f0, +code-creation,Stub,13,0xe02c654af00,232,"CompareNilICStub(NullValue)(MonomorphicMap)" +code-creation,LazyCompile,0,0xe02c654b000,2448,"slowToString buffer.js:329:22",0x31534ff9dd50,~ +code-creation,LazyCompile,0,0xe02c654b9a0,500,"get length native typedarray.js:161:30",0x31534ff865f0,~ +tick,0x7f661775f3cf,107669,0,0x7fffc2951fe0,2,0xca0620,0xe02c654b104,0xe02c654a88f,0xe02c6547a07,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c654bba0,388,"stripBOM internal/module.js:34:18",0x2efb89c1be18,~ +code-creation,LazyCompile,0,0xe02c654bd40,1356,"charCodeAt native string.js:57:28",0x31534ff79a98,~ +code-creation,LazyCompile,0,0xe02c654c2a0,2020,"Module._compile module.js:366:37",0x2efb89c1aeb8,~ +code-creation,RegExp,5,0xe02c654caa0,895,"^\\#\\!.*" +code-creation,LazyCompile,0,0xe02c654ce20,348,"exports.runInThisContext vm.js:52:36",0x2efb89c1c988,~ +tick,0x7f6617851a30,108720,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c654cf80,3156," /home/rgbm21/Documents/botkit/bot.js:1:11",0x2efb89c46830,~ +code-creation,Script,0,0xe02c654dbe0,244,"/home/rgbm21/Documents/botkit/bot.js",0x2efb89c46970,~ +code-creation,Handler,3,0xe02c654dce0,186,"substr" +code-creation,LazyCompile,0,0xe02c654dda0,636,"makeRequireFunction internal/module.js:7:29",0x2efb89c1bd70,~ +code-creation,LazyCompile,0,0xe02c654e020,300,"require internal/module.js:11:19",0x2efb89c46b68,~ +code-creation,LazyCompile,0,0xe02c654e160,500,"Module.require module.js:350:36",0x2efb89c1ae10,~ +code-creation,Stub,14,0xe02c654e360,248,"ToBooleanStub(Bool,String)" +code-creation,Stub,14,0xe02c654e460,236,"ToBooleanStub(Null,SpecObject)" +code-creation,Stub,3,0xe02c654e560,120,"LoadConstantStub" +code-creation,Handler,3,0xe02c654e5e0,186,"substring" +tick,0xbb0937,109783,0,0x7fffc2952740,0,0xbb9fc0,0xe02c653ab8e,0xe02c6539f40,0xe02c65399dc,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c654d1f4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c654e6a0,764,"posix.basename path.js:548:26",0x2efb89c178b8,~ +code-creation,RegExp,5,0xe02c654e9a0,939,"^index\\.\\w+?$" +code-creation,Handler,3,0xe02c654ed60,171,"JSON" +code-creation,StoreIC,9,0xe02c654ee20,134,"request" +code-creation,StoreIC,9,0xe02c654eec0,134,"paths" +code-creation,Handler,3,0xe02c654ef60,186,"slice" +code-creation,Stub,3,0xe02c654f020,120,"LoadConstantStub" +code-creation,Handler,3,0xe02c654f0a0,192,"id" +code-creation,StoreIC,9,0xe02c654f160,134,"id" +code-creation,Handler,3,0xe02c654f200,192,"exports" +code-creation,StoreIC,9,0xe02c654f2c0,134,"exports" +code-creation,Handler,3,0xe02c654f360,192,"parent" +code-creation,StoreIC,9,0xe02c654f420,134,"parent" +code-creation,Handler,3,0xe02c654f4c0,192,"filename" +code-creation,StoreIC,9,0xe02c654f580,134,"filename" +code-creation,Handler,3,0xe02c654f620,192,"loaded" +code-creation,StoreIC,9,0xe02c654f6e0,134,"loaded" +code-creation,Handler,3,0xe02c654f780,192,"children" +code-creation,StoreIC,9,0xe02c654f840,134,"children" +code-creation,Stub,14,0xe02c654f8e0,224,"ToBooleanStub(Undefined,Bool)" +code-creation,Handler,3,0xe02c654f9c0,164,"load" +code-creation,StoreIC,9,0xe02c654fa80,134,"filename" +code-creation,Handler,3,0xe02c654fb20,192,"paths" +code-creation,StoreIC,9,0xe02c654fbe0,134,"paths" +code-creation,StoreIC,9,0xe02c654fc80,134,"encoding" +tick,0x7f6617ab83d6,110848,0,0xbe261a,0,0xbbb8f0,0xe02c6546cf6,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d1f4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c654fd20,141,"$nonNumberToNumber" +code-creation,Stub,3,0xe02c654fdc0,120,"LoadConstantStub" +code-creation,Handler,3,0xe02c654fe40,164,"isFile" +code-creation,LazyCompile,0,0xe02c654ff00,436,"slice buffer.js:635:40",0x31534ff82098,~ +code-creation,LazyCompile,0,0xe02c65500c0,1332,"subarray native typedarray.js:167:28",0x31534ff866c0,~ +code-creation,LazyCompile,0,0xe02c6550600,1600,"min native math.js:61:17",0x31534ff68350,~ +code-creation,LazyCompile,0,0xe02c6550c40,1428,"Uint8ArrayConstructByArrayBuffer native typedarray.js:37:42",0x31534ff85df8,~ +code-disable-optimization,"MOD","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c65511e0,444,"MOD native runtime.js:186:13",0x31534ff6b148, +code-creation,Stub,11,0xe02c65513a0,284,"BinaryOpICStub(MOD:Smi*1->Smi)" +tick,0x7f66177da4fd,111920,0,0x0,0,0xcc6960,0xe02c6550e14,0xe02c650f8c9,0xe02c65505b4,0xe02c654ffd4,0xe02c654a093,0xe02c6549d87,0xe02c65472ba,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d1f4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65514c0,388,"alignPool buffer.js:38:19",0x31534ffffa40,~ +code-creation,Handler,3,0xe02c6551660,164,"toString" +code-creation,Handler,3,0xe02c6551720,164,"apply" +code-creation,Stub,3,0xe02c65517e0,144,"ArrayBufferViewLoadFieldStub" +code-creation,Handler,3,0xe02c6551880,164,"utf8Slice" +code-creation,Handler,3,0xe02c6551940,164,"_compile" +code-creation,Handler,3,0xe02c6551a00,186,"charCodeAt" +code-creation,Handler,3,0xe02c6551ac0,186,"replace" +code-creation,StoreIC,9,0xe02c6551b80,134,"lastIndex" +code-creation,StoreIC,9,0xe02c6551c20,134,"filename" +code-creation,Function,0,0xe02c6551cc0,428," /home/rgbm21/Documents/botkit/botmath.js:1:11",0x2efb89c48fd8,~ +code-creation,Script,0,0xe02c6551e80,244,"/home/rgbm21/Documents/botkit/botmath.js",0x2efb89c49118,~ +code-creation,Handler,3,0xe02c6551f80,229,"v8debug" +code-creation,Handler,3,0xe02c6552080,164,"constructor" +code-creation,Handler,3,0xe02c6552140,192,"resolve" +code-creation,StoreIC,9,0xe02c6552200,134,"resolve" +code-creation,Handler,3,0xe02c65522a0,216,"main" +code-creation,StoreIC,9,0xe02c6552380,134,"main" +code-creation,Handler,3,0xe02c6552420,216,"extensions" +code-creation,StoreIC,9,0xe02c6552500,134,"extensions" +code-creation,Handler,3,0xe02c65525a0,216,"cache" +code-creation,StoreIC,9,0xe02c6552680,134,"cache" +code-creation,Handler,3,0xe02c6552720,164,"require" +tick,0xbeb963,112978,0,0x21,0,0xcccb70,0xe02c653ce96,0xe02c653c845,0xe02c653b60f,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c65527e0,164,"slice" +code-creation,Handler,3,0xe02c65528a0,164,"subarray" +code-creation,Function,0,0xe02c6552960,428," /home/rgbm21/Documents/botkit/lib/Botkit.js:1:11",0x2efb89c49978,~ +code-creation,Script,0,0xe02c6552b20,244,"/home/rgbm21/Documents/botkit/lib/Botkit.js",0x2efb89c49ab8,~ +code-creation,Handler,3,0xe02c6552c20,192,"cache" +code-creation,StoreIC,9,0xe02c6552ce0,134,"cache" +code-creation,Stub,11,0xe02c6552d80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xc3d7b1,114045,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd12102,115101,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6552e00,804," /home/rgbm21/Documents/botkit/lib/CoreBot.js:1:11",0x2efb89c4b3a0,~ +code-creation,Script,0,0xe02c6553140,244,"/home/rgbm21/Documents/botkit/lib/CoreBot.js",0x2efb89c4b4e0,~ +code-creation,LazyCompile,0,0xe02c6553240,700,"tryPackage module.js:90:20",0x2efb89c1a740,~ +code-disable-optimization,"readPackage","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c6553500,1172,"readPackage module.js:68:21",0x2efb89c1a698, +code-creation,LazyCompile,0,0xe02c65539a0,340,"hasOwnProperty module.js:21:24",0x2efb89c1a548,~ +tick,0xbe6605,116162,0,0x7fffc2951e30,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6552edc,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6553b00,508,"tryFile module.js:106:17",0x2efb89c1a7e8,~ +tick,0x7f661785194e,117221,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552edc,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,6,0xe02c6553d00,514,"LoadICTrampolineStub" +code-creation,Function,0,0xe02c6553f20,844,"defineMustache /home/rgbm21/Documents/botkit/node_modules/mustache/mustache.js:8:26",0x2efb89c4e2a0,~ +code-creation,Function,0,0xe02c6554280,348," /home/rgbm21/Documents/botkit/node_modules/mustache/mustache.js:1:11",0x2efb89c4e4d0,~ +code-creation,Script,0,0xe02c65543e0,244,"/home/rgbm21/Documents/botkit/node_modules/mustache/mustache.js",0x2efb89c4e610,~ +tick,0xd0a5a1,118394,0,0x7fffc294ff00,2,0xca0620,0xe02c6554082,0xe02c6554397,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552edc,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd1a39f,119397,0,0x2ed35b0,2,0xca0620,0xe02c6554082,0xe02c6554397,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552edc,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65544e0,5484,"mustacheFactory /home/rgbm21/Documents/botkit/node_modules/mustache/mustache.js:17:34",0x2efb89c4e348,~ +code-creation,LazyCompile,0,0xe02c6555a60,276,"Writer /home/rgbm21/Documents/botkit/node_modules/mustache/mustache.js:430:19",0x2efb89c4f1b0,~ +code-creation,StoreIC,9,0xe02c6555b80,134,"loaded" +code-creation,Stub,11,0xe02c6555c20,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,RegExp,5,0xe02c6555ca0,853,"^[\\/]*" +code-creation,RegExp,5,0xe02c6556000,1162,"(.*?)(?:[\\/]+|$)" +code-creation,RegExp,5,0xe02c65564a0,2575,"^(\\/?|)([\\s\\S]*?)((?:\\.{1\,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$" +tick,0xe02c6556c5d,120458,0,0xc8a774,0,0xcd3440,0xe02c653de2b,0xe02c6543e4a,0xe02c6543bdf,0xe02c65437f1,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6556ec0,356," /home/rgbm21/Documents/botkit/lib/storage/simple_storage.js:1:11",0x2efb89c51430,~ +code-creation,Script,0,0xe02c6557040,244,"/home/rgbm21/Documents/botkit/lib/storage/simple_storage.js",0x2efb89c51570,~ +code-creation,LazyCompile,0,0xe02c6557140,576,"tryExtensions module.js:116:23",0x2efb89c1a938,~ +code-creation,Stub,11,0xe02c6557380,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xe02c6528760,121523,0,0xe02c6527c4e,0,0xe02c653c9c6,0xe02c653c845,0xe02c6553cb4,0xe02c6557254,0xe02c655341e,0xe02c653b68f,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc3b131,122590,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6557400,1084," /home/rgbm21/Documents/botkit/node_modules/jfs/lib/Store.js:286:20",0x2efb89c53d30,~ +code-creation,Function,0,0xe02c6557840,2060," /home/rgbm21/Documents/botkit/node_modules/jfs/lib/Store.js:7:10",0x2efb89c540c0,~ +code-creation,Function,0,0xe02c6558060,316," /home/rgbm21/Documents/botkit/node_modules/jfs/lib/Store.js:1:11",0x2efb89c54250,~ +code-creation,Script,0,0xe02c65581a0,244,"/home/rgbm21/Documents/botkit/node_modules/jfs/lib/Store.js",0x2efb89c54390,~ +tick,0xb30eb6,123639,0,0x0,1 +tick,0xbeb2e3,124714,0,0x7fffc2951d00,0,0x93c720,0xe02c654516b,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65578ef,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd52201,125810,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65578ef,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd0dd25,126847,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65578ef,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x91a14e,127908,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65578ef,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65582a0,782,"FastNewContextStub" +tick,0xa332d9,129107,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65578ef,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65585c0,8060," /home/rgbm21/Documents/botkit/node_modules/jfs/node_modules/async/lib/async.js:8:11",0x2efb89c65888,~ +code-creation,Function,0,0xe02c655a540,276," /home/rgbm21/Documents/botkit/node_modules/jfs/node_modules/async/lib/async.js:1:11",0x2efb89c65a00,~ +code-creation,Script,0,0xe02c655a660,244,"/home/rgbm21/Documents/botkit/node_modules/jfs/node_modules/async/lib/async.js",0x2efb89c65b40,~ +code-creation,Stub,12,0xe02c655a760,221,"CompareICStub" +code-creation,Stub,13,0xe02c655a840,232,"CompareNilICStub(NullValue)(MonomorphicMap)" +code-creation,Handler,3,0xe02c655a940,171,"setImmediate" +tick,0x7f6617764a40,130105,0,0x31,2,0xca0620,0xe02c6559775,0xe02c655a60e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65578ef,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c655aa00,220,"doParallel /home/rgbm21/Documents/botkit/node_modules/jfs/node_modules/async/lib/async.js:329:24",0x2efb89c62aa8,~ +code-creation,LazyCompile,0,0xe02c655aae0,220,"doSeries /home/rgbm21/Documents/botkit/node_modules/jfs/node_modules/async/lib/async.js:339:22",0x2efb89c62bf8,~ +code-creation,LazyCompile,0,0xe02c655abc0,252,"_console_fn /home/rgbm21/Documents/botkit/node_modules/jfs/node_modules/async/lib/async.js:1003:25",0x2efb89c631e0,~ +code-creation,LazyCompile,0,0xe02c655acc0,220,"_times /home/rgbm21/Documents/botkit/node_modules/jfs/node_modules/async/lib/async.js:1070:20",0x2efb89c63288,~ +code-creation,LazyCompile,0,0xe02c655ada0,260,"NativeModule.isInternal node.js:963:39",0x31534fff0080,~ +code-creation,LazyCompile,0,0xe02c655aec0,1284,"startsWith native string.js:661:26",0x31534ff7baf8,~ +code-creation,LazyCompile,0,0xe02c655b3e0,1600,"max native math.js:39:17",0x31534ff68cd0,~ +tick,0xb4f1e1,131161,0,0x7fffc2951150,0,0xbb9fc0,0xe02c6539cba,0xe02c6539534,0xe02c654e307,0xe02c654e0fe,0xe02c655795b,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c655ba20,120,"LoadConstantStub" +code-creation,Handler,3,0xe02c655baa0,186,"startsWith" +code-creation,Stub,14,0xe02c655bb60,236,"ToBooleanStub(Undefined,String)" +tick,0xd07607,132226,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557a39,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c655bc60,558,"FastNewContextStub" +code-creation,Function,0,0xe02c655bea0,3120," /home/rgbm21/Documents/botkit/node_modules/node-uuid/uuid.js:7:10",0x2efb89c69728,~ +code-creation,Function,0,0xe02c655cae0,412," /home/rgbm21/Documents/botkit/node_modules/node-uuid/uuid.js:1:11",0x2efb89c698c0,~ +code-creation,Script,0,0xe02c655cc80,244,"/home/rgbm21/Documents/botkit/node_modules/node-uuid/uuid.js",0x2efb89c69a00,~ +tick,0x7f661776391b,133288,0,0x7fffc294f730,2,0xca0620,0xe02c655c07c,0xe02c655cc33,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557a39,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-disable-optimization,"setupNode","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c655cd80,668,"setupNode /home/rgbm21/Documents/botkit/node_modules/node-uuid/uuid.js:53:21",0x2efb89c68e88, +tick,0xc533e0,134352,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c655ceb2,0xe02c655c07c,0xe02c655cc33,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557a39,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-disable-optimization,"","TryCatchStatement" +tick,0xc08241,135427,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c655ceb2,0xe02c655c07c,0xe02c655cc33,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557a39,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c655d020,13284," crypto.js:1:11",0x2efb89c6f088, +code-creation,Script,0,0xe02c6560420,244,"crypto.js",0x2efb89c6f1c8,~ +tick,0x7c7b40,136491,1,0xe193f0,4,0x93e0b0,0xe02c655d70a,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c655ceb2,0xe02c655c07c,0xe02c655cc33,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557a39,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xe61ede,137537,1,0xe193f0,4,0x93e0b0,0xe02c655d70a,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c655ceb2,0xe02c655c07c,0xe02c655cc33,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557a39,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xbe7da1,138593,1,0xe193f0,3,0x93e0b0,0xe02c655d70a,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c655ceb2,0xe02c655c07c,0xe02c655cc33,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557a39,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6560520,700," internal/streams/lazy_transform.js:1:11",0x2efb89c7d3e0,~ +code-creation,Script,0,0xe02c65607e0,244,"internal/streams/lazy_transform.js",0x2efb89c7d520,~ +tick,0xd55b34,139658,0,0x2de24a0,2,0xca0620,0xe02c65358de,0xe02c65353ba,0xe02c6560798,0xe02c643f10e,0xe02c643e4ba,0xe02c655da7d,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c655ceb2,0xe02c655c07c,0xe02c655cc33,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557a39,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65608e0,492," internal/streams/lazy_transform.js:20:19",0x2efb89c7d208,~ +code-creation,StoreIC,9,0xe02c6560ae0,134,"get_" +code-creation,StoreIC,9,0xe02c6560b80,134,"hasGetter_" +code-creation,LazyCompile,0,0xe02c6560c20,268,"PropertyDescriptor_SetSetter native v8natives.js:366:47",0x31534ff5d418,~ +code-creation,LazyCompile,0,0xe02c6560d40,252,"PropertyDescriptor_GetSetter native v8natives.js:370:47",0x31534ff5d4f8,~ +code-creation,StoreIC,9,0xe02c6560e40,134,"get" +code-creation,StoreIC,9,0xe02c6560ee0,134,"set" +code-creation,Handler,3,0xe02c6560f80,164,"setSet" +code-creation,Stub,3,0xe02c6561040,220,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c6561120,134,"set_" +code-creation,Stub,3,0xe02c65611c0,220,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c65612a0,134,"hasSetter_" +code-creation,Handler,3,0xe02c6561340,164,"getSet" +code-creation,Stub,3,0xe02c6561400,112,"LoadFieldStub" +tick,0xc48593,140726,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c655dbbc,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c655ceb2,0xe02c655c07c,0xe02c655cc33,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557a39,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6561480,916," string_decoder.js:1:11",0x2efb89c7ea00,~ +code-creation,Script,0,0xe02c6561820,244,"string_decoder.js",0x2efb89c7eb40,~ +code-creation,LazyCompile,0,0xe02c6561920,228,"rsaPublic crypto.js:310:19",0x2efb89c6c4a0,~ +code-creation,LazyCompile,0,0xe02c6561a20,228,"rsaPrivate crypto.js:319:20",0x2efb89c6c548,~ +tick,0xbb0283,141789,0,0xbba700,0,0xbbb8f0,0xe02c655f9f4,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c655ceb2,0xe02c655c07c,0xe02c655cc33,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557a39,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,11,0xe02c6561b20,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6561ba0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c6561c20,236,"_rng /home/rgbm21/Documents/botkit/node_modules/node-uuid/uuid.js:60:42",0x2efb89c69bd8,~ +code-creation,Handler,3,0xe02c6561d20,171,"Buffer" +code-creation,LazyCompile,0,0xe02c6561de0,980,"toString native v8natives.js:1029:26",0x31534ff5abd8,~ +code-creation,KeyedStoreIC,10,0xe02c65621c0,134,"" +code-creation,Handler,3,0xe02c6562260,186,"toString" +tick,0xbe6c48,142849,0,0x7fffc2951d30,0,0xccd040,0xe02c655c339,0xe02c655cc33,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557a39,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6562320,332,"LoadFastElementStub" +code-disable-optimization,"SHL","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c6562480,444,"SHL native runtime.js:237:13",0x31534ff6b7e8, +tick,0xe02c6429344,143911,0,0xe02c65464a0,0,0xe02c654516b,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6557aab,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6562640,772," /home/rgbm21/Documents/botkit/node_modules/mkdirp/index.js:1:11",0x2efb89c828d0,~ +code-creation,Script,0,0xe02c6562960,244,"/home/rgbm21/Documents/botkit/node_modules/mkdirp/index.js",0x2efb89c82a10,~ +code-creation,LazyCompile,0,0xe02c6562a60,1300,"parseInt native v8natives.js:40:24",0x31534ff56070,~ +tick,0xbf1e0b,144966,0,0x2e27840,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6557b1d,0xe02c6558154,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6556f67,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552f4d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6562f80,668," /home/rgbm21/Documents/botkit/node_modules/clone/clone.js:1:84",0x2efb89c83ee8,~ +code-creation,Function,0,0xe02c6563220,380," /home/rgbm21/Documents/botkit/node_modules/clone/clone.js:1:11",0x2efb89c84078,~ +code-creation,Script,0,0xe02c65633a0,244,"/home/rgbm21/Documents/botkit/node_modules/clone/clone.js",0x2efb89c841b8,~ +code-creation,Stub,11,0xe02c65634a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xcbcef0,146025,0,0x11740b0,0,0xcc00e0,0xe02c653bd24,0xe02c653b0da,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6552fbe,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6563520,484,"join native array.js:337:19",0x31534ff64e18,~ +code-creation,Function,0,0xe02c6563720,788," /home/rgbm21/Documents/botkit/lib/console_logger.js:1:11",0x2efb89c852d8,~ +code-creation,Script,0,0xe02c6563a40,244,"/home/rgbm21/Documents/botkit/lib/console_logger.js",0x2efb89c85418,~ +code-creation,LazyCompile,1,0xe02c6563b40,906,"join native array.js:337:19",0x31534ff64e18,* +tick,0xd17a41,147094,0,0x7fffc2951690,2,0xca0620,0xe02c6563984,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552fbe,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6563ee0,524,"reduce native array.js:1172:21",0x31534ff66de8,~ +code-creation,LazyCompile,0,0xe02c6564100,1844,"InnerArrayReduce native array.js:1147:26",0x31534ff66d18,~ +code-creation,LazyCompile,0,0xe02c6564840,204," /home/rgbm21/Documents/botkit/lib/console_logger.js:16:42",0x2efb89c850e0,~ +code-creation,Handler,3,0xe02c6564920,184,"alert" +code-creation,KeyedStoreIC,10,0xe02c65649e0,153,"alert" +code-creation,Handler,3,0xe02c6564a80,184,"critical" +code-creation,Handler,3,0xe02c6564b40,184,"error" +code-creation,Stub,3,0xe02c6564c00,594,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6564e60,184,"warning" +code-creation,Handler,3,0xe02c6564f20,184,"notice" +code-creation,Handler,3,0xe02c6564fe0,184,"info" +code-creation,Handler,3,0xe02c65650a0,184,"debug" +code-creation,Stub,11,0xe02c6565160,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xc06c54,148164,0,0x2efb89c3fa21,0,0xcd6c50,0xe02c651a39e,0xe02c6527b84,0xe02c6544f66,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65651e0,900," /home/rgbm21/Documents/botkit/lib/events.js:1:11",0x2efb89c86b60,~ +code-creation,Script,0,0xe02c6565580,244,"/home/rgbm21/Documents/botkit/lib/events.js",0x2efb89c86ca0,~ +tick,0xa93648,149208,0,0x2efb88000001,0,0xc92f30,0xe02c65465d7,0xe02c654516b,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6565287,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc51a6c,150280,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6565287,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6565680,2716," /home/rgbm21/Documents/botkit/node_modules/eventemitter2/lib/eventemitter2.js:8:11",0x2efb89c88b30,~ +code-creation,Function,0,0xe02c6566120,244," /home/rgbm21/Documents/botkit/node_modules/eventemitter2/lib/eventemitter2.js:1:11",0x2efb89c88ca0,~ +code-creation,Script,0,0xe02c6566220,244,"/home/rgbm21/Documents/botkit/node_modules/eventemitter2/lib/eventemitter2.js",0x2efb89c88de0,~ +code-creation,Handler,3,0xe02c6566320,171,"Array" +tick,0xe02c654f136,151335,0,0xe02c654340b,0,0xe02c6539653,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65663e0,1908," /home/rgbm21/Documents/botkit/node_modules/debug/node.js:1:11",0x2efb89c8a740,~ +code-creation,Script,0,0xe02c6566b60,244,"/home/rgbm21/Documents/botkit/node_modules/debug/node.js",0x2efb89c8a880,~ +tick,0xd1a324,152398,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c6566534,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c6566c60,446,"FastNewContextStub" +code-creation,Function,0,0xe02c6566e20,2356," tty.js:1:11",0x2efb89c8b978,~ +code-creation,Script,0,0xe02c6567760,244,"tty.js",0x2efb89c8bab8,~ +tick,0xc4a4b6,153469,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c656705d,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c6566534,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x7f66177638e0,154528,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c656705d,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c6566534,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd19e29,155593,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c656705d,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c6566534,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6567860,10516," net.js:1:11",0x2efb89c91d28,~ +code-creation,Script,0,0xe02c656a180,244,"net.js",0x2efb89c91e68,~ +tick,0x7f66177da49d,156844,1,0xe193f0,4,0x93e0b0,0xe02c6568394,0xe02c643f10e,0xe02c643e4ba,0xe02c656705d,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c6566534,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xbf0f8d,157695,1,0xe193f0,3,0x93e0b0,0xe02c6568692,0xe02c643f10e,0xe02c643e4ba,0xe02c656705d,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c6566534,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,RegExp,5,0xe02c656a280,980,"\\bNET\\b" +code-creation,Stub,11,0xe02c656a660,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xe02c6541070,159006,0,0x3200000000,0,0xe02c653c845,0xe02c6553cb4,0xe02c6557254,0xe02c653b6d4,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c656660d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c656a6e0,900," /home/rgbm21/Documents/botkit/node_modules/debug/debug.js:1:11",0x2efb89c9cfe0,~ +code-creation,Script,0,0xe02c656aa80,244,"/home/rgbm21/Documents/botkit/node_modules/debug/debug.js",0x2efb89c9d120,~ +tick,0xc1ec4c,160059,0,0x7fffc2951a50,0,0xbbb8f0,0xe02c656a890,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656660d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c656ab80,892," /home/rgbm21/Documents/botkit/node_modules/ms/index.js:1:11",0x2efb89c9e160,~ +code-creation,Script,0,0xe02c656af00,244,"/home/rgbm21/Documents/botkit/node_modules/ms/index.js",0x2efb89c9e2a0,~ +tick,0xd073f6,161140,0,0x7fffc2951a80,2,0xca0620,0xe02c6562d3a,0xe02c65667b7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c656b000,500,"NonStringToString native runtime.js:460:27",0x31534ff6cbc0,~ +code-creation,Stub,14,0xe02c656b200,228,"ToBooleanStub(HeapNumber)" +code-creation,LazyCompile,0,0xe02c656b300,572," node.js:677:48",0x2efb89c133b8,~ +code-creation,LazyCompile,0,0xe02c656b540,1484,"createWritableStdioStream node.js:616:37",0x31534ffef018,~ +code-creation,LazyCompile,0,0xe02c656bb20,844,"WriteStream tty.js:54:21",0x2efb89c8b010,~ +code-creation,LazyCompile,0,0xe02c656be80,2972,"Socket net.js:109:16",0x2efb89c8e5d0,~ +tick,0xd5226a,162212,0,0x7fffc2951ac8,0,0xca0620,0xe02c656bd50,0xe02c656b7ee,0xe02c656b3ee,0xe02c65668fa,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c656ca20,988,"Duplex _stream_duplex.js:23:16",0x2efb89c332a0,~ +code-creation,LazyCompile,0,0xe02c656ce00,628,"Readable _stream_readable.js:80:18",0x2efb89c2e5c0,~ +code-creation,LazyCompile,0,0xe02c656d080,1828,"ReadableState _stream_readable.js:15:23",0x2efb89c2e518,~ +code-creation,Stub,12,0xe02c656d7c0,685,"CompareICStub" +code-disable-optimization,"BIT_XOR","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c656da80,444,"BIT_XOR native runtime.js:226:17",0x31534ff6b698, +tick,0x7f6617767861,163338,0,0x7fffc29519b0,0,0xbbb8f0,0xe02c656d3e5,0xe02c656cf2d,0xe02c656cb88,0xe02c656c183,0xe02c656bd50,0xe02c656b7ee,0xe02c656b3ee,0xe02c65668fa,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c656dc40,292,"Stream stream.js:22:16",0x2efb89c2cf00,~ +code-creation,Handler,3,0xe02c656dd80,192,"domain" +code-creation,StoreIC,9,0xe02c656de40,134,"domain" +code-creation,Handler,3,0xe02c656dee0,164,"_events" +code-creation,Handler,3,0xe02c656dfa0,164,"_maxListeners" +code-creation,Handler,3,0xe02c656e060,192,"_maxListeners" +code-creation,StoreIC,9,0xe02c656e120,134,"_maxListeners" +code-creation,LazyCompile,0,0xe02c656e1c0,868,"Writable _stream_writable.js:130:18",0x2efb89c31468,~ +code-creation,LazyCompile,0,0xe02c656e540,1652,"WritableState _stream_writable.js:26:23",0x2efb89c313c0,~ +code-creation,StorePolymorphicIC,9,0xe02c656ebc0,154,"domain" +code-creation,Handler,3,0xe02c656ec60,164,"_events" +code-creation,StorePolymorphicIC,9,0xe02c656ed20,154,"_maxListeners" +code-creation,LazyCompile,0,0xe02c656edc0,620,"once events.js:249:44",0x31534fff80c0,~ +tick,0xc47b01,164363,0,0x7fffc29504c0,2,0xca0620,0xe02c656efde,0xe02c656cde1,0xe02c656c183,0xe02c656bd50,0xe02c656b7ee,0xe02c656b3ee,0xe02c65668fa,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c656f040,1132,"Readable.on _stream_readable.js:664:33",0x2efb89c2f778,~ +code-creation,Handler,3,0xe02c656f4c0,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,Handler,3,0xe02c656f560,201,"end" +code-creation,Stub,3,0xe02c656f640,212,"StoreFieldStub" +code-creation,StorePolymorphicIC,9,0xe02c656f720,154,"_eventsCount" +code-creation,Handler,3,0xe02c656f7c0,164,"on" +code-creation,Handler,3,0xe02c656f880,201,"finish" +code-creation,Stub,3,0xe02c656f960,286,"LoadFieldStub" +code-creation,Handler,3,0xe02c656fa80,201,"_socketEnd" +code-creation,LazyCompile,0,0xe02c656fb60,556,"initSocketHandle net.js:92:26",0x2efb89c8e528,~ +code-creation,Stub,3,0xe02c656fda0,296,"LoadFastElementStub" +code-creation,Handler,3,0xe02c656fee0,585,"emit" +code-creation,Handler,3,0xe02c6570140,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,LazyCompile,0,0xe02c65701e0,372,"startup.lazyConstants node.js:240:35",0x31534ffef4b0,~ +tick,0xc24d68,165425,0,0x2df0000,0,0xbb9fc0,0xe02c65702ae,0xe02c6524eaf,0xe02c6524996,0xe02c6524712,0xe02c6524232,0xe02c65233f7,0xe02c656b515,0xe02c65668fa,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c656530b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c655308b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a0a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c6570360,201,"SIGWINCH" +code-creation,LazyCompile,0,0xe02c6570440,1236,"inspect util.js:87:17",0x2efb89c07608,~ +code-creation,LazyCompile,0,0xe02c6570920,268,"load /home/rgbm21/Documents/botkit/node_modules/debug/node.js:133:14",0x2efb89c8a160,~ +code-creation,LazyCompile,0,0xe02c6570a40,1920,"enable /home/rgbm21/Documents/botkit/node_modules/debug/debug.js:136:16",0x2efb89c9cb58,~ +code-creation,LazyCompile,0,0xe02c65711c0,388,"save /home/rgbm21/Documents/botkit/node_modules/debug/node.js:116:14",0x2efb89c8a0b8,~ +code-creation,RegExp,5,0xe02c6571360,990,"[\\s\,]+" +code-creation,Stub,11,0xe02c6571740,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xc921e6,166485,0,0x2de24c0,0,0xc92f30,0xe02c65465d7,0xe02c654516b,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xbf7e04,167551,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65717c0,724," /home/rgbm21/Documents/botkit/lib/SlackBot.js:1:11",0x2efb89ca4e80,~ +code-creation,Script,0,0xe02c6571aa0,244,"/home/rgbm21/Documents/botkit/lib/SlackBot.js",0x2efb89ca4fc0,~ +code-creation,Stub,11,0xe02c6571ba0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xe02c6550121,168612,0,0x7fffc2952318,0,0xe02c654a093,0xe02c6549d87,0xe02c65472ba,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6571c20,1892," /home/rgbm21/Documents/botkit/node_modules/request/index.js:1:11",0x2efb89ca6d70,~ +code-creation,Script,0,0xe02c65723a0,244,"/home/rgbm21/Documents/botkit/node_modules/request/index.js",0x2efb89ca6eb0,~ +tick,0x93c516,169681,0,0x7fffc2952140,0,0x93c720,0xe02c654516b,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571da6,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65724a0,684," /home/rgbm21/Documents/botkit/node_modules/extend/index.js:1:11",0x2efb89ca7ba8,~ +code-creation,Script,0,0xe02c6572760,244,"/home/rgbm21/Documents/botkit/node_modules/extend/index.js",0x2efb89ca7ce8,~ +code-creation,Function,0,0xe02c6572860,932," /home/rgbm21/Documents/botkit/node_modules/request/lib/cookies.js:1:11",0x2efb89ca88e8,~ +code-creation,Script,0,0xe02c6572c20,244,"/home/rgbm21/Documents/botkit/node_modules/request/lib/cookies.js",0x2efb89ca8a28,~ +tick,0xa2e780,170767,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x7f6617840cd2,171793,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc43501,172866,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xadb051,173919,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-disable-optimization,"","TryCatchStatement" +code-creation,Function,0,0xe02c6572d20,11276," /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/cookie.js:1:11",0x2efb89cad968, +code-creation,Script,0,0xe02c6575940,244,"/home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/cookie.js",0x2efb89cadaa8,~ +tick,0x919d65,174982,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c65731dc,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x91745a,176037,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c65731dc,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6575a40,3828," url.js:1:11",0x2efb89caf698,~ +code-creation,Script,0,0xe02c6576940,244,"url.js",0x2efb89caf7d8,~ +tick,0xd66177,177101,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6575c69,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c65731dc,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6576a40,5320," punycode.js:2:11",0x2efb89cb1148,~ +code-creation,Function,0,0xe02c6577f20,308," punycode.js:1:11",0x2efb89cb12d8,~ +code-creation,Script,0,0xe02c6578060,244,"punycode.js",0x2efb89cb1418,~ +code-creation,Stub,12,0xe02c6578160,221,"CompareICStub" +code-creation,Stub,12,0xe02c6578240,221,"CompareICStub" +tick,0xc4fc89,178165,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c65766ca,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c65731dc,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6578320,1648," querystring.js:1:11",0x2efb89cb2620,~ +code-creation,Script,0,0xe02c65789a0,244,"querystring.js",0x2efb89cb2760,~ +code-creation,Stub,11,0xe02c6578aa0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6578b20,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c6578ba0,980,"toString native v8natives.js:1029:26",0x31534ff5abd8,~ +tick,0xaa2130,179221,0,0xc8c161,0,0xcbb050,0xe02c643eb07,0xe02c643e8bc,0xe02c643e7b4,0xe02c6539c76,0xe02c6539e28,0xe02c65399dc,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6578f80,276,"ToName native runtime.js:466:16",0x31534ff6cc68,~ +code-creation,Stub,2,0xe02c65790a0,184,"DoubleToIStub" +code-creation,LazyCompile,1,0xe02c6579160,1239,"toString native v8natives.js:1029:26",0x31534ff5abd8,* +code-creation,LazyCompile,1,0xe02c6579640,266,"ToName native runtime.js:466:16",0x31534ff6cc68,* +tick,0xd21154,180277,0,0x0,1 +tick,0xad5ce2,181346,0,0x0,1 +tick,0xd0c861,182440,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc441e4,183476,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x919687,184533,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd0c87b,185588,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc44293,186650,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc484be,187713,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x91a14e,188773,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc16219,189840,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xbf1b64,190895,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc16219,191963,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x924a37,193020,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xde2bec,194108,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6579760,644," /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/pubsuffix.js:1:11",0x2b24593229d8,~ +code-creation,Script,0,0xe02c6579a00,244,"/home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/pubsuffix.js",0x2b2459322b18,~ +tick,0xe02c6436007,195145,0,0xe02c654df59,0,0xe02c654c91b,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xbe6761,196217,0,0x7fffc29519a0,0,0xcc1970,0xe02c657993f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc1c76c,197268,0,0x0,0,0xcc1970,0xe02c657993f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xbf1b68,198325,0,0x7fffc2951900,0,0xcc1970,0xe02c657993f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc2f8c7,199367,0,0x1,0,0xcc1970,0xe02c657993f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xbf1b64,200441,0,0x7fffc2951900,0,0xcc1970,0xe02c657993f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc3045c,201494,0,0x1,0,0xcc1970,0xe02c657993f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573260,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6579b00,1352,"freeze native v8natives.js:860:24",0x31534ff59fd8,~ +tick,0xe02c6408341,202558,0,0x7fffc2951b68,0,0xe02c6527bbc,0xe02c653a70b,0xe02c65399dc,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65732c8,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c657a060,940," /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/store.js:1:11",0x2b2459323ae8,~ +code-creation,Script,0,0xe02c657a420,244,"/home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/store.js",0x2b2459323c28,~ +tick,0xe02c65443de,203621,0,0xffffffffffffffb8,0,0x0,0xe02c653de2b,0xe02c6543e4a,0xe02c6546858,0xe02c654388f,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573317,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c657a520,1716," /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/memstore.js:1:11",0x2b2459324bf0,~ +code-creation,Script,0,0xe02c657abe0,244,"/home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/memstore.js",0x2b2459324d30,~ +tick,0xe02c65421ce,204687,0,0xe02c653fbaa,0,0xe39c70,0xe02c6549a9e,0xe02c654704e,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657a680,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6573317,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c657ace0,372," /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/permuteDomain.js:1:11",0x2b2459325258,~ +code-creation,Script,0,0xe02c657ae60,244,"/home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/permuteDomain.js",0x2b2459325398,~ +code-creation,RegExp,5,0xe02c657af60,964,"^index\\.\\w+?$" +code-creation,Function,0,0xe02c657b340,228," /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/pathMatch.js:1:11",0x2b2459325830,~ +code-creation,Script,0,0xe02c657b440,244,"/home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/pathMatch.js",0x2b2459325970,~ +tick,0x93fb42,205748,0,0x3625c028e8d,0,0x93f8d0,0xe02c6543e92,0xe02c6543bdf,0xe02c653a96a,0xe02c65399dc,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c657339b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xaddd06,206812,0,0x0,1 +code-disable-optimization,"Module._extensions..json","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c657b540,724,"Module._extensions..json module.js:409:39",0x2efb89c1b008, +code-creation,Stub,11,0xe02c657b820,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c657b8a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xe02c6522ba4,207976,0,0x1500000000,0,0xe02c651075e,0xe02c65748ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c657b920,564,"filter native array.js:933:21",0x31534ff66018,~ +code-creation,LazyCompile,0,0xe02c657bb60,1640,"InnerArrayFilter native array.js:909:26",0x31534ff65f48,~ +code-creation,LazyCompile,0,0xe02c657c1e0,492," /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/cookie.js:659:19",0x2efb89cabf88,~ +code-disable-optimization,"INSTANCE_OF","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c657c3e0,852,"INSTANCE_OF native runtime.js:289:21",0x31534ff6bea8, +code-creation,KeyedStoreIC,10,0xe02c657c740,134,"" +code-creation,Handler,3,0xe02c657c7e0,171,"Function" +code-creation,LazyCompile,0,0xe02c657c8a0,292," /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/cookie.js:1321:29",0x2efb89cacf68,~ +tick,0xe02c6419e8a,209526,0,0xe02c6575061,0,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572961,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e0e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,11,0xe02c657c9e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c657ca60,220,"syncWrap /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/cookie.js:1299:18",0x2efb89cabea0,~ +tick,0xc44240,210387,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e76,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c657cb40,884," /home/rgbm21/Documents/botkit/node_modules/request/lib/helpers.js:1:11",0x2b24593c2368,~ +code-creation,Script,0,0xe02c657cec0,244,"/home/rgbm21/Documents/botkit/node_modules/request/lib/helpers.js",0x2b24593c24a8,~ +tick,0xc486e0,211434,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ccdb,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e76,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c657cfc0,356," /home/rgbm21/Documents/botkit/node_modules/json-stringify-safe/stringify.js:1:11",0x2b24593c2f10,~ +code-creation,Script,0,0xe02c657d140,244,"/home/rgbm21/Documents/botkit/node_modules/json-stringify-safe/stringify.js",0x2b24593c3050,~ +code-creation,LazyCompile,0,0xe02c657d240,388,"posixSplitPath path.js:410:24",0x2efb89c16c40,~ +code-creation,LazyCompile,0,0xe02c657d3e0,356,"deferMethod /home/rgbm21/Documents/botkit/node_modules/request/lib/helpers.js:6:21",0x2b24593c1ba8,~ +tick,0xd8d127,212599,0,0x7fffc2951bd0,2,0xcbb000,0xe02c657d454,0xe02c657ce5a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571e76,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c657d560,2668,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c657dfe0,489,"posixSplitPath path.js:410:24",0x2efb89c16c40,* +code-creation,LazyCompile,0,0xe02c657e1e0,396,"verbFunc /home/rgbm21/Documents/botkit/node_modules/request/index.js:58:19",0x2efb89ca65c8,~ +tick,0xd120d6,213612,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc517a8,214672,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc4810e,215735,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c657e380,1002,"FastNewContextStub" +tick,0xc081fe,216793,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c657e780,8324," /home/rgbm21/Documents/botkit/node_modules/request/request.js:1:11",0x2b24593c8930,~ +code-creation,Script,0,0xe02c6580820,244,"/home/rgbm21/Documents/botkit/node_modules/request/request.js",0x2b24593c8a70,~ +code-creation,Function,0,0xe02c6580920,2316," http.js:1:11",0x2b24593c97b8,~ +code-creation,Script,0,0xe02c6581240,244,"http.js",0x2b24593c98f8,~ +tick,0xbf6353,217862,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6580b53,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ea62,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6581340,1332," _http_incoming.js:1:11",0x2b24593ca748,~ +code-creation,Script,0,0xe02c6581880,244,"_http_incoming.js",0x2b24593ca888,~ +code-creation,Function,0,0xe02c6581980,3052," _http_common.js:1:11",0x2b24593cbcf0,~ +code-creation,Script,0,0xe02c6582580,244,"_http_common.js",0x2b24593cbe30,~ +code-creation,Function,0,0xe02c6582680,484," internal/freelist.js:1:11",0x2b24593cc358,~ +code-creation,Script,0,0xe02c6582880,244,"internal/freelist.js",0x2b24593cc498,~ +tick,0x7f66177da4fd,218917,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6581c4b,0xe02c643f10e,0xe02c643e4ba,0xe02c6580bae,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ea62,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,RegExp,5,0xe02c6582980,956,"\\bHTTP\\b" +code-creation,LazyCompile,0,0xe02c6582d40,300,"exports.FreeList internal/freelist.js:4:28",0x2b24593cc068,~ +code-creation,LazyCompile,0,0xe02c6582e80,540,"sort native array.js:903:19",0x31534ff65e80,~ +tick,0xd10a38,219980,0,0x7fffc2951130,2,0xca0620,0xe02c658303d,0xe02c6580c5b,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ea62,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65830a0,1244,"InnerArraySort native array.js:688:24",0x31534ff65db0,~ +code-creation,LazyCompile,0,0xe02c6583580,3392,"QuickSort native array.js:728:26",0x2b24593ce418,~ +code-creation,LazyCompile,0,0xe02c65842c0,556,"InnerArraySort.aD native array.js:690:12",0x2b24593ce220,~ +code-creation,Stub,12,0xe02c6584500,413,"CompareICStub" +code-creation,Stub,12,0xe02c65846a0,413,"CompareICStub" +code-creation,Stub,12,0xe02c6584840,414,"CompareICStub" +code-creation,KeyedStoreIC,10,0xe02c65849e0,134,"" +code-creation,LazyCompile,0,0xe02c6584a80,1036,"InsertionSort native array.js:701:30",0x2b24593ce2c8,~ +tick,0xd590a8,221043,0,0x7fffc29510d0,2,0xca07d0,0xe02c6584bee,0xe02c65836d4,0xe02c658420e,0xe02c65834e3,0xe02c658303d,0xe02c6580c5b,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ea62,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6584ea0,556,"InnerArraySort.aD native array.js:690:12",0x2b24593ce220,~ +tick,0xc51cdf,222120,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6580ca0,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ea62,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65850e0,6132," _http_outgoing.js:1:11",0x2b24593d20e0,~ +code-creation,Script,0,0xe02c65868e0,244,"_http_outgoing.js",0x2b24593d2220,~ +code-creation,LazyCompile,1,0xe02c65869e0,709,"InnerArraySort.aD native array.js:690:12",0x2b24593ce220,* +tick,0xa9a4b2,223152,0,0x2de24a0,0,0xcdc830,0xe02c65862e8,0xe02c643f10e,0xe02c643e4ba,0xe02c6580ca0,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ea62,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6586cc0,956,"fromString buffer.js:103:20",0x31534ffffce0,~ +code-creation,LazyCompile,0,0xe02c6587080,2040,"byteLength buffer.js:259:20",0x31534ffffed8,~ +code-creation,LazyCompile,0,0xe02c6587880,3208,"Buffer.write buffer.js:545:34",0x31534ff833a8,~ +code-creation,LazyCompile,0,0xe02c6588520,580,"isFinite native v8natives.js:36:24",0x31534ff55fa8,~ +code-creation,Handler,3,0xe02c6588780,171,"isFinite" +code-creation,Stub,12,0xe02c6588840,287,"CompareICStub" +tick,0x7f661891565c,224237,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6580cfb,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ea62,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x9234e0,225279,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6580cfb,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ea62,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6588960,3764," _http_server.js:1:11",0x2b24593d6d00,~ +code-creation,Script,0,0xe02c6589820,244,"_http_server.js",0x2b24593d6e40,~ +tick,0xa9844d,226348,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6580d9a,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ea62,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6589920,1500," _http_agent.js:1:11",0x2b24593d7f80,~ +code-creation,Script,0,0xe02c6589f00,244,"_http_agent.js",0x2b24593d80c0,~ +code-creation,LazyCompile,0,0xe02c658a000,1668,"Agent _http_agent.js:20:15",0x2b24593d79b0,~ +code-creation,Handler,3,0xe02c658a6a0,192,"domain" +code-creation,StorePolymorphicIC,9,0xe02c658a760,154,"domain" +code-creation,Handler,3,0xe02c658a800,164,"_events" +code-creation,Handler,3,0xe02c658a8c0,192,"_events" +code-creation,StoreIC,9,0xe02c658a980,134,"_events" +code-creation,Handler,3,0xe02c658aa20,184,"_eventsCount" +code-creation,StoreIC,9,0xe02c658aae0,134,"_eventsCount" +code-creation,Handler,3,0xe02c658ab80,164,"_maxListeners" +code-creation,Handler,3,0xe02c658ac40,192,"_maxListeners" +code-creation,StoreIC,9,0xe02c658ad00,134,"_maxListeners" +code-creation,LazyCompile,0,0xe02c658ada0,664,"exports._extend util.js:763:27",0x2efb89c08f18,~ +code-creation,Handler,3,0xe02c658b040,201,"free" +tick,0xbd817b,227404,0,0x7fffc2950e60,0,0xbbb8f0,0xe02c65234b0,0xe02c658a668,0xe02c6589eaa,0xe02c643f10e,0xe02c643e4ba,0xe02c6580d9a,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ea62,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c658b120,212,"StoreFieldStub" +code-creation,StorePolymorphicIC,9,0xe02c658b200,174,"_eventsCount" +tick,0xd52346,228471,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6580e72,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ea62,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c658b2c0,3612," _http_client.js:1:11",0x2b24593dad78,~ +code-creation,Script,0,0xe02c658c0e0,244,"_http_client.js",0x2b24593daeb8,~ +code-creation,LazyCompile,0,0xe02c658c1e0,380,"NativeModule.nonInternalExists node.js:959:46",0x31534ffeffd8,~ +code-creation,LazyCompile,0,0xe02c658c360,284,"NativeModule.exists node.js:944:33",0x31534ffefde0,~ +code-creation,LazyCompile,0,0xe02c658c480,260,"NativeModule.isInternal node.js:963:39",0x31534fff0080,~ +tick,0xc58e46,229526,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c658c5a0,2044," https.js:1:11",0x2b24593dc5f0,~ +code-creation,Script,0,0xe02c658cda0,244,"https.js",0x2b24593dc730,~ +code-creation,Stub,6,0xe02c658cea0,502,"LoadICStub" +code-creation,Stub,2,0xe02c658d0a0,335,"CallFunctionStub_Args1" +code-creation,LazyCompile,1,0xe02c658d200,704,"NativeModule.nonInternalExists node.js:959:46",0x31534ffeffd8,* +tick,0xd14d99,230595,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c658c746,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c658d4c0,2004," tls.js:1:11",0x2b24593dde18,~ +code-creation,Script,0,0xe02c658dca0,244,"tls.js",0x2b24593ddf58,~ +code-creation,LazyCompile,0,0xe02c658dda0,916,"NativeModule.require node.js:916:34",0x31534ffefc90,~ +code-creation,LazyCompile,0,0xe02c658e140,244,"NativeModule.getCached node.js:940:36",0x31534ffefd38,~ +code-creation,LazyCompile,0,0xe02c658e240,340,"NativeModule node.js:906:24",0x31534ffef168,~ +code-creation,LazyCompile,0,0xe02c658e3a0,260,"NativeModule.cache node.js:995:42",0x31534fff0340,~ +code-creation,LazyCompile,0,0xe02c658e4c0,692,"NativeModule.compile node.js:982:44",0x31534fff0298,~ +code-creation,LazyCompile,0,0xe02c658e780,244,"NativeModule.getSource node.js:969:36",0x31534fff0128,~ +code-creation,LazyCompile,0,0xe02c658e880,332,"NativeModule.wrap node.js:973:31",0x31534fff01d0,~ +tick,0xd3cd46,231653,0,0x2ed2088,2,0xca07d0,0xe02c658d633,0xe02c643f10e,0xe02c643e4ba,0xe02c658c746,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c658e9e0,308,"runInThisContext node.js:901:28",0x31534ffef0c0,~ +code-creation,Stub,2,0xe02c658eb20,436,"CallApiAccessorStub" +code-creation,Function,0,0xe02c658ece0,924," _tls_common.js:1:11",0x2b24593e01b8,~ +code-creation,Script,0,0xe02c658f080,244,"_tls_common.js",0x2b24593e02f8,~ +tick,0xc4eebc,232724,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c658daa9,0xe02c643f10e,0xe02c643e4ba,0xe02c658c746,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd12046,233783,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c658daa9,0xe02c643f10e,0xe02c643e4ba,0xe02c658c746,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc081f8,234838,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c658daa9,0xe02c643f10e,0xe02c643e4ba,0xe02c658c746,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c658f180,6548," _tls_wrap.js:1:11",0x2b24593e3eb0,~ +code-creation,Script,0,0xe02c6590b20,244,"_tls_wrap.js",0x2b24593e3ff0,~ +code-creation,Stub,2,0xe02c6590c20,2688,"RecordWriteStub" +code-creation,Stub,2,0xe02c65916a0,965,"StringAddStub_CheckNone_NotTenured" +code-creation,Stub,2,0xe02c6591a80,1226,"RecordWriteStub" +code-creation,Stub,2,0xe02c6591f60,2669,"RecordWriteStub" +code-creation,Stub,2,0xe02c65929e0,1230,"RecordWriteStub" +tick,0xd53f0e,235900,0,0x2,2,0xcbb000,0xe02c6590b98,0xe33e90,0xe02c643f5c7,0xe02c643f07e,0xe02c643e4ba,0xe02c658daa9,0xe02c643f10e,0xe02c643e4ba,0xe02c658c746,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c6592ec0,2680,"RecordWriteStub" +code-creation,Stub,2,0xe02c6593940,234,"CallFunctionStub_Args4" +code-creation,Stub,2,0xe02c6593a40,2680,"RecordWriteStub" +code-creation,Stub,2,0xe02c65944c0,782,"GrowArrayElementsStub" +code-creation,LazyCompile,1,0xe02c65947e0,4076,"NativeModule.require node.js:916:34",0x31534ffefc90,* +code-creation,KeyedStoreIC,10,0xe02c65957e0,153,"_stream_wrap" +tick,0xc34159,236964,1,0xe32800,2,0x93d1a0,0xe02c6595289,0xe02c658f930,0xe02c643f10e,0xe02c643e4ba,0xe02c658daa9,0xe02c643f10e,0xe02c643e4ba,0xe02c658c746,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6595880,2236," _stream_wrap.js:1:11",0x2b24593e7230,~ +code-creation,Script,0,0xe02c6596140,244,"_stream_wrap.js",0x2b24593e7370,~ +code-creation,RegExp,5,0xe02c6596240,1100,"\\bSTREAM_WRAP\\b" +code-creation,RegExp,5,0xe02c65966a0,980,"\\bTLS\\b" +tick,0xd2f77e,238026,1,0xe193f0,3,0x93e0b0,0xe02c658fc44,0xe02c643f10e,0xe02c643e4ba,0xe02c658daa9,0xe02c643f10e,0xe02c643e4ba,0xe02c658c746,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6596a80,1076,"getDefaultSessionIdContext _tls_wrap.js:19:36",0x2b24593e1aa0,~ +code-creation,LazyCompile,0,0xe02c6596ec0,484,"Hash crypto.js:47:14",0x2efb89c6beb8,~ +code-creation,LazyCompile,0,0xe02c65970c0,204,"LazyTransform internal/streams/lazy_transform.js:11:23",0x2efb89c7d140,~ +code-creation,LazyCompile,0,0xe02c65971a0,460,"Hash.update crypto.js:66:33",0x2efb89c6cf20,~ +code-creation,LazyCompile,0,0xe02c6597380,356,"Hash.digest crypto.js:75:33",0x2efb89c6cfc8,~ +code-creation,LazyCompile,0,0xe02c6597500,364," _tls_wrap.js:309:32",0x2b24593e2540,~ +code-creation,KeyedStoreIC,10,0xe02c6597680,153,"unref" +tick,0xbcbfa0,239083,0,0x7fffc2951b50,0,0x93d1a0,0xe02c6595289,0xe02c658dc21,0xe02c643f10e,0xe02c643e4ba,0xe02c658c746,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd090b1,240156,1,0xe32800,2,0x93d1a0,0xe02c6595289,0xe02c658dc21,0xe02c643f10e,0xe02c643e4ba,0xe02c658c746,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-disable-optimization,"","TryCatchStatement" +code-creation,Function,0,0xe02c6597720,6596," _tls_legacy.js:1:11",0x2b24593f35e0, +code-creation,Script,0,0xe02c6599100,244,"_tls_legacy.js",0x2b24593f3720,~ +tick,0xc77eb2,241200,0,0x7fffc2950bc0,0,0xcd3440,0xe02c6518c3c,0xe02c6517d87,0xe02c6597e47,0xe02c6595337,0xe02c658dc21,0xe02c643f10e,0xe02c643e4ba,0xe02c658c746,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,RegExp,5,0xe02c6599200,1081,"\\bTLS-LEGACY\\b" +code-creation,RegExp,5,0xe02c6599640,979,"\\bHTTPS\\b" +code-creation,LazyCompile,0,0xe02c6599a20,628,"Agent https.js:90:15",0x2b24593dbec8,~ +code-creation,Handler,3,0xe02c6599ca0,192,"domain" +code-creation,StorePolymorphicIC,9,0xe02c6599d60,174,"domain" +code-creation,Handler,3,0xe02c6599e20,164,"_events" +code-creation,Handler,3,0xe02c6599ee0,192,"_events" +code-creation,StorePolymorphicIC,9,0xe02c6599fa0,154,"_events" +code-creation,Handler,3,0xe02c659a040,184,"_eventsCount" +code-creation,StorePolymorphicIC,9,0xe02c659a100,154,"_eventsCount" +code-creation,Handler,3,0xe02c659a1a0,164,"_maxListeners" +code-creation,Handler,3,0xe02c659a260,192,"_maxListeners" +code-creation,StoreIC,9,0xe02c659a320,134,"_maxListeners" +code-creation,Handler,3,0xe02c659a3c0,184,"defaultPort" +code-creation,StoreIC,9,0xe02c659a480,134,"defaultPort" +code-creation,Handler,3,0xe02c659a520,192,"protocol" +code-creation,StoreIC,9,0xe02c659a5e0,134,"protocol" +tick,0xbe7a82,242314,0,0x7fffc2951bb0,0,0xbb9fc0,0xe02c658a24b,0xe02c6599b1d,0xe02c658cc69,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c659a680,192,"options" +code-creation,StoreIC,9,0xe02c659a740,134,"options" +code-creation,Handler,3,0xe02c659a7e0,192,"path" +code-creation,StoreIC,9,0xe02c659a8a0,134,"path" +code-creation,Handler,3,0xe02c659a940,192,"requests" +code-creation,StoreIC,9,0xe02c659aa00,134,"requests" +code-creation,Handler,3,0xe02c659aaa0,192,"sockets" +code-creation,StoreIC,9,0xe02c659ab60,134,"sockets" +code-creation,Handler,3,0xe02c659ac00,192,"freeSockets" +code-creation,StoreIC,9,0xe02c659acc0,134,"freeSockets" +code-creation,Stub,3,0xe02c659ad60,240,"StoreTransitionStub" +code-creation,Handler,3,0xe02c659ae60,184,"keepAliveMsecs" +code-creation,StoreIC,9,0xe02c659af20,134,"keepAliveMsecs" +code-creation,Handler,3,0xe02c659afc0,192,"keepAlive" +code-creation,StoreIC,9,0xe02c659b080,134,"keepAlive" +code-creation,Stub,3,0xe02c659b120,294,"LoadFieldStub" +code-creation,Stub,3,0xe02c659b260,264,"StoreTransitionStub" +code-creation,Handler,3,0xe02c659b380,184,"maxSockets" +code-creation,StoreIC,9,0xe02c659b440,134,"maxSockets" +tick,0x7f661775d270,243354,0,0x37,0,0xbbb8f0,0xe02c658a577,0xe02c6599b1d,0xe02c658cc69,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657eacd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c659b4e0,184,"maxFreeSockets" +code-creation,StoreIC,9,0xe02c659b5a0,134,"maxFreeSockets" +code-creation,Handler,3,0xe02c659b640,164,"on" +code-creation,Handler,3,0xe02c659b700,192,"free" +code-creation,StorePolymorphicIC,9,0xe02c659b7c0,194,"_eventsCount" +tick,0xd0a5c8,244408,1,0xe32800,2,0x93d1a0,0xe02c6595289,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ec79,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c659b8a0,610,"FastNewContextStub" +tick,0xd356a1,245551,1,0xe32800,2,0x93d1a0,0xe02c6595289,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ec79,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c659bb20,7484," zlib.js:1:11",0x2b24593f8ec8,~ +code-creation,Script,0,0xe02c659d860,244,"zlib.js",0x2b24593f9008,~ +tick,0x93614e,246573,0,0x1,0,0xbb9fc0,0xe02c659c0e0,0xe02c6595337,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ec79,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,11,0xe02c659d960,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c659d9e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c659da60,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,RegExp,5,0xe02c659dae0,736,"^Z" +code-creation,Handler,3,0xe02c659ddc0,186,"match" +code-creation,StoreIC,9,0xe02c659de80,134,"value" +code-creation,StoreIC,9,0xe02c659df20,134,"lastIndex" +code-creation,Stub,3,0xe02c659dfc0,298,"LoadFieldStub" +tick,0xe02c641ed58,247628,0,0xe02c643a19a,0,0xe02c6441384,0xe02c651075e,0xe02c659c6a6,0xe02c6595337,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ec79,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c659e100,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c659e180,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c659e200,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c659e280,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c659e300,116,"LoadFieldStub" +code-creation,Stub,3,0xe02c659e380,116,"LoadFieldStub" +code-creation,LazyCompile,0,0xe02c659e400,252,"PropertyDescriptor_HasValue native v8natives.js:322:48",0x31534ff5c120,~ +code-creation,KeyedStoreIC,10,0xe02c659e500,134,"" +code-creation,LazyCompile,1,0xe02c659e5a0,203,"PropertyDescriptor_HasValue native v8natives.js:322:48",0x31534ff5c120,* +tick,0xd332d1,248693,0,0x7fffc2951a70,0,0xbb9fc0,0xe02c6517a41,0xe02c659d5fa,0xe02c6595337,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c657ec79,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc517d0,249758,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c659e680,300," /home/rgbm21/Documents/botkit/node_modules/bl/bl.js:219:15",0x2b24593fd3a8,~ +code-creation,Function,0,0xe02c659e7c0,872," /home/rgbm21/Documents/botkit/node_modules/bl/bl.js:200:12",0x2b24593fd520,~ +code-creation,Function,0,0xe02c659eb40,1780," /home/rgbm21/Documents/botkit/node_modules/bl/bl.js:1:11",0x2b24593fd7d8,~ +code-creation,Script,0,0xe02c659f240,244,"/home/rgbm21/Documents/botkit/node_modules/bl/bl.js",0x2b24593fd918,~ +code-creation,Function,0,0xe02c659f340,244," /home/rgbm21/Documents/botkit/node_modules/readable-stream/duplex.js:1:11",0x2b24593fe040,~ +code-creation,Script,0,0xe02c659f440,244,"/home/rgbm21/Documents/botkit/node_modules/readable-stream/duplex.js",0x2b24593fe180,~ +tick,0xa7fb9a,250817,0,0xfffffffe,0,0xc8dbe0,0xe02c651af6c,0xe02c651adf0,0xe02c6563d04,0xe02c6527c09,0xe02c653b4b9,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c659f3de,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659ec41,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c659f540,1560," /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_duplex.js:1:11",0x2b24593feda8,~ +code-creation,Script,0,0xe02c659fb60,244,"/home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_duplex.js",0x2b24593feee8,~ +tick,0xe02c651b04a,251880,0,0x31534ffc3b71,0,0xe02c651adf0,0xe02c6563d04,0xe02c65451f6,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f749,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f3de,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659ec41,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c659fc60,908," /home/rgbm21/Documents/botkit/node_modules/process-nextick-args/index.js:1:11",0x2b24593ff9e0,~ +code-creation,Script,0,0xe02c65a0000,244,"/home/rgbm21/Documents/botkit/node_modules/process-nextick-args/index.js",0x2b24593ffb20,~ +code-creation,LazyCompile,0,0xe02c65a0100,188,"posix._makeLong path.js:524:27",0x2efb89c17768,~ +code-creation,LazyCompile,1,0xe02c65a01c0,163,"posix._makeLong path.js:524:27",0x2efb89c17768,* +code-creation,LazyCompile,0,0xe02c65a0280,1644,"InnerArrayJoin native array.js:321:24",0x31534ff64d48,~ +tick,0xb6bfc0,252944,0,0xb60c35,2,0xca07d0,0xe02c6563d04,0xe02c6527c09,0xe02c6544f66,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f7b1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f3de,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659ec41,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-disable-optimization,"InnerArrayJoin","Inlined runtime function: FastOneByteArrayJoin" +code-creation,Function,0,0xe02c65a0900,932," /home/rgbm21/Documents/botkit/node_modules/core-util-is/lib/util.js:1:11",0x31b5aea05498,~ +code-creation,Script,0,0xe02c65a0cc0,244,"/home/rgbm21/Documents/botkit/node_modules/core-util-is/lib/util.js",0x31b5aea055d8,~ +tick,0xe02c6547ca5,254017,0,0x2efb89cbe2f1,0,0xe02c6547b70,0xe02c6546dbd,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f7e7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f3de,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659ec41,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65a0dc0,276," /home/rgbm21/Documents/botkit/node_modules/inherits/inherits.js:1:11",0x31b5aea06078,~ +code-creation,Script,0,0xe02c65a0ee0,244,"/home/rgbm21/Documents/botkit/node_modules/inherits/inherits.js",0x31b5aea061b8,~ +tick,0xd075de,255070,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f826,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f3de,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659ec41,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc16b11,256112,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f826,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f3de,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659ec41,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65a0fe0,850,"FastNewContextStub" +code-disable-optimization,"","TryCatchStatement" +code-creation,Function,0,0xe02c65a1340,644," /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_readable.js:33:11",0x31b5aea07970, +code-creation,Function,0,0xe02c65a15e0,4236," /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_readable.js:1:11",0x31b5aea087d0,~ +code-creation,Script,0,0xe02c65a2680,244,"/home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_readable.js",0x31b5aea08910,~ +tick,0xc26692,257177,0,0x7fffc2951190,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65a1c84,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f826,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f3de,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659ec41,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65a2780,516,"hasOwnProperty native v8natives.js:111:30",0x31534ff564f0,~ +code-creation,Function,0,0xe02c65a29a0,292," /home/rgbm21/Documents/botkit/node_modules/isarray/index.js:1:11",0x31b5aea097b0,~ +code-creation,Script,0,0xe02c65a2ae0,244,"/home/rgbm21/Documents/botkit/node_modules/isarray/index.js",0x31b5aea098f0,~ +code-creation,LazyCompile,1,0xe02c65a2be0,722,"hasOwnProperty native v8natives.js:111:30",0x31534ff564f0,* +code-creation,Stub,11,0xe02c65a2ec0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xa68295,258243,0,0x7fffc29513f0,0,0xca0c20,0xe02c643e1cc,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c65a1536,0xe02c65a1e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f826,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f3de,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659ec41,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c65a2f40,204,"super_" +code-creation,StorePolymorphicIC,9,0xe02c65a3020,174,"super_" +tick,0xc5396f,259299,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f88e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f3de,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659ec41,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-disable-optimization,"","TryCatchStatement" +code-creation,Function,0,0xe02c65a30e0,644," /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_writable.js:37:11",0x31b5aea0b510, +code-disable-optimization,"","TryCatchStatement" +code-creation,Function,0,0xe02c65a3380,588," /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_writable.js:158:11",0x31b5aea0b8c0, +code-creation,Function,0,0xe02c65a35e0,3188," /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_writable.js:1:11",0x31b5aea0c200,~ +code-creation,Script,0,0xe02c65a4260,244,"/home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_writable.js",0x31b5aea0c340,~ +tick,0x8e6009,260359,0,0xc300a7,0,0xcc1970,0xe02c653b097,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65a3cb0,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f88e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f3de,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659ec41,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xaddde2,261418,0,0x0,1 +tick,0xa3dc20,262502,0,0x7fffc2950eb0,0,0xcc5a30,0xe02c6548393,0xe02c6439885,0xe02c6548227,0xe02c6546e30,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a3d28,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f88e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659f3de,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c659ec41,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ece4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65a4360,276," /home/rgbm21/Documents/botkit/node_modules/util-deprecate/node.js:1:11",0x31b5aeaf8b50,~ +code-creation,Script,0,0xe02c65a4480,244,"/home/rgbm21/Documents/botkit/node_modules/util-deprecate/node.js",0x31b5aeaf8c90,~ +code-creation,Stub,11,0xe02c65a4580,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c65a4600,204,"super_" +code-creation,StorePolymorphicIC,9,0xe02c65a46e0,174,"super_" +code-creation,Stub,11,0xe02c65a47a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,KeyedStoreIC,10,0xe02c65a4820,153,"cork" +code-creation,Handler,3,0xe02c65a48c0,204,"super_" +code-creation,StorePolymorphicIC,9,0xe02c65a49a0,194,"super_" +code-creation,KeyedStoreIC,10,0xe02c65a4a80,153,"readDoubleLE" +tick,0xa37b74,263553,1,0xe348e0,4,0x93e0b0,0xe02c653b3e0,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65a4b20,828," /home/rgbm21/Documents/botkit/node_modules/hawk/lib/index.js:1:11",0x31b5aeafa860,~ +code-creation,Script,0,0xe02c65a4e60,244,"/home/rgbm21/Documents/botkit/node_modules/hawk/lib/index.js",0x31b5aeafa9a0,~ +tick,0xc74fb0,264597,0,0x7fffc2951950,0,0xcd3440,0xe02c6545c4c,0xe02c654560c,0xe02c651a42c,0xe02c6545001,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4bc1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65a4f60,2660," /home/rgbm21/Documents/botkit/node_modules/boom/lib/index.js:1:11",0x31b5aeafd120,~ +code-creation,Script,0,0xe02c65a59e0,244,"/home/rgbm21/Documents/botkit/node_modules/boom/lib/index.js",0x31b5aeafd260,~ +tick,0xe3491f,265680,1,0xe348e0,4,0x93e0b0,0xe02c653b3e0,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65a5077,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4bc1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc478b0,266735,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a5077,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4bc1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc1662c,267785,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a5077,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4bc1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65a5ae0,4028," /home/rgbm21/Documents/botkit/node_modules/hoek/lib/index.js:1:11",0x246174404be0,~ +code-creation,Script,0,0xe02c65a6aa0,244,"/home/rgbm21/Documents/botkit/node_modules/hoek/lib/index.js",0x246174404d20,~ +tick,0xd089f0,268862,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a5c96,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a5077,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4bc1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65a6ba0,1272," /home/rgbm21/Documents/botkit/node_modules/hoek/lib/escape.js:111:37",0x246174405a08,~ +code-creation,Function,0,0xe02c65a70a0,868," /home/rgbm21/Documents/botkit/node_modules/hoek/lib/escape.js:1:11",0x246174405c00,~ +code-creation,Script,0,0xe02c65a7420,244,"/home/rgbm21/Documents/botkit/node_modules/hoek/lib/escape.js",0x246174405d40,~ +code-creation,KeyedStoreIC,10,0xe02c65a7520,134,"" +tick,0xbf313b,269899,0,0x7fffc2951820,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c13,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65a75c0,644,"nullCheck fs.js:92:19",0x2efb89c20020,~ +code-creation,LazyCompile,0,0xe02c65a7860,796,"fs.Stats fs.js:109:20",0x2efb89c20de8,~ +code-creation,LazyCompile,1,0xe02c65a7b80,397,"nullCheck fs.js:92:19",0x2efb89c20020,* +code-creation,LazyCompile,0,0xe02c65a7d20,340,"fs.Stats._checkModeProperty fs.js:143:49",0x2efb89c20e90,~ +code-creation,Stub,2,0xe02c65a7e80,1230,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c65a8360,1619,"fs.Stats fs.js:109:20",0x2efb89c20de8,* +tick,0xda9c3b,270954,0,0x100000000,2,0xcbb000,0xe02c654637c,0xe02c654516b,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c13,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65a89c0,182,"DoubleToIStub" +code-creation,LazyCompile,1,0xe02c65a8a80,498,"fs.Stats._checkModeProperty fs.js:143:49",0x2efb89c20e90,* +code-creation,LazyCompile,0,0xe02c65a8c80,808,"ArrayConcatJS native array.js:402:23",0x31534ff65220,~ +code-creation,Function,0,0xe02c65a8fc0,244," /home/rgbm21/Documents/botkit/node_modules/sntp/index.js:1:11",0x24617440ba80,~ +code-creation,Script,0,0xe02c65a90c0,244,"/home/rgbm21/Documents/botkit/node_modules/sntp/index.js",0x24617440bbc0,~ +code-creation,Stub,2,0xe02c65a91c0,2648,"RecordWriteStub" +code-creation,Stub,2,0xe02c65a9c20,2694,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c65aa6c0,1129,"ArrayConcatJS native array.js:402:23",0x31534ff65220,* +code-creation,LazyCompile,0,0xe02c65aab40,516,"posix.dirname path.js:529:25",0x2efb89c17810,~ +tick,0xd35d82,272018,0,0x2e79f88,2,0xca07d0,0xe02c653a96a,0xe02c65399dc,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65a905e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c13,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,14,0xe02c65aad60,256,"ToBooleanStub(Undefined,Bool,String)" +code-creation,LazyCompile,1,0xe02c65aae60,955,"posix.dirname path.js:529:25",0x2efb89c17810,* +tick,0xd52347,273111,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a905e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c13,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65ab220,1460," /home/rgbm21/Documents/botkit/node_modules/sntp/lib/index.js:1:11",0x24617440ef70,~ +code-creation,Script,0,0xe02c65ab7e0,244,"/home/rgbm21/Documents/botkit/node_modules/sntp/lib/index.js",0x24617440f0b0,~ +tick,0xd0db50,274153,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c65ab2cf,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a905e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c13,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65ab8e0,4092," dgram.js:1:11",0x246174411430,~ +code-creation,Script,0,0xe02c65ac8e0,244,"dgram.js",0x246174411570,~ +tick,0x9109d0,275207,1,0xe193f0,3,0x93e0b0,0xe02c65abe9f,0xe02c643f10e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c65ab2cf,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a905e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c13,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd65ec1,276273,1,0xe32800,2,0x93d1a0,0xe02c643f587,0xe02c643f07e,0xe02c643e4ba,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c65ab337,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a905e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c13,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65ac9e0,578,"FastNewContextStub" +code-creation,Function,0,0xe02c65acc40,3852," dns.js:1:11",0x246174415a48,~ +code-creation,Script,0,0xe02c65adb60,244,"dns.js",0x246174415b88,~ +code-creation,LazyCompile,0,0xe02c65adc60,348,"resolver dns.js:216:18",0x246174415188,~ +tick,0xe08d4e,277321,1,0xe3b870,4,0x93e0b0,0xe02c653f1f9,0xe02c653d071,0xe02c653c845,0xe02c6553cb4,0xe02c6557254,0xe02c653b6d4,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c55,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65addc0,276,"DoRegExpExec native regexp.js:57:22",0x31534ff7d4e0,~ +code-creation,LazyCompile,1,0xe02c65adee0,246,"DoRegExpExec native regexp.js:57:22",0x31534ff7d4e0,* +tick,0xd10231,278392,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c55,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65adfe0,1524," /home/rgbm21/Documents/botkit/node_modules/hawk/lib/server.js:1:11",0x246174418388,~ +code-creation,Script,0,0xe02c65ae5e0,244,"/home/rgbm21/Documents/botkit/node_modules/hawk/lib/server.js",0x2461744184c8,~ +code-creation,LazyCompile,0,0xe02c65ae6e0,180,"debugs.(anonymous function) util.js:72:29",0x2efb89c0c200,~ +code-creation,LazyCompile,1,0xe02c65ae7a0,167,"debugs.(anonymous function) util.js:72:29",0x2efb89c0c200,* +tick,0x93cd41,279455,0,0x2e27638,0,0x93cba0,0xe02c654511e,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65ae157,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c55,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65ae860,668," /home/rgbm21/Documents/botkit/node_modules/cryptiles/lib/index.js:1:11",0x246174419470,~ +code-creation,Script,0,0xe02c65aeb00,244,"/home/rgbm21/Documents/botkit/node_modules/cryptiles/lib/index.js",0x2461744195b0,~ +code-creation,LazyCompile,0,0xe02c65aec00,412,"createBuffer buffer.js:22:22",0x31534ffff8f0,~ +tick,0xc4f7d0,280517,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65ae1bf,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c55,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65aeda0,1124," /home/rgbm21/Documents/botkit/node_modules/hawk/lib/crypto.js:1:11",0x24617441a8b0,~ +code-creation,Script,0,0xe02c65af220,244,"/home/rgbm21/Documents/botkit/node_modules/hawk/lib/crypto.js",0x24617441a9f0,~ +code-creation,LazyCompile,1,0xe02c65af320,349,"createBuffer buffer.js:22:22",0x31534ffff8f0,* +tick,0xd1a2c0,281576,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65aef23,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65ae1bf,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c55,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65af480,1908," /home/rgbm21/Documents/botkit/node_modules/hawk/lib/utils.js:1:11",0x24617441bc40,~ +code-creation,Script,0,0xe02c65afc00,244,"/home/rgbm21/Documents/botkit/node_modules/hawk/lib/utils.js",0x24617441bd80,~ +code-creation,LazyCompile,0,0xe02c65afd00,340,"ok assert.js:108:12",0x2efb89c04420,~ +code-creation,LazyCompile,1,0xe02c65afe60,271,"ok assert.js:108:12",0x2efb89c04420,* +tick,0xc49881,282629,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65a4c97,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ed4f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65aff80,1028," /home/rgbm21/Documents/botkit/node_modules/hawk/lib/client.js:1:11",0x24617441d570,~ +code-creation,Script,0,0xe02c65b03a0,244,"/home/rgbm21/Documents/botkit/node_modules/hawk/lib/client.js",0x24617441d6b0,~ +tick,0x7f6617abd663,283694,1,0xe3f880,4,0x93e0b0,0xe02c655379b,0xe02c65532de,0xe02c653b68f,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c657edba,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65b04a0,1372," /home/rgbm21/Documents/botkit/node_modules/aws-sign2/index.js:1:11",0x24617441ea88,~ +code-creation,Script,0,0xe02c65b0a00,244,"/home/rgbm21/Documents/botkit/node_modules/aws-sign2/index.js",0x24617441ebc8,~ +tick,0x90b7b3,284749,0,0x7fffc2951af0,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65b0b00,1076," /home/rgbm21/Documents/botkit/node_modules/http-signature/lib/index.js:1:11",0x24617441fae8,~ +code-creation,Script,0,0xe02c65b0f40,244,"/home/rgbm21/Documents/botkit/node_modules/http-signature/lib/index.js",0x24617441fc28,~ +tick,0xd07c84,285814,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65b1040,1804," /home/rgbm21/Documents/botkit/node_modules/http-signature/lib/parser.js:1:11",0x2461744210f0,~ +code-creation,Script,0,0xe02c65b1760,244,"/home/rgbm21/Documents/botkit/node_modules/http-signature/lib/parser.js",0x246174421230,~ +tick,0x7f6617abd59d,286851,1,0xe38780,4,0x93e0b0,0xe02c6548aa4,0xe02c6546ed0,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b1207,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65b1860,2716," /home/rgbm21/Documents/botkit/node_modules/assert-plus/assert.js:1:11",0x246174422d18,~ +code-creation,Script,0,0xe02c65b2300,244,"/home/rgbm21/Documents/botkit/node_modules/assert-plus/assert.js",0x246174422e58,~ +tick,0x7f66177648d4,287921,0,0x0,2,0xca0620,0xe02c65b22a7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b1207,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65b2400,1108,"_setExports /home/rgbm21/Documents/botkit/node_modules/assert-plus/assert.js:93:21",0x2461744222e0,~ +code-creation,LazyCompile,0,0xe02c65b2860,428," /home/rgbm21/Documents/botkit/node_modules/assert-plus/assert.js:109:27",0x246174423620,~ +code-creation,Handler,3,0xe02c65b2a20,204,"func" +code-creation,KeyedStoreIC,10,0xe02c65b2b00,153,"func" +code-creation,Handler,3,0xe02c65b2ba0,204,"string" +code-creation,Handler,3,0xe02c65b2c80,204,"object" +code-creation,Handler,3,0xe02c65b2d60,204,"number" +code-creation,Handler,3,0xe02c65b2e40,204,"buffer" +code-creation,Handler,3,0xe02c65b2f20,204,"array" +code-creation,Handler,3,0xe02c65b3000,204,"stream" +code-creation,Handler,3,0xe02c65b30e0,204,"date" +code-creation,Handler,3,0xe02c65b31c0,204,"regexp" +code-creation,Handler,3,0xe02c65b32a0,204,"uuid" +code-creation,LazyCompile,0,0xe02c65b3380,500," /home/rgbm21/Documents/botkit/node_modules/assert-plus/assert.js:123:27",0x2461744236c8,~ +code-creation,LazyCompile,0,0xe02c65b3580,404,"_capitalize /home/rgbm21/Documents/botkit/node_modules/assert-plus/assert.js:17:21",0x246174422040,~ +code-creation,LazyCompile,0,0xe02c65b3720,1652,"charAt native string.js:49:24",0x31534ff79450,~ +code-creation,Stub,11,0xe02c65b3da0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65b3e20,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c65b3ea0,186,"charAt" +tick,0xe02c643a0c5,288984,0,0x3625c155379,0,0xe02c6535818,0xe02c65353ba,0xe02c65b2687,0xe02c65b22a7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b1207,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65b3f60,580," /home/rgbm21/Documents/botkit/node_modules/assert-plus/assert.js:141:27",0x246174423770,~ +code-creation,Stub,11,0xe02c65b41c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65b4240,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65b42c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c65b4340,580," /home/rgbm21/Documents/botkit/node_modules/assert-plus/assert.js:163:27",0x246174423818,~ +code-creation,Stub,11,0xe02c65b45a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65b4620,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65b46a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c65b4720,388," /home/rgbm21/Documents/botkit/node_modules/assert-plus/assert.js:188:42",0x2461744238c0,~ +code-creation,Handler,3,0xe02c65b48c0,204,"ok" +code-creation,KeyedStoreIC,10,0xe02c65b49a0,153,"ok" +code-creation,Handler,3,0xe02c65b4a40,204,"equal" +code-creation,Handler,3,0xe02c65b4b20,204,"notEqual" +code-creation,Handler,3,0xe02c65b4c00,204,"deepEqual" +code-creation,Handler,3,0xe02c65b4ce0,204,"deepStrictEqual" +code-creation,Handler,3,0xe02c65b4dc0,204,"notDeepEqual" +code-creation,Handler,3,0xe02c65b4ea0,204,"notDeepStrictEqual" +code-creation,Handler,3,0xe02c65b4f80,204,"strictEqual" +code-creation,Handler,3,0xe02c65b5060,204,"notStrictEqual" +code-creation,Handler,3,0xe02c65b5140,204,"throws" +code-creation,Handler,3,0xe02c65b5220,204,"doesNotThrow" +code-creation,Handler,3,0xe02c65b5300,204,"ifError" +tick,0xe02c642d119,290054,0,0xe02c651b8d2,0,0xe02c651adf0,0xe02c6563d04,0xe02c6527c09,0xe02c653a70b,0xe02c65399dc,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65b53e0,436,"ToPositiveInteger native runtime.js:545:27",0x31534ff6d3e0,~ +code-creation,Function,0,0xe02c65b55a0,1316," /home/rgbm21/Documents/botkit/node_modules/http-signature/lib/utils.js:1:11",0x246174427360,~ +code-creation,Script,0,0xe02c65b5ae0,244,"/home/rgbm21/Documents/botkit/node_modules/http-signature/lib/utils.js",0x2461744274a0,~ +code-creation,LazyCompile,1,0xe02c65b5be0,451,"ToPositiveInteger native runtime.js:545:27",0x31534ff6d3e0,* +tick,0xe02c641b3ef,291099,0,0xe02c654df8f,0,0xe02c654c91b,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65b5dc0,1020," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/index.js:1:11",0x246174428990,~ +code-creation,Script,0,0xe02c65b61c0,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/index.js",0x246174428ad0,~ +tick,0xad97f2,292218,0,0x2de24a0,0,0xcd6c50,0xe02c651a39e,0xe02c6527b84,0xe02c653a70b,0xe02c65399dc,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd120f0,293259,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-disable-optimization,"","TryCatchStatement" +code-creation,Function,0,0xe02c65b62c0,3388," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/key.js:1:11",0x24617442a558, +code-creation,Script,0,0xe02c65b7000,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/key.js",0x24617442a698,~ +tick,0xe02c65aa953,294322,0,0x7fffc2950dc8,0,0xe02c654516b,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b644c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65b7100,9588," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/algs.js:1:11",0x24617442cd00,~ +code-creation,Script,0,0xe02c65b9680,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/algs.js",0x24617442ce40,~ +code-creation,Stub,11,0xe02c65b9780,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65b9800,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xcd84df,295684,0,0x0,0,0xcd7f40,0xe02c651ca9c,0xe02c65b74a9,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b644c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,12,0xe02c65b9880,677,"CompareICStub" +code-creation,Handler,3,0xe02c65b9b40,164,"write" +code-creation,Stub,11,0xe02c65b9c00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65b9c80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c65b9d00,164,"hexWrite" +code-creation,Stub,11,0xe02c65b9dc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65b9e40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65b9ec0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65b9f40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65b9fc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba040,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba0c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba140,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba1c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba240,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba2c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba340,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba3c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba440,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba4c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba540,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba5c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba640,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba6c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xd82e31,296707,0,0x7fffc2950b70,0,0xbbc8c0,0xe02c65b83f7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b644c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,11,0xe02c65ba740,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba7c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba840,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba8c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba940,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65ba9c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65baa40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65baac0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bab40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65babc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bac40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bacc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bad40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65badc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bae40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65baec0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65baf40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bafc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb040,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb0c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb140,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb1c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb240,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb2c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb340,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb3c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb440,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb4c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb540,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb5c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb640,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb6c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb740,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb7c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65bb840,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xa8c1a0,297732,0,0xc161f9,0,0x93c720,0xe02c654516b,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65bb8c0,1732," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/fingerprint.js:1:11",0x24617442f628,~ +code-creation,Script,0,0xe02c65bbfa0,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/fingerprint.js",0x24617442f768,~ +tick,0xd3031e,298764,0,0x7fffc2950810,0,0xccd040,0xe02c653d0ec,0xe02c653c845,0xe02c6553cb4,0xe02c6557254,0xe02c653b6d4,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65bbbd9,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65bc0a0,1116," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/errors.js:1:11",0x2461744302c8,~ +code-creation,Script,0,0xe02c65bc500,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/errors.js",0x246174430408,~ +code-creation,Handler,3,0xe02c65bc600,192,"super_" +code-creation,StorePolymorphicIC,9,0xe02c65bc6c0,194,"super_" +code-creation,Handler,3,0xe02c65bc7a0,171,"Error" +tick,0xe02c6547b38,299819,0,0x2efb89cb3f79,0,0xe02c6546dbd,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65bc860,1092," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/utils.js:1:11",0x246174431838,~ +code-creation,Script,0,0xe02c65bccc0,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/utils.js",0x246174431978,~ +code-creation,LazyCompile,0,0xe02c65bcdc0,300,"require internal/module.js:11:19",0x2efb89c46b68,~ +code-creation,LazyCompile,0,0xe02c65bcf00,500,"Module.require module.js:350:36",0x2efb89c1ae10,~ +tick,0x920418,300898,0,0xd4d449,2,0xca07d0,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,1,0xe02c65bd100,618,"require internal/module.js:11:19",0x2efb89c46b68,* +tick,0x7f66177674a2,301949,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-disable-optimization,"","TryCatchStatement" +code-creation,Function,0,0xe02c65bd380,3076," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/private-key.js:1:11",0x246174433778, +code-creation,Script,0,0xe02c65bdfa0,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/private-key.js",0x2461744338b8,~ +tick,0xc47b2b,302990,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd60c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65be0a0,1884," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/signature.js:1:11",0x246174434b78,~ +code-creation,Script,0,0xe02c65be800,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/signature.js",0x246174434cb8,~ +code-creation,LazyCompile,0,0xe02c65be900,1260,"split native string.js:424:23",0x31534ff7a578,~ +tick,0xd52311,304042,0,0x7fffc294fe90,2,0xca07d0,0xe02c6527b84,0xe02c65536d7,0xe02c65532de,0xe02c653b68f,0xe02c6539adb,0xe02c6539417,0xe02c65bd30a,0xe02c65be47f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd60c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,1,0xe02c65bee00,2114,"split native string.js:424:23",0x31534ff7a578,* +code-creation,Function,0,0xe02c65bf660,436," /home/rgbm21/Documents/botkit/node_modules/asn1/lib/index.js:1:11",0x246174436d78,~ +code-creation,Script,0,0xe02c65bf820,244,"/home/rgbm21/Documents/botkit/node_modules/asn1/lib/index.js",0x246174436eb8,~ +tick,0xe02c65279bf,305116,0,0x3625c1b8a91,0,0xe02c653a70b,0xe02c65399dc,0xe02c6539417,0xe02c65bd30a,0xe02c65bf6ff,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65be47f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd60c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65bf920,1852," /home/rgbm21/Documents/botkit/node_modules/asn1/lib/ber/index.js:1:11",0x246174437600,~ +code-creation,Script,0,0xe02c65c0060,244,"/home/rgbm21/Documents/botkit/node_modules/asn1/lib/ber/index.js",0x246174437740,~ +code-creation,Function,0,0xe02c65c0160,284," /home/rgbm21/Documents/botkit/node_modules/asn1/lib/ber/errors.js:1:11",0x246174437c80,~ +code-creation,Script,0,0xe02c65c0280,244,"/home/rgbm21/Documents/botkit/node_modules/asn1/lib/ber/errors.js",0x246174437dc0,~ +tick,0xbeb7f3,306177,0,0x7fffc294fdf0,0,0x93e150,0xe02c65285e1,0xe02c6527bbc,0xe02c653a70b,0xe02c65399dc,0xe02c6539417,0xe02c65bd30a,0xe02c65bf9fa,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bf6ff,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65be47f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd60c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65c0380,252," /home/rgbm21/Documents/botkit/node_modules/asn1/lib/ber/types.js:1:11",0x246174438808,~ +code-creation,Script,0,0xe02c65c0480,244,"/home/rgbm21/Documents/botkit/node_modules/asn1/lib/ber/types.js",0x246174438948,~ +tick,0x919384,307247,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bfa2d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bf6ff,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65be47f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd60c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65c0580,2468," /home/rgbm21/Documents/botkit/node_modules/asn1/lib/ber/reader.js:1:11",0x24617443a1f0,~ +code-creation,Script,0,0xe02c65c0f40,244,"/home/rgbm21/Documents/botkit/node_modules/asn1/lib/ber/reader.js",0x24617443a330,~ +tick,0xa7f9a1,308301,0,0x7fffc294fe40,0,0xc8dbe0,0xe02c651af6c,0xe02c651adf0,0xe02c6563d04,0xe02c65451f6,0xe02c654380d,0xe02c65397ee,0xe02c65bd30a,0xe02c65bfa60,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bf6ff,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65be47f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd60c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65c1040,2284," /home/rgbm21/Documents/botkit/node_modules/asn1/lib/ber/writer.js:1:11",0x24617443c080,~ +code-creation,Script,0,0xe02c65c1940,244,"/home/rgbm21/Documents/botkit/node_modules/asn1/lib/ber/writer.js",0x24617443c1c0,~ +tick,0xd1b90f,309405,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bfa60,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bf6ff,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65be47f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd60c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c65c1a40,164,"hasOwnProperty" +code-creation,Handler,3,0xe02c65c1b00,184,"Boolean" +code-creation,KeyedStoreIC,10,0xe02c65c1bc0,153,"Boolean" +code-creation,Handler,3,0xe02c65c1c60,184,"Integer" +code-creation,Handler,3,0xe02c65c1d20,184,"BitString" +code-creation,Handler,3,0xe02c65c1de0,184,"OctetString" +code-creation,Handler,3,0xe02c65c1ea0,184,"Null" +code-creation,Stub,3,0xe02c65c1f60,594,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65c21c0,184,"OID" +code-creation,Stub,3,0xe02c65c2280,244,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65c2380,184,"ObjectDescriptor" +code-creation,Stub,3,0xe02c65c2440,244,"StoreTransitionStub" +tick,0x7f66177da4fd,310418,0,0x0,0,0xbbbe40,0xe02c65bfd39,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bf6ff,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65be47f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd60c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c65c2540,184,"External" +code-creation,Stub,3,0xe02c65c2600,594,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65c2860,184,"Real" +code-creation,Stub,3,0xe02c65c2920,244,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65c2a20,184,"Enumeration" +code-creation,Stub,3,0xe02c65c2ae0,244,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65c2be0,184,"PDV" +code-creation,Stub,3,0xe02c65c2ca0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c2d20,594,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65c2f80,184,"Utf8String" +code-creation,Stub,3,0xe02c65c3040,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c30c0,244,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65c31c0,184,"RelativeOID" +code-creation,Stub,3,0xe02c65c3280,112,"LoadFieldStub" +tick,0xb670d4,311471,0,0x0,0,0xbbbe40,0xe02c65bfd39,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bf6ff,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65be47f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd60c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c65c3300,244,"StoreTransitionStub" +code-creation,Handler,3,0xe02c65c3400,184,"Sequence" +code-creation,Stub,3,0xe02c65c34c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c3540,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c35c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c3640,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c36c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c3740,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c37c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c3840,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c38c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c3940,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c39c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c3a40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c3ac0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c3b40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c65c3bc0,112,"LoadFieldStub" +tick,0xe02c65796cf,312529,0,0x31534ffc47d9,0,0xe02c65a2c85,0xe02c65bfcde,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bf6ff,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65be47f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd60c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c65c3c40,112,"LoadFieldStub" +code-creation,Function,0,0xe02c65c3cc0,2036," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/ssh-buffer.js:1:11",0x24617443e8a0,~ +code-creation,Script,0,0xe02c65c44c0,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/ssh-buffer.js",0x24617443e9e0,~ +tick,0xbf2363,313596,1,0xe33e90,4,0x93e0b0,0xe02c654cf32,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65be4e7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd60c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65c45c0,1580," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/ed-compat.js:1:11",0x24617443fee8,~ +code-creation,Script,0,0xe02c65c4c00,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/ed-compat.js",0x246174440028,~ +tick,0xadb151,314695,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd794,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65c4d00,1068," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/auto.js:1:11",0x246174440f00,~ +code-creation,Script,0,0xe02c65c5140,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/auto.js",0x246174441040,~ +tick,0x8ea584,315715,1,0xe32800,4,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd10990,316777,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c4fdd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65c5240,1348," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/pem.js:1:11",0x246174442538,~ +code-creation,Script,0,0xe02c65c57a0,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/pem.js",0x246174442678,~ +code-creation,LazyCompile,0,0xe02c65c58a0,356,"posix.isAbsolute path.js:469:28",0x2efb89c17570,~ +code-creation,LazyCompile,0,0xe02c65c5a20,444,"assertPath path.js:6:20",0x2efb89c16850,~ +tick,0xe02c6528622,317837,0,0x3625c21d4c1,0,0xe02c6527bbc,0xe02c653a70b,0xe02c65399dc,0xe02c6539417,0xe02c65bd30a,0xe02c65c5567,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c4fdd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,1,0xe02c65c5be0,1368,"posix.isAbsolute path.js:469:28",0x2efb89c17570,* +tick,0x922acf,318898,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c55cf,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c4fdd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65c6140,2276," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/pkcs1.js:1:11",0x246174444e60,~ +code-creation,Script,0,0xe02c65c6a40,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/pkcs1.js",0x246174444fa0,~ +tick,0xc11cc8,319960,0,0x0,0,0xcccb70,0xe02c653ced3,0xe02c653c845,0xe02c6553cb4,0xe02c6557254,0xe02c653b6d4,0xe02c6539adb,0xe02c6539417,0xe02c65bd30a,0xe02c65c6982,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c55cf,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c4fdd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65c6b40,452,"fs.lstatSync fs.js:885:24",0x2efb89c22c38,~ +code-creation,Stub,2,0xe02c65c6d20,436,"CallApiAccessorStub" +code-creation,LazyCompile,0,0xe02c65c6ee0,324,"fs.Stats.isSymbolicLink fs.js:163:45",0x2efb89c211d8,~ +code-creation,LazyCompile,1,0xe02c65c7040,608,"fs.lstatSync fs.js:885:24",0x2efb89c22c38,* +code-creation,LazyCompile,1,0xe02c65c72a0,593,"fs.Stats.isSymbolicLink fs.js:163:45",0x2efb89c211d8,* +tick,0x922a91,321066,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c6982,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c55cf,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c4fdd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc0826a,322127,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c6982,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c55cf,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c4fdd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65c7500,2340," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/pkcs8.js:1:11",0x246174447b48,~ +code-creation,Script,0,0xe02c65c7e40,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/pkcs8.js",0x246174447c88,~ +code-creation,LazyCompile,0,0xe02c65c7f40,1120,"normalizeArray path.js:17:24",0x2efb89c168f8,~ +tick,0xb3fc90,323153,0,0xb5b88c,2,0xca07d0,0xe02c6527bbc,0xe02c6544f66,0xe02c654380d,0xe02c65397ee,0xe02c65bd30a,0xe02c65c569f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c4fdd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65c83a0,1356," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/ssh-private.js:1:11",0x246174449368,~ +code-creation,Script,0,0xe02c65c8900,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/ssh-private.js",0x2461744494a8,~ +code-creation,Stub,2,0xe02c65c8a00,2711,"RecordWriteStub" +code-creation,Stub,2,0xe02c65c94a0,2710,"RecordWriteStub" +tick,0x917453,324221,0,0x7fffc294f7a0,2,0xcbb000,0xe02c65c8978,0xe33e90,0xe02c654cf32,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c569f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c4fdd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65c9f40,782,"GrowArrayElementsStub" +code-creation,LazyCompile,1,0xe02c65ca260,1842,"normalizeArray path.js:17:24",0x2efb89c168f8,* +tick,0x7f6617abce0d,325324,1,0xe38260,4,0x93e0b0,0xe02c654a478,0xe02c65474e2,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c87c2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c569f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c4fdd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65ca9a0,1652," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/rfc4253.js:1:11",0x24617444ac28,~ +code-creation,Script,0,0xe02c65cb020,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/rfc4253.js",0x24617444ad68,~ +tick,0xbe7ff0,326400,0,0x7fffc294fb80,0,0xcc1970,0xe02c65cab4e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c87c2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c569f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c4fdd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65cb120,1116,"bind native v8natives.js:1200:22",0x31534ff5b588,~ +code-creation,LazyCompile,0,0xe02c65cb580,4824,"read /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/rfc4253.js:55:14",0x24617444a8d0,~ +code-creation,Stub,11,0xe02c65cc860,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c65cc8e0,188,"length" +code-creation,Handler,3,0xe02c65cc9a0,188,"name" +tick,0xad93f0,327456,0,0x0,0,0xcc00e0,0xe02c653bd24,0xe02c653b0da,0xe02c6539adb,0xe02c6539417,0xe02c65bd30a,0xe02c65cae5a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c87c2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c569f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c4fdd,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xbf7e18,328584,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c5045,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65cca60,1460," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/ssh.js:1:11",0x24617444c778,~ +code-creation,Script,0,0xe02c65cd020,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/formats/ssh.js",0x24617444c8b8,~ +tick,0xc24bb5,329613,0,0x7fffc29502c8,0,0xcccb70,0xe02c653b124,0xe02c6539adb,0xe02c6539417,0xe02c65bd30a,0xe02c65ccd88,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65c5045,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65bd95f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bcbe5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65bbc74,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b651c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xe02c6556c5d,330653,0,0xe02c643ba17,0,0x0,0xe02c653de2b,0xe02c65aaf51,0xe02c65437f1,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b65ec,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xa60560,331747,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b65ec,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65cd120,2740," /home/rgbm21/Documents/botkit/node_modules/sshpk/lib/dhe.js:1:11",0x24617444f090,~ +code-creation,Script,0,0xe02c65cdbe0,244,"/home/rgbm21/Documents/botkit/node_modules/sshpk/lib/dhe.js",0x24617444f1d0,~ +tick,0x943270,332775,0,0x948c14,2,0xca07d0,0xe02c65ab125,0xe02c653a96a,0xe02c65399dc,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65b69c8,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5e64,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b5738,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65cdce0,1268,"substr native string.js:513:22",0x31534ff7a7e8,~ +code-creation,LazyCompile,1,0xe02c65ce1e0,1271,"substr native string.js:513:22",0x31534ff7a7e8,* +tick,0xa953c1,333839,0,0x7fffc2951760,0,0xcc1970,0xe02c65b5859,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b12a2,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0ba3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc4859e,334906,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0bd6,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65ce6e0,2396," /home/rgbm21/Documents/botkit/node_modules/http-signature/lib/signer.js:1:11",0x246174452d58,~ +code-creation,Script,0,0xe02c65cf040,244,"/home/rgbm21/Documents/botkit/node_modules/http-signature/lib/signer.js",0x246174452e98,~ +code-creation,LazyCompile,0,0xe02c65cf140,852,"Module._resolveFilename module.js:311:35",0x2efb89c1acc0,~ +tick,0xbeb764,335970,0,0x3625c2a2209,0,0xcc00e0,0xe02c653bd24,0xe02c653b0da,0xe02c6539adb,0xe02c6539417,0xe02c65bd30a,0xe02c65cea04,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0bd6,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,1,0xe02c65cf4a0,1635,"Module._resolveFilename module.js:311:35",0x2efb89c1acc0,* +tick,0x7f6618242b70,337035,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65cea04,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0bd6,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65cfb20,2380," /home/rgbm21/Documents/botkit/node_modules/jsprim/lib/jsprim.js:1:11",0x246174456c58,~ +code-creation,Script,0,0xe02c65d0480,244,"/home/rgbm21/Documents/botkit/node_modules/jsprim/lib/jsprim.js",0x246174456d98,~ +tick,0xd2e874,338088,0,0x90cdfe,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65d0026,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65cea04,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0bd6,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65d0580,620," /home/rgbm21/Documents/botkit/node_modules/extsprintf/lib/extsprintf.js:1:11",0x246174457dd0,~ +code-creation,Script,0,0xe02c65d0800,244,"/home/rgbm21/Documents/botkit/node_modules/extsprintf/lib/extsprintf.js",0x246174457f10,~ +tick,0x90df3b,339154,0,0x0,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65d008e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65cea04,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0bd6,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65d0900,1404," /home/rgbm21/Documents/botkit/node_modules/verror/lib/verror.js:1:11",0x246174459058,~ +code-creation,Script,0,0xe02c65d0e80,244,"/home/rgbm21/Documents/botkit/node_modules/verror/lib/verror.js",0x246174459198,~ +tick,0xbf1611,340228,1,0x8d92e0,4,0xbb9fc0,0xe02c6517a41,0xe02c65d0d42,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d008e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65cea04,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0bd6,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd109ab,341270,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d00f6,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65cea04,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0bd6,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65d0f80,540," /home/rgbm21/Documents/botkit/node_modules/json-schema/lib/validate.js:1:11",0x24617445acf8,~ +code-creation,Script,0,0xe02c65d11a0,244,"/home/rgbm21/Documents/botkit/node_modules/json-schema/lib/validate.js",0x24617445ae38,~ +code-creation,LazyCompile,0,0xe02c65d12a0,236,"__dirname.define /home/rgbm21/Documents/botkit/node_modules/json-schema/lib/validate.js:16:52",0x24617445aaa0,~ +tick,0xd0e1fd,342347,0,0x7fffc2950f90,2,0xca0620,0xe02c65d1335,0xe02c65d1159,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d00f6,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65cea04,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0bd6,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65d13a0,1060," /home/rgbm21/Documents/botkit/node_modules/json-schema/lib/validate.js:17:20",0x24617445ab68,~ +tick,0x91fc6a,343397,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65b0c09,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee25,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65d17e0,964," /home/rgbm21/Documents/botkit/node_modules/http-signature/lib/verify.js:1:11",0x24617445c4c8,~ +code-creation,Script,0,0xe02c65d1bc0,244,"/home/rgbm21/Documents/botkit/node_modules/http-signature/lib/verify.js",0x24617445c608,~ +tick,0xaafae0,344449,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65d1cc0,1716," /home/rgbm21/Documents/botkit/node_modules/mime-types/index.js:1:11",0x24617445d870,~ +code-creation,Script,0,0xe02c65d2380,244,"/home/rgbm21/Documents/botkit/node_modules/mime-types/index.js",0x24617445d9b0,~ +code-creation,Function,0,0xe02c65d2480,244," /home/rgbm21/Documents/botkit/node_modules/mime-db/index.js:1:11",0x24617445e228,~ +code-creation,Script,0,0xe02c65d2580,244,"/home/rgbm21/Documents/botkit/node_modules/mime-db/index.js",0x24617445e368,~ +tick,0xada711,345508,0,0x7fffc2951640,0,0xcc1d20,0xe02c653a894,0xe02c65cf7c2,0xe02c6539417,0xe02c65bd30a,0xe02c65d251e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d1df5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xadb151,346569,0,0x38,0,0xcc01f0,0xe02c651d4e8,0xe02c657b7bb,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d251e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d1df5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc16a16,347631,0,0x843e,0,0xcc01f0,0xe02c651d4e8,0xe02c657b7bb,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d251e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d1df5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd315e0,348687,0,0x90ce45,0,0xcc01f0,0xe02c651d4e8,0xe02c657b7bb,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d251e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d1df5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd316d4,349745,0,0xffff00000006,0,0xcc01f0,0xe02c651d4e8,0xe02c657b7bb,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d251e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d1df5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x90cba3,350807,0,0x2de24a0,0,0xcc01f0,0xe02c651d4e8,0xe02c657b7bb,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d251e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d1df5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,StoreIC,9,0xe02c65d2680,134,"exports" +tick,0x7f6617762226,351869,0,0x7f6617aa7c20,2,0xca0620,0xe02c65d232b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65d2720,572,"populateMaps /home/rgbm21/Documents/botkit/node_modules/mime-types/index.js:154:22",0x24617445d5c8,~ +code-creation,LazyCompile,0,0xe02c65d2960,1376,"forEachMimeType /home/rgbm21/Documents/botkit/node_modules/mime-types/index.js:158:51",0x2461744b3ee0,~ +code-creation,Handler,3,0xe02c65d2ec0,172,"application/applixware" +code-creation,KeyedStoreIC,10,0xe02c65d2f80,153,"application/applixware" +code-creation,Handler,3,0xe02c65d3020,172,"application/atom+xml" +code-creation,Handler,3,0xe02c65d30e0,172,"application/atomcat+xml" +code-creation,Handler,3,0xe02c65d31a0,172,"application/atomsvc+xml" +code-creation,Handler,3,0xe02c65d3260,172,"application/bdoc" +code-creation,Handler,3,0xe02c65d3320,172,"application/ccxml+xml" +tick,0xbe6d14,352933,0,0x7fffc2951c00,0,0xccd040,0xe02c65d2de1,0xe02c65358da,0xe02c65353ba,0xe02c65d2918,0xe02c65d232b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c65d33e0,172,"application/cdmi-capability" +code-creation,Handler,3,0xe02c65d34a0,172,"application/cdmi-container" +code-creation,Handler,3,0xe02c65d3560,172,"application/cdmi-domain" +code-creation,Handler,3,0xe02c65d3620,172,"application/cdmi-object" +code-creation,Handler,3,0xe02c65d36e0,172,"application/cdmi-queue" +code-creation,Handler,3,0xe02c65d37a0,172,"application/cu-seeme" +code-creation,Handler,3,0xe02c65d3860,172,"application/dash+xml" +code-creation,Handler,3,0xe02c65d3920,172,"application/davmount+xml" +code-creation,Handler,3,0xe02c65d39e0,172,"application/docbook+xml" +code-creation,Handler,3,0xe02c65d3aa0,172,"application/dssc+der" +code-creation,Handler,3,0xe02c65d3b60,172,"application/dssc+xml" +code-creation,Handler,3,0xe02c65d3c20,172,"application/ecmascript" +tick,0xbb97c0,353988,0,0xbbaddd,0,0xbbbe40,0xe02c65d2ac6,0xe02c65358da,0xe02c65353ba,0xe02c65d2918,0xe02c65d232b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65d3ce0,532,"indexOf native array.js:1094:22",0x31534ff66aa8,~ +tick,0xa8ca90,355055,0,0x7fffc29516e0,2,0xca0620,0xe02c65d2bb5,0xe02c65358da,0xe02c65353ba,0xe02c65d2918,0xe02c65d232b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65d3f00,2260,"InnerArrayIndexOf native array.js:1049:27",0x31534ff669d0,~ +code-creation,Stub,12,0xe02c65d47e0,413,"CompareICStub" +code-creation,Handler,3,0xe02c65d4980,164,"indexOf" +tick,0xe02c642d0ac,356121,0,0xe02c65d2af3,0,0xe02c65358da,0xe02c65353ba,0xe02c65d2918,0xe02c65d232b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657ee90,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xe02c6430c70,357179,0,0x2efb89c359a9,0,0xe02c65c71f8,0xe02c653d071,0xe02c653c845,0xe02c6553cb4,0xe02c65533d6,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c657ef01,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65d4a40,1572," /home/rgbm21/Documents/botkit/node_modules/stringstream/stringstream.js:1:11",0x2461744b6170,~ +code-creation,Script,0,0xe02c65d5080,244,"/home/rgbm21/Documents/botkit/node_modules/stringstream/stringstream.js",0x2461744b62b0,~ +code-creation,Handler,3,0xe02c65d5180,204,"super_" +code-creation,StoreMegamorphic,9,0xe02c65d5260,347,"args_count: 0" +tick,0x7f66177d9e15,358231,1,0xe348e0,4,0x93e0b0,0xe02c653b3e0,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c657ef72,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65d53c0,916," /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:1:11",0x2461744b72e8,~ +code-creation,Script,0,0xe02c65d5760,244,"/home/rgbm21/Documents/botkit/node_modules/caseless/index.js",0x2461744b7428,~ +tick,0x8e5c92,359290,0,0x7fffc2951800,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c657efe3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65d5860,1620," /home/rgbm21/Documents/botkit/node_modules/forever-agent/index.js:1:11",0x2461744b8750,~ +code-creation,Script,0,0xe02c65d5ec0,244,"/home/rgbm21/Documents/botkit/node_modules/forever-agent/index.js",0x2461744b8890,~ +code-creation,LazyCompile,1,0xe02c65d5fc0,449,"NativeModule.wrap node.js:973:31",0x31534fff01d0,* +tick,0x913726,360350,1,0xe33e90,4,0xcdc830,0xe02c654cf32,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657efe3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c65d61a0,204,"super_" +code-creation,RegExp,5,0xe02c65d6280,916,"^\\#\\!.*" +tick,0xc3d7b1,361417,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f054,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65d6620,2732," /home/rgbm21/Documents/botkit/node_modules/form-data/lib/form_data.js:1:11",0x2461744babd0,~ +code-creation,Script,0,0xe02c65d70e0,244,"/home/rgbm21/Documents/botkit/node_modules/form-data/lib/form_data.js",0x2461744bad10,~ +tick,0x7f66177d9e15,362469,1,0xe348e0,4,0x93e0b0,0xe02c6553c38,0xe02c6557254,0xe02c655341e,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65d6755,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f054,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x7f6617840e73,363517,0,0x0,1 +tick,0xaddc57,364588,0,0x0,1 +code-creation,Function,0,0xe02c65d71e0,2164," /home/rgbm21/Documents/botkit/node_modules/combined-stream/lib/combined_stream.js:1:11",0x3c4a56a442d0,~ +code-creation,Script,0,0xe02c65d7a60,244,"/home/rgbm21/Documents/botkit/node_modules/combined-stream/lib/combined_stream.js",0x3c4a56a44410,~ +tick,0xe02c654ef20,365657,0,0xe02c653b0c6,0,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65d7398,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d6755,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f054,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65d7b60,1476," /home/rgbm21/Documents/botkit/node_modules/delayed-stream/lib/delayed_stream.js:1:11",0x3c4a56a45758,~ +code-creation,Script,0,0xe02c65d8140,244,"/home/rgbm21/Documents/botkit/node_modules/delayed-stream/lib/delayed_stream.js",0x3c4a56a45898,~ +tick,0xa8c5e6,366716,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d7398,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d6755,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f054,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xa8c882,367757,0,0x7fffc2953020,3,0x7fffc2951a88,0xe02c65c71f8,0xe02c653d071,0xe02c653c845,0xe02c6553cb4,0xe02c65533d6,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65d6ab1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f054,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xbf8203,368815,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d6ab1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f054,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc517d9,369885,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d6ab1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f054,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd1aa7e,370930,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d6ab1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f054,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65d8240,9156," /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:8:11",0x3c4a56a4b520,~ +code-creation,Function,0,0xe02c65da620,276," /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:1:11",0x3c4a56a4b698,~ +code-creation,Script,0,0xe02c65da740,244,"/home/rgbm21/Documents/botkit/node_modules/async/lib/async.js",0x3c4a56a4b7d8,~ +code-creation,Stub,12,0xe02c65da840,221,"CompareICStub" +tick,0xc4bfdf,372002,0,0x7fffc294f690,2,0xca0620,0xe02c65d93fe,0xe02c65da6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d6ab1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f054,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65da920,220,"doParallel /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:335:24",0x3c4a56a485c8,~ +code-creation,LazyCompile,0,0xe02c65daa00,220,"doSeries /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:345:22",0x3c4a56a48718,~ +code-creation,LazyCompile,0,0xe02c65daae0,220,"doParallelLimit /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:340:29",0x3c4a56a48670,~ +code-creation,LazyCompile,0,0xe02c65dabc0,236,"_createTester /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:442:27",0x3c4a56a489b8,~ +code-creation,LazyCompile,0,0xe02c65dacc0,404,"_restParam /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:157:24",0x3c4a56a483d0,~ +code-creation,LazyCompile,0,0xe02c65dae60,268," /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:758:39",0x3c4a56a49eb8,~ +code-creation,LazyCompile,0,0xe02c65daf80,292,"_console_fn /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:1061:25",0x3c4a56a48d00,~ +code-creation,LazyCompile,0,0xe02c65db0c0,436," /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:1062:36",0x3c4a56a4d2d0,~ +code-creation,LazyCompile,0,0xe02c65db280,220,"_times /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:1124:20",0x3c4a56a48da8,~ +tick,0xafbbd8,373062,0,0x7fffc29513f0,0,0xbbb8f0,0xe02c65da0ec,0xe02c65da6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65d6ab1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f054,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65db360,260,"_applyEach /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:1164:24",0x3c4a56a48e50,~ +code-creation,LazyCompile,0,0xe02c65db480,428," /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:1165:35",0x3c4a56a4dac0,~ +code-creation,LazyCompile,0,0xe02c65db640,372," /home/rgbm21/Documents/botkit/node_modules/async/lib/async.js:1220:41",0x3c4a56a4a938,~ +tick,0x8ecb4f,374121,1,0xe38260,4,0x93e0b0,0xe02c654a478,0xe02c65474e2,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f136,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65db7c0,652," /home/rgbm21/Documents/botkit/node_modules/is-typedarray/index.js:1:11",0x3c4a56a4f138,~ +code-creation,Script,0,0xe02c65dba60,244,"/home/rgbm21/Documents/botkit/node_modules/is-typedarray/index.js",0x3c4a56a4f278,~ +tick,0xd120de,375188,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f22f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65dbb60,468," /home/rgbm21/Documents/botkit/node_modules/request/lib/getProxyFromURI.js:1:11",0x3c4a56a4fd80,~ +code-creation,Script,0,0xe02c65dbd40,244,"/home/rgbm21/Documents/botkit/node_modules/request/lib/getProxyFromURI.js",0x3c4a56a4fec0,~ +tick,0xd18bc0,376642,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f2a0,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65dbe40,908," /home/rgbm21/Documents/botkit/node_modules/request/lib/querystring.js:1:11",0x3c4a56a50820,~ +code-creation,Script,0,0xe02c65dc1e0,244,"/home/rgbm21/Documents/botkit/node_modules/request/lib/querystring.js",0x3c4a56a50960,~ +tick,0xe02c64149aa,377698,0,0xe02c6546ed0,0,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dbefe,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f2a0,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65dc2e0,404," /home/rgbm21/Documents/botkit/node_modules/qs/lib/index.js:1:11",0x3c4a56a515c8,~ +code-creation,Script,0,0xe02c65dc480,244,"/home/rgbm21/Documents/botkit/node_modules/qs/lib/index.js",0x3c4a56a51708,~ +tick,0xd592fe,378762,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dc381,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dbefe,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f2a0,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65dc580,724," /home/rgbm21/Documents/botkit/node_modules/qs/lib/stringify.js:1:11",0x3c4a56a52108,~ +code-creation,Script,0,0xe02c65dc860,244,"/home/rgbm21/Documents/botkit/node_modules/qs/lib/stringify.js",0x3c4a56a52248,~ +tick,0xc50121,379965,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dc627,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dc381,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dbefe,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f2a0,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65dc960,824," /home/rgbm21/Documents/botkit/node_modules/qs/lib/utils.js:3:26",0x3c4a56a52868,~ +code-creation,Function,0,0xe02c65dcca0,772," /home/rgbm21/Documents/botkit/node_modules/qs/lib/utils.js:1:11",0x3c4a56a52f00,~ +code-creation,Script,0,0xe02c65dcfc0,244,"/home/rgbm21/Documents/botkit/node_modules/qs/lib/utils.js",0x3c4a56a53040,~ +tick,0xe02c641ed58,380960,0,0xe02c654c4ca,0,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dc627,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dc381,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dbefe,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f2a0,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,11,0xe02c65dd0c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c65dd140,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xd12041,382002,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dc3b4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dbefe,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f2a0,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65dd1c0,668," /home/rgbm21/Documents/botkit/node_modules/qs/lib/parse.js:1:11",0x3c4a56a54078,~ +code-creation,Script,0,0xe02c65dd460,244,"/home/rgbm21/Documents/botkit/node_modules/qs/lib/parse.js",0x3c4a56a541b8,~ +tick,0x91962e,383058,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65dd560,932," /home/rgbm21/Documents/botkit/node_modules/request/lib/har.js:1:11",0x3c4a56a550a0,~ +code-creation,Script,0,0xe02c65dd920,244,"/home/rgbm21/Documents/botkit/node_modules/request/lib/har.js",0x3c4a56a551e0,~ +tick,0xe02c6545adb,384115,0,0x31534ff04189,0,0xe02c65bf263,0xe02c6545001,0xe02c654380d,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65dda20,860," /home/rgbm21/Documents/botkit/node_modules/har-validator/lib/index.js:1:11",0x3c4a56a561b0,~ +code-creation,Script,0,0xe02c65ddd80,244,"/home/rgbm21/Documents/botkit/node_modules/har-validator/lib/index.js",0x3c4a56a562f0,~ +tick,0xc43354,385175,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddacf,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65dde80,324," /home/rgbm21/Documents/botkit/node_modules/pinkie-promise/index.js:1:11",0x3c4a56a56bd8,~ +code-creation,Script,0,0xe02c65ddfe0,244,"/home/rgbm21/Documents/botkit/node_modules/pinkie-promise/index.js",0x3c4a56a56d18,~ +code-creation,Function,0,0xe02c65de0e0,564," /home/rgbm21/Documents/botkit/node_modules/har-validator/lib/runner.js:1:11",0x3c4a56a57360,~ +code-creation,Script,0,0xe02c65de320,244,"/home/rgbm21/Documents/botkit/node_modules/har-validator/lib/runner.js",0x3c4a56a574a0,~ +tick,0xc88e21,386245,0,0x7fffc29515a0,0,0xcd3440,0xe02c65adf83,0xe02c654560c,0xe02c65bf263,0xe02c6545001,0xe02c654380d,0xe02c65397ee,0xe02c65bd30a,0xe02c65de187,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65de420,3524," /home/rgbm21/Documents/botkit/node_modules/har-validator/lib/schemas/index.js:1:11",0x3c4a56a58648,~ +code-creation,Script,0,0xe02c65df200,244,"/home/rgbm21/Documents/botkit/node_modules/har-validator/lib/schemas/index.js",0x3c4a56a58788,~ +tick,0xcc980e,387303,0,0xffffffffffffff86,0,0xcccb70,0xe02c653ce96,0xe02c653c845,0xe02c653b60f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65de537,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de187,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x93e151,388357,0,0x7fffc29514b8,0,0x93e150,0xe02c6545241,0xe02c654380d,0xe02c65397ee,0xe02c65bd30a,0xe02c65de5bb,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de187,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65df300,516,"Buffer buffer.js:47:16",0x31534ffffae8,~ +code-creation,LazyCompile,0,0xe02c65df520,892,"allocate buffer.js:81:18",0x31534ffffc38,~ +code-creation,LazyCompile,0,0xe02c65df8a0,596,"createPool buffer.js:28:20",0x31534ffff998,~ +code-creation,LazyCompile,0,0xe02c65dfb00,436,"slice buffer.js:635:40",0x31534ff82098,~ +code-creation,LazyCompile,0,0xe02c65dfcc0,388,"alignPool buffer.js:38:19",0x31534ffffa40,~ +code-creation,LazyCompile,0,0xe02c65dfe60,956,"fromString buffer.js:103:20",0x31534ffffce0,~ +tick,0xc4fd47,389429,0,0x7fffc294eee0,2,0xca07d0,0xe02c65472ba,0xe02c657b62e,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de5bb,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de187,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc11ccc,390495,0,0x3625d1388f9,0,0xcd0e50,0xe02c653cefa,0xe02c653c845,0xe02c653b60f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65de63f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de187,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65e0220,2714,"RecordWriteStub" +code-creation,Stub,2,0xe02c65e0cc0,2669,"RecordWriteStub" +code-creation,Stub,2,0xe02c65e1740,335,"CallFunctionStub_Args2" +code-creation,Stub,2,0xe02c65e18a0,2684,"RecordWriteStub" +code-creation,Stub,2,0xe02c65e2320,182,"DoubleToIStub" +code-creation,Stub,2,0xe02c65e23e0,182,"DoubleToIStub" +code-creation,Stub,2,0xe02c65e24a0,182,"DoubleToIStub" +code-creation,LazyCompile,1,0xe02c65e2560,5358,"Buffer buffer.js:47:16",0x31534ffffae8,* +tick,0xe02c641b3d8,391584,0,0xe02c654b6b7,0,0xe02c654a88f,0xe02c6547a07,0xe02c657b62e,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de63f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de187,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xcccbb9,392616,0,0x2e27638,0,0xcccb70,0xe02c6527a23,0xe02c653a70b,0xe02c65cf7c2,0xe02c6539417,0xe02c65bd30a,0xe02c65de705,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de187,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xe02c653f7a7,393691,0,0x31534ff04189,0,0xe02c65a7c3c,0xe02c6548994,0xe02c6546ed0,0xe02c657b62e,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de789,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de187,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xafa4ff,394742,0,0xe02c65aa989,0,0xcf2cc0,0xe02c651bf50,0xe02c651adf0,0xe02c6563d04,0xe02c65451f6,0xe02c654380d,0xe02c65397ee,0xe02c65bd30a,0xe02c65de84f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de187,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x7f661776e6ff,395798,0,0x93be9a,0,0x93c720,0xe02c654516b,0xe02c654380d,0xe02c65397ee,0xe02c65bd30a,0xe02c65de1ef,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65e3a60,300," /home/rgbm21/Documents/botkit/node_modules/har-validator/lib/error.js:1:11",0x3c4a56a5fc60,~ +code-creation,Script,0,0xe02c65e3ba0,244,"/home/rgbm21/Documents/botkit/node_modules/har-validator/lib/error.js",0x3c4a56a5fda0,~ +tick,0xd14c81,396861,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de257,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd12081,397922,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de257,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65e3ca0,2036," /home/rgbm21/Documents/botkit/node_modules/is-my-json-valid/index.js:1:11",0x3c4a56a62af0,~ +code-creation,Script,0,0xe02c65e44a0,244,"/home/rgbm21/Documents/botkit/node_modules/is-my-json-valid/index.js",0x3c4a56a62c30,~ +tick,0xe02c643bc87,398992,0,0xe02c653df80,0,0xe02c653ccc4,0xe02c653c845,0xe02c6553cb4,0xe02c65533d6,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65e3d53,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de257,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65e45a0,428," /home/rgbm21/Documents/botkit/node_modules/generate-object-property/index.js:1:11",0x3c4a56a63570,~ +code-creation,Script,0,0xe02c65e4760,244,"/home/rgbm21/Documents/botkit/node_modules/generate-object-property/index.js",0x3c4a56a636b0,~ +tick,0x9154b7,400057,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65e464b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65e3d53,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de257,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65e4860,252," /home/rgbm21/Documents/botkit/node_modules/is-property/is-property.js:1:11",0x3c4a56a668f0,~ +code-creation,Script,0,0xe02c65e4960,244,"/home/rgbm21/Documents/botkit/node_modules/is-property/is-property.js",0x3c4a56a66a30,~ +tick,0xc4e6e0,401114,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65e3dbb,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de257,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65e4a60,924," /home/rgbm21/Documents/botkit/node_modules/generate-function/index.js:1:11",0x3c4a56a67488,~ +code-creation,Script,0,0xe02c65e4e00,244,"/home/rgbm21/Documents/botkit/node_modules/generate-function/index.js",0x3c4a56a675c8,~ +tick,0xc49944,402200,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65e3e23,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de257,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65e4f00,556," /home/rgbm21/Documents/botkit/node_modules/jsonpointer/jsonpointer.js:1:11",0x3c4a56a682e0,~ +code-creation,Script,0,0xe02c65e5140,244,"/home/rgbm21/Documents/botkit/node_modules/jsonpointer/jsonpointer.js",0x3c4a56a68420,~ +code-creation,Function,0,0xe02c65e5240,412," /home/rgbm21/Documents/botkit/node_modules/xtend/immutable.js:1:11",0x3c4a56a68c88,~ +code-creation,Script,0,0xe02c65e53e0,244,"/home/rgbm21/Documents/botkit/node_modules/xtend/immutable.js",0x3c4a56a68dc8,~ +tick,0xaf8860,403241,0,0xbb1807,0,0xbbb8f0,0xe02c65e530c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65e3e8b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de257,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65e54e0,572,"Module module.js:26:16",0x2efb89c1a5f0,~ +code-creation,LazyCompile,0,0xe02c65e5720,1928,"exec native regexp.js:88:22",0x31534ff7d688,~ +code-creation,Stub,2,0xe02c65e5ec0,1250,"RecordWriteStub" +tick,0xa79351,404296,0,0x7fffc2950980,2,0xca1cb0,0xe02c65aaf51,0xe02c65437f1,0xe02c65397ee,0xe02c65bd30a,0xe02c65e3ef3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de257,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65e63c0,2699,"RecordWriteStub" +code-creation,Stub,2,0xe02c65e6e60,2680,"RecordWriteStub" +code-creation,Stub,2,0xe02c65e78e0,1220,"RecordWriteStub" +code-creation,Stub,2,0xe02c65e7dc0,2657,"RecordWriteStub" +code-creation,Stub,2,0xe02c65e8840,2685,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c65e92c0,1572,"Module module.js:26:16",0x2efb89c1a5f0,* +code-creation,LazyCompile,0,0xe02c65e9900,260,"posix.extname path.js:561:25",0x2efb89c17960,~ +code-creation,Stub,2,0xe02c65e9a20,2702,"RecordWriteStub" +code-creation,Stub,2,0xe02c65ea4c0,2699,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c65eaf60,2560,"exec native regexp.js:88:22",0x31534ff7d688,* +tick,0xad5154,405357,0,0x7fffc2951030,2,0xca1cb0,0xe02c654388f,0xe02c65397ee,0xe02c65bd30a,0xe02c65e3ef3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de257,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,1,0xe02c65eb960,577,"posix.extname path.js:561:25",0x2efb89c17960,* +code-creation,LazyCompile,0,0xe02c65ebbc0,436,"assertEncoding fs.js:86:24",0x2efb89c1ff78,~ +code-creation,LazyCompile,0,0xe02c65ebd80,1352,"Buffer.isEncoding buffer.js:194:29",0x31534ff98970,~ +code-creation,LazyCompile,0,0xe02c65ec2e0,556,"fs.openSync fs.js:581:23",0x2efb89c21bd0,~ +code-creation,LazyCompile,0,0xe02c65ec520,468,"modeNum fs.js:556:17",0x2efb89c20608,~ +code-creation,Stub,2,0xe02c65ec700,436,"CallApiAccessorStub" +code-creation,LazyCompile,1,0xe02c65ec8c0,470,"assertEncoding fs.js:86:24",0x2efb89c1ff78,* +code-creation,LazyCompile,0,0xe02c65ecaa0,300,"fs.fstatSync fs.js:881:24",0x2efb89c22b90,~ +code-creation,LazyCompile,0,0xe02c65ecbe0,324,"fs.Stats.isFile fs.js:151:37",0x2efb89c20fe0,~ +tick,0xb4d771,406492,0,0x7fffc2950e60,2,0xca07d0,0xe02c6547096,0xe02c6546a8e,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65e3ef3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de257,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,1,0xe02c65ecd40,278,"fs.fstatSync fs.js:881:24",0x2efb89c22b90,* +code-creation,LazyCompile,1,0xe02c65ece60,949,"fs.openSync fs.js:581:23",0x2efb89c21bd0,* +code-creation,LazyCompile,1,0xe02c65ed220,593,"fs.Stats.isFile fs.js:151:37",0x2efb89c20fe0,* +code-creation,LazyCompile,0,0xe02c65ed480,300,"fs.closeSync fs.js:552:24",0x2efb89c21a80,~ +code-creation,LazyCompile,0,0xe02c65ed5c0,612,"Buffer.toString buffer.js:395:37",0x31534ff931f0,~ +code-creation,LazyCompile,1,0xe02c65ed840,278,"fs.closeSync fs.js:552:24",0x2efb89c21a80,* +code-creation,LazyCompile,0,0xe02c65ed960,388,"stripBOM internal/module.js:34:18",0x2efb89c1be18,~ +code-creation,LazyCompile,1,0xe02c65edb00,626,"Buffer.toString buffer.js:395:37",0x31534ff931f0,* +tick,0x91745a,407542,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65e3ef3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65de257,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65ddb37,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65edd80,3684," /home/rgbm21/Documents/botkit/node_modules/is-my-json-valid/formats.js:1:11",0x3c4a56a719c0,~ +code-creation,Script,0,0xe02c65eec00,244,"/home/rgbm21/Documents/botkit/node_modules/is-my-json-valid/formats.js",0x3c4a56a71b00,~ +code-creation,LazyCompile,1,0xe02c65eed00,536,"stripBOM internal/module.js:34:18",0x2efb89c1be18,* +code-creation,LazyCompile,0,0xe02c65eef20,220,"promisify /home/rgbm21/Documents/botkit/node_modules/har-validator/lib/index.js:7:26",0x3c4a56a55ef8,~ +code-creation,LazyCompile,0,0xe02c65ef000,564,"map native array.js:1040:18",0x31534ff66908,~ +tick,0xaa8d63,408606,0,0x7fffc2951040,2,0xca0620,0xe02c65ef19c,0xe02c65ddd36,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65dd6ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f32d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65ef240,1560,"InnerArrayMap native array.js:1019:23",0x31534ff66838,~ +code-creation,LazyCompile,0,0xe02c65ef860,292," /home/rgbm21/Documents/botkit/node_modules/har-validator/lib/index.js:20:35",0x3c4a56a55fa0,~ +code-creation,KeyedStoreIC,10,0xe02c65ef9a0,134,"" +code-creation,Handler,3,0xe02c65efa40,204,"cacheEntry" +code-creation,KeyedStoreIC,10,0xe02c65efb20,153,"cacheEntry" +code-creation,Handler,3,0xe02c65efbc0,204,"content" +code-creation,Handler,3,0xe02c65efca0,204,"cookie" +code-creation,Handler,3,0xe02c65efd80,204,"creator" +code-creation,Handler,3,0xe02c65efe60,204,"entry" +code-creation,Handler,3,0xe02c65eff40,204,"har" +code-creation,Handler,3,0xe02c65f0020,204,"log" +code-creation,Handler,3,0xe02c65f0100,204,"page" +code-creation,Handler,3,0xe02c65f01e0,204,"pageTimings" +code-creation,Handler,3,0xe02c65f02c0,204,"postData" +code-creation,Handler,3,0xe02c65f03a0,204,"record" +code-creation,Handler,3,0xe02c65f0480,204,"request" +code-creation,Handler,3,0xe02c65f0560,204,"response" +code-creation,Handler,3,0xe02c65f0640,204,"timings" +tick,0xc07077,410024,0,0x3625d200000,0,0xcd6c50,0xe02c65bf039,0xe02c6527b84,0xe02c653c9c6,0xe02c653c845,0xe02c6553cb4,0xe02c6557254,0xe02c653b6d4,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c657f3ba,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f0720,1148," /home/rgbm21/Documents/botkit/node_modules/request/lib/auth.js:1:11",0x3c4a56a73f88,~ +code-creation,Script,0,0xe02c65f0ba0,244,"/home/rgbm21/Documents/botkit/node_modules/request/lib/auth.js",0x3c4a56a740c8,~ +tick,0xafc3b6,411094,0,0x7fffc2951b20,0,0xcbb110,0xe02c65ab16f,0xe02c654c889,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f3ba,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x7f6617841a24,412156,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f447,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f0ca0,1236," /home/rgbm21/Documents/botkit/node_modules/request/lib/oauth.js:1:11",0x3c4a56a75808,~ +code-creation,Script,0,0xe02c65f1180,244,"/home/rgbm21/Documents/botkit/node_modules/request/lib/oauth.js",0x3c4a56a75948,~ +tick,0x7f6617abd663,413397,1,0xe3f880,4,0x93e0b0,0xe02c655379b,0xe02c65532de,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65f0efe,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f447,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd1904f,414371,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f0efe,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f447,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f1280,1204," /home/rgbm21/Documents/botkit/node_modules/oauth-sign/index.js:1:11",0x3c4a56a76b08,~ +code-creation,Script,0,0xe02c65f1740,244,"/home/rgbm21/Documents/botkit/node_modules/oauth-sign/index.js",0x3c4a56a76c48,~ +tick,0xadb0c1,415432,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f4d4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f1840,924," /home/rgbm21/Documents/botkit/node_modules/request/lib/multipart.js:1:11",0x3c4a56a77878,~ +code-creation,Script,0,0xe02c65f1be0,244,"/home/rgbm21/Documents/botkit/node_modules/request/lib/multipart.js",0x3c4a56a779b8,~ +code-creation,Function,0,0xe02c65f1ce0,676," /home/rgbm21/Documents/botkit/node_modules/isstream/isstream.js:1:11",0x3c4a56a78840,~ +code-creation,Script,0,0xe02c65f1fa0,244,"/home/rgbm21/Documents/botkit/node_modules/isstream/isstream.js",0x3c4a56a78980,~ +tick,0xe02c640ca73,416492,0,0xe02c655b2a7,0,0xe02c65cf6dc,0xe02c6539417,0xe02c65bd30a,0xe02c65f1e46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f19ce,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f4d4,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f20a0,932," /home/rgbm21/Documents/botkit/node_modules/request/lib/redirect.js:1:11",0x3c4a56a794c8,~ +code-creation,Script,0,0xe02c65f2460,244,"/home/rgbm21/Documents/botkit/node_modules/request/lib/redirect.js",0x3c4a56a79608,~ +tick,0xcc9c89,417552,0,0xffffffffffffffc6,0,0xcccb70,0xe02c653ce96,0xe02c653c845,0xe02c6553cb4,0xe02c6557254,0xe02c653b6d4,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c657f5ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f2560,1268," /home/rgbm21/Documents/botkit/node_modules/request/lib/tunnel.js:1:11",0x3c4a56a7a680,~ +code-creation,Script,0,0xe02c65f2a60,244,"/home/rgbm21/Documents/botkit/node_modules/request/lib/tunnel.js",0x3c4a56a7a7c0,~ +tick,0x90c828,418621,0,0x7fffc2951790,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65f2816,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f5ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x917526,419680,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f2816,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c657f5ee,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f2b60,2292," /home/rgbm21/Documents/botkit/node_modules/tunnel-agent/index.js:1:11",0x3c4a56a7bf68,~ +code-creation,Script,0,0xe02c65f3460,244,"/home/rgbm21/Documents/botkit/node_modules/tunnel-agent/index.js",0x3c4a56a7c0a8,~ +code-creation,LazyCompile,0,0xe02c65f3560,228,"exports.jar /home/rgbm21/Documents/botkit/node_modules/request/lib/cookies.js:37:23",0x2efb89ca86c8,~ +code-creation,LazyCompile,0,0xe02c65f3660,308,"RequestJar /home/rgbm21/Documents/botkit/node_modules/request/lib/cookies.js:20:20",0x2efb89ca8380,~ +code-creation,LazyCompile,0,0xe02c65f37a0,716,"CookieJar /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/cookie.js:881:19",0x2efb89cabdf8,~ +code-creation,Stub,13,0xe02c65f3a80,232,"CompareNilICStub(NullValue)(MonomorphicMap)" +code-creation,Stub,13,0xe02c65f3b80,188,"CompareNilICStub(NullValue)(Generic)" +code-creation,LazyCompile,0,0xe02c65f3c40,324,"MemoryCookieStore /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/memstore.js:37:27",0x2b24593243e0,~ +code-creation,LazyCompile,0,0xe02c65f3da0,180,"Store /home/rgbm21/Documents/botkit/node_modules/tough-cookie/lib/store.js:34:15",0x2b2459323440,~ +tick,0xaf7c88,420741,0,0x7fffc2951cb0,0,0xbbb8f0,0xe02c658027d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6572225,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571926,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c65f3e60,145,symbol("nonexistent_symbol" hash 327c89d) +tick,0xc38f61,421809,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f3f00,244," /home/rgbm21/Documents/botkit/node_modules/express/index.js:1:11",0x3c4a56a7e968,~ +code-creation,Script,0,0xe02c65f4000,244,"/home/rgbm21/Documents/botkit/node_modules/express/index.js",0x3c4a56a7eaa8,~ +code-creation,Function,0,0xe02c65f4100,1404," /home/rgbm21/Documents/botkit/node_modules/express/lib/express.js:1:11",0x3c4a56a7f5d8,~ +code-creation,Script,0,0xe02c65f4680,244,"/home/rgbm21/Documents/botkit/node_modules/express/lib/express.js",0x3c4a56a7f718,~ +tick,0xa8c861,422866,0,0x7fffc29519f0,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65f426b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f4780,380," /home/rgbm21/Documents/botkit/node_modules/merge-descriptors/index.js:1:11",0x3c4a56a80148,~ +code-creation,Script,0,0xe02c65f4900,244,"/home/rgbm21/Documents/botkit/node_modules/merge-descriptors/index.js",0x3c4a56a80288,~ +tick,0xafa4ff,423936,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x94c200,425002,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65f4a00,626,"FastNewContextStub" +code-creation,Function,0,0xe02c65f4c80,3828," /home/rgbm21/Documents/botkit/node_modules/express/lib/application.js:1:11",0x3c4a56a822a0,~ +code-creation,Script,0,0xe02c65f5b80,244,"/home/rgbm21/Documents/botkit/node_modules/express/lib/application.js",0x3c4a56a823e0,~ +tick,0xc932f0,426067,0,0x7fff00000000,0,0xc92f30,0xe02c65aa989,0xe02c654516b,0xe02c654380d,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4da7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f5c80,1164," /home/rgbm21/Documents/botkit/node_modules/finalhandler/index.js:1:11",0x3c4a56a831c0,~ +code-creation,Script,0,0xe02c65f6120,244,"/home/rgbm21/Documents/botkit/node_modules/finalhandler/index.js",0x3c4a56a83300,~ +code-creation,LazyCompile,0,0xe02c65f6220,500,"debug /home/rgbm21/Documents/botkit/node_modules/debug/debug.js:62:15",0x2efb89c9cab0,~ +code-creation,LazyCompile,0,0xe02c65f6420,1044,"enabled /home/rgbm21/Documents/botkit/node_modules/debug/debug.js:171:17",0x2efb89c9cca8,~ +tick,0x7f6617751be0,427132,0,0xbde594,2,0xca0620,0xe02c65f638f,0xe02c65f5dc0,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4da7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f6840,516," /home/rgbm21/Documents/botkit/node_modules/escape-html/index.js:1:11",0x3c4a56a84458,~ +code-creation,Script,0,0xe02c65f6a60,244,"/home/rgbm21/Documents/botkit/node_modules/escape-html/index.js",0x3c4a56a84598,~ +tick,0x7f6617abd663,428199,1,0xe3f880,4,0x93e0b0,0xe02c655379b,0xe02c65532de,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65f5ef8,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4da7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f6b60,924," /home/rgbm21/Documents/botkit/node_modules/on-finished/index.js:1:11",0x3c4a56a85588,~ +code-creation,Script,0,0xe02c65f6f00,244,"/home/rgbm21/Documents/botkit/node_modules/on-finished/index.js",0x3c4a56a856c8,~ +tick,0xd5b541,429265,1,0xe32800,2,0x93d1a0,0xe02c654ceef,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5ef8,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4da7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f7000,324," /home/rgbm21/Documents/botkit/node_modules/ee-first/index.js:1:11",0x3c4a56a85fd0,~ +code-creation,Script,0,0xe02c65f7160,244,"/home/rgbm21/Documents/botkit/node_modules/ee-first/index.js",0x3c4a56a86110,~ +code-creation,Handler,3,0xe02c65f7260,171,"setImmediate" +tick,0xd2e887,430300,0,0x90cdfe,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65f5f60,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4da7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65f7320,348,"exports.runInThisContext vm.js:52:36",0x2efb89c1c988,~ +code-creation,Function,0,0xe02c65f7480,292," /home/rgbm21/Documents/botkit/node_modules/unpipe/index.js:1:11",0x3c4a56a86b88,~ +code-creation,Script,0,0xe02c65f75c0,244,"/home/rgbm21/Documents/botkit/node_modules/unpipe/index.js",0x3c4a56a86cc8,~ +code-creation,LazyCompile,1,0xe02c65f76c0,341,"exports.runInThisContext vm.js:52:36",0x2efb89c1c988,* +code-creation,LazyCompile,0,0xe02c65f7820,636,"makeRequireFunction internal/module.js:7:29",0x2efb89c1bd70,~ +tick,0x9157bf,431384,0,0x7fffc29510a0,2,0xca07d0,0xe02c654c91b,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5f60,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4da7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65f7aa0,1250,"RecordWriteStub" +code-creation,Stub,2,0xe02c65f7fa0,1232,"RecordWriteStub" +code-creation,Stub,2,0xe02c65f8480,2648,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c65f8ee0,953,"makeRequireFunction internal/module.js:7:29",0x2efb89c1bd70,* +tick,0xd18151,432420,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc08203,433493,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65f92a0,2764," /home/rgbm21/Documents/botkit/node_modules/express/lib/router/index.js:1:11",0x3c4a56a89a98,~ +code-creation,Script,0,0xe02c65f9d80,244,"/home/rgbm21/Documents/botkit/node_modules/express/lib/router/index.js",0x3c4a56a89bd8,~ +code-creation,Handler,3,0xe02c65f9e80,192,"resolve" +code-creation,StoreIC,9,0xe02c65f9f40,134,"resolve" +code-creation,Handler,3,0xe02c65f9fe0,192,"cache" +code-creation,StoreIC,9,0xe02c65fa0a0,134,"cache" +tick,0xd07c94,434551,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f9559,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65fa140,1468," /home/rgbm21/Documents/botkit/node_modules/express/lib/router/route.js:1:11",0x3c4a56a8a838,~ +code-creation,Script,0,0xe02c65fa700,244,"/home/rgbm21/Documents/botkit/node_modules/express/lib/router/route.js",0x3c4a56a8a978,~ +code-creation,Handler,3,0xe02c65fa800,192,"enabled" +code-creation,StoreIC,9,0xe02c65fa8c0,134,"enabled" +code-creation,Handler,3,0xe02c65fa960,192,"enabled" +code-creation,StoreIC,9,0xe02c65faa20,134,"enabled" +code-creation,Handler,3,0xe02c65faac0,192,"namespace" +code-creation,StoreIC,9,0xe02c65fab80,134,"namespace" +tick,0xafac7d,435603,0,0x0,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65fa2d5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f9559,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65fac20,380," /home/rgbm21/Documents/botkit/node_modules/array-flatten/array-flatten.js:1:11",0x3c4a56a8ba00,~ +code-creation,Script,0,0xe02c65fada0,244,"/home/rgbm21/Documents/botkit/node_modules/array-flatten/array-flatten.js",0x3c4a56a8bb40,~ +tick,0xc06577,436677,1,0xe32800,3,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65fa33d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f9559,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65faea0,1044," /home/rgbm21/Documents/botkit/node_modules/express/lib/router/layer.js:1:11",0x3c4a56a8c520,~ +code-creation,Script,0,0xe02c65fb2c0,244,"/home/rgbm21/Documents/botkit/node_modules/express/lib/router/layer.js",0x3c4a56a8c660,~ +tick,0xc09b61,437736,0,0x7fffc2950ff0,0,0xccd040,0xe02c653d0ec,0xe02c653c845,0xe02c6553cb4,0xe02c6557254,0xe02c653b7d9,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65fafd5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65fa33d,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f9559,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65fb3c0,580," /home/rgbm21/Documents/botkit/node_modules/path-to-regexp/index.js:1:11",0x3c4a56a8d2c8,~ +code-creation,Script,0,0xe02c65fb620,244,"/home/rgbm21/Documents/botkit/node_modules/path-to-regexp/index.js",0x3c4a56a8d408,~ +tick,0xbe1c51,438772,1,0xe348e0,4,0x93e0b0,0xe02c6553c38,0xe02c6557254,0xe02c653b6d4,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65fa3a5,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f9559,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65fb720,484," /home/rgbm21/Documents/botkit/node_modules/methods/index.js:1:11",0x3c4a56a8e2c8,~ +code-creation,Script,0,0xe02c65fb920,244,"/home/rgbm21/Documents/botkit/node_modules/methods/index.js",0x3c4a56a8e408,~ +code-creation,LazyCompile,0,0xe02c65fba20,364,"getCurrentNodeMethods /home/rgbm21/Documents/botkit/node_modules/methods/index.js:29:31",0x3c4a56a8e078,~ +code-creation,LazyCompile,0,0xe02c65fbba0,268,"lowerCaseMethod /home/rgbm21/Documents/botkit/node_modules/methods/index.js:30:67",0x3c4a56a8e5f0,~ +code-creation,LazyCompile,0,0xe02c65fbcc0,500,"toLowerCase native string.js:537:29",0x31534ff7a8b0,~ +code-creation,Handler,3,0xe02c65fbec0,186,"toLowerCase" +tick,0xadb151,439869,0,0x3,0,0xbbb8f0,0xe02c65fa66b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f9559,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65fbf80,292," /home/rgbm21/Documents/botkit/node_modules/express/lib/router/route.js:186:25",0x3c4a56a8a598,~ +tick,0xa8ca98,440901,0,0x7fffc2950fb0,2,0xca07d0,0xe02c653c845,0xe02c6553cb4,0xe02c6557254,0xe02c655341e,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65f965c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c65fc0c0,3592,"realpathSync fs.js:1462:40",0x2efb89c24480,~ +code-creation,LazyCompile,0,0xe02c65fcee0,500,"Module._extensions..js module.js:402:37",0x2efb89c1af60,~ +tick,0x9360a7,441962,0,0x2f43018,2,0xca07d0,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f965c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c65fd0e0,244," /home/rgbm21/Documents/botkit/node_modules/utils-merge/index.js:1:11",0x3c4a56a92230,~ +code-creation,Script,0,0xe02c65fd1e0,244,"/home/rgbm21/Documents/botkit/node_modules/utils-merge/index.js",0x3c4a56a92370,~ +code-creation,LazyCompile,1,0xe02c65fd2e0,440,"Module._extensions..js module.js:402:37",0x2efb89c1af60,* +tick,0x7f6617843200,443026,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f9758,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c65fd4a0,1789,"RecordWriteStub" +code-creation,Function,0,0xe02c65fdba0,2284," /home/rgbm21/Documents/botkit/node_modules/depd/index.js:1:11",0x3c4a56a94cc0,~ +code-creation,Script,0,0xe02c65fe4a0,244,"/home/rgbm21/Documents/botkit/node_modules/depd/index.js",0x3c4a56a94e00,~ +code-creation,Stub,2,0xe02c6606000,2668,"RecordWriteStub" +code-creation,Stub,2,0xe02c6606a80,228,"CallFunctionStub_Args0" +code-creation,Stub,2,0xe02c6606b80,2688,"RecordWriteStub" +code-creation,Stub,2,0xe02c6607600,2660,"RecordWriteStub" +code-creation,Stub,2,0xe02c6608080,2657,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c6608b00,5328,"realpathSync fs.js:1462:40",0x2efb89c24480,* +tick,0xe02c654c889,444088,0,0x2efb89c18921,0,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f9758,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6609fe0,868," /home/rgbm21/Documents/botkit/node_modules/depd/lib/compat/index.js:1:11",0x3c4a56a98578,~ +code-creation,Script,0,0xe02c660a360,244,"/home/rgbm21/Documents/botkit/node_modules/depd/lib/compat/index.js",0x3c4a56a986b8,~ +code-creation,LazyCompile,0,0xe02c660a460,452,"lazyProperty /home/rgbm21/Documents/botkit/node_modules/depd/lib/compat/index.js:58:22",0x3c4a56a980d8,~ +code-creation,Handler,3,0xe02c660a640,171,"Object" +code-creation,StoreIC,9,0xe02c660a700,134,"get" +code-creation,LazyCompile,0,0xe02c660a7a0,420,"get /home/rgbm21/Documents/botkit/node_modules/depd/lib/compat/index.js:59:15",0x3c4a56a988e8,~ +code-creation,LazyCompile,0,0xe02c660a960,948,"callSiteToString /home/rgbm21/Documents/botkit/node_modules/depd/lib/compat/index.js:26:75",0x3c4a56a982d0,~ +code-creation,Handler,3,0xe02c660ad20,171,"Error" +tick,0xc08227,445154,0,0x2de24a0,2,0xca0620,0xe02c660ab78,0xe02c660a836,0xe02c65fe247,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f9758,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c660ade0,436,"captureStackTrace native messages.js:709:30",0x31534ff5ee88,~ +code-creation,LazyCompile,0,0xe02c660afa0,608,"aU native messages.js:618:16",0x31534ff62238,~ +code-disable-optimization,"FormatStackTrace","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c660b200,1848,"FormatStackTrace native messages.js:568:26",0x31534ff618f8, +code-creation,LazyCompile,0,0xe02c660b940,1088,"GetStackFrames native messages.js:553:24",0x31534ff61828,~ +code-creation,LazyCompile,0,0xe02c660bd80,268,"CallSite native messages.js:348:18",0x31534ff60850,~ +code-creation,Handler,3,0xe02c660bea0,164,"push" +code-creation,Handler,3,0xe02c660bf60,192,symbol("CallSite#receiver" hash 23053676) +code-creation,KeyedStoreIC,10,0xe02c660c020,153,symbol("CallSite#receiver" hash 23053676) +code-creation,Handler,3,0xe02c660c0c0,192,symbol("CallSite#function" hash 32ed691) +code-creation,KeyedStoreIC,10,0xe02c660c180,153,symbol("CallSite#function" hash 32ed691) +code-creation,Handler,3,0xe02c660c220,184,symbol("CallSite#position" hash 11780b96) +code-creation,KeyedStoreIC,10,0xe02c660c2e0,153,symbol("CallSite#position" hash 11780b96) +code-creation,Handler,3,0xe02c660c380,192,symbol("CallSite#strict_mode" hash 30bd7c6b) +code-creation,KeyedStoreIC,10,0xe02c660c440,153,symbol("CallSite#strict_mode" hash 30bd7c6b) +code-creation,LazyCompile,0,0xe02c660c4e0,188,"prepareObjectStackTrace /home/rgbm21/Documents/botkit/node_modules/depd/lib/compat/index.js:31:35",0x3c4a56a98e98,~ +code-creation,Handler,3,0xe02c660c5a0,151,"$stackTraceSymbol" +code-disable-optimization,"EQUALS","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c660c640,3336,"EQUALS native runtime.js:22:16",0x31534ff6a668, +tick,0xd1b46b,446222,0,0xc29510f0,2,0xca0620,0xe02c660a836,0xe02c65fe2ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f9758,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c660d360,316,"eventListenerCount /home/rgbm21/Documents/botkit/node_modules/depd/lib/compat/index.js:50:79",0x3c4a56a98378,~ +code-creation,StoreIC,9,0xe02c660d4a0,134,"value" +code-creation,Handler,3,0xe02c660d540,164,"setGet" +code-creation,Handler,3,0xe02c660d600,164,"setSet" +code-creation,Handler,3,0xe02c660d6c0,164,"setEnumerable" +code-creation,Handler,3,0xe02c660d780,164,"setConfigurable" +code-creation,Handler,3,0xe02c660d840,164,"isConfigurable" +code-creation,Handler,3,0xe02c660d900,164,"isWritable" +code-creation,LazyCompile,0,0xe02c660d9c0,924,"depd /home/rgbm21/Documents/botkit/node_modules/depd/index.js:106:14",0x3c4a56a94058,~ +code-creation,LazyCompile,0,0xe02c660dd60,900,"getStack /home/rgbm21/Documents/botkit/node_modules/depd/index.js:365:18",0x3c4a56a94640,~ +code-creation,StoreIC,9,0xe02c660e100,134,"get" +code-creation,StoreIC,9,0xe02c660e1a0,134,"set" +code-creation,LazyCompile,0,0xe02c660e240,188,"prepareObjectStackTrace /home/rgbm21/Documents/botkit/node_modules/depd/index.js:389:33",0x3c4a56a946e8,~ +code-creation,KeyedStoreIC,10,0xe02c660e300,153,symbol("stack_trace_symbol" hash 86f2691) +code-creation,Handler,3,0xe02c660e3a0,216,symbol("formatted stack trace" hash 316e8322) +code-creation,KeyedStoreIC,10,0xe02c660e480,153,symbol("formatted stack trace" hash 316e8322) +code-creation,LazyCompile,0,0xe02c660e520,844,"callSiteLocation /home/rgbm21/Documents/botkit/node_modules/depd/index.js:251:26",0x3c4a56a942f8,~ +code-creation,LazyCompile,0,0xe02c660e880,324,"CallSiteGetFileName native messages.js:402:29",0x31534ff61180,~ +code-creation,LazyCompile,0,0xe02c660e9e0,324,"CallSiteGetLineNumber native messages.js:408:31",0x31534ff61258,~ +code-creation,LazyCompile,0,0xe02c660eb40,324,"CallSiteGetColumnNumber native messages.js:414:33",0x31534ff61330,~ +code-creation,LazyCompile,0,0xe02c660eca0,324,"CallSiteIsEval native messages.js:374:24",0x31534ff60d48,~ +code-creation,LazyCompile,0,0xe02c660ee00,324,"CallSiteGetFunctionName native messages.js:390:33",0x31534ff60fd0,~ +code-creation,LazyCompile,0,0xe02c660ef60,444,"isignored /home/rgbm21/Documents/botkit/node_modules/depd/index.js:136:19",0x3c4a56a94100,~ +code-creation,Handler,3,0xe02c660f120,171,"process" +code-creation,LazyCompile,0,0xe02c660f1e0,1128,"containsNamespace /home/rgbm21/Documents/botkit/node_modules/depd/index.js:31:27",0x3c4a56a93db8,~ +tick,0xcd4501,447281,0,0x7fffc2951ad8,0,0xcd4500,0xe02c660f2c3,0xe02c660f0ff,0xe02c660dbd9,0xe02c65f9784,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,RegExp,5,0xe02c660f660,914,"[ \,]+" +code-creation,LazyCompile,0,0xe02c660fa00,844,"String native string.js:28:27",0x31534ff7cf08,~ +code-creation,LazyCompile,0,0xe02c660fd60,444,"istraced /home/rgbm21/Documents/botkit/node_modules/depd/index.js:153:18",0x3c4a56a941a8,~ +code-creation,Handler,3,0xe02c660ff20,186,"split" +code-creation,Handler,3,0xe02c660ffe0,171,"String" +code-creation,Function,0,0xe02c66100a0,996," /home/rgbm21/Documents/botkit/node_modules/parseurl/index.js:1:11",0x3c4a56a9cfa8,~ +code-creation,Script,0,0xe02c66104a0,244,"/home/rgbm21/Documents/botkit/node_modules/parseurl/index.js",0x3c4a56a9d0e8,~ +tick,0xe02c640ca73,448349,0,0xe02c65395a2,0,0xe02c654e307,0xe02c654e0fe,0xe02c6610226,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f9854,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4e0f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66105a0,260," /home/rgbm21/Documents/botkit/node_modules/express/lib/router/index.js:507:39",0x3c4a56a896c0,~ +code-creation,Handler,3,0xe02c66106c0,204,"all" +code-creation,Function,0,0xe02c66107a0,244," /home/rgbm21/Documents/botkit/node_modules/express/lib/middleware/init.js:1:11",0x3c4a56a9eb80,~ +code-creation,Script,0,0xe02c66108a0,244,"/home/rgbm21/Documents/botkit/node_modules/express/lib/middleware/init.js",0x3c4a56a9ecc0,~ +tick,0xc5b8e9,449410,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4f47,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66109a0,460," /home/rgbm21/Documents/botkit/node_modules/express/lib/middleware/query.js:1:11",0x3c4a56a9f2b0,~ +code-creation,Script,0,0xe02c6610b80,244,"/home/rgbm21/Documents/botkit/node_modules/express/lib/middleware/query.js",0x3c4a56a9f3f0,~ +code-creation,Function,0,0xe02c6610c80,476," /home/rgbm21/Documents/botkit/node_modules/express/node_modules/qs/lib/index.js:1:11",0x3c4a56aa0370,~ +code-creation,Script,0,0xe02c6610e60,244,"/home/rgbm21/Documents/botkit/node_modules/express/node_modules/qs/lib/index.js",0x3c4a56aa04b0,~ +tick,0x7f66177674de,450476,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6610d22,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6610aaf,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4f47,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6610f60,724," /home/rgbm21/Documents/botkit/node_modules/express/node_modules/qs/lib/stringify.js:1:11",0x3c4a56aa0d78,~ +code-creation,Script,0,0xe02c6611240,244,"/home/rgbm21/Documents/botkit/node_modules/express/node_modules/qs/lib/stringify.js",0x3c4a56aa0eb8,~ +code-creation,Function,0,0xe02c6611340,1464," /home/rgbm21/Documents/botkit/node_modules/express/node_modules/qs/lib/utils.js:1:11",0x3c4a56aa1930,~ +code-creation,Script,0,0xe02c6611900,244,"/home/rgbm21/Documents/botkit/node_modules/express/node_modules/qs/lib/utils.js",0x3c4a56aa1a70,~ +code-creation,Stub,11,0xe02c6611a00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6611a80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,KeyedStoreIC,10,0xe02c6611b00,134,"" +code-creation,Handler,3,0xe02c6611ba0,186,"toString" +code-creation,Handler,3,0xe02c6611c60,186,"toUpperCase" +tick,0xe02c641ed6f,451542,0,0xe02c66114d3,0,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6611007,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6610d22,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6610aaf,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4f47,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6611d20,668," /home/rgbm21/Documents/botkit/node_modules/express/node_modules/qs/lib/parse.js:1:11",0x3c4a56aa28d0,~ +code-creation,Script,0,0xe02c6611fc0,244,"/home/rgbm21/Documents/botkit/node_modules/express/node_modules/qs/lib/parse.js",0x3c4a56aa2a10,~ +tick,0xa7fcf0,452604,1,0x8d9b20,4,0xbb47d0,0xe02c651b02c,0xe02c651adf0,0xe02c6563d04,0xe02c65451f6,0xe02c654380d,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66120c0,1428," /home/rgbm21/Documents/botkit/node_modules/express/lib/view.js:1:11",0x3c4a56aa3c58,~ +code-creation,Script,0,0xe02c6612660,244,"/home/rgbm21/Documents/botkit/node_modules/express/lib/view.js",0x3c4a56aa3d98,~ +code-creation,Function,0,0xe02c6612760,2204," /home/rgbm21/Documents/botkit/node_modules/express/lib/utils.js:1:11",0x3c4a56aa50f8,~ +code-creation,Script,0,0xe02c6613000,244,"/home/rgbm21/Documents/botkit/node_modules/express/lib/utils.js",0x3c4a56aa5238,~ +tick,0x7f6617abd59d,453669,1,0xe3f880,4,0x93e0b0,0xe02c655379b,0xe02c65532de,0xe02c653b719,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6612919,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6613100,4252," /home/rgbm21/Documents/botkit/node_modules/content-disposition/index.js:1:11",0x3c4a56aa6db8,~ +code-creation,Script,0,0xe02c66141a0,244,"/home/rgbm21/Documents/botkit/node_modules/content-disposition/index.js",0x3c4a56aa6ef8,~ +tick,0x90db92,454733,0,0x2e276d0,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c65532de,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c661294c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66142a0,700,"tryPackage module.js:90:20",0x2efb89c1a740,~ +code-creation,LazyCompile,0,0xe02c6614560,508,"tryFile module.js:106:17",0x2efb89c1a7e8,~ +code-creation,LazyCompile,0,0xe02c6614760,340,"toRealPath module.js:111:20",0x2efb89c1a890,~ +code-creation,LazyCompile,0,0xe02c66148c0,576,"tryExtensions module.js:116:23",0x2efb89c1a938,~ +code-creation,LazyCompile,0,0xe02c6614b00,340,"hasOwnProperty module.js:21:24",0x2efb89c1a548,~ +code-creation,LazyCompile,1,0xe02c6614c60,370,"hasOwnProperty module.js:21:24",0x2efb89c1a548,* +tick,0xad82ea,456086,0,0x0,1 +tick,0xadd8ef,457153,0,0x0,1 +code-creation,LazyCompile,1,0xe02c6614de0,2464,"tryPackage module.js:90:20",0x2efb89c1a740,* +code-creation,Function,0,0xe02c6615780,2164," /home/rgbm21/Documents/botkit/node_modules/content-type/index.js:1:11",0x2e9bd4f940a0,~ +code-creation,Script,0,0xe02c6616000,244,"/home/rgbm21/Documents/botkit/node_modules/content-type/index.js",0x2e9bd4f941e0,~ +code-creation,Stub,3,0xe02c6616100,164,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c66161c0,134,"prepareStackTrace" +code-creation,Handler,3,0xe02c6616260,171,"Math" +code-creation,Stub,3,0xe02c6616320,164,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c66163e0,134,"stackTraceLimit" +code-creation,Handler,3,0xe02c6616480,199,"stack" +code-creation,Handler,3,0xe02c6616560,216,symbol("formatted stack trace" hash 316e8322) +code-creation,Handler,3,0xe02c6616640,164,"slice" +code-creation,StoreIC,9,0xe02c6616700,134,"prepareStackTrace" +code-creation,StoreIC,9,0xe02c66167a0,134,"stackTraceLimit" +code-creation,Handler,3,0xe02c6616840,164,"getFileName" +code-creation,Handler,3,0xe02c6616900,164,"getLineNumber" +code-creation,Handler,3,0xe02c66169c0,164,"getColumnNumber" +code-creation,Handler,3,0xe02c64423a0,164,"isEval" +code-creation,Handler,3,0xe02c6442460,216,"callSite" +code-creation,StoreIC,9,0xe02c6442540,134,"callSite" +code-creation,Handler,3,0xe02c64425e0,164,"getFunctionName" +code-creation,Handler,3,0xe02c65fe5a0,192,"name" +code-creation,StoreIC,9,0xe02c65fe660,134,"name" +code-creation,Handler,3,0xe02c65fe700,192,"_file" +code-creation,StoreIC,9,0xe02c65fe7c0,134,"_file" +code-creation,Handler,3,0xe02c65fe860,157,"NO_DEPRECATION" +code-creation,Handler,3,0xe02c65fe900,192,"_ignored" +code-creation,StoreIC,9,0xe02c65fe9c0,134,"_ignored" +code-creation,Handler,3,0xe02c65fea60,192,"_namespace" +code-creation,StoreIC,9,0xe02c65feb20,134,"_namespace" +code-creation,Handler,3,0xe02c65febc0,566,"traceDeprecation" +code-creation,Handler,3,0xe02c65fee00,157,"TRACE_DEPRECATION" +code-creation,Handler,3,0xe02c65feea0,192,"_traced" +tick,0xe02c641bee0,458894,0,0xe02c651b93c,0,0xe02c651adf0,0xe02c6563d04,0xe02c6527c09,0xe02c6608bff,0xe02c653c845,0xe02c6553cb4,0xe02c6557254,0xe02c653b7d9,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c66129b4,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,StoreIC,9,0xe02c65fef60,134,"_traced" +code-creation,Handler,3,0xe02c6616a80,192,"_warned" +code-creation,StoreIC,9,0xe02c6616b40,134,"_warned" +code-creation,Handler,3,0xe02c6616be0,204,"function" +code-creation,StoreIC,9,0xe02c6616cc0,134,"function" +code-creation,Handler,3,0xe02c6616d60,204,"property" +code-creation,StoreIC,9,0xe02c6616e40,134,"property" +tick,0xad923b,460113,0,0x31534ff04139,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c6614ea3,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc4ace2,461042,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6616ee0,6340," /home/rgbm21/Documents/botkit/node_modules/send/index.js:1:11",0x2e9bd4f981d8,~ +code-creation,Script,0,0xe02c66187c0,244,"/home/rgbm21/Documents/botkit/node_modules/send/index.js",0x2e9bd4f98318,~ +tick,0xe02c65eb643,461499,0,0x100000000,0,0xe02c6609010,0xe02c653c845,0xe02c6553cb4,0xe02c6557254,0xe02c653b7d9,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c66170d7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66188c0,908," /home/rgbm21/Documents/botkit/node_modules/send/node_modules/http-errors/index.js:1:11",0x2e9bd4f99038,~ +code-creation,Script,0,0xe02c6618c60,244,"/home/rgbm21/Documents/botkit/node_modules/send/node_modules/http-errors/index.js",0x2e9bd4f99178,~ +code-creation,LazyCompile,1,0xe02c6618d60,669,"tryFile module.js:106:17",0x2efb89c1a7e8,* +code-creation,Function,0,0xe02c6619000,796," /home/rgbm21/Documents/botkit/node_modules/statuses/index.js:1:11",0x2e9bd4f9a6f0,~ +code-creation,Script,0,0xe02c6619320,244,"/home/rgbm21/Documents/botkit/node_modules/statuses/index.js",0x2e9bd4f9a830,~ +tick,0xda2431,463955,0,0x7fffc2950c60,2,0xcbb000,0xe02c65ed2a3,0xe02c6547096,0xe02c65fd3b5,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66189c9,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66170d7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xafa4ff,464032,0,0x7fffc2950ce0,0,0xccf320,0xe02c65343c7,0xe02c661919d,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66189c9,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66170d7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xafc25b,464855,0,0x49978,0,0xccf320,0xe02c65343c7,0xe02c661919d,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66189c9,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66170d7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6619420,388," /home/rgbm21/Documents/botkit/node_modules/statuses/index.js:7:48",0x2e9bd4f9a500,~ +code-creation,Stub,11,0xe02c66195c0,250,"BinaryOpICStub(BIT_XOR:Generic*Smi->Smi)" +code-creation,KeyedStoreIC,10,0xe02c66196c0,134,"" +code-creation,Handler,3,0xe02c6619760,141,"$nonNumberToNumber" +code-creation,KeyedStorePolymorphicIC,10,0xe02c6619800,154,"" +code-creation,KeyedStorePolymorphicIC,10,0xe02c6619800,154,"args_count: 0" +code-creation,KeyedStorePolymorphicIC,10,0xe02c66198a0,174,"" +code-creation,KeyedStorePolymorphicIC,10,0xe02c66198a0,174,"args_count: 0" +code-creation,KeyedStorePolymorphicIC,10,0xe02c6619960,194,"" +code-creation,KeyedStorePolymorphicIC,10,0xe02c6619960,194,"args_count: 0" +tick,0xafbb88,465906,0,0x7fffc2950a40,0,0xccd040,0xe02c66194f7,0xe02c65ef731,0xe02c65ef19c,0xe02c66191ee,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66189c9,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66170d7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6619a40,236," /home/rgbm21/Documents/botkit/node_modules/send/node_modules/http-errors/index.js:68:44",0x2e9bd4f98d80,~ +code-creation,LazyCompile,0,0xe02c6619b40,1404," /home/rgbm21/Documents/botkit/node_modules/send/node_modules/http-errors/index.js:72:24",0x2e9bd4f98e28,~ +code-creation,LazyCompile,0,0xe02c661a0c0,724,"toIdentifier /home/rgbm21/Documents/botkit/node_modules/send/node_modules/http-errors/index.js:5:22",0x2e9bd4f98c30,~ +code-creation,LazyCompile,0,0xe02c661a3a0,420," /home/rgbm21/Documents/botkit/node_modules/send/node_modules/http-errors/index.js:6:38",0x38cf5fc459e8,~ +code-creation,Stub,11,0xe02c661a560,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c661a5e0,186,"slice" +code-creation,RegExp,5,0xe02c661a6a0,793,"[^ _0-9a-z]" +code-creation,RegExp,5,0xe02c661a9c0,791,"Error$" +code-creation,Stub,11,0xe02c661ace0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,KeyedStoreIC,10,0xe02c661ad60,134,"" +code-creation,Handler,3,0xe02c661ae00,164,"map" +code-creation,Handler,3,0xe02c661aec0,164,"join" +code-creation,Handler,3,0xe02c661af80,186,"replace" +code-creation,Handler,3,0xe02c661b040,186,"match" +code-creation,StoreIC,9,0xe02c661b100,134,"statusCode" +code-creation,StoreIC,9,0xe02c661b1a0,134,"status" +code-creation,StoreIC,9,0xe02c661b240,134,"expose" +code-creation,Stub,2,0xe02c661b2e0,121,"StoreElementStub" +tick,0x7f66177da4fd,466978,0,0x0,0,0xbbbe40,0xe02c661a09c,0xe02c65358da,0xe02c65353ba,0xe02c6618bce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66170d7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,KeyedStorePolymorphicIC,10,0xe02c661b360,154,"" +code-creation,KeyedStorePolymorphicIC,10,0xe02c661b360,154,"args_count: 0" +code-creation,StorePolymorphicIC,9,0xe02c661b400,154,"statusCode" +code-creation,StorePolymorphicIC,9,0xe02c661b4a0,154,"status" +code-creation,StorePolymorphicIC,9,0xe02c661b540,154,"expose" +code-creation,KeyedStorePolymorphicIC,10,0xe02c661b5e0,174,"" +code-creation,KeyedStorePolymorphicIC,10,0xe02c661b5e0,174,"args_count: 0" +code-creation,StorePolymorphicIC,9,0xe02c661b6a0,174,"statusCode" +code-creation,StorePolymorphicIC,9,0xe02c661b760,174,"status" +code-creation,StorePolymorphicIC,9,0xe02c661b820,174,"expose" +code-creation,KeyedStorePolymorphicIC,10,0xe02c661b8e0,194,"" +code-creation,KeyedStorePolymorphicIC,10,0xe02c661b8e0,194,"args_count: 0" +code-creation,StorePolymorphicIC,9,0xe02c661b9c0,194,"statusCode" +code-creation,StorePolymorphicIC,9,0xe02c661baa0,194,"status" +code-creation,StorePolymorphicIC,9,0xe02c661bb80,194,"expose" +code-creation,StoreMegamorphic,9,0xe02c661bc60,347,"args_count: 0" +code-creation,Handler,3,0xe02c661bdc0,185,"length" +code-creation,StoreIC,9,0xe02c661be80,134,"length" +code-creation,KeyedStoreIC,10,0xe02c661bf20,134,"" +code-creation,StoreIC,9,0xe02c661bfc0,134,"statusCode" +code-creation,StoreIC,9,0xe02c661c060,134,"status" +tick,0x7f66177da4fd,468040,0,0x0,0,0xbbb8f0,0xe02c6619eb5,0xe02c65358da,0xe02c65353ba,0xe02c6618bce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66170d7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,StoreIC,9,0xe02c661c100,134,"expose" +code-creation,KeyedStorePolymorphicIC,10,0xe02c661c1a0,154,"" +code-creation,KeyedStorePolymorphicIC,10,0xe02c661c1a0,154,"args_count: 0" +code-creation,StorePolymorphicIC,9,0xe02c661c240,154,"statusCode" +code-creation,StorePolymorphicIC,9,0xe02c661c2e0,154,"status" +code-creation,StorePolymorphicIC,9,0xe02c661c380,154,"expose" +code-creation,KeyedStorePolymorphicIC,10,0xe02c661c420,174,"" +code-creation,KeyedStorePolymorphicIC,10,0xe02c661c420,174,"args_count: 0" +code-creation,StorePolymorphicIC,9,0xe02c661c4e0,174,"statusCode" +code-creation,StorePolymorphicIC,9,0xe02c661c5a0,174,"status" +code-creation,StorePolymorphicIC,9,0xe02c661c660,174,"expose" +code-creation,KeyedStorePolymorphicIC,10,0xe02c661c720,194,"" +code-creation,KeyedStorePolymorphicIC,10,0xe02c661c720,194,"args_count: 0" +code-creation,StorePolymorphicIC,9,0xe02c661c800,194,"statusCode" +code-creation,StorePolymorphicIC,9,0xe02c661c8e0,194,"status" +code-creation,StorePolymorphicIC,9,0xe02c661c9c0,194,"expose" +code-creation,Handler,3,0xe02c661caa0,216,symbol("formatted stack trace" hash 316e8322) +tick,0x8e6010,469100,0,0xc0258a,0,0xcc01f0,0xe02c651d4e8,0xe02c6553947,0xe02c6614ea3,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6617267,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c661cb80,588," /home/rgbm21/Documents/botkit/node_modules/destroy/index.js:1:11",0x38cf5fc485d0,~ +code-creation,Script,0,0xe02c661cde0,244,"/home/rgbm21/Documents/botkit/node_modules/destroy/index.js",0x38cf5fc48710,~ +tick,0xc4ae81,470165,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6617337,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c661cee0,228," /home/rgbm21/Documents/botkit/node_modules/range-parser/index.js:1:11",0x38cf5fc49178,~ +code-creation,Script,0,0xe02c661cfe0,244,"/home/rgbm21/Documents/botkit/node_modules/range-parser/index.js",0x38cf5fc492b8,~ +code-creation,Function,0,0xe02c661d0e0,1180," /home/rgbm21/Documents/botkit/node_modules/mime/mime.js:1:11",0x38cf5fc4a2d8,~ +code-creation,Script,0,0xe02c661d580,244,"/home/rgbm21/Documents/botkit/node_modules/mime/mime.js",0x38cf5fc4a418,~ +code-creation,LazyCompile,0,0xe02c661d680,452,"Mime /home/rgbm21/Documents/botkit/node_modules/mime/mime.js:4:14",0x38cf5fc49d38,~ +tick,0xc24ccb,471228,0,0x0,0,0xccd1f0,0xe02c65a2df6,0xe02c6608d14,0xe02c653c845,0xe02c653b60f,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c661d402,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66173d2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xbeaf95,472291,0,0x0,0,0xcc01f0,0xe02c651d4e8,0xe02c657b7bb,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661d402,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66173d2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c661d860,2092,"Mime.define /home/rgbm21/Documents/botkit/node_modules/mime/mime.js:21:34",0x38cf5fc49de0,~ +code-creation,Handler,3,0xe02c661e0a0,157,"DEBUG_MIME" +code-creation,Handler,3,0xe02c661e140,172,"application/applixware" +code-creation,KeyedStoreIC,10,0xe02c661e200,153,"application/applixware" +code-creation,Handler,3,0xe02c661e2a0,172,"application/atom+xml" +code-creation,Handler,3,0xe02c661e360,172,"application/atomsvc+xml" +code-creation,Handler,3,0xe02c661e420,172,"application/ccxml+xml" +code-creation,Handler,3,0xe02c661e4e0,172,"application/cdmi-capability" +code-creation,Handler,3,0xe02c661e5a0,172,"application/cdmi-container" +code-creation,Handler,3,0xe02c661e660,172,"application/cdmi-domain" +code-creation,Handler,3,0xe02c661e720,172,"application/cdmi-object" +code-creation,Handler,3,0xe02c661e7e0,172,"application/cdmi-queue" +code-creation,Handler,3,0xe02c661e8a0,172,"application/cu-seeme" +code-creation,Handler,3,0xe02c661e960,172,"application/dash+xml" +code-creation,Handler,3,0xe02c661ea20,172,"application/davmount+xml" +code-creation,Handler,3,0xe02c661eae0,172,"application/docbook+xml" +code-creation,Handler,3,0xe02c661eba0,172,"application/dssc+der" +code-creation,Handler,3,0xe02c661ec60,172,"application/dssc+xml" +code-creation,Handler,3,0xe02c661ed20,172,"application/ecmascript" +code-creation,Handler,3,0xe02c661ede0,172,"application/emma+xml" +tick,0xbba6b9,473350,0,0x7fffc29512e0,0,0xbbbe40,0xe02c661dffa,0xe02c661d41e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66173d2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc24bb5,474410,0,0x7fffc29512e0,0,0xccd040,0xe02c661dea5,0xe02c661d41e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66173d2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc24c98,475472,0,0x3625c143f91,0,0xcccb70,0xe02c661dfa1,0xe02c661d41e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66173d2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c661eea0,724,"Mime.lookup /home/rgbm21/Documents/botkit/node_modules/mime/mime.js:69:33",0x38cf5fc49f30,~ +code-creation,RegExp,5,0xe02c661f180,893,".*[\\.\\/\\\\]" +code-creation,Function,0,0xe02c661f500,252," /home/rgbm21/Documents/botkit/node_modules/fresh/index.js:1:11",0x38cf5fc4c968,~ +code-creation,Script,0,0xe02c661f600,244,"/home/rgbm21/Documents/botkit/node_modules/fresh/index.js",0x38cf5fc4caa8,~ +tick,0xe02c6407f84,476537,0,0xe02c65393c7,0,0xe02c654e307,0xe02c654e0fe,0xe02c66174a2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c661f700,1060," /home/rgbm21/Documents/botkit/node_modules/etag/index.js:1:11",0x38cf5fc4d730,~ +code-creation,Script,0,0xe02c661fb40,244,"/home/rgbm21/Documents/botkit/node_modules/etag/index.js",0x38cf5fc4d870,~ +tick,0xaf7c70,477599,0,0x7fffc29512a0,0,0xcccb70,0xe02c653b124,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c661771a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-disable-optimization,"wrapfunction","Function calls eval" +code-creation,LazyCompile,0,0xe02c661fc40,1668,"wrapfunction /home/rgbm21/Documents/botkit/node_modules/depd/index.js:397:22",0x3c4a56a94790, +code-creation,LazyCompile,0,0xe02c66202e0,364,"etag /home/rgbm21/Documents/botkit/node_modules/send/index.js:156:61",0x2e9bd4f96c48,~ +code-creation,LazyCompile,0,0xe02c6620460,576,"createArgumentsString /home/rgbm21/Documents/botkit/node_modules/depd/index.js:74:31",0x3c4a56a93f08,~ +code-creation,LazyCompile,0,0xe02c66206a0,484,"ToPrimitive native runtime.js:422:21",0x31534ff6c730,~ +code-creation,Stub,11,0xe02c66208a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Smi->String)" +code-creation,Stub,11,0xe02c6620920,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c66209a0,216,symbol("formatted stack trace" hash 316e8322) +code-creation,Stub,11,0xe02c6620a80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6620b00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6620b80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6620c00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6620c80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6620d00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Function,0,0xe02c6620d80,444," :1:11",0x38cf5fc4ed70,~ +code-creation,Eval,0,0xe02c6620f40,244,"",0x38cf5fc4eeb0,~ +code-disable-optimization,"","eval" +code-creation,Handler,3,0xe02c6621040,188,"length" +code-creation,LazyCompile,0,0xe02c6621100,412,"hidden /home/rgbm21/Documents/botkit/node_modules/send/index.js:171:65",0x2e9bd4f96cf0,~ +code-creation,Handler,3,0xe02c66212a0,186,"substr" +code-creation,Handler,3,0xe02c6621360,216,symbol("formatted stack trace" hash 316e8322) +code-creation,Handler,3,0xe02c6621440,188,"name" +code-creation,StoreIC,9,0xe02c6621500,134,"name" +code-creation,Handler,3,0xe02c66215a0,171,"eval" +code-creation,Function,0,0xe02c6621660,444," :1:11",0x38cf5fc4f3b0,~ +tick,0xaf7c3c,478673,0,0x7fffc2950950,2,0xca21e0,0xe02c6620229,0xe02c6617cf3,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612a46,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Eval,0,0xe02c6621820,244,"",0x38cf5fc4f4f0,~ +code-disable-optimization,"","eval" +code-creation,LazyCompile,0,0xe02c6621920,404,"index /home/rgbm21/Documents/botkit/node_modules/send/index.js:188:63",0x2e9bd4f96d98,~ +code-creation,Handler,3,0xe02c6621ac0,216,symbol("formatted stack trace" hash 316e8322) +code-creation,LazyCompile,0,0xe02c6621ba0,324,"SendStream.root /home/rgbm21/Documents/botkit/node_modules/send/index.js:203:37",0x2e9bd4f96e40,~ +code-creation,Handler,3,0xe02c6621d00,216,symbol("formatted stack trace" hash 316e8322) +code-creation,Handler,3,0xe02c6621de0,216,symbol("formatted stack trace" hash 316e8322) +code-creation,LazyCompile,0,0xe02c6621ec0,636,"maxage /home/rgbm21/Documents/botkit/node_modules/send/index.js:223:65",0x2e9bd4f96ee8,~ +code-creation,Handler,3,0xe02c6622140,216,symbol("formatted stack trace" hash 316e8322) +tick,0xe02c6606b04,479725,0,0xe02c6608ee9,0,0xe02c6618f56,0xe02c6557254,0xe02c653b7d9,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6612b81,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6622220,1660," /home/rgbm21/Documents/botkit/node_modules/proxy-addr/index.js:1:11",0x38cf5fc51b08,~ +code-creation,Script,0,0xe02c66228a0,244,"/home/rgbm21/Documents/botkit/node_modules/proxy-addr/index.js",0x38cf5fc51c48,~ +tick,0x7f6617abce6d,480793,0,0x0,0,0x7fffc2951390,0xe02c65ed91c,0xe02c654788d,0xe02c65fd3b5,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66225ad,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612b81,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66229a0,252," /home/rgbm21/Documents/botkit/node_modules/forwarded/index.js:1:11",0x38cf5fc52420,~ +code-creation,Script,0,0xe02c6622aa0,244,"/home/rgbm21/Documents/botkit/node_modules/forwarded/index.js",0x38cf5fc52560,~ +tick,0xc54d38,481860,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6622615,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612b81,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6622ba0,3660," /home/rgbm21/Documents/botkit/node_modules/ipaddr.js/lib/ipaddr.js:54:26",0x2e9bd4f9ba30,~ +code-creation,Function,0,0xe02c6623a00,2892," /home/rgbm21/Documents/botkit/node_modules/ipaddr.js/lib/ipaddr.js:159:26",0x2e9bd4f9c888,~ +code-creation,Function,0,0xe02c6624560,3188," /home/rgbm21/Documents/botkit/node_modules/ipaddr.js/lib/ipaddr.js:1:72",0x2e9bd4f9d4c0,~ +code-creation,Function,0,0xe02c66251e0,340," /home/rgbm21/Documents/botkit/node_modules/ipaddr.js/lib/ipaddr.js:1:11",0x2e9bd4f9d640,~ +code-creation,Script,0,0xe02c6625340,244,"/home/rgbm21/Documents/botkit/node_modules/ipaddr.js/lib/ipaddr.js",0x2e9bd4f9d780,~ +code-creation,LazyCompile,0,0xe02c6625440,904,"IPv4 /home/rgbm21/Documents/botkit/node_modules/ipaddr.js/lib/ipaddr.js:55:18",0x2e9bd4fc9b68,~ +code-creation,Handler,3,0xe02c66257e0,192,"octets" +code-creation,StoreIC,9,0xe02c66258a0,134,"octets" +code-creation,Stub,11,0xe02c6625940,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0x7f66177da4fd,482924,0,0x0,0,0xbbc8c0,0xe02c66248b1,0xe02c66252ea,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6622615,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6612b81,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,11,0xe02c66259c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6625a40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6625ac0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6625b40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6625bc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6625c40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6625cc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c6625d40,171,"RegExp" +code-creation,Stub,11,0xe02c6625e00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6625e80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c6625f00,428,"RegExp native regexp.js:36:27",0x31534ff7e700,~ +code-creation,LazyCompile,0,0xe02c66260c0,904,"IPv6 /home/rgbm21/Documents/botkit/node_modules/ipaddr.js/lib/ipaddr.js:160:18",0x2e9bd4f9bee8,~ +code-creation,LazyCompile,1,0xe02c6626460,409,"RegExp native regexp.js:36:27",0x31534ff7e700,* +code-creation,Handler,3,0xe02c6626600,192,"parts" +code-creation,StoreIC,9,0xe02c66266c0,134,"parts" +code-creation,Stub,11,0xe02c6626760,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66267e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6626860,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66268e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6626960,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66269e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6626a60,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6626b40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6626bc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6626c40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6626cc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6626d40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6626dc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6626e40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6626ec0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xcefb8c,483984,0,0x7fffc2951710,0,0xcf0380,0xe02c655b384,0xe02c65cf6dc,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6612c51,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c661231a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f5043,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6626f40,380,"arrayFlatten /home/rgbm21/Documents/botkit/node_modules/array-flatten/array-flatten.js:58:23",0x3c4a56a8b860,~ +code-creation,Handler,3,0xe02c66270c0,216,symbol("formatted stack trace" hash 316e8322) +code-creation,Function,0,0xe02c66271a0,444," :1:11",0x2e9bd4fa0f90,~ +code-creation,Eval,0,0xe02c6627360,244,"",0x2e9bd4fa10d0,~ +code-disable-optimization,"","eval" +code-creation,Handler,3,0xe02c6627460,188,"length" +code-creation,LazyCompile,0,0xe02c6627520,524,"contentDisposition /home/rgbm21/Documents/botkit/node_modules/content-disposition/index.js:133:28",0x3c4a56aa6370,~ +code-creation,Handler,3,0xe02c6627740,216,symbol("formatted stack trace" hash 316e8322) +code-creation,Handler,3,0xe02c6627820,188,"name" +code-creation,Function,0,0xe02c66278e0,444," :1:11",0x2e9bd4fa16c0,~ +code-creation,Eval,0,0xe02c6627aa0,244,"",0x2e9bd4fa1800,~ +code-disable-optimization,"","eval" +code-creation,Handler,3,0xe02c6627ba0,216,symbol("formatted stack trace" hash 316e8322) +tick,0xd8cd21,485048,0,0x7fffc2951450,2,0xca0620,0xe02c65358da,0xe02c65353ba,0xe02c65f59c8,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f42d3,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6627c80,268," /home/rgbm21/Documents/botkit/node_modules/express/lib/application.js:471:25",0x3c4a56a81bb8,~ +code-creation,LazyCompile,0,0xe02c6627da0,780,"app.(anonymous function) /home/rgbm21/Documents/botkit/node_modules/express/lib/application.js:472:25",0x2e9bd4f6d9d8,~ +code-creation,Handler,3,0xe02c66280c0,216,symbol("formatted stack trace" hash 316e8322) +tick,0xc38f9d,486115,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f43a1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66281a0,3204," /home/rgbm21/Documents/botkit/node_modules/express/lib/request.js:1:11",0x2e9bd4f705c0,~ +code-creation,Script,0,0xe02c6628e40,244,"/home/rgbm21/Documents/botkit/node_modules/express/lib/request.js",0x2e9bd4f70700,~ +code-creation,Function,0,0xe02c6628f40,1292," /home/rgbm21/Documents/botkit/node_modules/accepts/index.js:1:11",0x2e9bd4f71670,~ +code-creation,Script,0,0xe02c6629460,244,"/home/rgbm21/Documents/botkit/node_modules/accepts/index.js",0x2e9bd4f717b0,~ +tick,0xaf7c3c,487177,1,0xe32800,3,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c662827f,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f43a1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6629560,2412," /home/rgbm21/Documents/botkit/node_modules/negotiator/index.js:1:11",0x2e9bd4f72ab8,~ +code-creation,Script,0,0xe02c6629ee0,244,"/home/rgbm21/Documents/botkit/node_modules/negotiator/index.js",0x2e9bd4f72bf8,~ +code-creation,Function,0,0xe02c6629fe0,684," /home/rgbm21/Documents/botkit/node_modules/negotiator/lib/charset.js:1:11",0x2e9bd4f736b8,~ +code-creation,Script,0,0xe02c662a2a0,244,"/home/rgbm21/Documents/botkit/node_modules/negotiator/lib/charset.js",0x2e9bd4f737f8,~ +tick,0xd2f77e,488244,0,0x7fffc2951150,0,0xbbb8f0,0xe02c662a24f,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c662963f,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c662908f,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c662827f,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f43a1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c662a3a0,716," /home/rgbm21/Documents/botkit/node_modules/negotiator/lib/encoding.js:1:11",0x2e9bd4f741a8,~ +code-creation,Script,0,0xe02c662a680,244,"/home/rgbm21/Documents/botkit/node_modules/negotiator/lib/encoding.js",0x2e9bd4f742e8,~ +code-creation,Function,0,0xe02c662a780,684," /home/rgbm21/Documents/botkit/node_modules/negotiator/lib/language.js:1:11",0x2e9bd4f74cc8,~ +code-creation,Script,0,0xe02c662aa40,244,"/home/rgbm21/Documents/botkit/node_modules/negotiator/lib/language.js",0x2e9bd4f74e08,~ +tick,0xc0707b,489309,0,0x7fffc29513d0,0,0xcccb70,0xe02c66091fc,0xe02c6618f56,0xe02c6557254,0xe02c653b6d4,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6629777,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c662908f,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c662827f,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f43a1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c662ab40,796," /home/rgbm21/Documents/botkit/node_modules/negotiator/lib/mediaType.js:1:11",0x2e9bd4f75960,~ +code-creation,Script,0,0xe02c662ae60,244,"/home/rgbm21/Documents/botkit/node_modules/negotiator/lib/mediaType.js",0x2e9bd4f75aa0,~ +code-creation,Handler,3,0xe02c662af60,216,symbol("formatted stack trace" hash 316e8322) +tick,0xc75419,490396,0,0x7fffc29519c0,0,0xcd3440,0xe02c65adf83,0xe02c654560c,0xe02c65bf263,0xe02c6545001,0xe02c654380d,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66283ff,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f43a1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c662b040,1004," /home/rgbm21/Documents/botkit/node_modules/type-is/index.js:1:11",0x2e9bd4f77020,~ +code-creation,Script,0,0xe02c662b440,244,"/home/rgbm21/Documents/botkit/node_modules/type-is/index.js",0x2e9bd4f77160,~ +code-creation,Function,0,0xe02c662b540,2804," /home/rgbm21/Documents/botkit/node_modules/media-typer/index.js:1:11",0x2e9bd4f77ec8,~ +code-creation,Script,0,0xe02c662c040,244,"/home/rgbm21/Documents/botkit/node_modules/media-typer/index.js",0x2e9bd4f78008,~ +tick,0xafd0b9,491609,0,0x98,0,0xc8dbe0,0xe02c651af6c,0xe02c651adf0,0xe02c6563d04,0xe02c6527c09,0xe02c653b7ba,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c662b2b6,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66283ff,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f43a1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c662c140,356,"req.acceptsEncodings /home/rgbm21/Documents/botkit/node_modules/express/lib/request.js:131:32",0x2e9bd4f6f710,~ +code-creation,Handler,3,0xe02c662c2c0,216,symbol("formatted stack trace" hash 316e8322) +code-creation,Function,0,0xe02c662c3a0,436," :1:11",0x2e9bd4f79370,~ +code-creation,Eval,0,0xe02c662c560,244,"",0x2e9bd4f794b0,~ +code-disable-optimization,"","eval" +code-creation,LazyCompile,0,0xe02c662c660,356,"req.acceptsCharsets /home/rgbm21/Documents/botkit/node_modules/express/lib/request.js:148:31",0x2e9bd4f6f7b8,~ +code-creation,Handler,3,0xe02c662c7e0,216,symbol("formatted stack trace" hash 316e8322) +code-creation,Function,0,0xe02c662c8c0,436," :1:11",0x2e9bd4f79948,~ +code-creation,Eval,0,0xe02c662ca80,244,"",0x2e9bd4f79a88,~ +code-disable-optimization,"","eval" +tick,0xa2f5a5,492677,0,0x7fffc2951270,2,0x2efb89c2d458,0xe02c661feef,0xe02c6628989,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f43a1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c662cb80,356,"req.acceptsLanguages /home/rgbm21/Documents/botkit/node_modules/express/lib/request.js:165:32",0x2e9bd4f6f860,~ +code-creation,Handler,3,0xe02c662cd00,216,symbol("formatted stack trace" hash 316e8322) +code-creation,LazyCompile,0,0xe02c662cde0,356,"defineGetter /home/rgbm21/Documents/botkit/node_modules/express/lib/request.js:483:22",0x2e9bd4f6f518,~ +code-creation,StoreIC,9,0xe02c662cf60,134,"get" +code-creation,LazyCompile,0,0xe02c662d000,236,"host /home/rgbm21/Documents/botkit/node_modules/express/lib/request.js:422:59",0x2e9bd4f6ff98,~ +code-creation,Handler,3,0xe02c662d100,216,symbol("formatted stack trace" hash 316e8322) +tick,0xe02c6425745,493837,0,0xe02c662011c,0,0xe02c6628cdc,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f43a1,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c662d1e0,4268," /home/rgbm21/Documents/botkit/node_modules/express/lib/response.js:1:11",0x38cf5fc56b58,~ +code-creation,Script,0,0xe02c662e2a0,244,"/home/rgbm21/Documents/botkit/node_modules/express/lib/response.js",0x38cf5fc56c98,~ +code-creation,Handler,3,0xe02c662e3a0,216,symbol("formatted stack trace" hash 316e8322) +tick,0xc435ee,496062,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4409,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xcd700d,496085,0,0x7fff00000000,0,0xcd6c50,0xe02c65bf039,0xe02c6527b84,0xe02c653b7ba,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c662d3c8,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4409,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c662e480,492," /home/rgbm21/Documents/botkit/node_modules/cookie-signature/index.js:1:11",0x38cf5fc57f08,~ +code-creation,Script,0,0xe02c662e680,244,"/home/rgbm21/Documents/botkit/node_modules/cookie-signature/index.js",0x38cf5fc58048,~ +tick,0xc498f0,497184,0,0x7fffc2950670,2,0xca07d0,0xe02c662d66e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4409,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,1,0xe02c662e780,618,"require internal/module.js:11:19",0x2efb89c46b68,* +tick,0x7f66177638e0,498225,0,0x7fffc2951920,0,0xcbb000,0xe02c65ca2e3,0xe02c6527bbc,0xe02c653b4b9,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c662d853,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4409,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c662ea00,844," /home/rgbm21/Documents/botkit/node_modules/cookie/index.js:1:11",0x38cf5fc595d0,~ +code-creation,Script,0,0xe02c662ed60,244,"/home/rgbm21/Documents/botkit/node_modules/cookie/index.js",0x38cf5fc59710,~ +tick,0x919046,499283,0,0xa83db9,0,0x7fffc2951ac8,0xe02c66094a6,0xe02c6618f56,0xe02c6557254,0xe02c653b7d9,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c662da52,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4409,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c662ee60,716," /home/rgbm21/Documents/botkit/node_modules/vary/index.js:1:11",0x38cf5fc5a1e8,~ +code-creation,Script,0,0xe02c662f140,244,"/home/rgbm21/Documents/botkit/node_modules/vary/index.js",0x38cf5fc5a328,~ +code-creation,LazyCompile,0,0xe02c662f240,780,"res.sendfile /home/rgbm21/Documents/botkit/node_modules/express/lib/response.js:463:25",0x38cf5fc55d58,~ +code-creation,Handler,3,0xe02c662f560,216,symbol("formatted stack trace" hash 316e8322) +code-creation,Function,0,0xe02c662f640,444," :1:11",0x38cf5fc5ace8,~ +code-creation,Eval,0,0xe02c662f800,244,"",0x38cf5fc5ae28,~ +code-disable-optimization,"","eval" +tick,0x7f66177d9e15,500352,1,0xe348e0,4,0x93e0b0,0xe02c653b3e0,0xe02c65cf860,0xe02c6539417,0xe02c65bd30a,0xe02c65f4597,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c662f900,1036," /home/rgbm21/Documents/botkit/node_modules/serve-static/index.js:1:11",0x38cf5fc5c148,~ +code-creation,Script,0,0xe02c662fd20,244,"/home/rgbm21/Documents/botkit/node_modules/serve-static/index.js",0x38cf5fc5c288,~ +tick,0xb74146,501419,0,0x2ed9270,2,0xca07d0,0xe02c6539614,0xe02c662e98a,0xe02c662fb36,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f4597,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c662fe20,396," /home/rgbm21/Documents/botkit/node_modules/express/lib/express.js:96:20",0x3c4a56a7f310,~ +code-creation,StoreIC,9,0xe02c662ffc0,134,"get" +code-creation,LazyCompile,0,0xe02c6630060,508,"PropertyDescriptor native v8natives.js:284:28",0x31534ff57878,~ +code-creation,LazyCompile,0,0xe02c6630260,252,"PropertyDescriptor_HasSetter native v8natives.js:373:50",0x31534ff5d5d8,~ +code-creation,LazyCompile,0,0xe02c6630360,572,"DefineOwnProperty native v8natives.js:633:27",0x31534ff590e8,~ +code-creation,Stub,2,0xe02c66305a0,1230,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c6630a80,823,"PropertyDescriptor native v8natives.js:284:28",0x31534ff57878,* +code-creation,LazyCompile,1,0xe02c6630dc0,203,"PropertyDescriptor_HasSetter native v8natives.js:373:50",0x31534ff5d5d8,* +tick,0xadb151,502483,0,0x2f026a0,2,0xca07d0,0xe02c6506108,0xe02c644237b,0xe02c65107a0,0xe02c662ff64,0xe02c65358da,0xe02c65353ba,0xe02c65f4638,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6630ea0,932,"ConvertDescriptorArrayToDescriptor native v8natives.js:377:44",0x31534ff579a0,~ +code-creation,LazyCompile,1,0xe02c6631260,591,"DefineOwnProperty native v8natives.js:633:27",0x31534ff590e8,* +code-creation,LazyCompile,1,0xe02c66314c0,4056,"NativeModule.require node.js:916:34",0x31534ffefc90,* +code-creation,Stub,6,0xe02c66324a0,502,"LoadICStub" +code-creation,LazyCompile,1,0xe02c66326a0,793,"ConvertDescriptorArrayToDescriptor native v8natives.js:377:44",0x31534ff579a0,* +code-creation,LazyCompile,0,0xe02c66329c0,252,"PropertyDescriptor_HasEnumerable native v8natives.js:332:58",0x31534ff5c588,~ +code-creation,LazyCompile,0,0xe02c6632ac0,252,"PropertyDescriptor_HasConfigurable native v8natives.js:350:62",0x31534ff5ccc0,~ +code-creation,LazyCompile,1,0xe02c6632bc0,203,"PropertyDescriptor_HasEnumerable native v8natives.js:332:58",0x31534ff5c588,* +code-creation,LazyCompile,1,0xe02c6632ca0,203,"PropertyDescriptor_HasConfigurable native v8natives.js:350:62",0x31534ff5ccc0,* +code-creation,LazyCompile,0,0xe02c6632d80,396," /home/rgbm21/Documents/botkit/node_modules/express/lib/express.js:96:20",0x3c4a56a7f310,~ +tick,0xafa4ff,503545,0,0x2de24a0,0,0xcbb110,0xe02c662fe8b,0xe02c65358da,0xe02c65353ba,0xe02c65f4638,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c65bd30a,0xe02c65f3f9e,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6571991,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,1,0xe02c6632f20,599," /home/rgbm21/Documents/botkit/node_modules/express/lib/express.js:96:20",0x3c4a56a7f310,* +code-creation,LazyCompile,0,0xe02c6633180,388,"IsAccessorDescriptor native v8natives.js:186:30",0x31534ff56c10,~ +code-creation,LazyCompile,0,0xe02c6633320,3180,"Module._resolveLookupPaths module.js:209:38",0x2efb89c1ab70,~ +code-creation,LazyCompile,0,0xe02c6633fa0,764,"posix.basename path.js:548:26",0x2efb89c178b8,~ +tick,0x915d88,504605,0,0x2f21e88,2,0xca07d0,0xe02c65cf7c2,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c65719fc,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,1,0xe02c66342a0,321,"IsAccessorDescriptor native v8natives.js:186:30",0x31534ff56c10,* +code-creation,LazyCompile,0,0xe02c6634400,1092,"substring native string.js:487:25",0x31534ff7a718,~ +tick,0x7f6617abd59d,505679,0,0x0,0,0x7fffc2952398,0xe02c65ed143,0xe02c6546ed0,0xe02c65fd3b5,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65719fc,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6634860,1724," /home/rgbm21/Documents/botkit/node_modules/body-parser/index.js:1:11",0x38cf5fc680f0,~ +code-creation,Script,0,0xe02c6634f20,244,"/home/rgbm21/Documents/botkit/node_modules/body-parser/index.js",0x38cf5fc68230,~ +code-creation,Handler,3,0xe02c6635020,216,symbol("formatted stack trace" hash 316e8322) +code-creation,LazyCompile,0,0xe02c6635100,1184,"bodyParser /home/rgbm21/Documents/botkit/node_modules/body-parser/index.js:93:20",0x38cf5fc67d00,~ +tick,0xc02527,506744,0,0x0,0,0xc8e600,0xe02c660b353,0xe02c660b11f,0xe02c660dfe5,0xe02c661ffe9,0xe02c6634ac7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c65719fc,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6552a46,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d25c,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c66355a0,216,symbol("formatted stack trace" hash 316e8322) +code-creation,LazyCompile,0,0xe02c6635680,220,"createParserGetter /home/rgbm21/Documents/botkit/node_modules/body-parser/index.js:121:28",0x38cf5fc67da8,~ +code-creation,KeyedStoreIC,10,0xe02c6635760,153,"os" +code-creation,Function,0,0xe02c6635800,2284," os.js:1:11",0x38cf5fc69bc8,~ +code-creation,Script,0,0xe02c6636100,244,"os.js",0x38cf5fc69d08,~ +code-creation,LazyCompile,1,0xe02c6636200,1267,"substring native string.js:487:25",0x31534ff7a718,* +tick,0xb4e001,507805,0,0x7fffc29520f0,2,0xcbb000,0xe02c6636178,0xe02c6631f9b,0xe02c6539614,0xe02c654e307,0xe02c654e0fe,0xe02c654d28f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c6636700,335,"CallFunctionStub_Args3" +code-creation,Stub,2,0xe02c6636bc0,2669,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c6637640,7480,"Module._resolveLookupPaths module.js:209:38",0x2efb89c1ab70,* +code-creation,Stub,11,0xe02c6639380,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xbeaf32,508865,0,0x7fffc2952810,0,0xcccb70,0xe02c66091fc,0xe02c66150f1,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6639400,788," /home/rgbm21/Documents/botkit/node_modules/weather-js/lib/weather.js:15:37",0x38cf5fc6fea8,~ +code-creation,Function,0,0xe02c6639720,604," /home/rgbm21/Documents/botkit/node_modules/weather-js/lib/weather.js:1:11",0x38cf5fc70080,~ +code-creation,Script,0,0xe02c6639980,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/lib/weather.js",0x38cf5fc701c0,~ +tick,0x919647,509934,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66397c7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6639a80,1892," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/index.js:1:11",0x38cf5fc712b8,~ +code-creation,Script,0,0xe02c663a200,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/index.js",0x38cf5fc713f8,~ +code-creation,Function,0,0xe02c663a300,932," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/cookies.js:1:11",0x38cf5fc720e0,~ +code-creation,Script,0,0xe02c663a6c0,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/cookies.js",0x38cf5fc72220,~ +tick,0xbf81a8,510982,0,0x7fffc29523b8,0,0xcc00e0,0xe02c653bd24,0xe02c653b0da,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c6639cd6,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66397c7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c663a7c0,884," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/helpers.js:1:11",0x38cf5fc73338,~ +code-creation,Script,0,0xe02c663ab40,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/helpers.js",0x38cf5fc73478,~ +code-creation,LazyCompile,0,0xe02c663ac40,356,"deferMethod /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/helpers.js:6:21",0x38cf5fc72b78,~ +code-creation,LazyCompile,0,0xe02c663adc0,396,"verbFunc /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/index.js:58:19",0x38cf5fc70b10,~ +tick,0xc441eb,512048,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663a085,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66397c7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd10990,513111,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663a085,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66397c7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c663af60,8324," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/request.js:1:11",0x38cf5fc75750,~ +code-creation,Script,0,0xe02c663d000,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/request.js",0x38cf5fc75890,~ +tick,0x7f6617abd59d,514173,1,0xe3f880,4,0x93e0b0,0xe02c655379b,0xe02c6614ea3,0xe02c653b719,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c663b4c4,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663a085,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66397c7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc22036,515234,1,0x8d9b20,4,0xbb47d0,0xe02c651b02c,0xe02c651adf0,0xe02c6563d04,0xe02c65451f6,0xe02c654380d,0xe02c65397ee,0xe02c662e98a,0xe02c663ba0f,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663a085,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66397c7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c663d100,468," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/getProxyFromURI.js:1:11",0x38cf5fc78380,~ +code-creation,Script,0,0xe02c663d2e0,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/getProxyFromURI.js",0x38cf5fc784c0,~ +code-creation,Function,0,0xe02c663d3e0,908," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/querystring.js:1:11",0x38cf5fc78d78,~ +code-creation,Script,0,0xe02c663d780,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/querystring.js",0x38cf5fc78eb8,~ +tick,0xc07100,516299,0,0x7fffc2951f20,0,0xcccb70,0xe02c66091fc,0xe02c6618f56,0xe02c6557254,0xe02c653b6d4,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c663bb0d,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663a085,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66397c7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c663d880,932," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/har.js:1:11",0x38cf5fc79c20,~ +code-creation,Script,0,0xe02c663dc40,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/har.js",0x38cf5fc79d60,~ +tick,0xd0a5c8,517370,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663bb9a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663a085,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66397c7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c663dd40,1148," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/auth.js:1:11",0x38cf5fc7b118,~ +code-creation,Script,0,0xe02c663e1c0,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/auth.js",0x38cf5fc7b258,~ +tick,0x91f8e0,518434,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663bc27,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663a085,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66397c7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c663e2c0,1236," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/oauth.js:1:11",0x38cf5fc7c610,~ +code-creation,Script,0,0xe02c663e7a0,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/oauth.js",0x38cf5fc7c750,~ +code-creation,Function,0,0xe02c663e8a0,924," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/multipart.js:1:11",0x38cf5fc7d600,~ +code-creation,Script,0,0xe02c663ec40,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/multipart.js",0x38cf5fc7d740,~ +tick,0x7f66177d9e15,519494,1,0xe348e0,4,0x93e0b0,0xe02c653b3e0,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c663ea2e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663bcb4,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663a085,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66397c7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c663ed40,932," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/redirect.js:1:11",0x38cf5fc7e898,~ +code-creation,Script,0,0xe02c663f100,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/redirect.js",0x38cf5fc7e9d8,~ +tick,0x919ee1,520559,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663bdce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c663a085,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66397c7,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c663f200,1268," /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/tunnel.js:1:11",0x38cf5fc7f5e8,~ +code-creation,Script,0,0xe02c663f700,244,"/home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/tunnel.js",0x38cf5fc7f728,~ +code-creation,LazyCompile,0,0xe02c663f800,228,"exports.jar /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/cookies.js:37:23",0x38cf5fc71ec0,~ +code-creation,LazyCompile,0,0xe02c663f900,308,"RequestJar /home/rgbm21/Documents/botkit/node_modules/weather-js/node_modules/request/lib/cookies.js:20:20",0x38cf5fc71b78,~ +code-creation,Handler,3,0xe02c663fa40,192,"enableLooseMode" +code-creation,StoreIC,9,0xe02c663fb00,134,"enableLooseMode" +code-creation,Handler,3,0xe02c663fba0,164,"call" +code-creation,Handler,3,0xe02c663fc60,192,"idx" +code-creation,StoreIC,9,0xe02c663fd20,134,"idx" +code-creation,Handler,3,0xe02c663fdc0,216,"store" +code-creation,StoreIC,9,0xe02c663fea0,134,"store" +tick,0xe02c653e365,521620,0,0xe02c643ba17,0,0x0,0xe02c65eb1f2,0xe02c653d781,0xe02c6608ee9,0xe02c66153bf,0xe02c653b68f,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x919380,522679,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c663ff40,252," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:115:38",0x38cf5fc82ac0,~ +code-creation,Function,0,0xe02c6640040,332," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:126:30",0x38cf5fc82db8,~ +code-creation,Function,0,0xe02c66401a0,660," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:221:29",0x38cf5fc83330,~ +code-creation,Function,0,0xe02c6640440,1932," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:2:10",0x38cf5fc83700,~ +code-creation,Function,0,0xe02c6640be0,348," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:1:11",0x38cf5fc83890,~ +code-creation,Script,0,0xe02c6640d40,244,"/home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js",0x38cf5fc839d0,~ +tick,0xc3eab6,523743,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd06378,524805,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c6640e40,986,"FastNewContextStub" +code-creation,Function,0,0xe02c6641220,812," /home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js:1520:15",0x38cf5fc8af10,~ +code-disable-optimization,"exports.undefined.sax","TryCatchStatement" +code-creation,Function,0,0xe02c6641560,11960,"exports.undefined.sax /home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js:1:74",0x38cf5fc8b900, +code-creation,Function,0,0xe02c6644420,436," /home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js:1:11",0x38cf5fc8ba90,~ +code-creation,Script,0,0xe02c66445e0,244,"/home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js",0x38cf5fc8bbd0,~ +tick,0xd2f77e,525869,0,0x0,0,0xbbb8f0,0xe02c6641d0f,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66446e0,324," /home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js:167:48",0x38cf5fc8a908,~ +code-creation,Stub,11,0xe02c6644840,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c66448c0,396,"charClass /home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js:302:22",0x38cf5fc89668,~ +code-creation,LazyCompile,0,0xe02c6644a60,212," /home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js:303:42",0x38cf5fc8c2f8,~ +code-creation,Handler,3,0xe02c6644b40,192,"\x0a" +code-creation,KeyedStoreIC,10,0xe02c6644c00,153,"\x0a" +code-creation,Handler,3,0xe02c6644ca0,192,"\x09" +code-creation,Handler,3,0xe02c6644d60,192," " +code-creation,Handler,3,0xe02c6644e20,164,"reduce" +code-creation,Handler,3,0xe02c6644ee0,192,"a" +code-creation,Handler,3,0xe02c6644fa0,192,"b" +code-creation,Handler,3,0xe02c6645060,192,"c" +code-creation,Handler,3,0xe02c6645120,192,"d" +code-creation,Handler,3,0xe02c66451e0,192,"e" +code-creation,Handler,3,0xe02c66452a0,192,"f" +code-creation,Handler,3,0xe02c6645360,192,"g" +code-creation,Handler,3,0xe02c6645420,192,"h" +code-creation,Handler,3,0xe02c66454e0,192,"i" +code-creation,Handler,3,0xe02c66455a0,192,"j" +code-creation,Handler,3,0xe02c6645660,192,"k" +code-creation,Handler,3,0xe02c6645720,192,"l" +code-creation,Handler,3,0xe02c66457e0,192,"m" +code-creation,Handler,3,0xe02c66458a0,192,"n" +code-creation,Handler,3,0xe02c6645960,192,"o" +code-creation,Handler,3,0xe02c6645a20,192,"p" +code-creation,Handler,3,0xe02c6645ae0,192,"q" +code-creation,Handler,3,0xe02c6645ba0,192,"r" +code-creation,Handler,3,0xe02c6645c60,192,"s" +code-creation,Handler,3,0xe02c6645d20,192,"'" +code-creation,Handler,3,0xe02c6645de0,192,"""" +code-creation,Handler,3,0xe02c6645ea0,192,"\x0d" +code-creation,Handler,3,0xe02c6645f60,192,"\x0a" +code-creation,Handler,3,0xe02c6646020,192,">" +tick,0xbe69d4,526931,0,0x7fffc2952070,0,0xcc1970,0xe02c6643f6f,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66460e0,452," /home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js:625:46",0x38cf5fc8aba8,~ +code-creation,KeyedStoreIC,10,0xe02c66462c0,153,"gt" +code-creation,Stub,3,0xe02c6646360,160,"StoreFieldStub" +code-creation,Stub,3,0xe02c6646400,160,"StoreFieldStub" +code-creation,Stub,3,0xe02c66464a0,160,"StoreFieldStub" +code-creation,LazyCompile,0,0xe02c6646540,1708,"fromCharCode native string.js:565:28",0x31534ff7ae60,~ +code-creation,Stub,3,0xe02c6646c00,160,"StoreFieldStub" +code-creation,Stub,3,0xe02c6646ca0,160,"StoreFieldStub" +code-creation,Stub,3,0xe02c6646d40,160,"StoreFieldStub" +code-creation,Stub,3,0xe02c6646de0,160,"StoreFieldStub" +code-creation,Stub,3,0xe02c6646e80,160,"StoreFieldStub" +code-creation,Stub,3,0xe02c6646f20,160,"StoreFieldStub" +code-creation,Stub,3,0xe02c6646fc0,160,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647060,160,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647100,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66471c0,168,"StoreFieldStub" +tick,0x7f661828bff0,528002,0,0x7fffc2951870,0,0xbbbe40,0xe02c6646265,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6647280,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647340,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647400,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66474c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647580,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6636860,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6636920,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66369e0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6636aa0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647640,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647700,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66477c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647880,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647940,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647a00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647ac0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6647b40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647c00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6647c80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647d40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6647dc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6647e80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6647f00,168,"StoreFieldStub" +tick,0xafa4c3,529055,0,0x38,0,0xbbbe40,0xe02c6646265,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6647fc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6648040,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6648100,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6648180,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6648240,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66482c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6648380,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6648400,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66484c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6648540,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6648600,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6648680,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6648740,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66487c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6648880,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6648900,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66489c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6648a40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6648b00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6648b80,168,"StoreFieldStub" +tick,0xbba875,530118,0,0x7fffc2952070,0,0xbbbe40,0xe02c6646265,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6648c40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6648cc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6648d80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6648e00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6648ec0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6648f40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6649000,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6649080,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6649140,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66491c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6649280,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6649300,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66493c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6649440,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6649500,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6649580,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6649640,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66496c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6649780,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6649800,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66498c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6649940,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6649a00,112,"LoadFieldStub" +tick,0xdb0b0c,531181,0,0x7fffc2951340,0,0xbbbe40,0xe02c6646265,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6649a80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6649b40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6649bc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6649c80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6649d00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6649dc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6649e40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6649f00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6649f80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664a040,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664a0c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664a180,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664a200,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664a2c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664a340,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664a400,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664a480,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664a540,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664a5c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664a680,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664a700,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664a7c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664a840,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664a900,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664a980,168,"StoreFieldStub" +tick,0x7f6617763b98,532244,0,0x7fffc2951330,0,0xbba1d0,0xe02c6646195,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c664aa40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664aac0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664ab80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664ac00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664acc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664ad40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664ae00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664ae80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664af40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664afc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664b080,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664b100,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664b1c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664b240,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664b300,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664b380,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664b440,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664b4c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664b580,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664b600,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664b6c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664b740,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664b800,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664b880,168,"StoreFieldStub" +tick,0x7f66177652c7,533308,0,0x6b,0,0xbba1d0,0xe02c6646195,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c664b940,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664b9c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664ba80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664bb00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664bbc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664bc40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664bd00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664bd80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664be40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664bec0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664bf80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664c000,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664c0c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664c140,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664c200,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664c280,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664c340,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664c3c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664c480,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664c500,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664c5c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664c640,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664c700,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664c780,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664c840,112,"LoadFieldStub" +tick,0xb9b134,534369,0,0x2ed8150,0,0xbbbe40,0xe02c6646265,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c664c8c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664c980,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664ca00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664cac0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664cb40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664cc00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664cc80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664cd40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664cdc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664ce80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664cf00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664cfc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664d040,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664d100,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664d180,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664d240,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664d2c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664d380,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664d400,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664d4c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664d540,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664d600,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664d680,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664d740,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664d7c0,168,"StoreFieldStub" +tick,0xa72e00,535430,0,0xbeb4e1,0,0xccda90,0xe02c643a16e,0xe02c6535818,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c664d880,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664d900,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664d9c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664da40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664db00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664db80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664dc40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664dcc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664dd80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664de00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664dec0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664df40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664e000,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664e080,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664e140,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664e1c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664e280,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664e300,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664e3c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664e440,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664e500,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664e580,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664e640,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664e6c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664e780,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664e800,168,"StoreFieldStub" +tick,0x7f66177da4fd,536490,0,0x0,0,0xbbbe40,0xe02c6646265,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c664e8c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664e940,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664ea00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664ea80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664eb40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664ebc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664ec80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664ed00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664edc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664ee40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664ef00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664ef80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664f040,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664f0c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664f180,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664f200,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664f2c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664f340,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664f400,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664f480,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664f540,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664f5c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664f680,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664f700,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664f7c0,112,"LoadFieldStub" +tick,0xb660c6,537550,0,0x2ed8150,0,0xbbbe40,0xe02c6646265,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c664f840,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664f900,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664f980,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664fa40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664fac0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664fb80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664fc00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664fcc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664fd40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664fe00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664fe80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c664ff40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c664ffc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6650080,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6650100,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66501c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6650240,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6650300,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6650380,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6650440,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66504c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6650580,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6650600,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66506c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6650740,168,"StoreFieldStub" +tick,0xdb0c72,538612,0,0x2ed8ce0,0,0xbba1d0,0xe02c6646195,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6650800,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6650880,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6650940,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66509c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6650a80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6650b00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6650bc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6650c40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6650d00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6650d80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6650e40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6650ec0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6650f80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6651000,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66510c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6651140,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6651200,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6651280,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6651340,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66513c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6651480,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6651500,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66515c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6651640,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6651700,112,"LoadFieldStub" +tick,0xa957e1,539672,0,0x7fffc29521a0,0,0xcf1f40,0xe02c66466e7,0xe02c664621e,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6651780,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6651840,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66518c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6651980,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6651a00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6651ac0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6651b40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6651c00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6651c80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6651d40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6651dc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6651e80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6651f00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6651fc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6652040,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6652100,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6652180,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6652240,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66522c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6652380,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6652400,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66524c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6652540,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6652600,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6652680,168,"StoreFieldStub" +tick,0xb3c7a1,540733,0,0x7fffc2951550,0,0xbba1d0,0xe02c6646195,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6652740,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66527c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6652880,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6652900,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66529c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6652a40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6652b00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6652b80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6652c40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6652cc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6652d80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6652e00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6652ec0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6652f40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6653000,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6653080,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6653140,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66531c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6653280,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6653300,168,"StoreFieldStub" +tick,0x7f66177da4fd,541802,0,0x0,0,0xbbbe40,0xe02c6646265,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c66533c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6653440,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6653500,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6653580,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6653640,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66536c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6653780,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6653800,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66538c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6653940,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6653a00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6653a80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6653b40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6653bc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6653c80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6653d00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6653dc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6653e40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6653f00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6653f80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6654040,112,"LoadFieldStub" +tick,0xb5dbd0,542861,0,0xb801c9,0,0xbbbe40,0xe02c6646265,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c66540c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6654180,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6654200,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66542c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6654340,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6654400,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6654480,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6654540,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66545c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6654680,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6654700,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66547c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6654840,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6654900,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6654980,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6654a40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6654ac0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6654b80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6654c00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6654cc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6654d40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6654e00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6654e80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6654f40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6654fc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6655080,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6655100,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66551c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6655240,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6655300,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6655380,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6655440,112,"LoadFieldStub" +tick,0xbd2c10,544835,0,0xbd302e,0,0xbbbe40,0xe02c6646265,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c66554c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6655580,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6655600,168,"StoreFieldStub" +tick,0xba257f,545021,0,0x2de24a0,0,0xbba1d0,0xe02c6646195,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c66556c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6655740,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6655800,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6655880,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6655940,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66559c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6655a80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6655b00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6655bc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6655c40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6655d00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6655d80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6655e40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6655ec0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6655f80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6656000,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66560c0,112,"LoadFieldStub" +tick,0x7f66177da4fd,546088,0,0x0,0,0xbba1d0,0xe02c6646195,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6656140,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6656200,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6656280,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6656340,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66563c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6656480,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6656500,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66565c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6656640,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6656700,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6656780,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6656840,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66568c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6656980,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6656a00,168,"StoreFieldStub" +tick,0xb3b688,547170,0,0x7fffc2951400,0,0xbba1d0,0xe02c6646195,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6656ac0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6656b40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6656c00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6656c80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6656d40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6656dc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6656e80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6656f00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6656fc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657040,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6657100,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657180,168,"StoreFieldStub" +tick,0xbfe124,548235,0,0xbeb4c5,0,0xccda90,0xe02c643a16e,0xe02c6535818,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6657240,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66572c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6657380,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657400,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66574c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657540,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6657600,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657700,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66577c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657840,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6657900,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657980,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6657a40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657ac0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6657b80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657c00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6657cc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657d40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6657e00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657e80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6657f40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6657fc0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6658080,112,"LoadFieldStub" +tick,0xc14101,549287,0,0x1def,0,0xbba1d0,0xe02c6646195,0xe02c65358da,0xe02c65353ba,0xe02c664404b,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6658100,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66581c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6658240,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6658300,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6658380,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6658440,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66584c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6658580,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6658600,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c66586c0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6658740,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6658800,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6658880,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6658940,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c66589c0,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6658a80,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6658b00,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6658bc0,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6658c40,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6658d00,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6658d80,168,"StoreFieldStub" +code-creation,Stub,3,0xe02c6658e40,112,"LoadFieldStub" +code-creation,Stub,3,0xe02c6658ec0,168,"StoreFieldStub" +code-creation,KeyedStoreIC,10,0xe02c6658f80,134,"" +tick,0xc140f8,550348,0,0x7fffc2951fd0,0,0xbba1d0,0xe02c664428c,0xe02c664458c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6640615,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6659020,508," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/index.js:2:10",0x38cf5fcb0ba0,~ +code-creation,Function,0,0xe02c6659220,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/index.js:1:11",0x38cf5fcb0d30,~ +code-creation,Script,0,0xe02c6659360,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/index.js",0x38cf5fcb0e70,~ +tick,0x7f6617abce0d,551415,1,0xe38260,4,0x93e0b0,0xe02c654a478,0xe02c65474e2,0xe02c65fd3b5,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66590cb,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6659460,532," /home/rgbm21/Documents/botkit/node_modules/lodash/assign.js:1:11",0x38cf5fcb1790,~ +code-creation,Script,0,0xe02c6659680,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/assign.js",0x38cf5fcb18d0,~ +code-creation,Function,0,0xe02c6659780,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_copyObject.js:1:11",0x38cf5fcb1df8,~ +code-creation,Script,0,0xe02c66598e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_copyObject.js",0x38cf5fcb1f38,~ +code-creation,Function,0,0xe02c66599e0,372," /home/rgbm21/Documents/botkit/node_modules/lodash/_copyObjectWith.js:1:11",0x38cf5fcb24e8,~ +code-creation,Script,0,0xe02c6659b60,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_copyObjectWith.js",0x38cf5fcb2628,~ +tick,0xad608e,552477,0,0x0,1 +tick,0xace53b,553546,0,0x0,1 +tick,0xc16219,554631,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659abc,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665983e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665950d,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66590cb,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6659c60,492," /home/rgbm21/Documents/botkit/node_modules/lodash/_assignValue.js:1:11",0x36b97b11ddc8,~ +code-creation,Script,0,0xe02c6659e60,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_assignValue.js",0x36b97b11df08,~ +code-creation,Function,0,0xe02c6659f60,228," /home/rgbm21/Documents/botkit/node_modules/lodash/eq.js:1:11",0x36b97b11e3a8,~ +code-creation,Script,0,0xe02c665a060,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/eq.js",0x36b97b11e4e8,~ +code-creation,Function,0,0xe02c665a160,444," /home/rgbm21/Documents/botkit/node_modules/lodash/_createAssigner.js:1:11",0x36b97b11eac8,~ +code-creation,Script,0,0xe02c665a320,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_createAssigner.js",0x36b97b11ec08,~ +tick,0xafab51,555693,0,0x0,0,0xcbb110,0xe02c65ca83f,0xe02c6527bbc,0xe02c6544f66,0xe02c654380d,0xe02c65397ee,0xe02c662e98a,0xe02c665a21e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659575,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66590cb,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c665a420,652," /home/rgbm21/Documents/botkit/node_modules/lodash/_isIterateeCall.js:1:11",0x36b97b11f268,~ +code-creation,Script,0,0xe02c665a6c0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_isIterateeCall.js",0x36b97b11f3a8,~ +code-creation,Function,0,0xe02c665a7c0,548," /home/rgbm21/Documents/botkit/node_modules/lodash/isArrayLike.js:1:11",0x36b97b11f9e0,~ +code-creation,Script,0,0xe02c665aa00,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isArrayLike.js",0x36b97b11fb20,~ +code-creation,Function,0,0xe02c665ab00,308," /home/rgbm21/Documents/botkit/node_modules/lodash/_getLength.js:1:11",0x36b97b11fff8,~ +code-creation,Script,0,0xe02c665ac40,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_getLength.js",0x36b97b120138,~ +tick,0xafd080,556756,0,0x2de24c0,0,0xc8dbe0,0xe02c651af6c,0xe02c651adf0,0xe02c6563d04,0xe02c6527c09,0xe02c6544f66,0xe02c654380d,0xe02c65397ee,0xe02c662e98a,0xe02c665aba1,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665a87e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665a546,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665a21e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659575,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66590cb,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c665ad40,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseProperty.js:1:11",0x36b97b120608,~ +code-creation,Script,0,0xe02c665ae40,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseProperty.js",0x36b97b120748,~ +code-creation,LazyCompile,0,0xe02c665af40,220,"baseProperty /home/rgbm21/Documents/botkit/node_modules/lodash/_baseProperty.js:8:22",0x36b97b120498,~ +code-creation,Function,0,0xe02c665b020,628," /home/rgbm21/Documents/botkit/node_modules/lodash/isFunction.js:1:11",0x36b97b120f18,~ +code-creation,Script,0,0xe02c665b2a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isFunction.js",0x36b97b121058,~ +code-creation,Function,0,0xe02c665b3a0,228," /home/rgbm21/Documents/botkit/node_modules/lodash/isObject.js:1:11",0x36b97b121518,~ +code-creation,Script,0,0xe02c665b4a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isObject.js",0x36b97b121658,~ +tick,0xafd0ab,557823,0,0x2de24c0,0,0xcf2cc0,0xe02c651bf50,0xe02c651adf0,0xe02c6563d04,0xe02c65451f6,0xe02c654380d,0xe02c65397ee,0xe02c662e98a,0xe02c665a94e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665a546,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665a21e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659575,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66590cb,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c665b5a0,300," /home/rgbm21/Documents/botkit/node_modules/lodash/isLength.js:1:11",0x36b97b121b40,~ +code-creation,Script,0,0xe02c665b6e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isLength.js",0x36b97b121c80,~ +code-creation,Function,0,0xe02c665b7e0,580," /home/rgbm21/Documents/botkit/node_modules/lodash/_isIndex.js:1:11",0x36b97b1221d0,~ +code-creation,Script,0,0xe02c665ba40,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_isIndex.js",0x36b97b122310,~ +code-creation,Function,0,0xe02c665bb40,628," /home/rgbm21/Documents/botkit/node_modules/lodash/rest.js:1:11",0x36b97b1229d8,~ +code-creation,Script,0,0xe02c665bdc0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/rest.js",0x36b97b122b18,~ +tick,0x7f6617763930,558889,1,0xe32800,3,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665a286,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659575,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66590cb,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c665bec0,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_apply.js:1:11",0x36b97b122fe8,~ +code-creation,Script,0,0xe02c665bfc0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_apply.js",0x36b97b123128,~ +code-creation,Function,0,0xe02c665c0c0,476," /home/rgbm21/Documents/botkit/node_modules/lodash/toInteger.js:1:11",0x36b97b123700,~ +code-creation,Script,0,0xe02c665c2a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/toInteger.js",0x36b97b123840,~ +code-creation,Function,0,0xe02c665c3a0,1740," /home/rgbm21/Documents/botkit/node_modules/lodash/toNumber.js:1:11",0x36b97b124008,~ +code-creation,Script,0,0xe02c665ca80,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/toNumber.js",0x36b97b124148,~ +tick,0xe02c6556953,559957,0,0xffffffffffffff84,0,0x0,0xe02c65eb1f2,0xe02c663845a,0xe02c65cf7c2,0xe02c6539417,0xe02c662e98a,0xe02c665c4c6,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665c17e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665bc66,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665a286,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659575,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66590cb,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c665cb80,892," /home/rgbm21/Documents/botkit/node_modules/lodash/keys.js:1:11",0x36b97b124888,~ +code-creation,Script,0,0xe02c665cf00,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/keys.js",0x36b97b1249c8,~ +code-creation,Function,0,0xe02c665d000,500," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseHas.js:1:11",0x36b97b124eb8,~ +code-creation,Script,0,0xe02c665d200,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseHas.js",0x36b97b124ff8,~ +code-creation,Function,0,0xe02c665d300,348," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseKeys.js:1:11",0x36b97b1254b8,~ +code-creation,Script,0,0xe02c665d460,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseKeys.js",0x36b97b1255f8,~ +tick,0xe02c641beee,561018,0,0xe02c651b93c,0,0xe02c651adf0,0xe02c6563d04,0xe02c6527c09,0xe02c6608bff,0xe02c6618f56,0xe02c6557254,0xe02c653b6d4,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c665cd2c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66595a8,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66590cb,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c665d560,756," /home/rgbm21/Documents/botkit/node_modules/lodash/_indexKeys.js:1:11",0x36b97b125c40,~ +code-creation,Script,0,0xe02c665d860,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_indexKeys.js",0x36b97b125d80,~ +code-creation,Function,0,0xe02c665d960,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseTimes.js:1:11",0x36b97b126240,~ +code-creation,Script,0,0xe02c665da60,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseTimes.js",0x36b97b126380,~ +code-creation,Function,0,0xe02c665db60,740," /home/rgbm21/Documents/botkit/node_modules/lodash/isArguments.js:1:11",0x36b97b126a08,~ +code-creation,Script,0,0xe02c665de60,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isArguments.js",0x36b97b126b48,~ +tick,0xd111cd,562086,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665dc20,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665d686,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665cd2c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66595a8,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66590cb,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c665df60,444," /home/rgbm21/Documents/botkit/node_modules/lodash/isArrayLikeObject.js:1:11",0x36b97b127108,~ +code-creation,Script,0,0xe02c665e120,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isArrayLikeObject.js",0x36b97b127248,~ +code-creation,Function,0,0xe02c665e220,228," /home/rgbm21/Documents/botkit/node_modules/lodash/isObjectLike.js:1:11",0x36b97b127730,~ +code-creation,Script,0,0xe02c665e320,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isObjectLike.js",0x36b97b127870,~ +code-creation,Function,0,0xe02c665e420,268," /home/rgbm21/Documents/botkit/node_modules/lodash/isArray.js:1:11",0x36b97b127cd8,~ +code-creation,Script,0,0xe02c665e540,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isArray.js",0x36b97b127e18,~ +code-creation,Function,0,0xe02c665e640,660," /home/rgbm21/Documents/botkit/node_modules/lodash/isString.js:1:11",0x36b97b128450,~ +tick,0x7f661775e072,563161,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665d7be,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665cd2c,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66595a8,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66590cb,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Script,0,0xe02c665e8e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isString.js",0x36b97b128590,~ +code-creation,Function,0,0xe02c665e9e0,452," /home/rgbm21/Documents/botkit/node_modules/lodash/_isPrototype.js:1:11",0x36b97b128b28,~ +code-creation,Script,0,0xe02c665ebc0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_isPrototype.js",0x36b97b128c68,~ +code-creation,LazyCompile,0,0xe02c665ecc0,260,"createAssigner /home/rgbm21/Documents/botkit/node_modules/lodash/_createAssigner.js:11:24",0x36b97b11e918,~ +code-creation,LazyCompile,0,0xe02c665ede0,612,"rest /home/rgbm21/Documents/botkit/node_modules/lodash/rest.js:32:14",0x36b97b1227f0,~ +code-creation,LazyCompile,0,0xe02c665f060,1216," /home/rgbm21/Documents/botkit/node_modules/lodash/_createAssigner.js:12:23",0x36b97b128e20,~ +tick,0xc20dc4,564217,0,0x11d800000000,0,0xccaae0,0xe02c65100fc,0xe02c65e32a6,0xe02c65472ba,0xe02c65fd3b5,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c665f520,524," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLBuilder.js:13:42",0x36b97b129dc8,~ +code-creation,Function,0,0xe02c665f740,596," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLBuilder.js:2:10",0x36b97b129f80,~ +code-creation,Function,0,0xe02c665f9a0,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLBuilder.js:1:11",0x36b97b12a110,~ +code-creation,Script,0,0xe02c665fae0,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLBuilder.js",0x36b97b12a250,~ +code-creation,Function,0,0xe02c665fbe0,2660," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLStringifier.js:7:46",0x36b97b12c2d0,~ +code-creation,Function,0,0xe02c6660660,476," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLStringifier.js:2:10",0x36b97b12c468,~ +code-creation,Function,0,0xe02c6660840,340," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLStringifier.js:1:11",0x36b97b12c5e8,~ +code-creation,Script,0,0xe02c66609a0,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLStringifier.js",0x36b97b12c728,~ +tick,0x9360f0,565279,0,0x1,0,0xbbb8f0,0xe02c666046f,0xe02c66607e5,0xe02c666094a,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f7f2,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6660aa0,404," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDeclaration.js:13:46",0x36b97b12d7b8,~ +code-creation,Function,0,0xe02c6660c40,700," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDeclaration.js:2:10",0x36b97b12d990,~ +code-creation,Function,0,0xe02c6660f00,348," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDeclaration.js:1:11",0x36b97b12db20,~ +code-creation,Script,0,0xe02c6661060,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDeclaration.js",0x36b97b12dc60,~ +code-creation,Function,0,0xe02c6661160,444," /home/rgbm21/Documents/botkit/node_modules/lodash/create.js:1:11",0x36b97b12e520,~ +code-creation,Script,0,0xe02c6661320,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/create.js",0x36b97b12e660,~ +tick,0xc48738,566347,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666121e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6660dc4,0xe02c6661012,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f85e,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6661420,444," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseAssign.js:1:11",0x36b97b12ebb8,~ +code-creation,Script,0,0xe02c66615e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseAssign.js",0x36b97b12ecf8,~ +code-creation,Function,0,0xe02c66616e0,484," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseCreate.js:1:11",0x36b97b12f2b8,~ +code-creation,Script,0,0xe02c66618e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseCreate.js",0x36b97b12f3f8,~ +tick,0xd1207a,567413,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6660e67,0xe02c6661012,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f85e,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66619e0,3316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLNode.js:26:39",0x36b97b131cd0,~ +code-creation,Function,0,0xe02c66626e0,1204," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLNode.js:2:10",0x36b97b131f40,~ +code-creation,Function,0,0xe02c6662ba0,348," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLNode.js:1:11",0x36b97b1320d0,~ +code-creation,Script,0,0xe02c6662d00,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLNode.js",0x36b97b132210,~ +code-creation,Function,0,0xe02c6662e00,908," /home/rgbm21/Documents/botkit/node_modules/lodash/isEmpty.js:1:11",0x36b97b132ea8,~ +code-creation,Script,0,0xe02c66631a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isEmpty.js",0x36b97b132fe8,~ +tick,0xa90307,568479,0,0x3625d100000,0,0xcd6c50,0xe02c65bf039,0xe02c6527b84,0xe02c66386ec,0xe02c65cf7c2,0xe02c6539417,0xe02c662e98a,0xe02c6662f90,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66628f1,0xe02c6662cb2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6660e67,0xe02c6661012,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f85e,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66632a0,1048,"extend /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDeclaration.js:4:22",0x36b97b12d498,~ +code-creation,LazyCompile,0,0xe02c66636c0,228,"ctor /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDeclaration.js:4:138",0x36b97b133c60,~ +tick,0x914c12,569541,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f895,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66637c0,2212," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDocType.js:23:42",0x36b97b135948,~ +code-creation,Function,0,0xe02c6664080,1188," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDocType.js:2:10",0x36b97b135b98,~ +code-creation,Function,0,0xe02c6664540,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDocType.js:1:11",0x36b97b135d28,~ +code-creation,Script,0,0xe02c6664680,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDocType.js",0x36b97b135e68,~ +code-creation,Function,0,0xe02c6664780,500," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLCData.js:11:40",0x36b97b136710,~ +code-creation,Function,0,0xe02c6664980,644," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLCData.js:2:10",0x36b97b1368d0,~ +code-creation,Function,0,0xe02c6664c20,348," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLCData.js:1:11",0x36b97b136a60,~ +code-creation,Script,0,0xe02c6664d80,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLCData.js",0x36b97b136ba0,~ +code-creation,LazyCompile,0,0xe02c6664e80,1048,"extend /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLCData.js:4:22",0x36b97b136320,~ +code-creation,LazyCompile,0,0xe02c66652a0,228,"ctor /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLCData.js:4:138",0x36b97b136e28,~ +tick,0xbf1811,570607,0,0x7fffc2951b30,0,0xcc1970,0xe02c6546cde,0xe02c65fd3b5,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6664240,0xe02c6664634,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f895,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66653a0,500," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLComment.js:11:42",0x36b97b1378f8,~ +code-creation,Function,0,0xe02c66655a0,644," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLComment.js:2:10",0x36b97b137ab8,~ +code-creation,Function,0,0xe02c6665840,348," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLComment.js:1:11",0x36b97b137c48,~ +code-creation,Script,0,0xe02c66659a0,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLComment.js",0x36b97b137d88,~ +code-creation,LazyCompile,0,0xe02c6665aa0,1048,"extend /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLComment.js:4:22",0x36b97b137508,~ +code-creation,LazyCompile,0,0xe02c6665ec0,228,"ctor /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLComment.js:4:138",0x36b97b138010,~ +code-creation,Function,0,0xe02c6665fc0,332," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDAttList.js:7:45",0x36b97b138b20,~ +code-creation,Function,0,0xe02c6666120,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDAttList.js:2:10",0x36b97b138c88,~ +code-creation,Function,0,0xe02c6666260,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDAttList.js:1:11",0x36b97b138e18,~ +code-creation,Script,0,0xe02c66663a0,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDAttList.js",0x36b97b138f58,~ +tick,0xc066d5,571674,0,0x62,0,0xcccb70,0xe02c653b124,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c6664318,0xe02c6664634,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f895,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66664a0,308," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDEntity.js:9:44",0x36b97b139890,~ +code-creation,Function,0,0xe02c66665e0,436," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDEntity.js:2:10",0x36b97b139a20,~ +code-creation,Function,0,0xe02c66667a0,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDEntity.js:1:11",0x36b97b139bb0,~ +code-creation,Script,0,0xe02c66668e0,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDEntity.js",0x36b97b139cf0,~ +code-creation,LazyCompile,0,0xe02c66669e0,1344,"posix.resolve path.js:419:25",0x2efb89c17420,~ +tick,0xe02c65eb5c6,572743,0,0x100000000,0,0xe02c6609010,0xe02c6618f56,0xe02c6557254,0xe02c653b6d4,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c6664384,0xe02c6664634,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f895,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6666f20,308," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDElement.js:7:45",0x36b97b13b0c0,~ +code-creation,Function,0,0xe02c6667060,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDElement.js:2:10",0x36b97b13b228,~ +code-creation,Function,0,0xe02c66671a0,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDElement.js:1:11",0x36b97b13b3b8,~ +code-creation,Script,0,0xe02c66672e0,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDElement.js",0x36b97b13b4f8,~ +tick,0xc4362a,573811,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66643f0,0xe02c6664634,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f895,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66673e0,308," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDNotation.js:7:46",0x36b97b13bce0,~ +code-creation,Function,0,0xe02c6667520,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDNotation.js:2:10",0x36b97b13be50,~ +code-creation,Function,0,0xe02c6667660,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDNotation.js:1:11",0x36b97b13bfe0,~ +code-creation,Script,0,0xe02c66677c0,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLDTDNotation.js",0x36b97b13c120,~ +code-creation,LazyCompile,1,0xe02c66678c0,3584,"posix.resolve path.js:419:25",0x2efb89c17420,* +tick,0x8f5108,574879,1,0xe32800,4,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666445c,0xe02c6664634,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f895,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66686c0,452," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js:7:56",0x36b97b13e0c0,~ +code-creation,Function,0,0xe02c66688a0,380," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js:2:10",0x36b97b13e240,~ +code-creation,Function,0,0xe02c6668a20,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js:1:11",0x36b97b13e3d0,~ +code-creation,Script,0,0xe02c6668b60,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLProcessingInstruction.js",0x36b97b13e510,~ +tick,0xc4366e,575952,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6668c60,1212," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLElement.js:21:42",0x36b97b13fc50,~ +code-creation,Function,0,0xe02c6669120,1188," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLElement.js:2:10",0x36b97b13fea0,~ +code-creation,Function,0,0xe02c66695e0,348," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLElement.js:1:11",0x36b97b140030,~ +code-creation,Script,0,0xe02c6669740,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLElement.js",0x36b97b140170,~ +tick,0xcc1a1e,577128,0,0x11a5310,0,0xcc1970,0xe02c6669223,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6669840,756," /home/rgbm21/Documents/botkit/node_modules/lodash/every.js:1:11",0x36b97b140b98,~ +code-creation,Script,0,0xe02c6669b40,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/every.js",0x36b97b140cd8,~ +tick,0xa9bdf0,578190,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6669c40,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_arrayEvery.js:1:11",0x36b97b1411a0,~ +code-creation,Script,0,0xe02c6669d40,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_arrayEvery.js",0x36b97b1412e0,~ +code-creation,Function,0,0xe02c6669e40,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseEvery.js:1:11",0x36b97b141848,~ +code-creation,Script,0,0xe02c6669fa0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseEvery.js",0x36b97b141988,~ +tick,0xbf1e9b,579233,0,0x2e27680,0,0xccd040,0xe02c66095b4,0xe02c6618f56,0xe02c6557254,0xe02c653b6d4,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c6669efe,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6669966,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c666a0a0,356," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseEach.js:1:11",0x36b97b141ee0,~ +code-creation,Script,0,0xe02c666a220,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseEach.js",0x36b97b142020,~ +code-creation,Function,0,0xe02c666a320,444," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseForOwn.js:1:11",0x36b97b1425c0,~ +code-creation,Script,0,0xe02c666a4e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseForOwn.js",0x36b97b142700,~ +code-creation,Function,0,0xe02c666a5e0,300," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseFor.js:1:11",0x36b97b142bd8,~ +code-creation,Script,0,0xe02c666a720,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseFor.js",0x36b97b142d18,~ +tick,0xcc9106,580308,0,0x31534ff041e9,3,0x7fffc29511b8,0xe02c65f77cb,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666a3de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666a142,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6669efe,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6669966,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c666a820,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_createBaseFor.js:1:11",0x36b97b143250,~ +code-creation,Script,0,0xe02c666a920,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_createBaseFor.js",0x36b97b143390,~ +code-creation,LazyCompile,0,0xe02c666aa20,220,"createBaseFor /home/rgbm21/Documents/botkit/node_modules/lodash/_createBaseFor.js:8:23",0x36b97b1430e0,~ +tick,0x72c150,581377,0,0xfdb868,0,0x7fffc2951418,0xe02c65ed91c,0xe02c654788d,0xe02c65fd3b5,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666a175,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6669efe,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6669966,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c666ab00,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_createBaseEach.js:1:11",0x36b97b143a78,~ +code-creation,Script,0,0xe02c666ac60,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_createBaseEach.js",0x36b97b143bb8,~ +code-creation,LazyCompile,0,0xe02c666ad60,228,"createBaseEach /home/rgbm21/Documents/botkit/node_modules/lodash/_createBaseEach.js:11:24",0x36b97b1438e8,~ +tick,0xd2fdac,582621,0,0x7fffc2951560,0,0xccd040,0xe02c66095b4,0xe02c6618f56,0xe02c6557254,0xe02c653b6d4,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c666ae60,756," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseIteratee.js:1:11",0x36b97b144470,~ +code-creation,Script,0,0xe02c666b160,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseIteratee.js",0x36b97b1445b0,~ +tick,0xaf7c3a,583596,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c666b260,444," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseMatches.js:1:11",0x36b97b144bd8,~ +code-creation,Script,0,0xe02c666b420,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseMatches.js",0x36b97b144d18,~ +code-creation,Function,0,0xe02c666b520,580," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseIsMatch.js:1:11",0x36b97b1453d8,~ +code-creation,Script,0,0xe02c666b780,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseIsMatch.js",0x36b97b145518,~ +code-creation,Function,0,0xe02c666b880,748," /home/rgbm21/Documents/botkit/node_modules/lodash/_Stack.js:1:11",0x36b97b145cc8,~ +code-creation,Script,0,0xe02c666bb80,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_Stack.js",0x36b97b145e08,~ +tick,0xbeb613,584661,0,0x7fffc2950dc0,0,0x93c720,0xe02c654516b,0xe02c654380d,0xe02c65397ee,0xe02c662e98a,0xe02c666b938,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c666bc80,252," /home/rgbm21/Documents/botkit/node_modules/lodash/_stackClear.js:1:11",0x36b97b1462f0,~ +code-creation,Script,0,0xe02c666bd80,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_stackClear.js",0x36b97b146430,~ +code-creation,Function,0,0xe02c666be80,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_stackDelete.js:1:11",0x36b97b1469b0,~ +code-creation,Script,0,0xe02c666bfe0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_stackDelete.js",0x36b97b146af0,~ +code-creation,Function,0,0xe02c666c0e0,492," /home/rgbm21/Documents/botkit/node_modules/lodash/_assocDelete.js:1:11",0x36b97b147100,~ +code-creation,Script,0,0xe02c666c2e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_assocDelete.js",0x36b97b147240,~ +tick,0x7f6617abce6d,585728,0,0x0,0,0x7fffc29509b8,0xe02c65ed91c,0xe02c654788d,0xe02c65fd3b5,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666c1a0,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666bf3e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b96b,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c666c3e0,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_assocIndexOf.js:1:11",0x36b97b147770,~ +code-creation,Script,0,0xe02c666c540,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_assocIndexOf.js",0x36b97b1478b0,~ +code-creation,LazyCompile,0,0xe02c666c640,1052,"Module.load module.js:334:33",0x2efb89c1ad68,~ +code-creation,LazyCompile,0,0xe02c666ca60,1224,"Module._nodeModulePaths module.js:188:35",0x2efb89c1aac8,~ +tick,0xd12081,586800,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b99e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c666cf40,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_stackGet.js:1:11",0x36b97b148da0,~ +code-creation,Script,0,0xe02c666d0a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_stackGet.js",0x36b97b148ee0,~ +code-creation,Function,0,0xe02c666d1a0,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_assocGet.js:1:11",0x36b97b149400,~ +code-creation,Script,0,0xe02c666d300,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_assocGet.js",0x36b97b149540,~ +tick,0xbeb545,587865,0,0x3b059d9a00000003,0,0xcccb70,0xe02c65438fc,0xe02c65397ee,0xe02c662e98a,0xe02c666b9d1,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c666d400,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_stackHas.js:1:11",0x36b97b149ac0,~ +code-creation,Script,0,0xe02c666d560,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_stackHas.js",0x36b97b149c00,~ +code-creation,Stub,2,0xe02c666d660,2660,"RecordWriteStub" +code-creation,Stub,2,0xe02c666e0e0,2702,"RecordWriteStub" +code-creation,Stub,2,0xe02c666eb80,2680,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c666f600,3712,"Module.load module.js:334:33",0x2efb89c1ad68,* +code-creation,Function,0,0xe02c6670480,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_assocHas.js:1:11",0x36b97b14cb18,~ +code-creation,Script,0,0xe02c66705e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_assocHas.js",0x36b97b14cc58,~ +tick,0xe02c651b8c2,588928,0,0x3625d2911d9,0,0xe02c651adf0,0xe02c6563d04,0xe02c6668237,0xe02c653b4b9,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c666ba04,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66706e0,508," /home/rgbm21/Documents/botkit/node_modules/lodash/_stackSet.js:1:11",0x36b97b14d290,~ +code-creation,Script,0,0xe02c66708e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_stackSet.js",0x36b97b14d3d0,~ +code-creation,Function,0,0xe02c66709e0,748," /home/rgbm21/Documents/botkit/node_modules/lodash/_MapCache.js:1:11",0x36b97b14db88,~ +code-creation,Script,0,0xe02c6670ce0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_MapCache.js",0x36b97b14dcc8,~ +code-creation,Function,0,0xe02c6670de0,476," /home/rgbm21/Documents/botkit/node_modules/lodash/_mapClear.js:1:11",0x36b97b14e258,~ +code-creation,Script,0,0xe02c6670fc0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_mapClear.js",0x36b97b14e398,~ +tick,0xe02c6556a2a,589994,0,0xffffffffffffffde,0,0x0,0xe02c65eb1f2,0xe02c666f85f,0xe02c65397ee,0xe02c662e98a,0xe02c6670ebc,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6670a98,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c667079e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666ba04,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66710c0,436," /home/rgbm21/Documents/botkit/node_modules/lodash/_Hash.js:1:11",0x36b97b14e950,~ +code-creation,Script,0,0xe02c6671280,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_Hash.js",0x36b97b14ea90,~ +code-creation,Function,0,0xe02c6671380,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_nativeCreate.js:1:11",0x36b97b14ef90,~ +code-creation,Script,0,0xe02c66714e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_nativeCreate.js",0x36b97b14f0d0,~ +code-creation,Function,0,0xe02c66715e0,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_getNative.js:1:11",0x36b97b14f618,~ +code-creation,Script,0,0xe02c6671740,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_getNative.js",0x36b97b14f758,~ +tick,0x920231,591069,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c667169e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6671421,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6671175,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6670ebc,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6670a98,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c667079e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666ba04,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6671840,1932," /home/rgbm21/Documents/botkit/node_modules/lodash/isNative.js:1:11",0x36b97b150078,~ +code-creation,Script,0,0xe02c6671fe0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isNative.js",0x36b97b1501b8,~ +code-creation,Function,0,0xe02c66720e0,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_isHostObject.js:1:11",0x36b97b1506a0,~ +code-creation,Script,0,0xe02c66721e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_isHostObject.js",0x36b97b1507e0,~ +code-creation,LazyCompile,0,0xe02c66722e0,228,"toString native v8natives.js:1197:26",0x31534ff5b4e0,~ +code-creation,LazyCompile,0,0xe02c66723e0,1072,"FunctionSourceString native v8natives.js:1167:30",0x31534ff5b408,~ +code-creation,LazyCompile,0,0xe02c6672820,292,"NativeCodeFunctionSourceString native v8natives.js:1160:40",0x31534ff5b328,~ +code-creation,Stub,11,0xe02c6672960,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66729e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,RegExp,5,0xe02c6672a60,827,"[\\\\^$.*+?()[\\]{}|]" +tick,0xbf5067,592132,0,0x2dec758,0,0xcd7f40,0xe02c651ca9c,0xe02c6671dcb,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c667169e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6671421,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6671175,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6670ebc,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6670a98,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c667079e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666ba04,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,RegExp,5,0xe02c6672da0,1671,"hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])" +code-creation,Stub,11,0xe02c6673440,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66734c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c6673540,380,"getNative /home/rgbm21/Documents/botkit/node_modules/lodash/_getNative.js:11:19",0x36b97b14f488,~ +code-creation,Stub,13,0xe02c66736c0,232,"CompareNilICStub(NullValue)(MonomorphicMap)" +code-creation,LazyCompile,0,0xe02c66737c0,644,"isNative /home/rgbm21/Documents/botkit/node_modules/lodash/isNative.js:42:18",0x36b97b14fdb8,~ +code-creation,Stub,13,0xe02c6673a60,232,"CompareNilICStub(NullValue)(MonomorphicMap)" +code-creation,LazyCompile,0,0xe02c6673b60,460,"isFunction /home/rgbm21/Documents/botkit/node_modules/lodash/isFunction.js:32:20",0x36b97b120d28,~ +code-creation,LazyCompile,0,0xe02c6673d40,380,"isObject /home/rgbm21/Documents/botkit/node_modules/lodash/isObject.js:24:18",0x36b97b1213a8,~ +code-disable-optimization,"toString","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c6673ec0,700,"toString native v8natives.js:88:24",0x31534ff562b0, +code-creation,Stub,11,0xe02c6674180,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6674200,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,RegExp,5,0xe02c6674280,1149,"^function.*?\\(\\) \\{ \\[native code\\] \\}$" +code-creation,Function,0,0xe02c6674700,364," /home/rgbm21/Documents/botkit/node_modules/lodash/_Map.js:1:11",0x36b97b151d20,~ +code-creation,Script,0,0xe02c6674880,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_Map.js",0x36b97b151e60,~ +tick,0x7f6617841a40,593196,1,0xe28ee0,3,0x93e0b0,0xe02c654b6d9,0xe02c65edc61,0xe02c6547a07,0xe02c65fd3b5,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c66747d5,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6670f24,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6670a98,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c667079e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666ba04,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6674980,1660," /home/rgbm21/Documents/botkit/node_modules/lodash/_root.js:1:11",0x36b97b1526b8,~ +code-creation,Script,0,0xe02c6675000,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_root.js",0x36b97b1527f8,~ +code-creation,Function,0,0xe02c6675100,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_checkGlobal.js:1:11",0x36b97b152cc8,~ +code-creation,Script,0,0xe02c6675200,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_checkGlobal.js",0x36b97b152e08,~ +code-creation,Handler,3,0xe02c6675300,171,"global" +code-creation,LazyCompile,0,0xe02c66753c0,316,"checkGlobal /home/rgbm21/Documents/botkit/node_modules/lodash/_checkGlobal.js:8:21",0x36b97b152b58,~ +code-creation,Stub,12,0xe02c6675500,221,"CompareICStub" +code-creation,Handler,3,0xe02c66755e0,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,Handler,3,0xe02c6675680,171,"Object" +code-creation,Stub,12,0xe02c6675740,677,"CompareICStub" +code-creation,Handler,3,0xe02c6675a00,164,"call" +code-creation,Handler,3,0xe02c6675ac0,151,"harmony_tostring" +code-creation,Handler,3,0xe02c6675b60,141,"$toString" +code-creation,Handler,3,0xe02c6675c00,164,"test" +tick,0xd1ad21,594263,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6670acb,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c667079e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666ba04,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6675cc0,652," /home/rgbm21/Documents/botkit/node_modules/lodash/_mapDelete.js:1:11",0x36b97b153808,~ +code-creation,Script,0,0xe02c6675f60,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_mapDelete.js",0x36b97b153948,~ +code-creation,Function,0,0xe02c6676060,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_hashDelete.js:1:11",0x36b97b153ee8,~ +code-creation,Script,0,0xe02c66761c0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_hashDelete.js",0x36b97b154028,~ +code-creation,Function,0,0xe02c66762c0,492," /home/rgbm21/Documents/botkit/node_modules/lodash/_hashHas.js:1:11",0x36b97b1545d0,~ +code-creation,Script,0,0xe02c66764c0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_hashHas.js",0x36b97b154710,~ +tick,0xe02c6428f54,595333,0,0xe02c65456d6,0,0xe02c65bf263,0xe02c666fb92,0xe02c65397ee,0xe02c662e98a,0xe02c6675eb6,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6670acb,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c667079e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666ba04,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66765c0,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_isKeyable.js:1:11",0x36b97b154be8,~ +code-creation,Script,0,0xe02c66766c0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_isKeyable.js",0x36b97b154d28,~ +code-creation,Function,0,0xe02c66767c0,652," /home/rgbm21/Documents/botkit/node_modules/lodash/_mapGet.js:1:11",0x36b97b155310,~ +code-creation,Script,0,0xe02c6676a60,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_mapGet.js",0x36b97b155450,~ +code-creation,Function,0,0xe02c6676b60,556," /home/rgbm21/Documents/botkit/node_modules/lodash/_hashGet.js:1:11",0x36b97b155a80,~ +code-creation,Script,0,0xe02c6676da0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_hashGet.js",0x36b97b155bc0,~ +tick,0xaf7c3c,596394,0,0x7fffc2950340,0,0xccd040,0xe02c66095b4,0xe02c6618f56,0xe02c6557254,0xe02c653b6d4,0xe02c65cf860,0xe02c6539417,0xe02c662e98a,0xe02c6670b31,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c667079e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666ba04,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6676ea0,652," /home/rgbm21/Documents/botkit/node_modules/lodash/_mapHas.js:1:11",0x36b97b156190,~ +code-creation,Script,0,0xe02c6677140,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_mapHas.js",0x36b97b1562d0,~ +code-creation,Function,0,0xe02c6677240,652," /home/rgbm21/Documents/botkit/node_modules/lodash/_mapSet.js:1:11",0x36b97b156918,~ +code-creation,Script,0,0xe02c66774e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_mapSet.js",0x36b97b156a58,~ +code-creation,Function,0,0xe02c66775e0,372," /home/rgbm21/Documents/botkit/node_modules/lodash/_assocSet.js:1:11",0x36b97b156f90,~ +code-creation,Script,0,0xe02c6677760,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_assocSet.js",0x36b97b1570d0,~ +tick,0xe02c641b3d8,597458,0,0xe02c651b28b,0,0xe02c651adf0,0xe02c6563d04,0xe02c6668237,0xe02c653b4b9,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c66773ce,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c6670b64,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c667079e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666ba04,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b5de,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66778c0,404," /home/rgbm21/Documents/botkit/node_modules/lodash/_hashSet.js:1:11",0x36b97b157620,~ +code-creation,Script,0,0xe02c6677a60,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_hashSet.js",0x36b97b157760,~ +code-creation,Function,0,0xe02c6677b60,588," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseIsEqual.js:1:11",0x36b97b157e08,~ +code-creation,Script,0,0xe02c6677dc0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseIsEqual.js",0x36b97b157f48,~ +tick,0xd12047,598534,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6677c3f,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666b646,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6677ec0,1500," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseIsEqualDeep.js:1:11",0x36b97b1589e8,~ +code-creation,Script,0,0xe02c66784a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseIsEqualDeep.js",0x36b97b158b28,~ +code-creation,Function,0,0xe02c66785a0,476," /home/rgbm21/Documents/botkit/node_modules/lodash/_equalArrays.js:1:11",0x36b97b1591e0,~ +code-creation,Script,0,0xe02c6678780,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_equalArrays.js",0x36b97b159320,~ +tick,0x91e83e,599609,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667865e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6677fe8,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6677c3f,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666b646,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6678880,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_arraySome.js:1:11",0x36b97b1597e0,~ +code-creation,Script,0,0xe02c6678980,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_arraySome.js",0x36b97b159920,~ +code-creation,Function,0,0xe02c6678a80,1732," /home/rgbm21/Documents/botkit/node_modules/lodash/_equalByTag.js:1:11",0x36b97b15a3d8,~ +code-creation,Script,0,0xe02c6679160,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_equalByTag.js",0x36b97b15a518,~ +code-creation,Function,0,0xe02c6679260,292," /home/rgbm21/Documents/botkit/node_modules/lodash/_Symbol.js:1:11",0x36b97b15a998,~ +code-creation,Script,0,0xe02c66793a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_Symbol.js",0x36b97b15aad8,~ +tick,0x8e5d7b,600671,0,0x7fffc29504b0,0,0xccd1f0,0xe02c65a2df6,0xe02c663777e,0xe02c65cf7c2,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6679301,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6678b40,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6678050,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6677c3f,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666b646,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66794a0,292," /home/rgbm21/Documents/botkit/node_modules/lodash/_Uint8Array.js:1:11",0x36b97b15af80,~ +code-creation,Script,0,0xe02c66795e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_Uint8Array.js",0x36b97b15b0c0,~ +tick,0xaf7c3c,601844,0,0x7fffc2950290,0,0xccd040,0xe02c66095b4,0xe02c6618f56,0xe02c6557254,0xe02c653b6d4,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6678c10,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6678050,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6677c3f,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666b646,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66796e0,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_mapToArray.js:1:11",0x36b97b15b5a0,~ +code-creation,Script,0,0xe02c66797e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_mapToArray.js",0x36b97b15b6e0,~ +code-creation,Function,0,0xe02c66798e0,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_setToArray.js:1:11",0x36b97b15bba8,~ +code-creation,Script,0,0xe02c66799e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_setToArray.js",0x36b97b15bce8,~ +tick,0xaf7bf1,602832,0,0x7fffc2950c80,0,0xe02c6539653,0xe02c654e307,0xe02c654e0fe,0xe02c66780b8,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6677c3f,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666b646,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6679ae0,508," /home/rgbm21/Documents/botkit/node_modules/lodash/_equalObjects.js:1:11",0x36b97b15c328,~ +code-creation,Script,0,0xe02c6679ce0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_equalObjects.js",0x36b97b15c468,~ +code-creation,Function,0,0xe02c6679de0,1852," /home/rgbm21/Documents/botkit/node_modules/lodash/_getTag.js:1:11",0x36b97b15ce78,~ +code-creation,Script,0,0xe02c667a520,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_getTag.js",0x36b97b15cfb8,~ +tick,0xc92198,603897,0,0xc2950370,0,0xc92f30,0xe02c65aa989,0xe02c666fcb4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6679ed6,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6678120,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6677c3f,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666b646,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c667a620,364," /home/rgbm21/Documents/botkit/node_modules/lodash/_Set.js:1:11",0x36b97b15d470,~ +code-creation,Script,0,0xe02c667a7a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_Set.js",0x36b97b15d5b0,~ +code-creation,Function,0,0xe02c667a8a0,364," /home/rgbm21/Documents/botkit/node_modules/lodash/_WeakMap.js:1:11",0x36b97b15daa8,~ +code-creation,Script,0,0xe02c667aa20,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_WeakMap.js",0x36b97b15dbe8,~ +code-creation,LazyCompile,0,0xe02c667ab20,260,"getTag /home/rgbm21/Documents/botkit/node_modules/lodash/_getTag.js:35:16",0x36b97b15ca90,~ +code-creation,LazyCompile,0,0xe02c667ac40,1216,"Set native collection.js:98:24",0x31534ff77618,~ +code-creation,Handler,3,0xe02c667b100,164,"call" +tick,0xe02c6550ecb,604963,0,0x31534ff04189,0,0xe02c650f8c9,0xe02c65505b4,0xe02c65e3235,0xe02c65472ba,0xe02c65fd3b5,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6678258,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6677c3f,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666b646,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666b31e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c667b1c0,1508," /home/rgbm21/Documents/botkit/node_modules/lodash/isTypedArray.js:1:11",0x36b97b15e9a0,~ +code-creation,Script,0,0xe02c667b7c0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isTypedArray.js",0x36b97b15eae0,~ +code-creation,Function,0,0xe02c667b8c0,444," /home/rgbm21/Documents/botkit/node_modules/lodash/_getMatchData.js:1:11",0x36b97b15f330,~ +code-creation,Script,0,0xe02c667ba80,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_getMatchData.js",0x36b97b15f470,~ +tick,0xaf7c45,606026,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667b97e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666b386,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c667bb80,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_isStrictComparable.js:1:11",0x36b97b15f9b8,~ +code-creation,Script,0,0xe02c667bce0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_isStrictComparable.js",0x36b97b15faf8,~ +code-creation,LazyCompile,0,0xe02c667bde0,2756,"test native regexp.js:135:20",0x31534ff7d750,~ +code-creation,Function,0,0xe02c667c8c0,444," /home/rgbm21/Documents/botkit/node_modules/lodash/toPairs.js:1:11",0x36b97b1612e8,~ +code-creation,Script,0,0xe02c667ca80,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/toPairs.js",0x36b97b161428,~ +tick,0xd8d154,607213,0,0x7fffc2950790,2,0xcbb000,0xe02c651c01a,0xe02c651b077,0xe02c651adf0,0xe02c6563d04,0xe02c6668237,0xe02c653b4b9,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c667c97e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667b9e6,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666b386,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,1,0xe02c667cb80,1088,"test native regexp.js:135:20",0x31534ff7d750,* +code-creation,Function,0,0xe02c667cfc0,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseToPairs.js:1:11",0x36b97b1621a8,~ +code-creation,Script,0,0xe02c667d120,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseToPairs.js",0x36b97b1622e8,~ +code-creation,Function,0,0xe02c667d220,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_arrayMap.js:1:11",0x36b97b1627a8,~ +tick,0x7f66177da4fd,608276,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667d07e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667c97e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667b9e6,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666b386,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c666af1e,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Script,0,0xe02c667d320,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_arrayMap.js",0x36b97b1628e8,~ +code-creation,Function,0,0xe02c667d420,684," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseMatchesProperty.js:1:11",0x36b97b162f38,~ +code-creation,Script,0,0xe02c667d6e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseMatchesProperty.js",0x36b97b163078,~ +code-creation,Function,0,0xe02c667d7e0,340," /home/rgbm21/Documents/botkit/node_modules/lodash/get.js:1:11",0x36b97b1635e0,~ +code-creation,Script,0,0xe02c667d940,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/get.js",0x36b97b163720,~ +tick,0xc3afc9,609338,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667d89e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667d546,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666af86,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c667da40,476," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseGet.js:1:11",0x36b97b163ce0,~ +code-creation,Script,0,0xe02c667dc20,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseGet.js",0x36b97b163e20,~ +code-creation,Function,0,0xe02c667dd20,444," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseCastPath.js:1:11",0x36b97b164410,~ +code-creation,Script,0,0xe02c667dee0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseCastPath.js",0x36b97b164550,~ +code-creation,Function,0,0xe02c667dfe0,940," /home/rgbm21/Documents/botkit/node_modules/lodash/_stringToPath.js:1:11",0x36b97b164bd0,~ +code-creation,Script,0,0xe02c667e3a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_stringToPath.js",0x36b97b164d10,~ +code-creation,Function,0,0xe02c667e4a0,748," /home/rgbm21/Documents/botkit/node_modules/lodash/toString.js:1:11",0x36b97b16d378,~ +code-creation,Script,0,0xe02c667e7a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/toString.js",0x36b97b16d4b8,~ +tick,0x7f6617767850,610416,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667e0bc,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667de46,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667db1c,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667d89e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667d546,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666af86,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c667e8a0,556," /home/rgbm21/Documents/botkit/node_modules/lodash/isSymbol.js:1:11",0x36b97b16da70,~ +code-creation,Script,0,0xe02c667eae0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/isSymbol.js",0x36b97b16dbb0,~ +code-creation,Function,0,0xe02c667ebe0,908," /home/rgbm21/Documents/botkit/node_modules/lodash/_isKey.js:1:11",0x36b97b16e1c8,~ +code-creation,Script,0,0xe02c667ef80,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_isKey.js",0x36b97b16e308,~ +tick,0xbeb35c,611493,0,0x7fffc2951270,0,0x93c720,0xe02c666fcb4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667d5ae,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666af86,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c667f080,444," /home/rgbm21/Documents/botkit/node_modules/lodash/hasIn.js:1:11",0x36b97b16e8f8,~ +code-creation,Script,0,0xe02c667f240,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/hasIn.js",0x36b97b16ea38,~ +code-creation,Function,0,0xe02c667f340,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseHasIn.js:1:11",0x36b97b16eef8,~ +code-creation,Script,0,0xe02c667f440,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseHasIn.js",0x36b97b16f038,~ +code-creation,Function,0,0xe02c667f540,1172," /home/rgbm21/Documents/botkit/node_modules/lodash/_hasPath.js:1:11",0x36b97b16f738,~ +code-creation,Script,0,0xe02c667f9e0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_hasPath.js",0x36b97b16f878,~ +tick,0xad940c,612537,0,0x0,0,0xcd6c50,0xe02c65bf039,0xe02c6667d94,0xe02c666fad2,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667f8d6,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667f1a6,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667d5ae,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666af86,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c667fae0,228," /home/rgbm21/Documents/botkit/node_modules/lodash/last.js:1:11",0x36b97b16fdd0,~ +code-creation,Script,0,0xe02c667fbe0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/last.js",0x36b97b16ff10,~ +code-creation,LazyCompile,0,0xe02c667fce0,492,"ArrayBuffer native arraybuffer.js:15:32",0x31534ff8fc38,~ +code-creation,Function,0,0xe02c667fee0,444," /home/rgbm21/Documents/botkit/node_modules/lodash/_parent.js:1:11",0x36b97b170860,~ +code-creation,Script,0,0xe02c66800a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_parent.js",0x36b97b1709a0,~ +code-creation,LazyCompile,1,0xe02c66801a0,447,"ArrayBuffer native arraybuffer.js:15:32",0x31534ff8fc38,* +tick,0xad91c8,613608,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667ff9e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667f93e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667f1a6,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c667d5ae,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666af86,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6680360,228," /home/rgbm21/Documents/botkit/node_modules/lodash/_baseSlice.js:1:11",0x36b97b171170,~ +code-creation,Script,0,0xe02c6680460,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_baseSlice.js",0x36b97b1712b0,~ +code-creation,Function,0,0xe02c6680560,228," /home/rgbm21/Documents/botkit/node_modules/lodash/identity.js:1:11",0x36b97b171788,~ +code-creation,Script,0,0xe02c6680660,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/identity.js",0x36b97b1718c8,~ +code-creation,Function,0,0xe02c6680760,548," /home/rgbm21/Documents/botkit/node_modules/lodash/property.js:1:11",0x36b97b171eb8,~ +code-creation,Script,0,0xe02c66809a0,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/property.js",0x36b97b171ff8,~ +code-creation,Function,0,0xe02c6680aa0,340," /home/rgbm21/Documents/botkit/node_modules/lodash/_basePropertyDeep.js:1:11",0x36b97b172550,~ +code-creation,Script,0,0xe02c6680c00,244,"/home/rgbm21/Documents/botkit/node_modules/lodash/_basePropertyDeep.js",0x36b97b172690,~ +tick,0xe02c65569f1,614671,0,0xffffffffffffff9e,0,0x0,0xe02c65eb1f2,0xe02c6638268,0xe02c65cf7c2,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6680b5e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6680886,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c662e98a,0xe02c666b0be,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66699ce,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66693e7,0xe02c66696f2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c665f8cc,0xe02c665fa94,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6659137,0xe02c6659314,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c66406b8,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6680d00,452," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLAttribute.js:7:44",0x36b97b172f00,~ +code-creation,Function,0,0xe02c6680ee0,380," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLAttribute.js:2:10",0x36b97b173078,~ +code-creation,Function,0,0xe02c6681060,316," /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLAttribute.js:1:11",0x36b97b173208,~ +code-creation,Script,0,0xe02c66811a0,244,"/home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLAttribute.js",0x36b97b173348,~ +code-creation,LazyCompile,0,0xe02c66812a0,1048,"extend /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLElement.js:4:22",0x36b97b13f2d0,~ +code-creation,LazyCompile,0,0xe02c66816c0,228,"ctor /home/rgbm21/Documents/botkit/node_modules/xmlbuilder/lib/XMLElement.js:4:138",0x36b97b173668,~ +tick,0xe02c654414c,615732,0,0xffffffffffffffd4,0,0x0,0xe02c65eb1f2,0xe02c666fef5,0xe02c65397ee,0xe02c662e98a,0xe02c6640724,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66817c0,300," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/bom.js:2:10",0x36b97b174108,~ +code-creation,Function,0,0xe02c6681900,316," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/bom.js:1:11",0x36b97b174298,~ +code-creation,Script,0,0xe02c6681a40,244,"/home/rgbm21/Documents/botkit/node_modules/xml2js/lib/bom.js",0x36b97b174410,~ +code-creation,Function,0,0xe02c6681b40,876," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/processors.js:2:10",0x36b97b174e20,~ +code-creation,Function,0,0xe02c6681ec0,340," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/processors.js:1:11",0x36b97b174fa0,~ +code-creation,Script,0,0xe02c6682020,244,"/home/rgbm21/Documents/botkit/node_modules/xml2js/lib/processors.js",0x36b97b1750e0,~ +code-creation,Stub,11,0xe02c6682120,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66821a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c6682220,1048,"extend /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:5:22",0x38cf5fc82488,~ +code-creation,Handler,3,0xe02c6682640,164,"call" +code-creation,Handler,3,0xe02c6682700,184,"stackTraceLimit" +code-creation,KeyedStoreIC,10,0xe02c66827c0,153,"stackTraceLimit" +code-creation,Handler,3,0xe02c6682860,192,"prepareStackTrace" +tick,0xd54046,616800,0,0x0,2,0xccf980,0xe02c668259c,0xe02c663ffef,0xe02c6640a82,0xe02c6640cf2,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c662e98a,0xe02c6639897,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6682920,204,"ctor /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:5:138",0x36b97b175c38,~ +code-creation,Handler,3,0xe02c6682a00,201,"EventEmitter" +code-creation,Handler,3,0xe02c6682ae0,192,"usingDomains" +code-creation,Handler,3,0xe02c6682ba0,184,"defaultMaxListeners" +code-creation,Handler,3,0xe02c6682c60,204,"init" +code-creation,Handler,3,0xe02c6682d40,204,"listenerCount" +code-creation,Handler,3,0xe02c6682e20,185,"prototype" +code-creation,StoreIC,9,0xe02c6682ee0,134,"prototype" +code-creation,Handler,3,0xe02c6682f80,201,"constructor" +code-creation,StoreIC,9,0xe02c6683060,134,"constructor" +code-creation,Handler,3,0xe02c6683100,185,"prototype" +code-creation,StoreIC,9,0xe02c66831c0,134,"prototype" +code-creation,Handler,3,0xe02c6683260,216,"__super__" +code-creation,StoreIC,9,0xe02c6683340,134,"__super__" +code-creation,LazyCompile,0,0xe02c66833e0,2892,"Parser /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:224:20",0x38cf5fc82ef0,~ +code-creation,LazyCompile,0,0xe02c6683f40,228,"bind /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:7:20",0x38cf5fc82530,~ +code-creation,Handler,3,0xe02c6684040,192,"trim" +code-creation,KeyedStoreIC,10,0xe02c6684100,153,"trim" +code-creation,Handler,3,0xe02c66841a0,192,"normalize" +code-creation,Handler,3,0xe02c6684260,192,"normalizeTags" +code-creation,Handler,3,0xe02c6684320,192,"attrkey" +code-creation,Handler,3,0xe02c66843e0,192,"charkey" +code-creation,Handler,3,0xe02c66844a0,192,"explicitArray" +code-creation,Handler,3,0xe02c6684560,192,"ignoreAttrs" +code-creation,Handler,3,0xe02c6684620,192,"mergeAttrs" +code-creation,Handler,3,0xe02c66846e0,192,"explicitRoot" +code-creation,Handler,3,0xe02c66847a0,192,"validator" +code-creation,Handler,3,0xe02c6684860,192,"xmlns" +code-creation,Handler,3,0xe02c6684920,192,"explicitChildren" +code-creation,Handler,3,0xe02c66849e0,192,"preserveChildrenOrder" +code-creation,Handler,3,0xe02c6684aa0,192,"childkey" +code-creation,Handler,3,0xe02c6684b60,192,"charsAsChildren" +code-creation,Handler,3,0xe02c6684c20,192,"async" +code-creation,Handler,3,0xe02c6684ce0,192,"strict" +code-creation,Handler,3,0xe02c6684da0,192,"attrNameProcessors" +code-creation,KeyedStoreIC,10,0xe02c6684e60,165,symbol("normal_ic_symbol" hash 21e6e11d) +code-creation,LazyCompile,0,0xe02c6684f20,284," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:7:45",0x36b97b176b90,~ +tick,0xd10273,617864,0,0x0,2,0xca0620,0xe02c6684ff1,0xe02c6683ef9,0xe02c6639502,0xe02c6639921,0xe02c654ca39,0xe02c65fd42b,0xe02c654397b,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c654d35f,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c6685040,220," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:304:41",0x36b97b177738,~ +code-creation,Function,0,0xe02c6685120,220," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:313:39",0x36b97b177940,~ +code-creation,Function,0,0xe02c6685200,252," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:327:43",0x36b97b177b68,~ +code-creation,Function,0,0xe02c6685300,252," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:358:44",0x36b97b177d70,~ +code-creation,Function,0,0xe02c6685400,252," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:449:25",0x36b97b177f78,~ +code-creation,Function,0,0xe02c6685500,196," /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:468:48",0x36b97b178170,~ +code-creation,LazyCompile,0,0xe02c66855e0,1764,"exports.Parser.Parser.reset /home/rgbm21/Documents/botkit/node_modules/xml2js/lib/xml2js.js:295:38",0x38cf5fc830e8,~ +code-creation,LazyCompile,0,0xe02c6685ce0,2052,"removeAllListeners events.js:328:32",0x31534fff8210,~ +code-creation,LazyCompile,0,0xe02c6686500,228,"sax.parser /home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js:2:25",0x38cf5fc8a388,~ +code-creation,LazyCompile,0,0xe02c6686600,2220,"SAXParser /home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js:44:22",0x38cf5fc89278,~ +code-creation,LazyCompile,0,0xe02c6686ec0,472,"clearBuffers /home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js:134:25",0x38cf5fc893c8,~ +code-creation,Handler,3,0xe02c66870a0,192,"sgmlDecl" +code-creation,KeyedStoreIC,10,0xe02c6687160,153,"sgmlDecl" +code-creation,Handler,3,0xe02c6687200,192,"textNode" +code-creation,Handler,3,0xe02c66872c0,192,"tagName" +code-creation,Handler,3,0xe02c6687380,192,"doctype" +code-creation,Handler,3,0xe02c6687440,192,"procInstName" +code-creation,Handler,3,0xe02c6687500,192,"procInstBody" +code-creation,Handler,3,0xe02c66875c0,192,"entity" +code-creation,Handler,3,0xe02c6687680,192,"attribName" +code-creation,Handler,3,0xe02c6687740,192,"attribValue" +code-creation,Handler,3,0xe02c6687800,192,"cdata" +code-creation,Handler,3,0xe02c66878c0,192,"script" +code-creation,LazyCompile,0,0xe02c6687a60,284,"emit /home/rgbm21/Documents/botkit/node_modules/sax/lib/sax.js:638:17",0x38cf5fc89908,~ +tick,0xd12040,618926,0,0xc3e13c,2,0xca0620,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6687b80,1188,"Slackbot /home/rgbm21/Documents/botkit/lib/SlackBot.js:6:18",0x2efb89ca4c70,~ +tick,0xd0a5a6,619990,0,0x7fffc2952650,2,0xca0620,0xe02c6687c6c,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6688040,5588,"Botkit /home/rgbm21/Documents/botkit/lib/CoreBot.js:13:16",0x2efb89c4b180,~ +code-creation,Handler,3,0xe02c6689620,141,"harmony_unicode_regexps" +code-creation,Handler,3,0xe02c66896c0,141,"harmony_regexps" +code-creation,Handler,3,0xe02c6689760,171,"RegExp" +code-creation,LazyCompile,0,0xe02c6689820,572,"EventEmitter2.create /home/rgbm21/Documents/botkit/lib/events.js:84:32",0x2efb89c86898,~ +code-creation,LazyCompile,0,0xe02c6689a60,380,"EventEmitter /home/rgbm21/Documents/botkit/node_modules/eventemitter2/lib/eventemitter2.js:38:24",0x2efb89c87de8,~ +code-creation,LazyCompile,0,0xe02c6689be0,780,"configure /home/rgbm21/Documents/botkit/node_modules/eventemitter2/lib/eventemitter2.js:22:21",0x2efb89c87d40,~ +code-creation,LazyCompile,0,0xe02c6689f00,564,"EventEmitter.onAny /home/rgbm21/Documents/botkit/node_modules/eventemitter2/lib/eventemitter2.js:405:42",0x2efb89c883d0,~ +code-creation,LazyCompile,0,0xe02c668a140,1000,"EventEmitter2.extendObject /home/rgbm21/Documents/botkit/lib/events.js:117:38",0x2efb89c86940,~ +tick,0xd10268,621057,0,0x7fffc2952450,2,0x2efb89c2d458,0xe02c65cb338,0xe02c668a489,0xe02c66888d7,0xe02c6687c6c,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c668a540,1764,"EventEmitter2.on /home/rgbm21/Documents/botkit/lib/events.js:53:39",0x2efb89c867f0,~ +code-creation,Handler,3,0xe02c668ac40,164,"off" +code-creation,Handler,3,0xe02c668ad00,164,"bind" +code-creation,LazyCompile,0,0xe02c668adc0,3308,"EventEmitter.off /home/rgbm21/Documents/botkit/node_modules/eventemitter2/lib/eventemitter2.js:422:40",0x2efb89c88478,~ +code-creation,Handler,3,0xe02c668bac0,204,"off" +code-creation,KeyedStoreIC,10,0xe02c668bba0,153,"off" +code-creation,Handler,3,0xe02c668bc40,164,"trigger" +code-creation,LazyCompile,0,0xe02c668bd00,1048,"EventEmitter2.trigger /home/rgbm21/Documents/botkit/lib/events.js:21:43",0x2efb89c86748,~ +code-creation,Handler,3,0xe02c668c120,204,"trigger" +code-creation,Handler,3,0xe02c668c200,164,"many" +code-creation,LazyCompile,0,0xe02c668c2c0,628,"EventEmitter.many /home/rgbm21/Documents/botkit/node_modules/eventemitter2/lib/eventemitter2.js:240:41",0x2efb89c881d8,~ +code-creation,Handler,3,0xe02c668c540,204,"many" +code-creation,Handler,3,0xe02c668c620,164,"once" +code-creation,LazyCompile,0,0xe02c668c6e0,300,"EventEmitter.once /home/rgbm21/Documents/botkit/node_modules/eventemitter2/lib/eventemitter2.js:235:41",0x2efb89c88130,~ +code-creation,Handler,3,0xe02c668c820,204,"once" +code-creation,LazyCompile,0,0xe02c668c900,268," node.js:232:48",0x2efb89c0d348,~ +code-creation,Function,0,0xe02c668ca20,1540," console.js:1:11",0x36b97b17f370,~ +code-creation,Script,0,0xe02c668d040,244,"console.js",0x36b97b17f4b0,~ +tick,0xaabb20,622121,0,0xdcd743,2,0xca0620,0xe02c668cf40,0xe02c6631fff,0xe02c668c9bf,0xe02c6688de6,0xe02c6687c6c,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c668d140,572," node.js:662:48",0x2efb89c13310,~ +code-creation,Handler,3,0xe02c668d380,138,"handle" +code-creation,StoreIC,9,0xe02c668d420,134,"handle" +code-creation,Handler,3,0xe02c668d4c0,192,"_connecting" +code-creation,StoreIC,9,0xe02c668d580,134,"_connecting" +code-creation,Handler,3,0xe02c668d620,192,"_hadError" +code-creation,StoreIC,9,0xe02c668d6e0,134,"_hadError" +code-creation,Handler,3,0xe02c668d780,192,"_handle" +code-creation,StoreIC,9,0xe02c668d840,134,"_handle" +code-creation,Handler,3,0xe02c668d8e0,192,"_parent" +code-creation,StoreIC,9,0xe02c668d9a0,134,"_parent" +code-creation,Handler,3,0xe02c668da40,192,"_host" +code-creation,StoreIC,9,0xe02c668db00,134,"_host" +code-creation,Handler,3,0xe02c668dba0,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,Handler,3,0xe02c668dc40,192,"objectMode" +code-creation,StoreIC,9,0xe02c668dd00,134,"objectMode" +code-creation,StoreIC,9,0xe02c668dda0,134,"objectMode" +code-creation,Handler,3,0xe02c668de40,184,"highWaterMark" +code-creation,StoreIC,9,0xe02c668df00,134,"highWaterMark" +code-creation,StoreIC,9,0xe02c668dfa0,134,"highWaterMark" +code-creation,Handler,3,0xe02c668e040,192,"buffer" +code-creation,StoreIC,9,0xe02c668e100,134,"buffer" +code-creation,Handler,3,0xe02c668e1a0,184,"length" +code-creation,StoreIC,9,0xe02c668e260,134,"length" +code-creation,Handler,3,0xe02c668e300,192,"pipes" +code-creation,StoreIC,9,0xe02c668e3c0,134,"pipes" +code-creation,Handler,3,0xe02c668e460,184,"pipesCount" +code-creation,StoreIC,9,0xe02c668e520,134,"pipesCount" +code-creation,Handler,3,0xe02c668e5c0,192,"flowing" +code-creation,StoreIC,9,0xe02c668e680,134,"flowing" +code-creation,Handler,3,0xe02c668e720,192,"ended" +code-creation,StoreIC,9,0xe02c668e7e0,134,"ended" +code-creation,Handler,3,0xe02c668e880,192,"endEmitted" +code-creation,StoreIC,9,0xe02c668e940,134,"endEmitted" +code-creation,Handler,3,0xe02c668e9e0,192,"reading" +code-creation,StoreIC,9,0xe02c668eaa0,134,"reading" +code-creation,Handler,3,0xe02c668eb40,192,"sync" +code-creation,StoreIC,9,0xe02c668ec00,134,"sync" +code-creation,Handler,3,0xe02c668eca0,192,"needReadable" +code-creation,StoreIC,9,0xe02c668ed60,134,"needReadable" +code-creation,Handler,3,0xe02c668ee00,192,"emittedReadable" +code-creation,StoreIC,9,0xe02c668eec0,134,"emittedReadable" +code-creation,Handler,3,0xe02c668ef60,192,"readableListening" +code-creation,StoreIC,9,0xe02c668f020,134,"readableListening" +code-creation,Stub,3,0xe02c668f0c0,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c668f1e0,192,"defaultEncoding" +code-creation,StoreIC,9,0xe02c668f2a0,134,"defaultEncoding" +code-creation,Stub,3,0xe02c668f340,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c668f460,192,"ranOut" +code-creation,StoreIC,9,0xe02c668f520,134,"ranOut" +code-creation,Stub,3,0xe02c668f5c0,244,"StoreTransitionStub" +code-creation,Handler,3,0xe02c668f6c0,184,"awaitDrain" +code-creation,StoreIC,9,0xe02c668f780,134,"awaitDrain" +code-creation,Stub,3,0xe02c668f820,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c668f940,192,"readingMore" +code-creation,StoreIC,9,0xe02c668fa00,134,"readingMore" +code-creation,Stub,3,0xe02c668faa0,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c668fbc0,192,"decoder" +code-creation,StoreIC,9,0xe02c668fc80,134,"decoder" +code-creation,Stub,3,0xe02c668fd20,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c668fe40,192,"encoding" +code-creation,StoreIC,9,0xe02c668ff00,134,"encoding" +code-creation,Handler,3,0xe02c668ffa0,216,"_readableState" +code-creation,StoreIC,9,0xe02c6690080,134,"_readableState" +code-creation,Handler,3,0xe02c6690120,192,"readable" +code-creation,StoreIC,9,0xe02c66901e0,134,"readable" +code-creation,Handler,3,0xe02c6690280,192,"_events" +code-creation,StorePolymorphicIC,9,0xe02c6690340,174,"_events" +tick,0xb47254,623184,0,0xba2006,0,0xbbb8f0,0xe02c650940d,0xe02c6508ed4,0xe02c656dd1e,0xe02c656d05a,0xe02c656cb88,0xe02c656c183,0xe02c656bd50,0xe02c656b7ee,0xe02c668d22e,0xe02c668cf40,0xe02c6631fff,0xe02c668c9bf,0xe02c6688de6,0xe02c6687c6c,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,3,0xe02c6690400,264,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6690520,184,"_eventsCount" +code-creation,StorePolymorphicIC,9,0xe02c66905e0,174,"_eventsCount" +code-creation,Handler,3,0xe02c66906a0,164,"_maxListeners" +code-creation,Handler,3,0xe02c6690760,192,"_maxListeners" +code-creation,StoreIC,9,0xe02c6690820,134,"_maxListeners" +code-creation,Handler,3,0xe02c66908c0,192,"objectMode" +code-creation,StoreIC,9,0xe02c6690980,134,"objectMode" +code-creation,StoreIC,9,0xe02c6690a20,134,"objectMode" +code-creation,Handler,3,0xe02c6690ac0,184,"highWaterMark" +code-creation,StoreIC,9,0xe02c6690b80,134,"highWaterMark" +code-creation,StoreIC,9,0xe02c6690c20,134,"highWaterMark" +code-creation,Handler,3,0xe02c6690cc0,192,"needDrain" +code-creation,StoreIC,9,0xe02c6690d80,134,"needDrain" +code-creation,Handler,3,0xe02c6690e20,192,"ending" +code-creation,StoreIC,9,0xe02c6690ee0,134,"ending" +code-creation,Handler,3,0xe02c6690f80,192,"ended" +code-creation,StoreIC,9,0xe02c6691040,134,"ended" +code-creation,Handler,3,0xe02c66910e0,192,"finished" +code-creation,StoreIC,9,0xe02c66911a0,134,"finished" +code-creation,Handler,3,0xe02c6691240,192,"decodeStrings" +code-creation,StoreIC,9,0xe02c6691300,134,"decodeStrings" +code-creation,Handler,3,0xe02c66913a0,192,"defaultEncoding" +code-creation,StoreIC,9,0xe02c6691460,134,"defaultEncoding" +code-creation,Handler,3,0xe02c6691500,184,"length" +code-creation,StoreIC,9,0xe02c66915c0,134,"length" +code-creation,Handler,3,0xe02c6691660,192,"writing" +code-creation,StoreIC,9,0xe02c6691720,134,"writing" +code-creation,Handler,3,0xe02c66917c0,184,"corked" +code-creation,StoreIC,9,0xe02c6691880,134,"corked" +code-creation,Handler,3,0xe02c6691920,192,"sync" +code-creation,StoreIC,9,0xe02c66919e0,134,"sync" +code-creation,Handler,3,0xe02c6691a80,192,"bufferProcessing" +code-creation,StoreIC,9,0xe02c6691b40,134,"bufferProcessing" +code-creation,Handler,3,0xe02c6691be0,192,"onwrite" +code-creation,StoreIC,9,0xe02c6691ca0,134,"onwrite" +code-creation,Handler,3,0xe02c6691d40,192,"writecb" +code-creation,StoreIC,9,0xe02c6691e00,134,"writecb" +code-creation,Stub,3,0xe02c6691ea0,244,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6691fa0,184,"writelen" +code-creation,StoreIC,9,0xe02c6692060,134,"writelen" +code-creation,Stub,3,0xe02c6692100,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6692220,192,"bufferedRequest" +code-creation,StoreIC,9,0xe02c66922e0,134,"bufferedRequest" +code-creation,Handler,3,0xe02c6692380,192,"lastBufferedRequest" +code-creation,StoreIC,9,0xe02c6692440,134,"lastBufferedRequest" +code-creation,Stub,3,0xe02c66924e0,244,"StoreTransitionStub" +code-creation,Handler,3,0xe02c66925e0,184,"pendingcb" +code-creation,StoreIC,9,0xe02c66926a0,134,"pendingcb" +code-creation,Handler,3,0xe02c6692740,192,"prefinished" +code-creation,StoreIC,9,0xe02c6692800,134,"prefinished" +code-creation,Stub,3,0xe02c66928a0,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c66929c0,192,"errorEmitted" +code-creation,StoreIC,9,0xe02c6692a80,134,"errorEmitted" +code-creation,Handler,3,0xe02c6692b20,192,"_writableState" +code-creation,StoreIC,9,0xe02c6692be0,134,"_writableState" +code-creation,Handler,3,0xe02c6692c80,192,"writable" +code-creation,StoreIC,9,0xe02c6692d40,134,"writable" +code-creation,StorePolymorphicIC,9,0xe02c6692de0,194,"domain" +code-creation,StorePolymorphicIC,9,0xe02c6692ec0,154,"_maxListeners" +code-creation,StoreIC,9,0xe02c6692f60,134,"readable" +code-creation,Handler,3,0xe02c6693000,192,"allowHalfOpen" +code-creation,StoreIC,9,0xe02c66930c0,134,"allowHalfOpen" +code-creation,Handler,3,0xe02c6693160,164,"once" +code-creation,Handler,3,0xe02c6693220,201,"listener" +code-creation,StoreIC,9,0xe02c6693300,134,"listener" +code-creation,Handler,3,0xe02c66933a0,164,"on" +code-creation,Handler,3,0xe02c6693460,192,"end" +code-creation,StoreIC,9,0xe02c6693520,134,"_handle" +code-creation,Handler,3,0xe02c66935c0,201,"finish" +code-creation,Handler,3,0xe02c66936a0,201,"_socketEnd" +code-creation,Handler,3,0xe02c6693780,192,"destroyed" +code-creation,StoreIC,9,0xe02c6693840,134,"destroyed" +code-creation,Handler,3,0xe02c66938e0,184,"bytesRead" +code-creation,StoreIC,9,0xe02c66939a0,134,"bytesRead" +code-creation,Handler,3,0xe02c6693a40,184,"_bytesDispatched" +code-creation,StoreIC,9,0xe02c6693b00,134,"_bytesDispatched" +code-creation,Handler,3,0xe02c6693ba0,192,"_sockname" +code-creation,StoreIC,9,0xe02c6693c60,134,"_sockname" +code-creation,Handler,3,0xe02c6693d00,216,"owner" +code-creation,StoreIC,9,0xe02c6693de0,134,"owner" +code-creation,Handler,3,0xe02c6693e80,204,"onread" +code-creation,StoreIC,9,0xe02c6693f60,134,"onread" +code-creation,Handler,3,0xe02c6694000,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,Handler,3,0xe02c66940a0,192,"_writev" +code-creation,StoreIC,9,0xe02c6694160,134,"_writev" +code-creation,Handler,3,0xe02c6694200,192,"_pendingData" +code-creation,StoreIC,9,0xe02c66942c0,134,"_pendingData" +tick,0xaa6aa4,624246,0,0xe02c656c770,0,0xbbb8f0,0xe02c656c774,0xe02c656bd50,0xe02c656b7ee,0xe02c668d22e,0xe02c668cf40,0xe02c6631fff,0xe02c668c9bf,0xe02c6688de6,0xe02c6687c6c,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c6694360,192,"_pendingEncoding" +code-creation,StoreIC,9,0xe02c6694420,134,"_pendingEncoding" +code-creation,StoreIC,9,0xe02c66944c0,134,"decodeStrings" +code-creation,StoreIC,9,0xe02c6694560,134,"allowHalfOpen" +code-creation,Handler,3,0xe02c6694600,164,"getWindowSize" +code-creation,Handler,3,0xe02c66946c0,184,"columns" +code-creation,StoreIC,9,0xe02c6694780,134,"columns" +code-creation,Handler,3,0xe02c6694820,184,"rows" +code-creation,StoreIC,9,0xe02c66948e0,134,"rows" +code-creation,Handler,3,0xe02c6694980,192,"_type" +code-creation,StoreIC,9,0xe02c6694a40,134,"_type" +code-creation,Handler,3,0xe02c6694ae0,184,"fd" +code-creation,StoreIC,9,0xe02c6694ba0,134,"fd" +code-creation,Stub,3,0xe02c6694c40,638,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6694ec0,192,"_isStdio" +code-creation,StoreIC,9,0xe02c6694f80,134,"_isStdio" +code-creation,Handler,3,0xe02c6695020,585,"hasOwnProperty" +code-creation,Handler,3,0xe02c6695280,164,"hasOwnProperty" +code-creation,LazyCompile,0,0xe02c6695340,316,"$getMaxListeners events.js:50:26",0x31534fff7790,~ +code-creation,Handler,3,0xe02c6695480,171,"process" +code-creation,LazyCompile,0,0xe02c6695540,1520,"Console console.js:5:17",0x36b97b17ec38,~ +code-creation,Handler,3,0xe02c6695b40,171,"Object" +code-creation,Handler,3,0xe02c6695c00,188,"length" +tick,0x9150c2,625318,1,0x8d8ba0,2,0xbb9fc0,0xe02c65cb338,0xe02c6695a44,0xe02c668cf9e,0xe02c6631fff,0xe02c668c9bf,0xe02c6688de6,0xe02c6687c6c,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6695cc0,460,"Console.log console.js:35:33",0x36b97b17ece0,~ +code-creation,Handler,3,0xe02c6695ea0,188,"name" +code-creation,Handler,3,0xe02c6695f60,164,"info" +code-creation,Handler,3,0xe02c6696020,204,"info" +code-creation,KeyedStoreIC,10,0xe02c6696100,153,"info" +code-creation,Handler,3,0xe02c66961a0,164,"warn" +code-creation,LazyCompile,0,0xe02c6696260,460,"Console.warn console.js:43:34",0x36b97b17ed88,~ +code-creation,Handler,3,0xe02c6696440,204,"warn" +code-creation,Handler,3,0xe02c6696520,164,"error" +code-creation,Handler,3,0xe02c66965e0,204,"error" +code-creation,Handler,3,0xe02c66966c0,164,"dir" +code-creation,LazyCompile,0,0xe02c6696780,580,"Console.dir console.js:51:33",0x36b97b17ee30,~ +code-creation,Handler,3,0xe02c66969e0,204,"dir" +code-creation,Handler,3,0xe02c6696ac0,164,"time" +code-creation,LazyCompile,0,0xe02c6696b80,372,"Console.time console.js:58:34",0x36b97b17eed8,~ +code-creation,Handler,3,0xe02c6696d00,204,"time" +code-creation,Handler,3,0xe02c6696de0,164,"timeEnd" +code-creation,LazyCompile,0,0xe02c6696ea0,828,"Console.timeEnd console.js:63:37",0x36b97b17ef80,~ +code-creation,Handler,3,0xe02c66971e0,204,"timeEnd" +code-creation,Handler,3,0xe02c66972c0,164,"trace" +code-creation,LazyCompile,0,0xe02c6697380,676,"trace console.js:74:41",0x36b97b17f028,~ +code-creation,Handler,3,0xe02c6697640,204,"trace" +code-creation,Handler,3,0xe02c6697720,164,"assert" +code-creation,LazyCompile,0,0xe02c66977e0,668,"Console.assert console.js:85:36",0x36b97b17f0d0,~ +code-creation,Handler,3,0xe02c6697a80,204,"assert" +tick,0xc16238,626381,0,0x20002000200020,2,0xca0620,0xe02c6688e1f,0xe02c6687c6c,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6697b80,732,"ConsoleLogger /home/rgbm21/Documents/botkit/lib/console_logger.js:31:23",0x2efb89c85018,~ +code-creation,LazyCompile,0,0xe02c6697e60,436,"normalizeLogLevel /home/rgbm21/Documents/botkit/lib/console_logger.js:21:27",0x2efb89c84f70,~ +code-creation,LazyCompile,0,0xe02c6698020,396," /home/rgbm21/Documents/botkit/lib/CoreBot.js:731:44",0x36b97b17b930,~ +code-creation,LazyCompile,0,0xe02c66981c0,828,"ConsoleLogger.log /home/rgbm21/Documents/botkit/lib/console_logger.js:36:22",0x36b97b1834f0,~ +code-creation,Handler,3,0xe02c6698500,204,"alert" +code-creation,KeyedStoreIC,10,0xe02c66985e0,153,"alert" +code-creation,Handler,3,0xe02c6698680,204,"critical" +code-creation,Handler,3,0xe02c6698760,204,"error" +code-creation,Handler,3,0xe02c6698840,204,"warning" +code-creation,Handler,3,0xe02c6698920,204,"notice" +code-creation,Handler,3,0xe02c6698a00,204,"info" +code-creation,Handler,3,0xe02c6698ae0,204,"debug" +code-creation,LazyCompile,0,0xe02c6698bc0,364,"Botkit.botkit.log /home/rgbm21/Documents/botkit/lib/CoreBot.js:728:26",0x36b97b17b888,~ +tick,0x7f6617779737,627551,0,0x7f661772ccaf,2,0xca0620,0xe02c66895be,0xe02c6687c6c,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6698d40,1548," native v8natives.js:1202:16",0x24617444b050,~ +code-creation,KeyedStoreIC,10,0xe02c6699360,134,"" +code-creation,Stub,11,0xe02c6699400,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6699480,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c6699500,1484,"ArraySlice native array.js:568:20",0x31534ff65988,~ +code-creation,LazyCompile,0,0xe02c6699ae0,736,"SimpleSlice native array.js:254:21",0x31534ff64980,~ +tick,0xc51b6e,628555,0,0x7fffc2950b60,2,0xca0620,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c6698ce9,0xe02c66895be,0xe02c6687c6c,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c6699dc0,2076,"exports.format util.js:13:26",0x2efb89c08c58,~ +code-creation,Stub,11,0xe02c669a5e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c669a660,636,"Socket.write net.js:615:34",0x2efb89c90400,~ +code-creation,LazyCompile,0,0xe02c669a8e0,820,"Writable.write _stream_writable.js:186:36",0x2efb89c320e0,~ +code-creation,LazyCompile,0,0xe02c669ac20,716,"validChunk _stream_writable.js:170:20",0x2efb89c315b8,~ +code-creation,Stub,8,0xe02c669af00,533,"CallICStub(args(7), FUNCTION, " +code-creation,Stub,8,0xe02c669b120,113,"CallICTrampolineStub" +code-creation,LazyCompile,0,0xe02c669b1a0,1044,"writeOrBuffer _stream_writable.js:255:23",0x2efb89c31708,~ +code-creation,LazyCompile,0,0xe02c669b5c0,444,"decodeChunk _stream_writable.js:243:21",0x2efb89c31660,~ +code-creation,LazyCompile,0,0xe02c669b780,548,"doWrite _stream_writable.js:284:17",0x2efb89c317b0,~ +code-creation,LazyCompile,0,0xe02c669b9c0,268,"Socket._write net.js:693:35",0x2efb89c905f8,~ +code-creation,LazyCompile,0,0xe02c669bae0,2616,"Socket._writeGeneric net.js:622:42",0x2efb89c904a8,~ +code-creation,LazyCompile,0,0xe02c669c520,448,"unrefTimer net.js:175:51",0x2efb89c8f590,~ +code-creation,LazyCompile,0,0xe02c669c6e0,2036,"exports._unrefActive timers.js:599:32",0x192859efdad8,~ +tick,0xbf8210,629615,0,0x7fffc2950350,2,0xca0620,0xe02c669c2dc,0xe02c669ba85,0xe02c669b93e,0xe02c669b566,0xe02c669abc4,0xe02c669a891,0xe02c6695e46,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c6698ce9,0xe02c66895be,0xe02c6687c6c,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c669cee0,1284,"createWriteReq net.js:697:24",0x2efb89c8ea68,~ +code-creation,LazyCompile,0,0xe02c669d400,228,"WritableState.onwrite _stream_writable.js:88:26",0x2efb89ca0a58,~ +code-creation,LazyCompile,0,0xe02c669d500,860,"onwrite _stream_writable.js:314:17",0x2efb89c319a8,~ +code-creation,LazyCompile,0,0xe02c669d860,356,"onwriteStateUpdate _stream_writable.js:307:28",0x2efb89c31900,~ +code-creation,LazyCompile,0,0xe02c669d9e0,572,"needFinish _stream_writable.js:447:20",0x2efb89c31c48,~ +code-creation,LazyCompile,0,0xe02c669dc20,944,"nextTick node.js:510:22",0x2efb89c12770,~ +code-creation,Handler,3,0xe02c669dfe0,164,"push" +code-creation,LazyCompile,0,0xe02c669e0a0,316,"TickObject node.js:504:24",0x2efb89c126c8,~ +code-creation,Stub,3,0xe02c669e1e0,514,"LoadFastElementStub" +code-creation,KeyedStoreIC,10,0xe02c669e400,134,"" +code-creation,Stub,11,0xe02c669e4a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xc1fe01,630687,0,0x7fffc2952560,0,0xc8dbe0,0xe02c651af6c,0xe02c651adf0,0xe02c6563d04,0xe02c6668237,0xe02c6608bff,0xe02c653c845,0xe02c653b60f,0xe02c65cf860,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc4a4bb,631779,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c669e520,572," /home/rgbm21/Documents/botkit/lib/Slackbot_worker.js:1:11",0x36b97b188748,~ +code-creation,Script,0,0xe02c669e760,244,"/home/rgbm21/Documents/botkit/lib/Slackbot_worker.js",0x36b97b188888,~ +tick,0x7f66177da4fd,632849,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c669e860,676," /home/rgbm21/Documents/botkit/node_modules/ws/index.js:1:11",0x36b97b189490,~ +code-creation,Script,0,0xe02c669eb20,244,"/home/rgbm21/Documents/botkit/node_modules/ws/index.js",0x36b97b1895d0,~ +tick,0xc94084,633899,0,0x0,0,0xc92f30,0xe02c65aa989,0xe02c666fcb4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc44280,634971,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c669ec20,4332," /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:1:11",0x36b97b18c240,~ +code-creation,Script,0,0xe02c669fd20,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js",0x36b97b18c380,~ +tick,0x919601,636036,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f266,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c669fe20,868," /home/rgbm21/Documents/botkit/node_modules/ultron/index.js:1:11",0x36b97b18d0f8,~ +code-creation,Script,0,0xe02c66a01a0,244,"/home/rgbm21/Documents/botkit/node_modules/ultron/index.js",0x36b97b18d238,~ +code-creation,LazyCompile,0,0xe02c66a02a0,2124,"StringSplitOnRegExp native string.js:441:29",0x31534ff7a640,~ +tick,0x7f6617abd59d,637103,0,0x0,0,0x7fffc2951f30,0xe02c65ed143,0xe02c6546ed0,0xe02c65fd3b5,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f2ce,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66a0b00,372," /home/rgbm21/Documents/botkit/node_modules/options/lib/options.js:1:11",0x36b97b18f5f8,~ +code-creation,Script,0,0xe02c66a0c80,244,"/home/rgbm21/Documents/botkit/node_modules/options/lib/options.js",0x36b97b18f738,~ +tick,0xc4328f,638167,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f336,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66a0d80,1884," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Sender.js:1:11",0x36b97b190a90,~ +code-creation,Script,0,0xe02c66a14e0,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/Sender.js",0x36b97b190bd0,~ +code-creation,Stub,2,0xe02c66a15e0,2726,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c66a20a0,2488,"StringSplitOnRegExp native string.js:441:29",0x31534ff7a640,* +tick,0x7f6617772205,639230,0,0x93c011,0,0x93c720,0xe02c666fcb4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66a1043,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f336,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66a2a60,276," /home/rgbm21/Documents/botkit/node_modules/ws/lib/ErrorCodes.js:1:11",0x36b97b1925c8,~ +code-creation,Script,0,0xe02c66a2b80,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/ErrorCodes.js",0x36b97b192708,~ +code-disable-optimization,"","TryCatchStatement" +code-creation,Function,0,0xe02c66a2c80,388," /home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferUtil.js:1:11",0x36b97b192c38, +code-creation,Script,0,0xe02c66a2e20,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferUtil.js",0x36b97b192d78,~ +code-creation,Stub,11,0xe02c66a2f20,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66a2fa0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-disable-optimization,"Error","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c66a3020,548,"Error native messages.js:660:21",0x31534ff624d8, +tick,0xe02c657d894,640303,0,0x4,0,0xe02c65399dc,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c66a2d56,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66a10ab,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f336,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66a3260,388," /home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferUtil.fallback.js:1:11",0x36b97b1937b8,~ +code-creation,Script,0,0xe02c66a3400,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferUtil.fallback.js",0x36b97b1938f8,~ +tick,0xfdc7e1,641366,0,0x7fffc2951b20,0,0x7fffc2951b78,0xe02c66094a6,0xe02c6618f56,0xe02c6557254,0xe02c653b6d4,0xe02c6539adb,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c66a112f,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f336,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66a3500,1436," /home/rgbm21/Documents/botkit/node_modules/ws/lib/PerMessageDeflate.js:1:11",0x36b97b194bb8,~ +tick,0xbf6875,642456,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66a112f,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f336,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Script,0,0xe02c66a3aa0,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/PerMessageDeflate.js",0x36b97b194cf8,~ +tick,0xd1026b,643490,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f39e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66a3ba0,3572," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:1:11",0x36b97b197c80,~ +code-creation,Script,0,0xe02c66a49a0,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js",0x36b97b197dc0,~ +tick,0xc5323e,644555,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66a3dd2,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f39e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-disable-optimization,"","TryCatchStatement" +code-creation,Function,0,0xe02c66a4aa0,388," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Validation.js:1:11",0x36b97b1982b8, +code-creation,Script,0,0xe02c66a4c40,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/Validation.js",0x36b97b1983f8,~ +code-creation,LazyCompile,0,0xe02c66a4d40,1220,"slice native string.js:390:21",0x31534ff7a4d0,~ +code-creation,Handler,3,0xe02c66a5220,171,"Error" +code-creation,Handler,3,0xe02c66a52e0,192,"code" +code-creation,StoreIC,9,0xe02c66a53a0,134,"code" +code-creation,LazyCompile,1,0xe02c66a5440,1219,"slice native string.js:390:21",0x31534ff7a4d0,* +tick,0xbffa40,645623,1,0xe38260,4,0x93e0b0,0xe02c654a478,0xe02c65474e2,0xe02c65fd3b5,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66a4b76,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c66a3dd2,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f39e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66a5920,316," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Validation.fallback.js:1:11",0x36b97b199ee0,~ +code-creation,Script,0,0xe02c66a5a60,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/Validation.fallback.js",0x36b97b19a020,~ +code-creation,LazyCompile,0,0xe02c66a5b60,1332,"subarray native typedarray.js:167:28",0x31534ff866c0,~ +code-creation,Function,0,0xe02c66a60a0,524," /home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferPool.js:1:11",0x36b97b19b770,~ +code-creation,Script,0,0xe02c66a62c0,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferPool.js",0x36b97b19b8b0,~ +tick,0xbdb792,647019,0,0x2ed15d8,2,0xcd3440,0xe02c65eb1f2,0xe02c663845a,0xe02c65399dc,0xe02c6539417,0xe02c654e307,0xe02c654e0fe,0xe02c669f406,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,1,0xe02c66a63c0,1621,"subarray native typedarray.js:167:28",0x31534ff866c0,* +code-creation,Function,0,0xe02c66a6a20,1068," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Sender.hixie.js:1:11",0x36b97b19f1f0,~ +code-creation,Script,0,0xe02c66a6e60,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/Sender.hixie.js",0x36b97b19f330,~ +tick,0xbb5294,648195,0,0x7fffc2951a80,0,0xbb9fc0,0xe02c6517a62,0xe02c66a6c20,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f406,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc4992f,649212,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669f46e,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66a6f60,1164," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.hixie.js:1:11",0x36b97b1a0138,~ +code-creation,Script,0,0xe02c66a7400,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.hixie.js",0x36b97b1a0278,~ +code-creation,Function,0,0xe02c66a7500,412," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Extensions.js:1:11",0x36b97b1a0a58,~ +code-creation,Script,0,0xe02c66a76a0,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/Extensions.js",0x36b97b1a0b98,~ +code-creation,LazyCompile,0,0xe02c66a77a0,268,"each /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:90:66",0x36b97b18b570,~ +code-creation,Handler,3,0xe02c66a78c0,184,"OPEN" +code-creation,KeyedStoreIC,10,0xe02c66a7980,153,"OPEN" +code-creation,KeyedStoreIC,10,0xe02c66a7a20,153,"OPEN" +code-creation,Handler,3,0xe02c66a7ac0,184,"CLOSING" +code-creation,Handler,3,0xe02c66a7b80,184,"CLOSED" +tick,0x7f66177674a0,650278,0,0x8e19bd,0,0xa6397f,0xe02c669fba5,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e90a,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66a7c40,484," /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:380:55",0x36b97b18bc20,~ +code-creation,Stub,11,0xe02c66a7e60,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c66a7ee0,171,"Object" +code-creation,StoreIC,9,0xe02c66a7fa0,134,"get" +code-creation,StoreIC,9,0xe02c66a8040,134,"set" +code-creation,LazyCompile,1,0xe02c66a80e0,618,"require internal/module.js:11:19",0x2efb89c46b68,* +code-creation,LazyCompile,1,0xe02c66a8360,538,"Module.require module.js:350:36",0x2efb89c1ae10,* +tick,0xa7dc4a,651340,0,0x7fffc2952120,0,0xc8dbe0,0xe02c651af6c,0xe02c651adf0,0xe02c6563d04,0xe02c666fd1c,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e988,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66a8580,1900," /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocketServer.js:1:11",0x36b97b1a3a30,~ +code-creation,Script,0,0xe02c66a8d00,244,"/home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocketServer.js",0x36b97b1a3b70,~ +tick,0xe02c65569dc,652404,0,0xffffffffffffff76,0,0x0,0xe02c65eb1f2,0xe02c6638a03,0xe02c65399dc,0xe02c6539417,0xe02c66a82ea,0xe02c66a89ba,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e988,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c669e5c7,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,11,0xe02c66a8e00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c66a8e80,186,"slice" +tick,0xad91a6,653468,1,0xe32800,2,0x93d1a0,0xe02c65f7784,0xe02c654c4a1,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c66a852a,0xe02c654e0fe,0xe02c669e6a0,0xe02c654ca39,0xe02c65fd42b,0xe02c66700f4,0xe02c65397ee,0xe02c654e307,0xe02c654e0fe,0xe02c6687d10,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66a8f40,356," /home/rgbm21/Documents/botkit/lib/Slack_web_api.js:1:11",0x36b97b1a53a0,~ +code-creation,Script,0,0xe02c66a90c0,244,"/home/rgbm21/Documents/botkit/lib/Slack_web_api.js",0x36b97b1a54e0,~ +code-creation,LazyCompile,0,0xe02c66a91c0,380,"Botkit.botkit.defineBot /home/rgbm21/Documents/botkit/lib/CoreBot.js:600:32",0x36b97b17b348,~ +code-creation,LazyCompile,0,0xe02c66a9340,388,"Slackbot.slack_botkit.handleSlackEvents /home/rgbm21/Documents/botkit/lib/SlackBot.js:415:46",0x36b97b17a010,~ +code-creation,Handler,3,0xe02c66a94e0,164,"apply" +code-creation,Handler,3,0xe02c66a95a0,164,"concat" +code-creation,Handler,3,0xe02c66a9660,164,"call" +code-creation,Handler,3,0xe02c66a9720,185,"length" +code-creation,StoreIC,9,0xe02c66a97e0,134,"length" +code-creation,Handler,3,0xe02c66a9880,164,"write" +code-creation,Stub,3,0xe02c66a9940,184,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c66a9a00,134,"pendingcb" +code-creation,Stub,3,0xe02c66a9aa0,184,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c66a9b60,134,"length" +code-creation,Stub,3,0xe02c66a9c00,184,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c66a9cc0,134,"writelen" +code-creation,Stub,3,0xe02c66a9d60,224,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c66a9e40,134,"writecb" +code-creation,StoreIC,9,0xe02c66a9ee0,134,"writing" +code-creation,StoreIC,9,0xe02c66a9f80,134,"sync" +code-creation,Handler,3,0xe02c66aa020,164,"_write" +code-creation,Handler,3,0xe02c66aa0e0,164,"_writeGeneric" +code-creation,StoreIC,9,0xe02c66aa1a0,134,"_pendingData" +code-creation,StoreIC,9,0xe02c66aa240,134,"_pendingEncoding" +code-creation,Handler,3,0xe02c66aa2e0,164,"_unrefTimer" +code-creation,Handler,3,0xe02c66aa3a0,145,symbol("nonexistent_symbol" hash 327c89d) +tick,0x7f661778ee82,654540,0,0x7fffc2951908,0,0xbb9fc0,0xe02c669c77b,0xe02c669c621,0xe02c669bd00,0xe02c669ba85,0xe02c669b93e,0xe02c669b566,0xe02c669abc4,0xe02c669a891,0xe02c6695e46,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c6698ce9,0xe02c66a93ff,0xe02c6687fce,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c66aa440,216,"handle" +code-creation,StoreIC,9,0xe02c66aa520,134,"handle" +code-creation,Handler,3,0xe02c66aa5c0,201,"oncomplete" +code-creation,StoreIC,9,0xe02c66aa6a0,134,"oncomplete" +code-creation,Handler,3,0xe02c66aa740,192,"async" +code-creation,StoreIC,9,0xe02c66aa800,134,"async" +code-creation,Handler,3,0xe02c66aa8a0,164,"writeUtf8String" +code-creation,Stub,3,0xe02c66aa960,188,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c66aaa20,134,"_bytesDispatched" +code-creation,StoreIC,9,0xe02c66aaac0,134,"writing" +code-creation,StoreIC,9,0xe02c66aab60,134,"writecb" +code-creation,StoreIC,9,0xe02c66aac00,134,"length" +code-creation,StoreIC,9,0xe02c66aaca0,134,"writelen" +code-creation,Handler,3,0xe02c66aad40,171,"process" +code-creation,Handler,3,0xe02c66aae00,164,"push" +code-creation,Handler,3,0xe02c66aaec0,201,"callback" +code-creation,StoreIC,9,0xe02c66aafa0,134,"callback" +code-creation,Handler,3,0xe02c66ab040,192,"domain" +code-creation,StoreIC,9,0xe02c66ab100,134,"domain" +code-creation,Handler,3,0xe02c66ab1a0,192,"args" +code-creation,StoreIC,9,0xe02c66ab260,134,"args" +code-creation,StoreIC,9,0xe02c66ab300,134,"sync" +code-creation,Stub,3,0xe02c66ab3a0,600,"KeyedLoadSloppyArgumentsStub" +code-creation,LazyCompile,0,0xe02c66ab600,2340,"EventEmitter.on /home/rgbm21/Documents/botkit/node_modules/eventemitter2/lib/eventemitter2.js:349:39",0x2efb89c88328,~ +code-creation,LazyCompile,0,0xe02c66abf40,4768,"EventEmitter.emit /home/rgbm21/Documents/botkit/node_modules/eventemitter2/lib/eventemitter2.js:261:41",0x2efb89c88280,~ +code-creation,KeyedStoreIC,10,0xe02c66ad1e0,134,"" +tick,0x7f66177da4fd,655596,0,0x0,0,0xbbbe40,0xe02c66ac27c,0xe02c66ab8a0,0xe02c668a7fc,0xe02c6699016,0xe02c66a9480,0xe02c6687fce,0xe02c654d412,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66ad280,660," /home/rgbm21/Documents/botkit/lib/events.js:92:21",0x36b97b17c7f0,~ +code-creation,Stub,11,0xe02c66ad520,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c66ad5a0,180,"disabled /home/rgbm21/Documents/botkit/node_modules/debug/debug.js:65:20",0x3c4a56a83778,~ +code-creation,LazyCompile,0,0xe02c66ad660,348,"Botkit.botkit.spawn /home/rgbm21/Documents/botkit/lib/CoreBot.js:607:28",0x36b97b17b3f0,~ +tick,0xc2cdf8,656665,0,0x2dea170,2,0xccf980,0xe02c66ad73a,0xe02c654d53a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66ad7c0,2300,"module.exports /home/rgbm21/Documents/botkit/lib/Slackbot_worker.js:5:26",0x36b97b188580,~ +tick,0x7f6617764a66,657738,0,0x49,2,0xca0620,0xe02c66ad9b9,0xe02c66ad73a,0xe02c654d53a,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66ae0c0,3868,"module.exports /home/rgbm21/Documents/botkit/lib/Slack_web_api.js:3:26",0x36b97b1a5218,~ +code-creation,LazyCompile,0,0xe02c66aefe0,412,"bot.startRTM /home/rgbm21/Documents/botkit/lib/Slackbot_worker.js:52:28",0x36b97b1a8418,~ +code-creation,LazyCompile,0,0xe02c66af180,268,"slack_api.rtm.start /home/rgbm21/Documents/botkit/lib/Slack_web_api.js:212:28",0x36b97b1abbc0,~ +code-creation,LazyCompile,0,0xe02c66af2a0,748,"slack_api.callAPI /home/rgbm21/Documents/botkit/lib/Slack_web_api.js:9:26",0x36b97b1a97a8,~ +tick,0x7f66177da4fd,658801,0,0x0,2,0xca0620,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,11,0xe02c66af5a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66af620,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c66af6a0,185,"length" +code-creation,StoreIC,9,0xe02c66af760,134,"length" +code-creation,LazyCompile,0,0xe02c66af800,2388,"StringReplaceGlobalRegExpWithFunction native string.js:297:47",0x31534ff7a238,~ +code-creation,RegExp,5,0xe02c66b0160,855,"%[sdj%]" +code-disable-optimization,"formatValue","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c66b04c0,8204,"formatValue util.js:209:21",0x2efb89c07aa0, +code-creation,LazyCompile,0,0xe02c66b24e0,2364,"formatPrimitive util.js:418:25",0x2efb89c07b48,~ +code-creation,LazyCompile,0,0xe02c66b2e20,584,"arrayToHash util.js:163:21",0x2efb89c07800,~ +code-creation,Handler,3,0xe02c66b3080,172,"simple_latest" +code-creation,KeyedStoreIC,10,0xe02c66b3140,153,"simple_latest" +code-creation,Handler,3,0xe02c66b31e0,172,"token" +code-creation,LazyCompile,0,0xe02c66b32a0,300,"isDate util.js:685:16",0x2efb89c08868,~ +code-creation,LazyCompile,0,0xe02c66b33e0,196,"valueOf native v8natives.js:108:23",0x31534ff56448,~ +code-creation,LazyCompile,0,0xe02c66b34c0,776,"getConstructorOf util.js:175:26",0x2efb89c078a8,~ +code-creation,LazyCompile,0,0xe02c66b37e0,292,"getOwnPropertyDescriptor native v8natives.js:666:40",0x31534ff59538,~ +code-creation,LazyCompile,0,0xe02c66b3920,852,"GetOwnPropertyJS native v8natives.js:414:26",0x31534ff57fa8,~ +code-creation,LazyCompile,0,0xe02c66b3c80,1100,"FromPropertyDescriptor native v8natives.js:201:32",0x31534ff57248,~ +code-creation,Handler,3,0xe02c66b40e0,141,"$toName" +tick,0xd18893,661847,0,0x7fffc2951d40,2,0xca0620,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0x8e0d11,661866,0,0x7fffc2951f78,0,0xbb9fc0,0xe02c66b3668,0xe02c66b12d2,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66b4180,228,"isArray native array.js:1212:22",0x31534ff63ed8,~ +code-creation,LazyCompile,0,0xe02c66b4280,724,"inspectPromise util.js:199:24",0x2efb89c079f8,~ +code-creation,LazyCompile,0,0xe02c66b4560,412,"ensureDebugIsInitialized util.js:191:34",0x2efb89c07950,~ +code-creation,LazyCompile,0,0xe02c66b4700,300,"exports.runInDebugContext vm.js:38:37",0x2efb89c1c790,~ +tick,0xad4ef1,662926,1,0xe316d0,3,0x93e0b0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc547e6,664331,1,0xe316d0,2,0x93e0b0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd10530,665863,1,0xe316d0,2,0x93e0b0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd12041,666189,1,0xe316d0,2,0x93e0b0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc3ee33,667232,1,0xe316d0,2,0x93e0b0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc2cdf8,668290,1,0xe316d0,2,0x93e0b0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66b7ee0,30948," native mirrors.js:2:10",0x36b97b1eaae0,~ +code-creation,Script,0,0xe02c66bf7e0,244,"native mirrors.js",0x36b97b1eac20,~ +code-creation,Handler,3,0xe02c66bf8e0,192,"next" +code-creation,StoreIC,9,0xe02c66bf9a0,134,"next" +code-creation,LazyCompile,0,0xe02c66bfa40,412,"inherits native mirrors.js:125:18",0x36b97b1ddf78,~ +code-creation,LazyCompile,0,0xe02c66bfbe0,180,"w native mirrors.js:126:15",0x36b97b1eb8b8,~ +code-creation,Handler,3,0xe02c66bfca0,185,"prototype" +code-creation,StoreIC,9,0xe02c66bfd60,134,"prototype" +code-creation,Handler,3,0xe02c66bfe00,192,"super_" +code-creation,StoreIC,9,0xe02c66bfec0,134,"super_" +code-creation,Handler,3,0xe02c66bff60,185,"prototype" +code-creation,StoreIC,9,0xe02c66c0020,134,"prototype" +code-creation,StoreIC,9,0xe02c66c00c0,134,"constructor" +code-creation,StorePolymorphicIC,9,0xe02c66c0160,154,"constructor" +code-creation,StorePolymorphicIC,9,0xe02c66c0200,174,"constructor" +code-creation,StorePolymorphicIC,9,0xe02c66c02c0,194,"constructor" +tick,0xa8d8c2,669357,0,0x2,0,0xbbb8f0,0xe02c66bb5fc,0xe316d0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66c03a0,672,"InstallConstants native prologue.js:37:26",0x31534ff9d550,~ +code-creation,LazyCompile,0,0xe02c66c0640,220,"Export native prologue.js:9:16",0x31534ff9cfd0,~ +code-creation,LazyCompile,0,0xe02c66c0720,204," native mirrors.js:1803:18",0x36b97b1e80c0,~ +tick,0xd1207a,670480,1,0xe316d0,2,0xbbb8f0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd0e1c3,671546,1,0xe316d0,2,0xbbb8f0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xd1879e,672608,1,0xe316d0,2,0xbbb8f0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c66c0800,1034,"FastNewContextStub" +code-creation,Function,0,0xe02c66c0c20,1660," native debug.js:1803:52",0x36b97b1b2468,~ +tick,0xbfb127,673670,1,0xe316d0,2,0xbbb8f0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66c12a0,19508," native debug.js:2:10",0x36b97b1b3848,~ +code-creation,Script,0,0xe02c66c5ee0,244,"native debug.js",0x36b97b1b3988,~ +code-creation,Handler,3,0xe02c66c5fe0,141,"$toString" +code-creation,LazyCompile,0,0xe02c66c6080,204," native debug.js:1897:18",0x36b97b1b26a0,~ +tick,0xa907a6,674843,1,0xe316d0,2,0xbbb8f0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc3d71f,675797,1,0xe316d0,2,0xbbb8f0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Function,0,0xe02c66c6160,3516," native liveedit.js:2:10",0x2c68c5904690,~ +code-creation,Script,0,0xe02c66c6f20,244,"native liveedit.js",0x2c68c59047d0,~ +code-creation,LazyCompile,0,0xe02c66c7020,560,"PostDebug native prologue.js:176:19",0x31534ff9e020,~ +code-creation,LazyCompile,0,0xe02c66c7260,268," native liveedit.js:9:18",0x36b97b1ffcb8,~ +code-creation,LazyCompile,0,0xe02c66c7380,556," native debug.js:21:18",0x36b97b1f5a68,~ +code-creation,LazyCompile,0,0xe02c66c75c0,444," native mirrors.js:11:18",0x36b97b1df868,~ +tick,0x7f66177dff9c,676872,1,0xe316d0,3,0xbbb8f0,0xe02c66b47de,0xe02c66b467b,0xe02c66b4321,0xe02c66b17a3,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66c7780,4448,"MakeMirror native mirrors.js:62:20",0x36b97b1ddd80,~ +code-creation,LazyCompile,0,0xe02c66c88e0,324,"StringMirror native mirrors.js:295:22",0x36b97b1de410,~ +code-creation,LazyCompile,0,0xe02c66c8a40,468,"ValueMirror native mirrors.js:242:21",0x36b97b1de0c8,~ +code-creation,LazyCompile,0,0xe02c66c8c20,204,"Mirror native mirrors.js:152:16",0x36b97b1de020,~ +code-creation,LazyCompile,0,0xe02c66c8d00,308,"Mirror.allocateHandle_ native mirrors.js:233:42",0x36b97b1e0a40,~ +code-creation,LazyCompile,0,0xe02c66c8e40,212,"Mirror.handle native mirrors.js:252:33",0x36b97b1e0c38,~ +code-creation,KeyedStoreIC,10,0xe02c66c8f20,134,"" +code-creation,LazyCompile,0,0xe02c66c8fc0,332,"ClearMirrorCache native mirrors.js:50:26",0x36b97b1ddc30,~ +code-creation,Script,0,0xe02c66c9120,228,"",0x2c68c5905d90,~ +code-creation,LazyCompile,0,0xe02c66c9220,300,"isRegExp util.js:675:18",0x2efb89c08718,~ +code-creation,LazyCompile,0,0xe02c66c9360,420,"isError internal/util.js:71:35",0x192859ef5888,~ +code-creation,LazyCompile,0,0xe02c66c9520,356,"objectToString internal/util.js:75:49",0x192859ef5930,~ +code-creation,LazyCompile,0,0xe02c66c96a0,308,"formatObject util.js:463:22",0x2efb89c07d40,~ +code-creation,LazyCompile,0,0xe02c66c97e0,268," util.js:464:27",0x2c68c59063d0,~ +code-creation,LazyCompile,0,0xe02c66c9900,4900,"formatProperty util.js:555:24",0x2efb89c08130,~ +code-creation,Handler,3,0xe02c66cac40,164,"setValue" +tick,0x7f661772d22e,677945,0,0x7fffc22f4300,0,0xbb9fc0,0xe02c65081f7,0xe02c66b3c53,0xe02c66b3886,0xe02c66c99d8,0xe02c66c989d,0xe02c65ef731,0xe02c65ef19c,0xe02c66c978c,0xe02c66b2415,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c66cad00,164,"setWritable" +code-creation,Handler,3,0xe02c66cadc0,164,"getValue" +code-creation,StoreIC,9,0xe02c66cae80,134,"value" +code-creation,Handler,3,0xe02c66caf20,164,"isWritable" +code-creation,StoreIC,9,0xe02c66cafe0,134,"writable" +code-creation,Handler,3,0xe02c66cb080,164,"isEnumerable" +code-creation,StoreIC,9,0xe02c66cb140,134,"enumerable" +code-creation,Handler,3,0xe02c66cb1e0,164,"isConfigurable" +code-creation,StoreIC,9,0xe02c66cb2a0,134,"configurable" +code-creation,LazyCompile,0,0xe02c66cb340,340,"hasOwnProperty util.js:775:24",0x2efb89c08bb0,~ +code-creation,Stub,14,0xe02c66cb4a0,248,"ToBooleanStub(Bool,SpecObject)" +code-creation,Handler,3,0xe02c66cb5a0,141,"$toPrimitive" +code-creation,Handler,3,0xe02c66cb640,141,"$toString" +code-creation,Stub,2,0xe02c66cb6e0,270,"BinaryOpWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Generic->String)" +code-creation,Stub,11,0xe02c66cb800,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Generic->String)" +code-creation,Stub,11,0xe02c66cb880,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Generic->String)" +code-creation,LazyCompile,0,0xe02c66cb900,188,"stylizeNoColor util.js:158:24",0x2efb89c07758,~ +code-creation,Stub,11,0xe02c66cb9c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,RegExp,5,0xe02c66cba40,1032,"^""([a-zA-Z_][a-zA-Z_0-9]*)""$" +code-creation,KeyedStoreIC,10,0xe02c66cbe60,134,"" +code-creation,Stub,11,0xe02c66cbf00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66cbf80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c66cc000,171,"Object" +code-creation,Handler,3,0xe02c66cc0c0,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,Handler,3,0xe02c66cc160,164,"call" +code-creation,Handler,3,0xe02c66cc220,164,"indexOf" +code-disable-optimization,"STRING_ADD_LEFT","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c66cc2e0,828,"STRING_ADD_LEFT native runtime.js:128:25",0x31534ff6aaa8, +code-creation,Handler,3,0xe02c66cc620,186,"indexOf" +code-creation,Handler,3,0xe02c66cc6e0,171,"JSON" +code-creation,Handler,3,0xe02c66cc7a0,186,"match" +code-creation,Handler,3,0xe02c66cc860,186,"substr" +code-creation,Stub,14,0xe02c66cc920,268,"ToBooleanStub(Bool,SpecObject,String)" +code-creation,RegExp,5,0xe02c66cca40,998,"^""|""$" +code-creation,Stub,11,0xe02c66cce40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66ccec0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xa8c9ea,679002,0,0x7fffc2951ca0,0,0xcf0380,0xe02c653fa35,0xe02c66c9f5b,0xe02c66c989d,0xe02c65ef731,0xe02c65ef19c,0xe02c66c978c,0xe02c66b2415,0xe02c65708c9,0xe02c669a459,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c66af477,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66ccf40,956,"reduceToSingleString util.js:615:30",0x2efb89c081d8,~ +code-creation,LazyCompile,0,0xe02c66cd300,540," util.js:616:38",0x2c68c5907c68,~ +code-creation,RegExp,5,0xe02c66cd520,970,"\\u001b\\[\\d\\d?m" +code-creation,Handler,3,0xe02c66cd900,186,"replace" +code-creation,Stub,11,0xe02c66cd9c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66cda40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66cdac0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66cdb40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66cdbc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66cdc40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66cdcc0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66cdd40,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c66cddc0,340," /home/rgbm21/Documents/botkit/node_modules/request/index.js:60:19",0x2b24593c3b38,~ +code-creation,LazyCompile,0,0xe02c66cdf20,764,"initParams /home/rgbm21/Documents/botkit/node_modules/request/index.js:26:20",0x2efb89ca6478,~ +code-creation,LazyCompile,0,0xe02c66ce220,2212,"extend /home/rgbm21/Documents/botkit/node_modules/extend/index.js:34:33",0x2efb89ca79c0,~ +code-creation,Stub,13,0xe02c66ceae0,232,"CompareNilICStub(NullValue)(MonomorphicMap)" +code-creation,Stub,13,0xe02c66cebe0,232,"CompareNilICStub(NullValue)(MonomorphicMap)" +code-creation,Stub,12,0xe02c66cece0,677,"CompareICStub" +code-creation,LazyCompile,0,0xe02c66cefa0,692,"request /home/rgbm21/Documents/botkit/node_modules/request/index.js:44:18",0x2efb89ca6520,~ +code-creation,Handler,3,0xe02c66cf260,192,"uri" +code-creation,KeyedStoreIC,10,0xe02c66cf320,153,"uri" +code-creation,Handler,3,0xe02c66cf3c0,201,"callback" +code-creation,Handler,3,0xe02c66cf4a0,192,"method" +code-creation,StoreIC,9,0xe02c66cf560,134,"callback" +tick,0xafbb8c,680067,0,0x7fffc2952340,0,0xbbb8f0,0xe02c66ce1d2,0xe02c66cf0d6,0xe02c66cdec9,0xe02c66af500,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66b4840,1404,"Request /home/rgbm21/Documents/botkit/node_modules/request/request.js:107:18",0x2b24593c6e58,~ +code-creation,Handler,3,0xe02c66b4dc0,192,"domain" +code-creation,Handler,3,0xe02c66b4e80,164,"_events" +code-creation,Handler,3,0xe02c66b4f40,192,"_events" +code-creation,StorePolymorphicIC,9,0xe02c66b5000,194,"_events" +code-creation,Handler,3,0xe02c66b50e0,184,"_eventsCount" +code-creation,StorePolymorphicIC,9,0xe02c66b51a0,194,"_eventsCount" +code-creation,Handler,3,0xe02c66b5280,164,"_maxListeners" +code-creation,Handler,3,0xe02c66b5340,192,"_maxListeners" +code-creation,StorePolymorphicIC,9,0xe02c66b5400,174,"_maxListeners" +code-creation,LazyCompile,0,0xe02c66b54c0,976,"filterForNonReserved /home/rgbm21/Documents/botkit/node_modules/request/request.js:42:30",0x2b24593c6b10,~ +code-creation,Handler,3,0xe02c66b58a0,201,"callback" +code-creation,KeyedStoreIC,10,0xe02c66b5980,153,"callback" +code-creation,Handler,3,0xe02c66b5a20,192,"method" +code-creation,Handler,3,0xe02c66b5ae0,192,"uri" +code-creation,Handler,3,0xe02c66b5ba0,204,"callback" +code-creation,Handler,3,0xe02c66b5c80,192,"method" +code-creation,LazyCompile,0,0xe02c66b5d40,1080,"filterOutReservedFunctions /home/rgbm21/Documents/botkit/node_modules/request/request.js:56:36",0x2b24593c6bb8,~ +code-creation,Handler,3,0xe02c66b6180,201,"callback" +code-creation,KeyedStoreIC,10,0xe02c66b6260,153,"callback" +code-creation,Handler,3,0xe02c66b6300,192,"method" +code-creation,LazyCompile,0,0xe02c66b63c0,316,"Querystring /home/rgbm21/Documents/botkit/node_modules/request/lib/querystring.js:7:22",0x3c4a56a50370,~ +code-creation,LazyCompile,0,0xe02c66b6500,348,"Auth /home/rgbm21/Documents/botkit/node_modules/request/lib/auth.js:11:15",0x3c4a56a739d8,~ +code-creation,LazyCompile,0,0xe02c66b6660,228,"OAuth /home/rgbm21/Documents/botkit/node_modules/request/lib/oauth.js:11:16",0x3c4a56a752f0,~ +code-creation,LazyCompile,0,0xe02c66b6760,316,"Multipart /home/rgbm21/Documents/botkit/node_modules/request/lib/multipart.js:8:20",0x3c4a56a773b8,~ +code-creation,LazyCompile,0,0xe02c66b68a0,1224,"v4 /home/rgbm21/Documents/botkit/node_modules/node-uuid/uuid.js:214:14",0x2efb89c69128,~ +tick,0xbd9dbf,681134,0,0x7fffc2951bc0,0,0xbbbe40,0xe02c66b6b58,0xe02c66b680c,0xe02c66b4ca0,0xe02c66cf211,0xe02c66cdec9,0xe02c66af500,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,2,0xe02c66b6d80,424,"StoreFastElementStub" +code-creation,KeyedStoreIC,10,0xe02c66b6f40,134,"" +code-creation,LazyCompile,0,0xe02c66b6fe0,1684,"unparse /home/rgbm21/Documents/botkit/node_modules/node-uuid/uuid.js:103:19",0x2efb89c68fd8,~ +code-creation,Stub,11,0xe02c66b7680,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7700,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7780,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7800,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7880,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7900,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7980,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7a00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7a80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7b00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7b80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7c00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7c80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7d00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7d80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66b7e00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66cf600,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66cf680,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66cf700,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c66cf7e0,492,"Redirect /home/rgbm21/Documents/botkit/node_modules/request/lib/redirect.js:6:19",0x3c4a56a790e8,~ +code-creation,LazyCompile,0,0xe02c66cf9e0,412,"Tunnel /home/rgbm21/Documents/botkit/node_modules/request/lib/tunnel.js:106:17",0x3c4a56a7a260,~ +tick,0xd15fd1,682201,0,0xa8,2,0xca0620,0xe02c66b4d73,0xe02c66cf211,0xe02c66cdec9,0xe02c66af500,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66cfb80,18864,"Request.init /home/rgbm21/Documents/botkit/node_modules/request/request.js:155:35",0x2b24593c6fa8,~ +code-creation,LazyCompile,0,0xe02c66d4540,612,"module.exports.httpify /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:49:35",0x2461744b70f0,~ +code-creation,LazyCompile,0,0xe02c66d47c0,300,"Caseless /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:1:81",0x2461744b6c58,~ +code-creation,LazyCompile,0,0xe02c66d4900,644,"Querystring.init /home/rgbm21/Documents/botkit/node_modules/request/lib/querystring.js:15:39",0x3c4a56a50418,~ +code-creation,LazyCompile,0,0xe02c66d4ba0,468,"debug /home/rgbm21/Documents/botkit/node_modules/request/request.js:148:15",0x2b24593c6f00,~ +code-creation,LazyCompile,0,0xe02c66d4d80,404,"self.callback /home/rgbm21/Documents/botkit/node_modules/request/request.js:194:30",0x2c68c590cad0,~ +code-creation,Handler,3,0xe02c66d4f20,201,"error" +code-creation,Handler,3,0xe02c66d5000,201,"complete" +code-creation,Stub,3,0xe02c66d50e0,286,"LoadFieldStub" +tick,0xd5b8dc,683284,0,0x3,2,0xca0620,0xe02c66d108a,0xe02c66b4d73,0xe02c66cf211,0xe02c66cdec9,0xe02c66af500,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66d5200,356,"urlParse url.js:80:18",0x2efb89caebe8,~ +code-creation,LazyCompile,0,0xe02c66d5380,524,"Url url.js:12:13",0x2efb89caeb40,~ +code-creation,LazyCompile,0,0xe02c66d55a0,12192,"Url.parse url.js:88:31",0x2efb89caefd0,~ +code-creation,KeyedStoreIC,10,0xe02c66d8540,134,"" +code-creation,LazyCompile,0,0xe02c66d85e0,524,"trim native string.js:553:22",0x31534ff7ac00,~ +code-creation,RegExp,5,0xe02c66d8800,1701,"^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$" +code-creation,RegExp,5,0xe02c66d8ec0,1058,"^([a-z0-9.+-]+:)" +code-creation,LazyCompile,0,0xe02c66d9300,1260,"lastIndexOf native string.js:93:29",0x31534ff79cb8,~ +tick,0xaa6a6a,684351,0,0x2de24a0,0,0xbb3f40,0xe02c66d95bc,0xe02c66d66c6,0xe02c66d5345,0xe02c66d108a,0xe02c66b4d73,0xe02c66cf211,0xe02c66cdec9,0xe02c66af500,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66d9800,644,"ToNumber native runtime.js:434:18",0x31534ff6a2c0,~ +code-creation,LazyCompile,0,0xe02c66d9aa0,724,"Url.parseHost url.js:706:35",0x2efb89caf270,~ +code-creation,RegExp,5,0xe02c66d9d80,856,":[0-9]*$" +code-creation,StoreIC,9,0xe02c66da0e0,134,"lastIndex" +code-creation,RegExp,5,0xe02c66da180,1000,"^[+a-z0-9A-Z_-]{0\,63}$" +code-creation,LazyCompile,0,0xe02c66da580,244,"toASCII punycode.js:472:18",0x2efb89cb0b78,~ +code-creation,LazyCompile,0,0xe02c66da680,772,"mapDomain punycode.js:97:20",0x2efb89cb0590,~ +code-creation,RegExp,5,0xe02c66da9a0,745,"[\\x2E\\u3002\\uFF0E\\uFF61]" +code-creation,LazyCompile,0,0xe02c66daca0,480,"map punycode.js:78:14",0x2efb89cb04e8,~ +code-creation,LazyCompile,0,0xe02c66dae80,348," punycode.js:473:35",0x2c68c59117a0,~ +code-creation,RegExp,5,0xe02c66dafe0,712,"[^\\x20-\\x7E]" +code-creation,KeyedStoreIC,10,0xe02c66db2c0,134,"" +code-creation,Handler,3,0xe02c66db360,164,"test" +code-creation,KeyedStoreIC,10,0xe02c66db420,134,"" +code-creation,Stub,11,0xe02c66db4c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66db540,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66db5c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c66db640,3492,"Url.format url.js:365:32",0x2efb89caf078,~ +code-creation,Stub,11,0xe02c66dc400,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66dc480,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,RegExp,5,0xe02c66dc500,814,"[?#]" +code-creation,StoreIC,9,0xe02c66dc840,134,"lastIndex" +code-creation,Stub,11,0xe02c66dc8e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66dc960,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66dc9e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66dca60,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xc5be0d,685418,0,0x3036616364363663,2,0xca0620,0xe02c66d1872,0xe02c66b4d73,0xe02c66cf211,0xe02c66cdec9,0xe02c66af500,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66dcae0,1452,"getProxyFromURI /home/rgbm21/Documents/botkit/node_modules/request/lib/getProxyFromURI.js:40:25",0x3c4a56a4fbd0,~ +code-creation,Handler,3,0xe02c66dd0a0,171,"process" +code-creation,LazyCompile,0,0xe02c66dd160,484,"Tunnel.isEnabled /home/rgbm21/Documents/botkit/node_modules/request/lib/tunnel.js:115:39",0x3c4a56a7a348,~ +code-creation,LazyCompile,0,0xe02c66dd360,988,"Redirect.onRequest /home/rgbm21/Documents/botkit/node_modules/request/lib/redirect.js:18:41",0x3c4a56a79190,~ +code-creation,LazyCompile,0,0xe02c66dd740,260,"resp.hasHeader /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:55:29",0x2c68c590dfe8,~ +code-creation,LazyCompile,0,0xe02c66dd860,840,"Caseless.has /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:18:35",0x2461744b6da8,~ +code-creation,LazyCompile,0,0xe02c66ddbc0,332,"resp.setHeader /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:51:29",0x2c68c590df40,~ +code-creation,LazyCompile,0,0xe02c66ddd20,1296,"Caseless.set /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:4:35",0x2461744b6d00,~ +code-creation,Handler,3,0xe02c66de240,186,"toLowerCase" +code-creation,LazyCompile,0,0xe02c66de300,1084,"Request.jar /home/rgbm21/Documents/botkit/node_modules/request/request.js:1309:34",0x2b24593c7c20,~ +code-creation,LazyCompile,0,0xe02c66de740,260,"resp.getHeader /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:58:29",0x2c68c590e090,~ +code-creation,LazyCompile,0,0xe02c66de860,636,"Caseless.get /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:27:35",0x2461744b6e50,~ +code-creation,LazyCompile,0,0xe02c66deae0,436," /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:31:41",0x2c68c5913ea8,~ +tick,0x91e366,686485,0,0x7fffc29522f0,2,0xca0620,0xe02c66d444a,0xe02c66b4d73,0xe02c66cf211,0xe02c66cdec9,0xe02c66af500,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66df9e0,4616,"Request.getNewAgent /home/rgbm21/Documents/botkit/node_modules/request/request.js:597:42",0x2b24593c7050,~ +code-creation,Stub,12,0xe02c66e0c00,221,"CompareICStub" +code-creation,Stub,12,0xe02c66e0ce0,221,"CompareICStub" +code-creation,Handler,3,0xe02c66e0dc0,201,"pipe" +code-creation,LazyCompile,0,0xe02c66e0ea0,2056,"exports.setImmediate timers.js:420:32",0x192859efd988,~ +code-creation,LazyCompile,0,0xe02c66e16c0,180,"Immediate timers.js:412:19",0x192859efcfb0,~ +code-creation,Handler,3,0xe02c66e1780,216,"_idleNext" +code-creation,StoreIC,9,0xe02c66e1860,134,"_idleNext" +code-creation,Handler,3,0xe02c66e1900,216,"_idlePrev" +code-creation,StoreIC,9,0xe02c66e19e0,134,"_idlePrev" +code-creation,LazyCompile,0,0xe02c66e1a80,372,"append internal/linkedlist.js:44:16",0x192859eff240,~ +code-creation,LazyCompile,0,0xe02c66e1c00,492,"remove internal/linkedlist.js:28:16",0x192859eff198,~ +code-creation,LazyCompile,0,0xe02c66e1e00,1428,"Request.form /home/rgbm21/Documents/botkit/node_modules/request/request.js:1122:35",0x2b24593c7590,~ +code-creation,Handler,3,0xe02c66e23a0,164,"get" +code-creation,Handler,3,0xe02c66e2460,164,"forEach" +code-creation,RegExp,5,0xe02c66e2520,1361,"^application\\/x-www-form-urlencoded\\b" +code-creation,Handler,3,0xe02c66e2a80,164,"set" +code-creation,Handler,3,0xe02c66e2b40,164,"has" +code-creation,Handler,3,0xe02c66e2c00,192,"content-type" +code-creation,KeyedStoreIC,10,0xe02c66e2cc0,153,"content-type" +code-creation,LazyCompile,0,0xe02c66e2d60,756,"Querystring.stringify /home/rgbm21/Documents/botkit/node_modules/request/lib/querystring.js:25:44",0x3c4a56a504c0,~ +tick,0x72c3f0,687549,0,0xd53886,2,0xca0620,0xe02c66e3005,0xe02c66e21f9,0xe02c66af544,0xe02c66af245,0xe02c66af128,0xe02c654d57b,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,8,0xe02c66e3060,634,"CallICStub(args(8), METHOD, " +code-creation,Stub,8,0xe02c66e32e0,113,"CallICTrampolineStub" +code-creation,LazyCompile,0,0xe02c66e3360,2680,"module.exports /home/rgbm21/Documents/botkit/node_modules/qs/lib/stringify.js:77:27",0x3c4a56a51f38,~ +code-creation,Stub,8,0xe02c66e3de0,634,"CallICStub(args(7), METHOD, " +code-creation,Stub,8,0xe02c66e4060,113,"CallICTrampolineStub" +code-creation,LazyCompile,0,0xe02c66e40e0,2696,"internals.stringify /home/rgbm21/Documents/botkit/node_modules/qs/lib/stringify.js:23:32",0x3c4a56a51e90,~ +code-creation,LazyCompile,0,0xe02c66e4b80,524,"exports.isBuffer /home/rgbm21/Documents/botkit/node_modules/qs/lib/utils.js:156:29",0x3c4a56a52d00,~ +code-creation,LazyCompile,0,0xe02c66e4da0,3800,"exports.encode /home/rgbm21/Documents/botkit/node_modules/qs/lib/utils.js:69:27",0x3c4a56a52b08,~ +code-creation,Stub,11,0xe02c66e5c80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c66e5d00,186,"charCodeAt" +code-creation,Handler,3,0xe02c66e5dc0,186,"charAt" +code-creation,Stub,11,0xe02c66e5e80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66e5f00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c66e5f80,164,"concat" +code-creation,Handler,3,0xe02c66e6040,186,"constructor" +code-creation,Handler,3,0xe02c66e6100,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,Handler,3,0xe02c66e61a0,171,"Date" +code-creation,Handler,3,0xe02c66e6260,171,"String" +code-creation,Handler,3,0xe02c66e6320,141,"$nonStringToString" +code-creation,Handler,3,0xe02c66e63c0,186,"constructor" +code-creation,LazyCompile,0,0xe02c66e6480,548,"toString native string.js:37:24",0x31534ff79930,~ +code-creation,Function,0,0xe02c66e66c0,356," /home/rgbm21/Documents/botkit/lib/CoreBot.js:575:26",0x2c68c59180e8,~ +code-creation,LazyCompile,0,0xe02c66e6840,1412,"Botkit.botkit.hears /home/rgbm21/Documents/botkit/lib/CoreBot.js:563:28",0x36b97b17b1f8,~ +code-creation,Handler,3,0xe02c66e6de0,186,"split" +code-creation,Handler,3,0xe02c66e6ea0,164,"apply" +code-creation,Handler,3,0xe02c66e6f60,164,"emit" +tick,0xaf7c2d,688617,0,0x2,0,0xbb9fc0,0xe02c66ac009,0xe02c66ab8a0,0xe02c668a7fc,0xe02c6699016,0xe02c66e67dd,0xe02c66e6b93,0xe02c654d622,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c66e7020,171,"Array" +code-creation,StoreIC,9,0xe02c66e70e0,134,"event" +code-creation,Handler,3,0xe02c66e7180,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,Handler,3,0xe02c66e7220,164,"push" +code-creation,Handler,3,0xe02c66e72e0,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,Stub,11,0xe02c66e7380,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66e7400,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,KeyedStoreIC,10,0xe02c66e7480,134,"" +code-disable-optimization,"","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c66e7520,1180," util.js:27:53",0x36b97b184ed0, +code-creation,LazyCompile,0,0xe02c66e79c0,484,"Number native v8natives.js:1021:27",0x31534ff5ed20,~ +code-creation,KeyedStoreIC,10,0xe02c66e7bc0,134,"" +code-creation,Stub,11,0xe02c66e7c60,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c66e7ce0,164,"_write" +code-creation,Handler,3,0xe02c66e7da0,164,"_writeGeneric" +code-creation,StoreIC,9,0xe02c66e7e60,134,"_pendingData" +code-creation,StoreIC,9,0xe02c66e7f00,134,"_pendingEncoding" +code-creation,Handler,3,0xe02c66e7fa0,164,"_unrefTimer" +code-creation,Handler,3,0xe02c66e8060,145,symbol("nonexistent_symbol" hash 327c89d) +tick,0x9124df,689685,0,0x7fffc2951d10,0,0x93d1a0,0xe02c669be2e,0xe02c669ba85,0xe02c669b93e,0xe02c669b566,0xe02c669abc4,0xe02c669a891,0xe02c66963e6,0xe02c6699016,0xe02c66abea0,0xe02c668a7fc,0xe02c6699016,0xe02c66e67dd,0xe02c66e6b93,0xe02c654d8f7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,StoreIC,9,0xe02c66e8100,134,"_bytesDispatched" +code-creation,Handler,3,0xe02c66e81a0,171,"Error" +code-creation,LazyCompile,0,0xe02c66e8260,876,"SameValue native runtime.js:479:19",0x31534ff6cef0,~ +code-creation,Handler,3,0xe02c66e85e0,141,"$sameValue" +code-disable-optimization,"FormatErrorString","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c66e8680,508,"FormatErrorString native messages.js:542:27",0x31534ff61750, +code-creation,LazyCompile,0,0xe02c66e8880,364,"toString native messages.js:681:23",0x31534ff61cc0,~ +code-creation,LazyCompile,0,0xe02c66e8a00,2308,"CallSiteToString native messages.js:432:26",0x31534ff615b0,~ +code-creation,LazyCompile,0,0xe02c66e9320,324,"CallSiteIsNative native messages.js:420:26",0x31534ff61408,~ +code-creation,LazyCompile,0,0xe02c66e9480,324,"CallSiteGetScriptNameOrSourceURL native messages.js:384:42",0x31534ff60ef0,~ +code-creation,Stub,11,0xe02c66e95e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66e9660,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Smi->String)" +code-creation,Stub,11,0xe02c66e96e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66e9760,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Smi->String)" +code-creation,Stub,11,0xe02c66e97e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c66e9860,324,"CallSiteIsConstructor native messages.js:426:31",0x31534ff614d8,~ +code-creation,LazyCompile,0,0xe02c66e99c0,324,"CallSiteIsToplevel native messages.js:368:28",0x31534ff60c70,~ +code-creation,LazyCompile,0,0xe02c66e9b20,628,"GetTypeName native messages.js:603:21",0x31534ff619c8,~ +code-creation,Stub,13,0xe02c66e9da0,232,"CompareNilICStub(NullValue)(MonomorphicMap)" +code-creation,LazyCompile,0,0xe02c66e9ea0,324,"CallSiteGetMethodName native messages.js:396:31",0x31534ff610a8,~ +tick,0x7f66177314a9,690764,0,0x118b3c0,2,0xca0620,0xe02c66e8f22,0xe02c660b757,0xe02c660b11f,0xe02c66975cb,0xe02c6698f67,0xe02c66abeff,0xe02c668a7fc,0xe02c6699016,0xe02c66e67dd,0xe02c66e6b93,0xe02c654d8f7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Stub,11,0xe02c66ea000,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66ea080,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66ea100,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66ea180,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66ea200,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66ea280,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66ea300,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66ea380,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66ea400,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c66ea480,164,"toString" +code-creation,Handler,3,0xe02c66ea540,164,"isNative" +code-creation,Handler,3,0xe02c66ea600,164,"getScriptNameOrSourceURL" +code-creation,Handler,3,0xe02c66ea6c0,164,"getLineNumber" +code-creation,Handler,3,0xe02c66ea780,164,"getColumnNumber" +code-creation,Handler,3,0xe02c66ea840,164,"getFunctionName" +code-creation,Handler,3,0xe02c66ea900,164,"isConstructor" +code-creation,Handler,3,0xe02c66ea9c0,164,"isToplevel" +code-creation,Handler,3,0xe02c66eaa80,164,"constructor" +code-creation,Handler,3,0xe02c66eab40,188,"name" +code-creation,Handler,3,0xe02c66eac00,164,"getMethodName" +code-creation,Handler,3,0xe02c66eacc0,164,"push" +code-creation,Stub,11,0xe02c66ead80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c66eae00,164,"constructor" +code-creation,Handler,3,0xe02c66eaec0,188,"name" +code-creation,Stub,11,0xe02c66eaf80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66eb000,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,14,0xe02c66eb080,236,"ToBooleanStub(Null,String)" +code-creation,Stub,11,0xe02c66eb180,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66eb200,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66eb280,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c66eb300,164,"constructor" +code-creation,Handler,3,0xe02c66eb3c0,188,"name" +code-creation,Handler,3,0xe02c66eb480,164,"constructor" +code-creation,Handler,3,0xe02c66eb540,188,"name" +code-creation,Handler,3,0xe02c66eb600,192,symbol("formatted stack trace" hash 316e8322) +code-creation,Handler,3,0xe02c66eb6c0,192,"warned" +code-creation,StoreIC,9,0xe02c66eb780,134,"warned" +code-creation,Handler,3,0xe02c66eb820,164,"write" +code-creation,Stub,2,0xe02c66eb8e0,2702,"RecordWriteStub" +code-creation,Stub,3,0xe02c66ec380,288,"StoreGlobalStub" +code-creation,Stub,3,0xe02c66ec4a0,288,"StoreGlobalStub" +code-creation,StoreIC,9,0xe02c66ec5c0,134,"$regexpLastMatchInfoOverride" +code-creation,Handler,3,0xe02c66ec660,171,"Number" +code-creation,Handler,3,0xe02c66ec720,185,"length" +code-creation,StoreIC,9,0xe02c66ec7e0,134,"length" +code-creation,Handler,3,0xe02c66ec880,192,"name" +code-creation,StoreIC,9,0xe02c66ec940,134,"name" +code-creation,Handler,3,0xe02c66ec9e0,164,"join" +code-creation,Handler,3,0xe02c66ecaa0,192,"message" +code-creation,StoreIC,9,0xe02c66ecb60,134,"message" +code-creation,Handler,3,0xe02c66ecc00,164,"hasEnumerable" +code-creation,Handler,3,0xe02c66eccc0,164,"hasConfigurable" +code-creation,Handler,3,0xe02c66ecd80,164,"hasWritable" +code-creation,Handler,3,0xe02c66ece40,164,"hasValue" +code-creation,Handler,3,0xe02c66ecf00,164,"hasGetter" +code-creation,Handler,3,0xe02c66ecfc0,164,"getGet" +code-creation,Handler,3,0xe02c66ed080,164,"hasSetter" +code-creation,Handler,3,0xe02c66ed140,164,"getSet" +code-creation,Handler,3,0xe02c66ed200,199,"stack" +code-creation,Handler,3,0xe02c66ed2e0,192,symbol("formatted stack trace" hash 316e8322) +tick,0x919046,693409,0,0xa85554,0,0xcb5100,0xe02c6698f67,0xe02c66abeff,0xe02c668a7fc,0xe02c6699016,0xe02c66e67dd,0xe02c66e6b93,0xe02c654d8f7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +tick,0xc2ff98,693611,0,0x3625d546171,0,0xcc1970,0xe02c660aec7,0xe02c66a3145,0xe02c6697459,0xe02c6698f67,0xe02c66abeff,0xe02c668a7fc,0xe02c6699016,0xe02c66e67dd,0xe02c66e6b93,0xe02c654d8f7,0xe02c654ca39,0xe02c6546b4b,0xe02c654397b,0xe02c65397ee,0xe02c6539206,0xe02c643dda5,0xe02c6438eb5 +code-creation,Handler,3,0xe02c66ed3a0,192,symbol("formatted stack trace" hash 316e8322) +code-creation,StoreIC,9,0xe02c66ed460,134,"$regexpLastMatchInfoOverride" +code-creation,LazyCompile,0,0xe02c66ed500,1980,"_tickCallback node.js:368:27",0x2efb89c12230,~ +code-creation,KeyedStoreIC,10,0xe02c66edcc0,134,"" +code-disable-optimization,"nextTickCallbackWithManyArgs","TryFinallyStatement" +code-creation,LazyCompile,0,0xe02c66edd60,460,"nextTickCallbackWithManyArgs node.js:493:42",0x2efb89c12620, +code-creation,LazyCompile,0,0xe02c66edf40,396,"afterWrite _stream_writable.js:342:20",0x2efb89c31a50,~ +code-creation,LazyCompile,0,0xe02c66ee0e0,412,"onwriteDrain _stream_writable.js:353:22",0x2efb89c31af8,~ +code-creation,LazyCompile,0,0xe02c66ee280,180,"nop _stream_writable.js:17:13",0x2efb89c31270,~ +code-creation,LazyCompile,0,0xe02c66ee340,540,"finishMaybe _stream_writable.js:462:21",0x2efb89c31d98,~ +code-creation,StoreIC,9,0xe02c66ee560,134,"pendingcb" +code-creation,LazyCompile,0,0xe02c66ee600,948,"tickDone node.js:331:22",0x2efb89c12038,~ +code-creation,LazyCompile,0,0xe02c66ee9c0,880,"emitPendingUnhandledRejections node.js:526:44",0x2efb89c12818,~ +code-disable-optimization,"processImmediate","TryFinallyStatement" +tick,0xaa86c1,694976,0,0x7fffc29521c0,2,0xca0620,0xe02c66ee087,0xe02c66edecd,0xe02c66eda45,0xe02c6539265,0xe02c643dda5,0xe02c6438eb5 +code-creation,LazyCompile,0,0xe02c66eed40,2148,"processImmediate timers.js:367:26",0x192859efcf08, +code-creation,Handler,3,0xe02c66ef5c0,192,"_idleNext" +code-creation,StorePolymorphicIC,9,0xe02c66ef680,154,"_idleNext" +code-creation,Handler,3,0xe02c66ef720,192,"_idlePrev" +code-creation,StorePolymorphicIC,9,0xe02c66ef7e0,154,"_idlePrev" +code-creation,LazyCompile,0,0xe02c66ef880,260,"isEmpty internal/linkedlist.js:54:17",0x192859eff2e8,~ +code-creation,Stub,12,0xe02c66ef9a0,209,"CompareICStub" +code-creation,LazyCompile,0,0xe02c66efa80,268,"shift internal/linkedlist.js:19:15",0x192859eff0f0,~ +code-creation,StoreIC,9,0xe02c66efba0,134,"_idlePrev" +code-creation,StoreIC,9,0xe02c66efc40,134,"_idleNext" +code-creation,StoreIC,9,0xe02c66efce0,134,"_idleNext" +code-creation,StoreIC,9,0xe02c66efd80,134,"_idlePrev" +code-creation,LazyCompile,0,0xe02c66efe20,852," /home/rgbm21/Documents/botkit/node_modules/request/request.js:537:18",0x2c68c590ce18,~ +code-creation,LazyCompile,0,0xe02c66f0180,2380,"end /home/rgbm21/Documents/botkit/node_modules/request/request.js:542:24",0x2c68c591d0c0,~ +code-creation,LazyCompile,0,0xe02c66deca0,1316,"setContentLength /home/rgbm21/Documents/botkit/node_modules/request/request.js:431:29",0x2c68c590ca08,~ +code-creation,LazyCompile,0,0xe02c66df1e0,1004,"isStrictTypedArray /home/rgbm21/Documents/botkit/node_modules/is-typedarray/index.js:25:28",0x3c4a56a4eea8,~ +tick,0x9360a7,695717,0,0x2df64e8,0,0xbb9fc0,0xe02c66deed5,0xe02c66f0549,0xe02c66f013e,0xe02c66ef3ea +code-creation,Handler,3,0xe02c66df5e0,184,"content-length" +code-creation,LazyCompile,0,0xe02c66df6a0,548,"Request.write /home/rgbm21/Documents/botkit/node_modules/request/request.js:1364:36",0x2b24593c7d70,~ +code-creation,LazyCompile,0,0xe02c66f0c00,3188,"Request.start /home/rgbm21/Documents/botkit/node_modules/request/request.js:720:36",0x2b24593c70f8,~ +code-creation,LazyCompile,0,0xe02c66f1880,500,"copy /home/rgbm21/Documents/botkit/node_modules/request/lib/helpers.js:49:15",0x2b24593c2040,~ +code-creation,LazyCompile,0,0xe02c66f1a80,220," /home/rgbm21/Documents/botkit/node_modules/request/lib/helpers.js:51:37",0x2c68c591edf8,~ +code-creation,Handler,3,0xe02c66f1b60,216,"_events" +code-creation,KeyedStoreIC,10,0xe02c66f1c40,153,"_events" +code-creation,Stub,3,0xe02c66f1ce0,264,"StoreTransitionStub" +code-creation,Handler,3,0xe02c66f1e00,184,"_eventsCount" +code-creation,Handler,3,0xe02c66f1ec0,192,"_maxListeners" +code-creation,Handler,3,0xe02c66f1f80,216,"uri" +code-creation,Handler,3,0xe02c66f2060,204,"callback" +code-creation,Handler,3,0xe02c66f2140,192,"method" +code-creation,Handler,3,0xe02c66f2200,192,"readable" +code-creation,Handler,3,0xe02c66f22c0,192,"writable" +code-creation,Handler,3,0xe02c66f2380,192,"explicitMethod" +code-creation,Handler,3,0xe02c66f2440,216,"_qs" +code-creation,Handler,3,0xe02c66f2520,216,"_auth" +code-creation,Handler,3,0xe02c66f2600,216,"_oauth" +code-creation,Handler,3,0xe02c66f26e0,216,"_multipart" +code-creation,Handler,3,0xe02c66f27c0,216,"_redirect" +tick,0xad455f,697148,0,0x36,0,0xbbbe40,0xe02c66f1b21,0xe02c65358da,0xe02c65353ba,0xe02c66f1a24,0xe02c66f10c9,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,Handler,3,0xe02c66f28a0,216,"_tunnel" +code-creation,Handler,3,0xe02c66f2980,216,"headers" +code-creation,Handler,3,0xe02c66f2a60,204,"setHeader" +code-creation,Handler,3,0xe02c66f2b40,204,"hasHeader" +code-creation,Handler,3,0xe02c66f2c20,204,"getHeader" +code-creation,Handler,3,0xe02c66f2d00,204,"removeHeader" +code-creation,Handler,3,0xe02c66f2de0,192,"localAddress" +code-creation,Handler,3,0xe02c66f2ea0,192,"pool" +code-creation,Handler,3,0xe02c66f2f60,192,"dests" +code-creation,Stub,3,0xe02c66f3020,120,"LoadConstantStub" +code-creation,LazyCompile,0,0xe02c66f30a0,844,"exports.request https.js:171:27",0x2b24593dc210,~ +code-creation,Handler,3,0xe02c66f3400,192,"_started" +code-creation,KeyedStoreIC,10,0xe02c66f34c0,153,"_started" +code-creation,Handler,3,0xe02c66f3560,192,"body" +code-creation,Handler,3,0xe02c66f3620,216,"agent" +code-creation,Handler,3,0xe02c66f3700,204,"agentClass" +code-creation,Handler,3,0xe02c66f37e0,216,"httpModule" +code-creation,Handler,3,0xe02c66f38c0,192,"path" +code-creation,Handler,3,0xe02c66f3980,192,"host" +code-creation,Handler,3,0xe02c66f3a40,184,"port" +code-creation,Handler,3,0xe02c66f3b00,192,"_jar" +code-creation,Handler,3,0xe02c66f3bc0,192,"_disableCookies" +code-creation,Handler,3,0xe02c66f3c80,192,"originalCookieHeader" +code-creation,Handler,3,0xe02c66f3d40,192,"setHost" +code-creation,Handler,3,0xe02c66f3e00,192,"tunnel" +code-creation,Handler,3,0xe02c66f3ec0,192,"proxy" +code-creation,Handler,3,0xe02c66f3f80,204,"_callback" +code-creation,Handler,3,0xe02c66f4060,192,"__isRequestRequest" +code-creation,Handler,3,0xe02c66f4120,192,"dests" +code-creation,Handler,3,0xe02c66f41e0,192,"pool" +code-creation,Handler,3,0xe02c66f42a0,192,"localAddress" +code-creation,Handler,3,0xe02c66f4360,204,"removeHeader" +code-creation,Handler,3,0xe02c66f4440,204,"getHeader" +code-creation,Handler,3,0xe02c66f4520,204,"hasHeader" +code-creation,Handler,3,0xe02c66f4600,204,"setHeader" +code-creation,Handler,3,0xe02c66f46e0,216,"headers" +code-creation,LazyCompile,0,0xe02c66f47c0,268,"exports.request http.js:30:27",0x2b24593c9160,~ +tick,0xc16219,698205,0,0x2e0066006c0065,2,0xccf980,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,LazyCompile,0,0xe02c66f48e0,7608,"ClientRequest _http_client.js:18:23",0x2b24593d9af0,~ +code-creation,LazyCompile,0,0xe02c66f66a0,1108,"OutgoingMessage _http_outgoing.js:46:25",0x2b24593d0b50,~ +code-creation,Handler,3,0xe02c66f6b00,192,"domain" +code-creation,Handler,3,0xe02c66f6bc0,164,"_events" +code-creation,Handler,3,0xe02c66f6c80,192,"_events" +code-creation,Handler,3,0xe02c66f6d40,184,"_eventsCount" +code-creation,Handler,3,0xe02c66f6e00,164,"_maxListeners" +code-creation,Handler,3,0xe02c66f6ec0,192,"_maxListeners" +code-creation,StorePolymorphicIC,9,0xe02c66f6f80,174,"_maxListeners" +code-creation,Handler,3,0xe02c66f7040,216,"_defaultAgent" +code-creation,Handler,3,0xe02c66f7120,192,"domain" +code-creation,Handler,3,0xe02c66f71e0,216,"_events" +code-creation,Stub,3,0xe02c66f72c0,264,"StoreTransitionStub" +code-creation,Handler,3,0xe02c66f73e0,184,"_eventsCount" +code-creation,Handler,3,0xe02c66f74a0,192,"_maxListeners" +code-creation,Handler,3,0xe02c66f7560,216,"uri" +code-creation,Handler,3,0xe02c66f7640,204,"callback" +code-creation,Handler,3,0xe02c66f7720,192,"method" +code-creation,Handler,3,0xe02c66f77e0,192,"readable" +code-creation,Handler,3,0xe02c66f78a0,192,"writable" +code-creation,Handler,3,0xe02c66f7960,192,"explicitMethod" +code-creation,Handler,3,0xe02c66f7a20,216,"_qs" +code-creation,Handler,3,0xe02c66f7b00,216,"_auth" +code-creation,Handler,3,0xe02c66f7be0,216,"_oauth" +code-creation,Handler,3,0xe02c66f7cc0,216,"_multipart" +code-creation,Handler,3,0xe02c66f7da0,216,"_redirect" +code-creation,Handler,3,0xe02c66f7e80,216,"_tunnel" +code-creation,Handler,3,0xe02c66f7f60,216,"headers" +code-creation,Handler,3,0xe02c66f8040,204,"setHeader" +code-creation,Handler,3,0xe02c66f8120,204,"hasHeader" +code-creation,Handler,3,0xe02c66f8200,204,"getHeader" +code-creation,Handler,3,0xe02c66f82e0,204,"removeHeader" +code-creation,Handler,3,0xe02c66f83c0,192,"localAddress" +code-creation,Handler,3,0xe02c66f8480,192,"pool" +tick,0xbf300f,699270,0,0x2e27668,0,0xbbb8f0,0xe02c66f540c,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,LazyCompile,0,0xe02c66f8540,372,"checkIsHttpToken _http_common.js:208:26",0x2b24593cb830,~ +code-creation,RegExp,5,0xe02c66f86c0,986,"^[a-zA-Z0-9_!#$%&'*+.^`|~-]+$" +code-creation,LazyCompile,0,0xe02c66f8aa0,1316,"OutgoingMessage.setHeader _http_outgoing.js:335:47",0x2b24593d1330,~ +code-creation,Handler,3,0xe02c66f8fe0,164,"setHeader" +code-creation,Handler,3,0xe02c66f90a0,192,"content-type" +code-creation,KeyedStoreIC,10,0xe02c66f9160,153,"content-type" +code-creation,Handler,3,0xe02c66f9200,192,"content-type" +code-creation,KeyedStoreIC,10,0xe02c66f92c0,153,"content-type" +code-creation,Handler,3,0xe02c66f9360,184,"content-length" +code-creation,Stub,3,0xe02c66f9420,212,"StoreTransitionStub" +code-creation,Handler,3,0xe02c66f9500,184,"content-length" +code-creation,LazyCompile,0,0xe02c66f95c0,580,"OutgoingMessage.getHeader _http_outgoing.js:358:47",0x2b24593d13d8,~ +code-creation,LazyCompile,0,0xe02c66f9820,524,"isFinite native v8natives.js:1110:24",0x31534ff5b038,~ +code-creation,LazyCompile,0,0xe02c66f9a40,2260,"Agent.addRequest _http_agent.js:108:38",0x2b24593d7b00,~ +code-creation,LazyCompile,0,0xe02c66fa320,1348,"Agent.getName https.js:106:35",0x2b24593dc018,~ +code-creation,LazyCompile,0,0xe02c66fa880,500,"Agent.getName _http_agent.js:94:35",0x2b24593d7a58,~ +code-creation,Stub,11,0xe02c66faa80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66fab00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Smi->String)" +code-creation,Stub,11,0xe02c66fab80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66fac00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66fac80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66fad00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66fad80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66fae00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66fae80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c66faf00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xc25c31,700336,0,0x7fffc2952920,0,0xbbbe40,0xe02c66f9c98,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,Stub,12,0xe02c66faf80,595,"CompareICStub" +code-creation,Stub,12,0xe02c66fb1e0,347,"CompareICStub" +code-creation,LazyCompile,0,0xe02c66fb340,2548,"Agent.createSocket _http_agent.js:152:40",0x2b24593d7ba8,~ +code-creation,Handler,3,0xe02c66fbd40,192,"href" +code-creation,Handler,3,0xe02c66fbe00,192,"_started" +code-creation,RegExp,5,0xe02c66fbec0,862,":.*$" +code-creation,Handler,3,0xe02c66fc220,566,"ca" +code-creation,Handler,3,0xe02c66fc460,566,"cert" +code-creation,Handler,3,0xe02c66fc6a0,566,"ciphers" +code-creation,Handler,3,0xe02c66fc8e0,566,"key" +code-creation,Handler,3,0xe02c66fcb20,566,"pfx" +code-creation,Handler,3,0xe02c66fcd60,566,"rejectUnauthorized" +code-creation,LazyCompile,0,0xe02c66fcfa0,1852,"createConnection https.js:50:26",0x2b24593dbe20,~ +code-creation,LazyCompile,0,0xe02c66fd6e0,284,"_getSession https.js:140:51",0x2b24593dc0c0,~ +code-creation,LazyCompile,0,0xe02c66fd800,4796,"exports.connect _tls_wrap.js:970:27",0x2b24593e37a0,~ +code-creation,LazyCompile,0,0xe02c66feac0,1180,"normalizeConnectArgs _tls_wrap.js:956:30",0x2b24593e2478,~ +tick,0xb2f443,701405,0,0x0,2,0xca0620,0xe02c66feba5,0xe02c66fd8fc,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,LazyCompile,0,0xe02c6706000,1060,"normalizeConnectArgs net.js:68:30",0x2efb89c8e480,~ +code-creation,Handler,3,0xe02c6706440,192,"encoding" +code-creation,Handler,3,0xe02c6706500,192,"_agentKey" +code-creation,Handler,3,0xe02c67065c0,192,"servername" +code-creation,Handler,3,0xe02c6706680,216,"_defaultAgent" +code-creation,Handler,3,0xe02c6706760,192,"domain" +code-creation,Handler,3,0xe02c6706820,216,"_events" +code-creation,Stub,2,0xe02c6706900,2696,"RecordWriteStub" +code-creation,Stub,3,0xe02c67073a0,844,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6707700,184,"_eventsCount" +code-creation,Handler,3,0xe02c67077c0,192,"_maxListeners" +code-creation,Handler,3,0xe02c6707880,216,"uri" +code-creation,Handler,3,0xe02c6707960,204,"callback" +code-creation,Handler,3,0xe02c6707a40,192,"method" +code-creation,Handler,3,0xe02c6707b00,192,"readable" +code-creation,Handler,3,0xe02c6707bc0,192,"writable" +code-creation,Handler,3,0xe02c6707c80,192,"explicitMethod" +code-creation,Handler,3,0xe02c6707d40,216,"_qs" +code-creation,Handler,3,0xe02c6707e20,216,"_auth" +code-creation,Stub,11,0xe02c6707f00,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Smi->String)" +code-creation,Stub,11,0xe02c6707f80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Smi->String)" +code-creation,LazyCompile,0,0xe02c6708000,6132,"createSecureContext _tls_common.js:35:59",0x2b24593dfed0,~ +code-creation,LazyCompile,0,0xe02c6709800,756,"SecureContext _tls_common.js:12:23",0x2b24593dfe28,~ +tick,0x757311,702470,1,0xe68350,4,0x93e0b0,0xe02c6709a65,0xe02c67081d7,0xe02c66fe152,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +tick,0x78fcb8,703533,1,0xe76a40,4,0x93e0b0,0xe02c670855d,0xe02c66fe152,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +tick,0x804ee4,704588,1,0xe76a40,4,0x93e0b0,0xe02c670855d,0xe02c66fe152,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +tick,0x7759e5,705646,1,0xe76a40,4,0x93e0b0,0xe02c670855d,0xe02c66fe152,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +tick,0xe79e52,706708,1,0xe76a40,4,0x93e0b0,0xe02c670855d,0xe02c66fe152,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +tick,0x78c926,707771,1,0xe76a40,4,0x93e0b0,0xe02c670855d,0xe02c66fe152,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +tick,0x7f66177da480,708867,1,0xe76a40,4,0x93e0b0,0xe02c670855d,0xe02c66fe152,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +tick,0x7f6617763959,710444,1,0xe76a40,4,0x93e0b0,0xe02c670855d,0xe02c66fe152,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +tick,0xc48ed0,710997,0,0x7fffc29523a0,2,0xca0620,0xe02c66fe1ed,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,LazyCompile,0,0xe02c6709b00,436,"exports.convertNPNProtocols tls.js:51:40",0x2b24593dd908,~ +code-creation,LazyCompile,0,0xe02c6709cc0,516,"exports.convertALPNProtocols tls.js:62:40",0x2b24593dd9b0,~ +code-creation,LazyCompile,0,0xe02c6709ee0,1948,"TLSSocket _tls_wrap.js:245:19",0x2b24593e21d8,~ +code-creation,LazyCompile,0,0xe02c670a680,1540,"TLSSocket._wrapHandle _tls_wrap.js:324:43",0x2b24593e2690,~ +code-creation,Handler,3,0xe02c670aca0,164,"_events" +code-creation,Handler,3,0xe02c670ad60,192,"close" +code-creation,Stub,3,0xe02c670ae20,212,"StoreFieldStub" +tick,0xbeb1b3,712050,0,0x7fffc2952640,0,0xbbb8f0,0xe02c656bfa2,0xe02c670a4a2,0xe02c66fe4c6,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,Handler,3,0xe02c670af00,192,"_connecting" +code-creation,StorePolymorphicIC,9,0xe02c670afc0,154,"_connecting" +code-creation,Handler,3,0xe02c670b060,192,"_hadError" +code-creation,StorePolymorphicIC,9,0xe02c670b120,154,"_hadError" +code-creation,Handler,3,0xe02c670b1c0,192,"_handle" +code-creation,StorePolymorphicIC,9,0xe02c670b280,154,"_handle" +code-creation,Handler,3,0xe02c670b320,192,"_parent" +code-creation,StorePolymorphicIC,9,0xe02c670b3e0,154,"_parent" +code-creation,Handler,3,0xe02c670b480,192,"_host" +code-creation,StorePolymorphicIC,9,0xe02c670b540,154,"_host" +code-creation,Handler,3,0xe02c670b5e0,216,"_readableState" +code-creation,StorePolymorphicIC,9,0xe02c670b6c0,154,"_readableState" +code-creation,Handler,3,0xe02c670b760,192,"readable" +code-creation,StorePolymorphicIC,9,0xe02c670b820,154,"readable" +code-creation,Stub,3,0xe02c670b8c0,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c670b9e0,192,"domain" +code-creation,Handler,3,0xe02c670baa0,164,"_events" +code-creation,Handler,3,0xe02c670bb60,164,"_maxListeners" +code-creation,Stub,3,0xe02c670bc20,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c670bd40,192,"_maxListeners" +code-creation,StorePolymorphicIC,9,0xe02c670be00,194,"_maxListeners" +code-creation,Stub,3,0xe02c670bee0,276,"StoreTransitionStub" +code-creation,Handler,3,0xe02c670c000,216,"_writableState" +code-creation,StorePolymorphicIC,9,0xe02c670c0e0,154,"_writableState" +code-creation,Handler,3,0xe02c670c180,192,"writable" +code-creation,StorePolymorphicIC,9,0xe02c670c240,154,"writable" +code-creation,Stub,3,0xe02c670c2e0,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c670c3c0,224,"StoreFieldStub" +code-creation,Stub,3,0xe02c670c4a0,224,"StoreFieldStub" +code-creation,StorePolymorphicIC,9,0xe02c670c580,154,"readable" +code-creation,Handler,3,0xe02c670c620,192,"allowHalfOpen" +code-creation,StorePolymorphicIC,9,0xe02c670c6e0,154,"allowHalfOpen" +code-creation,Handler,3,0xe02c670c780,164,"once" +code-creation,Handler,3,0xe02c670c840,164,"on" +code-creation,Handler,3,0xe02c670c900,201,"end" +code-creation,Stub,3,0xe02c670c9e0,286,"LoadFieldStub" +code-creation,Stub,3,0xe02c670cb00,224,"StoreFieldStub" +code-creation,StorePolymorphicIC,9,0xe02c670cbe0,154,"_handle" +code-creation,Handler,3,0xe02c670cc80,201,"finish" +code-creation,Handler,3,0xe02c670cd60,201,"_socketEnd" +code-creation,Handler,3,0xe02c670ce40,192,"destroyed" +code-creation,StorePolymorphicIC,9,0xe02c670cf00,154,"destroyed" +code-creation,Handler,3,0xe02c670cfa0,184,"bytesRead" +code-creation,StorePolymorphicIC,9,0xe02c670d060,154,"bytesRead" +code-creation,Handler,3,0xe02c670d100,184,"_bytesDispatched" +code-creation,StorePolymorphicIC,9,0xe02c670d1c0,154,"_bytesDispatched" +tick,0x7f66177674a0,713115,0,0x8e19bd,0,0xbbb8f0,0xe02c656fc48,0xe02c656c74f,0xe02c670a4a2,0xe02c66fe4c6,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,Handler,3,0xe02c670d260,192,"_sockname" +code-creation,StorePolymorphicIC,9,0xe02c670d320,154,"_sockname" +code-creation,Handler,3,0xe02c670d3c0,216,"owner" +code-creation,StorePolymorphicIC,9,0xe02c670d4a0,154,"owner" +code-creation,Handler,3,0xe02c670d540,204,"onread" +code-creation,StorePolymorphicIC,9,0xe02c670d620,154,"onread" +code-creation,Handler,3,0xe02c670d6c0,164,"writev" +code-creation,Handler,3,0xe02c670d780,192,"_pendingData" +code-creation,StorePolymorphicIC,9,0xe02c670d840,154,"_pendingData" +code-creation,Handler,3,0xe02c670d8e0,192,"_pendingEncoding" +code-creation,StorePolymorphicIC,9,0xe02c670d9a0,154,"_pendingEncoding" +code-creation,StorePolymorphicIC,9,0xe02c670da40,154,"allowHalfOpen" +code-creation,Handler,3,0xe02c670dae0,204,"error" +code-creation,LazyCompile,0,0xe02c670dbc0,4940,"TLSSocket._init _tls_wrap.js:380:37",0x2b24593e27e0,~ +code-creation,LazyCompile,0,0xe02c670ef20,1396,"TLSSocket._finishInit _tls_wrap.js:573:43",0x2b24593e2d20,~ +code-creation,LazyCompile,0,0xe02c670f4a0,260,"onocspresponse _tls_wrap.js:222:24",0x2b24593e2088,~ +code-creation,Stub,12,0xe02c670f5c0,602,"CompareICStub" +code-creation,Stub,12,0xe02c670f820,346,"CompareICStub" +code-disable-optimization,"COMPARE","Call to a JavaScript runtime function" +tick,0xdcf450,714265,0,0x7fff00000002,2,0xca0620,0xe02c670ebc6,0xe02c670a590,0xe02c66fe4c6,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,Stub,2,0xe02c670f980,306,"StringCompareStub" +code-creation,LazyCompile,0,0xe02c670fac0,1388,"COMPARE native runtime.js:73:17",0x31534ff6a710, +code-creation,Handler,3,0xe02c6710040,192,"callback" +code-creation,StoreIC,9,0xe02c6710100,134,"callback" +code-creation,Handler,3,0xe02c67101a0,192,"domain" +code-creation,StoreIC,9,0xe02c6710260,134,"domain" +code-creation,Handler,3,0xe02c6710300,192,"args" +code-creation,StoreIC,9,0xe02c67103c0,134,"args" +code-creation,Handler,3,0xe02c6710460,192,"listener" +code-creation,StoreIC,9,0xe02c6710520,134,"listener" +code-creation,Handler,3,0xe02c67105c0,204,"secureConnect" +tick,0xd65ec1,715298,0,0x7fffc2952190,2,0xca0620,0xe02c66fe7b3,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,LazyCompile,0,0xe02c67106a0,2204,"Socket.connect net.js:858:36",0x2efb89c90748,~ +code-creation,Stub,12,0xe02c6710f40,221,"CompareICStub" +code-creation,Handler,3,0xe02c6711020,204,"connect" +code-creation,Handler,3,0xe02c6711100,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,LazyCompile,0,0xe02c67111a0,3116,"lookupAndConnect net.js:912:26",0x2efb89c8ed08,~ +code-creation,LazyCompile,0,0xe02c6711de0,580,"isLegalPort net.js:851:21",0x2efb89c8ec60,~ +code-creation,Stub,11,0xe02c6712040,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c67120c0,3076,"lookup dns.js:106:33",0x246174415230,~ +code-creation,LazyCompile,0,0xe02c6712ce0,284,"makeAsync dns.js:56:19",0x246174414e40,~ +code-creation,LazyCompile,0,0xe02c6712e00,396,"TLSSocket._releaseControl _tls_wrap.js:565:47",0x2b24593e2c78,~ +code-creation,LazyCompile,0,0xe02c6712fa0,2168,"removeListener events.js:272:28",0x31534fff8168,~ +code-creation,Stub,12,0xe02c6713820,221,"CompareICStub" +code-creation,LazyCompile,0,0xe02c6713900,276,"TLSSocket.setServername _tls_wrap.js:617:45",0x2b24593e2e70,~ +code-creation,Handler,3,0xe02c6713a20,566,"newListener" +code-creation,KeyedStoreIC,10,0xe02c6713c60,165,symbol("normal_ic_symbol" hash 21e6e11d) +tick,0x919ecc,716964,0,0x2fb2660,2,0xca0620,0xe02c6712f65,0xe02c66fe7fa,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c66f11d4,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,LazyCompile,0,0xe02c6713d20,292,"ClientRequest.onSocket _http_client.js:499:44",0x2b24593da570,~ +code-creation,LazyCompile,0,0xe02c6713e60,532,"ClientRequest._deferToConnect _http_client.js:512:51",0x2b24593da618,~ +code-creation,Handler,3,0xe02c6714080,164,"on" +code-creation,Handler,3,0xe02c6714140,201,"socket" +tick,0x919397,717430,0,0x91b523,2,0x2efb89c2d458,0xe02c65cb338,0xe02c66f1585,0xe02c66df808,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,LazyCompile,0,0xe02c6714220,6588,"Request.onRequestResponse /home/rgbm21/Documents/botkit/node_modules/request/request.js:824:48",0x2b24593c7248,~ +code-creation,Handler,3,0xe02c6715be0,201,"response" +code-creation,LazyCompile,0,0xe02c6715cc0,1260,"Request.onRequestError /home/rgbm21/Documents/botkit/node_modules/request/request.js:805:45",0x2b24593c71a0,~ +code-creation,Handler,3,0xe02c67161c0,201,"error" +code-creation,Handler,3,0xe02c67162a0,201,"drain" +code-creation,Handler,3,0xe02c66df8e0,201,"end" +code-creation,LazyCompile,0,0xe02c6716440,2964,"OutgoingMessage.write _http_outgoing.js:420:43",0x2b24593d1678,~ +code-creation,LazyCompile,0,0xe02c6716fe0,420,"ClientRequest._implicitHeader _http_client.js:169:51",0x2b24593da420,~ +code-creation,Stub,11,0xe02c67171a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6717220,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c67172a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c6717320,984,"OutgoingMessage._renderHeaders _http_outgoing.js:393:52",0x2b24593d1528,~ +code-creation,Handler,3,0xe02c6717700,192,"content-type" +tick,0xd59870,718506,0,0x7fffc29525c0,0,0xbbbe40,0xe02c671762e,0xe02c6717125,0xe02c6716652,0xe02c66df8aa,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,KeyedStoreIC,10,0xe02c67177c0,153,"content-type" +code-creation,Handler,3,0xe02c6717860,184,"content-length" +code-creation,LazyCompile,0,0xe02c6717920,3876,"OutgoingMessage._storeHeader _http_outgoing.js:190:50",0x2b24593d1288,~ +code-creation,LazyCompile,0,0xe02c6718860,1948,"storeHeader _http_outgoing.js:303:21",0x2b24593d0bf8,~ +code-creation,LazyCompile,0,0xe02c6719000,812,"escapeHeaderValue _http_outgoing.js:493:27",0x2b24593d0df0,~ +code-creation,RegExp,5,0xe02c6719340,766,"[\\r\\n]" +code-creation,Stub,11,0xe02c6719640,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c67196c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c6719740,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c67197c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,RegExp,5,0xe02c6719840,987,"^Connection$" +code-creation,RegExp,5,0xe02c6719c20,1142,"^Transfer-Encoding$" +code-creation,RegExp,5,0xe02c671a0a0,1076,"^Content-Length$" +code-creation,RegExp,5,0xe02c671a4e0,855,"^Date$" +code-creation,RegExp,5,0xe02c671a840,899,"^Expect$" +code-creation,RegExp,5,0xe02c671abe0,921,"^Trailer$" +code-creation,StoreIC,9,0xe02c671af80,134,"messageHeader" +code-creation,Stub,11,0xe02c671b020,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Generic->String)" +code-creation,Stub,11,0xe02c671b0a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c671b120,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c671b1a0,1204,"OutgoingMessage._send _http_outgoing.js:122:43",0x2b24593d1090,~ +code-creation,Stub,11,0xe02c671b660,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c671b6e0,1156,"OutgoingMessage._writeRaw _http_outgoing.js:145:47",0x2b24593d1138,~ +tick,0xc4e1e8,719557,0,0x7fffc29525a0,2,0xca0620,0xe02c671bb47,0xe02c671b605,0xe02c6716f47,0xe02c66df8aa,0xe02c66f06c3,0xe02c66f013e,0xe02c66ef3ea +code-creation,LazyCompile,0,0xe02c671bb80,764,"OutgoingMessage._buffer _http_outgoing.js:179:45",0x2b24593d11e0,~ +code-creation,Stub,11,0xe02c671be80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Generic->String)" +code-creation,LazyCompile,0,0xe02c671bf00,556,"Request.end /home/rgbm21/Documents/botkit/node_modules/request/request.js:1373:34",0x2b24593c7e18,~ +code-creation,LazyCompile,0,0xe02c671c140,2668,"OutgoingMessage.end _http_outgoing.js:526:41",0x2b24593d17c8,~ +code-creation,Handler,3,0xe02c671cbc0,164,"_writeRaw" +code-creation,Handler,3,0xe02c671cc80,164,"_buffer" +code-creation,Stub,3,0xe02c671cd40,184,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c671ce00,134,"outputSize" +code-disable-optimization,"nextTickCallbackWith2Args","TryFinallyStatement" +code-creation,LazyCompile,0,0xe02c671cea0,420,"nextTickCallbackWith2Args node.js:471:39",0x2efb89c124d0, +code-creation,LazyCompile,0,0xe02c671d060,712,"initRead _tls_wrap.js:226:18",0x2b24593e2130,~ +code-creation,LazyCompile,0,0xe02c671d340,684,"Socket.read net.js:281:33",0x2efb89c8f638,~ +code-creation,LazyCompile,0,0xe02c671d600,3212,"Readable.read _stream_readable.js:250:35",0x2efb89c2f4d8,~ +code-creation,LazyCompile,0,0xe02c671e2a0,1212,"howMuchToRead _stream_readable.js:211:23",0x2efb89c2e860,~ +code-creation,LazyCompile,0,0xe02c671e760,428,"isNaN native v8natives.js:32:21",0x31534ff55ee0,~ +tick,0xd533fd,720623,0,0xffffffffffffffd1,2,0xca0620,0xe02c671df06,0xe02c671d4a3,0xe02c671d305,0xe02c671cfe3,0xe02c66ed979 +code-creation,LazyCompile,0,0xe02c671e920,1156,"Socket._read net.js:382:34",0x2efb89c8fc20,~ +code-creation,LazyCompile,0,0xe02c671edc0,356,"onSocketNT _http_client.js:503:20",0x2b24593da2d0,~ +code-creation,LazyCompile,0,0xe02c671ef40,1420,"tickOnSocket _http_client.js:467:22",0x2b24593da228,~ +code-creation,LazyCompile,0,0xe02c671f4e0,484,"exports.FreeList.alloc internal/freelist.js:12:44",0x2b24593cc110,~ +code-creation,LazyCompile,0,0xe02c671f6e0,716," _http_common.js:138:53",0x2b24593cb8d8,~ +code-creation,KeyedStoreIC,10,0xe02c671f9c0,134,"" +code-creation,LazyCompile,0,0xe02c671fa60,356,"httpSocketSetup _http_common.js:197:25",0x2b24593cb788,~ +code-creation,LazyCompile,0,0xe02c671fbe0,436,"Readable.resume _stream_readable.js:698:37",0x2efb89c2f820,~ +code-creation,LazyCompile,0,0xe02c671fda0,364,"resume _stream_readable.js:708:16",0x2efb89c2ee48,~ +code-creation,LazyCompile,0,0xe02c671ff20,664,"emitOne events.js:75:17",0x31534fff78e0,~ +code-creation,LazyCompile,0,0xe02c67201c0,440,"arrayClone events.js:429:20",0x31534fff7cd0,~ +code-creation,LazyCompile,0,0xe02c6720380,444,"g events.js:255:13",0x2efb89ca1168,~ +code-creation,Stub,12,0xe02c6720540,677,"CompareICStub" +code-creation,LazyCompile,0,0xe02c6720800,600,"spliceOne events.js:423:19",0x31534fff7c28,~ +code-creation,KeyedStoreIC,10,0xe02c6720a60,134,"" +code-creation,LazyCompile,0,0xe02c6720b00,420,"onSocket _http_client.js:528:26",0x2c68c592ce98,~ +code-creation,LazyCompile,0,0xe02c6720cc0,460,"callSocketMethod _http_client.js:520:28",0x2c68c592cdf0,~ +code-creation,LazyCompile,0,0xe02c6720ea0,316," _http_client.js:150:44",0x2c68c5920750,~ +code-creation,LazyCompile,0,0xe02c6720fe0,580,"OutgoingMessage._flush _http_outgoing.js:628:44",0x2b24593d1918,~ +tick,0x7f6617840cd6,722219,0,0x919ff6,2,0xca0620,0xe02c6713769,0xe02c6720451,0xe02c67200c0,0xe02c65241ba,0xe02c671f484,0xe02c671eede,0xe02c671cfe3,0xe02c66ed979 +code-creation,LazyCompile,0,0xe02c6721240,1312,"_flushOutput _http_outgoing.js:646:63",0x2b24593d19c0,~ +code-creation,LazyCompile,0,0xe02c6721760,292,"Writable.cork _stream_writable.js:213:35",0x2efb89c32188,~ +code-creation,LazyCompile,0,0xe02c67218a0,276,"WriteReq _stream_writable.js:19:18",0x2efb89c31318,~ +code-creation,Handler,3,0xe02c67219c0,164,"write" +code-creation,Handler,3,0xe02c6721a80,192,"chunk" +code-creation,StoreIC,9,0xe02c6721b40,134,"chunk" +code-creation,Handler,3,0xe02c6721be0,192,"encoding" +code-creation,StoreIC,9,0xe02c6721ca0,134,"encoding" +code-creation,Handler,3,0xe02c6721d40,192,"callback" +code-creation,StoreIC,9,0xe02c6721e00,134,"callback" +code-creation,Handler,3,0xe02c6721ea0,192,"next" +code-creation,StoreIC,9,0xe02c6721f60,134,"next" +code-creation,Stub,3,0xe02c6722000,224,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c67220e0,134,"lastBufferedRequest" +code-creation,LazyCompile,0,0xe02c6722180,612,"Writable.uncork _stream_writable.js:219:37",0x2efb89c32230,~ +tick,0xa2e6a5,723071,0,0x7fffc2952720,2,0xca0620,0xe02c67215b4,0xe02c67210fd,0xe02c6720f53,0xe02c6720e49,0xe02c6720bdf,0xe02c67204f6,0xe02c67200c0,0xe02c65241ba,0xe02c671f484,0xe02c671eede,0xe02c671cfe3,0xe02c66ed979 +code-creation,LazyCompile,0,0xe02c6722400,1620,"clearBuffer _stream_writable.js:362:21",0x2efb89c31ba0,~ +code-creation,LazyCompile,0,0xe02c6722a60,276,"Socket._writev net.js:688:36",0x2efb89c90550,~ +code-creation,LazyCompile,0,0xe02c6722b80,348,"ClientRequest._finish _http_client.js:162:43",0x2b24593da378,~ +code-creation,LazyCompile,0,0xe02c6722ce0,372,"OutgoingMessage._finish _http_outgoing.js:603:45",0x2b24593d1870,~ +code-creation,LazyCompile,0,0xe02c6722e60,268," /home/rgbm21/Documents/botkit/node_modules/request/request.js:793:33",0x2c68c591e8d8,~ +code-creation,LazyCompile,0,0xe02c6722f80,700,"resume_ _stream_readable.js:715:17",0x2efb89c2eef0,~ +code-creation,LazyCompile,0,0xe02c6723240,600,"flow _stream_readable.js:738:14",0x2efb89c2ef98,~ +code-creation,Handler,3,0xe02c67234a0,171,"isNaN" +code-creation,Handler,3,0xe02c6723560,141,"$NaN" +code-creation,StoreIC,9,0xe02c6723600,134,"needReadable" +code-creation,Stub,3,0xe02c67236a0,184,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c6723760,134,"length" +code-creation,StoreIC,9,0xe02c6723800,134,"needReadable" +tick,0xd187c3,723986,0,0x7fff00000001,2 +code-creation,LazyCompile,0,0xe02c67238a0,844,"onlookup dns.js:75:18",0x246174414ee8,~ +code-creation,LazyCompile,0,0xe02c6723c00,968,"asyncCallback dns.js:60:32",0x2c68c592c1b0,~ +code-creation,LazyCompile,0,0xe02c6723fe0,892," net.js:966:33",0x2c68c592b5d0,~ +code-creation,LazyCompile,0,0xe02c6724360,2524,"connect net.js:779:17",0x2efb89c8ebb8,~ +code-creation,LazyCompile,0,0xe02c6724d40,460,"methodProxy _tls_wrap.js:310:58",0x2b24593eef58,~ +tick,0x7f66177e45a9,736197,0,0x0,5 +code-creation,LazyCompile,0,0xe02c6724f20,1604,"afterConnect net.js:1026:22",0x2efb89c8ee58,~ +code-creation,LazyCompile,0,0xe02c6725580,664,"emitNone events.js:65:18",0x31534fff7838,~ +code-creation,Handler,3,0xe02c6725820,164,"removeListener" +tick,0xe02c65176bb,736738,0,0xe02c6713158,0,0xe02c6720451,0xe02c672571a,0xe02c6524163,0xe02c672525d +code-creation,Handler,3,0xe02c67258e0,164,"pop" +code-creation,Handler,3,0xe02c67259a0,566,"removeListener" +code-creation,LazyCompile,0,0xe02c6725be0,252," _tls_wrap.js:1029:41",0x2c68c5924d70,~ +code-creation,LazyCompile,0,0xe02c6725ce0,756,"TLSSocket._start _tls_wrap.js:599:38",0x2b24593e2dc8,~ +code-creation,LazyCompile,0,0xe02c6725fe0,180,"ssl.onhandshakestart _tls_wrap.js:427:36",0x2c68c5929a48,~ +code-creation,LazyCompile,0,0xe02c67260a0,268," net.js:629:34",0x36b97b186188,~ +code-creation,StorePolymorphicIC,9,0xe02c67261c0,154,"_pendingData" +code-creation,StorePolymorphicIC,9,0xe02c6726260,154,"_pendingEncoding" +code-creation,Handler,3,0xe02c6726300,164,"_unrefTimer" +code-creation,Handler,3,0xe02c67263c0,192,"handle" +code-creation,StoreIC,9,0xe02c6726480,134,"handle" +code-creation,Stub,3,0xe02c6726520,188,"StoreFieldStub" +code-creation,StorePolymorphicIC,9,0xe02c67265e0,154,"_bytesDispatched" +code-creation,LazyCompile,0,0xe02c6726680,292,"Readable.isPaused _stream_readable.js:119:39",0x2efb89c2f388,~ +tick,0xbb02b2,737797,0,0xbb89c9,0,0xbb9fc0,0xe02c671d818,0xe02c6725307 +tick,0x7f66177e45a9,755056,0,0x0,5 +tick,0x7f661891e5a7,755884,0,0x0,5 +tick,0x7ae661,756929,0,0x0,5 +tick,0x7f66177e45a9,771430,0,0x0,5 +tick,0xadb151,771781,0,0x18,2,0xca0620,0xe02c672564c,0xe02c6524163,0xe02c670f47c,0xe02c6698f67 +code-creation,LazyCompile,0,0xe02c67267c0,1756," _tls_wrap.js:1045:31",0x2c68c5924e18,~ +code-creation,LazyCompile,0,0xe02c6726fe0,340,"TLSSocket.getEphemeralKeyInfo _tls_wrap.js:660:51",0x2b24593e3260,~ +code-creation,LazyCompile,0,0xe02c6727140,340,"TLSSocket.isSessionReused _tls_wrap.js:644:47",0x2b24593e3110,~ +code-creation,LazyCompile,0,0xe02c67272a0,460,"TLSSocket.getPeerCertificate _tls_wrap.js:627:50",0x2b24593e2fc0,~ +code-creation,LazyCompile,0,0xe02c6727480,1436,"translatePeerCertificate _tls_common.js:149:69",0x2b24593dff78,~ +code-creation,LazyCompile,0,0xe02c6727a20,1416,"parseCertString tls.js:212:51",0x2b24593ddb00,~ +code-creation,Handler,3,0xe02c6727fc0,186,"slice" +tick,0xbb10f8,772867,0,0x2de24a0,0,0xbb9fc0,0xe02c6727bac,0xe02c6727633,0xe02c672740e,0xe02c6726bd7,0xe02c672564c,0xe02c6524163,0xe02c670f47c,0xe02c6698f67 +code-creation,Handler,3,0xe02c6728080,192,"O" +code-creation,KeyedStoreIC,10,0xe02c6728140,153,"O" +code-creation,Handler,3,0xe02c67281e0,192,"C" +code-creation,Handler,3,0xe02c67282a0,192,"L" +code-creation,Handler,3,0xe02c6728360,192,"O" +code-creation,RegExp,5,0xe02c6728420,1279,"([^\\n:]*):([^\\n]*)(?:\\n|$)" +code-creation,LazyCompile,0,0xe02c6728920,596," _tls_common.js:163:57",0x2c68c59399a8,~ +code-creation,Handler,3,0xe02c6728b80,164,"hasOwnProperty" +code-disable-optimization,"checkServerIdentity","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c6728c40,4264,"checkServerIdentity tls.js:74:59",0x2b24593dda58, +tick,0x7f661772db28,773902,0,0xc294f030,2,0xca0620,0xe02c6726c2b,0xe02c672564c,0xe02c6524163,0xe02c670f47c,0xe02c6698f67 +code-creation,LazyCompile,0,0xe02c6729d00,1228," tls.js:121:54",0x2c68c593a9f0,~ +code-creation,RegExp,5,0xe02c672a1e0,1362,"^(DNS|IP Address|URI):(.*)$" +code-creation,RegExp,5,0xe02c672a740,726,"\\.$" +code-creation,Stub,11,0xe02c672aa20,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,LazyCompile,0,0xe02c672aaa0,236," tls.js:151:37",0x2c68c593ab40,~ +code-creation,LazyCompile,0,0xe02c672aba0,2468,"regexpify tls.js:76:21",0x2c68c593a8e8,~ +code-creation,Stub,11,0xe02c672b560,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,RegExp,5,0xe02c672b5e0,956,"[\\.\\*].*\\*" +code-creation,RegExp,5,0xe02c672b9a0,1269,"\\*.*\\..+\\..+" +code-creation,RegExp,5,0xe02c672bea0,1006,"\\*([a-z0-9\\\\-_\\.])|[\\.\,\\-\\\\\\^\\$+?*\\[\\]\\(\\):!\\|{}]" +code-creation,LazyCompile,0,0xe02c672c2a0,316," tls.js:100:17",0x2c68c593b820,~ +code-creation,Stub,11,0xe02c672c3e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c672c460,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c672c4e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Stub,11,0xe02c672c560,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c672c5e0,171,"RegExp" +tick,0x7f66177da4fd,774960,0,0x0,0,0xbb9fc0,0xe02c672b4d3,0xe02c672ab41,0xe02c65ef731,0xe02c65ef19c,0xe02c6729473,0xe02c6726c2b,0xe02c672564c,0xe02c6524163,0xe02c670f47c,0xe02c6698f67 +code-creation,LazyCompile,0,0xe02c672c6a0,260," tls.js:183:35",0x2c68c593ac90,~ +code-creation,RegExp,5,0xe02c672c7c0,1104,"^[a-z0-9\\-_]*.slack\\.com\\.$" +code-creation,Stub,14,0xe02c672cc20,224,"ToBooleanStub(Bool,Null)" +code-creation,RegExp,5,0xe02c672cd00,971,"^slack\\.com\\.$" +code-creation,StoreIC,9,0xe02c672d0e0,134,"$regexpLastMatchInfoOverride" +code-creation,StoreIC,9,0xe02c672d180,134,"_eventsCount" +code-creation,LazyCompile,0,0xe02c672d220,500," https.js:80:47",0x2c68c59242d8,~ +code-creation,LazyCompile,0,0xe02c672d420,340,"TLSSocket.getSession _tls_wrap.js:636:42",0x2b24593e3068,~ +code-creation,LazyCompile,0,0xe02c672d580,1156,"_cacheSession https.js:144:55",0x2b24593dc168,~ +code-creation,LazyCompile,0,0xe02c672da20,1580,"afterWrite net.js:751:20",0x2efb89c8eb10,~ +tick,0xbf7221,776036,0,0x7fffc29527f0,2 +code-creation,LazyCompile,0,0xe02c672e060,584," _stream_writable.js:380:68",0x2c68c5935db0,~ +code-creation,StoreIC,9,0xe02c672e2c0,134,"pendingcb" +code-creation,LazyCompile,0,0xe02c672e360,260,"finish _http_outgoing.js:544:18",0x2c68c5931ca0,~ +tick,0x7f66177e45a9,1145316,0,0x0,5 +tick,0x7f66177e45a9,1157686,0,0x0,5 +code-creation,LazyCompile,0,0xe02c672e480,2156,"onread net.js:501:16",0x2efb89c8e9c0,~ +code-creation,Stub,12,0xe02c672ed00,221,"CompareICStub" +code-creation,LazyCompile,0,0xe02c672ede0,612,"Readable.push _stream_readable.js:99:35",0x2efb89c2f238,~ +code-creation,LazyCompile,0,0xe02c672f060,2228,"readableAddChunk _stream_readable.js:123:26",0x2efb89c2e668,~ +code-creation,LazyCompile,0,0xe02c672f920,516,"chunkInvalid _stream_readable.js:365:22",0x2efb89c2e908,~ +tick,0xbeb43b,1158340,0,0x7fffc294b7f0,0,0xbb9fc0,0xe02c672f5f7,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c672fb40,2900,"socketOnData _http_client.js:308:22",0x2b24593d9f88,~ +code-creation,Stub,12,0xe02c67306a0,221,"CompareICStub" +code-creation,LazyCompile,0,0xe02c6730780,520,"pushValueToArray node.js:185:30",0x31534fffc958,~ +code-creation,LazyCompile,0,0xe02c67309a0,1612,"parserOnHeadersComplete _http_common.js:42:33",0x2b24593cb440,~ +code-creation,LazyCompile,0,0xe02c6731000,996,"IncomingMessage _http_incoming.js:20:25",0x2b24593ca030,~ +code-creation,Handler,3,0xe02c6731400,192,"_readableState" +code-creation,StorePolymorphicIC,9,0xe02c67314c0,174,"_readableState" +code-creation,Handler,3,0xe02c6731580,192,"readable" +code-creation,StorePolymorphicIC,9,0xe02c6731640,174,"readable" +code-creation,Handler,3,0xe02c6731700,192,"domain" +code-creation,Handler,3,0xe02c67317c0,164,"_events" +code-creation,Handler,3,0xe02c6731880,192,"_events" +code-creation,Handler,3,0xe02c6731940,184,"_eventsCount" +code-creation,Handler,3,0xe02c6731a00,164,"_maxListeners" +code-creation,Handler,3,0xe02c6731ac0,192,"_maxListeners" +tick,0x94bc96,1159409,0,0x7fffc2949ea0,0,0xbb9fc0,0xe02c6730c03,0xe41e10,0xe02c672fd03,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,Stub,2,0xe02c6731b80,188,"DoubleToIStub" +code-creation,Stub,2,0xe02c6731c40,1292,"BinaryOpWithAllocationSiteStub(ADD_CreateAllocationMementos:Smi*String->String)" +code-creation,Stub,11,0xe02c6732160,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:Smi*String->String)" +code-creation,Stub,11,0xe02c67321e0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:Smi*String->String)" +code-creation,Stub,11,0xe02c6732260,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Smi->String)" +code-creation,LazyCompile,0,0xe02c67322e0,968,"IncomingMessage._addHeaderLines _http_incoming.js:98:53",0x2b24593ca378,~ +code-creation,LazyCompile,0,0xe02c67326c0,1852,"IncomingMessage._addHeaderLine _http_incoming.js:127:52",0x2b24593ca420,~ +code-creation,Handler,3,0xe02c6732e00,164,"_addHeaderLine" +tick,0x7f6617708ab2,1160481,0,0x0,0,0xbb9fc0,0xe02c6732589,0xe02c6730dac,0xe41e10,0xe02c672fd03,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c6732ec0,1692,"parserOnIncomingClient _http_client.js:367:32",0x2b24593da030,~ +code-creation,Stub,3,0xe02c6733560,212,"StoreFieldStub" +code-creation,LazyCompile,0,0xe02c6733640,612,"listeners events.js:377:54",0x31534fff82b8,~ +code-creation,LazyCompile,0,0xe02c67338c0,508,"setMaxListeners events.js:43:66",0x31534fff7e20,~ +tick,0xd2ff42,1161571,0,0x7fffc294a4b0,0,0xbbb8f0,0xe02c6733a71,0xe02c6714586,0xe02c6699016,0xe02c671ffef,0xe02c65241ba,0xe02c67334e2,0xe02c6730f95,0xe41e10,0xe02c672fd03,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,Stub,12,0xe02c6733ac0,221,"CompareICStub" +code-creation,LazyCompile,0,0xe02c6733ba0,260,"resp.removeHeader /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:61:32",0x2c68c590e138,~ +code-creation,LazyCompile,0,0xe02c6733cc0,364,"Caseless.del /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:43:35",0x2461744b6fa0,~ +code-creation,LazyCompile,0,0xe02c6733e40,228,"module.exports /home/rgbm21/Documents/botkit/node_modules/caseless/index.js:48:27",0x2461744b7048,~ +code-creation,Handler,3,0xe02c6733f40,192,"dict" +code-creation,StoreIC,9,0xe02c6734000,134,"dict" +code-creation,LazyCompile,0,0xe02c67340a0,3356,"Redirect.onResponse /home/rgbm21/Documents/botkit/node_modules/request/lib/redirect.js:75:42",0x3c4a56a792e0,~ +tick,0xd10994,1162614,0,0x68f00000687,2,0xca0620,0xe02c6734187,0xe02c67151ee,0xe02c6699016,0xe02c671ffef,0xe02c65241ba,0xe02c67334e2,0xe02c6730f95,0xe41e10,0xe02c672fd03,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c6734dc0,1452,"Redirect.redirectTo /home/rgbm21/Documents/botkit/node_modules/request/lib/redirect.js:41:42",0x3c4a56a79238,~ +code-creation,Handler,3,0xe02c6735380,201,"close" +code-creation,Stub,3,0xe02c6735460,286,"LoadFieldStub" +code-creation,Handler,3,0xe02c6735580,201,"data" +code-creation,Handler,3,0xe02c6735660,164,"resume" +code-creation,StoreIC,9,0xe02c6735720,134,"flowing" +code-creation,Handler,3,0xe02c67357c0,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,Handler,3,0xe02c6735860,192,"resumeScheduled" +code-creation,StoreIC,9,0xe02c6735920,134,"resumeScheduled" +code-creation,Handler,3,0xe02c67359c0,201,"error" +code-creation,LazyCompile,0,0xe02c6735aa0,700,"Request.readResponseBody /home/rgbm21/Documents/botkit/node_modules/request/request.js:987:47",0x2b24593c72f0,~ +code-creation,LazyCompile,0,0xe02c6735d60,1324,"BufferList /home/rgbm21/Documents/botkit/node_modules/bl/bl.js:4:21",0x2b24593fc828,~ +code-creation,LazyCompile,0,0xe02c67362a0,252,"isBuffer buffer.js:175:36",0x31534ff9a4c0,~ +code-creation,LazyCompile,0,0xe02c67363a0,908,"Duplex /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_duplex.js:42:16",0x2b24593fe820,~ +code-creation,LazyCompile,0,0xe02c6736740,724,"Readable /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_readable.js:133:18",0x31b5aea06980,~ +tick,0xcf5735,1163682,0,0x2e27808,0,0xcf5670,0xe02c6667c58,0xe02c653b4b9,0xe02c6539adb,0xe02c6539417,0xe02c66a852a,0xe02c654e0fe,0xe02c67367fe,0xe02c67364e0,0xe02c6736277,0xe02c6735e4e,0xe02c6735bba,0xe02c6715ae2,0xe02c6699016,0xe02c671ffef,0xe02c65241ba,0xe02c67334e2,0xe02c6730f95,0xe41e10,0xe02c672fd03,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c6737140,1900,"ReadableState /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_readable.js:65:23",0x31b5aea068d8,~ +code-creation,Handler,3,0xe02c67378c0,192,"domain" +code-creation,Handler,3,0xe02c6737980,164,"_events" +code-creation,Handler,3,0xe02c6737a40,192,"_events" +code-creation,Handler,3,0xe02c6737b00,184,"_eventsCount" +code-creation,Handler,3,0xe02c6737bc0,164,"_maxListeners" +code-creation,Handler,3,0xe02c6737c80,192,"_maxListeners" +code-creation,LazyCompile,0,0xe02c6737d40,900,"Writable /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_writable.js:169:18",0x31b5aea0a910,~ +code-creation,LazyCompile,0,0xe02c67380e0,1724,"WritableState /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_writable.js:59:23",0x31b5aea0a868,~ +code-creation,Handler,3,0xe02c67387a0,164,"_events" +code-creation,Handler,3,0xe02c6738860,164,"on" +tick,0x9155d4,1164749,0,0x7fffc294a220,2,0xca0620,0xe02c656efde,0xe02c6736711,0xe02c6736277,0xe02c6735e4e,0xe02c6735bba,0xe02c6715ae2,0xe02c6699016,0xe02c671ffef,0xe02c65241ba,0xe02c67334e2,0xe02c6730f95,0xe41e10,0xe02c672fd03,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c6738920,1012,"Readable.on /home/rgbm21/Documents/botkit/node_modules/readable-stream/lib/_stream_readable.js:719:33",0x31b5aea08000,~ +code-creation,Stub,3,0xe02c6738d20,212,"StoreFieldStub" +code-creation,Handler,3,0xe02c6738e00,204,"data" +code-creation,LazyCompile,0,0xe02c6738ee0,660,"parserOnBody _http_common.js:96:22",0x2b24593cb4e8,~ +code-creation,StoreIC,9,0xe02c6739180,134,"reading" +code-creation,LazyCompile,0,0xe02c6739220,364,"maybeReadMore _stream_readable.js:422:23",0x2efb89c2eba8,~ +code-creation,LazyCompile,0,0xe02c67393a0,532,"needMoreData _stream_readable.js:177:22",0x2efb89c2e710,~ +code-creation,StoreIC,9,0xe02c67395c0,134,"reading" +code-creation,StoreIC,9,0xe02c6739660,134,"sync" +code-creation,StoreIC,9,0xe02c6739700,134,"needReadable" +code-creation,Handler,3,0xe02c67397a0,164,"_read" +code-creation,StoreIC,9,0xe02c6739860,134,"sync" +code-creation,StoreIC,9,0xe02c6739900,134,"readingMore" +code-creation,LazyCompile,0,0xe02c67399a0,428,"IncomingMessage.read _http_incoming.js:73:42",0x2b24593ca180,~ +code-creation,Handler,3,0xe02c6739b60,164,"_read" +tick,0x7f6617850ca1,1165811,0,0x91b65b,2,0xca0620,0xe02c671df06,0xe02c6739b04,0xe02c67230ba,0xe02c671cfe3,0xe02c66ed979 +code-creation,LazyCompile,0,0xe02c6739c20,324,"IncomingMessage._read _http_incoming.js:80:43",0x2b24593ca228,~ +code-creation,LazyCompile,0,0xe02c6739d80,356,"readStart _http_incoming.js:6:19",0x2b24593c9ee0,~ +code-creation,StoreIC,9,0xe02c6739f00,134,"resumeScheduled" +code-creation,Handler,3,0xe02c6739fa0,164,"emit" +code-creation,Stub,3,0xe02c673a060,220,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c673a140,134,"emittedReadable" +code-creation,Handler,3,0xe02c673a1e0,141,"$nonNumberToNumber" +code-creation,LazyCompile,0,0xe02c673a280,2720,"fromList _stream_readable.js:820:18",0x2efb89c2f040,~ +code-creation,LazyCompile,0,0xe02c673ad20,300," /home/rgbm21/Documents/botkit/node_modules/request/request.js:958:41",0x2c68c592e070,~ +code-creation,LazyCompile,0,0xe02c673ae60,444," /home/rgbm21/Documents/botkit/node_modules/request/request.js:993:28",0x2c68c5942290,~ +code-creation,LazyCompile,0,0xe02c673b020,1108,"BufferList.append /home/rgbm21/Documents/botkit/node_modules/bl/bl.js:51:40",0x2b24593fc978,~ +tick,0xbca717,1166898,0,0x93e461,0,0x93e150,0xe02c673b3cd,0xe02c673af86,0xe02c671ffef,0xe02c65241ba,0xe02c673ae02,0xe02c671ffef,0xe02c65241ba,0xe02c671e267,0xe02c67233c3,0xe02c6723153,0xe02c671cfe3,0xe02c66ed979 +code-creation,LazyCompile,0,0xe02c673b480,872,"maybeReadMore_ _stream_readable.js:429:24",0x2efb89c2ec50,~ +code-creation,StoreIC,9,0xe02c673b800,134,"readingMore" +code-creation,Stub,3,0xe02c673b8a0,188,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c673b960,134,"bytesRead" +code-creation,Handler,3,0xe02c673ba00,164,"push" +code-creation,Handler,3,0xe02c673bac0,164,"emit" +code-creation,Handler,3,0xe02c673bb80,164,"execute" +code-creation,Handler,3,0xe02c673bc40,164,"slice" +code-creation,Handler,3,0xe02c673bd00,164,"push" +code-creation,Stub,3,0xe02c673bdc0,228,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c673bec0,134,"_destdata" +code-creation,Handler,3,0xe02c673bf60,164,"emit" +code-creation,Handler,3,0xe02c673c020,171,"Buffer" +code-creation,Handler,3,0xe02c673c0e0,164,"append" +code-creation,StoreIC,9,0xe02c673c1a0,134,"length" +code-creation,Handler,3,0xe02c673c240,164,"resume" +tick,0xaf7c3c,1167956,0,0xc,0,0xbb9fc0,0xe02c6739e82,0xe02c6739d1d,0xe02c671df06,0xe02c672f668,0xe02c672eff9,0xe02c67390f1,0xe41e10,0xe02c672fd03,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,Stub,3,0xe02c673c300,120,"LoadConstantStub" +code-creation,LazyCompile,0,0xe02c673c380,740,"parserOnMessageComplete _http_common.js:115:33",0x2b24593cb590,~ +code-creation,LazyCompile,0,0xe02c673c680,780,"onEofChunk _stream_readable.js:378:20",0x2efb89c2e9b0,~ +code-creation,LazyCompile,0,0xe02c673c9a0,644,"emitReadable _stream_readable.js:396:22",0x2efb89c2ea58,~ +code-creation,LazyCompile,0,0xe02c673cc40,396,"emitReadable_ _stream_readable.js:409:23",0x2efb89c2eb00,~ +code-creation,LazyCompile,0,0xe02c673cde0,580,"endReadable _stream_readable.js:886:21",0x2efb89c2f0e8,~ +code-creation,StoreIC,9,0xe02c673d040,134,"_eventsCount" +code-creation,LazyCompile,0,0xe02c673d0e0,876,"freeParser _http_common.js:167:20",0x2b24593cb638,~ +code-creation,LazyCompile,0,0xe02c673d460,436,"exports.FreeList.free internal/freelist.js:18:43",0x2b24593cc1b8,~ +code-creation,LazyCompile,0,0xe02c673d620,436,"endReadableNT _stream_readable.js:900:23",0x2efb89c2f190,~ +code-creation,LazyCompile,0,0xe02c673d7e0,1300,"responseOnEnd _http_client.js:437:23",0x2b24593da0d8,~ +code-creation,LazyCompile,0,0xe02c673dd00,556,"Socket.destroySoon net.js:425:40",0x2efb89c8fd70,~ +code-creation,LazyCompile,0,0xe02c673df40,652,"Socket.end net.js:399:32",0x2efb89c8fcc8,~ +tick,0xc58e41,1169018,0,0x0,2,0xca0620,0xe02c673e078,0xe02c673ddde,0xe02c673d99d,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,LazyCompile,0,0xe02c673e1e0,812,"Writable.end _stream_writable.js:420:34",0x2efb89c32428,~ +code-creation,LazyCompile,0,0xe02c673e520,564,"endWritable _stream_writable.js:476:21",0x2efb89c31e40,~ +code-creation,LazyCompile,0,0xe02c673e760,332,"prefinish _stream_writable.js:455:19",0x2efb89c31cf0,~ +code-creation,LazyCompile,0,0xe02c673e8c0,1572,"onSocketFinish net.js:186:24",0x2efb89c8e678,~ +code-creation,LazyCompile,0,0xe02c673ef00,348,"Socket.destroy net.js:493:36",0x2efb89c8fec0,~ +code-creation,LazyCompile,0,0xe02c673f060,2048,"Socket._destroy net.js:436:37",0x2efb89c8fe18,~ +code-creation,LazyCompile,0,0xe02c673f860,436,"exports.unenroll timers.js:138:45",0x192859efd2f8,~ +code-creation,LazyCompile,0,0xe02c673fa20,748,"reuse timers.js:122:15",0x192859efcdb8,~ +code-creation,Handler,3,0xe02c673fd20,192,"_idleNext" +code-creation,StorePolymorphicIC,9,0xe02c673fde0,154,"_idleNext" +code-creation,Stub,3,0xe02c673fe80,284,"StoreTransitionStub" +code-creation,Handler,3,0xe02c673ffa0,192,"_idlePrev" +code-creation,StorePolymorphicIC,9,0xe02c6740060,154,"_idlePrev" +code-creation,LazyCompile,0,0xe02c6740100,692,"closeProxy _tls_wrap.js:316:55",0x2b24593e25e8,~ +code-creation,LazyCompile,0,0xe02c67403c0,524,"fireErrorCallbacks net.js:441:30",0x2c68c5948d10,~ +tick,0xd14f6a,1170085,0,0x2de24a0,2,0xca0620,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,LazyCompile,0,0xe02c67405e0,796," /home/rgbm21/Documents/botkit/node_modules/request/request.js:827:30",0x2c68c592dd28,~ +code-creation,LazyCompile,0,0xe02c6740900,212," /home/rgbm21/Documents/botkit/node_modules/request/request.js:909:33",0x2c68c592df20,~ +code-creation,LazyCompile,0,0xe02c67409e0,268," /home/rgbm21/Documents/botkit/node_modules/request/request.js:962:40",0x2c68c592e118,~ +code-creation,LazyCompile,0,0xe02c6740b00,404," /home/rgbm21/Documents/botkit/node_modules/request/request.js:797:26",0x2c68c591e980,~ +code-disable-optimization,"","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c6740ca0,2532," /home/rgbm21/Documents/botkit/node_modules/request/request.js:1000:27",0x2c68c5942338, +code-creation,LazyCompile,0,0xe02c67416a0,348,"BufferList.toString /home/rgbm21/Documents/botkit/node_modules/bl/bl.js:165:42",0x2b24593fce10,~ +code-creation,LazyCompile,0,0xe02c6741800,292,"BufferList.slice /home/rgbm21/Documents/botkit/node_modules/bl/bl.js:98:39",0x2b24593fccc0,~ +code-creation,LazyCompile,0,0xe02c6741940,3348,"BufferList.copy /home/rgbm21/Documents/botkit/node_modules/bl/bl.js:102:38",0x2b24593fcd68,~ +code-creation,LazyCompile,0,0xe02c6742660,800,"BufferList._offset /home/rgbm21/Documents/botkit/node_modules/bl/bl.js:41:41",0x2b24593fc8d0,~ +code-creation,LazyCompile,0,0xe02c6742980,1404,"Buffer.concat buffer.js:220:25",0x31534ff932b0,~ +code-creation,Handler,3,0xe02c6742f00,164,"copy" +tick,0xe02c642288c,1171148,0,0xe02c6523bc2,0,0xe02c6741669,0xe02c67200c0,0xe02c65241ba,0xe02c6740aa2,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,LazyCompile,0,0xe02c6742fc0,756," /home/rgbm21/Documents/botkit/lib/Slack_web_api.js:15:58",0x36b97b1ae148,~ +code-creation,Stub,11,0xe02c67432c0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Generic->String)" +code-creation,Stub,11,0xe02c6743340,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +tick,0xc0686f,1172213,0,0xe032,0,0xcc01f0,0xe02c651d4e8,0xe02c674314a,0xe02c66d4efd,0xe02c669931c,0xe02c6524712,0xe02c6524232,0xe02c6741669,0xe02c67200c0,0xe02c65241ba,0xe02c6740aa2,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,LazyCompile,0,0xe02c67433c0,1372," /home/rgbm21/Documents/botkit/lib/Slackbot_worker.js:56:20",0x36b97b1add20,~ +code-creation,LazyCompile,0,0xe02c6743920,1644,"WebSocket /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:46:19",0x36b97b18ad70,~ +code-creation,Handler,3,0xe02c6743fa0,192,"domain" +code-creation,Handler,3,0xe02c6744060,164,"_events" +code-creation,Handler,3,0xe02c6744120,192,"_events" +code-creation,Handler,3,0xe02c67441e0,184,"_eventsCount" +code-creation,Handler,3,0xe02c67442a0,164,"_maxListeners" +code-creation,Handler,3,0xe02c6744360,192,"_maxListeners" +code-creation,Handler,3,0xe02c6744420,171,"Array" +tick,0x7f6617767526,1173287,0,0x2e276e8,0,0xbb9fc0,0xe02c6743ddb,0xe02c67436ea,0xe02c67431c6,0xe02c66d4efd,0xe02c669931c,0xe02c6524712,0xe02c6524232,0xe02c6741669,0xe02c67200c0,0xe02c65241ba,0xe02c6740aa2,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,LazyCompile,0,0xe02c67444e0,8992,"initAsClient /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:546:22",0x36b97b18b160,~ +code-creation,LazyCompile,0,0xe02c6746800,1268,"Options /home/rgbm21/Documents/botkit/node_modules/options/lib/options.js:8:17",0x36b97b18f468,~ +code-creation,LazyCompile,0,0xe02c6746d00,444," /home/rgbm21/Documents/botkit/node_modules/options/lib/options.js:11:41",0x2c68c5952368,~ +code-creation,Handler,3,0xe02c6746ec0,184,"protocolVersion" +code-creation,KeyedStoreIC,10,0xe02c6746f80,153,"protocolVersion" +code-creation,Handler,3,0xe02c6747020,171,"Object" +code-creation,StoreIC,9,0xe02c67470e0,134,"get" +code-creation,Handler,3,0xe02c6747180,192,"host" +tick,0xbe6663,1174342,0,0xbea7a1,0,0xbbbe40,0xe02c6746dbd,0xe02c65358da,0xe02c65353ba,0xe02c6746a65,0xe02c674465a,0xe02c6743f77,0xe02c67436ea,0xe02c67431c6,0xe02c66d4efd,0xe02c669931c,0xe02c6524712,0xe02c6524232,0xe02c6741669,0xe02c67200c0,0xe02c65241ba,0xe02c6740aa2,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,Handler,3,0xe02c6747240,192,"headers" +code-creation,Handler,3,0xe02c6747300,192,"protocol" +code-creation,Handler,3,0xe02c67473c0,192,"agent" +code-creation,Handler,3,0xe02c6747480,192,"pfx" +code-creation,Handler,3,0xe02c6747540,192,"key" +code-creation,LazyCompile,0,0xe02c6747600,252,"PropertyDescriptor_HasGetter native v8natives.js:363:50",0x31534ff5d298,~ +code-creation,Handler,3,0xe02c6747700,192,"passphrase" +code-creation,Handler,3,0xe02c67477c0,192,"cert" +code-creation,Handler,3,0xe02c6736a20,192,"ca" +code-creation,LazyCompile,1,0xe02c6736ae0,203,"PropertyDescriptor_HasGetter native v8natives.js:363:50",0x31534ff5d298,* +code-creation,Handler,3,0xe02c6736bc0,192,"ciphers" +code-creation,LazyCompile,0,0xe02c6736c80,556,"ToString native runtime.js:453:18",0x31534ff6ca78,~ +code-creation,Handler,3,0xe02c6736ec0,192,"rejectUnauthorized" +code-creation,Handler,3,0xe02c6736f80,192,"perMessageDeflate" +code-creation,Handler,3,0xe02c6737040,192,"localAddress" +code-creation,LazyCompile,0,0xe02c67478c0,1904,"Options.merge /home/rgbm21/Documents/botkit/node_modules/options/lib/options.js:25:24",0x2c68c59524b8,~ +code-creation,LazyCompile,1,0xe02c6748040,816,"ToString native runtime.js:453:18",0x31534ff6ca78,* +code-creation,LazyCompile,0,0xe02c6748380,220,"Object.defineProperty.get /home/rgbm21/Documents/botkit/node_modules/options/lib/options.js:14:20",0x2c68c5952b20,~ +code-creation,Handler,3,0xe02c6748460,192,"protocol" +code-creation,StoreIC,9,0xe02c6748520,134,"protocol" +code-creation,Handler,3,0xe02c67485c0,192,"slashes" +code-creation,StoreIC,9,0xe02c6748680,134,"slashes" +tick,0x7f66177da4fd,1175406,0,0x0,0,0xbbb8f0,0xe02c66d542e,0xe02c66d52fc,0xe02c6744856,0xe02c6743f77,0xe02c67436ea,0xe02c67431c6,0xe02c66d4efd,0xe02c669931c,0xe02c6524712,0xe02c6524232,0xe02c6741669,0xe02c67200c0,0xe02c65241ba,0xe02c6740aa2,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,Handler,3,0xe02c6748720,192,"auth" +code-creation,StoreIC,9,0xe02c67487e0,134,"auth" +code-creation,Handler,3,0xe02c6748880,192,"host" +code-creation,StoreIC,9,0xe02c6748940,134,"host" +code-creation,Stub,3,0xe02c67489e0,212,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6748ac0,184,"port" +code-creation,StoreIC,9,0xe02c6748b80,134,"port" +code-creation,Handler,3,0xe02c6748c20,192,"hostname" +code-creation,StoreIC,9,0xe02c6748ce0,134,"hostname" +code-creation,Handler,3,0xe02c6748d80,192,"hash" +code-creation,StoreIC,9,0xe02c6748e40,134,"hash" +code-creation,Handler,3,0xe02c6748ee0,192,"search" +code-creation,StoreIC,9,0xe02c6748fa0,134,"search" +code-creation,Handler,3,0xe02c6749040,192,"query" +code-creation,StoreIC,9,0xe02c6749100,134,"query" +code-creation,Handler,3,0xe02c67491a0,192,"pathname" +code-creation,StoreIC,9,0xe02c6749260,134,"pathname" +code-creation,Handler,3,0xe02c6749300,192,"path" +code-creation,StoreIC,9,0xe02c67493c0,134,"path" +code-creation,Handler,3,0xe02c6749460,192,"href" +code-creation,StoreIC,9,0xe02c6749520,134,"href" +code-creation,Handler,3,0xe02c67495c0,164,"parse" +code-creation,Handler,3,0xe02c6749680,186,"indexOf" +code-creation,Handler,3,0xe02c6749740,186,"split" +code-creation,Handler,3,0xe02c6749800,186,"replace" +code-creation,Handler,3,0xe02c67498c0,164,"join" +code-creation,Handler,3,0xe02c6749980,186,"trim" +code-creation,Handler,3,0xe02c6749a40,164,"exec" +code-creation,Handler,3,0xe02c6749b00,186,"toLowerCase" +code-creation,StoreIC,9,0xe02c6749bc0,134,"protocol" +code-creation,Handler,3,0xe02c6749c60,186,"substr" +code-creation,StoreIC,9,0xe02c6749d20,134,"slashes" +code-creation,Handler,3,0xe02c6749dc0,186,"lastIndexOf" +code-creation,Handler,3,0xe02c6749e80,186,"slice" +code-creation,StoreIC,9,0xe02c6749f40,134,"host" +code-creation,Handler,3,0xe02c6749fe0,164,"parseHost" +code-creation,StoreIC,9,0xe02c674a0a0,134,"hostname" +code-creation,StoreIC,9,0xe02c674a140,134,"hostname" +code-creation,StoreIC,9,0xe02c674a1e0,134,"hostname" +code-creation,KeyedStoreIC,10,0xe02c674a280,134,"" +code-creation,StoreIC,9,0xe02c674a320,134,"hostname" +code-creation,StoreIC,9,0xe02c674a3c0,134,"host" +code-creation,StoreIC,9,0xe02c674a460,134,"pathname" +code-creation,StoreIC,9,0xe02c674a500,134,"path" +code-creation,Handler,3,0xe02c674a5a0,164,"format" +code-creation,Handler,3,0xe02c674a660,186,"charAt" +code-creation,StoreIC,9,0xe02c674a720,134,"href" +code-creation,LazyCompile,0,0xe02c674a7c0,628,"PerMessageDeflate /home/rgbm21/Documents/botkit/node_modules/ws/lib/PerMessageDeflate.js:14:27",0x36b97b1943d0,~ +code-creation,LazyCompile,0,0xe02c674aa40,908,"PerMessageDeflate.offer /home/rgbm21/Documents/botkit/node_modules/ws/lib/PerMessageDeflate.js:32:45",0x36b97b194498,~ +tick,0xaf7c3c,1176468,0,0x7fffc294a860,0,0xbbbe40,0xe02c6744d42,0xe02c6743f77,0xe02c67436ea,0xe02c67431c6,0xe02c66d4efd,0xe02c669931c,0xe02c6524712,0xe02c6524232,0xe02c6741669,0xe02c67200c0,0xe02c65241ba,0xe02c6740aa2,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,Stub,12,0xe02c674ade0,686,"CompareICStub" +code-creation,Handler,3,0xe02c674b0a0,141,"$nonStringToString" +code-creation,Stub,11,0xe02c674b140,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:Smi*String->String)" +code-creation,LazyCompile,0,0xe02c674b1c0,204,"now native date.js:201:17",0x31534ff96160,~ +current-time,1176625 +code-creation,Stub,2,0xe02c674b2a0,1408,"BinaryOpWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Number->String)" +code-creation,Stub,11,0xe02c674b820,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Number->String)" +code-creation,Stub,11,0xe02c674b8a0,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*Number->String)" +code-creation,Handler,3,0xe02c674b920,164,"utf8Write" +code-creation,Handler,3,0xe02c674b9e0,216,"_handle" +code-creation,StoreIC,9,0xe02c674bac0,134,"_handle" +code-creation,Handler,3,0xe02c674bb60,164,"call" +code-creation,Handler,3,0xe02c674bc20,192,"_options" +code-creation,StoreIC,9,0xe02c674bce0,134,"_options" +code-creation,Stub,11,0xe02c674bd80,111,"BinaryOpICWithAllocationSiteStub(ADD_CreateAllocationMementos:String*String->String)" +code-creation,Handler,3,0xe02c674be00,164,"update" +code-creation,Handler,3,0xe02c674bec0,164,"digest" +tick,0xbad546,1177532,0,0x9424a6,2,0xca0620,0xe02c6745196,0xe02c6743f77,0xe02c67436ea,0xe02c67431c6,0xe02c66d4efd,0xe02c669931c,0xe02c6524712,0xe02c6524232,0xe02c6741669,0xe02c67200c0,0xe02c65241ba,0xe02c6740aa2,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,LazyCompile,0,0xe02c674bf80,380,"buildHostHeader /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:508:25",0x36b97b18b010,~ +code-creation,LazyCompile,0,0xe02c674c100,492,"format /home/rgbm21/Documents/botkit/node_modules/ws/lib/Extensions.js:54:16",0x36b97b1a08b0,~ +code-creation,LazyCompile,0,0xe02c674c300,596," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Extensions.js:55:41",0x2c68c5955cf0,~ +code-creation,LazyCompile,0,0xe02c674c560,620," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Extensions.js:60:35",0x2c68c5955f60,~ +code-creation,LazyCompile,0,0xe02c674c7e0,572," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Extensions.js:61:61",0x2c68c5956250,~ +code-creation,LazyCompile,0,0xe02c674ca20,276," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Extensions.js:64:30",0x2c68c5956500,~ +code-creation,LazyCompile,0,0xe02c674cb40,364,"Options.isDefinedAndNonNull /home/rgbm21/Documents/botkit/node_modules/options/lib/options.js:79:38",0x2c68c5952758,~ +code-creation,Handler,3,0xe02c674ccc0,202,"key" +code-creation,Handler,3,0xe02c674cda0,202,"key" +code-creation,Handler,3,0xe02c674ce80,202,"passphrase" +code-creation,Handler,3,0xe02c674cf60,202,"passphrase" +code-creation,Handler,3,0xe02c674d040,202,"cert" +code-creation,Handler,3,0xe02c674d120,202,"ca" +code-creation,Handler,3,0xe02c674d200,202,"ciphers" +code-creation,Handler,3,0xe02c674d2e0,202,"rejectUnauthorized" +code-creation,Handler,3,0xe02c674d3c0,192,"path" +code-creation,Handler,3,0xe02c674d480,216,"headers" +code-creation,Handler,3,0xe02c674d560,192,"host" +code-creation,Handler,3,0xe02c674d620,184,"port" +code-creation,Handler,3,0xe02c674d6e0,216,"_defaultAgent" +code-creation,StoreIC,9,0xe02c674d7c0,134,"_defaultAgent" +code-creation,Handler,3,0xe02c674d860,184,"_eventsCount" +code-creation,Handler,3,0xe02c674d920,192,"_maxListeners" +code-creation,Handler,3,0xe02c674d9e0,192,"output" +code-creation,StoreIC,9,0xe02c674daa0,134,"output" +code-creation,Handler,3,0xe02c674db40,192,"outputEncodings" +code-creation,StoreIC,9,0xe02c674dc00,134,"outputEncodings" +code-creation,Handler,3,0xe02c674dca0,192,"outputCallbacks" +code-creation,StoreIC,9,0xe02c674dd60,134,"outputCallbacks" +code-creation,Handler,3,0xe02c674de00,184,"outputSize" +code-creation,StoreIC,9,0xe02c674dec0,134,"outputSize" +code-creation,Handler,3,0xe02c674df60,192,"writable" +code-creation,StoreIC,9,0xe02c674e020,134,"writable" +code-creation,Handler,3,0xe02c674e0c0,192,"_last" +code-creation,StoreIC,9,0xe02c674e180,134,"_last" +code-creation,Handler,3,0xe02c674e220,192,"chunkedEncoding" +tick,0xde4f9d,1178604,0,0x32,0,0xbbb8f0,0xe02c66f6896,0xe02c66f4a25,0xe02c66f488b,0xe02c66f33a3,0xe02c67465aa,0xe02c6743f77,0xe02c67436ea,0xe02c67431c6,0xe02c66d4efd,0xe02c669931c,0xe02c6524712,0xe02c6524232,0xe02c6741669,0xe02c67200c0,0xe02c65241ba,0xe02c6740aa2,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,StoreIC,9,0xe02c674e2e0,134,"chunkedEncoding" +code-creation,Handler,3,0xe02c674e380,192,"shouldKeepAlive" +code-creation,StoreIC,9,0xe02c674e440,134,"shouldKeepAlive" +code-creation,Handler,3,0xe02c674e4e0,192,"useChunkedEncodingByDefault" +code-creation,StoreIC,9,0xe02c674e5a0,134,"useChunkedEncodingByDefault" +code-creation,Handler,3,0xe02c674e640,192,"sendDate" +code-creation,StoreIC,9,0xe02c674e700,134,"sendDate" +code-creation,Handler,3,0xe02c674e7a0,192,"_removedHeader" +code-creation,StoreIC,9,0xe02c674e860,134,"_removedHeader" +code-creation,Handler,3,0xe02c674e900,192,"_contentLength" +code-creation,StoreIC,9,0xe02c674e9c0,134,"_contentLength" +code-creation,Handler,3,0xe02c674ea60,192,"_hasBody" +code-creation,StoreIC,9,0xe02c674eb20,134,"_hasBody" +code-creation,Handler,3,0xe02c674ebc0,192,"_trailer" +code-creation,StoreIC,9,0xe02c674ec80,134,"_trailer" +code-creation,Handler,3,0xe02c674ed20,192,"finished" +code-creation,StoreIC,9,0xe02c674ede0,134,"finished" +code-creation,Handler,3,0xe02c674ee80,192,"_headerSent" +code-creation,StoreIC,9,0xe02c674ef40,134,"_headerSent" +code-creation,Handler,3,0xe02c674efe0,192,"socket" +code-creation,StoreIC,9,0xe02c674f0a0,134,"socket" +code-creation,Handler,3,0xe02c674f140,192,"connection" +code-creation,StoreIC,9,0xe02c674f200,134,"connection" +code-creation,Handler,3,0xe02c674f2a0,192,"_header" +code-creation,StoreIC,9,0xe02c674f360,134,"_header" +code-creation,Handler,3,0xe02c674f400,192,"_headers" +code-creation,StoreIC,9,0xe02c674f4c0,134,"_headers" +code-creation,Handler,3,0xe02c674f560,192,"_headerNames" +code-creation,StoreIC,9,0xe02c674f620,134,"_headerNames" +code-creation,Handler,3,0xe02c674f6c0,192,"_onPendingData" +code-creation,StoreIC,9,0xe02c674f780,134,"_onPendingData" +code-creation,Handler,3,0xe02c674f820,184,"port" +code-creation,Handler,3,0xe02c674f8e0,192,"host" +code-creation,Handler,3,0xe02c674f9a0,216,"headers" +code-creation,Handler,3,0xe02c674fa80,192,"path" +code-creation,Handler,3,0xe02c674fb40,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,Handler,3,0xe02c674fbe0,216,"agent" +code-creation,StoreIC,9,0xe02c674fcc0,134,"agent" +code-creation,StoreIC,9,0xe02c674fd60,134,"port" +code-creation,StoreIC,9,0xe02c674fe00,134,"host" +code-creation,Stub,3,0xe02c674fea0,284,"StoreTransitionStub" +code-creation,Handler,3,0xe02c674ffc0,192,"socketPath" +code-creation,StoreIC,9,0xe02c6750080,134,"socketPath" +code-creation,Handler,3,0xe02c6750120,186,"toUpperCase" +code-creation,Stub,3,0xe02c67501e0,638,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6750460,192,"method" +code-creation,StoreIC,9,0xe02c6750520,134,"method" +code-creation,Stub,3,0xe02c67505c0,284,"StoreTransitionStub" +code-creation,Handler,3,0xe02c67506e0,192,"path" +code-creation,StoreIC,9,0xe02c67507a0,134,"path" +code-creation,StoreIC,9,0xe02c6750840,134,"_headers" +tick,0xc13d3a,1179661,0,0x2c68c5957799,0,0xbba1d0,0xe02c66f5845,0xe02c66f488b,0xe02c66f33a3,0xe02c67465aa,0xe02c6743f77,0xe02c67436ea,0xe02c67431c6,0xe02c66d4efd,0xe02c669931c,0xe02c6524712,0xe02c6524232,0xe02c6741669,0xe02c67200c0,0xe02c65241ba,0xe02c6740aa2,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,Handler,3,0xe02c67508e0,164,"getHeader" +code-creation,Handler,3,0xe02c67509a0,171,"Number" +code-creation,Stub,3,0xe02c6750a60,286,"LoadFieldStub" +code-creation,StoreIC,9,0xe02c6750b80,134,"_last" +code-creation,StoreIC,9,0xe02c6750c20,134,"shouldKeepAlive" +code-creation,Handler,3,0xe02c6750cc0,164,"addRequest" +code-creation,Handler,3,0xe02c6750d80,164,"getName" +code-creation,Handler,3,0xe02c6750e40,164,"onSocket" +code-creation,Handler,3,0xe02c6750f00,164,"createSocket" +code-creation,Handler,3,0xe02c6750fc0,216,"_defaultAgent" +code-creation,Handler,3,0xe02c67510a0,192,"servername" +code-creation,StoreIC,9,0xe02c6751160,134,"servername" +code-creation,StoreIC,9,0xe02c6751200,134,"servername" +code-creation,Handler,3,0xe02c67512a0,192,"_agentKey" +code-creation,StoreIC,9,0xe02c6751360,134,"_agentKey" +code-creation,Handler,3,0xe02c6751400,192,"encoding" +code-creation,StoreIC,9,0xe02c67514c0,134,"encoding" +code-creation,Handler,3,0xe02c6751560,164,"createConnection" +code-creation,Handler,3,0xe02c6751620,164,"_getSession" +code-creation,Handler,3,0xe02c67516e0,171,"process" +code-creation,Handler,3,0xe02c67517a0,157,"NODE_TLS_REJECT_UNAUTHORIZED" +code-creation,StoreIC,9,0xe02c6751840,134,"rejectUnauthorized" +code-creation,StoreIC,9,0xe02c67518e0,134,"ciphers" +code-creation,StoreIC,9,0xe02c6751980,134,"checkServerIdentity" +code-creation,Handler,3,0xe02c6751a20,184,"port" +code-creation,Handler,3,0xe02c6751ae0,192,"host" +code-creation,Handler,3,0xe02c6751ba0,216,"headers" +code-creation,Handler,3,0xe02c6751c80,192,"path" +code-creation,Handler,3,0xe02c6751d40,192,"singleUse" +code-creation,StoreIC,9,0xe02c6751e00,134,"singleUse" +code-creation,Handler,3,0xe02c6751ea0,216,"context" +code-creation,StoreIC,9,0xe02c6751f80,134,"context" +code-creation,Handler,3,0xe02c6752020,164,"init" +code-creation,Handler,3,0xe02c67520e0,164,"addRootCerts" +code-creation,Handler,3,0xe02c67521a0,164,"setCiphers" +code-creation,Handler,3,0xe02c6752260,164,"setECDHCurve" +code-creation,Handler,3,0xe02c6752320,192,"singleUse" +code-creation,StoreIC,9,0xe02c67523e0,134,"singleUse" +code-creation,Handler,3,0xe02c6752480,164,"setFreeListLength" +code-creation,StoreIC,9,0xe02c6752540,134,"pipe" +code-creation,Handler,3,0xe02c67525e0,138,"secureContext" +code-creation,StoreIC,9,0xe02c6752680,134,"secureContext" +code-creation,StoreIC,9,0xe02c6752720,134,"rejectUnauthorized" +code-creation,StoreIC,9,0xe02c67527c0,134,"session" +code-creation,StoreIC,9,0xe02c6752860,134,"NPNProtocols" +code-creation,StoreIC,9,0xe02c6752900,134,"ALPNProtocols" +code-creation,StoreIC,9,0xe02c67529a0,134,"requestOCSP" +code-creation,Handler,3,0xe02c6752a40,216,"_tlsOptions" +code-creation,StoreIC,9,0xe02c6752b20,134,"_tlsOptions" +code-creation,Handler,3,0xe02c6752bc0,192,"_secureEstablished" +code-creation,StoreIC,9,0xe02c6752c80,134,"_secureEstablished" +code-creation,Handler,3,0xe02c6752d20,192,"_securePending" +code-creation,StoreIC,9,0xe02c6752de0,134,"_securePending" +code-creation,Handler,3,0xe02c6752e80,192,"_newSessionPending" +code-creation,StoreIC,9,0xe02c6752f40,134,"_newSessionPending" +tick,0x7f66177da4fd,1180732,0,0x0,0,0xbbb8f0,0xe02c670a032,0xe02c66fe4c6,0xe02c66fd64e,0xe02c66fb9cf,0xe02c66fa146,0xe02c66f63b7,0xe02c66f488b,0xe02c66f33a3,0xe02c67465aa,0xe02c6743f77,0xe02c67436ea,0xe02c67431c6,0xe02c66d4efd,0xe02c669931c,0xe02c6524712,0xe02c6524232,0xe02c6741669,0xe02c67200c0,0xe02c65241ba,0xe02c6740aa2,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,Handler,3,0xe02c6752fe0,192,"_controlReleased" +code-creation,StoreIC,9,0xe02c67530a0,134,"_controlReleased" +code-creation,Handler,3,0xe02c6753140,192,"_SNICallback" +code-creation,StoreIC,9,0xe02c6753200,134,"_SNICallback" +code-creation,Handler,3,0xe02c67532a0,192,"servername" +code-creation,StoreIC,9,0xe02c6753360,134,"servername" +code-creation,Handler,3,0xe02c6753400,192,"npnProtocol" +code-creation,StoreIC,9,0xe02c67534c0,134,"npnProtocol" +code-creation,Handler,3,0xe02c6753560,192,"alpnProtocol" +code-creation,StoreIC,9,0xe02c6753620,134,"alpnProtocol" +code-creation,Handler,3,0xe02c67536c0,192,"authorized" +code-creation,StoreIC,9,0xe02c6753780,134,"authorized" +code-creation,Handler,3,0xe02c6753820,192,"authorizationError" +code-creation,StoreIC,9,0xe02c67538e0,134,"authorizationError" +code-creation,Handler,3,0xe02c6753980,192,"encrypted" +code-creation,StoreIC,9,0xe02c6753a40,134,"encrypted" +code-creation,Handler,3,0xe02c6753ae0,164,"_wrapHandle" +code-creation,StoreIC,9,0xe02c6753ba0,134,"owner" +code-creation,Handler,3,0xe02c6753c40,191,"_externalStream" +code-creation,Handler,3,0xe02c6753d00,216,"_parent" +code-creation,StoreIC,9,0xe02c6753de0,134,"_parent" +code-creation,Handler,3,0xe02c6753e80,192,"_parentWrap" +code-creation,StoreIC,9,0xe02c6753f40,134,"_parentWrap" +code-creation,Handler,3,0xe02c6753fe0,216,"_secureContext" +code-creation,StoreIC,9,0xe02c67540c0,134,"_secureContext" +code-creation,Handler,3,0xe02c6754160,192,"reading" +code-creation,StoreIC,9,0xe02c6754220,134,"reading" +code-creation,StoreIC,9,0xe02c67542c0,134,"get" +code-creation,StoreIC,9,0xe02c6754360,134,"set" +code-creation,LazyCompile,0,0xe02c6754400,268,"PropertyDescriptor_SetGetter native v8natives.js:356:47",0x31534ff5cfd0,~ +code-creation,Handler,3,0xe02c6754520,164,"isEnumerable" +code-creation,Handler,3,0xe02c67545e0,164,"isConfigurable" +code-creation,Handler,3,0xe02c67546a0,192,"_events" +code-creation,StoreIC,9,0xe02c6754760,134,"_events" +code-creation,Stub,3,0xe02c6754800,264,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6754920,184,"_eventsCount" +code-creation,StoreIC,9,0xe02c67549e0,134,"_eventsCount" +code-creation,Handler,3,0xe02c6754a80,138,"handle" +code-creation,StoreIC,9,0xe02c6754b20,134,"handle" +code-creation,StoreIC,9,0xe02c6754bc0,134,"allowHalfOpen" +code-creation,LazyCompile,1,0xe02c6754c60,283,"PropertyDescriptor_SetGetter native v8natives.js:356:47",0x31534ff5cfd0,* +code-creation,Stub,3,0xe02c6754d80,216,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6754e60,184,"_maxListeners" +code-creation,Handler,3,0xe02c6754f20,216,"_writableState" +code-creation,StorePolymorphicIC,9,0xe02c6755000,154,"_writableState" +code-creation,Handler,3,0xe02c67550a0,192,"writable" +code-creation,StorePolymorphicIC,9,0xe02c6755160,154,"writable" +code-creation,StorePolymorphicIC,9,0xe02c6755200,154,"readable" +code-creation,StoreIC,9,0xe02c67552a0,134,"writable" +code-creation,Handler,3,0xe02c6755340,192,"allowHalfOpen" +code-creation,StorePolymorphicIC,9,0xe02c6755400,154,"allowHalfOpen" +code-creation,Handler,3,0xe02c67554a0,192,"end" +code-creation,StorePolymorphicIC,9,0xe02c6755560,154,"_handle" +code-creation,Handler,3,0xe02c6755600,201,"finish" +code-creation,Handler,3,0xe02c67556e0,201,"_socketEnd" +code-creation,Handler,3,0xe02c67557c0,192,"destroyed" +code-creation,StorePolymorphicIC,9,0xe02c6755880,154,"destroyed" +code-creation,Handler,3,0xe02c6755920,184,"bytesRead" +code-creation,StorePolymorphicIC,9,0xe02c67559e0,154,"bytesRead" +code-creation,Handler,3,0xe02c6755a80,184,"_bytesDispatched" +code-creation,StorePolymorphicIC,9,0xe02c6755b40,154,"_bytesDispatched" +code-creation,Handler,3,0xe02c6755be0,192,"_sockname" +code-creation,StorePolymorphicIC,9,0xe02c6755ca0,154,"_sockname" +code-creation,Handler,3,0xe02c6755d40,192,"owner" +code-creation,StorePolymorphicIC,9,0xe02c6755e00,154,"owner" +code-creation,Handler,3,0xe02c6755ea0,192,"onread" +code-creation,StorePolymorphicIC,9,0xe02c6755f60,154,"onread" +code-creation,Handler,3,0xe02c6756000,192,"_pendingData" +code-creation,StorePolymorphicIC,9,0xe02c67560c0,154,"_pendingData" +code-creation,Handler,3,0xe02c6756160,192,"_pendingEncoding" +code-creation,StorePolymorphicIC,9,0xe02c6756220,154,"_pendingEncoding" +code-creation,StorePolymorphicIC,9,0xe02c67562c0,154,"allowHalfOpen" +code-creation,Handler,3,0xe02c6756360,192,"ssl" +code-creation,StoreIC,9,0xe02c6756420,134,"ssl" +code-creation,Handler,3,0xe02c67564c0,164,"_emitTLSError" +code-creation,Handler,3,0xe02c6756580,204,"error" +code-creation,Handler,3,0xe02c6756660,164,"_init" +code-creation,Handler,3,0xe02c6756720,184,"writeQueueSize" +code-creation,StoreIC,9,0xe02c67567e0,134,"writeQueueSize" +code-creation,Handler,3,0xe02c6756880,192,"server" +code-creation,StoreIC,9,0xe02c6756940,134,"server" +code-creation,Handler,3,0xe02c67569e0,192,"_requestCert" +code-creation,StoreIC,9,0xe02c6756aa0,134,"_requestCert" +code-creation,Handler,3,0xe02c6756b40,192,"_rejectUnauthorized" +code-creation,StoreIC,9,0xe02c6756c00,134,"_rejectUnauthorized" +code-creation,Handler,3,0xe02c6756ca0,164,"setVerifyMode" +code-creation,Handler,3,0xe02c6756d60,192,"onhandshakestart" +code-creation,StoreIC,9,0xe02c6756e20,134,"onhandshakestart" +code-creation,Handler,3,0xe02c6756ec0,164,"_finishInit" +code-creation,Handler,3,0xe02c6756f80,164,"bind" +code-creation,Handler,3,0xe02c6757040,204,"onhandshakedone" +code-creation,StoreIC,9,0xe02c6757120,134,"onhandshakedone" +code-creation,Handler,3,0xe02c67571c0,204,"onocspresponse" +code-creation,StoreIC,9,0xe02c67572a0,134,"onocspresponse" +code-creation,Handler,3,0xe02c6757340,204,"onerror" +code-creation,StoreIC,9,0xe02c6757420,134,"onerror" +code-creation,StoreIC,9,0xe02c67574c0,134,"_connecting" +code-creation,StoreIC,9,0xe02c6757560,134,"readable" +code-creation,StoreIC,9,0xe02c6757600,134,"writable" +code-creation,Handler,3,0xe02c67576a0,204,"secureConnect" +code-creation,StoreIC,9,0xe02c6757780,134,"port" +code-creation,StoreIC,9,0xe02c6757820,134,"host" +code-creation,StoreIC,9,0xe02c67578c0,134,"localAddress" +code-creation,Handler,3,0xe02c6757960,164,"connect" +code-creation,Handler,3,0xe02c6757a20,204,"connect" +code-creation,StoreIC,9,0xe02c6757b00,134,"_connecting" +code-creation,StoreIC,9,0xe02c6757ba0,134,"writable" +code-creation,StoreIC,9,0xe02c6757c40,134,"family" +code-creation,StoreIC,9,0xe02c6757ce0,134,"hints" +code-creation,StoreIC,9,0xe02c6757d80,134,"hints" +code-creation,Stub,3,0xe02c6757e20,224,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c6757f00,134,"_host" +code-creation,Handler,3,0xe02c6726ea0,192,"callback" +code-creation,StoreIC,9,0xe02c66f0ae0,134,"callback" +code-creation,Handler,3,0xe02c6758040,184,"family" +code-creation,StoreIC,9,0xe02c6758100,134,"family" +code-creation,Handler,3,0xe02c67581a0,192,"hostname" +code-creation,StoreIC,9,0xe02c6758260,134,"hostname" +code-creation,Handler,3,0xe02c6758300,201,"oncomplete" +code-creation,StoreIC,9,0xe02c67583e0,134,"oncomplete" +code-creation,Handler,3,0xe02c6758480,192,"immediately" +code-creation,StoreIC,9,0xe02c6758540,134,"immediately" +code-creation,Handler,3,0xe02c67585e0,164,"_releaseControl" +code-creation,StoreIC,9,0xe02c67586a0,134,"_controlReleased" +code-creation,StorePolymorphicIC,9,0xe02c6758740,154,"_eventsCount" +code-creation,Handler,3,0xe02c67587e0,566,"removeListener" +code-creation,Handler,3,0xe02c6758a20,164,"setServername" +code-creation,Handler,3,0xe02c6758ae0,164,"setServername" +code-creation,Handler,3,0xe02c6758ba0,566,"newListener" +code-creation,Handler,3,0xe02c6758de0,164,"push" +code-creation,Handler,3,0xe02c6758ea0,164,"_deferToConnect" +code-creation,Handler,3,0xe02c6758f60,164,"once" +code-creation,Handler,3,0xe02c6759020,192,"socket" +code-creation,Handler,3,0xe02c67590e0,201,"error" +code-creation,Handler,3,0xe02c67591c0,201,"response" +code-creation,Handler,3,0xe02c67592a0,201,"upgrade" +code-creation,Handler,3,0xe02c6759380,164,"_storeHeader" +code-creation,Handler,3,0xe02c6759440,164,"_renderHeaders" +code-creation,Handler,3,0xe02c6759500,192,"Connection" +code-creation,Handler,3,0xe02c67595c0,192,"Upgrade" +code-creation,Handler,3,0xe02c6759680,192,"Host" +code-creation,Handler,3,0xe02c6759740,184,"Sec-WebSocket-Version" +code-creation,Handler,3,0xe02c6759800,192,"Sec-WebSocket-Key" +code-creation,Handler,3,0xe02c67598c0,192,"Sec-WebSocket-Extensions" +code-creation,StoreIC,9,0xe02c6759980,134,"messageHeader" +code-creation,RegExp,5,0xe02c6759a20,777,"close" +tick,0xe02c6419e73,1183336,0,0xe02c6718c5c,0,0xe02c6717da3,0xe02c6717141,0xe02c671c61e,0xe02c6746771,0xe02c6743f77,0xe02c67436ea,0xe02c67431c6,0xe02c66d4efd,0xe02c669931c,0xe02c6524712,0xe02c6524232,0xe02c6741669,0xe02c67200c0,0xe02c65241ba,0xe02c6740aa2,0xe02c672571a,0xe02c6524163,0xe02c673d790,0xe02c671cfe3,0xe02c66ed979 +code-creation,Handler,3,0xe02c6759d40,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,StoreIC,9,0xe02c6759de0,134,"_header" +code-creation,StoreIC,9,0xe02c6759e80,134,"_headerSent" +code-creation,Handler,3,0xe02c6759f20,164,"_send" +code-creation,StoreIC,9,0xe02c6759fe0,134,"_headerSent" +code-creation,StoreIC,9,0xe02c675a080,134,"outputSize" +code-creation,StoreIC,9,0xe02c675a120,134,"finished" +code-creation,Handler,3,0xe02c675a1c0,201,"open" +code-creation,Handler,3,0xe02c675a2a0,201,"error" +code-creation,Handler,3,0xe02c675a380,201,"close" +code-creation,Handler,3,0xe02c675a460,164,"read" +code-creation,StorePolymorphicIC,9,0xe02c675a520,154,"reading" +code-creation,StorePolymorphicIC,9,0xe02c675a5c0,154,"sync" +code-creation,StorePolymorphicIC,9,0xe02c675a660,154,"needReadable" +code-creation,StorePolymorphicIC,9,0xe02c675a700,154,"sync" +code-creation,StorePolymorphicIC,9,0xe02c675a7a0,154,"needReadable" +code-creation,StorePolymorphicIC,9,0xe02c675a840,154,"length" +code-creation,StorePolymorphicIC,9,0xe02c675a8e0,154,"needReadable" +code-creation,Handler,3,0xe02c675a980,164,"aborted" +code-creation,Handler,3,0xe02c675aa40,164,"alloc" +code-creation,StoreIC,9,0xe02c675ab00,134,"socket" +code-creation,StoreIC,9,0xe02c675aba0,134,"connection" +code-creation,Handler,3,0xe02c675ac40,164,"reinitialize" +code-creation,StoreIC,9,0xe02c675ad00,134,"socket" +code-creation,StoreIC,9,0xe02c675ada0,134,"incoming" +code-creation,Stub,3,0xe02c675ae40,284,"StoreTransitionStub" +code-creation,Handler,3,0xe02c675af60,216,"parser" +code-creation,StoreIC,9,0xe02c675b040,134,"parser" +code-creation,Handler,3,0xe02c675b0e0,192,"parser" +code-creation,StoreIC,9,0xe02c675b1a0,134,"parser" +code-creation,Handler,3,0xe02c675b240,192,"_httpMessage" +code-creation,StoreIC,9,0xe02c675b300,134,"_httpMessage" +tick,0xbd3001,1184647,0,0x7fffc294a9b0,0,0xbbb8f0,0xe02c671f132,0xe02c671eede,0xe02c671cfe3,0xe02c66ed979 +code-creation,Stub,3,0xe02c675b3a0,188,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c675b460,134,"maxHeaderPairs" +code-creation,StoreIC,9,0xe02c675b500,134,"onIncoming" +code-creation,Handler,3,0xe02c675b5a0,164,"emit" +code-creation,Handler,3,0xe02c675b660,164,"removeListener" +code-creation,StorePolymorphicIC,9,0xe02c675b720,174,"_eventsCount" +code-creation,Handler,3,0xe02c675b7e0,164,"_flush" +code-creation,Handler,3,0xe02c675b8a0,164,"_flushOutput" +code-creation,Handler,3,0xe02c675b960,164,"cork" +code-creation,Stub,3,0xe02c675ba20,184,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c675bae0,134,"corked" +code-creation,StoreIC,9,0xe02c675bb80,134,"bufferedRequest" +code-creation,Handler,3,0xe02c675bc20,164,"uncork" +code-creation,StoreIC,9,0xe02c675bce0,134,"corked" +code-creation,StoreIC,9,0xe02c675bd80,134,"bufferProcessing" +code-creation,Handler,3,0xe02c675be20,164,"_writev" +code-creation,Handler,3,0xe02c675bee0,164,"_write" +code-creation,Handler,3,0xe02c675bfa0,164,"_writeGeneric" +code-creation,StoreIC,9,0xe02c675c060,134,"_pendingData" +code-creation,StoreIC,9,0xe02c675c100,134,"_pendingEncoding" +code-creation,StoreIC,9,0xe02c675c1a0,134,"bufferedRequest" +code-creation,StoreIC,9,0xe02c675c240,134,"bufferProcessing" +code-creation,StoreIC,9,0xe02c675c2e0,134,"output" +code-creation,StoreIC,9,0xe02c675c380,134,"outputEncodings" +code-creation,StoreIC,9,0xe02c675c420,134,"outputCallbacks" +code-creation,StoreIC,9,0xe02c675c4c0,134,"outputSize" +code-creation,Handler,3,0xe02c675c560,164,"_finish" +code-creation,Handler,3,0xe02c675c620,204,"read" +code-creation,StoreIC,9,0xe02c675c700,134,"read" +code-creation,Handler,3,0xe02c675c7a0,192,"_consuming" +code-creation,StoreIC,9,0xe02c675c860,134,"_consuming" +code-creation,LazyCompile,0,0xe02c675c900,788,"afterShutdown net.js:215:23",0x2efb89c8e720,~ +code-creation,LazyCompile,0,0xe02c675cc20,364," net.js:467:32",0x2c68c5948db8,~ +code-creation,LazyCompile,0,0xe02c675cda0,332," _tls_wrap.js:357:28",0x2c68c5927f80,~ +code-creation,StoreIC,9,0xe02c675cf00,134,"_needImmediateCallback" +code-creation,StoreIC,9,0xe02c675cfa0,134,symbol("normal_ic_symbol" hash 21e6e11d) +code-creation,StorePolymorphicIC,9,0xe02c675d040,154,"_idlePrev" +tick,0xbb9a7d,1185826,0,0x7fffc2952a80,0,0xbb9fc0,0xe02c66e1d62,0xe02c66e1b15,0xe02c66e1647,0xe02c675ce5f,0xe02c67200c0,0xe02c65241ba,0xe02c675cd43 +code-creation,StorePolymorphicIC,9,0xe02c675d0e0,154,"_idleNext" +code-creation,StorePolymorphicIC,9,0xe02c675d180,154,"_idleNext" +code-creation,StorePolymorphicIC,9,0xe02c675d220,154,"_idlePrev" +code-creation,StoreIC,9,0xe02c675d2c0,134,"_idleNext" +code-creation,StoreIC,9,0xe02c675d360,134,"_idlePrev" +code-creation,StoreIC,9,0xe02c675d400,134,"_idlePrev" +code-creation,StoreIC,9,0xe02c675d4a0,134,"_idleNext" +code-creation,LazyCompile,0,0xe02c675d540,356,"onClose _http_agent.js:184:19",0x2c68c5923a90,~ +code-creation,LazyCompile,0,0xe02c675d6c0,1864,"Agent.removeSocket _http_agent.js:207:40",0x2b24593d7c50,~ +code-creation,LazyCompile,0,0xe02c675de20,1708,"socketCloseListener _http_client.js:212:29",0x2b24593d9ce8,~ +code-creation,Handler,3,0xe02c675e4e0,566,"cb" +tick,0x8f021f,1186902,0,0x0,5 +code-creation,Handler,3,0xe02c675e720,164,"domain" +code-creation,LazyCompile,0,0xe02c675e7e0,260,"immediate._onImmediate timers.js:434:40",0x2c68c59151d0,~ +code-creation,LazyCompile,0,0xe02c675e900,244,"destroySSL _tls_wrap.js:366:20",0x2b24593e2280,~ +code-creation,LazyCompile,0,0xe02c675ea00,732,"_destroySSL _tls_wrap.js:370:55",0x2b24593e2738,~ +tick,0x7f66177e45a9,1239575,0,0x0,5 +code-creation,Handler,3,0xe02c675ece0,164,"apply" +code-creation,Handler,3,0xe02c675eda0,201,"oncomplete" +code-creation,StoreIC,9,0xe02c675ee80,134,"oncomplete" +code-creation,Handler,3,0xe02c675ef20,192,"address" +code-creation,StoreIC,9,0xe02c675efe0,134,"address" +code-creation,Handler,3,0xe02c675f080,184,"port" +code-creation,StoreIC,9,0xe02c675f140,134,"port" +code-creation,Handler,3,0xe02c675f1e0,192,"localAddress" +code-creation,StoreIC,9,0xe02c675f2a0,134,"localAddress" +code-creation,Handler,3,0xe02c675f340,192,"localPort" +code-creation,StoreIC,9,0xe02c675f400,134,"localPort" +code-creation,Handler,3,0xe02c675f4a0,585,"connect" +code-creation,Handler,3,0xe02c675f700,585,"connect" +tick,0x7f66177e45a9,1380359,0,0x0,5 +code-creation,StoreIC,9,0xe02c675f960,134,"_connecting" +code-creation,StoreIC,9,0xe02c675fa00,134,"_sockname" +code-creation,StoreIC,9,0xe02c675faa0,134,"readable" +code-creation,StoreIC,9,0xe02c675fb40,134,"writable" +code-creation,Handler,3,0xe02c675fbe0,164,"_start" +code-creation,Handler,3,0xe02c675fca0,164,"start" +code-creation,StoreIC,9,0xe02c675fd60,134,"reading" +code-creation,Handler,3,0xe02c675fe00,164,"readStart" +code-creation,Handler,3,0xe02c675fec0,161,"undefined" +code-creation,StoreIC,9,0xe02c675ff80,134,"_eventsCount" +code-creation,StorePolymorphicIC,9,0xe02c6760020,154,"_pendingData" +code-creation,StorePolymorphicIC,9,0xe02c67600c0,154,"_pendingEncoding" +code-creation,StorePolymorphicIC,9,0xe02c6760160,154,"_bytesDispatched" +code-creation,Handler,3,0xe02c6760200,204,"cb" +code-creation,StoreIC,9,0xe02c67602e0,134,"cb" +code-creation,Handler,3,0xe02c6760380,164,"isPaused" +tick,0x7f66177e45a9,1518062,0,0x0,5 +tick,0x861ab2,1518200,0,0x0,5 +tick,0x7ae661,1519271,0,0x0,5 +tick,0x7f66177e45a9,1648142,0,0x0,5 +tick,0x7f66177e45a9,1813820,0,0x0,5 +code-creation,Handler,3,0xe02c6760440,164,"getNegotiatedProtocol" +code-creation,StoreIC,9,0xe02c6760500,134,"npnProtocol" +code-creation,Handler,3,0xe02c67605a0,164,"getALPNNegotiatedProtocol" +code-creation,StoreIC,9,0xe02c6760660,134,"alpnProtocol" +code-creation,StoreIC,9,0xe02c6760700,134,"_secureEstablished" +tick,0xbb28b0,1814053,0,0x7fffc294f440,0,0xbb9fc0,0xe02c670f454,0xe02c6698f67 +code-creation,Handler,3,0xe02c67607a0,164,"getEphemeralKeyInfo" +code-creation,Handler,3,0xe02c6760860,164,"getEphemeralKeyInfo" +code-creation,Handler,3,0xe02c6760920,164,"verifyError" +code-creation,Handler,3,0xe02c67609e0,164,"isSessionReused" +code-creation,Handler,3,0xe02c6760aa0,164,"isSessionReused" +code-creation,Handler,3,0xe02c6760b60,164,"getPeerCertificate" +code-creation,Handler,3,0xe02c6760c20,164,"getPeerCertificate" +code-creation,Handler,3,0xe02c6760ce0,192,"O" +code-creation,StoreIC,9,0xe02c6760da0,134,"issuer" +code-creation,StoreIC,9,0xe02c6760e40,134,"subject" +code-creation,StoreIC,9,0xe02c6760ee0,134,"infoAccess" +code-creation,Handler,3,0xe02c6760f80,164,"hasOwnProperty" +code-creation,Handler,3,0xe02c6761040,164,"forEach" +code-creation,Handler,3,0xe02c6761100,164,"map" +code-creation,Handler,3,0xe02c67611c0,164,"concat" +code-creation,Handler,3,0xe02c6761280,164,"some" +code-creation,RegExp,5,0xe02c6761340,1206,"^[a-z0-9\\-_]*.slack\\-msgs\\.com\\.$" +code-creation,StoreIC,9,0xe02c6761800,134,"authorized" +code-creation,Handler,3,0xe02c67618a0,164,"_cacheSession" +code-creation,Handler,3,0xe02c6761960,164,"getSession" +code-creation,Handler,3,0xe02c6761a20,164,"getSession" +tick,0x7f66177e45a9,1942175,0,0x0,5 +code-creation,StoreIC,9,0xe02c6761ae0,134,"_url" +tick,0xb5b511,1942570,0,0x7fffc294a1e0,0,0xbbb8f0,0xe02c650940d,0xe02c6508ed4,0xe02c656dd1e,0xe02c656d05a,0xe02c67310fa,0xe02c6730b55,0xe41e10,0xe02c672fd03,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,Stub,3,0xe02c6761b80,264,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6761ca0,184,"_eventsCount" +code-creation,Handler,3,0xe02c6761d60,192,"_maxListeners" +code-creation,Handler,3,0xe02c6761e20,192,"socket" +code-creation,StoreIC,9,0xe02c6761ee0,134,"socket" +code-creation,Handler,3,0xe02c6761f80,192,"connection" +code-creation,StoreIC,9,0xe02c6762040,134,"connection" +code-creation,Stub,3,0xe02c67620e0,212,"StoreTransitionStub" +code-creation,Handler,3,0xe02c67621c0,184,"httpVersionMajor" +code-creation,StoreIC,9,0xe02c6762280,134,"httpVersionMajor" +code-creation,Stub,3,0xe02c6762320,212,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6762400,184,"httpVersionMinor" +code-creation,StoreIC,9,0xe02c67624c0,134,"httpVersionMinor" +code-creation,Handler,3,0xe02c6762560,192,"httpVersion" +code-creation,StoreIC,9,0xe02c6762620,134,"httpVersion" +code-creation,Handler,3,0xe02c67626c0,192,"complete" +code-creation,StoreIC,9,0xe02c6762780,134,"complete" +code-creation,Handler,3,0xe02c6762820,192,"headers" +code-creation,StoreIC,9,0xe02c67628e0,134,"headers" +code-creation,Handler,3,0xe02c6762980,192,"rawHeaders" +code-creation,StoreIC,9,0xe02c6762a40,134,"rawHeaders" +code-creation,Handler,3,0xe02c6762ae0,192,"trailers" +code-creation,StoreIC,9,0xe02c6762ba0,134,"trailers" +code-creation,Handler,3,0xe02c6762c40,192,"rawTrailers" +code-creation,StoreIC,9,0xe02c6762d00,134,"rawTrailers" +code-creation,StoreIC,9,0xe02c6762da0,134,"readable" +code-creation,Handler,3,0xe02c6762e40,192,"upgrade" +code-creation,StoreIC,9,0xe02c6762f00,134,"upgrade" +code-creation,Handler,3,0xe02c6762fa0,192,"url" +code-creation,StoreIC,9,0xe02c6763060,134,"url" +code-creation,Handler,3,0xe02c6763100,192,"method" +code-creation,StoreIC,9,0xe02c67631c0,134,"method" +code-creation,Stub,3,0xe02c6763260,216,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6763340,184,"statusCode" +code-creation,StoreIC,9,0xe02c6763400,134,"statusCode" +code-creation,Handler,3,0xe02c67634a0,192,"statusMessage" +code-creation,StoreIC,9,0xe02c6763560,134,"statusMessage" +code-creation,Handler,3,0xe02c6763600,192,"client" +code-creation,StoreIC,9,0xe02c67636c0,134,"client" +code-creation,Handler,3,0xe02c6763760,192,"_consuming" +tick,0x7f66177da4fd,1943656,0,0x0,0,0xbbb8f0,0xe02c6731388,0xe02c6730b55,0xe41e10,0xe02c672fd03,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,StoreIC,9,0xe02c6763820,134,"_consuming" +code-creation,Handler,3,0xe02c67638c0,192,"_dumped" +code-creation,StoreIC,9,0xe02c6763980,134,"_dumped" +code-creation,StoreIC,9,0xe02c6763a20,134,"incoming" +code-creation,StoreIC,9,0xe02c6763ac0,134,"httpVersionMajor" +code-creation,StoreIC,9,0xe02c6763b60,134,"httpVersionMinor" +code-creation,StoreIC,9,0xe02c6763c00,134,"httpVersion" +code-creation,StoreIC,9,0xe02c6763ca0,134,"url" +code-creation,Handler,3,0xe02c6763d40,171,"Math" +code-creation,Handler,3,0xe02c6763e00,164,"_addHeaderLines" +code-creation,StoreIC,9,0xe02c6763ec0,134,"statusCode" +code-creation,StoreIC,9,0xe02c6763f60,134,"statusMessage" +code-creation,StoreIC,9,0xe02c6764000,134,"upgrade" +code-creation,StoreIC,9,0xe02c67640a0,134,"complete" +code-creation,StoreIC,9,0xe02c6764140,134,"_headers" +code-creation,StoreIC,9,0xe02c67641e0,134,"_url" +code-creation,StoreIC,9,0xe02c6764280,134,"reading" +code-creation,StoreIC,9,0xe02c6764320,134,"ended" +code-creation,StoreIC,9,0xe02c67643c0,134,"needReadable" +code-creation,StoreIC,9,0xe02c6764460,134,"emittedReadable" +tick,0xc521f1,1944921,0,0x7fffc294a9f0,2,0xca0620,0xe02c673019c,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c6764500,428,"listenerCount events.js:406:23",0x31534fff7b80,~ +code-creation,LazyCompile,0,0xe02c67646c0,620,"onRemove _http_agent.js:193:20",0x2c68c5923b38,~ +code-creation,Handler,3,0xe02c6764940,164,"indexOf" +code-creation,Handler,3,0xe02c6764a00,164,"splice" +code-creation,LazyCompile,0,0xe02c6764ac0,680,"emitThree events.js:95:19",0x31534fff7a30,~ +tick,0xbe73fe,1945796,0,0x7fffc294b1e0,0,0xbb9fc0,0xe02c6713226,0xe02c6720451,0xe02c6764b95,0xe02c65242cb,0xe02c6730371,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,StorePolymorphicIC,9,0xe02c6764d80,194,"_eventsCount" +code-disable-optimization,"upgrade","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c6764e60,3196,"upgrade /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:702:39",0x2c68c59517e0, +code-creation,RegExp,5,0xe02c6765ae0,836,"\, *" +tick,0x7f66182467d0,1946865,0,0xc53525,2,0xca0620,0xe02c6765706,0xe02c67204f6,0xe02c6764b95,0xe02c65242cb,0xe02c6730371,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c6765e40,548,"parse /home/rgbm21/Documents/botkit/node_modules/ws/lib/Extensions.js:15:15",0x36b97b1a0808,~ +code-creation,LazyCompile,0,0xe02c6766080,836," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Extensions.js:20:36",0x2c68c595e888,~ +code-creation,LazyCompile,0,0xe02c67663e0,2460,"establishConnection /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:765:29",0x36b97b18b208,~ +code-creation,LazyCompile,0,0xe02c6766d80,396,"Ultron /home/rgbm21/Documents/botkit/node_modules/ultron/index.js:24:16",0x36b97b18cc50,~ +code-creation,LazyCompile,0,0xe02c6766f20,788,"Socket.setTimeout net.js:299:39",0x2efb89c8f788,~ +tick,0xdacc90,1947913,0,0xbd7248,0,0xbbb8f0,0xe02c673f9d2,0xe02c676702c,0xe02c676661d,0xe02c67659f3,0xe02c67204f6,0xe02c6764b95,0xe02c65242cb,0xe02c6730371,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,Stub,3,0xe02c6767240,248,"StoreTransitionStub" +code-creation,Handler,3,0xe02c6767340,184,"_idleTimeout" +code-creation,StoreIC,9,0xe02c6767400,134,"_idleTimeout" +code-creation,LazyCompile,0,0xe02c67674a0,732,"Socket.setNoDelay net.js:322:39",0x2efb89c8f8d8,~ +code-creation,Handler,3,0xe02c6767780,585,"setNoDelay" +code-creation,Handler,3,0xe02c67679e0,585,"setNoDelay" +code-creation,LazyCompile,0,0xe02c6768100,1828,"Receiver /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:18:19",0x36b97b196380,~ +code-creation,LazyCompile,0,0xe02c6768840,1364,"BufferPool /home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferPool.js:9:20",0x36b97b19b468,~ +code-creation,LazyCompile,0,0xe02c6768da0,228," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:25:60",0x2c68c5960200,~ +code-creation,LazyCompile,0,0xe02c6768ea0,484," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:27:14",0x2c68c59602a8,~ +code-creation,LazyCompile,0,0xe02c67690a0,228," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:35:62",0x2c68c5960350,~ +code-creation,Handler,3,0xe02c67691a0,192,"_growStrategy" +code-creation,StoreIC,9,0xe02c6769260,134,"_growStrategy" +code-creation,LazyCompile,0,0xe02c6769300,484," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:37:14",0x2c68c59603f8,~ +code-creation,Handler,3,0xe02c6769500,201,"_shrinkStrategy" +code-creation,StoreIC,9,0xe02c67695e0,134,"_shrinkStrategy" +code-creation,Handler,3,0xe02c6769680,171,"Buffer" +code-creation,Handler,3,0xe02c6769740,216,"_buffer" +code-creation,StoreIC,9,0xe02c6769820,134,"_buffer" +code-creation,Handler,3,0xe02c67698c0,184,"_offset" +code-creation,StoreIC,9,0xe02c6769980,134,"_offset" +code-creation,Handler,3,0xe02c6769a20,184,"_used" +code-creation,StoreIC,9,0xe02c6769ae0,134,"_used" +code-creation,Handler,3,0xe02c6769b80,184,"_changeFactor" +code-creation,StoreIC,9,0xe02c6769c40,134,"_changeFactor" +code-creation,Handler,3,0xe02c6769ce0,164,"__defineGetter__" +tick,0xd82e30,1948993,0,0xbb17e7,0,0xbbb8f0,0xe02c6768534,0xe02c67666c2,0xe02c67659f3,0xe02c67204f6,0xe02c6764b95,0xe02c65242cb,0xe02c6730371,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c6769da0,1552,"Receiver.expectHeader /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:129:43",0x36b97b196818,~ +code-disable-optimization,"cleanupWebsocketResources","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c676a3c0,2428,"cleanupWebsocketResources /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:911:35",0x36b97b18b4a8, +code-creation,LazyCompile,0,0xe02c676ad40,364,"on /home/rgbm21/Documents/botkit/node_modules/ultron/index.js:40:34",0x36b97b18ccf8,~ +code-creation,Stub,3,0xe02c676aec0,594,"StoreTransitionStub" +code-creation,Handler,3,0xe02c676b120,184,"__ultron" +code-creation,StoreIC,9,0xe02c676b1e0,134,"__ultron" +code-creation,Handler,3,0xe02c676b280,184,"__ultron" +code-creation,StorePolymorphicIC,9,0xe02c676b340,154,"__ultron" +code-creation,StorePolymorphicIC,9,0xe02c676b3e0,154,"flowing" +tick,0xa6a37e,1950049,0,0x600000000,0,0xbb9fc0,0x2fc0fa0,0xe02c671fd48,0xe02c656f241,0xe02c676ae5e,0xe02c6766920,0xe02c67659f3,0xe02c67204f6,0xe02c6764b95,0xe02c65242cb,0xe02c6730371,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,StorePolymorphicIC,9,0xe02c676b480,154,"resumeScheduled" +code-creation,LazyCompile,0,0xe02c676b520,756,"Sender /home/rgbm21/Documents/botkit/node_modules/ws/lib/Sender.js:18:16",0x36b97b190040,~ +code-creation,Handler,3,0xe02c676b820,192,"domain" +code-creation,Handler,3,0xe02c676b8e0,164,"_events" +code-creation,Handler,3,0xe02c676b9a0,192,"_events" +code-creation,Handler,3,0xe02c676ba60,184,"_eventsCount" +code-creation,Handler,3,0xe02c676bb20,164,"_maxListeners" +code-creation,Handler,3,0xe02c676bbe0,192,"_maxListeners" +code-creation,Handler,3,0xe02c676bca0,192,"error" +code-creation,LazyCompile,0,0xe02c676bd60,652," /home/rgbm21/Documents/botkit/lib/Slackbot_worker.js:81:40",0x2c68c594ff80,~ +code-creation,Handler,3,0xe02c676c000,201,"message" +tick,0xd55c00,1951187,0,0x7fffc294ae50,2,0xca0620,0xe02c676bf49,0xe02c672564c,0xe02c6524163,0xe02c6766d33,0xe02c67659f3,0xe02c67204f6,0xe02c6764b95,0xe02c65242cb,0xe02c6730371,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c676c0e0,348,"Botkit.botkit.startTicking /home/rgbm21/Documents/botkit/lib/CoreBot.js:613:35",0x36b97b17b498,~ +code-creation,Stub,2,0xe02c676c240,746,"FastNewClosureStub" +code-creation,LazyCompile,0,0xe02c676c540,1992,"exports.setInterval timers.js:234:31",0x192859efd598,~ +tick,0xe02c642f5a1,1952181,0,0x7fffc294b290,0,0xe02c676c1e5,0xe02c676bf49,0xe02c672564c,0xe02c6524163,0xe02c6766d33,0xe02c67659f3,0xe02c67204f6,0xe02c6764b95,0xe02c65242cb,0xe02c6730371,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c676cd20,364,"Timeout timers.js:300:25",0x192859efd6e8,~ +code-creation,LazyCompile,0,0xe02c676cea0,1236,"exports.active timers.js:31:26",0x192859efd250,~ +code-creation,Handler,3,0xe02c676d380,216,"_idleNext" +code-creation,StorePolymorphicIC,9,0xe02c676d460,174,"_idleNext" +code-creation,Handler,3,0xe02c676d520,216,"_idlePrev" +code-creation,StorePolymorphicIC,9,0xe02c676d600,174,"_idlePrev" +code-creation,KeyedStoreIC,10,0xe02c676d6c0,134,"" +code-creation,KeyedStoreIC,10,0xe02c676d760,134,"" +code-creation,StorePolymorphicIC,9,0xe02c676d800,174,"_idlePrev" +code-creation,StorePolymorphicIC,9,0xe02c676d8c0,174,"_idleNext" +code-creation,StorePolymorphicIC,9,0xe02c676d980,174,"_idleNext" +code-creation,StorePolymorphicIC,9,0xe02c676da40,174,"_idlePrev" +code-creation,StorePolymorphicIC,9,0xe02c676db00,154,"_idleNext" +code-creation,StorePolymorphicIC,9,0xe02c676dba0,154,"_idlePrev" +code-creation,StorePolymorphicIC,9,0xe02c676dc40,154,"_idlePrev" +code-creation,StorePolymorphicIC,9,0xe02c676dce0,154,"_idleNext" +code-creation,StoreIC,9,0xe02c676dd80,134,"_headers" +code-creation,StoreIC,9,0xe02c676de20,134,"onIncoming" +code-creation,StoreIC,9,0xe02c676dec0,134,"_consumed" +code-creation,StoreIC,9,0xe02c676df60,134,"parser" +code-creation,StoreIC,9,0xe02c676e000,134,"socket" +code-creation,StoreIC,9,0xe02c676e0a0,134,"incoming" +code-creation,Handler,3,0xe02c676e140,164,"free" +code-creation,StoreIC,9,0xe02c676e200,134,"parser" +code-creation,StoreIC,9,0xe02c676e2a0,134,"parser" +code-disable-optimization,"nextTickCallbackWith1Arg","TryFinallyStatement" +code-creation,LazyCompile,0,0xe02c676e340,412,"nextTickCallbackWith1Arg node.js:460:38",0x2efb89c12428, +code-disable-optimization,"nextTickCallbackWith0Args","TryFinallyStatement" +code-creation,LazyCompile,0,0xe02c676e4e0,412,"nextTickCallbackWith0Args node.js:449:39",0x2efb89c12380, +code-creation,LazyCompile,0,0xe02c676e680,836,"firstHandler /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:782:24",0x2c68c595f0e0,~ +tick,0x7f66177e45a9,2105971,0,0x0,5 +tick,0xcc9228,2106064,0,0x0,3 +code-creation,Stub,14,0xe02c676e9e0,220,"ToBooleanStub(Undefined,Smi)" +code-creation,StorePolymorphicIC,9,0xe02c676eac0,154,"bytesRead" +code-creation,LazyCompile,0,0xe02c676eb60,372,"realHandler /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:798:23",0x2c68c595f188,~ +code-creation,LazyCompile,0,0xe02c676ece0,1528,"Receiver.add /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:78:34",0x36b97b1966c8,~ +code-creation,Stub,13,0xe02c676f2e0,232,"CompareNilICStub(NullValue)(MonomorphicMap)" +code-creation,LazyCompile,0,0xe02c676f3e0,2212,"fastCopy /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:384:18",0x36b97b196578,~ +code-creation,KeyedStoreIC,10,0xe02c676fca0,134,"" +tick,0xd10ac9,2107130,0,0x2fccd90,2,0xca0620,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c676fd40,3044,"Receiver.processPacket /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:187:45",0x36b97b196a10,~ +code-creation,LazyCompile,0,0xe02c6770940,820,"opcodes.1.start /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:423:20",0x36b97b196f50,~ +code-creation,LazyCompile,0,0xe02c6770c80,556,"opcodes.1.getData /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:445:22",0x36b97b196ff8,~ +code-creation,LazyCompile,0,0xe02c6770ec0,1512,"Receiver.expectData /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:153:41",0x36b97b1968c0,~ +code-creation,LazyCompile,0,0xe02c67714c0,364,"Receiver.allocateFromPool /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:177:47",0x36b97b196968,~ +code-creation,LazyCompile,0,0xe02c6771640,908,"BufferPool.get /home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferPool.js:40:36",0x36b97b19b510,~ +code-creation,StoreIC,9,0xe02c67719e0,134,"expectBuffer" +tick,0xd53e58,2108187,0,0x7fffc294a910,0,0xbbb8f0,0xe02c676f21f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,Stub,3,0xe02c6771a80,184,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c6771b40,134,"expectOffset" +code-creation,LazyCompile,0,0xe02c6771be0,332," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:456:41",0x2c68c5966a38,~ +code-creation,LazyCompile,0,0xe02c6771d40,892,"opcodes.1.finish /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:461:21",0x36b97b1970a0,~ +code-creation,LazyCompile,0,0xe02c67720c0,484,"Receiver.unmask /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:293:38",0x36b97b196c08,~ +code-creation,LazyCompile,0,0xe02c67722c0,888,"clone /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:406:15",0x36b97b196620,~ +code-creation,Handler,3,0xe02c6772640,192,"lastFragment" +code-creation,KeyedStoreIC,10,0xe02c6772700,153,"lastFragment" +code-creation,Handler,3,0xe02c67727a0,192,"masked" +code-creation,Handler,3,0xe02c6772860,184,"opcode" +code-creation,Handler,3,0xe02c6772920,192,"fragmentedOperation" +code-creation,Handler,3,0xe02c67729e0,192,"compressed" +code-creation,LazyCompile,0,0xe02c6772aa0,604,"Receiver.flush /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:331:36",0x36b97b196e00,~ +code-creation,LazyCompile,0,0xe02c6772d00,396," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:465:41",0x2c68c5967700,~ +code-creation,LazyCompile,0,0xe02c6772ea0,532,"Receiver.applyExtensions /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:352:46",0x36b97b196ea8,~ +tick,0xd19d18,2109249,0,0x3153000033ed,2,0xca0620,0xe02c6773071,0xe02c6772e47,0xe02c6772ce1,0xe02c677202f,0xe02c6771ce3,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c67730c0,1220," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:466:84",0x2c68c5968098,~ +code-creation,LazyCompile,0,0xe02c67735a0,688,"Receiver.concatBuffers /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:305:44",0x36b97b196cb0,~ +code-creation,LazyCompile,0,0xe02c6773860,616,"module.exports.BufferUtil.merge /home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferUtil.fallback.js:8:18",0x36b97b1934e8,~ +code-creation,LazyCompile,0,0xe02c6773ae0,196,"module.exports.Validation.isValidUTF8 /home/rgbm21/Documents/botkit/node_modules/ws/lib/Validation.fallback.js:8:24",0x36b97b199d70,~ +code-creation,LazyCompile,0,0xe02c6773bc0,372,"ontext /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:813:42",0x2c68c595f230,~ +code-creation,LazyCompile,0,0xe02c6773d40,372," /home/rgbm21/Documents/botkit/lib/Slackbot_worker.js:84:47",0x2c68c5963900,~ +code-creation,LazyCompile,0,0xe02c6773ec0,412,"Botkit.botkit.receiveMessage /home/rgbm21/Documents/botkit/lib/CoreBot.js:648:37",0x36b97b17b690,~ +code-creation,LazyCompile,0,0xe02c6774060,2116,"bot.findConversation /home/rgbm21/Documents/botkit/lib/Slackbot_worker.js:400:36",0x36b97b1a8d48,~ +code-creation,Handler,3,0xe02c67748c0,141,"$toString" +code-creation,Handler,3,0xe02c6774960,141,"$toPrimitive" +tick,0x7f66177649bd,2110345,0,0x7fff00000011,0,0xbb9fc0,0xe02c66cc593,0xe02c669a3ea,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c6774167,0xe02c6774017,0xe02c6773e70,0xe02c6524712,0xe02c6524232,0xe02c6773cef,0xe02c6773543,0xe02c6773071,0xe02c6772e47,0xe02c6772ce1,0xe02c677202f,0xe02c6771ce3,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c6774a00,444," /home/rgbm21/Documents/botkit/lib/CoreBot.js:650:47",0x2c68c59690a0,~ +code-creation,Stub,13,0xe02c6774bc0,151,"CompareNilICStub(UndefinedValue)(None)" +code-creation,LazyCompile,0,0xe02c6774c60,6796," /home/rgbm21/Documents/botkit/lib/SlackBot.js:418:53",0x36b97b1a5d00,~ +code-creation,Stub,13,0xe02c6776700,200,"CompareNilICStub(UndefinedValue)(Undefined)" +code-creation,Stub,12,0xe02c67767e0,413,"CompareICStub" +tick,0xe02c640829f,2111392,0,0xe02c6774b75,0,0xe02c6774876,0xe02c6774017,0xe02c6773e70,0xe02c6524712,0xe02c6524232,0xe02c6773cef,0xe02c6773543,0xe02c6773071,0xe02c6772e47,0xe02c6772ce1,0xe02c677202f,0xe02c6771ce3,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c6776980,284," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:340:19",0x2c68c5967e40,~ +code-creation,Handler,3,0xe02c6776aa0,164,"shift" +code-creation,LazyCompile,0,0xe02c6776b60,1396,"Receiver.endPacket /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:246:40",0x36b97b196ab8,~ +code-creation,LazyCompile,0,0xe02c67770e0,716,"BufferPool.reset /home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferPool.js:52:38",0x36b97b19b5b8,~ +code-creation,LazyCompile,0,0xe02c67773c0,236," /home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferPool.js:35:41",0x2c68c5960e00,~ +code-creation,LazyCompile,0,0xe02c67774c0,348," /home/rgbm21/Documents/botkit/node_modules/ws/lib/BufferPool.js:32:41",0x2c68c5960d58,~ +code-creation,Stub,12,0xe02c6777620,686,"CompareICStub" +code-creation,StoreIC,9,0xe02c67778e0,134,"expectBuffer" +code-creation,StoreIC,9,0xe02c6777980,134,"expectHandler" +code-creation,StoreIC,9,0xe02c6777a20,134,"bytesReceived" +code-creation,Handler,3,0xe02c6777ac0,164,"add" +code-creation,StoreIC,9,0xe02c6777b80,134,"expectOffset" +code-creation,StoreIC,9,0xe02c6777c20,134,"lastFragment" +code-creation,StoreIC,9,0xe02c6777cc0,134,"masked" +code-creation,StoreIC,9,0xe02c6777d60,134,"compressed" +code-creation,StoreIC,9,0xe02c6777e00,134,"opcode" +code-creation,StoreIC,9,0xe02c6777ea0,134,"fragmentedOperation" +tick,0xd66161,2112534,0,0x7fffc294b0c0,0,0xbb9fc0,0xe02c6770e35,0xe02c6770b00,0xe02c6770909,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,Handler,3,0xe02c6777f40,164,"expectData" +code-creation,Handler,3,0xe02c6778000,164,"allocateFromPool" +code-creation,Handler,3,0xe02c67780c0,164,"get" +code-creation,StoreIC,9,0xe02c6778180,134,"_used" +code-creation,Stub,3,0xe02c6778220,184,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c67782e0,134,"_offset" +code-creation,StoreIC,9,0xe02c6778380,134,"expectBuffer" +code-creation,StoreIC,9,0xe02c6778420,134,"expectHandler" +code-creation,Handler,3,0xe02c67784c0,164,"pop" +code-creation,StoreIC,9,0xe02c6778580,134,"expectOffset" +code-creation,Handler,3,0xe02c6778620,164,"unmask" +code-creation,Handler,3,0xe02c67786e0,192,"activeFragmentedOperation" +code-creation,Handler,3,0xe02c6767c40,192,"lastFragment" +code-creation,Handler,3,0xe02c6767d00,164,"flush" +code-creation,StoreIC,9,0xe02c6767dc0,134,"processing" +code-creation,Handler,3,0xe02c6767e60,164,"applyExtensions" +code-creation,Handler,3,0xe02c6767f20,164,"concatBuffers" +code-creation,StoreIC,9,0xe02c6767fe0,134,"currentMessage" +tick,0xa94041,2113616,0,0x7fffc294af50,0,0xbbb8f0,0xe02c6773359,0xe02c6773071,0xe02c6772e47,0xe02c6772ce1,0xe02c677202f,0xe02c6771ce3,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,Handler,3,0xe02c6778840,164,"toString" +code-creation,StoreIC,9,0xe02c6778900,134,"masked" +code-creation,Handler,3,0xe02c67789a0,138,"buffer" +code-creation,StoreIC,9,0xe02c6778a40,134,"buffer" +code-creation,Handler,3,0xe02c6778ae0,164,"emit" +code-creation,Handler,3,0xe02c6778ba0,171,"JSON" +code-creation,StoreIC,9,0xe02c6778c60,134,"event" +code-creation,StoreIC,9,0xe02c6778d00,134,"processing" +code-creation,Handler,3,0xe02c6778da0,164,"endPacket" +code-creation,Handler,3,0xe02c6778e60,164,"reset" +code-disable-optimization,"DIV","Call to a JavaScript runtime function" +code-creation,LazyCompile,0,0xe02c6778f20,444,"DIV native runtime.js:175:13",0x31534ff6aff8, +code-creation,LazyCompile,0,0xe02c67790e0,244,"ceil native math.js:27:18",0x31534ff689b0,~ +code-creation,Handler,3,0xe02c67791e0,202,"size" +tick,0x7f66182495a2,2114664,0,0x2e276b8,0,0xbbb8f0,0xe02c677723e,0xe02c6776c9c,0xe02c6772073,0xe02c6771ce3,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,Stub,3,0xe02c67792c0,184,"StoreFieldStub" +code-creation,StoreIC,9,0xe02c6779380,134,"_changeFactor" +code-creation,StoreIC,9,0xe02c6779420,134,"_changeFactor" +code-creation,Handler,3,0xe02c67794c0,138,"_buffer" +code-creation,StoreIC,9,0xe02c6779560,134,"_buffer" +code-creation,StoreIC,9,0xe02c6779600,134,"_offset" +code-creation,StoreIC,9,0xe02c67796a0,134,"_used" +code-creation,StoreIC,9,0xe02c6779740,134,"expectOffset" +code-creation,StoreIC,9,0xe02c67797e0,134,"expectBuffer" +code-creation,StoreIC,9,0xe02c6779880,134,"expectHandler" +code-creation,StoreIC,9,0xe02c6779920,134,"lastFragment" +code-creation,StoreIC,9,0xe02c67799c0,134,"opcode" +code-creation,StoreIC,9,0xe02c6779a60,134,"masked" +code-creation,Handler,3,0xe02c6779b00,164,"expectHeader" +code-creation,Handler,3,0xe02c6779bc0,164,"processPacket" +code-creation,LazyCompile,0,0xe02c6779c80,388," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:431:38",0x2c68c5966668,~ +code-creation,LazyCompile,0,0xe02c6779e20,300,"readUInt16BE /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:372:22",0x36b97b196428,~ +code-creation,Handler,3,0xe02c6779f60,202,"used" +code-creation,StoreIC,9,0xe02c677a040,134,"_buffer" +code-creation,StoreIC,9,0xe02c677a0e0,134,"_offset" +tick,0x7f6617abcdad,2115755,1,0xe57dd0,4,0x93e0b0,0xe02c669d281,0xe02c669c2dc,0xe02c669ba85,0xe02c669b93e,0xe02c669b566,0xe02c669abc4,0xe02c669a891,0xe02c6695e46,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c6774167,0xe02c6774017,0xe02c6773e70,0xe02c6524712,0xe02c6524232,0xe02c6773cef,0xe02c6773543,0xe02c6773071,0xe02c6772e47,0xe02c6772ce1,0xe02c677202f,0xe02c6771ce3,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +tick,0x7f66177e45a9,2952622,0,0x0,5 +code-disable-optimization,"listOnTimeout","TryFinallyStatement" +code-creation,LazyCompile,0,0xe02c677a180,2712,"listOnTimeout timers.js:56:23",0x192859efcc68, +code-creation,LazyCompile,0,0xe02c677ac20,300,"peek internal/linkedlist.js:11:14",0x192859eff048,~ +code-creation,Stub,12,0xe02c677ad60,209,"CompareICStub" +code-creation,StorePolymorphicIC,9,0xe02c677ae40,194,"_idlePrev" +code-creation,StorePolymorphicIC,9,0xe02c677af20,194,"_idleNext" +code-creation,LazyCompile,0,0xe02c677b000,580,"wrapper timers.js:274:19",0x2c68c5963e60,~ +code-creation,LazyCompile,0,0xe02c677b260,252," /home/rgbm21/Documents/botkit/lib/CoreBot.js:616:55",0x2c68c5963c28,~ +code-creation,LazyCompile,0,0xe02c677b360,1236,"Botkit.botkit.tick /home/rgbm21/Documents/botkit/lib/CoreBot.js:659:27",0x36b97b17b738,~ +code-creation,StoreIC,9,0xe02c677b840,134,"_idleStart" +tick,0xbd1a47,2953668,0,0x6,0,0xbba1d0,0xe02c676d06f,0xe02c677b229,0xe02c677a9d8 +code-creation,Stub,2,0xe02c677b8e0,2669,"RecordWriteStub" +code-creation,Stub,2,0xe02c677c360,932,"LoadDictionaryElementStub" +code-creation,Stub,14,0xe02c677c720,248,"ToBooleanStub(Undefined,Null,SpecObject)" +tick,0x7f66177e45a9,3955905,0,0x0,5 +code-creation,Handler,3,0xe02c677c820,145,symbol("nonexistent_symbol" hash 327c89d) +code-creation,StoreIC,9,0xe02c677c8c0,134,"_called" +code-creation,StoreIC,9,0xe02c677c960,134,"_idleTimeout" +code-creation,Handler,3,0xe02c677ca00,164,"start" +tick,0x7f66177e45a9,4958125,0,0x0,5 +tick,0x7f66177e45a9,5959260,0,0x0,5 +tick,0x7f66177e45a9,6959674,0,0x0,5 +tick,0x7f66177e45a9,6959705,0,0x0,5 +tick,0x7f66177e45a9,7960796,0,0x0,5 +tick,0x7f66177e45a9,7960886,0,0x0,5 +tick,0x7f66177e45a9,8963103,0,0x0,5 +tick,0x7f66177e45a9,9964289,0,0x0,5 +tick,0xafa4ff,9964409,0,0x2e0ddbf,0,0xcdc830,0xe02c65f62d8,0xe02c66ad4a9,0xe02c66ac406,0xe02c668c0b9,0xe02c6699016,0xe02c677b7d4,0xe02c677b313,0xe02c677b0b3,0xe02c677a9d8 +tick,0x7f66177e45a9,10965564,0,0x0,5 +tick,0x7f66177e45a9,11966678,0,0x0,5 +tick,0x7f66177e45a9,12967799,0,0x0,5 +tick,0x7f66177e45a9,13968488,0,0x0,5 +tick,0x7f66177e45a9,14969587,0,0x0,5 +tick,0x7f66177e45a9,15970696,0,0x0,5 +tick,0x7f66177e45a9,16971041,0,0x0,5 +tick,0x7f66177e45a9,17972135,0,0x0,5 +tick,0x7f66177e45a9,18973095,0,0x0,5 +tick,0x7f66177e45a9,19974193,0,0x0,5 +tick,0x7f66177e45a9,20975314,0,0x0,5 +tick,0x7f66177e45a9,21976466,0,0x0,5 +tick,0xe02c677c78a,21976498,0,0xe02c66e1c99,0,0xe02c677a5e6 +tick,0x7f66177e45a9,22977583,0,0x0,5 +tick,0x7f66177e45a9,23978324,0,0x0,5 +tick,0x7f66177e45a9,24979451,0,0x0,5 +tick,0x7f66177e45a9,25980567,0,0x0,5 +tick,0x7f66177e45a9,26981691,0,0x0,5 +tick,0x7f66177e45a9,27982038,0,0x0,5 +tick,0x7f66177e45a9,28982980,0,0x0,5 +tick,0x7f66177e45a9,29983520,0,0x0,5 +tick,0x7f66177e45a9,30984053,0,0x0,5 +tick,0x7f66177e45a9,31985177,0,0x0,5 +tick,0x7f66177e45a9,32986299,0,0x0,5 +tick,0x7f66177e45a9,33987213,0,0x0,5 +tick,0x7f66177e45a9,34987538,0,0x0,5 +tick,0x7f66177e45a9,35988687,0,0x0,5 +tick,0x7f66177e45a9,36989533,0,0x0,5 +tick,0x7f66177e45a9,37990642,0,0x0,5 +tick,0x7f66177e45a9,38991732,0,0x0,5 +tick,0xe02c6407f84,38991813,0,0xe02c677a532,0 +tick,0x7f66177e45a9,39151049,0,0x0,5 +tick,0x8e786f,39151110,0,0x0,5 +code-creation,LazyCompile,0,0xe02c677cac0,756,"opcodes.9.start /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:612:20",0x36b97b197538,~ +code-creation,LazyCompile,0,0xe02c677cdc0,556,"opcodes.9.getData /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:628:22",0x36b97b1975e0,~ +code-creation,LazyCompile,0,0xe02c677d000,332," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:639:41",0x2c68c596d578,~ +code-creation,LazyCompile,0,0xe02c677d160,836,"opcodes.9.finish /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:644:21",0x36b97b197688,~ +code-creation,LazyCompile,0,0xe02c677d4c0,396," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Receiver.js:648:41",0x2c68c596d978,~ +code-creation,LazyCompile,0,0xe02c677d660,700,"onping /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:826:42",0x2c68c595f380,~ +code-creation,LazyCompile,0,0xe02c677d920,788,"WebSocket.pong /home/rgbm21/Documents/botkit/node_modules/ws/lib/WebSocket.js:177:36",0x36b97b18b810,~ +code-creation,LazyCompile,0,0xe02c677dc40,580,"Sender.pong /home/rgbm21/Documents/botkit/node_modules/ws/lib/Sender.js:86:33",0x36b97b1904d8,~ +tick,0xbb9e7d,39152212,0,0x7fffc294b2e0,0,0xbb9fc0,0xe02c677ddb3,0xe02c677dc1b,0xe02c677d87e,0xe02c677d5e5,0xe02c6772ce1,0xe02c677d41c,0xe02c677d103,0xe02c6770fa8,0xe02c677cfa7,0xe02c677cd3e,0xe02c6770909,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,LazyCompile,0,0xe02c677dea0,556,"Sender.flush /home/rgbm21/Documents/botkit/node_modules/ws/lib/Sender.js:258:34",0x36b97b1906d0,~ +code-creation,LazyCompile,0,0xe02c677e0e0,356," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Sender.js:89:37",0x2c68c596e248,~ +code-disable-optimization,"Sender.frameAndSend","TryCatchStatement" +code-creation,LazyCompile,0,0xe02c677e260,5124,"Sender.frameAndSend /home/rgbm21/Documents/botkit/node_modules/ws/lib/Sender.js:139:41",0x36b97b190628, +code-creation,LazyCompile,0,0xe02c677f680,2752,"fromObject buffer.js:121:20",0x31534ffffd88,~ +code-creation,KeyedStoreIC,10,0xe02c6780140,134,"" +code-creation,StorePolymorphicIC,9,0xe02c67801e0,174,"_pendingData" +tick,0x7f66177da4fd,39153271,0,0x0,0,0xbbb8f0,0xe02c669bca7,0xe02c669ba85,0xe02c669b93e,0xe02c669b566,0xe02c669abc4,0xe02c669a891,0xe02c677e60d,0xe02c677e1d7,0xe02c677e0b3,0xe02c677de41,0xe02c677dc1b,0xe02c677d87e,0xe02c677d5e5,0xe02c6772ce1,0xe02c677d41c,0xe02c677d103,0xe02c6770fa8,0xe02c677cfa7,0xe02c677cd3e,0xe02c6770909,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +code-creation,StorePolymorphicIC,9,0xe02c67802a0,174,"_pendingEncoding" +code-creation,StorePolymorphicIC,9,0xe02c6780360,174,"_bytesDispatched" +code-creation,Handler,3,0xe02c6780420,204,"cb" +code-creation,StorePolymorphicIC,9,0xe02c6780500,154,"cb" +code-creation,LazyCompile,0,0xe02c67805a0,284," /home/rgbm21/Documents/botkit/node_modules/ws/lib/Sender.js:268:19",0x2c68c596e4b8,~ +tick,0x7f66177e45a9,39278371,0,0x0,5 +code-creation,StoreIC,9,0xe02c67806c0,134,"expectOffset" +tick,0xe02c641216e,39278922,0,0xe02c669a27a,0,0xe02c6695e18,0xe02c6699016,0xe02c66984b4,0xe02c669931c,0xe02c6774167,0xe02c6774017,0xe02c6773e70,0xe02c6524712,0xe02c6524232,0xe02c6773cef,0xe02c6773543,0xe02c6773071,0xe02c6772e47,0xe02c6772ce1,0xe02c677202f,0xe02c6771ce3,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +tick,0x7f66177e45a9,39992012,0,0x0,5 +tick,0x7f66177e45a9,40993121,0,0x0,5 +tick,0x7f66177e45a9,41994218,0,0x0,5 +tick,0x7f66177e45a9,42995501,0,0x0,5 +tick,0xe02c64151c1,42995530,0,0x0,0 +tick,0x7f66177e45a9,43995770,0,0x0,5 +tick,0x7f66177e45a9,43995821,0,0x0,5 +tick,0x7f66177e45a9,44996896,0,0x0,5 +tick,0xe08921,44996939,0,0x0,4 +tick,0x7f66177e45a9,45999013,0,0x0,5 +tick,0x7f66177e45a9,47000148,0,0x0,5 +tick,0x7f66177e45a9,48000829,0,0x0,5 +tick,0x7f66177e45a9,49001635,0,0x0,5 +tick,0x7f66177e45a9,50002757,0,0x0,5 +tick,0x7f66177e45a9,51003741,0,0x0,5 +tick,0x7f66177e45a9,52004854,0,0x0,5 +tick,0x7f66177e45a9,53005963,0,0x0,5 +tick,0x7f66177e45a9,54007069,0,0x0,5 +tick,0x7f66177e45a9,55008100,0,0x0,5 +tick,0x7f66177e45a9,56008791,0,0x0,5 +tick,0x7f6617abcb5b,56009475,0,0x0,2,0xcbb000,0xe02c677a200 +code-creation,LazyCompile,1,0xe02c6780760,291,"ok assert.js:108:12",0x2efb89c04420,* +tick,0x7f66177e45a9,57010620,0,0x0,5 +tick,0x7f66177e45a9,58011744,0,0x0,5 +tick,0x7f66177e45a9,59012865,0,0x0,5 +tick,0x7f66177e45a9,60012969,0,0x0,5 +tick,0xe02c66abfbe,60013022,0,0x2efb89c89079,0,0xe02c668c0b9,0xe02c6699016,0xe02c677b7d4,0xe02c677b313,0xe02c677b0b3,0xe02c677a9d8 +tick,0x7f66177e45a9,61013303,0,0x0,5 +tick,0x7f66177e45a9,62013737,0,0x0,5 +tick,0x7f66177e45a9,63014839,0,0x0,5 +tick,0x7f66177e45a9,64015961,0,0x0,5 +tick,0x7f66177e45a9,65017022,0,0x0,5 +tick,0x7f66177e45a9,65017053,0,0x0,5 +code-creation,LazyCompile,0,0xe02c67808a0,492,"remove internal/linkedlist.js:28:16",0x192859eff198,~ +tick,0x7f66177e45a9,66018061,0,0x0,5 +tick,0xdafc31,66018094,0,0x14,2,0xcbb000,0xe02c677a200 +code-creation,Stub,2,0xe02c6780aa0,2722,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c6781560,1494,"remove internal/linkedlist.js:28:16",0x192859eff198,* +tick,0x7f66177e45a9,67019422,0,0x0,5 +tick,0x7f66177e45a9,68020517,0,0x0,5 +tick,0x7f66177e45a9,69021674,0,0x0,5 +code-creation,LazyCompile,0,0xe02c6781b40,500,"debug /home/rgbm21/Documents/botkit/node_modules/debug/debug.js:62:15",0x2efb89c9cab0,~ +code-creation,LazyCompile,0,0xe02c6781d40,1044,"enabled /home/rgbm21/Documents/botkit/node_modules/debug/debug.js:171:17",0x2efb89c9cca8,~ +tick,0xb4946f,69022291,0,0x2fdd3b0,2,0xca07d0,0xe02c66ad4a9,0xe02c66ac406,0xe02c668c0b9,0xe02c6699016,0xe02c677b7d4,0xe02c677b313,0xe02c677b0b3,0xe02c677a9d8 +tick,0x7f66177e45a9,70024438,0,0x0,5 +code-creation,Stub,2,0xe02c6782160,1254,"RecordWriteStub" +tick,0x7f66177da4fd,70025123,0,0x0,2,0xcbb000,0xe02c677a200 +code-creation,LazyCompile,1,0xe02c6782660,952,"debug /home/rgbm21/Documents/botkit/node_modules/debug/debug.js:62:15",0x2efb89c9cab0,* +code-creation,Handler,3,0xe02c6782a20,192,"enabled" +code-creation,StoreIC,9,0xe02c6782ae0,134,"enabled" +code-creation,Handler,3,0xe02c6782b80,192,"enabled" +code-creation,StoreIC,9,0xe02c6782c40,134,"enabled" +tick,0x7f66177e45a9,71026347,0,0x0,5 +tick,0x7f66177e45a9,72027514,0,0x0,5 +code-creation,LazyCompile,1,0xe02c6782ce0,167,"debugs.(anonymous function) util.js:72:29",0x2efb89c0c200,* +tick,0x7f66177e45a9,73028751,0,0x0,5 +tick,0x7f66177e45a9,74028928,0,0x0,5 +tick,0x7f66177e45a9,74028956,0,0x0,5 +tick,0x7f66177e45a9,75030040,0,0x0,5 +tick,0x7f66177e45a9,76031146,0,0x0,5 +tick,0xd06c54,76031223,0,0x111b190,2,0xca07d0,0xe02c66ac406,0xe02c668c0b9,0xe02c6699016,0xe02c677b7d4,0xe02c677b313,0xe02c677b0b3,0xe02c677a9d8 +code-creation,LazyCompile,0,0xe02c6782da0,660," /home/rgbm21/Documents/botkit/lib/events.js:92:21",0x36b97b17c7f0,~ +code-disable-optimization,"","Bad value context for arguments value" +tick,0x7f66177e45a9,77031602,0,0x0,5 +tick,0x7f66177e45a9,78032414,0,0x0,5 +tick,0x7f66177e45a9,79033522,0,0x0,5 +tick,0x7f66177e45a9,80034683,0,0x0,5 +tick,0x7f66177e45a9,81035788,0,0x0,5 +tick,0x7f66177e45a9,82036890,0,0x0,5 +tick,0x7f66177e45a9,83038612,0,0x0,5 +tick,0x7f66177e45a9,84039336,0,0x0,5 +tick,0x7f66177e45a9,85039752,0,0x0,5 +tick,0x7f66177e45a9,86040866,0,0x0,5 +tick,0x7f66177e45a9,87041988,0,0x0,5 +tick,0x7f66177e45a9,88043085,0,0x0,5 +tick,0x7f66177e45a9,89044209,0,0x0,5 +tick,0x7f66177e45a9,90044484,0,0x0,5 +code-creation,LazyCompile,0,0xe02c6783040,300,"peek internal/linkedlist.js:11:14",0x192859eff048,~ +tick,0x7f66177e45a9,91045916,0,0x0,5 +code-creation,LazyCompile,1,0xe02c6783180,239,"peek internal/linkedlist.js:11:14",0x192859eff048,* +tick,0x7f66177e45a9,92046274,0,0x0,5 +tick,0x7f66177e45a9,93047388,0,0x0,5 +tick,0x7f66177e45a9,94048515,0,0x0,5 +tick,0x7f66177e45a9,95049665,0,0x0,5 +tick,0x7f66177e45a9,96050782,0,0x0,5 +tick,0x7f66177e45a9,97051271,0,0x0,5 +tick,0x7f66177e45a9,98052236,0,0x0,5 +tick,0x7f66177e45a9,99053348,0,0x0,5 +tick,0x7f66177e45a9,99274833,0,0x0,5 +code-creation,StoreIC,9,0xe02c6783280,134,"masked" +code-creation,Handler,3,0xe02c6783320,164,"pong" +code-creation,StoreIC,9,0xe02c67833e0,134,"mask" +code-creation,StoreIC,9,0xe02c6783480,134,"binary" +code-creation,Handler,3,0xe02c6783520,164,"pong" +code-creation,Handler,3,0xe02c67835e0,164,"flush" +code-creation,StoreIC,9,0xe02c67836a0,134,"processing" +code-creation,Handler,3,0xe02c6783740,164,"frameAndSend" +code-creation,Handler,3,0xe02c6783800,216,"buffer" +code-creation,StoreIC,9,0xe02c67838e0,134,"buffer" +code-creation,Handler,3,0xe02c6783980,164,"writeBuffer" +code-creation,StoreIC,9,0xe02c6783a40,134,"processing" +tick,0xe02c66efa03,99275596,0,0xe02c672db00,0 +tick,0x7f66177e45a9,100053864,0,0x0,5 +tick,0x7f66177e45a9,101055991,0,0x0,5 +tick,0x7f66177e45a9,102057106,0,0x0,5 +tick,0x7f66177e45a9,103058237,0,0x0,5 +tick,0x7f66177e45a9,104059346,0,0x0,5 +tick,0x7f66177e45a9,105060176,0,0x0,5 +tick,0x7f66177e45a9,106061305,0,0x0,5 +tick,0x7f66177e45a9,107061693,0,0x0,5 +tick,0x7f66177e45a9,108062822,0,0x0,5 +tick,0x7f66177e45a9,109063924,0,0x0,5 +tick,0x7f66177e45a9,110065051,0,0x0,5 +tick,0x7f66177e45a9,111066161,0,0x0,5 +tick,0xfdf209,111066254,0,0x0,4 +tick,0x7f66177e45a9,112066944,0,0x0,5 +tick,0x7f66177e45a9,113068060,0,0x0,5 +tick,0xe02c6525571,113068114,0,0xe02c66ac098,0,0xe02c668c0b9,0xe02c6699016,0xe02c677b7d4,0xe02c677b313,0xe02c677b0b3,0xe02c677a9d8 +tick,0x7f66177e45a9,114069209,0,0x0,5 +tick,0x7f66177e45a9,115070013,0,0x0,5 +tick,0x7f66177e45a9,116071155,0,0x0,5 +tick,0x7f66177e45a9,117072279,0,0x0,5 +tick,0x7f66177e45a9,118073214,0,0x0,5 +tick,0x7f66177e45a9,118073241,0,0x0,5 +tick,0x7f66177e45a9,119074102,0,0x0,5 +tick,0x7f66177e45a9,120074606,0,0x0,5 +tick,0x7f66177e45a9,121075628,0,0x0,5 +tick,0x7f66177e45a9,121075666,0,0x0,5 +tick,0x7f66177e45a9,122076744,0,0x0,5 +tick,0x7f66177e45a9,123077850,0,0x0,5 +tick,0x7f66177e45a9,124078971,0,0x0,5 +tick,0x7f66177e45a9,125080095,0,0x0,5 +tick,0x7f66177e45a9,126081218,0,0x0,5 +tick,0x7f66177e45a9,127082342,0,0x0,5 +tick,0x7f66177e45a9,128083456,0,0x0,5 +tick,0x7f66177e45a9,129084579,0,0x0,5 +tick,0x7f66177e45a9,130085710,0,0x0,5 +tick,0xfe87f4,130085753,0,0x0,5 +tick,0x7f66177e45a9,131086044,0,0x0,5 +code-creation,LazyCompile,0,0xe02c6783ae0,372,"append internal/linkedlist.js:44:16",0x192859eff240,~ +tick,0x7f66177e45a9,132087557,0,0x0,5 +code-creation,Stub,2,0xe02c6783c60,2680,"RecordWriteStub" +tick,0xd92cd8,132087814,0,0x300b388,2,0xcbb000,0xe02c677a200 +code-creation,LazyCompile,1,0xe02c67846e0,2254,"append internal/linkedlist.js:44:16",0x192859eff240,* +tick,0x7f66177e45a9,133089828,0,0x0,5 +tick,0x7f66177e45a9,134090524,0,0x0,5 +code-creation,LazyCompile,0,0xe02c6784fc0,580,"wrapper timers.js:274:19",0x2c68c5963e60,~ +code-creation,LazyCompile,0,0xe02c6785220,1236,"exports.active timers.js:31:26",0x192859efd250,~ +tick,0xb8f5e8,134091267,0,0x2fe7268,2,0xca07d0,0xe02c677a9d8 +code-creation,LazyCompile,0,0xe02c6785700,260,"isEmpty internal/linkedlist.js:54:17",0x192859eff2e8,~ +code-creation,LazyCompile,0,0xe02c6785820,252," /home/rgbm21/Documents/botkit/lib/CoreBot.js:616:55",0x2c68c5963c28,~ +code-creation,LazyCompile,0,0xe02c6785920,1236,"Botkit.botkit.tick /home/rgbm21/Documents/botkit/lib/CoreBot.js:659:27",0x36b97b17b738,~ +tick,0x7f66177e45a9,135093202,0,0x0,5 +code-creation,LazyCompile,1,0xe02c6785e00,815," /home/rgbm21/Documents/botkit/lib/CoreBot.js:616:55",0x2c68c5963c28,* +code-creation,Stub,2,0xe02c6786140,329,"CallFunctionStub_Args0" +code-creation,Stub,2,0xe02c67862a0,2722,"RecordWriteStub" +code-creation,Stub,2,0xe02c6786d60,2676,"RecordWriteStub" +code-creation,Stub,2,0xe02c67877e0,2672,"RecordWriteStub" +code-creation,Stub,2,0xe02c6788900,2702,"RecordWriteStub" +code-creation,Stub,2,0xe02c67893a0,2684,"RecordWriteStub" +code-creation,Stub,2,0xe02c6789e20,2672,"RecordWriteStub" +code-creation,LazyCompile,1,0xe02c678a8a0,3651,"wrapper timers.js:274:19",0x2c68c5963e60,* +tick,0x7f66177e45a9,136094914,0,0x0,5 +tick,0x7f66177e45a9,137097040,0,0x0,5 +tick,0x7f66177e45a9,138098155,0,0x0,5 +tick,0x7f66177e45a9,139098889,0,0x0,5 +tick,0x7f66177e45a9,140100762,0,0x0,5 +tick,0x7f66177e45a9,141101844,0,0x0,5 +tick,0x7f66177e45a9,142102957,0,0x0,5 +tick,0x7f66177e45a9,142102988,0,0x0,5 +tick,0x7f66177e45a9,143103524,0,0x0,5 +tick,0x7f66177e45a9,144104625,0,0x0,5 +tick,0x7f66177e45a9,145105737,0,0x0,5 +tick,0x7f66177e45a9,146106847,0,0x0,5 +tick,0x7f66177e45a9,147109027,0,0x0,5 +tick,0x7f66177e45a9,148109643,0,0x0,5 +tick,0x7f66177e45a9,149110874,0,0x0,5 +tick,0x7f66177e45a9,150113124,0,0x0,5 +tick,0x7f66177e45a9,151113411,0,0x0,5 +tick,0x7f66177e45a9,152114193,0,0x0,5 +tick,0x7f66177e45a9,153115300,0,0x0,5 +tick,0x7f66177e45a9,154115590,0,0x0,5 +tick,0x7f66177e45a9,155116713,0,0x0,5 +tick,0x7f66177e45a9,156117941,0,0x0,5 +tick,0x7f66177e45a9,157119063,0,0x0,5 +tick,0x7f66177e45a9,158119223,0,0x0,5 +tick,0x7f66177e45a9,159119951,0,0x0,5 +tick,0x7f66177e45a9,159240938,0,0x0,5 +tick,0x73e14a,159240970,0,0x0,5 +tick,0x7f66177e45a9,159368178,0,0x0,5 +tick,0xd4437e,159368412,0,0x2de24a0,0,0xcc1970,0xe02c67734e0,0xe02c6773071,0xe02c6772e47,0xe02c6772ce1,0xe02c677202f,0xe02c6771ce3,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +tick,0x7f66177e45a9,160121712,0,0x0,5 +tick,0x7f66177e45a9,161122349,0,0x0,5 +tick,0x7f66177e45a9,162122855,0,0x0,5 +tick,0x7f66177e45a9,163123830,0,0x0,5 +tick,0x7f66177e45a9,164124435,0,0x0,5 +tick,0x7f66177e45a9,165125516,0,0x0,5 +tick,0x7f66177e45a9,166126535,0,0x0,5 +tick,0x7f66177e45a9,167127645,0,0x0,5 +tick,0x7f66177e45a9,168128271,0,0x0,5 +tick,0x7f66177e45a9,169129358,0,0x0,5 +tick,0x7f66177e45a9,170130487,0,0x0,5 +tick,0x7f66177e45a9,171130887,0,0x0,5 +tick,0x7f66177e45a9,172133045,0,0x0,5 +tick,0x7f66177e45a9,173134159,0,0x0,5 +tick,0x7f66177e45a9,174134983,0,0x0,5 +tick,0x7f66177e45a9,175136078,0,0x0,5 +tick,0x7f66177e45a9,176137088,0,0x0,5 +tick,0x7f66177e45a9,177138205,0,0x0,5 +tick,0x7f66177e45a9,178138738,0,0x0,5 +tick,0x7f66177e45a9,179139840,0,0x0,5 +tick,0x7f66177e45a9,180140937,0,0x0,5 +tick,0x7f66177e45a9,181142047,0,0x0,5 +tick,0x7f66177e45a9,182142464,0,0x0,5 +tick,0x7f66177e45a9,183143561,0,0x0,5 +tick,0x7f66177e45a9,184144525,0,0x0,5 +tick,0x7f66177e45a9,185145638,0,0x0,5 +tick,0x919046,185145674,0,0x0,0 +tick,0x7f66177e45a9,186146731,0,0x0,5 +tick,0x7f66177e45a9,187147835,0,0x0,5 +tick,0x7f66177e45a9,188148448,0,0x0,5 +tick,0x7f66177e45a9,189149098,0,0x0,5 +tick,0x7f66177e45a9,190150151,0,0x0,5 +tick,0x7f66177e45a9,191151234,0,0x0,5 +tick,0x7f66177e45a9,192152371,0,0x0,5 +tick,0x7f66177e45a9,193153463,0,0x0,5 +tick,0x7f66177e45a9,194154558,0,0x0,5 +tick,0x7f66177e45a9,195155601,0,0x0,5 +tick,0x7f66177e45a9,196156697,0,0x0,5 +tick,0x7f66177e45a9,197157892,0,0x0,5 +tick,0x7f66177e45a9,198159995,0,0x0,5 +tick,0x7f66177e45a9,199161105,0,0x0,5 +tick,0x7f66177e45a9,200162226,0,0x0,5 +tick,0x7f66177e45a9,201163094,0,0x0,5 +tick,0x7f66177e45a9,202163306,0,0x0,5 +tick,0x7f66177e45a9,203164283,0,0x0,5 +tick,0x7f66177e45a9,204165384,0,0x0,5 +tick,0x7f66177e45a9,205166476,0,0x0,5 +tick,0x7f66177e45a9,205166505,0,0x0,5 +tick,0x7f66177e45a9,206167588,0,0x0,5 +tick,0x7f66177e45a9,207168673,0,0x0,5 +tick,0x7f66177e45a9,208169799,0,0x0,5 +tick,0x7f66177e45a9,209170541,0,0x0,5 +tick,0x7f66177e45a9,210171672,0,0x0,5 +tick,0x7f66177e45a9,211172761,0,0x0,5 +tick,0x7f66177e45a9,212172947,0,0x0,5 +tick,0x7f66177e45a9,212172998,0,0x0,5 +tick,0x7f66177e45a9,213173762,0,0x0,5 +tick,0x7f66177e45a9,214174620,0,0x0,5 +tick,0x7f66177e45a9,215175714,0,0x0,5 +tick,0x7f66177e45a9,216175857,0,0x0,5 +tick,0x7f66177e45a9,217176914,0,0x0,5 +tick,0x7f66177e45a9,218179005,0,0x0,5 +tick,0xe02c641600a,218179078,0,0xe02c677a4d2,0 +tick,0x7f66177e45a9,219179294,0,0x0,5 +tick,0x7f66177e45a9,219230082,0,0x0,5 +tick,0xe02c641ed4c,219230182,0,0xe02c677254f,0,0xe02c677d30f,0xe02c677d103,0xe02c6770fa8,0xe02c677cfa7,0xe02c677cd3e,0xe02c6770909,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +tick,0x7f66177e45a9,220180446,0,0x0,5 +tick,0x7f66177e45a9,221181561,0,0x0,5 +tick,0x7f66177e45a9,222182667,0,0x0,5 +tick,0x7f66177e45a9,223183773,0,0x0,5 +tick,0x7f66177e45a9,224184875,0,0x0,5 +tick,0x7f66177e45a9,225185356,0,0x0,5 +tick,0x8fcef4,225185388,0,0x0,4 +tick,0x7f66177e45a9,226186704,0,0x0,5 +tick,0x7f66177e45a9,227187786,0,0x0,5 +tick,0xcb538d,227187818,0,0x21fa711082a9,0,0xcb5100,0xe02c6699016,0xe02c6785fc8,0xe02c678a955,0xe02c677a9d8 +tick,0x7f66177e45a9,228188125,0,0x0,5 +tick,0x7f66177e45a9,229189125,0,0x0,5 +tick,0x7f66177e45a9,230190247,0,0x0,5 +tick,0x7f66177e45a9,231191487,0,0x0,5 +tick,0x7f66177e45a9,232191727,0,0x0,5 +tick,0x7f66177e45a9,233192824,0,0x0,5 +tick,0x7f66177e45a9,234193966,0,0x0,5 +tick,0x7f66177e45a9,235195059,0,0x0,5 +tick,0x7f66177e45a9,236196243,0,0x0,5 +tick,0x7f66177e45a9,237197392,0,0x0,5 +tick,0x7f66177e45a9,238198541,0,0x0,5 +tick,0x7f66177e45a9,239199672,0,0x0,5 +tick,0xe02c6417c6c,239199710,0,0xe02c66ac210,0,0xe02c668c0b9,0xe02c6699016,0xe02c6785fc8,0xe02c678a955,0xe02c677a9d8 +tick,0x7f66177e45a9,240200804,0,0x0,5 +tick,0x7f66177e45a9,241201992,0,0x0,5 +tick,0x7f66177e45a9,242202362,0,0x0,5 +tick,0x7f66177e45a9,243203355,0,0x0,5 +tick,0x7f66177e45a9,244204482,0,0x0,5 +tick,0x7f66177e45a9,245205557,0,0x0,5 +tick,0x7f66177e45a9,246206665,0,0x0,5 +tick,0x7f66177e45a9,247207843,0,0x0,5 +tick,0x7f66177e45a9,248208130,0,0x0,5 +tick,0x7f66177e45a9,249209279,0,0x0,5 +tick,0x7f66177e45a9,250210386,0,0x0,5 +tick,0x7f66177e45a9,251211488,0,0x0,5 +tick,0x7f66177e45a9,252212597,0,0x0,5 +tick,0x7f66177e45a9,253213703,0,0x0,5 +tick,0x7f66177e45a9,254214782,0,0x0,5 +tick,0x7f66177e45a9,255215943,0,0x0,5 +tick,0x7f66177e45a9,256217033,0,0x0,5 +tick,0x7f66177e45a9,257218161,0,0x0,5 +tick,0x7f66177e45a9,258219280,0,0x0,5 +tick,0xe02c641ed65,258219309,0,0xe02c668c079,0,0xe02c6699016,0xe02c6785fc8,0xe02c678a955,0xe02c677a9d8 +tick,0x7f66177e45a9,259220391,0,0x0,5 +tick,0x7f66177e45a9,260221510,0,0x0,5 +tick,0x7f66177e45a9,261222642,0,0x0,5 +tick,0x7f66177e45a9,262223775,0,0x0,5 +tick,0x7f66177e45a9,263224943,0,0x0,5 +tick,0x7f66177e45a9,264226502,0,0x0,5 +tick,0x7f66177e45a9,265227632,0,0x0,5 +tick,0xa74117,265227665,0,0x0,3 +tick,0x7f66177e45a9,266228789,0,0x0,5 +tick,0x7f66177e45a9,267229890,0,0x0,5 +tick,0x7f66177e45a9,268232046,0,0x0,5 +tick,0x7f66177e45a9,269233172,0,0x0,5 +tick,0x7f66177e45a9,270234399,0,0x0,5 +tick,0x7f66177e45a9,271235551,0,0x0,5 +tick,0x7f66177e45a9,272236687,0,0x0,5 +tick,0x7f66177e45a9,273237836,0,0x0,5 +tick,0x7f66177e45a9,274238127,0,0x0,5 +tick,0x7f66177e45a9,275238741,0,0x0,5 +tick,0x7f66177e45a9,276239847,0,0x0,5 +tick,0x7f66177e45a9,277240952,0,0x0,5 +tick,0x7f66177e45a9,278242097,0,0x0,5 +tick,0x7f66177e45a9,279243311,0,0x0,5 +tick,0x7f66177e45a9,279301213,0,0x0,5 +tick,0xe02c677fa01,279301443,0,0x31534ff04189,0,0xe02c65e264e,0xe02c677e5e9,0xe02c677e1d7,0xe02c677e0b3,0xe02c677de41,0xe02c677dc1b,0xe02c677d87e,0xe02c677d5e5,0xe02c6772ce1,0xe02c677d41c,0xe02c677d103,0xe02c6770fa8,0xe02c677cfa7,0xe02c677cd3e,0xe02c6770909,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +tick,0x7f66177e45a9,279428795,0,0x0,5 +tick,0x7f66177e45a9,280244325,0,0x0,5 +tick,0x7f66177e45a9,281245493,0,0x0,5 +tick,0x7f66177e45a9,282246615,0,0x0,5 +tick,0x7f66177e45a9,283247733,0,0x0,5 +tick,0x7f66177e45a9,284248850,0,0x0,5 +tick,0x7f66177e45a9,285249965,0,0x0,5 +tick,0x7f66177e45a9,286250889,0,0x0,5 +tick,0x7f66177e45a9,287251523,0,0x0,5 +tick,0x7f66177e45a9,288252643,0,0x0,5 +tick,0x7f66177e45a9,289253741,0,0x0,5 +tick,0x7f66177e45a9,290254849,0,0x0,5 +tick,0x7f66177e45a9,291257090,0,0x0,5 +tick,0x7f66177e45a9,292258200,0,0x0,5 +tick,0x7f66177e45a9,293259303,0,0x0,5 +tick,0x7f66177e45a9,294260386,0,0x0,5 +tick,0x7f66177e45a9,294260413,0,0x0,5 +tick,0x7f66177e45a9,295261475,0,0x0,5 +tick,0x7f66177e45a9,296262653,0,0x0,5 +tick,0x7f66177e45a9,297263863,0,0x0,5 +tick,0x7f66177e45a9,298263590,0,0x0,5 +tick,0x7f66177e45a9,299264748,0,0x0,5 +tick,0x7f66177e45a9,300265840,0,0x0,5 +tick,0x7f66177e45a9,301266996,0,0x0,5 +tick,0xbb02b2,301267089,0,0xbb89c9,0,0xbba1d0,0xe02c66ac8ae,0xe02c668c0b9,0xe02c6699016,0xe02c6785fc8,0xe02c678a955,0xe02c677a9d8 +tick,0x7f66177e45a9,302268119,0,0x0,5 +tick,0x7f66177e45a9,303269322,0,0x0,5 +tick,0x7f66177e45a9,304270490,0,0x0,5 +tick,0x7f66177e45a9,305271266,0,0x0,5 +tick,0x7f66177e45a9,306272438,0,0x0,5 +tick,0x7f66177e45a9,307273346,0,0x0,5 +tick,0x7f66177e45a9,308274512,0,0x0,5 +tick,0x7f66177e45a9,308274553,0,0x0,5 +tick,0x7f66177e45a9,309275118,0,0x0,5 +tick,0x7f66177e45a9,310276298,0,0x0,5 +tick,0x7f66177e45a9,311277446,0,0x0,5 +tick,0x7f66177e45a9,312278599,0,0x0,5 +tick,0x7f66177e45a9,312278670,0,0x0,5 +tick,0x7f66177e45a9,313279785,0,0x0,5 +tick,0x7f66177e45a9,314280658,0,0x0,5 +tick,0x7f66177e45a9,315281597,0,0x0,5 +tick,0x7f66177e45a9,316282807,0,0x0,5 +tick,0xe02c67826c1,316282927,0,0x7fffc29527f8,0,0xe02c66ac406,0xe02c668c0b9,0xe02c6699016,0xe02c6785fc8,0xe02c678a955,0xe02c677a9d8 +tick,0x7f66177e45a9,317284939,0,0x0,5 +tick,0x7f66177e45a9,318286029,0,0x0,5 +tick,0x7f66177e45a9,319287007,0,0x0,5 +tick,0x7f66177e45a9,320287749,0,0x0,5 +tick,0x7f66177e45a9,321287071,0,0x0,5 +tick,0x7f66177e45a9,322288178,0,0x0,5 +tick,0x7f66177e45a9,323289286,0,0x0,5 +tick,0x7f66177e45a9,324290394,0,0x0,5 +tick,0x7f66177e45a9,324290437,0,0x0,5 +tick,0x7f66177e45a9,325291534,0,0x0,5 +tick,0x7f66177e45a9,326292656,0,0x0,5 +tick,0x7f66177e45a9,327293768,0,0x0,5 +tick,0x7f66177e45a9,328294875,0,0x0,5 +tick,0x7f66177e45a9,329296603,0,0x0,5 +tick,0x7f66177e45a9,330297703,0,0x0,5 +tick,0x7f66177e45a9,331298598,0,0x0,5 +tick,0x7f66177e45a9,331298631,0,0x0,5 +tick,0x7f66177e45a9,332299725,0,0x0,5 +tick,0x7f66177e45a9,333300808,0,0x0,5 +tick,0x7f66177e45a9,334301916,0,0x0,5 +tick,0xbe5ab1,334301952,0,0x0,3 +tick,0x7f66177e45a9,335304015,0,0x0,5 +tick,0x7f66177e45a9,336305141,0,0x0,5 +tick,0x7f66177e45a9,337306228,0,0x0,5 +tick,0x7f66177e45a9,338307354,0,0x0,5 +tick,0x7f66177e45a9,339237216,0,0x0,5 +tick,0xa37b85,339237821,1,0xe7bd40,4,0x93d1a0,0xe02c669d232,0xe02c669c2dc,0xe02c669ba85,0xe02c669b93e,0xe02c669b566,0xe02c669abc4,0xe02c669a891,0xe02c677e60d,0xe02c677e1d7,0xe02c677e0b3,0xe02c677de41,0xe02c677dc1b,0xe02c677d87e,0xe02c677d5e5,0xe02c6772ce1,0xe02c677d41c,0xe02c677d103,0xe02c6770fa8,0xe02c677cfa7,0xe02c677cd3e,0xe02c6770909,0xe02c676f27f,0xe02c676ec8f,0xe02c671ffef,0xe02c65241ba,0xe02c672f622,0xe02c672eff9,0xe02c672e779 +tick,0x7f66177e45a9,339307206,0,0x0,5 +tick,0x7f66177e45a9,340308322,0,0x0,5 +tick,0x7f66177e45a9,341309440,0,0x0,5 +tick,0x7f66177e45a9,342310682,0,0x0,5 +tick,0x7f66177e45a9,343311228,0,0x0,5 +tick,0x7f66177e45a9,344312348,0,0x0,5 +tick,0x7f66177e45a9,345313460,0,0x0,5 +tick,0x7f66177e45a9,346314575,0,0x0,5 +tick,0x7f66177e45a9,347315412,0,0x0,5 +tick,0x7f66177e45a9,348316564,0,0x0,5 +tick,0x7f66177e45a9,349317677,0,0x0,5 +tick,0x7f66177e45a9,350318781,0,0x0,5 +tick,0x7f66177e45a9,351319937,0,0x0,5 +tick,0x7f66177e45a9,352321067,0,0x0,5 +tick,0x7f66177e45a9,353322185,0,0x0,5 +tick,0x7f66177e45a9,354323396,0,0x0,5 +tick,0x7f66177e45a9,355324484,0,0x0,5 +tick,0x7f66177e45a9,356324646,0,0x0,5 +tick,0x7f66177e45a9,357325813,0,0x0,5 +tick,0xa8c9ea,357325852,0,0x7fffc2952700,0,0xcdc830,0xe02c6782723,0xe02c66ad4a9,0xe02c66ac406,0xe02c668c0b9,0xe02c6699016,0xe02c6785fc8,0xe02c678a955,0xe02c677a9d8 +tick,0x7f66177e45a9,358326904,0,0x0,5 +tick,0x7f66177e45a9,359328104,0,0x0,5 +tick,0x7f66177e45a9,360329239,0,0x0,5 +tick,0x7f66177e45a9,361329994,0,0x0,5 +tick,0x7f66177e45a9,362330444,0,0x0,5 +tick,0x7f66177e45a9,363331588,0,0x0,5 +tick,0x7f66177e45a9,364332686,0,0x0,5 +tick,0x7f66177e45a9,365333798,0,0x0,5 +tick,0x7f66177e45a9,366334946,0,0x0,5 +tick,0xbb95d8,366335131,0,0x3,0,0xbba1d0,0xe02c66ac8ae,0xe02c668c0b9,0xe02c6699016,0xe02c6785fc8,0xe02c678a955,0xe02c677a9d8 +tick,0x7f66177e45a9,367335661,0,0x0,5 +tick,0x7f66177e45a9,368336782,0,0x0,5 +tick,0x7f66177e45a9,369337918,0,0x0,5 +tick,0x7f66177e45a9,370339700,0,0x0,5 +tick,0x7f66177e45a9,371340929,0,0x0,5 +tick,0x7f66177e45a9,372342367,0,0x0,5 +tick,0x7f66177e45a9,373343559,0,0x0,5 +tick,0x8fca8a,373343594,0,0x0,4 +tick,0x7f66177e45a9,374344662,0,0x0,5 +tick,0xff0b41,374344714,0,0x0,4 +tick,0x7f66177e45a9,375345840,0,0x0,5 +tick,0x7f66177e45a9,376345970,0,0x0,5 +tick,0x7f66177e45a9,377346981,0,0x0,5 +tick,0x7f66177e45a9,378348087,0,0x0,5 +tick,0x7f66177e45a9,379349213,0,0x0,5 +tick,0x7f66177e45a9,380350328,0,0x0,5 +tick,0x7f66177e45a9,381350549,0,0x0,5 +tick,0x7f66177e45a9,382351661,0,0x0,5 +tick,0x7f66177e45a9,383352538,0,0x0,5 +tick,0x7f66177e45a9,384353079,0,0x0,5 +tick,0x7f66177e45a9,385354012,0,0x0,5 +tick,0x7f66177e45a9,386354263,0,0x0,5 +tick,0x7f66177e45a9,387355379,0,0x0,5 +tick,0x7f66177e45a9,388356110,0,0x0,5 +tick,0x7f66177e45a9,389356996,0,0x0,5 +tick,0x7f66177e45a9,390358153,0,0x0,5 +tick,0x7f66177e45a9,391359307,0,0x0,5 +tick,0x7f66177e45a9,392360481,0,0x0,5 +tick,0x7f66177e45a9,393361596,0,0x0,5 +tick,0x7f66177e45a9,394362720,0,0x0,5 +tick,0x7f66177e45a9,395362991,0,0x0,5 +tick,0x7f66177e45a9,395363148,0,0x0,5 +tick,0x7f66177e45a9,396364332,0,0x0,5 +tick,0x7f66177e45a9,397365426,0,0x0,5 +tick,0x7f66177e45a9,398366114,0,0x0,5 +tick,0x7f66177e45a9,399241933,0,0x0,5 +tick,0x7f66177e45a9,399366588,0,0x0,5 +tick,0x7f66177e45a9,400367142,0,0x0,5 +tick,0x7f66177e45a9,401368293,0,0x0,5 +tick,0x7f66177e45a9,402368949,0,0x0,5 +tick,0x7f66177e45a9,403370121,0,0x0,5 +tick,0xe02c640aa94,403370150,0,0x2efb89cd1f49,0 +tick,0x7f66177e45a9,404371272,0,0x0,5 +tick,0xe02c641ed58,404371330,0,0xe02c668c05d,0,0xe02c6699016,0xe02c6785fc8,0xe02c678a955,0xe02c677a9d8 +tick,0x7f66177e45a9,405372475,0,0x0,5 +tick,0x7f66177e45a9,406373622,0,0x0,5 +tick,0x7f66177e45a9,407373858,0,0x0,5 +tick,0x7f66177e45a9,408374664,0,0x0,5 +tick,0x7f66177e45a9,409375607,0,0x0,5 +tick,0x7f66177e45a9,410376786,0,0x0,5 +tick,0x7f66177e45a9,410376827,0,0x0,5 +tick,0x7f66177e45a9,411377949,0,0x0,5 +tick,0x7f66177e45a9,412379153,0,0x0,5 +tick,0xbe67f8,412379200,0,0x0,3 +tick,0x7f66177e45a9,413380389,0,0x0,5 +tick,0xbca6af,413380446,0,0x2de24a0,0,0xcb4a00,0xe02c6698e77,0xe02c6785fc8,0xe02c678a955,0xe02c677a9d8 +tick,0x7f66177e45a9,414381618,0,0x0,5 +tick,0x7f66177e45a9,415382811,0,0x0,5 +tick,0x7f66177e45a9,415382852,0,0x0,5 +tick,0x7f66177e45a9,416384014,0,0x0,5 +tick,0x7f66177e45a9,417385131,0,0x0,5 +tick,0xfe57ac,417385159,0,0x0,4 +tick,0x7f66177e45a9,418386286,0,0x0,5 +tick,0x7f66177e45a9,419386606,0,0x0,5 +tick,0x7f66177e45a9,420386900,0,0x0,5 +tick,0x7f66177e45a9,421389124,0,0x0,5 +tick,0x7f66177e45a9,422390076,0,0x0,5 +tick,0x7f66177e45a9,423391178,0,0x0,5 +tick,0x7f66177e45a9,424392364,0,0x0,5 +tick,0x7f66177e45a9,424392406,0,0x0,5 +tick,0x7f66177e45a9,425393494,0,0x0,5 +tick,0x7f66177e45a9,426393908,0,0x0,5 +tick,0x7f66177e45a9,426393988,0,0x0,5 +tick,0x7f66177e45a9,427395030,0,0x0,5 +tick,0x7f66177e45a9,428396252,0,0x0,5 +tick,0x7f66177e45a9,429397112,0,0x0,5 +tick,0x7f66177e45a9,430397837,0,0x0,5 +tick,0x7f66177e45a9,431398044,0,0x0,5 +tick,0x7f66177e45a9,432398338,0,0x0,5 +tick,0x8fced0,432398371,0,0x0,4 +tick,0x7f66177e45a9,433399434,0,0x0,5 +tick,0x7f66177e45a9,434399581,0,0x0,5 +tick,0x7f66177e45a9,434399615,0,0x0,5 +tick,0x7f66177e45a9,435400716,0,0x0,5 +tick,0x7f66177e45a9,436401780,0,0x0,5 +tick,0xe02c66ad452,436401844,0,0x31534ff04189,0,0xe02c66ac406,0xe02c668c0b9,0xe02c6699016,0xe02c6785fc8,0xe02c678a955,0xe02c677a9d8 +tick,0x7f66177e45a9,437402907,0,0x0,5 +tick,0x7f66177e45a9,438405110,0,0x0,5 +tick,0x7f66177e45a9,439406280,0,0x0,5 +tick,0x7f66177e45a9,440407009,0,0x0,5 +tick,0x7f66177e45a9,441407343,0,0x0,5 +tick,0x7f66177e45a9,442408605,0,0x0,5 +tick,0x7f66177e45a9,443409794,0,0x0,5 +tick,0x7f66177e45a9,444410998,0,0x0,5 +tick,0x7f66177e45a9,445412178,0,0x0,5 +tick,0x7f66177e45a9,446412870,0,0x0,5 +tick,0x7f66177e45a9,447413043,0,0x0,5 +tick,0x7f66177e45a9,448414233,0,0x0,5 +tick,0x7f66177e45a9,449415403,0,0x0,5 +tick,0x7f66177e45a9,449415458,0,0x0,5 +tick,0x7f66177e45a9,450416601,0,0x0,5 +tick,0x7f66177e45a9,450416657,0,0x0,5 +tick,0x7f66177e45a9,451417380,0,0x0,5 +tick,0x7f66177e45a9,452418544,0,0x0,5 +tick,0x7f66177e45a9,453419077,0,0x0,5 +tick,0x7f66177e45a9,454420246,0,0x0,5 diff --git a/package.json b/package.json index 69a5959a8..c24644ad1 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "eventemitter2": "0.4.14", "express": "^4.13.3", "jfs": "^0.2.6", + "mocha": "^2.4.5", "mustache": "^2.2.1", "request": "^2.67.0", "ws": "^1.0.0" @@ -21,6 +22,9 @@ "tape": "^4.4.0", "winston": "^2.1.1" }, + "scripts": { + "test": "mocha tests/*.js" + }, "repository": { "type": "git", "url": "https://github.com/juhovan/botkit.git" diff --git a/processed.txt b/processed.txt new file mode 100644 index 000000000..d772888bc --- /dev/null +++ b/processed.txt @@ -0,0 +1,67 @@ +info: ** No persistent storage method specified! Data may be lost when process shuts down. +info: ** Setting up custom handlers for processing Slack messages +info: ** API CALL: https://slack.com/api/rtm.start +debug: rtm.start { no_unreads: true, + simple_latest: true, + token: 'xoxb-22460101107-rKWRzIGDwhDvEUKGCj6sxZh4' } +debug: Got response null {"ok":true,"self":{"id":"U0NDJ2Z35","name":"rgb-bot","prefs":{"highlight_words":"","user_colors":"","color_names_in_list":true,"growls_enabled":true,"tz":null,"push_dm_alert":true,"push_mention_alert":true,"msg_replies":"{ \"flexpane\":false }","push_everything":true,"push_idle_wait":2,"push_sound":"b2.mp3","push_loud_channels":"","push_mention_channels":"","push_loud_channels_set":"","email_alerts":"instant","email_alerts_sleep_until":0,"email_misc":true,"email_weekly":true,"welcome_message_hidden":false,"all_channels_loud":true,"loud_channels":"","never_channels":"","loud_channels_set":"","show_member_presence":true,"search_sort":"timestamp","expand_inline_imgs":true,"expand_internal_inline_imgs":true,"expand_snippets":false,"posts_formatting_guide":true,"seen_live_support_popup":false,"seen_welcome_2":false,"seen_ssb_prompt":false,"seen_spaces_new_xp_tooltip":false,"spaces_new_xp_banner_dismissed":false,"search_only_my_channels":false,"emoji_mode":"default","emoji_use":"","has_invited":false,"has_uploaded":false,"has_created_channel":false,"search_exclude_channels":"","messages_theme":"default","webapp_spellcheck":true,"no_joined_overlays":false,"no_created_overlays":false,"dropbox_enabled":false,"seen_domain_invite_reminder":false,"seen_member_invite_reminder":false,"mute_sounds":false,"arrow_history":false,"tab_ui_return_selects":true,"obey_inline_img_limit":true,"new_msg_snd":"knock_brush.mp3","collapsible":false,"collapsible_by_click":true,"require_at":false,"ssb_space_window":"","mac_ssb_bounce":"","mac_ssb_bullet":true,"expand_non_media_attachments":true,"show_typing":true,"pagekeys_handled":true,"last_snippet_type":"","display_real_names_override":0,"time24":false,"enter_is_special_in_tbt":false,"graphic_emoticons":false,"convert_emoticons":true,"autoplay_chat_sounds":true,"ss_emojis":true,"sidebar_behavior":"","seen_onboarding_start":false,"onboarding_cancelled":false,"seen_onboarding_slackbot_conversation":false,"seen_onboarding_channels":false,"seen_onboarding_direct_messages":false,"seen_onboarding_invites":false,"seen_onboarding_search":false,"seen_onboarding_recent_mentions":false,"seen_onboarding_starred_items":false,"seen_onboarding_private_groups":false,"onboarding_slackbot_conversation_step":0,"dnd_enabled":false,"dnd_start_hour":"22:00","dnd_end_hour":"08:00","mark_msgs_read_immediately":true,"start_scroll_at_oldest":true,"snippet_editor_wrap_long_lines":false,"ls_disabled":false,"sidebar_theme":"default","sidebar_theme_custom_values":"","f_key_search":false,"k_key_omnibox":true,"speak_growls":false,"mac_speak_voice":"com.apple.speech.synthesis.voice.Alex","mac_speak_speed":250,"comma_key_prefs":false,"at_channel_suppressed_channels":"","push_at_channel_suppressed_channels":"","prompted_for_email_disabling":false,"full_text_extracts":false,"no_text_in_notifications":false,"muted_channels":"","no_macssb1_banner":false,"no_macssb2_banner":false,"no_winssb1_banner":false,"no_omnibox_in_channels":false,"k_key_omnibox_auto_hide_count":0,"hide_user_group_info_pane":false,"mentions_exclude_at_user_groups":false,"privacy_policy_seen":true,"search_exclude_bots":false,"load_lato_2":false,"fuller_timestamps":false,"last_seen_at_channel_warning":0,"flex_resize_window":false,"msg_preview":false,"msg_preview_displaces":true,"msg_preview_persistent":true,"emoji_autocomplete_big":false,"winssb_run_from_tray":true,"winssb_window_flash_behavior":"idle","two_factor_auth_enabled":false,"two_factor_type":null,"two_factor_backup_type":null,"mentions_exclude_at_channels":true,"confirm_clear_all_unreads":true,"confirm_user_marked_away":true,"box_enabled":false,"seen_single_emoji_msg":false,"confirm_sh_call_start":true,"preferred_skin_tone":"","show_all_skin_tones":false,"separate_private_channels":false,"whats_new_read":1456134643,"hotness":false,"frecency_jumper":"","jumbomoji":true,"newxp_seen_last_message":0},"created":1456134643,"manual_presence":"active"},"team":{"id":"T0NDCUEBZ","name":"SDT_Warriors","email_domain":"","domain":"sdtwarriors","msg_edit_window_mins":-1,"prefs":{"default_channels":["C0ND76DLL","C0NDD531Q"],"invites_only_admins":false,"hide_referers":true,"msg_edit_window_mins":-1,"allow_message_deletion":true,"display_real_names":false,"who_can_at_everyone":"regular","who_can_at_channel":"ra","who_can_create_channels":"regular","who_can_create_shared_channels":"admin","who_can_archive_channels":"regular","who_can_create_groups":"ra","who_can_post_general":"ra","who_can_kick_channels":"admin","who_can_kick_groups":"regular","retention_type":0,"retention_duration":0,"group_retention_type":0,"group_retention_duration":0,"dm_retention_type":0,"dm_retention_duration":0,"file_retention_duration":0,"file_retention_type":0,"allow_retention_override":true,"require_at_for_mention":false,"compliance_export_start":0,"warn_before_at_channel":"always","disallow_public_file_urls":false,"who_can_create_delete_user_groups":"admin","who_can_edit_user_groups":"admin","who_can_change_team_profile":"admin","allow_shared_channels":false,"who_has_team_visibility":"ra","disable_file_uploads":"allow_all","dnd_enabled":true,"dnd_start_hour":"22:00","dnd_end_hour":"08:00","auth_mode":"normal","who_can_manage_integrations":{"type":["regular"]}},"icon":{"image_34":"https:\/\/slack.global.ssl.fastly.net\/66f9\/img\/avatars-teams\/ava_0023-34.png","image_44":"https:\/\/slack.global.ssl.fastly.net\/b3b7\/img\/avatars-teams\/ava_0023-44.png","image_68":"https:\/\/slack.global.ssl.fastly.net\/66f9\/img\/avatars-teams\/ava_0023-68.png","image_88":"https:\/\/slack.global.ssl.fastly.net\/66f9\/img\/avatars-teams\/ava_0023-88.png","image_102":"https:\/\/slack.global.ssl.fastly.net\/66f9\/img\/avatars-teams\/ava_0023-102.png","image_132":"https:\/\/slack.global.ssl.fastly.net\/66f9\/img\/avatars-teams\/ava_0023-132.png","image_default":true},"over_storage_limit":false,"plan":"","over_integrations_limit":true},"latest_event_ts":"1456240706.000000","channels":[{"id":"C0ND76DLL","name":"general","is_channel":true,"created":1456131434,"creator":"U0NDCUEF9","is_archived":false,"is_general":true,"has_pins":false,"is_member":true,"last_read":"1456134935.000021","latest":"1456233072.000077","members":["U0ND8MZL4","U0NDASDDK","U0NDCUEF9","U0NDDP86B","U0NDDTVT3","U0NDF4MA8","U0NDJ2Z35","U0NDLMAMQ","U0NDNL4P2","U0NDQF8KG"],"topic":{"value":"Company-wide announcements and work-based matters","creator":"","last_set":0},"purpose":{"value":"This channel is for team-wide communication and announcements. All team members are in this channel.","creator":"","last_set":0}},{"id":"C0NDEE4QL","name":"github_yo","is_channel":true,"created":1456134156,"creator":"U0NDCUEF9","is_archived":false,"is_general":false,"has_pins":false,"is_member":false},{"id":"C0NDD531Q","name":"random","is_channel":true,"created":1456131434,"creator":"U0NDCUEF9","is_archived":false,"is_general":false,"has_pins":false,"is_member":false}],"groups":[],"ims":[{"id":"D0NDM4887","is_im":true,"user":"USLACKBOT","created":1456134643,"has_pins":false,"last_read":"0000000000.000000","latest":null,"is_open":true},{"id":"D0NDMTHBQ","is_im":true,"user":"U0ND8MZL4","created":1456134644,"has_pins":false,"last_read":"0000000000.000000","latest":null,"is_open":true},{"id":"D0NDM0BQR","is_im":true,"user":"U0NDASDDK","created":1456134644,"has_pins":false,"last_read":"0000000000.000000","latest":null,"is_open":true},{"id":"D0NDMTH70","is_im":true,"user":"U0NDCUEF9","created":1456134644,"has_pins":false,"last_read":"0000000000.000000","latest":"1456234146.000272","is_open":true},{"id":"D0NDM9N58","is_im":true,"user":"U0NDDP86B","created":1456134644,"has_pins":false,"last_read":"0000000000.000000","latest":"1456218980.000002","is_open":true},{"id":"D0NDFB5MJ","is_im":true,"user":"U0NDDTVT3","created":1456134644,"has_pins":false,"last_read":"0000000000.000000","latest":null,"is_open":true}],"cache_ts":1456241306,"subteams":{"self":[],"all":[]},"dnd":{"dnd_enabled":false,"next_dnd_start_ts":1,"next_dnd_end_ts":1,"snooze_enabled":false},"users":[{"id":"U0NDNL4P2","team_id":"T0NDCUEBZ","name":"amritbot","deleted":false,"status":null,"color":"5b89d5","real_name":"","tz":null,"tz_label":"Pacific Standard Time","tz_offset":-28800,"profile":{"bot_id":"B0NDNL4HE","api_app_id":"","avatar_hash":"a229cc438ccf","image_24":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22461754853_a229cc438ccf87a19a9e_24.png","image_32":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22461754853_a229cc438ccf87a19a9e_32.png","image_48":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22461754853_a229cc438ccf87a19a9e_48.png","image_72":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22461754853_a229cc438ccf87a19a9e_48.png","image_192":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22461754853_a229cc438ccf87a19a9e_48.png","image_512":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22461754853_a229cc438ccf87a19a9e_48.png","image_1024":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22461754853_a229cc438ccf87a19a9e_48.png","image_original":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22461754853_a229cc438ccf87a19a9e_original.png","real_name":"","real_name_normalized":"","fields":null},"is_admin":false,"is_owner":false,"is_primary_owner":false,"is_restricted":false,"is_ultra_restricted":false,"is_bot":true,"presence":"away"},{"id":"U0NDASDDK","team_id":"T0NDCUEBZ","name":"amritg","deleted":false,"status":null,"color":"3c989f","real_name":"","tz":"EET","tz_label":"Eastern European Time","tz_offset":7200,"profile":{"avatar_hash":"gcf08f54e256","real_name":"","real_name_normalized":"","email":"amrit.gautam@metropolia.fi","image_24":"https:\/\/secure.gravatar.com\/avatar\/cf08f54e2567d105c154bd70c85cf7d9.jpg?s=24&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0008-24.png","image_32":"https:\/\/secure.gravatar.com\/avatar\/cf08f54e2567d105c154bd70c85cf7d9.jpg?s=32&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0008-32.png","image_48":"https:\/\/secure.gravatar.com\/avatar\/cf08f54e2567d105c154bd70c85cf7d9.jpg?s=48&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0008-48.png","image_72":"https:\/\/secure.gravatar.com\/avatar\/cf08f54e2567d105c154bd70c85cf7d9.jpg?s=72&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0008-72.png","image_192":"https:\/\/secure.gravatar.com\/avatar\/cf08f54e2567d105c154bd70c85cf7d9.jpg?s=192&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F7fa9%2Fimg%2Favatars%2Fava_0008-192.png","image_512":"https:\/\/secure.gravatar.com\/avatar\/cf08f54e2567d105c154bd70c85cf7d9.jpg?s=512&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F7fa9%2Fimg%2Favatars%2Fava_0008-512.png","fields":null},"is_admin":false,"is_owner":false,"is_primary_owner":false,"is_restricted":false,"is_ultra_restricted":false,"is_bot":false,"presence":"away"},{"id":"U0ND8MZL4","team_id":"T0NDCUEBZ","name":"georgi","deleted":false,"status":null,"color":"674b1b","real_name":"","tz":"EET","tz_label":"Eastern European Time","tz_offset":7200,"profile":{"avatar_hash":"gdfd786065fa","real_name":"","real_name_normalized":"","email":"georgiyanev.gy@gmail.com","image_24":"https:\/\/secure.gravatar.com\/avatar\/dfd786065fa7b9a03e43c09248dc36f7.jpg?s=24&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0000-24.png","image_32":"https:\/\/secure.gravatar.com\/avatar\/dfd786065fa7b9a03e43c09248dc36f7.jpg?s=32&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0000-32.png","image_48":"https:\/\/secure.gravatar.com\/avatar\/dfd786065fa7b9a03e43c09248dc36f7.jpg?s=48&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0000-48.png","image_72":"https:\/\/secure.gravatar.com\/avatar\/dfd786065fa7b9a03e43c09248dc36f7.jpg?s=72&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0000-72.png","image_192":"https:\/\/secure.gravatar.com\/avatar\/dfd786065fa7b9a03e43c09248dc36f7.jpg?s=192&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F7fa9%2Fimg%2Favatars%2Fava_0000-192.png","image_512":"https:\/\/secure.gravatar.com\/avatar\/dfd786065fa7b9a03e43c09248dc36f7.jpg?s=512&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F7fa9%2Fimg%2Favatars%2Fava_0000-512.png","fields":null},"is_admin":false,"is_owner":false,"is_primary_owner":false,"is_restricted":false,"is_ultra_restricted":false,"is_bot":false,"presence":"away"},{"id":"U0NDF4MA8","team_id":"T0NDCUEBZ","name":"georgi-bot","deleted":false,"status":null,"color":"e0a729","real_name":"","tz":null,"tz_label":"Pacific Standard Time","tz_offset":-28800,"profile":{"bot_id":"B0NDLT4T1","api_app_id":"","avatar_hash":"c2e9b6c9eaf7","image_24":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463106722_c2e9b6c9eaf70fcc1e3f_24.png","image_32":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463106722_c2e9b6c9eaf70fcc1e3f_32.png","image_48":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463106722_c2e9b6c9eaf70fcc1e3f_48.png","image_72":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463106722_c2e9b6c9eaf70fcc1e3f_72.png","image_192":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463106722_c2e9b6c9eaf70fcc1e3f_192.png","image_512":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463106722_c2e9b6c9eaf70fcc1e3f_512.png","image_1024":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463106722_c2e9b6c9eaf70fcc1e3f_512.png","image_original":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463106722_c2e9b6c9eaf70fcc1e3f_original.png","title":"Hanging and chillaxin","real_name":"","real_name_normalized":"","fields":null},"is_admin":false,"is_owner":false,"is_primary_owner":false,"is_restricted":false,"is_ultra_restricted":false,"is_bot":true,"presence":"away"},{"id":"U0NDDTVT3","team_id":"T0NDCUEBZ","name":"jonnie","deleted":false,"status":null,"color":"e7392d","real_name":"","tz":"EET","tz_label":"Eastern European Time","tz_offset":7200,"profile":{"avatar_hash":"gd2a0d141be9","real_name":"","real_name_normalized":"","email":"kayhty@windowslive.com","image_24":"https:\/\/secure.gravatar.com\/avatar\/d2a0d141be9d7c47f7c3353833e0430e.jpg?s=24&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0005-24.png","image_32":"https:\/\/secure.gravatar.com\/avatar\/d2a0d141be9d7c47f7c3353833e0430e.jpg?s=32&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0005-32.png","image_48":"https:\/\/secure.gravatar.com\/avatar\/d2a0d141be9d7c47f7c3353833e0430e.jpg?s=48&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0005-48.png","image_72":"https:\/\/secure.gravatar.com\/avatar\/d2a0d141be9d7c47f7c3353833e0430e.jpg?s=72&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0005-72.png","image_192":"https:\/\/secure.gravatar.com\/avatar\/d2a0d141be9d7c47f7c3353833e0430e.jpg?s=192&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F7fa9%2Fimg%2Favatars%2Fava_0005-192.png","image_512":"https:\/\/secure.gravatar.com\/avatar\/d2a0d141be9d7c47f7c3353833e0430e.jpg?s=512&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F7fa9%2Fimg%2Favatars%2Fava_0005-512.png","fields":null},"is_admin":false,"is_owner":false,"is_primary_owner":false,"is_restricted":false,"is_ultra_restricted":false,"is_bot":false,"presence":"away"},{"id":"U0NDQF8KG","team_id":"T0NDCUEBZ","name":"newbot","deleted":false,"status":null,"color":"2b6836","real_name":"","tz":null,"tz_label":"Pacific Standard Time","tz_offset":-28800,"profile":{"bot_id":"B0NDPM9V5","api_app_id":"","avatar_hash":"ae12ac8c06e8","image_24":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22462695939_ae12ac8c06e87282cfe7_24.png","image_32":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22462695939_ae12ac8c06e87282cfe7_32.png","image_48":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22462695939_ae12ac8c06e87282cfe7_48.png","image_72":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22462695939_ae12ac8c06e87282cfe7_72.png","image_192":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22462695939_ae12ac8c06e87282cfe7_192.png","image_512":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22462695939_ae12ac8c06e87282cfe7_512.png","image_1024":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22462695939_ae12ac8c06e87282cfe7_512.png","image_original":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22462695939_ae12ac8c06e87282cfe7_original.png","real_name":"","real_name_normalized":"","fields":null},"is_admin":false,"is_owner":false,"is_primary_owner":false,"is_restricted":false,"is_ultra_restricted":false,"is_bot":true,"presence":"away"},{"id":"U0NDJ2Z35","team_id":"T0NDCUEBZ","name":"rgb-bot","deleted":false,"status":null,"color":"684b6c","real_name":"Raghib Hasan","tz":null,"tz_label":"Pacific Standard Time","tz_offset":-28800,"profile":{"bot_id":"B0NDFB58U","api_app_id":"","avatar_hash":"d7d9fd25c86a","image_24":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22457424852_d7d9fd25c86aead23663_24.png","image_32":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22457424852_d7d9fd25c86aead23663_32.png","image_48":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22457424852_d7d9fd25c86aead23663_48.png","image_72":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22457424852_d7d9fd25c86aead23663_48.png","image_192":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22457424852_d7d9fd25c86aead23663_48.png","image_512":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22457424852_d7d9fd25c86aead23663_48.png","image_1024":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22457424852_d7d9fd25c86aead23663_48.png","image_original":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22457424852_d7d9fd25c86aead23663_original.png","first_name":"Raghib","last_name":"Hasan","title":"noting...pointless crap","real_name":"Raghib Hasan","real_name_normalized":"Raghib Hasan","fields":null},"is_admin":false,"is_owner":false,"is_primary_owner":false,"is_restricted":false,"is_ultra_restricted":false,"is_bot":true,"presence":"away"},{"id":"U0NDCUEF9","team_id":"T0NDCUEBZ","name":"rgbm21","deleted":false,"status":null,"color":"9f69e7","real_name":"","tz":"EET","tz_label":"Eastern European Time","tz_offset":7200,"profile":{"avatar_hash":"g68ce2876d1f","real_name":"","real_name_normalized":"","email":"raghibmidhat@gmail.com","image_24":"https:\/\/secure.gravatar.com\/avatar\/68ce2876d1f8d4c7f83ea8d2bf9d73b5.jpg?s=24&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0000-24.png","image_32":"https:\/\/secure.gravatar.com\/avatar\/68ce2876d1f8d4c7f83ea8d2bf9d73b5.jpg?s=32&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0000-32.png","image_48":"https:\/\/secure.gravatar.com\/avatar\/68ce2876d1f8d4c7f83ea8d2bf9d73b5.jpg?s=48&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0000-48.png","image_72":"https:\/\/secure.gravatar.com\/avatar\/68ce2876d1f8d4c7f83ea8d2bf9d73b5.jpg?s=72&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0000-72.png","image_192":"https:\/\/secure.gravatar.com\/avatar\/68ce2876d1f8d4c7f83ea8d2bf9d73b5.jpg?s=192&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F7fa9%2Fimg%2Favatars%2Fava_0000-192.png","image_512":"https:\/\/secure.gravatar.com\/avatar\/68ce2876d1f8d4c7f83ea8d2bf9d73b5.jpg?s=512&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F7fa9%2Fimg%2Favatars%2Fava_0000-512.png","fields":null},"is_admin":true,"is_owner":true,"is_primary_owner":true,"is_restricted":false,"is_ultra_restricted":false,"is_bot":false,"presence":"away"},{"id":"U0NDLMAMQ","team_id":"T0NDCUEBZ","name":"shittybot","deleted":false,"status":null,"color":"e96699","real_name":"","tz":null,"tz_label":"Pacific Standard Time","tz_offset":-28800,"profile":{"bot_id":"B0NDLMAAW","api_app_id":"","avatar_hash":"88a30a7f6c69","image_24":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463816117_88a30a7f6c695c06074b_24.jpg","image_32":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463816117_88a30a7f6c695c06074b_32.jpg","image_48":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463816117_88a30a7f6c695c06074b_48.jpg","image_72":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463816117_88a30a7f6c695c06074b_72.jpg","image_192":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463816117_88a30a7f6c695c06074b_192.jpg","image_512":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463816117_88a30a7f6c695c06074b_192.jpg","image_1024":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463816117_88a30a7f6c695c06074b_192.jpg","image_original":"https:\/\/avatars.slack-edge.com\/2016-02-22\/22463816117_88a30a7f6c695c06074b_original.jpg","real_name":"","real_name_normalized":"","fields":null},"is_admin":false,"is_owner":false,"is_primary_owner":false,"is_restricted":false,"is_ultra_restricted":false,"is_bot":true,"presence":"away"},{"id":"U0NDDP86B","team_id":"T0NDCUEBZ","name":"sm0kersneverdie","deleted":false,"status":null,"color":"4bbe2e","real_name":"","tz":"EET","tz_label":"Eastern European Time","tz_offset":7200,"profile":{"avatar_hash":"g347d159156c","real_name":"","real_name_normalized":"","email":"saugat.awale@gmail.com","image_24":"https:\/\/secure.gravatar.com\/avatar\/347d159156c248cdf78b74f1798dcaa3.jpg?s=24&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0006-24.png","image_32":"https:\/\/secure.gravatar.com\/avatar\/347d159156c248cdf78b74f1798dcaa3.jpg?s=32&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0006-32.png","image_48":"https:\/\/secure.gravatar.com\/avatar\/347d159156c248cdf78b74f1798dcaa3.jpg?s=48&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0006-48.png","image_72":"https:\/\/secure.gravatar.com\/avatar\/347d159156c248cdf78b74f1798dcaa3.jpg?s=72&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F66f9%2Fimg%2Favatars%2Fava_0006-72.png","image_192":"https:\/\/secure.gravatar.com\/avatar\/347d159156c248cdf78b74f1798dcaa3.jpg?s=192&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F7fa9%2Fimg%2Favatars%2Fava_0006-192.png","image_512":"https:\/\/secure.gravatar.com\/avatar\/347d159156c248cdf78b74f1798dcaa3.jpg?s=512&d=https%3A%2F%2Fslack.global.ssl.fastly.net%2F7fa9%2Fimg%2Favatars%2Fava_0006-512.png","fields":null},"is_admin":false,"is_owner":false,"is_primary_owner":false,"is_restricted":false,"is_ultra_restricted":false,"is_bot":false,"presence":"away"},{"id":"USLACKBOT","team_id":"T0NDCUEBZ","name":"slackbot","deleted":false,"status":null,"color":"757575","real_name":"slackbot","tz":null,"tz_label":"Pacific Standard Time","tz_offset":-28800,"profile":{"first_name":"slackbot","last_name":"","image_24":"https:\/\/slack.global.ssl.fastly.net\/0180\/img\/slackbot_24.png","image_32":"https:\/\/slack.global.ssl.fastly.net\/66f9\/img\/slackbot_32.png","image_48":"https:\/\/slack.global.ssl.fastly.net\/66f9\/img\/slackbot_48.png","image_72":"https:\/\/slack.global.ssl.fastly.net\/0180\/img\/slackbot_72.png","image_192":"https:\/\/slack.global.ssl.fastly.net\/66f9\/img\/slackbot_192.png","image_512":"https:\/\/slack.global.ssl.fastly.net\/7fa9\/img\/slackbot_512.png","avatar_hash":"sv1444671949","real_name":"slackbot","real_name_normalized":"slackbot","email":null,"fields":null},"is_admin":false,"is_owner":false,"is_primary_owner":false,"is_restricted":false,"is_ultra_restricted":false,"is_bot":false,"presence":"active"}],"cache_version":"v13-tiger","cache_ts_version":"v1-cat","bots":[{"id":"B0NDCR99P","deleted":false,"name":"gdrive"},{"id":"B0NDFB58U","deleted":false,"name":"bot","icons":{"image_36":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_36.png","image_48":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_48.png","image_72":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_72.png"}},{"id":"B0NDL9XQA","deleted":false,"name":"github","icons":{"image_36":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/github\/assets\/service_36.png","image_48":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/github\/assets\/service_48.png","image_72":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/github\/assets\/service_72.png"}},{"id":"B0NDLMAAW","deleted":false,"name":"bot","icons":{"image_36":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_36.png","image_48":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_48.png","image_72":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_72.png"}},{"id":"B0NDLT4T1","deleted":false,"name":"bot","icons":{"image_36":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_36.png","image_48":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_48.png","image_72":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_72.png"}},{"id":"B0NDM1AF8","deleted":false,"name":"github","icons":{"emoji":":+1:","image_64":"https:\/\/slack.global.ssl.fastly.net\/d4bf\/img\/emoji_2015_2\/apple\/1f44d.png"}},{"id":"B0NDNL4HE","deleted":false,"name":"bot","icons":{"image_36":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_36.png","image_48":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_48.png","image_72":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_72.png"}},{"id":"B0NDPM9V5","deleted":false,"name":"bot","icons":{"image_36":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_36.png","image_48":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_48.png","image_72":"https:\/\/slack.global.ssl.fastly.net\/12b5a\/plugins\/bot\/assets\/service_72.png"}}],"url":"wss:\/\/ms628.slack-msgs.com\/websocket\/7lTbeWMn3GbFKYZeh0AUwvHdn4eR3FlFNCxw5svbIUMaqMcWrpXeXTJ7q2QoOttR6S6zO7gJzDOZlgNwtj69TpZqnaoEYxC9bquILzb6gO8EkxrJ4RLqL6m8HUC85GWwDIsIo96isfqlWkjKyYKcoQ=="} +notice: ** BOT ID: rgb-bot ...attempting to connect to RTM! +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO undefined undefined +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO U0NDJ2Z35 undefined +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO undefined undefined +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO undefined undefined +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO U0NDCUEF9 undefined +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO U0NDCUEF9 D0NDMTH70 +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO U0NDCUEF9 D0NDMTH70 +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: I HEARD hi +info: ** API CALL: https://slack.com/api/reactions.add +debug: reactions.add { timestamp: '1456241413.000002', + channel: 'D0NDMTH70', + name: 'robot_face', + token: 'xoxb-22460101107-rKWRzIGDwhDvEUKGCj6sxZh4' } +debug: SAY { text: 'Hello.', channel: 'D0NDMTH70' } +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO undefined undefined +debug: Got response null {"ok":true} +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO U0NDJ2Z35 undefined +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO U0NDCUEF9 D0NDMTH70 +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO U0NDCUEF9 D0NDMTH70 +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO U0NDCUEF9 D0NDMTH70 +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO U0NDCUEF9 D0NDMTH70 +debug: DEFAULT SLACK MSG RECEIVED RESPONDER +debug: I HEARD hello +info: ** API CALL: https://slack.com/api/reactions.add +debug: reactions.add { timestamp: '1456241429.000006', + channel: 'D0NDMTH70', + name: 'robot_face', + token: 'xoxb-22460101107-rKWRzIGDwhDvEUKGCj6sxZh4' } +debug: SAY { text: 'Hello.', channel: 'D0NDMTH70' } +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO undefined undefined +debug: Got response null {"ok":true} +debug: RECEIVED MESSAGE +debug: CUSTOM FIND CONVO U0NDJ2Z35 undefined +debug: DEFAULT SLACK MSG RECEIVED RESPONDER diff --git a/readme.md b/readme.md index 60fa8dc18..1a44e4c88 100755 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -# [Botkit](http://howdy.ai/botkit) - Best course ever! +# [Botkit](http://howdy.ai/botkit) - Best course ever! ![Travis](https://travis-ci.org/rgbm21/botkit.svg?branch=master) Botkit designed to ease the process of designing and running useful, creative or just plain weird bots (and other types of applications) that live inside [Slack](http://slack.com)! diff --git a/tests/botmathTest.js b/tests/botmathTest.js new file mode 100644 index 000000000..6dc824079 --- /dev/null +++ b/tests/botmathTest.js @@ -0,0 +1,32 @@ +var assert = require('assert'); +var bothmath = require('../botmath.js') + +describe('botmath', function() { + describe('sum', function() { + it('should return sum of 2 values', function() { + assert.equal(-2, bothmath.sum(-2, 0)); + assert.equal(1, bothmath.sum(-1, 2)); + assert.equal(6.5, bothmath.sum(3.5, 3)); + assert.equal(1337, bothmath.sum(1338.2, -1.2)); + }) + it('should return NaN if both values are not numeric', function() { + assert.ok(isNaN(bothmath.sum(1335, 'a'))); + }); + }); + + describe('isPrime', function() { + it('should return true if Prime', function() { + assert.equal(true, bothmath.isPrime(5)); + }); + it('should return false if not Prime', function() { + assert.equal(false, bothmath.isPrime(1)); + }); + }); + + describe('calculateFibonacciUpto', function() { + it('should return an array of result', function() { + assert.deepEqual([1, 1, 2, 3, 5, 8], bothmath.calculateFibonacciUpto(8)); + }); + }); + +}); diff --git a/tests/test.js b/tests/test.js new file mode 100644 index 000000000..b2d23698f --- /dev/null +++ b/tests/test.js @@ -0,0 +1,9 @@ +var assert = require('assert'); +describe('Array', function() { + describe('#indexOf()', function () { + it('should return -1 when the value is not present', function () { + assert.equal(-1, [1,2,3].indexOf(5)); + assert.equal(-1, [1,2,3].indexOf(0)); + }); + }); +});