@profoundlogic/coderflow-server 0.2.3 → 0.2.5
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/README.md +24 -0
- package/dist/README.md +24 -0
- package/dist/base-image/agent-wrapper.sh +4 -2
- package/dist/coder-server.js +1 -1
- package/dist/config/skill-catalog.json +27 -0
- package/dist/config.js +1 -1
- package/dist/lib/agent-keepalive.js +1 -1
- package/dist/lib/api-keys.js +1 -1
- package/dist/lib/apiKeys.js +1 -1
- package/dist/lib/app-server-ports.js +1 -1
- package/dist/lib/auto-judge.js +1 -1
- package/dist/lib/basic-auth.js +1 -1
- package/dist/lib/build-history.js +1 -1
- package/dist/lib/build-output-service.js +1 -1
- package/dist/lib/build-scheduler.js +1 -1
- package/dist/lib/build-service.js +1 -1
- package/dist/lib/ca-certificates.js +1 -1
- package/dist/lib/claude-oauth-refresh.js +1 -1
- package/dist/lib/cli/build.js +1 -1
- package/dist/lib/cli/config-command.js +1 -1
- package/dist/lib/cli/config.js +1 -1
- package/dist/lib/cli/create-user.js +1 -1
- package/dist/lib/cli/init.js +1 -1
- package/dist/lib/cli/jira.js +1 -1
- package/dist/lib/cli/license.js +1 -1
- package/dist/lib/cli/server-manager.js +1 -1
- package/dist/lib/container-tokens.js +1 -1
- package/dist/lib/data-dir.js +1 -1
- package/dist/lib/deployment-history.js +1 -1
- package/dist/lib/deployment-service.js +1 -1
- package/dist/lib/docker-utils.js +1 -1
- package/dist/lib/email.js +1 -1
- package/dist/lib/emailTemplates.js +1 -1
- package/dist/lib/entitlement.js +1 -1
- package/dist/lib/fetch-utils.js +1 -1
- package/dist/lib/git-commit-details-route.js +1 -0
- package/dist/lib/git-history-diff-guardrails.js +1 -0
- package/dist/lib/git-provider-service.js +1 -1
- package/dist/lib/git-provider-setup/github-setup-handler.js +1 -1
- package/dist/lib/git-provider-setup/index.js +1 -1
- package/dist/lib/git-provider-setup/setup-factory.js +1 -1
- package/dist/lib/git-provider-setup/setup-interface.js +1 -1
- package/dist/lib/git-providers/azure-devops-provider.js +1 -1
- package/dist/lib/git-providers/github-app-provider.js +1 -1
- package/dist/lib/git-providers/index.js +1 -1
- package/dist/lib/git-providers/provider-factory.js +1 -1
- package/dist/lib/git-providers/provider-interface.js +1 -1
- package/dist/lib/github-urls.js +1 -1
- package/dist/lib/jira-client.js +1 -1
- package/dist/lib/logger.js +1 -1
- package/dist/lib/model-fetcher.js +1 -1
- package/dist/lib/notifications.js +1 -1
- package/dist/lib/oidc-auth.js +1 -1
- package/dist/lib/oidc-device-flow.js +1 -1
- package/dist/lib/passwordTokens.js +1 -1
- package/dist/lib/pin-cascade.js +1 -1
- package/dist/lib/provider-accounts.js +1 -1
- package/dist/lib/provider-oauth.js +1 -1
- package/dist/lib/provider-profile.js +1 -1
- package/dist/lib/provider-token-refresh.js +1 -1
- package/dist/lib/request-url.js +1 -1
- package/dist/lib/rewind.js +1 -1
- package/dist/lib/roles.js +1 -1
- package/dist/lib/secrets.js +1 -1
- package/dist/lib/setup-repo-git-auth.js +1 -0
- package/dist/lib/state-capture.js +1 -1
- package/dist/lib/static-files.js +1 -1
- package/dist/lib/task-name-generator.js +1 -1
- package/dist/lib/user-git-oauth.js +1 -1
- package/dist/lib/user-git-tokens.js +1 -1
- package/dist/lib/users.js +1 -1
- package/dist/middleware/requireAuth.js +1 -1
- package/dist/middleware/requireInit.js +1 -1
- package/dist/middleware/requirePermission.js +1 -1
- package/dist/package.json +1 -1
- package/dist/routes/apiKeys.js +1 -1
- package/dist/routes/auth-oidc.js +1 -1
- package/dist/routes/auth.js +1 -1
- package/dist/routes/build.js +1 -1
- package/dist/routes/containers.js +1 -1
- package/dist/routes/deploy-task.js +1 -1
- package/dist/routes/environment-management.js +1 -1
- package/dist/routes/environments.js +1 -1
- package/dist/routes/external-skills.js +1 -1
- package/dist/routes/git-credentials.js +1 -1
- package/dist/routes/git-oauth.js +1 -1
- package/dist/routes/git-provider-setup.js +1 -1
- package/dist/routes/health.js +1 -1
- package/dist/routes/jira.js +1 -1
- package/dist/routes/objective-management.js +1 -1
- package/dist/routes/password.js +1 -1
- package/dist/routes/prompt.js +1 -1
- package/dist/routes/provider-auth.js +1 -1
- package/dist/routes/qa.js +1 -1
- package/dist/routes/settings.js +1 -1
- package/dist/routes/skill-management.js +1 -1
- package/dist/routes/skills.js +1 -1
- package/dist/routes/tasks.js +1 -1
- package/dist/routes/templates.js +1 -1
- package/dist/routes/test-task.js +1 -1
- package/dist/routes/test.js +1 -1
- package/dist/routes/users.js +1 -1
- package/dist/routes/visualizations.js +1 -1
- package/dist/scripts/create-user.js +1 -1
- package/dist/start.js +1 -1
- package/dist/web-ui/public/activity-detail-modal.js +1 -1
- package/dist/web-ui/public/activity-feed.js +1 -1
- package/dist/web-ui/public/activity-formatters.js +1 -1
- package/dist/web-ui/public/agent-event-parser.js +1 -1
- package/dist/web-ui/public/app.js +1 -1
- package/dist/web-ui/public/approve-dialog.js +1 -1
- package/dist/web-ui/public/comments-widget.js +1 -1
- package/dist/web-ui/public/diff-utils.js +1 -1
- package/dist/web-ui/public/docs/tasks/providing-feedback.md +1 -1
- package/dist/web-ui/public/environments.css +23 -0
- package/dist/web-ui/public/environments.html +3 -2
- package/dist/web-ui/public/environments.js +1 -1
- package/dist/web-ui/public/feedback-widget.js +1 -1
- package/dist/web-ui/public/git-history-lazy-utils.js +1 -0
- package/dist/web-ui/public/git-history.css +56 -0
- package/dist/web-ui/public/git-history.html +2 -2
- package/dist/web-ui/public/git-history.js +1 -1
- package/dist/web-ui/public/git-status.js +1 -1
- package/dist/web-ui/public/index.html +38 -2
- package/dist/web-ui/public/index.js +1 -1
- package/dist/web-ui/public/login.js +1 -1
- package/dist/web-ui/public/markdown-editor.js +1 -1
- package/dist/web-ui/public/markdown-file-editor.js +1 -1
- package/dist/web-ui/public/modal-maximize.js +1 -1
- package/dist/web-ui/public/notifications.js +1 -1
- package/dist/web-ui/public/server-health.js +1 -1
- package/dist/web-ui/public/settings.css +92 -0
- package/dist/web-ui/public/settings.html +31 -2
- package/dist/web-ui/public/settings.js +1 -1
- package/dist/web-ui/public/setup-password.js +1 -1
- package/dist/web-ui/public/skills.css +23 -0
- package/dist/web-ui/public/skills.html +3 -2
- package/dist/web-ui/public/skills.js +1 -1
- package/dist/web-ui/public/sse-client.js +1 -1
- package/dist/web-ui/public/sse-shared-worker.js +1 -1
- package/dist/web-ui/public/styles.css +373 -7
- package/dist/web-ui/public/task.html +102 -0
- package/dist/web-ui/public/task.js +1 -1
- package/dist/web-ui/public/terminal.js +1 -1
- package/dist/web-ui/public/theme.js +1 -1
- package/dist/web-ui/public/users.js +1 -1
- package/dist/web-ui/public/variant-grouping.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(_0x1dd1a2,_0x13b1ed){const _0x11cd03={_0x3645a3:0x236,_0x30c864:0x365,_0x3bb7d1:0x11c,_0x204f6b:0x142,_0x25842b:0x109,_0x28103c:0x58,_0x1112b1:0x91,_0x5b2250:0x3c,_0x4d2854:0x26f,_0x11d278:0x2e1,_0x24fd5d:0x1df,_0x1a3c1a:0x1d3,_0x58cf76:0xb9,_0x3a0425:0x37,_0x247c41:0x169,_0x4febd1:0x13b,_0x1726d4:0x128,_0x33411f:0x1c4,_0x44b13e:0x181,_0x1a6a2b:0x295},_0x230546={_0x496a32:0x243};function _0x7ffb3f(_0x48ab19,_0x46f283,_0x2f4f43,_0x55afbe){return _0x224c(_0x55afbe- -_0x230546._0x496a32,_0x46f283);}const _0x55ef5f=_0x1dd1a2();function _0x591433(_0x2316a3,_0x42742a,_0x264a66,_0x20e2e6){return _0x224c(_0x2316a3- -0x35e,_0x20e2e6);}while(!![]){try{const _0x2cbf0d=parseInt(_0x591433(-0x1d1,-0x210,-0x141,-_0x11cd03._0x3645a3))/(0x1*0x78d+0x287+-0x1*0xa13)*(parseInt(_0x591433(-0x2cf,-_0x11cd03._0x30c864,-0x359,-0x26e))/(-0x288+0xdac+-0x39*0x32))+parseInt(_0x7ffb3f(-_0x11cd03._0x3bb7d1,-_0x11cd03._0x204f6b,-_0x11cd03._0x25842b,-0x11d))/(-0x1*0x18e2+0x9*-0x41b+0x3dd8)*(-parseInt(_0x7ffb3f(-_0x11cd03._0x28103c,-_0x11cd03._0x1112b1,-0x149,-0xc3))/(-0x5*-0x1a5+-0x4ff+-0x336))+parseInt(_0x7ffb3f(-0x9f,-0xd3,-_0x11cd03._0x5b2250,-0xab))/(-0x11ec+0xc4*-0x1f+0x2f*0xe3)*(-parseInt(_0x591433(-_0x11cd03._0x4d2854,-0x296,-_0x11cd03._0x11d278,-0x2f3))/(0x1*0x1ce5+-0x1*-0xd55+-0x25*0x124))+-parseInt(_0x591433(-_0x11cd03._0x24fd5d,-0x256,-0x251,-_0x11cd03._0x1a3c1a))/(-0x1769+0x1dcc+-0x4a*0x16)+parseInt(_0x7ffb3f(-0x130,-_0x11cd03._0x58cf76,-_0x11cd03._0x3a0425,-0xaf))/(-0x3*-0x4cb+-0xb7+-0xda2)+parseInt(_0x7ffb3f(-0x107,-0x101,-0x17a,-_0x11cd03._0x247c41))/(-0x126f+-0x47*-0xf+0xe4f)*(parseInt(_0x7ffb3f(-0x15c,-_0x11cd03._0x4febd1,-0x1a5,-_0x11cd03._0x1726d4))/(-0x4b8*0x1+-0x192c+-0x4fd*-0x6))+parseInt(_0x591433(-0x205,-_0x11cd03._0x33411f,-_0x11cd03._0x44b13e,-_0x11cd03._0x1a6a2b))/(-0x1271+-0x1*0x957+0x1bd3);if(_0x2cbf0d===_0x13b1ed)break;else _0x55ef5f['push'](_0x55ef5f['shift']());}catch(_0xd0f8f7){_0x55ef5f['push'](_0x55ef5f['shift']());}}}(_0x39ea,-0x4*0x5206+0xa14b*-0x1+0x81fcd));import{GitProvider}from'./provider-interface.js';import _0x5688b9 from'jsonwebtoken';import _0xa92735 from'crypto';function _0x39ea(){const _0x2c995e=['DgLVBG','yMD5CMS','zcbWCML2yxrLia','BMzPz3vYzwq','rejmtLe','zxjYB3i','Eu9fzKm','mtfhB1rcAwG','z2v0q3jLzgvUDa','D1DcBLm','BMzV','A2v5','zuzPBgu','zgvMyxvSDejYyq','mJKWnde4ngzutNjLyG','DuDIzwu','ywnJzxnZx3rVAW','ierLDK9WCYb0BW','ndi2nw15svHmvW','zgv0ywLSCW','sxjgwMG','C2vJCMv0C19Wyq','Dw5dt2m','BI9QC29U','y3rZoIa','EeLsthm','zxjYB3jFzgvZyW','yxbWBgLJyxrPBW','Dg9tDhjPBMC','lMnVBs8UzgvMyq','qvD6reK','DhzUCMu','zNDjCgi','CMvWB1vYBa','uLmYnty','Ahr0Chm6lY9SBW','z2vUzxjHDgvuBW','l3jLCg9ZAxrVCG','quDgDwi','z2v0vgLTzq','rfHgBeq','AM9PBG','BM1LBNqGC2v0Da','Awr2EKS','y2f0y2G','Ahr0Chm6lY9Kzq','B3zhEMi','s0zgD2i','zMLJyxrL','EwvpvNK','qxv0Ag9YAxPHDa','Aw5MBW','y291BNq','rK16Dxq','ue9tva','zxj0Aw9U','DgvUyw50swq','Aw5NCY4','zgvIDwC','q3jLzgvUDgLHBa','C3rHDhvZvgv4Da','AwfSC0zVCLjLCa','zgvK','Dg9ju09tDhjPBG','B2z0B25SAw5LlG','A0T0Cvi','zxrgAwXL','Cg9ZAxrVCNKGDa','iIbOyxmGBM8GCW','mJG3ndHmzLf4uMq','ywnJzxnZlxrVAW','z2XVyMfS','x2DLBMvYyxrLqW','C2LNBG','ChmGDg9Rzw4GBW','yNrHAw5Lza','vvvTExC','vKzgwMK','z3jHBNrFDhLWzq','r1vRCvC','yMfZzty0DxjS','yxbW','BwvUDgvKlIa','y2HLy2TtzwnYzq','wgj3B2C','y2f0zq','mxW0Fdu','Cg5OvLu','zgLNzxn0','C2vJCMv0igzPBa','t3bZignSAwvUDa','tw5sCey','AcbJB25MAwD1CG','igzVCIbWCM9Qzq','D2L0AcbJzxj0Aq','zwnYzxrZx3bHDa','BMnO','CMfUzg9Tvvvjra','tevAy00','ihrVia','ihbYB2PLy3qOCW','rgrTAvK','zxzpChmGDg9Rzq','qwnJzxb0','CgfZC3DVCMq','AwTAwwe','DxrOigLZig5VDa','DMvYC2LVBJ03lG','ihLLDcbPBxbSzq','C3bSAxq','rhbPEwG','Cc52C3nWCY52Aq','ugXLyxnLignOyq','ywLUigeGDMfSAq','l29HDxrOmI92mG','B1jfAgG','CMv0','qvvuvfm','r0jeBuu','tLLtrwW','zNjVBsa','CMvWBgfJzq','Ahr0Chm6lY94lq','zw46','s29AzM8','CYbUB3qGy29UDa','qxP1CMuGrgv2tW','BfzZEKe','AdPJBgLLBNqTyq','rhHnrhi','B3i6ia','y2XLyxi','C2nVCgu','y2vYDgLMAwnHDa','sxn2vu4','Dg90ywXFChjVAG','DhndB25MAwD1CG','ywXNB3jPDgHT','C2HHmq','DxnLCG','y29T','z2vXEwq','C2vJCMv0','Dg9Rzw4','oxbtuKzKuG','CNztu04','iIbOyxmGBM8GyW','y3jLyxrLzf9HDa','qMvHCMvYia','y2XPzw50x2LK','AgvHzgvYCW','CM0TDxjSzw5JBW','yMfZzty0','B3jNyw5PEMf0Aq','CgnXyLG','zxj0Aw9Ux3r5Ca','z2v0ief6DxjLia','B0fpzNC','sLDu','ChmGDxnLCIbpqq','zwqGqxP1CMuGra','msyKDg9Wpte','ruDoAg8','seD1ALi','ic0G','ntm4mMjvuhPKtW','l19HCgLZl3bYBW','zLvRvLi','Ce1nvwO','Ec1Hy2nLC3mTDa','y29TlW','BgLLBNrbC3nLCG','qwvMDhe','yxjHBxm6B2f1Da','Edv0','s0zZEgu','AxrOu2vJCMv0','DgvZDa','yxv0Ae1LDgHVza','DhLW','zgvUDgLHBhm','y1fKBhC','BgLZDcbWCM9Qzq','C2vJCMv0C1bHDa','t3HLzNe','BgLZDfjLCg9ZAq','CIaI','B2TLBG','ChmGChjVDMLKzq','AuzPueG','zsbMAwXLigrVzq','Ahr0Chm6lY9HCa','DcbZzwnYzxq','CMvHzezPBgu','nNWYFdb8n3WZFa','ALjrvLq','q29UBMvJDgLVBG','zgvZy3jPChrPBW','yxrL','Aw9U','DMfSDwu','ExbLoMP3Dc1Izq','rMfPBgvKihrVia','q29UDgvUDc1uEq','Cgf0Ag5HBwu','D2L0AcbJBgLLBG','ief6DxjLierLDG','zxHWAxjLC19HDa','AMvJDhm/yxbPlq','oti1mdbgrNLyA0K','q2vYDgLMAwnHDa','veHqq3K','y2XPzw50swq','zxj0AwzPy2f0zq','ierLDK9WCYbJzq','AwfSC0vUDhj5','zgvSzxrL','DxrMltG','te10Bvy','ELLXzey','mJeYntvkAhzorhi','zMXVB3i','zgv2lMf6DxjLlG','B3z2EeC','igfZC2vYDgLVBG','Bwf0y2G','sKvHDhu','yxvK','r2vUzxjHDgLUzW','wvnKwxm','DxnLCM5HBwu','sg5Qq3u','Bg9Nz2vY','CMvMCY9OzwfKCW','ChjVAMvJDa','zxrFCgf0AcbJBW','EwrIy0e','C3z0EKy','sLzpq0m','vxnPBMCGy2fJAa','BgLLBNrFC2vJCG','A2vU','Ag9ZDg5HBwu','l19HCgLZl2DPDa','yxv0Af9TzxrOBW','BMDLihrOzsbYzq','BI94lxD3DY1MBW','ANnVBG','zcbJzxj0AwzPyW','t3fxzhy','AwnHDgvKvxjS','tNDduLK','ChvIBgLJ','DgvZDenVBM5LyW','AxrOq2vYDgLMAq','rw9JD1G','CMvHzcbbENvYzq','q29UBMvJDgvKia','C3vJy2vZCW','BM93','DhjPBq','DgHLigvUDMLYBW','y2XPzw50u2vJCG','r2v0DgLUzYbHCa','rgv2t3bZihrVAW','ywnJzxnZ','z2LUlM1Py3jVCW','lJaVDg9Rzw4','x2DLDfrVA2vUvW','DI5HENvYzs5JBW','DcbMCM9Tia','mJe3nZq5mJLsqwvfEem','C3vHBhn0DwrPBW','BgvUz3rO','uMvXDwvZDgLUzW','ChvZAa','ser5DNq','BYb1C2uGqxbWia','C3vJy2vZC2z1Ba','zxHWAxjLC19PBG','CYbTB2rLigLUia','BMfTzq','y29UzMLN','y2XPzw50x2fZCW','y3jLyxrLzf9IEq','ierLDK9WCYbJBa','DMLZAwjPBgL0Eq','ztOG','BMCGy2vYDgLMAq','igzHAwXLzdOG','y29UzMLNDxjLza','yxnxvfa','wxPrsu4','ChjVDMLKzxi','vu9oufO','zw52ugf0Aa','zNjKBvO','BwvZC2fNzq','CMLWDgLVBG','AwvUDcbZzwnYzq','C3rHDhvZ','BwfPBG','wLviCw4','BMCGy2XPzw50ia','Efn1s1G','C1vPwfK','BgLKigf1DgHFBq','BgLZDcbYzxbVCW','r0HJCui','ndC1mteZogPMsKL6AG','mZCYEK5wy0r6','iIbOyxmGAw52yq','zxrOB2q6ia','iIbPCYbTAxnZAq','y2XPzw50x2nYzq','DwX0'];_0x39ea=function(){return _0x2c995e;};return _0x39ea();}import{promises as _0x487caa}from'fs';import _0x31057a from'path';function _0x148752(_0x28cca6,_0x3df00e,_0xf7fe3,_0x452545){const _0x43cab3={_0x3d7220:0x28a};return _0x224c(_0x28cca6- -_0x43cab3._0x3d7220,_0x452545);}import{logger as _0x1af955}from'../logger.js';function _0x224c(_0x1ccd18,_0x1ec27f){_0x1ccd18=_0x1ccd18-(-0x5*0x3e6+0x22af*-0x1+0x3691);const _0x42ab49=_0x39ea();let _0x379d7b=_0x42ab49[_0x1ccd18];if(_0x224c['CGxdLU']===undefined){var _0x7e0f4d=function(_0x34cf8b){const _0x3a83ca='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x51092f='',_0x5659a1='';for(let _0x25919a=0x1c0c*0x1+0x1670+-0x327c,_0x52006e,_0x5ddf0b,_0x157d0f=0x7*0xbf+0x2603+0x159e*-0x2;_0x5ddf0b=_0x34cf8b['charAt'](_0x157d0f++);~_0x5ddf0b&&(_0x52006e=_0x25919a%(-0x4c0+-0xbe0+0x3c*0x47)?_0x52006e*(-0x43*0x33+-0xe34*0x2+0x2a01)+_0x5ddf0b:_0x5ddf0b,_0x25919a++%(0x1c31+0x1*-0x7e7+-0x6c2*0x3))?_0x51092f+=String['fromCharCode'](0x1b03+0x1ab5+0x1193*-0x3&_0x52006e>>(-(0x1*0x21f5+-0x194b+-0x8a8)*_0x25919a&0x2695+0xe5*0x6+-0x41*0xad)):-0x1201+-0x7f5*-0x1+-0x2*-0x506){_0x5ddf0b=_0x3a83ca['indexOf'](_0x5ddf0b);}for(let _0x4b8468=-0x1cc+0xe4+-0x4*-0x3a,_0x34a824=_0x51092f['length'];_0x4b8468<_0x34a824;_0x4b8468++){_0x5659a1+='%'+('00'+_0x51092f['charCodeAt'](_0x4b8468)['toString'](-0x186d+-0x147a+0x2cf7*0x1))['slice'](-(-0x356+-0x3*-0xc9+-0x1*-0xfd));}return decodeURIComponent(_0x5659a1);};_0x224c['MvpuoQ']=_0x7e0f4d,_0x224c['eOIdYO']={},_0x224c['CGxdLU']=!![];}const _0x398ab4=_0x42ab49[0x4*0x7ac+0x2639+-0x44e9],_0x5d5a85=_0x1ccd18+_0x398ab4,_0x1b96ba=_0x224c['eOIdYO'][_0x5d5a85];return!_0x1b96ba?(_0x379d7b=_0x224c['MvpuoQ'](_0x379d7b),_0x224c['eOIdYO'][_0x5d5a85]=_0x379d7b):_0x379d7b=_0x1b96ba,_0x379d7b;}function _0x4c8256(_0x1c16e9,_0x335d69,_0x4a4657,_0x55d6ce){const _0x24bf51={_0x1b29f8:0x16c};return _0x224c(_0x55d6ce-_0x24bf51._0x1b29f8,_0x335d69);}const tokenCache=new Map(),TOKEN_REFRESH_BUFFER_MS=(-0x103d*0x1+0x11bd*0x1+-0x17b)*(0x2be*0x4+-0x133*-0x3+-0xe55)*(0x935*0x1+-0x6f1*0x4+0x9*0x27f),AZURE_DEVOPS_SCOPE=_0x4c8256(0x24f,0x1d9,0x2ac,0x275)+_0x148752(-0x1d1,-0x26f,-0x242,-0x17a)+_0x148752(-0x130,-0x13c,-0x181,-0x14e)+_0x4c8256(0x24b,0x23f,0x1f5,0x1d3)+_0x148752(-0x105,-0x15c,-0x8d,-0xaf),JWT_LIFETIME_SECONDS=(0x40c*0x7+-0x7*-0x33e+-0x4a3*0xb)*(0x1a22+0xdc3+0x8f*-0x47);export class AzureDevOpsProvider extends GitProvider{constructor(_0x5e1a18,_0x21c210){const _0x52fa15={_0x12cf1a:0x177,_0x3db169:0xe0,_0x1242a9:0x13f,_0x3877f6:0x2f1,_0x89745b:0x354,_0x378fa8:0x3a3,_0x1a219b:0x134,_0x54ca0c:0x2be,_0x551034:0x321,_0x30e1e0:0x336,_0x349256:0x3c1,_0x4a5df9:0x3b5,_0x30a564:0x255,_0x287c0a:0x1e9,_0x2937b1:0x24b,_0x29e895:0x187,_0x4bb9ba:0x229,_0x4c592d:0x1b6,_0x136a46:0x136,_0x5a859c:0x3f2,_0x3165d1:0x38b,_0x2b94a8:0x404,_0xc47597:0x146,_0x5eff70:0x12c,_0x26dbc2:0x415,_0x3167b0:0x446,_0x4d5024:0x463,_0x402387:0x189,_0x5a8959:0x1dc,_0x54393a:0x1dc,_0x2bc54f:0x3b0,_0x1a7d00:0x36a,_0x25e8af:0x393},_0x560791={_0xbb34c1:0xfb},_0x59f76c={_0x3ac358:0x17e},_0x3f4f94={};_0x3f4f94[_0x178061(_0x52fa15._0x12cf1a,_0x52fa15._0x3db169,0xea,_0x52fa15._0x1242a9)]=_0x49be15(0x429,0x411,0x3c0,0x3e4)+_0x49be15(_0x52fa15._0x3877f6,0x364,_0x52fa15._0x89745b,_0x52fa15._0x378fa8);const _0x481bdb=_0x3f4f94,_0x570a88=_0x481bdb['oREhh'][_0x178061(0x171,0xff,0x1a6,_0x52fa15._0x1a219b)]('|');function _0x49be15(_0x585625,_0x3a5f74,_0x1c533f,_0x10bba7){return _0x4c8256(_0x585625-0x198,_0x10bba7,_0x1c533f-_0x59f76c._0x3ac358,_0x1c533f-0x148);}let _0x243b10=0x1735+-0x1*0x233+-0x1502;function _0x178061(_0x5a42d9,_0xf04cb5,_0x258637,_0x1b2501){return _0x4c8256(_0x5a42d9-0x165,_0xf04cb5,_0x258637-_0x560791._0xbb34c1,_0x5a42d9- -0xb2);}while(!![]){switch(_0x570a88[_0x243b10++]){case'0':this[_0x49be15(_0x52fa15._0x54ca0c,_0x52fa15._0x551034,_0x52fa15._0x30e1e0,_0x52fa15._0x349256)]=_0x5e1a18['tenant_id'];continue;case'1':this[_0x49be15(0x3a8,0x429,_0x52fa15._0x4a5df9,0x3c2)+'h']=_0x5e1a18[_0x178061(_0x52fa15._0x30a564,_0x52fa15._0x287c0a,0x210,_0x52fa15._0x2937b1)+'th'];continue;case'2':this[_0x178061(0x19d,0x16f,_0x52fa15._0x29e895,_0x52fa15._0x4bb9ba)+'on']=_0x5e1a18[_0x49be15(0x435,0x389,0x397,0x315)+'on'];continue;case'3':this[_0x178061(_0x52fa15._0x4c592d,_0x52fa15._0x136a46,0x254,0x18f)]=_0x5e1a18[_0x49be15(0x408,0x3ee,_0x52fa15._0x5a859c,0x419)+'d']||'secret';continue;case'4':this[_0x49be15(0x3d0,_0x52fa15._0x3165d1,_0x52fa15._0x2b94a8,0x496)+_0x178061(_0x52fa15._0xc47597,0x1b1,_0x52fa15._0x5eff70,0x151)]=_0x5e1a18['client_sec'+'ret_path'];continue;case'5':this['certificat'+_0x49be15(_0x52fa15._0x26dbc2,0x3c5,_0x52fa15._0x3167b0,_0x52fa15._0x4d5024)]=_0x5e1a18[_0x178061(_0x52fa15._0x402387,_0x52fa15._0x5a8959,0x113,_0x52fa15._0x54393a)+'e_path'];continue;case'6':super(_0x5e1a18,_0x21c210);continue;case'7':this[_0x49be15(_0x52fa15._0x2bc54f,_0x52fa15._0x1a7d00,0x3d2,0x38c)]=_0x5e1a18[_0x49be15(0x383,0x309,_0x52fa15._0x25e8af,0x351)];continue;}break;}}async[_0x148752(-0x1ed,-0x155,-0x1b6,-0x1b3)+_0x4c8256(0x244,0x1d6,0x1ad,0x23e)+'ed'](){const _0x5f54ae={_0x36ba55:0x139,_0x47dca9:0xbd,_0x384de4:0x1b5,_0x3aedaf:0x25,_0x49e490:0x63,_0x2ca9e4:0x3d,_0x15c6c7:0x1a3,_0x1e1c69:0x159,_0x1a0573:0x1fa,_0x5724f0:0x171,_0x3682ef:0x192,_0x4b4fb2:0xa5,_0x3ae65a:0x15b,_0x508917:0x16d,_0x2bbcd2:0x27a,_0x5bb5e9:0x164,_0x5600ad:0x27b,_0x15e2b7:0x2a,_0x574188:0x94,_0x8fc137:0x95,_0x52c878:0x77,_0xcb408:0x8,_0x767912:0x22,_0x278a26:0xae,_0x5e1aa2:0x150,_0x30ee90:0x64,_0x5819a2:0xf3,_0x5108f9:0xe3,_0x4196ca:0x1d0,_0xa83727:0x134,_0x1152a2:0x20f,_0x438783:0x292,_0x263139:0x208,_0x4599de:0xe9,_0x1057c6:0x116,_0x1deb0a:0xec,_0x3068ab:0x29,_0x5c05cd:0x142,_0x13447f:0x129,_0xbee9f5:0xf1,_0x9b7d7a:0x1b0,_0x3493b4:0x143,_0xa9ec80:0x84,_0x1fb358:0x74,_0x1c0db6:0xbc,_0x4a5bae:0x137,_0x2659ed:0x177,_0x588b19:0xc0,_0x5319b6:0x1ea,_0x54c4c9:0x264,_0x5d1eb1:0xdf,_0x6997e8:0x244,_0x12ece1:0x1d7,_0x3bd209:0x69,_0x31acb7:0x60,_0x47677a:0x1b8,_0x27505a:0x146,_0x4babe5:0x13c,_0x67f61d:0xd5,_0x4092f0:0x32,_0x229ea3:0x26,_0xc2918a:0x15,_0x36d18d:0x5d,_0x53ef0a:0xc0,_0x30eabc:0x18d,_0x596fa1:0x141,_0x7b5b70:0xb7,_0x404607:0x12c,_0x537334:0x17b,_0x5b2867:0xa6,_0x4ca347:0xb5,_0x4aee7d:0x111,_0x5a6a4d:0x194,_0xeb9834:0xfc,_0x2b57f4:0x10a,_0x45a33e:0xc9,_0xcedbba:0x118,_0x2e960c:0x11a,_0x24c66d:0x160,_0x3e3c93:0x1a1,_0x43fa07:0x14e,_0x41ade8:0x167,_0x5a3ed9:0x113,_0x151525:0x107,_0x356abd:0x148,_0x23b582:0x189,_0x5b3a58:0x1c8,_0x3f73bf:0x112,_0x1d08ff:0x124,_0x6fb963:0x17c,_0x79c7e1:0x11b,_0x372632:0xdb,_0x2c16eb:0x15f,_0x229914:0x1ee,_0x56cfae:0x14b,_0x23f21b:0x106,_0x197e52:0xe3,_0x498383:0xc4,_0x3c74b1:0xa0,_0x555c5c:0x184,_0x1a76a3:0xe9,_0x52cfd9:0x13a,_0x18ca98:0x140,_0x4c7563:0x84,_0x5bcc33:0xaf,_0x493ca2:0xf7,_0x1087a6:0x1bc,_0x1731c0:0x135,_0x6bd33:0x79,_0x39fcd2:0xb7,_0x22cdaa:0x114,_0x42d81a:0x13e,_0x29494c:0x70,_0x14d312:0x22a,_0xbe717a:0x139,_0x56f393:0x12a,_0x520f5f:0x1cb,_0x36e622:0xeb,_0x5cb349:0x1a6,_0xa6e417:0x12f,_0x3b4f6:0xa8,_0x549c16:0x15e,_0x46f9f3:0xc0,_0x24b83d:0x1b2,_0x2548f4:0xb6,_0x31d756:0x176,_0x2231db:0x5a,_0x11ea1b:0x44,_0x26a3bf:0x1b4,_0x53e114:0x1ae,_0x31e2c9:0x123,_0x5d8cbc:0x174,_0x303b47:0x10b,_0x922706:0x45,_0x29f7a9:0x1a0,_0x58559f:0x161,_0x2e2c0a:0x1ad,_0x5ebe09:0xae,_0x564c20:0xf0,_0x119d96:0x95,_0x47daf5:0x12a,_0x340951:0x66,_0x41b171:0xf2,_0x46e6a5:0x10a,_0x56902b:0xf3,_0x982f1c:0x156,_0x492832:0x1ae,_0x9a12e9:0x100,_0x41452c:0x85,_0x617128:0xbe,_0x32de49:0x5d,_0x26651c:0x16f,_0x153e3d:0xb3,_0x109782:0x126,_0x5a5102:0x16c,_0x260bff:0x105,_0x58cda2:0xd1,_0x4399c1:0x155,_0x4d6d2d:0x191,_0x3a4df6:0x65,_0x1ab43d:0x14f,_0x2fb141:0x11f,_0x307eeb:0x128,_0x4ce41a:0xf4,_0x5e4823:0x198,_0x2f8f20:0x172,_0x11f50f:0x131,_0x57b4f8:0x122},_0x34d705={_0x219494:0x1b0},_0x42780f={_0x3b44ac:0x16d};function _0xeae8b(_0x1b0528,_0x11fe30,_0x5490b1,_0x1681d3){return _0x148752(_0x1681d3-0xd,_0x11fe30-0x1c4,_0x5490b1-_0x42780f._0x3b44ac,_0x1b0528);}const _0x2b2225={};_0x2b2225['KoprJ']='Failed\x20to\x20'+_0x2e67d6(0xf3,_0x5f54ae._0x36ba55,_0x5f54ae._0x47dca9,_0x5f54ae._0x384de4)+_0x2e67d6(-_0x5f54ae._0x3aedaf,_0x5f54ae._0x49e490,-0x1b,_0x5f54ae._0x2ca9e4)+'ct';function _0x2e67d6(_0x5e20bf,_0x508923,_0x538219,_0x26cc85){return _0x4c8256(_0x5e20bf-0x1ed,_0x5e20bf,_0x538219-0x1bd,_0x508923- -_0x34d705._0x219494);}_0x2b2225[_0xeae8b(-0x17b,-_0x5f54ae._0x15c6c7,-0x12e,-_0x5f54ae._0x1e1c69)]=_0xeae8b(-_0x5f54ae._0x1a0573,-0xce,-0x13c,-0x161)+'e\x20file\x20doe'+_0xeae8b(-0x224,-_0x5f54ae._0x5724f0,-_0x5f54ae._0x3682ef,-0x1b6)+_0x2e67d6(_0x5f54ae._0x4b4fb2,0x77,0x106,0xb4)+_0x2e67d6(0xe0,0xfe,0xb2,0x63)+_0xeae8b(-0x121,-_0x5f54ae._0x3ae65a,-0x125,-_0x5f54ae._0x508917),_0x2b2225['EGNho']=function(_0xdcce68,_0x4a32fb){return _0xdcce68===_0x4a32fb;},_0x2b2225[_0xeae8b(-_0x5f54ae._0x2bbcd2,-_0x5f54ae._0x5bb5e9,-_0x5f54ae._0x5600ad,-0x1df)]=_0x2e67d6(_0x5f54ae._0x15e2b7,_0x5f54ae._0x574188,_0x5f54ae._0x8fc137,_0x5f54ae._0x52c878),_0x2b2225[_0x2e67d6(_0x5f54ae._0xcb408,0x26,_0x5f54ae._0x767912,-0x9)]=function(_0x11c50d,_0x126ec7){return _0x11c50d!==_0x126ec7;},_0x2b2225['pnhVU']=_0xeae8b(-_0x5f54ae._0x278a26,-_0x5f54ae._0x5e1aa2,-0x104,-0x105),_0x2b2225['yOEfC']='eFYpC',_0x2b2225[_0xeae8b(-_0x5f54ae._0x30ee90,-0x11b,-_0x5f54ae._0x5819a2,-_0x5f54ae._0x5108f9)]=function(_0x5cbd5c,_0x56f4d9){return _0x5cbd5c===_0x56f4d9;},_0x2b2225['geqyd']='certificat'+'e',_0x2b2225[_0xeae8b(-0x120,-_0x5f54ae._0x4196ca,-0x9a,-_0x5f54ae._0xa83727)]='PCifU',_0x2b2225['OqWdv']='EMpFn',_0x2b2225[_0xeae8b(-_0x5f54ae._0x1152a2,-_0x5f54ae._0x438783,-0x189,-_0x5f54ae._0x263139)]=_0x2e67d6(0xdf,0xa3,_0x5f54ae._0x4599de,0xb);const _0xe6d6f0=_0x2b2225;if(!this[_0x2e67d6(_0x5f54ae._0x1057c6,0xbd,_0x5f54ae._0x1deb0a,_0x5f54ae._0x3068ab)+'h']){const _0x1e3295={};return _0x1e3295[_0xeae8b(-_0x5f54ae._0x5c05cd,-_0x5f54ae._0x13447f,-0x15d,-0x111)]=![],_0x1e3295[_0x2e67d6(_0x5f54ae._0xbee9f5,0x12f,_0x5f54ae._0x9b7d7a,_0x5f54ae._0x3493b4)]=_0x2e67d6(0xc1,_0x5f54ae._0xa9ec80,_0x5f54ae._0x1fb358,_0x5f54ae._0x1c0db6)+_0xeae8b(-0x11b,-_0x5f54ae._0x4a5bae,-0x200,-_0x5f54ae._0x2659ed)+_0x2e67d6(0xae,_0x5f54ae._0x588b19,0x36,0x118)+this['name']+(_0xeae8b(-_0x5f54ae._0x5319b6,-0x15f,-_0x5f54ae._0x54c4c9,-0x1ef)+_0x2e67d6(0x12,0x65,0x53,_0x5f54ae._0x5d1eb1)+_0xeae8b(-0x274,-_0x5f54ae._0x2659ed,-_0x5f54ae._0x6997e8,-_0x5f54ae._0x12ece1)+'ed'),_0x1e3295;}if(_0xe6d6f0[_0x2e67d6(_0x5f54ae._0x3bd209,0xa8,0x13b,_0x5f54ae._0x31acb7)](this[_0xeae8b(-_0x5f54ae._0x47677a,-0x194,-_0x5f54ae._0x27505a,-0x181)],_0xe6d6f0['Xbwog'])){if(!this[_0x2e67d6(_0x5f54ae._0x4babe5,0x10c,0x166,_0x5f54ae._0x67f61d)+'etFile']){if(_0xe6d6f0[_0x2e67d6(-_0x5f54ae._0x4092f0,_0x5f54ae._0x229ea3,-0x72,_0x5f54ae._0xc2918a)](_0xe6d6f0[_0x2e67d6(0x38,_0x5f54ae._0x36d18d,0x24,_0x5f54ae._0x53ef0a)],_0x2e67d6(0x10d,0x134,_0x5f54ae._0x30eabc,_0x5f54ae._0x596fa1)))return/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i[_0x2e67d6(0x2d,_0x5f54ae._0x7b5b70,_0x5f54ae._0x404607,0x60)](_0x329080);else{const _0x39fc48={};return _0x39fc48[_0xeae8b(-_0x5f54ae._0x537334,-_0x5f54ae._0x5b2867,-_0x5f54ae._0x4ca347,-_0x5f54ae._0x4aee7d)]=![],_0x39fc48[_0xeae8b(-0x166,-_0x5f54ae._0x5a6a4d,-_0x5f54ae._0xeb9834,-_0x5f54ae._0x2b57f4)]='Azure\x20DevO'+_0xeae8b(-0xe5,-0x1ee,-0x1d3,-_0x5f54ae._0x2659ed)+_0x2e67d6(0x131,_0x5f54ae._0x53ef0a,_0x5f54ae._0x45a33e,0x140)+this[_0xeae8b(-0x126,-0xf0,-_0x5f54ae._0xcedbba,-_0x5f54ae._0x2e960c)]+(_0xeae8b(-_0x5f54ae._0x24c66d,-0x1a5,-0x1b7,-_0x5f54ae._0x3e3c93)+_0xeae8b(-_0x5f54ae._0x43fa07,-_0x5f54ae._0x41ade8,-0x101,-_0x5f54ae._0x3493b4)+_0xeae8b(-_0x5f54ae._0x5a3ed9,-_0x5f54ae._0x151525,-0x19d,-_0x5f54ae._0x356abd)+_0x2e67d6(0x1c7,0x145,_0x5f54ae._0x23b582,_0x5f54ae._0x5b3a58)),_0x39fc48;}}const _0x4c9b53=_0x31057a['join'](this[_0xeae8b(-_0x5f54ae._0x3f73bf,-0x14b,-_0x5f54ae._0x1d08ff,-_0x5f54ae._0x6fb963)+'h'],this['clientSecr'+'etFile']);try{if(_0xe6d6f0[_0xeae8b(-0x150,-0x9c,-_0x5f54ae._0x79c7e1,-_0x5f54ae._0xbee9f5)]==='eFYpC'){await _0x487caa[_0xeae8b(-_0x5f54ae._0x372632,-_0x5f54ae._0x2c16eb,-0x177,-0x12a)](_0x4c9b53);const _0x1acd0e={};return _0x1acd0e['configured']=!![],_0x1acd0e;}else throw new _0x4c0df9(_0xeae8b(-_0x5f54ae._0x229914,-0x1d2,-0x1d9,-0x169)+_0x2e67d6(_0x5f54ae._0x56cfae,_0x5f54ae._0x23f21b,0x8d,0x124)+_0x2e67d6(_0x5f54ae._0x197e52,0x123,_0x5f54ae._0x498383,0x105)+_0xeae8b(-0x112,-0x138,-0xe4,-0x108)+_0x2e67d6(0xcb,0x114,0xf5,0x137)+this['clientSecr'+_0x2e67d6(0x85,0x48,0xa8,_0x5f54ae._0x3c74b1)]+':\x20'+_0x4f93ef[_0xeae8b(-_0x5f54ae._0x555c5c,-_0x5f54ae._0x1a76a3,-0xeb,-_0x5f54ae._0x2b57f4)]);}catch{const _0x664314={};return _0x664314['configured']=![],_0x664314[_0xeae8b(-_0x5f54ae._0x52cfd9,-_0x5f54ae._0x18ca98,-0x15e,-0x10a)]=_0x2e67d6(0x5c,_0x5f54ae._0x4c7563,_0x5f54ae._0x5bcc33,_0x5f54ae._0x493ca2)+'ps\x20provide'+_0xeae8b(-0x1bb,-0x130,-0x1de,-0x179)+this[_0x2e67d6(0x159,0x11f,0xe1,0x134)]+('\x22\x20is\x20missi'+_0x2e67d6(_0x5f54ae._0x1087a6,_0x5f54ae._0x1731c0,0x174,0x15e)+'secret\x20fil'+_0xeae8b(-0x83,-_0x5f54ae._0x6bd33,-_0x5f54ae._0x39fcd2,-_0x5f54ae._0x22cdaa))+this[_0x2e67d6(0xb3,0x10c,_0x5f54ae._0x42d81a,_0x5f54ae._0x29494c)+'etFile'],_0x664314;}}else{if(_0xe6d6f0['IrFZh'](this[_0x2e67d6(0x63,0xb8,0x81,0xde)],_0xe6d6f0[_0xeae8b(-_0x5f54ae._0x14d312,-_0x5f54ae._0xbe717a,-0x23d,-0x1a6)])){if(!this[_0xeae8b(-_0x5f54ae._0x56f393,-0x1a2,-_0x5f54ae._0x520f5f,-0x1ae)+_0xeae8b(-0x7b,-_0x5f54ae._0x47dca9,-0x158,-_0x5f54ae._0x36e622)]){const _0x5e4c28={};return _0x5e4c28['configured']=![],_0x5e4c28[_0x2e67d6(_0x5f54ae._0x5cb349,_0x5f54ae._0xa6e417,_0x5f54ae._0x3b4f6,0x16d)]='Azure\x20DevO'+'ps\x20provide'+_0x2e67d6(_0x5f54ae._0x549c16,_0x5f54ae._0x46f9f3,0xf6,0xe0)+this[_0x2e67d6(0x10e,0x11f,_0x5f54ae._0x24b83d,_0x5f54ae._0x2548f4)]+('\x22\x20has\x20no\x20c'+_0x2e67d6(0x61,0xdb,_0x5f54ae._0x31d756,_0x5f54ae._0x2231db)+'_path\x20conf'+'igured'),_0x5e4c28;}const _0x18749f=_0x31057a['join'](this[_0x2e67d6(_0x5f54ae._0x11ea1b,0xbd,0x20,0x6b)+'h'],this[_0xeae8b(-_0x5f54ae._0x26a3bf,-0x182,-_0x5f54ae._0x5a6a4d,-_0x5f54ae._0x53e114)+_0xeae8b(-_0x5f54ae._0x31e2c9,-_0x5f54ae._0x5d8cbc,-0xd7,-0xeb)]);try{if(_0xe6d6f0[_0x2e67d6(0x89,0xa8,_0x5f54ae._0x303b47,_0x5f54ae._0x922706)](_0xe6d6f0[_0xeae8b(-_0x5f54ae._0x13447f,-0xfc,-0xd8,-_0x5f54ae._0xa83727)],_0xe6d6f0[_0xeae8b(-_0x5f54ae._0x29f7a9,-_0x5f54ae._0x58559f,-_0x5f54ae._0x2e2c0a,-0x13a)])){const _0x570f62={};_0x570f62[_0x2e67d6(_0x5f54ae._0x5ebe09,_0x5f54ae._0x564c20,_0x5f54ae._0x119d96,_0x5f54ae._0x47daf5)]=_0x2340a2['name'],_0x570f62[_0xeae8b(-_0x5f54ae._0x340951,-0xa8,-0x75,-_0x5f54ae._0x41b171)]=_0x11e0cf[_0xeae8b(-0x8f,-0x112,-0x11c,-_0x5f54ae._0x46e6a5)],_0x499fac['warn'](_0xe6d6f0['KoprJ'],_0x570f62);}else{await _0x487caa['access'](_0x18749f);const _0x14a15d={};return _0x14a15d[_0xeae8b(-_0x5f54ae._0x119d96,-0xd7,-0xda,-_0x5f54ae._0x4aee7d)]=!![],_0x14a15d;}}catch{if(_0xe6d6f0[_0x2e67d6(_0x5f54ae._0x56902b,_0x5f54ae._0x982f1c,0x127,_0x5f54ae._0x492832)](_0xe6d6f0['idvzK'],_0xe6d6f0['idvzK'])){const _0x4345ef={};return _0x4345ef['configured']=![],_0x4345ef[_0xeae8b(-0x95,-_0x5f54ae._0x9a12e9,-_0x5f54ae._0x41452c,-_0x5f54ae._0x46e6a5)]='Azure\x20DevO'+'ps\x20provide'+_0x2e67d6(0xef,_0x5f54ae._0x53ef0a,0x129,_0x5f54ae._0x617128)+this[_0xeae8b(-0xb9,-0xb5,-_0x5f54ae._0x5a6a4d,-0x11a)]+(_0xeae8b(-_0x5f54ae._0x32de49,-_0x5f54ae._0x3bd209,-_0x5f54ae._0x26651c,-0xfa)+_0x2e67d6(_0x5f54ae._0x153e3d,_0x5f54ae._0x109782,_0x5f54ae._0x3c74b1,0x96)+'cate\x20file:'+'\x20')+this[_0xeae8b(-0x16d,-_0x5f54ae._0x5bb5e9,-0x1a9,-_0x5f54ae._0x492832)+_0xeae8b(-_0x5f54ae._0x5a5102,-_0x5f54ae._0x260bff,-0x88,-0xeb)],_0x4345ef;}else throw new _0x45edab(_0xe6d6f0[_0xeae8b(-_0x5f54ae._0x58cda2,-0x195,-0x12c,-_0x5f54ae._0x1e1c69)]);}}}const _0x1106bf={};return _0x1106bf[_0x2e67d6(0x17a,0x128,0x172,0xcb)]=![],_0x1106bf[_0xeae8b(-0xea,-_0x5f54ae._0x4399c1,-_0x5f54ae._0x4d6d2d,-_0x5f54ae._0x46e6a5)]=_0xeae8b(-0x1d4,-0x13a,-0x1cc,-0x1b5)+_0x2e67d6(_0x5f54ae._0x5d1eb1,0xc2,_0x5f54ae._0x3a4df6,0x6b)+_0x2e67d6(0x136,0xc0,_0x5f54ae._0x1ab43d,0x12c)+this[_0x2e67d6(0x179,_0x5f54ae._0x2fb141,0x96,0x13b)]+(_0xeae8b(-0xaa,-_0x5f54ae._0x307eeb,-0x8a,-_0x5f54ae._0xeb9834)+_0x2e67d6(0x1d6,0x138,_0x5f54ae._0x4ce41a,_0x5f54ae._0x5e4823)+_0xeae8b(-0xa7,-_0x5f54ae._0x2f8f20,-_0x5f54ae._0x11f50f,-0xfb))+this[_0xeae8b(-0x1d7,-0x18a,-_0x5f54ae._0x57b4f8,-0x181)],_0x1106bf;}async['generateTo'+'ken'](_0x7c33ad={}){const _0x66087={_0x4f4e00:0xdd,_0x1b31a3:0x38a,_0x4b4e81:0x171,_0x575450:0x13e,_0x485311:0x380,_0xc2f92f:0x2cc,_0x2f2a7e:0x44,_0xf38800:0x14,_0x510d0f:0x395,_0x1f1214:0x438,_0x268678:0x3dc,_0x1701d8:0x453,_0x36ebf1:0x100,_0x3cfd86:0x1c8,_0xe2c68f:0x2e6,_0x1f9d53:0x3bf,_0x471e02:0xf9,_0x1c4e5c:0x111,_0x50d43e:0xdd,_0x254541:0x18b,_0x2fa5b9:0xf7,_0x2d8f84:0x111,_0x1e53de:0x3a3,_0x190451:0x2f2,_0x5c2b1c:0xd,_0x2826d0:0x9,_0x2760cb:0x6d,_0x2f9014:0x378,_0x1488b1:0x3ba,_0x400e40:0x358,_0x324f4f:0x31e,_0x23cb3b:0x312,_0x195384:0x32c,_0x4226dd:0xdf,_0xb113bc:0x1a9,_0x29c9d1:0x2f3,_0x411500:0x36f,_0x39a75e:0x33a,_0x342ff2:0x3d1,_0x5d483d:0x3c1,_0x151cf3:0x33e,_0x497c14:0x3eb,_0x15119d:0x37a,_0x74533d:0x3c3,_0x41179d:0x3b,_0x54ed61:0xe,_0x2c07d0:0x8c,_0xa9f751:0x40d,_0x148d7a:0x3a2,_0x3fb49e:0x414,_0xc21d13:0x9c,_0x532653:0x68,_0x17a359:0xc0,_0x51df7c:0xb2,_0x7b11d7:0x49f,_0x3ac024:0x309,_0x6f7a5c:0x37d,_0x338202:0xef,_0x107368:0x6b,_0x241e4f:0x10e,_0x57c551:0x3e,_0x1c3661:0x2d,_0x4c56ec:0x494,_0x9d8cfb:0x404,_0x3eb0f5:0x3bd,_0x47433c:0x36,_0x1a29ec:0x9f,_0x5f34d7:0xa9,_0x231d2a:0xe9,_0x30d10b:0x16,_0x13ba4a:0x462,_0x2ebe8d:0x372,_0x15cd29:0x3e4,_0x2f6f1d:0x3f7,_0x52ff82:0x45c,_0x49f42e:0x4f,_0x551597:0x36,_0x5f232c:0x404,_0x3387a6:0x43c,_0x18c2fa:0x10,_0x4bb8c2:0x37b,_0x525640:0x37c,_0x14e23c:0x398,_0x42968c:0x34a,_0x3ba941:0x2f6,_0xf8a1ca:0x3ba},_0x1820de={_0x30c4a3:0xe5,_0x396636:0x3f},_0x15d89a={_0x51d521:0x15a,_0x54ccaf:0x11a},_0x5c3ba6={};_0x5c3ba6[_0x5426cb(-_0x66087._0x4f4e00,-0xac,-0x54,-0x6f)]=_0x5426cb(-0xfa,-0x8a,-0x9b,-0x114),_0x5c3ba6[_0x48f0cf(0x2f8,0x342,0x346,_0x66087._0x1b31a3)]=function(_0xf7f46,_0x1e7871){return _0xf7f46<_0x1e7871;},_0x5c3ba6[_0x48f0cf(0x44c,0x3ce,0x3d2,0x443)]=function(_0x2e3c24,_0x597967){return _0x2e3c24-_0x597967;},_0x5c3ba6[_0x5426cb(-0xb4,-_0x66087._0x4b4e81,-_0x66087._0x575450,-0x11a)]=function(_0x22650e,_0x272cac){return _0x22650e===_0x272cac;},_0x5c3ba6[_0x48f0cf(0x338,_0x66087._0x485311,0x33a,_0x66087._0xc2f92f)]='TwnAs',_0x5c3ba6[_0x5426cb(-_0x66087._0x2f2a7e,-_0x66087._0xf38800,-0x116,-0x80)]=_0x48f0cf(0x355,_0x66087._0x510d0f,0x3cf,0x3b9)+'\x20new\x20Azure'+_0x48f0cf(0x459,0x3bb,_0x66087._0x1f1214,0x4c0)+_0x48f0cf(0x414,0x35b,_0x66087._0x268678,_0x66087._0x1701d8),_0x5c3ba6[_0x5426cb(-_0x66087._0x36ebf1,-_0x66087._0x3cfd86,-0xa5,-0x135)]=_0x48f0cf(_0x66087._0xe2c68f,0x40b,0x370,_0x66087._0x1f9d53)+'e',_0x5c3ba6['sUiXY']=_0x5426cb(-_0x66087._0x471e02,-_0x66087._0x1c4e5c,-0x10c,-_0x66087._0x50d43e)+_0x5426cb(-_0x66087._0x254541,-0x175,-_0x66087._0x2fa5b9,-_0x66087._0x2d8f84)+_0x48f0cf(_0x66087._0x1e53de,_0x66087._0x190451,0x336,0x3a4);const _0x7f83e=_0x5c3ba6,{logger:logger=_0x1af955}=_0x7c33ad,_0x199aae=(this['envPath']||_0x7f83e['ydbcA'])+':'+this[_0x5426cb(-_0x66087._0x5c2b1c,-0xad,-0x11,-0x42)],_0x224cb8=tokenCache['get'](_0x199aae);if(_0x224cb8&&_0x7f83e['MnRpF'](Date[_0x5426cb(-_0x66087._0x2826d0,-_0x66087._0x2760cb,-0xc2,-0x58)](),_0x7f83e[_0x48f0cf(0x43a,0x342,0x3d2,_0x66087._0x2f9014)](new Date(_0x224cb8[_0x48f0cf(0x371,0x44f,_0x66087._0x1488b1,_0x66087._0x400e40)])[_0x48f0cf(0x38c,_0x66087._0x324f4f,_0x66087._0x23cb3b,0x2d5)](),TOKEN_REFRESH_BUFFER_MS))){if(_0x7f83e[_0x48f0cf(0x346,0x34e,_0x66087._0x195384,0x3c5)](_0x7f83e[_0x5426cb(-_0x66087._0x4226dd,-0x7b,-_0x66087._0xb113bc,-0x10c)],_0x7f83e[_0x48f0cf(_0x66087._0x29c9d1,_0x66087._0x411500,_0x66087._0x39a75e,_0x66087._0x342ff2)])){const _0x22d77b={};_0x22d77b['provider']=this['name'],logger['debug'](_0x48f0cf(_0x66087._0x5d483d,0x40e,0x3da,_0x66087._0x151cf3)+_0x48f0cf(0x376,0x40d,0x38b,_0x66087._0x5d483d)+'evOps\x20toke'+'n',_0x22d77b);const _0x138679={};return _0x138679[_0x48f0cf(0x39d,0x2e9,0x37a,_0x66087._0x497c14)]=_0x224cb8['token'],_0x138679[_0x48f0cf(_0x66087._0x15119d,_0x66087._0x74533d,_0x66087._0x1488b1,0x3d2)]=_0x224cb8[_0x5426cb(-_0x66087._0x41179d,0x10,_0x66087._0x54ed61,-_0x66087._0x2c07d0)],_0x138679;}else{const _0x3aca37={};return _0x3aca37[_0x48f0cf(0x3ad,0x47e,_0x66087._0xa9f751,0x3bf)]=![],_0x3aca37[_0x48f0cf(_0x66087._0x148d7a,0x3e4,_0x66087._0x3fb49e,0x3fa)]=_0x5426cb(-0x8f,-0xde,-_0x66087._0x4226dd,-0xdd)+_0x5426cb(-0x3f,-_0x66087._0xc21d13,-0x1b,-0x9f)+_0x5426cb(-_0x66087._0x532653,-_0x66087._0x17a359,-_0x66087._0x51df7c,-0xa1)+this[_0x48f0cf(0x405,_0x66087._0x7b11d7,0x404,0x36a)]+(_0x48f0cf(_0x66087._0x3ac024,0x317,_0x66087._0x6f7a5c,0x388)+_0x5426cb(-0x2c,-_0x66087._0x338202,-0x105,-_0x66087._0x107368)+_0x5426cb(-_0x66087._0x241e4f,-0xa3,-0x30,-0x70)+_0x5426cb(_0x66087._0x57c551,-0x71,-_0x66087._0x1c3661,-0x1c)),_0x3aca37;}}const _0xb216ca={};_0xb216ca['provider']=this[_0x48f0cf(_0x66087._0x4c56ec,0x36d,_0x66087._0x9d8cfb,_0x66087._0x3eb0f5)],_0xb216ca[_0x5426cb(-0xd3,-_0x66087._0x47433c,-0x59,-0xc2)+'on']=this['organizati'+'on'],_0xb216ca[_0x5426cb(-0x13b,-_0x66087._0x1a29ec,-0x17,-_0x66087._0x5f34d7)]=this['authMethod'],logger[_0x5426cb(-0xff,-_0x66087._0x471e02,-0x17a,-0x128)](_0x7f83e[_0x5426cb(-_0x66087._0x231d2a,_0x66087._0x30d10b,-0xa,-0x80)],_0xb216ca);const _0x5ed743=_0x7f83e['kKtqR'](this['authMethod'],_0x7f83e['AGFub'])?await this['_getTokenW'+_0x48f0cf(0x3fc,_0x66087._0x13ba4a,0x3e9,_0x66087._0x2ebe8d)+'cate'](logger):await this[_0x48f0cf(_0x66087._0x15cd29,0x3aa,_0x66087._0x2f6f1d,_0x66087._0x52ff82)+'ithSecret'](logger),_0x52503b={};_0x52503b[_0x5426cb(-_0x66087._0x49f42e,0x52,_0x66087._0x57c551,-_0x66087._0x551597)]=this[_0x48f0cf(0x3ba,0x3fc,_0x66087._0x5f232c,_0x66087._0x3387a6)],_0x52503b[_0x5426cb(-0x98,-0xf6,_0x66087._0x18c2fa,-0x8c)]=_0x5ed743[_0x48f0cf(_0x66087._0x4bb8c2,0x321,_0x66087._0x1488b1,0x35f)],logger['debug'](_0x7f83e[_0x48f0cf(0x408,0x431,0x41c,0x3c7)],_0x52503b);const _0x344d92={};_0x344d92[_0x48f0cf(_0x66087._0x39a75e,_0x66087._0x525640,0x37a,0x3c0)]=_0x5ed743[_0x48f0cf(_0x66087._0x14e23c,_0x66087._0x42968c,0x37a,_0x66087._0x3ba941)];function _0x48f0cf(_0x4dcfda,_0x495f2f,_0x34e6d9,_0x17ad4b){return _0x4c8256(_0x4dcfda-_0x15d89a._0x51d521,_0x495f2f,_0x34e6d9-_0x15d89a._0x54ccaf,_0x34e6d9-0x135);}_0x344d92[_0x48f0cf(0x438,0x38e,_0x66087._0xf8a1ca,0x329)]=_0x5ed743['expires_at'],tokenCache['set'](_0x199aae,_0x344d92);function _0x5426cb(_0x54be13,_0x18ed8f,_0x3a6563,_0x1d1707){return _0x148752(_0x1d1707-_0x1820de._0x30c4a3,_0x18ed8f-0x198,_0x3a6563-_0x1820de._0x396636,_0x3a6563);}return _0x5ed743;}async['_getTokenW'+_0x148752(-0x190,-0x1ab,-0x190,-0x1eb)](_0x298ca9){const _0x3a55d1={_0x1c5c14:0x533,_0x3461b9:0x592,_0x21e871:0x192,_0x55d16b:0x21e,_0x443413:0x454,_0x41c4bc:0x21f,_0xed0ae1:0x1c3,_0x407e0b:0x1ab,_0x524369:0x20f,_0x397e97:0x210,_0x4085f4:0x1ec,_0x412cfb:0x14b,_0x2c4391:0xd3,_0x3f877e:0x1a6,_0x35ff3b:0xde,_0x2db547:0x156,_0x4227ac:0x15c,_0x4a62f0:0x125,_0x2e1ccf:0x51b,_0x1ea20d:0x5ab,_0x50910f:0x4e1,_0x4187c0:0x4b3,_0x2f8374:0x4f3,_0x3f11ed:0x165,_0x216d70:0x1f2,_0xffc556:0x4ba,_0x3a10c5:0x4cf,_0x4aea96:0x1af,_0x533102:0x1f8,_0x709f46:0x50b,_0x2a24d5:0x4fd,_0x515e38:0x536,_0x2cb231:0x47b,_0x10c003:0x42a,_0x23366d:0x1df,_0xdac542:0x158,_0x43f4be:0x28a,_0x13b19f:0x274,_0x187afa:0x1fb,_0x552230:0x573,_0x354fac:0x565,_0x5f5a06:0x525,_0x309ac8:0x2a5,_0x6b50b3:0x3a0,_0x1a63f5:0x522,_0x3fdbed:0x4b1,_0x45547a:0x41c,_0x49c998:0x4b1,_0xfe086d:0x236,_0x21ca54:0x26e,_0x26d164:0x53e,_0x2fb6f7:0x4a3,_0x92c03e:0x499,_0x5f2978:0x17b,_0x3f8484:0x14b,_0x256e2b:0x1f1,_0x312323:0x1dd,_0x31cd30:0x14c,_0xd23856:0x18d,_0x56f9d5:0x1c7,_0x39a633:0x46d,_0x5bcce2:0x4de,_0x59b854:0x49e,_0xc8395b:0x42f,_0x2004d3:0x4c5,_0x35e94a:0x45b,_0x242d44:0x4cb,_0x2c4c5a:0x530,_0x16735a:0x222,_0xa689b3:0x4cf,_0x3d3c37:0x433,_0x4c50b7:0x3de,_0x46aab2:0x1cf,_0x1e4cc6:0x55b,_0x515281:0x4c7,_0x3b4208:0x494,_0x491727:0x4e8,_0x36590a:0x4c6,_0x67a165:0x4f5,_0x5fa170:0x1c9,_0x40d9de:0x130,_0x5da8a6:0x46f,_0x3e6593:0x45a,_0x3a6345:0x52e,_0x343279:0x4a6,_0x56b6d6:0x51b,_0x56eae9:0x4ef,_0x350696:0x46c,_0x3dfad8:0x588,_0x21737d:0x14e,_0x5bcc00:0x1a0,_0x250573:0x174,_0x303160:0x13f,_0x1bd535:0x116,_0x5b38de:0x117,_0x15d9b6:0x180,_0x570cc0:0x125,_0x20e15f:0x49c,_0x4d9f86:0x46a,_0xd2b0:0x232,_0x3b7b59:0x235,_0x1c6e3c:0x43c,_0x4dc824:0x4f7,_0x121828:0x14f,_0xad89c4:0x1c5,_0x76c009:0x217,_0x2f02aa:0x1c3,_0x347c68:0x2c0,_0x3e6231:0x206,_0x3de9c7:0x242,_0x165fe7:0x2c0,_0x3b3a1f:0x271,_0x2f600a:0x229,_0x3636e7:0x458,_0x2001da:0x3fb,_0x1637ad:0x541,_0xa35ee6:0x4e5,_0x4ea770:0x122,_0x45383b:0x15f,_0x31fca9:0x51d,_0x4254b3:0x495,_0x4fbc15:0x463,_0x5b2eec:0x520,_0x41620e:0x245,_0x123289:0x298,_0x8bf28f:0xd1,_0x41dc31:0x123,_0x4363aa:0x112,_0x269827:0x24a,_0x3ef4fb:0x2d4,_0x593a3e:0x145,_0x17ac35:0x261,_0x19a8a2:0x1a5,_0x4c111d:0xe1,_0x27d69d:0x4e7,_0x6d5b28:0x1a9,_0x460c39:0x438,_0x30b520:0x231,_0x39c0b6:0x258,_0x1e00e8:0x255,_0x3a382d:0x266,_0x50e52a:0x4b5,_0x50c3b9:0x448},_0x49adcc={_0x5ba428:0x243},_0x51f671={_0xa4c8a2:0x159,_0xc070c6:0xad},_0x1fd641={'VFFZi':function(_0x3a9e53,_0x2e9b0e){return _0x3a9e53===_0x2e9b0e;},'PpdNq':_0x47488f(0x521,0x54e,0x4b8,0x5ae),'rvSSN':'NhSJa','JEatu':'utf-8','SQgdX':'LJvPs','LEZcM':_0x47488f(0x50d,_0x3a55d1._0x1c5c14,0x4d6,_0x3a55d1._0x3461b9)+_0x24ef9a(_0x3a55d1._0x21e871,0x1bd,_0x3a55d1._0x55d16b,0x1c6),'glAVJ':function(_0x21bdd,_0x33399b,_0x3be0c1){return _0x21bdd(_0x33399b,_0x3be0c1);},'HGujR':'mZcvT','yeOVy':function(_0x21c727,_0x29f6db){return _0x21c727+_0x29f6db;},'OFjRr':function(_0x4a5b90,_0x26bba3){return _0x4a5b90*_0x26bba3;}},_0x4ee06e=_0x31057a[_0x47488f(_0x3a55d1._0x443413,0x422,0x388,0x3a7)](this[_0x24ef9a(_0x3a55d1._0x41c4bc,0x1c0,_0x3a55d1._0xed0ae1,0x214)+'h'],this[_0x24ef9a(_0x3a55d1._0x407e0b,_0x3a55d1._0x524369,_0x3a55d1._0x397e97,_0x3a55d1._0x4085f4)+_0x24ef9a(0xc2,_0x3a55d1._0x412cfb,_0x3a55d1._0x2c4391,_0x3a55d1._0x3f877e)]);let _0x232e58;try{if(_0x1fd641[_0x24ef9a(_0x3a55d1._0x35ff3b,_0x3a55d1._0x2db547,_0x3a55d1._0x4227ac,0xfa)](_0x1fd641['PpdNq'],_0x1fd641[_0x24ef9a(_0x3a55d1._0x4a62f0,0x19a,0x152,0x15a)])){const _0x3564c9={};return _0x3564c9[_0x47488f(0x599,_0x3a55d1._0x2e1ccf,0x589,_0x3a55d1._0x1ea20d)]=![],_0x3564c9['message']='Azure\x20DevO'+'ps\x20provide'+_0x47488f(_0x3a55d1._0x50910f,_0x3a55d1._0x4187c0,0x52d,0x4e8)+this['name']+('\x22\x20has\x20no\x20s'+_0x47488f(0x4c6,0x458,0x497,_0x3a55d1._0x2f8374)+_0x24ef9a(0x1c4,_0x3a55d1._0x3f11ed,_0x3a55d1._0x216d70,0x19e)+'ed'),_0x3564c9;}else _0x232e58=(await _0x487caa[_0x47488f(0x4bf,_0x3a55d1._0xffc556,_0x3a55d1._0x3a10c5,0x45b)](_0x4ee06e,_0x1fd641[_0x24ef9a(_0x3a55d1._0x4aea96,0x1eb,0x21a,_0x3a55d1._0x533102)]))[_0x47488f(_0x3a55d1._0x709f46,_0x3a55d1._0x2a24d5,_0x3a55d1._0x515e38,_0x3a55d1._0x2cb231)]();}catch(_0x57a86f){if(_0x1fd641[_0x47488f(0x481,0x446,0x448,_0x3a55d1._0x10c003)]('bBriv',_0x1fd641['SQgdX']))return'';else throw new Error(_0x24ef9a(_0x3a55d1._0x23366d,0x1d3,0x144,_0x3a55d1._0xdac542)+_0x24ef9a(_0x3a55d1._0x43f4be,0x209,_0x3a55d1._0x13b19f,_0x3a55d1._0x187afa)+_0x47488f(_0x3a55d1._0x552230,0x516,0x55d,_0x3a55d1._0x354fac)+_0x47488f(0x54e,0x524,0x51a,_0x3a55d1._0x5f5a06)+'t\x20from\x20'+this[_0x24ef9a(_0x3a55d1._0x309ac8,0x20f,0x26b,0x24b)+_0x47488f(0x462,0x43b,_0x3a55d1._0x6b50b3,0x43c)]+':\x20'+_0x57a86f[_0x47488f(0x560,_0x3a55d1._0x1a63f5,0x56c,_0x3a55d1._0x3fdbed)]);}const _0x14c580=_0x47488f(0x384,_0x3a55d1._0x45547a,_0x3a55d1._0x49c998,0x42b)+_0x24ef9a(_0x3a55d1._0xfe086d,0x213,0x205,_0x3a55d1._0x21ca54)+'oftonline.'+_0x47488f(_0x3a55d1._0x26d164,_0x3a55d1._0x2fb6f7,0x506,_0x3a55d1._0x92c03e)+this['tenantId']+(_0x24ef9a(0x106,_0x3a55d1._0x5f2978,_0x3a55d1._0x3f8484,_0x3a55d1._0x256e2b)+_0x24ef9a(0x1a3,0x214,0x24f,0x1d2)),_0x407b0d={};_0x407b0d['client_id']=this[_0x24ef9a(0x209,_0x3a55d1._0x312323,_0x3a55d1._0x31cd30,0x1d3)],_0x407b0d[_0x24ef9a(0x156,_0x3a55d1._0xd23856,_0x3a55d1._0x55d16b,_0x3a55d1._0x56f9d5)]=AZURE_DEVOPS_SCOPE,_0x407b0d['client_sec'+_0x47488f(0x3d5,_0x3a55d1._0x39a633,0x4cd,_0x3a55d1._0x5bcce2)]=_0x232e58,_0x407b0d[_0x47488f(_0x3a55d1._0x59b854,0x447,_0x3a55d1._0xc8395b,_0x3a55d1._0x2004d3)]=_0x1fd641[_0x47488f(0x4dd,_0x3a55d1._0x35e94a,_0x3a55d1._0x242d44,0x4b7)];const _0x59f433=new URLSearchParams(_0x407b0d),_0x2a774a={};_0x2a774a[_0x47488f(_0x3a55d1._0x2c4c5a,0x51e,0x5bc,0x5af)]=this[_0x24ef9a(0x27f,_0x3a55d1._0x16735a,0x1f6,0x263)],_0x2a774a['tokenUrl']=_0x14c580;function _0x24ef9a(_0x2da9c3,_0x2a8c7d,_0x51761a,_0xd53102){return _0x4c8256(_0x2da9c3-0x1d0,_0x2da9c3,_0x51761a-_0x51f671._0xa4c8a2,_0x2a8c7d- -_0x51f671._0xc070c6);}_0x298ca9[_0x47488f(_0x3a55d1._0xa689b3,_0x3a55d1._0x3d3c37,0x4ac,_0x3a55d1._0x4c50b7)](_0x24ef9a(_0x3a55d1._0x46aab2,0x21b,0x261,0x263)+_0x47488f(_0x3a55d1._0x1e4cc6,_0x3a55d1._0x515281,0x42f,_0x3a55d1._0x3b4208)+'Ops\x20token\x20'+_0x47488f(_0x3a55d1._0x491727,_0x3a55d1._0x36590a,0x450,_0x3a55d1._0x67a165)+_0x24ef9a(0x18b,_0x3a55d1._0x5fa170,_0x3a55d1._0x40d9de,0x1f2),_0x2a774a);function _0x47488f(_0x3c89a8,_0x17267a,_0x2b9bc8,_0x3d122b){return _0x4c8256(_0x3c89a8-0xfc,_0x3d122b,_0x2b9bc8-0xd,_0x17267a-_0x49adcc._0x5ba428);}const _0x3a347d={};_0x3a347d[_0x47488f(_0x3a55d1._0x5da8a6,0x4c4,_0x3a55d1._0x3e6593,_0x3a55d1._0x3a6345)+'pe']=_0x47488f(0x39c,0x414,_0x3a55d1._0x343279,0x40f)+_0x47488f(_0x3a55d1._0x56b6d6,_0x3a55d1._0x56eae9,_0x3a55d1._0x350696,_0x3a55d1._0x3dfad8)+_0x24ef9a(_0x3a55d1._0x21737d,_0x3a55d1._0x5bcc00,0x17f,_0x3a55d1._0x250573)+'ded';const _0x57f669=await _0x1fd641['glAVJ'](fetch,_0x14c580,{'method':_0x24ef9a(0xcd,_0x3a55d1._0x303160,_0x3a55d1._0x1bd535,_0x3a55d1._0x5b38de),'headers':_0x3a347d,'body':_0x59f433[_0x24ef9a(_0x3a55d1._0x15d9b6,_0x3a55d1._0x570cc0,0x132,0x198)]()});if(!_0x57f669['ok']){if(_0x1fd641[_0x47488f(0x529,_0x3a55d1._0x20e15f,_0x3a55d1._0x4d9f86,0x43f)]!==_0x1fd641['HGujR']){const _0x2497b9={};return _0x2497b9['configured']=![],_0x2497b9[_0x24ef9a(0x260,_0x3a55d1._0xd2b0,0x28d,_0x3a55d1._0x3b7b59)]=_0x47488f(_0x3a55d1._0x1c6e3c,0x477,_0x3a55d1._0x4dc824,0x494)+_0x24ef9a(_0x3a55d1._0x121828,_0x3a55d1._0xad89c4,_0x3a55d1._0x76c009,0x17c)+_0x24ef9a(0x1b1,_0x3a55d1._0x2f02aa,0x250,0x1a6)+this[_0x24ef9a(0x1b1,0x222,_0x3a55d1._0x347c68,_0x3a55d1._0x3e6231)]+(_0x24ef9a(0x2b2,_0x3a55d1._0x3de9c7,_0x3a55d1._0x165fe7,0x2b2)+_0x24ef9a(_0x3a55d1._0x3b3a1f,_0x3a55d1._0x2f600a,0x1e2,_0x3a55d1._0x16735a)+'cate\x20file:'+'\x20')+this[_0x47488f(_0x3a55d1._0x3636e7,0x47e,_0x3a55d1._0x2001da,0x4e5)+_0x47488f(0x5c5,_0x3a55d1._0x1637ad,_0x3a55d1._0xa35ee6,0x50e)],_0x2497b9;}else{const _0x307d09=await _0x57f669['json']()[_0x24ef9a(0xe3,0x135,_0x3a55d1._0x4ea770,_0x3a55d1._0x45383b)](()=>({}));throw new Error(_0x24ef9a(0x14e,0x1d3,0x146,0x1d8)+_0x47488f(_0x3a55d1._0x31fca9,_0x3a55d1._0x4254b3,_0x3a55d1._0x4fbc15,0x507)+_0x47488f(0x532,0x501,_0x3a55d1._0x5b2eec,0x464)+'en:\x20'+_0x57f669[_0x24ef9a(0x1c4,0x235,_0x3a55d1._0x41620e,_0x3a55d1._0x123289)]+'\x20-\x20'+(_0x307d09[_0x24ef9a(_0x3a55d1._0x8bf28f,_0x3a55d1._0x41dc31,0x12d,_0x3a55d1._0x4363aa)+_0x24ef9a(0x2bb,0x233,0x19d,0x219)]||_0x307d09[_0x24ef9a(_0x3a55d1._0x216d70,_0x3a55d1._0x269827,_0x3a55d1._0x3ef4fb,0x215)]||_0x57f669[_0x24ef9a(0x12c,_0x3a55d1._0x593a3e,0x143,0x15c)]));}}const _0x641f44=await _0x57f669[_0x24ef9a(0x182,0x200,_0x3a55d1._0x17ac35,_0x3a55d1._0x19a8a2)](),_0x43204d=new Date(_0x1fd641[_0x24ef9a(_0x3a55d1._0x4363aa,0x13a,_0x3a55d1._0x4c111d,0x154)](Date[_0x47488f(0x57a,0x4fc,0x475,_0x3a55d1._0x27d69d)](),_0x1fd641['OFjRr'](_0x641f44[_0x24ef9a(_0x3a55d1._0x6d5b28,0x220,0x2b0,0x21d)],0x95*0x29+0x20a1+-0x1*0x3496)))[_0x47488f(0x3b3,_0x3a55d1._0x460c39,0x424,0x3c2)+'g'](),_0x259ec3={};return _0x259ec3[_0x24ef9a(_0x3a55d1._0x30b520,0x198,0x188,0x116)]=_0x641f44[_0x24ef9a(_0x3a55d1._0x39c0b6,_0x3a55d1._0x1e00e8,0x2ee,_0x3a55d1._0x3a382d)+'en'],_0x259ec3[_0x47488f(_0x3a55d1._0x50e52a,0x4c8,0x4bb,_0x3a55d1._0x50c3b9)]=_0x43204d,_0x259ec3;}async['_getTokenW'+_0x4c8256(0x25a,0x2d1,0x26f,0x2b4)+_0x148752(-0x1eb,-0x21b,-0x1c2,-0x255)](_0x31979c){const _0x1798eb={_0x3b44f3:0x103,_0x3fe288:0x65,_0x4a54c0:0xef,_0x322236:0x159,_0x1ae231:0x146,_0x8a19fc:0x7c,_0xc8d55f:0xc9,_0x5c7ab4:0x152,_0x57e7d0:0x1be,_0x42027a:0x1c3,_0x50c34e:0x157,_0x13abb2:0x180,_0x6e1200:0x1e1,_0x364b5f:0x18b,_0x14bc6b:0xbb,_0x5e415b:0x8b,_0x1407f8:0xe9,_0xbd9437:0x14b,_0x2de043:0x101,_0x1a768a:0x166,_0x23dac1:0x168,_0x564cf7:0x1c8,_0x5eefc1:0x134,_0x29971d:0x18e,_0x453c32:0x160,_0x35cfec:0x64,_0x22af6c:0x7a,_0x3c2f97:0xa2,_0x2fd5f1:0x1f6,_0x300326:0x1c6,_0x19afb1:0x13e,_0x6f0531:0x136,_0x18ab77:0x126,_0x1975a0:0x19c,_0x33faf0:0x175,_0x3f4f4b:0x207,_0x949027:0x16f,_0x4a0f89:0x179,_0x22bffa:0x18c,_0xb16663:0x1c6,_0x505cfd:0x73,_0xd143bc:0xbc,_0x24a647:0x12c,_0x33a54e:0x165,_0x4d79dd:0x157,_0x2482b6:0x21,_0x1043f4:0x85,_0x10f9fe:0x9e,_0x135913:0x104,_0x127e63:0x4a,_0x2d2e5b:0x6e,_0x566afa:0x74,_0x27903c:0x12,_0x5cad49:0xe6,_0x9967de:0x110,_0x4337ae:0x19b,_0x32a2e4:0x1bd,_0x258a98:0x10c,_0x44b1da:0x12d,_0x4455d8:0xa0,_0x248127:0x1b1,_0x3b5137:0x11a,_0x1e6524:0x1f9,_0x5091e4:0x193,_0x3823f0:0x1aa,_0x2a1ab8:0x1eb,_0x5ed25a:0x101,_0x284d5c:0xab,_0x43b162:0xfc,_0x223df2:0xdd,_0x280275:0x121,_0x40e6e2:0xad,_0x2aa1c3:0xe0,_0x3bf056:0xcc,_0x1b760f:0x1a4,_0x16f22d:0x91,_0x112395:0x12a,_0x332c58:0x135,_0x39f272:0x132},_0x4c4378={_0x46afc4:0x197},_0x146886={'uGbee':'urn:ietf:p'+_0x5f49d6(-0x189,-_0x1798eb._0x3b44f3,-0xa5,-0xc8)+_0x1ee57f(0xd2,0xf6,0x11c,_0x1798eb._0x3fe288)+'ssertion-t'+_0x1ee57f(0x11b,_0x1798eb._0x4a54c0,0xb2,0x15a)+'arer','GHcqB':'Requesting'+_0x5f49d6(-_0x1798eb._0x322236,-0xe2,-_0x1798eb._0x1ae231,-_0x1798eb._0x8a19fc)+'Ops\x20token\x20'+_0x5f49d6(-_0x1798eb._0xc8d55f,-_0x1798eb._0x5c7ab4,-_0x1798eb._0x57e7d0,-_0x1798eb._0x42027a)+_0x5f49d6(-_0x1798eb._0x50c34e,-_0x1798eb._0x13abb2,-_0x1798eb._0x6e1200,-_0x1798eb._0x364b5f),'DBLNQ':function(_0x16b6e6,_0x2f5e10,_0xc48dd0){return _0x16b6e6(_0x2f5e10,_0xc48dd0);},'UUmyw':'applicatio'+_0x5f49d6(-0xa6,-0xba,-_0x1798eb._0x14bc6b,-_0x1798eb._0x5e415b)+_0x1ee57f(_0x1798eb._0x1407f8,0x8f,_0x1798eb._0xbd9437,0x89)+_0x5f49d6(-0x20a,-0x172,-_0x1798eb._0x2de043,-0xee),'NYSEl':function(_0x1d8b09,_0x4fb5b2){return _0x1d8b09+_0x4fb5b2;}},_0x6c6e23=await this[_0x5f49d6(-_0x1798eb._0x1a768a,-_0x1798eb._0x23dac1,-_0x1798eb._0x564cf7,-_0x1798eb._0x5eefc1)+'lientAsser'+_0x1ee57f(_0x1798eb._0x29971d,0x1e2,0x194,_0x1798eb._0x453c32)](),_0xe47b8d='https://lo'+_0x5f49d6(-_0x1798eb._0x35cfec,-0xa6,-0x12b,-0x57)+'oftonline.'+_0x1ee57f(0xfc,_0x1798eb._0x22af6c,0x75,_0x1798eb._0x3c2f97)+this[_0x5f49d6(-_0x1798eb._0x2fd5f1,-0x178,-0xf7,-_0x1798eb._0x300326)]+(_0x5f49d6(-0xc3,-_0x1798eb._0x19afb1,-_0x1798eb._0x6f0531,-0x15a)+'.0/token'),_0x17faf9={};_0x17faf9['client_id']=this[_0x1ee57f(_0x1798eb._0x18ab77,_0x1798eb._0x1975a0,_0x1798eb._0x33faf0,0x1c4)],_0x17faf9[_0x5f49d6(-0x15d,-0x12c,-0x159,-0x1ad)]=AZURE_DEVOPS_SCOPE,_0x17faf9[_0x1ee57f(0x16d,_0x1798eb._0x3f4f4b,_0x1798eb._0x949027,0x119)+_0x5f49d6(-0xb7,-0x115,-0x181,-0x18f)+'e']=_0x146886[_0x1ee57f(0x19d,0x15c,0x1c0,0x143)],_0x17faf9[_0x1ee57f(0x16d,0x179,0x204,0x176)+_0x5f49d6(-0x1ce,-_0x1798eb._0x4a0f89,-0x1d4,-0x125)]=_0x6c6e23,_0x17faf9[_0x5f49d6(-0x1ff,-0x162,-0x105,-0xd8)]=_0x1ee57f(_0x1798eb._0x22bffa,0x142,0xfa,_0x1798eb._0xb16663)+'dentials';const _0x2e3d86=new URLSearchParams(_0x17faf9),_0x239872={};_0x239872[_0x5f49d6(-_0x1798eb._0x505cfd,-_0x1798eb._0x5e415b,-_0x1798eb._0xd143bc,-0x1b)]=this[_0x1ee57f(0x16b,_0x1798eb._0x24a647,_0x1798eb._0x33a54e,0x1ec)],_0x239872['tokenUrl']=_0xe47b8d;function _0x5f49d6(_0x266b68,_0x428dca,_0x2c0105,_0x56bd2a){return _0x148752(_0x428dca-0x90,_0x428dca-0x11b,_0x2c0105-0x169,_0x56bd2a);}_0x31979c['debug'](_0x146886[_0x1ee57f(0x186,_0x1798eb._0x4d79dd,0x1fc,0x12a)],_0x239872);const _0x487678=await _0x146886[_0x5f49d6(-_0x1798eb._0x2482b6,-0x70,-_0x1798eb._0x1043f4,-0xa9)](fetch,_0xe47b8d,{'method':'POST','headers':{'Content-Type':_0x146886[_0x1ee57f(_0x1798eb._0x10f9fe,_0x1798eb._0x135913,_0x1798eb._0x127e63,0xe7)]},'body':_0x2e3d86[_0x1ee57f(_0x1798eb._0x2d2e5b,_0x1798eb._0x566afa,0x86,-_0x1798eb._0x27903c)]()});if(!_0x487678['ok']){const _0x4b716b=await _0x487678[_0x1ee57f(0x149,0x1bb,0x172,0xdb)]()['catch'](()=>({}));throw new Error(_0x5f49d6(-0xae,-_0x1798eb._0x5cad49,-0xc7,-_0x1798eb._0x9967de)+'get\x20Azure\x20'+_0x1ee57f(0x15a,0x19b,0xbe,0xf6)+'en:\x20'+_0x487678[_0x1ee57f(0x17e,_0x1798eb._0x4337ae,0x109,_0x1798eb._0x32a2e4)]+_0x5f49d6(-0x126,-_0x1798eb._0x258a98,-_0x1798eb._0x44b1da,-_0x1798eb._0x4455d8)+(_0x4b716b[_0x5f49d6(-_0x1798eb._0x248127,-0x196,-_0x1798eb._0x3b5137,-_0x1798eb._0x1e6524)+'ription']||_0x4b716b[_0x1ee57f(_0x1798eb._0x5091e4,_0x1798eb._0x3823f0,0x123,_0x1798eb._0x2a1ab8)]||_0x487678[_0x1ee57f(0x8e,_0x1798eb._0x5ed25a,0xcd,_0x1798eb._0x284d5c)]));}const _0x50b072=await _0x487678['json'](),_0x23c0f6=new Date(_0x146886[_0x1ee57f(0xc9,0x120,_0x1798eb._0x43b162,_0x1798eb._0x223df2)](Date[_0x5f49d6(-_0x1798eb._0x280275,-_0x1798eb._0x40e6e2,-_0x1798eb._0x2aa1c3,-0x112)](),_0x50b072[_0x1ee57f(0x169,_0x1798eb._0x3bf056,_0x1798eb._0x1b760f,0x1dc)]*(-0xb3c+0x591+0x331*0x3)))[_0x1ee57f(_0x1798eb._0x16f22d,0xb6,0xda,_0x1798eb._0x112395)+'g'](),_0x3ea2a4={};_0x3ea2a4['token']=_0x50b072[_0x1ee57f(0x19e,0x135,_0x1798eb._0x332c58,_0x1798eb._0x39f272)+'en'],_0x3ea2a4[_0x1ee57f(0x121,0x1af,0xe2,0xe7)]=_0x23c0f6;function _0x1ee57f(_0x4b8ab9,_0x29bca5,_0x1f4aea,_0x1d332e){return _0x148752(_0x4b8ab9-0x292,_0x29bca5-_0x4c4378._0x46afc4,_0x1f4aea-0x41,_0x1d332e);}return _0x3ea2a4;}async[_0x148752(-0x1f8,-0x1e0,-0x206,-0x228)+_0x148752(-0x195,-0x18c,-0x161,-0x1ba)+_0x148752(-0x104,-0x9b,-0x124,-0x8a)](){const _0x4e3c1e={_0x47aaa7:0x197,_0x1c8e24:0x20e,_0x36ed3a:0x129,_0x4fc0a3:0x27f,_0x2f6319:0x271,_0x5230a2:0x220,_0x3f4cd8:0x1fd,_0x369ee5:0x265,_0x40a8ce:0x233,_0x1cc3ae:0x1c3,_0x3fe4ae:0x16a,_0x2b6c4c:0x1cf,_0x2fbe83:0x1a0,_0x11a524:0x192,_0x481cf6:0x182,_0x1aadbb:0x1c7,_0x14a2dd:0x1a1,_0x574787:0x1a9,_0x1ac1a2:0x1cc,_0xa12104:0x1d3,_0x42daae:0x1e7,_0x3071b0:0x2af,_0x5af840:0x116,_0x55521f:0x1c1,_0x19fffd:0x18a,_0xe92d57:0x1b0,_0x8c108:0x215,_0x5c6d58:0x20c,_0x20750f:0x19f,_0x291782:0x16e,_0x3c1244:0x18c,_0xb587e2:0x258,_0x345c6b:0x2c5,_0x518974:0x1f4,_0x1ea45a:0x22b,_0x271540:0x1e9,_0x21b72e:0x221,_0xd348c3:0x270,_0x39fe7a:0x1ad,_0x37f8f9:0x1bc,_0x339925:0x21a,_0x3e9a88:0x252,_0xd65421:0x21e,_0x5a0a78:0x1bb,_0x2d9866:0x2a0,_0x3e80ba:0x230,_0x1ade55:0x179,_0x4952ca:0x1ba,_0x23fc6d:0x102,_0x4e0582:0x16d,_0x169d11:0xfb,_0x548373:0x18c,_0x9f8e7c:0x254,_0xe681b2:0x17c,_0x22fa0f:0x20d,_0x17bc60:0x262,_0x2feb3c:0x249,_0xcf098f:0x2a5,_0x3cc7ca:0x2c4,_0x335e96:0x20e,_0x455296:0x1d9,_0x3414c6:0x1b3,_0x123653:0x1c8,_0x2ba179:0x1f1,_0x29fd1f:0x1a6,_0x237cde:0x1bd,_0x33a9e9:0x189,_0x3c2c31:0x26a,_0x4564d5:0x1da,_0x3b0a15:0x14e,_0xba60fa:0x18d,_0x96579c:0x134,_0x243de9:0x14f,_0x52649f:0x122,_0x4e492f:0x259,_0x528e6f:0x2b4,_0x54296f:0x231,_0xec3443:0x2b5,_0x5d425e:0x21c,_0x2c7976:0x219,_0x2947b7:0x1e8,_0xc45852:0x24b,_0x2230e3:0x1ef,_0x4dffc0:0x1d9,_0x3270f0:0x196,_0x4de68e:0x17a,_0x484a51:0x1c4,_0x47273a:0x1f7,_0x5354ac:0x24e,_0x10fcc7:0x145,_0x1df646:0x1af,_0x394ddb:0x118,_0x52bef1:0xea,_0x5b8252:0x223,_0x5066f5:0x1d7,_0x601e51:0x23f,_0x329157:0x21a,_0x382008:0x26b,_0xf75773:0x225,_0x5b5201:0x239,_0x1daa8c:0x185,_0x4c9839:0x1eb,_0x179d3d:0x21c,_0x1a8ef3:0x18f,_0x19b5f7:0x19c,_0x4d0354:0x227,_0x412b5c:0x1aa,_0x125076:0x1f1,_0x894382:0xf1,_0x3dca05:0xc8,_0x35f78a:0x107,_0x43832b:0x1de,_0xe081c7:0x200,_0x5e39e3:0x1d6,_0x15ff09:0x22f,_0x4ce474:0x280,_0x452cd9:0x240,_0x46fce7:0x1e6,_0x50dec8:0x1d2,_0x3deebb:0x163,_0x58ae39:0x141,_0x55e85c:0x132,_0x17f57d:0x2a4,_0x1ba89c:0x276,_0x523f5e:0x2de,_0x7cc467:0x276,_0x29503c:0x20d,_0x38cb90:0x185,_0x2f4fea:0x15e,_0x1a7196:0x12f,_0x27df3b:0x19f,_0x8a3fd2:0x1d4,_0x55fe42:0x202,_0x470f67:0x295,_0x4daaa4:0x166,_0x5ba1a8:0x10e,_0x58e398:0x18b,_0x17eee9:0x181,_0x149219:0x139,_0x4c0fef:0x2bd,_0x42cd27:0x17d,_0x56515c:0x106,_0xce75c9:0x1fe,_0x1fd074:0x13a,_0x3e557d:0x230,_0x50012e:0x13b,_0x13ad42:0x1d0,_0x86d109:0x1e2,_0x40ef00:0x12c,_0x43e820:0x1b1,_0x394e9c:0x1e2,_0x1f1493:0x1cf,_0x4417ea:0x256,_0x2eb04:0x207,_0x9c89e2:0x11e,_0x218354:0x156,_0x5c269d:0x118,_0x3669d0:0x15a,_0xf7651c:0xed,_0x38c495:0xf5,_0x30cbde:0x1e1,_0x2f6ff1:0x232,_0x5c8bc9:0x240,_0x145abf:0x1f4,_0x2d8f0a:0x197,_0x20e05a:0x1ec,_0x330741:0x17b,_0x5ecb50:0x218,_0x5131a9:0x24e,_0x197e6e:0x213,_0x3c4b98:0x1fd},_0x11d350={_0x206d6e:0x19,_0x1bde74:0x1c2,_0xf5422b:0x59},_0x343577={_0x2d5081:0x3,_0x53ecaf:0x1b2},_0x387889={};_0x387889[_0x100519(-_0x4e3c1e._0x47aaa7,-0x144,-_0x4e3c1e._0x1c8e24,-_0x4e3c1e._0x36ed3a)]=function(_0x4be196,_0x4f077f){return _0x4be196+_0x4f077f;},_0x387889[_0x4c6490(_0x4e3c1e._0x4fc0a3,0x244,_0x4e3c1e._0x2f6319,0x250)]='Using\x20cach'+_0x4c6490(_0x4e3c1e._0x5230a2,0x270,_0x4e3c1e._0x3f4cd8,_0x4e3c1e._0x369ee5)+_0x4c6490(_0x4e3c1e._0x40a8ce,0x218,_0x4e3c1e._0x1cc3ae,0x1f4)+'n',_0x387889['THPCy']=_0x100519(-_0x4e3c1e._0x3fe4ae,-0xe0,-0x1a5,-_0x4e3c1e._0x2b6c4c),_0x387889[_0x4c6490(_0x4e3c1e._0x2fbe83,0x1ac,_0x4e3c1e._0x11a524,_0x4e3c1e._0x481cf6)]=function(_0x7c932d,_0x111423){return _0x7c932d!==_0x111423;},_0x387889[_0x100519(-_0x4e3c1e._0x1aadbb,-0x1f3,-0x16d,-_0x4e3c1e._0x14a2dd)]='hJrcM',_0x387889[_0x100519(-_0x4e3c1e._0x574787,-0x21e,-_0x4e3c1e._0x1ac1a2,-0x1bb)]=_0x4c6490(_0x4e3c1e._0xa12104,0x1ad,_0x4e3c1e._0x42daae,0x166),_0x387889[_0x4c6490(0x2e2,0x27c,_0x4e3c1e._0x3071b0,0x2d3)]=function(_0x12600f,_0x4e756e){return _0x12600f!==_0x4e756e;},_0x387889[_0x100519(-0x18b,-_0x4e3c1e._0x5af840,-_0x4e3c1e._0x55521f,-_0x4e3c1e._0x19fffd)]=_0x4c6490(0x1c8,_0x4e3c1e._0xe92d57,0x23c,0x2ac),_0x387889['IsvUN']=_0x4c6490(0x185,_0x4e3c1e._0x8c108,_0x4e3c1e._0x5c6d58,0x1c4),_0x387889[_0x4c6490(_0x4e3c1e._0x20750f,_0x4e3c1e._0x291782,_0x4e3c1e._0x3c1244,0x174)]=_0x100519(-0x221,-0x259,-0x1b7,-_0x4e3c1e._0xb587e2),_0x387889[_0x4c6490(0x1ee,0x12c,0x18b,0x213)]=_0x100519(-0x15f,-0xcf,-0x131,-0x1de)+_0x4c6490(_0x4e3c1e._0x345c6b,_0x4e3c1e._0x518974,_0x4e3c1e._0x1ea45a,0x1c0)+_0x100519(-_0x4e3c1e._0x271540,-0x211,-_0x4e3c1e._0x21b72e,-_0x4e3c1e._0xd348c3)+_0x4c6490(0x1f8,_0x4e3c1e._0x39fe7a,0x23d,_0x4e3c1e._0x37f8f9);const _0x3502e9=_0x387889;function _0x100519(_0x17f9af,_0x85205,_0x209487,_0x3a98d5){return _0x148752(_0x17f9af- -_0x343577._0x2d5081,_0x85205-_0x343577._0x53ecaf,_0x209487-0x13d,_0x209487);}const _0x15267f=_0x31057a[_0x100519(-_0x4e3c1e._0x339925,-0x241,-_0x4e3c1e._0x3e9a88,-0x28a)](this[_0x100519(-_0x4e3c1e._0x3c1244,-0x102,-0x154,-0x13e)+'h'],this['certificat'+'eFile']);let _0x2f4123;try{_0x2f4123=await _0x487caa[_0x4c6490(0x2ab,0x1e3,_0x4e3c1e._0xd65421,0x19e)](_0x15267f,_0x3502e9[_0x4c6490(_0x4e3c1e._0x5a0a78,_0x4e3c1e._0x2d9866,_0x4e3c1e._0x3e80ba,0x2b5)]);}catch(_0x13cd36){throw new Error(_0x100519(-_0x4e3c1e._0x1ade55,-_0x4e3c1e._0x4952ca,-_0x4e3c1e._0x23fc6d,-0x20e)+'read\x20Azure'+_0x100519(-_0x4e3c1e._0x4e0582,-_0x4e3c1e._0x169d11,-_0x4e3c1e._0x548373,-0x1cc)+'rtificate\x20'+_0x4c6490(0x181,_0x4e3c1e._0x9f8e7c,0x1d5,_0x4e3c1e._0xe681b2)+this[_0x100519(-0x1be,-0x128,-_0x4e3c1e._0x22fa0f,-0x228)+_0x4c6490(_0x4e3c1e._0x17bc60,_0x4e3c1e._0x2feb3c,_0x4e3c1e._0xcf098f,0x2e8)]+':\x20'+_0x13cd36['message']);}const _0x360803=_0x2f4123[_0x4c6490(0x2a6,_0x4e3c1e._0x3cc7ca,0x23e,_0x4e3c1e._0x335e96)](/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/);if(!_0x360803){if(_0x3502e9['FMzut']('hJrcM',_0x3502e9['KoZfo']))throw new _0x5921ad(_0x3502e9['Aeftq']('Azure\x20DevO'+'ps\x20user\x20OA'+_0x100519(-_0x4e3c1e._0x455296,-_0x4e3c1e._0x3414c6,-_0x4e3c1e._0x123653,-0x259)+'\x20yet\x20imple'+_0x100519(-_0x4e3c1e._0x2ba179,-_0x4e3c1e._0x29fd1f,-_0x4e3c1e._0x237cde,-_0x4e3c1e._0x33a9e9),_0x4c6490(0x17f,_0x4e3c1e._0x3c2c31,0x1cd,_0x4e3c1e._0x4564d5)+_0x100519(-_0x4e3c1e._0x3b0a15,-_0x4e3c1e._0xba60fa,-_0x4e3c1e._0x96579c,-0x13a)+_0x4c6490(_0x4e3c1e._0x243de9,0x1a0,_0x4e3c1e._0x2fbe83,_0x4e3c1e._0x52649f)+_0x4c6490(_0x4e3c1e._0x4e492f,_0x4e3c1e._0x528e6f,0x272,0x23b)+_0x100519(-0x208,-0x1ec,-_0x4e3c1e._0x54296f,-0x1da)+'s\x20mode\x20in\x20'+_0x4c6490(_0x4e3c1e._0xec3443,0x27e,_0x4e3c1e._0x17bc60,_0x4e3c1e._0x5d425e)+_0x100519(-_0x4e3c1e._0x2c7976,-0x286,-_0x4e3c1e._0x2947b7,-_0x4e3c1e._0xc45852)+_0x4c6490(_0x4e3c1e._0x2230e3,_0x4e3c1e._0x4dffc0,_0x4e3c1e._0x3270f0,_0x4e3c1e._0x4de68e)));else throw new Error(_0x100519(-0x171,-0x1b6,-_0x4e3c1e._0x484a51,-0x10e)+'e\x20file\x20doe'+_0x4c6490(_0x4e3c1e._0x47273a,_0x4e3c1e._0x5354ac,0x1da,_0x4e3c1e._0x10fcc7)+_0x4c6490(0x1db,0x25b,0x1ce,_0x4e3c1e._0x1df646)+_0x100519(-0x14b,-0x174,-_0x4e3c1e._0x394ddb,-_0x4e3c1e._0x52bef1)+_0x4c6490(0x191,0x1fc,_0x4e3c1e._0x5b8252,_0x4e3c1e._0x5066f5));}const _0x363209=Buffer['from'](_0x360803[-0x1*-0xcdd+0x1fc6+0xee1*-0x3]['replace'](/-----BEGIN CERTIFICATE-----/g,'')[_0x100519(-0x1ca,-_0x4e3c1e._0x601e51,-_0x4e3c1e._0x329157,-_0x4e3c1e._0x4e0582)](/-----END CERTIFICATE-----/g,'')['replace'](/\s/g,''),_0x4c6490(_0x4e3c1e._0x382008,_0x4e3c1e._0xf75773,0x1f5,_0x4e3c1e._0x5b5201)),_0x2f053b=_0xa92735['createHash'](_0x3502e9[_0x100519(-0x1a9,-_0x4e3c1e._0x1daa8c,-0x1f7,-0x126)])['update'](_0x363209)[_0x100519(-_0x4e3c1e._0x4c9839,-_0x4e3c1e._0x179d3d,-_0x4e3c1e._0x1a8ef3,-_0x4e3c1e._0x19b5f7)](),_0x279338=_0x2f053b[_0x100519(-_0x4e3c1e._0x4d0354,-0x269,-_0x4e3c1e._0x412b5c,-_0x4e3c1e._0x179d3d)](_0x100519(-0x1f3,-_0x4e3c1e._0x125076,-0x27b,-0x19c)),_0x496acf=_0x2f4123['match'](/-----BEGIN (?:RSA )?PRIVATE KEY-----[\s\S]*?-----END (?:RSA )?PRIVATE KEY-----/);if(!_0x496acf){if(_0x3502e9[_0x100519(-_0x4e3c1e._0x894382,-0x73,-_0x4e3c1e._0x3dca05,-_0x4e3c1e._0x35f78a)](_0x3502e9[_0x4c6490(_0x4e3c1e._0x43832b,0x1ca,0x215,_0x4e3c1e._0x33a9e9)],_0x3502e9[_0x4c6490(0x1b9,0x1c4,0x1e3,_0x4e3c1e._0xe081c7)]))throw new Error(_0x4c6490(_0x4e3c1e._0x5e39e3,0x19d,_0x4e3c1e._0x15ff09,0x1e4)+_0x4c6490(_0x4e3c1e._0x4ce474,_0x4e3c1e._0x452cd9,0x21b,_0x4e3c1e._0x46fce7)+_0x4c6490(0x213,0x16f,0x1da,0x248)+_0x100519(-_0x4e3c1e._0x50dec8,-0x1f6,-_0x4e3c1e._0x3deebb,-0x135)+_0x100519(-0x105,-_0x4e3c1e._0x58ae39,-0x178,-_0x4e3c1e._0x55e85c)+_0x4c6490(0x274,0x2b1,_0x4e3c1e._0x17f57d,_0x4e3c1e._0x1ba89c));else{const _0x53fe18={};_0x53fe18[_0x4c6490(_0x4e3c1e._0x523f5e,0x31a,0x282,0x1e5)]=this[_0x4c6490(0x1d9,_0x4e3c1e._0x339925,_0x4e3c1e._0x7cc467,_0x4e3c1e._0x29503c)],_0x360fd1[_0x4c6490(_0x4e3c1e._0x4d0354,_0x4e3c1e._0x38cb90,0x197,_0x4e3c1e._0x2f4fea)](_0x3502e9[_0x100519(-_0x4e3c1e._0x1a7196,-0x165,-0x1c9,-_0x4e3c1e._0x27df3b)],_0x53fe18);const _0x28d418={};return _0x28d418['token']=_0x5e156d[_0x100519(-0x1b4,-_0x4e3c1e._0x123653,-_0x4e3c1e._0x3deebb,-_0x4e3c1e._0x8a3fd2)],_0x28d418['expires_at']=_0x5775f0[_0x4c6490(_0x4e3c1e._0x55fe42,0x27f,0x22c,_0x4e3c1e._0x470f67)],_0x28d418;}}const _0x554839=_0x496acf[-0x122*0x1+0x1ff1+-0x1ecf],_0x5ed40b=Math[_0x100519(-_0x4e3c1e._0x4daaa4,-_0x4e3c1e._0x5ba1a8,-_0x4e3c1e._0x58e398,-_0x4e3c1e._0x17eee9)](Date[_0x100519(-0x140,-0xe9,-_0x4e3c1e._0x149219,-0xc2)]()/(-0x9ab+0x25e1*-0x1+0x3374)),_0x11d626=_0x100519(-0x220,-0x29b,-_0x4e3c1e._0x4c0fef,-0x2a4)+_0x100519(-_0x4e3c1e._0x149219,-0x1c8,-_0x4e3c1e._0x42cd27,-0x108)+_0x4c6490(_0x4e3c1e._0x56515c,0x129,0x19d,_0x4e3c1e._0xce75c9)+_0x100519(-0x199,-0x151,-0x19c,-0x173)+this['tenantId']+(_0x4c6490(_0x4e3c1e._0x1fd074,_0x4e3c1e._0x3e557d,_0x4e3c1e._0x2b6c4c,0x160)+'.0/token'),_0x850b15={};_0x850b15['alg']=_0x3502e9[_0x4c6490(0x220,0xf9,_0x4e3c1e._0x548373,_0x4e3c1e._0x50012e)],_0x850b15[_0x100519(-0x190,-0x1ef,-0x1fa,-_0x4e3c1e._0x149219)]=_0x100519(-0x1a5,-_0x4e3c1e._0x13ad42,-_0x4e3c1e._0x86d109,-0x199),_0x850b15[_0x100519(-0x195,-_0x4e3c1e._0x40ef00,-_0x4e3c1e._0x43e820,-0x1c0)]=_0x279338;const _0x5de07e=_0x850b15;function _0x4c6490(_0x1e337f,_0x2ac4cf,_0x209669,_0xc0d5cb){return _0x4c8256(_0x1e337f-_0x11d350._0x206d6e,_0x1e337f,_0x209669-_0x11d350._0x1bde74,_0x209669- -_0x11d350._0xf5422b);}const _0x246584={'aud':_0x11d626,'iss':this[_0x100519(-0x16f,-0xff,-0x1fa,-0x195)],'sub':this['clientId'],'jti':_0xa92735[_0x100519(-_0x4e3c1e._0x394e9c,-_0x4e3c1e._0x1f1493,-0x18e,-0x1bd)](),'exp':_0x3502e9[_0x4c6490(0x1f8,_0x4e3c1e._0x4417ea,0x209,_0x4e3c1e._0x2eb04)](_0x5ed40b,JWT_LIFETIME_SECONDS),'iat':_0x5ed40b,'nbf':_0x5ed40b},_0x4fa12a={};_0x4fa12a[_0x100519(-_0x4e3c1e._0x9c89e2,-_0x4e3c1e._0x218354,-_0x4e3c1e._0x5c269d,-_0x4e3c1e._0x3669d0)]=this[_0x100519(-0x12a,-0x1b0,-_0x4e3c1e._0xf7651c,-_0x4e3c1e._0x38c495)],_0x4fa12a[_0x4c6490(0x252,0x22e,0x20b,_0x4e3c1e._0x30cbde)]=_0x279338,_0x4fa12a[_0x4c6490(_0x4e3c1e._0x125076,_0x4e3c1e._0x2f6ff1,_0x4e3c1e._0x5c8bc9,0x26b)]=_0x11d626,_0x1af955[_0x4c6490(_0x4e3c1e._0x145abf,0x1fe,_0x4e3c1e._0x2d8f0a,0x14f)](_0x3502e9[_0x4c6490(0x107,_0x4e3c1e._0x20e05a,0x18b,_0x4e3c1e._0x330741)],_0x4fa12a);const _0x5a137a={};return _0x5a137a[_0x100519(-0x1ba,-_0x4e3c1e._0x5ecb50,-_0x4e3c1e._0x5131a9,-_0x4e3c1e._0x197e6e)]=_0x3502e9['KFFwb'],_0x5a137a['header']=_0x5de07e,_0x5688b9[_0x100519(-0x1fa,-0x268,-_0x4e3c1e._0x3c4b98,-0x176)](_0x246584,_0x554839,_0x5a137a);}async['getAuthent'+_0x148752(-0x146,-0x173,-0x1d4,-0x143)](_0x22a077,_0x7f9986={}){const _0x3c1160={_0x3375f4:0x1d5,_0x399ee4:0x273,_0x5dfc6b:0x4d,_0x1d8b1d:0x2,_0x91e197:0x9b,_0x3284bc:0x2d,_0x29c53a:0x9,_0x2953f5:0x56,_0x5d5841:0x52,_0x30cd5e:0xfd,_0x2f689c:0x55},_0x597911={_0x3c3628:0x101},_0x1bd4e7={_0x185e4c:0x1c,_0x3870f7:0x101},{token:_0x177701}=await this[_0x2b479e(-_0x3c1160._0x3375f4,-0x24d,-0x1ff,-_0x3c1160._0x399ee4)+_0x1bbfa5(-0x8b,-_0x3c1160._0x5dfc6b,0x98,_0x3c1160._0x1d8b1d)](_0x7f9986);function _0x1bbfa5(_0x392203,_0x23c284,_0x59f31d,_0x3b3308){return _0x148752(_0x3b3308-0x151,_0x23c284-_0x1bd4e7._0x185e4c,_0x59f31d-_0x1bd4e7._0x3870f7,_0x59f31d);}const _0x30cd56=new URL(_0x22a077);_0x30cd56[_0x1bbfa5(-_0x3c1160._0x91e197,_0x3c1160._0x3284bc,0x57,-_0x3c1160._0x29c53a)]='',_0x30cd56[_0x1bbfa5(-_0x3c1160._0x2953f5,-_0x3c1160._0x5d5841,-0x122,-0x87)]=_0x177701;function _0x2b479e(_0x2b93a3,_0xd60799,_0x42e212,_0x1004a7){return _0x148752(_0x42e212-0x1d,_0xd60799-0x80,_0x42e212-_0x597911._0x3c3628,_0xd60799);}return _0x30cd56[_0x1bbfa5(-_0x3c1160._0x30cd5e,-_0x3c1160._0x2f689c,-0x15b,-0xd3)]();}async[_0x4c8256(0x32b,0x326,0x2b6,0x2fa)+_0x148752(-0x169,-0x1b3,-0x1d3,-0x1b6)](_0x315e65={}){const _0x408b9a={_0x1a565b:0x2e3,_0x29c279:0x22f,_0x334110:0x25,_0x20b4e0:0x3e,_0x3fc7f3:0x4b,_0xeccea4:0x3b,_0xcbfc8c:0xf5,_0x2ec323:0x1ce,_0x2eb941:0x234,_0x23cdd7:0x223,_0x112ef0:0x4d,_0x3d7bf2:0x2c,_0x375bba:0x54,_0x8dbf66:0x28,_0xffdc16:0x274,_0x5da85e:0xe1,_0x5d3e46:0x3a,_0x60493e:0x41,_0x379826:0x5e,_0x595132:0x18,_0x4acd49:0xb,_0x22c75e:0x97,_0xdba15d:0x1b,_0x466630:0x83,_0x3c0506:0x250,_0xc5580c:0x2b,_0x2ceff0:0xf,_0x539e42:0x9c,_0x4eefd5:0x5,_0x3d49fb:0x2a,_0x3c7f4b:0xc1,_0x23ba6b:0x24e,_0x8d8907:0x2f1,_0x14ff97:0x33,_0x4c589b:0x94,_0x4db3e5:0xb,_0x3c0066:0x291,_0x1c2228:0x49,_0x4ad62e:0x32,_0x1dc2b2:0xca,_0xc4ed47:0x1cd,_0x50def0:0x209,_0x3b174c:0x225,_0x5925b8:0x19b,_0x255a89:0x304,_0x520f1b:0x2a2,_0x1ad835:0x340,_0x1419e7:0x5e,_0x2b6f94:0x64,_0x45c379:0x7b,_0x39e51c:0x37,_0xe5d084:0x1a,_0x18a914:0xab},_0x1d2966={_0x12a8a4:0x1a3,_0x4fef09:0xd5,_0x24ddaf:0x25a},_0x597382={_0x31dd69:0x17d};function _0x12cc8c(_0x2b2223,_0x58a024,_0x4b5b55,_0x4b3cda){return _0x148752(_0x58a024- -0xdc,_0x58a024-_0x597382._0x31dd69,_0x4b5b55-0x17,_0x4b3cda);}const _0x121f7f={};_0x121f7f[_0x12cc8c(-0x2bf,-0x274,-_0x408b9a._0x1a565b,-_0x408b9a._0x29c279)]=function(_0x48ebaf,_0x4f720f){return _0x48ebaf===_0x4f720f;},_0x121f7f[_0x369a9c(-_0x408b9a._0x334110,-_0x408b9a._0x20b4e0,0x6a,-0x1a)]=function(_0x43fbcf,_0x16d24e){return _0x43fbcf!==_0x16d24e;},_0x121f7f[_0x369a9c(0x49,_0x408b9a._0x3fc7f3,0x7,-_0x408b9a._0xeccea4)]='HdUnn';function _0x369a9c(_0x4aafb0,_0x522fc7,_0x5c9e8d,_0x52037b){return _0x4c8256(_0x4aafb0-_0x1d2966._0x12a8a4,_0x522fc7,_0x5c9e8d-_0x1d2966._0x4fef09,_0x4aafb0- -_0x1d2966._0x24ddaf);}_0x121f7f['JYyfL']='SpaJy',_0x121f7f['JVOCC']=function(_0x3cf39a,_0x2c29f2){return _0x3cf39a!==_0x2c29f2;},_0x121f7f['JUVRl']=_0x369a9c(0x8c,_0x408b9a._0xcbfc8c,0xbc,0x33);const _0x26312a=_0x121f7f,{repositoryUrls:_0x1c608f,logger:_0x42e3f6}=_0x315e65,_0x4f7c90={};_0x4f7c90[_0x12cc8c(-_0x408b9a._0x2ec323,-_0x408b9a._0x2eb941,-0x255,-_0x408b9a._0x23cdd7)]=_0x42e3f6;const {token:_0x579baf}=await this['generateTo'+_0x369a9c(_0x408b9a._0x112ef0,_0x408b9a._0x3d7bf2,_0x408b9a._0x375bba,_0x408b9a._0x8dbf66)](_0x4f7c90);if(!_0x1c608f||_0x26312a[_0x12cc8c(-0x2b3,-_0x408b9a._0xffdc16,-0x285,-0x254)](_0x1c608f[_0x369a9c(0x6d,0xca,0xfa,_0x408b9a._0x5da85e)],-0x6ba+-0x1f*0x137+0x2c63))return'';const _0x50524d=[];for(const _0x32bec2 of _0x1c608f){let _0x25abdc=_0x369a9c(_0x408b9a._0x5d3e46,_0x408b9a._0x60493e,_0x408b9a._0x379826,0x43)+_0x369a9c(-_0x408b9a._0x595132,-_0x408b9a._0x4acd49,-_0x408b9a._0x22c75e,-0x35),_0x3fcbd1='';try{if(_0x26312a['lVszA'](_0x26312a['svtzF'],_0x26312a['JYyfL'])){const _0x550d63=new URL(_0x32bec2);_0x25abdc=_0x550d63[_0x369a9c(0x4e,_0x408b9a._0xdba15d,_0x408b9a._0x466630,0xcc)],_0x3fcbd1=_0x550d63[_0x12cc8c(-0x208,-_0x408b9a._0x3c0506,-0x1f1,-0x23e)][_0x369a9c(-_0x408b9a._0xc5580c,-0xb,-0x2,0x4a)](/^\//,'')[_0x369a9c(-0x2b,-0xac,-0xbc,0x3a)](/\.git$/,'');}else _0x504903[_0x369a9c(0x6f,-_0x408b9a._0x2ceff0,_0x408b9a._0x539e42,_0x408b9a._0x4eefd5)](_0x369a9c(-_0x408b9a._0x3d49fb,-_0x408b9a._0x3c7f4b,0x29,-0xa8)+_0x12cc8c(-_0x408b9a._0x23ba6b,-0x2d6,-0x245,-_0x408b9a._0x8d8907)+_0x369a9c(-0x29,-_0x408b9a._0x14ff97,-_0x408b9a._0x4c589b,_0x408b9a._0x4db3e5)+_0xab6e95+'@'+_0x175fe3+'/'+_0x3686c6);}catch{continue;}_0x3fcbd1&&(_0x26312a[_0x12cc8c(-_0x408b9a._0x3c0066,-0x22e,-0x1c3,-0x2c3)](_0x26312a['JUVRl'],_0x369a9c(0x8c,_0x408b9a._0x1c2228,_0x408b9a._0x4ad62e,_0x408b9a._0x1dc2b2))?_0x5e9138['clear']():_0x50524d[_0x12cc8c(-_0x408b9a._0xc4ed47,-_0x408b9a._0x50def0,-_0x408b9a._0x3b174c,-_0x408b9a._0x5925b8)](_0x12cc8c(-_0x408b9a._0x255a89,-_0x408b9a._0x520f1b,-_0x408b9a._0x1ad835,-0x237)+_0x369a9c(-_0x408b9a._0x1419e7,-0xcd,-_0x408b9a._0x2b6f94,-0x7b)+_0x369a9c(-0x29,-0x1b,0x49,-_0x408b9a._0x4eefd5)+_0x579baf+'@'+_0x25abdc+'/'+_0x3fcbd1));}return _0x50524d[_0x369a9c(-_0x408b9a._0x45c379,-_0x408b9a._0x39e51c,-_0x408b9a._0xe5d084,-_0x408b9a._0x18a914)]('\x0a');}async[_0x148752(-0xfc,-0xc3,-0x74,-0x6d)+_0x148752(-0x203,-0x23f,-0x235,-0x297)+'o'](_0x372904,_0xd6263c={}){const _0x561258={_0x4ae48a:0x432,_0x4d7315:0x4a4,_0x134d9a:0x3d1,_0x2ec89e:0x3c9,_0x4dc8b3:0x492,_0x4c21b5:0x3e8,_0x21a887:0x47d,_0x3cd8a7:0x3ba,_0x2b5c72:0x4b7,_0x2b3d43:0x47f,_0x4bc035:0x4a9,_0x40cfe6:0x42d,_0x1803ec:0x4c3,_0x1223f6:0x46e,_0x6e1de5:0x4d2,_0x44f5a8:0x3a2,_0x1af7c7:0x41a,_0x217f66:0x46a,_0x458d72:0x4ce,_0x298da0:0x3e1,_0x5e15fa:0x46c,_0x316f02:0x4ae,_0x4b1815:0x3e2,_0x5cedcf:0x473,_0x125bcb:0x467,_0x49fbdb:0x482,_0x1a437c:0x433,_0x5b3475:0x4c2,_0x36da98:0x4c4,_0x12e6c0:0x496,_0x3d0e43:0x40e,_0x429713:0x48c,_0x5c75a0:0x39c,_0x349f8c:0x3ff,_0x3a050e:0x400,_0x311824:0x30a,_0x3005ad:0x439,_0x3bc3a9:0x3b2,_0x513af2:0x421,_0x290e9b:0x516,_0x153ade:0x519,_0x118134:0x5aa,_0x5146a4:0x421,_0x306b45:0x428,_0x416bb6:0x477,_0x2c3242:0x4b7,_0x1f88b0:0x3d0,_0x141662:0x44d,_0xbc6eb8:0x507,_0x261776:0x499,_0x1fa2de:0x396,_0x447b22:0x3b7,_0x45f4b3:0x4f1,_0x25a465:0x48f,_0x514448:0x50a,_0x5f5d8a:0x50a,_0x331540:0x419,_0x3a7054:0x441,_0x274603:0x4d1},_0x4277bb={_0x19400a:0x640,_0x3efa46:0x12a},_0x42a9d7={_0x27aaf0:0x5b2,_0x9d275f:0x73},_0x4a6cf0={};_0x4a6cf0[_0x5efd14(0x498,_0x561258._0x4ae48a,0x49c,_0x561258._0x4d7315)]=_0x5c0ce7(0x451,0x498,_0x561258._0x134d9a,0x480),_0x4a6cf0['jRQVT']=_0x5efd14(0x3fd,0x368,_0x561258._0x2ec89e,_0x561258._0x4dc8b3),_0x4a6cf0[_0x5efd14(_0x561258._0x4c21b5,_0x561258._0x21a887,0x45f,_0x561258._0x3cd8a7)]=_0x5efd14(0x479,0x478,_0x561258._0x2b5c72,_0x561258._0x2b3d43)+'p\x20credenti'+'als\x20for\x20Az'+'ure\x20DevOps'+'\x20repo',_0x4a6cf0[_0x5efd14(0x495,0x430,0x45f,0x4fb)]=_0x5c0ce7(_0x561258._0x4bc035,0x4dc,0x41a,0x53f)+_0x5efd14(_0x561258._0x40cfe6,0x4be,_0x561258._0x1803ec,_0x561258._0x1223f6);const _0x68dd28=_0x4a6cf0,{logger:logger=_0x1af955,credentialMode:credentialMode=_0x68dd28['UONPZ'],userId:_0x10bb15,providerName:_0x510347}=_0xd6263c;if(credentialMode===_0x68dd28[_0x5efd14(0x435,0x424,0x477,0x410)])throw new Error(_0x5c0ce7(0x47e,0x453,0x48e,_0x561258._0x6e1de5)+_0x5efd14(0x411,_0x561258._0x44f5a8,_0x561258._0x1af7c7,0x38e)+_0x5c0ce7(_0x561258._0x217f66,_0x561258._0x458d72,_0x561258._0x298da0,0x47a)+_0x5c0ce7(_0x561258._0x5e15fa,_0x561258._0x316f02,_0x561258._0x5e15fa,0x46a)+'mented.\x20'+(_0x5efd14(_0x561258._0x4b1815,_0x561258._0x5cedcf,0x37e,0x35b)+_0x5efd14(_0x561258._0x125bcb,_0x561258._0x49fbdb,0x3e1,_0x561258._0x1a437c)+'pository\x20t'+_0x5c0ce7(0x515,_0x561258._0x5b3475,0x542,_0x561258._0x36da98)+_0x5c0ce7(0x43b,_0x561258._0x2b3d43,_0x561258._0x12e6c0,_0x561258._0x3d0e43)+_0x5c0ce7(0x518,0x558,_0x561258._0x429713,0x50e)+'the\x20enviro'+_0x5efd14(_0x561258._0x5c75a0,_0x561258._0x349f8c,_0x561258._0x3a050e,_0x561258._0x311824)+_0x5c0ce7(_0x561258._0x3005ad,_0x561258._0x3bc3a9,_0x561258._0x513af2,0x455)));function _0x5efd14(_0x53e1f2,_0x4e51b4,_0xc4d339,_0x4788a6){return _0x148752(_0x53e1f2-_0x42a9d7._0x27aaf0,_0x4e51b4-0x167,_0xc4d339-_0x42a9d7._0x9d275f,_0x4788a6);}const _0x5b93d6={};_0x5b93d6[_0x5c0ce7(0x525,_0x561258._0x290e9b,0x5aa,0x499)]=this[_0x5c0ce7(_0x561258._0x153ade,0x5ab,0x51e,_0x561258._0x118134)];function _0x5c0ce7(_0x2de15a,_0x22c542,_0x4eb4cc,_0x158f96){return _0x148752(_0x2de15a-_0x4277bb._0x19400a,_0x22c542-0xee,_0x4eb4cc-_0x4277bb._0x3efa46,_0x4eb4cc);}_0x5b93d6[_0x5c0ce7(_0x561258._0x5146a4,_0x561258._0x306b45,0x494,_0x561258._0x416bb6)]=_0x372904,logger[_0x5c0ce7(0x43a,_0x561258._0x2c3242,_0x561258._0x1f88b0,_0x561258._0x141662)](_0x68dd28[_0x5c0ce7(0x476,_0x561258._0xbc6eb8,_0x561258._0x261776,0x494)],_0x5b93d6);const _0x814996={};_0x814996['logger']=logger;const {token:_0x23a216,expires_at:_0x34f06c}=await this[_0x5efd14(_0x561258._0x1fa2de,0x321,0x37b,_0x561258._0x447b22)+_0x5c0ce7(_0x561258._0x45f4b3,0x4f9,_0x561258._0x25a465,0x4a8)](_0x814996),_0x22d962={};return _0x22d962[_0x5c0ce7(0x4e6,0x473,0x57f,_0x561258._0x514448)]=_0x68dd28[_0x5efd14(0x495,_0x561258._0x5f5d8a,_0x561258._0x331540,0x42c)],_0x22d962['password']=_0x23a216,_0x22d962[_0x5efd14(_0x561258._0x3a7054,0x4a5,_0x561258._0x274603,0x473)]=_0x34f06c,_0x22d962;}async[_0x148752(-0x143,-0x132,-0x126,-0x141)+_0x4c8256(0x275,0x37c,0x261,0x2f2)](){const _0x221763={_0x2a3feb:0x92,_0x3eb8d1:0x8e,_0x25545a:0x2dc,_0x458ff1:0x28f,_0x520bd6:0x2c2,_0x49d611:0x291,_0x2ee0ad:0x1a4,_0x4ddb2c:0x23d,_0x20b7d7:0x168,_0x42dcf1:0x1ba,_0x56609e:0x139,_0x5035f8:0x71,_0x49cbf2:0x83,_0x25b031:0x26,_0x405eef:0x69,_0x106344:0x6a,_0x202004:0x1ea,_0x2b1a1f:0x1c0,_0x458364:0x25e,_0x2e9cf7:0x248,_0x43e39d:0x255,_0x4db5b3:0x28d,_0x2bd7ed:0x9e,_0x3f78c5:0x56,_0x38b680:0xa1,_0xf84ea6:0xb3,_0x25ec4c:0x256,_0x3d19bc:0x290,_0xc10889:0x212,_0x5eeb0a:0x230,_0x203ff3:0x2c4,_0x192bd6:0x1d5,_0x1aa140:0x21a,_0x483286:0x1e,_0x4eb524:0x130,_0x331471:0x81,_0x4ac7e6:0xe4,_0x48443f:0x1ba,_0x5b7ff0:0x16b,_0x50c6d7:0x1d0,_0x410fe8:0x209,_0x12287a:0x32,_0xea7f08:0x4c,_0xcbe9d9:0x104,_0x1eb5b5:0x17b,_0x1f070a:0x154,_0x17f779:0x252,_0x56ee00:0x1da,_0x24fa59:0x200,_0x576603:0x164,_0x4ba353:0x1f5,_0xc6e0fc:0x1a6,_0x37b981:0x27e,_0x337a7e:0x140,_0x5f28fe:0xcd,_0x35170e:0x8a,_0x5df433:0x1f6,_0x524daf:0x1d1,_0x487ec1:0x247,_0x34c08b:0x108,_0xd280fb:0x13c,_0x311ba0:0x4e,_0x5df40e:0xbc,_0x4c5304:0x2c3,_0xcdeaa4:0x2ce,_0x304718:0x293,_0x46d7d0:0x29f,_0x34b211:0x2d7,_0x177f34:0x2bb,_0x36482a:0x1cf,_0x12e92a:0x10e,_0x3718f3:0x1bc,_0x4d1947:0x1d8,_0x5eccc0:0x4b,_0x36422b:0x65,_0x4be031:0x1a8,_0x119d08:0x280,_0x116246:0x267,_0x527435:0x84,_0x278491:0x33,_0x6ef0ba:0x34,_0xc2e0bb:0x43,_0x595e15:0xc6,_0x296ae2:0xf3,_0x5300ce:0x17,_0x306873:0x3e,_0x2ea11c:0x174,_0x33d7b5:0x1b3,_0x1fd8e5:0x1ce,_0x101d67:0x17b,_0x5e6eac:0x275,_0x5bb35f:0x2b1,_0x1497e1:0x1a9,_0x3111e5:0x19a,_0x2e508a:0x18f,_0x128603:0x19f,_0x23dc4f:0x20e,_0x37bef8:0x114,_0x663115:0x13e},_0x347ad0={_0x47fa57:0xb7,_0x50b141:0xd},_0x2e4659={_0x474ef4:0x102},_0x35f51f={};function _0x32ebcb(_0x668bc2,_0x1c2892,_0xe8cf89,_0xcabe66){return _0x148752(_0x668bc2-0x22b,_0x1c2892-_0x2e4659._0x474ef4,_0xe8cf89-0x1c4,_0xe8cf89);}function _0x37eb73(_0x1bd928,_0x41392d,_0x5750f7,_0x48aec4){return _0x148752(_0x1bd928- -_0x347ad0._0x47fa57,_0x41392d-_0x347ad0._0x50b141,_0x5750f7-0xec,_0x41392d);}_0x35f51f[_0x32ebcb(_0x221763._0x2a3feb,_0x221763._0x3eb8d1,0x94,-0xc)]=_0x37eb73(-_0x221763._0x25545a,-_0x221763._0x458ff1,-_0x221763._0x520bd6,-_0x221763._0x49d611)+_0x37eb73(-_0x221763._0x2ee0ad,-_0x221763._0x4ddb2c,-0x167,-_0x221763._0x20b7d7),_0x35f51f['wWBnS']=function(_0x35287b,_0x2d49a6){return _0x35287b!==_0x2d49a6;},_0x35f51f[_0x37eb73(-_0x221763._0x42dcf1,-0x258,-_0x221763._0x56609e,-0x1ed)]='RpLgz';const _0x1dd610=_0x35f51f;try{const {token:_0x5c4c9f}=await this[_0x32ebcb(0xf,-0x3,_0x221763._0x5035f8,-_0x221763._0x49cbf2)+'ken'](),_0x20b667=_0x32ebcb(0x18,_0x221763._0x25b031,_0x221763._0x405eef,-_0x221763._0x106344)+_0x37eb73(-_0x221763._0x202004,-0x18b,-0x1e2,-_0x221763._0x2b1a1f)+'m/'+this[_0x37eb73(-_0x221763._0x458364,-_0x221763._0x2e9cf7,-_0x221763._0x43e39d,-_0x221763._0x4db5b3)+'on']+(_0x32ebcb(0x91,0x17,0x51,_0x221763._0x2bd7ed)+'jects?api-'+_0x32ebcb(_0x221763._0x3f78c5,_0x221763._0x38b680,-0x41,_0x221763._0xf84ea6)+_0x37eb73(-_0x221763._0x25ec4c,-_0x221763._0x3d19bc,-0x262,-_0x221763._0xc10889)),_0x233c56={};_0x233c56['Authorizat'+_0x37eb73(-_0x221763._0x5eeb0a,-0x20c,-_0x221763._0x203ff3,-_0x221763._0x192bd6)]=_0x37eb73(-0x263,-0x2cf,-0x293,-_0x221763._0x1aa140)+_0x5c4c9f,_0x233c56[_0x32ebcb(0x52,0xac,0xb3,_0x221763._0x483286)]=_0x1dd610[_0x32ebcb(0x92,0x63,0x44,_0x221763._0x4eb524)];const _0x421bf5={};_0x421bf5[_0x32ebcb(_0x221763._0x331471,_0x221763._0x4ac7e6,0xec,-0x1a)]=_0x233c56;const _0x97063d=await fetch(_0x20b667,_0x421bf5);if(_0x97063d['ok']){if(_0x1dd610[_0x37eb73(-0x1b2,-_0x221763._0x48443f,-0x1c1,-_0x221763._0x5b7ff0)](_0x1dd610[_0x37eb73(-_0x221763._0x42dcf1,-0x254,-0x21f,-0x1c4)],'RpLgz')){const _0x1809b1=(this[_0x37eb73(-_0x221763._0x50c6d7,-0x1f5,-_0x221763._0x410fe8,-0x1df)]||_0x32ebcb(_0x221763._0x12287a,-0x3f,-0x27,_0x221763._0xea7f08))+':'+this[_0x32ebcb(_0x221763._0xcbe9d9,_0x221763._0x1eb5b5,0x19e,_0x221763._0x1f070a)];_0x17c875[_0x37eb73(-0x21f,-_0x221763._0x17f779,-0x27c,-_0x221763._0x56ee00)](_0x1809b1);}else{const _0x745557=await _0x97063d[_0x37eb73(-_0x221763._0x24fa59,-0x237,-0x1ef,-_0x221763._0x576603)](),_0x4d17f2={};return _0x4d17f2[_0x37eb73(-_0x221763._0x4ba353,-_0x221763._0xc6e0fc,-0x28d,-_0x221763._0x37b981)]=!![],_0x4d17f2[_0x32ebcb(0x114,_0x221763._0x337a7e,_0x221763._0x5f28fe,_0x221763._0x35170e)]=_0x37eb73(-_0x221763._0x5df433,-_0x221763._0x524daf,-_0x221763._0x487ec1,-0x165)+_0x32ebcb(0x101,0x196,_0x221763._0x34c08b,_0x221763._0xd280fb)+'ly.\x20Access'+_0x32ebcb(_0x221763._0x311ba0,-0x50,_0x221763._0x5df40e,0x98)+_0x745557[_0x37eb73(-_0x221763._0x4c5304,-0x265,-0x2d4,-_0x221763._0xcdeaa4)]+(_0x37eb73(-_0x221763._0x304718,-_0x221763._0x46d7d0,-_0x221763._0x34b211,-_0x221763._0x177f34)+').'),_0x4d17f2[_0x37eb73(-_0x221763._0x4be031,-_0x221763._0x36482a,-_0x221763._0x12e92a,-_0x221763._0x3718f3)]={},_0x4d17f2[_0x37eb73(-_0x221763._0x4be031,-_0x221763._0x36482a,-_0x221763._0x12e92a,-_0x221763._0x3718f3)][_0x37eb73(-0x270,-0x261,-_0x221763._0x4d1947,-0x259)+'ects']=_0x745557[_0x32ebcb(0x1f,-_0x221763._0x5eccc0,-0x1f,_0x221763._0x36422b)],_0x4d17f2[_0x37eb73(-_0x221763._0x4be031,-_0x221763._0x36482a,-_0x221763._0x12e92a,-_0x221763._0x3718f3)][_0x37eb73(-0x25e,-_0x221763._0x119d08,-0x282,-_0x221763._0x116246)+'on']=this[_0x32ebcb(_0x221763._0x527435,_0x221763._0x278491,_0x221763._0x6ef0ba,_0x221763._0xc2e0bb)+'on'],_0x4d17f2;}}else{const _0x112881=await _0x97063d[_0x32ebcb(0xe2,_0x221763._0x595e15,_0x221763._0x296ae2,0xf0)]()[_0x32ebcb(_0x221763._0x5300ce,0xb1,-_0x221763._0x306873,-0x73)](()=>({})),_0x24e965={};return _0x24e965[_0x37eb73(-0x1f5,-_0x221763._0x2ea11c,-_0x221763._0x33d7b5,-0x193)]=![],_0x24e965[_0x37eb73(-_0x221763._0x1fd8e5,-0x252,-0x18f,-_0x221763._0x101d67)]=_0x32ebcb(0x69,-0x9,0xf0,0xd8)+'ps\x20API\x20err'+_0x37eb73(-_0x221763._0x5e6eac,-0x29d,-_0x221763._0x5bb35f,-0x2cc)+_0x97063d[_0x37eb73(-0x1cb,-_0x221763._0x1497e1,-0x20e,-_0x221763._0x3111e5)]+'\x20-\x20'+(_0x112881['message']||_0x97063d['statusText']),_0x24e965;}}catch(_0x264d24){const _0x2fdebb={};return _0x2fdebb['success']=![],_0x2fdebb[_0x37eb73(-0x1ce,-_0x221763._0x2e508a,-_0x221763._0x128603,-0x233)]=_0x37eb73(-0x233,-0x26e,-0x225,-_0x221763._0x23dc4f)+_0x32ebcb(0x10c,0xba,_0x221763._0x2ee0ad,0x184)+_0x264d24[_0x32ebcb(_0x221763._0x37bef8,0xf9,_0x221763._0x663115,0xe4)],_0x2fdebb;}}async[_0x148752(-0x187,-0xfc,-0x216,-0x11d)+'tories'](){const _0x139757={_0x2d4802:0x2a6,_0x190da1:0x1ed,_0x456ce0:0x33c,_0x3719d8:0x30c,_0x3de972:0x29c,_0x22ef79:0x2f6,_0x4c1a80:0x3e2,_0x5de725:0x1e4,_0xe772a2:0x24a,_0x2efd0f:0x1fa,_0x305603:0x3ba,_0x44d257:0x45b,_0x5dd40b:0x348,_0x477335:0x1c5,_0x2c43e0:0x2d3,_0x3783fa:0x33f,_0xbc7f52:0x3d0,_0xfde234:0x300,_0xcd967f:0x333,_0x538113:0x336,_0x1eeabc:0x163,_0x4b141c:0x251,_0x30cea8:0x19e,_0x37fcd3:0x3a2,_0x426f6c:0x3d1,_0x16c3fb:0x30e,_0x1725fa:0x386,_0x1bc48f:0x1d9,_0x3e75f2:0x20e,_0x103f13:0x1de,_0x1aa0df:0x264,_0x37d077:0x2d8,_0x3411ce:0x21f,_0x33d24e:0x2b7,_0x21ea45:0x257,_0x56a383:0x2c9,_0x42bf6e:0x209,_0x78c74a:0x21b,_0x4c5270:0x175,_0x270095:0x1fe,_0x151878:0x3c3,_0x4cc176:0x355,_0x203e50:0x3d1,_0x45bed2:0x46f,_0x18cc7a:0x46c,_0x50cc91:0x447,_0x8dedf:0x483,_0x31aa92:0x33e,_0x3162d1:0x267,_0x2a0f71:0x1cb,_0x248f89:0x20e,_0x90001e:0x412,_0x47fde5:0x4a3,_0x35a28d:0x21e,_0xb6e9be:0x30d,_0x1355ca:0x2c5,_0x11062c:0x29a,_0xa0fb4:0x406,_0x38fb70:0x3d8,_0x51a6c2:0x1b9,_0x45f3d6:0x249,_0xc72e6a:0x49c,_0x33be05:0x3b1,_0x1fd078:0x434,_0x1ef48b:0x27a,_0x263dc5:0x458,_0x32955c:0x4a6,_0x1249e3:0x26f,_0x427568:0x2b1,_0x32e3e8:0x232,_0x349150:0x1c6,_0x1af64d:0x226,_0x5aa7c8:0x359,_0x22f770:0x2fc,_0x566994:0x2bb,_0x68b078:0x2b0,_0x3b6913:0x208,_0x4be90d:0x24e,_0x2df41e:0x297,_0x19d3f7:0x34f,_0x51b754:0x390,_0x26bf19:0x376,_0x2d77f2:0x335,_0x422bac:0x39c,_0x19a598:0x2d5,_0x24dcb9:0x2be,_0x746726:0x30f,_0x2500eb:0x2f0,_0x163648:0x253,_0x1ff51e:0x1ed,_0x35ea8c:0x34a,_0x46e9be:0x2df,_0x33bb8d:0x2f3,_0xdb7956:0x22e,_0x26dca9:0x434,_0x22ea42:0x439,_0x364298:0x2a5,_0x20e4fb:0x17a,_0x5bd434:0x1f7,_0x1f0061:0x35e,_0x1f5fe1:0x34d,_0x2dd855:0x3a0,_0x3a8646:0x462,_0x2ce21a:0x43d,_0xb4b110:0x31c,_0x91634f:0x435,_0x5f500d:0x2e9,_0x3708af:0x2bc,_0x3a5d7a:0x204,_0x498eee:0x2ac,_0x18df7c:0x311,_0x162924:0x2b2,_0x13f8f7:0x2c3,_0x25fcff:0x28f,_0x5bac7b:0x384,_0x270b61:0x287,_0x496342:0x314,_0x5b5cc7:0x351,_0x48e5ce:0x2e5,_0x5eb2d6:0x434,_0x306931:0x26d,_0x4602df:0x40d,_0x3e1a59:0x40f,_0x3adcf7:0x434,_0x461eda:0x350,_0x4dd7dc:0x37c,_0x512c0a:0x37b,_0x1b4ac1:0x23f,_0x88048f:0x343,_0xc7b387:0x2cd,_0x2e2c09:0x28f,_0x8bb319:0x206,_0x2c9844:0x26e,_0x1d0be0:0x1d6,_0x238052:0x1f1,_0x24673b:0x2c6,_0xb9954b:0x2f4,_0x4070e6:0x2fa,_0x25c584:0x329,_0x2210d5:0x2fb,_0x428486:0x1c3,_0x4ee44f:0x250,_0x364574:0x3e9,_0x1aeb61:0x3d7,_0x44fe62:0x332,_0x221524:0x311,_0x3fe40a:0x281,_0x4b49c3:0x1ba,_0x2fce97:0x221,_0x1019d7:0x269,_0x111272:0x22b,_0x1efaa5:0x2d8,_0x35a3b1:0x35d,_0x3bb229:0x3b6,_0x5783c6:0x443,_0x47eed5:0x3c6,_0x33441a:0x313,_0x156afd:0x340,_0x154046:0x2fd,_0x45cb70:0x261,_0x1c98a4:0x211,_0x20c0d9:0x259,_0x5b91d3:0x32f,_0x53ffb9:0x222,_0x2a7037:0x3b8,_0x594049:0x3e1,_0x5c16d6:0x4d5,_0x485c24:0x463,_0x2b8a8a:0x42e,_0xc8752d:0x444,_0x5a000a:0x3fb},_0x2ba4cd={_0x172afb:0x1eb,_0x2f4d08:0x1c},_0x4914de={_0x5e192f:0x77,_0x2fd123:0x67},_0x5ea36d={'cQdlw':_0x18a9b1(0x37b,0x2e0,_0x139757._0x2d4802,0x2ff),'AUTTS':'project','DxMDr':function(_0x16defc,_0x2a03eb){return _0x16defc!==_0x2a03eb;},'tvnre':_0x18a9b1(0x325,0x338,0x2f9,0x2ce),'DdmiY':function(_0x418b2a,_0x53a63d,_0x1db489){return _0x418b2a(_0x53a63d,_0x1db489);},'YSdYs':_0x18a9b1(0x198,0x27a,0x24e,_0x139757._0x190da1)+'n/json','iFiPH':function(_0x2f2a0c,_0x486ba5){return _0x2f2a0c===_0x486ba5;},'qyNjG':'DretV','ikZYa':_0x18a9b1(_0x139757._0x456ce0,_0x139757._0x3719d8,_0x139757._0x3de972,_0x139757._0x22ef79),'NwCRY':_0x28c2d6(0x372,0x44b,0x404,_0x139757._0x4c1a80)+'/','WKtLw':_0x18a9b1(_0x139757._0x5de725,_0x139757._0xe772a2,0x1af,_0x139757._0x2efd0f),'frdmZ':'hLcHA','AWzDI':_0x28c2d6(0x418,_0x139757._0x305603,0x3e5,_0x139757._0x44d257)+_0x18a9b1(0x37a,0x308,_0x139757._0x5dd40b,0x305)+_0x18a9b1(0x217,_0x139757._0x477335,0x26a,0x22f)+'ct'};function _0x28c2d6(_0x54defd,_0x161812,_0x1b97a0,_0xf0257d){return _0x148752(_0x1b97a0-0x55b,_0x161812-_0x4914de._0x5e192f,_0x1b97a0-_0x4914de._0x2fd123,_0xf0257d);}const {token:_0x72d983}=await this[_0x28c2d6(_0x139757._0x2c43e0,0x361,_0x139757._0x3783fa,_0x139757._0xbc7f52)+_0x18a9b1(_0x139757._0xfde234,_0x139757._0xcd967f,_0x139757._0x538113,0x2c3)](),_0x3bce04=[],_0x1c2434=_0x18a9b1(_0x139757._0x1eeabc,_0x139757._0x4b141c,_0x139757._0x30cea8,0x1ff)+'v.azure.co'+'m/'+this[_0x28c2d6(0x3b1,_0x139757._0x37fcd3,0x3b4,0x429)+'on']+(_0x28c2d6(0x3d8,_0x139757._0x426f6c,0x3c1,0x32e)+_0x18a9b1(0x248,0x2c4,0x2c2,0x2a2)+_0x28c2d6(0x332,_0x139757._0x16c3fb,_0x139757._0x1725fa,0x3f6)+'1'),_0x1d41c6=await _0x5ea36d[_0x18a9b1(_0x139757._0x1bc48f,_0x139757._0x3e75f2,0x1f7,0x237)](fetch,_0x1c2434,{'headers':{'Authorization':_0x18a9b1(_0x139757._0x103f13,0x26a,_0x139757._0x1aa0df,0x266)+_0x72d983,'Accept':_0x5ea36d[_0x18a9b1(_0x139757._0x37d077,_0x139757._0x3411ce,_0x139757._0xe772a2,_0x139757._0x33d24e)]}});if(!_0x1d41c6['ok']){const _0x568f4c=await _0x1d41c6[_0x18a9b1(_0x139757._0x21ea45,0x268,0x2e9,_0x139757._0x56a383)]()[_0x18a9b1(_0x139757._0x42bf6e,_0x139757._0x78c74a,_0x139757._0x4c5270,_0x139757._0x270095)](()=>({}));throw new Error('Failed\x20to\x20'+_0x28c2d6(_0x139757._0x151878,_0x139757._0x4cc176,_0x139757._0x203e50,0x34a)+_0x28c2d6(0x460,0x42a,_0x139757._0x45bed2,_0x139757._0x18cc7a)+_0x1d41c6[_0x28c2d6(0x4b7,0x460,_0x139757._0x50cc91,_0x139757._0x8dedf)]+'\x20-\x20'+(_0x568f4c[_0x18a9b1(_0x139757._0x31aa92,0x278,_0x139757._0x3162d1,0x2fb)]||_0x1d41c6[_0x18a9b1(_0x139757._0x2a0f71,0x189,0x1ea,_0x139757._0x248f89)]));}const _0x2ed645=await _0x1d41c6[_0x28c2d6(0x442,0x3d2,_0x139757._0x90001e,_0x139757._0x47fde5)]();function _0x18a9b1(_0x2c2cff,_0x1ff0ad,_0x1223be,_0x38b173){return _0x4c8256(_0x2c2cff-_0x2ba4cd._0x172afb,_0x1ff0ad,_0x1223be-0x1ab,_0x38b173-_0x2ba4cd._0x2f4d08);}for(const _0x22228b of _0x2ed645[_0x18a9b1(_0x139757._0x35a28d,_0x139757._0xb6e9be,_0x139757._0x1355ca,_0x139757._0x11062c)]){if(_0x5ea36d[_0x28c2d6(_0x139757._0xa0fb4,0x36c,_0x139757._0x38fb70,0x407)](_0x18a9b1(_0x139757._0x51a6c2,0x215,_0x139757._0x45f3d6,0x240),_0x5ea36d['qyNjG']))_0x18cacd[_0x28c2d6(_0x139757._0xc72e6a,0x4a8,0x42e,0x3b3)]({'name':_0x19b71e[_0x28c2d6(_0x139757._0x33be05,0x4aa,_0x139757._0x1fd078,0x4c6)],'full_name':_0x3966f6[_0x18a9b1(0x29b,_0x139757._0x1ef48b,0x290,0x2eb)]+'/'+_0x14431e['name'],'project':_0x5b0bd1[_0x28c2d6(0x45a,0x4cd,0x434,0x426)],'clone_url':_0x4f5792['remoteUrl'],'default_branch':_0x538799[_0x28c2d6(_0x139757._0x263dc5,_0x139757._0x32955c,0x464,0x488)+_0x18a9b1(_0x139757._0x1249e3,_0x139757._0x427568,0x1da,_0x139757._0x32e3e8)]?.[_0x18a9b1(_0x139757._0x349150,_0x139757._0x1af64d,0x26c,0x24b)](_0x18a9b1(0x2fc,_0x139757._0x5aa7c8,_0x139757._0x22f770,_0x139757._0x566994)+'/','')||_0x5ea36d[_0x18a9b1(_0x139757._0x56a383,0x2f4,0x245,0x287)],'description':_0x2742c5[_0x18a9b1(_0x139757._0x68b078,_0x139757._0x3b6913,_0x139757._0x4be90d,_0x139757._0x2df41e)+'n'],'descriptionSource':_0x5ea36d[_0x28c2d6(_0x139757._0x19d3f7,0x3c1,_0x139757._0x51b754,_0x139757._0x26bf19)],'private':_0x5ea36d[_0x28c2d6(_0x139757._0x2d77f2,0x332,_0x139757._0x422bac,0x406)](_0x2d7edf[_0x18a9b1(_0x139757._0x19a598,_0x139757._0x24dcb9,_0x139757._0x746726,_0x139757._0x2500eb)],_0x5ea36d[_0x18a9b1(_0x139757._0x163648,_0x139757._0x1ff51e,0x1fa,0x1f1)])});else{const _0x48889c='https://de'+_0x18a9b1(0x357,_0x139757._0x35ea8c,0x2c1,_0x139757._0x46e9be)+'m/'+this[_0x18a9b1(0x230,_0x139757._0x33bb8d,_0x139757._0xdb7956,0x26b)+'on']+'/'+_0x22228b[_0x28c2d6(0x446,0x3f6,_0x139757._0x26dca9,_0x139757._0x22ea42)]+(_0x18a9b1(0x29c,0x34b,_0x139757._0x364298,_0x139757._0x1355ca)+_0x18a9b1(_0x139757._0x20e4fb,0x188,0x1b3,_0x139757._0x5bd434)+'ies?api-ve'+'rsion=7.1');try{const _0x593df9={};_0x593df9[_0x28c2d6(_0x139757._0x1f0061,0x331,_0x139757._0x1f5fe1,_0x139757._0x2dd855)+_0x28c2d6(_0x139757._0x3a8646,0x446,0x3e2,0x347)]=_0x28c2d6(_0x139757._0x2ce21a,_0x139757._0xb4b110,0x3af,_0x139757._0x91634f)+_0x72d983,_0x593df9['Accept']=_0x28c2d6(_0x139757._0x33be05,_0x139757._0x5f500d,0x336,_0x139757._0x3708af)+'n/json';const _0x33b871={};_0x33b871['headers']=_0x593df9;const _0x25d815=await _0x5ea36d[_0x18a9b1(_0x139757._0x3a5d7a,0x1af,_0x139757._0x498eee,0x237)](fetch,_0x48889c,_0x33b871);if(_0x25d815['ok']){if(_0x5ea36d[_0x18a9b1(_0x139757._0x18df7c,_0x139757._0x162924,_0x139757._0x13f8f7,_0x139757._0x25fcff)](_0x5ea36d[_0x28c2d6(0x2e7,0x3e9,_0x139757._0x5bac7b,0x37f)],_0x18a9b1(_0x139757._0x1355ca,_0x139757._0x270b61,_0x139757._0x496342,0x2f6))){const _0x53193a=await _0x25d815['json']();for(const _0x2b36cd of _0x53193a['value']){_0x3bce04[_0x18a9b1(0x2b6,_0x139757._0x5b5cc7,0x29d,_0x139757._0x48e5ce)]({'name':_0x2b36cd[_0x28c2d6(0x43a,0x4ac,_0x139757._0x5eb2d6,0x428)],'full_name':_0x22228b['name']+'/'+_0x2b36cd[_0x18a9b1(_0x139757._0x306931,_0x139757._0x163648,0x2f5,0x2eb)],'project':_0x22228b[_0x28c2d6(_0x139757._0x4602df,_0x139757._0x3e1a59,_0x139757._0x3adcf7,0x45a)],'clone_url':_0x2b36cd['remoteUrl'],'default_branch':_0x2b36cd[_0x18a9b1(0x282,_0x139757._0x461eda,_0x139757._0x456ce0,0x31b)+_0x28c2d6(_0x139757._0x4dd7dc,0x3b1,_0x139757._0x512c0a,_0x139757._0x22f770)]?.[_0x18a9b1(_0x139757._0x1b4ac1,0x26e,0x220,0x24b)](_0x5ea36d[_0x18a9b1(0x2ad,0x35b,_0x139757._0x88048f,_0x139757._0xc7b387)],'')||_0x5ea36d[_0x18a9b1(0x2bb,_0x139757._0x2e2c09,_0x139757._0x8bb319,0x287)],'description':_0x22228b['descriptio'+'n'],'descriptionSource':_0x5ea36d[_0x18a9b1(0x2c4,0x21b,0x1f1,0x247)],'private':_0x22228b['visibility']!==_0x5ea36d[_0x18a9b1(0x184,_0x139757._0x2c9844,_0x139757._0x1d0be0,_0x139757._0x238052)]});}}else{const _0x5ded7a={};return _0x5ded7a[_0x18a9b1(0x358,_0x139757._0x24673b,0x312,_0x139757._0xb9954b)]=![],_0x5ded7a[_0x18a9b1(0x2da,_0x139757._0x4070e6,_0x139757._0x25c584,_0x139757._0x2210d5)]=_0x18a9b1(0x2a7,_0x139757._0x428486,0x1dc,_0x139757._0x4ee44f)+_0x28c2d6(_0x139757._0x364574,_0x139757._0x26bf19,_0x139757._0x1aeb61,0x42b)+_0x18a9b1(0x1fe,_0x139757._0x13f8f7,0x1ff,0x28c)+this['name']+(_0x18a9b1(_0x139757._0x44fe62,_0x139757._0x3de972,0x2f6,0x30b)+_0x18a9b1(0x294,_0x139757._0x221524,_0x139757._0x3fe40a,0x301)+_0x18a9b1(_0x139757._0x4b49c3,_0x139757._0x2fce97,_0x139757._0x1019d7,_0x139757._0x111272)+'e:\x20')+this[_0x18a9b1(0x339,0x288,0x24d,_0x139757._0x1efaa5)+_0x28c2d6(0x2ef,0x32d,_0x139757._0x35a3b1,0x2f5)],_0x5ded7a;}}}catch(_0x20351c){if(_0x5ea36d['DxMDr'](_0x5ea36d['WKtLw'],_0x5ea36d[_0x28c2d6(_0x139757._0x3bb229,_0x139757._0xc72e6a,_0x139757._0x5783c6,_0x139757._0x47eed5)])){const _0x545741={};_0x545741['project']=_0x22228b[_0x28c2d6(0x3d0,0x480,0x434,0x43f)],_0x545741[_0x18a9b1(0x38c,0x292,0x2a1,_0x139757._0x33441a)]=_0x20351c['message'],_0x1af955['warn'](_0x5ea36d[_0x28c2d6(0x376,_0x139757._0x156afd,0x339,_0x139757._0x456ce0)],_0x545741);}else throw new _0x5e2e31(_0x18a9b1(0x2d6,_0x139757._0x154046,_0x139757._0x45cb70,0x29c)+_0x28c2d6(0x4a2,0x3d1,0x41b,0x3ce)+_0x18a9b1(_0x139757._0x1c98a4,_0x139757._0x20c0d9,_0x139757._0x5b91d3,0x2a8)+'rtificate\x20'+_0x18a9b1(_0x139757._0x53ffb9,0x231,0x273,0x24a)+this[_0x28c2d6(_0x139757._0x2a7037,0x329,0x3a0,_0x139757._0x594049)+_0x28c2d6(0x455,_0x139757._0x5c16d6,_0x139757._0x485c24,_0x139757._0x2b8a8a)]+':\x20'+_0x21a8c4[_0x28c2d6(0x408,0x421,_0x139757._0xc8752d,_0x139757._0x5a000a)]);}}}return _0x3bce04;}['getPublicI'+_0x148752(-0xfa,-0xad,-0x6a,-0xd0)](){const _0x166f38={_0x16193a:0x203,_0xda88c0:0x209,_0x24a8ef:0x17e,_0xe746d6:0x11d,_0xf4df2f:0x7a,_0x3e1c23:0xfb,_0x40f9e5:0x12a,_0x525648:0x124,_0x3660a:0xfe,_0x22293d:0x246,_0x5d310e:0x255,_0xff316b:0x296,_0x1fdfad:0x314,_0x434768:0x2aa,_0x2f0c15:0x2dc},_0xa47426={_0x3e273e:0x1df,_0x3bf371:0x15,_0xbbd0e5:0xc},_0x34f878={_0x160fad:0xf3};function _0x560d63(_0x3441c7,_0x28f116,_0x589236,_0x4fda89){return _0x4c8256(_0x3441c7-0xe3,_0x28f116,_0x589236-0x193,_0x589236- -_0x34f878._0x160fad);}function _0x53b3c9(_0x10e0a7,_0x213cfd,_0x51eb56,_0x342631){return _0x4c8256(_0x10e0a7-_0xa47426._0x3e273e,_0x10e0a7,_0x51eb56-_0xa47426._0x3bf371,_0x213cfd-_0xa47426._0xbbd0e5);}return{...super['getPublicI'+_0x560d63(_0x166f38._0x16193a,0x182,_0x166f38._0xda88c0,_0x166f38._0x24a8ef)](),'organization':this[_0x53b3c9(0x282,0x25b,0x1f5,0x291)+'on'],'tenant_id':this[_0x560d63(_0x166f38._0xe746d6,_0x166f38._0xf4df2f,_0x166f38._0x3e1c23,_0x166f38._0x40f9e5)],'client_id':this[_0x560d63(0x200,_0x166f38._0x525648,0x197,_0x166f38._0x3660a)],'auth_method':this[_0x53b3c9(0x285,0x274,0x275,0x278)],'created_at':this['config'][_0x53b3c9(_0x166f38._0x22293d,_0x166f38._0x5d310e,0x272,0x27e)],'created_by':this[_0x53b3c9(_0x166f38._0xff316b,0x2dc,_0x166f38._0x1fdfad,0x324)][_0x53b3c9(0x367,0x2de,_0x166f38._0x434768,_0x166f38._0x2f0c15)]};}['clearCache'](){const _0x595dbe={_0x324008:0x165,_0x596027:0x19e,_0x8075a:0xc5,_0x31f70c:0x21f,_0x285aca:0x279,_0x2611bd:0x287,_0x3e167e:0x307,_0x27e58a:0x2bf},_0x3a5f3d={_0x1c659d:0xcd},_0x42b5f9={_0x1a5017:0x346,_0x4ac16f:0x1c9},_0x77b82d=(this[_0x59866a(-0x21a,-0x2aa,-0x2a1,-0x270)]||_0x4d28ed(_0x595dbe._0x324008,0x14d,_0x595dbe._0x596027,_0x595dbe._0x8075a))+':'+this[_0x4d28ed(0x200,_0x595dbe._0x31f70c,_0x595dbe._0x285aca,0x190)];function _0x4d28ed(_0x3c2aa1,_0x513cc0,_0x112914,_0x101f96){return _0x148752(_0x513cc0-_0x42b5f9._0x1a5017,_0x513cc0-_0x42b5f9._0x4ac16f,_0x112914-0x1af,_0x101f96);}function _0x59866a(_0x55b4a1,_0x3d9142,_0x28a4b6,_0x367463){return _0x148752(_0x367463- -0x157,_0x3d9142-0x81,_0x28a4b6-_0x3a5f3d._0x1c659d,_0x55b4a1);}tokenCache[_0x59866a(-_0x595dbe._0x2611bd,-_0x595dbe._0x3e167e,-0x2ee,-_0x595dbe._0x27e58a)](_0x77b82d);}}export function clearAllAzureDevOpsTokenCache(){const _0x49c3a={_0x542e16:0x2b6,_0x506e16:0x352};function _0x4269d1(_0x1d3335,_0x2bc429,_0x10215c,_0x5b7c16){return _0x148752(_0x1d3335-0x473,_0x2bc429-0x84,_0x10215c-0x110,_0x2bc429);}tokenCache[_0x4269d1(_0x49c3a._0x542e16,_0x49c3a._0x506e16,0x259,0x2f8)]();}export function isValidGuid(_0x3143d4){const _0x46ba18={_0xef28d7:0x3ae,_0x34526a:0x332},_0x3d1797={_0x3ac548:0x167,_0x1e7a44:0x147};function _0x3b505e(_0x3814e1,_0x39bf05,_0x488665,_0x61cf7c){return _0x4c8256(_0x3814e1-0x121,_0x61cf7c,_0x488665-_0x3d1797._0x3ac548,_0x39bf05-_0x3d1797._0x1e7a44);}return/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i[_0x3b505e(0x400,_0x46ba18._0xef28d7,0x346,_0x46ba18._0x34526a)](_0x3143d4);}
|
|
1
|
+
function _0x50ddaa(_0x2cd71d,_0x2d564e,_0x4d75f7,_0x2b1cf5){return _0x3f8e(_0x2cd71d- -0x115,_0x2d564e);}(function(_0x23ea8c,_0x20238d){const _0x148b0b={_0x884094:0x320,_0x201870:0x365,_0x3d7a88:0x351,_0x3ae7ee:0x3fd,_0x18ed08:0x465,_0x1bf25:0x4c1,_0x3bf55d:0x500,_0x555c98:0x4b7,_0x2c88ce:0x21a,_0x31c9d3:0x246,_0x3a51f9:0x376,_0xda1e8f:0x2c8,_0x302384:0x317,_0x2712e1:0x425,_0x224598:0x49a,_0x1e86f4:0x4ac,_0x19772f:0x2f0,_0x3b14d3:0x26f,_0x3f8446:0x22f,_0x41f933:0x2a6,_0x58c344:0x333,_0x255369:0x335,_0x1ee65b:0x42c,_0x507122:0x3db,_0x15e4ff:0x432,_0x67490d:0x43e},_0x3206cc={_0x20466e:0x21b};function _0x16b86d(_0x2224ca,_0x2e9306,_0x2a39df,_0xa1df2d){return _0x3f8e(_0xa1df2d-_0x3206cc._0x20466e,_0x2224ca);}const _0x171858=_0x23ea8c();function _0x52e255(_0xfe4ab6,_0xb53541,_0x4bff4c,_0x3731b1){return _0x3f8e(_0xfe4ab6-0x54,_0x3731b1);}while(!![]){try{const _0x4c860a=parseInt(_0x52e255(_0x148b0b._0x884094,_0x148b0b._0x201870,_0x148b0b._0x3d7a88,0x398))/(0x24b8+-0x957+-0x490*0x6)+parseInt(_0x16b86d(0x435,0x4a5,_0x148b0b._0x3ae7ee,_0x148b0b._0x18ed08))/(-0x2*0x6b2+-0x55e+0x12c4)*(-parseInt(_0x16b86d(0x55e,0x505,0x4c4,_0x148b0b._0x1bf25))/(0x1cf1+-0x1*0x16d9+-0x615))+parseInt(_0x16b86d(_0x148b0b._0x3bf55d,_0x148b0b._0x555c98,0x4ea,0x51c))/(-0x3*-0x819+-0x1d62+0x1*0x51b)*(parseInt(_0x52e255(0x250,_0x148b0b._0x2c88ce,_0x148b0b._0x31c9d3,0x209))/(-0x132f+0x1ddf+0x1*-0xaab))+parseInt(_0x52e255(0x369,_0x148b0b._0x3a51f9,_0x148b0b._0xda1e8f,_0x148b0b._0x302384))/(-0x1*-0x199+0x1*0x14f9+-0x168c)+-parseInt(_0x16b86d(_0x148b0b._0x2712e1,_0x148b0b._0x224598,_0x148b0b._0x1e86f4,0x47f))/(0x2*0x1144+0x16a+-0x23eb)*(parseInt(_0x52e255(_0x148b0b._0x19772f,0x2ec,0x384,_0x148b0b._0x3b14d3))/(-0xcad+-0x85*0x1d+0x58e*0x5))+parseInt(_0x52e255(0x247,0x215,_0x148b0b._0x3f8446,_0x148b0b._0x41f933))/(-0xa12+-0x3*0x4eb+0x18dc)*(-parseInt(_0x52e255(0x36d,_0x148b0b._0x58c344,0x36b,0x390))/(0x14*0x10d+-0x242*-0xf+-0x36d8))+parseInt(_0x52e255(_0x148b0b._0x255369,0x35f,0x2b1,0x36e))/(0x1*-0xf51+-0x4f*-0x27+0x353)*(parseInt(_0x16b86d(_0x148b0b._0x1ee65b,_0x148b0b._0x507122,_0x148b0b._0x15e4ff,_0x148b0b._0x67490d))/(-0x15da+-0x1*0xa61+0x1*0x2047));if(_0x4c860a===_0x20238d)break;else _0x171858['push'](_0x171858['shift']());}catch(_0x314568){_0x171858['push'](_0x171858['shift']());}}}(_0x3b41,0x70240+0x33f2b+0x22b*-0x2dd));import{GitProvider}from'./provider-interface.js';import _0x31ba4c from'jsonwebtoken';import _0x8a9d56 from'crypto';function _0x3f8e(_0x1d9396,_0x974673){_0x1d9396=_0x1d9396-(0x2*-0x97a+0xa*-0x185+-0xd6*-0x2b);const _0x2118ab=_0x3b41();let _0x490fb1=_0x2118ab[_0x1d9396];if(_0x3f8e['FqAqgc']===undefined){var _0x22e423=function(_0x4ba3fd){const _0x57b9b7='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x263ac1='',_0x308a87='';for(let _0x2922d3=0x167f*0x1+0x4f1+-0x1b7*0x10,_0x51c41a,_0x137d8b,_0x339555=-0x13ad+0x2626+0x1*-0x1279;_0x137d8b=_0x4ba3fd['charAt'](_0x339555++);~_0x137d8b&&(_0x51c41a=_0x2922d3%(-0x875+-0x1*0x5ed+0x733*0x2)?_0x51c41a*(0xaee+0x2057+-0x2b05)+_0x137d8b:_0x137d8b,_0x2922d3++%(-0x3*0x595+-0x2212+-0x743*-0x7))?_0x263ac1+=String['fromCharCode'](-0x2511+-0xf93+0x35a3&_0x51c41a>>(-(-0x4*-0x7b7+-0x209f+0x1c5)*_0x2922d3&-0x7*0x3bf+0xd1b+0xd24)):0xf*0x15d+0x22d6+-0x3749*0x1){_0x137d8b=_0x57b9b7['indexOf'](_0x137d8b);}for(let _0x3af215=-0x3*0x24d+0x274+0x473,_0x3ed101=_0x263ac1['length'];_0x3af215<_0x3ed101;_0x3af215++){_0x308a87+='%'+('00'+_0x263ac1['charCodeAt'](_0x3af215)['toString'](-0x248f+0x2684+0x1e5*-0x1))['slice'](-(0x1ff6+-0x6e9+-0x190b));}return decodeURIComponent(_0x308a87);};_0x3f8e['HfgBqF']=_0x22e423,_0x3f8e['WrfFnX']={},_0x3f8e['FqAqgc']=!![];}const _0x1c2d7d=_0x2118ab[-0xd6b+-0xe95+0x1c00],_0x5df2b8=_0x1d9396+_0x1c2d7d,_0xc88c6a=_0x3f8e['WrfFnX'][_0x5df2b8];return!_0xc88c6a?(_0x490fb1=_0x3f8e['HfgBqF'](_0x490fb1),_0x3f8e['WrfFnX'][_0x5df2b8]=_0x490fb1):_0x490fb1=_0xc88c6a,_0x490fb1;}function _0x3b41(){const _0x40e697=['yxrL','sKTnD2y','zxrOB2q6ia','zxrgAwXL','ywLUigeGDMfSAq','r2Put0u','wezwsLa','EeXXreW','AKLWvLy','ierLDK9WCYbJBa','ywXNB3jPDgHT','C2HHmq','zwn0CW','Be1jwe0','x3bHDgGGy29UzG','AMvJDhm/yxbPlq','BMzPz3vYzwq','Ahr0Chm6lY9Kzq','yMfZzty0DxjS','z3jHBNrFDhLWzq','t3bZihrVA2vUia','C3bSAxq','Ec1Hy2nLC3mTDa','iIbOyxmGAw52yq','D2L0AcbJBgLLBG','uMrgseW','EuzUANK','x2DLBMvYyxrLqW','igzHAwXLzdOG','y2XPzw50x2fZCW','y29T','vgn5vLK','BI9QC29U','y3jLyxrLzf9IEq','BwvZC2fNzq','wfPRqLy','qxLmthK','EKD0EKK','BMCGy2vYDgLMAq','AxrOu2vJCMv0','mZi0mduZnNnxzNb1uq','C3rHDhvZvgv4Da','BMfTzq','AxHiDKG','qK9zq1K','u1P2u1K','BLHvsu0','l29HDxrOmI92mG','z0vhuLK','Ahr0Chm6lY94lq','mtu2v0zPqMrX','CcbJCMvKzw50Aq','Cuz1u3i','uvf6u2S','y2XPzw50x2LK','uMrnBMC','zxj0Aw9Ux3r5Ca','DhndB25MAwD1CG','EMzHCfO','AgvHzgvYCW','Dg9Rzw4','l19HCgLZl2DPDa','ief6DxjLierLDG','ChmGChjVDMLKzq','A21WB0u','ztOG','u2nkwee','zxrFCgf0AcbJBW','z2v0','zxHWAxjLC19PBG','y2XPzw50x2nYzq','y2vYDgLMAwnHDa','yxjLCG','q29UBMvJDgLVBG','z2LUlM1Py3jVCW','zuzPBgu','ywXN','qvrMBgi','C3vJy2vZC2z1Ba','BgLZDfjLCg9ZAq','A2vU','q2DIyNG','Ahr0Chm6lY9SBW','EeDRBg8','zxj0Aw9U','C3vJy2vZCW','tKLkyuK','Ahr0Chm6lY9HCa','mJCWmMPywMX5wG','BxfLDeK','DxnLCG','zw52ugf0Aa','wg5js1i','BMzV','vxnPBMCGy2fJAa','zv9WyxrO','zNjVBq','BM93','z2v0uhvIBgLJsq','y29UzMLN','z2v0qxv0AgvUDa','Dg9YAwvZ','y2XLyxjdywnOzq','zuTmsu0','BgLZDcbYzxbVCW','y2XPzw50u2vJCG','C3rHDhvZ','lJaVDg9Rzw4','s1bADfq','mtfSswL1Avm','BhLdugW','CMvMCY9OzwfKCW','uMvXDwvZDgLUzW','BM1LBNqGC2v0Da','DxrOigLZig5VDa','uLmYnty','uK1Ly3y','l19HCgLZl3bYBW','DhjPBq','yxjHBxm6B2f1Da','ihjLCg8','ANnVBG','DI5HENvYzs5JBW','DfDTA2O','BLfozKO','CMv0x3bHDgG','DhbKz1a','AwvZp2fWAs12zq','DxjUoMLLDgy6Ca','Aw5NCY4','uvPXzMq','vwjJCMK','zxzpChmGDg9Rzq','y291BNq','ywnJzxnZlxrVAW','ugHcr2q','CMLWDgLVBG','y29UzMLNDxjLza','yxbW','Dg90ywXFChjVAG','ChvIBgLJ','mtu3odHpA25JD1u','DcbMCM9Tia','zgvSzxrL','zNjVBsa','AM9PBG','ihbYB2PLy3qOCW','y2f0y2G','z2v0q3jLzgvUDa','C2v0','ChvZAa','zgvK','wfnJs0m','CNnPB249nY4X','CgfZC3DVCMq','qxP1CMuGrgv2tW','BgLLBNrFC2vJCG','DMvYC2LVBJ03lG','B3D2D20','B2z0B25SAw5LlG','C2vJCMv0','mZa4oty5nhLWzxfRsG','BgLLBNrbC3nLCG','vLrtuKS','r2DvuNC','nZC2mJCWt2XKCfzb','ig5LDYbbENvYzq','zw46ia','Bg9Nz2vY','AerzzK0','ierLDK9WCYbJzq','C2vJCMv0igzPBa','AM5ov2S','D2fYBG','vvLQtwS','igzVCIbWCM9Qzq','wwLtDw8','AwD1CMvK','CKTvwe0','DMfSDwu','CLbovhm','y3jLyxrLzf9HDa','ChmGDxnLCIbpqq','qMP6vMO','ChmGDg9Rzw4GBW','iIbPCYbTAxnZAq','CMPUEwK','BMDLihrOzsbYzq','t3bZignSAwvUDa','D2L0AcbJzxj0Aq','DxnLCM5HBwu','AxrOq2vYDgLMAq','qMvHCMvYia','ywnJzxnZ','ue9tva','thnnA20','AdPJBgLLBNqTyq','z2vUzxjHDgvuBW','y2TuvgG','rMTYs0m','DgvZDenVBM5LyW','C2vJCMv0C1bHDa','lMnVBs8UzgvMyq','yKHlt3q','zxHWAxjLC19HDa','DwX0','zxjYB3jFzgvZyW','owrbvKzfqG','q2Tdt2i','y2HLy2TtzwnYzq','iIbOyxmGBM8GyW','wvb1CLi','Dg9Rzw5vCMW','t3f3s0q','r0ryyu0','BMCGy2XPzw50ia','mtb6C3znzvO','CMvHzcbbENvYzq','zMXVB3i','BvDSsfe','CYbTB2rLigLUia','uuTktgG','DxrMltG','y2f0zq','ChjVDMLKzxi','Dfvzvvq','AwnHDgvKvxjS','msyKDg9Wpte','B3jNyw5PEMf0Aq','DgvZDa','Dg9tDhjPBMC','CMvWBgfJzq','r2v0DgLUzYbHCa','BK9JEu8','ywnJzxnZx3rVAW','DxbKyxrL','Cgf0Ag5HBwu','Bwf0y2G','vhPOA0O','qKvKu0q','DgLVBG','EKXotxK','rgv2t3bZihrVAW','swvtv1O','uhP0zMq','r2vUzxjHDgLUzW','ChjVAMvJDa','zgvMyxvSDejYyq','B3i6ia','zwnYzxrZx3bHDa','ugvVu2W','B2TLBG','C2nVCgu','yxv0Ae1LDgHVza','zw46','nta3mZu2nhjjy0PfBa','y3rZoIa','s3fvAxa','s0TXueu','z2v0vgLTzq','y3jLyxrLsgfZAa','q2vYDgLMAwnHDa','Aw9U','zxjYB3i','z2XVyMfS','y2XPzw50swq','yMfZzty0','C3nLCNrPB24TDa','yxv0Af9TzxrOBW','AhLJsfy','DMLZAwjPBgL0Eq','y2rquLa','CNrPzMLJyxrLia','AcbJB25MAwD1CG','A2v5','BI94lxD3DY1MBW','BhKUiefJy2vZCW','ywXZigzVCIbbEG','yxbWBgLJyxrPBW','yNrHAw5Lza','q29UBMvJDgvKia','z2v0ief6DxjLia','C2vJCMv0C19Wyq','m3W2Fdr8n3W1Fa','CM0TDxjSzw5JBW','C2LNBG','CxnfseW','yxPktfu','rwHLALy','AgvHzgvY','AwfSC0zVCLjLCa','yKHXAvu','sufJBgS','EuHTD3C','nZCWnLH2y1vWBa','qxv0Ag9YAxPHDa','ic0G','u2Tdr0K','Dg9ju09tDhjPBG','zcbWCML2yxrLia','z1Ljz28','y2f0zsbMAwXLoG','BhfMyK4','swTyBfe','BYb1C2uGqxbWia','CYbUB3qGy29UDa','CMvTB3rLvxjS','t2rmwvq','y2XPzw50x3nLyW','B2T0D00','l3jLCg9ZAxrVCG','x2DLDfrVA2vUvW','mhWYFde','CIaI','zMz5D1i','Cg9ZAxrVCNKGDa','BMTjDgC','zgvZy3jPChrPBW','zxj0AwzPy2f0zq','DgvUyw50swq','n1DRBNH3sW','ierLDK9WCYb0BW','zgv0ywLSCW','zgvIDwC','y29TlW','igfZC2vYDgLVBG','u1vqs00','ihLLDcbPBxbSzq','vKXTyLK','Edv0','thfdzKu','D01VsgK','rMfPBgvKihrVia','yxvK','qM5hqxy','DgHLigvUDMLYBW'];_0x3b41=function(){return _0x40e697;};return _0x3b41();}import{promises as _0x154d98}from'fs';function _0x57d1e8(_0x3afd41,_0x195744,_0x977196,_0x173930){return _0x3f8e(_0x173930-0x2c8,_0x977196);}import _0x45ef5d from'path';import{logger as _0x346a99}from'../logger.js';const tokenCache=new Map(),TOKEN_REFRESH_BUFFER_MS=(-0x4*0x686+-0x1628+-0x3*-0x1017)*(0x1b1*0x11+0xa4b+-0x33c*0xc)*(-0x2153+-0x5ea+0xeb*0x2f),AZURE_DEVOPS_SCOPE=_0x57d1e8(0x52f,0x5b1,0x60f,0x593)+'p.vssps.vi'+'sualstudio'+_0x50ddaa(0xd9,0x49,0x6b,0x96)+_0x57d1e8(0x55f,0x4be,0x473,0x4b9),JWT_LIFETIME_SECONDS=(0x1fad+-0x331*0x5+0xfb3*-0x1)*(0x212b*-0x1+0x179a+0x9cd);export class AzureDevOpsProvider extends GitProvider{constructor(_0x1056da,_0x1b5365){const _0x11cddd={_0x71391e:0x61c,_0x1adb1d:0x64f,_0x59060b:0x606,_0x4a4d76:0x534,_0x456ce7:0x56e,_0x1715a1:0x3a0,_0xbd4e24:0x339,_0x38dd1c:0x580,_0x1aece7:0x5c8,_0x434e94:0x5a8,_0x1f3c18:0x301,_0x4acb7d:0x2e1,_0x3f8dae:0x35e,_0x302602:0x362,_0x10fee2:0x322,_0x58dfbc:0x612,_0x476472:0x5f8,_0x4fd6b6:0x31c,_0x132b29:0x37c,_0x199569:0x393,_0x3173c8:0x391,_0x134338:0x2f2,_0x145e80:0x388,_0x435a03:0x540,_0x3b9ca7:0x572,_0x31e05b:0x517,_0x1587e2:0x4e9,_0x38eea5:0x584,_0x234a40:0x576,_0x417c2f:0x4b0,_0x3e86cf:0x5b2,_0x4c0505:0x5c9},_0x2fa2f2={_0x12a0d0:0x1d0,_0x359e51:0x99},_0x200432={_0x5f1091:0x1b8,_0x56b2fd:0x3b,_0x1870fa:0x11d};function _0x1ed659(_0x441c58,_0x3e6d53,_0x245611,_0x2de2f1){return _0x50ddaa(_0x3e6d53-_0x200432._0x5f1091,_0x441c58,_0x245611-_0x200432._0x56b2fd,_0x2de2f1-_0x200432._0x1870fa);}const _0xa8545c={};function _0x99c82f(_0x48de18,_0x57e4c4,_0x79da2,_0x29bcc9){return _0x50ddaa(_0x57e4c4-0x434,_0x79da2,_0x79da2-_0x2fa2f2._0x12a0d0,_0x29bcc9-_0x2fa2f2._0x359e51);}_0xa8545c[_0x99c82f(_0x11cddd._0x71391e,0x5c8,_0x11cddd._0x1adb1d,0x60b)]=_0x99c82f(_0x11cddd._0x59060b,0x55e,_0x11cddd._0x4a4d76,_0x11cddd._0x456ce7)+_0x1ed659(_0x11cddd._0x1715a1,0x2ff,_0x11cddd._0xbd4e24,0x2ba);const _0x5d1654=_0xa8545c,_0x28fbe9=_0x5d1654[_0x99c82f(_0x11cddd._0x38dd1c,_0x11cddd._0x1aece7,0x600,0x66b)][_0x99c82f(0x5f6,_0x11cddd._0x434e94,0x5a1,0x5ae)]('|');let _0x440345=-0xc6+0x80b+-0x1*0x745;while(!![]){switch(_0x28fbe9[_0x440345++]){case'0':this['secretsPat'+'h']=_0x1056da[_0x1ed659(_0x11cddd._0x1f3c18,_0x11cddd._0x4acb7d,0x372,0x317)+'th'];continue;case'1':this[_0x1ed659(0x345,_0x11cddd._0x3f8dae,0x2d4,0x2c4)+_0x1ed659(0x33a,_0x11cddd._0x302602,0x32c,_0x11cddd._0x10fee2)]=_0x1056da[_0x99c82f(_0x11cddd._0x58dfbc,0x5da,0x603,_0x11cddd._0x476472)+_0x1ed659(_0x11cddd._0x4fd6b6,0x376,0x375,_0x11cddd._0x132b29)];continue;case'2':this[_0x1ed659(0x317,0x380,0x3d5,0x3f3)+'etFile']=_0x1056da[_0x1ed659(0x34a,0x2fb,_0x11cddd._0x199569,_0x11cddd._0x3173c8)+_0x1ed659(0x373,0x394,_0x11cddd._0x134338,_0x11cddd._0x145e80)];continue;case'3':super(_0x1056da,_0x1b5365);continue;case'4':this['tenantId']=_0x1056da['tenant_id'];continue;case'5':this[_0x99c82f(0x501,_0x11cddd._0x435a03,0x562,_0x11cddd._0x3b9ca7)]=_0x1056da[_0x99c82f(_0x11cddd._0x31e05b,0x54f,_0x11cddd._0x1587e2,_0x11cddd._0x38eea5)+'d']||'secret';continue;case'6':this[_0x99c82f(_0x11cddd._0x234a40,0x527,_0x11cddd._0x417c2f,0x48f)+'on']=_0x1056da['organizati'+'on'];continue;case'7':this[_0x99c82f(_0x11cddd._0x38dd1c,0x54c,_0x11cddd._0x3e86cf,0x4f5)]=_0x1056da[_0x99c82f(0x638,_0x11cddd._0x4c0505,0x643,0x5c6)];continue;}break;}}async[_0x57d1e8(0x467,0x4d5,0x523,0x4bd)+_0x50ddaa(0x198,0x237,0xf2,0x1f3)+'ed'](){const _0x4adb19={_0x84d0bf:0xbe,_0x407ed4:0xa8,_0x49ba77:0x76,_0x35d7f4:0x457,_0x1b157b:0xbf,_0x28d019:0x10e,_0x1b2dd2:0xf1,_0x20e3ae:0xc8,_0x447df1:0x1c8,_0x4e7949:0x1f6,_0x3aa751:0x152,_0x937237:0x14e,_0x43bf0f:0xb8,_0x30e213:0x187,_0x249688:0x7f,_0x5d7c97:0x71,_0x4ab874:0xeb,_0x55bd60:0x140,_0x50554f:0x97,_0x262925:0x9f,_0x479e82:0x115,_0x4e4989:0x3bc,_0x104727:0x3c5,_0x565baf:0x367,_0x17889d:0x33e,_0x39055a:0x373,_0x2f5176:0x369,_0x248673:0x337,_0x37dcdb:0x2ee,_0x35e8d6:0xb2,_0x1f2694:0xdb,_0xd92ebb:0x58,_0x2e9464:0x389,_0x53f841:0x2e5,_0x4bc894:0x404,_0x444dca:0xff,_0x106c34:0x1b4,_0x27dbc9:0x124,_0x2efa64:0x34b,_0x444cb3:0x330,_0x3b8794:0x360,_0x3bb05b:0x2ec,_0x541fce:0x34e,_0x47af11:0x30e,_0xaec0df:0xa1,_0x21b86f:0x5d,_0x3751f3:0xb1,_0x3e61b7:0x37,_0x84c804:0x114,_0x1a719d:0x27,_0x5812d6:0x6e,_0x505ace:0x38c,_0x272229:0x3b1,_0x7c0207:0x18a,_0x5a63af:0x9c,_0x4de4d5:0x119,_0x4dd11d:0x432,_0x23e243:0x3fd,_0x4c495c:0x406,_0x5fd349:0x367,_0x401121:0x376,_0x3f70f8:0x3ab,_0x3bffee:0x110,_0x56ff4d:0x185,_0x43b40d:0x394,_0x40fa93:0x422,_0x45bc7c:0x47a,_0x24a656:0x4c4,_0x2f115e:0x103,_0x4a3691:0x65,_0x201da5:0x451,_0xdadd35:0x3eb,_0x44938e:0x8c,_0x2acb62:0x17d,_0x1522bf:0x1b0,_0x4cc52e:0x10f,_0x4f91eb:0x166,_0x45943b:0x70,_0x14cc33:0xce,_0x2e929e:0x35f,_0x16a1c8:0x3ec,_0x2794d1:0x3e1,_0x652f61:0x332,_0x13af93:0x3b2,_0x332eae:0x36c,_0x797b17:0x357,_0x314777:0x355,_0x1822dd:0x418,_0x443870:0x4,_0x605af2:0xf5,_0x7c4bcb:0xaf,_0xe342a6:0x3ba,_0x20666c:0x34a,_0x4eddf4:0x177,_0x5b16b8:0xd6,_0x481f2f:0x373,_0x389d35:0x379,_0x28c417:0x3b9,_0xbdf4cd:0x315,_0x4e9606:0x41f,_0x39c98d:0x38a,_0x56cc50:0x420,_0x3e5e82:0x35e,_0x55797e:0x359,_0x128804:0x414,_0x342291:0x327,_0x3c6670:0x87,_0x156af9:0xf8,_0x3cc4d2:0x3d8,_0x29da57:0x438,_0x76ae57:0xfb,_0x23271c:0x47b,_0x530d77:0x363,_0x364222:0xe7,_0xa90a67:0x158,_0x5c039e:0x122,_0xd65ab5:0x6d,_0x13474f:0x3c,_0x4a550f:0x11,_0x4e0eac:0x41f,_0x45b853:0x38e,_0x25bc75:0x394,_0x1c8c31:0x395,_0x208f78:0x438,_0x2f1ab7:0x1e9,_0x4bab21:0xa,_0x26fb9c:0xa3,_0x3e3c09:0xdd,_0x30e74e:0xc7,_0x43855b:0xc4,_0x16f2e0:0xd6,_0x23a921:0x83,_0x4747ab:0x461,_0xb7c974:0x466,_0xc88f2b:0x130,_0x522b5f:0x18f,_0x584954:0xc1,_0x45dc51:0x7d,_0x2db993:0xb5,_0x315a5c:0x1bb,_0x2126cd:0x20,_0x3ffa40:0x4a,_0x2f0045:0x116,_0x224721:0xeb,_0x499981:0x43e,_0x1c0bf0:0x417,_0x5b6f9e:0xea,_0x26cbd7:0xd1,_0x55743d:0x28,_0x416dde:0xce,_0x179e12:0x3e0,_0x31f085:0x3cd,_0x5280d7:0x421,_0xfef67d:0xfe,_0x430167:0x2e,_0x24c2cb:0xa9,_0x56d61a:0xce,_0x21a2c7:0x165,_0x4f0b2a:0x116,_0x449fbe:0x151,_0x24e37f:0x46,_0x4b85d3:0x30c,_0x2b4eb3:0xb8,_0x4d324b:0x374,_0x5cc2a8:0x30e,_0x361278:0x3dd,_0x295387:0x10a,_0x5e3fbc:0x3ca,_0x8fb875:0xb9,_0x427939:0x1fb,_0x268aee:0x176,_0x1dd389:0x14f,_0xac07b0:0xad,_0x4dca8b:0xb1,_0x439f5e:0x391,_0x2824bd:0x327,_0x413682:0x2b9,_0x558d2c:0x403,_0x4e858d:0x69,_0x4de237:0x42,_0x43bbfb:0x49,_0x4127ae:0xef,_0x44d004:0x1b9,_0x45d8e7:0x43f,_0xb82587:0x3b7,_0x2849d5:0x3ef,_0x534003:0x438,_0x389473:0x435,_0x57c460:0x14a,_0x387028:0x21d,_0x56a7f7:0x18f,_0x1e7511:0xe1,_0x453308:0xad,_0x1e0c60:0x43f,_0x2a1906:0x63,_0x1e6e5d:0x3ff,_0x240a4b:0x42a,_0x2be9f9:0x3f5,_0x2fde83:0x42f,_0x2d7b43:0x401,_0x4eeb7d:0x3e1,_0x364c4a:0x192},_0x3c4094={_0x5a69f5:0x257,_0x53956b:0x1c1,_0x1b5293:0x150},_0x34fdf8={};_0x34fdf8[_0x345bcf(-_0x4adb19._0x84d0bf,-_0x4adb19._0x407ed4,-0xdf,-_0x4adb19._0x49ba77)]=_0x5546f8(0x425,_0x4adb19._0x35d7f4,0x402,0x3c9)+'/',_0x34fdf8[_0x345bcf(-0x91,-0x16a,-_0x4adb19._0x1b157b,-_0x4adb19._0x28d019)]='main',_0x34fdf8[_0x345bcf(-0x18b,-0x144,-0x5e,-_0x4adb19._0x1b2dd2)]=_0x345bcf(-_0x4adb19._0x20e3ae,-_0x4adb19._0x447df1,-_0x4adb19._0x4e7949,-_0x4adb19._0x3aa751);function _0x345bcf(_0x22d697,_0x35dc0d,_0x4c77c1,_0x4a7dbc){return _0x57d1e8(_0x22d697-0xa8,_0x35dc0d-0x45,_0x4c77c1,_0x4a7dbc- -0x634);}_0x34fdf8[_0x345bcf(-0xa0,-_0x4adb19._0x937237,-0x11,-_0x4adb19._0x43bf0f)]=function(_0xe0427,_0x46ab07){return _0xe0427!==_0x46ab07;},_0x34fdf8[_0x345bcf(-0x1cc,-_0x4adb19._0x30e213,-0x174,-0x16b)]=_0x345bcf(-_0x4adb19._0x249688,-_0x4adb19._0x5d7c97,-_0x4adb19._0x4ab874,-0x6c),_0x34fdf8[_0x345bcf(-0x13b,-_0x4adb19._0x55bd60,-_0x4adb19._0x50554f,-_0x4adb19._0x262925)]=_0x345bcf(-_0x4adb19._0x479e82,-0x10d,-0x38,-0x7a),_0x34fdf8[_0x5546f8(_0x4adb19._0x4e4989,_0x4adb19._0x104727,_0x4adb19._0x565baf,_0x4adb19._0x17889d)]=function(_0x24a27e,_0x1efe2c){return _0x24a27e===_0x1efe2c;},_0x34fdf8[_0x5546f8(_0x4adb19._0x39055a,_0x4adb19._0x2f5176,_0x4adb19._0x248673,_0x4adb19._0x37dcdb)]=_0x345bcf(0x29,-_0x4adb19._0x35e8d6,-_0x4adb19._0x1f2694,-_0x4adb19._0xd92ebb),_0x34fdf8[_0x5546f8(_0x4adb19._0x2e9464,_0x4adb19._0x53f841,0x415,_0x4adb19._0x4bc894)]=function(_0x4e3bfd,_0x1b4e3c){return _0x4e3bfd===_0x1b4e3c;},_0x34fdf8[_0x345bcf(-_0x4adb19._0x444dca,-0x163,-_0x4adb19._0x106c34,-_0x4adb19._0x27dbc9)]=_0x5546f8(0x38f,_0x4adb19._0x2efa64,0x411,_0x4adb19._0x444cb3),_0x34fdf8[_0x5546f8(_0x4adb19._0x3b8794,_0x4adb19._0x3bb05b,_0x4adb19._0x541fce,_0x4adb19._0x47af11)]=function(_0x26020d,_0x4c0e64){return _0x26020d===_0x4c0e64;},_0x34fdf8['nOcyO']=_0x345bcf(-0xd2,-_0x4adb19._0xaec0df,-_0x4adb19._0x21b86f,-_0x4adb19._0x3751f3)+'e',_0x34fdf8[_0x345bcf(-_0x4adb19._0x3e61b7,-0x79,-_0x4adb19._0x84c804,-0x8c)]=function(_0x5d4879,_0x4b3c7c){return _0x5d4879===_0x4b3c7c;};function _0x5546f8(_0xe52867,_0x2f49d4,_0xf2723e,_0x3cde23){return _0x50ddaa(_0xe52867-_0x3c4094._0x5a69f5,_0x3cde23,_0xf2723e-_0x3c4094._0x53956b,_0x3cde23-_0x3c4094._0x1b5293);}_0x34fdf8[_0x345bcf(-_0x4adb19._0x1a719d,-_0x4adb19._0x5812d6,0x11,-0x71)]=_0x5546f8(0x347,0x317,_0x4adb19._0x505ace,_0x4adb19._0x272229),_0x34fdf8[_0x345bcf(-0xa9,-_0x4adb19._0x7c0207,-_0x4adb19._0x5a63af,-_0x4adb19._0x4de4d5)]='tmtER',_0x34fdf8[_0x5546f8(_0x4adb19._0x4dd11d,_0x4adb19._0x23e243,0x4b5,_0x4adb19._0x4c495c)]=_0x5546f8(_0x4adb19._0x5fd349,_0x4adb19._0x401121,_0x4adb19._0x3f70f8,0x32e);const _0x3371ca=_0x34fdf8;if(!this[_0x345bcf(-_0x4adb19._0x3bffee,-_0x4adb19._0x56ff4d,-0x20e,-0x17f)+'h']){if(_0x5546f8(_0x4adb19._0x43b40d,0x385,0x3ec,_0x4adb19._0x40fa93)!==_0x3371ca[_0x5546f8(0x40f,0x3fe,0x3e6,_0x4adb19._0x45bc7c)]){const _0x584a6f={};return _0x584a6f[_0x5546f8(0x43f,0x3d3,_0x4adb19._0x24a656,0x3d4)]=![],_0x584a6f[_0x345bcf(-0x16a,-_0x4adb19._0x2f115e,-_0x4adb19._0x4a3691,-0xd6)]=_0x5546f8(_0x4adb19._0x201da5,0x49d,_0x4adb19._0xdadd35,0x476)+_0x345bcf(-0x143,-_0x4adb19._0x44938e,-0x109,-0xb9)+_0x345bcf(-_0x4adb19._0x2acb62,-_0x4adb19._0x1522bf,-0x13c,-_0x4adb19._0x4cc52e)+this[_0x345bcf(-_0x4adb19._0x4f91eb,-0xd1,-_0x4adb19._0x45943b,-_0x4adb19._0x14cc33)]+('\x22\x20has\x20no\x20s'+_0x5546f8(_0x4adb19._0x2e929e,_0x4adb19._0x16a1c8,_0x4adb19._0x2794d1,0x32f)+_0x5546f8(0x377,0x31f,0x3bf,_0x4adb19._0x652f61)+'ed'),_0x584a6f;}else throw new _0x1cdbac(_0x5546f8(_0x4adb19._0x13af93,0x3a4,_0x4adb19._0x332eae,_0x4adb19._0x797b17)+_0x5546f8(0x33f,0x2ca,0x38c,0x3e1)+_0x5546f8(0x3bf,_0x4adb19._0x314777,0x373,_0x4adb19._0x1822dd)+'ient\x20secre'+_0x345bcf(_0x4adb19._0x443870,-_0x4adb19._0x605af2,-_0x4adb19._0x7c4bcb,-0x6a)+this[_0x5546f8(0x41f,0x470,0x49a,_0x4adb19._0xe342a6)+_0x5546f8(0x3b9,0x3d9,0x3bc,_0x4adb19._0x20666c)]+':\x20'+_0x3b4be5[_0x345bcf(-_0x4adb19._0x4eddf4,-0x14f,-0x96,-_0x4adb19._0x5b16b8)]);}if(_0x3371ca[_0x345bcf(-0xe6,-0xad,-0x169,-0xf2)](this['authMethod'],_0x3371ca[_0x5546f8(_0x4adb19._0x481f2f,0x35a,0x39c,_0x4adb19._0x389d35)])){if(!this['clientSecr'+_0x5546f8(_0x4adb19._0x28c417,0x417,0x40d,0x429)]){if(_0x3371ca[_0x5546f8(0x389,0x3d5,_0x4adb19._0xbdf4cd,_0x4adb19._0x4e9606)](_0x3371ca[_0x5546f8(_0x4adb19._0x39c98d,0x340,0x3f4,0x414)],_0x5546f8(0x459,_0x4adb19._0x56cc50,0x4a9,0x4e8)))throw new _0x2f9154('Certificat'+'e\x20file\x20doe'+_0x5546f8(0x397,_0x4adb19._0x3e5e82,_0x4adb19._0x55797e,_0x4adb19._0x128804)+_0x5546f8(0x3ba,0x44c,_0x4adb19._0x342291,0x351)+'d\x20certific'+_0x345bcf(-0xea,-_0x4adb19._0x3c6670,-0x8f,-_0x4adb19._0x156af9));else{const _0x5eeae0={};return _0x5eeae0['configured']=![],_0x5eeae0[_0x5546f8(_0x4adb19._0x3cc4d2,_0x4adb19._0x29da57,0x475,0x413)]=_0x345bcf(-_0x4adb19._0x76ae57,0xd,-0x5c,-0x5d)+_0x5546f8(0x3f5,_0x4adb19._0x23271c,0x376,_0x4adb19._0x530d77)+_0x5546f8(0x39f,0x42f,0x3d6,0x402)+this[_0x345bcf(-0x87,-_0x4adb19._0x364222,-0x133,-0xce)]+(_0x345bcf(-_0x4adb19._0xa90a67,-_0x4adb19._0x5c039e,-0x215,-0x176)+_0x345bcf(-_0x4adb19._0xd65ab5,_0x4adb19._0x13474f,-_0x4adb19._0x4a550f,-0x5c)+_0x5546f8(0x3f9,0x494,0x476,0x36a)+'nfigured'),_0x5eeae0;}}const _0x1c870f=_0x45ef5d['join'](this['secretsPat'+'h'],this[_0x5546f8(_0x4adb19._0x4e0eac,_0x4adb19._0x45b853,_0x4adb19._0x25bc75,0x3f3)+_0x5546f8(_0x4adb19._0x28c417,_0x4adb19._0x1c8c31,_0x4adb19._0x208f78,0x312)]);try{await _0x154d98[_0x345bcf(-_0x4adb19._0x2f1ab7,-0x147,-0x22d,-0x187)](_0x1c870f);const _0x309994={};return _0x309994[_0x345bcf(_0x4adb19._0x4bab21,-_0x4adb19._0x26fb9c,-_0x4adb19._0x3e3c09,-0x6f)]=!![],_0x309994;}catch{const _0x2813df={};return _0x2813df[_0x345bcf(-0x10,-_0x4adb19._0x30e74e,-_0x4adb19._0x43855b,-0x6f)]=![],_0x2813df[_0x345bcf(-0x16f,-0x2e,-0x3d,-_0x4adb19._0x16f2e0)]=_0x345bcf(-_0x4adb19._0x23a921,-0x102,-0xb6,-_0x4adb19._0x21b86f)+'ps\x20provide'+'r\x20\x22'+this[_0x5546f8(0x3e0,_0x4adb19._0x2794d1,_0x4adb19._0x4747ab,_0x4adb19._0xb7c974)]+(_0x345bcf(-0x1aa,-_0x4adb19._0xc88f2b,-0xf0,-_0x4adb19._0x522b5f)+'ng\x20client\x20'+'secret\x20fil'+_0x345bcf(-0x137,-0x1d,-_0x4adb19._0x584954,-0xb7))+this[_0x345bcf(-0x69,0xa,-_0x4adb19._0x45dc51,-0x8f)+'etFile'],_0x2813df;}}else{if(_0x3371ca[_0x345bcf(-0x1b4,-0xd0,-_0x4adb19._0x2db993,-0x14e)](this['authMethod'],_0x3371ca[_0x345bcf(-0x1e7,-0x146,-_0x4adb19._0x315a5c,-0x15f)])){if(_0x3371ca[_0x345bcf(-_0x4adb19._0x2126cd,-_0x4adb19._0x3ffa40,-0xe2,-0x8c)](_0x3371ca[_0x345bcf(-0x93,-0xdc,-_0x4adb19._0x2f0045,-0x71)],_0x3371ca[_0x345bcf(-_0x4adb19._0x56ff4d,-_0x4adb19._0x224721,-0xab,-_0x4adb19._0x4de4d5)]))_0x5a34dd[_0x5546f8(0x44c,_0x4adb19._0x499981,0x4d0,_0x4adb19._0x1c0bf0)]({'name':_0x4f2474[_0x345bcf(-_0x4adb19._0x5b6f9e,-_0x4adb19._0x26cbd7,-_0x4adb19._0x55743d,-_0x4adb19._0x416dde)],'full_name':_0x424b97[_0x5546f8(_0x4adb19._0x179e12,_0x4adb19._0x31f085,_0x4adb19._0x5280d7,0x359)]+'/'+_0x287ed3[_0x345bcf(-_0x4adb19._0xfef67d,-_0x4adb19._0x430167,-_0x4adb19._0x24c2cb,-_0x4adb19._0x56d61a)],'project':_0x59e124[_0x5546f8(0x3e0,0x40e,0x47d,0x37b)],'clone_url':_0x11ede1[_0x345bcf(-_0x4adb19._0x21a2c7,-0x142,-0xe2,-_0x4adb19._0x4f0b2a)],'default_branch':_0x2743d7[_0x345bcf(-0x14d,-0xab,-0x18e,-_0x4adb19._0x449fbe)+'nch']?.['replace'](_0x3371ca[_0x345bcf(-_0x4adb19._0x24e37f,-0xe8,-0xf9,-0x76)],'')||_0x3371ca[_0x345bcf(-0x110,-0xf8,-0x17c,-_0x4adb19._0x28d019)],'description':_0x32ae32[_0x5546f8(0x3a3,0x40b,0x3a1,_0x4adb19._0x4b85d3)+'n'],'descriptionSource':_0x3371ca['xLqDL'],'private':_0x3371ca[_0x345bcf(-0x129,-0x79,-0x5b,-_0x4adb19._0x2b4eb3)](_0x499189[_0x5546f8(_0x4adb19._0x4d324b,_0x4adb19._0x5cc2a8,_0x4adb19._0x361278,0x311)],_0x3371ca[_0x345bcf(-_0x4adb19._0x295387,-0x14a,-0xe3,-0x16b)])});else{if(!this[_0x5546f8(0x3fd,0x498,0x446,0x38c)+_0x345bcf(-0xaa,-0x42,-0x7a,-0xad)]){const _0x384690={};return _0x384690['configured']=![],_0x384690['message']=_0x5546f8(0x451,0x483,0x44b,_0x4adb19._0x5e3fbc)+_0x345bcf(-0x5c,-_0x4adb19._0x3bffee,-0x85,-_0x4adb19._0x8fb875)+'r\x20\x22'+this['name']+(_0x345bcf(-_0x4adb19._0x427939,-0x206,-0x21c,-_0x4adb19._0x268aee)+_0x345bcf(-0xcb,-0xe4,-_0x4adb19._0x1dd389,-0x10a)+'_path\x20conf'+'igured'),_0x384690;}const _0x119a09=_0x45ef5d[_0x345bcf(-_0x4adb19._0xac07b0,-0x83,-0xf2,-0x67)](this['secretsPat'+'h'],this[_0x345bcf(-0xd3,-0x140,-0xda,-_0x4adb19._0x4dca8b)+_0x5546f8(0x401,0x3b8,_0x4adb19._0x439f5e,0x400)]);try{await _0x154d98[_0x5546f8(_0x4adb19._0x2824bd,_0x4adb19._0x413682,0x2ec,0x2b8)](_0x119a09);const _0x4143a6={};return _0x4143a6[_0x5546f8(0x43f,_0x4adb19._0x558d2c,0x431,0x49a)]=!![],_0x4143a6;}catch{if(_0x3371ca[_0x345bcf(-_0x4adb19._0x4e858d,-_0x4adb19._0x4de237,-_0x4adb19._0x43bbfb,-_0x4adb19._0x2b4eb3)](_0x3371ca['nQNfJ'],_0x3371ca[_0x5546f8(0x432,0x47f,0x42e,0x3f4)]))return/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i[_0x345bcf(-_0x4adb19._0x4127ae,-_0x4adb19._0x44d004,-0x171,-0x163)](_0xb65f96);else{const _0x460811={};return _0x460811[_0x5546f8(_0x4adb19._0x45d8e7,_0x4adb19._0xb82587,0x444,0x3af)]=![],_0x460811[_0x5546f8(0x3d8,_0x4adb19._0x2849d5,_0x4adb19._0x534003,_0x4adb19._0x389473)]='Azure\x20DevO'+_0x345bcf(-0xe7,-0xb8,-_0x4adb19._0x45943b,-_0x4adb19._0x8fb875)+'r\x20\x22'+this[_0x5546f8(_0x4adb19._0x179e12,0x3ef,0x383,0x362)]+(_0x345bcf(-0x111,-_0x4adb19._0x57c460,-_0x4adb19._0x387028,-_0x4adb19._0x56a7f7)+'ng\x20certifi'+'cate\x20file:'+'\x20')+this['certificat'+_0x345bcf(-0xd3,-0x123,-_0x4adb19._0x1e7511,-_0x4adb19._0x453308)],_0x460811;}}}}}const _0x3b7137={};return _0x3b7137[_0x5546f8(_0x4adb19._0x1e0c60,0x3ff,0x3d7,0x3e3)]=![],_0x3b7137[_0x345bcf(-0xfc,-_0x4adb19._0x2a1906,-0x11f,-0xd6)]=_0x5546f8(0x451,0x480,_0x4adb19._0x1e6e5d,_0x4adb19._0x240a4b)+_0x5546f8(_0x4adb19._0x2be9f9,_0x4adb19._0x2fde83,0x430,_0x4adb19._0x2d7b43)+'r\x20\x22'+this[_0x345bcf(-_0x4adb19._0xa90a67,-0x126,-0x91,-0xce)]+(_0x5546f8(0x3cd,0x3ce,0x44d,_0x4adb19._0x4eeb7d)+'lid\x20auth_m'+_0x345bcf(-0xeb,-0xa9,-_0x4adb19._0x5b6f9e,-0xf6))+this[_0x345bcf(-_0x4adb19._0x364c4a,-0x166,-0x16d,-0x14b)],_0x3b7137;}async['generateTo'+_0x50ddaa(0x1af,0x172,0x16e,0x1e1)](_0x393341={}){const _0x47700a={_0x210917:0xc7,_0x3533e4:0x1c9,_0x1e1de3:0xdb,_0xc37908:0x146,_0x8e53c9:0x41,_0x2fb7f7:0x4a,_0x45fc72:0x20,_0x111260:0x76,_0x2d060c:0x99,_0x149810:0xb3,_0x2a1bbf:0xf6,_0x5b059a:0x162,_0x29a9d4:0x150,_0x2eb2f5:0x36,_0x571117:0xd7,_0x5c7e6c:0x72,_0x24a02d:0x2f,_0x1b6158:0x78,_0x3e0a2b:0xb1,_0x435b3a:0x21,_0x5ed3dd:0x10,_0x2977c5:0x104,_0xfcd41f:0x5a,_0x1426d7:0x93,_0x2dc136:0x1a2,_0x5e5aae:0x69,_0x255ed5:0x11d,_0x14eab7:0x36,_0x3ffe96:0x9c,_0x182dd1:0x12a,_0x1eb7ab:0x18a,_0x4c8bf6:0x95,_0x1d9b0c:0x47,_0x39c17b:0x7d,_0x53e7a5:0x9a,_0x16302c:0xbf,_0x185157:0xf9,_0x158517:0xaf,_0x52370d:0x85,_0xffe73:0xe7,_0x656423:0xf4,_0x1a14b1:0x5b,_0x2d7fe4:0x24,_0x4ecf88:0x1d,_0x60de0:0x104,_0x55a796:0x18f,_0x4316eb:0x168,_0xcf61bb:0xb2,_0x213033:0xcb,_0x5a986e:0x44,_0xca073a:0x7c,_0x4a2ee8:0xbe,_0xaf1aa6:0xb0,_0x17618a:0x122,_0x20c911:0xd9,_0x3cde37:0xe7,_0x35ea41:0x8b,_0x5ac677:0x15d,_0xc64bbf:0x7f,_0x393513:0x4f,_0x51dd2e:0x52,_0x1acb57:0x75,_0x3a3e2b:0x7b,_0x2f1554:0x6a,_0xd08582:0xdb,_0xb67501:0x12b,_0x2f80ff:0x148,_0x54045f:0xfc,_0x386d5e:0x19d,_0x516f8b:0xa7,_0x21259a:0xc3,_0x105c87:0x91,_0x3a3eab:0x86,_0x2d81a6:0xc,_0x2ec873:0x18,_0x10f826:0x148,_0x1d3f74:0xc9,_0x47273b:0x54,_0x5c80ae:0x23,_0x55f215:0x100,_0x9eeb68:0x188,_0x126753:0x90,_0x583614:0x81,_0x5534ac:0xf5,_0x13aad8:0x13b,_0xb9b5e6:0x177,_0x4b3b84:0x14d,_0x24615c:0x4d,_0x54a8fd:0xd1,_0x3372a3:0x9f,_0x4b82b2:0x26,_0x5e0d40:0x12c,_0x56d5ea:0x75,_0x5e89a6:0x105,_0x584125:0x115,_0x45cf61:0x61,_0x1bccfa:0x59,_0x1269b2:0xf7,_0x33d411:0x3b,_0x4fbc7c:0x24,_0x4268f1:0xad,_0x45b6b6:0xa1,_0x43d701:0x129,_0x52ca3e:0xfa,_0x358fa2:0x134,_0x476489:0x129,_0x1e24c1:0x27,_0x11412f:0x13,_0xf7c00b:0x27,_0x243a4a:0xff,_0x499c91:0x11e,_0x41a43c:0x1,_0x5d6b4e:0x49},_0x1633fe={_0xcb73d0:0x1e5},_0x11a15b={};_0x11a15b[_0x1f4c62(-0x12a,-_0x47700a._0x210917,-_0x47700a._0x3533e4,-0xf0)]=_0x1f4c62(-0xdc,-_0x47700a._0x1e1de3,-_0x47700a._0xc37908,-0x11d),_0x11a15b[_0x1f4c62(-0xb8,-0x7f,-0x12a,-_0x47700a._0x8e53c9)]=function(_0x55b6d8,_0x3e4b1f){return _0x55b6d8<_0x3e4b1f;},_0x11a15b[_0x1f4c62(-0xf0,-0x13d,-0x111,-0x6c)]=function(_0x288ccf,_0x58b7e2){return _0x288ccf-_0x58b7e2;},_0x11a15b[_0x3bcd38(0xf,_0x47700a._0x2fb7f7,0xa6,_0x47700a._0x45fc72)]=function(_0xb847e9,_0x47f798){return _0xb847e9===_0x47f798;},_0x11a15b[_0x1f4c62(-0x3e,-0x90,-_0x47700a._0x111260,-_0x47700a._0x2d060c)]=_0x3bcd38(-_0x47700a._0x149810,0x12,-0x7d,-0x40),_0x11a15b[_0x1f4c62(-_0x47700a._0x2a1bbf,-_0x47700a._0x5b059a,-0xf4,-_0x47700a._0x29a9d4)]=_0x1f4c62(-_0x47700a._0x2eb2f5,-_0x47700a._0x571117,_0x47700a._0x5c7e6c,-_0x47700a._0x24a02d)+'ed\x20Azure\x20D'+_0x3bcd38(_0x47700a._0x149810,-_0x47700a._0x1b6158,_0x47700a._0x3e0a2b,_0x47700a._0x435b3a)+'n',_0x11a15b['BEdSD']=_0x3bcd38(-0x1f,-0x140,-0x9c,-0xbe)+_0x3bcd38(_0x47700a._0x5ed3dd,0x48,-0x42,0x43)+_0x3bcd38(-_0x47700a._0x2977c5,-0xd5,-_0x47700a._0xfcd41f,-0x72)+_0x3bcd38(-_0x47700a._0x1426d7,0x56,-0x9f,-0x13),_0x11a15b[_0x3bcd38(-0x72,-_0x47700a._0x2dc136,-0x143,-0x103)]=_0x1f4c62(0x7,_0x47700a._0x5e5aae,0x65,-0x1a)+_0x3bcd38(-0x94,-_0x47700a._0x255ed5,-0x175,-0xfb)+_0x3bcd38(-_0x47700a._0x14eab7,-0x37,-0xb4,-_0x47700a._0x3ffe96);const _0x12372f=_0x11a15b,{logger:logger=_0x346a99}=_0x393341,_0x42a9fb=(this['envPath']||_0x12372f[_0x1f4c62(-_0x47700a._0x182dd1,-_0x47700a._0x1eb7ab,-0x149,-0x1a4)])+':'+this[_0x3bcd38(-0x79,-_0x47700a._0x4c8bf6,-0x10,-0x39)],_0x5054ac=tokenCache[_0x1f4c62(-0x50,0x28,-0x3f,-0x8b)](_0x42a9fb);if(_0x5054ac&&_0x12372f['gYIgo'](Date['now'](),_0x12372f[_0x3bcd38(-_0x47700a._0x1d9b0c,-_0x47700a._0x39c17b,-_0x47700a._0x53e7a5,-_0x47700a._0x16302c)](new Date(_0x5054ac[_0x3bcd38(-_0x47700a._0x185157,-_0x47700a._0x158517,-_0x47700a._0x52370d,-_0x47700a._0xffe73)])[_0x3bcd38(-0x13f,-0xd2,-_0x47700a._0x656423,-0xb0)](),TOKEN_REFRESH_BUFFER_MS))){if(_0x12372f['Ubcri'](_0x12372f[_0x1f4c62(-0x3e,-_0x47700a._0x1a14b1,_0x47700a._0x2d7fe4,-_0x47700a._0x4ecf88)],_0x12372f[_0x3bcd38(-0x2f,-0xe,-0x65,-0xd)])){const _0xdf12a9={};_0xdf12a9[_0x1f4c62(-_0x47700a._0x60de0,-_0x47700a._0x55a796,-_0x47700a._0x4316eb,-_0x47700a._0xcf61bb)]=this[_0x1f4c62(-0x6a,-_0x47700a._0x213033,-_0x47700a._0x5a986e,-_0x47700a._0xca073a)],logger['debug'](_0x12372f[_0x3bcd38(-_0x47700a._0x4a2ee8,-0x107,-0xae,-0xc5)],_0xdf12a9);const _0x2b3466={};return _0x2b3466['token']=_0x5054ac[_0x1f4c62(-0x58,-0x7c,-0x25,-_0x47700a._0xaf1aa6)],_0x2b3466[_0x3bcd38(-0x69,-_0x47700a._0x17618a,-_0x47700a._0x20c911,-_0x47700a._0x3cde37)]=_0x5054ac[_0x1f4c62(-0x118,-0xd5,-_0x47700a._0x35ea41,-_0x47700a._0x5ac677)],_0x2b3466;}else{const _0x38d035={};return _0x38d035[_0x1f4c62(-0xb,0x48,_0x47700a._0xc64bbf,_0x47700a._0x393513)]=![],_0x38d035[_0x1f4c62(-_0x47700a._0x5c7e6c,-0xce,-_0x47700a._0x51dd2e,-0xb)]=_0x1f4c62(0x7,_0x47700a._0x1acb57,-0x17,-0x38)+'ps\x20provide'+_0x3bcd38(-0x78,-_0x47700a._0x3a3e2b,-_0x47700a._0x255ed5,-0x7a)+this[_0x1f4c62(-_0x47700a._0x2f1554,-0xd7,-_0x47700a._0xd08582,0xa)]+(_0x1f4c62(-_0x47700a._0xb67501,-_0x47700a._0x2f80ff,-_0x47700a._0x54045f,-_0x47700a._0x386d5e)+_0x1f4c62(-0x6e,-0xd9,-_0x47700a._0x516f8b,-_0x47700a._0x21259a)+_0x3bcd38(-0x61,-_0x47700a._0x105c87,-0x112,-_0x47700a._0x3a3eab)+'\x20')+this['certificat'+_0x3bcd38(0x80,0x46,-_0x47700a._0x2d81a6,-_0x47700a._0x2ec873)],_0x38d035;}}const _0x3f98f4={};_0x3f98f4[_0x1f4c62(-_0x47700a._0x60de0,-_0x47700a._0x10f826,-_0x47700a._0x39c17b,-0x67)]=this[_0x3bcd38(-_0x47700a._0x1d3f74,_0x47700a._0x47273b,-_0x47700a._0x5c80ae,-0x39)],_0x3f98f4['organizati'+'on']=this[_0x1f4c62(-_0x47700a._0x55f215,-0xe4,-0x7c,-0x165)+'on'],_0x3f98f4[_0x3bcd38(-0xbb,-0x11a,-_0x47700a._0x2a1bbf,-0xb6)]=this[_0x1f4c62(-0xe7,-_0x47700a._0x9eeb68,-_0x47700a._0x126753,-_0x47700a._0x583614)],logger['info'](_0x12372f[_0x1f4c62(-_0x47700a._0x5534ac,-_0x47700a._0x13aad8,-0xcb,-_0x47700a._0xb9b5e6)],_0x3f98f4);function _0x3bcd38(_0x426268,_0x55b511,_0x525937,_0x5c91fd){return _0x50ddaa(_0x5c91fd- -0x1c2,_0x55b511,_0x525937-0x9a,_0x5c91fd-0x63);}const _0x581f2c=this[_0x1f4c62(-0xe7,-_0x47700a._0x4b3b84,-0xf8,-0x6a)]===_0x1f4c62(-_0x47700a._0x24615c,-_0x47700a._0x54a8fd,-_0x47700a._0x3372a3,-_0x47700a._0x4b82b2)+'e'?await this[_0x1f4c62(-0xad,-_0x47700a._0x5e0d40,-_0x47700a._0x56d5ea,-_0x47700a._0x52370d)+'ithCertifi'+_0x1f4c62(-_0x47700a._0x5e89a6,-0xa6,-_0x47700a._0x584125,-0x147)](logger):await this[_0x3bcd38(-_0x47700a._0x45cf61,-0x83,-_0x47700a._0x1bccfa,-_0x47700a._0xca073a)+_0x1f4c62(-0x6d,-_0x47700a._0x1269b2,_0x47700a._0x33d411,-_0x47700a._0x4fbc7c)](logger);function _0x1f4c62(_0x2b2e78,_0x4c8185,_0x40699c,_0x59e2a3){return _0x50ddaa(_0x2b2e78- -0x1f3,_0x59e2a3,_0x40699c-_0x1633fe._0xcb73d0,_0x59e2a3-0x1e4);}const _0x2bdbe7={};_0x2bdbe7[_0x3bcd38(-0x3f,-0x49,-_0x47700a._0x4268f1,-0xd3)]=this['name'],_0x2bdbe7[_0x3bcd38(-0x108,-0x14e,-0x17c,-_0x47700a._0x3cde37)]=_0x581f2c[_0x3bcd38(-0x11d,-0x4a,-0x89,-0xe7)],logger[_0x1f4c62(-_0x47700a._0x45b6b6,-0xb,-_0x47700a._0x43d701,-_0x47700a._0x52ca3e)](_0x12372f[_0x1f4c62(-_0x47700a._0x358fa2,-0xfb,-0xc4,-_0x47700a._0x476489)],_0x2bdbe7);const _0xf0f8e9={};return _0xf0f8e9[_0x3bcd38(0x26,0x48,0x2e,-_0x47700a._0x1e24c1)]=_0x581f2c[_0x3bcd38(_0x47700a._0x11412f,-0x3e,-0xb8,-_0x47700a._0xf7c00b)],_0xf0f8e9[_0x3bcd38(-_0x47700a._0x243a4a,-_0x47700a._0x4316eb,-_0x47700a._0x499c91,-0xe7)]=_0x581f2c[_0x3bcd38(-0xbc,-0x4d,-0xab,-_0x47700a._0x3cde37)],tokenCache[_0x1f4c62(_0x47700a._0x41a43c,-0x99,-_0x47700a._0x5d6b4e,0x31)](_0x42a9fb,_0xf0f8e9),_0x581f2c;}async[_0x50ddaa(0x146,0xb6,0x132,0x10e)+_0x50ddaa(0x186,0x20f,0x156,0x17e)](_0x4cfcf2){const _0x5af770={_0x308f59:0xe2,_0xbe1c20:0x127,_0x5aaadc:0xc4,_0x32fd37:0x142,_0x29d420:0x1f,_0x1d06c9:0x3,_0x4411a6:0x12d,_0x4f8bc0:0xca,_0x4a7272:0x122,_0x5b26dd:0xf3,_0x47368c:0x8b,_0x518f59:0x8,_0x5be35b:0x75,_0x53e170:0xee,_0x3e0b5d:0x5a,_0x412419:0x8e,_0x569275:0x53,_0x386022:0x8b,_0x25508c:0xf5,_0x3dfd9c:0x54,_0x3b3599:0x1c,_0x4cea98:0xfc,_0xaea27c:0x42,_0x19a825:0x71,_0x53cda6:0xf5,_0x86cf7b:0x30,_0x2f92b6:0x93,_0x31769c:0x68,_0xc6397d:0x82,_0x5269a6:0x61,_0x2cdefe:0x4b,_0x7e30cf:0x67,_0x19dd42:0x24,_0x21c4b5:0x170,_0x1dbe34:0x1a1,_0x1bc746:0x184,_0x33c7dd:0x77,_0x5dc825:0xce,_0x287657:0xf3,_0x29931a:0x97,_0x185e11:0x1,_0xec71e0:0x2b,_0x21d455:0x2e,_0x5b2480:0x2,_0x1d6bff:0x74,_0x5a4f0f:0xd5,_0x322ba7:0x151,_0x272afb:0x21,_0x34504b:0x108,_0x333db1:0x1d,_0x1ced2b:0x6e,_0x32745c:0x74,_0x487f91:0x4b,_0x531932:0x43,_0xf8253f:0x8d,_0xd97895:0xaf,_0x432fdd:0x94,_0x2e252c:0x62,_0x2ad595:0x116,_0x312447:0x49,_0x12fe22:0x2c,_0x5267fd:0x15,_0x571783:0xc4,_0x25e8c4:0x4b,_0x3f7812:0x10b,_0x37b503:0xfa,_0x5a1a44:0x74,_0x49aba4:0x10f,_0x2e3a7f:0x9c,_0x3ba9ff:0x16,_0x5ce1fe:0x31,_0x2f2263:0x73,_0x55765c:0xc7,_0x10fc84:0x59,_0x1977e:0xd,_0x3110cc:0x40,_0x4befad:0x48,_0x62df0e:0x29,_0x41f146:0x11,_0x3abb8e:0x115,_0x2ff51d:0xb5,_0x50af67:0x11d,_0x473e94:0x7c,_0x302785:0xd0,_0x574876:0x5c,_0x45f573:0xaa,_0x41c7f0:0x126,_0x27cb21:0x66,_0x1d980a:0x6,_0x5b6c29:0x69,_0x2fe316:0xa1,_0x3da09b:0x84,_0x594bf8:0x3a,_0x105e38:0x41,_0xc7346:0x167,_0x2ef17f:0x16d,_0x12e9cb:0x10f,_0x3c56d0:0x6f,_0x2a2203:0xa,_0x59c656:0x65,_0x66b0ee:0x25,_0x4c877a:0x70,_0x391481:0x104,_0x4f3020:0xcf,_0x215302:0xd7,_0x167696:0xfa,_0x1691f3:0x14c},_0x280dfb={_0x3caefa:0x188},_0x16a705={_0x3eed5f:0x61a},_0x5dbb1f={'NVUpI':_0x415902(-_0x5af770._0x308f59,-0x150,-_0x5af770._0xbe1c20,-0xe7),'cdPRP':function(_0x5dd84e,_0x2d844a){return _0x5dd84e===_0x2d844a;},'HIrly':_0x415902(-0x5b,-_0x5af770._0x5aaadc,-0xe9,-_0x5af770._0x32fd37),'NwDqe':'client_cre'+'dentials','hDYfM':_0x415902(_0x5af770._0x29d420,-0x6e,-0x5e,_0x5af770._0x1d06c9)+'\x20Azure\x20Dev'+_0x415902(-_0x5af770._0x4411a6,-_0x5af770._0x4f8bc0,-_0x5af770._0x4a7272,-_0x5af770._0x5b26dd)+_0x2217dc(-0x91,-_0x5af770._0x47368c,-0x3b,-_0x5af770._0x518f59)+'t\x20secret','SZvSY':function(_0x123d9f,_0x2e1c73,_0x38fc62){return _0x123d9f(_0x2e1c73,_0x38fc62);},'nXUIM':_0x2217dc(-_0x5af770._0x5be35b,-_0x5af770._0x53e170,-0x4a,-0xae),'AyLLy':_0x2217dc(-0x8c,-0x7c,0xe,-_0x5af770._0x3e0b5d)+_0x415902(-_0x5af770._0x412419,-0x11b,-0xd2,-0xf3)+_0x2217dc(_0x5af770._0x569275,-_0x5af770._0x386022,-_0x5af770._0x25508c,-_0x5af770._0x3dfd9c)+_0x2217dc(-_0x5af770._0x3b3599,_0x5af770._0x4cea98,0x2c,0x77),'bTlKS':function(_0x216d31,_0x288d60){return _0x216d31+_0x288d60;},'FkrKC':function(_0x3c509a,_0x44ba4a){return _0x3c509a*_0x44ba4a;}},_0x4e3de6=_0x45ef5d[_0x2217dc(0x3e,_0x5af770._0xaea27c,0x5e,_0x5af770._0x19a825)](this[_0x415902(-0x1f4,-0x165,-0x154,-_0x5af770._0x53cda6)+'h'],this[_0x415902(-0x17,-0x75,-0x94,-_0x5af770._0x86cf7b)+_0x2217dc(-_0x5af770._0x2f92b6,0x32,-0x2b,-0x1d)]);let _0xc7413f;try{_0xc7413f=(await _0x154d98['readFile'](_0x4e3de6,_0x5dbb1f['NVUpI']))[_0x415902(-0x2d,-_0x5af770._0x31769c,-0xb9,-0x69)]();}catch(_0x2b7017){if(_0x5dbb1f[_0x2217dc(0x1c,-0xa6,-_0x5af770._0xc6397d,-_0x5af770._0x5269a6)](_0x5dbb1f['HIrly'],_0x415902(-_0x5af770._0x2cdefe,-0x40,_0x5af770._0x7e30cf,-_0x5af770._0x386022)))throw new _0x2874c3(_0x2217dc(-0x97,-0xc0,-0x66,-_0x5af770._0x19dd42)+_0x415902(-_0x5af770._0x21c4b5,-0x155,-0x1fc,-0x18f)+_0x415902(-_0x5af770._0x1dbe34,-_0x5af770._0x1bc746,-0x205,-0x1fb)+_0x2217dc(-_0x5af770._0x33c7dd,-_0x5af770._0x5dc825,-_0x5af770._0x287657,-0x60)+'from\x20'+this[_0x415902(-0xfc,-_0x5af770._0x29931a,_0x5af770._0x185e11,-0x118)+'eFile']+':\x20'+_0x2da37e[_0x2217dc(-_0x5af770._0xec71e0,0x68,-_0x5af770._0x21d455,_0x5af770._0x5b2480)]);else throw new Error('Failed\x20to\x20'+_0x2217dc(-_0x5af770._0x1d6bff,-_0x5af770._0x19dd42,-0x1c,-0x97)+_0x415902(-0x3b,-_0x5af770._0x5a4f0f,-0x4f,-_0x5af770._0x322ba7)+'ient\x20secre'+_0x2217dc(_0x5af770._0x272afb,_0x5af770._0x34504b,_0x5af770._0x333db1,_0x5af770._0x1ced2b)+this['clientSecr'+_0x2217dc(-0x66,_0x5af770._0x32745c,_0x5af770._0x3dfd9c,-0x1d)]+':\x20'+_0x2b7017[_0x415902(-_0x5af770._0x487f91,-0xbc,-_0x5af770._0x531932,-_0x5af770._0xf8253f)]);}const _0x1f9123='https://lo'+_0x415902(-_0x5af770._0xd97895,-_0x5af770._0x432fdd,-0xa4,-_0x5af770._0x2e252c)+_0x2217dc(_0x5af770._0x2ad595,_0x5af770._0x312447,0xfa,0x7f)+_0x2217dc(-0xb0,-0x2f,0x31,-_0x5af770._0x12fe22)+this['tenantId']+(_0x415902(-0x122,-0xaf,-0xc8,-_0x5af770._0x5267fd)+_0x2217dc(_0x5af770._0x571783,0x73,0xb7,_0x5af770._0x25e8c4)),_0x34ae3c={};_0x34ae3c['client_id']=this['clientId'],_0x34ae3c[_0x2217dc(-0x4d,-_0x5af770._0x3f7812,-0x29,-0x74)]=AZURE_DEVOPS_SCOPE;function _0x415902(_0x4ff0a6,_0x4ff798,_0x112d27,_0x284bd7){return _0x57d1e8(_0x4ff0a6-0xfa,_0x4ff798-0x16b,_0x112d27,_0x4ff798- -_0x16a705._0x3eed5f);}_0x34ae3c[_0x415902(-0x17a,-_0x5af770._0x37b503,-0x8e,-0xf6)+'ret']=_0xc7413f,_0x34ae3c['grant_type']=_0x5dbb1f['NwDqe'];const _0x2899db=new URLSearchParams(_0x34ae3c),_0x17808b={};_0x17808b['provider']=this['name'],_0x17808b[_0x2217dc(-_0x5af770._0x5a1a44,-_0x5af770._0x49aba4,-0x4a,-_0x5af770._0x2e3a7f)]=_0x1f9123,_0x4cfcf2[_0x2217dc(0xe,0x54,-_0x5af770._0x3ba9ff,-0x2d)](_0x5dbb1f[_0x2217dc(-_0x5af770._0x5ce1fe,-0x34,-_0x5af770._0x2f2263,-_0x5af770._0x55765c)],_0x17808b);const _0x2e3e5d=await _0x5dbb1f[_0x2217dc(-0x11,_0x5af770._0x10fc84,0x9f,_0x5af770._0x1977e)](fetch,_0x1f9123,{'method':_0x5dbb1f[_0x2217dc(0xf,0x56,_0x5af770._0x3110cc,0xe)],'headers':{'Content-Type':_0x5dbb1f[_0x415902(-0xe8,-0xba,-0x107,-0xca)]},'body':_0x2899db[_0x2217dc(-_0x5af770._0x4befad,-0x82,-_0x5af770._0x62df0e,-0x8a)]()});if(!_0x2e3e5d['ok']){const _0x227341=await _0x2e3e5d[_0x415902(-0x8c,-0x65,-_0x5af770._0x5aaadc,-0x98)]()[_0x2217dc(_0x5af770._0x41f146,0x11a,0x3a,0x73)](()=>({}));throw new Error(_0x2217dc(-0xb8,0x19,0x5,-_0x5af770._0x19dd42)+_0x415902(-0x8c,-_0x5af770._0x3abb8e,-_0x5af770._0x2ff51d,-0xcc)+_0x415902(-0x107,-0x13c,-0x14a,-_0x5af770._0x50af67)+'en:\x20'+_0x2e3e5d[_0x2217dc(_0x5af770._0x473e94,0x18,_0x5af770._0x302785,0x4a)]+_0x2217dc(-_0x5af770._0x574876,-0xd3,-_0x5af770._0x45f573,-0x48)+(_0x227341[_0x2217dc(-_0x5af770._0x41c7f0,-0x7,-_0x5af770._0x27cb21,-0xa2)+'ription']||_0x227341[_0x2217dc(0x24,-_0x5af770._0x2f2263,_0x5af770._0x1d980a,-_0x5af770._0x5b6c29)]||_0x2e3e5d[_0x2217dc(_0x5af770._0x2fe316,-_0x5af770._0x3da09b,-_0x5af770._0x594bf8,0x9)]));}const _0x39cd5c=await _0x2e3e5d['json']();function _0x2217dc(_0x38de62,_0x2ab4e6,_0x1d2cc4,_0xb0d1c6){return _0x57d1e8(_0x38de62-0x108,_0x2ab4e6-_0x280dfb._0x3caefa,_0x2ab4e6,_0xb0d1c6- -0x55c);}const _0x392234=new Date(_0x5dbb1f['bTlKS'](Date[_0x2217dc(0xe0,-0x4e,0xce,_0x5af770._0x105e38)](),_0x5dbb1f[_0x415902(-0x176,-_0x5af770._0xc7346,-_0x5af770._0x2ef17f,-_0x5af770._0x12e9cb)](_0x39cd5c[_0x2217dc(_0x5af770._0x3c56d0,-_0x5af770._0x2a2203,-_0x5af770._0x59c656,_0x5af770._0x66b0ee)],0xf48+0x2451+-0x2fb1)))[_0x415902(-_0x5af770._0x4c877a,-_0x5af770._0x391481,-_0x5af770._0x4f3020,-_0x5af770._0x215302)+'g'](),_0xb268c8={};return _0xb268c8[_0x415902(-0x4,-0xa2,-0x93,-0x44)]=_0x39cd5c[_0x415902(-0x10a,-0x144,-_0x5af770._0x167696,-_0x5af770._0x1691f3)+'en'],_0xb268c8['expires_at']=_0x392234,_0xb268c8;}async[_0x57d1e8(0x4c3,0x533,0x52f,0x523)+_0x50ddaa(0xce,0xc5,0xdb,0x116)+_0x57d1e8(0x44d,0x54d,0x4db,0x4cb)](_0x446a09){const _0x1b24f0={_0xef415d:0x399,_0xc3b5d2:0x4cb,_0x8526d7:0x401,_0x1ee97e:0x3c0,_0x20fccc:0x260,_0x160fc9:0x2cc,_0x43336b:0x370,_0x31dcd8:0x28a,_0xe2c1a9:0x313,_0x38ffdf:0x37b,_0x49da83:0x437,_0x1eea7c:0x4a3,_0x3b2dd6:0x428,_0x32ee20:0x401,_0x50f278:0x47a,_0x5cd683:0x3b4,_0x108a88:0x393,_0x35a5d6:0x349,_0x175672:0x396,_0x3a19fa:0x3cf,_0x4efff5:0x3de,_0x53ddc8:0x328,_0x768ea5:0x40b,_0x1805f0:0x481,_0x2435d4:0x45d,_0x42f8c8:0x329,_0x1b1e06:0x395,_0x3b8472:0x35b,_0x43b34c:0x2ce,_0x4f453e:0x378,_0x134a8b:0x3aa,_0x15b0c6:0x498,_0x4d2b09:0x45a,_0x570a6c:0x330,_0x1858fe:0x33a,_0xf8293a:0x2b6,_0x17059d:0x3a2,_0x4692e2:0x2ef,_0x4115c5:0x3f9,_0x47cfd2:0x2e7,_0x21f024:0x374,_0x293d64:0x318,_0x434552:0x302,_0x59c45f:0x304,_0x3dc4b8:0x394,_0x4a1628:0x3f2,_0x22a559:0x375,_0xd3e08e:0x35b,_0x50f677:0x3de,_0x1b5aba:0x464,_0x7df213:0x4b0,_0x4ef064:0x422,_0x5324ce:0x46d,_0x300e01:0x3a0,_0x3b7744:0x456,_0x1790d3:0x46a,_0x52ffce:0x3ec,_0x3017ec:0x2e8,_0x2ead55:0x3de,_0x5e729a:0x46c,_0x4a9357:0x2c9,_0x630f03:0x33f,_0x551740:0x389,_0x4b9ff8:0x35f,_0x367cfc:0x353,_0x190c37:0x31e,_0x960332:0x3b5,_0x164746:0x4d2,_0x56c364:0x452,_0x37a817:0x327,_0x12e3ad:0x351,_0xdf994a:0x3ae,_0x163ddf:0x3d1,_0x40b430:0x380,_0x11aca7:0x3eb,_0x1388f9:0x44a,_0x195687:0x3c7,_0x1dea12:0x321,_0x3f5fd0:0x39e,_0xa80753:0x443,_0x51a762:0x425,_0x59ebb8:0x396,_0x468586:0x32e,_0xc5edd:0x36d,_0xdc1e2b:0x2d6,_0x55c03e:0x3f7,_0x5e2a6c:0x443,_0x587814:0x381,_0x40dc22:0x451,_0x2d3eb4:0x363,_0x3fc83e:0x3a9,_0x57e6a6:0x351,_0x25e6e0:0x273,_0x132fc2:0x2dd,_0x7f5393:0x400,_0x37948a:0x41c,_0x3e224f:0x3bd,_0x5aaaae:0x359,_0x1ec1fb:0x381,_0x42aab3:0x341,_0xee2864:0x41b,_0x36fd20:0x399,_0x830159:0x3d8,_0x457eb4:0x394,_0xb25557:0x345,_0x336f60:0x355,_0x28b77c:0x238},_0x2c7c3b={_0x3762b8:0x181};function _0x47e619(_0x35089c,_0x3aeae0,_0x3ce215,_0xa954ce){return _0x57d1e8(_0x35089c-0x184,_0x3aeae0-0x1e8,_0x3ce215,_0xa954ce- -0x1e4);}const _0x48e2cf={'eKLIM':_0x6085be(_0x1b24f0._0xef415d,_0x1b24f0._0xc3b5d2,0x43b,_0x1b24f0._0x8526d7)+_0x6085be(0x413,0x3d1,0x432,_0x1b24f0._0x1ee97e)+_0x47e619(0x361,_0x1b24f0._0x20fccc,0x320,_0x1b24f0._0x160fc9)+_0x47e619(_0x1b24f0._0x43336b,0x2dc,_0x1b24f0._0x31dcd8,_0x1b24f0._0xe2c1a9)+'ype:jwt-be'+_0x47e619(_0x1b24f0._0x38ffdf,0x380,_0x1b24f0._0x49da83,0x3a0),'OGfCo':_0x6085be(_0x1b24f0._0x1eea7c,_0x1b24f0._0x3b2dd6,_0x1b24f0._0x32ee20,_0x1b24f0._0x50f278)+'dentials','wMoHi':_0x6085be(_0x1b24f0._0x5cd683,0x44f,0x42b,0x3cb)+_0x47e619(_0x1b24f0._0x108a88,0x3ae,_0x1b24f0._0x35a5d6,_0x1b24f0._0x175672)+_0x6085be(0x412,0x42e,_0x1b24f0._0x3a19fa,_0x1b24f0._0x4efff5)+_0x6085be(0x3bf,0x3a1,_0x1b24f0._0x53ddc8,0x2c0)+'ficate','TcyVY':function(_0xf8132a,_0x5f3b55,_0x23594d){return _0xf8132a(_0x5f3b55,_0x23594d);},'Gggui':'POST','OqwKD':function(_0xfd17d1,_0x15491e){return _0xfd17d1+_0x15491e;},'GDXaM':function(_0x5f0d14,_0x5d060c){return _0x5f0d14*_0x5d060c;}},_0x4b8a29=await this[_0x47e619(0x412,0x376,_0x1b24f0._0x768ea5,0x373)+_0x6085be(_0x1b24f0._0x1805f0,0x48d,_0x1b24f0._0x2435d4,0x423)+_0x6085be(_0x1b24f0._0x42f8c8,_0x1b24f0._0x1b1e06,_0x1b24f0._0x3b8472,_0x1b24f0._0x43b34c)](),_0x7beb2=_0x47e619(_0x1b24f0._0x4f453e,0x400,0x451,_0x1b24f0._0x134a8b)+'gin.micros'+_0x6085be(_0x1b24f0._0x15b0c6,0x458,_0x1b24f0._0x4d2b09,0x4fd)+_0x47e619(_0x1b24f0._0x570a6c,_0x1b24f0._0x1858fe,_0x1b24f0._0xf8293a,0x34c)+this[_0x47e619(_0x1b24f0._0x17059d,0x38b,_0x1b24f0._0x4692e2,0x347)]+(_0x47e619(0x419,0x2ed,_0x1b24f0._0x4115c5,0x387)+'.0/token');function _0x6085be(_0x2c2fb7,_0x3063d3,_0x118ee3,_0x474533){return _0x57d1e8(_0x2c2fb7-0x1f0,_0x3063d3-0x44,_0x3063d3,_0x118ee3- -_0x2c7c3b._0x3762b8);}const _0xef0bd0={};_0xef0bd0['client_id']=this[_0x6085be(0x3b9,_0x1b24f0._0x47cfd2,_0x1b24f0._0x21f024,_0x1b24f0._0x293d64)],_0xef0bd0[_0x47e619(0x39f,_0x1b24f0._0x434552,0x3a9,_0x1b24f0._0x59c45f)]=AZURE_DEVOPS_SCOPE,_0xef0bd0[_0x47e619(0x336,_0x1b24f0._0x3dc4b8,_0x1b24f0._0x4a1628,_0x1b24f0._0x22a559)+_0x6085be(0x377,_0x1b24f0._0xd3e08e,0x3f3,_0x1b24f0._0x50f677)+'e']=_0x48e2cf[_0x6085be(_0x1b24f0._0x1b5aba,_0x1b24f0._0x7df213,_0x1b24f0._0x4ef064,_0x1b24f0._0x5324ce)],_0xef0bd0[_0x47e619(0x2d0,0x391,_0x1b24f0._0x300e01,0x375)+_0x6085be(0x40b,_0x1b24f0._0x3b7744,0x40f,_0x1b24f0._0x1790d3)]=_0x4b8a29,_0xef0bd0[_0x6085be(_0x1b24f0._0x52ffce,0x382,0x3ce,0x370)]=_0x48e2cf['OGfCo'];const _0x255538=new URLSearchParams(_0xef0bd0),_0x1db7b4={};_0x1db7b4[_0x47e619(0x2b5,0x360,0x2fa,_0x1b24f0._0x3017ec)]=this[_0x6085be(_0x1b24f0._0x2ead55,0x3bd,0x3e5,_0x1b24f0._0x5e729a)],_0x1db7b4[_0x6085be(_0x1b24f0._0x4a9357,0x29a,_0x1b24f0._0x630f03,_0x1b24f0._0x551740)]=_0x7beb2,_0x446a09['debug'](_0x48e2cf[_0x47e619(_0x1b24f0._0x4b9ff8,0x304,0x33c,_0x1b24f0._0x367cfc)],_0x1db7b4);const _0x317610={};_0x317610['Content-Ty'+'pe']=_0x6085be(0x3c9,_0x1b24f0._0x190c37,0x381,0x2f3)+_0x6085be(0x30c,_0x1b24f0._0x960332,0x37e,0x2dc)+'rm-urlenco'+_0x6085be(0x3c8,_0x1b24f0._0x164746,_0x1b24f0._0x56c364,0x4c8);const _0x5473cf=await _0x48e2cf[_0x6085be(0x469,0x42e,0x3da,0x389)](fetch,_0x7beb2,{'method':_0x48e2cf['Gggui'],'headers':_0x317610,'body':_0x255538[_0x6085be(0x2fb,_0x1b24f0._0x37a817,_0x1b24f0._0x12e3ad,0x322)]()});if(!_0x5473cf['ok']){const _0x55c4a2=await _0x5473cf[_0x47e619(_0x1b24f0._0xdf994a,0x3f9,0x45a,_0x1b24f0._0x163ddf)]()[_0x47e619(_0x1b24f0._0x40b430,0x416,0x372,_0x1b24f0._0x11aca7)](()=>({}));throw new Error(_0x6085be(0x409,_0x1b24f0._0x1388f9,0x3b7,0x3be)+_0x47e619(0x314,_0x1b24f0._0x195687,0x39a,_0x1b24f0._0x1dea12)+_0x47e619(_0x1b24f0._0x3f5fd0,0x2c7,0x33c,0x2fa)+_0x6085be(0x4ae,0x49b,0x462,0x477)+_0x5473cf[_0x6085be(0x434,_0x1b24f0._0xa80753,_0x1b24f0._0x51a762,0x3ba)]+_0x47e619(_0x1b24f0._0x59ebb8,_0x1b24f0._0x468586,0x2af,_0x1b24f0._0x570a6c)+(_0x55c4a2[_0x47e619(0x242,0x2ca,_0x1b24f0._0xc5edd,_0x1b24f0._0xdc1e2b)+_0x6085be(0x3e2,_0x1b24f0._0x55c03e,_0x1b24f0._0x5e2a6c,0x4aa)]||_0x55c4a2['error']||_0x5473cf[_0x6085be(_0x1b24f0._0x587814,_0x1b24f0._0x40dc22,0x3e4,_0x1b24f0._0x2d3eb4)]));}const _0xe31c34=await _0x5473cf[_0x47e619(_0x1b24f0._0x3fc83e,_0x1b24f0._0x57e6a6,0x3f1,0x3d1)](),_0x47b939=new Date(_0x48e2cf[_0x47e619(0x250,_0x1b24f0._0x25e6e0,_0x1b24f0._0x43b34c,_0x1b24f0._0x132fc2)](Date[_0x6085be(0x420,_0x1b24f0._0x7f5393,_0x1b24f0._0x37948a,_0x1b24f0._0x3e224f)](),_0x48e2cf[_0x6085be(_0x1b24f0._0x5aaaae,_0x1b24f0._0x1ec1fb,_0x1b24f0._0x42aab3,0x2fd)](_0xe31c34['expires_in'],-0x792+-0xde+0xc58)))[_0x6085be(0x3a5,_0x1b24f0._0x3b2dd6,0x395,_0x1b24f0._0xee2864)+'g'](),_0x35857b={};return _0x35857b[_0x47e619(0x434,_0x1b24f0._0x36fd20,_0x1b24f0._0x830159,_0x1b24f0._0x457eb4)]=_0xe31c34[_0x6085be(_0x1b24f0._0xb25557,0x3ae,_0x1b24f0._0x336f60,0x307)+'en'],_0x35857b[_0x47e619(0x33d,_0x1b24f0._0x28b77c,0x2b1,0x2d4)]=_0x47b939,_0x35857b;}async['_generateC'+'lientAsser'+_0x57d1e8(0x49c,0x56e,0x516,0x4dc)](){const _0x482f40={_0x5d914b:0xdb,_0x4277d3:0x116,_0x13aa05:0x154,_0x8d684:0x167,_0x36b52f:0x218,_0x55ff9b:0x118,_0x5109f4:0x176,_0x47bda8:0x6e,_0x4e10ec:0x14a,_0x4226d7:0x1e2,_0x58b0cb:0x1b2,_0x4c3f19:0x178,_0x5a3a79:0x18e,_0x9b4dd5:0xdf,_0x1e3d71:0x5f,_0x2e2497:0x156,_0x4f52a5:0xbf,_0x33e13a:0x14c,_0x108642:0x1a6,_0x10209c:0x10e,_0xb033f:0x114,_0x4b62ed:0xa4,_0x111e7a:0x5c,_0x9f15f8:0x197,_0x463fdd:0x159,_0x70efc9:0x198,_0x423d18:0x132,_0xe52bd3:0x73,_0x448e75:0x105,_0x2e96ef:0xa7,_0x21a42e:0x11a,_0x45e7b4:0x137,_0x44ff78:0xd8,_0x1b1945:0x86,_0x2eb5d6:0x170,_0x177e27:0x161,_0x54b4d7:0x157,_0x2a0170:0x1df,_0x459d0c:0x149,_0x215ec0:0x1a8,_0x2efe1e:0x199,_0x4e5e2d:0x128,_0x584a08:0x1a5,_0x189cf6:0x229,_0x4493fa:0x180,_0x270bb1:0x126,_0x2727db:0x1c0,_0x215ea3:0x12d,_0x1e2699:0x121,_0x47d607:0x193,_0x372360:0x92,_0x4fe6c5:0x14f,_0x4fb9bf:0x12c,_0x59e2fa:0x153,_0x4d73b2:0x119,_0x3a6d84:0x195,_0x85fefa:0x113,_0x3f264c:0x19d,_0x3523dd:0x164,_0x5a7127:0x86,_0x8321cb:0x78,_0x13c75f:0xcf,_0x1a8926:0x9b,_0x3b1172:0x147,_0x56cb49:0x10c,_0x5316f5:0x24,_0x4e1525:0x56,_0x5beb9c:0x20c,_0x2a6b2f:0x114,_0x98ff32:0x142,_0x17d509:0x3c,_0x48a299:0x125,_0x1a722d:0xb0,_0x2ee692:0x116,_0x373845:0xf0,_0x590cbe:0x17a,_0x30c1fa:0x186,_0x23d833:0x1e,_0x1deb4f:0x26,_0x4b6461:0x107,_0x418993:0x87,_0xfb0098:0x5f,_0x154c72:0x7e,_0x2d2114:0xd7,_0x1dea46:0x117,_0x5bed52:0x162,_0x2867e0:0x17b,_0x44de2e:0x131,_0x499a6b:0xb7,_0x120796:0xbc,_0x1cd260:0x59,_0x13ef82:0xbb,_0x21041c:0x34,_0x27b88a:0x202,_0x2e8fac:0x1f3,_0x13f17e:0x1ae,_0x576c3d:0x175,_0x4eef59:0x11d,_0x43f6a7:0xae,_0x45461c:0xc0,_0x3308f2:0x1f,_0x14cbc0:0x99,_0x43052e:0x135,_0x4d31d0:0xd9,_0x30e820:0x19e,_0x354454:0x16e,_0x4841a6:0x97,_0x55e585:0xaf,_0x132f60:0x7c,_0x1367cb:0x8c,_0x2b2a1d:0x186,_0x4767d1:0x1da,_0x198abc:0x21e,_0x1da170:0x1b1,_0x2ffc4c:0x1d,_0x245a05:0xba,_0x12f9ea:0x13,_0x38ebc2:0x8f,_0x564be1:0xf1,_0x26250c:0x10f,_0x1465d7:0x96,_0x24189f:0xcb,_0x5738a0:0x154,_0x2629c9:0x150,_0x12d0f3:0xac,_0x56b7bc:0x152,_0x388a8a:0xeb,_0x316075:0x11e,_0x4cd62a:0xbc,_0x4d86d9:0x1b7,_0x7c7ebc:0x230,_0x4df060:0x1e2,_0x18cd6c:0x122,_0x20679d:0x97,_0x6064f2:0x198,_0x3083a7:0x165,_0x4c2a0f:0x1e2,_0x309bf7:0x12f,_0x2dd7f8:0x117,_0x26adad:0xb6,_0x2e0e9d:0x7f,_0x34560f:0xe3,_0x4280a1:0xdf,_0x166031:0x146,_0x2759dc:0x1bf,_0x1d90b5:0x110,_0x27bde0:0x149},_0xf857b7={_0x57676d:0x4b,_0x1b20ac:0x653},_0x4d642d={_0x2e17fb:0x3a},_0x5aa3af={};_0x5aa3af['qsEHL']=function(_0x136add,_0x3e91aa){return _0x136add===_0x3e91aa;},_0x5aa3af[_0x47036f(-_0x482f40._0x5d914b,-0x75,-_0x482f40._0x4277d3,-0x12d)]=_0x47036f(-0x11d,-_0x482f40._0x13aa05,-0x147,-_0x482f40._0x8d684),_0x5aa3af['oktwM']=_0x58692f(0xb3,0x56,0xdf,0x8f),_0x5aa3af[_0x47036f(-0x1b0,-0x19c,-0x1bb,-_0x482f40._0x36b52f)]=function(_0x1941c5,_0x399ca9){return _0x1941c5!==_0x399ca9;},_0x5aa3af[_0x47036f(-_0x482f40._0x55ff9b,-0x6a,-0xd5,-_0x482f40._0x5109f4)]='ZjCwi',_0x5aa3af[_0x58692f(0x87,0xa3,_0x482f40._0x47bda8,0xfb)]=_0x58692f(_0x482f40._0x4e10ec,0x1e7,_0x482f40._0x4226d7,_0x482f40._0x58b0cb),_0x5aa3af[_0x58692f(_0x482f40._0x4c3f19,_0x482f40._0x5a3a79,0x194,0xec)]=_0x58692f(_0x482f40._0x9b4dd5,0xd7,_0x482f40._0x1e3d71,0x68),_0x5aa3af['LqCfE']=_0x58692f(0x130,_0x482f40._0x2e2497,0x158,_0x482f40._0x4f52a5),_0x5aa3af[_0x47036f(-_0x482f40._0x33e13a,-_0x482f40._0x108642,-0x1b0,-_0x482f40._0x10209c)]=function(_0x2a2b47,_0x5093f2){return _0x2a2b47/_0x5093f2;},_0x5aa3af['ixHvH']=_0x47036f(-_0x482f40._0xb033f,-0xaf,-_0x482f40._0x4b62ed,-_0x482f40._0x111e7a),_0x5aa3af[_0x47036f(-0x166,-0x194,-_0x482f40._0x9f15f8,-0x21c)]=function(_0xcffb6d,_0x50441d){return _0xcffb6d+_0x50441d;},_0x5aa3af[_0x58692f(_0x482f40._0x463fdd,_0x482f40._0x70efc9,_0x482f40._0x423d18,0x1db)]='Generating'+_0x47036f(-0x3f,-0x46,-0xd9,-_0x482f40._0xe52bd3)+_0x58692f(0x91,-0x7,_0x482f40._0x448e75,_0x482f40._0x2e96ef)+_0x58692f(_0x482f40._0x21a42e,_0x482f40._0x8d684,0xf9,_0x482f40._0x45e7b4);const _0xfe21da=_0x5aa3af,_0x477310=_0x45ef5d[_0x47036f(0x2,-_0x482f40._0x44ff78,-_0x482f40._0x1b1945,-0x13)](this['secretsPat'+'h'],this['certificat'+_0x58692f(_0x482f40._0x2eb5d6,_0x482f40._0x177e27,_0x482f40._0x54b4d7,_0x482f40._0x2a0170)]);let _0x587f09;try{if(_0xfe21da[_0x47036f(-0x158,-0xc1,-_0x482f40._0x459d0c,-_0x482f40._0x215ec0)](_0xfe21da[_0x47036f(-0xe9,-0x14b,-_0x482f40._0x4277d3,-0x107)],_0x58692f(_0x482f40._0x2efe1e,_0x482f40._0x4e5e2d,_0x482f40._0x584a08,_0x482f40._0x189cf6))){const _0x3c8157={};return _0x3c8157['configured']=![],_0x3c8157[_0x58692f(0x147,_0x482f40._0x4493fa,_0x482f40._0x448e75,_0x482f40._0x270bb1)]=_0x58692f(_0x482f40._0x2727db,_0x482f40._0x215ea3,_0x482f40._0x1e2699,0x24a)+'ps\x20provide'+_0x47036f(-_0x482f40._0x47d607,-_0x482f40._0x372360,-0x12e,-0x14a)+this[_0x58692f(_0x482f40._0x4fe6c5,0x154,_0x482f40._0x4fb9bf,_0x482f40._0x59e2fa)]+(_0x47036f(-_0x482f40._0x4d73b2,-0x21a,-_0x482f40._0x3a6d84,-0x13d)+_0x58692f(_0x482f40._0x85fefa,_0x482f40._0x3f264c,0x134,0x1ae)+_0x47036f(-0xc0,-_0x482f40._0x3523dd,-0x109,-0x11f)+_0x58692f(_0x482f40._0x5a7127,_0x482f40._0x8321cb,0xb7,_0x482f40._0x13c75f)),_0x3c8157;}else _0x587f09=await _0x154d98['readFile'](_0x477310,_0xfe21da[_0x58692f(0x10a,0x19f,0xe8,_0x482f40._0x1a8926)]);}catch(_0x29a65f){if(_0xfe21da['jnNWk'](_0xfe21da['ScJXA'],_0xfe21da['ScJXA']))_0x274101['clear']();else throw new Error('Failed\x20to\x20'+_0x58692f(0xae,_0x482f40._0x3b1172,_0x482f40._0x4fe6c5,_0x482f40._0x56cb49)+_0x58692f(0x7f,-_0x482f40._0x5316f5,0xe6,_0x482f40._0x4e1525)+'rtificate\x20'+_0x58692f(0x1b5,_0x482f40._0x5beb9c,_0x482f40._0x2a6b2f,0x235)+this[_0x47036f(-_0x482f40._0x98ff32,-_0x482f40._0x17d509,-0xd0,-_0x482f40._0x48a299)+'eFile']+':\x20'+_0x29a65f[_0x47036f(-0x90,-_0x482f40._0x1a722d,-0xf5,-_0x482f40._0x2ee692)]);}const _0x3dd02e=_0x587f09[_0x47036f(-_0x482f40._0x5109f4,-_0x482f40._0x373845,-_0x482f40._0x590cbe,-0x1ec)](/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/);if(!_0x3dd02e){if(_0xfe21da[_0x47036f(-0xc9,-_0x482f40._0x30c1fa,-0x149,-0x1dd)](_0xfe21da[_0x58692f(0x87,-_0x482f40._0x23d833,_0x482f40._0x1deb4f,_0x482f40._0x4b6461)],_0xfe21da[_0x58692f(_0x482f40._0x418993,0x43,_0x482f40._0xfb0098,0x24)]))throw new Error('Certificat'+'e\x20file\x20doe'+'s\x20not\x20cont'+_0x47036f(-0x10b,-_0x482f40._0x154c72,-_0x482f40._0x85fefa,-0xa1)+'d\x20certific'+_0x47036f(-0x1be,-_0x482f40._0x2d2114,-_0x482f40._0x1dea46,-0x88));else{const _0x358a98=new _0x18853c(_0x1b3f5e);_0x61b37a=_0x358a98['hostname'],_0x4b81b5=_0x358a98[_0x47036f(-0x159,-_0x482f40._0x5bed52,-_0x482f40._0x2867e0,-_0x482f40._0x21a42e)][_0x47036f(-0xe0,-_0x482f40._0x44de2e,-0x180,-0xee)](/^\//,'')[_0x47036f(-0x13e,-0x1aa,-_0x482f40._0x4493fa,-0x177)](/\.git$/,'');}}const _0x32e2d4=Buffer[_0x47036f(-0xe4,-0x10d,-_0x482f40._0x499a6b,-0x69)](_0x3dd02e[0x287*0x9+0x85a+0x1*-0x1f19][_0x58692f(_0x482f40._0x120796,_0x482f40._0x1cd260,_0x482f40._0x13ef82,_0x482f40._0x21041c)](/-----BEGIN CERTIFICATE-----/g,'')[_0x47036f(-0x1c9,-_0x482f40._0x27b88a,-0x180,-_0x482f40._0x2867e0)](/-----END CERTIFICATE-----/g,'')['replace'](/\s/g,''),_0xfe21da[_0x58692f(0x178,0x1c3,0x138,_0x482f40._0x2e8fac)]),_0x5f1f37=_0x8a9d56[_0x47036f(-_0x482f40._0x13f17e,-0xd0,-0x163,-0xf2)](_0xfe21da[_0x47036f(-_0x482f40._0x576c3d,-0x1a2,-_0x482f40._0x4eef59,-_0x482f40._0x43f6a7)])[_0x58692f(_0x482f40._0x45461c,_0x482f40._0x3308f2,_0x482f40._0x14cbc0,_0x482f40._0x43052e)](_0x32e2d4)['digest'](),_0x32a89e=_0x5f1f37[_0x47036f(-_0x482f40._0x4d31d0,-_0x482f40._0x30e820,-0x181,-0x145)](_0x47036f(-_0x482f40._0x215ea3,-0x18b,-0x105,-0x10b)),_0x119e86=_0x587f09[_0x47036f(-_0x482f40._0x354454,-0x1ce,-0x17a,-0x172)](/-----BEGIN (?:RSA )?PRIVATE KEY-----[\s\S]*?-----END (?:RSA )?PRIVATE KEY-----/);if(!_0x119e86)throw new Error('Certificat'+'e\x20file\x20doe'+'s\x20not\x20cont'+_0x58692f(0x129,0x14d,0xb0,0xe2)+_0x47036f(-0x1d4,-0x11f,-0x13c,-0x17b)+_0x58692f(0xe7,0xb7,0xea,_0x482f40._0x4841a6));const _0x34f766=_0x119e86[-0x163*-0x12+0xe90+-0x2786],_0x48c9ac=Math[_0x58692f(_0x482f40._0x55e585,0x1c,_0x482f40._0x132f60,0x4d)](_0xfe21da[_0x58692f(_0x482f40._0x1367cb,0x12d,0xe8,0xb3)](Date[_0x58692f(_0x482f40._0x2b2a1d,_0x482f40._0x4767d1,_0x482f40._0x198abc,_0x482f40._0x1da170)](),-0x1f0c+-0xa*-0xd0+-0x2*-0xd6a)),_0x26baef=_0x47036f(-0xb8,-_0x482f40._0x2ffc4c,-0xc5,-0x153)+_0x47036f(-0x3e,-0xc1,-0xcd,-0xe9)+_0x47036f(0x18,-_0x482f40._0x245a05,-_0x482f40._0x8321cb,-_0x482f40._0x12f9ea)+_0x47036f(-_0x482f40._0x38ebc2,-0x160,-0x123,-_0x482f40._0x564be1)+this[_0x58692f(0x114,_0x482f40._0x26250c,_0x482f40._0x1465d7,_0x482f40._0x24189f)]+(_0x58692f(_0x482f40._0x5738a0,_0x482f40._0x2629c9,0xfb,0xe4)+_0x47036f(-0x101,-0x1f,-_0x482f40._0x12d0f3,-0xd5)),_0x6e383b={};_0x6e383b[_0x47036f(-_0x482f40._0x56b7bc,-0x4c,-0xcb,-0x48)]=_0xfe21da[_0x58692f(0x150,0xc9,_0x482f40._0x388a8a,0x1c8)],_0x6e383b['typ']='JWT',_0x6e383b[_0x58692f(_0x482f40._0x316075,0x15c,_0x482f40._0x4cd62a,0x1ad)]=_0x32a89e;const _0x5c256e=_0x6e383b,_0x286a9f={'aud':_0x26baef,'iss':this['clientId'],'sub':this['clientId'],'jti':_0x8a9d56['randomUUID'](),'exp':_0xfe21da[_0x47036f(-_0x482f40._0x4d86d9,-0x1c6,-_0x482f40._0x9f15f8,-_0x482f40._0x7c7ebc)](_0x48c9ac,JWT_LIFETIME_SECONDS),'iat':_0x48c9ac,'nbf':_0x48c9ac},_0x1cd511={};function _0x58692f(_0x1c5d7b,_0x4fb9d6,_0x3ed8c2,_0x3f92c2){return _0x50ddaa(_0x1c5d7b- -_0x4d642d._0x2e17fb,_0x3f92c2,_0x3ed8c2-0x154,_0x3f92c2-0x1c0);}_0x1cd511[_0x47036f(-_0x482f40._0x4df060,-0x124,-0x187,-0x22a)]=this['name'];function _0x47036f(_0x496320,_0x594fa9,_0x590b67,_0x23386a){return _0x57d1e8(_0x496320-_0xf857b7._0x57676d,_0x594fa9-0x121,_0x496320,_0x590b67- -_0xf857b7._0x1b20ac);}_0x1cd511['x5t']=_0x32a89e,_0x1cd511[_0x58692f(_0x482f40._0x18cd6c,_0x482f40._0x20679d,_0x482f40._0x6064f2,_0x482f40._0x3083a7)]=_0x26baef,_0x346a99['debug'](_0xfe21da[_0x58692f(0x159,_0x482f40._0x215ea3,0x13e,_0x482f40._0x4c2a0f)],_0x1cd511);const _0x588089={};return _0x588089[_0x58692f(_0x482f40._0x309bf7,0xba,0x146,_0x482f40._0x2dd7f8)]=_0xfe21da[_0x47036f(-_0x482f40._0x26adad,-_0x482f40._0x2e0e9d,-0xec,-0xad)],_0x588089[_0x47036f(-_0x482f40._0x34560f,-_0x482f40._0x4280a1,-_0x482f40._0x166031,-_0x482f40._0x2759dc)]=_0x5c256e,_0x31ba4c[_0x47036f(-_0x482f40._0x2867e0,-_0x482f40._0x1d90b5,-0x14a,-_0x482f40._0x27bde0)](_0x286a9f,_0x34f766,_0x588089);}async[_0x57d1e8(0x552,0x525,0x5f9,0x5a0)+_0x50ddaa(0xf1,0x5a,0xf1,0x9b)](_0x5499a7,_0x3033f6={}){const _0x225bfc={_0x452058:0x3a4,_0x264e5d:0x366,_0x4df39f:0x235,_0x316035:0x2fd,_0x41bae9:0x33b,_0x1a3a2c:0x26c,_0x527805:0x2ac},_0x4ff44e={_0x5b1724:0x31,_0x324da6:0x674},_0x3bc8a8={_0xd5117d:0x1b7,_0xf51761:0xda,_0x156c4f:0x0},{token:_0x44201c}=await this['generateTo'+_0x530fe8(_0x225bfc._0x452058,0x315,_0x225bfc._0x264e5d,0x401)](_0x3033f6);function _0x530fe8(_0x1b4971,_0x45b615,_0x4d8ecc,_0x40a0fa){return _0x50ddaa(_0x4d8ecc-_0x3bc8a8._0xd5117d,_0x1b4971,_0x4d8ecc-_0x3bc8a8._0xf51761,_0x40a0fa-_0x3bc8a8._0x156c4f);}function _0x52c183(_0x3c4899,_0x4ae405,_0x2fcb8a,_0x459b53){return _0x57d1e8(_0x3c4899-0xa,_0x4ae405-_0x4ff44e._0x5b1724,_0x2fcb8a,_0x3c4899- -_0x4ff44e._0x324da6);}const _0x12f0be=new URL(_0x5499a7);return _0x12f0be[_0x530fe8(0x2c1,_0x225bfc._0x4df39f,0x284,_0x225bfc._0x316035)]='',_0x12f0be[_0x530fe8(0x43e,_0x225bfc._0x41bae9,0x3b0,_0x225bfc._0x452058)]=_0x44201c,_0x12f0be[_0x530fe8(0x2b2,_0x225bfc._0x1a3a2c,_0x225bfc._0x527805,0x24d)]();}async[_0x57d1e8(0x62a,0x580,0x604,0x5d0)+'ialsEntry'](_0x1fc864={}){const _0x3985de={_0x33ea4d:0x129,_0x274c11:0xd5,_0x5dfd15:0x11e,_0x43b450:0x180,_0x1f66be:0x198,_0x1d6899:0x223,_0x54ad9a:0x112,_0x1249c4:0x138,_0x203bfc:0x56,_0x45d545:0xbc,_0x3358aa:0xf9,_0x213aef:0x17a,_0xa8fd86:0x63,_0x5e4b31:0x7b,_0xd69383:0x306,_0x407912:0x277,_0x53bbcb:0x1e8,_0x25a811:0x212,_0x134c8a:0xf8,_0x287c03:0x14f,_0x3bb416:0x187,_0x21e52e:0x10d,_0x4af1c3:0x1c5,_0x35cd61:0xea,_0x2330e9:0x189,_0x14a38e:0x16a,_0x5df6d6:0xf1,_0x28f3d6:0x28b,_0x502f94:0x15c,_0x980fa4:0xf5,_0x411b32:0x1ae,_0x1fadb5:0x192,_0x1a39eb:0x1cd,_0x47963b:0x2ac,_0x41d28b:0xe9,_0x2e3935:0xa9,_0x34b5dd:0xfe,_0x5b9fb6:0x218,_0x20af27:0x18b,_0x362ce8:0x1c,_0x1901b0:0xae,_0x394850:0x2f,_0x1ddbeb:0x196,_0x470aa2:0x191},_0x481b57={_0x438ea1:0x1c2,_0x4ec46b:0x5b,_0x5b8140:0x34c},_0xbb0162={};_0xbb0162[_0x45fcf9(0x11d,_0x3985de._0x33ea4d,_0x3985de._0x274c11,0x62)]=function(_0x370891,_0x532bc3){return _0x370891===_0x532bc3;};function _0x45fcf9(_0x472e5a,_0x35e8ad,_0x3e2608,_0x3c8483){return _0x57d1e8(_0x472e5a-0x23,_0x35e8ad-0x83,_0x472e5a,_0x3e2608- -0x43c);}_0xbb0162['KKqPE']='dev.azure.'+_0x45fcf9(0x1bf,0x9f,_0x3985de._0x5dfd15,_0x3985de._0x43b450),_0xbb0162[_0x45fcf9(0x166,0x1aa,_0x3985de._0x1f66be,0x1be)]=function(_0x3e72f2,_0x3b3cbd){return _0x3e72f2!==_0x3b3cbd;},_0xbb0162[_0x4bc8cf(0x1e8,_0x3985de._0x1d6899,0x269,0x239)]='eDgjs',_0xbb0162[_0x4bc8cf(0x16b,0xe3,0x188,0x197)]=_0x45fcf9(0x19a,_0x3985de._0x54ad9a,0x16e,_0x3985de._0x1249c4);const _0x719c00=_0xbb0162,{repositoryUrls:_0x277e76,logger:_0x5e589e}=_0x1fc864,_0x1e14c8={};_0x1e14c8[_0x45fcf9(_0x3985de._0x203bfc,0x7a,0x58,_0x3985de._0x45d545)]=_0x5e589e;const {token:_0x3e2e94}=await this['generateTo'+'ken'](_0x1e14c8);if(!_0x277e76||_0x719c00[_0x45fcf9(0x4c,_0x3985de._0x3358aa,0xd5,_0x3985de._0x213aef)](_0x277e76['length'],0x12e5*0x2+-0x221a+-0x3b0))return'';const _0x9c5025=[];for(const _0x3a8aff of _0x277e76){let _0x3551e8=_0x719c00[_0x45fcf9(_0x3985de._0xa8fd86,_0x3985de._0x5e4b31,0xb2,0x12b)],_0x49afcf='';try{if(_0x719c00[_0x4bc8cf(0x288,_0x3985de._0xd69383,_0x3985de._0x407912,0x25a)](_0x719c00[_0x4bc8cf(_0x3985de._0x53bbcb,0x160,_0x3985de._0x25a811,0x14e)],_0x719c00['bHKOt'])){const _0x2c392c=new URL(_0x3a8aff);_0x3551e8=_0x2c392c['hostname'],_0x49afcf=_0x2c392c[_0x4bc8cf(0x18c,_0x3985de._0x134c8a,_0x3985de._0x287c03,0x105)][_0x4bc8cf(_0x3985de._0x3bb416,0x10a,0x1ef,0x15a)](/^\//,'')[_0x4bc8cf(0x187,_0x3985de._0x21e52e,_0x3985de._0x4af1c3,_0x3985de._0x35cd61)](/\.git$/,'');}else{const _0x24744c={};return _0x24744c[_0x45fcf9(0x17b,0x1d0,_0x3985de._0x2330e9,_0x3985de._0x14a38e)]=![],_0x24744c[_0x45fcf9(0x160,0x1be,0x122,_0x3985de._0x5df6d6)]=_0x4bc8cf(_0x3985de._0x28f3d6,0x234,0x322,0x284)+_0x45fcf9(_0x3985de._0x502f94,_0x3985de._0x980fa4,0x13f,0x154)+_0x4bc8cf(0x1d9,_0x3985de._0x411b32,_0x3985de._0x1fadb5,0x179)+this[_0x4bc8cf(0x21a,_0x3985de._0x1a39eb,_0x3985de._0x47963b,0x258)]+('\x22\x20has\x20no\x20s'+_0x45fcf9(_0x3985de._0x41d28b,0x109,_0x3985de._0x2e3935,_0x3985de._0x34b5dd)+'h\x20configur'+'ed'),_0x24744c;}}catch{continue;}_0x49afcf&&_0x9c5025['push'](_0x4bc8cf(0x221,0x1fa,0x2ab,_0x3985de._0x5b9fb6)+_0x45fcf9(_0x3985de._0x20af27,0x1a8,0x186,0x144)+_0x45fcf9(0xb1,_0x3985de._0x362ce8,_0x3985de._0x1901b0,_0x3985de._0x394850)+_0x3e2e94+'@'+_0x3551e8+'/'+_0x49afcf);}function _0x4bc8cf(_0x17766e,_0x5b1589,_0x3a3e8f,_0x32b56c){return _0x57d1e8(_0x17766e-_0x481b57._0x438ea1,_0x5b1589-_0x481b57._0x4ec46b,_0x3a3e8f,_0x17766e- -_0x481b57._0x5b8140);}return _0x9c5025[_0x45fcf9(0x118,_0x3985de._0x1ddbeb,_0x3985de._0x470aa2,0xf0)]('\x0a');}async[_0x57d1e8(0x538,0x66b,0x61d,0x5d0)+_0x57d1e8(0x519,0x4c5,0x59e,0x50e)+'o'](_0x294c68,_0xaceeba={}){const _0x2e694a={_0x5ad490:0x47d,_0x520aa8:0x4a4,_0x512a53:0xa3,_0x3c3ebf:0xf1,_0xace5ba:0x2b,_0x57978e:0x1b7,_0x37225b:0x1e2,_0x225469:0x11d,_0x3d2a83:0x1f9,_0x2a6691:0x573,_0x28d7c5:0x61a,_0xb91a58:0x517,_0x2e4d82:0x4f6,_0x17fb17:0x1ee,_0x356529:0x139,_0x4c39e4:0x55c,_0x3de4b8:0x4cf,_0x1a2b65:0x1f7,_0x20b989:0xe8,_0x4c87d8:0x606,_0x1fb5eb:0x5ba,_0x17f24c:0x5f5,_0xfddf2e:0x207,_0x4762f1:0x146,_0x12b098:0x5b4,_0x5168cc:0x617,_0xdee15e:0x557,_0x47ca34:0x1c7,_0x570f84:0x17d,_0x26f7e9:0x58b,_0x29928c:0x5dd,_0x419ec9:0x179,_0x297d38:0x1c2,_0x422227:0x46f,_0x54fd32:0x102,_0xff482:0x11b,_0x462b0e:0x1b5,_0x1701c9:0x53d,_0x508117:0x5dc,_0x11113d:0xac,_0x5e73d4:0xd3,_0x39867c:0x19d,_0x5043b6:0x201,_0x58390f:0x93,_0x27aa81:0x10f,_0x18c1c0:0x166,_0x42500c:0x1ff,_0x57b5f4:0x198,_0x549407:0x18b,_0x56fa90:0x258,_0x4d8311:0x1c6,_0x56e615:0x569,_0x2982a3:0x555,_0x3db445:0x5a1,_0x29013d:0x487,_0xa2768b:0x51e,_0x13e37b:0x4f0,_0x49439b:0x5a4,_0x21a102:0x593,_0x3c77fc:0x182,_0x7c620e:0x154},_0x300657={_0x4a7057:0x14b,_0x3052a8:0x1e7},_0x184217={_0x584157:0x140,_0x16ea38:0x131},_0x108c16={};function _0x541b64(_0x5eb8c5,_0x26272c,_0x23524a,_0x499f89){return _0x57d1e8(_0x5eb8c5-_0x184217._0x584157,_0x26272c-_0x184217._0x16ea38,_0x26272c,_0x5eb8c5- -0x23);}_0x108c16[_0x541b64(_0x2e694a._0x5ad490,_0x2e694a._0x520aa8,0x476,0x3f6)]=_0x2e522c(-_0x2e694a._0x512a53,-0xd6,-_0x2e694a._0x3c3ebf,-_0x2e694a._0xace5ba),_0x108c16[_0x2e522c(-_0x2e694a._0x57978e,-_0x2e694a._0x37225b,-_0x2e694a._0x225469,-_0x2e694a._0x3d2a83)]=function(_0x5dc642,_0x28cd30){return _0x5dc642===_0x28cd30;},_0x108c16[_0x541b64(0x549,0x4f3,0x4eb,0x525)]=_0x541b64(_0x2e694a._0x2a6691,_0x2e694a._0x28d7c5,_0x2e694a._0xb91a58,_0x2e694a._0x2e4d82),_0x108c16['mWirD']=function(_0x2b473a,_0x8bbe6f){return _0x2b473a+_0x8bbe6f;},_0x108c16['SOWLD']=_0x2e522c(-0x195,-_0x2e694a._0x17fb17,-_0x2e694a._0x356529,-0x23b)+_0x541b64(0x54c,0x540,_0x2e694a._0x4c39e4,_0x2e694a._0x3de4b8)+_0x2e522c(-0x168,-0x108,-_0x2e694a._0x1a2b65,-_0x2e694a._0x20b989)+'ure\x20DevOps'+_0x541b64(0x591,_0x2e694a._0x4c87d8,_0x2e694a._0x1fb5eb,_0x2e694a._0x17f24c);const _0x555d25=_0x108c16,{logger:logger=_0x346a99,credentialMode:credentialMode=_0x555d25['rPNTs'],userId:_0x987e83,providerName:_0x3d39d1}=_0xaceeba;if(_0x555d25[_0x2e522c(-0x1b7,-0x19e,-_0x2e694a._0xfddf2e,-_0x2e694a._0x4762f1)](credentialMode,_0x555d25['gEGRY']))throw new Error(_0x555d25['mWirD'](_0x541b64(_0x2e694a._0x12b098,0x5f9,_0x2e694a._0x5168cc,_0x2e694a._0xdee15e)+_0x2e522c(-_0x2e694a._0x47ca34,-_0x2e694a._0x570f84,-0x263,-0x165)+_0x541b64(_0x2e694a._0x26f7e9,0x518,0x55c,_0x2e694a._0x29928c)+_0x2e522c(-0x136,-0xfc,-0x142,-_0x2e694a._0x419ec9)+'mented.\x20','Please\x20cha'+_0x2e522c(-_0x2e694a._0x297d38,-0x1e2,-0x244,-0x168)+_0x541b64(0x504,_0x2e694a._0x422227,0x54f,0x48d)+_0x2e522c(-0x14d,-0x146,-_0x2e694a._0x54fd32,-0x110)+'Credential'+_0x541b64(0x4a5,0x4b9,0x4a9,0x538)+_0x2e522c(-0x12e,-_0x2e694a._0xff482,-_0x2e694a._0x462b0e,-0x16a)+_0x541b64(0x58a,_0x2e694a._0x1701c9,_0x2e694a._0x508117,0x554)+_0x2e522c(-_0x2e694a._0x11113d,-_0x2e694a._0x5e73d4,-0xd4,-0x118)));const _0x401ca8={};_0x401ca8[_0x2e522c(-_0x2e694a._0x39867c,-0x225,-_0x2e694a._0x5043b6,-0x10f)]=this[_0x2e522c(-0x103,-0x97,-_0x2e694a._0x58390f,-_0x2e694a._0x27aa81)],_0x401ca8['repoUrl']=_0x294c68,logger['debug'](_0x555d25['SOWLD'],_0x401ca8);const _0x188ffa={};_0x188ffa[_0x2e522c(-0x1d5,-_0x2e694a._0x18c1c0,-_0x2e694a._0x42500c,-_0x2e694a._0x57b5f4)]=logger;const {token:_0x37e9b4,expires_at:_0x53846b}=await this[_0x2e522c(-0x1b8,-_0x2e694a._0x549407,-_0x2e694a._0x56fa90,-_0x2e694a._0x4d8311)+_0x541b64(_0x2e694a._0x56e615,0x532,_0x2e694a._0x2982a3,_0x2e694a._0x3db445)](_0x188ffa);function _0x2e522c(_0x43da12,_0x354d7d,_0x3c73ed,_0x1a4d05){return _0x57d1e8(_0x43da12-_0x300657._0x4a7057,_0x354d7d-_0x300657._0x3052a8,_0x1a4d05,_0x43da12- -0x669);}const _0x2bc07e={};return _0x2bc07e[_0x541b64(_0x2e694a._0x29013d,0x516,_0x2e694a._0xa2768b,_0x2e694a._0x13e37b)]=_0x541b64(0x52f,_0x2e694a._0x49439b,_0x2e694a._0x3de4b8,_0x2e694a._0x21a102)+_0x2e522c(-_0x2e694a._0x3c77fc,-0x11e,-_0x2e694a._0x7c620e,-0x165),_0x2bc07e['password']=_0x37e9b4,_0x2bc07e['expires_at']=_0x53846b,_0x2bc07e;}async[_0x57d1e8(0x463,0x437,0x480,0x4b4)+_0x57d1e8(0x482,0x4e0,0x4bb,0x4dc)](){const _0x4604a6={_0xefd14b:0x7,_0x1b4af7:0x25,_0x53c80b:0x11,_0x25220b:0xa2,_0x43a114:0x79,_0x4b0e41:0x103,_0x1ec354:0x13f,_0x3a6baf:0x106,_0x4e177f:0x3b,_0x3f08f9:0x73,_0x2e3da9:0xa3,_0x3d0876:0xd2,_0x4e3338:0xa1,_0x19c16a:0xa4,_0x253bd1:0x96,_0x174158:0x98,_0x7f90ac:0x39,_0xd338fb:0x171,_0x4a76a2:0x10f,_0x268359:0x115,_0x4ca12c:0x115,_0xd07fec:0xfa,_0x2be382:0x43,_0x42d7d0:0x167,_0xdff7f5:0x11e,_0x2d6db6:0xf1,_0x28074f:0x13,_0x392860:0x10e,_0x121d79:0xf8,_0x3eac82:0x116,_0x1ee148:0x72,_0x2b249f:0xbf,_0x5e5397:0x37,_0x362e4a:0x3d,_0x6f7c80:0x44,_0x3dab0a:0xf6,_0x41210b:0x85,_0x14e694:0x6c,_0x2468f0:0x5,_0x3b16ca:0x130,_0x1bf4f9:0x14a,_0x10b27f:0x63,_0xd19ea3:0x84,_0x14edc6:0xde,_0x4424c7:0x8a,_0x19966d:0x84,_0x193a76:0xc8,_0x56fd82:0xe5,_0x2f9698:0x11b,_0x2b842b:0x55,_0x176b30:0x19,_0x3bdbc7:0xb7,_0x20eab7:0x4a,_0x2d3d63:0x42,_0x48348c:0x8b,_0x4bd1d8:0x1e,_0x4c9c60:0x88,_0x52b0bc:0xfe,_0x22ffcc:0x17e,_0x5f3c78:0x87,_0x4e99ea:0xed,_0x6dbe11:0x28,_0x28e8e5:0x3d,_0x217621:0x92,_0x429df2:0xc5,_0x3edf4e:0x7f,_0x2aae0f:0x83,_0x521492:0x11,_0xbe898b:0x1,_0x27e76a:0x31,_0x300b7f:0x3e,_0x550565:0x7f,_0x520f8a:0x20,_0x2d44a4:0xc0,_0x3b573d:0x14e,_0x3f9ce1:0xbe,_0x57ab42:0x4b,_0x42e4c8:0x90,_0x56c319:0x16,_0x14a454:0x30,_0x540d95:0x54,_0x588ac:0x1d,_0x8de37c:0xb4,_0x4502c4:0x87,_0x306c81:0x126,_0xf86567:0x7f,_0x55a4a5:0xb5,_0x1d514b:0x74,_0x43d012:0x15,_0x56d40a:0x89,_0x4561af:0x4,_0x31bfaa:0x10b,_0x55f78c:0x82,_0x34ea7d:0x4e,_0x454ad5:0x6e,_0x7b20a8:0x13,_0x284b76:0x59,_0x38368f:0x85,_0x3be0dc:0xdf,_0x20ab17:0x61,_0x22236d:0x81,_0x2fa18f:0xfd,_0x2fff5d:0x6f,_0x25f246:0x5c,_0x12bfa7:0x14b,_0x2d1a82:0x64,_0x499abf:0xae,_0x2f2fd9:0x22,_0x123796:0x60,_0x9afa7a:0xf7,_0xc573b6:0x75,_0x47b837:0x1e,_0x13717a:0xb4,_0x21aa85:0x40,_0x49d5c6:0x6b,_0x12b435:0xef},_0x572188={_0x3d96a7:0x166,_0x3b694f:0x4e3},_0x47d27b={_0x4c23c5:0x101,_0x17f498:0xb7},_0x75d041={'BOYCY':_0x122dcc(-_0x4604a6._0xefd14b,_0x4604a6._0x1b4af7,-0x3c,_0x4604a6._0x53c80b),'jIpVV':_0x122dcc(_0x4604a6._0x25220b,0xc9,-0x1a,0x4f),'XnIKR':function(_0x1ad81f,_0x30b220,_0x57bc55){return _0x1ad81f(_0x30b220,_0x57bc55);},'RdFHL':'applicatio'+_0x122dcc(0x7c,0x1,0x10a,_0x4604a6._0x43a114),'GgURw':function(_0xbaa675,_0xe7903d){return _0xbaa675===_0xe7903d;},'GjTOE':_0x575909(-_0x4604a6._0x4b0e41,-_0x4604a6._0x1ec354,-_0x4604a6._0x3a6baf,-0x19a),'zfapZ':_0x122dcc(-_0x4604a6._0x4e177f,-_0x4604a6._0x3f08f9,-_0x4604a6._0x2e3da9,-0x49)};function _0x575909(_0x1ddcfc,_0x1c6988,_0x201395,_0x2db568){return _0x50ddaa(_0x201395- -0x208,_0x2db568,_0x201395-_0x47d27b._0x4c23c5,_0x2db568-_0x47d27b._0x17f498);}function _0x122dcc(_0x1b1cc9,_0x2e6702,_0x46d78f,_0x43b80e){return _0x57d1e8(_0x1b1cc9-0x99,_0x2e6702-_0x572188._0x3d96a7,_0x1b1cc9,_0x43b80e- -_0x572188._0x3b694f);}try{if(_0x75d041['jIpVV']===_0x75d041[_0x575909(-_0x4604a6._0x3d0876,-0x60,-_0x4604a6._0x4e3338,-_0x4604a6._0x19c16a)]){const {token:_0x29a352}=await this['generateTo'+'ken'](),_0x27c90a=_0x575909(-_0x4604a6._0x253bd1,-0x11b,-_0x4604a6._0x174158,-0x77)+_0x122dcc(_0x4604a6._0x7f90ac,0x142,_0x4604a6._0xd338fb,0xd3)+'m/'+this[_0x575909(-_0x4604a6._0x4a76a2,-0x8d,-_0x4604a6._0x268359,-_0x4604a6._0x4ca12c)+'on']+(_0x122dcc(_0x4604a6._0xd07fec,_0x4604a6._0x2be382,_0x4604a6._0x42d7d0,0xce)+_0x575909(-0xbc,-_0x4604a6._0xdff7f5,-0x9a,-_0x4604a6._0x2d6db6)+_0x575909(_0x4604a6._0x28074f,0x1a,-0xc,-0x14)+_0x575909(-_0x4604a6._0x392860,-_0x4604a6._0x121d79,-_0x4604a6._0x3eac82,-_0x4604a6._0x1ee148)),_0x3f5b24=await _0x75d041[_0x575909(0x11,-_0x4604a6._0x2b249f,-0x4d,-0x75)](fetch,_0x27c90a,{'headers':{'Authorization':_0x122dcc(-_0x4604a6._0x5e5397,_0x4604a6._0x362e4a,_0x4604a6._0x6f7c80,-0x37)+_0x29a352,'Accept':_0x75d041[_0x122dcc(_0x4604a6._0x3dab0a,_0x4604a6._0x41210b,_0x4604a6._0x14e694,0x72)]}});if(_0x3f5b24['ok']){if(_0x75d041[_0x575909(-0x3b,-0x8c,-_0x4604a6._0x2468f0,-0x11)](_0x75d041['GjTOE'],_0x75d041[_0x575909(-_0x4604a6._0x3b16ca,-0x77,-_0x4604a6._0x19c16a,-0x88)])){const _0x169cf9=await _0x3f5b24[_0x122dcc(0x58,_0x4604a6._0x1bf4f9,0x5a,_0x4604a6._0x3d0876)](),_0x59ac0a={};return _0x59ac0a[_0x575909(-0xa5,-0x33,-0x54,-_0x4604a6._0x10b27f)]=!![],_0x59ac0a[_0x122dcc(0x1b,_0x4604a6._0xd19ea3,_0x4604a6._0x14edc6,0x7b)]=_0x575909(-0x97,-_0x4604a6._0x42d7d0,-0xe1,-_0x4604a6._0x4424c7)+_0x122dcc(_0x4604a6._0x362e4a,_0x4604a6._0x19966d,_0x4604a6._0x193a76,0xa7)+_0x575909(-0x178,-0x18a,-0xe5,-0xd6)+'\x20to\x20'+_0x169cf9[_0x122dcc(0x11e,_0x4604a6._0x56fd82,_0x4604a6._0x2f9698,0xde)]+(_0x575909(0x72,_0x4604a6._0x2b842b,-0x17,_0x4604a6._0x176b30)+').'),_0x59ac0a[_0x122dcc(_0x4604a6._0x3bdbc7,0x4a,_0x4604a6._0x20eab7,0x4b)]={},_0x59ac0a[_0x122dcc(_0x4604a6._0x3bdbc7,0x4a,_0x4604a6._0x20eab7,0x4b)][_0x575909(-_0x4604a6._0x2d3d63,-_0x4604a6._0x48348c,-_0x4604a6._0x4bd1d8,0x54)+_0x575909(-_0x4604a6._0x4c9c60,-_0x4604a6._0x5e5397,-0x9d,-0x91)]=_0x169cf9[_0x122dcc(_0x4604a6._0x52b0bc,0xa1,0x170,0xde)],_0x59ac0a[_0x122dcc(_0x4604a6._0x3bdbc7,0x4a,_0x4604a6._0x20eab7,0x4b)]['organizati'+'on']=this[_0x575909(-_0x4604a6._0x22ffcc,-0x101,-_0x4604a6._0x4ca12c,-0x7c)+'on'],_0x59ac0a;}else{const _0x5b1d3e={};return _0x5b1d3e[_0x575909(0x1d,0x75,-0x20,-0x61)]=![],_0x5b1d3e[_0x575909(-0x10,-_0x4604a6._0x3d0876,-_0x4604a6._0x5f3c78,-0xa7)]=_0x122dcc(0xa8,0x5f,0x119,0xf4)+_0x122dcc(0x110,_0x4604a6._0x4e99ea,0x11c,0x98)+_0x122dcc(-_0x4604a6._0x6dbe11,-_0x4604a6._0x2b842b,-_0x4604a6._0x28e8e5,_0x4604a6._0x2d3d63)+this[_0x122dcc(_0x4604a6._0x217621,_0x4604a6._0x429df2,_0x4604a6._0x3edf4e,_0x4604a6._0x2aae0f)]+(_0x122dcc(_0x4604a6._0x521492,-_0x4604a6._0xbe898b,_0x4604a6._0x27e76a,-_0x4604a6._0x300b7f)+_0x122dcc(-0xc,_0x4604a6._0x550565,0x17,-_0x4604a6._0x520f8a)+_0x575909(-0xdb,-_0x4604a6._0x2d44a4,-_0x4604a6._0x3b573d,-0x1bf)+_0x122dcc(_0x4604a6._0x43a114,_0x4604a6._0x3f9ce1,_0x4604a6._0x57ab42,0x9a))+this[_0x575909(-0xb3,-0x36,-0x40,-0x8a)+_0x575909(-0xd4,-0x49,-0xa6,-_0x4604a6._0x42e4c8)],_0x5b1d3e;}}else{const _0x56bbb3=await _0x3f5b24[_0x122dcc(_0x4604a6._0xdff7f5,_0x4604a6._0x2d44a4,0x4e,_0x4604a6._0x3d0876)]()[_0x575909(0x4c,0x85,-_0x4604a6._0x56c319,-0x82)](()=>({})),_0x259ad1={};return _0x259ad1[_0x575909(_0x4604a6._0x14a454,-0x6c,-_0x4604a6._0x540d95,-0xb1)]=![],_0x259ad1[_0x575909(_0x4604a6._0x588ac,-_0x4604a6._0x8de37c,-_0x4604a6._0x4502c4,-_0x4604a6._0x306c81)]=_0x575909(_0x4604a6._0x3edf4e,-0x81,-0xe,-0x8c)+'ps\x20API\x20err'+_0x122dcc(0x52,-0xa3,0x41,_0x4604a6._0xbe898b)+_0x3f5b24[_0x575909(-_0x4604a6._0xf86567,-_0x4604a6._0x55a4a5,-0x3f,-0x8f)]+_0x122dcc(0x79,-_0x4604a6._0x1d514b,-_0x4604a6._0x43d012,_0x4604a6._0x27e76a)+(_0x56bbb3[_0x575909(-_0x4604a6._0x56d40a,-0xec,-_0x4604a6._0x4502c4,_0x4604a6._0x4561af)]||_0x3f5b24[_0x122dcc(-0x1f,0x7c,_0x4604a6._0x31bfaa,_0x4604a6._0x55f78c)]),_0x259ad1;}}else _0x1cadac[_0x575909(_0x4604a6._0x34ea7d,-_0x4604a6._0x454ad5,-_0x4604a6._0x7b20a8,-0x1d)](_0x575909(0x14,-0x75,-0x78,-0x34)+_0x122dcc(_0x4604a6._0x284b76,0x17f,_0x4604a6._0x38368f,_0x4604a6._0x3be0dc)+_0x122dcc(-0x76,-_0x4604a6._0x20ab17,-0x4c,0x7)+_0x3e81b5+'@'+_0x203f33+'/'+_0x2f4cad);}catch(_0x4772ca){if(_0x75d041[_0x122dcc(_0x4604a6._0x22236d,0x105,0x6b,_0x4604a6._0x2fa18f)](_0x75d041[_0x575909(-0xe7,-0xdc,-_0x4604a6._0x2fff5d,-_0x4604a6._0x25f246)],_0x575909(-0x148,-0xc5,-_0x4604a6._0x12bfa7,-0x137))){const _0x5d6980={};return _0x5d6980[_0x122dcc(_0x4604a6._0x2d1a82,0xec,0x98,_0x4604a6._0x499abf)]=![],_0x5d6980['message']=_0x575909(-0x5f,_0x4604a6._0x2f2fd9,-_0x4604a6._0x123796,-_0x4604a6._0x9afa7a)+_0x122dcc(0xa0,-0xe,0xdd,_0x4604a6._0xc573b6)+_0x4772ca['message'],_0x5d6980;}else{const _0x3d0197=(this[_0x122dcc(0xac,_0x4604a6._0x47b837,0x102,_0x4604a6._0x13717a)]||_0x75d041[_0x122dcc(_0x4604a6._0x21aa85,_0x4604a6._0x49d5c6,-0x9,0x85)])+':'+this['name'];_0x3d37d8[_0x122dcc(0xd0,_0x4604a6._0x123796,_0x4604a6._0x12b435,0xe8)](_0x3d0197);}}}async[_0x57d1e8(0x626,0x5aa,0x5ac,0x58b)+_0x50ddaa(0x1c4,0x151,0x259,0x18c)](){const _0x463ab8={_0x5d1bd4:0xbd,_0x435d02:0x49,_0x4c0f88:0x91,_0x5ce4d1:0x80,_0x352112:0x2be,_0x459201:0x12d,_0x48ed16:0x336,_0x3e4679:0x2cf,_0x397590:0x303,_0x246bf0:0x21,_0x11c17d:0x8d,_0x20a086:0x2b1,_0x2ec7a5:0x165,_0x2939ef:0xc5,_0x227da4:0x1e,_0x14c2df:0x29,_0x125491:0x128,_0x164224:0x44,_0x139d08:0x91,_0x5b1354:0x176,_0x29d33a:0x8f,_0x132952:0x96,_0x571de9:0x3d6,_0x377ac0:0x449,_0x6b73d9:0x405,_0x4aef85:0xa0,_0x3821bf:0x14b,_0x438c9f:0x134,_0xbba814:0x13a,_0x105d0e:0x301,_0x1209b8:0x279,_0x2a101f:0x13c,_0x1fc5f4:0x6e,_0x260931:0x9a,_0x51f44d:0x3d,_0x22f61d:0xd6,_0x5756d6:0x38,_0x408b80:0x2dc,_0x2f7aab:0x339,_0xbb64f1:0x41f,_0x2f2025:0x3d0,_0x5ba168:0x33b,_0x265561:0x385,_0x4d6c5f:0x36a,_0x10949e:0x394,_0x1e03ac:0x2ca,_0x51b736:0x49a,_0x4e175b:0x361,_0x19b029:0x433,_0x30fe9a:0x2e6,_0x4c3aaa:0x387,_0x42b084:0x277,_0x36d3f1:0x2ce,_0x34b6c7:0x250,_0x26c485:0xd8,_0x53b635:0x65,_0x215f26:0xaf,_0x3f656d:0x357,_0x4c571f:0x3d9,_0x269753:0x39e,_0x54ed2f:0x31c,_0x2b083d:0x3b9,_0x49f1b5:0xfc,_0x5e3fa6:0x97,_0x56c89e:0x8b,_0x192c9d:0x124,_0x42b338:0x380,_0xcc9964:0x3d4,_0x3c39d3:0x2f2,_0x34d772:0xb2,_0x5ae9c0:0x36e,_0x79d166:0x39d,_0x4eeba6:0x304,_0x5cba7b:0x76,_0x2041b3:0xb1,_0x315073:0x14a,_0x5c9712:0x2ab,_0x1dc11d:0x38b,_0x497266:0x394,_0x138a3d:0x332,_0x371946:0x3d7,_0x4d836a:0x2b0,_0xb4b4fd:0x2db,_0xd907a:0x58,_0x393802:0x14,_0x4db7fd:0x3e,_0x478ff8:0x396,_0x5dff27:0x3fa,_0x459aad:0xb8,_0x1f0fb1:0xd3,_0x129e10:0x118,_0x47b0a6:0x77,_0x322e04:0x2b,_0x147030:0x2e,_0x4c3bd7:0x3f1,_0x408030:0x464,_0x417598:0x76,_0x437cbf:0xf5,_0x1be107:0x334,_0x4d4d15:0x33f,_0x2ac6fc:0x38a,_0x454ba6:0x182,_0x44d914:0xa1,_0x2fb94f:0x171,_0x3c78c6:0xa9,_0xba5963:0xf5,_0x1edbfb:0x33d,_0x39c162:0x2eb,_0x528546:0x3b2,_0x2bf34f:0x9,_0x1b0069:0x28a,_0x235949:0x65,_0x4cef38:0xae,_0x36f7f9:0x38d,_0x33447b:0x3e4,_0xc93977:0x3ee,_0x40d1a7:0x3b7,_0x352af2:0x32f,_0x40c708:0x3e6,_0xcbccdc:0x3f6,_0x1abfb2:0x465,_0x36a33e:0xc9,_0x4451ac:0x153,_0x228b3a:0xf5,_0x28e5ee:0x2dd,_0xd10554:0x1b1,_0x3597a6:0x1ca,_0x420628:0x1ec,_0x2475fa:0x104,_0x348fde:0x187,_0x37e3d0:0xd9,_0x5506de:0xdb,_0x4ac657:0x41,_0xa568a2:0x131,_0x1e645f:0x2,_0x488572:0x199,_0x931405:0x128,_0x4ae712:0x3a7,_0x48d286:0x98,_0x2c70bc:0x2de,_0x1e8d0c:0x273,_0x4728e2:0x12a,_0x50b4e0:0x12c,_0x3d41d8:0x108,_0xdf6e9e:0x37d,_0x38dc3b:0x37e,_0xfe7eb5:0x2b8,_0x2b8978:0x2a1,_0x2634e3:0x225,_0xeb9131:0xb3,_0x13f884:0xee},_0x47043a={_0x5a1211:0x94,_0x2726d5:0x102},_0x502534={_0x3b2a08:0x139,_0x605359:0x1e1},_0x396989={'BnGAv':_0x4ec699(_0x463ab8._0x5d1bd4,_0x463ab8._0x435d02,_0x463ab8._0x4c0f88,_0x463ab8._0x5ce4d1)+'e\x20file\x20doe'+_0x173862(0x33c,0x38d,_0x463ab8._0x352112,0x351)+_0x4ec699(0x101,0x135,_0x463ab8._0x459201,0xcf)+_0x173862(_0x463ab8._0x48ed16,_0x463ab8._0x3e4679,0x34d,_0x463ab8._0x397590)+_0x4ec699(_0x463ab8._0x246bf0,0x102,-0x8,_0x463ab8._0x11c17d),'YPurR':_0x173862(0x357,_0x463ab8._0x20a086,0x2b3,0x393)+_0x4ec699(0x124,0xd0,_0x463ab8._0x2ec7a5,0x133)+_0x4ec699(_0x463ab8._0x2939ef,_0x463ab8._0x227da4,-_0x463ab8._0x14c2df,0x2a)+'ct','mWlHQ':function(_0x425383,_0x4eedc8,_0x49bb7d){return _0x425383(_0x4eedc8,_0x49bb7d);},'LsMkm':_0x4ec699(0x56,_0x463ab8._0x125491,_0x463ab8._0x164224,_0x463ab8._0x139d08)+'n/json','lMIXM':function(_0x47fc4d,_0x120d35){return _0x47fc4d!==_0x120d35;},'oOfak':_0x4ec699(_0x463ab8._0x5b1354,_0x463ab8._0x29d33a,_0x463ab8._0x132952,0x102),'zLNMy':'SrsQd','YeAea':function(_0x1ea43e,_0x365282){return _0x1ea43e===_0x365282;},'ATflb':_0x173862(_0x463ab8._0x571de9,0x3b1,_0x463ab8._0x377ac0,_0x463ab8._0x6b73d9),'LjIpx':_0x4ec699(_0x463ab8._0x4aef85,_0x463ab8._0x3821bf,_0x463ab8._0x438c9f,_0x463ab8._0xbba814)+'/','OdLYT':'main','Cgbbx':_0x173862(_0x463ab8._0x105d0e,0x335,0x276,_0x463ab8._0x1209b8),'Haqvr':function(_0x305a76,_0x5b6a6c){return _0x305a76!==_0x5b6a6c;},'nkItg':_0x4ec699(_0x463ab8._0x2a101f,0x125,_0x463ab8._0x1fc5f4,_0x463ab8._0x260931)},{token:_0x30687c}=await this[_0x4ec699(_0x463ab8._0x51f44d,_0x463ab8._0x22f61d,_0x463ab8._0x5756d6,0x40)+'ken']();function _0x173862(_0x75ed29,_0x4d44a6,_0x12dcbf,_0x25bbea){return _0x57d1e8(_0x75ed29-_0x502534._0x3b2a08,_0x4d44a6-0x1e5,_0x25bbea,_0x75ed29- -_0x502534._0x605359);}function _0x4ec699(_0x576fad,_0x43f111,_0x37bd23,_0x9496f8){return _0x50ddaa(_0x9496f8- -_0x47043a._0x5a1211,_0x37bd23,_0x37bd23-0x3a,_0x9496f8-_0x47043a._0x2726d5);}const _0x3dee8c=[],_0x4cb53f=_0x173862(0x36c,_0x463ab8._0x408b80,_0x463ab8._0x2f7aab,0x338)+_0x173862(0x3d5,0x38c,0x355,_0x463ab8._0xbb64f1)+'m/'+this['organizati'+'on']+(_0x173862(_0x463ab8._0x2f2025,_0x463ab8._0x5ba168,_0x463ab8._0x265561,0x3ca)+_0x173862(_0x463ab8._0x4d6c5f,_0x463ab8._0x10949e,_0x463ab8._0x1e03ac,0x301)+_0x173862(0x3f8,_0x463ab8._0x51b736,_0x463ab8._0x4e175b,_0x463ab8._0x19b029)+'1'),_0x8955f1=await _0x396989[_0x173862(_0x463ab8._0x30fe9a,0x282,_0x463ab8._0x4c3aaa,_0x463ab8._0x42b084)](fetch,_0x4cb53f,{'headers':{'Authorization':'Bearer\x20'+_0x30687c,'Accept':_0x396989[_0x173862(_0x463ab8._0x36d3f1,_0x463ab8._0x34b6c7,0x32c,0x255)]}});if(!_0x8955f1['ok']){if(_0x396989[_0x4ec699(0x157,0xb2,0x4e,_0x463ab8._0x26c485)](_0x396989['oOfak'],_0x396989['oOfak']))throw new _0x560ce2(_0x396989[_0x4ec699(_0x463ab8._0x53b635,0x92,_0x463ab8._0x215f26,0xc9)]);else{const _0x574c05=await _0x8955f1['json']()['catch'](()=>({}));throw new Error(_0x173862(_0x463ab8._0x3f656d,0x386,_0x463ab8._0x4c571f,_0x463ab8._0x269753)+'list\x20proje'+_0x173862(0x30b,_0x463ab8._0x54ed2f,0x390,0x2d2)+_0x8955f1[_0x173862(0x3c5,0x336,_0x463ab8._0x2b083d,0x332)]+_0x4ec699(_0x463ab8._0x49f1b5,_0x463ab8._0x5e3fa6,0x18,0xa3)+(_0x574c05[_0x4ec699(_0x463ab8._0x56c89e,_0x463ab8._0x192c9d,0x7f,0xed)]||_0x8955f1[_0x173862(0x384,0x42c,0x380,_0x463ab8._0x42b338)]));}}const _0x3547e8=await _0x8955f1[_0x173862(_0x463ab8._0xcc9964,0x3d5,0x37a,0x397)]();for(const _0x3fe3d6 of _0x3547e8[_0x173862(_0x463ab8._0x352112,0x29c,0x310,0x23d)]){const _0x4050c7=_0x173862(0x36c,0x2f4,0x349,_0x463ab8._0x3c39d3)+_0x4ec699(0x1e7,_0x463ab8._0x34d772,0xe1,0x145)+'m/'+this['organizati'+'on']+'/'+_0x3fe3d6[_0x173862(_0x463ab8._0x265561,0x3d2,_0x463ab8._0x5ae9c0,0x35a)]+(_0x173862(0x398,_0x463ab8._0x79d166,_0x463ab8._0x4eeba6,0x42b)+_0x4ec699(0x19,0x69,_0x463ab8._0x5cba7b,_0x463ab8._0x2041b3)+_0x4ec699(0xde,0x103,0x1c5,_0x463ab8._0x315073)+_0x173862(0x3f4,0x3ee,0x404,0x3ea));try{if(_0x396989['zLNMy']===_0x396989[_0x173862(0x2fc,_0x463ab8._0x5c9712,_0x463ab8._0x1dc11d,_0x463ab8._0x497266)]){const _0x380cc6={};_0x380cc6[_0x173862(_0x463ab8._0x138a3d,_0x463ab8._0x371946,_0x463ab8._0x4d836a,_0x463ab8._0xb4b4fd)+_0x4ec699(-0xe,_0x463ab8._0xd907a,0x8,0x81)]='Bearer\x20'+_0x30687c,_0x380cc6['Accept']=_0x396989[_0x4ec699(-0x33,_0x463ab8._0x393802,0x7a,_0x463ab8._0x4db7fd)];const _0x116e65={};_0x116e65[_0x173862(_0x463ab8._0x478ff8,0x39c,_0x463ab8._0x5dff27,0x3b9)]=_0x380cc6;const _0x21ecb4=await fetch(_0x4050c7,_0x116e65);if(_0x21ecb4['ok']){if(_0x396989['YeAea'](_0x396989[_0x4ec699(_0x463ab8._0x459aad,0x1a8,_0x463ab8._0x1f0fb1,_0x463ab8._0x129e10)],_0x396989['ATflb'])){const _0x616b91=await _0x21ecb4['json']();for(const _0x63b054 of _0x616b91[_0x4ec699(0x61,-_0x463ab8._0x47b0a6,-_0x463ab8._0x322e04,_0x463ab8._0x147030)]){_0x3dee8c[_0x173862(_0x463ab8._0x4c3bd7,0x3f6,_0x463ab8._0x408030,0x451)]({'name':_0x63b054[_0x4ec699(_0x463ab8._0x417598,0x106,0xe0,_0x463ab8._0x437cbf)],'full_name':_0x3fe3d6[_0x173862(0x385,_0x463ab8._0x1be107,_0x463ab8._0x4d4d15,_0x463ab8._0x2ac6fc)]+'/'+_0x63b054[_0x4ec699(_0x463ab8._0x454ba6,0xbc,0x68,_0x463ab8._0x437cbf)],'project':_0x3fe3d6[_0x4ec699(_0x463ab8._0x44d914,_0x463ab8._0x2fb94f,_0x463ab8._0x3c78c6,_0x463ab8._0xba5963)],'clone_url':_0x63b054[_0x173862(_0x463ab8._0x1edbfb,_0x463ab8._0x39c162,0x2b4,_0x463ab8._0x528546)],'default_branch':_0x63b054[_0x4ec699(0x3c,_0x463ab8._0x2bf34f,0x60,0x72)+'nch']?.[_0x173862(_0x463ab8._0x3c39d3,0x31a,_0x463ab8._0x1b0069,0x37d)](_0x396989['LjIpx'],'')||_0x396989[_0x4ec699(0xd2,0xb6,_0x463ab8._0x235949,_0x463ab8._0x4cef38)],'description':_0x3fe3d6['descriptio'+'n'],'descriptionSource':_0x396989[_0x173862(0x3ac,0x3d1,_0x463ab8._0x36f7f9,0x454)],'private':_0x396989['lMIXM'](_0x3fe3d6['visibility'],'public')});}}else{const _0x3c27cd={};return _0x3c27cd[_0x173862(_0x463ab8._0x33447b,_0x463ab8._0xc93977,_0x463ab8._0x40d1a7,0x417)]=![],_0x3c27cd[_0x173862(0x37d,0x2de,_0x463ab8._0x352af2,_0x463ab8._0x40c708)]=_0x173862(_0x463ab8._0xcbccdc,_0x463ab8._0x1abfb2,0x3f1,0x3f1)+'ps\x20provide'+_0x173862(0x344,0x386,_0x463ab8._0x36f7f9,0x31f)+this[_0x4ec699(_0x463ab8._0x36a33e,_0x463ab8._0x260931,_0x463ab8._0x4451ac,_0x463ab8._0x228b3a)]+(_0x173862(_0x463ab8._0x28e5ee,0x385,0x2aa,0x2ab)+_0x4ec699(_0x463ab8._0xd10554,_0x463ab8._0x3597a6,_0x463ab8._0x420628,0x167)+_0x4ec699(_0x463ab8._0x2475fa,0x140,_0x463ab8._0x348fde,0x10e)+_0x4ec699(0x8e,_0x463ab8._0x37e3d0,0x121,_0x463ab8._0x5506de)),_0x3c27cd;}}}else return'';}catch(_0x1a4b95){if(_0x396989['Haqvr'](_0x396989[_0x4ec699(0x6f,0x111,_0x463ab8._0x4ac657,0xb7)],_0x4ec699(_0x463ab8._0xa568a2,_0x463ab8._0x1e645f,0x11d,_0x463ab8._0x260931))){const _0x505783={};_0x505783['project']=_0x5eb28a[_0x4ec699(_0x463ab8._0x488572,_0x463ab8._0x931405,0xee,0xf5)],_0x505783[_0x173862(0x312,0x27a,_0x463ab8._0x4ae712,0x38c)]=_0x1e125c['message'],_0x31137d[_0x4ec699(0xcb,-0x28,_0x463ab8._0x48d286,0x28)](_0x396989[_0x173862(_0x463ab8._0x2c70bc,_0x463ab8._0x1e8d0c,0x312,_0x463ab8._0x408b80)],_0x505783);}else{const _0x234eec={};_0x234eec[_0x173862(0x301,0x2c8,0x2e1,0x299)]=_0x3fe3d6[_0x4ec699(_0x463ab8._0x4728e2,0xb6,_0x463ab8._0x50b4e0,0xf5)],_0x234eec[_0x4ec699(0xcb,0xaf,_0x463ab8._0x3d41d8,0x82)]=_0x1a4b95[_0x173862(_0x463ab8._0xdf6e9e,_0x463ab8._0x38dc3b,_0x463ab8._0x3c39d3,_0x463ab8._0x2f2025)],_0x346a99[_0x173862(_0x463ab8._0xfe7eb5,0x2db,_0x463ab8._0x2b8978,_0x463ab8._0x2634e3)](_0x396989[_0x4ec699(_0x463ab8._0xeb9131,_0x463ab8._0x13f884,0x63,0x4e)],_0x234eec);}}}return _0x3dee8c;}['getPublicI'+_0x50ddaa(0x1bc,0x1a1,0x1d7,0x1db)](){const _0x30686a={_0xfb8205:0x98,_0x254749:0x15d,_0x28cdfd:0x1d1,_0x2e9899:0x22,_0x525bc3:0x7d,_0x180835:0x75,_0x495462:0x60,_0x2304a0:0x127,_0x49a2e0:0x1a8,_0x2727d2:0x11f,_0x2714f9:0xb9,_0x131ea9:0xa4,_0x1c077c:0x21,_0x2af5b0:0x78,_0x2b25dc:0x9d},_0x5c9ce6={_0x47b37c:0x198,_0x59f9be:0x480};function _0x419223(_0x16f641,_0x22ded6,_0x37f361,_0x42a684){return _0x57d1e8(_0x16f641-0x1b8,_0x22ded6-0x1dd,_0x37f361,_0x22ded6- -0x610);}function _0x51935d(_0x8299fc,_0x3b1dbd,_0x17f0f4,_0x5b9f4f){return _0x57d1e8(_0x8299fc-0xe0,_0x3b1dbd-_0x5c9ce6._0x47b37c,_0x17f0f4,_0x3b1dbd- -_0x5c9ce6._0x59f9be);}return{...super[_0x51935d(0x182,0x11e,_0x30686a._0xfb8205,_0x30686a._0x254749)+_0x419223(-0x3a,-0x77,-0x86,-0x4)](),'organization':this[_0x419223(-_0x30686a._0x28cdfd,-0x140,-0x195,-0xc3)+'on'],'tenant_id':this[_0x51935d(0xd7,0xab,_0x30686a._0x2e9899,0x12c)],'client_id':this[_0x51935d(_0x30686a._0x525bc3,_0x30686a._0x180835,_0x30686a._0x495462,0x8a)],'auth_method':this[_0x419223(-0x181,-_0x30686a._0x2304a0,-_0x30686a._0x49a2e0,-0x1bc)],'created_at':this[_0x51935d(0xff,_0x30686a._0x2727d2,_0x30686a._0x2714f9,0x158)][_0x51935d(_0x30686a._0x131ea9,_0x30686a._0x1c077c,_0x30686a._0x2af5b0,0x41)],'created_by':this['config'][_0x419223(-_0x30686a._0x2b25dc,-0xb3,-0x87,-0xc4)]};}[_0x57d1e8(0x606,0x597,0x587,0x5a2)](){const _0x3ee518={_0x3b0a2b:0xf1,_0x55bbfa:0x9,_0x507cad:0x138,_0x2f484a:0x9b,_0x31a27f:0x29e,_0x52c7db:0x227,_0x1f56e9:0x59,_0x3aa0f4:0xdf,_0x3e02c2:0x7f},_0x2cc1da={_0x223598:0xdc},_0x48cdb5={_0x5e0131:0x41,_0x538c48:0x62c},_0x4a2d16=(this[_0x235ac8(-0x95,-_0x3ee518._0x3b0a2b,_0x3ee518._0x55bbfa,-0x115)]||_0x235ac8(-_0x3ee518._0x507cad,-0xbe,-_0x3ee518._0x2f484a,-0x187))+':'+this[_0x54dd39(0x260,0x2f0,_0x3ee518._0x31a27f,_0x3ee518._0x52c7db)];function _0x235ac8(_0x5e1d5b,_0x32b4b0,_0xfc888b,_0x44ddc3){return _0x57d1e8(_0x5e1d5b-0x161,_0x32b4b0-_0x48cdb5._0x5e0131,_0xfc888b,_0x5e1d5b- -_0x48cdb5._0x538c48);}function _0x54dd39(_0x1223aa,_0x5bb6f5,_0x1e326c,_0x935349){return _0x50ddaa(_0x1e326c-0x115,_0x935349,_0x1e326c-_0x2cc1da._0x223598,_0x935349-0xce);}tokenCache[_0x235ac8(-0x61,-_0x3ee518._0x1f56e9,-_0x3ee518._0x3aa0f4,-_0x3ee518._0x3e02c2)](_0x4a2d16);}}export function clearAllAzureDevOpsTokenCache(){tokenCache['clear']();}export function isValidGuid(_0xcea2ec){const _0xc772bd={_0x3d2a4e:0x4b3,_0x5387c6:0x425},_0x260cf3={_0x67852a:0x364};function _0x541df2(_0x57cd0a,_0x245cd6,_0x408c1d,_0x435040){return _0x50ddaa(_0x57cd0a-_0x260cf3._0x67852a,_0x408c1d,_0x408c1d-0xd4,_0x435040-0x115);}return/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i[_0x541df2(0x458,0x489,_0xc772bd._0x3d2a4e,_0xc772bd._0x5387c6)](_0xcea2ec);}
|