browserstack-node-sdk 1.21.1 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ats/src/CFTemplates/aws-eks-cluster-dep.yaml +202 -0
- package/ats/src/CFTemplates/s3-create.yaml +20 -0
- package/ats/src/CFTemplates/subnet-create.yaml +85 -0
- package/ats/src/CFTemplates/subnet-import.yaml +15 -0
- package/ats/src/CFTemplates/vpc-create.yaml +27 -0
- package/ats/src/CFTemplates/vpc-import.yaml +5 -0
- package/ats/src/commands/configure.js +1 -0
- package/ats/src/commands/connect.js +1 -0
- package/ats/src/commands/connect_commands/grid.js +1 -0
- package/ats/src/commands/create.js +1 -0
- package/ats/src/commands/create_commands/grid.js +1 -0
- package/ats/src/commands/delete.js +1 -0
- package/ats/src/commands/delete_commands/grid.js +1 -0
- package/ats/src/commands/init.js +1 -0
- package/ats/src/commands/list.js +1 -0
- package/ats/src/commands/list_commands/grid_profiles.js +1 -0
- package/ats/src/commands/list_commands/grids.js +1 -0
- package/ats/src/config/constants.js +1 -0
- package/ats/src/config/instanceTypes.json +554 -0
- package/ats/src/config/logger.js +1 -0
- package/ats/src/index.js +2 -0
- package/ats/src/templates/KubeConfigTemplate.yaml +33 -0
- package/ats/src/templates/autoscaler/cluster-role-binding.yaml +15 -0
- package/ats/src/templates/autoscaler/clusterrole.yaml +56 -0
- package/ats/src/templates/autoscaler/deployment.yaml +66 -0
- package/ats/src/templates/autoscaler/role-binding.yaml +16 -0
- package/ats/src/templates/autoscaler/role.yaml +17 -0
- package/ats/src/templates/autoscaler/sa.yaml +10 -0
- package/ats/src/templates/autoscaler-role-creation.yaml +185 -0
- package/ats/src/templates/aws-auth-cm.yaml +13 -0
- package/ats/src/templates/cluster-role-binding.yaml +12 -0
- package/ats/src/templates/hub-deployment.yaml +76 -0
- package/ats/src/templates/hub-service.yaml +26 -0
- package/ats/src/utils/AWSUtils.js +1 -0
- package/ats/src/utils/createAutoscalerStack.js +1 -0
- package/ats/src/utils/createClusterStack.js +1 -0
- package/ats/src/utils/createk8sClient.js +1 -0
- package/ats/src/utils/deleteStack.js +1 -0
- package/ats/src/utils/gridComponents.js +1 -0
- package/ats/src/utils/hstUtils.js +1 -0
- package/ats/src/utils/instrumentationUtils.js +1 -0
- package/ats/src/utils/userInput.js +1 -0
- package/ats/src/utils/utilityMethods.js +1 -0
- package/ats/src/utils/webSocketUtils.js +1 -0
- package/package.json +1 -1
- package/src/bin/codeceptjs/BrowserStackPlugin.js +1 -1
- package/src/bin/codeceptjs/command.js +1 -1
- package/src/bin/cucumber-js/command.js +1 -1
- package/src/bin/cucumber-js/formatter/custom_formatter.js +1 -1
- package/src/bin/cucumber-js/formatter/custom_formatter_old_versions.js +1 -1
- package/src/bin/cucumber-js/test.setup.js +1 -1
- package/src/bin/cucumber-js/test_old.setup.js +1 -1
- package/src/bin/cucumber-js/timeout.setup.js +1 -1
- package/src/bin/jest/command.js +1 -1
- package/src/bin/jest/customEnvironment.js +1 -1
- package/src/bin/jest/customTestRunnerTemplate.js +1 -1
- package/src/bin/jest/jest.setup.js +1 -1
- package/src/bin/jest/test_before.setup.js +1 -1
- package/src/bin/launcher/launcher.js +1 -1
- package/src/bin/mocha/bstack-reporter/customReporter.js +1 -1
- package/src/bin/mocha/command.js +1 -1
- package/src/bin/mocha/test-observability/builderPatch.js +1 -1
- package/src/bin/mocha/test-observability/data-hooks.js +1 -1
- package/src/bin/mocha/test-observability/mochaUtils.js +1 -1
- package/src/bin/mocha/test.setup.js +1 -1
- package/src/bin/nightwatch/command.js +1 -1
- package/src/bin/playwright/command.js +1 -1
- package/src/bin/playwright/globalSetup.js +1 -1
- package/src/bin/playwright/mock-process.js +1 -1
- package/src/bin/playwright/reporter/pwUtils.js +1 -1
- package/src/bin/playwright/reporter/reporter.js +1 -1
- package/src/bin/playwright/reporter/test-details.js +1 -1
- package/src/bin/runner.js +1 -1
- package/src/bin/setup.js +1 -1
- package/src/bin/test-runner/index.js +1 -1
- package/src/bin/test-runner/runTest.js +1 -1
- package/src/bin/test-runner/testWorker.js +1 -1
- package/src/bin/utils/constants.js +1 -1
- package/src/bin/utils/log4jsAppender.js +1 -1
- package/src/bin/utils/logPatcher.js +1 -1
- package/src/bin/utils/logReportingAPI.js +1 -1
- package/src/bin/vanilla-js/command.js +1 -1
- package/src/helpers/BrowserStackSetup.js +1 -1
- package/src/helpers/capsMapping.js +1 -1
- package/src/helpers/helper.js +1 -1
- package/src/helpers/logger.js +1 -1
- package/src/helpers/patchHelpers.js +1 -1
- package/src/helpers/request-spy.js +1 -1
- package/src/helpers/setKeepAlive.js +1 -1
- package/src/helpers/test-observability/constants.js +1 -1
- package/src/helpers/test-observability/error-handler.js +1 -1
- package/src/helpers/test-observability/performance-tester.js +1 -1
- package/src/helpers/test-observability/requestQueueHandler.js +1 -1
- package/src/helpers/test-observability/sessionHandler.js +1 -1
- package/src/helpers/test-observability/utils.js +1 -1
- package/src/helpers/w3cMapping.js +1 -1
- package/src/hubAllocationMethods.js +1 -1
- package/src/index.js +1 -1
package/src/helpers/logger.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a40_0x2df290=a40_0x447b;(function(_0x40a444,_0x2ef6bf){const _0x3d7ea9=a40_0x447b,_0x43c4ba=_0x40a444();while(!![]){try{const _0x227bca=parseInt(_0x3d7ea9(0xab))/0x1*(parseInt(_0x3d7ea9(0x9d))/0x2)+-parseInt(_0x3d7ea9(0xaa))/0x3+-parseInt(_0x3d7ea9(0xa6))/0x4*(-parseInt(_0x3d7ea9(0x9b))/0x5)+parseInt(_0x3d7ea9(0xad))/0x6+-parseInt(_0x3d7ea9(0xac))/0x7*(parseInt(_0x3d7ea9(0xb7))/0x8)+parseInt(_0x3d7ea9(0xb5))/0x9+-parseInt(_0x3d7ea9(0xa7))/0xa;if(_0x227bca===_0x2ef6bf)break;else _0x43c4ba['push'](_0x43c4ba['shift']());}catch(_0x28f526){_0x43c4ba['push'](_0x43c4ba['shift']());}}}(a40_0xeafe,0x40360));const winston=require(a40_0x2df290(0xbb)),fs=require('fs'),path=require(a40_0x2df290(0xa5)),logDir=a40_0x2df290(0xb1);!fs['existsSync'](logDir)&&fs[a40_0x2df290(0xb3)](logDir);const a40_0x3ba5a9={};a40_0x3ba5a9[a40_0x2df290(0xa9)]=a40_0x2df290(0xa4);const transports={'loggerConsole':new winston[(a40_0x2df290(0xb2))][(a40_0x2df290(0xa2))](a40_0x3ba5a9),'loggerFile':new winston['transports'][(a40_0x2df290(0x9f))]({'filename':path['join'](logDir,a40_0x2df290(0xba))})},a40_0x3c5f70={};a40_0x3c5f70[a40_0x2df290(0xa8)]=a40_0x2df290(0xb4);const a40_0x125f80={};function a40_0xeafe(){const _0x19a1a2=['YYYY-MM-DD\x20HH:mm:ss','2610711TJypaS','loggerConsole','136wgHTOQ','winstonLogger','printf','/usage.log','winston','105nwHIPb','timestamp','869538FhZeoo','createLogger','File','\x20-\x20','combine','Console','fileLogger','console.info','path','94076EWJOzp','4338530CPbvUh','format','name','1091268Odoyeq','1ZIsUQE','166642Vybmqs','1479432knVwPg','colorize','level','loggerFile','log','transports','mkdirSync'];a40_0xeafe=function(){return _0x19a1a2;};return a40_0xeafe();}a40_0x125f80[a40_0x2df290(0xaf)]=!![];function a40_0x447b(_0x26d291,_0x25775f){const _0xeafe76=a40_0xeafe();return a40_0x447b=function(_0x447b84,_0x1128e2){_0x447b84=_0x447b84-0x9b;let _0x279e2f=_0xeafe76[_0x447b84];return _0x279e2f;},a40_0x447b(_0x26d291,_0x25775f);}const winstonLoggerParams={'format':winston[a40_0x2df290(0xa8)][a40_0x2df290(0xa1)](winston[a40_0x2df290(0xa8)][a40_0x2df290(0x9c)](a40_0x3c5f70),winston[a40_0x2df290(0xa8)][a40_0x2df290(0xae)](a40_0x125f80),winston['format'][a40_0x2df290(0xb9)](_0x3c1248=>_0x3c1248[a40_0x2df290(0x9c)]+a40_0x2df290(0xa0)+_0x3c1248[a40_0x2df290(0xaf)]+':\x20'+_0x3c1248['message'])),'transports':[transports[a40_0x2df290(0xb6)],transports[a40_0x2df290(0xb0)]]},a40_0x4dc1a9={};a40_0x4dc1a9['transports']=[transports['loggerFile']];const winstonFileLoggerParams=a40_0x4dc1a9;exports[a40_0x2df290(0xb8)]=new winston[(a40_0x2df290(0x9e))](winstonLoggerParams),exports[a40_0x2df290(0xa3)]=new winston[(a40_0x2df290(0x9e))](winstonFileLoggerParams),exports[a40_0x2df290(0xb2)]=transports;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var
|
|
1
|
+
function a41_0x2e9d(_0x245372,_0x377200){var _0xd54611=a41_0xd546();return a41_0x2e9d=function(_0x2e9d05,_0x4b1ec3){_0x2e9d05=_0x2e9d05-0xd3;var _0xc163f=_0xd54611[_0x2e9d05];return _0xc163f;},a41_0x2e9d(_0x245372,_0x377200);}function a41_0xd546(){var _0x1ae607=['toISOString','vNJNo','QYbjE','AZOOF','TvdhI','14mqMEpb','overrideTakeScreenshot','7103145GoJvLT','uPEyd','patchScreenshot','NOBbn','4617068ncBfRC','bs:addLog:','UHlGy','3184626DcrwTB','AKZmU','qeIwQ','ThzOC','dCgYr','HPDIN','VzAxw','emit','quitCount_','tHbaC','quit','xqcxa','sXXrZ','sbOrc','8420292ndAVPI','EyqAS','SCqYy','vtMOP','kGpYy','PtDhm','TEST_SCREENSHOT','KJGsH','mojwT','XGOLk','Jmqjp','bMsqT','MamTk','GoIbE','TKGGP','BS_TESTOPS_ALLOW_SCREENSHOTS','fvZZs','LywZn','zZJrW','split','9208gBwdTu','pid','KXEaC','CCoMJ','RDNoi','rSpGF','initScreenshot','SrgQP','kHGiR','14247xUPnhU','then','env','ybCNJ','IvweA','uakPe','7848750kCxuCh','DWsBU','85203URjNVN','initQuit','iRtSj','CftEW','FVwFc','VQHJp','lNpTB','takeScreenshot','RoEce','jpEZU','oVKYn','ShiPq','cJnAa','ANrPK','true','pSnrR','lMiXF','2|4|1|0|3','byVeg'];a41_0xd546=function(){return _0x1ae607;};return a41_0xd546();}var a41_0x2e46f5=a41_0x2e9d;(function(_0x152d17,_0x41c152){var _0x2a9da5=a41_0x2e9d,_0x3831f5=_0x152d17();while(!![]){try{var _0x3635fb=parseInt(_0x2a9da5(0xe4))/0x1*(parseInt(_0x2a9da5(0xfc))/0x2)+-parseInt(_0x2a9da5(0x105))/0x3+parseInt(_0x2a9da5(0x102))/0x4+parseInt(_0x2a9da5(0xe2))/0x5+parseInt(_0x2a9da5(0x113))/0x6+-parseInt(_0x2a9da5(0xfe))/0x7+-parseInt(_0x2a9da5(0xd3))/0x8*(parseInt(_0x2a9da5(0xdc))/0x9);if(_0x3635fb===_0x41c152)break;else _0x3831f5['push'](_0x3831f5['shift']());}catch(_0x59be83){_0x3831f5['push'](_0x3831f5['shift']());}}}(a41_0xd546,0xc98a6),exports[a41_0x2e46f5(0xfd)]=_0x2cfdf5=>{var _0xa36df0=a41_0x2e46f5,_0x20bf35={'sXXrZ':function(_0x35b759,_0x237fe8){return _0x35b759===_0x237fe8;},'Jmqjp':'MUuaa','sbOrc':_0xa36df0(0xf1),'jpEZU':_0xa36df0(0x119),'TvdhI':function(_0x5749e6,_0x3e7efb){return _0x5749e6(_0x3e7efb);},'ThzOC':function(_0x33e490,_0x26bae6){return _0x33e490>_0x26bae6;},'MEIOb':function(_0x51bed2){return _0x51bed2();},'cWrBN':function(_0x64ba28,_0x311449){return _0x64ba28!==_0x311449;},'vtMOP':_0xa36df0(0x109),'WsZow':'kKdvz','bRRok':function(_0x1ab5b2,_0x3aa6e1){return _0x1ab5b2(_0x3aa6e1);},'XGOLk':_0xa36df0(0xef),'lMiXF':_0xa36df0(0x104),'eKtBs':function(_0x3a9a35,_0x50c6a4){return _0x3a9a35!=_0x50c6a4;},'CftEW':_0xa36df0(0xf2)};if(_0x20bf35['eKtBs'](process['env'][_0xa36df0(0x122)],_0x20bf35[_0xa36df0(0xe7)]))return;if(_0x2cfdf5[_0xa36df0(0x100)])return;_0x2cfdf5[_0xa36df0(0x100)]=!![],_0x2cfdf5[_0xa36df0(0xd9)]=_0x2cfdf5['takeScreenshot'],_0x2cfdf5[_0xa36df0(0xeb)]=()=>{var _0x1ece0c=_0xa36df0,_0x5049c2={'uakPe':function(_0xac9642,_0x380c97){var _0x202d3b=a41_0x2e9d;return _0x20bf35[_0x202d3b(0x108)](_0xac9642,_0x380c97);},'YWmbq':function(_0x259a7f){return _0x20bf35['MEIOb'](_0x259a7f);},'GoIbE':function(_0x38f800,_0x114166){return _0x20bf35['cWrBN'](_0x38f800,_0x114166);},'qeIwQ':_0x20bf35[_0x1ece0c(0x116)],'cJnAa':_0x20bf35['WsZow'],'QYbjE':_0x20bf35[_0x1ece0c(0xed)],'NOBbn':function(_0x427fc8,_0x4c078c){return _0x20bf35['bRRok'](_0x427fc8,_0x4c078c);}};if(_0x20bf35['cWrBN'](_0x20bf35[_0x1ece0c(0x11c)],_0x20bf35[_0x1ece0c(0xf4)]))return new Promise(function(_0x599501,_0x53985a){var _0x3d4591=_0x1ece0c;if(_0x20bf35[_0x3d4591(0x111)](_0x20bf35[_0x3d4591(0x11d)],_0x20bf35[_0x3d4591(0x112)])){_0x36c708[_0x3d4591(0x10d)]+=0x1;if(_0x5049c2[_0x3d4591(0xe1)](_0x520eaf['quitCount_'],0x1))return _0x4a10b9[_0x3d4591(0xe5)]();}else _0x2cfdf5[_0x3d4591(0xd9)]()[_0x3d4591(0xdd)](_0x35bf67=>{var _0xa09e4b=_0x3d4591,_0x32a0ba={'FxoOz':function(_0x226a6f){return _0x5049c2['YWmbq'](_0x226a6f);}};_0x5049c2[_0xa09e4b(0x120)](_0x5049c2[_0xa09e4b(0x107)],_0x5049c2[_0xa09e4b(0xf0)])?(process[_0xa09e4b(0x10c)](_0xa09e4b(0x103)+process['pid'],{'timestamp':new Date()[_0xa09e4b(0xf7)](),'message':_0x35bf67,'kind':_0x5049c2[_0xa09e4b(0xf9)]}),_0x5049c2[_0xa09e4b(0x101)](_0x599501,_0x35bf67)):_0x32a0ba['FxoOz'](_0x4d6d7d);});});else{var _0x2d9f6c={'lNpTB':_0x20bf35[_0x1ece0c(0xed)],'IvweA':function(_0x8a5195,_0x5d623a){var _0x1b84f9=_0x1ece0c;return _0x20bf35[_0x1b84f9(0xfb)](_0x8a5195,_0x5d623a);}};_0x50cc03[_0x1ece0c(0xd9)]()[_0x1ece0c(0xdd)](_0x3b23ab=>{var _0x561ab9=_0x1ece0c;_0x13ea44[_0x561ab9(0x10c)]('bs:addLog:'+_0x3cbb50['pid'],{'timestamp':new _0x21ca15()['toISOString'](),'message':_0x3b23ab,'kind':_0x2d9f6c[_0x561ab9(0xea)]}),_0x2d9f6c[_0x561ab9(0xe0)](_0x2752cd,_0x3b23ab);});}};},exports['overrideQuit']=(_0x15b481,_0xcc167d=null)=>{var _0x532a86=a41_0x2e46f5,_0x4901b5={'xqcxa':'TEST_SCREENSHOT','rSpGF':function(_0x293a24,_0x353162){return _0x293a24(_0x353162);},'oVKYn':function(_0x43276e,_0x2664f1){return _0x43276e>_0x2664f1;},'RDNoi':function(_0x52cf9c,_0x5b79a5){return _0x52cf9c===_0x5b79a5;},'CCoMJ':_0x532a86(0x10b),'BWbjM':function(_0x4636a0){return _0x4636a0();},'vNJNo':_0x532a86(0xf5),'ybCNJ':function(_0x52d772,_0x2fd856){return _0x52d772!=_0x2fd856;},'pSnrR':_0x532a86(0xf2),'PeiLf':function(_0x32606a,_0x15fcf2){return _0x32606a!==_0x15fcf2;},'bTuxo':_0x532a86(0x11f),'EyqAS':_0x532a86(0x10a),'zZJrW':function(_0x1db7ef,_0x33be82){return _0x1db7ef!==_0x33be82;},'azKCO':'kLNzd','SCqYy':_0x532a86(0x11b),'mPbdT':function(_0x3028f4,_0x2d3e02){return _0x3028f4>_0x2d3e02;},'SrgQP':function(_0x25b533,_0x48bf53){return _0x25b533!==_0x48bf53;},'tHbaC':'aoJOP','KJGsH':function(_0xc55a28,_0x417163){return _0xc55a28===_0x417163;},'kHGiR':_0x532a86(0xe6),'DWsBU':function(_0x578220,_0xcd99){return _0x578220>_0xcd99;},'uPEyd':function(_0x34fb2e,_0x5bd703){return _0x34fb2e!==_0x5bd703;},'AZOOF':_0x532a86(0x117),'RoEce':'wwuma'};if(_0x15b481['patchQuit'])return;_0x15b481['patchQuit']=!![],_0x15b481[_0x532a86(0xe5)]=_0x15b481[_0x532a86(0x10f)],_0x15b481[_0x532a86(0x10f)]=()=>{var _0x104c5f=_0x532a86,_0x16d0c1={'TKGGP':_0x4901b5['xqcxa'],'KXEaC':function(_0x1b9cff,_0x3b05a4){var _0x56fc73=a41_0x2e9d;return _0x4901b5[_0x56fc73(0xd8)](_0x1b9cff,_0x3b05a4);},'FVwFc':_0x4901b5[_0x104c5f(0xf8)],'LywZn':function(_0x58856e,_0x547dd4){var _0x58e80f=_0x104c5f;return _0x4901b5[_0x58e80f(0xdf)](_0x58856e,_0x547dd4);},'byVeg':_0x4901b5[_0x104c5f(0xf3)]};if(_0x4901b5['PeiLf'](_0x4901b5['bTuxo'],_0x4901b5[_0x104c5f(0x114)])){if(_0xcc167d){if(_0x4901b5[_0x104c5f(0x125)](_0x4901b5['azKCO'],_0x4901b5[_0x104c5f(0x115)])){_0xcc167d['quitCount_']+=0x1;if(_0x4901b5['mPbdT'](_0xcc167d[_0x104c5f(0x10d)],0x1)){if(_0x4901b5[_0x104c5f(0xda)](_0x4901b5[_0x104c5f(0x10e)],_0x4901b5['tHbaC'])){var _0x138e20={'bMsqT':_0x4901b5[_0x104c5f(0x110)],'VQHJp':function(_0x16f97d,_0x19f27d){var _0x6415aa=_0x104c5f;return _0x4901b5[_0x6415aa(0xd8)](_0x16f97d,_0x19f27d);}};return new _0x4c0e61(function(_0x44bd08,_0x3c4159){var _0x3b997f=_0x104c5f,_0x2d5f1e={'AKZmU':_0x138e20[_0x3b997f(0x11e)],'fvZZs':function(_0x56b5f2,_0x500f9d){var _0x54efb8=_0x3b997f;return _0x138e20[_0x54efb8(0xe9)](_0x56b5f2,_0x500f9d);}};_0x2ce80a[_0x3b997f(0xd9)]()[_0x3b997f(0xdd)](_0x50459b=>{var _0x39b833=_0x3b997f;_0x394c5b[_0x39b833(0x10c)]('bs:addLog:'+_0x4a3909['pid'],{'timestamp':new _0x43a365()[_0x39b833(0xf7)](),'message':_0x50459b,'kind':_0x2d5f1e[_0x39b833(0x106)]}),_0x2d5f1e[_0x39b833(0x123)](_0x44bd08,_0x50459b);});});}else return _0x15b481[_0x104c5f(0xe5)]();}}else _0x91d421['emit']('bs:addLog:'+_0x3c7078[_0x104c5f(0xd4)],{'timestamp':new _0x196e88()[_0x104c5f(0xf7)](),'message':_0x20d138,'kind':_0x4901b5[_0x104c5f(0x110)]}),_0x4901b5[_0x104c5f(0xd8)](_0x20230c,_0x419723);}else{if(_0x4901b5[_0x104c5f(0x11a)](_0x4901b5[_0x104c5f(0xdb)],_0x4901b5[_0x104c5f(0xdb)])){_0x15b481['quitCount_']+=0x1;if(_0x4901b5[_0x104c5f(0xe3)](_0x15b481[_0x104c5f(0x10d)],0x1)){if(_0x4901b5[_0x104c5f(0xff)](_0x4901b5[_0x104c5f(0xfa)],_0x4901b5[_0x104c5f(0xec)]))return _0x15b481[_0x104c5f(0xe5)]();else{var _0x14e029=_0x16d0c1[_0x104c5f(0xe8)][_0x104c5f(0x126)]('|'),_0xbbb3e3=0x0;while(!![]){switch(_0x14e029[_0xbbb3e3++]){case'0':_0xc74f29[_0x104c5f(0xd9)]=_0x12591b[_0x104c5f(0xeb)];continue;case'1':_0x57a0e6[_0x104c5f(0x100)]=!![];continue;case'2':if(_0x16d0c1[_0x104c5f(0x124)](_0x3658e4[_0x104c5f(0xde)][_0x104c5f(0x122)],_0x16d0c1[_0x104c5f(0xf6)]))return;continue;case'3':_0x46544e['takeScreenshot']=()=>{var _0xa4b59=_0x104c5f,_0x2ac5be={'bhhUo':_0x16d0c1[_0xa4b59(0x121)],'xAxfr':function(_0x5defcb,_0x34f326){var _0x39cf1e=_0xa4b59;return _0x16d0c1[_0x39cf1e(0xd5)](_0x5defcb,_0x34f326);}};return new _0x326903(function(_0x404461,_0x2e9cb6){var _0x229ac1=_0xa4b59,_0x15a7c0={'PtDhm':_0x2ac5be['bhhUo'],'lMWGm':function(_0x7b1025,_0x1f28b5){return _0x2ac5be['xAxfr'](_0x7b1025,_0x1f28b5);}};_0x10293e[_0x229ac1(0xd9)]()[_0x229ac1(0xdd)](_0x23cf2c=>{var _0x24c7df=_0x229ac1;_0x3bb60a[_0x24c7df(0x10c)](_0x24c7df(0x103)+_0x25796c[_0x24c7df(0xd4)],{'timestamp':new _0x3ffd36()[_0x24c7df(0xf7)](),'message':_0x23cf2c,'kind':_0x15a7c0[_0x24c7df(0x118)]}),_0x15a7c0['lMWGm'](_0x404461,_0x23cf2c);});});};continue;case'4':if(_0xbd319f[_0x104c5f(0x100)])return;continue;}break;}}}}else return _0x38c5ff[_0x104c5f(0xe5)]();}return new Promise(function(_0x555198){var _0x52b297=_0x104c5f,_0x755401={'YkdZu':function(_0x472eae,_0x1ed234){var _0x594854=a41_0x2e9d;return _0x4901b5[_0x594854(0xee)](_0x472eae,_0x1ed234);}};if(_0x4901b5[_0x52b297(0xd7)](_0x4901b5['CCoMJ'],_0x4901b5[_0x52b297(0xd6)]))_0x4901b5['BWbjM'](_0x555198);else{_0x34c70f[_0x52b297(0x10d)]+=0x1;if(_0x755401['YkdZu'](_0x8725c8['quitCount_'],0x1))return _0x39550e['initQuit']();}});}else return _0x33d415['initQuit']();};});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
function a42_0x28b3(_0x56d338,_0x342f21){const _0x5b068e=a42_0x5b06();return a42_0x28b3=function(_0x28b358,_0x1dec6f){_0x28b358=_0x28b358-0x12f;let _0x2faef4=_0x5b068e[_0x28b358];return _0x2faef4;},a42_0x28b3(_0x56d338,_0x342f21);}const a42_0xc353c8=a42_0x28b3;(function(_0x35bf4f,_0xc946e6){const _0x100cff=a42_0x28b3,_0x372258=_0x35bf4f();while(!![]){try{const _0x4f13b=-parseInt(_0x100cff(0x157))/0x1+parseInt(_0x100cff(0x136))/0x2*(-parseInt(_0x100cff(0x14f))/0x3)+-parseInt(_0x100cff(0x15e))/0x4*(-parseInt(_0x100cff(0x16b))/0x5)+-parseInt(_0x100cff(0x13d))/0x6+-parseInt(_0x100cff(0x14d))/0x7+parseInt(_0x100cff(0x15f))/0x8+parseInt(_0x100cff(0x165))/0x9*(parseInt(_0x100cff(0x166))/0xa);if(_0x4f13b===_0xc946e6)break;else _0x372258['push'](_0x372258['shift']());}catch(_0x539ff4){_0x372258['push'](_0x372258['shift']());}}}(a42_0x5b06,0x3b783));const http=require(a42_0xc353c8(0x13f)),https=require(a42_0xc353c8(0x134)),monkeypatch=require(a42_0xc353c8(0x138));function spy(_0x5e437e){const _0x99e3d4=a42_0xc353c8,_0x1b702d={'SglKG':function(_0x4fc8f0,_0x47237a){return _0x4fc8f0!==_0x47237a;},'XiIaI':_0x99e3d4(0x135),'WrQkF':function(_0x4f7c11,_0x4e3bcb){return _0x4f7c11-_0x4e3bcb;},'XJMoe':function(_0x213ab4,_0x40465d,_0x370fe9){return _0x213ab4(_0x40465d,_0x370fe9);},'SEkQs':_0x99e3d4(0x148),'nkAux':function(_0x5ea96a,_0x195657,_0x56aeb7){return _0x5ea96a(_0x195657,_0x56aeb7);},'QJiqj':function(_0x26acab,_0x3b9f47){return _0x26acab!==_0x3b9f47;},'knJVv':_0x99e3d4(0x167),'dcEGq':function(_0x498836,..._0x2e6e4e){return _0x498836(..._0x2e6e4e);},'ZGgUp':function(_0x319ea6,_0x2e9d8c){return _0x319ea6===_0x2e9d8c;},'vmPLd':_0x99e3d4(0x150),'PhMnH':'nzuTp','RCCxe':_0x99e3d4(0x168),'mHWYW':_0x99e3d4(0x156),'vNhbT':function(_0x4b2c00,..._0x3b419f){return _0x4b2c00(..._0x3b419f);},'AHfKk':_0x99e3d4(0x13e),'JQiez':_0x99e3d4(0x140),'IdTyD':_0x99e3d4(0x159),'pwlCL':function(_0x22d81c,_0x1d0015,_0x2fa9f7,_0x3bd1ab){return _0x22d81c(_0x1d0015,_0x2fa9f7,_0x3bd1ab);},'HRNbg':_0x99e3d4(0x169),'kzyhJ':'request','ZkXFl':function(_0x24ae63,_0x63d2c5,_0x5b073e,_0x148948){return _0x24ae63(_0x63d2c5,_0x5b073e,_0x148948);}},_0x57bbeb=(_0x12abb3,_0x2dbb73,_0x78879f)=>{const _0x3d4fd3=_0x99e3d4,_0x461a7a={'dRyhi':function(_0x2c6605,_0x3ad6c9,_0x7d832b){const _0xdcc400=a42_0x28b3;return _0x1b702d[_0xdcc400(0x139)](_0x2c6605,_0x3ad6c9,_0x7d832b);},'NQuzR':function(_0x3998b1,_0x5e4a8e){return _0x1b702d['QJiqj'](_0x3998b1,_0x5e4a8e);},'akmsF':_0x1b702d[_0x3d4fd3(0x160)],'UXtWw':function(_0x3b84cb,..._0x146140){return _0x1b702d['dcEGq'](_0x3b84cb,..._0x146140);},'rnYyY':function(_0x5ec84f,_0xa5adf5){return _0x1b702d['ZGgUp'](_0x5ec84f,_0xa5adf5);},'qKefx':_0x1b702d[_0x3d4fd3(0x161)],'rTBkQ':_0x1b702d[_0x3d4fd3(0x171)],'zKBRt':_0x1b702d[_0x3d4fd3(0x142)],'HAKZm':_0x1b702d[_0x3d4fd3(0x144)],'qPLBm':_0x1b702d[_0x3d4fd3(0x14b)],'GRmfN':function(_0x582899,..._0x1c800b){const _0x52f48a=_0x3d4fd3;return _0x1b702d[_0x52f48a(0x14e)](_0x582899,..._0x1c800b);},'ivUbr':function(_0x5863a9,_0x1f6244){const _0x39d057=_0x3d4fd3;return _0x1b702d[_0x39d057(0x12f)](_0x5863a9,_0x1f6244);}};if(_0x1b702d[_0x3d4fd3(0x14a)](_0x1b702d['AHfKk'],_0x1b702d[_0x3d4fd3(0x15d)])){const _0x475875=_0x1b702d['XJMoe'](_0x12abb3,_0x2dbb73,_0x78879f);let _0x24ab99=Date[_0x3d4fd3(0x130)](),_0x68d5b9;const _0x39c57e=_0x193188=>{const _0x3b9002=_0x3d4fd3,_0x21df0c={'uqZZT':function(_0x344b79,_0x29f88a,_0xeb363c){const _0x3e509b=a42_0x28b3;return _0x461a7a[_0x3e509b(0x16d)](_0x344b79,_0x29f88a,_0xeb363c);}};if(_0x461a7a[_0x3b9002(0x16a)](_0x461a7a['akmsF'],_0x461a7a[_0x3b9002(0x158)])){const _0x40aa12={};_0x40aa12['host']=_0x3de6f3[_0x3b9002(0x149)]||_0x280eb8['hostname'],_0x40aa12['path']=_0x5cb538['path'],_0x40aa12[_0x3b9002(0x15c)]=_0x190d1b[_0x3b9002(0x15c)],_0x40aa12[_0x3b9002(0x152)]=_0x34981d[_0x3b9002(0x152)],_0x21df0c[_0x3b9002(0x16e)](_0x16b434,_0x4068f2,_0x40aa12);}else{const _0x2c90b5={};_0x2c90b5[_0x3b9002(0x149)]=_0x2dbb73[_0x3b9002(0x149)]||_0x2dbb73[_0x3b9002(0x146)],_0x2c90b5[_0x3b9002(0x13c)]=_0x2dbb73[_0x3b9002(0x13c)],_0x2c90b5[_0x3b9002(0x15c)]=_0x2dbb73['method'],_0x2c90b5[_0x3b9002(0x152)]=_0x2dbb73[_0x3b9002(0x152)],_0x461a7a['dRyhi'](_0x5e437e,_0x193188,_0x2c90b5);}};return _0x475875[_0x3d4fd3(0x133)](_0x1b702d['JQiez'],_0x5e661f=>{const _0x26e50c=_0x3d4fd3;if(_0x1b702d['SglKG'](_0x1b702d[_0x26e50c(0x162)],_0x1b702d[_0x26e50c(0x162)]))_0x2710a0[_0x26e50c(0x13b)][_0x26e50c(0x16f)](),_0x28d3c8[_0x26e50c(0x13b)][_0x26e50c(0x16f)]();else{const _0x5d8fb4=_0x1b702d[_0x26e50c(0x12f)](Date[_0x26e50c(0x130)](),_0x24ab99),_0x5bbd97={};_0x5bbd97[_0x26e50c(0x146)]=_0x2dbb73[_0x26e50c(0x149)]||_0x2dbb73[_0x26e50c(0x146)],_0x5bbd97['path']=_0x2dbb73[_0x26e50c(0x13c)],_0x5bbd97[_0x26e50c(0x15c)]=_0x2dbb73['method'],_0x5bbd97[_0x26e50c(0x152)]=_0x2dbb73[_0x26e50c(0x152)],_0x5bbd97[_0x26e50c(0x172)]=_0x5e661f[_0x26e50c(0x163)],_0x5bbd97['duration_ms']=_0x5d8fb4,_0x1b702d['XJMoe'](_0x5e437e,null,_0x5bbd97),_0x68d5b9[_0x26e50c(0x131)](_0x1b702d['SEkQs'],_0x39c57e);}}),_0x475875['on'](_0x1b702d[_0x3d4fd3(0x147)],_0x525c15=>{const _0x276949=_0x3d4fd3,_0xa66569={'evUoF':function(_0x3a4650,..._0xf358f){const _0x266b39=a42_0x28b3;return _0x461a7a[_0x266b39(0x137)](_0x3a4650,..._0xf358f);}};_0x461a7a['rnYyY'](_0x461a7a[_0x276949(0x145)],_0x461a7a[_0x276949(0x170)])?(_0x2fb858=_0x390b1f['now'](),_0xa66569[_0x276949(0x132)](_0x56f585,..._0x466719)):(_0x68d5b9=_0x525c15,_0x525c15[_0x276949(0x133)](_0x461a7a['zKBRt'],_0x39c57e));}),_0x1b702d[_0x3d4fd3(0x155)](monkeypatch,_0x475875,_0x1b702d[_0x3d4fd3(0x151)],(_0xdfca74,..._0xd54fe6)=>{const _0x254d9e=_0x3d4fd3;_0x461a7a[_0x254d9e(0x16a)](_0x461a7a[_0x254d9e(0x15b)],_0x461a7a[_0x254d9e(0x153)])?(_0x24ab99=Date['now'](),_0x461a7a[_0x254d9e(0x154)](_0xdfca74,..._0xd54fe6)):(_0x11b7b4=_0x108e3f,_0x27f0a0[_0x254d9e(0x133)](_0x461a7a[_0x254d9e(0x141)],_0x1db63b));}),_0x475875;}else{const _0x18f725=_0x461a7a['ivUbr'](_0x327119[_0x3d4fd3(0x130)](),_0x5d750b),_0xcc0df5={};_0xcc0df5[_0x3d4fd3(0x146)]=_0x29af5a[_0x3d4fd3(0x149)]||_0x54c4ed[_0x3d4fd3(0x146)],_0xcc0df5[_0x3d4fd3(0x13c)]=_0x5143df[_0x3d4fd3(0x13c)],_0xcc0df5['method']=_0x49a220[_0x3d4fd3(0x15c)],_0xcc0df5[_0x3d4fd3(0x152)]=_0x5efe24['headers'],_0xcc0df5[_0x3d4fd3(0x172)]=_0x55dca3[_0x3d4fd3(0x163)],_0xcc0df5[_0x3d4fd3(0x164)]=_0x18f725,_0x461a7a['dRyhi'](_0x55275c,null,_0xcc0df5),_0x4611cd[_0x3d4fd3(0x131)](_0x461a7a[_0x3d4fd3(0x141)],_0x467b25);}};_0x1b702d[_0x99e3d4(0x155)](monkeypatch,http,_0x1b702d[_0x99e3d4(0x143)],_0x57bbeb),_0x1b702d[_0x99e3d4(0x14c)](monkeypatch,https,_0x1b702d[_0x99e3d4(0x143)],_0x57bbeb);}function a42_0x5b06(){const _0x59bbd0=['pwlCL','DerqK','217327ZCVqWr','akmsF','socket','exports','HAKZm','method','AHfKk','4tjFYRf','681528QsXgEr','knJVv','vmPLd','XiIaI','statusCode','duration_ms','3087PGkFzC','16460KUvacT','fNJxO','ZNZsy','end','NQuzR','1760345EHWFfD','restore','dRyhi','uqZZT','unpatch','rTBkQ','PhMnH','status_code','WrQkF','now','removeListener','evUoF','once','https','DOLmG','34bjkHec','UXtWw','monkeypatch','nkAux','spy','request','path','834996ukBuXC','tCndd','http','response','zKBRt','SEkQs','kzyhJ','RCCxe','qKefx','hostname','IdTyD','error','host','ZGgUp','mHWYW','ZkXFl','899024SokwNm','vNhbT','48234lhTKsR','kCcDu','HRNbg','headers','qPLBm','GRmfN'];a42_0x5b06=function(){return _0x59bbd0;};return a42_0x5b06();}function restore(){const _0x466973=a42_0xc353c8;http[_0x466973(0x13b)][_0x466973(0x16f)](),https[_0x466973(0x13b)][_0x466973(0x16f)]();}const a42_0x1f26cc={};a42_0x1f26cc[a42_0xc353c8(0x13a)]=spy,a42_0x1f26cc[a42_0xc353c8(0x16c)]=restore,module[a42_0xc353c8(0x15a)]=a42_0x1f26cc;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
function a43_0x38af(){const _0x2194d6=['VSCWW','oXVfX','8yazgdb','Agent','538413CoHSub','eIUBZ','42OQFdTF','dPlDl','PqUCd','hasOwnProperty','318152GUqvFB','protocol','keepAliveMsecs','BjvsF','cMfSi','wyBXN','27193960vPAXKQ','CsnNs','agent','HkbtD','241444modAgu','https','4577632uqoYDu','FIJCc','yeyDp','126irBpAE','eXiNv','ZBjOA','1527925xZixMb','FDdSA','RTsSv','PTLZs','spalX','https:','wvxbf','wsrGq','FlPfi','kELwR','Lbfwh','IdDdY','1064244ANFAvW','fjPFG','hUaLG','HFYCA','zouAF','jZyeq','ToDDe','request','keepAlive','KTPQD','AbGkO','globalAgent','http','UpilT'];a43_0x38af=function(){return _0x2194d6;};return a43_0x38af();}function a43_0x129e(_0x3ca4eb,_0x3ac5bb){const _0x38afe3=a43_0x38af();return a43_0x129e=function(_0x129e35,_0x18d4f3){_0x129e35=_0x129e35-0x1a4;let _0x18a0bc=_0x38afe3[_0x129e35];return _0x18a0bc;},a43_0x129e(_0x3ca4eb,_0x3ac5bb);}(function(_0x3bbd0d,_0x1843f4){const _0x24a63b=a43_0x129e,_0x4ef2b6=_0x3bbd0d();while(!![]){try{const _0x40570c=-parseInt(_0x24a63b(0x1ac))/0x1+-parseInt(_0x24a63b(0x1d0))/0x2*(-parseInt(_0x24a63b(0x1d2))/0x3)+-parseInt(_0x24a63b(0x1ae))/0x4+parseInt(_0x24a63b(0x1b4))/0x5+parseInt(_0x24a63b(0x1c0))/0x6*(-parseInt(_0x24a63b(0x1d4))/0x7)+-parseInt(_0x24a63b(0x1d8))/0x8*(parseInt(_0x24a63b(0x1b1))/0x9)+parseInt(_0x24a63b(0x1a8))/0xa;if(_0x40570c===_0x1843f4)break;else _0x4ef2b6['push'](_0x4ef2b6['shift']());}catch(_0x4deaab){_0x4ef2b6['push'](_0x4ef2b6['shift']());}}}(a43_0x38af,0xb3b03),module['exports']=function(){const _0x58d893=a43_0x129e,_0xae3ecd={'Lbfwh':function(_0x3f6bac,_0x3099a4){return _0x3f6bac==_0x3099a4;},'eIUBZ':_0x58d893(0x1b9),'fjPFG':_0x58d893(0x1aa),'qTkfs':function(_0x2c5eb8,_0x315a20,_0x5c38a6){return _0x2c5eb8(_0x315a20,_0x5c38a6);},'DsjGH':function(_0x3fd292,_0xadbf0b){return _0x3fd292==_0xadbf0b;},'ZBjOA':function(_0x47dcd6,_0x3d2ba6,_0x557366){return _0x47dcd6(_0x3d2ba6,_0x557366);},'UpilT':function(_0xa0dc9,_0x5c9de3,_0x307bc9){return _0xa0dc9(_0x5c9de3,_0x307bc9);},'PTLZs':function(_0x1c2095,_0x402bad){return _0x1c2095!==_0x402bad;},'zouAF':_0x58d893(0x1b5),'wvxbf':function(_0x5e7d14,_0x56fc88){return _0x5e7d14==_0x56fc88;},'RTsSv':function(_0xc1c5b2,_0xec89bf){return _0xc1c5b2!==_0xec89bf;},'BjvsF':'LIqzm','oXVfX':function(_0x4d9dce,_0x258a85){return _0x4d9dce!==_0x258a85;},'wyBXN':_0x58d893(0x1b0),'jZyeq':_0x58d893(0x1b8),'PqUCd':function(_0xcc6126,_0x4b74ea,_0x50e57c){return _0xcc6126(_0x4b74ea,_0x50e57c);},'CsnNs':function(_0x3d09d7,_0x1fef52){return _0x3d09d7(_0x1fef52);},'HFYCA':_0x58d893(0x1cc),'cMfSi':function(_0x58ae7d,_0x290900){return _0x58ae7d(_0x290900);},'LGmXv':_0x58d893(0x1ad),'HkbtD':function(_0x5b03a6,_0x589ce1){return _0x5b03a6*_0x589ce1;},'kELwR':_0x58d893(0x1c8),'FIJCc':function(_0x517b18,_0x2d3c2b){return _0x517b18===_0x2d3c2b;},'FlPfi':_0x58d893(0x1d5),'ToDDe':_0x58d893(0x1ca),'VSCWW':'QIgrs','wsrGq':'SlfLz'},_0x18185c=_0xae3ecd[_0x58d893(0x1a9)](require,_0xae3ecd[_0x58d893(0x1c3)]),_0x1f872e=_0xae3ecd[_0x58d893(0x1a6)](require,_0xae3ecd['LGmXv']),_0x10b588=_0xae3ecd[_0x58d893(0x1ab)](0x1e,0x3e8);if(_0x18185c[_0x58d893(0x1cb)]&&_0x18185c[_0x58d893(0x1cb)][_0x58d893(0x1d7)](_0xae3ecd[_0x58d893(0x1bd)])){if(_0xae3ecd[_0x58d893(0x1af)](_0xae3ecd[_0x58d893(0x1bc)],_0xae3ecd[_0x58d893(0x1c6)])){const _0x427a37={'IdDdY':function(_0x81ee9f,_0x1332b2){const _0x88d76e=_0x58d893;return _0xae3ecd[_0x88d76e(0x1be)](_0x81ee9f,_0x1332b2);},'hUaLG':_0xae3ecd[_0x58d893(0x1d3)],'eXiNv':_0xae3ecd[_0x58d893(0x1c1)],'KTPQD':function(_0x503f16,_0x47bbcd,_0x50b554){return _0xae3ecd['qTkfs'](_0x503f16,_0x47bbcd,_0x50b554);}},_0x23a58e={};_0x23a58e[_0x58d893(0x1c8)]=!![],_0x23a58e[_0x58d893(0x1a4)]=_0x9b3ff7;const _0x59f738=new _0x3e10bd[(_0x58d893(0x1d1))](_0x23a58e),_0x381e8c={};_0x381e8c[_0x58d893(0x1c8)]=!![],_0x381e8c[_0x58d893(0x1a4)]=_0x51d645;const _0x4c5861=new _0x53e39e[(_0x58d893(0x1d1))](_0x381e8c),_0x314630=_0x2eb8ca[_0x58d893(0x1c7)],_0x103783=_0x191cb8[_0x58d893(0x1c7)];_0x3511c8[_0x58d893(0x1c7)]=function(_0x1b47ee,_0x283961){const _0x42e62d=_0x58d893;return _0x427a37[_0x42e62d(0x1bf)](_0x1b47ee[_0x42e62d(0x1d9)],_0x427a37[_0x42e62d(0x1c2)])?(_0x1b47ee[_0x427a37[_0x42e62d(0x1b2)]]=_0x4c5861,_0x427a37[_0x42e62d(0x1c9)](_0x103783,_0x1b47ee,_0x283961)):(_0x1b47ee[_0x427a37[_0x42e62d(0x1b2)]]=_0x59f738,_0x427a37[_0x42e62d(0x1c9)](_0x314630,_0x1b47ee,_0x283961));};}else _0x18185c[_0x58d893(0x1cb)][_0x58d893(0x1c8)]=!![],_0x1f872e[_0x58d893(0x1cb)][_0x58d893(0x1c8)]=!![],_0x18185c[_0x58d893(0x1cb)][_0x58d893(0x1a4)]=_0x10b588,_0x1f872e['globalAgent']['keepAliveMsecs']=_0x10b588;}else{if(_0xae3ecd[_0x58d893(0x1b7)](_0xae3ecd[_0x58d893(0x1ce)],_0xae3ecd[_0x58d893(0x1bb)])){const _0x2e09a9={};_0x2e09a9['keepAlive']=!![],_0x2e09a9['keepAliveMsecs']=_0x10b588;const _0x5cc6f7=new _0x18185c[(_0x58d893(0x1d1))](_0x2e09a9),_0x545cc1={};_0x545cc1['keepAlive']=!![],_0x545cc1['keepAliveMsecs']=_0x10b588;const _0x39f88e=new _0x1f872e['Agent'](_0x545cc1),_0x45ca5c=_0x18185c['request'],_0x335553=_0x1f872e[_0x58d893(0x1c7)];_0x18185c[_0x58d893(0x1c7)]=function(_0x20f96a,_0x3df7d3){const _0x1e8e9b=_0x58d893;if(_0xae3ecd[_0x1e8e9b(0x1b7)](_0xae3ecd['zouAF'],_0xae3ecd[_0x1e8e9b(0x1c4)]))_0xa6e116[_0x1e8e9b(0x1cb)][_0x1e8e9b(0x1c8)]=!![],_0x5e095e[_0x1e8e9b(0x1cb)][_0x1e8e9b(0x1c8)]=!![],_0xe04b6c[_0x1e8e9b(0x1cb)][_0x1e8e9b(0x1a4)]=_0x4f4726,_0x3ef97c[_0x1e8e9b(0x1cb)][_0x1e8e9b(0x1a4)]=_0x5bd43e;else return _0xae3ecd[_0x1e8e9b(0x1ba)](_0x20f96a[_0x1e8e9b(0x1d9)],_0xae3ecd[_0x1e8e9b(0x1d3)])?_0xae3ecd[_0x1e8e9b(0x1b6)](_0xae3ecd[_0x1e8e9b(0x1a5)],_0xae3ecd[_0x1e8e9b(0x1a5)])?(_0x30f719[_0xae3ecd[_0x1e8e9b(0x1c1)]]=_0x338464,_0xae3ecd['qTkfs'](_0x48d5ef,_0x55f9db,_0xe059bf)):(_0x20f96a[_0xae3ecd[_0x1e8e9b(0x1c1)]]=_0x39f88e,_0xae3ecd[_0x1e8e9b(0x1b3)](_0x335553,_0x20f96a,_0x3df7d3)):_0xae3ecd[_0x1e8e9b(0x1cf)](_0xae3ecd[_0x1e8e9b(0x1a7)],_0xae3ecd[_0x1e8e9b(0x1c5)])?(_0x20f96a[_0xae3ecd['fjPFG']]=_0x5cc6f7,_0xae3ecd[_0x1e8e9b(0x1d6)](_0x45ca5c,_0x20f96a,_0x3df7d3)):_0xae3ecd['DsjGH'](_0x29bbd9[_0x1e8e9b(0x1d9)],_0xae3ecd[_0x1e8e9b(0x1d3)])?(_0x2af142[_0xae3ecd[_0x1e8e9b(0x1c1)]]=_0x2a97e8,_0xae3ecd['ZBjOA'](_0x1ac6fc,_0x10575d,_0x239811)):(_0x425119[_0xae3ecd[_0x1e8e9b(0x1c1)]]=_0xa53be0,_0xae3ecd[_0x1e8e9b(0x1cd)](_0x3c8942,_0x3f6b72,_0x523f10));};}else return _0x1fd6ee[_0xae3ecd['fjPFG']]=_0x30dc88,_0xae3ecd[_0x58d893(0x1d6)](_0x2c68f3,_0x276852,_0xe1d063);}});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var
|
|
1
|
+
var a44_0x53c0e4=a44_0x18de;(function(_0x1cf8ab,_0x36deea){var _0x2f138e=a44_0x18de,_0x4fedb3=_0x1cf8ab();while(!![]){try{var _0xe16ec5=parseInt(_0x2f138e(0x160))/0x1*(-parseInt(_0x2f138e(0x16c))/0x2)+parseInt(_0x2f138e(0x15d))/0x3+parseInt(_0x2f138e(0x16b))/0x4*(parseInt(_0x2f138e(0x169))/0x5)+parseInt(_0x2f138e(0x167))/0x6+parseInt(_0x2f138e(0x166))/0x7+parseInt(_0x2f138e(0x164))/0x8+-parseInt(_0x2f138e(0x15f))/0x9;if(_0xe16ec5===_0x36deea)break;else _0x4fedb3['push'](_0x4fedb3['shift']());}catch(_0x579633){_0x4fedb3['push'](_0x4fedb3['shift']());}}}(a44_0x1e06,0xb35a8));function a44_0x18de(_0x129278,_0x14dec8){var _0x1e063e=a44_0x1e06();return a44_0x18de=function(_0x18de4a,_0x4b4907){_0x18de4a=_0x18de4a-0x15c;var _0x107749=_0x1e063e[_0x18de4a];return _0x107749;},a44_0x18de(_0x129278,_0x14dec8);}var a44_0x34ce78={};a44_0x34ce78[a44_0x53c0e4(0x15c)]=a44_0x53c0e4(0x163),a44_0x34ce78['MOCHA']='mocha',module[a44_0x53c0e4(0x162)]={'consoleHolder':Object[a44_0x53c0e4(0x16a)]({},console),'BATCH_SIZE':0x3e8,'BATCH_INTERVAL':0x7d0,'API_URL':a44_0x53c0e4(0x15e),'EVENT_ENDPOINT':a44_0x53c0e4(0x161),'BATCH_ENDPOINT':'api/v1/batch','SCREENSHOT_ENDPOINT':a44_0x53c0e4(0x165),'DEFAULT_WAIT_TIMEOUT_FOR_PENDING_UPLOADS':0x1388,'DEFAULT_WAIT_INTERVAL_FOR_PENDING_UPLOADS':0x64,'DEFAULT_WAIT_INTERVAL_FOR_BUILD_STATUS':0x1f4,'TEMP_STORE_DIR_NAME':a44_0x53c0e4(0x168),'FRAMEWORKS':a44_0x34ce78};function a44_0x1e06(){var _0x1d2b7c=['api/v1/screenshots','3989825ptVNER','66924mhImcY','.obs_test_details','10RUQijj','assign','460228qOjTAH','2VcFkjw','PLAYWRIGHT','408768VCOcSA','https://collector-observability.browserstack.com','7332066tbQGIu','785130IUounN','api/v1/event','exports','Playwright','11095496ZcSgzY'];a44_0x1e06=function(){return _0x1d2b7c;};return a44_0x1e06();}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const a45_0x35b03d=a45_0x3fc3;(function(_0x5e52ff,_0x1de645){const _0x1e9284=a45_0x3fc3,_0x382814=_0x5e52ff();while(!![]){try{const _0x339f62=parseInt(_0x1e9284(0x15d))/0x1*(-parseInt(_0x1e9284(0x112))/0x2)+-parseInt(_0x1e9284(0x133))/0x3*(-parseInt(_0x1e9284(0x12c))/0x4)+parseInt(_0x1e9284(0x195))/0x5*(-parseInt(_0x1e9284(0x1c3))/0x6)+parseInt(_0x1e9284(0x19c))/0x7+parseInt(_0x1e9284(0x1b2))/0x8*(-parseInt(_0x1e9284(0x190))/0x9)+-parseInt(_0x1e9284(0x14d))/0xa+parseInt(_0x1e9284(0x1dc))/0xb;if(_0x339f62===_0x1de645)break;else _0x382814['push'](_0x382814['shift']());}catch(_0xf7ca13){_0x382814['push'](_0x382814['shift']());}}}(a45_0x5472,0x5e358));function a45_0x5472(){const _0x3f60e9=['dbZNB','forEach','Ouxbm','vofvO','mBqBX','frameworkDetails','qLSMA','19321445hDRXHI','frameworkVersion','ZnpZr','Content-Type','slrcn','hkKwz','\x20with\x20args\x20','lkIxm','wpxPu','LwVto','qTOeq','OIoWB','htwun','TmbzT','TswWh','ysyEX','aFzxr','sGCIy','akTrQ','X-BSTACK-TESTOPS','defineProperty','headers','ZQZkz','ZckJD','adUBt','sNuNV','getOwnPropertyNames','env','2HpzVHb','PHSjg','efZDg','ADYtc','NmwvR','xKUlx','accessKey','ENrlA','SVIcz','GYOUa','dINIw','oYyyn','jKwVf','wRjTI','depth','ywUGM','pDDsc','constructor','EKCfe','pZFoh','BS_TESTOPS_BUILD_HASHED_ID','Error\x20in\x20parsing\x20credentials\x20from\x20env\x20','setAllDetails','UcBwZ','SAjkF','iHIAN','536tZnIRb','bADQY','yWntr','NPdyZ','o11yClassErrorHandler','[Crash_Report_Upload]\x20Failed\x20to\x20parse\x20user\x20credentials\x20while\x20reporting\x20crash','yxSqS','1149GTgtmZ','YSpjm','call','SDsfj','ofrAW','wmDTW','true','credentials','XoTjv','wIHcb','CDtHA','pRnie','npkHt','vdyvU','WwvcI','USER_CONFIG_FOR_REPORTING','cDGUZ','getConfig','frameworkName','UGGVK','pujMj','KjSvF','rebzf','pYQzz','util','jzJXa','6657860tgqCof','Error\x20in\x20executing\x20','WAQAZ','length','yUvMf','sYGLw','DPwgm','setConfigDetails','XvvBL','XSKWW','../helper','sRvBI','rfIDW','WbsaD','toString','DRUbu','577901fEXLwl','YMvMH','VWUQA','initialize','name','GhaOr','jEVvA','user','[Crash_Report_Upload]\x20Success\x20response:\x20','application/json','uploadCrashReport','mMEIk','nzldD','oZGlx','pWGjY','CwLlp','hFEFX','\x20:\x20','brCOK','ebzJD','userConfig','setCredentials','JKkpw','mdwKN','RmWpn','grcmt','kfTdB','function','aTvBO','IJTcR','CrashReporter','BROWSERSTACK_O11Y_FRAMEWORK_DETAILS','qwTEo','o11yErrorHandler','YRoGq','[Crash_Report_Upload]\x20Failed\x20due\x20to\x20','KfOIQ','hhlbV','nfMFG','recursivelyDeletePIIKeysFromObject','vRsfd','Error\x20in\x20parsing\x20user\x20config\x20from\x20env\x20','auth','SeLGA','dmLzh','filterPII','IJqwp','aKuze','YeNGJ','NFmQk','key','2776959zoxczJ','vUdzG','EkyGe','JnICf','WxBad','535505pAWqFx','getFramework','RzvcA','rNHqE','./utils','BHtcP','parse','1661814tAfukR','keys','GoACR','rrkAj','qKcCQ','zUEtf','password','laAyU','zWAPt','object','piPaK','bXlUh','RKqMd','ZfUFk','rdfKj','stringify','ZbEeH','JLcqD','wCZNA','timerify','mlyof','JOXGn','8VVveXU','ZZgUX','getPerformance','catch','setFrameworkDetails','MooSk','toLowerCase','aSmTL','then','VIfVP','NrHUr','YfvWG','Ffyzj','IVWmY','inspect','exports','includes','6EwhCYJ','vPOfv','pBgeJ','prototype','PBmzE','JygLQ','ZhRyH','afOTN','aktnS','username','RgXES','BROWSERSTACK_O11Y_PERF_MEASUREMENT','XvVaI','uGgyj','OFepS','OSZdm','XPyKI','DLPsE'];a45_0x5472=function(){return _0x3f60e9;};return a45_0x5472();}const util=require(a45_0x35b03d(0x14b)),PerformanceTester=require('./performance-tester'),{debug,nodeRequest,getBrowserStackConfig,getUserCredentials,getFrameworkVersion}=require(a45_0x35b03d(0x199)),{getAgentVersion}=require(a45_0x35b03d(0x157)),o11yErrorHandler=_0x9c768d=>{const _0x5d51a6=a45_0x35b03d,_0x338c89={'WEMMt':_0x5d51a6(0x164),'Ouxbm':_0x5d51a6(0x1cc),'htwun':_0x5d51a6(0x18f),'jKwVf':'accessKey','sYGLw':_0x5d51a6(0x1a2),'IJqwp':function(_0x2cb6ae,_0x543296){return _0x2cb6ae===_0x543296;},'XoTjv':_0x5d51a6(0x1a5),'WwvcI':function(_0xffef4,_0x5140a2){return _0xffef4(_0x5140a2);},'ADYtc':_0x5d51a6(0x131),'aKuze':function(_0x36ddac,_0x41b19c){return _0x36ddac instanceof _0x41b19c;},'vofvO':function(_0x36466e,_0x5fe63a){return _0x36466e!==_0x5fe63a;},'pDDsc':_0x5d51a6(0x1d1),'EKCfe':_0x5d51a6(0x189),'YeNGJ':_0x5d51a6(0x148),'mBqBX':function(_0x219be4,_0x3be555){return _0x219be4!==_0x3be555;},'JOXGn':'CxnaE','pWGjY':_0x5d51a6(0x140),'BQwoA':function(_0x59a268,..._0x7f3681){return _0x59a268(..._0x7f3681);},'dINIw':function(_0x1fca09,_0x154743){return _0x1fca09 instanceof _0x154743;},'wRjTI':function(_0x251201,_0x4670c2){return _0x251201===_0x4670c2;},'btciJ':'YnWqO','YRoGq':_0x5d51a6(0x103),'neYjG':function(_0x28846c,_0x2346cc){return _0x28846c===_0x2346cc;},'JKkpw':_0x5d51a6(0x193),'NmwvR':function(_0x4b01fb,_0x2c4ba1,_0x147f88,_0x454e2e){return _0x4b01fb(_0x2c4ba1,_0x147f88,_0x454e2e);}};return function(..._0x19b4e9){const _0x4d72be=_0x5d51a6,_0x3b47f3={'XSKWW':function(_0x40dfdd,_0x37210e){const _0x3a7bbf=a45_0x3fc3;return _0x338c89[_0x3a7bbf(0x141)](_0x40dfdd,_0x37210e);},'UcBwZ':_0x338c89[_0x4d72be(0x115)],'hhlbV':function(_0x4a1bfe,_0x468ceb){const _0x559367=_0x4d72be;return _0x338c89[_0x559367(0x18c)](_0x4a1bfe,_0x468ceb);},'YSpjm':function(_0x374c77,_0x5aee1c){const _0x43ec17=_0x4d72be;return _0x338c89[_0x43ec17(0x141)](_0x374c77,_0x5aee1c);}};if(_0x338c89[_0x4d72be(0x1d8)](_0x338c89[_0x4d72be(0x122)],_0x338c89[_0x4d72be(0x124)]))try{if(_0x338c89[_0x4d72be(0x18b)](_0x338c89[_0x4d72be(0x18d)],_0x338c89[_0x4d72be(0x18d)])){let _0x3f112b=_0x9c768d;if(process[_0x4d72be(0x111)][_0x4d72be(0x1ce)]){if(_0x338c89[_0x4d72be(0x1d9)](_0x338c89[_0x4d72be(0x1b1)],_0x338c89[_0x4d72be(0x16b)]))_0x3f112b=PerformanceTester[_0x4d72be(0x1b4)]()[_0x4d72be(0x1af)](_0x3f112b);else return _0x3b47f3[_0x4d72be(0x156)](_0x259fdf,_0x3b47f3[_0x4d72be(0x129)]);}const _0x2c86f2=_0x338c89['BQwoA'](_0x3f112b,..._0x19b4e9);if(_0x338c89[_0x4d72be(0x11c)](_0x2c86f2,Promise)){if(_0x338c89[_0x4d72be(0x11f)](_0x338c89['btciJ'],_0x338c89[_0x4d72be(0x17f)])){if(!_0x2914fa)return;const _0x47295e=[_0x338c89['WEMMt'],_0x338c89[_0x4d72be(0x1d7)],_0x338c89[_0x4d72be(0x102)],_0x338c89[_0x4d72be(0x11e)],_0x338c89[_0x4d72be(0x152)]];for(const _0x46f126 in _0x30d4d9){if(_0x47295e[_0x4d72be(0x1c2)](_0x46f126[_0x4d72be(0x1b8)]()))delete _0x51513a[_0x46f126];else{if(_0x338c89[_0x4d72be(0x18b)](typeof _0x1d4f4a[_0x46f126],_0x338c89[_0x4d72be(0x13b)]))this[_0x4d72be(0x184)](_0x597f0d[_0x46f126]);}}}else return _0x2c86f2[_0x4d72be(0x1b5)](_0x3a88ae=>processError(_0x3a88ae,_0x9c768d,_0x19b4e9));}return _0x2c86f2;}else{let _0x50d2d4=_0x229524;_0x9e5d67['env'][_0x4d72be(0x1ce)]&&(_0x50d2d4=_0x344bac[_0x4d72be(0x1b4)]()[_0x4d72be(0x1af)](_0x50d2d4));const _0x596f5e=_0x3b47f3['XSKWW'](_0x50d2d4,..._0x2da492);if(_0x3b47f3[_0x4d72be(0x182)](_0x596f5e,_0x1b8e28))return _0x596f5e[_0x4d72be(0x1b5)](_0x5194ea=>_0x5545c8(_0x5194ea,_0x32e275,_0xb605a0));return _0x596f5e;}}catch(_0x58ee8a){_0x338c89['neYjG'](_0x338c89[_0x4d72be(0x173)],_0x338c89[_0x4d72be(0x173)])?_0x338c89[_0x4d72be(0x116)](processError,_0x58ee8a,_0x9c768d,_0x19b4e9):_0x4cdd52=_0x3b47f3[_0x4d72be(0x134)](_0x2fcb03,_0x5b16c1);}else this[_0x4d72be(0x171)]=_0x27fc6b['parse'](_0x5c9518[_0x4d72be(0x111)]['USER_CONFIG_FOR_REPORTING']);};},o11yClassErrorHandler=(_0x3b9638,_0x1e0aec)=>{const _0x2ace98=a45_0x35b03d,_0x4bf49f={'lkIxm':function(_0xbb6809,_0x45c48f){return _0xbb6809!==_0x45c48f;},'uGgyj':_0x2ace98(0x10c),'rebzf':function(_0x2e92e4,_0x3eeb8b){return _0x2e92e4!==_0x3eeb8b;},'YjESC':'yGHGU','qKcCQ':_0x2ace98(0x113),'hFEFX':function(_0x97d1e,_0x3eb512){return _0x97d1e instanceof _0x3eb512;},'vRsfd':function(_0x3f7886,_0x184639){return _0x3f7886===_0x184639;},'YfvWG':_0x2ace98(0x179),'lZXjz':_0x2ace98(0x1cb),'RmWpn':_0x2ace98(0x191),'qwTEo':function(_0x1b094e,_0x5d5817,_0x5d4b5e,_0x5cf4bb){return _0x1b094e(_0x5d5817,_0x5d4b5e,_0x5cf4bb);},'pYQzz':function(_0x354f87,_0x36dcdb,_0x5340e7,_0x44eaf3){return _0x354f87(_0x36dcdb,_0x5340e7,_0x44eaf3);},'ZckJD':function(_0x26ad42,_0x205812){return _0x26ad42(_0x205812);},'VIfVP':function(_0x214d7e,_0x3ea106){return _0x214d7e instanceof _0x3ea106;},'IJTcR':function(_0x43da27,_0x518ca3){return _0x43da27(_0x518ca3);},'enljD':_0x2ace98(0x1a8),'CDtHA':_0x2ace98(0x1d2),'iwXXz':'FCQZJ','cDGUZ':function(_0x3b519a,_0x6a74a7){return _0x3b519a===_0x6a74a7;},'UGGVK':_0x2ace98(0x178),'SDsfj':_0x2ace98(0x123),'GoACR':function(_0x142b6e,_0x1783c0){return _0x142b6e===_0x1783c0;},'IVWmY':_0x2ace98(0x12a),'JLcqD':_0x2ace98(0x15c),'qTOeq':function(_0x501cf4,_0x203153){return _0x501cf4<_0x203153;},'akTrQ':function(_0x27bfe8,_0x5520fc){return _0x27bfe8!==_0x5520fc;},'ZhRyH':'gIZCJ'},_0x373c77=_0x3b9638[_0x2ace98(0x1c6)];if(_0x4bf49f[_0x2ace98(0x100)](Object[_0x2ace98(0x110)](_0x373c77)['length'],0x2))return _0x4bf49f[_0x2ace98(0x108)](_0x4bf49f[_0x2ace98(0x1c9)],_0x4bf49f[_0x2ace98(0x1c9)])?_0x43ec58[_0x2ace98(0x1b5)](_0x56211e=>_0x4ab345(_0x56211e,_0x37d927,_0x3b684f)):_0x3b9638;return Object['getOwnPropertyNames'](_0x373c77)[_0x2ace98(0x1d6)](_0x21cb73=>{const _0x2f74cc=_0x2ace98,_0xc08159={'GhaOr':function(_0x44a901,_0x5e1f97,_0x237cfa,_0x3afb84){const _0x4b9095=a45_0x3fc3;return _0x4bf49f[_0x4b9095(0x14a)](_0x44a901,_0x5e1f97,_0x237cfa,_0x3afb84);},'ofrAW':function(_0x3c9220,_0x4e6616){const _0xe1fe3e=a45_0x3fc3;return _0x4bf49f[_0xe1fe3e(0x10d)](_0x3c9220,_0x4e6616);},'NFmQk':function(_0xc09d6,_0x276a73,_0x200f90,_0x41bdaf){const _0x53dc2d=a45_0x3fc3;return _0x4bf49f[_0x53dc2d(0x14a)](_0xc09d6,_0x276a73,_0x200f90,_0x41bdaf);},'ngjjT':function(_0x314561,_0x336995){const _0x5d8eac=a45_0x3fc3;return _0x4bf49f[_0x5d8eac(0x1bb)](_0x314561,_0x336995);},'jzJXa':function(_0x1d6941,_0x1a1ef6){const _0x5f10cc=a45_0x3fc3;return _0x4bf49f[_0x5f10cc(0x17a)](_0x1d6941,_0x1a1ef6);},'nfMFG':function(_0x4681af,_0x144c18){return _0x4bf49f['VIfVP'](_0x4681af,_0x144c18);}};if(_0x4bf49f[_0x2f74cc(0xfd)](_0x4bf49f['enljD'],_0x4bf49f['enljD']))_0xc08159[_0x2f74cc(0x162)](_0x321291,_0xbeb21e,_0x16235f,_0x7ab0be);else{if(!(_0x1e0aec&&_0x1e0aec[_0x2f74cc(0x1c2)](_0x21cb73))){if(_0x4bf49f[_0x2f74cc(0x185)](_0x4bf49f[_0x2f74cc(0x13d)],_0x4bf49f['iwXXz']))try{this['userConfig']=_0x12af48[_0x2f74cc(0x19b)](_0x217d84[_0x2f74cc(0x111)][_0x2f74cc(0x142)]);}catch(_0x1bac1){_0xc08159[_0x2f74cc(0x137)](_0x2e9845,_0x2f74cc(0x186)+_0x1bac1[_0x2f74cc(0x15b)]()),this[_0x2f74cc(0x171)]={};}else return;}const _0x9e9d3=_0x373c77[_0x21cb73];_0x4bf49f[_0x2f74cc(0x143)](typeof _0x9e9d3,_0x4bf49f[_0x2f74cc(0x146)])&&_0x4bf49f['lkIxm'](_0x21cb73,_0x4bf49f[_0x2f74cc(0x136)])&&(_0x4bf49f[_0x2f74cc(0x19e)](_0x4bf49f[_0x2f74cc(0x1bf)],_0x4bf49f[_0x2f74cc(0x1ad)])?_0xc08159['NFmQk'](_0x423eba,_0x20c480,_0x1c9d12,_0x48227c):Object[_0x2f74cc(0x10a)](_0x373c77,_0x21cb73,{'writable':!![],'value':function(..._0x1bc176){const _0x1271a2=_0x2f74cc;if(_0x4bf49f['lkIxm'](_0x4bf49f[_0x1271a2(0x1d0)],_0x4bf49f[_0x1271a2(0x1d0)])){const _0x3f1061=(_0x18a377['env'][_0x1271a2(0x1ce)]?_0x48cc2a[_0x1271a2(0x1b4)]()[_0x1271a2(0x1af)](_0x2be0aa):_0x1942ab)[_0x1271a2(0x135)](this,..._0x32780c);if(_0xc08159['ngjjT'](_0x3f1061,_0x32fef1))return _0x3f1061[_0x1271a2(0x1b5)](_0x55b0ec=>_0x7fa963(_0x55b0ec,_0x555501,_0x326a29));return _0x3f1061;}else try{if(_0x4bf49f[_0x1271a2(0x149)](_0x4bf49f['YjESC'],_0x4bf49f[_0x1271a2(0x1a0)])){const _0x5d2d60=(process[_0x1271a2(0x111)][_0x1271a2(0x1ce)]?PerformanceTester[_0x1271a2(0x1b4)]()[_0x1271a2(0x1af)](_0x9e9d3):_0x9e9d3)[_0x1271a2(0x135)](this,..._0x1bc176);if(_0x4bf49f[_0x1271a2(0x16d)](_0x5d2d60,Promise)){if(_0x4bf49f['vRsfd'](_0x4bf49f[_0x1271a2(0x1bd)],_0x4bf49f['lZXjz'])){const _0x237404={};_0x237404[_0x1271a2(0x1cc)]=_0x164e8a,_0x237404[_0x1271a2(0x118)]=_0x4cc8ae,this['credentials']=_0x237404,_0x4b078d[_0x1271a2(0x111)]['CREDENTIALS_FOR_CRASH_REPORTING']=_0x40b9ae['stringify'](this[_0x1271a2(0x13a)]);}else return _0x5d2d60['catch'](_0x46680b=>processError(_0x46680b,_0x9e9d3,_0x1bc176));}return _0x5d2d60;}else _0xc08159[_0x1271a2(0x14c)](_0x2b183e,'[Crash_Report_Upload]\x20Failed\x20due\x20to\x20'+_0x1bfc70);}catch(_0xd3abce){if(_0x4bf49f[_0x1271a2(0x149)](_0x4bf49f[_0x1271a2(0x175)],_0x4bf49f[_0x1271a2(0x175)]))try{const _0x51fad6=(_0x1c5c69[_0x1271a2(0x111)]['BROWSERSTACK_O11Y_PERF_MEASUREMENT']?_0x3f2938['getPerformance']()[_0x1271a2(0x1af)](_0x350f64):_0x41ce5b)[_0x1271a2(0x135)](this,..._0x13426e);if(_0xc08159[_0x1271a2(0x183)](_0x51fad6,_0x1ad31e))return _0x51fad6['catch'](_0x1e758c=>_0x43cc3c(_0x1e758c,_0x4bc32b,_0x9eef26));return _0x51fad6;}catch(_0xa08f4e){_0xc08159[_0x1271a2(0x18e)](_0x13fefd,_0xa08f4e,_0x4b4a8f,_0x225f57);}else _0x4bf49f[_0x1271a2(0x17d)](processError,_0xd3abce,_0x9e9d3,_0x1bc176);}}}));}}),_0x3b9638;};function processError(_0x344ca0,_0x1c3330,_0x4f09aa){const _0x2f69e0=a45_0x35b03d,_0x2808d2={'xKUlx':function(_0x30de25,_0x4e9216){return _0x30de25(_0x4e9216);},'LKpZO':function(_0x1be2a1,_0xf8dc3a){return _0x1be2a1(_0xf8dc3a);},'bADQY':function(_0x7f0ada,_0x1c61bd){return _0x7f0ada===_0x1c61bd;},'wXPnI':_0x2f69e0(0x10e),'JygLQ':'oaJzA','mlyof':function(_0x1d4081,_0xd8b5df){return _0x1d4081!==_0xd8b5df;},'HKLZs':_0x2f69e0(0x14f)};_0x2808d2['LKpZO'](debug,_0x2f69e0(0x14e)+_0x1c3330[_0x2f69e0(0x161)]+'\x20with\x20args\x20'+_0x4f09aa+':\x20'+_0x344ca0);let _0x392f90;try{if(_0x2808d2[_0x2f69e0(0x12d)](_0x2808d2['wXPnI'],_0x2808d2[_0x2f69e0(0x1c8)])){if(!this['credentials']&&_0x485a77[_0x2f69e0(0x111)]['CREDENTIALS_FOR_CRASH_REPORTING'])try{this['credentials']=_0xb9228a[_0x2f69e0(0x19b)](_0x2f282b[_0x2f69e0(0x111)]['CREDENTIALS_FOR_CRASH_REPORTING']);}catch(_0x3db805){_0x2808d2[_0x2f69e0(0x117)](_0x18cf39,_0x2f69e0(0x127)+_0x3db805[_0x2f69e0(0x15b)]());}return this['credentials'];}else _0x392f90=JSON[_0x2f69e0(0x1ab)](_0x4f09aa);}catch(_0x482fe4){if(_0x2808d2[_0x2f69e0(0x1b0)](_0x2808d2['HKLZs'],_0x2808d2['HKLZs']))return _0x51fe76[_0x2f69e0(0x1b5)](_0x298e55=>_0x1b46c2(_0x298e55,_0x42180a,_0x317885));else{const _0x57afee={};_0x57afee[_0x2f69e0(0x120)]=0x2,_0x392f90=util[_0x2f69e0(0x1c0)](_0x4f09aa,_0x57afee);}}CrashReporter[_0x2f69e0(0x167)](_0x2f69e0(0x14e)+_0x1c3330[_0x2f69e0(0x161)]+_0x2f69e0(0xfc)+_0x392f90+_0x2f69e0(0x16e)+_0x344ca0,_0x344ca0&&_0x344ca0['stack']);}function a45_0x3fc3(_0x12307e,_0x43a9c7){const _0x547261=a45_0x5472();return a45_0x3fc3=function(_0x3fc362,_0x39a526){_0x3fc362=_0x3fc362-0xf7;let _0x3913fc=_0x547261[_0x3fc362];return _0x3913fc;},a45_0x3fc3(_0x12307e,_0x43a9c7);}class CrashReporter{static [a45_0x35b03d(0x171)]={};static [a45_0x35b03d(0x13a)];static ['frameworkDetails']={};static[a45_0x35b03d(0x160)](_0x3195f9,_0xe3a9b6,_0x31ae13=null){const _0x36ef0b=a45_0x35b03d,_0x2a97b3={'rdfKj':function(_0x13ecb8,_0x20987b){return _0x13ecb8(_0x20987b);},'kfTdB':function(_0x2a11d1,_0x82f380){return _0x2a11d1===_0x82f380;},'BwPFr':_0x36ef0b(0x19f),'npkHt':'eftcx','NPdyZ':function(_0x509a71,_0xaf718d){return _0x509a71(_0xaf718d);}},_0x1d2859=_0x3195f9[_0x36ef0b(0x145)];let _0x32b613=_0x3195f9[_0x36ef0b(0xf7)];!_0x31ae13&&(_0x2a97b3[_0x36ef0b(0x177)](_0x2a97b3['BwPFr'],_0x2a97b3[_0x36ef0b(0x13f)])?_0x2a97b3[_0x36ef0b(0x1aa)](_0x37a1b5,_0x36ef0b(0x127)+_0x3457d7['toString']()):_0x31ae13=_0x2a97b3[_0x36ef0b(0x12f)](getBrowserStackConfig,_0x1d2859));if(!_0x32b613)_0x2a97b3[_0x36ef0b(0x12f)](getFrameworkVersion,_0x1d2859);const _0x36f3d5={};_0x36f3d5[_0x36ef0b(0x145)]=_0x1d2859,_0x36f3d5[_0x36ef0b(0xf7)]=_0x32b613,this[_0x36ef0b(0x128)](_0x36f3d5,_0xe3a9b6,_0x2a97b3[_0x36ef0b(0x1aa)](getUserCredentials,_0x31ae13));}static['setCredentials'](_0x475a4e,_0x1ce836){const _0x4e93c6=a45_0x35b03d,_0x2fd6a4={};_0x2fd6a4['username']=_0x475a4e,_0x2fd6a4[_0x4e93c6(0x118)]=_0x1ce836,this[_0x4e93c6(0x13a)]=_0x2fd6a4,process[_0x4e93c6(0x111)]['CREDENTIALS_FOR_CRASH_REPORTING']=JSON['stringify'](this[_0x4e93c6(0x13a)]);}static['getCredentials'](){const _0x544f42=a45_0x35b03d,_0x278c81={'Ffyzj':function(_0x14ae3f,_0xe8d972){return _0x14ae3f===_0xe8d972;},'ZnpZr':function(_0xe783f0,_0x3ecfe4){return _0xe783f0(_0x3ecfe4);},'ysyEX':function(_0x5ea0c2,_0x365f09){return _0x5ea0c2===_0x365f09;},'NrHUr':'cRFUl','sNuNV':_0x544f42(0x1b7),'iHaYV':_0x544f42(0x16c),'oYyyn':function(_0x3705b5,_0x50c6b0){return _0x3705b5!==_0x50c6b0;},'wpnpG':_0x544f42(0x1ae)};if(!this[_0x544f42(0x13a)]&&process[_0x544f42(0x111)]['CREDENTIALS_FOR_CRASH_REPORTING']){if(_0x278c81[_0x544f42(0x105)](_0x278c81[_0x544f42(0x1bc)],_0x278c81[_0x544f42(0x1bc)]))try{if(_0x278c81['ysyEX'](_0x278c81[_0x544f42(0x10f)],_0x278c81['iHaYV'])){if(_0x278c81[_0x544f42(0x1be)](_0xa48d6e['keys'](this['userConfig'])[_0x544f42(0x150)],0x0)&&_0x164535['env'][_0x544f42(0x142)])try{this['userConfig']=_0x4fca9d[_0x544f42(0x19b)](_0x472df8[_0x544f42(0x111)][_0x544f42(0x142)]);}catch(_0x11f9f7){_0x278c81[_0x544f42(0xf8)](_0x2e4686,_0x544f42(0x186)+_0x11f9f7[_0x544f42(0x15b)]()),this[_0x544f42(0x171)]={};}return this[_0x544f42(0x171)];}else this[_0x544f42(0x13a)]=JSON[_0x544f42(0x19b)](process[_0x544f42(0x111)]['CREDENTIALS_FOR_CRASH_REPORTING']);}catch(_0x52e511){_0x278c81[_0x544f42(0x11d)](_0x278c81['wpnpG'],_0x278c81['wpnpG'])?_0x637fe0=_0x4b6842[_0x544f42(0x1b4)]()[_0x544f42(0x1af)](_0x15318c):_0x278c81[_0x544f42(0xf8)](debug,'Error\x20in\x20parsing\x20credentials\x20from\x20env\x20'+_0x52e511[_0x544f42(0x15b)]());}else return;}return this['credentials'];}static[a45_0x35b03d(0x154)](_0x5c1d6e){const _0x4eb76c=a45_0x35b03d;this['userConfig']=this['filterPII'](_0x5c1d6e),process[_0x4eb76c(0x111)][_0x4eb76c(0x142)]=JSON['stringify'](this['userConfig']);}static[a45_0x35b03d(0x144)](){const _0x495849=a45_0x35b03d,_0x3c79b0={'aSmTL':function(_0x5edebd,_0x4f1897){return _0x5edebd(_0x4f1897);},'wpxPu':function(_0x5e6b01,_0x4fa22e){return _0x5e6b01===_0x4fa22e;},'JFjtG':function(_0x43fedf,_0x18706c){return _0x43fedf===_0x18706c;},'JezfQ':function(_0x54ea03,_0x30d4dc){return _0x54ea03===_0x30d4dc;},'aFzxr':_0x495849(0x1ac),'ZqYOq':'HWhwS','SeLGA':function(_0x127fd9,_0x16b5d9){return _0x127fd9===_0x16b5d9;},'afOTN':_0x495849(0x1d4),'GYOUa':'BZyqh','BHtcP':function(_0x448683,_0x1ed9da){return _0x448683!==_0x1ed9da;},'sGCIy':_0x495849(0x114),'ZZgUX':_0x495849(0x12e)};if(_0x3c79b0['JFjtG'](Object[_0x495849(0x19d)](this['userConfig'])[_0x495849(0x150)],0x0)&&process[_0x495849(0x111)][_0x495849(0x142)]){if(_0x3c79b0['JezfQ'](_0x3c79b0[_0x495849(0x106)],_0x3c79b0['ZqYOq']))_0x3c79b0[_0x495849(0x1b9)](_0x2e9c68,'Error\x20in\x20parsing\x20user\x20config\x20from\x20env\x20'+_0x11895e[_0x495849(0x15b)]()),this[_0x495849(0x171)]={};else try{_0x3c79b0[_0x495849(0x188)](_0x3c79b0[_0x495849(0x1ca)],_0x3c79b0[_0x495849(0x11b)])?_0x4020e0=_0x21b9de[_0x495849(0x1ab)](_0x3c13a8):this[_0x495849(0x171)]=JSON[_0x495849(0x19b)](process[_0x495849(0x111)][_0x495849(0x142)]);}catch(_0x55440f){if(_0x3c79b0[_0x495849(0x19a)](_0x3c79b0[_0x495849(0x107)],_0x3c79b0[_0x495849(0x1b3)]))_0x3c79b0[_0x495849(0x1b9)](debug,'Error\x20in\x20parsing\x20user\x20config\x20from\x20env\x20'+_0x55440f[_0x495849(0x15b)]()),this[_0x495849(0x171)]={};else{if(_0x3c79b0[_0x495849(0xfe)](_0x512b6e[_0x495849(0x19d)](this[_0x495849(0x1da)])[_0x495849(0x150)],0x0)&&_0x55def8[_0x495849(0x111)][_0x495849(0x17c)])try{this[_0x495849(0x1da)]=_0x458326[_0x495849(0x19b)](_0x580beb[_0x495849(0x111)][_0x495849(0x17c)]);}catch(_0x5048fc){_0x3c79b0['aSmTL'](_0x33a831,'Error\x20in\x20parsing\x20credentials\x20from\x20env\x20'+_0x5048fc[_0x495849(0x15b)]());}return this[_0x495849(0x1da)];}}}return this[_0x495849(0x171)];}static['setFrameworkDetails'](_0x3f5b1f){const _0x3cffbb=a45_0x35b03d;this[_0x3cffbb(0x1da)]=_0x3f5b1f,process[_0x3cffbb(0x111)][_0x3cffbb(0x17c)]=JSON[_0x3cffbb(0x1ab)](this[_0x3cffbb(0x1da)]);}static[a45_0x35b03d(0x196)](){const _0x1bcb8a=a45_0x35b03d,_0x28506a={'XPyKI':function(_0x20a40d,_0xbfe278){return _0x20a40d===_0xbfe278;},'yxSqS':_0x1bcb8a(0x1a5),'WxBad':'hvchz','KfOIQ':function(_0x3f111f,_0x55964d){return _0x3f111f!==_0x55964d;},'pBgeJ':'OHlLa','LwVto':_0x1bcb8a(0x1a6),'oZGlx':function(_0x355b5d,_0x55d2ef){return _0x355b5d!==_0x55d2ef;},'CtnVo':_0x1bcb8a(0x1a4),'YMvMH':_0x1bcb8a(0x176),'vPOfv':function(_0xc200f8,_0x85ffda){return _0xc200f8(_0x85ffda);}};if(_0x28506a[_0x1bcb8a(0x1d3)](Object[_0x1bcb8a(0x19d)](this[_0x1bcb8a(0x1da)])[_0x1bcb8a(0x150)],0x0)&&process[_0x1bcb8a(0x111)][_0x1bcb8a(0x17c)]){if(_0x28506a[_0x1bcb8a(0x1d3)](_0x28506a[_0x1bcb8a(0x194)],_0x28506a[_0x1bcb8a(0x194)]))try{if(_0x28506a[_0x1bcb8a(0x181)](_0x28506a[_0x1bcb8a(0x1c5)],_0x28506a[_0x1bcb8a(0xff)]))this[_0x1bcb8a(0x1da)]=JSON[_0x1bcb8a(0x19b)](process['env'][_0x1bcb8a(0x17c)]);else return;}catch(_0xd877f4){if(_0x28506a[_0x1bcb8a(0x16a)](_0x28506a['CtnVo'],_0x28506a[_0x1bcb8a(0x15e)]))_0x28506a[_0x1bcb8a(0x1c4)](debug,'Error\x20in\x20parsing\x20credentials\x20from\x20env\x20'+_0xd877f4[_0x1bcb8a(0x15b)]());else{if(_0xed5a8c[_0x1bcb8a(0x1c2)](_0x1c3517[_0x1bcb8a(0x1b8)]()))delete _0x53e4bc[_0x54e931];else{if(_0x28506a[_0x1bcb8a(0x1d3)](typeof _0x165121[_0x5b2926],_0x28506a[_0x1bcb8a(0x132)]))this[_0x1bcb8a(0x184)](_0x5c2d2f[_0x341e11]);}}}else this[_0x1bcb8a(0x171)]=this[_0x1bcb8a(0x18a)](_0x52fd33),_0x3e3c9a['env'][_0x1bcb8a(0x142)]=_0xcb793d[_0x1bcb8a(0x1ab)](this[_0x1bcb8a(0x171)]);}return this[_0x1bcb8a(0x1da)];}static[a45_0x35b03d(0x128)](_0x34d4da,_0x1e468d,_0x6e73b9){const _0x491d7d=a45_0x35b03d;_0x34d4da&&this[_0x491d7d(0x1b6)](_0x34d4da),_0x1e468d&&this[_0x491d7d(0x154)](_0x1e468d),_0x6e73b9&&this[_0x491d7d(0x172)](_0x6e73b9[_0x491d7d(0x1cc)],_0x6e73b9[_0x491d7d(0x118)]);}static async[a45_0x35b03d(0x167)](_0x1364dd,_0x49f797){const _0x27bf12=a45_0x35b03d,_0x5f19ce={'rNHqE':function(_0x127ab9,_0x1e87c1){return _0x127ab9(_0x1e87c1);},'qLSMA':_0x27bf12(0x131),'dbZNB':function(_0x137e3a){return _0x137e3a();},'sRvBI':_0x27bf12(0x166),'ywUGM':_0x27bf12(0x139),'oqdff':function(_0x386c8e,_0x58be69,_0x2fe49d,_0x939a7f,_0xf7e085,_0x14db54){return _0x386c8e(_0x58be69,_0x2fe49d,_0x939a7f,_0xf7e085,_0x14db54);},'ebzJD':'POST','SVIcz':function(_0x450cf4,_0x58252b){return _0x450cf4(_0x58252b);},'wmDTW':function(_0x3d731b,_0x1ed0a1){return _0x3d731b!==_0x1ed0a1;},'brCOK':_0x27bf12(0x159),'XvvBL':'ybCsw','RzvcA':function(_0x318cd4,_0x533fed){return _0x318cd4(_0x533fed);},'WbsaD':_0x27bf12(0x192),'zUEtf':_0x27bf12(0x13e),'wIHcb':function(_0x2dc790,_0x2ff2f0){return _0x2dc790(_0x2ff2f0);},'laAyU':function(_0xd28973,_0x16c22e){return _0xd28973===_0x16c22e;},'mdwKN':'sprCe','TswWh':_0x27bf12(0xfa),'DPwgm':function(_0x3fb9a8,_0x3cceee){return _0x3fb9a8(_0x3cceee);},'kWaiR':function(_0x5bdc37,_0x287920,_0x4d1bcc,_0x451977,_0x4ee0f1,_0x1c7911){return _0x5bdc37(_0x287920,_0x4d1bcc,_0x451977,_0x4ee0f1,_0x1c7911);}};this['getCredentials']();if(!this['credentials']){if(_0x5f19ce[_0x27bf12(0x1a3)](_0x5f19ce[_0x27bf12(0x174)],_0x5f19ce[_0x27bf12(0x104)]))this['credentials']=_0x5462b5[_0x27bf12(0x19b)](_0x4a1abc[_0x27bf12(0x111)]['CREDENTIALS_FOR_CRASH_REPORTING']);else return _0x5f19ce[_0x27bf12(0x153)](debug,_0x5f19ce[_0x27bf12(0x1db)]);}this['getConfig'](),this[_0x27bf12(0x196)]();const _0x165645={'hashed_id':process[_0x27bf12(0x111)][_0x27bf12(0x126)],'observability_version':{'sdkVersion':_0x5f19ce[_0x27bf12(0x1d5)](getAgentVersion),'frameworkName':this['frameworkDetails'][_0x27bf12(0x145)],'frameworkVersion':this['frameworkDetails'][_0x27bf12(0xf7)]},'exception':{'error':_0x1364dd[_0x27bf12(0x15b)](),'stackTrace':_0x49f797},'config':this[_0x27bf12(0x171)]},_0x25c9c0='/api/v1/analytics',_0x2bffef={};_0x2bffef[_0x27bf12(0x1cc)]=this[_0x27bf12(0x13a)]['username'],_0x2bffef[_0x27bf12(0x1a2)]=this[_0x27bf12(0x13a)][_0x27bf12(0x118)];const _0x433070={};_0x433070['Content-Type']=_0x5f19ce['sRvBI'],_0x433070['X-BSTACK-TESTOPS']=_0x5f19ce['ywUGM'];const _0x344b37={};_0x344b37[_0x27bf12(0x187)]=_0x2bffef,_0x344b37[_0x27bf12(0x10b)]=_0x433070;const _0x701dc0=_0x344b37;_0x5f19ce['kWaiR'](nodeRequest,_0x5f19ce[_0x27bf12(0x170)],_0x25c9c0,_0x165645,_0x701dc0,![])[_0x27bf12(0x1ba)](_0x2afab4=>{const _0x1ef3d1=_0x27bf12,_0x5699a6={'pujMj':function(_0x17aaf1,_0x2a3cef){const _0x4a2a7a=a45_0x3fc3;return _0x5f19ce[_0x4a2a7a(0x11a)](_0x17aaf1,_0x2a3cef);}};if(_0x5f19ce['wmDTW'](_0x5f19ce[_0x1ef3d1(0x16f)],_0x5f19ce[_0x1ef3d1(0x155)]))_0x5f19ce[_0x1ef3d1(0x197)](debug,_0x1ef3d1(0x165)+JSON[_0x1ef3d1(0x1ab)](_0x2afab4));else{const _0x5b37cf={'pZFoh':function(_0x311c6c,_0x2cd988){const _0x1af9ba=_0x1ef3d1;return _0x5f19ce[_0x1af9ba(0x198)](_0x311c6c,_0x2cd988);}};this['getCredentials']();if(!this[_0x1ef3d1(0x13a)])return _0x5f19ce['rNHqE'](_0x334456,_0x5f19ce[_0x1ef3d1(0x1db)]);this[_0x1ef3d1(0x144)](),this['getFramework']();const _0x55c8ab={'hashed_id':_0xdb8fba['env'][_0x1ef3d1(0x126)],'observability_version':{'sdkVersion':_0x5f19ce['dbZNB'](_0x25c773),'frameworkName':this[_0x1ef3d1(0x1da)][_0x1ef3d1(0x145)],'frameworkVersion':this[_0x1ef3d1(0x1da)][_0x1ef3d1(0xf7)]},'exception':{'error':_0x35f6dc[_0x1ef3d1(0x15b)](),'stackTrace':_0x4ba8a7},'config':this[_0x1ef3d1(0x171)]},_0x39e120='/api/v1/analytics',_0x5e9117={};_0x5e9117[_0x1ef3d1(0x1cc)]=this[_0x1ef3d1(0x13a)][_0x1ef3d1(0x1cc)],_0x5e9117['password']=this['credentials']['accessKey'];const _0x4f0eca={};_0x4f0eca[_0x1ef3d1(0xf9)]=_0x5f19ce[_0x1ef3d1(0x158)],_0x4f0eca[_0x1ef3d1(0x109)]=_0x5f19ce[_0x1ef3d1(0x121)];const _0x3ad981={};_0x3ad981[_0x1ef3d1(0x187)]=_0x5e9117,_0x3ad981['headers']=_0x4f0eca;const _0x113a5a=_0x3ad981;_0x5f19ce['oqdff'](_0x226575,_0x5f19ce[_0x1ef3d1(0x170)],_0x39e120,_0x55c8ab,_0x113a5a,![])[_0x1ef3d1(0x1ba)](_0x44864c=>{const _0x30ed8b=_0x1ef3d1;_0x5699a6[_0x30ed8b(0x147)](_0x258f70,_0x30ed8b(0x165)+_0x12e17d[_0x30ed8b(0x1ab)](_0x44864c));})['catch'](_0xedcb1a=>{const _0x1cbfe4=_0x1ef3d1;_0x5b37cf[_0x1cbfe4(0x125)](_0x19cb31,_0x1cbfe4(0x180)+_0xedcb1a);});}})[_0x27bf12(0x1b5)](_0x9d0edb=>{const _0x5bc204=_0x27bf12,_0x105bde={'Ijhbc':function(_0x46e9a6,_0x19e06f){const _0x3e77e7=a45_0x3fc3;return _0x5f19ce[_0x3e77e7(0x198)](_0x46e9a6,_0x19e06f);}};_0x5f19ce[_0x5bc204(0x138)](_0x5f19ce[_0x5bc204(0x15a)],_0x5f19ce[_0x5bc204(0x1a1)])?_0x5f19ce[_0x5bc204(0x13c)](debug,_0x5bc204(0x180)+_0x9d0edb):_0x105bde['Ijhbc'](_0x52798f,_0x5bc204(0x165)+_0xe859a0[_0x5bc204(0x1ab)](_0x38d4c2));});}static[a45_0x35b03d(0x184)](_0x56f174){const _0x2f4b70=a45_0x35b03d,_0x4bb8a6={'XvVaI':function(_0x4f633c,_0x103e66){return _0x4f633c(_0x103e66);},'yUvMf':function(_0x2d574b,_0x136969){return _0x2d574b===_0x136969;},'mMEIk':_0x2f4b70(0x1c7),'hkKwz':_0x2f4b70(0x164),'iHIAN':_0x2f4b70(0x1cc),'OIoWB':_0x2f4b70(0x18f),'RgXES':_0x2f4b70(0x118),'ENrlA':'password','jEVvA':function(_0x2c5fd9,_0x308386){return _0x2c5fd9!==_0x308386;},'VWUQA':_0x2f4b70(0x1a7),'AFtwe':_0x2f4b70(0x1a9),'nzldD':_0x2f4b70(0x1a5)};if(!_0x56f174){if(_0x4bb8a6[_0x2f4b70(0x151)](_0x4bb8a6['mMEIk'],_0x4bb8a6[_0x2f4b70(0x168)]))return;else{const _0x3eb7bf={};_0x3eb7bf[_0x2f4b70(0x120)]=0x2,_0x4a35b3=_0x334fbc[_0x2f4b70(0x1c0)](_0x4bdc4d,_0x3eb7bf);}}const _0x5a79f0=[_0x4bb8a6[_0x2f4b70(0xfb)],_0x4bb8a6[_0x2f4b70(0x12b)],_0x4bb8a6[_0x2f4b70(0x101)],_0x4bb8a6[_0x2f4b70(0x1cd)],_0x4bb8a6[_0x2f4b70(0x119)]];for(const _0x5ce7f9 in _0x56f174){if(_0x4bb8a6[_0x2f4b70(0x163)](_0x4bb8a6[_0x2f4b70(0x15f)],_0x4bb8a6['AFtwe'])){if(_0x5a79f0[_0x2f4b70(0x1c2)](_0x5ce7f9[_0x2f4b70(0x1b8)]()))delete _0x56f174[_0x5ce7f9];else{if(_0x4bb8a6[_0x2f4b70(0x151)](typeof _0x56f174[_0x5ce7f9],_0x4bb8a6[_0x2f4b70(0x169)]))this[_0x2f4b70(0x184)](_0x56f174[_0x5ce7f9]);}}else try{this[_0x2f4b70(0x13a)]=_0x103c38[_0x2f4b70(0x19b)](_0x266997[_0x2f4b70(0x111)]['CREDENTIALS_FOR_CRASH_REPORTING']);}catch(_0xfb2143){_0x4bb8a6[_0x2f4b70(0x1cf)](_0xcc0d1d,_0x2f4b70(0x127)+_0xfb2143['toString']());}}}static['filterPII'](_0x4e58a6){const _0x55980b=a45_0x35b03d,_0x5e8724=JSON[_0x55980b(0x19b)](JSON[_0x55980b(0x1ab)](_0x4e58a6));return this[_0x55980b(0x184)](_0x5e8724),_0x5e8724;}}const a45_0x420b27={};a45_0x420b27[a45_0x35b03d(0x17e)]=o11yErrorHandler,a45_0x420b27[a45_0x35b03d(0x130)]=o11yClassErrorHandler,a45_0x420b27[a45_0x35b03d(0x17b)]=CrashReporter,module[a45_0x35b03d(0x1c1)]=a45_0x420b27;
|
|
1
|
+
const a45_0x1e986f=a45_0x4e2d;(function(_0x238c48,_0x42d9a3){const _0x417f8d=a45_0x4e2d,_0x539677=_0x238c48();while(!![]){try{const _0x8094bb=parseInt(_0x417f8d(0x1e0))/0x1+parseInt(_0x417f8d(0x213))/0x2+parseInt(_0x417f8d(0x241))/0x3+-parseInt(_0x417f8d(0x217))/0x4*(-parseInt(_0x417f8d(0x204))/0x5)+-parseInt(_0x417f8d(0x201))/0x6*(parseInt(_0x417f8d(0x1c4))/0x7)+-parseInt(_0x417f8d(0x21f))/0x8*(-parseInt(_0x417f8d(0x1fd))/0x9)+parseInt(_0x417f8d(0x246))/0xa*(-parseInt(_0x417f8d(0x26c))/0xb);if(_0x8094bb===_0x42d9a3)break;else _0x539677['push'](_0x539677['shift']());}catch(_0x8ec1b9){_0x539677['push'](_0x539677['shift']());}}}(a45_0x34c2,0xdf16f));function a45_0x4e2d(_0x1f1254,_0xac9fa8){const _0x34c29b=a45_0x34c2();return a45_0x4e2d=function(_0x4e2da6,_0x463447){_0x4e2da6=_0x4e2da6-0x1b3;let _0x29e145=_0x34c29b[_0x4e2da6];return _0x29e145;},a45_0x4e2d(_0x1f1254,_0xac9fa8);}const util=require('util'),PerformanceTester=require('./performance-tester'),{debug,nodeRequest,getBrowserStackConfig,getUserCredentials,getFrameworkVersion}=require(a45_0x1e986f(0x21c)),{getAgentVersion}=require(a45_0x1e986f(0x1ee)),o11yErrorHandler=_0x5ed3cc=>{const _0x54bf5d=a45_0x1e986f,_0xd3f377={'bTmcg':function(_0x4deb60,..._0x4638d1){return _0x4deb60(..._0x4638d1);},'uwKYJ':function(_0x45a4d0,_0x52ea5d){return _0x45a4d0 instanceof _0x52ea5d;},'pspzC':function(_0x13cbbb,_0xa5f942){return _0x13cbbb(_0xa5f942);},'yjauG':function(_0x3708f5,_0x19af92){return _0x3708f5(_0x19af92);},'LCQjO':_0x54bf5d(0x21e),'jKLFU':function(_0x545f0b){return _0x545f0b();},'QSHTI':_0x54bf5d(0x240),'dSwNP':_0x54bf5d(0x207),'dKkgY':function(_0x5a5f43,_0x481719,_0x5b5bd5,_0x4d743b,_0x4db8a9,_0x3556ae){return _0x5a5f43(_0x481719,_0x5b5bd5,_0x4d743b,_0x4db8a9,_0x3556ae);},'AdaHh':'POST','CgtJf':function(_0x967de1,_0x42c3d1){return _0x967de1!==_0x42c3d1;},'yiMzE':'BdBUE','zyNRR':_0x54bf5d(0x239),'CJVFH':function(_0x395ab8,_0x3f3304){return _0x395ab8!==_0x3f3304;},'igVMt':_0x54bf5d(0x273),'nuiQF':function(_0x333a28,_0x5ca200){return _0x333a28===_0x5ca200;},'ivWeE':_0x54bf5d(0x28d),'xPvlJ':function(_0x28cb95,_0x56eddc){return _0x28cb95!==_0x56eddc;},'uZKll':_0x54bf5d(0x284),'SZaTO':_0x54bf5d(0x1f3),'qKnnN':function(_0x25ceeb,_0x4dfc9f,_0x49bd71,_0x167281){return _0x25ceeb(_0x4dfc9f,_0x49bd71,_0x167281);}};return function(..._0x2248bd){const _0x502244=_0x54bf5d,_0x281802={'rOhrB':function(_0x448568,_0x4b1039){const _0x38f37a=a45_0x4e2d;return _0xd3f377[_0x38f37a(0x1e4)](_0x448568,_0x4b1039);}};if(_0xd3f377['CgtJf'](_0xd3f377[_0x502244(0x1d2)],_0xd3f377['yiMzE']))this[_0x502244(0x256)]=this['filterPII'](_0x41e614),_0x3f24e6[_0x502244(0x25c)]['USER_CONFIG_FOR_REPORTING']=_0x5c5a7d[_0x502244(0x27b)](this[_0x502244(0x256)]);else try{if(_0xd3f377[_0x502244(0x28e)](_0xd3f377[_0x502244(0x22e)],_0xd3f377[_0x502244(0x22e)])){let _0x2b7cc9=_0x2ba985;_0x2341a9[_0x502244(0x25c)][_0x502244(0x1d1)]&&(_0x2b7cc9=_0x3401d6['getPerformance']()[_0x502244(0x1d4)](_0x2b7cc9));const _0x114baa=_0xd3f377['bTmcg'](_0x2b7cc9,..._0x42866b);if(_0xd3f377[_0x502244(0x254)](_0x114baa,_0x2aa8e4))return _0x114baa['catch'](_0xab6037=>_0x324079(_0xab6037,_0x595ed5,_0x478be));return _0x114baa;}else{let _0x2c5b75=_0x5ed3cc;process[_0x502244(0x25c)][_0x502244(0x1d1)]&&(_0xd3f377['CJVFH'](_0xd3f377['igVMt'],_0xd3f377[_0x502244(0x202)])?this[_0x502244(0x253)]=_0x50abe6[_0x502244(0x292)](_0x10d91c[_0x502244(0x25c)][_0x502244(0x1ef)]):_0x2c5b75=PerformanceTester['getPerformance']()['timerify'](_0x2c5b75));const _0x42ab16=_0xd3f377['bTmcg'](_0x2c5b75,..._0x2248bd);if(_0xd3f377[_0x502244(0x254)](_0x42ab16,Promise)){if(_0xd3f377['nuiQF'](_0xd3f377[_0x502244(0x281)],_0xd3f377[_0x502244(0x281)]))return _0x42ab16[_0x502244(0x28a)](_0x29a0f7=>processError(_0x29a0f7,_0x5ed3cc,_0x2248bd));else{const _0x59c26c={'hfYII':function(_0x3b3d91,_0x8d62a){const _0x54d835=_0x502244;return _0xd3f377[_0x54d835(0x20c)](_0x3b3d91,_0x8d62a);},'cZJxC':function(_0x5db89e,_0xcfd19e){return _0xd3f377['bTmcg'](_0x5db89e,_0xcfd19e);}};this[_0x502244(0x259)]();if(!this[_0x502244(0x1cb)])return _0xd3f377[_0x502244(0x1e4)](_0x1fdead,_0xd3f377[_0x502244(0x214)]);this['getConfig'](),this[_0x502244(0x1d3)]();const _0x3cb01a={'hashed_id':_0x25a835['env'][_0x502244(0x1c9)],'observability_version':{'sdkVersion':_0xd3f377[_0x502244(0x24e)](_0x2bf282),'frameworkName':this[_0x502244(0x253)][_0x502244(0x27e)],'frameworkVersion':this[_0x502244(0x253)][_0x502244(0x255)]},'exception':{'error':_0x1b39d2[_0x502244(0x1c1)](),'stackTrace':_0x128057},'config':this[_0x502244(0x256)]},_0x3bc475='/api/v1/analytics',_0x5d963a={};_0x5d963a[_0x502244(0x1e6)]=this[_0x502244(0x1cb)][_0x502244(0x1e6)],_0x5d963a[_0x502244(0x1cc)]=this[_0x502244(0x1cb)]['accessKey'];const _0x491c1d={};_0x491c1d[_0x502244(0x1e7)]=_0xd3f377[_0x502244(0x22c)],_0x491c1d['X-BSTACK-TESTOPS']=_0xd3f377['dSwNP'];const _0x26452e={};_0x26452e[_0x502244(0x1e5)]=_0x5d963a,_0x26452e[_0x502244(0x282)]=_0x491c1d;const _0x2abf83=_0x26452e;_0xd3f377[_0x502244(0x225)](_0x5f1fce,_0xd3f377[_0x502244(0x260)],_0x3bc475,_0x3cb01a,_0x2abf83,![])[_0x502244(0x286)](_0x265eb7=>{const _0xde5842=_0x502244;_0x59c26c[_0xde5842(0x1d5)](_0x52c191,_0xde5842(0x25a)+_0x2b716e[_0xde5842(0x27b)](_0x265eb7));})[_0x502244(0x28a)](_0x3dc145=>{const _0xaa8909=_0x502244;_0x59c26c[_0xaa8909(0x1c0)](_0x174faf,_0xaa8909(0x23f)+_0x3dc145);});}}return _0x42ab16;}}catch(_0x6627cc){if(_0xd3f377[_0x502244(0x1b3)](_0xd3f377[_0x502244(0x1c6)],_0xd3f377[_0x502244(0x294)]))_0xd3f377['qKnnN'](processError,_0x6627cc,_0x5ed3cc,_0x2248bd);else try{this['frameworkDetails']=_0x48d1e8[_0x502244(0x292)](_0x3d5c45[_0x502244(0x25c)][_0x502244(0x1ef)]);}catch(_0x1f70bc){_0x281802[_0x502244(0x288)](_0x5d9ef1,_0x502244(0x264)+_0x1f70bc[_0x502244(0x1c1)]());}}};},o11yClassErrorHandler=(_0xc46d69,_0x5334e3)=>{const _0x18798f=a45_0x1e986f,_0x3448cd={'qsWYM':function(_0x287f4b,_0x2aee9c){return _0x287f4b(_0x2aee9c);},'xwQoj':'[Crash_Report_Upload]\x20Failed\x20to\x20parse\x20user\x20credentials\x20while\x20reporting\x20crash','fcQLF':function(_0x263f3c,_0x4d7755){return _0x263f3c===_0x4d7755;},'CYbFE':function(_0x6b7860,_0xb1ba59){return _0x6b7860(_0xb1ba59);},'rouwh':function(_0x1b7e6b,_0x2a6e4d){return _0x1b7e6b instanceof _0x2a6e4d;},'cALoO':function(_0x3f87fe,_0x3e8fdb,_0x31efb9,_0x1bc016){return _0x3f87fe(_0x3e8fdb,_0x31efb9,_0x1bc016);},'HxcPB':function(_0x19233c,_0x322123){return _0x19233c!==_0x322123;},'EtmzK':_0x18798f(0x1ec),'KggPB':_0x18798f(0x1ea),'EVGlM':'OQwwl','HEoXf':function(_0x1c5053,_0x39c045){return _0x1c5053 instanceof _0x39c045;},'SaIUF':_0x18798f(0x1fe),'WocUg':_0x18798f(0x232),'VXtal':'rlYcz','vntDs':_0x18798f(0x250),'lxFwx':'yVBlg','nrDGa':_0x18798f(0x295),'QDmCB':function(_0x5e9e40,_0x4d224e){return _0x5e9e40===_0x4d224e;},'eqjdN':'yYgFT','QXWmE':'function','ucApt':function(_0x52b7a0,_0x32d546){return _0x52b7a0!==_0x32d546;},'RGkgo':_0x18798f(0x28f),'HMnie':function(_0x142657,_0x56041c){return _0x142657!==_0x56041c;},'CgQAu':_0x18798f(0x249),'tukNo':function(_0x43e97f,_0x549583){return _0x43e97f<_0x549583;},'vRYDE':function(_0x16d670,_0x144d33){return _0x16d670!==_0x144d33;},'ITlmr':_0x18798f(0x25b),'nABKE':_0x18798f(0x279)},_0x37beaf=_0xc46d69['prototype'];if(_0x3448cd[_0x18798f(0x218)](Object[_0x18798f(0x1b6)](_0x37beaf)[_0x18798f(0x275)],0x2)){if(_0x3448cd['vRYDE'](_0x3448cd['ITlmr'],_0x3448cd[_0x18798f(0x1f6)]))return _0xc46d69;else _0x3448cd[_0x18798f(0x1b4)](_0x2da566,_0x18798f(0x264)+_0x345447[_0x18798f(0x1c1)]());}return Object[_0x18798f(0x1b6)](_0x37beaf)[_0x18798f(0x230)](_0x684a95=>{const _0x5ae9c5=_0x18798f,_0x47faeb={'fzSbh':function(_0x4805c4,_0x299cd3){const _0x9bf8dd=a45_0x4e2d;return _0x3448cd[_0x9bf8dd(0x1c7)](_0x4805c4,_0x299cd3);},'DPsYJ':function(_0x370f8e,_0x25c1a0){const _0x5d1e2c=a45_0x4e2d;return _0x3448cd[_0x5d1e2c(0x257)](_0x370f8e,_0x25c1a0);},'PsGlI':function(_0x2088be,_0x44350c,_0x2fd2a3,_0x120f24){const _0x532b33=a45_0x4e2d;return _0x3448cd[_0x532b33(0x237)](_0x2088be,_0x44350c,_0x2fd2a3,_0x120f24);},'fINZb':function(_0x2b15be,_0x39980b){const _0xb0cc6=a45_0x4e2d;return _0x3448cd[_0xb0cc6(0x1f5)](_0x2b15be,_0x39980b);},'qTLwi':_0x3448cd['EtmzK'],'EYkFn':_0x3448cd['KggPB'],'PeZQn':_0x3448cd[_0x5ae9c5(0x203)],'eGrHa':function(_0x48c567,_0x22af97){const _0x152bba=_0x5ae9c5;return _0x3448cd[_0x152bba(0x20f)](_0x48c567,_0x22af97);},'KXQgw':function(_0x2be93c,_0x1244bb){const _0x4d4cb6=_0x5ae9c5;return _0x3448cd[_0x4d4cb6(0x244)](_0x2be93c,_0x1244bb);},'FjXll':_0x3448cd[_0x5ae9c5(0x24a)],'cLRXG':_0x3448cd[_0x5ae9c5(0x1b8)],'hcXLf':_0x3448cd[_0x5ae9c5(0x27c)],'dbdUA':_0x3448cd[_0x5ae9c5(0x226)]};if(_0x3448cd[_0x5ae9c5(0x244)](_0x3448cd[_0x5ae9c5(0x272)],_0x3448cd[_0x5ae9c5(0x234)]))try{this['userConfig']=_0x3a1fe1[_0x5ae9c5(0x292)](_0x414c98[_0x5ae9c5(0x25c)][_0x5ae9c5(0x25f)]);}catch(_0x8b7892){_0x3448cd[_0x5ae9c5(0x1b4)](_0x422998,_0x5ae9c5(0x247)+_0x8b7892['toString']()),this[_0x5ae9c5(0x256)]={};}else{if(!(_0x5334e3&&_0x5334e3[_0x5ae9c5(0x228)](_0x684a95))){if(_0x3448cd['QDmCB'](_0x3448cd['eqjdN'],_0x3448cd[_0x5ae9c5(0x1ff)]))return;else return _0x3448cd[_0x5ae9c5(0x1b4)](_0x1a86de,_0x3448cd[_0x5ae9c5(0x1e8)]);}const _0x13d317=_0x37beaf[_0x684a95];if(_0x3448cd[_0x5ae9c5(0x244)](typeof _0x13d317,_0x3448cd[_0x5ae9c5(0x227)])&&_0x3448cd[_0x5ae9c5(0x266)](_0x684a95,_0x3448cd[_0x5ae9c5(0x242)])){if(_0x3448cd[_0x5ae9c5(0x219)](_0x3448cd['CgQAu'],_0x3448cd['CgQAu'])){if(_0x3448cd[_0x5ae9c5(0x244)](_0xb7cea[_0x5ae9c5(0x22a)](this[_0x5ae9c5(0x256)])[_0x5ae9c5(0x275)],0x0)&&_0x331e9f[_0x5ae9c5(0x25c)][_0x5ae9c5(0x25f)])try{this[_0x5ae9c5(0x256)]=_0x8bb165[_0x5ae9c5(0x292)](_0x2bed62[_0x5ae9c5(0x25c)][_0x5ae9c5(0x25f)]);}catch(_0x74a440){_0x3448cd[_0x5ae9c5(0x1b4)](_0x197f0a,'Error\x20in\x20parsing\x20user\x20config\x20from\x20env\x20'+_0x74a440['toString']()),this[_0x5ae9c5(0x256)]={};}return this[_0x5ae9c5(0x256)];}else Object[_0x5ae9c5(0x263)](_0x37beaf,_0x684a95,{'writable':!![],'value':function(..._0x11eaa3){const _0x361884=_0x5ae9c5,_0x3e9133={'qEcqO':function(_0x5dadae,_0x3b8923,_0x120f7a,_0x19e3b5){const _0x340199=a45_0x4e2d;return _0x47faeb[_0x340199(0x1e9)](_0x5dadae,_0x3b8923,_0x120f7a,_0x19e3b5);}};if(_0x47faeb['fINZb'](_0x47faeb[_0x361884(0x26d)],_0x47faeb['EYkFn']))try{if(_0x47faeb[_0x361884(0x276)](_0x47faeb[_0x361884(0x268)],_0x47faeb[_0x361884(0x268)]))try{this[_0x361884(0x1cb)]=_0x4902f8['parse'](_0x2d9db0['env'][_0x361884(0x23b)]);}catch(_0x1c0ee1){_0x47faeb[_0x361884(0x1f7)](_0x5da26b,'Error\x20in\x20parsing\x20credentials\x20from\x20env\x20'+_0x1c0ee1[_0x361884(0x1c1)]());}else{const _0x4be2e9=(process['env'][_0x361884(0x1d1)]?PerformanceTester[_0x361884(0x245)]()['timerify'](_0x13d317):_0x13d317)[_0x361884(0x25d)](this,..._0x11eaa3);if(_0x47faeb[_0x361884(0x271)](_0x4be2e9,Promise)){if(_0x47faeb[_0x361884(0x222)](_0x47faeb[_0x361884(0x21d)],_0x47faeb[_0x361884(0x24b)])){const _0x2f48fd=(_0x5b34d5[_0x361884(0x25c)][_0x361884(0x1d1)]?_0x220dd4[_0x361884(0x245)]()[_0x361884(0x1d4)](_0x1dc84a):_0x2e9c1a)[_0x361884(0x25d)](this,..._0x5f4078);if(_0x47faeb[_0x361884(0x1ba)](_0x2f48fd,_0x5d9eea))return _0x2f48fd[_0x361884(0x28a)](_0x20dfce=>_0x761229(_0x20dfce,_0x32d10d,_0x22418f));return _0x2f48fd;}else return _0x4be2e9[_0x361884(0x28a)](_0x3165f7=>processError(_0x3165f7,_0x13d317,_0x11eaa3));}return _0x4be2e9;}}catch(_0xaaab11){_0x47faeb['KXQgw'](_0x47faeb['hcXLf'],_0x47faeb[_0x361884(0x283)])?_0x3e9133[_0x361884(0x1b9)](_0x36cae9,_0x142d40,_0x3f7520,_0x1c9165):_0x47faeb[_0x361884(0x1e9)](processError,_0xaaab11,_0x13d317,_0x11eaa3);}else{_0x47faeb[_0x361884(0x1f7)](_0x161e9d,'Error\x20in\x20executing\x20'+_0x1cd0d6['name']+_0x361884(0x1fc)+_0x19969f+':\x20'+_0x87f1c);let _0x26d62a;try{_0x26d62a=_0x158c15[_0x361884(0x27b)](_0x2430e6);}catch(_0x3f49fa){const _0x53a35a={};_0x53a35a[_0x361884(0x27a)]=0x2,_0x26d62a=_0xd88c3a[_0x361884(0x285)](_0x14605a,_0x53a35a);}_0x3d47b3[_0x361884(0x22f)]('Error\x20in\x20executing\x20'+_0x18307f[_0x361884(0x23e)]+_0x361884(0x1fc)+_0x26d62a+_0x361884(0x1c8)+_0x21bb26,_0x1cd410&&_0x1a5a14[_0x361884(0x248)]);}}});}}}),_0xc46d69;};function a45_0x34c2(){const _0x3a26d2=['keys','kGpyK','QSHTI','tGqcZ','zyNRR','uploadCrashReport','forEach','xbhSl','DAwaW','JcJUk','nrDGa','JmmPy','HQTBm','cALoO','VCaia','UyiAB','rqRyT','CREDENTIALS_FOR_CRASH_REPORTING','fuiXm','setFrameworkDetails','name','[Crash_Report_Upload]\x20Failed\x20due\x20to\x20','application/json','2708973sXYQrK','RGkgo','recursivelyDeletePIIKeysFromObject','fcQLF','getPerformance','20HMoUYx','Error\x20in\x20parsing\x20user\x20config\x20from\x20env\x20','stack','rOSMZ','SaIUF','cLRXG','NSkPs','ZxHho','jKLFU','YhRUt','MMlLP','FFkSD','DOAUp','frameworkDetails','uwKYJ','frameworkVersion','userConfig','rouwh','lgBIH','getCredentials','[Crash_Report_Upload]\x20Success\x20response:\x20','gQelE','env','call','yRlAE','USER_CONFIG_FOR_REPORTING','AdaHh','fFDNm','GUZqL','defineProperty','Error\x20in\x20parsing\x20credentials\x20from\x20env\x20','key','ucApt','GxZSk','PeZQn','jYhpe','SIrZD','qdjcN','17158163JAzfrY','qTLwi','o11yErrorHandler','mmcev','mgVYk','eGrHa','lxFwx','tJsyB','LrmPd','length','fINZb','OeOhF','lkogv','lVUWv','depth','stringify','VXtal','NxMBz','frameworkName','WUwIT','setConfigDetails','ivWeE','headers','dbdUA','wnPKB','inspect','then','UdIeA','rOhrB','oPnrT','catch','evYJi','QWlKd','MUziO','CgtJf','constructor','RcGfT','RwZsA','parse','LFzKq','SZaTO','XalJE','xPvlJ','qsWYM','UpFbq','getOwnPropertyNames','VpCWQ','WocUg','qEcqO','DPsYJ','TsvgK','LuTlK','UjBeZ','cQlDv','ygicX','cZJxC','toString','CrashReporter','exports','6673415NbroyC','Crecg','uZKll','CYbFE','\x20:\x20','BS_TESTOPS_BUILD_HASHED_ID','zrWPv','credentials','password','WZyGh','ZXcWc','GEpgh','tFCIr','BROWSERSTACK_O11Y_PERF_MEASUREMENT','yiMzE','getFramework','timerify','hfYII','UYpjT','gERvg','QlcIC','setAllDetails','Kqncr','SCfDG','RCyuG','oihYy','FluCX','PQgEs','1457031BUyqQu','uKSdh','UTZRj','Xesiu','yjauG','auth','username','Content-Type','xwQoj','PsGlI','XdKrj','POST','IDCSb','iDAXW','../helper','BROWSERSTACK_O11Y_FRAMEWORK_DETAILS','ayctV','NAwLc','XiYRi','hQdnr','accessKey','HxcPB','nABKE','fzSbh','hlDZY','fiFPP','UujPq','mXquR','\x20with\x20args\x20','27fZTaYK','xaYfU','eqjdN','VJZXl','6TYrHsN','igVMt','EVGlM','1743395RgspOj','filterPII','aaveb','true','NuXeI','xHtLt','OkIUl','scvHX','pspzC','AyuPv','itivF','HEoXf','omLIj','initialize','YIIMm','786338yxfJia','LCQjO','cntic','IibSU','8OSODxB','tukNo','HMnie','JKQCF','EOFKH','./utils','FjXll','[Crash_Report_Upload]\x20Failed\x20to\x20parse\x20user\x20credentials\x20while\x20reporting\x20crash','4096632rfLLwS','hCqnQ','object','KXQgw','setCredentials','GZRjG','dKkgY','vntDs','QXWmE','includes','vromY'];a45_0x34c2=function(){return _0x3a26d2;};return a45_0x34c2();}function processError(_0x4c7bdb,_0x5ee6c5,_0x56d7d0){const _0x2ffabb=a45_0x1e986f,_0x27909a={'UujPq':function(_0x91622a,_0x4f8e27){return _0x91622a(_0x4f8e27);},'WUwIT':function(_0x5b521e,_0x31ab68){return _0x5b521e!==_0x31ab68;},'itivF':_0x2ffabb(0x233),'SyvmH':_0x2ffabb(0x1cd),'omLIj':function(_0x10596a,_0x242f57){return _0x10596a===_0x242f57;},'ZXcWc':_0x2ffabb(0x1f2),'ayctV':_0x2ffabb(0x1e3)};_0x27909a[_0x2ffabb(0x1fa)](debug,'Error\x20in\x20executing\x20'+_0x5ee6c5[_0x2ffabb(0x23e)]+_0x2ffabb(0x1fc)+_0x56d7d0+':\x20'+_0x4c7bdb);let _0x4dd18b;try{if(_0x27909a[_0x2ffabb(0x27f)](_0x27909a[_0x2ffabb(0x20e)],_0x27909a['SyvmH']))_0x4dd18b=JSON[_0x2ffabb(0x27b)](_0x56d7d0);else{const _0xa60932=_0x235e19[_0x2ffabb(0x292)](_0x23566f[_0x2ffabb(0x27b)](_0x3dd364));return this[_0x2ffabb(0x243)](_0xa60932),_0xa60932;}}catch(_0x40edbb){if(_0x27909a[_0x2ffabb(0x210)](_0x27909a[_0x2ffabb(0x1ce)],_0x27909a[_0x2ffabb(0x1f0)]))return _0x4ceece[_0x2ffabb(0x28a)](_0x229607=>_0x198abb(_0x229607,_0x43ac69,_0x5b418c));else{const _0x3fa790={};_0x3fa790[_0x2ffabb(0x27a)]=0x2,_0x4dd18b=util[_0x2ffabb(0x285)](_0x56d7d0,_0x3fa790);}}CrashReporter[_0x2ffabb(0x22f)]('Error\x20in\x20executing\x20'+_0x5ee6c5[_0x2ffabb(0x23e)]+_0x2ffabb(0x1fc)+_0x4dd18b+'\x20:\x20'+_0x4c7bdb,_0x4c7bdb&&_0x4c7bdb['stack']);}class CrashReporter{static ['userConfig']={};static [a45_0x1e986f(0x1cb)];static [a45_0x1e986f(0x253)]={};static[a45_0x1e986f(0x211)](_0x51cfa6,_0x51eb1f,_0xa10c0d=null){const _0x5a9c69=a45_0x1e986f,_0x7eb622={'GUZqL':function(_0x10e929,_0x1054de){return _0x10e929===_0x1054de;},'hlDZY':'YLpIb','JKQCF':function(_0x241718,_0x909af){return _0x241718(_0x909af);},'FluCX':function(_0x4a265c,_0x322e00){return _0x4a265c(_0x322e00);},'evYJi':function(_0x1f80b9,_0x430825){return _0x1f80b9(_0x430825);}},_0x31f1c1=_0x51cfa6[_0x5a9c69(0x27e)];let _0x36c226=_0x51cfa6[_0x5a9c69(0x255)];!_0xa10c0d&&(_0x7eb622[_0x5a9c69(0x262)](_0x7eb622[_0x5a9c69(0x1f8)],_0x7eb622[_0x5a9c69(0x1f8)])?_0xa10c0d=_0x7eb622[_0x5a9c69(0x21a)](getBrowserStackConfig,_0x31f1c1):(_0x2475dc&&this[_0x5a9c69(0x23d)](_0x17ac2d),_0x192329&&this[_0x5a9c69(0x280)](_0x52be3e),_0x34fef9&&this['setCredentials'](_0x30811c[_0x5a9c69(0x1e6)],_0x3989e5[_0x5a9c69(0x1f4)])));if(!_0x36c226)_0x7eb622[_0x5a9c69(0x1de)](getFrameworkVersion,_0x31f1c1);const _0x2bb364={};_0x2bb364[_0x5a9c69(0x27e)]=_0x31f1c1,_0x2bb364[_0x5a9c69(0x255)]=_0x36c226,this['setAllDetails'](_0x2bb364,_0x51eb1f,_0x7eb622[_0x5a9c69(0x28b)](getUserCredentials,_0xa10c0d));}static[a45_0x1e986f(0x223)](_0x2d06be,_0x45b25f){const _0x32d1ba=a45_0x1e986f,_0x2b44b7={};_0x2b44b7[_0x32d1ba(0x1e6)]=_0x2d06be,_0x2b44b7[_0x32d1ba(0x1f4)]=_0x45b25f,this[_0x32d1ba(0x1cb)]=_0x2b44b7,process['env'][_0x32d1ba(0x23b)]=JSON[_0x32d1ba(0x27b)](this['credentials']);}static[a45_0x1e986f(0x259)](){const _0x5150bf=a45_0x1e986f,_0x2b5f8c={'kGpyK':function(_0x13078c,_0x1ccaef){return _0x13078c===_0x1ccaef;},'PQgEs':'pyxYo','qdjcN':_0x5150bf(0x251),'xHtLt':_0x5150bf(0x1d7),'GEpgh':_0x5150bf(0x27d),'usJSq':function(_0x4ab763,_0x5e45b7){return _0x4ab763(_0x5e45b7);}};if(!this[_0x5150bf(0x1cb)]&&process['env']['CREDENTIALS_FOR_CRASH_REPORTING']){if(_0x2b5f8c[_0x5150bf(0x22b)](_0x2b5f8c[_0x5150bf(0x1df)],_0x2b5f8c[_0x5150bf(0x26b)]))_0x5efc24=_0x8fbfa7[_0x5150bf(0x245)]()['timerify'](_0x45552b);else try{if(_0x2b5f8c[_0x5150bf(0x22b)](_0x2b5f8c[_0x5150bf(0x209)],_0x2b5f8c['xHtLt']))this['credentials']=JSON[_0x5150bf(0x292)](process['env'][_0x5150bf(0x23b)]);else{const _0x574ab1={};_0x574ab1[_0x5150bf(0x1e6)]=_0x1f0a31,_0x574ab1[_0x5150bf(0x1f4)]=_0x14cc9b,this[_0x5150bf(0x1cb)]=_0x574ab1,_0x770b1[_0x5150bf(0x25c)]['CREDENTIALS_FOR_CRASH_REPORTING']=_0x524106['stringify'](this[_0x5150bf(0x1cb)]);}}catch(_0x1381e6){_0x2b5f8c[_0x5150bf(0x22b)](_0x2b5f8c[_0x5150bf(0x1cf)],_0x2b5f8c['GEpgh'])?_0x2b5f8c['usJSq'](debug,'Error\x20in\x20parsing\x20credentials\x20from\x20env\x20'+_0x1381e6[_0x5150bf(0x1c1)]()):this[_0x5150bf(0x1cb)]=_0x617ac4[_0x5150bf(0x292)](_0x8ff590['env']['CREDENTIALS_FOR_CRASH_REPORTING']);}}return this[_0x5150bf(0x1cb)];}static[a45_0x1e986f(0x280)](_0xc7792f){const _0x196556=a45_0x1e986f;this[_0x196556(0x256)]=this[_0x196556(0x205)](_0xc7792f),process[_0x196556(0x25c)][_0x196556(0x25f)]=JSON[_0x196556(0x27b)](this[_0x196556(0x256)]);}static['getConfig'](){const _0x3f92c4=a45_0x1e986f,_0xe89af0={'TaGPz':function(_0xb01774,_0x2897d8){return _0xb01774 instanceof _0x2897d8;},'ZxHho':function(_0x675011,_0x16dbcd,_0x2450bd,_0x2de976){return _0x675011(_0x16dbcd,_0x2450bd,_0x2de976);},'AyuPv':function(_0x4c8886,_0x5c8cef){return _0x4c8886===_0x5c8cef;},'tGqcZ':'xKeuS','mXquR':function(_0x1c868f,_0x363c50){return _0x1c868f!==_0x363c50;},'iDAXW':'bqprq','UTZRj':function(_0xc04e9b,_0x39704b){return _0xc04e9b!==_0x39704b;},'uKSdh':_0x3f92c4(0x216),'EOFKH':_0x3f92c4(0x24f),'QlcIC':function(_0x102da1,_0x5dc8e4){return _0x102da1(_0x5dc8e4);}};if(_0xe89af0[_0x3f92c4(0x20d)](Object[_0x3f92c4(0x22a)](this[_0x3f92c4(0x256)])[_0x3f92c4(0x275)],0x0)&&process['env'][_0x3f92c4(0x25f)]){if(_0xe89af0[_0x3f92c4(0x20d)](_0xe89af0[_0x3f92c4(0x22d)],_0xe89af0['tGqcZ']))try{if(_0xe89af0[_0x3f92c4(0x1fb)](_0xe89af0[_0x3f92c4(0x1ed)],_0xe89af0['iDAXW'])){const _0x3785e5={};_0x3785e5[_0x3f92c4(0x27a)]=0x2,_0x1ce6e7=_0x57c43e[_0x3f92c4(0x285)](_0x2da5e5,_0x3785e5);}else this['userConfig']=JSON[_0x3f92c4(0x292)](process[_0x3f92c4(0x25c)][_0x3f92c4(0x25f)]);}catch(_0x359228){_0xe89af0[_0x3f92c4(0x1e2)](_0xe89af0[_0x3f92c4(0x1e1)],_0xe89af0[_0x3f92c4(0x21b)])?(_0xe89af0[_0x3f92c4(0x1d8)](debug,'Error\x20in\x20parsing\x20user\x20config\x20from\x20env\x20'+_0x359228['toString']()),this[_0x3f92c4(0x256)]={}):this['userConfig']=_0x52e17c['parse'](_0x3d6b82['env'][_0x3f92c4(0x25f)]);}else try{const _0x34c0a1=(_0x424c1b[_0x3f92c4(0x25c)][_0x3f92c4(0x1d1)]?_0xace445[_0x3f92c4(0x245)]()[_0x3f92c4(0x1d4)](_0x50e057):_0x23e161)[_0x3f92c4(0x25d)](this,..._0x1ac417);if(_0xe89af0['TaGPz'](_0x34c0a1,_0x3f7371))return _0x34c0a1['catch'](_0x4ba5c5=>_0x1e3cd9(_0x4ba5c5,_0x359c7d,_0x5c9780));return _0x34c0a1;}catch(_0x35096d){_0xe89af0[_0x3f92c4(0x24d)](_0x58a8ed,_0x35096d,_0x16df2e,_0x3b11f9);}}return this['userConfig'];}static['setFrameworkDetails'](_0x162b4a){const _0x22326c=a45_0x1e986f;this[_0x22326c(0x253)]=_0x162b4a,process[_0x22326c(0x25c)][_0x22326c(0x1ef)]=JSON['stringify'](this['frameworkDetails']);}static[a45_0x1e986f(0x1d3)](){const _0x7ee69f=a45_0x1e986f,_0x451c04={'mgVYk':function(_0x524cb5,_0x56dc1f){return _0x524cb5(_0x56dc1f);},'VCaia':function(_0x29acc4,_0x32cdee){return _0x29acc4===_0x32cdee;},'RwZsA':_0x7ee69f(0x20b),'OOGfH':_0x7ee69f(0x231),'yRlAE':function(_0x41d364,_0x316ecd){return _0x41d364!==_0x316ecd;},'lgBIH':_0x7ee69f(0x1b7),'TsvgK':_0x7ee69f(0x200),'LrmPd':function(_0x19fab7,_0x32b652){return _0x19fab7(_0x32b652);}};if(_0x451c04[_0x7ee69f(0x238)](Object['keys'](this[_0x7ee69f(0x253)])['length'],0x0)&&process[_0x7ee69f(0x25c)]['BROWSERSTACK_O11Y_FRAMEWORK_DETAILS']){if(_0x451c04['VCaia'](_0x451c04[_0x7ee69f(0x291)],_0x451c04['OOGfH']))this['frameworkDetails']=_0xb20c5,_0xfd852f[_0x7ee69f(0x25c)][_0x7ee69f(0x1ef)]=_0x15ef8d[_0x7ee69f(0x27b)](this['frameworkDetails']);else try{if(_0x451c04[_0x7ee69f(0x25e)](_0x451c04[_0x7ee69f(0x258)],_0x451c04[_0x7ee69f(0x258)]))return _0x2813c2[_0x7ee69f(0x28a)](_0x2f762f=>_0x3e3f41(_0x2f762f,_0xaf5431,_0x7a57));else this[_0x7ee69f(0x253)]=JSON[_0x7ee69f(0x292)](process[_0x7ee69f(0x25c)][_0x7ee69f(0x1ef)]);}catch(_0x4846d8){if(_0x451c04[_0x7ee69f(0x25e)](_0x451c04[_0x7ee69f(0x1bb)],_0x451c04[_0x7ee69f(0x1bb)])){if(!this[_0x7ee69f(0x1cb)]&&_0x1809c3[_0x7ee69f(0x25c)]['CREDENTIALS_FOR_CRASH_REPORTING'])try{this[_0x7ee69f(0x1cb)]=_0x5c8f60['parse'](_0x231af1['env']['CREDENTIALS_FOR_CRASH_REPORTING']);}catch(_0x1e0bd9){_0x451c04[_0x7ee69f(0x270)](_0x5832e8,_0x7ee69f(0x264)+_0x1e0bd9[_0x7ee69f(0x1c1)]());}return this[_0x7ee69f(0x1cb)];}else _0x451c04[_0x7ee69f(0x274)](debug,_0x7ee69f(0x264)+_0x4846d8['toString']());}}return this[_0x7ee69f(0x253)];}static[a45_0x1e986f(0x1d9)](_0x1c359a,_0x36010e,_0x3dc622){const _0xe30d4e=a45_0x1e986f;_0x1c359a&&this[_0xe30d4e(0x23d)](_0x1c359a),_0x36010e&&this[_0xe30d4e(0x280)](_0x36010e),_0x3dc622&&this['setCredentials'](_0x3dc622[_0xe30d4e(0x1e6)],_0x3dc622[_0xe30d4e(0x1f4)]);}static async[a45_0x1e986f(0x22f)](_0x1d6178,_0x1f513e){const _0x14be60=a45_0x1e986f,_0x4301d7={'UjBeZ':function(_0x286316,_0x442043){return _0x286316(_0x442043);},'OeOhF':function(_0x22c05c,_0x45df9a){return _0x22c05c!==_0x45df9a;},'fvNIF':_0x14be60(0x1dc),'NAwLc':_0x14be60(0x229),'JmmPy':function(_0x545ab5,_0x3f681e){return _0x545ab5(_0x3f681e);},'aaveb':'user','hCqnQ':_0x14be60(0x1e6),'zrWPv':'key','Crecg':_0x14be60(0x1f4),'fuiXm':_0x14be60(0x1cc),'GZRjG':function(_0x357020,_0x1fbb07){return _0x357020===_0x1fbb07;},'SCfDG':_0x14be60(0x221),'lLPiG':_0x14be60(0x252),'oPnrT':'wluMJ','Kqncr':_0x14be60(0x26f),'rqRyT':'eIHzr','UYpjT':_0x14be60(0x21e),'HQTBm':function(_0x3e322d){return _0x3e322d();},'NuXeI':'application/json','cQlDv':_0x14be60(0x207),'RwplX':function(_0x8b457b,_0x94717a,_0x3571f2,_0x20d0e1,_0x7ec8bb,_0x39ba90){return _0x8b457b(_0x94717a,_0x3571f2,_0x20d0e1,_0x7ec8bb,_0x39ba90);},'jYhpe':_0x14be60(0x1eb)};this[_0x14be60(0x259)]();if(!this[_0x14be60(0x1cb)]){if(_0x4301d7[_0x14be60(0x224)](_0x4301d7[_0x14be60(0x1da)],_0x4301d7[_0x14be60(0x23a)]))_0x4301d7[_0x14be60(0x1bd)](_0x517982,_0x14be60(0x247)+_0x169aff[_0x14be60(0x1c1)]()),this['userConfig']={};else return _0x4301d7[_0x14be60(0x235)](debug,_0x4301d7[_0x14be60(0x1d6)]);}this['getConfig'](),this[_0x14be60(0x1d3)]();const _0x2d60e7={'hashed_id':process[_0x14be60(0x25c)][_0x14be60(0x1c9)],'observability_version':{'sdkVersion':_0x4301d7[_0x14be60(0x236)](getAgentVersion),'frameworkName':this[_0x14be60(0x253)][_0x14be60(0x27e)],'frameworkVersion':this[_0x14be60(0x253)]['frameworkVersion']},'exception':{'error':_0x1d6178['toString'](),'stackTrace':_0x1f513e},'config':this[_0x14be60(0x256)]},_0x52876d='/api/v1/analytics',_0x230674={};_0x230674[_0x14be60(0x1e6)]=this[_0x14be60(0x1cb)]['username'],_0x230674[_0x14be60(0x1cc)]=this[_0x14be60(0x1cb)][_0x14be60(0x1f4)];const _0x5695ae={};_0x5695ae[_0x14be60(0x1e7)]=_0x4301d7[_0x14be60(0x208)],_0x5695ae['X-BSTACK-TESTOPS']=_0x4301d7[_0x14be60(0x1be)];const _0x260133={};_0x260133[_0x14be60(0x1e5)]=_0x230674,_0x260133[_0x14be60(0x282)]=_0x5695ae;const _0x4f693d=_0x260133;_0x4301d7['RwplX'](nodeRequest,_0x4301d7[_0x14be60(0x269)],_0x52876d,_0x2d60e7,_0x4f693d,![])['then'](_0xa18dd8=>{const _0x280d5f=_0x14be60;_0x4301d7[_0x280d5f(0x277)](_0x4301d7['fvNIF'],_0x4301d7[_0x280d5f(0x1f1)])?_0x4301d7[_0x280d5f(0x235)](debug,_0x280d5f(0x25a)+JSON[_0x280d5f(0x27b)](_0xa18dd8)):_0x4301d7[_0x280d5f(0x1bd)](_0xae2756,_0x280d5f(0x23f)+_0x3a380c);})[_0x14be60(0x28a)](_0x2f5a29=>{const _0x55ab89=_0x14be60,_0x4586b5={'tFCIr':_0x4301d7[_0x55ab89(0x206)],'NSkPs':_0x4301d7[_0x55ab89(0x220)],'oihYy':_0x4301d7[_0x55ab89(0x1ca)],'GxZSk':_0x4301d7[_0x55ab89(0x1c5)],'RcGfT':_0x4301d7[_0x55ab89(0x23c)],'YIIMm':function(_0xf2897a,_0x16f00c){const _0x16e658=_0x55ab89;return _0x4301d7[_0x16e658(0x224)](_0xf2897a,_0x16f00c);},'qwTHz':_0x4301d7[_0x55ab89(0x1db)]};if(_0x4301d7['OeOhF'](_0x4301d7['lLPiG'],_0x4301d7[_0x55ab89(0x289)]))_0x4301d7[_0x55ab89(0x1bd)](debug,'[Crash_Report_Upload]\x20Failed\x20due\x20to\x20'+_0x2f5a29);else{if(!_0x324576)return;const _0x2060e6=[_0x4586b5[_0x55ab89(0x1d0)],_0x4586b5[_0x55ab89(0x24c)],_0x4586b5[_0x55ab89(0x1dd)],_0x4586b5[_0x55ab89(0x267)],_0x4586b5[_0x55ab89(0x290)]];for(const _0x2883fb in _0x27ff6e){if(_0x2060e6[_0x55ab89(0x228)](_0x2883fb['toLowerCase']()))delete _0x3fee5b[_0x2883fb];else{if(_0x4586b5[_0x55ab89(0x212)](typeof _0xcbe666[_0x2883fb],_0x4586b5['qwTHz']))this['recursivelyDeletePIIKeysFromObject'](_0x5daec9[_0x2883fb]);}}}});}static['recursivelyDeletePIIKeysFromObject'](_0x2af187){const _0xc784f=a45_0x1e986f,_0x57367e={'gmoPd':function(_0x10dfb1,_0x3c6816){return _0x10dfb1===_0x3c6816;},'UpFbq':_0xc784f(0x221),'SIrZD':function(_0x49861f,_0x6993de){return _0x49861f(_0x6993de);},'FQOJp':function(_0x256f07,_0x280525){return _0x256f07!==_0x280525;},'lkogv':_0xc784f(0x1f9),'UdIeA':_0xc784f(0x1bc),'cntic':'user','WThoz':_0xc784f(0x1e6),'LFzKq':_0xc784f(0x265),'LKmTy':_0xc784f(0x1f4),'OkIUl':_0xc784f(0x1cc),'fFDNm':function(_0x41b8fa,_0xbbfe8b){return _0x41b8fa!==_0xbbfe8b;},'QWlKd':_0xc784f(0x1bf),'RNrVi':function(_0x342733,_0x289f0c){return _0x342733===_0x289f0c;}};if(!_0x2af187){if(_0x57367e['FQOJp'](_0x57367e[_0xc784f(0x278)],_0x57367e[_0xc784f(0x287)]))return;else{if(_0x50cad6['includes'](_0xf841ad['toLowerCase']()))delete _0x5bc53d[_0x4da44b];else{if(_0x57367e['gmoPd'](typeof _0x3972ca[_0x20e198],_0x57367e[_0xc784f(0x1b5)]))this[_0xc784f(0x243)](_0x136d82[_0x580539]);}}}const _0x3b7b8a=[_0x57367e[_0xc784f(0x215)],_0x57367e['WThoz'],_0x57367e[_0xc784f(0x293)],_0x57367e['LKmTy'],_0x57367e[_0xc784f(0x20a)]];for(const _0x3204e5 in _0x2af187){if(_0x57367e[_0xc784f(0x261)](_0x57367e[_0xc784f(0x28c)],_0x57367e[_0xc784f(0x28c)])){const _0x1d4a41=_0x520868[_0xc784f(0x27e)];let _0x15e332=_0x588b02[_0xc784f(0x255)];!_0x19c7ba&&(_0xe4ed3f=_0x57367e[_0xc784f(0x26a)](_0x1e492a,_0x1d4a41));if(!_0x15e332)_0x57367e[_0xc784f(0x26a)](_0xc7eb9f,_0x1d4a41);const _0xeae47a={};_0xeae47a['frameworkName']=_0x1d4a41,_0xeae47a['frameworkVersion']=_0x15e332,this[_0xc784f(0x1d9)](_0xeae47a,_0x29e59d,_0x57367e[_0xc784f(0x26a)](_0x3cc87b,_0x27b0fa));}else{if(_0x3b7b8a[_0xc784f(0x228)](_0x3204e5['toLowerCase']()))delete _0x2af187[_0x3204e5];else{if(_0x57367e['RNrVi'](typeof _0x2af187[_0x3204e5],_0x57367e[_0xc784f(0x1b5)]))this['recursivelyDeletePIIKeysFromObject'](_0x2af187[_0x3204e5]);}}}}static[a45_0x1e986f(0x205)](_0x349e4a){const _0x4f9219=a45_0x1e986f,_0x54d698=JSON['parse'](JSON['stringify'](_0x349e4a));return this[_0x4f9219(0x243)](_0x54d698),_0x54d698;}}const a45_0x491ced={};a45_0x491ced[a45_0x1e986f(0x26e)]=o11yErrorHandler,a45_0x491ced['o11yClassErrorHandler']=o11yClassErrorHandler,a45_0x491ced[a45_0x1e986f(0x1c2)]=CrashReporter,module[a45_0x1e986f(0x1c3)]=a45_0x491ced;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const a46_0x1a648b=a46_0x4181;function a46_0x188a(){const _0x2b76bb=['<h1>Performance\x20Report</h1>','readFileSync','function','wIjqv','writeFileSync','pxzpX','PPcXr','PMIhB','SwqhT','forEach','length','oxVuX','stopAndGenerate','pvQUw','xkmcE','xaAJY','qyhdc','toString','dXQsA','WbhmR','rhBvJ','vDjBr','</td></tr>','generateHTMLReport','parse','fiPNw','ETdwf','JBTRt','join','7160223OWHUjU','lLuWB','xhrOd','1724QmKsay','WQUIw','vhGIw','464074YezfnM','name','calculateTimeFromEvents','buffered','8316774ItOjVi','</tbody></table></body></html>','287802rYEXql','zVdPG','OvKAA','ttFhg','entries','KwGIz','Time\x20for\x20','INlGp','UqJWC','HajRb','duration','performance-own.html','XVbYM','Error\x20in\x20writing\x20html\x20','CrUoI','XlvjG','MXrfL','_events','</td><td>','AliHT','YmZaC','dmogp','wLpKF','bgpxw','9335Opvpge','VHXcs','hcqtm','31474390PsUPWQ','entryTypes','YYauX','jsonReportFileName','acPTF','observe','existsSync','tvuYY','path','_observer','ZLZvb','lPShg','HydXD','cRKlL','zCbie','<table><thead><tr><th>Function\x20Name</th><th>Duration\x20(ms)</th></tr></thead><tbody>','JnYuS','gvRtz','MSOLe','27OWhJXw','feFYF','<!DOCTYPE\x20html><html><head><title>Performance\x20Report</title></head><body>','EGFFz','push','AEMcp','cwd','XsnEA','rXcxq','BXikQ','SHjwK','dMSDs','oJzDO','lhAEa','hbSBi','DzUdk','RgZju','bnzPa','IVRpB','AgwRW','Emqfu','reduce','rCwbB','ZnHkE','stringify','\x20for\x20all\x20processes\x20is\x20','KiPsf','Performance\x20report\x20is\x20at\x20','BirwV','FpgYn','NAmwF','pYzrA','getEventsFromJSON','OaKqk','qDskj','QkUEP','XiOKl','jvOuM','eSMHo','xZNVr','Vepzl','map','472624KGPDgR','JxlbW','IAwxC','TYokZ','6Rsoubh','nmbTW','xnhHi','startMonitoring','getEntries','GwcUc','./utils','writeFile','WnLKk','lqTap','ITTVC','started'];a46_0x188a=function(){return _0x2b76bb;};return a46_0x188a();}(function(_0x5d84a5,_0x1d918b){const _0x5dade1=a46_0x4181,_0x1ef0fb=_0x5d84a5();while(!![]){try{const _0x500508=parseInt(_0x5dade1(0x1e9))/0x1+-parseInt(_0x5dade1(0x1ba))/0x2*(-parseInt(_0x5dade1(0x1ef))/0x3)+-parseInt(_0x5dade1(0x1e6))/0x4*(parseInt(_0x5dade1(0x176))/0x5)+-parseInt(_0x5dade1(0x1ed))/0x6+-parseInt(_0x5dade1(0x1e3))/0x7+parseInt(_0x5dade1(0x1b6))/0x8*(parseInt(_0x5dade1(0x18c))/0x9)+parseInt(_0x5dade1(0x179))/0xa;if(_0x500508===_0x1d918b)break;else _0x1ef0fb['push'](_0x1ef0fb['shift']());}catch(_0xfe9861){_0x1ef0fb['push'](_0x1ef0fb['shift']());}}}(a46_0x188a,0xd2a86));const fs=require('fs'),{performance,PerformanceObserver}=require('perf_hooks'),{sleep,debug}=require(a46_0x1a648b(0x1c0)),path=require(a46_0x1a648b(0x181));class PerformanceTester{static [a46_0x1a648b(0x182)];static [a46_0x1a648b(0x16f)]=[];static [a46_0x1a648b(0x1c5)]=![];static[a46_0x1a648b(0x1bd)](_0xb777d7='performance-report.json'){const _0x584546=a46_0x1a648b,_0x152fa7={};_0x152fa7[_0x584546(0x1b0)]=function(_0x2fc0ea,_0x5ad039){return _0x2fc0ea===_0x5ad039;},_0x152fa7[_0x584546(0x1e4)]=_0x584546(0x1ae),_0x152fa7[_0x584546(0x1bc)]=_0x584546(0x1d4),_0x152fa7[_0x584546(0x173)]=_0x584546(0x1c8),_0x152fa7['JqCxn']=function(_0x280308,_0x149806){return _0x280308===_0x149806;},_0x152fa7[_0x584546(0x19d)]=_0x584546(0x19e);const _0x393c70=_0x152fa7;this[_0x584546(0x182)]=new PerformanceObserver(_0x521624=>{const _0x49e378=_0x584546,_0x355d0e={};_0x355d0e[_0x49e378(0x195)]=_0x393c70[_0x49e378(0x173)];const _0x30bd10=_0x355d0e;if(_0x393c70['JqCxn'](_0x393c70['bnzPa'],_0x393c70[_0x49e378(0x19d)]))_0x521624[_0x49e378(0x1be)]()['forEach'](_0xbb4392=>{const _0x3c33cb=_0x49e378;if(_0x393c70[_0x3c33cb(0x1b0)](_0x393c70[_0x3c33cb(0x1e4)],_0x393c70[_0x3c33cb(0x1bc)])){this['_observer']=new _0x5cd5bb(_0x475652=>{const _0x533286=_0x3c33cb;_0x475652[_0x533286(0x1be)]()['forEach'](_0x3faadd=>{const _0x5f077e=_0x533286;this[_0x5f077e(0x16f)][_0x5f077e(0x190)](_0x3faadd);});});const _0xdd0f25={};_0xdd0f25[_0x3c33cb(0x1ec)]=!![],_0xdd0f25[_0x3c33cb(0x17a)]=[_0x30bd10[_0x3c33cb(0x195)]],this[_0x3c33cb(0x182)][_0x3c33cb(0x17e)](_0xdd0f25),this[_0x3c33cb(0x1c5)]=!![],this[_0x3c33cb(0x17c)]=_0x5381f3;}else this['_events'][_0x3c33cb(0x190)](_0xbb4392);});else{const _0x14cf23={};return _0x14cf23[_0x49e378(0x1ea)]=_0x509bb4,_0x14cf23[_0x49e378(0x168)]=_0x3aa066,_0x14cf23;}});const _0x15cfb0={};_0x15cfb0['buffered']=!![],_0x15cfb0[_0x584546(0x17a)]=[_0x393c70['dmogp']],this['_observer'][_0x584546(0x17e)](_0x15cfb0),this['started']=!![],this[_0x584546(0x17c)]=_0xb777d7;}static['getPerformance'](){return performance;}static[a46_0x1a648b(0x1eb)](_0x567103,_0x4115ee){const _0x3c1bb3=a46_0x1a648b,_0x2093ae={};_0x2093ae[_0x3c1bb3(0x1a0)]=function(_0x59989b,_0x3c0511){return _0x59989b+_0x3c0511;},_0x2093ae['NAmwF']=function(_0x161423,_0x2df7b1){return _0x161423||_0x2df7b1;},_0x2093ae[_0x3c1bb3(0x1f6)]=function(_0x4bb1bd,_0x2f82fb){return _0x4bb1bd===_0x2f82fb;},_0x2093ae[_0x3c1bb3(0x1cd)]='vkQSi',_0x2093ae['XsnEA']=function(_0x59354c,_0x1b4fe5){return _0x59354c===_0x1b4fe5;},_0x2093ae[_0x3c1bb3(0x18f)]='XMyTg',_0x2093ae[_0x3c1bb3(0x172)]=function(_0x33ba28,_0xb0ddf5){return _0x33ba28!==_0xb0ddf5;},_0x2093ae[_0x3c1bb3(0x196)]=_0x3c1bb3(0x175),_0x2093ae[_0x3c1bb3(0x1da)]=function(_0x4f916f,_0x8b66fd){return _0x4f916f+_0x8b66fd;},_0x2093ae[_0x3c1bb3(0x18a)]=function(_0x5185d8,_0x34cb92){return _0x5185d8===_0x34cb92;},_0x2093ae[_0x3c1bb3(0x19c)]=_0x3c1bb3(0x1a6),_0x2093ae['tvuYY']=_0x3c1bb3(0x1bb);const _0x155ceb=_0x2093ae,_0xa0aeba={};if(!_0x567103||_0x155ceb[_0x3c1bb3(0x18a)](_0x567103[_0x3c1bb3(0x1d0)],0x0)){if(_0x155ceb['gvRtz'](_0x155ceb[_0x3c1bb3(0x19c)],_0x155ceb[_0x3c1bb3(0x180)]))return _0x155ceb[_0x3c1bb3(0x1a0)](_0x28ef2c[_0x35f373],_0x155ceb[_0x3c1bb3(0x1aa)](_0x1115cf,0x0));else return;}_0x567103[_0x3c1bb3(0x1b5)](_0x2f6abc=>{const _0x4ac73b=_0x3c1bb3;if(_0x155ceb[_0x4ac73b(0x1f6)](_0x155ceb[_0x4ac73b(0x1cd)],_0x155ceb[_0x4ac73b(0x1cd)]))!_0xa0aeba[_0x2f6abc[_0x4ac73b(0x1ea)]]&&(_0x155ceb[_0x4ac73b(0x193)](_0x155ceb['EGFFz'],_0x155ceb[_0x4ac73b(0x18f)])?_0xa0aeba[_0x2f6abc['name']]=0x0:_0x356c29[_0x4438e6[_0x4ac73b(0x1ea)]]=0x0),_0xa0aeba[_0x2f6abc[_0x4ac73b(0x1ea)]]+=_0x2f6abc[_0x4ac73b(0x168)];else return;});const _0x18dbcc=_0x4115ee['reduce']((_0x4fea58,_0x5793c1)=>{const _0x139127=_0x3c1bb3;if(_0x155ceb[_0x139127(0x172)](_0x155ceb[_0x139127(0x196)],_0x155ceb[_0x139127(0x196)]))_0x56c915[_0x139127(0x1be)]()[_0x139127(0x1cf)](_0x14707b=>{const _0x185f3d=_0x139127;this[_0x185f3d(0x16f)][_0x185f3d(0x190)](_0x14707b);});else return _0x155ceb[_0x139127(0x1da)](_0xa0aeba[_0x5793c1],_0x155ceb[_0x139127(0x1aa)](_0x4fea58,0x0));},0x0);return _0x18dbcc;}static async['calculateTimesFromMultipleFiles'](_0x39930f,_0x5eda7c){const _0x2398c9=a46_0x1a648b,_0x4f114e={'BirwV':function(_0x30ed55,_0x19b669){return _0x30ed55(_0x19b669);},'aZTnH':function(_0x90c00f,_0x55d8a9){return _0x90c00f===_0x55d8a9;},'zCbie':'DrJFB','pYzrA':_0x2398c9(0x1b4),'wLpKF':function(_0x633462,_0xf333cf){return _0x633462!==_0xf333cf;},'lqTap':_0x2398c9(0x17b),'KwGIz':_0x2398c9(0x1b2),'lhAEa':function(_0x4d4a02,_0x5300c8){return _0x4d4a02+_0x5300c8;},'acPTF':function(_0x5d27cb,_0x48e3be){return _0x5d27cb||_0x48e3be;},'XVbYM':function(_0xb12fb2,_0x1332bb){return _0xb12fb2!==_0x1332bb;},'IAwxC':_0x2398c9(0x1b7),'oTSOv':_0x2398c9(0x189),'TYokZ':function(_0x598118,_0x48d30a){return _0x598118||_0x48d30a;},'feFYF':function(_0x3146ec,_0x5c2d1d){return _0x3146ec===_0x5c2d1d;},'xZNVr':_0x2398c9(0x1cc),'rCwbB':'VXWyo','pxzpX':function(_0x17de44,_0x3d3ed3){return _0x17de44!==_0x3d3ed3;},'aoENS':_0x2398c9(0x1a9),'WQUIw':_0x2398c9(0x16d),'ZnHkE':function(_0x2d04e4,_0x700777){return _0x2d04e4===_0x700777;},'fZZxz':_0x2398c9(0x194),'cRKlL':'vCioe','AliHT':_0x2398c9(0x1f1),'jvOuM':_0x2398c9(0x16e),'AEMcp':function(_0x49ae0a,_0x245f9a){return _0x49ae0a(_0x245f9a);}};if(!_0x39930f||_0x4f114e[_0x2398c9(0x18d)](_0x39930f[_0x2398c9(0x1d0)],0x0)){if(_0x4f114e[_0x2398c9(0x16a)](_0x4f114e[_0x2398c9(0x1b3)],_0x4f114e[_0x2398c9(0x1a2)]))return 0x0;else{_0x4f114e[_0x2398c9(0x1a8)](_0x1b2fb7,_0x2398c9(0x16b)+_0x518e9d[_0x2398c9(0x1d7)]());return;}}const _0xd51bdd=[];for(const _0x527aa4 of _0x39930f){if(_0x4f114e[_0x2398c9(0x1cb)](_0x4f114e['aoENS'],_0x4f114e[_0x2398c9(0x1e7)])){const _0x1b795d=path[_0x2398c9(0x1e2)]('.',_0x527aa4);try{if(_0x4f114e[_0x2398c9(0x1a3)](_0x4f114e['fZZxz'],_0x4f114e[_0x2398c9(0x186)])){if(!_0x4babaa[_0x2398c9(0x17f)](_0x536a1b))return[];return _0x2fa3ec[_0x2398c9(0x1de)](_0x3003e3[_0x2398c9(0x1c7)](_0x1bb700)['toString']());}else{const _0x69f25=this[_0x2398c9(0x1ac)](_0x1b795d);_0x69f25[_0x2398c9(0x1b5)](_0x541cb4=>{const _0x2662d7=_0x2398c9;if(_0x4f114e['aZTnH'](_0x4f114e[_0x2662d7(0x187)],_0x4f114e[_0x2662d7(0x1ab)]))return[];else{if(!_0xd51bdd[_0x541cb4[_0x2662d7(0x1ea)]]){if(_0x4f114e['wLpKF'](_0x4f114e[_0x2662d7(0x1c3)],_0x4f114e[_0x2662d7(0x1f4)]))_0xd51bdd[_0x541cb4[_0x2662d7(0x1ea)]]=0x0;else return _0x18e520;}_0xd51bdd[_0x541cb4[_0x2662d7(0x1ea)]]+=_0x541cb4['duration'];}});}}catch(_0x3ac284){_0x4f114e[_0x2398c9(0x174)](_0x4f114e[_0x2398c9(0x171)],_0x4f114e[_0x2398c9(0x1b1)])?_0x4f114e[_0x2398c9(0x191)](debug,'Error\x20in\x20doing\x20csv\x20operations:\x20'+_0x3ac284[_0x2398c9(0x1d7)]()):(!_0x230861[_0x49f6c9[_0x2398c9(0x1ea)]]&&(_0x555706[_0x4a2e3c[_0x2398c9(0x1ea)]]=0x0),_0x41ce06[_0x620658[_0x2398c9(0x1ea)]]+=_0x5093b8[_0x2398c9(0x168)]);}}else return _0x4f114e[_0x2398c9(0x199)](_0x39be29[_0x1e61d4],_0x4f114e[_0x2398c9(0x17d)](_0x46d04c,0x0));}const _0x537d7b=_0x5eda7c[_0x2398c9(0x1a1)]((_0x4db94a,_0x497852)=>{const _0x53e8fe=_0x2398c9;if(_0x4f114e[_0x53e8fe(0x16a)](_0x4f114e[_0x53e8fe(0x1b8)],_0x4f114e['oTSOv']))return _0x4f114e[_0x53e8fe(0x199)](_0xd51bdd[_0x497852],_0x4f114e[_0x53e8fe(0x1b9)](_0x4db94a,0x0));else _0x25b7f8+='<tr><td>'+_0x4e74bb['name']+_0x53e8fe(0x170)+_0x1ca1d1[_0x53e8fe(0x168)]+_0x53e8fe(0x1dc);},0x0);return _0x4f114e[_0x2398c9(0x1a8)](debug,_0x2398c9(0x1f5)+_0x5eda7c+_0x2398c9(0x1a5)+_0x537d7b),_0x537d7b;}static['getEventsFromJSON'](_0x3eb79b){const _0x2776c0=a46_0x1a648b,_0x30abc1={};_0x30abc1[_0x2776c0(0x16c)]=function(_0x2fe155,_0xdab43){return _0x2fe155===_0xdab43;},_0x30abc1[_0x2776c0(0x197)]='leIpb';const _0x3a6875=_0x30abc1;if(!fs[_0x2776c0(0x17f)](_0x3eb79b)){if(_0x3a6875['CrUoI'](_0x3a6875[_0x2776c0(0x197)],_0x3a6875['dMSDs']))return[];else!_0x392e5[_0x3df755[_0x2776c0(0x1ea)]]&&(_0x3e8996[_0x364703[_0x2776c0(0x1ea)]]=0x0),_0x2de361[_0x337b7b[_0x2776c0(0x1ea)]]+=_0x33e685['duration'];}return JSON[_0x2776c0(0x1de)](fs[_0x2776c0(0x1c7)](_0x3eb79b)['toString']());}static async[a46_0x1a648b(0x1d2)](_0x23aad9=a46_0x1a648b(0x169),_0x2cec93=null){const _0x339e9c=a46_0x1a648b,_0x33b415={'pvQUw':_0x339e9c(0x18e),'AqtsZ':'<h1>Performance\x20Report</h1>','QkUEP':_0x339e9c(0x188),'ZLZvb':_0x339e9c(0x1ee),'OaKqk':function(_0x4cea6e,_0x1aedc9){return _0x4cea6e===_0x1aedc9;},'hcqtm':_0x339e9c(0x184),'WnLKk':_0x339e9c(0x1bf),'JBTRt':function(_0x3616a2,_0x3f762e){return _0x3616a2!==_0x3f762e;},'wIjqv':_0x339e9c(0x1c4),'HajRb':function(_0x1ab71f,_0x261fe5){return _0x1ab71f(_0x261fe5);},'vDjBr':function(_0x4e1d5a,_0x2f540c){return _0x4e1d5a(_0x2f540c);},'MSOLe':_0x339e9c(0x19b),'dXQsA':_0x339e9c(0x1f7)};if(!this[_0x339e9c(0x1c5)]){if(_0x33b415['JBTRt'](_0x33b415[_0x339e9c(0x18b)],_0x33b415[_0x339e9c(0x1d8)]))return;else!_0xf2e937[_0x2ae0b2[_0x339e9c(0x1ea)]]&&(_0x47d99e[_0xccee2c[_0x339e9c(0x1ea)]]=0x0),_0x58e690[_0x1e7a33[_0x339e9c(0x1ea)]]+=_0xedbeff[_0x339e9c(0x168)];}await _0x33b415[_0x339e9c(0x167)](sleep,0x1e),this[_0x339e9c(0x182)]['disconnect'](),this[_0x339e9c(0x1c5)]=![],this['generateJSON'](this[_0x339e9c(0x16f)]);const _0x59227d=this[_0x339e9c(0x1dd)](this[_0x339e9c(0x16f)]),_0x24f095=path[_0x339e9c(0x1e2)](process[_0x339e9c(0x192)](),_0x23aad9);fs[_0x339e9c(0x1c1)](_0x24f095,_0x59227d,_0x1d8ab8=>{const _0x24f9ba=_0x339e9c;if(_0x33b415[_0x24f9ba(0x1ad)](_0x33b415[_0x24f9ba(0x178)],_0x33b415[_0x24f9ba(0x1c2)])){const _0x1c8699={};_0x15dd04[_0x24f9ba(0x1b5)](_0x5c4660=>{const _0x3a68ce=_0x24f9ba;!_0x1c8699[_0x5c4660[_0x3a68ce(0x1ea)]]&&(_0x1c8699[_0x5c4660[_0x3a68ce(0x1ea)]]=0x0),_0x1c8699[_0x5c4660[_0x3a68ce(0x1ea)]]+=_0x5c4660[_0x3a68ce(0x168)];});const _0x2998db=_0x1e3e97[_0x24f9ba(0x1f3)](_0x1c8699)[_0x24f9ba(0x1b5)](([_0x4ada2e,_0x370c67])=>{const _0xd46d20=_0x24f9ba,_0x3d0f2b={};return _0x3d0f2b[_0xd46d20(0x1ea)]=_0x4ada2e,_0x3d0f2b[_0xd46d20(0x168)]=_0x370c67,_0x3d0f2b;});_0x48205a[_0x24f9ba(0x1ca)](this[_0x24f9ba(0x17c)],_0x24e478['stringify'](_0x2998db));}else{if(_0x1d8ab8){if(_0x33b415[_0x24f9ba(0x1e1)](_0x33b415[_0x24f9ba(0x1c9)],_0x33b415[_0x24f9ba(0x1c9)])){let _0x378014=_0x33b415[_0x24f9ba(0x1d3)];return _0x378014+=_0x33b415['AqtsZ'],_0x378014+=_0x33b415[_0x24f9ba(0x1af)],_0x842a29[_0x24f9ba(0x1cf)](_0xa0db5b=>{const _0x43bc4e=_0x24f9ba;_0x378014+='<tr><td>'+_0xa0db5b[_0x43bc4e(0x1ea)]+_0x43bc4e(0x170)+_0xa0db5b[_0x43bc4e(0x168)]+_0x43bc4e(0x1dc);}),_0x378014+=_0x33b415[_0x24f9ba(0x183)],_0x378014;}else{_0x33b415[_0x24f9ba(0x167)](debug,_0x24f9ba(0x16b)+_0x1d8ab8[_0x24f9ba(0x1d7)]());return;}}_0x33b415[_0x24f9ba(0x1db)](debug,_0x24f9ba(0x1a7)+_0x24f095);}});if(_0x2cec93)return this[_0x339e9c(0x1eb)](this[_0x339e9c(0x16f)],_0x2cec93);}static[a46_0x1a648b(0x1dd)](_0x545ff0){const _0x3f6ef0=a46_0x1a648b,_0x5e2144={'ttFhg':function(_0x20a79b,_0x40cadd){return _0x20a79b(_0x40cadd);},'HydXD':function(_0x44ba78,_0x49aecb){return _0x44ba78===_0x49aecb;},'zVdPG':_0x3f6ef0(0x19a),'wyJxQ':_0x3f6ef0(0x18e),'SwqhT':_0x3f6ef0(0x1c6),'xaAJY':_0x3f6ef0(0x188),'WbhmR':_0x3f6ef0(0x1ee)};let _0x22da05=_0x5e2144['wyJxQ'];return _0x22da05+=_0x5e2144[_0x3f6ef0(0x1ce)],_0x22da05+=_0x5e2144[_0x3f6ef0(0x1d5)],_0x545ff0[_0x3f6ef0(0x1cf)](_0x49a737=>{const _0x313f4c=_0x3f6ef0,_0x1613b2={'VtHps':function(_0x1d8e11,_0x190e5f){const _0x3772bd=a46_0x4181;return _0x5e2144[_0x3772bd(0x1f2)](_0x1d8e11,_0x190e5f);}};_0x5e2144[_0x313f4c(0x185)](_0x5e2144[_0x313f4c(0x1f0)],_0x5e2144[_0x313f4c(0x1f0)])?_0x22da05+='<tr><td>'+_0x49a737[_0x313f4c(0x1ea)]+'</td><td>'+_0x49a737[_0x313f4c(0x168)]+_0x313f4c(0x1dc):_0x1613b2['VtHps'](_0x5af20a,'Error\x20in\x20doing\x20csv\x20operations:\x20'+_0x1631a5['toString']());}),_0x22da05+=_0x5e2144[_0x3f6ef0(0x1d9)],_0x22da05;}static['generateJSON'](_0x59d467){const _0x30c129=a46_0x1a648b,_0x58faa6={};_0x58faa6[_0x30c129(0x1d6)]=function(_0x4768d8,_0x504336){return _0x4768d8===_0x504336;},_0x58faa6[_0x30c129(0x177)]='MkMmr',_0x58faa6[_0x30c129(0x1e5)]=_0x30c129(0x1e0),_0x58faa6[_0x30c129(0x198)]='qEvbk',_0x58faa6['fiPNw']=_0x30c129(0x1d1),_0x58faa6[_0x30c129(0x19f)]=_0x30c129(0x1e8);const _0x41b33c=_0x58faa6,_0x22d2ee={};_0x59d467[_0x30c129(0x1b5)](_0x3b6dcf=>{const _0x1ea048=_0x30c129;if(_0x41b33c[_0x1ea048(0x1d6)](_0x41b33c[_0x1ea048(0x177)],_0x41b33c[_0x1ea048(0x1e5)]))return 0x0;else!_0x22d2ee[_0x3b6dcf[_0x1ea048(0x1ea)]]&&(_0x41b33c[_0x1ea048(0x1d6)](_0x41b33c[_0x1ea048(0x198)],_0x41b33c[_0x1ea048(0x198)])?_0x22d2ee[_0x3b6dcf['name']]=0x0:this[_0x1ea048(0x16f)][_0x1ea048(0x190)](_0x43058f)),_0x22d2ee[_0x3b6dcf[_0x1ea048(0x1ea)]]+=_0x3b6dcf['duration'];});const _0x5d6e29=Object[_0x30c129(0x1f3)](_0x22d2ee)[_0x30c129(0x1b5)](([_0x5a6546,_0x7459])=>{const _0x1892db=_0x30c129;if(_0x41b33c['qyhdc'](_0x41b33c[_0x1892db(0x1df)],_0x41b33c[_0x1892db(0x19f)])){const _0x92bef9=this['getEventsFromJSON'](_0x3bb03e);_0x92bef9[_0x1892db(0x1b5)](_0xe55aac=>{const _0x3ad92f=_0x1892db;!_0xff4c40[_0xe55aac['name']]&&(_0xc02eb5[_0xe55aac['name']]=0x0),_0x337d09[_0xe55aac['name']]+=_0xe55aac[_0x3ad92f(0x168)];});}else{const _0x3012c6={};return _0x3012c6['name']=_0x5a6546,_0x3012c6[_0x1892db(0x168)]=_0x7459,_0x3012c6;}});fs[_0x30c129(0x1ca)](this[_0x30c129(0x17c)],JSON[_0x30c129(0x1a4)](_0x5d6e29));}}function a46_0x4181(_0x2ab3b9,_0x5a47dc){const _0x188a71=a46_0x188a();return a46_0x4181=function(_0x4181c9,_0x39d885){_0x4181c9=_0x4181c9-0x167;let _0x4fefe3=_0x188a71[_0x4181c9];return _0x4fefe3;},a46_0x4181(_0x2ab3b9,_0x5a47dc);}module['exports']=PerformanceTester;
|
|
1
|
+
const a46_0x5aa797=a46_0x396a;function a46_0x396a(_0x1b8f1d,_0x4516dd){const _0x3e9af9=a46_0x3e9a();return a46_0x396a=function(_0x396aa1,_0x3b431b){_0x396aa1=_0x396aa1-0x16c;let _0x2c160c=_0x3e9af9[_0x396aa1];return _0x2c160c;},a46_0x396a(_0x1b8f1d,_0x4516dd);}function a46_0x3e9a(){const _0x522358=['71075IQwJqL','parse','<!DOCTYPE\x20html><html><head><title>Performance\x20Report</title></head><body>','rodfL','cGRhG','53896YRVaKI','wBzvn','XjqJm','iBRrL','273qFLJYM','writeFileSync','duration','rkXzr','<tr><td>','hFddn','reduce','pXAPD','RMzUX','<h1>Performance\x20Report</h1>','oSqAW','uiYig','54093aoLjBy','</td><td>','zjvVp','128655dABpRE','nMWMa','Performance\x20report\x20is\x20at\x20','smwcC','hFyAE','lkXSH','LXDjh','stringify','push','startMonitoring','UvHml','DMflE','EKpiP','RDaoN','GQJyM','JerOm','jsonReportFileName','YfvNw','tjTfL','fyfta','Error\x20in\x20writing\x20html\x20','bfWLH','generateHTMLReport','_observer','rLjzq','DaXto','performance-report.json','nEkXl','nIPlb','mMjui','Error\x20in\x20doing\x20csv\x20operations:\x20','map','IsoTG','DXNuC','bdnDS','generateJSON','stdND','lCqXX','PSLMH','lJMCU','QjdwU','eSjKG','PRHfD','performance-own.html','uoeUz','msGVS','RZenO','started','readFileSync','DiOVH','wjGgc','513410Tybnqt','qTPAu','getPerformance','erTCD','writeFile','busPG','isofF','bYsTF','FooSU','cmrfr','AhaqU','Gfqpm','ehjPt','vmoqj','qPByu','pSBXi','tenPJ','getEventsFromJSON','383368mtaiVR','eHzCV','getEntries','mkQxl','CzhqQ','name','stopAndGenerate','join','6IQrjZS','PRNBu','exports','dLSHH','observe','</td></tr>','length','xUtEg','toString','tLeNK','ThLzB','calculateTimesFromMultipleFiles','KLyXv','STcam','eVrjU','JRRiW','hnIdu','DHaRD','SaGgA','jzEqL','cwd','pIyHe','OsjUo','QhQCq','SIYRq','EFnSf','ncRUu','existsSync','cbrYX','vmNwu','XUxwC','cwdBs','forEach','845036jLDzbg','dlbnU','path','_events','entries','YGQcl','</tbody></table></body></html>','yyvty','PcOva'];a46_0x3e9a=function(){return _0x522358;};return a46_0x3e9a();}(function(_0x8cbdf0,_0xd816d2){const _0xd7a392=a46_0x396a,_0x55eeaf=_0x8cbdf0();while(!![]){try{const _0x4b6739=-parseInt(_0xd7a392(0x178))/0x1+parseInt(_0xd7a392(0x1d5))/0x2+-parseInt(_0xd7a392(0x18d))/0x3+parseInt(_0xd7a392(0x16f))/0x4+parseInt(_0xd7a392(0x1c3))/0x5*(parseInt(_0xd7a392(0x1dd))/0x6)+parseInt(_0xd7a392(0x181))/0x7*(-parseInt(_0xd7a392(0x17d))/0x8)+-parseInt(_0xd7a392(0x190))/0x9;if(_0x4b6739===_0xd816d2)break;else _0x55eeaf['push'](_0x55eeaf['shift']());}catch(_0x23e925){_0x55eeaf['push'](_0x55eeaf['shift']());}}}(a46_0x3e9a,0x220d9));const fs=require('fs'),{performance,PerformanceObserver}=require('perf_hooks'),{sleep,debug}=require('./utils'),path=require(a46_0x5aa797(0x171));class PerformanceTester{static [a46_0x5aa797(0x1a7)];static [a46_0x5aa797(0x172)]=[];static ['started']=![];static[a46_0x5aa797(0x199)](_0x5980b6=a46_0x5aa797(0x1aa)){const _0x561025=a46_0x5aa797,_0x4cce89={'EFnSf':function(_0x4a8b43,_0x5e46ce){return _0x4a8b43(_0x5e46ce);},'GQJyM':function(_0x32e42c,_0x50bc92){return _0x32e42c!==_0x50bc92;},'QjdwU':_0x561025(0x1ee),'dlbnU':function(_0x2fb359,_0x266bd3){return _0x2fb359!==_0x266bd3;},'SaGgA':_0x561025(0x1a2),'busPG':'function'};this[_0x561025(0x1a7)]=new PerformanceObserver(_0x44ede5=>{const _0x4875a6=_0x561025,_0x1d58da={'ddOmx':function(_0x2c13b2,_0x57742a){const _0x5ea5a6=a46_0x396a;return _0x4cce89[_0x5ea5a6(0x19e)](_0x2c13b2,_0x57742a);},'mMjui':_0x4cce89[_0x4875a6(0x1b8)]};_0x4cce89[_0x4875a6(0x170)](_0x4cce89[_0x4875a6(0x1ef)],_0x4cce89[_0x4875a6(0x1ef)])?_0x4cce89[_0x4875a6(0x1f6)](_0x3eaf53,_0x4875a6(0x1ae)+_0x8fdc7[_0x4875a6(0x1e5)]()):_0x44ede5[_0x4875a6(0x1d7)]()[_0x4875a6(0x16e)](_0x106b6f=>{const _0x58cc37=_0x4875a6;if(_0x1d58da['ddOmx'](_0x1d58da[_0x58cc37(0x1ad)],_0x1d58da[_0x58cc37(0x1ad)])){const _0x59760c=this[_0x58cc37(0x1d4)](_0x388648);_0x59760c[_0x58cc37(0x1af)](_0x340631=>{const _0x3d0e83=_0x58cc37;!_0x219602[_0x340631[_0x3d0e83(0x1da)]]&&(_0x2806bf[_0x340631[_0x3d0e83(0x1da)]]=0x0),_0x4066c3[_0x340631['name']]+=_0x340631[_0x3d0e83(0x183)];});}else this[_0x58cc37(0x172)][_0x58cc37(0x198)](_0x106b6f);});});const _0xa53204={};_0xa53204['buffered']=!![],_0xa53204['entryTypes']=[_0x4cce89[_0x561025(0x1c8)]],this[_0x561025(0x1a7)][_0x561025(0x1e1)](_0xa53204),this[_0x561025(0x1bf)]=!![],this[_0x561025(0x1a0)]=_0x5980b6;}static[a46_0x5aa797(0x1c5)](){return performance;}static['calculateTimeFromEvents'](_0xdd13ae,_0x15bb46){const _0x5ed8b8=a46_0x5aa797,_0x7c7e6e={};_0x7c7e6e[_0x5ed8b8(0x188)]=function(_0x1c7232,_0x10b9c5){return _0x1c7232+_0x10b9c5;},_0x7c7e6e[_0x5ed8b8(0x17c)]=function(_0x3a4d7d,_0x555dfd){return _0x3a4d7d||_0x555dfd;},_0x7c7e6e[_0x5ed8b8(0x1a5)]=function(_0x7be151,_0xe81201){return _0x7be151===_0xe81201;},_0x7c7e6e[_0x5ed8b8(0x1c1)]=_0x5ed8b8(0x1f3),_0x7c7e6e[_0x5ed8b8(0x1ea)]=function(_0x824d82,_0x3ca598){return _0x824d82!==_0x3ca598;},_0x7c7e6e['RZenO']=_0x5ed8b8(0x1a9),_0x7c7e6e[_0x5ed8b8(0x1eb)]=function(_0x1c1f32,_0x1fefc0){return _0x1c1f32===_0x1fefc0;},_0x7c7e6e['SIYRq']=_0x5ed8b8(0x1b0),_0x7c7e6e[_0x5ed8b8(0x177)]=_0x5ed8b8(0x1ac),_0x7c7e6e[_0x5ed8b8(0x1ce)]=function(_0x67873,_0x1ce52d){return _0x67873+_0x1ce52d;},_0x7c7e6e[_0x5ed8b8(0x1ec)]=function(_0x37086f,_0x3b31fe){return _0x37086f||_0x3b31fe;},_0x7c7e6e[_0x5ed8b8(0x1d3)]=function(_0x25b8cf,_0x35563f){return _0x25b8cf!==_0x35563f;},_0x7c7e6e[_0x5ed8b8(0x195)]=_0x5ed8b8(0x1d8),_0x7c7e6e[_0x5ed8b8(0x1b9)]='bRZvw';const _0x2a25c2=_0x7c7e6e,_0x398ae7={};if(!_0xdd13ae||_0x2a25c2[_0x5ed8b8(0x1eb)](_0xdd13ae[_0x5ed8b8(0x1e3)],0x0)){if(_0x2a25c2[_0x5ed8b8(0x1d3)](_0x2a25c2[_0x5ed8b8(0x195)],_0x2a25c2[_0x5ed8b8(0x1b9)]))return;else return 0x0;}_0xdd13ae['map'](_0xad120c=>{const _0x411364=_0x5ed8b8,_0x194685={'QhQCq':function(_0x205392,_0x18aa08){const _0x744595=a46_0x396a;return _0x2a25c2[_0x744595(0x188)](_0x205392,_0x18aa08);},'qTPAu':function(_0x22bc82,_0x1af072){const _0x1d426e=a46_0x396a;return _0x2a25c2[_0x1d426e(0x17c)](_0x22bc82,_0x1af072);}};if(_0x2a25c2[_0x411364(0x1a5)](_0x2a25c2[_0x411364(0x1c1)],_0x2a25c2['DiOVH'])){if(!_0x398ae7[_0xad120c[_0x411364(0x1da)]]){if(_0x2a25c2[_0x411364(0x1ea)](_0x2a25c2[_0x411364(0x1be)],_0x2a25c2['RZenO']))return;else _0x398ae7[_0xad120c[_0x411364(0x1da)]]=0x0;}_0x398ae7[_0xad120c[_0x411364(0x1da)]]+=_0xad120c[_0x411364(0x183)];}else return _0x194685[_0x411364(0x1f4)](_0x5997b3[_0x169d42],_0x194685[_0x411364(0x1c4)](_0x593839,0x0));});const _0x3b470e=_0x15bb46[_0x5ed8b8(0x187)]((_0x1798e3,_0x19deff)=>{const _0x49f5c8=_0x5ed8b8;if(_0x2a25c2[_0x49f5c8(0x1eb)](_0x2a25c2[_0x49f5c8(0x1f5)],_0x2a25c2[_0x49f5c8(0x177)]))!_0x4fecf3[_0x9956e['name']]&&(_0x58b424[_0x51e58d[_0x49f5c8(0x1da)]]=0x0),_0x3066d9[_0x3f8bda[_0x49f5c8(0x1da)]]+=_0x2212db[_0x49f5c8(0x183)];else return _0x2a25c2[_0x49f5c8(0x1ce)](_0x398ae7[_0x19deff],_0x2a25c2[_0x49f5c8(0x1ec)](_0x1798e3,0x0));},0x0);return _0x3b470e;}static async[a46_0x5aa797(0x1e8)](_0x4d6db9,_0x5552ab){const _0x210176=a46_0x5aa797,_0x77a0e4={'PRHfD':function(_0x27b4f0,_0x5714fe){return _0x27b4f0(_0x5714fe);},'cmrfr':function(_0x511f61,_0x1d9105){return _0x511f61(_0x1d9105);},'pSBXi':function(_0x417806,_0x2852e1){return _0x417806===_0x2852e1;},'eHzCV':'vzSnB','XjqJm':_0x210176(0x1b6),'GvEsg':_0x210176(0x174),'cbrYX':function(_0x1210a8,_0x47a9a7){return _0x1210a8+_0x47a9a7;},'yyvty':function(_0x421ef3,_0x56021c){return _0x421ef3||_0x56021c;},'rLjzq':_0x210176(0x17a),'rmRba':_0x210176(0x18a),'tQnRr':'<table><thead><tr><th>Function\x20Name</th><th>Duration\x20(ms)</th></tr></thead><tbody>','rkXzr':_0x210176(0x175),'CzhqQ':function(_0x568414,_0x48c5a6){return _0x568414!==_0x48c5a6;},'hnIdu':_0x210176(0x18f),'EKpiP':function(_0x19b869,_0x3d4f20){return _0x19b869+_0x3d4f20;},'xUtEg':function(_0x174fd6,_0x14d900){return _0x174fd6===_0x14d900;},'KQNxy':_0x210176(0x1e0),'DMflE':_0x210176(0x186),'YfvNw':function(_0x5ad01a,_0x50055d){return _0x5ad01a===_0x50055d;},'pIyHe':_0x210176(0x1b2),'cwdBs':_0x210176(0x17b),'AhaqU':_0x210176(0x1fa),'stdND':_0x210176(0x1cb)};if(!_0x4d6db9||_0x77a0e4[_0x210176(0x1e4)](_0x4d6db9[_0x210176(0x1e3)],0x0)){if(_0x77a0e4['CzhqQ'](_0x77a0e4['KQNxy'],_0x77a0e4[_0x210176(0x19b)]))return 0x0;else{const _0x35e92c={};return _0x35e92c['name']=_0xdca3df,_0x35e92c[_0x210176(0x183)]=_0x5ff781,_0x35e92c;}}const _0x4dabae=[];for(const _0x22a7e8 of _0x4d6db9){if(_0x77a0e4[_0x210176(0x1a1)](_0x77a0e4['pIyHe'],_0x77a0e4[_0x210176(0x1f2)])){const _0x56ccf4=path[_0x210176(0x1dc)]('.',_0x22a7e8);try{if(_0x77a0e4[_0x210176(0x1d9)](_0x77a0e4[_0x210176(0x16d)],_0x77a0e4[_0x210176(0x16d)]))_0x1707a3[_0x4faa76[_0x210176(0x1da)]]=0x0;else{const _0x21b216=this['getEventsFromJSON'](_0x56ccf4);_0x21b216['map'](_0x4c331a=>{const _0x22e21e=_0x210176,_0x4e4154={'lJUTx':function(_0x5a4c07,_0x502ef1){const _0x15bb07=a46_0x396a;return _0x77a0e4[_0x15bb07(0x1ba)](_0x5a4c07,_0x502ef1);},'erTCD':function(_0x2b681b,_0x5cbb24){const _0x2af7ab=a46_0x396a;return _0x77a0e4[_0x2af7ab(0x1cc)](_0x2b681b,_0x5cbb24);}};if(_0x77a0e4['pSBXi'](_0x77a0e4[_0x22e21e(0x1d6)],_0x77a0e4[_0x22e21e(0x1d6)])){if(!_0x4dabae[_0x4c331a[_0x22e21e(0x1da)]]){if(_0x77a0e4[_0x22e21e(0x1d2)](_0x77a0e4[_0x22e21e(0x17f)],_0x77a0e4['GvEsg'])){if(_0x482f80){_0x4e4154['lJUTx'](_0x2c6431,_0x22e21e(0x1a4)+_0x5bc36b[_0x22e21e(0x1e5)]());return;}_0x4e4154[_0x22e21e(0x1c6)](_0x15324d,_0x22e21e(0x192)+_0x4c176f);}else _0x4dabae[_0x4c331a[_0x22e21e(0x1da)]]=0x0;}_0x4dabae[_0x4c331a['name']]+=_0x4c331a[_0x22e21e(0x183)];}else _0x11882f['getEntries']()[_0x22e21e(0x16e)](_0x204557=>{const _0x56719=_0x22e21e;this['_events'][_0x56719(0x198)](_0x204557);});});}}catch(_0x273061){_0x77a0e4['xUtEg'](_0x77a0e4[_0x210176(0x1cd)],_0x77a0e4[_0x210176(0x1b4)])?_0x47996c+=_0x210176(0x185)+_0x3bdfc8[_0x210176(0x1da)]+_0x210176(0x18e)+_0x29a435[_0x210176(0x183)]+'</td></tr>':_0x77a0e4[_0x210176(0x1ba)](debug,_0x210176(0x1ae)+_0x273061[_0x210176(0x1e5)]());}}else return _0x77a0e4[_0x210176(0x1f9)](_0x4838d1[_0x2f6ec1],_0x77a0e4[_0x210176(0x176)](_0x1581bf,0x0));}const _0xcff2e0=_0x5552ab[_0x210176(0x187)]((_0xc43fe2,_0x136c17)=>{const _0x5091da=_0x210176;if(_0x77a0e4[_0x5091da(0x1d9)](_0x77a0e4[_0x5091da(0x1ed)],_0x77a0e4['hnIdu'])){let _0x1afdc2=_0x77a0e4[_0x5091da(0x1a8)];return _0x1afdc2+=_0x77a0e4['rmRba'],_0x1afdc2+=_0x77a0e4['tQnRr'],_0x4ce715[_0x5091da(0x16e)](_0x4ea928=>{const _0x5222dc=_0x5091da;_0x1afdc2+=_0x5222dc(0x185)+_0x4ea928[_0x5222dc(0x1da)]+_0x5222dc(0x18e)+_0x4ea928[_0x5222dc(0x183)]+_0x5222dc(0x1e2);}),_0x1afdc2+=_0x77a0e4[_0x5091da(0x184)],_0x1afdc2;}else return _0x77a0e4[_0x5091da(0x19c)](_0x4dabae[_0x136c17],_0x77a0e4[_0x5091da(0x176)](_0xc43fe2,0x0));},0x0);return _0x77a0e4[_0x210176(0x1ba)](debug,'Time\x20for\x20'+_0x5552ab+'\x20for\x20all\x20processes\x20is\x20'+_0xcff2e0),_0xcff2e0;}static[a46_0x5aa797(0x1d4)](_0x3f5c86){const _0xce76da=a46_0x5aa797,_0x1070a7={};_0x1070a7[_0xce76da(0x194)]=function(_0x5af3e5,_0x53d6d3){return _0x5af3e5!==_0x53d6d3;},_0x1070a7[_0xce76da(0x18c)]=_0xce76da(0x1f7),_0x1070a7[_0xce76da(0x1e6)]=_0xce76da(0x19d);const _0x29a7f6=_0x1070a7;if(!fs['existsSync'](_0x3f5c86)){if(_0x29a7f6['hFyAE'](_0x29a7f6['uiYig'],_0x29a7f6[_0xce76da(0x1e6)]))return[];else return;}return JSON[_0xce76da(0x179)](fs[_0xce76da(0x1c0)](_0x3f5c86)['toString']());}static async[a46_0x5aa797(0x1db)](_0x5ce002=a46_0x5aa797(0x1bb),_0x1726ed=null){const _0x2935ac=a46_0x5aa797,_0x2c2c2f={'nMWMa':function(_0x3a111f,_0x3c2fec){return _0x3a111f(_0x3c2fec);},'LXDjh':function(_0xec8197,_0xf3d845){return _0xec8197===_0xf3d845;},'wBzvn':_0x2935ac(0x1b1),'CKFxc':_0x2935ac(0x189),'lCqXX':function(_0x30b091,_0x5746ca){return _0x30b091===_0x5746ca;},'smwcC':_0x2935ac(0x1cf),'oSqAW':function(_0x2b77e6,_0x4606c9){return _0x2b77e6!==_0x4606c9;},'msGVS':_0x2935ac(0x19a)};if(!this[_0x2935ac(0x1bf)]){if(_0x2c2c2f[_0x2935ac(0x18b)](_0x2c2c2f[_0x2935ac(0x1bd)],_0x2c2c2f[_0x2935ac(0x1bd)])){_0x2c2c2f[_0x2935ac(0x191)](_0x276f54,'Error\x20in\x20writing\x20html\x20'+_0x3e3411[_0x2935ac(0x1e5)]());return;}else return;}await _0x2c2c2f[_0x2935ac(0x191)](sleep,0x1e),this[_0x2935ac(0x1a7)]['disconnect'](),this[_0x2935ac(0x1bf)]=![],this['generateJSON'](this[_0x2935ac(0x172)]);const _0x2ac164=this[_0x2935ac(0x1a6)](this[_0x2935ac(0x172)]),_0x2dc5a5=path[_0x2935ac(0x1dc)](process[_0x2935ac(0x1f1)](),_0x5ce002);fs[_0x2935ac(0x1c7)](_0x2dc5a5,_0x2ac164,_0x39bfbb=>{const _0x5a06a2=_0x2935ac;if(_0x2c2c2f[_0x5a06a2(0x196)](_0x2c2c2f[_0x5a06a2(0x17e)],_0x2c2c2f['CKFxc']))_0x56def9[_0x7b98f1[_0x5a06a2(0x1da)]]=0x0;else{if(_0x39bfbb){if(_0x2c2c2f[_0x5a06a2(0x1b5)](_0x2c2c2f[_0x5a06a2(0x193)],_0x2c2c2f['smwcC'])){_0x2c2c2f['nMWMa'](debug,_0x5a06a2(0x1a4)+_0x39bfbb[_0x5a06a2(0x1e5)]());return;}else{if(!_0x5d75e1[_0x5a06a2(0x1f8)](_0x80b8e0))return[];return _0x4cd6bd[_0x5a06a2(0x179)](_0x21e39d[_0x5a06a2(0x1c0)](_0x498555)[_0x5a06a2(0x1e5)]());}}_0x2c2c2f[_0x5a06a2(0x191)](debug,_0x5a06a2(0x192)+_0x2dc5a5);}});if(_0x1726ed)return this['calculateTimeFromEvents'](this[_0x2935ac(0x172)],_0x1726ed);}static['generateHTMLReport'](_0x1ae68e){const _0x327e49=a46_0x5aa797,_0x3ee483={};_0x3ee483[_0x327e49(0x1bc)]=function(_0x1d39ed,_0x43b90d){return _0x1d39ed===_0x43b90d;},_0x3ee483[_0x327e49(0x1d1)]='QRwEx',_0x3ee483['isofF']=_0x327e49(0x1de),_0x3ee483['JerOm']=_0x327e49(0x17a),_0x3ee483[_0x327e49(0x1b7)]=_0x327e49(0x18a),_0x3ee483[_0x327e49(0x180)]='<table><thead><tr><th>Function\x20Name</th><th>Duration\x20(ms)</th></tr></thead><tbody>',_0x3ee483[_0x327e49(0x1ab)]=_0x327e49(0x175);const _0x4c3118=_0x3ee483;let _0x365fe8=_0x4c3118[_0x327e49(0x19f)];return _0x365fe8+=_0x4c3118[_0x327e49(0x1b7)],_0x365fe8+=_0x4c3118[_0x327e49(0x180)],_0x1ae68e[_0x327e49(0x16e)](_0x56e293=>{const _0x14aaec=_0x327e49;if(_0x4c3118[_0x14aaec(0x1bc)](_0x4c3118[_0x14aaec(0x1d1)],_0x4c3118[_0x14aaec(0x1c9)])){const _0x312890={};_0x294e04[_0x14aaec(0x1af)](_0x9076f3=>{const _0x3c33c0=_0x14aaec;!_0x312890[_0x9076f3[_0x3c33c0(0x1da)]]&&(_0x312890[_0x9076f3[_0x3c33c0(0x1da)]]=0x0),_0x312890[_0x9076f3[_0x3c33c0(0x1da)]]+=_0x9076f3[_0x3c33c0(0x183)];});const _0x3252b4=_0x175a8f[_0x14aaec(0x173)](_0x312890)[_0x14aaec(0x1af)](([_0xd998b7,_0x3d0bce])=>{const _0xc4c0bc=_0x14aaec,_0x349bf3={};return _0x349bf3[_0xc4c0bc(0x1da)]=_0xd998b7,_0x349bf3[_0xc4c0bc(0x183)]=_0x3d0bce,_0x349bf3;});_0x2c8157[_0x14aaec(0x182)](this[_0x14aaec(0x1a0)],_0x3eb682['stringify'](_0x3252b4));}else _0x365fe8+=_0x14aaec(0x185)+_0x56e293[_0x14aaec(0x1da)]+'</td><td>'+_0x56e293['duration']+'</td></tr>';}),_0x365fe8+=_0x4c3118[_0x327e49(0x1ab)],_0x365fe8;}static[a46_0x5aa797(0x1b3)](_0x571a02){const _0x31e26d=a46_0x5aa797,_0x2e14a3={};_0x2e14a3['ThLzB']=function(_0x2fd1ee,_0x306d36){return _0x2fd1ee!==_0x306d36;},_0x2e14a3[_0x31e26d(0x1d0)]=_0x31e26d(0x1f0),_0x2e14a3['wjGgc']=function(_0x4339ce,_0x59ae83){return _0x4339ce===_0x59ae83;},_0x2e14a3['KLyXv']='pJAyz',_0x2e14a3[_0x31e26d(0x1ca)]=_0x31e26d(0x16c),_0x2e14a3[_0x31e26d(0x1a3)]='svdkL';const _0x408498=_0x2e14a3,_0x51e7a4={};_0x571a02[_0x31e26d(0x1af)](_0x380c47=>{const _0x1f5329=_0x31e26d;_0x408498[_0x1f5329(0x1e7)](_0x408498[_0x1f5329(0x1d0)],_0x408498['vmoqj'])?(!_0x222925[_0x4e4355[_0x1f5329(0x1da)]]&&(_0x43c742[_0x1cac53[_0x1f5329(0x1da)]]=0x0),_0x37fb31[_0x37619f['name']]+=_0x148824['duration']):(!_0x51e7a4[_0x380c47[_0x1f5329(0x1da)]]&&(_0x408498[_0x1f5329(0x1c2)](_0x408498[_0x1f5329(0x1e9)],_0x408498['bYsTF'])?(!_0x2a1497[_0x47ccd3[_0x1f5329(0x1da)]]&&(_0x1afbb1[_0x266ced[_0x1f5329(0x1da)]]=0x0),_0x5f5d1b[_0x498a74[_0x1f5329(0x1da)]]+=_0x3351dc[_0x1f5329(0x183)]):_0x51e7a4[_0x380c47[_0x1f5329(0x1da)]]=0x0),_0x51e7a4[_0x380c47[_0x1f5329(0x1da)]]+=_0x380c47[_0x1f5329(0x183)]);});const _0x453e8e=Object['entries'](_0x51e7a4)[_0x31e26d(0x1af)](([_0x54ced9,_0xcdb1dc])=>{const _0x405c88=_0x31e26d;if(_0x408498[_0x405c88(0x1e7)](_0x408498[_0x405c88(0x1a3)],_0x408498[_0x405c88(0x1a3)]))_0x18596e[_0x54ae76[_0x405c88(0x1da)]]=0x0;else{const _0x478c57={};return _0x478c57[_0x405c88(0x1da)]=_0x54ced9,_0x478c57[_0x405c88(0x183)]=_0xcdb1dc,_0x478c57;}});fs['writeFileSync'](this[_0x31e26d(0x1a0)],JSON[_0x31e26d(0x197)](_0x453e8e));}}module[a46_0x5aa797(0x1df)]=PerformanceTester;
|