From 4ddb5f175542a4290199950cc68cfecc0b514985 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 1 Jul 2024 02:08:21 -0700 Subject: [PATCH 01/23] final --- endPoint/h2HttpHostEndPoint.js | 23 ++++- endPoint/httpHostEndPoint.js | 23 +++++ endPoint/nonSecureHttpHostEndPoint.js | 104 +++++++++---------- endPoint/secureHttpHostEndPoint.js | 138 ++++++++++++++------------ 4 files changed, 171 insertions(+), 117 deletions(-) diff --git a/endPoint/h2HttpHostEndPoint.js b/endPoint/h2HttpHostEndPoint.js index 934c690..b895320 100644 --- a/endPoint/h2HttpHostEndPoint.js +++ b/endPoint/h2HttpHostEndPoint.js @@ -25,6 +25,16 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { constructor(ip, port, service, options, cacheSettings) { super(ip, port, service, null, cacheSettings); this.#options = options; + this.#options.ciphers = [ + "TLS_AES_256_GCM_SHA384", + "TLS_CHACHA20_POLY1305_SHA256", + "TLS_AES_128_GCM_SHA256", + "ECDHE-RSA-AES256-GCM-SHA384", + "ECDHE-RSA-AES128-GCM-SHA256", + ].join(":"); + this.#options.honorCipherOrder = true; + this.#options.minVersion = "TLSv1.2"; + this.#options.allowHTTP1 = true; } /** @@ -78,7 +88,7 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { /** @type {NodeJS.Dict} */ const formFields = {}; const method = headers[":method"]; - const reqUrl = headers[":path"]; + const reqUrl = headers[":path"].replace(/[\r\n]+[ \t]*/g, ''); let bodyStr = ""; const createCmsAndCreateResponseAsync = async () => { @@ -107,7 +117,7 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { ); const result = await this._service.processAsync(cms, fileContents); if (routingDataStep) routingDataStep.complete(); - const [code, headerList, body] = await result.getResultAsync( + let [code, headerList, body] = await result.getResultAsync( routingDataStep, rawRequest, queryObj.debug == "true" || @@ -123,7 +133,14 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { headers[":method"] ); headerList[":status"] = code; - stream.respond(headerList); + stream.respond({ + ...headerList, + "Strict-Transport-Security": + "max-age=15552000; includeSubDomains; preload", + "X-Content-Type-Options": "nosniff", + "X-Frame-Options": "DENY", + "X-XSS-Protection": "1; mode=block", + }); stream.end(body); }; diff --git a/endPoint/httpHostEndPoint.js b/endPoint/httpHostEndPoint.js index a0dccba..3626299 100644 --- a/endPoint/httpHostEndPoint.js +++ b/endPoint/httpHostEndPoint.js @@ -147,6 +147,22 @@ class HttpHostEndPoint extends HostEndPoint { } request["form"] = formFields; return request; + } + /** + * + * @param {IncomingMessage} req + * @param {ServerResponse} res + */ + _securityHeadersMiddleware(req, res, next) { + req.url = req.url.replace(/[\r\n]+[ \t]*/g, '') + res.setHeader('Strict-Transport-Security', 'max-age=15552000; includeSubDomains; preload'); + res.setHeader('X-Content-Type-Options', 'nosniff'); + res.setHeader('X-Frame-Options', 'DENY'); + res.setHeader('X-XSS-Protection', '1; mode=block'); + + if (typeof next === 'function') { + next(); + } } /** * @@ -295,6 +311,13 @@ class HttpHostEndPoint extends HostEndPoint { ); } } + sanitizeInput(input) { + let inputStr = String(input); + inputStr = inputStr.replace(/[\r\n]/g, ''); + + return inputStr; +} + /** * * @param {NodeJS.Dict} headers diff --git a/endPoint/nonSecureHttpHostEndPoint.js b/endPoint/nonSecureHttpHostEndPoint.js index 1fb077d..6d43071 100644 --- a/endPoint/nonSecureHttpHostEndPoint.js +++ b/endPoint/nonSecureHttpHostEndPoint.js @@ -18,59 +18,61 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { } _createServer() { - this._server = http.createServer(async (req, res) => { + this._server = http.createServer(async (req, res) => { try { - /** @type {Request} */ - this._handleContentTypes(req, res, async () => { - this._checkCacheAsync(req, res, async () => { - const createCmsAndCreateResponseAsync = async () => { - const queryObj = url.parse(req.url, true).query; - let routingDataStep = - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2" - ? new LightgDebugStep(null, "Get Routing Data") - : null; - let rawRequest = - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2" - ? this.joinHeaders(req.rawHeaders) - : null; - let cms = await this._createCmsObjectAsync( - req.url, - req.method, - req.headers, - req.formFields, - req.jsonHeaders ? req.jsonHeaders : {}, - req.socket, - req.bodyStr, - false - ); - const result = await this._service.processAsync( - cms, - req.fileContents - ); - routingDataStep?.complete(); - const [code, headers, body] = await result.getResultAsync( - routingDataStep, - rawRequest, - queryObj.debug == "true" || + this._securityHeadersMiddleware(req, res, async () => { + this._handleContentTypes(req, res, async () => { + this._checkCacheAsync(req, res, async () => { + const createCmsAndCreateResponseAsync = async () => { + const queryObj = url.parse(req.url, true).query; + let routingDataStep = + queryObj.debug == "true" || queryObj.debug == "1" || queryObj.debug == "2" - ? cms.dict - : undefined - ); - this.addCacheContentAsync( - `${req.headers.host}${req.url}`, - body, - headers, - req.method - ); - res.writeHead(code, headers); - res.end(body); - }; - await createCmsAndCreateResponseAsync(); + ? new LightgDebugStep(null, "Get Routing Data") + : null; + let rawRequest = + queryObj.debug == "true" || + queryObj.debug == "1" || + queryObj.debug == "2" + ? this.joinHeaders(req.rawHeaders) + : null; + /** @type {Request} */ + let cms = await this._createCmsObjectAsync( + req.url, + req.method, + req.headers, + req.formFields, + req.jsonHeaders ? req.jsonHeaders : {}, + req.socket, + req.bodyStr, + false + ); + const result = await this._service.processAsync( + cms, + req.fileContents + ); + routingDataStep?.complete(); + const [code, headers, body] = await result.getResultAsync( + routingDataStep, + rawRequest, + queryObj.debug == "true" || + queryObj.debug == "1" || + queryObj.debug == "2" + ? cms.dict + : undefined + ); + this.addCacheContentAsync( + `${req.headers.host}${req.url}`, + body, + headers, + req.method + ); + res.writeHead(code, headers); + res.end(body); + }; + await createCmsAndCreateResponseAsync(); + }); }); }); } catch (ex) { @@ -79,6 +81,6 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { res.end(ex.toString()); } }); - return this._server + return this._server; } } diff --git a/endPoint/secureHttpHostEndPoint.js b/endPoint/secureHttpHostEndPoint.js index 326aff4..69c3145 100644 --- a/endPoint/secureHttpHostEndPoint.js +++ b/endPoint/secureHttpHostEndPoint.js @@ -14,81 +14,93 @@ export default class SecureHttpHostEndPoint extends HttpHostEndPoint { * @param {number} port * @param {HostService} service * @param {import("tls").SecureContextOptions} options - * @param {CacheSettings} cacheSetting + * @param {CacheSettings} cacheSetting */ - constructor(ip, port, service, options,cacheSetting) { - super(ip, port, service,cacheSetting); - this.#options = options + constructor(ip, port, service, options, cacheSetting) { + super(ip, port, service, cacheSetting); + if (this.#options) { + this.#options = options; + (this.#options.ciphers = [ + "TLS_AES_256_GCM_SHA384", + "TLS_CHACHA20_POLY1305_SHA256", + "TLS_AES_128_GCM_SHA256", + "ECDHE-RSA-AES256-GCM-SHA384", + "ECDHE-RSA-AES128-GCM-SHA256", + ].join(":")), + this.#options.honorCipherOrder = true; + this.#options.minVersion = "TLSv1.2"; + } } _createServer() { - this._server = https + this._server = https .createServer(this.#options, async (req, res) => { /** @type {Request} */ let cms = null; - this._handleContentTypes(req, res, () => { - this._checkCacheAsync(req, res, async () => { - const createCmsAndCreateResponseAsync = async () => { - const queryObj = url.parse(req.url, true).query; - let routingDataStep = - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2" - ? new LightgDebugStep(null, "Get Routing Data") - : null; - let rawRequest = - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2" - ? this.joinHeaders(req.rawHeaders) - : null; - cms = await this._createCmsObjectAsync( - req.url, - req.method, - req.headers, - req.formFields, - req.jsonHeaders ? req.jsonHeaders : {}, - req.socket, - req.bodyStr, - true - ); - const result = await this._service.processAsync( - cms, - req.fileContents - ); - routingDataStep?.complete(); - const [code, headers, body] = await result.getResultAsync( - routingDataStep, - rawRequest, - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2" - ? cms.dict - : undefined - ); - this.addCacheContentAsync( - `${req.headers.host}${req.url}`, - body, - headers, - req.method - ); - res.writeHead(code, headers); - res.end(body); - }; - try { - createCmsAndCreateResponseAsync(); - } catch (ex) { - console.error(ex); - res.writeHead(StatusCodes.INTERNAL_SERVER_ERROR); - res.end(ex.toString()); - } - + this._securityHeadersMiddleware(req, res, async () => { + this._handleContentTypes(req, res, async () => { + this._checkCacheAsync(req, res, async () => { + const createCmsAndCreateResponseAsync = async () => { + const queryObj = url.parse(req.url, true).query; + let routingDataStep = + queryObj.debug == "true" || + queryObj.debug == "1" || + queryObj.debug == "2" + ? new LightgDebugStep(null, "Get Routing Data") + : null; + let rawRequest = + queryObj.debug == "true" || + queryObj.debug == "1" || + queryObj.debug == "2" + ? this.joinHeaders(req.rawHeaders) + : null; + cms = await this._createCmsObjectAsync( + req.url, + req.method, + req.headers, + req.formFields, + req.jsonHeaders ? req.jsonHeaders : {}, + req.socket, + req.bodyStr, + true + ); + const result = await this._service.processAsync( + cms, + req.fileContents + ); + routingDataStep?.complete(); + const [code, headers, body] = await result.getResultAsync( + routingDataStep, + rawRequest, + queryObj.debug == "true" || + queryObj.debug == "1" || + queryObj.debug == "2" + ? cms.dict + : undefined + ); + this.addCacheContentAsync( + `${req.headers.host}${req.url}`, + body, + headers, + req.method + ); + res.writeHead(code, headers); + res.end(body); + }; + try { + createCmsAndCreateResponseAsync(); + } catch (ex) { + console.error(ex); + res.writeHead(StatusCodes.INTERNAL_SERVER_ERROR); + res.end(ex.toString()); + } + }); }); }); }) .on("error", (er) => console.error(er)) .on("clientError", (er) => console.error(er)) .on("tlsClientError", (er) => console.error(er)); - return this._server + return this._server; } } From f36fc590f8dabaa0156045a80b0e9fe4f2c17ab0 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 1 Jul 2024 04:49:40 -0700 Subject: [PATCH 02/23] F --- endPoint/h2HttpHostEndPoint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endPoint/h2HttpHostEndPoint.js b/endPoint/h2HttpHostEndPoint.js index b895320..7e3e264 100644 --- a/endPoint/h2HttpHostEndPoint.js +++ b/endPoint/h2HttpHostEndPoint.js @@ -88,7 +88,7 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { /** @type {NodeJS.Dict} */ const formFields = {}; const method = headers[":method"]; - const reqUrl = headers[":path"].replace(/[\r\n]+[ \t]*/g, ''); + // const reqUrl = headers[":path"] let bodyStr = ""; const createCmsAndCreateResponseAsync = async () => { From 02becdf26339cd52b413d2dc98f1cf4da087ecfc Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 1 Jul 2024 04:53:28 -0700 Subject: [PATCH 03/23] FINAL --- endPoint/h2HttpHostEndPoint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endPoint/h2HttpHostEndPoint.js b/endPoint/h2HttpHostEndPoint.js index 7e3e264..b35a898 100644 --- a/endPoint/h2HttpHostEndPoint.js +++ b/endPoint/h2HttpHostEndPoint.js @@ -88,7 +88,7 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { /** @type {NodeJS.Dict} */ const formFields = {}; const method = headers[":method"]; - // const reqUrl = headers[":path"] + const reqUrl = headers[":path"] let bodyStr = ""; const createCmsAndCreateResponseAsync = async () => { From 6a007b846b4c3b00e73420cbdb63c21583f9a95f Mon Sep 17 00:00:00 2001 From: alibazregar Date: Tue, 2 Jul 2024 00:41:16 -0700 Subject: [PATCH 04/23] changes --- endPoint/h2HttpHostEndPoint.js | 30 ++++++++----------- endPoint/httpHostEndPoint.js | 2 +- endPoint/nonSecureHttpHostEndPoint.js | 26 +++++++--------- endPoint/secureHttpHostEndPoint.js | 26 +++++++--------- .../Source/BaseClasses/SourceCommand.js | 1 + renderEngine/Context/RequestContext.js | 1 + 6 files changed, 35 insertions(+), 51 deletions(-) diff --git a/endPoint/h2HttpHostEndPoint.js b/endPoint/h2HttpHostEndPoint.js index b35a898..31c6581 100644 --- a/endPoint/h2HttpHostEndPoint.js +++ b/endPoint/h2HttpHostEndPoint.js @@ -88,25 +88,23 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { /** @type {NodeJS.Dict} */ const formFields = {}; const method = headers[":method"]; - const reqUrl = headers[":path"] + const reqUrl = headers[":path"]; let bodyStr = ""; const createCmsAndCreateResponseAsync = async () => { const { query: queryObj } = url.parse(reqUrl, true); - let rawRequest = + let debugCondition = queryObj.debug == "true" || queryObj.debug == "1" || - queryObj.debug == "2" - ? this.addStringTable("Raw Request", JSON.stringify(headers)) - : null; - let routingDataStep = - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2" - ? new LightgDebugStep(null, "Get Routing Data") - : null; + queryObj.debug == "2"; + let rawRequest = debugCondition + ? this.addStringTable("Raw Request", JSON.stringify(headers)) + : null; + let routingDataStep = debugCondition + ? new LightgDebugStep(null, "Get Routing Data") + : null; cms = await this._createCmsObjectAsync( - reqUrl, + reqUrl.replace(/[\n\r]|%0a|%0d/gi, " "), method, headers, formFields, @@ -117,14 +115,10 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { ); const result = await this._service.processAsync(cms, fileContents); if (routingDataStep) routingDataStep.complete(); - let [code, headerList, body] = await result.getResultAsync( + const [code, headerList, body] = await result.getResultAsync( routingDataStep, rawRequest, - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2" - ? cms.dict - : undefined + debugCondition ? cms.dict : undefined ); await this.addCacheContentAsync( `${headers.host}${headers[":path"]}`, diff --git a/endPoint/httpHostEndPoint.js b/endPoint/httpHostEndPoint.js index 3626299..776f898 100644 --- a/endPoint/httpHostEndPoint.js +++ b/endPoint/httpHostEndPoint.js @@ -154,7 +154,7 @@ class HttpHostEndPoint extends HostEndPoint { * @param {ServerResponse} res */ _securityHeadersMiddleware(req, res, next) { - req.url = req.url.replace(/[\r\n]+[ \t]*/g, '') + req.url = req.url.replace(/[\n\r]|%0a|%0d/gi, ' '); res.setHeader('Strict-Transport-Security', 'max-age=15552000; includeSubDomains; preload'); res.setHeader('X-Content-Type-Options', 'nosniff'); res.setHeader('X-Frame-Options', 'DENY'); diff --git a/endPoint/nonSecureHttpHostEndPoint.js b/endPoint/nonSecureHttpHostEndPoint.js index 6d43071..3800d1c 100644 --- a/endPoint/nonSecureHttpHostEndPoint.js +++ b/endPoint/nonSecureHttpHostEndPoint.js @@ -25,19 +25,17 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { this._checkCacheAsync(req, res, async () => { const createCmsAndCreateResponseAsync = async () => { const queryObj = url.parse(req.url, true).query; - let routingDataStep = + let debugCondition = queryObj.debug == "true" || queryObj.debug == "1" || - queryObj.debug == "2" - ? new LightgDebugStep(null, "Get Routing Data") - : null; - let rawRequest = - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2" - ? this.joinHeaders(req.rawHeaders) - : null; - /** @type {Request} */ + queryObj.debug == "2"; + let routingDataStep = debugCondition + ? new LightgDebugStep(null, "Get Routing Data") + : null; + let rawRequest = debugCondition + ? this.joinHeaders(req.rawHeaders) + : null; + /** @type {Request} */ let cms = await this._createCmsObjectAsync( req.url, req.method, @@ -56,11 +54,7 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { const [code, headers, body] = await result.getResultAsync( routingDataStep, rawRequest, - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2" - ? cms.dict - : undefined + debugCondition ? cms.dict : undefined ); this.addCacheContentAsync( `${req.headers.host}${req.url}`, diff --git a/endPoint/secureHttpHostEndPoint.js b/endPoint/secureHttpHostEndPoint.js index 69c3145..9d95a0e 100644 --- a/endPoint/secureHttpHostEndPoint.js +++ b/endPoint/secureHttpHostEndPoint.js @@ -27,7 +27,7 @@ export default class SecureHttpHostEndPoint extends HttpHostEndPoint { "ECDHE-RSA-AES256-GCM-SHA384", "ECDHE-RSA-AES128-GCM-SHA256", ].join(":")), - this.#options.honorCipherOrder = true; + (this.#options.honorCipherOrder = true); this.#options.minVersion = "TLSv1.2"; } } @@ -42,18 +42,16 @@ export default class SecureHttpHostEndPoint extends HttpHostEndPoint { this._checkCacheAsync(req, res, async () => { const createCmsAndCreateResponseAsync = async () => { const queryObj = url.parse(req.url, true).query; - let routingDataStep = + let debugCondition = queryObj.debug == "true" || queryObj.debug == "1" || - queryObj.debug == "2" - ? new LightgDebugStep(null, "Get Routing Data") - : null; - let rawRequest = - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2" - ? this.joinHeaders(req.rawHeaders) - : null; + queryObj.debug == "2"; + let routingDataStep = debugCondition + ? new LightgDebugStep(null, "Get Routing Data") + : null; + let rawRequest = debugCondition + ? this.joinHeaders(req.rawHeaders) + : null; cms = await this._createCmsObjectAsync( req.url, req.method, @@ -72,11 +70,7 @@ export default class SecureHttpHostEndPoint extends HttpHostEndPoint { const [code, headers, body] = await result.getResultAsync( routingDataStep, rawRequest, - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2" - ? cms.dict - : undefined + debugCondition ? cms.dict : undefined ); this.addCacheContentAsync( `${req.headers.host}${req.url}`, diff --git a/renderEngine/Command/Source/BaseClasses/SourceCommand.js b/renderEngine/Command/Source/BaseClasses/SourceCommand.js index 380839a..2d3de8c 100644 --- a/renderEngine/Command/Source/BaseClasses/SourceCommand.js +++ b/renderEngine/Command/Source/BaseClasses/SourceCommand.js @@ -45,6 +45,7 @@ export default class SourceCommand extends CommandBase { const dataSet = await this._loadDataAsync(name, context); context.cancellation.throwIfCancellationRequested(); if (dataSet.items.length != this.members.items.length) { + console.log(this) throw new BasisCoreException( `Command ${name} has ${this.members.items.length} member(s) but ${dataSet.items.length} result(s) returned from source!` ); diff --git a/renderEngine/Context/RequestContext.js b/renderEngine/Context/RequestContext.js index 65742de..579c051 100644 --- a/renderEngine/Context/RequestContext.js +++ b/renderEngine/Context/RequestContext.js @@ -44,6 +44,7 @@ export default class RequestContext extends ContextBase { cookieObj[key] = value; }); } + console.log(cookieObj) this.addSource(new JsonSource([cookieObj], "cms.cookie")); } From 24a690caa87970d9ad93bc5b241b961d48002578 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Wed, 3 Jul 2024 03:44:43 -0700 Subject: [PATCH 05/23] fff --- dist/bundle.js | 2 - dist/bundle.js.LICENSE.txt | 142 ------------------ endPoint/httpHostEndPoint.js | 2 +- .../Source/BaseClasses/SourceCommand.js | 1 - 4 files changed, 1 insertion(+), 146 deletions(-) delete mode 100644 dist/bundle.js delete mode 100644 dist/bundle.js.LICENSE.txt diff --git a/dist/bundle.js b/dist/bundle.js deleted file mode 100644 index e901475..0000000 --- a/dist/bundle.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see bundle.js.LICENSE.txt */ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports["webserver.js"]=t():e["webserver.js"]=t()}(this,(()=>(()=>{var __webpack_modules__={98633:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return o(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.req=t.json=t.toBuffer=void 0;const s=i(n(58611)),a=i(n(65692));async function u(e){let t=0;const n=[];for await(const r of e)t+=r.length,n.push(r);return Buffer.concat(n,t)}t.toBuffer=u,t.json=async function(e){const t=(await u(e)).toString("utf8");try{return JSON.parse(t)}catch(e){const n=e;throw n.message+=` (input: ${t})`,n}},t.req=function(e,t={}){const n=(("string"==typeof e?e:e.href).startsWith("https:")?a:s).request(e,t),r=new Promise(((e,t)=>{n.once("response",e).once("error",t).end()}));return n.then=r.then.bind(r),n}},36844:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return o(t,e),t},s=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),t.Agent=void 0;const a=i(n(69278)),u=i(n(58611)),c=n(65692);s(n(98633),t);const l=Symbol("AgentBaseInternalState");class h extends u.Agent{constructor(e){super(e),this[l]={}}isSecureEndpoint(e){if(e){if("boolean"==typeof e.secureEndpoint)return e.secureEndpoint;if("string"==typeof e.protocol)return"https:"===e.protocol}const{stack:t}=new Error;return"string"==typeof t&&t.split("\n").some((e=>-1!==e.indexOf("(https.js:")||-1!==e.indexOf("node:https:")))}incrementSockets(e){if(this.maxSockets===1/0&&this.maxTotalSockets===1/0)return null;this.sockets[e]||(this.sockets[e]=[]);const t=new a.Socket({writable:!1});return this.sockets[e].push(t),this.totalSocketCount++,t}decrementSockets(e,t){if(!this.sockets[e]||null===t)return;const n=this.sockets[e],r=n.indexOf(t);-1!==r&&(n.splice(r,1),this.totalSocketCount--,0===n.length&&delete this.sockets[e])}getName(e){return("boolean"==typeof e.secureEndpoint?e.secureEndpoint:this.isSecureEndpoint(e))?c.Agent.prototype.getName.call(this,e):super.getName(e)}createSocket(e,t,n){const r={...t,secureEndpoint:this.isSecureEndpoint(t)},o=this.getName(r),i=this.incrementSockets(o);Promise.resolve().then((()=>this.connect(e,r))).then((s=>{if(this.decrementSockets(o,i),s instanceof u.Agent)return s.addRequest(e,r);this[l].currentSocket=s,super.createSocket(e,t,n)}),(e=>{this.decrementSockets(o,i),n(e)}))}createConnection(){const e=this[l].currentSocket;if(this[l].currentSocket=void 0,!e)throw new Error("No socket was returned in the `connect()` function");return e}get defaultPort(){return this[l].defaultPort??("https:"===this.protocol?443:80)}set defaultPort(e){this[l]&&(this[l].defaultPort=e)}get protocol(){return this[l].protocol??(this.isSecureEndpoint()?"https:":"http:")}set protocol(e){this[l]&&(this[l].protocol=e)}}t.Agent=h},11344:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return o(t,e),t},s=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.HttpProxyAgent=void 0;const a=i(n(69278)),u=i(n(64756)),c=s(n(45753)),l=n(24434),h=n(36844),f=n(87016),p=(0,c.default)("http-proxy-agent");class d extends h.Agent{constructor(e,t){super(t),this.proxy="string"==typeof e?new f.URL(e):e,this.proxyHeaders=t?.headers??{},p("Creating new HttpProxyAgent instance: %o",this.proxy.href);const n=(this.proxy.hostname||this.proxy.host).replace(/^\[|\]$/g,""),r=this.proxy.port?parseInt(this.proxy.port,10):"https:"===this.proxy.protocol?443:80;this.connectOpts={...t?E(t,"headers"):null,host:n,port:r}}addRequest(e,t){e._header=null,this.setRequestProps(e,t),super.addRequest(e,t)}setRequestProps(e,t){const{proxy:n}=this,r=`${t.secureEndpoint?"https:":"http:"}//${e.getHeader("host")||"localhost"}`,o=new f.URL(e.path,r);80!==t.port&&(o.port=String(t.port)),e.path=String(o);const i="function"==typeof this.proxyHeaders?this.proxyHeaders():{...this.proxyHeaders};if(n.username||n.password){const e=`${decodeURIComponent(n.username)}:${decodeURIComponent(n.password)}`;i["Proxy-Authorization"]=`Basic ${Buffer.from(e).toString("base64")}`}i["Proxy-Connection"]||(i["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(const t of Object.keys(i)){const n=i[t];n&&e.setHeader(t,n)}}async connect(e,t){let n,r,o;return e._header=null,e.path.includes("://")||this.setRequestProps(e,t),p("Regenerating stored HTTP header string for request"),e._implicitHeader(),e.outputData&&e.outputData.length>0&&(p("Patching connection write() output buffer with updated header"),n=e.outputData[0].data,r=n.indexOf("\r\n\r\n")+4,e.outputData[0].data=e._header+n.substring(r),p("Output buffer: %o",e.outputData[0].data)),"https:"===this.proxy.protocol?(p("Creating `tls.Socket`: %o",this.connectOpts),o=u.connect(this.connectOpts)):(p("Creating `net.Socket`: %o",this.connectOpts),o=a.connect(this.connectOpts)),await(0,l.once)(o,"connect"),o}}function E(e,...t){const n={};let r;for(r in e)t.includes(r)||(n[r]=e[r]);return n}d.protocols=["http","https"],t.HttpProxyAgent=d},23923:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return o(t,e),t},s=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.HttpsProxyAgent=void 0;const a=i(n(69278)),u=i(n(64756)),c=s(n(42613)),l=s(n(45753)),h=n(36844),f=n(87016),p=n(97521),d=(0,l.default)("https-proxy-agent");class E extends h.Agent{constructor(e,t){super(t),this.options={path:void 0},this.proxy="string"==typeof e?new f.URL(e):e,this.proxyHeaders=t?.headers??{},d("Creating new HttpsProxyAgent instance: %o",this.proxy.href);const n=(this.proxy.hostname||this.proxy.host).replace(/^\[|\]$/g,""),r=this.proxy.port?parseInt(this.proxy.port,10):"https:"===this.proxy.protocol?443:80;this.connectOpts={ALPNProtocols:["http/1.1"],...t?_(t,"headers"):null,host:n,port:r}}async connect(e,t){const{proxy:n}=this;if(!t.host)throw new TypeError('No "host" provided');let r;if("https:"===n.protocol){d("Creating `tls.Socket`: %o",this.connectOpts);const e=this.connectOpts.servername||this.connectOpts.host;r=u.connect({...this.connectOpts,servername:e&&a.isIP(e)?void 0:e})}else d("Creating `net.Socket`: %o",this.connectOpts),r=a.connect(this.connectOpts);const o="function"==typeof this.proxyHeaders?this.proxyHeaders():{...this.proxyHeaders},i=a.isIPv6(t.host)?`[${t.host}]`:t.host;let s=`CONNECT ${i}:${t.port} HTTP/1.1\r\n`;if(n.username||n.password){const e=`${decodeURIComponent(n.username)}:${decodeURIComponent(n.password)}`;o["Proxy-Authorization"]=`Basic ${Buffer.from(e).toString("base64")}`}o.Host=`${i}:${t.port}`,o["Proxy-Connection"]||(o["Proxy-Connection"]=this.keepAlive?"Keep-Alive":"close");for(const e of Object.keys(o))s+=`${e}: ${o[e]}\r\n`;const l=(0,p.parseProxyResponse)(r);r.write(`${s}\r\n`);const{connect:h,buffered:f}=await l;if(e.emit("proxyConnect",h),this.emit("proxyConnect",h,e),200===h.statusCode){if(e.once("socket",m),t.secureEndpoint){d("Upgrading socket connection to TLS");const e=t.servername||t.host;return u.connect({..._(t,"host","path","port"),socket:r,servername:a.isIP(e)?void 0:e})}return r}r.destroy();const E=new a.Socket({writable:!1});return E.readable=!0,e.once("socket",(e=>{d("Replaying proxy buffer for failed request"),(0,c.default)(e.listenerCount("data")>0),e.push(f),e.push(null)})),E}}function m(e){e.resume()}function _(e,...t){const n={};let r;for(r in e)t.includes(r)||(n[r]=e[r]);return n}E.protocols=["http","https"],t.HttpsProxyAgent=E},97521:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.parseProxyResponse=void 0;const o=(0,r(n(45753)).default)("https-proxy-agent:parse-proxy-response");t.parseProxyResponse=function(e){return new Promise(((t,n)=>{let r=0;const i=[];function s(){const u=e.read();u?function(u){i.push(u),r+=u.length;const c=Buffer.concat(i,r),l=c.indexOf("\r\n\r\n");if(-1===l)return o("have not received end of HTTP headers yet..."),void s();const h=c.slice(0,l).toString("ascii").split("\r\n"),f=h.shift();if(!f)return e.destroy(),n(new Error("No header received from proxy CONNECT response"));const p=f.split(" "),d=+p[1],E=p.slice(2).join(" "),m={};for(const t of h){if(!t)continue;const r=t.indexOf(":");if(-1===r)return e.destroy(),n(new Error(`Invalid header from proxy CONNECT response: "${t}"`));const o=t.slice(0,r).toLowerCase(),i=t.slice(r+1).trimStart(),s=m[o];"string"==typeof s?m[o]=[s,i]:Array.isArray(s)?s.push(i):m[o]=i}o("got proxy server response: %o %o",f,m),a(),t({connect:{statusCode:d,statusText:E,headers:m},buffered:c})}(u):e.once("readable",s)}function a(){e.removeListener("end",u),e.removeListener("error",c),e.removeListener("readable",s)}function u(){a(),o("onend"),n(new Error("Proxy connection ended before receiving CONNECT response"))}function c(e){a(),o("onerror %o",e),n(e)}e.on("error",c),e.on("end",u),s()}))}},66285:(e,t,n)=>{"use strict";n.r(t),n.d(t,{AggregateAuthenticationError:()=>au,AggregateAuthenticationErrorName:()=>su,AuthenticationError:()=>iu,AuthenticationErrorName:()=>ou,AuthenticationRequiredError:()=>cu,AuthorizationCodeCredential:()=>Qf,AzureAuthorityHosts:()=>fu,AzureCliCredential:()=>Ah,AzurePowerShellCredential:()=>Ch,ChainedTokenCredential:()=>ph,ClientAssertionCredential:()=>Cf,ClientCertificateCredential:()=>jh,ClientSecretCredential:()=>Mh,CredentialUnavailableError:()=>ru,CredentialUnavailableErrorName:()=>nu,DefaultAzureCredential:()=>Sf,DeviceCodeCredential:()=>Vf,EnvironmentCredential:()=>zh,InteractiveBrowserCredential:()=>Uf,ManagedIdentityCredential:()=>Of,OnBehalfOfCredential:()=>Kf,UsernamePasswordCredential:()=>Yh,VisualStudioCodeCredential:()=>ch,deserializeAuthenticationRecord:()=>Hl,getDefaultAzureCredential:()=>Xf,logger:()=>Eu,serializeAuthenticationRecord:()=>Yl,useIdentityPlugin:()=>hh});var r=function(e,t){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},r(e,t)};function o(e,t){function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var i=function(){return i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0&&o[o.length-1])||6!==i[0]&&2!==i[0])){s=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]=t.length&&e.lastIndexOf(t)===e.length-t.length},e.queryStringToObject=function(e){var t={},n=e.split("&"),r=function(e){return decodeURIComponent(e.replace(/\+/g," "))};return n.forEach((function(e){if(e.trim()){var n=e.split(/=(.+)/g,2),o=n[0],i=n[1];o&&i&&(t[r(o)]=r(i))}})),t},e.trimArrayEntries=function(e){return e.map((function(e){return e.trim()}))},e.removeEmptyStringsFromArray=function(t){return t.filter((function(t){return!e.isEmpty(t)}))},e.jsonParseHelper=function(e){try{return JSON.parse(e)}catch(e){return null}},e.matchPattern=function(e,t){return new RegExp(e.replace(/\\/g,"\\\\").replace(/\*/g,"[^ ]*").replace(/\?/g,"\\?")).test(t)},e}();!function(e){e[e.Error=0]="Error",e[e.Warning=1]="Warning",e[e.Info=2]="Info",e[e.Verbose=3]="Verbose",e[e.Trace=4]="Trace"}(G||(G={}));var Mt,xt=function(){function e(t,n,r){this.level=G.Info;var o=t||e.createDefaultLoggerOptions();this.localCallback=o.loggerCallback||function(){},this.piiLoggingEnabled=o.piiLoggingEnabled||!1,this.level="number"==typeof o.logLevel?o.logLevel:G.Info,this.correlationId=o.correlationId||d.EMPTY_STRING,this.packageName=n||d.EMPTY_STRING,this.packageVersion=r||d.EMPTY_STRING}return e.createDefaultLoggerOptions=function(){return{loggerCallback:function(){},piiLoggingEnabled:!1,logLevel:G.Info}},e.prototype.clone=function(t,n,r){return new e({loggerCallback:this.localCallback,piiLoggingEnabled:this.piiLoggingEnabled,logLevel:this.level,correlationId:r||this.correlationId},t,n)},e.prototype.logMessage=function(e,t){if(!(t.logLevel>this.level||!this.piiLoggingEnabled&&t.containsPii)){var n=(new Date).toUTCString(),r=(Lt.isEmpty(t.correlationId)?Lt.isEmpty(this.correlationId)?"["+n+"]":"["+n+"] : ["+this.correlationId+"]":"["+n+"] : ["+t.correlationId+"]")+" : "+this.packageName+"@"+this.packageVersion+" : "+G[t.logLevel]+" - "+e;this.executeCallback(t.logLevel,r,t.containsPii||!1)}},e.prototype.executeCallback=function(e,t,n){this.localCallback&&this.localCallback(e,t,n)},e.prototype.error=function(e,t){this.logMessage(e,{logLevel:G.Error,containsPii:!1,correlationId:t||d.EMPTY_STRING})},e.prototype.errorPii=function(e,t){this.logMessage(e,{logLevel:G.Error,containsPii:!0,correlationId:t||d.EMPTY_STRING})},e.prototype.warning=function(e,t){this.logMessage(e,{logLevel:G.Warning,containsPii:!1,correlationId:t||d.EMPTY_STRING})},e.prototype.warningPii=function(e,t){this.logMessage(e,{logLevel:G.Warning,containsPii:!0,correlationId:t||d.EMPTY_STRING})},e.prototype.info=function(e,t){this.logMessage(e,{logLevel:G.Info,containsPii:!1,correlationId:t||d.EMPTY_STRING})},e.prototype.infoPii=function(e,t){this.logMessage(e,{logLevel:G.Info,containsPii:!0,correlationId:t||d.EMPTY_STRING})},e.prototype.verbose=function(e,t){this.logMessage(e,{logLevel:G.Verbose,containsPii:!1,correlationId:t||d.EMPTY_STRING})},e.prototype.verbosePii=function(e,t){this.logMessage(e,{logLevel:G.Verbose,containsPii:!0,correlationId:t||d.EMPTY_STRING})},e.prototype.trace=function(e,t){this.logMessage(e,{logLevel:G.Trace,containsPii:!1,correlationId:t||d.EMPTY_STRING})},e.prototype.tracePii=function(e,t){this.logMessage(e,{logLevel:G.Trace,containsPii:!0,correlationId:t||d.EMPTY_STRING})},e.prototype.isPiiLoggingEnabled=function(){return this.piiLoggingEnabled||!1},e}();function Bt(e,t){if(Lt.isEmpty(e))throw Dt.createClientInfoEmptyError();try{var n=t.base64Decode(e);return JSON.parse(n)}catch(e){throw Dt.createClientInfoDecodingError(e.message)}}function Pt(e){if(Lt.isEmpty(e))throw Dt.createClientInfoDecodingError("Home account ID was empty.");var t=e.split(b.CLIENT_INFO_SEPARATOR,2);return{uid:t[0],utid:t.length<2?d.EMPTY_STRING:t[1]}}!function(e){e[e.Default=0]="Default",e[e.Adfs=1]="Adfs",e[e.Dsts=2]="Dsts",e[e.Ciam=3]="Ciam"}(Mt||(Mt={}));var Ft,Ut=function(){function e(){}return e.prototype.generateAccountId=function(){return[this.homeAccountId,this.environment].join(b.CACHE_KEY_SEPARATOR).toLowerCase()},e.prototype.generateAccountKey=function(){return e.generateAccountCacheKey({homeAccountId:this.homeAccountId,environment:this.environment,tenantId:this.realm,username:this.username,localAccountId:this.localAccountId})},e.prototype.generateType=function(){switch(this.authorityType){case v.ADFS_ACCOUNT_TYPE:return w.ADFS;case v.MSAV1_ACCOUNT_TYPE:return w.MSA;case v.MSSTS_ACCOUNT_TYPE:return w.MSSTS;case v.GENERIC_ACCOUNT_TYPE:return w.GENERIC;default:throw Dt.createUnexpectedAccountTypeError()}},e.prototype.getAccountInfo=function(){return{homeAccountId:this.homeAccountId,environment:this.environment,tenantId:this.realm,username:this.username,localAccountId:this.localAccountId,name:this.name,idTokenClaims:this.idTokenClaims,nativeAccountId:this.nativeAccountId}},e.generateAccountCacheKey=function(e){return[e.homeAccountId,e.environment||d.EMPTY_STRING,e.tenantId||d.EMPTY_STRING].join(b.CACHE_KEY_SEPARATOR).toLowerCase()},e.createAccount=function(t,n,r,o,i,s,a,u){var c,l,h,f,p,E,m=new e;m.authorityType=v.MSSTS_ACCOUNT_TYPE,m.clientInfo=t,m.homeAccountId=n,m.nativeAccountId=u;var _=a||o&&o.getPreferredCache();if(!_)throw Dt.createInvalidCacheEnvironmentError();if(m.environment=_,m.realm=(null===(c=null==r?void 0:r.claims)||void 0===c?void 0:c.tid)||d.EMPTY_STRING,r){m.idTokenClaims=r.claims,m.localAccountId=(null===(l=null==r?void 0:r.claims)||void 0===l?void 0:l.oid)||(null===(h=null==r?void 0:r.claims)||void 0===h?void 0:h.sub)||d.EMPTY_STRING;var g=null===(f=null==r?void 0:r.claims)||void 0===f?void 0:f.preferred_username,y=(null===(p=null==r?void 0:r.claims)||void 0===p?void 0:p.emails)?r.claims.emails[0]:null;m.username=g||y||d.EMPTY_STRING,m.name=null===(E=null==r?void 0:r.claims)||void 0===E?void 0:E.name}return m.cloudGraphHostName=i,m.msGraphHost=s,m},e.createGenericAccount=function(t,n,r,o,i,s){var a,u,c,l,h=new e;h.authorityType=r&&r.authorityType===Mt.Adfs?v.ADFS_ACCOUNT_TYPE:v.GENERIC_ACCOUNT_TYPE,h.homeAccountId=t,h.realm=d.EMPTY_STRING;var f=s||r&&r.getPreferredCache();if(!f)throw Dt.createInvalidCacheEnvironmentError();return n&&(h.localAccountId=(null===(a=null==n?void 0:n.claims)||void 0===a?void 0:a.oid)||(null===(u=null==n?void 0:n.claims)||void 0===u?void 0:u.sub)||d.EMPTY_STRING,h.username=(null===(c=null==n?void 0:n.claims)||void 0===c?void 0:c.upn)||d.EMPTY_STRING,h.name=(null===(l=null==n?void 0:n.claims)||void 0===l?void 0:l.name)||d.EMPTY_STRING,h.idTokenClaims=null==n?void 0:n.claims),h.environment=f,h.cloudGraphHostName=o,h.msGraphHost=i,h},e.generateHomeAccountId=function(e,t,n,r,o){var i,s=(null===(i=null==o?void 0:o.claims)||void 0===i?void 0:i.sub)?o.claims.sub:d.EMPTY_STRING;if(t===Mt.Adfs||t===Mt.Dsts)return s;if(e)try{var a=Bt(e,r);if(!Lt.isEmpty(a.uid)&&!Lt.isEmpty(a.utid))return""+a.uid+b.CLIENT_INFO_SEPARATOR+a.utid}catch(e){}return n.verbose("No client info in response"),s},e.isAccountEntity=function(e){return!!e&&e.hasOwnProperty("homeAccountId")&&e.hasOwnProperty("environment")&&e.hasOwnProperty("realm")&&e.hasOwnProperty("localAccountId")&&e.hasOwnProperty("username")&&e.hasOwnProperty("authorityType")},e.accountInfoIsEqual=function(e,t,n){if(!e||!t)return!1;var r=!0;if(n){var o=e.idTokenClaims||{},i=t.idTokenClaims||{};r=o.iat===i.iat&&o.nonce===i.nonce}return e.homeAccountId===t.homeAccountId&&e.localAccountId===t.localAccountId&&e.username===t.username&&e.tenantId===t.tenantId&&e.environment===t.environment&&e.nativeAccountId===t.nativeAccountId&&r},e}(),kt="redirect_uri_empty",jt="A redirect URI is required for all calls, and none has been set.",Gt="post_logout_uri_empty",Vt="A post logout redirect has not been set.",Yt="claims_request_parsing_error",Ht="Could not parse the given claims request object.",Qt="authority_uri_insecure",Wt="Authority URIs must use https. Please see here for valid authority configuration options: https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-js-initializing-client-applications#configuration-options",zt="url_parse_error",qt="URL could not be parsed into appropriate segments.",Kt="empty_url_error",Xt="URL was empty or null.",Jt="empty_input_scopes_error",$t="Scopes cannot be passed as null, undefined or empty array because they are required to obtain an access token.",Zt="clientid_input_scopes_error",en="Client ID can only be provided as a single scope.",tn="invalid_prompt_value",nn="Supported prompt values are 'login', 'select_account', 'consent', 'create', 'none' and 'no_session'. Please see here for valid configuration options: https://azuread.github.io/microsoft-authentication-library-for-js/ref/modules/_azure_msal_common.html#commonauthorizationurlrequest",rn="invalid_claims",on="Given claims parameter must be a stringified JSON object.",sn="token_request_empty",an="Token request was empty and not found in cache.",un="logout_request_empty",cn="The logout request was null or undefined.",ln="invalid_code_challenge_method",hn='code_challenge_method passed is invalid. Valid values are "plain" and "S256".',fn="pkce_params_missing",pn="Both params: code_challenge and code_challenge_method are to be passed if to be sent in the request",dn="invalid_cloud_discovery_metadata",En="Invalid cloudDiscoveryMetadata provided. Must be a stringified JSON object containing tenant_discovery_endpoint and metadata fields",mn="invalid_authority_metadata",_n="Invalid authorityMetadata provided. Must by a stringified JSON object containing authorization_endpoint, token_endpoint, issuer fields.",gn="untrusted_authority",yn="The provided authority is not a trusted authority. Please include this authority in the knownAuthorities config parameter.",An="invalid_azure_cloud_instance",vn="Invalid AzureCloudInstance provided. Please refer MSAL JS docs: aks.ms/msaljs/azure_cloud_instance for valid values",bn="missing_ssh_jwk",Tn="Missing sshJwk in SSH certificate request. A stringified JSON Web Key is required when using the SSH authentication scheme.",wn="missing_ssh_kid",On="Missing sshKid in SSH certificate request. A string that uniquely identifies the public SSH key is required when using the SSH authentication scheme.",Rn="missing_nonce_authentication_header",Sn="Unable to find an authentication header containing server nonce. Either the Authentication-Info or WWW-Authenticate headers must be present in order to obtain a server nonce.",In="invalid_authentication_header",Nn="Invalid authentication header provided",Cn="authority_mismatch",Dn="Authority mismatch error. Authority provided in login request or PublicClientApplication config does not match the environment of the provided account. Please use a matching account or make an interactive request to login to this authority.",Ln=function(e){function t(n,r){var o=e.call(this,n,r)||this;return o.name="ClientConfigurationError",Object.setPrototypeOf(o,t.prototype),o}return o(t,e),t.createRedirectUriEmptyError=function(){return new t(kt,jt)},t.createPostLogoutRedirectUriEmptyError=function(){return new t(Gt,Vt)},t.createClaimsRequestParsingError=function(e){return new t(Yt,Ht+" Given value: "+e)},t.createInsecureAuthorityUriError=function(e){return new t(Qt,Wt+" Given URI: "+e)},t.createUrlParseError=function(e){return new t(zt,qt+" Given Error: "+e)},t.createUrlEmptyError=function(){return new t(Kt,Xt)},t.createEmptyScopesArrayError=function(){return new t(Jt,""+$t)},t.createClientIdSingleScopeError=function(e){return new t(Zt,en+" Given Scopes: "+e)},t.createInvalidPromptError=function(e){return new t(tn,nn+" Given value: "+e)},t.createInvalidClaimsRequestError=function(){return new t(rn,on)},t.createEmptyLogoutRequestError=function(){return new t(un,cn)},t.createEmptyTokenRequestError=function(){return new t(sn,an)},t.createInvalidCodeChallengeMethodError=function(){return new t(ln,hn)},t.createInvalidCodeChallengeParamsError=function(){return new t(fn,pn)},t.createInvalidCloudDiscoveryMetadataError=function(){return new t(dn,En)},t.createInvalidAuthorityMetadataError=function(){return new t(mn,_n)},t.createUntrustedAuthorityError=function(){return new t(gn,yn)},t.createInvalidAzureCloudInstanceError=function(){return new t(An,vn)},t.createMissingSshJwkError=function(){return new t(bn,Tn)},t.createMissingSshKidError=function(){return new t(wn,On)},t.createMissingNonceAuthenticationHeadersError=function(){return new t(Rn,Sn)},t.createInvalidAuthenticationHeaderError=function(e,n){return new t(In,Nn+". Invalid header: "+e+". Details: "+n)},t.createAuthorityMismatchError=function(){return new t(Cn,Dn)},t}(Dt),Mn=function(){function e(e){var t=this,n=e?Lt.trimArrayEntries(u(e)):[],r=n?Lt.removeEmptyStringsFromArray(n):[];this.validateInputScopes(r),this.scopes=new Set,r.forEach((function(e){return t.scopes.add(e)}))}return e.fromString=function(t){return new e((t||d.EMPTY_STRING).split(" "))},e.createSearchScopes=function(t){var n=new e(t);return n.containsOnlyOIDCScopes()?n.removeScope(d.OFFLINE_ACCESS_SCOPE):n.removeOIDCScopes(),n},e.prototype.validateInputScopes=function(e){if(!e||e.length<1)throw Ln.createEmptyScopesArrayError()},e.prototype.containsScope=function(t){var n=new e(this.printScopesLowerCase().split(" "));return!Lt.isEmpty(t)&&n.scopes.has(t.toLowerCase())},e.prototype.containsScopeSet=function(e){var t=this;return!(!e||e.scopes.size<=0)&&this.scopes.size>=e.scopes.size&&e.asArray().every((function(e){return t.containsScope(e)}))},e.prototype.containsOnlyOIDCScopes=function(){var e=this,t=0;return m.forEach((function(n){e.containsScope(n)&&(t+=1)})),this.scopes.size===t},e.prototype.appendScope=function(e){Lt.isEmpty(e)||this.scopes.add(e.trim())},e.prototype.appendScopes=function(e){var t=this;try{e.forEach((function(e){return t.appendScope(e)}))}catch(e){throw Dt.createAppendScopeSetError(e)}},e.prototype.removeScope=function(e){if(Lt.isEmpty(e))throw Dt.createRemoveEmptyScopeFromSetError(e);this.scopes.delete(e.trim())},e.prototype.removeOIDCScopes=function(){var e=this;m.forEach((function(t){e.scopes.delete(t)}))},e.prototype.unionScopeSets=function(e){if(!e)throw Dt.createEmptyInputScopeSetError();var t=new Set;return e.scopes.forEach((function(e){return t.add(e.toLowerCase())})),this.scopes.forEach((function(e){return t.add(e.toLowerCase())})),t},e.prototype.intersectingScopeSets=function(e){if(!e)throw Dt.createEmptyInputScopeSetError();e.containsOnlyOIDCScopes()||e.removeOIDCScopes();var t=this.unionScopeSets(e),n=e.getScopeCount(),r=this.getScopeCount();return t.sizee+t)throw Dt.createMaxAgeTranspiredError()},e}(),Bn="@azure/msal-common",Pn="13.3.1",Fn=function(){function e(e,t,n){this.clientId=e,this.cryptoImpl=t,this.commonLogger=n.clone(Bn,Pn)}return e.prototype.getAllAccounts=function(){var e=this,t=this.getAccountKeys();if(t.length<1)return[];var n=t.reduce((function(t,n){var r=e.getAccount(n);return r?(t.push(r),t):t}),[]);return n.length<1?[]:n.map((function(t){return e.getAccountInfoFromEntity(t)}))},e.prototype.getAccountInfoFilteredBy=function(e){var t=this.getAccountsFilteredBy(e);return t.length>0?this.getAccountInfoFromEntity(t[0]):null},e.prototype.getAccountInfoFromEntity=function(e){var t=e.getAccountInfo(),n=this.getIdToken(t);return n&&(t.idToken=n.secret,t.idTokenClaims=new xn(n.secret,this.cryptoImpl).claims),t},e.prototype.saveCacheRecord=function(e){return s(this,void 0,void 0,(function(){return a(this,(function(t){switch(t.label){case 0:if(!e)throw Dt.createNullOrUndefinedCacheRecord();return e.account&&this.setAccount(e.account),e.idToken&&this.setIdTokenCredential(e.idToken),e.accessToken?[4,this.saveAccessToken(e.accessToken)]:[3,2];case 1:t.sent(),t.label=2;case 2:return e.refreshToken&&this.setRefreshTokenCredential(e.refreshToken),e.appMetadata&&this.setAppMetadata(e.appMetadata),[2]}}))}))},e.prototype.saveAccessToken=function(e){return s(this,void 0,void 0,(function(){var t,n,r,o,i=this;return a(this,(function(s){switch(s.label){case 0:return t={clientId:e.clientId,credentialType:e.credentialType,environment:e.environment,homeAccountId:e.homeAccountId,realm:e.realm,tokenType:e.tokenType,requestedClaimsHash:e.requestedClaimsHash},n=this.getTokenKeys(),r=Mn.fromString(e.target),o=[],n.accessToken.forEach((function(e){if(i.accessTokenKeyMatchesFilter(e,t,!1)){var n=i.getAccessTokenCredential(e);n&&i.credentialMatchesFilter(n,t)&&Mn.fromString(n.target).intersectingScopeSets(r)&&o.push(i.removeAccessToken(e))}})),[4,Promise.all(o)];case 1:return s.sent(),this.setAccessTokenCredential(e),[2]}}))}))},e.prototype.getAccountsFilteredBy=function(e){var t=this,n=this.getAccountKeys(),r=[];return n.forEach((function(n){if(t.isAccountKey(n,e.homeAccountId,e.realm)){var o=t.getAccount(n);o&&(e.homeAccountId&&!t.matchHomeAccountId(o,e.homeAccountId)||e.localAccountId&&!t.matchLocalAccountId(o,e.localAccountId)||e.username&&!t.matchUsername(o,e.username)||e.environment&&!t.matchEnvironment(o,e.environment)||e.realm&&!t.matchRealm(o,e.realm)||e.nativeAccountId&&!t.matchNativeAccountId(o,e.nativeAccountId)||r.push(o))}})),r},e.prototype.isAccountKey=function(e,t,n){return!(e.split(b.CACHE_KEY_SEPARATOR).length<3||t&&!e.toLowerCase().includes(t.toLowerCase())||n&&!e.toLowerCase().includes(n.toLowerCase()))},e.prototype.isCredentialKey=function(e){if(e.split(b.CACHE_KEY_SEPARATOR).length<6)return!1;var t=e.toLowerCase();if(-1===t.indexOf(T.ID_TOKEN.toLowerCase())&&-1===t.indexOf(T.ACCESS_TOKEN.toLowerCase())&&-1===t.indexOf(T.ACCESS_TOKEN_WITH_AUTH_SCHEME.toLowerCase())&&-1===t.indexOf(T.REFRESH_TOKEN.toLowerCase()))return!1;if(t.indexOf(T.REFRESH_TOKEN.toLowerCase())>-1){var n=""+T.REFRESH_TOKEN+b.CACHE_KEY_SEPARATOR+this.clientId+b.CACHE_KEY_SEPARATOR,r=""+T.REFRESH_TOKEN+b.CACHE_KEY_SEPARATOR+I+b.CACHE_KEY_SEPARATOR;if(-1===t.indexOf(n.toLowerCase())&&-1===t.indexOf(r.toLowerCase()))return!1}else if(-1===t.indexOf(this.clientId.toLowerCase()))return!1;return!0},e.prototype.credentialMatchesFilter=function(e,t){if(t.clientId&&!this.matchClientId(e,t.clientId))return!1;if(t.userAssertionHash&&!this.matchUserAssertionHash(e,t.userAssertionHash))return!1;if("string"==typeof t.homeAccountId&&!this.matchHomeAccountId(e,t.homeAccountId))return!1;if(t.environment&&!this.matchEnvironment(e,t.environment))return!1;if(t.realm&&!this.matchRealm(e,t.realm))return!1;if(t.credentialType&&!this.matchCredentialType(e,t.credentialType))return!1;if(t.familyId&&!this.matchFamilyId(e,t.familyId))return!1;if(t.target&&!this.matchTarget(e,t.target))return!1;if((t.requestedClaimsHash||e.requestedClaimsHash)&&e.requestedClaimsHash!==t.requestedClaimsHash)return!1;if(e.credentialType===T.ACCESS_TOKEN_WITH_AUTH_SCHEME){if(t.tokenType&&!this.matchTokenType(e,t.tokenType))return!1;if(t.tokenType===C.SSH&&t.keyId&&!this.matchKeyId(e,t.keyId))return!1}return!0},e.prototype.getAppMetadataFilteredBy=function(e){return this.getAppMetadataFilteredByInternal(e.environment,e.clientId)},e.prototype.getAppMetadataFilteredByInternal=function(e,t){var n=this,r=this.getKeys(),o={};return r.forEach((function(r){if(n.isAppMetadata(r)){var i=n.getAppMetadata(r);i&&(e&&!n.matchEnvironment(i,e)||t&&!n.matchClientId(i,t)||(o[r]=i))}})),o},e.prototype.getAuthorityMetadataByAlias=function(e){var t=this,n=this.getAuthorityMetadataKeys(),r=null;return n.forEach((function(n){if(t.isAuthorityMetadata(n)&&-1!==n.indexOf(t.clientId)){var o=t.getAuthorityMetadata(n);o&&-1!==o.aliases.indexOf(e)&&(r=o)}})),r},e.prototype.removeAllAccounts=function(){return s(this,void 0,void 0,(function(){var e,t,n=this;return a(this,(function(r){switch(r.label){case 0:return e=this.getAccountKeys(),t=[],e.forEach((function(e){t.push(n.removeAccount(e))})),[4,Promise.all(t)];case 1:return r.sent(),[2]}}))}))},e.prototype.removeAccount=function(e){return s(this,void 0,void 0,(function(){var t;return a(this,(function(n){switch(n.label){case 0:if(!(t=this.getAccount(e)))throw Dt.createNoAccountFoundError();return[4,this.removeAccountContext(t)];case 1:return n.sent(),this.removeItem(e),[2]}}))}))},e.prototype.removeAccountContext=function(e){return s(this,void 0,void 0,(function(){var t,n,r,o=this;return a(this,(function(i){switch(i.label){case 0:return t=this.getTokenKeys(),n=e.generateAccountId(),r=[],t.idToken.forEach((function(e){0===e.indexOf(n)&&o.removeIdToken(e)})),t.accessToken.forEach((function(e){0===e.indexOf(n)&&r.push(o.removeAccessToken(e))})),t.refreshToken.forEach((function(e){0===e.indexOf(n)&&o.removeRefreshToken(e)})),[4,Promise.all(r)];case 1:return i.sent(),[2]}}))}))},e.prototype.removeAccessToken=function(e){return s(this,void 0,void 0,(function(){var t,n;return a(this,(function(r){switch(r.label){case 0:if(!(t=this.getAccessTokenCredential(e)))return[2];if(t.credentialType.toLowerCase()!==T.ACCESS_TOKEN_WITH_AUTH_SCHEME.toLowerCase())return[3,4];if(t.tokenType!==C.POP)return[3,4];if(!(n=t.keyId))return[3,4];r.label=1;case 1:return r.trys.push([1,3,,4]),[4,this.cryptoImpl.removeTokenBindingKey(n)];case 2:return r.sent(),[3,4];case 3:throw r.sent(),Dt.createBindingKeyNotRemovedError();case 4:return[2,this.removeItem(e)]}}))}))},e.prototype.removeAppMetadata=function(){var e=this;return this.getKeys().forEach((function(t){e.isAppMetadata(t)&&e.removeItem(t)})),!0},e.prototype.readCacheRecord=function(e,t,n){var r=this.getTokenKeys(),o=this.readAccountFromCache(e),i=this.getIdToken(e,r),s=this.getAccessToken(e,t,r),a=this.getRefreshToken(e,!1,r),u=this.readAppMetadataFromCache(n);return o&&i&&(o.idTokenClaims=new xn(i.secret,this.cryptoImpl).claims),{account:o,idToken:i,accessToken:s,refreshToken:a,appMetadata:u}},e.prototype.readAccountFromCache=function(e){var t=Ut.generateAccountCacheKey(e);return this.getAccount(t)},e.prototype.getIdToken=function(e,t){var n=this;this.commonLogger.trace("CacheManager - getIdToken called");var r={homeAccountId:e.homeAccountId,environment:e.environment,credentialType:T.ID_TOKEN,clientId:this.clientId,realm:e.tenantId},o=this.getIdTokensByFilter(r,t),i=o.length;return i<1?(this.commonLogger.info("CacheManager:getIdToken - No token found"),null):i>1?(this.commonLogger.info("CacheManager:getIdToken - Multiple id tokens found, clearing them"),o.forEach((function(e){n.removeIdToken(e.generateCredentialKey())})),null):(this.commonLogger.info("CacheManager:getIdToken - Returning id token"),o[0])},e.prototype.getIdTokensByFilter=function(e,t){var n=this,r=t&&t.idToken||this.getTokenKeys().idToken,o=[];return r.forEach((function(t){if(n.idTokenKeyMatchesFilter(t,i({clientId:n.clientId},e))){var r=n.getIdTokenCredential(t);r&&n.credentialMatchesFilter(r,e)&&o.push(r)}})),o},e.prototype.idTokenKeyMatchesFilter=function(e,t){var n=e.toLowerCase();return!(t.clientId&&-1===n.indexOf(t.clientId.toLowerCase())||t.homeAccountId&&-1===n.indexOf(t.homeAccountId.toLowerCase()))},e.prototype.removeIdToken=function(e){this.removeItem(e)},e.prototype.removeRefreshToken=function(e){this.removeItem(e)},e.prototype.getAccessToken=function(e,t,n){var r=this;this.commonLogger.trace("CacheManager - getAccessToken called");var o=Mn.createSearchScopes(t.scopes),i=t.authenticationScheme||C.BEARER,s=i&&i.toLowerCase()!==C.BEARER.toLowerCase()?T.ACCESS_TOKEN_WITH_AUTH_SCHEME:T.ACCESS_TOKEN,a={homeAccountId:e.homeAccountId,environment:e.environment,credentialType:s,clientId:this.clientId,realm:e.tenantId,target:o,tokenType:i,keyId:t.sshKid,requestedClaimsHash:t.requestedClaimsHash},u=n&&n.accessToken||this.getTokenKeys().accessToken,c=[];u.forEach((function(e){if(r.accessTokenKeyMatchesFilter(e,a,!0)){var t=r.getAccessTokenCredential(e);t&&r.credentialMatchesFilter(t,a)&&c.push(t)}}));var l=c.length;return l<1?(this.commonLogger.info("CacheManager:getAccessToken - No token found"),null):l>1?(this.commonLogger.info("CacheManager:getAccessToken - Multiple access tokens found, clearing them"),c.forEach((function(e){r.removeAccessToken(e.generateCredentialKey())})),null):(this.commonLogger.info("CacheManager:getAccessToken - Returning access token"),c[0])},e.prototype.accessTokenKeyMatchesFilter=function(e,t,n){var r=e.toLowerCase();if(t.clientId&&-1===r.indexOf(t.clientId.toLowerCase()))return!1;if(t.homeAccountId&&-1===r.indexOf(t.homeAccountId.toLowerCase()))return!1;if(t.realm&&-1===r.indexOf(t.realm.toLowerCase()))return!1;if(t.requestedClaimsHash&&-1===r.indexOf(t.requestedClaimsHash.toLowerCase()))return!1;if(t.target)for(var o=t.target.asArray(),i=0;i1)throw Dt.createMultipleMatchingAppMetadataInCacheError();return r[0]},e.prototype.isAppMetadataFOCI=function(e){var t=this.readAppMetadataFromCache(e);return!(!t||t.familyId!==I)},e.prototype.matchHomeAccountId=function(e,t){return!("string"!=typeof e.homeAccountId||t!==e.homeAccountId)},e.prototype.matchLocalAccountId=function(e,t){return!("string"!=typeof e.localAccountId||t!==e.localAccountId)},e.prototype.matchUsername=function(e,t){return!("string"!=typeof e.username||t.toLowerCase()!==e.username.toLowerCase())},e.prototype.matchUserAssertionHash=function(e,t){return!(!e.userAssertionHash||t!==e.userAssertionHash)},e.prototype.matchEnvironment=function(e,t){var n=this.getAuthorityMetadataByAlias(t);return!!(n&&n.aliases.indexOf(e.environment)>-1)},e.prototype.matchCredentialType=function(e,t){return e.credentialType&&t.toLowerCase()===e.credentialType.toLowerCase()},e.prototype.matchClientId=function(e,t){return!(!e.clientId||t!==e.clientId)},e.prototype.matchFamilyId=function(e,t){return!(!e.familyId||t!==e.familyId)},e.prototype.matchRealm=function(e,t){return!(!e.realm||t!==e.realm)},e.prototype.matchNativeAccountId=function(e,t){return!(!e.nativeAccountId||t!==e.nativeAccountId)},e.prototype.matchTarget=function(e,t){return!(e.credentialType!==T.ACCESS_TOKEN&&e.credentialType!==T.ACCESS_TOKEN_WITH_AUTH_SCHEME||!e.target)&&Mn.fromString(e.target).containsScopeSet(t)},e.prototype.matchTokenType=function(e,t){return!(!e.tokenType||e.tokenType!==t)},e.prototype.matchKeyId=function(e,t){return!(!e.keyId||e.keyId!==t)},e.prototype.isAppMetadata=function(e){return-1!==e.indexOf(S)},e.prototype.isAuthorityMetadata=function(e){return-1!==e.indexOf(N)},e.prototype.generateAuthorityMetadataCacheKey=function(e){return N+"-"+this.clientId+"-"+e},e.toObject=function(e,t){for(var n in t)e[n]=t[n];return e},e}(),Un=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.prototype.setAccount=function(){throw W.createUnexpectedError("Storage interface - setAccount() has not been implemented for the cacheStorage interface.")},t.prototype.getAccount=function(){throw W.createUnexpectedError("Storage interface - getAccount() has not been implemented for the cacheStorage interface.")},t.prototype.setIdTokenCredential=function(){throw W.createUnexpectedError("Storage interface - setIdTokenCredential() has not been implemented for the cacheStorage interface.")},t.prototype.getIdTokenCredential=function(){throw W.createUnexpectedError("Storage interface - getIdTokenCredential() has not been implemented for the cacheStorage interface.")},t.prototype.setAccessTokenCredential=function(){throw W.createUnexpectedError("Storage interface - setAccessTokenCredential() has not been implemented for the cacheStorage interface.")},t.prototype.getAccessTokenCredential=function(){throw W.createUnexpectedError("Storage interface - getAccessTokenCredential() has not been implemented for the cacheStorage interface.")},t.prototype.setRefreshTokenCredential=function(){throw W.createUnexpectedError("Storage interface - setRefreshTokenCredential() has not been implemented for the cacheStorage interface.")},t.prototype.getRefreshTokenCredential=function(){throw W.createUnexpectedError("Storage interface - getRefreshTokenCredential() has not been implemented for the cacheStorage interface.")},t.prototype.setAppMetadata=function(){throw W.createUnexpectedError("Storage interface - setAppMetadata() has not been implemented for the cacheStorage interface.")},t.prototype.getAppMetadata=function(){throw W.createUnexpectedError("Storage interface - getAppMetadata() has not been implemented for the cacheStorage interface.")},t.prototype.setServerTelemetry=function(){throw W.createUnexpectedError("Storage interface - setServerTelemetry() has not been implemented for the cacheStorage interface.")},t.prototype.getServerTelemetry=function(){throw W.createUnexpectedError("Storage interface - getServerTelemetry() has not been implemented for the cacheStorage interface.")},t.prototype.setAuthorityMetadata=function(){throw W.createUnexpectedError("Storage interface - setAuthorityMetadata() has not been implemented for the cacheStorage interface.")},t.prototype.getAuthorityMetadata=function(){throw W.createUnexpectedError("Storage interface - getAuthorityMetadata() has not been implemented for the cacheStorage interface.")},t.prototype.getAuthorityMetadataKeys=function(){throw W.createUnexpectedError("Storage interface - getAuthorityMetadataKeys() has not been implemented for the cacheStorage interface.")},t.prototype.setThrottlingCache=function(){throw W.createUnexpectedError("Storage interface - setThrottlingCache() has not been implemented for the cacheStorage interface.")},t.prototype.getThrottlingCache=function(){throw W.createUnexpectedError("Storage interface - getThrottlingCache() has not been implemented for the cacheStorage interface.")},t.prototype.removeItem=function(){throw W.createUnexpectedError("Storage interface - removeItem() has not been implemented for the cacheStorage interface.")},t.prototype.containsKey=function(){throw W.createUnexpectedError("Storage interface - containsKey() has not been implemented for the cacheStorage interface.")},t.prototype.getKeys=function(){throw W.createUnexpectedError("Storage interface - getKeys() has not been implemented for the cacheStorage interface.")},t.prototype.getAccountKeys=function(){throw W.createUnexpectedError("Storage interface - getAccountKeys() has not been implemented for the cacheStorage interface.")},t.prototype.getTokenKeys=function(){throw W.createUnexpectedError("Storage interface - getTokenKeys() has not been implemented for the cacheStorage interface.")},t.prototype.clear=function(){return s(this,void 0,void 0,(function(){return a(this,(function(e){throw W.createUnexpectedError("Storage interface - clear() has not been implemented for the cacheStorage interface.")}))}))},t.prototype.updateCredentialCacheKey=function(){throw W.createUnexpectedError("Storage interface - updateCredentialCacheKey() has not been implemented for the cacheStorage interface.")},t}(Fn),kn=function(){function e(){}return e.prototype.generateAccountId=function(){return e.generateAccountIdForCacheKey(this.homeAccountId,this.environment)},e.prototype.generateCredentialId=function(){return e.generateCredentialIdForCacheKey(this.credentialType,this.clientId,this.realm,this.familyId)},e.prototype.generateTarget=function(){return e.generateTargetForCacheKey(this.target)},e.prototype.generateCredentialKey=function(){return e.generateCredentialCacheKey(this.homeAccountId,this.environment,this.credentialType,this.clientId,this.realm,this.target,this.familyId,this.tokenType,this.requestedClaimsHash)},e.prototype.generateType=function(){switch(this.credentialType){case T.ID_TOKEN:return w.ID_TOKEN;case T.ACCESS_TOKEN:case T.ACCESS_TOKEN_WITH_AUTH_SCHEME:return w.ACCESS_TOKEN;case T.REFRESH_TOKEN:return w.REFRESH_TOKEN;default:throw Dt.createUnexpectedCredentialTypeError()}},e.generateCredentialCacheKey=function(e,t,n,r,o,i,s,a,u){return[this.generateAccountIdForCacheKey(e,t),this.generateCredentialIdForCacheKey(n,r,o,s),this.generateTargetForCacheKey(i),this.generateClaimsHashForCacheKey(u),this.generateSchemeForCacheKey(a)].join(b.CACHE_KEY_SEPARATOR).toLowerCase()},e.generateAccountIdForCacheKey=function(e,t){return[e,t].join(b.CACHE_KEY_SEPARATOR).toLowerCase()},e.generateCredentialIdForCacheKey=function(e,t,n,r){return[e,e===T.REFRESH_TOKEN&&r||t,n||d.EMPTY_STRING].join(b.CACHE_KEY_SEPARATOR).toLowerCase()},e.generateTargetForCacheKey=function(e){return(e||d.EMPTY_STRING).toLowerCase()},e.generateClaimsHashForCacheKey=function(e){return(e||d.EMPTY_STRING).toLowerCase()},e.generateSchemeForCacheKey=function(e){return e&&e.toLowerCase()!==C.BEARER.toLowerCase()?e.toLowerCase():d.EMPTY_STRING},e}(),jn=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.createIdTokenEntity=function(e,n,r,o,i){var s=new t;return s.credentialType=T.ID_TOKEN,s.homeAccountId=e,s.environment=n,s.clientId=o,s.secret=r,s.realm=i,s},t.isIdTokenEntity=function(e){return!!e&&e.hasOwnProperty("homeAccountId")&&e.hasOwnProperty("environment")&&e.hasOwnProperty("credentialType")&&e.hasOwnProperty("realm")&&e.hasOwnProperty("clientId")&&e.hasOwnProperty("secret")&&e.credentialType===T.ID_TOKEN},t}(kn),Gn=function(){function e(){}return e.nowSeconds=function(){return Math.round((new Date).getTime()/1e3)},e.isTokenExpired=function(t,n){var r=Number(t)||0;return e.nowSeconds()+n>r},e.wasClockTurnedBack=function(t){return Number(t)>e.nowSeconds()},e.delay=function(e,t){return new Promise((function(n){return setTimeout((function(){return n(t)}),e)}))},e}(),Vn=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.createAccessTokenEntity=function(e,n,r,o,i,s,a,u,c,l,h,f,p,d,E){var m,_,g=new t;g.homeAccountId=e,g.credentialType=T.ACCESS_TOKEN,g.secret=r;var y=Gn.nowSeconds();if(g.cachedAt=y.toString(),g.expiresOn=a.toString(),g.extendedExpiresOn=u.toString(),l&&(g.refreshOn=l.toString()),g.environment=n,g.clientId=o,g.realm=i,g.target=s,g.userAssertionHash=f,g.tokenType=Lt.isEmpty(h)?C.BEARER:h,d&&(g.requestedClaims=d,g.requestedClaimsHash=E),(null===(m=g.tokenType)||void 0===m?void 0:m.toLowerCase())!==C.BEARER.toLowerCase())switch(g.credentialType=T.ACCESS_TOKEN_WITH_AUTH_SCHEME,g.tokenType){case C.POP:var A=xn.extractTokenClaims(r,c);if(!(null===(_=null==A?void 0:A.cnf)||void 0===_?void 0:_.kid))throw Dt.createTokenClaimsRequiredError();g.keyId=A.cnf.kid;break;case C.SSH:g.keyId=p}return g},t.isAccessTokenEntity=function(e){return!!e&&e.hasOwnProperty("homeAccountId")&&e.hasOwnProperty("environment")&&e.hasOwnProperty("credentialType")&&e.hasOwnProperty("realm")&&e.hasOwnProperty("clientId")&&e.hasOwnProperty("secret")&&e.hasOwnProperty("target")&&(e.credentialType===T.ACCESS_TOKEN||e.credentialType===T.ACCESS_TOKEN_WITH_AUTH_SCHEME)},t}(kn),Yn=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.createRefreshTokenEntity=function(e,n,r,o,i,s){var a=new t;return a.clientId=o,a.credentialType=T.REFRESH_TOKEN,a.environment=n,a.homeAccountId=e,a.secret=r,a.userAssertionHash=s,i&&(a.familyId=i),a},t.isRefreshTokenEntity=function(e){return!!e&&e.hasOwnProperty("homeAccountId")&&e.hasOwnProperty("environment")&&e.hasOwnProperty("credentialType")&&e.hasOwnProperty("clientId")&&e.hasOwnProperty("secret")&&e.credentialType===T.REFRESH_TOKEN},t}(kn),Hn=function(){function e(){}return e.prototype.generateAppMetadataKey=function(){return e.generateAppMetadataCacheKey(this.environment,this.clientId)},e.generateAppMetadataCacheKey=function(e,t){return[S,e,t].join(b.CACHE_KEY_SEPARATOR).toLowerCase()},e.createAppMetadataEntity=function(t,n,r){var o=new e;return o.clientId=t,o.environment=n,r&&(o.familyId=r),o},e.isAppMetadataEntity=function(e,t){return!!t&&0===e.indexOf(S)&&t.hasOwnProperty("clientId")&&t.hasOwnProperty("environment")},e}(),Qn=function(){function e(){this.failedRequests=[],this.errors=[],this.cacheHits=0}return e.isServerTelemetryEntity=function(e,t){var n=0===e.indexOf(D.CACHE_KEY),r=!0;return t&&(r=t.hasOwnProperty("failedRequests")&&t.hasOwnProperty("errors")&&t.hasOwnProperty("cacheHits")),n&&r},e}(),Wn=function(){function e(){this.expiresAt=Gn.nowSeconds()+86400}return e.prototype.updateCloudDiscoveryMetadata=function(e,t){this.aliases=e.aliases,this.preferred_cache=e.preferred_cache,this.preferred_network=e.preferred_network,this.aliasesFromNetwork=t},e.prototype.updateEndpointMetadata=function(e,t){this.authorization_endpoint=e.authorization_endpoint,this.token_endpoint=e.token_endpoint,this.end_session_endpoint=e.end_session_endpoint,this.issuer=e.issuer,this.endpointsFromNetwork=t,this.jwks_uri=e.jwks_uri},e.prototype.updateCanonicalAuthority=function(e){this.canonical_authority=e},e.prototype.resetExpiresAt=function(){this.expiresAt=Gn.nowSeconds()+86400},e.prototype.isExpired=function(){return this.expiresAt<=Gn.nowSeconds()},e.isAuthorityMetadataEntity=function(e,t){return!!t&&0===e.indexOf(N)&&t.hasOwnProperty("aliases")&&t.hasOwnProperty("preferred_cache")&&t.hasOwnProperty("preferred_network")&&t.hasOwnProperty("canonical_authority")&&t.hasOwnProperty("authorization_endpoint")&&t.hasOwnProperty("token_endpoint")&&t.hasOwnProperty("issuer")&&t.hasOwnProperty("aliasesFromNetwork")&&t.hasOwnProperty("endpointsFromNetwork")&&t.hasOwnProperty("expiresAt")&&t.hasOwnProperty("jwks_uri")},e}(),zn=function(){function e(){}return e.isThrottlingEntity=function(e,t){var n=!1;e&&(n=0===e.indexOf(j));var r=!0;return t&&(r=t.hasOwnProperty("throttleTime")),n&&r},e}(),qn=function(){function e(e,t){this.cache=e,this.hasChanged=t}return Object.defineProperty(e.prototype,"cacheHasChanged",{get:function(){return this.hasChanged},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"tokenCache",{get:function(){return this.cache},enumerable:!1,configurable:!0}),e}(),Kn={createNewGuid:function(){throw W.createUnexpectedError("Crypto interface - createNewGuid() has not been implemented")},base64Decode:function(){throw W.createUnexpectedError("Crypto interface - base64Decode() has not been implemented")},base64Encode:function(){throw W.createUnexpectedError("Crypto interface - base64Encode() has not been implemented")},generatePkceCodes:function(){return s(this,void 0,void 0,(function(){return a(this,(function(e){throw W.createUnexpectedError("Crypto interface - generatePkceCodes() has not been implemented")}))}))},getPublicKeyThumbprint:function(){return s(this,void 0,void 0,(function(){return a(this,(function(e){throw W.createUnexpectedError("Crypto interface - getPublicKeyThumbprint() has not been implemented")}))}))},removeTokenBindingKey:function(){return s(this,void 0,void 0,(function(){return a(this,(function(e){throw W.createUnexpectedError("Crypto interface - removeTokenBindingKey() has not been implemented")}))}))},clearKeystore:function(){return s(this,void 0,void 0,(function(){return a(this,(function(e){throw W.createUnexpectedError("Crypto interface - clearKeystore() has not been implemented")}))}))},signJwt:function(){return s(this,void 0,void 0,(function(){return a(this,(function(e){throw W.createUnexpectedError("Crypto interface - signJwt() has not been implemented")}))}))},hashString:function(){return s(this,void 0,void 0,(function(){return a(this,(function(e){throw W.createUnexpectedError("Crypto interface - hashString() has not been implemented")}))}))}},Xn={tokenRenewalOffsetSeconds:300,preventCorsPreflight:!1},Jn={loggerCallback:function(){},piiLoggingEnabled:!1,logLevel:G.Info,correlationId:d.EMPTY_STRING},$n={claimsBasedCachingEnabled:!0},Zn={sendGetRequestAsync:function(){return s(this,void 0,void 0,(function(){return a(this,(function(e){throw W.createUnexpectedError("Network interface - sendGetRequestAsync() has not been implemented")}))}))},sendPostRequestAsync:function(){return s(this,void 0,void 0,(function(){return a(this,(function(e){throw W.createUnexpectedError("Network interface - sendPostRequestAsync() has not been implemented")}))}))}},er={sku:d.SKU,version:Pn,cpu:d.EMPTY_STRING,os:d.EMPTY_STRING},tr={clientSecret:d.EMPTY_STRING,clientAssertion:void 0},nr={azureCloudInstance:k.None,tenant:""+d.DEFAULT_COMMON_TENANT},rr={application:{appName:"",appVersion:""}},or=function(e){function t(n,r,o){var i=e.call(this,n,r,o)||this;return i.name="ServerError",Object.setPrototypeOf(i,t.prototype),i}return o(t,e),t}(W),ir=function(){function e(){}return e.generateThrottlingStorageKey=function(e){return j+"."+JSON.stringify(e)},e.preProcess=function(t,n){var r,o=e.generateThrottlingStorageKey(n),i=t.getThrottlingCache(o);if(i){if(i.throttleTime=500&&e.status<600},e.checkResponseForRetryAfter=function(e){return!!e.headers&&e.headers.hasOwnProperty(c.RETRY_AFTER)&&(e.status<200||e.status>=300)},e.calculateThrottleTime=function(e){var t=e<=0?0:e,n=Date.now()/1e3;return Math.floor(1e3*Math.min(n+(t||60),n+3600))},e.removeThrottle=function(e,t,n,r){var o={clientId:t,authority:n.authority,scopes:n.scopes,homeAccountIdentifier:r,claims:n.claims,authenticationScheme:n.authenticationScheme,resourceRequestMethod:n.resourceRequestMethod,resourceRequestUri:n.resourceRequestUri,shrClaims:n.shrClaims,sshKid:n.sshKid},i=this.generateThrottlingStorageKey(o);e.removeItem(i)},e}(),sr=function(){function e(e,t){this.networkClient=e,this.cacheManager=t}return e.prototype.sendPostRequest=function(e,t,n){return s(this,void 0,void 0,(function(){var r,o;return a(this,(function(i){switch(i.label){case 0:ir.preProcess(this.cacheManager,e),i.label=1;case 1:return i.trys.push([1,3,,4]),[4,this.networkClient.sendPostRequestAsync(t,n)];case 2:return r=i.sent(),[3,4];case 3:throw(o=i.sent())instanceof W?o:Dt.createNetworkError(t,o);case 4:return ir.postProcess(this.cacheManager,e,r),[2,r]}}))}))},e}();!function(e){e.HOME_ACCOUNT_ID="home_account_id",e.UPN="UPN"}(Ft||(Ft={}));var ar,ur,cr,lr=function(){function e(){}return e.validateRedirectUri=function(e){if(Lt.isEmpty(e))throw Ln.createRedirectUriEmptyError()},e.validatePrompt=function(e){var t=[];for(var n in g)t.push(g[n]);if(t.indexOf(e)<0)throw Ln.createInvalidPromptError(e)},e.validateClaims=function(e){try{JSON.parse(e)}catch(e){throw Ln.createInvalidClaimsRequestError()}},e.validateCodeChallengeParams=function(e,t){if(Lt.isEmpty(e)||Lt.isEmpty(t))throw Ln.createInvalidCodeChallengeParamsError();this.validateCodeChallengeMethod(t)},e.validateCodeChallengeMethod=function(e){if([O.PLAIN,O.S256].indexOf(e)<0)throw Ln.createInvalidCodeChallengeMethodError()},e.sanitizeEQParams=function(e,t){return e?(t.forEach((function(t,n){e[n]&&delete e[n]})),Object.fromEntries(Object.entries(e).filter((function(e){return""!==e[1]})))):{}},e}(),hr=function(){function e(){this.parameters=new Map}return e.prototype.addResponseTypeCode=function(){this.parameters.set(f.RESPONSE_TYPE,encodeURIComponent(d.CODE_RESPONSE_TYPE))},e.prototype.addResponseTypeForTokenAndIdToken=function(){this.parameters.set(f.RESPONSE_TYPE,encodeURIComponent(d.TOKEN_RESPONSE_TYPE+" "+d.ID_TOKEN_RESPONSE_TYPE))},e.prototype.addResponseMode=function(e){this.parameters.set(f.RESPONSE_MODE,encodeURIComponent(e||y.QUERY))},e.prototype.addNativeBroker=function(){this.parameters.set(f.NATIVE_BROKER,encodeURIComponent("1"))},e.prototype.addScopes=function(e,t){void 0===t&&(t=!0);var n=t?u(e||[],E):e||[],r=new Mn(n);this.parameters.set(f.SCOPE,encodeURIComponent(r.printScopes()))},e.prototype.addClientId=function(e){this.parameters.set(f.CLIENT_ID,encodeURIComponent(e))},e.prototype.addRedirectUri=function(e){lr.validateRedirectUri(e),this.parameters.set(f.REDIRECT_URI,encodeURIComponent(e))},e.prototype.addPostLogoutRedirectUri=function(e){lr.validateRedirectUri(e),this.parameters.set(f.POST_LOGOUT_URI,encodeURIComponent(e))},e.prototype.addIdTokenHint=function(e){this.parameters.set(f.ID_TOKEN_HINT,encodeURIComponent(e))},e.prototype.addDomainHint=function(e){this.parameters.set(_.DOMAIN_HINT,encodeURIComponent(e))},e.prototype.addLoginHint=function(e){this.parameters.set(_.LOGIN_HINT,encodeURIComponent(e))},e.prototype.addCcsUpn=function(e){this.parameters.set(c.CCS_HEADER,encodeURIComponent("UPN:"+e))},e.prototype.addCcsOid=function(e){this.parameters.set(c.CCS_HEADER,encodeURIComponent("Oid:"+e.uid+"@"+e.utid))},e.prototype.addSid=function(e){this.parameters.set(_.SID,encodeURIComponent(e))},e.prototype.addClaims=function(e,t){var n=this.addClientCapabilitiesToClaims(e,t);lr.validateClaims(n),this.parameters.set(f.CLAIMS,encodeURIComponent(n))},e.prototype.addCorrelationId=function(e){this.parameters.set(f.CLIENT_REQUEST_ID,encodeURIComponent(e))},e.prototype.addLibraryInfo=function(e){this.parameters.set(f.X_CLIENT_SKU,e.sku),this.parameters.set(f.X_CLIENT_VER,e.version),e.os&&this.parameters.set(f.X_CLIENT_OS,e.os),e.cpu&&this.parameters.set(f.X_CLIENT_CPU,e.cpu)},e.prototype.addApplicationTelemetry=function(e){(null==e?void 0:e.appName)&&this.parameters.set(f.X_APP_NAME,e.appName),(null==e?void 0:e.appVersion)&&this.parameters.set(f.X_APP_VER,e.appVersion)},e.prototype.addPrompt=function(e){lr.validatePrompt(e),this.parameters.set(""+f.PROMPT,encodeURIComponent(e))},e.prototype.addState=function(e){Lt.isEmpty(e)||this.parameters.set(f.STATE,encodeURIComponent(e))},e.prototype.addNonce=function(e){this.parameters.set(f.NONCE,encodeURIComponent(e))},e.prototype.addCodeChallengeParams=function(e,t){if(lr.validateCodeChallengeParams(e,t),!e||!t)throw Ln.createInvalidCodeChallengeParamsError();this.parameters.set(f.CODE_CHALLENGE,encodeURIComponent(e)),this.parameters.set(f.CODE_CHALLENGE_METHOD,encodeURIComponent(t))},e.prototype.addAuthorizationCode=function(e){this.parameters.set(f.CODE,encodeURIComponent(e))},e.prototype.addDeviceCode=function(e){this.parameters.set(f.DEVICE_CODE,encodeURIComponent(e))},e.prototype.addRefreshToken=function(e){this.parameters.set(f.REFRESH_TOKEN,encodeURIComponent(e))},e.prototype.addCodeVerifier=function(e){this.parameters.set(f.CODE_VERIFIER,encodeURIComponent(e))},e.prototype.addClientSecret=function(e){this.parameters.set(f.CLIENT_SECRET,encodeURIComponent(e))},e.prototype.addClientAssertion=function(e){Lt.isEmpty(e)||this.parameters.set(f.CLIENT_ASSERTION,encodeURIComponent(e))},e.prototype.addClientAssertionType=function(e){Lt.isEmpty(e)||this.parameters.set(f.CLIENT_ASSERTION_TYPE,encodeURIComponent(e))},e.prototype.addOboAssertion=function(e){this.parameters.set(f.OBO_ASSERTION,encodeURIComponent(e))},e.prototype.addRequestTokenUse=function(e){this.parameters.set(f.REQUESTED_TOKEN_USE,encodeURIComponent(e))},e.prototype.addGrantType=function(e){this.parameters.set(f.GRANT_TYPE,encodeURIComponent(e))},e.prototype.addClientInfo=function(){this.parameters.set("client_info","1")},e.prototype.addExtraQueryParameters=function(e){var t=this,n=lr.sanitizeEQParams(e,this.parameters);Object.keys(n).forEach((function(n){t.parameters.set(n,e[n])}))},e.prototype.addClientCapabilitiesToClaims=function(e,t){var n;if(e)try{n=JSON.parse(e)}catch(e){throw Ln.createInvalidClaimsRequestError()}else n={};return t&&t.length>0&&(n.hasOwnProperty(p.ACCESS_TOKEN)||(n[p.ACCESS_TOKEN]={}),n[p.ACCESS_TOKEN][p.XMS_CC]={values:t}),JSON.stringify(n)},e.prototype.addUsername=function(e){this.parameters.set(L.username,encodeURIComponent(e))},e.prototype.addPassword=function(e){this.parameters.set(L.password,encodeURIComponent(e))},e.prototype.addPopToken=function(e){Lt.isEmpty(e)||(this.parameters.set(f.TOKEN_TYPE,C.POP),this.parameters.set(f.REQ_CNF,encodeURIComponent(e)))},e.prototype.addSshJwk=function(e){Lt.isEmpty(e)||(this.parameters.set(f.TOKEN_TYPE,C.SSH),this.parameters.set(f.REQ_CNF,encodeURIComponent(e)))},e.prototype.addServerTelemetry=function(e){this.parameters.set(f.X_CLIENT_CURR_TELEM,e.generateCurrentRequestHeaderValue()),this.parameters.set(f.X_CLIENT_LAST_TELEM,e.generateLastRequestHeaderValue())},e.prototype.addThrottling=function(){this.parameters.set(f.X_MS_LIB_CAPABILITY,"retry-after, h429")},e.prototype.addLogoutHint=function(e){this.parameters.set(f.LOGOUT_HINT,encodeURIComponent(e))},e.prototype.createQueryString=function(){var e=new Array;return this.parameters.forEach((function(t,n){e.push(n+"="+t)})),e.join("&")},e}(),fr=function(){function e(e,t){this.config=function(e){var t,n=e.authOptions,r=e.systemOptions,o=e.loggerOptions,s=e.cacheOptions,a=e.storageInterface,u=e.networkInterface,c=e.cryptoInterface,l=e.clientCredentials,h=e.libraryInfo,f=e.telemetry,p=e.serverTelemetryManager,d=e.persistencePlugin,E=e.serializableCache,m=i(i({},Jn),o);return{authOptions:(t=n,i({clientCapabilities:[],azureCloudOptions:nr,skipAuthorityMetadataCache:!1},t)),systemOptions:i(i({},Xn),r),loggerOptions:m,cacheOptions:i(i({},$n),s),storageInterface:a||new Un(n.clientId,Kn,new xt(m)),networkInterface:u||Zn,cryptoInterface:c||Kn,clientCredentials:l||tr,libraryInfo:i(i({},er),h),telemetry:i(i({},rr),f),serverTelemetryManager:p||null,persistencePlugin:d||null,serializableCache:E||null}}(e),this.logger=new xt(this.config.loggerOptions,Bn,Pn),this.cryptoUtils=this.config.cryptoInterface,this.cacheManager=this.config.storageInterface,this.networkClient=this.config.networkInterface,this.networkManager=new sr(this.networkClient,this.cacheManager),this.serverTelemetryManager=this.config.serverTelemetryManager,this.authority=this.config.authOptions.authority,this.performanceClient=t}return e.prototype.createTokenRequestHeaders=function(e){var t={};if(t[c.CONTENT_TYPE]=d.URL_FORM_CONTENT_TYPE,!this.config.systemOptions.preventCorsPreflight&&e)switch(e.type){case Ft.HOME_ACCOUNT_ID:try{var n=Pt(e.credential);t[c.CCS_HEADER]="Oid:"+n.uid+"@"+n.utid}catch(e){this.logger.verbose("Could not parse home account ID for CCS Header: "+e)}break;case Ft.UPN:t[c.CCS_HEADER]="UPN: "+e.credential}return t},e.prototype.executePostToTokenEndpoint=function(e,t,n,r){return s(this,void 0,void 0,(function(){var o;return a(this,(function(i){switch(i.label){case 0:return[4,this.networkManager.sendPostRequest(r,e,{body:t,headers:n})];case 1:return o=i.sent(),this.config.serverTelemetryManager&&o.status<500&&429!==o.status&&this.config.serverTelemetryManager.clearTelemetryCache(),[2,o]}}))}))},e.prototype.updateAuthority=function(e){if(!e.discoveryComplete())throw Dt.createEndpointDiscoveryIncompleteError("Updated authority has not completed endpoint discovery.");this.authority=e},e.prototype.createTokenQueryParameters=function(e){var t=new hr;return e.tokenQueryParameters&&t.addExtraQueryParameters(e.tokenQueryParameters),t.createQueryString()},e}(),pr=["interaction_required","consent_required","login_required"],dr=["message_only","additional_action","basic_action","user_password_expired","consent_required"],Er="no_tokens_found",mr="No refresh token found in the cache. Please sign-in.",_r="native_account_unavailable",gr="The requested account is not available in the native broker. It may have been deleted or logged out. Please sign-in again using an interactive API.",yr=function(e){function t(n,r,o,i,s,a,u){var c=e.call(this,n,r,o)||this;return Object.setPrototypeOf(c,t.prototype),c.timestamp=i||d.EMPTY_STRING,c.traceId=s||d.EMPTY_STRING,c.correlationId=a||d.EMPTY_STRING,c.claims=u||d.EMPTY_STRING,c.name="InteractionRequiredAuthError",c}return o(t,e),t.isInteractionRequiredError=function(e,t,n){var r=!!e&&pr.indexOf(e)>-1,o=!!n&&dr.indexOf(n)>-1,i=!!t&&pr.some((function(e){return t.indexOf(e)>-1}));return r||i||o},t.createNoTokensFoundError=function(){return new t(Er,mr)},t.createNativeAccountUnavailableError=function(){return new t(_r,gr)},t}(W),Ar=function(e,t,n,r,o){this.account=e||null,this.idToken=t||null,this.accessToken=n||null,this.refreshToken=r||null,this.appMetadata=o||null},vr=function(){function e(){}return e.setRequestState=function(t,n,r){var o=e.generateLibraryState(t,r);return Lt.isEmpty(n)?o:""+o+d.RESOURCE_DELIM+n},e.generateLibraryState=function(e,t){if(!e)throw Dt.createNoCryptoObjectError("generateLibraryState");var n={id:e.createNewGuid()};t&&(n.meta=t);var r=JSON.stringify(n);return e.base64Encode(r)},e.parseRequestState=function(e,t){if(!e)throw Dt.createNoCryptoObjectError("parseRequestState");if(Lt.isEmpty(t))throw Dt.createInvalidStateError(t,"Null, undefined or empty state");try{var n=t.split(d.RESOURCE_DELIM),r=n[0],o=n.length>1?n.slice(1).join(d.RESOURCE_DELIM):d.EMPTY_STRING,i=e.base64Decode(r),s=JSON.parse(i);return{userRequestState:Lt.isEmpty(o)?d.EMPTY_STRING:o,libraryState:s}}catch(e){throw Dt.createInvalidStateError(t,e)}},e}(),br=function(){function e(t){if(this._urlString=t,Lt.isEmpty(this._urlString))throw Ln.createUrlEmptyError();Lt.isEmpty(this.getHash())&&(this._urlString=e.canonicalizeUri(t))}return Object.defineProperty(e.prototype,"urlString",{get:function(){return this._urlString},enumerable:!1,configurable:!0}),e.canonicalizeUri=function(e){if(e){var t=e.toLowerCase();return Lt.endsWith(t,"?")?t=t.slice(0,-1):Lt.endsWith(t,"?/")&&(t=t.slice(0,-2)),Lt.endsWith(t,"/")||(t+="/"),t}return e},e.prototype.validateAsUri=function(){var e;try{e=this.getUrlComponents()}catch(e){throw Ln.createUrlParseError(e)}if(!e.HostNameAndPort||!e.PathSegments)throw Ln.createUrlParseError("Given url string: "+this.urlString);if(!e.Protocol||"https:"!==e.Protocol.toLowerCase())throw Ln.createInsecureAuthorityUriError(this.urlString)},e.appendQueryString=function(e,t){return Lt.isEmpty(t)?e:e.indexOf("?")<0?e+"?"+t:e+"&"+t},e.removeHashFromUrl=function(t){return e.canonicalizeUri(t.split("#")[0])},e.prototype.replaceTenantPath=function(t){var n=this.getUrlComponents(),r=n.PathSegments;return!t||0===r.length||r[0]!==h.COMMON&&r[0]!==h.ORGANIZATIONS||(r[0]=t),e.constructAuthorityUriFromObject(n)},e.prototype.getHash=function(){return e.parseHash(this.urlString)},e.prototype.getUrlComponents=function(){var e=RegExp("^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\\?([^#]*))?(#(.*))?"),t=this.urlString.match(e);if(!t)throw Ln.createUrlParseError("Given url string: "+this.urlString);var n={Protocol:t[1],HostNameAndPort:t[4],AbsolutePath:t[5],QueryString:t[7]},r=n.AbsolutePath.split("/");return r=r.filter((function(e){return e&&e.length>0})),n.PathSegments=r,!Lt.isEmpty(n.QueryString)&&n.QueryString.endsWith("/")&&(n.QueryString=n.QueryString.substring(0,n.QueryString.length-1)),n},e.getDomainFromUrl=function(e){var t=RegExp("^([^:/?#]+://)?([^/?#]*)"),n=e.match(t);if(!n)throw Ln.createUrlParseError("Given url string: "+e);return n[2]},e.getAbsoluteUrl=function(t,n){if(t[0]===d.FORWARD_SLASH){var r=new e(n).getUrlComponents();return r.Protocol+"//"+r.HostNameAndPort+t}return t},e.parseHash=function(e){var t=e.indexOf("#"),n=e.indexOf("#/");return n>-1?e.substring(n+2):t>-1?e.substring(t+1):d.EMPTY_STRING},e.parseQueryString=function(e){var t=e.indexOf("?"),n=e.indexOf("/?");return n>-1?e.substring(n+2):t>-1?e.substring(t+1):d.EMPTY_STRING},e.constructAuthorityUriFromObject=function(t){return new e(t.Protocol+"//"+t.HostNameAndPort+"/"+t.PathSegments.join("/"))},e.getDeserializedHash=function(t){if(Lt.isEmpty(t))return{};var n=e.parseHash(t),r=Lt.queryStringToObject(Lt.isEmpty(n)?t:n);if(!r)throw Dt.createHashNotDeserializedError(JSON.stringify(r));return r},e.getDeserializedQueryString=function(t){if(Lt.isEmpty(t))return{};var n=e.parseQueryString(t),r=Lt.queryStringToObject(Lt.isEmpty(n)?t:n);if(!r)throw Dt.createHashNotDeserializedError(JSON.stringify(r));return r},e.hashContainsKnownProperties=function(t){if(Lt.isEmpty(t)||t.indexOf("=")<0)return!1;var n=e.getDeserializedHash(t);return!!(n.code||n.error_description||n.error||n.state)},e}();!function(e){e.AcquireTokenByCode="acquireTokenByCode",e.AcquireTokenByRefreshToken="acquireTokenByRefreshToken",e.AcquireTokenSilent="acquireTokenSilent",e.AcquireTokenSilentAsync="acquireTokenSilentAsync",e.AcquireTokenPopup="acquireTokenPopup",e.CryptoOptsGetPublicKeyThumbprint="cryptoOptsGetPublicKeyThumbprint",e.CryptoOptsSignJwt="cryptoOptsSignJwt",e.SilentCacheClientAcquireToken="silentCacheClientAcquireToken",e.SilentIframeClientAcquireToken="silentIframeClientAcquireToken",e.SilentRefreshClientAcquireToken="silentRefreshClientAcquireToken",e.SsoSilent="ssoSilent",e.StandardInteractionClientGetDiscoveredAuthority="standardInteractionClientGetDiscoveredAuthority",e.FetchAccountIdWithNativeBroker="fetchAccountIdWithNativeBroker",e.NativeInteractionClientAcquireToken="nativeInteractionClientAcquireToken",e.BaseClientCreateTokenRequestHeaders="baseClientCreateTokenRequestHeaders",e.BrokerHandhshake="brokerHandshake",e.AcquireTokenByRefreshTokenInBroker="acquireTokenByRefreshTokenInBroker",e.AcquireTokenByBroker="acquireTokenByBroker",e.RefreshTokenClientExecuteTokenRequest="refreshTokenClientExecuteTokenRequest",e.RefreshTokenClientAcquireToken="refreshTokenClientAcquireToken",e.RefreshTokenClientAcquireTokenWithCachedRefreshToken="refreshTokenClientAcquireTokenWithCachedRefreshToken",e.RefreshTokenClientAcquireTokenByRefreshToken="refreshTokenClientAcquireTokenByRefreshToken",e.RefreshTokenClientCreateTokenRequestBody="refreshTokenClientCreateTokenRequestBody",e.AcquireTokenFromCache="acquireTokenFromCache",e.AcquireTokenBySilentIframe="acquireTokenBySilentIframe",e.InitializeBaseRequest="initializeBaseRequest",e.InitializeSilentRequest="initializeSilentRequest",e.InitializeClientApplication="initializeClientApplication",e.SilentIframeClientTokenHelper="silentIframeClientTokenHelper",e.SilentHandlerInitiateAuthRequest="silentHandlerInitiateAuthRequest",e.SilentHandlerMonitorIframeForHash="silentHandlerMonitorIframeForHash",e.SilentHandlerLoadFrame="silentHandlerLoadFrame",e.StandardInteractionClientCreateAuthCodeClient="standardInteractionClientCreateAuthCodeClient",e.StandardInteractionClientGetClientConfiguration="standardInteractionClientGetClientConfiguration",e.StandardInteractionClientInitializeAuthorizationRequest="standardInteractionClientInitializeAuthorizationRequest",e.StandardInteractionClientInitializeAuthorizationCodeRequest="standardInteractionClientInitializeAuthorizationCodeRequest",e.GetAuthCodeUrl="getAuthCodeUrl",e.HandleCodeResponseFromServer="handleCodeResponseFromServer",e.HandleCodeResponseFromHash="handleCodeResponseFromHash",e.UpdateTokenEndpointAuthority="updateTokenEndpointAuthority",e.AuthClientAcquireToken="authClientAcquireToken",e.AuthClientExecuteTokenRequest="authClientExecuteTokenRequest",e.AuthClientCreateTokenRequestBody="authClientCreateTokenRequestBody",e.AuthClientCreateQueryString="authClientCreateQueryString",e.PopTokenGenerateCnf="popTokenGenerateCnf",e.PopTokenGenerateKid="popTokenGenerateKid",e.HandleServerTokenResponse="handleServerTokenResponse",e.AuthorityFactoryCreateDiscoveredInstance="authorityFactoryCreateDiscoveredInstance",e.AuthorityResolveEndpointsAsync="authorityResolveEndpointsAsync",e.AuthorityGetCloudDiscoveryMetadataFromNetwork="authorityGetCloudDiscoveryMetadataFromNetwork",e.AuthorityUpdateCloudDiscoveryMetadata="authorityUpdateCloudDiscoveryMetadata",e.AuthorityGetEndpointMetadataFromNetwork="authorityGetEndpointMetadataFromNetwork",e.AuthorityUpdateEndpointMetadata="authorityUpdateEndpointMetadata",e.AuthorityUpdateMetadataWithRegionalInformation="authorityUpdateMetadataWithRegionalInformation",e.RegionDiscoveryDetectRegion="regionDiscoveryDetectRegion",e.RegionDiscoveryGetRegionFromIMDS="regionDiscoveryGetRegionFromIMDS",e.RegionDiscoveryGetCurrentVersion="regionDiscoveryGetCurrentVersion",e.AcquireTokenByCodeAsync="acquireTokenByCodeAsync",e.GetEndpointMetadataFromNetwork="getEndpointMetadataFromNetwork",e.GetCloudDiscoveryMetadataFromNetworkMeasurement="getCloudDiscoveryMetadataFromNetworkMeasurement",e.HandleRedirectPromiseMeasurement="handleRedirectPromiseMeasurement",e.UpdateCloudDiscoveryMetadataMeasurement="updateCloudDiscoveryMetadataMeasurement",e.UsernamePasswordClientAcquireToken="usernamePasswordClientAcquireToken",e.NativeMessageHandlerHandshake="nativeMessageHandlerHandshake",e.ClearTokensAndKeysWithClaims="clearTokensAndKeysWithClaims"}(ar||(ar={})),function(e){e[e.NotStarted=0]="NotStarted",e[e.InProgress=1]="InProgress",e[e.Completed=2]="Completed"}(ur||(ur={})),new Set(["accessTokenSize","durationMs","idTokenSize","matsSilentStatus","matsHttpStatus","refreshTokenSize","queuedTimeMs","startTimeMs","status"]),function(e){e.SW="sw",e.UHW="uhw"}(cr||(cr={}));var Tr=function(){function e(e,t){this.cryptoUtils=e,this.performanceClient=t}return e.prototype.generateCnf=function(e){var t,n;return s(this,void 0,void 0,(function(){var r,o,i;return a(this,(function(s){switch(s.label){case 0:return null===(t=this.performanceClient)||void 0===t||t.addQueueMeasurement(ar.PopTokenGenerateCnf,e.correlationId),null===(n=this.performanceClient)||void 0===n||n.setPreQueueTime(ar.PopTokenGenerateKid,e.correlationId),[4,this.generateKid(e)];case 1:return r=s.sent(),o=this.cryptoUtils.base64Encode(JSON.stringify(r)),i={kid:r.kid,reqCnfString:o},[4,this.cryptoUtils.hashString(o)];case 2:return[2,(i.reqCnfHash=s.sent(),i)]}}))}))},e.prototype.generateKid=function(e){var t;return s(this,void 0,void 0,(function(){return a(this,(function(n){switch(n.label){case 0:return null===(t=this.performanceClient)||void 0===t||t.addQueueMeasurement(ar.PopTokenGenerateKid,e.correlationId),[4,this.cryptoUtils.getPublicKeyThumbprint(e)];case 1:return[2,{kid:n.sent(),xms_ksl:cr.SW}]}}))}))},e.prototype.signPopToken=function(e,t,n){return s(this,void 0,void 0,(function(){return a(this,(function(r){return[2,this.signPayload(e,t,n)]}))}))},e.prototype.signPayload=function(e,t,n,r){return s(this,void 0,void 0,(function(){var o,s,u,c,l,h;return a(this,(function(a){switch(a.label){case 0:return o=n.resourceRequestMethod,s=n.resourceRequestUri,u=n.shrClaims,c=n.shrNonce,l=s?new br(s):void 0,h=null==l?void 0:l.getUrlComponents(),[4,this.cryptoUtils.signJwt(i({at:e,ts:Gn.nowSeconds(),m:null==o?void 0:o.toUpperCase(),u:null==h?void 0:h.HostNameAndPort,nonce:c||this.cryptoUtils.createNewGuid(),p:null==h?void 0:h.AbsolutePath,q:(null==h?void 0:h.QueryString)?[[],h.QueryString]:void 0,client_claims:u||void 0},r),t,n.correlationId)];case 1:return[2,a.sent()]}}))}))},e}(),wr=function(){function e(e,t,n,r,o,i,s){this.clientId=e,this.cacheStorage=t,this.cryptoObj=n,this.logger=r,this.serializableCache=o,this.persistencePlugin=i,this.performanceClient=s}return e.prototype.validateServerAuthorizationCodeResponse=function(e,t,n){if(!e.state||!t)throw e.state?Dt.createStateNotFoundError("Cached State"):Dt.createStateNotFoundError("Server State");if(decodeURIComponent(e.state)!==decodeURIComponent(t))throw Dt.createStateMismatchError();if(e.error||e.error_description||e.suberror){if(yr.isInteractionRequiredError(e.error,e.error_description,e.suberror))throw new yr(e.error||d.EMPTY_STRING,e.error_description,e.suberror,e.timestamp||d.EMPTY_STRING,e.trace_id||d.EMPTY_STRING,e.correlation_id||d.EMPTY_STRING,e.claims||d.EMPTY_STRING);throw new or(e.error||d.EMPTY_STRING,e.error_description,e.suberror)}e.client_info&&Bt(e.client_info,n)},e.prototype.validateTokenResponse=function(e){if(e.error||e.error_description||e.suberror){if(yr.isInteractionRequiredError(e.error,e.error_description,e.suberror))throw new yr(e.error,e.error_description,e.suberror,e.timestamp||d.EMPTY_STRING,e.trace_id||d.EMPTY_STRING,e.correlation_id||d.EMPTY_STRING,e.claims||d.EMPTY_STRING);var t=e.error_codes+" - ["+e.timestamp+"]: "+e.error_description+" - Correlation ID: "+e.correlation_id+" - Trace ID: "+e.trace_id;throw new or(e.error,t,e.suberror)}},e.prototype.handleServerTokenResponse=function(t,n,r,o,i,u,c,l,h){var f;return s(this,void 0,void 0,(function(){var s,p,E,m,_,g;return a(this,(function(a){switch(a.label){case 0:if(null===(f=this.performanceClient)||void 0===f||f.addQueueMeasurement(ar.HandleServerTokenResponse,t.correlation_id),t.id_token){if(s=new xn(t.id_token||d.EMPTY_STRING,this.cryptoObj),i&&!Lt.isEmpty(i.nonce)&&s.claims.nonce!==i.nonce)throw Dt.createNonceMismatchError();if(o.maxAge||0===o.maxAge){if(!(p=s.claims.auth_time))throw Dt.createAuthTimeNotFoundError();xn.checkMaxAge(p,o.maxAge)}}this.homeAccountIdentifier=Ut.generateHomeAccountId(t.client_info||d.EMPTY_STRING,n.authorityType,this.logger,this.cryptoObj,s),i&&i.state&&(E=vr.parseRequestState(this.cryptoObj,i.state)),t.key_id=t.key_id||o.sshKid||void 0,m=this.generateCacheRecord(t,n,r,o,s,u,i),a.label=1;case 1:return a.trys.push([1,,5,8]),this.persistencePlugin&&this.serializableCache?(this.logger.verbose("Persistence enabled, calling beforeCacheAccess"),_=new qn(this.serializableCache,!0),[4,this.persistencePlugin.beforeCacheAccess(_)]):[3,3];case 2:a.sent(),a.label=3;case 3:return!c||l||!m.account||(g=m.account.generateAccountKey(),this.cacheStorage.getAccount(g))?[4,this.cacheStorage.saveCacheRecord(m)]:(this.logger.warning("Account used to refresh tokens not in persistence, refreshed tokens will not be stored in the cache"),[2,e.generateAuthenticationResult(this.cryptoObj,n,m,!1,o,s,E,void 0,h)]);case 4:return a.sent(),[3,8];case 5:return this.persistencePlugin&&this.serializableCache&&_?(this.logger.verbose("Persistence enabled, calling afterCacheAccess"),[4,this.persistencePlugin.afterCacheAccess(_)]):[3,7];case 6:a.sent(),a.label=7;case 7:return[7];case 8:return[2,e.generateAuthenticationResult(this.cryptoObj,n,m,!1,o,s,E,t,h)]}}))}))},e.prototype.generateCacheRecord=function(e,t,n,r,o,i,s){var a,u,c=t.getPreferredCache();if(Lt.isEmpty(c))throw Dt.createInvalidCacheEnvironmentError();!Lt.isEmpty(e.id_token)&&o&&(a=jn.createIdTokenEntity(this.homeAccountIdentifier,c,e.id_token||d.EMPTY_STRING,this.clientId,o.claims.tid||d.EMPTY_STRING),u=this.generateAccountEntity(e,o,t,s));var l=null;if(!Lt.isEmpty(e.access_token)){var h=e.scope?Mn.fromString(e.scope):new Mn(r.scopes||[]),f=("string"==typeof e.expires_in?parseInt(e.expires_in,10):e.expires_in)||0,p=("string"==typeof e.ext_expires_in?parseInt(e.ext_expires_in,10):e.ext_expires_in)||0,E=("string"==typeof e.refresh_in?parseInt(e.refresh_in,10):e.refresh_in)||void 0,m=n+f,_=m+p,g=E&&E>0?n+E:void 0;l=Vn.createAccessTokenEntity(this.homeAccountIdentifier,c,e.access_token||d.EMPTY_STRING,this.clientId,o?o.claims.tid||d.EMPTY_STRING:t.tenant,h.printScopes(),m,_,this.cryptoObj,g,e.token_type,i,e.key_id,r.claims,r.requestedClaimsHash)}var y=null;Lt.isEmpty(e.refresh_token)||(y=Yn.createRefreshTokenEntity(this.homeAccountIdentifier,c,e.refresh_token||d.EMPTY_STRING,this.clientId,e.foci,i));var A=null;return Lt.isEmpty(e.foci)||(A=Hn.createAppMetadataEntity(this.clientId,c,e.foci)),new Ar(u,a,l,y,A)},e.prototype.generateAccountEntity=function(e,t,n,r){var o=n.authorityType,i=r?r.cloud_graph_host_name:d.EMPTY_STRING,s=r?r.msgraph_host:d.EMPTY_STRING;if(o===Mt.Adfs)return this.logger.verbose("Authority type is ADFS, creating ADFS account"),Ut.createGenericAccount(this.homeAccountIdentifier,t,n,i,s);if(Lt.isEmpty(e.client_info)&&"AAD"===n.protocolMode)throw Dt.createClientInfoEmptyError();return e.client_info?Ut.createAccount(e.client_info,this.homeAccountIdentifier,t,n,i,s):Ut.createGenericAccount(this.homeAccountIdentifier,t,n,i,s)},e.generateAuthenticationResult=function(e,t,n,r,o,i,u,c,l){var h,f,p;return s(this,void 0,void 0,(function(){var s,E,m,_,g,y,A,v,b,T,w;return a(this,(function(a){switch(a.label){case 0:if(s=d.EMPTY_STRING,E=[],m=null,g=d.EMPTY_STRING,!n.accessToken)return[3,4];if(n.accessToken.tokenType!==C.POP)return[3,2];if(y=new Tr(e),A=n.accessToken,v=A.secret,!(b=A.keyId))throw Dt.createKeyIdMissingError();return[4,y.signPopToken(v,b,o)];case 1:return s=a.sent(),[3,3];case 2:s=n.accessToken.secret,a.label=3;case 3:E=Mn.fromString(n.accessToken.target).asArray(),m=new Date(1e3*Number(n.accessToken.expiresOn)),_=new Date(1e3*Number(n.accessToken.extendedExpiresOn)),a.label=4;case 4:return n.appMetadata&&(g=n.appMetadata.familyId===I?I:d.EMPTY_STRING),T=(null==i?void 0:i.claims.oid)||(null==i?void 0:i.claims.sub)||d.EMPTY_STRING,w=(null==i?void 0:i.claims.tid)||d.EMPTY_STRING,(null==c?void 0:c.spa_accountid)&&n.account&&(n.account.nativeAccountId=null==c?void 0:c.spa_accountid),[2,{authority:t.canonicalAuthority,uniqueId:T,tenantId:w,scopes:E,account:n.account?n.account.getAccountInfo():null,idToken:i?i.rawToken:d.EMPTY_STRING,idTokenClaims:i?i.claims:{},accessToken:s,fromCache:r,expiresOn:m,correlationId:o.correlationId,requestId:l||d.EMPTY_STRING,extExpiresOn:_,familyId:g,tokenType:(null===(h=n.accessToken)||void 0===h?void 0:h.tokenType)||d.EMPTY_STRING,state:u?u.userRequestState:d.EMPTY_STRING,cloudGraphHostName:(null===(f=n.account)||void 0===f?void 0:f.cloudGraphHostName)||d.EMPTY_STRING,msGraphHost:(null===(p=n.account)||void 0===p?void 0:p.msGraphHost)||d.EMPTY_STRING,code:null==c?void 0:c.spa_code,fromNativeBroker:!1}]}}))}))},e}(),Or=function(e){function t(t,n){var r=e.call(this,t,n)||this;return r.includeRedirectUri=!0,r}return o(t,e),t.prototype.getAuthCodeUrl=function(e){var t,n;return s(this,void 0,void 0,(function(){var r;return a(this,(function(o){switch(o.label){case 0:return null===(t=this.performanceClient)||void 0===t||t.addQueueMeasurement(ar.GetAuthCodeUrl,e.correlationId),null===(n=this.performanceClient)||void 0===n||n.setPreQueueTime(ar.AuthClientCreateQueryString,e.correlationId),[4,this.createAuthCodeUrlQueryString(e)];case 1:return r=o.sent(),[2,br.appendQueryString(this.authority.authorizationEndpoint,r)]}}))}))},t.prototype.acquireToken=function(e,t){var n,r,o,i,u,l;return s(this,void 0,void 0,(function(){var s,h,f,p,d,E,m=this;return a(this,(function(a){switch(a.label){case 0:if(!e||!e.code)throw Dt.createTokenRequestCannotBeMadeError();return null===(n=this.performanceClient)||void 0===n||n.addQueueMeasurement(ar.AuthClientAcquireToken,e.correlationId),s=null===(r=this.performanceClient)||void 0===r?void 0:r.startMeasurement("AuthCodeClientAcquireToken",e.correlationId),this.logger.info("in acquireToken call in auth-code client"),h=Gn.nowSeconds(),null===(o=this.performanceClient)||void 0===o||o.setPreQueueTime(ar.AuthClientExecuteTokenRequest,e.correlationId),[4,this.executeTokenRequest(this.authority,e)];case 1:return f=a.sent(),p=null===(i=f.headers)||void 0===i?void 0:i[c.X_MS_REQUEST_ID],(d=null===(u=f.headers)||void 0===u?void 0:u[c.X_MS_HTTP_VERSION])&&(null==s||s.addStaticFields({httpVerAuthority:d})),(E=new wr(this.config.authOptions.clientId,this.cacheManager,this.cryptoUtils,this.logger,this.config.serializableCache,this.config.persistencePlugin,this.performanceClient)).validateTokenResponse(f.body),null===(l=this.performanceClient)||void 0===l||l.setPreQueueTime(ar.HandleServerTokenResponse,e.correlationId),[2,E.handleServerTokenResponse(f.body,this.authority,h,e,t,void 0,void 0,void 0,p).then((function(e){return null==s||s.endMeasurement({success:!0}),e})).catch((function(t){throw m.logger.verbose("Error in fetching token in ACC",e.correlationId),null==s||s.endMeasurement({errorCode:t.errorCode,subErrorCode:t.subError,success:!1}),t}))]}}))}))},t.prototype.handleFragmentResponse=function(e,t){var n=new wr(this.config.authOptions.clientId,this.cacheManager,this.cryptoUtils,this.logger,null,null),r=new br(e),o=br.getDeserializedHash(r.getHash());if(n.validateServerAuthorizationCodeResponse(o,t,this.cryptoUtils),!o.code)throw Dt.createNoAuthCodeInServerResponseError();return i(i({},o),{code:o.code})},t.prototype.getLogoutUri=function(e){if(!e)throw Ln.createEmptyLogoutRequestError();var t=this.createLogoutUrlQueryString(e);return br.appendQueryString(this.authority.endSessionEndpoint,t)},t.prototype.executeTokenRequest=function(e,t){var n,r;return s(this,void 0,void 0,(function(){var o,i,s,u,c,l,h;return a(this,(function(a){switch(a.label){case 0:return null===(n=this.performanceClient)||void 0===n||n.addQueueMeasurement(ar.AuthClientExecuteTokenRequest,t.correlationId),null===(r=this.performanceClient)||void 0===r||r.setPreQueueTime(ar.AuthClientCreateTokenRequestBody,t.correlationId),o=this.createTokenQueryParameters(t),i=br.appendQueryString(e.tokenEndpoint,o),[4,this.createTokenRequestBody(t)];case 1:if(s=a.sent(),u=void 0,t.clientInfo)try{c=Bt(t.clientInfo,this.cryptoUtils),u={credential:""+c.uid+b.CLIENT_INFO_SEPARATOR+c.utid,type:Ft.HOME_ACCOUNT_ID}}catch(e){this.logger.verbose("Could not parse client info for CCS Header: "+e)}return l=this.createTokenRequestHeaders(u||t.ccsCredential),h={clientId:this.config.authOptions.clientId,authority:e.canonicalAuthority,scopes:t.scopes,claims:t.claims,authenticationScheme:t.authenticationScheme,resourceRequestMethod:t.resourceRequestMethod,resourceRequestUri:t.resourceRequestUri,shrClaims:t.shrClaims,sshKid:t.sshKid},[2,this.executePostToTokenEndpoint(i,s,l,h)]}}))}))},t.prototype.createTokenRequestBody=function(e){var t,n;return s(this,void 0,void 0,(function(){var r,o,i,s,u,c,l,h;return a(this,(function(a){switch(a.label){case 0:return null===(t=this.performanceClient)||void 0===t||t.addQueueMeasurement(ar.AuthClientCreateTokenRequestBody,e.correlationId),(r=new hr).addClientId(this.config.authOptions.clientId),this.includeRedirectUri?r.addRedirectUri(e.redirectUri):lr.validateRedirectUri(e.redirectUri),r.addScopes(e.scopes),r.addAuthorizationCode(e.code),r.addLibraryInfo(this.config.libraryInfo),r.addApplicationTelemetry(this.config.telemetry.application),r.addThrottling(),this.serverTelemetryManager&&r.addServerTelemetry(this.serverTelemetryManager),e.codeVerifier&&r.addCodeVerifier(e.codeVerifier),this.config.clientCredentials.clientSecret&&r.addClientSecret(this.config.clientCredentials.clientSecret),this.config.clientCredentials.clientAssertion&&(o=this.config.clientCredentials.clientAssertion,r.addClientAssertion(o.assertion),r.addClientAssertionType(o.assertionType)),r.addGrantType(A.AUTHORIZATION_CODE_GRANT),r.addClientInfo(),e.authenticationScheme!==C.POP?[3,2]:(i=new Tr(this.cryptoUtils,this.performanceClient),null===(n=this.performanceClient)||void 0===n||n.setPreQueueTime(ar.PopTokenGenerateCnf,e.correlationId),[4,i.generateCnf(e)]);case 1:return s=a.sent(),r.addPopToken(s.reqCnfString),[3,3];case 2:if(e.authenticationScheme===C.SSH){if(!e.sshJwk)throw Ln.createMissingSshJwkError();r.addSshJwk(e.sshJwk)}a.label=3;case 3:if(u=e.correlationId||this.config.cryptoInterface.createNewGuid(),r.addCorrelationId(u),(!Lt.isEmptyObj(e.claims)||this.config.authOptions.clientCapabilities&&this.config.authOptions.clientCapabilities.length>0)&&r.addClaims(e.claims,this.config.authOptions.clientCapabilities),c=void 0,e.clientInfo)try{l=Bt(e.clientInfo,this.cryptoUtils),c={credential:""+l.uid+b.CLIENT_INFO_SEPARATOR+l.utid,type:Ft.HOME_ACCOUNT_ID}}catch(e){this.logger.verbose("Could not parse client info for CCS Header: "+e)}else c=e.ccsCredential;if(this.config.systemOptions.preventCorsPreflight&&c)switch(c.type){case Ft.HOME_ACCOUNT_ID:try{l=Pt(c.credential),r.addCcsOid(l)}catch(e){this.logger.verbose("Could not parse home account ID for CCS Header: "+e)}break;case Ft.UPN:r.addCcsUpn(c.credential)}return e.tokenBodyParameters&&r.addExtraQueryParameters(e.tokenBodyParameters),!e.enableSpaAuthorizationCode||e.tokenBodyParameters&&e.tokenBodyParameters[f.RETURN_SPA_CODE]||r.addExtraQueryParameters(((h={})[f.RETURN_SPA_CODE]="1",h)),[2,r.createQueryString()]}}))}))},t.prototype.createAuthCodeUrlQueryString=function(e){var t;return s(this,void 0,void 0,(function(){var n,r,o,i,s,c,l;return a(this,(function(a){switch(a.label){case 0:if(null===(t=this.performanceClient)||void 0===t||t.addQueueMeasurement(ar.AuthClientCreateQueryString,e.correlationId),(n=new hr).addClientId(this.config.authOptions.clientId),r=u(e.scopes||[],e.extraScopesToConsent||[]),n.addScopes(r),n.addRedirectUri(e.redirectUri),o=e.correlationId||this.config.cryptoInterface.createNewGuid(),n.addCorrelationId(o),n.addResponseMode(e.responseMode),n.addResponseTypeCode(),n.addLibraryInfo(this.config.libraryInfo),n.addApplicationTelemetry(this.config.telemetry.application),n.addClientInfo(),e.codeChallenge&&e.codeChallengeMethod&&n.addCodeChallengeParams(e.codeChallenge,e.codeChallengeMethod),e.prompt&&n.addPrompt(e.prompt),e.domainHint&&n.addDomainHint(e.domainHint),e.prompt!==g.SELECT_ACCOUNT)if(e.sid&&e.prompt===g.NONE)this.logger.verbose("createAuthCodeUrlQueryString: Prompt is none, adding sid from request"),n.addSid(e.sid);else if(e.account){if(i=this.extractAccountSid(e.account),s=this.extractLoginHint(e.account)){this.logger.verbose("createAuthCodeUrlQueryString: login_hint claim present on account"),n.addLoginHint(s);try{c=Pt(e.account.homeAccountId),n.addCcsOid(c)}catch(e){this.logger.verbose("createAuthCodeUrlQueryString: Could not parse home account ID for CCS Header")}}else if(i&&e.prompt===g.NONE){this.logger.verbose("createAuthCodeUrlQueryString: Prompt is none, adding sid from account"),n.addSid(i);try{c=Pt(e.account.homeAccountId),n.addCcsOid(c)}catch(e){this.logger.verbose("createAuthCodeUrlQueryString: Could not parse home account ID for CCS Header")}}else if(e.loginHint)this.logger.verbose("createAuthCodeUrlQueryString: Adding login_hint from request"),n.addLoginHint(e.loginHint),n.addCcsUpn(e.loginHint);else if(e.account.username){this.logger.verbose("createAuthCodeUrlQueryString: Adding login_hint from account"),n.addLoginHint(e.account.username);try{c=Pt(e.account.homeAccountId),n.addCcsOid(c)}catch(e){this.logger.verbose("createAuthCodeUrlQueryString: Could not parse home account ID for CCS Header")}}}else e.loginHint&&(this.logger.verbose("createAuthCodeUrlQueryString: No account, adding login_hint from request"),n.addLoginHint(e.loginHint),n.addCcsUpn(e.loginHint));else this.logger.verbose("createAuthCodeUrlQueryString: Prompt is select_account, ignoring account hints");return e.nonce&&n.addNonce(e.nonce),e.state&&n.addState(e.state),(!Lt.isEmpty(e.claims)||this.config.authOptions.clientCapabilities&&this.config.authOptions.clientCapabilities.length>0)&&n.addClaims(e.claims,this.config.authOptions.clientCapabilities),e.extraQueryParameters&&n.addExtraQueryParameters(e.extraQueryParameters),e.nativeBroker?(n.addNativeBroker(),e.authenticationScheme!==C.POP?[3,2]:[4,new Tr(this.cryptoUtils).generateCnf(e)]):[3,2];case 1:l=a.sent(),n.addPopToken(l.reqCnfString),a.label=2;case 2:return[2,n.createQueryString()]}}))}))},t.prototype.createLogoutUrlQueryString=function(e){var t=new hr;return e.postLogoutRedirectUri&&t.addPostLogoutRedirectUri(e.postLogoutRedirectUri),e.correlationId&&t.addCorrelationId(e.correlationId),e.idTokenHint&&t.addIdTokenHint(e.idTokenHint),e.state&&t.addState(e.state),e.logoutHint&&t.addLogoutHint(e.logoutHint),e.extraQueryParameters&&t.addExtraQueryParameters(e.extraQueryParameters),t.createQueryString()},t.prototype.extractAccountSid=function(e){var t;return(null===(t=e.idTokenClaims)||void 0===t?void 0:t.sid)||null},t.prototype.extractLoginHint=function(e){var t;return(null===(t=e.idTokenClaims)||void 0===t?void 0:t.login_hint)||null},t}(fr),Rr=function(e){function t(t,n){return e.call(this,t,n)||this}return o(t,e),t.prototype.acquireToken=function(e){var t,n,r,o,i,u,l;return s(this,void 0,void 0,(function(){var s,h,f,p,d,E,m=this;return a(this,(function(a){switch(a.label){case 0:return null===(t=this.performanceClient)||void 0===t||t.addQueueMeasurement(ar.RefreshTokenClientAcquireToken,e.correlationId),s=null===(n=this.performanceClient)||void 0===n?void 0:n.startMeasurement(ar.RefreshTokenClientAcquireToken,e.correlationId),this.logger.verbose("RefreshTokenClientAcquireToken called",e.correlationId),h=Gn.nowSeconds(),null===(r=this.performanceClient)||void 0===r||r.setPreQueueTime(ar.RefreshTokenClientExecuteTokenRequest,e.correlationId),[4,this.executeTokenRequest(e,this.authority)];case 1:return f=a.sent(),p=null===(o=f.headers)||void 0===o?void 0:o[c.X_MS_HTTP_VERSION],null==s||s.addStaticFields({refreshTokenSize:(null===(i=f.body.refresh_token)||void 0===i?void 0:i.length)||0}),p&&(null==s||s.addStaticFields({httpVerToken:p})),d=null===(u=f.headers)||void 0===u?void 0:u[c.X_MS_REQUEST_ID],(E=new wr(this.config.authOptions.clientId,this.cacheManager,this.cryptoUtils,this.logger,this.config.serializableCache,this.config.persistencePlugin)).validateTokenResponse(f.body),null===(l=this.performanceClient)||void 0===l||l.setPreQueueTime(ar.HandleServerTokenResponse,e.correlationId),[2,E.handleServerTokenResponse(f.body,this.authority,h,e,void 0,void 0,!0,e.forceCache,d).then((function(e){return null==s||s.endMeasurement({success:!0}),e})).catch((function(t){throw m.logger.verbose("Error in fetching refresh token",e.correlationId),null==s||s.endMeasurement({errorCode:t.errorCode,subErrorCode:t.subError,success:!1}),t}))]}}))}))},t.prototype.acquireTokenByRefreshToken=function(e){var t,n,r,o;return s(this,void 0,void 0,(function(){var i,s;return a(this,(function(a){if(!e)throw Ln.createEmptyTokenRequestError();if(null===(t=this.performanceClient)||void 0===t||t.addQueueMeasurement(ar.RefreshTokenClientAcquireTokenByRefreshToken,e.correlationId),!e.account)throw Dt.createNoAccountInSilentRequestError();if(this.cacheManager.isAppMetadataFOCI(e.account.environment))try{return null===(n=this.performanceClient)||void 0===n||n.setPreQueueTime(ar.RefreshTokenClientAcquireTokenWithCachedRefreshToken,e.correlationId),[2,this.acquireTokenWithCachedRefreshToken(e,!0)]}catch(t){if(i=t instanceof yr&&t.errorCode===Er,s=t instanceof or&&"invalid_grant"===t.errorCode&&"client_mismatch"===t.subError,i||s)return null===(r=this.performanceClient)||void 0===r||r.setPreQueueTime(ar.RefreshTokenClientAcquireTokenWithCachedRefreshToken,e.correlationId),[2,this.acquireTokenWithCachedRefreshToken(e,!1)];throw t}return null===(o=this.performanceClient)||void 0===o||o.setPreQueueTime(ar.RefreshTokenClientAcquireTokenWithCachedRefreshToken,e.correlationId),[2,this.acquireTokenWithCachedRefreshToken(e,!1)]}))}))},t.prototype.acquireTokenWithCachedRefreshToken=function(e,t){var n,r,o;return s(this,void 0,void 0,(function(){var s,u,c;return a(this,(function(a){if(null===(n=this.performanceClient)||void 0===n||n.addQueueMeasurement(ar.RefreshTokenClientAcquireTokenWithCachedRefreshToken,e.correlationId),s=null===(r=this.performanceClient)||void 0===r?void 0:r.startMeasurement(ar.RefreshTokenClientAcquireTokenWithCachedRefreshToken,e.correlationId),this.logger.verbose("RefreshTokenClientAcquireTokenWithCachedRefreshToken called",e.correlationId),!(u=this.cacheManager.getRefreshToken(e.account,t)))throw null==s||s.discardMeasurement(),yr.createNoTokensFoundError();return null==s||s.endMeasurement({success:!0}),c=i(i({},e),{refreshToken:u.secret,authenticationScheme:e.authenticationScheme||C.BEARER,ccsCredential:{credential:e.account.homeAccountId,type:Ft.HOME_ACCOUNT_ID}}),null===(o=this.performanceClient)||void 0===o||o.setPreQueueTime(ar.RefreshTokenClientAcquireToken,e.correlationId),[2,this.acquireToken(c)]}))}))},t.prototype.executeTokenRequest=function(e,t){var n,r,o;return s(this,void 0,void 0,(function(){var i,s,u,c,l,h;return a(this,(function(a){switch(a.label){case 0:return null===(n=this.performanceClient)||void 0===n||n.addQueueMeasurement(ar.RefreshTokenClientExecuteTokenRequest,e.correlationId),i=null===(r=this.performanceClient)||void 0===r?void 0:r.startMeasurement(ar.RefreshTokenClientExecuteTokenRequest,e.correlationId),null===(o=this.performanceClient)||void 0===o||o.setPreQueueTime(ar.RefreshTokenClientCreateTokenRequestBody,e.correlationId),s=this.createTokenQueryParameters(e),u=br.appendQueryString(t.tokenEndpoint,s),[4,this.createTokenRequestBody(e)];case 1:return c=a.sent(),l=this.createTokenRequestHeaders(e.ccsCredential),h={clientId:this.config.authOptions.clientId,authority:t.canonicalAuthority,scopes:e.scopes,claims:e.claims,authenticationScheme:e.authenticationScheme,resourceRequestMethod:e.resourceRequestMethod,resourceRequestUri:e.resourceRequestUri,shrClaims:e.shrClaims,sshKid:e.sshKid},[2,this.executePostToTokenEndpoint(u,c,l,h).then((function(e){return null==i||i.endMeasurement({success:!0}),e})).catch((function(e){throw null==i||i.endMeasurement({success:!1}),e}))]}}))}))},t.prototype.createTokenRequestBody=function(e){var t,n,r;return s(this,void 0,void 0,(function(){var o,i,s,u,c,l,h;return a(this,(function(a){switch(a.label){case 0:return null===(t=this.performanceClient)||void 0===t||t.addQueueMeasurement(ar.RefreshTokenClientCreateTokenRequestBody,e.correlationId),o=e.correlationId,i=null===(n=this.performanceClient)||void 0===n?void 0:n.startMeasurement(ar.BaseClientCreateTokenRequestHeaders,o),(s=new hr).addClientId(this.config.authOptions.clientId),s.addScopes(e.scopes),s.addGrantType(A.REFRESH_TOKEN_GRANT),s.addClientInfo(),s.addLibraryInfo(this.config.libraryInfo),s.addApplicationTelemetry(this.config.telemetry.application),s.addThrottling(),this.serverTelemetryManager&&s.addServerTelemetry(this.serverTelemetryManager),s.addCorrelationId(o),s.addRefreshToken(e.refreshToken),this.config.clientCredentials.clientSecret&&s.addClientSecret(this.config.clientCredentials.clientSecret),this.config.clientCredentials.clientAssertion&&(u=this.config.clientCredentials.clientAssertion,s.addClientAssertion(u.assertion),s.addClientAssertionType(u.assertionType)),e.authenticationScheme!==C.POP?[3,2]:(c=new Tr(this.cryptoUtils,this.performanceClient),null===(r=this.performanceClient)||void 0===r||r.setPreQueueTime(ar.PopTokenGenerateCnf,e.correlationId),[4,c.generateCnf(e)]);case 1:return l=a.sent(),s.addPopToken(l.reqCnfString),[3,3];case 2:if(e.authenticationScheme===C.SSH){if(!e.sshJwk)throw null==i||i.endMeasurement({success:!1}),Ln.createMissingSshJwkError();s.addSshJwk(e.sshJwk)}a.label=3;case 3:if((!Lt.isEmptyObj(e.claims)||this.config.authOptions.clientCapabilities&&this.config.authOptions.clientCapabilities.length>0)&&s.addClaims(e.claims,this.config.authOptions.clientCapabilities),this.config.systemOptions.preventCorsPreflight&&e.ccsCredential)switch(e.ccsCredential.type){case Ft.HOME_ACCOUNT_ID:try{h=Pt(e.ccsCredential.credential),s.addCcsOid(h)}catch(e){this.logger.verbose("Could not parse home account ID for CCS Header: "+e)}break;case Ft.UPN:s.addCcsUpn(e.ccsCredential.credential)}return null==i||i.endMeasurement({success:!0}),[2,s.createQueryString()]}}))}))},t}(fr),Sr=function(e){function t(t,n){return e.call(this,t,n)||this}return o(t,e),t.prototype.acquireToken=function(e){return s(this,void 0,void 0,(function(){var t;return a(this,(function(n){switch(n.label){case 0:return n.trys.push([0,2,,3]),[4,this.acquireCachedToken(e)];case 1:return[2,n.sent()];case 2:if((t=n.sent())instanceof Dt&&t.errorCode===pt)return[2,new Rr(this.config,this.performanceClient).acquireTokenByRefreshToken(e)];throw t;case 3:return[2]}}))}))},t.prototype.acquireCachedToken=function(e){var t,n,r,o,i;return s(this,void 0,void 0,(function(){var s,u;return a(this,(function(a){switch(a.label){case 0:if(!e)throw Ln.createEmptyTokenRequestError();if(e.forceRefresh)throw null===(t=this.serverTelemetryManager)||void 0===t||t.setCacheOutcome(P.FORCE_REFRESH),this.logger.info("SilentFlowClient:acquireCachedToken - Skipping cache because forceRefresh is true."),Dt.createRefreshRequiredError();if(!this.config.cacheOptions.claimsBasedCachingEnabled&&!Lt.isEmptyObj(e.claims))throw null===(n=this.serverTelemetryManager)||void 0===n||n.setCacheOutcome(P.CLAIMS_REQUESTED_CACHE_SKIPPED),this.logger.info("SilentFlowClient:acquireCachedToken - Skipping cache because claims-based caching is disabled and claims were requested."),Dt.createRefreshRequiredError();if(!e.account)throw Dt.createNoAccountInSilentRequestError();if(s=e.authority||this.authority.getPreferredCache(),!(u=this.cacheManager.readCacheRecord(e.account,e,s)).accessToken)throw null===(r=this.serverTelemetryManager)||void 0===r||r.setCacheOutcome(P.NO_CACHED_ACCESS_TOKEN),this.logger.info("SilentFlowClient:acquireCachedToken - No access token found in cache for the given properties."),Dt.createRefreshRequiredError();if(Gn.wasClockTurnedBack(u.accessToken.cachedAt)||Gn.isTokenExpired(u.accessToken.expiresOn,this.config.systemOptions.tokenRenewalOffsetSeconds))throw null===(o=this.serverTelemetryManager)||void 0===o||o.setCacheOutcome(P.CACHED_ACCESS_TOKEN_EXPIRED),this.logger.info("SilentFlowClient:acquireCachedToken - Cached access token is expired or will expire within "+this.config.systemOptions.tokenRenewalOffsetSeconds+" seconds."),Dt.createRefreshRequiredError();if(u.accessToken.refreshOn&&Gn.isTokenExpired(u.accessToken.refreshOn,0))throw null===(i=this.serverTelemetryManager)||void 0===i||i.setCacheOutcome(P.REFRESH_CACHED_ACCESS_TOKEN),this.logger.info("SilentFlowClient:acquireCachedToken - Cached access token's refreshOn property has been exceeded'."),Dt.createRefreshRequiredError();return this.config.serverTelemetryManager&&this.config.serverTelemetryManager.incrementCacheHits(),[4,this.generateResultFromCacheRecord(u,e)];case 1:return[2,a.sent()]}}))}))},t.prototype.generateResultFromCacheRecord=function(e,t){return s(this,void 0,void 0,(function(){var n,r;return a(this,(function(o){switch(o.label){case 0:if(e.idToken&&(n=new xn(e.idToken.secret,this.config.cryptoInterface)),t.maxAge||0===t.maxAge){if(!(r=null==n?void 0:n.claims.auth_time))throw Dt.createAuthTimeNotFoundError();xn.checkMaxAge(r,t.maxAge)}return[4,wr.generateAuthenticationResult(this.cryptoUtils,this.authority,e,!0,t,n)];case 1:return[2,o.sent()]}}))}))},t}(fr),Ir=function(e){function t(t){return e.call(this,t)||this}return o(t,e),t.prototype.acquireToken=function(e){var t,n;return s(this,void 0,void 0,(function(){var r,o,i,s,u;return a(this,(function(a){switch(a.label){case 0:return r=null===(t=this.performanceClient)||void 0===t?void 0:t.startMeasurement("UsernamePasswordClientAcquireToken",e.correlationId),this.logger.info("in acquireToken call in username-password client"),o=Gn.nowSeconds(),[4,this.executeTokenRequest(this.authority,e)];case 1:return i=a.sent(),s=null===(n=i.headers)||void 0===n?void 0:n[c.X_MS_HTTP_VERSION],null==r||r.addStaticFields({httpVerToken:s}),(u=new wr(this.config.authOptions.clientId,this.cacheManager,this.cryptoUtils,this.logger,this.config.serializableCache,this.config.persistencePlugin)).validateTokenResponse(i.body),[2,u.handleServerTokenResponse(i.body,this.authority,o,e)]}}))}))},t.prototype.executeTokenRequest=function(e,t){return s(this,void 0,void 0,(function(){var n,r,o,i,s;return a(this,(function(a){return n=this.createTokenQueryParameters(t),r=br.appendQueryString(e.tokenEndpoint,n),o=this.createTokenRequestBody(t),i=this.createTokenRequestHeaders({credential:t.username,type:Ft.UPN}),s={clientId:this.config.authOptions.clientId,authority:e.canonicalAuthority,scopes:t.scopes,claims:t.claims,authenticationScheme:t.authenticationScheme,resourceRequestMethod:t.resourceRequestMethod,resourceRequestUri:t.resourceRequestUri,shrClaims:t.shrClaims,sshKid:t.sshKid},[2,this.executePostToTokenEndpoint(r,o,i,s)]}))}))},t.prototype.createTokenRequestBody=function(e){var t=new hr;t.addClientId(this.config.authOptions.clientId),t.addUsername(e.username),t.addPassword(e.password),t.addScopes(e.scopes),t.addResponseTypeForTokenAndIdToken(),t.addGrantType(A.RESOURCE_OWNER_PASSWORD_GRANT),t.addClientInfo(),t.addLibraryInfo(this.config.libraryInfo),t.addApplicationTelemetry(this.config.telemetry.application),t.addThrottling(),this.serverTelemetryManager&&t.addServerTelemetry(this.serverTelemetryManager);var n=e.correlationId||this.config.cryptoInterface.createNewGuid();if(t.addCorrelationId(n),this.config.clientCredentials.clientSecret&&t.addClientSecret(this.config.clientCredentials.clientSecret),this.config.clientCredentials.clientAssertion){var r=this.config.clientCredentials.clientAssertion;t.addClientAssertion(r.assertion),t.addClientAssertionType(r.assertionType)}return(!Lt.isEmptyObj(e.claims)||this.config.authOptions.clientCapabilities&&this.config.authOptions.clientCapabilities.length>0)&&t.addClaims(e.claims,this.config.authOptions.clientCapabilities),this.config.systemOptions.preventCorsPreflight&&e.username&&t.addCcsUpn(e.username),t.createQueryString()},t}(fr),Nr=function(){function e(e,t){this.cacheOutcome=P.NO_CACHE_HIT,this.cacheManager=t,this.apiId=e.apiId,this.correlationId=e.correlationId,this.wrapperSKU=e.wrapperSKU||d.EMPTY_STRING,this.wrapperVer=e.wrapperVer||d.EMPTY_STRING,this.telemetryCacheKey=D.CACHE_KEY+b.CACHE_KEY_SEPARATOR+e.clientId}return e.prototype.generateCurrentRequestHeaderValue=function(){var e=""+this.apiId+D.VALUE_SEPARATOR+this.cacheOutcome,t=[this.wrapperSKU,this.wrapperVer].join(D.VALUE_SEPARATOR),n=[e,this.getRegionDiscoveryFields()].join(D.VALUE_SEPARATOR);return[D.SCHEMA_VERSION,n,t].join(D.CATEGORY_SEPARATOR)},e.prototype.generateLastRequestHeaderValue=function(){var t=this.getLastRequests(),n=e.maxErrorsToSend(t),r=t.failedRequests.slice(0,2*n).join(D.VALUE_SEPARATOR),o=t.errors.slice(0,n).join(D.VALUE_SEPARATOR),i=t.errors.length,s=[i,n=D.MAX_CACHED_ERRORS&&(t.failedRequests.shift(),t.failedRequests.shift(),t.errors.shift()),t.failedRequests.push(this.apiId,this.correlationId),Lt.isEmpty(e.subError)?Lt.isEmpty(e.errorCode)?e&&e.toString()?t.errors.push(e.toString()):t.errors.push(D.UNKNOWN_ERROR):t.errors.push(e.errorCode):t.errors.push(e.subError),this.cacheManager.setServerTelemetry(this.telemetryCacheKey,t)},e.prototype.incrementCacheHits=function(){var e=this.getLastRequests();return e.cacheHits+=1,this.cacheManager.setServerTelemetry(this.telemetryCacheKey,e),e.cacheHits},e.prototype.getLastRequests=function(){var e=new Qn;return this.cacheManager.getServerTelemetry(this.telemetryCacheKey)||e},e.prototype.clearTelemetryCache=function(){var t=this.getLastRequests(),n=e.maxErrorsToSend(t);if(n===t.errors.length)this.cacheManager.removeItem(this.telemetryCacheKey);else{var r=new Qn;r.failedRequests=t.failedRequests.slice(2*n),r.errors=t.errors.slice(n),this.cacheManager.setServerTelemetry(this.telemetryCacheKey,r)}},e.maxErrorsToSend=function(e){var t,n=0,r=0,o=e.errors.length;for(t=0;t0?[2,n.body["newest-versions"][0]]:[2,null];case 3:return r.sent(),[2,null];case 4:return[2]}}))}))},e.IMDS_OPTIONS={headers:{Metadata:"true"}},e}(),xr=function(){function e(e,t,n,r,o,i,s){this.canonicalAuthority=e,this._canonicalAuthority.validateAsUri(),this.networkInterface=t,this.cacheManager=n,this.authorityOptions=r,this.regionDiscoveryMetadata={region_used:void 0,region_source:void 0,region_outcome:void 0},this.logger=o,this.performanceClient=i,this.correlationId=s,this.regionDiscovery=new Mr(t,this.performanceClient,this.correlationId)}return e.prototype.getAuthorityType=function(e){if(e.HostNameAndPort.endsWith(d.CIAM_AUTH_URL))return Mt.Ciam;var t=e.PathSegments;if(t.length)switch(t[0].toLowerCase()){case d.ADFS:return Mt.Adfs;case d.DSTS:return Mt.Dsts}return Mt.Default},Object.defineProperty(e.prototype,"authorityType",{get:function(){return this.getAuthorityType(this.canonicalAuthorityUrlComponents)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"protocolMode",{get:function(){return this.authorityOptions.protocolMode},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"options",{get:function(){return this.authorityOptions},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"canonicalAuthority",{get:function(){return this._canonicalAuthority.urlString},set:function(e){this._canonicalAuthority=new br(e),this._canonicalAuthority.validateAsUri(),this._canonicalAuthorityUrlComponents=null},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"canonicalAuthorityUrlComponents",{get:function(){return this._canonicalAuthorityUrlComponents||(this._canonicalAuthorityUrlComponents=this._canonicalAuthority.getUrlComponents()),this._canonicalAuthorityUrlComponents},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"hostnameAndPort",{get:function(){return this.canonicalAuthorityUrlComponents.HostNameAndPort.toLowerCase()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"tenant",{get:function(){return this.canonicalAuthorityUrlComponents.PathSegments[0]},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"authorizationEndpoint",{get:function(){if(this.discoveryComplete())return this.replacePath(this.metadata.authorization_endpoint);throw Dt.createEndpointDiscoveryIncompleteError("Discovery incomplete.")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"tokenEndpoint",{get:function(){if(this.discoveryComplete())return this.replacePath(this.metadata.token_endpoint);throw Dt.createEndpointDiscoveryIncompleteError("Discovery incomplete.")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"deviceCodeEndpoint",{get:function(){if(this.discoveryComplete())return this.replacePath(this.metadata.token_endpoint.replace("/token","/devicecode"));throw Dt.createEndpointDiscoveryIncompleteError("Discovery incomplete.")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"endSessionEndpoint",{get:function(){if(this.discoveryComplete()){if(!this.metadata.end_session_endpoint)throw Dt.createLogoutNotSupportedError();return this.replacePath(this.metadata.end_session_endpoint)}throw Dt.createEndpointDiscoveryIncompleteError("Discovery incomplete.")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"selfSignedJwtAudience",{get:function(){if(this.discoveryComplete())return this.replacePath(this.metadata.issuer);throw Dt.createEndpointDiscoveryIncompleteError("Discovery incomplete.")},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"jwksUri",{get:function(){if(this.discoveryComplete())return this.replacePath(this.metadata.jwks_uri);throw Dt.createEndpointDiscoveryIncompleteError("Discovery incomplete.")},enumerable:!1,configurable:!0}),e.prototype.canReplaceTenant=function(t){return 1===t.PathSegments.length&&!e.reservedTenantDomains.has(t.PathSegments[0])&&this.getAuthorityType(t)===Mt.Default&&this.protocolMode===U.AAD},e.prototype.replaceTenant=function(e){return e.replace(/{tenant}|{tenantid}/g,this.tenant)},e.prototype.replacePath=function(e){var t=this,n=e,r=new br(this.metadata.canonical_authority).getUrlComponents(),o=r.PathSegments;return this.canonicalAuthorityUrlComponents.PathSegments.forEach((function(e,i){var s=o[i];if(0===i&&t.canReplaceTenant(r)){var a=new br(t.metadata.authorization_endpoint).getUrlComponents().PathSegments[0];s!==a&&(t.logger.verbose("Replacing tenant domain name "+s+" with id "+a),s=a)}e!==s&&(n=n.replace("/"+s+"/","/"+e+"/"))})),this.replaceTenant(n)},Object.defineProperty(e.prototype,"defaultOpenIdConfigurationEndpoint",{get:function(){return this.authorityType===Mt.Adfs||this.authorityType===Mt.Dsts||this.protocolMode===U.OIDC?this.canonicalAuthority+".well-known/openid-configuration":this.canonicalAuthority+"v2.0/.well-known/openid-configuration"},enumerable:!1,configurable:!0}),e.prototype.discoveryComplete=function(){return!!this.metadata},e.prototype.resolveEndpointsAsync=function(){var e,t,n;return s(this,void 0,void 0,(function(){var r,o,i,s;return a(this,(function(a){switch(a.label){case 0:return null===(e=this.performanceClient)||void 0===e||e.addQueueMeasurement(ar.AuthorityResolveEndpointsAsync,this.correlationId),(r=this.cacheManager.getAuthorityMetadataByAlias(this.hostnameAndPort))||(r=new Wn).updateCanonicalAuthority(this.canonicalAuthority),null===(t=this.performanceClient)||void 0===t||t.setPreQueueTime(ar.AuthorityUpdateCloudDiscoveryMetadata,this.correlationId),[4,this.updateCloudDiscoveryMetadata(r)];case 1:return o=a.sent(),this.canonicalAuthority=this.canonicalAuthority.replace(this.hostnameAndPort,r.preferred_network),null===(n=this.performanceClient)||void 0===n||n.setPreQueueTime(ar.AuthorityUpdateEndpointMetadata,this.correlationId),[4,this.updateEndpointMetadata(r)];case 2:return i=a.sent(),o!==R.CACHE&&i!==R.CACHE&&(r.resetExpiresAt(),r.updateCanonicalAuthority(this.canonicalAuthority)),s=this.cacheManager.generateAuthorityMetadataCacheKey(r.preferred_cache),this.cacheManager.setAuthorityMetadata(s,r),this.metadata=r,[2]}}))}))},e.prototype.updateEndpointMetadata=function(e){var t,n,r,o,i,u;return s(this,void 0,void 0,(function(){var s,c;return a(this,(function(a){switch(a.label){case 0:return null===(t=this.performanceClient)||void 0===t||t.addQueueMeasurement(ar.AuthorityUpdateEndpointMetadata,this.correlationId),(s=this.getEndpointMetadataFromConfig())?(e.updateEndpointMetadata(s,!1),[2,R.CONFIG]):this.isAuthoritySameType(e)&&e.endpointsFromNetwork&&!e.isExpired()?[2,R.CACHE]:(null===(n=this.performanceClient)||void 0===n||n.setPreQueueTime(ar.AuthorityGetEndpointMetadataFromNetwork,this.correlationId),[4,this.getEndpointMetadataFromNetwork()]);case 1:return(s=a.sent())?(null===(r=this.authorityOptions.azureRegionConfiguration)||void 0===r?void 0:r.azureRegion)?(null===(o=this.performanceClient)||void 0===o||o.setPreQueueTime(ar.AuthorityUpdateMetadataWithRegionalInformation,this.correlationId),[4,this.updateMetadataWithRegionalInformation(s)]):[3,3]:[3,4];case 2:s=a.sent(),a.label=3;case 3:return e.updateEndpointMetadata(s,!0),[2,R.NETWORK];case 4:return!(c=this.getEndpointMetadataFromHardcodedValues())||this.authorityOptions.skipAuthorityMetadataCache?[3,7]:(null===(i=this.authorityOptions.azureRegionConfiguration)||void 0===i?void 0:i.azureRegion)?(null===(u=this.performanceClient)||void 0===u||u.setPreQueueTime(ar.AuthorityUpdateMetadataWithRegionalInformation,this.correlationId),[4,this.updateMetadataWithRegionalInformation(c)]):[3,6];case 5:c=a.sent(),a.label=6;case 6:return e.updateEndpointMetadata(c,!1),[2,R.HARDCODED_VALUES];case 7:throw Dt.createUnableToGetOpenidConfigError(this.defaultOpenIdConfigurationEndpoint)}}))}))},e.prototype.isAuthoritySameType=function(e){return new br(e.canonical_authority).getUrlComponents().PathSegments.length===this.canonicalAuthorityUrlComponents.PathSegments.length},e.prototype.getEndpointMetadataFromConfig=function(){if(this.authorityOptions.authorityMetadata)try{return JSON.parse(this.authorityOptions.authorityMetadata)}catch(e){throw Ln.createInvalidAuthorityMetadataError()}return null},e.prototype.getEndpointMetadataFromNetwork=function(){var e;return s(this,void 0,void 0,(function(){var t,n;return a(this,(function(r){switch(r.label){case 0:null===(e=this.performanceClient)||void 0===e||e.addQueueMeasurement(ar.AuthorityGetEndpointMetadataFromNetwork,this.correlationId),t={},r.label=1;case 1:return r.trys.push([1,3,,4]),[4,this.networkInterface.sendGetRequestAsync(this.defaultOpenIdConfigurationEndpoint,t)];case 2:return[2,Cr((n=r.sent()).body)?n.body:null];case 3:return r.sent(),[2,null];case 4:return[2]}}))}))},e.prototype.getEndpointMetadataFromHardcodedValues=function(){return this.canonicalAuthority in Dr?Dr[this.canonicalAuthority]:null},e.prototype.updateMetadataWithRegionalInformation=function(t){var n,r,o,i;return s(this,void 0,void 0,(function(){var s,u;return a(this,(function(a){switch(a.label){case 0:return null===(n=this.performanceClient)||void 0===n||n.addQueueMeasurement(ar.AuthorityUpdateMetadataWithRegionalInformation,this.correlationId),(s=null===(r=this.authorityOptions.azureRegionConfiguration)||void 0===r?void 0:r.azureRegion)?s!==d.AZURE_REGION_AUTO_DISCOVER_FLAG?(this.regionDiscoveryMetadata.region_outcome=B.CONFIGURED_NO_AUTO_DETECTION,this.regionDiscoveryMetadata.region_used=s,[2,e.replaceWithRegionalInformation(t,s)]):(null===(o=this.performanceClient)||void 0===o||o.setPreQueueTime(ar.RegionDiscoveryDetectRegion,this.correlationId),[4,this.regionDiscovery.detectRegion(null===(i=this.authorityOptions.azureRegionConfiguration)||void 0===i?void 0:i.environmentRegion,this.regionDiscoveryMetadata)]):[3,2];case 1:if(u=a.sent())return this.regionDiscoveryMetadata.region_outcome=B.AUTO_DETECTION_REQUESTED_SUCCESSFUL,this.regionDiscoveryMetadata.region_used=u,[2,e.replaceWithRegionalInformation(t,u)];this.regionDiscoveryMetadata.region_outcome=B.AUTO_DETECTION_REQUESTED_FAILED,a.label=2;case 2:return[2,t]}}))}))},e.prototype.updateCloudDiscoveryMetadata=function(e){var t,n;return s(this,void 0,void 0,(function(){var r,o,i;return a(this,(function(s){switch(s.label){case 0:return null===(t=this.performanceClient)||void 0===t||t.addQueueMeasurement(ar.AuthorityUpdateCloudDiscoveryMetadata,this.correlationId),this.logger.verbose("Attempting to get cloud discovery metadata in the config"),this.logger.verbosePii("Known Authorities: "+(this.authorityOptions.knownAuthorities||d.NOT_APPLICABLE)),this.logger.verbosePii("Authority Metadata: "+(this.authorityOptions.authorityMetadata||d.NOT_APPLICABLE)),this.logger.verbosePii("Canonical Authority: "+(e.canonical_authority||d.NOT_APPLICABLE)),(r=this.getCloudDiscoveryMetadataFromConfig())?(this.logger.verbose("Found cloud discovery metadata in the config."),e.updateCloudDiscoveryMetadata(r,!1),[2,R.CONFIG]):(this.logger.verbose("Did not find cloud discovery metadata in the config... Attempting to get cloud discovery metadata from the cache."),o=e.isExpired(),this.isAuthoritySameType(e)&&e.aliasesFromNetwork&&!o?(this.logger.verbose("Found metadata in the cache."),[2,R.CACHE]):(o&&this.logger.verbose("The metadata entity is expired."),this.logger.verbose("Did not find cloud discovery metadata in the cache... Attempting to get cloud discovery metadata from the network."),null===(n=this.performanceClient)||void 0===n||n.setPreQueueTime(ar.AuthorityGetCloudDiscoveryMetadataFromNetwork,this.correlationId),[4,this.getCloudDiscoveryMetadataFromNetwork()]));case 1:if(r=s.sent())return this.logger.verbose("cloud discovery metadata was successfully returned from getCloudDiscoveryMetadataFromNetwork()"),e.updateCloudDiscoveryMetadata(r,!0),[2,R.NETWORK];if(this.logger.verbose("Did not find cloud discovery metadata from the network... Attempting to get cloud discovery metadata from hardcoded values."),(i=this.getCloudDiscoveryMetadataFromHarcodedValues())&&!this.options.skipAuthorityMetadataCache)return this.logger.verbose("Found cloud discovery metadata from hardcoded values."),e.updateCloudDiscoveryMetadata(i,!1),[2,R.HARDCODED_VALUES];throw this.logger.error("Did not find cloud discovery metadata from hardcoded values... Metadata could not be obtained from config, cache, network or hardcoded values. Throwing Untrusted Authority Error."),Ln.createUntrustedAuthorityError()}}))}))},e.prototype.getCloudDiscoveryMetadataFromConfig=function(){if(this.authorityType===Mt.Ciam)return this.logger.verbose("CIAM authorities do not support cloud discovery metadata, generate the aliases from authority host."),e.createCloudDiscoveryMetadataFromHost(this.hostnameAndPort);if(this.authorityOptions.cloudDiscoveryMetadata){this.logger.verbose("The cloud discovery metadata has been provided as a network response, in the config.");try{this.logger.verbose("Attempting to parse the cloud discovery metadata.");var t=JSON.parse(this.authorityOptions.cloudDiscoveryMetadata),n=e.getCloudDiscoveryMetadataFromNetworkResponse(t.metadata,this.hostnameAndPort);if(this.logger.verbose("Parsed the cloud discovery metadata."),n)return this.logger.verbose("There is returnable metadata attached to the parsed cloud discovery metadata."),n;this.logger.verbose("There is no metadata attached to the parsed cloud discovery metadata.")}catch(e){throw this.logger.verbose("Unable to parse the cloud discovery metadata. Throwing Invalid Cloud Discovery Metadata Error."),Ln.createInvalidCloudDiscoveryMetadataError()}}return this.isInKnownAuthorities()?(this.logger.verbose("The host is included in knownAuthorities. Creating new cloud discovery metadata from the host."),e.createCloudDiscoveryMetadataFromHost(this.hostnameAndPort)):null},e.prototype.getCloudDiscoveryMetadataFromNetwork=function(){var t;return s(this,void 0,void 0,(function(){var n,r,o,i,s,u,c,l;return a(this,(function(a){switch(a.label){case 0:null===(t=this.performanceClient)||void 0===t||t.addQueueMeasurement(ar.AuthorityGetCloudDiscoveryMetadataFromNetwork,this.correlationId),n=""+d.AAD_INSTANCE_DISCOVERY_ENDPT+this.canonicalAuthority+"oauth2/v2.0/authorize",r={},o=null,a.label=1;case 1:return a.trys.push([1,3,,4]),[4,this.networkInterface.sendGetRequestAsync(n,r)];case 2:if(i=a.sent(),s=void 0,u=void 0,function(e){return e.hasOwnProperty("tenant_discovery_endpoint")&&e.hasOwnProperty("metadata")}(i.body))s=i.body,u=s.metadata,this.logger.verbosePii("tenant_discovery_endpoint is: "+s.tenant_discovery_endpoint);else{if(!function(e){return e.hasOwnProperty("error")&&e.hasOwnProperty("error_description")}(i.body))return this.logger.error("AAD did not return a CloudInstanceDiscoveryResponse or CloudInstanceDiscoveryErrorResponse"),[2,null];if(this.logger.warning("A CloudInstanceDiscoveryErrorResponse was returned. The cloud instance discovery network request's status code is: "+i.status),(s=i.body).error===d.INVALID_INSTANCE)return this.logger.error("The CloudInstanceDiscoveryErrorResponse error is invalid_instance."),[2,null];this.logger.warning("The CloudInstanceDiscoveryErrorResponse error is "+s.error),this.logger.warning("The CloudInstanceDiscoveryErrorResponse error description is "+s.error_description),this.logger.warning("Setting the value of the CloudInstanceDiscoveryMetadata (returned from the network) to []"),u=[]}return this.logger.verbose("Attempting to find a match between the developer's authority and the CloudInstanceDiscoveryMetadata returned from the network request."),o=e.getCloudDiscoveryMetadataFromNetworkResponse(u,this.hostnameAndPort),[3,4];case 3:return(c=a.sent())instanceof W?this.logger.error("There was a network error while attempting to get the cloud discovery instance metadata.\nError: "+c.errorCode+"\nError Description: "+c.errorMessage):(l=c,this.logger.error("A non-MSALJS error was thrown while attempting to get the cloud instance discovery metadata.\nError: "+l.name+"\nError Description: "+l.message)),[2,null];case 4:return o||(this.logger.warning("The developer's authority was not found within the CloudInstanceDiscoveryMetadata returned from the network request."),this.logger.verbose("Creating custom Authority for custom domain scenario."),o=e.createCloudDiscoveryMetadataFromHost(this.hostnameAndPort)),[2,o]}}))}))},e.prototype.getCloudDiscoveryMetadataFromHarcodedValues=function(){return this.canonicalAuthority in Lr?Lr[this.canonicalAuthority]:null},e.prototype.isInKnownAuthorities=function(){var e=this;return this.authorityOptions.knownAuthorities.filter((function(t){return br.getDomainFromUrl(t).toLowerCase()===e.hostnameAndPort})).length>0},e.generateAuthority=function(e,t){var n;if(t&&t.azureCloudInstance!==k.None){var r=t.tenant?t.tenant:d.DEFAULT_COMMON_TENANT;n=t.azureCloudInstance+"/"+r+"/"}return n||e},e.createCloudDiscoveryMetadataFromHost=function(e){return{preferred_network:e,preferred_cache:e,aliases:[e]}},e.getCloudDiscoveryMetadataFromNetworkResponse=function(e,t){for(var n=0;n-1)return r}return null},e.prototype.getPreferredCache=function(){if(this.discoveryComplete())return this.metadata.preferred_cache;throw Dt.createEndpointDiscoveryIncompleteError("Discovery incomplete.")},e.prototype.isAlias=function(e){return this.metadata.aliases.indexOf(e)>-1},e.isPublicCloudAuthority=function(e){return d.KNOWN_PUBLIC_CLOUDS.indexOf(e)>=0},e.buildRegionalAuthorityString=function(e,t,n){var r=new br(e);r.validateAsUri();var o=r.getUrlComponents(),s=t+"."+o.HostNameAndPort;this.isPublicCloudAuthority(o.HostNameAndPort)&&(s=t+"."+d.REGIONAL_AUTH_PUBLIC_CLOUD_SUFFIX);var a=br.constructAuthorityUriFromObject(i(i({},r.getUrlComponents()),{HostNameAndPort:s})).urlString;return n?a+"?"+n:a},e.replaceWithRegionalInformation=function(t,n){return t.authorization_endpoint=e.buildRegionalAuthorityString(t.authorization_endpoint,n),t.token_endpoint=e.buildRegionalAuthorityString(t.token_endpoint,n,d.REGIONAL_AUTH_NON_MSI_QUERY_STRING),t.end_session_endpoint&&(t.end_session_endpoint=e.buildRegionalAuthorityString(t.end_session_endpoint,n)),t},e.transformCIAMAuthority=function(e){var t=e.endsWith(d.FORWARD_SLASH)?e:""+e+d.FORWARD_SLASH,n=new br(e).getUrlComponents();return 0===n.PathSegments.length&&n.HostNameAndPort.endsWith(d.CIAM_AUTH_URL)&&(t=""+t+n.HostNameAndPort.split(".")[0]+d.AAD_TENANT_DOMAIN_SUFFIX),t},e.reservedTenantDomains=new Set(["{tenant}","{tenantid}",h.COMMON,h.CONSUMERS,h.ORGANIZATIONS]),e}(),Br=function(){function e(){}return e.createDiscoveredInstance=function(t,n,r,o,i,u,c){return s(this,void 0,void 0,(function(){var s,l,h;return a(this,(function(a){switch(a.label){case 0:null==u||u.addQueueMeasurement(ar.AuthorityFactoryCreateDiscoveredInstance,c),s=xr.transformCIAMAuthority(t),l=e.createInstance(s,n,r,o,i,u,c),a.label=1;case 1:return a.trys.push([1,3,,4]),null==u||u.setPreQueueTime(ar.AuthorityResolveEndpointsAsync,c),[4,l.resolveEndpointsAsync()];case 2:return a.sent(),[2,l];case 3:throw h=a.sent(),Dt.createEndpointDiscoveryIncompleteError(h);case 4:return[2]}}))}))},e.createInstance=function(e,t,n,r,o,i,s){if(Lt.isEmpty(e))throw Ln.createUrlEmptyError();return new xr(e,t,n,r,o,i,s)},e}(),Pr=function(e){function t(t){return e.call(this,t)||this}return o(t,e),t.prototype.acquireToken=function(e){return s(this,void 0,void 0,(function(){var t,n,r,o;return a(this,(function(i){switch(i.label){case 0:return[4,this.getDeviceCode(e)];case 1:return t=i.sent(),e.deviceCodeCallback(t),n=Gn.nowSeconds(),[4,this.acquireTokenWithDeviceCode(e,t)];case 2:return r=i.sent(),(o=new wr(this.config.authOptions.clientId,this.cacheManager,this.cryptoUtils,this.logger,this.config.serializableCache,this.config.persistencePlugin)).validateTokenResponse(r),[4,o.handleServerTokenResponse(r,this.authority,n,e)];case 3:return[2,i.sent()]}}))}))},t.prototype.getDeviceCode=function(e){return s(this,void 0,void 0,(function(){var t,n,r,o,i;return a(this,(function(s){return t=this.createExtraQueryParameters(e),n=br.appendQueryString(this.authority.deviceCodeEndpoint,t),r=this.createQueryString(e),o=this.createTokenRequestHeaders(),i={clientId:this.config.authOptions.clientId,authority:e.authority,scopes:e.scopes,claims:e.claims,authenticationScheme:e.authenticationScheme,resourceRequestMethod:e.resourceRequestMethod,resourceRequestUri:e.resourceRequestUri,shrClaims:e.shrClaims,sshKid:e.sshKid},[2,this.executePostRequestToDeviceCodeEndpoint(n,r,o,i)]}))}))},t.prototype.createExtraQueryParameters=function(e){var t=new hr;return e.extraQueryParameters&&t.addExtraQueryParameters(e.extraQueryParameters),t.createQueryString()},t.prototype.executePostRequestToDeviceCodeEndpoint=function(e,t,n,r){return s(this,void 0,void 0,(function(){var o,i,s,u,c,l,h;return a(this,(function(a){switch(a.label){case 0:return[4,this.networkManager.sendPostRequest(r,e,{body:t,headers:n})];case 1:return o=a.sent().body,i=o.user_code,s=o.device_code,u=o.verification_uri,c=o.expires_in,l=o.interval,h=o.message,[2,{userCode:i,deviceCode:s,verificationUri:u,expiresIn:c,interval:l,message:h}]}}))}))},t.prototype.createQueryString=function(e){var t=new hr;return t.addScopes(e.scopes),t.addClientId(this.config.authOptions.clientId),e.extraQueryParameters&&t.addExtraQueryParameters(e.extraQueryParameters),(!Lt.isEmpty(e.claims)||this.config.authOptions.clientCapabilities&&this.config.authOptions.clientCapabilities.length>0)&&t.addClaims(e.claims,this.config.authOptions.clientCapabilities),t.createQueryString()},t.prototype.continuePolling=function(e,t,n){if(n)throw this.logger.error("Token request cancelled by setting DeviceCodeRequest.cancel = true"),Dt.createDeviceCodeCancelledError();if(t&&tt)throw this.logger.error("User defined timeout for device code polling reached. The timeout was set for "+t),Dt.createUserTimeoutReachedError();if(Gn.nowSeconds()>e)throw t&&this.logger.verbose("User specified timeout ignored as the device code has expired before the timeout elapsed. The user specified timeout was set for "+t),this.logger.error("Device code expired. Expiration time of device code was "+e),Dt.createDeviceCodeExpiredError();return!0},t.prototype.acquireTokenWithDeviceCode=function(e,t){return s(this,void 0,void 0,(function(){var n,r,o,i,s,u,c,l,h;return a(this,(function(a){switch(a.label){case 0:n=this.createTokenQueryParameters(e),r=br.appendQueryString(this.authority.tokenEndpoint,n),o=this.createTokenRequestBody(e,t),i=this.createTokenRequestHeaders(),s=e.timeout?Gn.nowSeconds()+e.timeout:void 0,u=Gn.nowSeconds()+t.expiresIn,c=1e3*t.interval,a.label=1;case 1:return this.continuePolling(u,s,e.cancel)?(l={clientId:this.config.authOptions.clientId,authority:e.authority,scopes:e.scopes,claims:e.claims,authenticationScheme:e.authenticationScheme,resourceRequestMethod:e.resourceRequestMethod,resourceRequestUri:e.resourceRequestUri,shrClaims:e.shrClaims,sshKid:e.sshKid},[4,this.executePostToTokenEndpoint(r,o,i,l)]):[3,8];case 2:return(h=a.sent()).body&&h.body.error?h.body.error!==d.AUTHORIZATION_PENDING?[3,4]:(this.logger.info("Authorization pending. Continue polling."),[4,Gn.delay(c)]):[3,6];case 3:return a.sent(),[3,5];case 4:throw this.logger.info("Unexpected error in polling from the server"),or.createPostRequestFailed(h.body.error);case 5:return[3,7];case 6:return this.logger.verbose("Authorization completed successfully. Polling stopped."),[2,h.body];case 7:return[3,1];case 8:throw this.logger.error("Polling stopped for unknown reasons."),Dt.createDeviceCodeUnknownError()}}))}))},t.prototype.createTokenRequestBody=function(e,t){var n=new hr;n.addScopes(e.scopes),n.addClientId(this.config.authOptions.clientId),n.addGrantType(A.DEVICE_CODE_GRANT),n.addDeviceCode(t.deviceCode);var r=e.correlationId||this.config.cryptoInterface.createNewGuid();return n.addCorrelationId(r),n.addClientInfo(),n.addLibraryInfo(this.config.libraryInfo),n.addApplicationTelemetry(this.config.telemetry.application),n.addThrottling(),this.serverTelemetryManager&&n.addServerTelemetry(this.serverTelemetryManager),(!Lt.isEmptyObj(e.claims)||this.config.authOptions.clientCapabilities&&this.config.authOptions.clientCapabilities.length>0)&&n.addClaims(e.claims,this.config.authOptions.clientCapabilities),n.createQueryString()},t}(fr),Fr=function(e){function t(t,n){var r=e.call(this,t)||this;return r.appTokenProvider=n,r}return o(t,e),t.prototype.acquireToken=function(e){return s(this,void 0,void 0,(function(){var t;return a(this,(function(n){switch(n.label){case 0:return this.scopeSet=new Mn(e.scopes||[]),e.skipCache?[4,this.executeTokenRequest(e,this.authority)]:[3,2];case 1:case 5:return[2,n.sent()];case 2:return[4,this.getCachedAuthenticationResult(e)];case 3:return(t=n.sent())?[2,t]:[3,4];case 4:return[4,this.executeTokenRequest(e,this.authority)]}}))}))},t.prototype.getCachedAuthenticationResult=function(e){var t,n;return s(this,void 0,void 0,(function(){var r;return a(this,(function(o){switch(o.label){case 0:return(r=this.readAccessTokenFromCache())?Gn.isTokenExpired(r.expiresOn,this.config.systemOptions.tokenRenewalOffsetSeconds)?(null===(n=this.serverTelemetryManager)||void 0===n||n.setCacheOutcome(P.CACHED_ACCESS_TOKEN_EXPIRED),[2,null]):[4,wr.generateAuthenticationResult(this.cryptoUtils,this.authority,{account:null,idToken:null,accessToken:r,refreshToken:null,appMetadata:null},!0,e)]:(null===(t=this.serverTelemetryManager)||void 0===t||t.setCacheOutcome(P.NO_CACHED_ACCESS_TOKEN),[2,null]);case 1:return[2,o.sent()]}}))}))},t.prototype.readAccessTokenFromCache=function(){var e={homeAccountId:d.EMPTY_STRING,environment:this.authority.canonicalAuthorityUrlComponents.HostNameAndPort,credentialType:T.ACCESS_TOKEN,clientId:this.config.authOptions.clientId,realm:this.authority.tenant,target:Mn.createSearchScopes(this.scopeSet.asArray())},t=this.cacheManager.getAccessTokensByFilter(e);if(t.length<1)return null;if(t.length>1)throw Dt.createMultipleMatchingTokensInCacheError();return t[0]},t.prototype.executeTokenRequest=function(e,t){return s(this,void 0,void 0,(function(){var n,r,o,i,s,u,c,l,h,f,p;return a(this,(function(a){switch(a.label){case 0:return this.appTokenProvider?(this.logger.info("Using appTokenProvider extensibility."),o={correlationId:e.correlationId,tenantId:this.config.authOptions.authority.tenant,scopes:e.scopes,claims:e.claims},r=Gn.nowSeconds(),[4,this.appTokenProvider(o)]):[3,2];case 1:return i=a.sent(),n={access_token:i.accessToken,expires_in:i.expiresInSeconds,refresh_in:i.refreshInSeconds,token_type:C.BEARER},[3,4];case 2:return s=this.createTokenQueryParameters(e),u=br.appendQueryString(t.tokenEndpoint,s),c=this.createTokenRequestBody(e),l=this.createTokenRequestHeaders(),h={clientId:this.config.authOptions.clientId,authority:e.authority,scopes:e.scopes,claims:e.claims,authenticationScheme:e.authenticationScheme,resourceRequestMethod:e.resourceRequestMethod,resourceRequestUri:e.resourceRequestUri,shrClaims:e.shrClaims,sshKid:e.sshKid},r=Gn.nowSeconds(),[4,this.executePostToTokenEndpoint(u,c,l,h)];case 3:f=a.sent(),n=f.body,a.label=4;case 4:return(p=new wr(this.config.authOptions.clientId,this.cacheManager,this.cryptoUtils,this.logger,this.config.serializableCache,this.config.persistencePlugin)).validateTokenResponse(n),[4,p.handleServerTokenResponse(n,this.authority,r,e)];case 5:return[2,a.sent()]}}))}))},t.prototype.createTokenRequestBody=function(e){var t=new hr;t.addClientId(this.config.authOptions.clientId),t.addScopes(e.scopes,!1),t.addGrantType(A.CLIENT_CREDENTIALS_GRANT),t.addLibraryInfo(this.config.libraryInfo),t.addApplicationTelemetry(this.config.telemetry.application),t.addThrottling(),this.serverTelemetryManager&&t.addServerTelemetry(this.serverTelemetryManager);var n=e.correlationId||this.config.cryptoInterface.createNewGuid();t.addCorrelationId(n),this.config.clientCredentials.clientSecret&&t.addClientSecret(this.config.clientCredentials.clientSecret);var r=e.clientAssertion||this.config.clientCredentials.clientAssertion;return r&&(t.addClientAssertion(r.assertion),t.addClientAssertionType(r.assertionType)),(!Lt.isEmptyObj(e.claims)||this.config.authOptions.clientCapabilities&&this.config.authOptions.clientCapabilities.length>0)&&t.addClaims(e.claims,this.config.authOptions.clientCapabilities),t.createQueryString()},t}(fr),Ur=function(e){function t(t){return e.call(this,t)||this}return o(t,e),t.prototype.acquireToken=function(e){return s(this,void 0,void 0,(function(){var t;return a(this,(function(n){switch(n.label){case 0:return this.scopeSet=new Mn(e.scopes||[]),t=this,[4,this.cryptoUtils.hashString(e.oboAssertion)];case 1:return t.userAssertionHash=n.sent(),e.skipCache?[4,this.executeTokenRequest(e,this.authority,this.userAssertionHash)]:[3,3];case 2:case 4:case 6:return[2,n.sent()];case 3:return n.trys.push([3,5,,7]),[4,this.getCachedAuthenticationResult(e)];case 5:return n.sent(),[4,this.executeTokenRequest(e,this.authority,this.userAssertionHash)];case 7:return[2]}}))}))},t.prototype.getCachedAuthenticationResult=function(e){var t,n;return s(this,void 0,void 0,(function(){var r,o,i,s,u,c;return a(this,(function(a){switch(a.label){case 0:if(!(r=this.readAccessTokenFromCacheForOBO(this.config.authOptions.clientId,e)))throw null===(t=this.serverTelemetryManager)||void 0===t||t.setCacheOutcome(P.NO_CACHED_ACCESS_TOKEN),this.logger.info("SilentFlowClient:acquireCachedToken - No access token found in cache for the given properties."),Dt.createRefreshRequiredError();if(Gn.isTokenExpired(r.expiresOn,this.config.systemOptions.tokenRenewalOffsetSeconds))throw null===(n=this.serverTelemetryManager)||void 0===n||n.setCacheOutcome(P.CACHED_ACCESS_TOKEN_EXPIRED),this.logger.info("OnbehalfofFlow:getCachedAuthenticationResult - Cached access token is expired or will expire within "+this.config.systemOptions.tokenRenewalOffsetSeconds+" seconds."),Dt.createRefreshRequiredError();return o=this.readIdTokenFromCacheForOBO(r.homeAccountId),s=null,o&&(i=new xn(o.secret,this.config.cryptoInterface),u=i.claims.oid?i.claims.oid:i.claims.sub,c={homeAccountId:o.homeAccountId,environment:o.environment,tenantId:o.realm,username:d.EMPTY_STRING,localAccountId:u||d.EMPTY_STRING},s=this.cacheManager.readAccountFromCache(c)),this.config.serverTelemetryManager&&this.config.serverTelemetryManager.incrementCacheHits(),[4,wr.generateAuthenticationResult(this.cryptoUtils,this.authority,{account:s,accessToken:r,idToken:o,refreshToken:null,appMetadata:null},!0,e,i)];case 1:return[2,a.sent()]}}))}))},t.prototype.readIdTokenFromCacheForOBO=function(e){var t={homeAccountId:e,environment:this.authority.canonicalAuthorityUrlComponents.HostNameAndPort,credentialType:T.ID_TOKEN,clientId:this.config.authOptions.clientId,realm:this.authority.tenant},n=this.cacheManager.getIdTokensByFilter(t);return n.length<1?null:n[0]},t.prototype.readAccessTokenFromCacheForOBO=function(e,t){var n=t.authenticationScheme||C.BEARER,r={credentialType:n&&n.toLowerCase()!==C.BEARER.toLowerCase()?T.ACCESS_TOKEN_WITH_AUTH_SCHEME:T.ACCESS_TOKEN,clientId:e,target:Mn.createSearchScopes(this.scopeSet.asArray()),tokenType:n,keyId:t.sshKid,requestedClaimsHash:t.requestedClaimsHash,userAssertionHash:this.userAssertionHash},o=this.cacheManager.getAccessTokensByFilter(r),i=o.length;if(i<1)return null;if(i>1)throw Dt.createMultipleMatchingTokensInCacheError();return o[0]},t.prototype.executeTokenRequest=function(e,t,n){return s(this,void 0,void 0,(function(){var r,o,i,s,u,c,l,h;return a(this,(function(a){switch(a.label){case 0:return r=this.createTokenQueryParameters(e),o=br.appendQueryString(t.tokenEndpoint,r),i=this.createTokenRequestBody(e),s=this.createTokenRequestHeaders(),u={clientId:this.config.authOptions.clientId,authority:e.authority,scopes:e.scopes,claims:e.claims,authenticationScheme:e.authenticationScheme,resourceRequestMethod:e.resourceRequestMethod,resourceRequestUri:e.resourceRequestUri,shrClaims:e.shrClaims,sshKid:e.sshKid},c=Gn.nowSeconds(),[4,this.executePostToTokenEndpoint(o,i,s,u)];case 1:return l=a.sent(),(h=new wr(this.config.authOptions.clientId,this.cacheManager,this.cryptoUtils,this.logger,this.config.serializableCache,this.config.persistencePlugin)).validateTokenResponse(l.body),[4,h.handleServerTokenResponse(l.body,this.authority,c,e,void 0,n)];case 2:return[2,a.sent()]}}))}))},t.prototype.createTokenRequestBody=function(e){var t=new hr;t.addClientId(this.config.authOptions.clientId),t.addScopes(e.scopes),t.addGrantType(A.JWT_BEARER),t.addClientInfo(),t.addLibraryInfo(this.config.libraryInfo),t.addApplicationTelemetry(this.config.telemetry.application),t.addThrottling(),this.serverTelemetryManager&&t.addServerTelemetry(this.serverTelemetryManager);var n=e.correlationId||this.config.cryptoInterface.createNewGuid();if(t.addCorrelationId(n),t.addRequestTokenUse(f.ON_BEHALF_OF),t.addOboAssertion(e.oboAssertion),this.config.clientCredentials.clientSecret&&t.addClientSecret(this.config.clientCredentials.clientSecret),this.config.clientCredentials.clientAssertion){var r=this.config.clientCredentials.clientAssertion;t.addClientAssertion(r.assertion),t.addClientAssertionType(r.assertionType)}return(e.claims||this.config.authOptions.clientCapabilities&&this.config.authOptions.clientCapabilities.length>0)&&t.addClaims(e.claims,this.config.authOptions.clientCapabilities),t.createQueryString()},t}(fr),kr=n(58611),jr=n.n(kr),Gr=n(65692),Vr=n.n(Gr),Yr=n(76982),Hr=n.n(Yr);const Qr=new Uint8Array(256);let Wr=Qr.length;function zr(){return Wr>Qr.length-16&&(Hr().randomFillSync(Qr),Wr=0),Qr.slice(Wr,Wr+=16)}const qr=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i,Kr=[];for(let e=0;e<256;++e)Kr.push((e+256).toString(16).substr(1));const Xr=function(e,t=0){const n=(Kr[e[t+0]]+Kr[e[t+1]]+Kr[e[t+2]]+Kr[e[t+3]]+"-"+Kr[e[t+4]]+Kr[e[t+5]]+"-"+Kr[e[t+6]]+Kr[e[t+7]]+"-"+Kr[e[t+8]]+Kr[e[t+9]]+"-"+Kr[e[t+10]]+Kr[e[t+11]]+Kr[e[t+12]]+Kr[e[t+13]]+Kr[e[t+14]]+Kr[e[t+15]]).toLowerCase();if(!function(e){return"string"==typeof e&&qr.test(e)}(n))throw TypeError("Stringified UUID is invalid");return n},Jr=function(e,t,n){const r=(e=e||{}).random||(e.rng||zr)();if(r[6]=15&r[6]|64,r[8]=63&r[8]|128,t){n=n||0;for(let e=0;e<16;++e)t[n+e]=r[e];return t}return Xr(r)};var $r,Zr,eo,to=n(44040);!function(e){e.GET="get",e.POST="post"}($r||($r={})),function(e){e[e.SUCCESS_RANGE_START=200]="SUCCESS_RANGE_START",e[e.SUCCESS_RANGE_END=299]="SUCCESS_RANGE_END",e[e.REDIRECT=302]="REDIRECT",e[e.CLIENT_ERROR_RANGE_START=400]="CLIENT_ERROR_RANGE_START",e[e.CLIENT_ERROR_RANGE_END=499]="CLIENT_ERROR_RANGE_END",e[e.SERVER_ERROR_RANGE_START=500]="SERVER_ERROR_RANGE_START",e[e.SERVER_ERROR_RANGE_END=599]="SERVER_ERROR_RANGE_END"}(Zr||(Zr={})),function(e){e[e.SUCCESS_RANGE_START=200]="SUCCESS_RANGE_START",e[e.SUCCESS_RANGE_END=299]="SUCCESS_RANGE_END",e[e.SERVER_ERROR=500]="SERVER_ERROR"}(eo||(eo={}));const no="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~",ro="urn:ietf:params:oauth:client-assertion-type:jwt-bearer",oo="authorization_pending",io="http://",so="localhost";var ao;!function(e){e[e.acquireTokenSilent=62]="acquireTokenSilent",e[e.acquireTokenByUsernamePassword=371]="acquireTokenByUsernamePassword",e[e.acquireTokenByDeviceCode=671]="acquireTokenByDeviceCode",e[e.acquireTokenByClientCredential=771]="acquireTokenByClientCredential",e[e.acquireTokenByCode=871]="acquireTokenByCode",e[e.acquireTokenByRefreshToken=872]="acquireTokenByRefreshToken"}(ao||(ao={}));const uo="aud",co="exp",lo="iss",ho="sub",fo="nbf",po="jti";class Eo{static getNetworkResponse(e,t,n){return{headers:e,body:t,status:n}}static urlToHttpOptions(e){const t={protocol:e.protocol,hostname:e.hostname&&e.hostname.startsWith("[")?e.hostname.slice(1,-1):e.hostname,hash:e.hash,search:e.search,pathname:e.pathname,path:`${e.pathname||""}${e.search||""}`,href:e.href};return""!==e.port&&(t.port=Number(e.port)),(e.username||e.password)&&(t.auth=`${decodeURIComponent(e.username)}:${decodeURIComponent(e.password)}`),t}}class mo{constructor(e,t){this.proxyUrl=e||"",this.customAgentOptions=t||{}}async sendGetRequestAsync(e,t){return this.proxyUrl?_o(e,this.proxyUrl,$r.GET,t,this.customAgentOptions):go(e,$r.GET,t,this.customAgentOptions)}async sendPostRequestAsync(e,t,n){return this.proxyUrl?_o(e,this.proxyUrl,$r.POST,t,this.customAgentOptions,n):go(e,$r.POST,t,this.customAgentOptions,n)}}const _o=(e,t,n,r,o,i)=>{const s=new URL(e),a=new URL(t),u=(null==r?void 0:r.headers)||{},c={host:a.hostname,port:a.port,method:"CONNECT",path:s.hostname,headers:u};i&&(c.timeout=i),o&&Object.keys(o).length&&(c.agent=new(jr().Agent)(o));let l="";if(n===$r.POST){const e=(null==r?void 0:r.body)||"";l=`Content-Type: application/x-www-form-urlencoded\r\nContent-Length: ${e.length}\r\n\r\n${e}`}const h=`${n.toUpperCase()} ${s.href} HTTP/1.1\r\nHost: ${s.host}\r\nConnection: close\r\n`+l+"\r\n";return new Promise(((e,t)=>{const n=jr().request(c);c.timeout&&n.on("timeout",(()=>{n.destroy(),t(new Error("Request time out"))})),n.end(),n.on("connect",((r,o)=>{const i=(null==r?void 0:r.statusCode)||eo.SERVER_ERROR;(ieo.SUCCESS_RANGE_END)&&(n.destroy(),o.destroy(),t(new Error(`Error connecting to proxy. Http status code: ${r.statusCode}. Http status message: ${(null==r?void 0:r.statusMessage)||"Unknown"}`))),c.timeout&&(o.setTimeout(c.timeout),o.on("timeout",(()=>{n.destroy(),o.destroy(),t(new Error("Request time out"))}))),o.write(h);const s=[];o.on("data",(e=>{s.push(e)})),o.on("end",(()=>{const t=Buffer.concat([...s]).toString().split("\r\n"),r=parseInt(t[0].split(" ")[1]),o=t[0].split(" ").slice(2).join(" "),i=t[t.length-1],a=t.slice(1,t.length-2),u=new Map;a.forEach((e=>{const t=e.split(new RegExp(/:\s(.*)/s)),n=t[0];let r=t[1];try{const e=JSON.parse(r);e&&"object"==typeof e&&(r=e)}catch(e){}u.set(n,r)}));const c=Object.fromEntries(u),l=Eo.getNetworkResponse(c,yo(r,o,c,i),r);(rZr.SUCCESS_RANGE_END)&&l.body.error!==oo&&n.destroy(),e(l)})),o.on("error",(e=>{n.destroy(),o.destroy(),t(new Error(e.toString()))}))})),n.on("error",(e=>{n.destroy(),t(new Error(e.toString()))}))}))},go=(e,t,n,r,o)=>{const i=t===$r.POST,s=(null==n?void 0:n.body)||"",a=new URL(e),u={method:t,headers:(null==n?void 0:n.headers)||{},...Eo.urlToHttpOptions(a)};return o&&(u.timeout=o),r&&Object.keys(r).length&&(u.agent=new(Vr().Agent)(r)),i&&(u.headers={...u.headers,"Content-Length":s.length}),new Promise(((e,t)=>{const n=Vr().request(u);o&&n.on("timeout",(()=>{n.destroy(),t(new Error("Request time out"))})),i&&n.write(s),n.end(),n.on("response",(t=>{const r=t.headers,o=t.statusCode,i=t.statusMessage,s=[];t.on("data",(e=>{s.push(e)})),t.on("end",(()=>{const t=Buffer.concat([...s]).toString(),a=r,u=Eo.getNetworkResponse(a,yo(o,i,a,t),o);(oZr.SUCCESS_RANGE_END)&&u.body.error!==oo&&n.destroy(),e(u)}))})),n.on("error",(e=>{n.destroy(),t(new Error(e.toString()))}))}))},yo=(e,t,n,r)=>{let o;try{o=JSON.parse(r)}catch(r){let i,s;e>=Zr.CLIENT_ERROR_RANGE_START&&e<=Zr.CLIENT_ERROR_RANGE_END?(i="client_error",s="A client"):e>=Zr.SERVER_ERROR_RANGE_START&&e<=Zr.SERVER_ERROR_RANGE_END?(i="server_error",s="A server"):(i="unknown_error",s="An unknown"),o={error:i,error_description:`${s} error occured.\nHttp status code: ${e}\nHttp status message: ${t||"Unknown"}\nHeaders: ${JSON.stringify(n)}`}}return o},Ao={clientId:d.EMPTY_STRING,authority:d.DEFAULT_AUTHORITY,clientSecret:d.EMPTY_STRING,clientAssertion:d.EMPTY_STRING,clientCertificate:{thumbprint:d.EMPTY_STRING,privateKey:d.EMPTY_STRING,x5c:d.EMPTY_STRING},knownAuthorities:[],cloudDiscoveryMetadata:d.EMPTY_STRING,authorityMetadata:d.EMPTY_STRING,clientCapabilities:[],protocolMode:U.AAD,azureCloudOptions:{azureCloudInstance:k.None,tenant:d.EMPTY_STRING},skipAuthorityMetadataCache:!1},vo={claimsBasedCachingEnabled:!0},bo={loggerCallback:()=>{},piiLoggingEnabled:!1,logLevel:G.Info},To={loggerOptions:bo,networkClient:new mo,proxyUrl:d.EMPTY_STRING,customAgentOptions:{}},wo={application:{appName:d.EMPTY_STRING,appVersion:d.EMPTY_STRING}};class Oo{generateGuid(){return Jr()}isGuid(e){return/^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(e)}}class Ro{static base64Encode(e,t){return Buffer.from(e,t).toString("base64")}static base64EncodeUrl(e,t){return Ro.base64Encode(e,t).replace(/=/g,d.EMPTY_STRING).replace(/\+/g,"-").replace(/\//g,"_")}static base64Decode(e){return Buffer.from(e,"base64").toString("utf8")}static base64DecodeUrl(e){let t=e.replace(/-/g,"+").replace(/_/g,"/");for(;t.length%4;)t+="=";return Ro.base64Decode(t)}}class So{sha256(e){return Hr().createHash("sha256").update(e).digest()}}class Io{constructor(){this.hashUtils=new So}async generatePkceCodes(){const e=this.generateCodeVerifier();return{verifier:e,challenge:this.generateCodeChallengeFromVerifier(e)}}generateCodeVerifier(){const e=[];for(;e.length<=32;){const t=Hr().randomBytes(1)[0];if(t>=198)continue;const n=t%66;e.push(no[n])}const t=e.join(d.EMPTY_STRING);return Ro.base64EncodeUrl(t)}generateCodeChallengeFromVerifier(e){return Ro.base64EncodeUrl(this.hashUtils.sha256(e).toString("base64"),"base64")}}class No{constructor(){this.pkceGenerator=new Io,this.guidGenerator=new Oo,this.hashUtils=new So}createNewGuid(){return this.guidGenerator.generateGuid()}base64Encode(e){return Ro.base64Encode(e)}base64Decode(e){return Ro.base64Decode(e)}generatePkceCodes(){return this.pkceGenerator.generatePkceCodes()}getPublicKeyThumbprint(){throw new Error("Method not implemented.")}removeTokenBindingKey(){throw new Error("Method not implemented.")}clearKeystore(){throw new Error("Method not implemented.")}signJwt(){throw new Error("Method not implemented.")}async hashString(e){return Ro.base64EncodeUrl(this.hashUtils.sha256(e).toString("base64"),"base64")}}class Co{static deserializeJSONBlob(e){return Lt.isEmpty(e)?{}:JSON.parse(e)}static deserializeAccounts(e){const t={};return e&&Object.keys(e).map((function(n){const r=e[n],o={homeAccountId:r.home_account_id,environment:r.environment,realm:r.realm,localAccountId:r.local_account_id,username:r.username,authorityType:r.authority_type,name:r.name,clientInfo:r.client_info,lastModificationTime:r.last_modification_time,lastModificationApp:r.last_modification_app},i=new Ut;Fn.toObject(i,o),t[n]=i})),t}static deserializeIdTokens(e){const t={};return e&&Object.keys(e).map((function(n){const r=e[n],o={homeAccountId:r.home_account_id,environment:r.environment,credentialType:r.credential_type,clientId:r.client_id,secret:r.secret,realm:r.realm},i=new jn;Fn.toObject(i,o),t[n]=i})),t}static deserializeAccessTokens(e){const t={};return e&&Object.keys(e).map((function(n){const r=e[n],o={homeAccountId:r.home_account_id,environment:r.environment,credentialType:r.credential_type,clientId:r.client_id,secret:r.secret,realm:r.realm,target:r.target,cachedAt:r.cached_at,expiresOn:r.expires_on,extendedExpiresOn:r.extended_expires_on,refreshOn:r.refresh_on,keyId:r.key_id,tokenType:r.token_type,requestedClaims:r.requestedClaims,requestedClaimsHash:r.requestedClaimsHash,userAssertionHash:r.userAssertionHash},i=new Vn;Fn.toObject(i,o),t[n]=i})),t}static deserializeRefreshTokens(e){const t={};return e&&Object.keys(e).map((function(n){const r=e[n],o={homeAccountId:r.home_account_id,environment:r.environment,credentialType:r.credential_type,clientId:r.client_id,secret:r.secret,familyId:r.family_id,target:r.target,realm:r.realm},i=new Yn;Fn.toObject(i,o),t[n]=i})),t}static deserializeAppMetadata(e){const t={};return e&&Object.keys(e).map((function(n){const r=e[n],o={clientId:r.client_id,environment:r.environment,familyId:r.family_id},i=new Hn;Fn.toObject(i,o),t[n]=i})),t}static deserializeAllCache(e){return{accounts:e.Account?this.deserializeAccounts(e.Account):{},idTokens:e.IdToken?this.deserializeIdTokens(e.IdToken):{},accessTokens:e.AccessToken?this.deserializeAccessTokens(e.AccessToken):{},refreshTokens:e.RefreshToken?this.deserializeRefreshTokens(e.RefreshToken):{},appMetadata:e.AppMetadata?this.deserializeAppMetadata(e.AppMetadata):{}}}}class Do{static serializeJSONBlob(e){return JSON.stringify(e)}static serializeAccounts(e){const t={};return Object.keys(e).map((function(n){const r=e[n];t[n]={home_account_id:r.homeAccountId,environment:r.environment,realm:r.realm,local_account_id:r.localAccountId,username:r.username,authority_type:r.authorityType,name:r.name,client_info:r.clientInfo,last_modification_time:r.lastModificationTime,last_modification_app:r.lastModificationApp}})),t}static serializeIdTokens(e){const t={};return Object.keys(e).map((function(n){const r=e[n];t[n]={home_account_id:r.homeAccountId,environment:r.environment,credential_type:r.credentialType,client_id:r.clientId,secret:r.secret,realm:r.realm}})),t}static serializeAccessTokens(e){const t={};return Object.keys(e).map((function(n){const r=e[n];t[n]={home_account_id:r.homeAccountId,environment:r.environment,credential_type:r.credentialType,client_id:r.clientId,secret:r.secret,realm:r.realm,target:r.target,cached_at:r.cachedAt,expires_on:r.expiresOn,extended_expires_on:r.extendedExpiresOn,refresh_on:r.refreshOn,key_id:r.keyId,token_type:r.tokenType,requestedClaims:r.requestedClaims,requestedClaimsHash:r.requestedClaimsHash,userAssertionHash:r.userAssertionHash}})),t}static serializeRefreshTokens(e){const t={};return Object.keys(e).map((function(n){const r=e[n];t[n]={home_account_id:r.homeAccountId,environment:r.environment,credential_type:r.credentialType,client_id:r.clientId,secret:r.secret,family_id:r.familyId,target:r.target,realm:r.realm}})),t}static serializeAppMetadata(e){const t={};return Object.keys(e).map((function(n){const r=e[n];t[n]={client_id:r.clientId,environment:r.environment,family_id:r.familyId}})),t}static serializeAllCache(e){return{Account:this.serializeAccounts(e.accounts),IdToken:this.serializeIdTokens(e.idTokens),AccessToken:this.serializeAccessTokens(e.accessTokens),RefreshToken:this.serializeRefreshTokens(e.refreshTokens),AppMetadata:this.serializeAppMetadata(e.appMetadata)}}}class Lo extends Fn{constructor(e,t,n){super(t,n,e),this.cache={},this.changeEmitters=[],this.logger=e}registerChangeEmitter(e){this.changeEmitters.push(e)}emitChange(){this.changeEmitters.forEach((e=>e.call(null)))}cacheToInMemoryCache(e){const t={accounts:{},idTokens:{},accessTokens:{},refreshTokens:{},appMetadata:{}};for(const n in e)if(e[n]instanceof Ut)t.accounts[n]=e[n];else if(e[n]instanceof jn)t.idTokens[n]=e[n];else if(e[n]instanceof Vn)t.accessTokens[n]=e[n];else if(e[n]instanceof Yn)t.refreshTokens[n]=e[n];else{if(!(e[n]instanceof Hn))continue;t.appMetadata[n]=e[n]}return t}inMemoryCacheToCache(e){let t=this.getCache();return t={...t,...e.accounts,...e.idTokens,...e.accessTokens,...e.refreshTokens,...e.appMetadata},t}getInMemoryCache(){return this.logger.trace("Getting in-memory cache"),this.cacheToInMemoryCache(this.getCache())}setInMemoryCache(e){this.logger.trace("Setting in-memory cache");const t=this.inMemoryCacheToCache(e);this.setCache(t),this.emitChange()}getCache(){return this.logger.trace("Getting cache key-value store"),this.cache}setCache(e){this.logger.trace("Setting cache key value store"),this.cache=e,this.emitChange()}getItem(e){return this.logger.tracePii(`Item key: ${e}`),this.getCache()[e]}setItem(e,t){this.logger.tracePii(`Item key: ${e}`);const n=this.getCache();n[e]=t,this.setCache(n)}getAccountKeys(){const e=this.getInMemoryCache();return Object.keys(e.accounts)}getTokenKeys(){const e=this.getInMemoryCache();return{idToken:Object.keys(e.idTokens),accessToken:Object.keys(e.accessTokens),refreshToken:Object.keys(e.refreshTokens)}}getAccount(e){const t=this.getItem(e);return Ut.isAccountEntity(t)?t:null}setAccount(e){const t=e.generateAccountKey();this.setItem(t,e)}getIdTokenCredential(e){const t=this.getItem(e);return jn.isIdTokenEntity(t)?t:null}setIdTokenCredential(e){const t=e.generateCredentialKey();this.setItem(t,e)}getAccessTokenCredential(e){const t=this.getItem(e);return Vn.isAccessTokenEntity(t)?t:null}setAccessTokenCredential(e){const t=e.generateCredentialKey();this.setItem(t,e)}getRefreshTokenCredential(e){const t=this.getItem(e);return Yn.isRefreshTokenEntity(t)?t:null}setRefreshTokenCredential(e){const t=e.generateCredentialKey();this.setItem(t,e)}getAppMetadata(e){const t=this.getItem(e);return Hn.isAppMetadataEntity(e,t)?t:null}setAppMetadata(e){const t=e.generateAppMetadataKey();this.setItem(t,e)}getServerTelemetry(e){const t=this.getItem(e);return t&&Qn.isServerTelemetryEntity(e,t)?t:null}setServerTelemetry(e,t){this.setItem(e,t)}getAuthorityMetadata(e){const t=this.getItem(e);return t&&Wn.isAuthorityMetadataEntity(e,t)?t:null}getAuthorityMetadataKeys(){return this.getKeys().filter((e=>this.isAuthorityMetadata(e)))}setAuthorityMetadata(e,t){this.setItem(e,t)}getThrottlingCache(e){const t=this.getItem(e);return t&&zn.isThrottlingEntity(e,t)?t:null}setThrottlingCache(e,t){this.setItem(e,t)}removeItem(e){this.logger.tracePii(`Item key: ${e}`);let t=!1;const n=this.getCache();return n[e]&&(delete n[e],t=!0),t&&(this.setCache(n),this.emitChange()),t}containsKey(e){return this.getKeys().includes(e)}getKeys(){this.logger.trace("Retrieving all cache keys");const e=this.getCache();return[...Object.keys(e)]}async clear(){this.logger.trace("Clearing cache entries created by MSAL"),this.getKeys().forEach((e=>{this.removeItem(e)})),this.emitChange()}static generateInMemoryCache(e){return Co.deserializeAllCache(Co.deserializeJSONBlob(e))}static generateJsonCache(e){return Do.serializeAllCache(e)}updateCredentialCacheKey(e,t){const n=t.generateCredentialKey();if(e!==n){const r=this.getItem(e);if(r)return this.removeItem(e),this.setItem(n,r),this.logger.verbose(`Updated an outdated ${t.credentialType} cache key`),n;this.logger.error(`Attempted to update an outdated ${t.credentialType} cache key but no item matching the outdated key was found in storage`)}return e}}const Mo={},xo={},Bo={},Po={},Fo={};class Uo{constructor(e,t,n){this.cacheHasChanged=!1,this.storage=e,this.storage.registerChangeEmitter(this.handleChangeEvent.bind(this)),n&&(this.persistence=n),this.logger=t}hasChanged(){return this.cacheHasChanged}serialize(){this.logger.trace("Serializing in-memory cache");let e=Do.serializeAllCache(this.storage.getInMemoryCache());return Lt.isEmpty(this.cacheSnapshot)?this.logger.trace("No cache snapshot to merge"):(this.logger.trace("Reading cache snapshot from disk"),e=this.mergeState(JSON.parse(this.cacheSnapshot),e)),this.cacheHasChanged=!1,JSON.stringify(e)}deserialize(e){if(this.logger.trace("Deserializing JSON to in-memory cache"),this.cacheSnapshot=e,Lt.isEmpty(this.cacheSnapshot))this.logger.trace("No cache snapshot to deserialize");else{this.logger.trace("Reading cache snapshot from disk");const e=Co.deserializeAllCache(this.overlayDefaults(JSON.parse(this.cacheSnapshot)));this.storage.setInMemoryCache(e)}}getKVStore(){return this.storage.getCache()}async getAllAccounts(){let e;this.logger.trace("getAllAccounts called");try{return this.persistence&&(e=new qn(this,!1),await this.persistence.beforeCacheAccess(e)),this.storage.getAllAccounts()}finally{this.persistence&&e&&await this.persistence.afterCacheAccess(e)}}async getAccountByHomeId(e){const t=await this.getAllAccounts();return!Lt.isEmpty(e)&&t&&t.length&&t.filter((t=>t.homeAccountId===e))[0]||null}async getAccountByLocalId(e){const t=await this.getAllAccounts();return!Lt.isEmpty(e)&&t&&t.length&&t.filter((t=>t.localAccountId===e))[0]||null}async removeAccount(e){let t;this.logger.trace("removeAccount called");try{this.persistence&&(t=new qn(this,!0),await this.persistence.beforeCacheAccess(t)),await this.storage.removeAccount(Ut.generateAccountCacheKey(e))}finally{this.persistence&&t&&await this.persistence.afterCacheAccess(t)}}handleChangeEvent(){this.cacheHasChanged=!0}mergeState(e,t){this.logger.trace("Merging in-memory cache with cache snapshot");const n=this.mergeRemovals(e,t);return this.mergeUpdates(n,t)}mergeUpdates(e,t){return Object.keys(t).forEach((n=>{const r=t[n];if(e.hasOwnProperty(n)){const t=null!==r,o="object"==typeof r,i=!Array.isArray(r),s=void 0!==e[n]&&null!==e[n];t&&o&&i&&s?this.mergeUpdates(e[n],r):e[n]=r}else null!==r&&(e[n]=r)})),e}mergeRemovals(e,t){this.logger.trace("Remove updated entries in cache");const n=e.Account?this.mergeRemovalsDict(e.Account,t.Account):e.Account,r=e.AccessToken?this.mergeRemovalsDict(e.AccessToken,t.AccessToken):e.AccessToken,o=e.RefreshToken?this.mergeRemovalsDict(e.RefreshToken,t.RefreshToken):e.RefreshToken,i=e.IdToken?this.mergeRemovalsDict(e.IdToken,t.IdToken):e.IdToken,s=e.AppMetadata?this.mergeRemovalsDict(e.AppMetadata,t.AppMetadata):e.AppMetadata;return{...e,Account:n,AccessToken:r,RefreshToken:o,IdToken:i,AppMetadata:s}}mergeRemovalsDict(e,t){const n={...e};return Object.keys(e).forEach((e=>{t&&t.hasOwnProperty(e)||delete n[e]})),n}overlayDefaults(e){return this.logger.trace("Overlaying input cache with the default cache"),{Account:{...Mo,...e.Account},IdToken:{...xo,...e.IdToken},AccessToken:{...Bo,...e.AccessToken},RefreshToken:{...Po,...e.RefreshToken},AppMetadata:{...Fo,...e.AppMetadata}}}}const ko="1.18.4",jo="invalid_loopback_server_address_type",Go="Loopback server address is not type string. This is unexpected.",Vo="unable_to_load_redirectUrl",Yo="Loopback server callback was invoked without a url. This is unexpected.",Ho="no_auth_code_in_response",Qo="No auth code found in the server response. Please check your network trace to determine what happened.",Wo="no_loopback_server_exists",zo="No loopback server exists yet.",qo="loopback_server_already_exists",Ko="Loopback server already exists. Cannot create another.",Xo="loopback_server_timeout",Jo="Timed out waiting for auth code listener to be registered.",$o="state_not_found",Zo="State not found. Please verify that the request originated from msal.";class ei extends W{constructor(e,t){super(e,t),this.name="NodeAuthError"}static createInvalidLoopbackAddressTypeError(){return new ei(jo,`${Go}`)}static createUnableToLoadRedirectUrlError(){return new ei(Vo,`${Yo}`)}static createNoAuthCodeInResponseError(){return new ei(Ho,`${Qo}`)}static createNoLoopbackServerExistsError(){return new ei(Wo,`${zo}`)}static createLoopbackServerAlreadyExistsError(){return new ei(qo,`${Ko}`)}static createLoopbackServerTimeoutError(){return new ei(Xo,`${Jo}`)}static createStateNotFoundError(){return new ei($o,Zo)}}class ti{constructor(e){this.config=function({auth:e,broker:t,cache:n,system:r,telemetry:o}){const i={...To,networkClient:new mo(null==r?void 0:r.proxyUrl,null==r?void 0:r.customAgentOptions),loggerOptions:(null==r?void 0:r.loggerOptions)||bo};return{auth:{...Ao,...e},broker:{...t},cache:{...vo,...n},system:{...i,...r},telemetry:{...wo,...o}}}(e),this.cryptoProvider=new No,this.logger=new xt(this.config.system.loggerOptions,"@azure/msal-node",ko),this.storage=new Lo(this.logger,this.config.auth.clientId,this.cryptoProvider),this.tokenCache=new Uo(this.storage,this.logger,this.config.cache.cachePlugin)}async getAuthCodeUrl(e){this.logger.info("getAuthCodeUrl called",e.correlationId);const t={...e,...await this.initializeBaseRequest(e),responseMode:e.responseMode||y.QUERY,authenticationScheme:C.BEARER},n=await this.buildOauthClientConfiguration(t.authority,t.correlationId,void 0,void 0,e.azureCloudOptions),r=new Or(n);return this.logger.verbose("Auth code client created",t.correlationId),r.getAuthCodeUrl(t)}async acquireTokenByCode(e,t){this.logger.info("acquireTokenByCode called"),e.state&&t&&(this.logger.info("acquireTokenByCode - validating state"),this.validateState(e.state,t.state||""),t={...t,state:""});const n={...e,...await this.initializeBaseRequest(e),authenticationScheme:C.BEARER},r=this.initializeServerTelemetryManager(ao.acquireTokenByCode,n.correlationId);try{const o=await this.buildOauthClientConfiguration(n.authority,n.correlationId,r,void 0,e.azureCloudOptions),i=new Or(o);return this.logger.verbose("Auth code client created",n.correlationId),i.acquireToken(n,t)}catch(e){throw e instanceof W&&e.setCorrelationId(n.correlationId),r.cacheFailedRequest(e),e}}async acquireTokenByRefreshToken(e){this.logger.info("acquireTokenByRefreshToken called",e.correlationId);const t={...e,...await this.initializeBaseRequest(e),authenticationScheme:C.BEARER},n=this.initializeServerTelemetryManager(ao.acquireTokenByRefreshToken,t.correlationId);try{const r=await this.buildOauthClientConfiguration(t.authority,t.correlationId,n,void 0,e.azureCloudOptions),o=new Rr(r);return this.logger.verbose("Refresh token client created",t.correlationId),o.acquireToken(t)}catch(e){throw e instanceof W&&e.setCorrelationId(t.correlationId),n.cacheFailedRequest(e),e}}async acquireTokenSilent(e){const t={...e,...await this.initializeBaseRequest(e),forceRefresh:e.forceRefresh||!1},n=this.initializeServerTelemetryManager(ao.acquireTokenSilent,t.correlationId,t.forceRefresh);try{const r=await this.buildOauthClientConfiguration(t.authority,t.correlationId,n,void 0,e.azureCloudOptions),o=new Sr(r);return this.logger.verbose("Silent flow client created",t.correlationId),o.acquireToken(t)}catch(e){throw e instanceof W&&e.setCorrelationId(t.correlationId),n.cacheFailedRequest(e),e}}async acquireTokenByUsernamePassword(e){this.logger.info("acquireTokenByUsernamePassword called",e.correlationId);const t={...e,...await this.initializeBaseRequest(e)},n=this.initializeServerTelemetryManager(ao.acquireTokenByUsernamePassword,t.correlationId);try{const r=await this.buildOauthClientConfiguration(t.authority,t.correlationId,n,void 0,e.azureCloudOptions),o=new Ir(r);return this.logger.verbose("Username password client created",t.correlationId),o.acquireToken(t)}catch(e){throw e instanceof W&&e.setCorrelationId(t.correlationId),n.cacheFailedRequest(e),e}}getTokenCache(){return this.logger.info("getTokenCache called"),this.tokenCache}validateState(e,t){if(!e)throw ei.createStateNotFoundError();if(e!==t)throw Dt.createStateMismatchError()}getLogger(){return this.logger}setLogger(e){this.logger=e}async buildOauthClientConfiguration(e,t,n,r,o){this.logger.verbose("buildOauthClientConfiguration called",t);const i=o||this.config.auth.azureCloudOptions;this.logger.verbose(`building oauth client configuration with the authority: ${e}`,t);const s=await this.createAuthority(e,r,t,i);return null==n||n.updateRegionDiscoveryMetadata(s.regionDiscoveryMetadata),{authOptions:{clientId:this.config.auth.clientId,authority:s,clientCapabilities:this.config.auth.clientCapabilities},loggerOptions:{logLevel:this.config.system.loggerOptions.logLevel,loggerCallback:this.config.system.loggerOptions.loggerCallback,piiLoggingEnabled:this.config.system.loggerOptions.piiLoggingEnabled,correlationId:t},cacheOptions:{claimsBasedCachingEnabled:this.config.cache.claimsBasedCachingEnabled},cryptoInterface:this.cryptoProvider,networkInterface:this.config.system.networkClient,storageInterface:this.storage,serverTelemetryManager:n,clientCredentials:{clientSecret:this.clientSecret,clientAssertion:this.clientAssertion?this.getClientAssertion(s):void 0},libraryInfo:{sku:"msal.js.node",version:ko,cpu:process.arch||d.EMPTY_STRING,os:process.platform||d.EMPTY_STRING},telemetry:this.config.telemetry,persistencePlugin:this.config.cache.cachePlugin,serializableCache:this.tokenCache}}getClientAssertion(e){return{assertion:this.clientAssertion.getJwt(this.cryptoProvider,this.config.auth.clientId,e.tokenEndpoint),assertionType:ro}}async initializeBaseRequest(e){return this.logger.verbose("initializeRequestScopes called",e.correlationId),e.authenticationScheme&&e.authenticationScheme===C.POP&&this.logger.verbose("Authentication Scheme 'pop' is not supported yet, setting Authentication Scheme to 'Bearer' for request",e.correlationId),e.authenticationScheme=C.BEARER,this.config.cache.claimsBasedCachingEnabled&&e.claims&&!Lt.isEmptyObj(e.claims)&&(e.requestedClaimsHash=await this.cryptoProvider.hashString(e.claims)),{...e,scopes:[...e&&e.scopes||[],...E],correlationId:e&&e.correlationId||this.cryptoProvider.createNewGuid(),authority:e.authority||this.config.auth.authority}}initializeServerTelemetryManager(e,t,n){const r={clientId:this.config.auth.clientId,correlationId:t,apiId:e,forceRefresh:n||!1};return new Nr(r,this.storage)}async createAuthority(e,t,n,r){this.logger.verbose("createAuthority called",n);const o=xr.generateAuthority(e,r),i={protocolMode:this.config.auth.protocolMode,knownAuthorities:this.config.auth.knownAuthorities,cloudDiscoveryMetadata:this.config.auth.cloudDiscoveryMetadata,authorityMetadata:this.config.auth.authorityMetadata,azureRegionConfiguration:t,skipAuthorityMetadataCache:this.config.auth.skipAuthorityMetadataCache};return await Br.createDiscoveredInstance(o,this.config.system.networkClient,this.storage,i,this.logger)}clearCache(){this.storage.clear()}}class ni{async listenForAuthCode(e,t){if(this.server)throw ei.createLoopbackServerAlreadyExistsError();const n=new Promise(((n,r)=>{this.server=(0,kr.createServer)((async(o,i)=>{const s=o.url;if(!s)return i.end(t||"Error occurred loading redirectUrl"),void r(ei.createUnableToLoadRedirectUrlError());if(s===d.FORWARD_SLASH)return void i.end(e||"Auth code was successfully acquired. You can close this window now.");const a=br.getDeserializedQueryString(s);if(a.code){const e=await this.getRedirectUri();i.writeHead(Zr.REDIRECT,{location:e}),i.end()}n(a)})),this.server.listen(0)}));return await new Promise((e=>{let t=0;const n=setInterval((()=>{if(50{h.closeServer()}));if(p.error)throw new or(p.error,p.error_description,p.suberror);if(!p.code)throw ei.createNoAuthCodeInResponseError();const m=p.client_info,_={code:p.code,codeVerifier:c,clientInfo:m||d.EMPTY_STRING,...u};return this.acquireTokenByCode(_)}catch(e){throw h.closeServer(),e}}async acquireTokenSilent(e){const t=e.correlationId||this.cryptoProvider.createNewGuid();if(this.logger.trace("acquireTokenSilent called",t),this.nativeBrokerPlugin){const n={...e,clientId:this.config.auth.clientId,scopes:e.scopes||E,redirectUri:`${io}${so}`,authority:e.authority||this.config.auth.authority,correlationId:t,extraParameters:e.tokenQueryParameters,accountId:e.account.nativeAccountId,forceRefresh:e.forceRefresh||!1};return this.nativeBrokerPlugin.acquireTokenSilent(n)}return super.acquireTokenSilent(e)}async signOut(e){if(this.nativeBrokerPlugin&&e.account.nativeAccountId){const t={clientId:this.config.auth.clientId,accountId:e.account.nativeAccountId,correlationId:e.correlationId||this.cryptoProvider.createNewGuid()};await this.nativeBrokerPlugin.signOut(t)}await this.getTokenCache().removeAccount(e.account)}async getAllAccounts(){if(this.nativeBrokerPlugin){const e=this.cryptoProvider.createNewGuid();return this.nativeBrokerPlugin.getAllAccounts(this.config.auth.clientId,e)}return this.getTokenCache().getAllAccounts()}}class oi{static fromAssertion(e){const t=new oi;return t.jwt=e,t}static fromCertificate(e,t,n){const r=new oi;return r.privateKey=t,r.thumbprint=e,n&&(r.publicCertificate=this.parseCertificate(n)),r}getJwt(e,t,n){if(this.privateKey&&this.thumbprint)return this.jwt&&!this.isExpired()&&t===this.issuer&&n===this.jwtAudience?this.jwt:this.createJwt(e,t,n);if(this.jwt)return this.jwt;throw Dt.createInvalidAssertionError()}createJwt(e,t,n){this.issuer=t,this.jwtAudience=n;const r=Gn.nowSeconds();this.expirationTime=r+600;const o={alg:"RS256",x5t:Ro.base64EncodeUrl(this.thumbprint,"hex")};this.publicCertificate&&Object.assign(o,{x5c:this.publicCertificate});const i={[uo]:this.jwtAudience,[co]:this.expirationTime,[lo]:this.issuer,[ho]:this.issuer,[fo]:r,[po]:e.createNewGuid()};return this.jwt=(0,to.sign)(i,this.privateKey,{header:o}),this.jwt}isExpired(){return this.expirationTime!E.includes(e)))},o={...e,...r,clientAssertion:t},i={azureRegion:o.azureRegion,environmentRegion:process.env.REGION_NAME},s=this.initializeServerTelemetryManager(ao.acquireTokenByClientCredential,o.correlationId,o.skipCache);try{const t=await this.buildOauthClientConfiguration(o.authority,o.correlationId,s,i,e.azureCloudOptions),n=new Fr(t,this.appTokenProvider);return this.logger.verbose("Client credential client created",o.correlationId),n.acquireToken(o)}catch(e){throw e instanceof W&&e.setCorrelationId(o.correlationId),s.cacheFailedRequest(e),e}}async acquireTokenOnBehalfOf(e){this.logger.info("acquireTokenOnBehalfOf called",e.correlationId);const t={...e,...await this.initializeBaseRequest(e)};try{const n=await this.buildOauthClientConfiguration(t.authority,t.correlationId,void 0,void 0,e.azureCloudOptions),r=new Ur(n);return this.logger.verbose("On behalf of client created",t.correlationId),r.acquireToken(t)}catch(e){throw e instanceof W&&e.setCorrelationId(t.correlationId),e}}setClientCredential(e){const t=!Lt.isEmpty(e.auth.clientSecret),n=!Lt.isEmpty(e.auth.clientAssertion),r=e.auth.clientCertificate||{thumbprint:d.EMPTY_STRING,privateKey:d.EMPTY_STRING},o=!Lt.isEmpty(r.thumbprint)||!Lt.isEmpty(r.privateKey);if(!this.appTokenProvider){if(t&&n||n&&o||t&&o)throw Dt.createInvalidCredentialError();if(e.auth.clientSecret)this.clientSecret=e.auth.clientSecret;else if(e.auth.clientAssertion)this.clientAssertion=oi.fromAssertion(e.auth.clientAssertion);else{if(!o)throw Dt.createInvalidCredentialError();var i;this.clientAssertion=oi.fromCertificate(r.thumbprint,r.privateKey,null==(i=e.auth.clientCertificate)?void 0:i.x5c)}}}}const si={Base64Url:"Base64Url",Boolean:"Boolean",ByteArray:"ByteArray",Composite:"Composite",Date:"Date",DateTime:"DateTime",DateTimeRfc1123:"DateTimeRfc1123",Dictionary:"Dictionary",Enum:"Enum",Number:"Number",Object:"Object",Sequence:"Sequence",String:"String",Stream:"Stream",TimeSpan:"TimeSpan",UnixTime:"UnixTime"},ai=new Set(["Deserialize","Serialize","Retry","Sign"]);class ui{constructor(e){var t;this._policies=[],this._policies=null!==(t=null==e?void 0:e.slice(0))&&void 0!==t?t:[],this._orderedPolicies=void 0}addPolicy(e,t={}){if(t.phase&&t.afterPhase)throw new Error("Policies inside a phase cannot specify afterPhase.");if(t.phase&&!ai.has(t.phase))throw new Error(`Invalid phase name: ${t.phase}`);if(t.afterPhase&&!ai.has(t.afterPhase))throw new Error(`Invalid afterPhase name: ${t.afterPhase}`);this._policies.push({policy:e,options:t}),this._orderedPolicies=void 0}removePolicy(e){const t=[];return this._policies=this._policies.filter((n=>!(e.name&&n.policy.name===e.name||e.phase&&n.options.phase===e.phase)||(t.push(n.policy),!1))),this._orderedPolicies=void 0,t}sendRequest(e,t){return this.getOrderedPolicies().reduceRight(((e,t)=>n=>t.sendRequest(n,e)),(t=>e.sendRequest(t)))(t)}getOrderedPolicies(){return this._orderedPolicies||(this._orderedPolicies=this.orderPolicies()),this._orderedPolicies}clone(){return new ui(this._policies)}static create(){return new ui}orderPolicies(){const e=[],t=new Map;function n(e){return{name:e,policies:new Set,hasRun:!1,hasAfterPolicies:!1}}const r=n("Serialize"),o=n("None"),i=n("Deserialize"),s=n("Retry"),a=n("Sign"),u=[r,o,i,s,a];function c(e){return"Retry"===e?s:"Serialize"===e?r:"Deserialize"===e?i:"Sign"===e?a:o}for(const e of this._policies){const n=e.policy,r=e.options,o=n.name;if(t.has(o))throw new Error("Duplicate policy names not allowed in pipeline");const i={policy:n,dependsOn:new Set,dependants:new Set};r.afterPhase&&(i.afterPhase=c(r.afterPhase),i.afterPhase.hasAfterPolicies=!0),t.set(o,i),c(r.phase).policies.add(i)}for(const e of this._policies){const{policy:n,options:r}=e,o=n.name,i=t.get(o);if(!i)throw new Error(`Missing node for policy ${o}`);if(r.afterPolicies)for(const e of r.afterPolicies){const n=t.get(e);n&&(i.dependsOn.add(n),n.dependants.add(i))}if(r.beforePolicies)for(const e of r.beforePolicies){const n=t.get(e);n&&(n.dependsOn.add(i),i.dependants.add(n))}}function l(n){n.hasRun=!0;for(const r of n.policies)if((!r.afterPhase||r.afterPhase.hasRun&&!r.afterPhase.policies.size)&&0===r.dependsOn.size){e.push(r.policy);for(const e of r.dependants)e.dependsOn.delete(r);t.delete(r.policy.name),n.policies.delete(r)}}function h(){for(const e of u){if(l(e),e.policies.size>0&&e!==o)return void(o.hasRun||l(o));e.hasAfterPolicies&&l(o)}}let f=0;for(;t.size>0;){f++;const t=e.length;if(h(),e.length<=t&&f>1)throw new Error("Cannot satisfy policy dependencies due to requirements cycle.")}return e}}const ci=require("node:os"),li=require("node:util"),hi=require("node:process"),fi="undefined"!=typeof process&&process.env&&process.env.DEBUG||void 0;let pi,di=[],Ei=[];const mi=[];fi&&gi(fi);const _i=Object.assign((e=>Ai(e)),{enable:gi,enabled:yi,disable:function(){const e=pi||"";return gi(""),e},log:function(e,...t){hi.stderr.write(`${li.format(e,...t)}${ci.EOL}`)}});function gi(e){pi=e,di=[],Ei=[];const t=/\*/g,n=e.split(",").map((e=>e.trim().replace(t,".*?")));for(const e of n)e.startsWith("-")?Ei.push(new RegExp(`^${e.substr(1)}$`)):di.push(new RegExp(`^${e}$`));for(const e of mi)e.enabled=yi(e.namespace)}function yi(e){if(e.endsWith("*"))return!0;for(const t of Ei)if(t.test(e))return!1;for(const t of di)if(t.test(e))return!0;return!1}function Ai(e){const t=Object.assign((function(...n){t.enabled&&(n.length>0&&(n[0]=`${e} ${n[0]}`),t.log(...n))}),{enabled:yi(e),destroy:vi,log:_i.log,namespace:e,extend:bi});return mi.push(t),t}function vi(){const e=mi.indexOf(this);return e>=0&&(mi.splice(e,1),!0)}function bi(e){const t=Ai(`${this.namespace}:${e}`);return t.log=this.log,t}const Ti=_i,wi=new Set,Oi="undefined"!=typeof process&&process.env&&process.env.AZURE_LOG_LEVEL||void 0;let Ri;const Si=Ti("azure");Si.log=(...e)=>{Ti.log(...e)};const Ii=["verbose","info","warning","error"];Oi&&(xi(Oi)?function(e){if(e&&!xi(e))throw new Error(`Unknown log level '${e}'. Acceptable values: ${Ii.join(",")}`);Ri=e;const t=[];for(const e of wi)Mi(e)&&t.push(e.namespace);Ti.enable(t.join(","))}(Oi):console.error(`AZURE_LOG_LEVEL set to unknown log level '${Oi}'; logging is not enabled. Acceptable values: ${Ii.join(", ")}.`));const Ni={verbose:400,info:300,warning:200,error:100};function Ci(e){const t=Si.extend(e);return Di(Si,t),{error:Li(t,"error"),warning:Li(t,"warning"),info:Li(t,"info"),verbose:Li(t,"verbose")}}function Di(e,t){t.log=(...t)=>{e.log(...t)}}function Li(e,t){const n=Object.assign(e.extend(t),{level:t});if(Di(e,n),Mi(n)){const e=Ti.disable();Ti.enable(e+","+n.namespace)}return wi.add(n),n}function Mi(e){return Boolean(Ri&&Ni[e.level]<=Ni[Ri])}function xi(e){return Ii.includes(e)}const Bi=Ci("core-rest-pipeline");class Pi extends Error{constructor(e){super(e),this.name="AbortError"}}function Fi(e,t){let n;const{abortSignal:r,abortErrorMsg:o}=null!=t?t:{};return function(t,r){const{cleanupBeforeAbort:o,abortSignal:i,abortErrorMsg:s}=null!=r?r:{};return new Promise(((t,r)=>{function a(){r(new Pi(null!=s?s:"The operation was aborted."))}function u(){null==i||i.removeEventListener("abort",c)}function c(){null==o||o(),u(),a()}if(null==i?void 0:i.aborted)return a();try{(t=>{n=setTimeout(t,e)})((e=>{u(),t(e)}))}catch(e){r(e)}null==i||i.addEventListener("abort",c)}))}(0,{cleanupBeforeAbort:()=>clearTimeout(n),abortSignal:r,abortErrorMsg:null!=o?o:"The delay was aborted."})}function Ui(e){return!("object"!=typeof e||null===e||Array.isArray(e)||e instanceof RegExp||e instanceof Date)}function ki(e){if(Ui(e)){const t="string"==typeof e.name,n="string"==typeof e.message;return t&&n}return!1}function ji(e){if(ki(e))return e.message;{let t;try{t="object"==typeof e&&e?JSON.stringify(e):String(e)}catch(e){t="[unable to stringify input]"}return`Unknown error ${t}`}}var Gi;const Vi="function"==typeof(null===(Gi=null===globalThis||void 0===globalThis?void 0:globalThis.crypto)||void 0===Gi?void 0:Gi.randomUUID)?globalThis.crypto.randomUUID.bind(globalThis.crypto):Yr.randomUUID;function Yi(){return Vi()}var Hi,Qi,Wi,zi;"undefined"!=typeof window&&window.document,"object"==typeof self&&"function"==typeof(null===self||void 0===self?void 0:self.importScripts)&&("DedicatedWorkerGlobalScope"===(null===(Hi=self.constructor)||void 0===Hi?void 0:Hi.name)||"ServiceWorkerGlobalScope"===(null===(Qi=self.constructor)||void 0===Qi?void 0:Qi.name)||null===(Wi=self.constructor)||void 0===Wi||Wi.name),"undefined"!=typeof Deno&&void 0!==Deno.version&&Deno.version.deno,"undefined"!=typeof Bun&&Bun.version;const qi=void 0!==globalThis.process&&Boolean(globalThis.process.version)&&Boolean(null===(zi=globalThis.process.versions)||void 0===zi?void 0:zi.node),Ki=qi;function Xi(e,t){return Buffer.from(e,t)}"undefined"!=typeof navigator&&(null===navigator||void 0===navigator||navigator.product);const Ji="REDACTED",$i=["x-ms-client-request-id","x-ms-return-client-request-id","x-ms-useragent","x-ms-correlation-request-id","x-ms-request-id","client-request-id","ms-cv","return-client-request-id","traceparent","Access-Control-Allow-Credentials","Access-Control-Allow-Headers","Access-Control-Allow-Methods","Access-Control-Allow-Origin","Access-Control-Expose-Headers","Access-Control-Max-Age","Access-Control-Request-Headers","Access-Control-Request-Method","Origin","Accept","Accept-Encoding","Cache-Control","Connection","Content-Length","Content-Type","Date","ETag","Expires","If-Match","If-Modified-Since","If-None-Match","If-Unmodified-Since","Last-Modified","Pragma","Request-Id","Retry-After","Server","Transfer-Encoding","User-Agent","WWW-Authenticate"],Zi=["api-version"];class es{constructor({additionalAllowedHeaderNames:e=[],additionalAllowedQueryParameters:t=[]}={}){e=$i.concat(e),t=Zi.concat(t),this.allowedHeaderNames=new Set(e.map((e=>e.toLowerCase()))),this.allowedQueryParameters=new Set(t.map((e=>e.toLowerCase())))}sanitize(e){const t=new Set;return JSON.stringify(e,((e,n)=>{if(n instanceof Error)return Object.assign(Object.assign({},n),{name:n.name,message:n.message});if("headers"===e)return this.sanitizeHeaders(n);if("url"===e)return this.sanitizeUrl(n);if("query"===e)return this.sanitizeQuery(n);if("body"!==e&&"response"!==e&&"operationSpec"!==e){if(Array.isArray(n)||Ui(n)){if(t.has(n))return"[Circular]";t.add(n)}return n}}),2)}sanitizeHeaders(e){const t={};for(const n of Object.keys(e))this.allowedHeaderNames.has(n.toLowerCase())?t[n]=e[n]:t[n]=Ji;return t}sanitizeQuery(e){if("object"!=typeof e||null===e)return e;const t={};for(const n of Object.keys(e))this.allowedQueryParameters.has(n.toLowerCase())?t[n]=e[n]:t[n]=Ji;return t}sanitizeUrl(e){if("string"!=typeof e||null===e)return e;const t=new URL(e);if(!t.search)return e;for(const[e]of t.searchParams)this.allowedQueryParameters.has(e.toLowerCase())||t.searchParams.set(e,Ji);return t.toString()}}const ts="logPolicy",ns="redirectPolicy",rs=["GET","HEAD"];function os(e={}){const{maxRetries:t=20}=e;return{name:ns,async sendRequest(e,n){const r=await n(e);return is(n,r,t)}}}async function is(e,t,n,r=0){const{request:o,status:i,headers:s}=t,a=s.get("location");if(a&&(300===i||301===i&&rs.includes(o.method)||302===i&&rs.includes(o.method)||303===i&&"POST"===o.method||307===i)&&r1||a(e,t)}))},t&&(r[e]=t(r[e])))}function a(e,t){try{(n=o[e](t)).value instanceof hs?Promise.resolve(n.value.v).then(u,c):l(i[0][2],n)}catch(e){l(i[0][3],e)}var n}function u(e){a("next",e)}function c(e){a("throw",e)}function l(e,t){e(t),i.shift(),i.length&&a(i[0][0],i[0][1])}}function ps(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t,n=e[Symbol.asyncIterator];return n?n.call(e):(e=function(e){var t="function"==typeof Symbol&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}(e),t={},r("next"),r("throw"),r("return"),t[Symbol.asyncIterator]=function(){return this},t);function r(n){t[n]=e[n]&&function(t){return new Promise((function(r,o){!function(e,t,n,r){Promise.resolve(r).then((function(t){e({value:t,done:n})}),t)}(r,o,(t=e[n](t)).done,t.value)}))}}}Object.create,Object.create,"function"==typeof SuppressedError&&SuppressedError;const ds=require("node:stream");function Es(e){return"function"==typeof e.stream}const ms=Symbol("rawContent");function _s(){return fs(this,arguments,(function*(){const e=this.getReader();try{for(;;){const{done:t,value:n}=yield hs(e.read());if(t)return yield hs(void 0);yield yield hs(n)}}finally{e.releaseLock()}}))}function gs(e){return e instanceof Uint8Array?ds.Readable.from(Buffer.from(e)):Es(e)?gs("function"==typeof(r=e)[ms]?r[ms]():r.stream()):(t=e)instanceof ReadableStream?((n=t)[Symbol.asyncIterator]||(n[Symbol.asyncIterator]=_s.bind(n)),n.values||(n.values=_s.bind(n)),ds.Readable.fromWeb(t)):t;var t,n,r}function ys(e){let t="";for(const[n,r]of e)t+=`${n}: ${r}\r\n`;return t}function As(e){return e instanceof Uint8Array?e.byteLength:Es(e)?-1===e.size?void 0:e.size:void 0}const vs="multipartPolicy",bs=70,Ts=new Set("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'()+,-./:=?");function ws(){return{name:vs,async sendRequest(e,t){var n;if(!e.multipartBody)return t(e);if(e.body)throw new Error("multipartBody and regular body cannot be set at the same time");let r=e.multipartBody.boundary;const o=null!==(n=e.headers.get("Content-Type"))&&void 0!==n?n:"multipart/mixed",i=o.match(/^(multipart\/[^ ;]+)(?:; *boundary=(.+))?$/);if(!i)throw new Error(`Got multipart request body, but content-type header was not multipart: ${o}`);const[,s,a]=i;if(a&&r&&a!==r)throw new Error(`Multipart boundary was specified as ${a} in the header, but got ${r} in the request body`);return null!=r||(r=a),r?function(e){if(e.length>bs)throw new Error(`Multipart boundary "${e}" exceeds maximum length of 70 characters`);if(Array.from(e).some((e=>!Ts.has(e))))throw new Error(`Multipart boundary "${e}" contains invalid characters`)}(r):r=`----AzSDKFormBoundary${Yi()}`,e.headers.set("Content-Type",`${s}; boundary=${r}`),await async function(e,t,n){const r=[Xi(`--${n}`,"utf-8"),...t.flatMap((e=>[Xi("\r\n","utf-8"),Xi(ys(e.headers),"utf-8"),Xi("\r\n","utf-8"),e.body,Xi(`\r\n--${n}`,"utf-8")])),Xi("--\r\n\r\n","utf-8")],o=function(e){let t=0;for(const n of e){const e=As(n);if(void 0===e)return;t+=e}return t}(r);o&&e.headers.set("Content-Length",o),e.body=await async function(e){return function(){const t=e.map((e=>"function"==typeof e?e():e)).map(gs);return ds.Readable.from(function(){return fs(this,arguments,(function*(){var e,n,r,o;for(const u of t)try{for(var i,s=!0,a=(n=void 0,ps(u));!(e=(i=yield hs(a.next())).done);s=!0){o=i.value,s=!1;const e=o;yield yield hs(e)}}catch(e){n={error:e}}finally{try{s||e||!(r=a.return)||(yield hs(r.call(a)))}finally{if(n)throw n.error}}}))}())}}(r)}(e,e.multipartBody.parts,r),e.multipartBody=void 0,t(e)}}}const Os="decompressResponsePolicy";class Rs extends Error{constructor(e){super(e),this.name="AbortError"}}const Ss="The operation was aborted.";function Is(e,t,n){return new Promise(((r,o)=>{let i,s;const a=()=>o(new Rs((null==n?void 0:n.abortErrorMsg)?null==n?void 0:n.abortErrorMsg:Ss)),u=()=>{(null==n?void 0:n.abortSignal)&&s&&n.abortSignal.removeEventListener("abort",s)};if(s=()=>(i&&clearTimeout(i),u(),a()),(null==n?void 0:n.abortSignal)&&n.abortSignal.aborted)return a();i=setTimeout((()=>{u(),r(t)}),e),(null==n?void 0:n.abortSignal)&&n.abortSignal.addEventListener("abort",s)}))}function Ns(e,t){const n=e.headers.get(t);if(!n)return;const r=Number(n);return Number.isNaN(r)?void 0:r}const Cs="Retry-After",Ds=["retry-after-ms","x-ms-retry-after-ms",Cs];function Ls(e){if(e&&[429,503].includes(e.status))try{for(const t of Ds){const n=Ns(e,t);if(0===n||n)return n*(t===Cs?1e3:1)}const t=e.headers.get(Cs);if(!t)return;const n=Date.parse(t)-Date.now();return Number.isFinite(n)?Math.max(0,n):void 0}catch(e){return}}const Ms=1e3,xs=64e3;function Bs(e={}){var t,n;const r=null!==(t=e.retryDelayInMs)&&void 0!==t?t:Ms,o=null!==(n=e.maxRetryDelayInMs)&&void 0!==n?n:xs;let i=r;return{name:"exponentialRetryStrategy",retry({retryCount:t,response:n,responseError:r}){const s=function(e){return!!e&&("ETIMEDOUT"===e.code||"ESOCKETTIMEDOUT"===e.code||"ECONNREFUSED"===e.code||"ECONNRESET"===e.code||"ENOENT"===e.code||"ENOTFOUND"===e.code)}(r),a=s&&e.ignoreSystemErrors,u=function(e){return Boolean(e&&void 0!==e.status&&(e.status>=500||408===e.status)&&501!==e.status&&505!==e.status)}(n),c=u&&e.ignoreHttpStatusCodes,l=n&&(function(e){return Number.isFinite(Ls(e))}(n)||!u);if(l||c||a)return{skipStrategy:!0};if(r&&!s&&!u)return{errorToThrow:r};const h=i*Math.pow(2,t),f=Math.min(o,h);var p,d;return i=f/2+(p=0,d=f/2,p=Math.ceil(p),d=Math.floor(d),Math.floor(Math.random()*(d-p+1))+p),{retryAfterInMs:i}}}}const Ps=Ci("core-rest-pipeline retryPolicy"),Fs="retryPolicy";function Us(e,t={maxRetries:as}){const n=t.logger||Ps;return{name:Fs,async sendRequest(r,o){var i,s;let a,u,c=-1;e:for(;;){c+=1,a=void 0,u=void 0;try{n.info(`Retry ${c}: Attempting to send request`,r.requestId),a=await o(r),n.info(`Retry ${c}: Received a response from request`,r.requestId)}catch(e){if(n.error(`Retry ${c}: Received an error from request`,r.requestId),u=e,!e||"RestError"!==u.name)throw e;a=u.response}if(null===(i=r.abortSignal)||void 0===i?void 0:i.aborted)throw n.error(`Retry ${c}: Request aborted.`),new Rs;if(c>=(null!==(s=t.maxRetries)&&void 0!==s?s:as)){if(n.info(`Retry ${c}: Maximum retries reached. Returning the last received response, or throwing the last received error.`),u)throw u;if(a)return a;throw new Error("Maximum retries reached with no response or error to throw")}n.info(`Retry ${c}: Processing ${e.length} retry strategies.`);t:for(const t of e){const e=t.logger||Ps;e.info(`Retry ${c}: Processing retry strategy ${t.name}.`);const n=t.retry({retryCount:c,response:a,responseError:u});if(n.skipStrategy){e.info(`Retry ${c}: Skipped.`);continue t}const{errorToThrow:o,retryAfterInMs:i,redirectTo:s}=n;if(o)throw e.error(`Retry ${c}: Retry strategy ${t.name} throws error:`,o),o;if(i||0===i){e.info(`Retry ${c}: Retry strategy ${t.name} retries after ${i}`),await Is(i,void 0,{abortSignal:r.abortSignal});continue e}if(s){e.info(`Retry ${c}: Retry strategy ${t.name} redirects to ${s}`),r.url=s;continue e}}if(u)throw n.info("None of the retry strategies could work with the received error. Throwing it."),u;if(a)return n.info("None of the retry strategies could work with the received response. Returning it."),a}}}}const ks="defaultRetryPolicy";function js(e){return e.toLowerCase()}class Gs{constructor(e){if(this._headersMap=new Map,e)for(const t of Object.keys(e))this.set(t,e[t])}set(e,t){this._headersMap.set(js(e),{name:e,value:String(t).trim()})}get(e){var t;return null===(t=this._headersMap.get(js(e)))||void 0===t?void 0:t.value}has(e){return this._headersMap.has(js(e))}delete(e){this._headersMap.delete(js(e))}toJSON(e={}){const t={};if(e.preserveCase)for(const e of this._headersMap.values())t[e.name]=e.value;else for(const[e,n]of this._headersMap)t[e]=n.value;return t}toString(){return JSON.stringify(this.toJSON({preserveCase:!0}))}[Symbol.iterator](){return function*(e){for(const t of e.values())yield[t.name,t.value]}(this._headersMap)}}function Vs(e){return new Gs(e)}const Ys="formDataPolicy";var Hs=n(23923),Qs=n(11344);const Ws="HTTPS_PROXY",zs="HTTP_PROXY",qs="ALL_PROXY",Ks="NO_PROXY",Xs="proxyPolicy",Js=[];let $s=!1;const Zs=new Map;function ea(e){return process.env[e]?process.env[e]:process.env[e.toLowerCase()]?process.env[e.toLowerCase()]:void 0}function ta(e){let t;try{t=new URL(e.host)}catch(t){throw new Error(`Expecting a valid host string in proxy settings, but found "${e.host}".`)}return t.port=String(e.port),e.username&&(t.username=e.username),e.password&&(t.password=e.password),t}function na(e,t,n){if(e.agent)return;const r="https:"!==new URL(e.url).protocol;e.tlsSettings&&Bi.warning("TLS settings are not supported in combination with custom Proxy, certificates provided to the client will be ignored.");const o=e.headers.toJSON();r?(t.httpProxyAgent||(t.httpProxyAgent=new Qs.HttpProxyAgent(n,{headers:o})),e.agent=t.httpProxyAgent):(t.httpsProxyAgent||(t.httpsProxyAgent=new Hs.HttpsProxyAgent(n,{headers:o})),e.agent=t.httpsProxyAgent)}function ra(e,t){$s||Js.push(...function(){const e=ea(Ks);return $s=!0,e?e.split(",").map((e=>e.trim())).filter((e=>e.length)):[]}());const n=e?ta(e):function(){const e=function(){if(!process)return;const e=ea(Ws),t=ea(qs),n=ea(zs);return e||t||n}();return e?new URL(e):void 0}(),r={};return{name:Xs,async sendRequest(e,o){var i;return e.proxySettings||!n||function(e,t,n){if(0===t.length)return!1;const r=new URL(e).hostname;if(null==n?void 0:n.has(r))return n.get(r);let o=!1;for(const e of t)"."===e[0]?(r.endsWith(e)||r.length===e.length-1&&r===e.slice(1))&&(o=!0):r===e&&(o=!0);return null==n||n.set(r,o),o}(e.url,null!==(i=null==t?void 0:t.customNoProxyList)&&void 0!==i?i:Js,(null==t?void 0:t.customNoProxyList)?void 0:Zs)?e.proxySettings&&na(e,r,ta(e.proxySettings)):na(e,r,n),o(e)}}}const oa="setClientRequestIdPolicy",ia="tlsPolicy",sa={span:Symbol.for("@azure/core-tracing span"),namespace:Symbol.for("@azure/core-tracing namespace")};function aa(e={}){let t=new ua(e.parentContext);return e.span&&(t=t.setValue(sa.span,e.span)),e.namespace&&(t=t.setValue(sa.namespace,e.namespace)),t}class ua{constructor(e){this._contextMap=e instanceof ua?new Map(e._contextMap):new Map}setValue(e,t){const n=new ua(this);return n._contextMap.set(e,t),n}getValue(e){return this._contextMap.get(e)}deleteValue(e){const t=new ua(this);return t._contextMap.delete(e),t}}const ca=n(12583).w;function la(){return ca.instrumenterImplementation||(ca.instrumenterImplementation={createRequestHeaders:()=>({}),parseTraceparentHeader:()=>{},startSpan:(e,t)=>({span:{end:()=>{},isRecording:()=>!1,recordException:()=>{},setAttribute:()=>{},setStatus:()=>{}},tracingContext:aa({parentContext:t.tracingContext})}),withContext:(e,t,...n)=>t(...n)}),ca.instrumenterImplementation}function ha(e){const{namespace:t,packageName:n,packageVersion:r}=e;function o(e,o,i){var s;const a=la().startSpan(e,Object.assign(Object.assign({},i),{packageName:n,packageVersion:r,tracingContext:null===(s=null==o?void 0:o.tracingOptions)||void 0===s?void 0:s.tracingContext}));let u=a.tracingContext;const c=a.span;return u.getValue(sa.namespace)||(u=u.setValue(sa.namespace,t)),c.setAttribute("az.namespace",u.getValue(sa.namespace)),{span:c,updatedOptions:Object.assign({},o,{tracingOptions:Object.assign(Object.assign({},null==o?void 0:o.tracingOptions),{tracingContext:u})})}}function i(e,t,...n){return la().withContext(e,t,...n)}return{startSpan:o,withSpan:async function(e,t,n,r){const{span:s,updatedOptions:a}=o(e,t,r);try{const e=await i(a.tracingOptions.tracingContext,(()=>Promise.resolve(n(a,s))));return s.setStatus({status:"success"}),e}catch(e){throw s.setStatus({status:"error",error:e}),e}finally{s.end()}},withContext:i,parseTraceparentHeader:function(e){return la().parseTraceparentHeader(e)},createRequestHeaders:function(e){return la().createRequestHeaders(e)}}}const fa=li.inspect.custom,pa=new es;class da extends Error{constructor(e,t={}){super(e),this.name="RestError",this.code=t.code,this.statusCode=t.statusCode,this.request=t.request,this.response=t.response,Object.setPrototypeOf(this,da.prototype)}[fa](){return`RestError: ${this.message} \n ${pa.sanitize(this)}`}}da.REQUEST_SEND_ERROR="REQUEST_SEND_ERROR",da.PARSE_ERROR="PARSE_ERROR";const Ea="tracingPolicy";function ma(e){var t;const n=ui.create();var r;return qi&&(e.tlsOptions&&n.addPolicy((r=e.tlsOptions,{name:ia,sendRequest:async(e,t)=>(e.tlsSettings||(e.tlsSettings=r),t(e))})),n.addPolicy(ra(e.proxyOptions)),n.addPolicy({name:Os,sendRequest:async(e,t)=>("HEAD"!==e.method&&e.headers.set("Accept-Encoding","gzip,deflate"),t(e))})),n.addPolicy({name:Ys,async sendRequest(e,t){if(qi&&"undefined"!=typeof FormData&&e.body instanceof FormData&&(e.formData=function(e){var t;const n={};for(const[r,o]of e.entries())null!==(t=n[r])&&void 0!==t||(n[r]=[]),n[r].push(o);return n}(e.body),e.body=void 0),e.formData){const t=e.headers.get("Content-Type");t&&-1!==t.indexOf("application/x-www-form-urlencoded")?e.body=function(e){const t=new URLSearchParams;for(const[n,r]of Object.entries(e))if(Array.isArray(r))for(const e of r)t.append(n,e.toString());else t.append(n,r.toString());return t.toString()}(e.formData):await async function(e,t){const n=t.headers.get("Content-Type");if(n&&!n.startsWith("multipart/form-data"))return;t.headers.set("Content-Type",null!=n?n:"multipart/form-data");const r=[];for(const[t,n]of Object.entries(e))for(const e of Array.isArray(n)?n:[n])if("string"==typeof e)r.push({headers:Vs({"Content-Disposition":`form-data; name="${t}"`}),body:Xi(e,"utf-8")});else{if(null==e||"object"!=typeof e)throw new Error(`Unexpected value for key ${t}: ${e}. Value should be serialized to string first.`);{const n=e.name||"blob",o=Vs();o.set("Content-Disposition",`form-data; name="${t}"; filename="${n}"`),o.set("Content-Type",e.type||"application/octet-stream"),r.push({headers:o,body:e})}}t.multipartBody={parts:r}}(e.formData,e),e.formData=void 0}return t(e)}},{beforePolicies:[vs]}),n.addPolicy(function(e={}){const t=us(e.userAgentPrefix);return{name:ls,sendRequest:async(e,n)=>(e.headers.has(cs)||e.headers.set(cs,t),n(e))}}(e.userAgentOptions)),n.addPolicy(function(e="x-ms-client-request-id"){return{name:oa,sendRequest:async(t,n)=>(t.headers.has(e)||t.headers.set(e,t.requestId),n(t))}}(null===(t=e.telemetryOptions)||void 0===t?void 0:t.clientRequestIdHeaderName)),n.addPolicy(ws(),{afterPhase:"Deserialize"}),n.addPolicy(function(e={}){var t;return{name:ks,sendRequest:Us([{name:"throttlingRetryStrategy",retry({response:e}){const t=Ls(e);return Number.isFinite(t)?{retryAfterInMs:t}:{skipStrategy:!0}}},Bs(e)],{maxRetries:null!==(t=e.maxRetries)&&void 0!==t?t:as}).sendRequest}}(e.retryOptions),{phase:"Retry"}),n.addPolicy(function(e={}){const t=us(e.userAgentPrefix),n=function(){try{return ha({namespace:"",packageName:"@azure/core-rest-pipeline",packageVersion:ss})}catch(e){return void Bi.warning(`Error when creating the TracingClient: ${ji(e)}`)}}();return{name:Ea,async sendRequest(e,r){var o,i;if(!n||!(null===(o=e.tracingOptions)||void 0===o?void 0:o.tracingContext))return r(e);const{span:s,tracingContext:a}=null!==(i=function(e,t,n){try{const{span:r,updatedOptions:o}=e.startSpan(`HTTP ${t.method}`,{tracingOptions:t.tracingOptions},{spanKind:"client",spanAttributes:{"http.method":t.method,"http.url":t.url,requestId:t.requestId}});if(!r.isRecording())return void r.end();n&&r.setAttribute("http.user_agent",n);const i=e.createRequestHeaders(o.tracingOptions.tracingContext);for(const[e,n]of Object.entries(i))t.headers.set(e,n);return{span:r,tracingContext:o.tracingOptions.tracingContext}}catch(e){return void Bi.warning(`Skipping creating a tracing span due to an error: ${ji(e)}`)}}(n,e,t))&&void 0!==i?i:{};if(!s||!a)return r(e);try{const t=await n.withContext(a,r,e);return function(e,t){try{e.setAttribute("http.status_code",t.status);const n=t.headers.get("x-ms-request-id");n&&e.setAttribute("serviceRequestId",n),e.setStatus({status:"success"}),e.end()}catch(e){Bi.warning(`Skipping tracing span processing due to an error: ${ji(e)}`)}}(s,t),t}catch(e){throw function(e,t){try{e.setStatus({status:"error",error:ki(t)?t:void 0}),((n=t)instanceof da||ki(n)&&"RestError"===n.name)&&t.statusCode&&e.setAttribute("http.status_code",t.statusCode),e.end()}catch(n){Bi.warning(`Skipping tracing span processing due to an error: ${ji(n)}`)}var n}(s,e),e}}}}(e.userAgentOptions),{afterPhase:"Retry"}),qi&&n.addPolicy(os(e.redirectOptions),{afterPhase:"Retry"}),n.addPolicy(function(e={}){var t;const n=null!==(t=e.logger)&&void 0!==t?t:Bi.info,r=new es({additionalAllowedHeaderNames:e.additionalAllowedHeaderNames,additionalAllowedQueryParameters:e.additionalAllowedQueryParameters});return{name:ts,async sendRequest(e,t){if(!n.enabled)return t(e);n(`Request: ${r.sanitize(e)}`);const o=await t(e);return n(`Response status code: ${o.status}`),n(`Headers: ${r.sanitize(o.headers)}`),o}}}(e.loggingOptions),{afterPhase:"Sign"}),n}const _a=require("node:http"),ga=require("node:https"),ya=require("node:zlib"),Aa={};function va(e){return e&&"function"==typeof e.pipe}function ba(e){return new Promise((t=>{e.on("close",t),e.on("end",t),e.on("error",t)}))}function Ta(e){return e&&"number"==typeof e.byteLength}class wa extends ds.Transform{_transform(e,t,n){this.push(e),this.loadedBytes+=e.length;try{this.progressCallback({loadedBytes:this.loadedBytes}),n()}catch(e){n(e)}}constructor(e){super(),this.loadedBytes=0,this.progressCallback=e}}class Oa{constructor(){this.cachedHttpsAgents=new WeakMap}async sendRequest(e){var t,n,r;const o=new AbortController;let i;if(e.abortSignal){if(e.abortSignal.aborted)throw new Rs("The operation was aborted.");i=e=>{"abort"===e.type&&o.abort()},e.abortSignal.addEventListener("abort",i)}e.timeout>0&&setTimeout((()=>{o.abort()}),e.timeout);const s=e.headers.get("Accept-Encoding"),a=(null==s?void 0:s.includes("gzip"))||(null==s?void 0:s.includes("deflate"));let u,c="function"==typeof e.body?e.body():e.body;if(c&&!e.headers.has("Content-Length")){const t=function(e){return e?Buffer.isBuffer(e)?e.length:va(e)?null:Ta(e)?e.byteLength:"string"==typeof e?Buffer.from(e).length:null:0}(c);null!==t&&e.headers.set("Content-Length",t)}try{if(c&&e.onUploadProgress){const t=e.onUploadProgress,n=new wa(t);n.on("error",(e=>{Bi.error("Error in upload progress",e)})),va(c)?c.pipe(n):n.end(c),c=n}const i=await this.makeRequest(e,o,c),s=function(e){const t=Vs();for(const n of Object.keys(e.headers)){const r=e.headers[n];Array.isArray(r)?r.length>0&&t.set(n,r[0]):r&&t.set(n,r)}return t}(i),h={status:null!==(t=i.statusCode)&&void 0!==t?t:0,headers:s,request:e};if("HEAD"===e.method)return i.resume(),h;u=a?function(e,t){const n=t.get("Content-Encoding");if("gzip"===n){const t=ya.createGunzip();return e.pipe(t),t}if("deflate"===n){const t=ya.createInflate();return e.pipe(t),t}return e}(i,s):i;const f=e.onDownloadProgress;if(f){const e=new wa(f);e.on("error",(e=>{Bi.error("Error in download progress",e)})),u.pipe(e),u=e}return(null===(n=e.streamResponseStatusCodes)||void 0===n?void 0:n.has(Number.POSITIVE_INFINITY))||(null===(r=e.streamResponseStatusCodes)||void 0===r?void 0:r.has(h.status))?h.readableStreamBody=u:h.bodyAsText=await(l=u,new Promise(((e,t)=>{const n=[];l.on("data",(e=>{Buffer.isBuffer(e)?n.push(e):n.push(Buffer.from(e))})),l.on("end",(()=>{e(Buffer.concat(n).toString("utf8"))})),l.on("error",(e=>{e&&"AbortError"===(null==e?void 0:e.name)?t(e):t(new da(`Error reading response as text: ${e.message}`,{code:da.PARSE_ERROR}))}))}))),h}finally{if(e.abortSignal&&i){let t=Promise.resolve();va(c)&&(t=ba(c));let n=Promise.resolve();va(u)&&(n=ba(u)),Promise.all([t,n]).then((()=>{var t;i&&(null===(t=e.abortSignal)||void 0===t||t.removeEventListener("abort",i))})).catch((e=>{Bi.warning("Error when cleaning up abortListener on httpRequest",e)}))}}var l}makeRequest(e,t,n){var r;const o=new URL(e.url),i="https:"!==o.protocol;if(i&&!e.allowInsecureConnection)throw new Error(`Cannot connect to ${e.url} while allowInsecureConnection is false.`);const s={agent:null!==(r=e.agent)&&void 0!==r?r:this.getOrCreateAgent(e,i),hostname:o.hostname,path:`${o.pathname}${o.search}`,port:o.port,method:e.method,headers:e.headers.toJSON({preserveCase:!0})};return new Promise(((r,o)=>{const a=i?_a.request(s,r):ga.request(s,r);a.once("error",(t=>{var n;o(new da(t.message,{code:null!==(n=t.code)&&void 0!==n?n:da.REQUEST_SEND_ERROR,request:e}))})),t.signal.addEventListener("abort",(()=>{const e=new Rs("The operation was aborted.");a.destroy(e),o(e)})),n&&va(n)?n.pipe(a):n?"string"==typeof n||Buffer.isBuffer(n)?a.end(n):Ta(n)?a.end(ArrayBuffer.isView(n)?Buffer.from(n.buffer):Buffer.from(n)):(Bi.error("Unrecognized body type",n),o(new da("Unrecognized body type"))):a.end()}))}getOrCreateAgent(e,t){var n;const r=e.disableKeepAlive;if(t)return r?_a.globalAgent:(this.cachedHttpAgent||(this.cachedHttpAgent=new _a.Agent({keepAlive:!0})),this.cachedHttpAgent);{if(r&&!e.tlsSettings)return ga.globalAgent;const t=null!==(n=e.tlsSettings)&&void 0!==n?n:Aa;let o=this.cachedHttpsAgents.get(t);return o&&o.options.keepAlive===!r||(Bi.info("No cached TLS Agent exist, creating a new Agent"),o=new ga.Agent(Object.assign({keepAlive:!r},t)),this.cachedHttpsAgents.set(t,o)),o}}}class Ra{constructor(e){var t,n,r,o,i,s,a;this.url=e.url,this.body=e.body,this.headers=null!==(t=e.headers)&&void 0!==t?t:Vs(),this.method=null!==(n=e.method)&&void 0!==n?n:"GET",this.timeout=null!==(r=e.timeout)&&void 0!==r?r:0,this.multipartBody=e.multipartBody,this.formData=e.formData,this.disableKeepAlive=null!==(o=e.disableKeepAlive)&&void 0!==o&&o,this.proxySettings=e.proxySettings,this.streamResponseStatusCodes=e.streamResponseStatusCodes,this.withCredentials=null!==(i=e.withCredentials)&&void 0!==i&&i,this.abortSignal=e.abortSignal,this.tracingOptions=e.tracingOptions,this.onUploadProgress=e.onUploadProgress,this.onDownloadProgress=e.onDownloadProgress,this.requestId=e.requestId||Yi(),this.allowInsecureConnection=null!==(s=e.allowInsecureConnection)&&void 0!==s&&s,this.enableBrowserStreams=null!==(a=e.enableBrowserStreams)&&void 0!==a&&a}}function Sa(e){return new Ra(e)}const Ia={forcedRefreshWindowInMs:1e3,retryIntervalInMs:3e3,refreshWindowInMs:12e4};async function Na(e){const{scopes:t,getAccessToken:n,request:r}=e,o={abortSignal:r.abortSignal,tracingOptions:r.tracingOptions},i=await n(t,o);i&&e.request.headers.set("Authorization",`Bearer ${i.token}`)}const Ca="$",Da="_",La=n(54430).w;function Ma(e,t,n){let r=t.parameterPath;const o=t.mapper;let i;if("string"==typeof r&&(r=[r]),Array.isArray(r)){if(r.length>0)if(o.isConstant)i=o.defaultValue;else{let t=xa(e,r);!t.propertyFound&&n&&(t=xa(n,r));let s=!1;t.propertyFound||(s=o.required||"options"===r[0]&&2===r.length),i=s?o.defaultValue:t.propertyValue}}else{o.required&&(i={});for(const t in r){const s=o.type.modelProperties[t],a=Ma(e,{parameterPath:r[t],mapper:s},n);void 0!==a&&(i||(i={}),i[t]=a)}}return i}function xa(e,t){const n={propertyFound:!1};let r=0;for(;re.getToken(t,a)),i.retryIntervalInMs,null!==(u=null==o?void 0:o.expiresOnTimestamp)&&void 0!==u?u:Date.now()).then((e=>(r=null,o=e,n=a.tenantId,o))).catch((e=>{throw r=null,o=null,n=void 0,e}))),r}return async(e,t)=>n!==t.tenantId||Boolean(t.claims)||s.mustRefresh?a(e,t):(s.shouldRefresh&&a(e,t),o)}(n):()=>Promise.resolve(null);return{name:"bearerTokenAuthenticationPolicy",async sendRequest(e,t){if(!e.url.toLowerCase().startsWith("https://"))throw new Error("Bearer token authentication is not permitted for non-TLS protected (non-https) URLs.");let n,o;await s.authorizeRequest({scopes:Array.isArray(r)?r:[r],request:e,getAccessToken:a,logger:i});try{n=await t(e)}catch(e){o=e,n=e.response}if(s.authorizeRequestOnChallenge&&401===(null==n?void 0:n.status)&&function(e){const t=e.headers.get("WWW-Authenticate");if(401===e.status&&t)return t}(n)&&await s.authorizeRequestOnChallenge({scopes:Array.isArray(r)?r:[r],request:e,response:n,getAccessToken:a,logger:i}))return t(e);if(o)throw o;return n}}}({credential:e.credentialOptions.credential,scopes:e.credentialOptions.credentialScopes})),t.addPolicy(function(e={}){const t=e.stringifyXML;return{name:Ga,async sendRequest(e,n){const r=Pa(e),o=null==r?void 0:r.operationSpec,i=null==r?void 0:r.operationArguments;return o&&i&&(function(e,t,n){var r,o;if(n.headerParameters)for(const r of n.headerParameters){let o=Ma(t,r);if(null!=o||r.mapper.required){o=n.serializer.serialize(r.mapper,o,ja(r));const t=r.mapper.headerCollectionPrefix;if(t)for(const n of Object.keys(o))e.headers.set(t+n,o[n]);else e.headers.set(r.mapper.serializedName||ja(r),o)}}const i=null===(o=null===(r=t.options)||void 0===r?void 0:r.requestOptions)||void 0===o?void 0:o.customHeaders;if(i)for(const t of Object.keys(i))e.headers.set(t,i[t])}(e,i,o),function(e,t,n,r=function(){throw new Error("XML serialization unsupported!")}){var o,i,s,a,u;const c=null===(o=t.options)||void 0===o?void 0:o.serializerOptions,l={xml:{rootName:null!==(i=null==c?void 0:c.xml.rootName)&&void 0!==i?i:"",includeRoot:null!==(s=null==c?void 0:c.xml.includeRoot)&&void 0!==s&&s,xmlCharKey:null!==(a=null==c?void 0:c.xml.xmlCharKey)&&void 0!==a?a:Da}},h=l.xml.xmlCharKey;if(n.requestBody&&n.requestBody.mapper){e.body=Ma(t,n.requestBody);const o=n.requestBody.mapper,{required:i,serializedName:s,xmlName:a,xmlElementName:c,xmlNamespace:f,xmlNamespacePrefix:p,nullable:d}=o,E=o.type.name;try{if(void 0!==e.body&&null!==e.body||d&&null===e.body||i){const t=ja(n.requestBody);e.body=n.serializer.serialize(o,e.body,t,l);const i=E===si.Stream;if(n.isXML){const t=p?`xmlns:${p}`:"xmlns",n=function(e,t,n,r,o){if(e&&!["Composite","Sequence","Dictionary"].includes(n)){const n={};return n[o.xml.xmlCharKey]=r,n[Ca]={[t]:e},n}return r}(f,t,E,e.body,l);E===si.Sequence?e.body=r(function(e,t,n,r){if(Array.isArray(e)||(e=[e]),!n||!r)return{[t]:e};const o={[t]:e};return o[Ca]={[n]:r},o}(n,c||a||s,t,f),{rootName:a||s,xmlCharKey:h}):i||(e.body=r(n,{rootName:a||s,xmlCharKey:h}))}else{if(E===si.String&&((null===(u=n.contentType)||void 0===u?void 0:u.match("text/plain"))||"text"===n.mediaType))return;i||(e.body=JSON.stringify(e.body))}}}catch(e){throw new Error(`Error "${e.message}" occurred in serializing the payload - ${JSON.stringify(s,void 0," ")}.`)}}else if(n.formDataParameters&&n.formDataParameters.length>0){e.formData={};for(const r of n.formDataParameters){const o=Ma(t,r);if(null!=o){const t=r.mapper.serializedName||ja(r);e.formData[t]=n.serializer.serialize(r.mapper,o,ja(r),l)}}}}(e,i,o,t)),n(e)}}}(e.serializationOptions),{phase:"Serialize"}),t.addPolicy(function(e={}){var t,n,r,o,i,s,a;const u=null!==(n=null===(t=e.expectedContentTypes)||void 0===t?void 0:t.json)&&void 0!==n?n:Fa,c=null!==(o=null===(r=e.expectedContentTypes)||void 0===r?void 0:r.xml)&&void 0!==o?o:Ua,l=e.parseXML,h=e.serializerOptions,f={xml:{rootName:null!==(i=null==h?void 0:h.xml.rootName)&&void 0!==i?i:"",includeRoot:null!==(s=null==h?void 0:h.xml.includeRoot)&&void 0!==s&&s,xmlCharKey:null!==(a=null==h?void 0:h.xml.xmlCharKey)&&void 0!==a?a:Da}};return{name:ka,async sendRequest(e,t){const n=await t(e);return async function(e,t,n,r,o){const i=await async function(e,t,n,r,o){var i;if(!(null===(i=n.request.streamResponseStatusCodes)||void 0===i?void 0:i.has(n.status))&&n.bodyAsText){const i=n.bodyAsText,s=n.headers.get("Content-Type")||"",a=s?s.split(";").map((e=>e.toLowerCase())):[];try{if(0===a.length||a.some((t=>-1!==e.indexOf(t))))return n.parsedBody=JSON.parse(i),n;if(a.some((e=>-1!==t.indexOf(e)))){if(!o)throw new Error("Parsing XML not supported.");const e=await o(i,r.xml);return n.parsedBody=e,n}}catch(e){const t=`Error "${e}" occurred while parsing the response body - ${n.bodyAsText}.`,r=e.code||da.PARSE_ERROR;throw new da(t,{code:r,statusCode:n.status,request:n.request,response:n})}}return n}(e,t,n,r,o);if(!function(e){const t=Pa(e.request),n=null==t?void 0:t.shouldDeserialize;let r;return r=void 0===n||("boolean"==typeof n?n:n(e)),r}(i))return i;const s=Pa(i.request),a=null==s?void 0:s.operationSpec;if(!a||!a.responses)return i;const u=function(e){let t;const n=Pa(e.request),r=null==n?void 0:n.operationSpec;return r&&(t=(null==n?void 0:n.operationResponseGetter)?null==n?void 0:n.operationResponseGetter(r,e):r.responses[e.status]),t}(i),{error:c,shouldReturnResponse:l}=function(e,t,n,r){var o;const i=200<=e.status&&e.status<300,s=function(e){const t=Object.keys(e.responses);return 0===t.length||1===t.length&&"default"===t[0]}(t)?i:!!n;if(s){if(!n)return{error:null,shouldReturnResponse:!1};if(!n.isError)return{error:null,shouldReturnResponse:!1}}const a=null!=n?n:t.responses.default,u=(null===(o=e.request.streamResponseStatusCodes)||void 0===o?void 0:o.has(e.status))?`Unexpected status code: ${e.status}`:e.bodyAsText,c=new da(u,{statusCode:e.status,request:e.request,response:e});if(!a)throw c;const l=a.bodyMapper,h=a.headersMapper;try{if(e.parsedBody){const n=e.parsedBody;let o;if(l){let e=n;if(t.isXML&&l.type.name===si.Sequence){e=[];const t=l.xmlElementName;"object"==typeof n&&t&&(e=n[t])}o=t.serializer.deserialize(l,e,"error.response.parsedBody",r)}const i=n.error||o||n;c.code=i.code,i.message&&(c.message=i.message),l&&(c.response.parsedBody=o)}e.headers&&h&&(c.response.parsedHeaders=t.serializer.deserialize(h,e.headers.toJSON(),"operationRes.parsedHeaders"))}catch(t){c.message=`Error "${t.message}" occurred in deserializing the responseBody - "${e.bodyAsText}" for the default response.`}return{error:c,shouldReturnResponse:!1}}(i,a,u,r);if(c)throw c;if(l)return i;if(u){if(u.bodyMapper){let e=i.parsedBody;a.isXML&&u.bodyMapper.type.name===si.Sequence&&(e="object"==typeof e?e[u.bodyMapper.xmlElementName]:[]);try{i.parsedBody=a.serializer.deserialize(u.bodyMapper,e,"operationRes.parsedBody",r)}catch(e){throw new da(`Error ${e} occurred in deserializing the responseBody - ${i.bodyAsText}`,{statusCode:i.status,request:i.request,response:i})}}else"HEAD"===a.httpMethod&&(i.parsedBody=n.status>=200&&n.status<300);u.headersMapper&&(i.parsedHeaders=a.serializer.deserialize(u.headersMapper,i.headers.toJSON(),"operationRes.parsedHeaders",{xml:{},ignoreUnknownProperties:!0}))}return i}(u,c,n,f,l)}}}(e.deserializationOptions),{phase:"Deserialize"}),t}function Ya(e,t){var n,r;const o=e.parsedHeaders;if("HEAD"===e.request.method)return Object.assign(Object.assign({},o),{body:e.parsedBody});const i=t&&t.bodyMapper,s=Boolean(null==i?void 0:i.nullable),a=null==i?void 0:i.type.name;if("Stream"===a)return Object.assign(Object.assign({},o),{blobBody:e.blobBody,readableStreamBody:e.readableStreamBody});const u="Composite"===a&&i.type.modelProperties||{},c=Object.keys(u).some((e=>""===u[e].serializedName));if("Sequence"===a||c){const t=null!==(n=e.parsedBody)&&void 0!==n?n:[];for(const n of Object.keys(u))u[n].serializedName&&(t[n]=null===(r=e.parsedBody)||void 0===r?void 0:r[n]);if(o)for(const e of Object.keys(o))t[e]=o[e];return!s||e.parsedBody||o||0!==Object.getOwnPropertyNames(u).length?t:null}return function(e){const t=Object.assign(Object.assign({},e.headers),e.body);return e.hasNullableType&&0===Object.getOwnPropertyNames(t).length?e.shouldWrapBody?{body:null}:null:e.shouldWrapBody?Object.assign(Object.assign({},e.headers),{body:e.body}):t}({body:e.parsedBody,headers:o,hasNullableType:s,shouldWrapBody:(l=e.parsedBody,h=a,"Composite"!==h&&"Dictionary"!==h&&("string"==typeof l||"number"==typeof l||"boolean"==typeof l||null!==(null==h?void 0:h.match(/^(Date|DateTime|DateTimeRfc1123|UnixTime|ByteArray|Base64Url)$/i))||null==l))});var l,h}let Ha;const Qa={CSV:",",SSV:" ",Multi:"Multi",TSV:"\t",Pipes:"|"};function Wa(e,t,n,r){const o=function(e,t,n){var r;const o=new Map;if(null===(r=e.urlParameters)||void 0===r?void 0:r.length)for(const r of e.urlParameters){let i=Ma(t,r,n);const s=ja(r);i=e.serializer.serialize(r.mapper,i,s),r.skipEncoding||(i=encodeURIComponent(i)),o.set(`{${r.mapper.serializedName||s}}`,i)}return o}(t,n,r);let i=!1,s=za(e,o);if(t.path){let e=za(t.path,o);"/{nextLink}"===t.path&&e.startsWith("/")&&(e=e.substring(1)),e.includes("://")?(s=e,i=!0):s=function(e,t){if(!t)return e;const n=new URL(e);let r=n.pathname;r.endsWith("/")||(r=`${r}/`),t.startsWith("/")&&(t=t.substring(1));const o=t.indexOf("?");if(-1!==o){const e=t.substring(0,o),i=t.substring(o+1);r+=e,i&&(n.search=n.search?`${n.search}&${i}`:i)}else r+=t;return n.pathname=r,n.toString()}(s,e)}const{queryParams:a,sequenceParams:u}=function(e,t,n){var r;const o=new Map,i=new Set;if(null===(r=e.queryParameters)||void 0===r?void 0:r.length)for(const r of e.queryParameters){"Sequence"===r.mapper.type.name&&r.mapper.serializedName&&i.add(r.mapper.serializedName);let s=Ma(t,r,n);if(null!=s||r.mapper.required){s=e.serializer.serialize(r.mapper,s,ja(r));const t=r.collectionFormat?Qa[r.collectionFormat]:"";if(Array.isArray(s)&&(s=s.map((e=>null==e?"":e))),"Multi"===r.collectionFormat&&0===s.length)continue;!Array.isArray(s)||"SSV"!==r.collectionFormat&&"TSV"!==r.collectionFormat||(s=s.join(t)),r.skipEncoding||(s=Array.isArray(s)?s.map((e=>encodeURIComponent(e))):encodeURIComponent(s)),!Array.isArray(s)||"CSV"!==r.collectionFormat&&"Pipes"!==r.collectionFormat||(s=s.join(t)),o.set(r.mapper.serializedName||ja(r),s)}}return{queryParams:o,sequenceParams:i}}(t,n,r);return s=function(e,t,n,r=!1){if(0===t.size)return e;const o=new URL(e),i=function(e){const t=new Map;if(!e||"?"!==e[0])return t;const n=(e=e.slice(1)).split("&");for(const e of n){const[n,r]=e.split("=",2),o=t.get(n);o?Array.isArray(o)?o.push(r):t.set(n,[o,r]):t.set(n,r)}return t}(o.search);for(const[e,o]of t){const t=i.get(e);if(Array.isArray(t))if(Array.isArray(o)){t.push(...o);const n=new Set(t);i.set(e,Array.from(n))}else t.push(o);else t?(Array.isArray(o)?o.unshift(t):n.has(e)&&i.set(e,[t,o]),r||i.set(e,o)):i.set(e,o)}const s=[];for(const[e,t]of i)if("string"==typeof t)s.push(`${e}=${t}`);else if(Array.isArray(t))for(const n of t)s.push(`${e}=${n}`);else s.push(`${e}=${t}`);return o.search=s.length?`?${s.join("&")}`:"",o.toString()}(s,a,u,i),s}function za(e,t){let n=e;for(const[e,r]of t)n=n.split(e).join(r);return n}const qa=Ci("core-client");class Ka{constructor(e={}){var t,n;if(this._requestContentType=e.requestContentType,this._endpoint=null!==(t=e.endpoint)&&void 0!==t?t:e.baseUri,e.baseUri&&qa.warning("The baseUri option for SDK Clients has been deprecated, please use endpoint instead."),this._allowInsecureConnection=e.allowInsecureConnection,this._httpClient=e.httpClient||(Ha||(Ha=new Oa),Ha),this.pipeline=e.pipeline||function(e){const t=function(e){if(e.credentialScopes)return e.credentialScopes;if(e.endpoint)return`${e.endpoint}/.default`;if(e.baseUri)return`${e.baseUri}/.default`;if(e.credential&&!e.credentialScopes)throw new Error("When using credentials, the ServiceClientOptions must contain either a endpoint or a credentialScopes. Unable to create a bearerTokenAuthenticationPolicy")}(e),n=e.credential&&t?{credentialScopes:t,credential:e.credential}:void 0;return Va(Object.assign(Object.assign({},e),{credentialOptions:n}))}(e),null===(n=e.additionalPolicies)||void 0===n?void 0:n.length)for(const{policy:t,position:n}of e.additionalPolicies){const e="perRetry"===n?"Sign":void 0;this.pipeline.addPolicy(t,{afterPhase:e})}}async sendRequest(e){return this.pipeline.sendRequest(this._httpClient,e)}async sendOperationRequest(e,t){const n=t.baseUrl||this._endpoint;if(!n)throw new Error("If operationSpec.baseUrl is not specified, then the ServiceClient must have a endpoint string property that contains the base URL to use.");const r=Sa({url:Wa(n,t,e,this)});r.method=t.httpMethod;const o=Pa(r);o.operationSpec=t,o.operationArguments=e;const i=t.contentType||this._requestContentType;i&&t.requestBody&&r.headers.set("Content-Type",i);const s=e.options;if(s){const e=s.requestOptions;e&&(e.timeout&&(r.timeout=e.timeout),e.onUploadProgress&&(r.onUploadProgress=e.onUploadProgress),e.onDownloadProgress&&(r.onDownloadProgress=e.onDownloadProgress),void 0!==e.shouldDeserialize&&(o.shouldDeserialize=e.shouldDeserialize),e.allowInsecureConnection&&(r.allowInsecureConnection=!0)),s.abortSignal&&(r.abortSignal=s.abortSignal),s.tracingOptions&&(r.tracingOptions=s.tracingOptions)}this._allowInsecureConnection&&(r.allowInsecureConnection=!0),void 0===r.streamResponseStatusCodes&&(r.streamResponseStatusCodes=function(e){const t=new Set;for(const n in e.responses){const r=e.responses[n];r.bodyMapper&&r.bodyMapper.type.name===si.Stream&&t.add(Number(n))}return t}(t));try{const e=await this.sendRequest(r),n=Ya(e,t.responses[e.status]);return(null==s?void 0:s.onResponse)&&s.onResponse(e,n),n}catch(e){if("object"==typeof e&&(null==e?void 0:e.response)){const n=e.response,r=Ya(n,t.responses[e.statusCode]||t.responses.default);e.details=r,(null==s?void 0:s.onResponse)&&s.onResponse(n,r,e)}throw e}}}const Xa=new WeakMap,Ja=new WeakMap;class $a{constructor(){this.onabort=null,Xa.set(this,[]),Ja.set(this,!1)}get aborted(){if(!Ja.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");return Ja.get(this)}static get none(){return new $a}addEventListener(e,t){if(!Xa.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");Xa.get(this).push(t)}removeEventListener(e,t){if(!Xa.has(this))throw new TypeError("Expected `this` to be an instance of AbortSignal.");const n=Xa.get(this),r=n.indexOf(t);r>-1&&n.splice(r,1)}dispatchEvent(e){throw new Error("This is a stub dispatchEvent implementation that should not be used. It only exists for type-checking purposes.")}}function Za(e){if(e.aborted)return;e.onabort&&e.onabort.call(e);const t=Xa.get(e);t&&t.slice().forEach((t=>{t.call(e,{type:"abort"})})),Ja.set(e,!0)}class eu extends Error{constructor(e){super(e),this.name="AbortError"}}class tu{constructor(e){if(this._signal=new $a,e){Array.isArray(e)||(e=arguments);for(const t of e)t.aborted?this.abort():t.addEventListener("abort",(()=>{this.abort()}))}}get signal(){return this._signal}abort(){Za(this._signal)}static timeout(e){const t=new $a,n=setTimeout(Za,e,t);return"function"==typeof n.unref&&n.unref(),t}}const nu="CredentialUnavailableError";class ru extends Error{constructor(e){super(e),this.name=nu}}const ou="AuthenticationError";class iu extends Error{constructor(e,t){let n={error:"unknown",errorDescription:"An unknown error occurred and no additional details are available."};if(function(e){return e&&"string"==typeof e.error&&"string"==typeof e.error_description}(t))n=uu(t);else if("string"==typeof t)try{n=uu(JSON.parse(t))}catch(r){n=400===e?{error:"authority_not_found",errorDescription:"The specified authority URL was not found."}:{error:"unknown_error",errorDescription:`An unknown error has occurred. Response body:\n\n${t}`}}else n={error:"unknown_error",errorDescription:"An unknown error occurred and no additional details are available."};super(`${n.error} Status code: ${e}\nMore details:\n${n.errorDescription}`),this.statusCode=e,this.errorResponse=n,this.name=ou}}const su="AggregateAuthenticationError";class au extends Error{constructor(e,t){super(`${t}\n${e.join("\n")}`),this.errors=e,this.name=su}}function uu(e){return{error:e.error,errorDescription:e.error_description,correlationId:e.correlation_id,errorCodes:e.error_codes,timestamp:e.timestamp,traceId:e.trace_id}}class cu extends Error{constructor(e){super(e.message),this.scopes=e.scopes,this.getTokenOptions=e.getTokenOptions,this.name="AuthenticationRequiredError"}}const lu="2.1.0",hu="04b07795-8ddb-461a-bbee-02f9e1bf7b46";var fu;!function(e){e.AzureChina="https://login.chinacloudapi.cn",e.AzureGermany="https://login.microsoftonline.de",e.AzureGovernment="https://login.microsoftonline.us",e.AzurePublicCloud="https://login.microsoftonline.com"}(fu||(fu={}));const pu=fu.AzurePublicCloud,du=ha({namespace:"Microsoft.AAD",packageName:"@azure/identity",packageVersion:lu}),Eu=Ci("identity");function mu(e){return`SUCCESS. Scopes: ${Array.isArray(e)?e.join(", "):e}.`}function _u(e,t){let n="ERROR.";return(null==e?void 0:e.length)&&(n+=` Scopes: ${Array.isArray(e)?e.join(", "):e}.`),`${n} Error message: ${"string"==typeof t?t:t.message}.`}function gu(e,t,n=Eu){const r=t?`${t.fullTitle} ${e}`:e;return{title:e,fullTitle:r,info:function(e){n.info(`${r} =>`,e)},warning:function(e){n.warning(`${r} =>`,e)}}}function yu(e,t=Eu){const n=gu(e,void 0,t);return Object.assign(Object.assign({},n),{parent:t,getToken:gu("=> getToken()",n,t)})}const Au="noCorrelationId";class vu extends Ka{constructor(e){var t,n;const r=`azsdk-js-identity/${lu}`,o=(null===(t=null==e?void 0:e.userAgentOptions)||void 0===t?void 0:t.userAgentPrefix)?`${e.userAgentOptions.userAgentPrefix} ${r}`:`${r}`,i=function(e){let t=null==e?void 0:e.authorityHost;return Ki&&(t=null!=t?t:process.env.AZURE_AUTHORITY_HOST),null!=t?t:pu}(e);if(!i.startsWith("https:"))throw new Error("The authorityHost address must use the 'https' protocol.");super(Object.assign(Object.assign({requestContentType:"application/json; charset=utf-8",retryOptions:{maxRetries:3}},e),{userAgentOptions:{userAgentPrefix:o},baseUri:i})),this.authorityHost=i,this.abortControllers=new Map,this.allowLoggingAccountIdentifiers=null===(n=null==e?void 0:e.loggingOptions)||void 0===n?void 0:n.allowLoggingAccountIdentifiers}async sendTokenRequest(e,t){Eu.info(`IdentityClient: sending token request to [${e.url}]`);const n=await this.sendRequest(e);if(t=t||(e=>Date.now()+1e3*e.expires_in),!n.bodyAsText||200!==n.status&&201!==n.status){const e=new iu(n.status,n.bodyAsText);throw Eu.warning(`IdentityClient: authentication error. HTTP status: ${n.status}, ${e.errorResponse.errorDescription}`),e}{const r=JSON.parse(n.bodyAsText);if(!r.access_token)return null;this.logIdentifiers(n);const o={accessToken:{token:r.access_token,expiresOnTimestamp:t(r)},refreshToken:r.refresh_token};return Eu.info(`IdentityClient: [${e.url}] token acquired, expires on ${o.accessToken.expiresOnTimestamp}`),o}}async refreshAccessToken(e,t,n,r,o,i,s={}){if(void 0===r)return null;Eu.info(`IdentityClient: refreshing access token with client ID: ${t}, scopes: ${n} started`);const a={grant_type:"refresh_token",client_id:t,refresh_token:r,scope:n};void 0!==o&&(a.client_secret=o);const u=new URLSearchParams(a);return du.withSpan("IdentityClient.refreshAccessToken",s,(async n=>{try{const r=function(e){return"adfs"===e?"oauth2/token":"oauth2/v2.0/token"}(e),o=Sa({url:`${this.authorityHost}/${e}/${r}`,method:"POST",body:u.toString(),abortSignal:s.abortSignal,headers:Vs({Accept:"application/json","Content-Type":"application/x-www-form-urlencoded"}),tracingOptions:n.tracingOptions}),a=await this.sendTokenRequest(o,i);return Eu.info(`IdentityClient: refreshed token for client ID: ${t}`),a}catch(e){if(e.name===ou&&"interaction_required"===e.errorResponse.error)return Eu.info(`IdentityClient: interaction required for client ID: ${t}`),null;throw Eu.warning(`IdentityClient: failed refreshing token for client ID: ${t}: ${e}`),e}}))}generateAbortSignal(e){const t=new tu,n=this.abortControllers.get(e)||[];n.push(t),this.abortControllers.set(e,n);const r=t.signal.onabort;return t.signal.onabort=(...t)=>{this.abortControllers.set(e,void 0),r&&r(...t)},t.signal}abortRequests(e){const t=e||Au,n=[...this.abortControllers.get(t)||[],...this.abortControllers.get(Au)||[]];if(n.length){for(const e of n)e.abort();this.abortControllers.set(t,void 0)}}getCorrelationId(e){var t;const n=null===(t=null==e?void 0:e.body)||void 0===t?void 0:t.split("&").map((e=>e.split("="))).find((([e])=>"client-request-id"===e));return n&&n.length&&n[1]||Au}async sendGetRequestAsync(e,t){const n=Sa({url:e,method:"GET",body:null==t?void 0:t.body,headers:Vs(null==t?void 0:t.headers),abortSignal:this.generateAbortSignal(Au)}),r=await this.sendRequest(n);return this.logIdentifiers(r),{body:r.bodyAsText?JSON.parse(r.bodyAsText):void 0,headers:r.headers.toJSON(),status:r.status}}async sendPostRequestAsync(e,t){const n=Sa({url:e,method:"POST",body:null==t?void 0:t.body,headers:Vs(null==t?void 0:t.headers),abortSignal:this.generateAbortSignal(this.getCorrelationId(t))}),r=await this.sendRequest(n);return this.logIdentifiers(r),{body:r.bodyAsText?JSON.parse(r.bodyAsText):void 0,headers:r.headers.toJSON(),status:r.status}}logIdentifiers(e){if(this.allowLoggingAccountIdentifiers&&e.bodyAsText)try{const t=(e.parsedBody||JSON.parse(e.bodyAsText)).access_token;if(!t)return;const n=t.split(".")[1],{appid:r,upn:o,tid:i,oid:s}=JSON.parse(Buffer.from(n,"base64").toString("utf8"));Eu.info(`[Authenticated account] Client ID: ${r}. Tenant ID: ${i}. User Principal Name: ${o||"No User Principal Name available"}. Object ID (user): ${s}`)}catch(e){Eu.warning("allowLoggingAccountIdentifiers was set, but we couldn't log the account information. Error:",e.message)}}}function bu(e,t){if(!t.match(/^[0-9a-zA-Z-.:/]+$/)){const t=new Error("Invalid tenant id provided. You can locate your tenant id by following the instructions listed here: https://docs.microsoft.com/partner-center/find-ids-and-domain-names.");throw e.info(_u("",t)),t}}function Tu(e,t,n){return t?(bu(e,t),t):(n||(n=hu),n!==hu?"common":"organizations")}var wu=function(e,t){return wu=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},wu(e,t)};function Ou(e,t){function n(){this.constructor=e}wu(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var Ru,Su,Iu,Nu,Cu,Du,Lu,Mu,xu,Bu,Pu,Fu,Uu,ku,ju,Gu,Vu,Yu,Hu,Qu,Wu,zu="";!function(){for(var e=0,t=0,n=arguments.length;t=t.length&&e.lastIndexOf(t)===e.length-t.length},e.queryStringToObject=function(e){var t={},n=e.split("&"),r=function(e){return decodeURIComponent(e.replace(/\+/g," "))};return n.forEach((function(e){if(e.trim()){var n=e.split(/=(.+)/g,2),o=n[0],i=n[1];o&&i&&(t[r(o)]=r(i))}})),t},e.trimArrayEntries=function(e){return e.map((function(e){return e.trim()}))},e.removeEmptyStringsFromArray=function(t){return t.filter((function(t){return!e.isEmpty(t)}))},e.jsonParseHelper=function(e){try{return JSON.parse(e)}catch(e){return null}},e.matchPattern=function(e,t){return new RegExp(e.replace(/\\/g,"\\\\").replace(/\*/g,"[^ ]*").replace(/\?/g,"\\?")).test(t)},e}();!function(e){e[e.Error=0]="Error",e[e.Warning=1]="Warning",e[e.Info=2]="Info",e[e.Verbose=3]="Verbose",e[e.Trace=4]="Trace"}(qu||(qu={})),function(){function e(e,t,n){this.level=qu.Info,this.localCallback=e.loggerCallback||function(){},this.piiLoggingEnabled=e.piiLoggingEnabled||!1,this.level="number"==typeof e.logLevel?e.logLevel:qu.Info,this.correlationId=e.correlationId||zu,this.packageName=t||zu,this.packageVersion=n||zu}e.prototype.clone=function(t,n,r){return new e({loggerCallback:this.localCallback,piiLoggingEnabled:this.piiLoggingEnabled,logLevel:this.level,correlationId:r||this.correlationId},t,n)},e.prototype.logMessage=function(e,t){if(!(t.logLevel>this.level||!this.piiLoggingEnabled&&t.containsPii)){var n=(new Date).toUTCString(),r=(Bl.isEmpty(t.correlationId)?Bl.isEmpty(this.correlationId)?"["+n+"]":"["+n+"] : ["+this.correlationId+"]":"["+n+"] : ["+t.correlationId+"]")+" : "+this.packageName+"@"+this.packageVersion+" : "+qu[t.logLevel]+" - "+e;this.executeCallback(t.logLevel,r,t.containsPii||!1)}},e.prototype.executeCallback=function(e,t,n){this.localCallback&&this.localCallback(e,t,n)},e.prototype.error=function(e,t){this.logMessage(e,{logLevel:qu.Error,containsPii:!1,correlationId:t||zu})},e.prototype.errorPii=function(e,t){this.logMessage(e,{logLevel:qu.Error,containsPii:!0,correlationId:t||zu})},e.prototype.warning=function(e,t){this.logMessage(e,{logLevel:qu.Warning,containsPii:!1,correlationId:t||zu})},e.prototype.warningPii=function(e,t){this.logMessage(e,{logLevel:qu.Warning,containsPii:!0,correlationId:t||zu})},e.prototype.info=function(e,t){this.logMessage(e,{logLevel:qu.Info,containsPii:!1,correlationId:t||zu})},e.prototype.infoPii=function(e,t){this.logMessage(e,{logLevel:qu.Info,containsPii:!0,correlationId:t||zu})},e.prototype.verbose=function(e,t){this.logMessage(e,{logLevel:qu.Verbose,containsPii:!1,correlationId:t||zu})},e.prototype.verbosePii=function(e,t){this.logMessage(e,{logLevel:qu.Verbose,containsPii:!0,correlationId:t||zu})},e.prototype.trace=function(e,t){this.logMessage(e,{logLevel:qu.Trace,containsPii:!1,correlationId:t||zu})},e.prototype.tracePii=function(e,t){this.logMessage(e,{logLevel:qu.Trace,containsPii:!0,correlationId:t||zu})},e.prototype.isPiiLoggingEnabled=function(){return this.piiLoggingEnabled||!1}}();const Pl="1.0";function Fl(e,t){return t||(t=pu),new RegExp(`${e}/?$`).test(t)?t:t.endsWith("/")?t+e:`${t}/${e}`}function Ul(e,t){return"adfs"===e&&t?[t]:[]}const kl=(e,t=(Ki?"Node":"Browser"))=>(n,r,o)=>{if(!o)switch(n){case qu.Error:return void e.info(`MSAL ${t} V2 error: ${r}`);case qu.Info:return void e.info(`MSAL ${t} V2 info message: ${r}`);case qu.Verbose:return void e.info(`MSAL ${t} V2 verbose message: ${r}`);case qu.Warning:return void e.info(`MSAL ${t} V2 warning: ${r}`)}};class jl{constructor(e){this.logger=e.logger,this.account=e.authenticationRecord}generateUuid(){return Jr()}handleResult(e,t,n,r){return(null==n?void 0:n.account)&&(this.account=Vl(t,n.account)),function(e,t,n,r){const o=n=>(t.getToken.info(n),new cu({scopes:Array.isArray(e)?e:[e],getTokenOptions:r,message:n}));if(!n)throw o("No response");if(!n.expiresOn)throw o('Response had no "expiresOn" property.');if(!n.accessToken)throw o('Response had no "accessToken" property.')}(e,this.logger,n,r),this.logger.getToken.info(mu(e)),{token:n.accessToken,expiresOnTimestamp:n.expiresOn.getTime()}}handleError(e,t,n){if("AuthError"===t.name||"ClientAuthError"===t.name||"BrowserAuthError"===t.name){const n=t;switch(n.errorCode){case"endpoints_resolution_error":return this.logger.info(_u(e,t.message)),new ru(t.message);case"device_code_polling_cancelled":return new eu("The authentication has been aborted by the caller.");case"consent_required":case"interaction_required":case"login_required":this.logger.info(_u(e,`Authentication returned errorCode ${n.errorCode}`));break;default:this.logger.info(_u(e,`Failed to acquire token: ${t.message}`))}}return"ClientConfigurationError"===t.name||"BrowserConfigurationAuthError"===t.name||"AbortError"===t.name?t:new cu({scopes:e,getTokenOptions:n,message:t.message})}}function Gl(e){const[t]=e.authority.match(/([a-z]*\.[a-z]*\.[a-z]*)/)||[];return Object.assign(Object.assign({},e),{localAccountId:e.homeAccountId,environment:t})}function Vl(e,t){return{authority:Fl(t.tenantId,t.environment),homeAccountId:t.homeAccountId,tenantId:t.tenantId||"common",username:t.username,clientId:e,version:Pl}}function Yl(e){return JSON.stringify(e)}function Hl(e){const t=JSON.parse(e);if(t.version&&t.version!==Pl)throw Error("Unsupported AuthenticationRecord version");return t}function Ql(e,t){if(!(null==t?void 0:t.tenantId))return e;if(process.env.AZURE_IDENTITY_DISABLE_MULTITENANTAUTH)throw new Error("A getToken request was attempted with a tenant different than the tenant configured at the initialization of the credential, but multi-tenant authentication has been disabled by the environment variable AZURE_IDENTITY_DISABLE_MULTITENANTAUTH.");if("adfs"===e)throw new Error("A new tenant Id can't be assigned through the GetTokenOptions when a credential has been originally configured to use the tenant `adfs`.");return null==t?void 0:t.tenantId}var Wl;let zl;!function(e){e.AutoDiscoverRegion="AutoDiscoverRegion",e.USWest="westus",e.USWest2="westus2",e.USCentral="centralus",e.USEast="eastus",e.USEast2="eastus2",e.USNorthCentral="northcentralus",e.USSouthCentral="southcentralus",e.USWestCentral="westcentralus",e.CanadaCentral="canadacentral",e.CanadaEast="canadaeast",e.BrazilSouth="brazilsouth",e.EuropeNorth="northeurope",e.EuropeWest="westeurope",e.UKSouth="uksouth",e.UKWest="ukwest",e.FranceCentral="francecentral",e.FranceSouth="francesouth",e.SwitzerlandNorth="switzerlandnorth",e.SwitzerlandWest="switzerlandwest",e.GermanyNorth="germanynorth",e.GermanyWestCentral="germanywestcentral",e.NorwayWest="norwaywest",e.NorwayEast="norwayeast",e.AsiaEast="eastasia",e.AsiaSouthEast="southeastasia",e.JapanEast="japaneast",e.JapanWest="japanwest",e.AustraliaEast="australiaeast",e.AustraliaSouthEast="australiasoutheast",e.AustraliaCentral="australiacentral",e.AustraliaCentral2="australiacentral2",e.IndiaCentral="centralindia",e.IndiaSouth="southindia",e.IndiaWest="westindia",e.KoreaSouth="koreasouth",e.KoreaCentral="koreacentral",e.UAECentral="uaecentral",e.UAENorth="uaenorth",e.SouthAfricaNorth="southafricanorth",e.SouthAfricaWest="southafricawest",e.ChinaNorth="chinanorth",e.ChinaEast="chinaeast",e.ChinaNorth2="chinanorth2",e.ChinaEast2="chinaeast2",e.GermanyCentral="germanycentral",e.GermanyNorthEast="germanynortheast",e.GovernmentUSVirginia="usgovvirginia",e.GovernmentUSIowa="usgoviowa",e.GovernmentUSArizona="usgovarizona",e.GovernmentUSTexas="usgovtexas",e.GovernmentUSDodEast="usdodeast",e.GovernmentUSDodCentral="usdodcentral"}(Wl||(Wl={}));const ql={setPersistence(e){zl=e}};class Kl extends jl{constructor(e){var t,n,r;if(super(e),this.requiresConfidential=!1,this.msalConfig=this.defaultNodeMsalConfig(e),this.tenantId=Tu(e.logger,e.tenantId,e.clientId),this.clientId=this.msalConfig.auth.clientId,(null==e?void 0:e.getAssertion)&&(this.getAssertion=e.getAssertion),void 0!==zl&&(null===(t=e.tokenCachePersistenceOptions)||void 0===t?void 0:t.enabled))this.createCachePlugin=()=>zl(e.tokenCachePersistenceOptions);else if(null===(n=e.tokenCachePersistenceOptions)||void 0===n?void 0:n.enabled)throw new Error(["Persistent token caching was requested, but no persistence provider was configured.","You must install the identity-cache-persistence plugin package (`npm install --save @azure/identity-cache-persistence`)","and enable it by importing `useIdentityPlugin` from `@azure/identity` and calling","`useIdentityPlugin(cachePersistencePlugin)` before using `tokenCachePersistenceOptions`."].join(" "));this.azureRegion=null!==(r=e.regionalAuthority)&&void 0!==r?r:process.env.AZURE_REGIONAL_AUTHORITY_NAME,this.azureRegion===Wl.AutoDiscoverRegion&&(this.azureRegion="AUTO_DISCOVER")}defaultNodeMsalConfig(e){const t=e.clientId||hu,n=Tu(e.logger,e.tenantId,e.clientId);this.authorityHost=e.authorityHost||process.env.AZURE_AUTHORITY_HOST;const r=Fl(n,this.authorityHost);this.identityClient=new vu(Object.assign(Object.assign({},e.tokenCredentialOptions),{authorityHost:r,loggingOptions:e.loggingOptions}));let o=["cp1"];return process.env.AZURE_IDENTITY_DISABLE_CP1&&(o=[]),{auth:{clientId:t,authority:r,knownAuthorities:Ul(n,r),clientCapabilities:o},system:{networkClient:this.identityClient,loggerOptions:{loggerCallback:kl(e.logger)}}}}async init(e){if((null==e?void 0:e.abortSignal)&&e.abortSignal.addEventListener("abort",(()=>{this.identityClient.abortRequests(e.correlationId)})),!this.publicApp&&!this.confidentialApp)if(void 0!==this.createCachePlugin&&(this.msalConfig.cache={cachePlugin:await this.createCachePlugin()}),this.publicApp=new ri(this.msalConfig),this.getAssertion&&(this.msalConfig.auth.clientAssertion=await this.getAssertion()),this.msalConfig.auth.clientSecret||this.msalConfig.auth.clientAssertion||this.msalConfig.auth.clientCertificate)this.confidentialApp=new ii(this.msalConfig);else if(this.requiresConfidential)throw new Error("Unable to generate the MSAL confidential client. Missing either the client's secret, certificate or assertion.")}withCancellation(e,t,n){return new Promise(((r,o)=>{e.then((e=>r(e))).catch(o),t&&t.addEventListener("abort",(()=>{null==n||n()}))}))}async getActiveAccount(){var e,t,n;if(this.account)return this.account;const r=null!==(t=null===(e=this.confidentialApp)||void 0===e?void 0:e.getTokenCache())&&void 0!==t?t:null===(n=this.publicApp)||void 0===n?void 0:n.getTokenCache(),o=await(null==r?void 0:r.getAllAccounts());if(o){if(1===o.length)return this.account=Vl(this.clientId,o[0]),this.account;this.logger.info('More than one account was found authenticated for this Client ID and Tenant ID.\nHowever, no "authenticationRecord" has been provided for this credential,\ntherefore we\'re unable to pick between these accounts.\nA new login attempt will be requested, to ensure the correct account is picked.\nTo work with multiple accounts for the same Client ID and Tenant ID, please provide an "authenticationRecord" when initializing a credential to prevent this from happening.')}}async getTokenSilent(e,t){var n,r;if(await this.getActiveAccount(),!this.account)throw new cu({scopes:e,getTokenOptions:t,message:"Silent authentication failed. We couldn't retrieve an active account from the cache."});const o={account:Gl(this.account),correlationId:null==t?void 0:t.correlationId,scopes:e,authority:null==t?void 0:t.authority,claims:null==t?void 0:t.claims};try{this.logger.info("Attempting to acquire token silently");const t=null!==(r=await(null===(n=this.confidentialApp)||void 0===n?void 0:n.acquireTokenSilent(o)))&&void 0!==r?r:await this.publicApp.acquireTokenSilent(o);return this.handleResult(e,this.clientId,t||void 0)}catch(n){throw this.handleError(e,n,t)}}async getToken(e,t={}){const n=Ql(this.tenantId,t)||this.tenantId;t.authority=Fl(n,this.authorityHost),t.correlationId=(null==t?void 0:t.correlationId)||this.generateUuid(),await this.init(t);try{const n=t.claims;return n&&(this.cachedClaims=n),this.cachedClaims&&!n&&(t.claims=this.cachedClaims),await this.getTokenSilent(e,t)}catch(n){if("AuthenticationRequiredError"!==n.name)throw n;if(null==t?void 0:t.disableAutomaticAuthentication)throw new cu({scopes:e,getTokenOptions:t,message:"Automatic authentication has been disabled. You may call the authentication() method."});return this.logger.info("Silent authentication failed, falling back to interactive method."),this.doGetToken(e,t)}}}var Xl=n(79896),Jl=n.n(Xl),$l=n(70857),Zl=n.n($l),eh=n(16928),th=n.n(eh);const nh=yu("VisualStudioCodeCredential");let rh;const oh={setVsCodeCredentialFinder(e){rh=e}},ih={adfs:"The VisualStudioCodeCredential does not support authentication with ADFS tenants."};function sh(e){const t=ih[e];if(t)throw new ru(t)}const ah={AzureCloud:fu.AzurePublicCloud,AzureChina:fu.AzureChina,AzureGermanCloud:fu.AzureGermany,AzureUSGovernment:fu.AzureGovernment};function uh(e){const t=["User","settings.json"],n=Zl().homedir();function r(...n){const r=th().join(...n,"Code",...t);return JSON.parse(Jl().readFileSync(r,{encoding:"utf8"}))[e]}try{let e;switch(process.platform){case"win32":return e=process.env.APPDATA,e?r(e):void 0;case"darwin":return r(n,"Library","Application Support");case"linux":return r(n,".config");default:return}}catch(e){return void nh.info(`Failed to load the Visual Studio Code configuration file. Error: ${e.message}`)}}class ch{constructor(e){this.cloudName=uh("azure.cloud")||"AzureCloud";const t=ah[this.cloudName];this.identityClient=new vu(Object.assign({authorityHost:t},e)),e&&e.tenantId?(bu(nh,e.tenantId),this.tenantId=e.tenantId):this.tenantId="common",sh(this.tenantId)}async prepare(){const e=uh("azure.tenant");e&&(this.tenantId=e),sh(this.tenantId)}prepareOnce(){return this.preparePromise||(this.preparePromise=this.prepare()),this.preparePromise}async getToken(e,t){var n,r;await this.prepareOnce();const o=Ql(this.tenantId,t)||this.tenantId;if(void 0===rh)throw new ru(["No implementation of `VisualStudioCodeCredential` is available.","You must install the identity-vscode plugin package (`npm install --save-dev @azure/identity-vscode`)","and enable it by importing `useIdentityPlugin` from `@azure/identity` and calling","`useIdentityPlugin(vsCodePlugin)` before creating a `VisualStudioCodeCredential`."].join(" "));let i="string"==typeof e?e:e.join(" ");if(!i.match(/^[0-9a-zA-Z-.:/]+$/)){const t=new Error("Invalid scope was specified by the user or calling client");throw nh.getToken.info(_u(e,t)),t}i.indexOf("offline_access")<0&&(i+=" offline_access");const s=await rh(),{password:a}=null!==(r=null!==(n=s.find((({account:e})=>e===this.cloudName)))&&void 0!==n?n:s[0])&&void 0!==r?r:{};if(a){const t=await this.identityClient.refreshAccessToken(o,"aebc6443-996d-45c2-90f0-388ff96faa56",i,a,void 0);if(t)return nh.getToken.info(mu(e)),t.accessToken;{const t=new ru("Could not retrieve the token associated with Visual Studio Code. Have you connected using the 'Azure Account' extension recently? To troubleshoot, visit https://aka.ms/azsdk/js/identity/vscodecredential/troubleshoot.");throw nh.getToken.info(_u(e,t)),t}}{const t=new ru("Could not retrieve the token associated with Visual Studio Code. Did you connect using the 'Azure Account' extension? To troubleshoot, visit https://aka.ms/azsdk/js/identity/vscodecredential/troubleshoot.");throw nh.getToken.info(_u(e,t)),t}}}const lh={cachePluginControl:ql,vsCodeCredentialControl:oh};function hh(e){e(lh)}const fh=yu("ChainedTokenCredential");class ph{constructor(...e){this.UnavailableMessage="ChainedTokenCredential => failed to retrieve a token from the included credentials",this._sources=[],this._sources=e}async getToken(e,t={}){let n=null,r="";const o=[];return du.withSpan("ChainedTokenCredential.getToken",t,(async t=>{for(let i=0;i0){const t=new au(o,"ChainedTokenCredential authentication failed.");throw fh.getToken.info(_u(e,t)),t}if(fh.getToken.info(`Result for ${r}: ${mu(e)}`),null===n)throw new ru("Failed to retrieve a valid token");return n}))}}var dh=n(35317),Eh=n.n(dh);function mh(e,t){if(!e.match(/^[0-9a-zA-Z-.:/]+$/)){const n=new Error("Invalid scope was specified by the user or calling client");throw t.getToken.info(_u(e,n)),n}}function _h(e){return e.replace(/\/.default$/,"")}const gh={getSafeWorkingDir(){if("win32"===process.platform){if(!process.env.SystemRoot)throw new Error("Azure CLI credential expects a 'SystemRoot' environment variable");return process.env.SystemRoot}return"/bin"},async getAzureCliAccessToken(e,t){let n=[];return t&&(n=["--tenant",t]),new Promise(((t,r)=>{try{Eh().execFile("az",["account","get-access-token","--output","json","--resource",e,...n],{cwd:gh.getSafeWorkingDir(),shell:!0},((e,n,r)=>{t({stdout:n,stderr:r,error:e})}))}catch(e){r(e)}}))}},yh=yu("AzureCliCredential");class Ah{constructor(e){this.tenantId=null==e?void 0:e.tenantId}async getToken(e,t={}){const n=Ql(this.tenantId,t);n&&bu(yh,n);const r="string"==typeof e?e:e[0];yh.getToken.info(`Using the scope ${r}`),mh(r,yh);const o=_h(r);return du.withSpan(`${this.constructor.name}.getToken`,t,(async()=>{var t,r,i,s;try{const a=await gh.getAzureCliAccessToken(o,n),u=null===(t=a.stderr)||void 0===t?void 0:t.match("(.*)az login --scope(.*)"),c=(null===(r=a.stderr)||void 0===r?void 0:r.match("(.*)az login(.*)"))&&!u;if((null===(i=a.stderr)||void 0===i?void 0:i.match("az:(.*)not found"))||(null===(s=a.stderr)||void 0===s?void 0:s.startsWith("'az' is not recognized"))){const t=new ru("Azure CLI could not be found. Please visit https://aka.ms/azure-cli for installation instructions and then, once installed, authenticate to your Azure account using 'az login'.");throw yh.getToken.info(_u(e,t)),t}if(c){const t=new ru("Please run 'az login' from a command prompt to authenticate before using this credential.");throw yh.getToken.info(_u(e,t)),t}try{const t=a.stdout,n=JSON.parse(t);return yh.getToken.info(mu(e)),{token:n.accessToken,expiresOnTimestamp:new Date(n.expiresOn).getTime()}}catch(e){if(a.stderr)throw new ru(a.stderr);throw e}}catch(t){const n="CredentialUnavailableError"===t.name?t:new ru(t.message||"Unknown error while trying to retrieve the access token");throw yh.getToken.info(_u(e,n)),n}}))}}const vh=(e,t,n)=>new Promise(((r,o)=>{dh.execFile(e,t,n,((e,t,n)=>{Buffer.isBuffer(t)&&(t=t.toString("utf8")),Buffer.isBuffer(n)&&(n=n.toString("utf8")),n||e?o(n?new Error(n):e):r(t)}))})),bh=yu("AzurePowerShellCredential"),Th="win32"===process.platform;function wh(e){return Th?`${e}.exe`:e}async function Oh(e){const t=[];for(const n of e){const[e,...r]=n,o=await vh(e,r,{encoding:"utf8"});t.push(o)}return t}const Rh="Please run 'Connect-AzAccount' from PowerShell to authenticate before using this credential.",Sh="The 'Az.Account' module >= 2.2.0 is not installed. Install the Azure Az PowerShell module with: \"Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force\".",Ih="To troubleshoot, visit https://aka.ms/azsdk/js/identity/powershellcredential/troubleshoot.",Nh=[wh("pwsh")];Th&&Nh.push(wh("powershell"));class Ch{constructor(e){this.tenantId=null==e?void 0:e.tenantId}async getAzurePowerShellAccessToken(e,t){for(const n of[...Nh]){try{await Oh([[n,"/?"]])}catch(e){Nh.shift();continue}let r="";t&&(r=`-TenantId "${t}"`);const o=(await Oh([[n,"-Command","Import-Module Az.Accounts -MinimumVersion 2.2.0 -PassThru"],[n,"-Command",`Get-AzAccessToken ${r} -ResourceUrl "${e}" | ConvertTo-Json`]]))[1];try{return JSON.parse(o)}catch(e){throw new Error(`Unable to parse the output of PowerShell. Received output: ${o}`)}}throw new Error("Unable to execute PowerShell. Ensure that it is installed in your system")}async getToken(e,t={}){return du.withSpan(`${this.constructor.name}.getToken`,t,(async()=>{const n=Ql(this.tenantId,t);n&&bu(bh,n);const r="string"==typeof e?e:e[0];mh(r,bh),bh.getToken.info(`Using the scope ${r}`);const o=_h(r);try{const t=await this.getAzurePowerShellAccessToken(o,n);return bh.getToken.info(mu(e)),{token:t.Token,expiresOnTimestamp:new Date(t.ExpiresOn).getTime()}}catch(e){if((e=>e.message.match("The specified module 'Az.Accounts' with version '2.2.0' was not loaded because no valid module file was found in any module directory"))(e)){const e=new ru(Sh);throw bh.getToken.info(_u(r,e)),e}if((e=>e.message.match("(.*)Run Connect-AzAccount to login(.*)"))(e)){const e=new ru(Rh);throw bh.getToken.info(_u(r,e)),e}const t=new ru(`${e}. ${Ih}`);throw bh.getToken.info(_u(r,t)),t}}))}}class Dh extends Kl{constructor(e){super(e),this.requiresConfidential=!0,this.msalConfig.auth.clientSecret=e.clientSecret}async doGetToken(e,t={}){try{const n=await this.confidentialApp.acquireTokenByClientCredential({scopes:e,correlationId:t.correlationId,azureRegion:this.azureRegion,authority:t.authority,claims:t.claims});return this.handleResult(e,this.clientId,n||void 0)}catch(n){throw this.handleError(e,n,t)}}}const Lh=yu("ClientSecretCredential");class Mh{constructor(e,t,n,r={}){if(!e||!t||!n)throw new Error("ClientSecretCredential: tenantId, clientId, and clientSecret are required parameters. To troubleshoot, visit https://aka.ms/azsdk/js/identity/serviceprincipalauthentication/troubleshoot.");this.msalFlow=new Dh(Object.assign(Object.assign({},r),{logger:Lh,clientId:t,tenantId:e,clientSecret:n,tokenCredentialOptions:r}))}async getToken(e,t={}){return du.withSpan(`${this.constructor.name}.getToken`,t,(async t=>{const n=Array.isArray(e)?e:[e];return this.msalFlow.getToken(n,t)}))}}var xh=n(39023);const Bh=(0,xh.promisify)(Xl.readFile);async function Ph(e,t){const n={},r=e.certificate,o=e.certificatePath;n.certificateContents=r||await Bh(o,"utf8"),t&&(n.x5c=n.certificateContents);const i=/(-+BEGIN CERTIFICATE-+)(\n\r?|\r\n?)([A-Za-z0-9+/\n\r]+=*)(\n\r?|\r\n?)(-+END CERTIFICATE-+)/g,s=[];let a;do{a=i.exec(n.certificateContents),a&&s.push(a[3])}while(a);if(0===s.length)throw new Error("The file at the specified path does not contain a PEM-encoded certificate.");return n.thumbprint=(0,Yr.createHash)("sha1").update(Buffer.from(s[0],"base64")).digest("hex").toUpperCase(),n}class Fh extends Kl{constructor(e){super(e),this.requiresConfidential=!0,this.configuration=e.configuration,this.sendCertificateChain=e.sendCertificateChain}async init(e){try{const e=await Ph(this.configuration,this.sendCertificateChain);this.msalConfig.auth.clientCertificate={thumbprint:e.thumbprint,privateKey:e.certificateContents,x5c:e.x5c}}catch(e){throw this.logger.info(_u("",e)),e}return super.init(e)}async doGetToken(e,t={}){try{const n={scopes:e,correlationId:t.correlationId,azureRegion:this.azureRegion,authority:t.authority,claims:t.claims},r=await this.confidentialApp.acquireTokenByClientCredential(n);return this.handleResult(e,this.clientId,r||void 0)}catch(n){throw this.handleError(e,n,t)}}}const Uh="ClientCertificateCredential",kh=yu(Uh);class jh{constructor(e,t,n,r={}){if(!e||!t)throw new Error(`${Uh}: tenantId and clientId are required parameters.`);const o=Object.assign({},"string"==typeof n?{certificatePath:n}:n),i=o.certificate,s=o.certificatePath;if(!o||!i&&!s)throw new Error(`${Uh}: Provide either a PEM certificate in string form, or the path to that certificate in the filesystem. To troubleshoot, visit https://aka.ms/azsdk/js/identity/serviceprincipalauthentication/troubleshoot.`);if(i&&s)throw new Error(`${Uh}: To avoid unexpected behaviors, providing both the contents of a PEM certificate and the path to a PEM certificate is forbidden. To troubleshoot, visit https://aka.ms/azsdk/js/identity/serviceprincipalauthentication/troubleshoot.`);this.msalFlow=new Fh(Object.assign(Object.assign({},r),{configuration:o,logger:kh,clientId:t,tenantId:e,sendCertificateChain:r.sendCertificateChain,tokenCredentialOptions:r}))}async getToken(e,t={}){return du.withSpan(`${Uh}.getToken`,t,(async t=>{const n=Array.isArray(e)?e:[e];return this.msalFlow.getToken(n,t)}))}}class Gh extends Kl{constructor(e){super(e),this.username=e.username,this.password=e.password}async doGetToken(e,t){try{const n={scopes:e,username:this.username,password:this.password,correlationId:null==t?void 0:t.correlationId,authority:null==t?void 0:t.authority,claims:null==t?void 0:t.claims},r=await this.publicApp.acquireTokenByUsernamePassword(n);return this.handleResult(e,this.clientId,r||void 0)}catch(n){throw this.handleError(e,n,t)}}}const Vh=yu("UsernamePasswordCredential");class Yh{constructor(e,t,n,r,o={}){if(!(e&&t&&n&&r))throw new Error("UsernamePasswordCredential: tenantId, clientId, username and password are required parameters. To troubleshoot, visit https://aka.ms/azsdk/js/identity/usernamepasswordcredential/troubleshoot.");this.msalFlow=new Gh(Object.assign(Object.assign({},o),{logger:Vh,clientId:t,tenantId:e,username:n,password:r,tokenCredentialOptions:o||{}}))}async getToken(e,t={}){return du.withSpan(`${this.constructor.name}.getToken`,t,(async t=>{const n=Array.isArray(e)?e:[e];return this.msalFlow.getToken(n,t)}))}}const Hh=["AZURE_TENANT_ID","AZURE_CLIENT_ID","AZURE_CLIENT_SECRET","AZURE_CLIENT_CERTIFICATE_PATH","AZURE_USERNAME","AZURE_PASSWORD"],Qh="EnvironmentCredential",Wh=yu(Qh);class zh{constructor(e){this._credential=void 0;const t=(n=Hh,n.reduce(((e,t)=>(process.env[t]?e.assigned.push(t):e.missing.push(t),e)),{missing:[],assigned:[]})).assigned.join(", ");var n;Wh.info(`Found the following environment variables: ${t}`);const r=process.env.AZURE_TENANT_ID,o=process.env.AZURE_CLIENT_ID,i=process.env.AZURE_CLIENT_SECRET;if(r&&bu(Wh,r),r&&o&&i)return Wh.info(`Invoking ClientSecretCredential with tenant ID: ${r}, clientId: ${o} and clientSecret: [REDACTED]`),void(this._credential=new Mh(r,o,i,e));const s=process.env.AZURE_CLIENT_CERTIFICATE_PATH;if(r&&o&&s)return Wh.info(`Invoking ClientCertificateCredential with tenant ID: ${r}, clientId: ${o} and certificatePath: ${s}`),void(this._credential=new jh(r,o,{certificatePath:s},e));const a=process.env.AZURE_USERNAME,u=process.env.AZURE_PASSWORD;r&&o&&a&&u&&(Wh.info(`Invoking UsernamePasswordCredential with tenant ID: ${r}, clientId: ${o} and username: ${a}`),this._credential=new Yh(r,o,a,u,e))}async getToken(e,t={}){return du.withSpan(`${Qh}.getToken`,t,(async t=>{if(this._credential)try{const n=await this._credential.getToken(e,t);return Wh.getToken.info(mu(e)),n}catch(t){const n=new iu(400,{error:`${Qh} authentication failed. To troubleshoot, visit https://aka.ms/azsdk/js/identity/environmentcredential/troubleshoot.`,error_description:t.message.toString().split("More details:").join("")});throw Wh.getToken.info(_u(e,n)),n}throw new ru(`${Qh} is unavailable. No underlying credential could be used. To troubleshoot, visit https://aka.ms/azsdk/js/identity/environmentcredential/troubleshoot.`)}))}}const qh="/.default";function Kh(e){let t="";if(Array.isArray(e)){if(1!==e.length)return;t=e[0]}else"string"==typeof e&&(t=e);return t.endsWith(qh)?t.substr(0,t.lastIndexOf(qh)):t}const Xh="ManagedIdentityCredential - AppServiceMSI 2017",Jh=yu(Xh);function $h(e){return Date.parse(e.expires_on)}const Zh={async isAvailable({scopes:e}){if(!Kh(e))return Jh.info(`${Xh}: Unavailable. Multiple scopes are not supported.`),!1;const t=process.env,n=Boolean(t.MSI_ENDPOINT&&t.MSI_SECRET);return n||Jh.info(`${Xh}: Unavailable. The environment variables needed are: MSI_ENDPOINT and MSI_SECRET.`),n},async getToken(e,t={}){const{identityClient:n,scopes:r,clientId:o,resourceId:i}=e;i&&Jh.warning(`${Xh}: managed Identity by resource Id is not supported. Argument resourceId might be ignored by the service.`),Jh.info(`${Xh}: Using the endpoint and the secret coming form the environment variables: MSI_ENDPOINT=${process.env.MSI_ENDPOINT} and MSI_SECRET=[REDACTED].`);const s=Sa(Object.assign(Object.assign({abortSignal:t.abortSignal},function(e,t){const n=Kh(e);if(!n)throw new Error(`${Xh}: Multiple scopes are not supported.`);const r={resource:n,"api-version":"2017-09-01"};t&&(r.clientid=t);const o=new URLSearchParams(r);if(!process.env.MSI_ENDPOINT)throw new Error(`${Xh}: Missing environment variable: MSI_ENDPOINT`);if(!process.env.MSI_SECRET)throw new Error(`${Xh}: Missing environment variable: MSI_SECRET`);return{url:`${process.env.MSI_ENDPOINT}?${o.toString()}`,method:"GET",headers:Vs({Accept:"application/json",secret:process.env.MSI_SECRET})}}(r,o)),{allowInsecureConnection:!0})),a=await n.sendTokenRequest(s,$h);return a&&a.accessToken||null}},ef="ManagedIdentityCredential - CloudShellMSI",tf=yu(ef),nf={async isAvailable({scopes:e}){if(!Kh(e))return tf.info(`${ef}: Unavailable. Multiple scopes are not supported.`),!1;const t=Boolean(process.env.MSI_ENDPOINT);return t||tf.info(`${ef}: Unavailable. The environment variable MSI_ENDPOINT is needed.`),t},async getToken(e,t={}){const{identityClient:n,scopes:r,clientId:o,resourceId:i}=e;o&&tf.warning(`${ef}: user-assigned identities not supported. The argument clientId might be ignored by the service.`),i&&tf.warning(`${ef}: user defined managed Identity by resource Id not supported. The argument resourceId might be ignored by the service.`),tf.info(`${ef}: Using the endpoint coming form the environment variable MSI_ENDPOINT = ${process.env.MSI_ENDPOINT}.`);const s=Sa(Object.assign(Object.assign({abortSignal:t.abortSignal},function(e,t,n){const r=Kh(e);if(!r)throw new Error(`${ef}: Multiple scopes are not supported.`);const o={resource:r};if(t&&(o.client_id=t),n&&(o.msi_res_id=n),!process.env.MSI_ENDPOINT)throw new Error(`${ef}: Missing environment variable: MSI_ENDPOINT`);const i=new URLSearchParams(o);return{url:process.env.MSI_ENDPOINT,method:"POST",body:i.toString(),headers:Vs({Accept:"application/json",Metadata:"true","Content-Type":"application/x-www-form-urlencoded"})}}(r,o,i)),{allowInsecureConnection:!0})),a=await n.sendTokenRequest(s);return a&&a.accessToken||null}},rf="ManagedIdentityCredential - IMDS",of=yu(rf);function sf(e){if(e.expires_on){const t=1e3*+e.expires_on;return of.info(`${rf}: Using expires_on: ${t} (original value: ${e.expires_on})`),t}{const t=Date.now()+1e3*e.expires_in;return of.info(`${rf}: IMDS using expires_in: ${t} (original value: ${e.expires_in})`),t}}function af(e,t,n,r){var o;const i=Kh(e);if(!i)throw new Error(`${rf}: Multiple scopes are not supported.`);const{skipQuery:s,skipMetadataHeader:a}=r||{};let u="";if(!s){const e={resource:i,"api-version":"2018-02-01"};t&&(e.client_id=t),n&&(e.msi_res_id=n),u=`?${new URLSearchParams(e).toString()}`}const c=new URL("/metadata/identity/oauth2/token",null!==(o=process.env.AZURE_POD_IDENTITY_AUTHORITY_HOST)&&void 0!==o?o:"http://169.254.169.254"),l={Accept:"application/json",Metadata:"true"};return a&&delete l.Metadata,{url:`${c}${u}`,method:"GET",headers:Vs(l)}}const uf={async isAvailable({scopes:e,identityClient:t,clientId:n,resourceId:r,getTokenOptions:o={}}){const i=Kh(e);if(!i)return of.info(`${rf}: Unavailable. Multiple scopes are not supported.`),!1;if(process.env.AZURE_POD_IDENTITY_AUTHORITY_HOST)return!0;if(!t)throw new Error("Missing IdentityClient");const s=af(i,n,r,{skipMetadataHeader:!0,skipQuery:!0});return du.withSpan("ManagedIdentityCredential-pingImdsEndpoint",o,(async e=>{var n,r;s.tracingOptions=e.tracingOptions;try{const o=Sa(s);o.timeout=null!==(r=null===(n=e.requestOptions)||void 0===n?void 0:n.timeout)&&void 0!==r?r:300,o.allowInsecureConnection=!0;try{of.info(`${rf}: Pinging the Azure IMDS endpoint`),await t.sendRequest(o)}catch(e){if("RestError"===e.name&&e.code===da.REQUEST_SEND_ERROR||"AbortError"===e.name||"ENETUNREACH"===e.code||"ECONNREFUSED"===e.code||"EHOSTDOWN"===e.code)return of.info(`${rf}: The Azure IMDS endpoint is unavailable`),!1}return of.info(`${rf}: The Azure IMDS endpoint is available`),!0}catch(e){throw of.info(`${rf}: Error when creating the WebResource for the Azure IMDS endpoint: ${e.message}`),e}}))},async getToken(e,t={}){const{identityClient:n,scopes:r,clientId:o,resourceId:i}=e;of.info(`${rf}: Using the Azure IMDS endpoint coming from the environment variable MSI_ENDPOINT=${process.env.MSI_ENDPOINT}, and using the cloud shell to proceed with the authentication.`);let s=800;for(let e=0;e<3;e++)try{const e=Sa(Object.assign(Object.assign({abortSignal:t.abortSignal},af(r,o,i)),{allowInsecureConnection:!0})),s=await n.sendTokenRequest(e,sf);return s&&s.accessToken||null}catch(e){if(404===e.statusCode){await Fi(s),s*=2;continue}throw e}throw new iu(404,`${rf}: Failed to retrieve IMDS token after 3 retries.`)}},cf="ManagedIdentityCredential - Azure Arc MSI",lf=yu(cf),hf={async isAvailable({scopes:e}){if(!Kh(e))return lf.info(`${cf}: Unavailable. Multiple scopes are not supported.`),!1;const t=Boolean(process.env.IMDS_ENDPOINT&&process.env.IDENTITY_ENDPOINT);return t||lf.info(`${cf}: The environment variables needed are: IMDS_ENDPOINT and IDENTITY_ENDPOINT`),t},async getToken(e,t={}){var n;const{identityClient:r,scopes:o,clientId:i,resourceId:s}=e;i&&lf.warning(`${cf}: user-assigned identities not supported. The argument clientId might be ignored by the service.`),s&&lf.warning(`${cf}: user defined managed Identity by resource Id is not supported. Argument resourceId will be ignored.`),lf.info(`${cf}: Authenticating.`);const a=Object.assign(Object.assign({disableJsonStringifyOnBody:!0,deserializationMapper:void 0,abortSignal:t.abortSignal},function(e,t,n){const r=Kh(e);if(!r)throw new Error(`${cf}: Multiple scopes are not supported.`);const o={resource:r,"api-version":"2019-11-01"};if(t&&(o.client_id=t),n&&(o.msi_res_id=n),!process.env.IDENTITY_ENDPOINT)throw new Error(`${cf}: Missing environment variable: IDENTITY_ENDPOINT`);const i=new URLSearchParams(o);return Sa({url:`${process.env.IDENTITY_ENDPOINT}?${i.toString()}`,method:"GET",headers:Vs({Accept:"application/json",Metadata:"true"})})}(o,i,s)),{allowInsecureConnection:!0}),u=await async function(e,t){const n=await e.sendRequest(Sa(t));if(401!==n.status){let e="";throw n.bodyAsText&&(e=` Response: ${n.bodyAsText}`),new iu(n.status,`${cf}: To authenticate with Azure Arc MSI, status code 401 is expected on the first request. ${e}`)}const r=n.headers.get("www-authenticate")||"";try{return r.split("=").slice(1)[0]}catch(e){throw Error(`Invalid www-authenticate header format: ${r}`)}}(r,a);if(!u)throw new Error(`${cf}: Failed to find the token file.`);const c=await(l=u,h={encoding:"utf-8"},new Promise(((e,t)=>(0,Xl.readFile)(l,h,((n,r)=>{n&&t(n),e(r)})))));var l,h;null===(n=a.headers)||void 0===n||n.set("Authorization",`Basic ${c}`);const f=Sa(Object.assign(Object.assign({},a),{allowInsecureConnection:!0})),p=await r.sendTokenRequest(f);return p&&p.accessToken||null}},ff="ManagedIdentityCredential - Token Exchange",pf=yu(ff),df=(0,xh.promisify)(Jl().readFile);function Ef(){const e=process.env.AZURE_FEDERATED_TOKEN_FILE;let t,n;return{async isAvailable({clientId:t}){const n=process.env,r=Boolean((t||n.AZURE_CLIENT_ID)&&n.AZURE_TENANT_ID&&e);return r||pf.info(`${ff}: Unavailable. The environment variables needed are: AZURE_CLIENT_ID (or the client ID sent through the parameters), AZURE_TENANT_ID and AZURE_FEDERATED_TOKEN_FILE`),r},async getToken(r,o={}){const{identityClient:i,scopes:s,clientId:a}=r;let u;pf.info(`${ff}: Using the client assertion coming from environment variables.`);try{u=await async function(){if(void 0!==n&&Date.now()-n>=3e5&&(t=void 0),!t){const r=(await df(e,"utf8")).trim();if(!r)throw new Error(`No content on the file ${e}, indicated by the environment variable AZURE_FEDERATED_TOKEN_FILE`);t=r,n=Date.now()}return t}()}catch(t){throw new Error(`${ff}: Failed to read ${e}, indicated by the environment variable AZURE_FEDERATED_TOKEN_FILE`)}const c=Sa(Object.assign(Object.assign({abortSignal:o.abortSignal},function(e,t,n){var r;const o={scope:Array.isArray(e)?e.join(" "):e,client_assertion:t,client_assertion_type:"urn:ietf:params:oauth:client-assertion-type:jwt-bearer",client_id:n,grant_type:"client_credentials"},i=new URLSearchParams(o);return{url:new URL(`${process.env.AZURE_TENANT_ID}/oauth2/v2.0/token`,null!==(r=process.env.AZURE_AUTHORITY_HOST)&&void 0!==r?r:pu).toString(),method:"POST",body:i.toString(),headers:Vs({Accept:"application/json"})}}(s,u,a||process.env.AZURE_CLIENT_ID)),{allowInsecureConnection:!0})),l=await i.sendTokenRequest(c);return l&&l.accessToken||null}}}const mf="ManagedIdentityCredential - Fabric MSI",_f=yu(mf);function gf(e){return Number(e.expires_on)}const yf={async isAvailable({scopes:e}){if(!Kh(e))return _f.info(`${mf}: Unavailable. Multiple scopes are not supported.`),!1;const t=process.env,n=Boolean(t.IDENTITY_ENDPOINT&&t.IDENTITY_HEADER&&t.IDENTITY_SERVER_THUMBPRINT);return n||_f.info(`${mf}: Unavailable. The environment variables needed are: IDENTITY_ENDPOINT, IDENTITY_HEADER and IDENTITY_SERVER_THUMBPRINT`),n},async getToken(e,t={}){const{scopes:n,identityClient:r,clientId:o,resourceId:i}=e;i&&_f.warning(`${mf}: user defined managed Identity by resource Id is not supported. Argument resourceId might be ignored by the service.`),_f.info([`${mf}:`,"Using the endpoint and the secret coming from the environment variables:",`IDENTITY_ENDPOINT=${process.env.IDENTITY_ENDPOINT},`,"IDENTITY_HEADER=[REDACTED] and","IDENTITY_SERVER_THUMBPRINT=[REDACTED]."].join(" "));const s=Sa(Object.assign({abortSignal:t.abortSignal},function(e,t,n){const r=Kh(e);if(!r)throw new Error(`${mf}: Multiple scopes are not supported.`);const o={resource:r,"api-version":"2019-07-01-preview"};t&&(o.client_id=t),n&&(o.msi_res_id=n);const i=new URLSearchParams(o);if(!process.env.IDENTITY_ENDPOINT)throw new Error("Missing environment variable: IDENTITY_ENDPOINT");if(!process.env.IDENTITY_HEADER)throw new Error("Missing environment variable: IDENTITY_HEADER");return{url:`${process.env.IDENTITY_ENDPOINT}?${i.toString()}`,method:"GET",headers:Vs({Accept:"application/json",secret:process.env.IDENTITY_HEADER})}}(n,o,i)));s.agent=new(Vr().Agent)({rejectUnauthorized:!1});const a=await r.sendTokenRequest(s,gf);return a&&a.accessToken||null}},Af="ManagedIdentityCredential - AppServiceMSI 2019",vf=yu(Af);function bf(e){return Date.parse(e.expires_on)}const Tf={async isAvailable({scopes:e}){if(!Kh(e))return vf.info(`${Af}: Unavailable. Multiple scopes are not supported.`),!1;const t=process.env,n=Boolean(t.IDENTITY_ENDPOINT&&t.IDENTITY_HEADER);return n||vf.info(`${Af}: Unavailable. The environment variables needed are: IDENTITY_ENDPOINT and IDENTITY_HEADER.`),n},async getToken(e,t={}){const{identityClient:n,scopes:r,clientId:o,resourceId:i}=e;vf.info(`${Af}: Using the endpoint and the secret coming form the environment variables: IDENTITY_ENDPOINT=${process.env.IDENTITY_ENDPOINT} and IDENTITY_HEADER=[REDACTED].`);const s=Sa(Object.assign(Object.assign({abortSignal:t.abortSignal},function(e,t,n){const r=Kh(e);if(!r)throw new Error(`${Af}: Multiple scopes are not supported.`);const o={resource:r,"api-version":"2019-08-01"};t&&(o.client_id=t),n&&(o.mi_res_id=n);const i=new URLSearchParams(o);if(!process.env.IDENTITY_ENDPOINT)throw new Error(`${Af}: Missing environment variable: IDENTITY_ENDPOINT`);if(!process.env.IDENTITY_HEADER)throw new Error(`${Af}: Missing environment variable: IDENTITY_HEADER`);return{url:`${process.env.IDENTITY_ENDPOINT}?${i.toString()}`,method:"GET",headers:Vs({Accept:"application/json","X-IDENTITY-HEADER":process.env.IDENTITY_HEADER})}}(r,o,i)),{allowInsecureConnection:!0})),a=await n.sendTokenRequest(s,bf);return a&&a.accessToken||null}},wf=yu("ManagedIdentityCredential");class Of{constructor(e,t){let n;if(this.isEndpointUnavailable=null,"string"==typeof e?(this.clientId=e,n=t):(this.clientId=null==e?void 0:e.clientId,n=e),this.resourceId=null==n?void 0:n.resourceId,this.clientId&&this.resourceId)throw new Error(`${Of.name} - Client Id and Resource Id can't be provided at the same time.`);this.identityClient=new vu(n),this.isAvailableIdentityClient=new vu(Object.assign(Object.assign({},n),{retryOptions:{maxRetries:0}}))}async cachedAvailableMSI(e,t){if(this.cachedMSI)return this.cachedMSI;const n=[hf,yf,Tf,Zh,nf,Ef(),uf];for(const r of n)if(await r.isAvailable({scopes:e,identityClient:this.isAvailableIdentityClient,clientId:this.clientId,resourceId:this.resourceId,getTokenOptions:t}))return this.cachedMSI=r,r;throw new ru(`${Of.name} - No MSI credential available`)}async authenticateManagedIdentity(e,t){const{span:n,updatedOptions:r}=du.startSpan(`${Of.name}.authenticateManagedIdentity`,t);try{return(await this.cachedAvailableMSI(e,r)).getToken({identityClient:this.identityClient,scopes:e,clientId:this.clientId,resourceId:this.resourceId},r)}catch(e){throw n.setStatus({status:"error",error:e}),e}finally{n.end()}}async getToken(e,t){let n=null;const{span:r,updatedOptions:o}=du.startSpan(`${Of.name}.getToken`,t);try{if(!0===this.isEndpointUnavailable){const t=new ru("The managed identity endpoint is not currently available");throw wf.getToken.info(_u(e,t)),t}if(n=await this.authenticateManagedIdentity(e,o),null===n){this.isEndpointUnavailable=!0;const t=new ru("The managed identity endpoint was reached, yet no tokens were received.");throw wf.getToken.info(_u(e,t)),t}return this.isEndpointUnavailable=!1,wf.getToken.info(mu(e)),n}catch(t){if("AuthenticationRequiredError"===t.name)throw t;if(r.setStatus({status:"error",error:t}),"ENETUNREACH"===t.code){const n=new ru(`${Of.name}: Unavailable. Network unreachable. Message: ${t.message}`);throw wf.getToken.info(_u(e,n)),n}if("EHOSTUNREACH"===t.code){const n=new ru(`${Of.name}: Unavailable. No managed identity endpoint found. Message: ${t.message}`);throw wf.getToken.info(_u(e,n)),n}if(400===t.statusCode)throw new ru(`${Of.name}: The managed identity endpoint is indicating there's no available identity. Message: ${t.message}`);if(void 0===t.statusCode)throw new ru(`${Of.name}: Authentication failed. Message ${t.message}`);throw new iu(t.statusCode,{error:`${Of.name} authentication failed.`,error_description:t.message})}finally{r.end()}}}const Rf=[zh,class extends Of{constructor(e){var t;const n=null!==(t=null==e?void 0:e.managedIdentityClientId)&&void 0!==t?t:process.env.AZURE_CLIENT_ID,r=null==e?void 0:e.managedIdentityResourceId;super(r?Object.assign(Object.assign({},e),{resourceId:r}):n?Object.assign(Object.assign({},e),{clientId:n}):e)}},ch,Ah,Ch];class Sf extends ph{constructor(e){super(...Rf.map((t=>new t(e)))),this.UnavailableMessage="DefaultAzureCredential => failed to retrieve a token from the included credentials. To troubleshoot, visit https://aka.ms/azsdk/js/identity/defaultazurecredential/troubleshoot."}}class If extends Kl{constructor(e){super(e),this.requiresConfidential=!0,this.getAssertion=e.getAssertion}async doGetToken(e,t={}){try{const n=await this.getAssertion(),r=await this.confidentialApp.acquireTokenByClientCredential({scopes:e,correlationId:t.correlationId,azureRegion:this.azureRegion,authority:t.authority,claims:t.claims,clientAssertion:n});return this.handleResult(e,this.clientId,r||void 0)}catch(n){let r=n;throw r=null==n?new Error(JSON.stringify(n)):ki(n)?n:new Error(String(n)),this.handleError(e,r,t)}}}const Nf=yu("ClientAssertionCredential");class Cf{constructor(e,t,n,r={}){if(!e||!t||!n)throw new Error("ClientAssertionCredential: tenantId, clientId, and clientAssertion are required parameters.");this.tenantId=e,this.clientId=t,this.options=r,this.msalFlow=new If(Object.assign(Object.assign({},r),{logger:Nf,clientId:this.clientId,tenantId:this.tenantId,tokenCredentialOptions:this.options,getAssertion:n}))}async getToken(e,t={}){return du.withSpan(`${this.constructor.name}.getToken`,t,(async t=>{const n=Array.isArray(e)?e:[e];return this.msalFlow.getToken(n,t)}))}}var Df=n(50721),Lf=n.n(Df),Mf=n(63987),xf=n.n(Mf);const Bf={open:Lf()};class Pf extends Kl{constructor(e){super(e),this.logger=yu("Node.js MSAL Open Browser"),this.redirectUri=e.redirectUri,this.loginHint=e.loginHint;const t=new URL(this.redirectUri);this.port=parseInt(t.port),isNaN(this.port)&&(this.port=80),this.hostname=t.hostname}async acquireTokenByCode(e){return this.publicApp.acquireTokenByCode(e)}doGetToken(e,t){return new Promise(((n,r)=>{const o=[],i=jr().createServer(((o,i)=>{var s;if(!o.url)return void r(new Error('Interactive Browser Authentication Error "Did not receive token with a valid expiration"'));let a;try{a=new URL(o.url,this.redirectUri)}catch(e){return void r(new Error('Interactive Browser Authentication Error "Did not receive token with a valid expiration"'))}const c={code:a.searchParams.get("code"),redirectUri:this.redirectUri,scopes:e,authority:null==t?void 0:t.authority,codeVerifier:null===(s=this.pkceCodes)||void 0===s?void 0:s.verifier};this.acquireTokenByCode(c).then((t=>{if((null==t?void 0:t.account)&&(this.account=Vl(this.clientId,t.account)),t&&t.expiresOn){const r=null==t?void 0:t.expiresOn.valueOf();i.writeHead(200),i.end("Authentication Complete. You can close the browser and return to the application."),this.logger.getToken.info(mu(e)),n({expiresOnTimestamp:r,token:t.accessToken})}else{const t=_u(e,`${a.searchParams.get("error")}. ${a.searchParams.get("error_description")}`);i.writeHead(500),i.end(t),this.logger.getToken.info(t),r(new Error('Interactive Browser Authentication Error "Did not receive token with a valid expiration"'))}u()})).catch((()=>{const t=_u(e,`${a.searchParams.get("error")}. ${a.searchParams.get("error_description")}`);i.writeHead(500),i.end(t),this.logger.getToken.info(t),r(new Error('Interactive Browser Authentication Error "Did not receive token with a valid expiration"')),u()}))})),s=xf()(i),a=i.listen(this.port,this.hostname,(()=>this.logger.info(`InteractiveBrowserCredential listening on port ${this.port}!`)));function u(){a&&a.close();for(const e of o)e.destroy();s&&(s.close(),s.stop())}i.on("connection",(e=>o.push(e))),i.on("error",(e=>{u();const t=e.code;r(new ru("EACCES"===t||"EADDRINUSE"===t?[`InteractiveBrowserCredential: Access denied to port ${this.port}.`,"Try sending a redirect URI with a different port, as follows:",'`new InteractiveBrowserCredential({ redirectUri: "http://localhost:1337" })`'].join(" "):`InteractiveBrowserCredential: Failed to start the necessary web server. Error: ${e.message}`))})),i.on("listening",(()=>{const n=this.openAuthCodeUrl(e,t),o=null==t?void 0:t.abortSignal;o&&o.addEventListener("abort",(()=>{u(),r(new Error("Aborted"))})),n.then().catch((e=>{u(),r(e)}))}))}))}async openAuthCodeUrl(e,t){const n=new No;this.pkceCodes=await n.generatePkceCodes();const r={scopes:e,correlationId:null==t?void 0:t.correlationId,redirectUri:this.redirectUri,authority:null==t?void 0:t.authority,claims:null==t?void 0:t.claims,loginHint:this.loginHint,codeChallenge:this.pkceCodes.challenge,codeChallengeMethod:"S256"},o=await this.publicApp.getAuthCodeUrl(r);try{await Bf.open(o,{wait:!0,newInstance:!0})}catch(e){throw new ru(`InteractiveBrowserCredential: Could not open a browser window. Error: ${e.message}`)}}}const Ff=yu("InteractiveBrowserCredential");class Uf{constructor(e={}){const t="function"==typeof e.redirectUri?e.redirectUri():e.redirectUri||"http://localhost";this.msalFlow=new Pf(Object.assign(Object.assign({},e),{tokenCredentialOptions:e,logger:Ff,redirectUri:t})),this.disableAutomaticAuthentication=null==e?void 0:e.disableAutomaticAuthentication}async getToken(e,t={}){return du.withSpan(`${this.constructor.name}.getToken`,t,(async t=>{const n=Array.isArray(e)?e:[e];return this.msalFlow.getToken(n,Object.assign(Object.assign({},t),{disableAutomaticAuthentication:this.disableAutomaticAuthentication}))}))}async authenticate(e,t={}){return du.withSpan(`${this.constructor.name}.authenticate`,t,(async t=>{const n=Array.isArray(e)?e:[e];return await this.msalFlow.getToken(n,t),this.msalFlow.getActiveAccount()}))}}class kf extends Kl{constructor(e){super(e),this.userPromptCallback=e.userPromptCallback}async doGetToken(e,t){try{const n={deviceCodeCallback:this.userPromptCallback,scopes:e,cancel:!1,correlationId:null==t?void 0:t.correlationId,authority:null==t?void 0:t.authority,claims:null==t?void 0:t.claims},r=this.publicApp.acquireTokenByDeviceCode(n),o=await this.withCancellation(r,null==t?void 0:t.abortSignal,(()=>{n.cancel=!0}));return this.handleResult(e,this.clientId,o||void 0)}catch(n){throw this.handleError(e,n,t)}}}const jf=yu("DeviceCodeCredential");function Gf(e){console.log(e.message)}class Vf{constructor(e){this.msalFlow=new kf(Object.assign(Object.assign({},e),{logger:jf,userPromptCallback:(null==e?void 0:e.userPromptCallback)||Gf,tokenCredentialOptions:e||{}})),this.disableAutomaticAuthentication=null==e?void 0:e.disableAutomaticAuthentication}async getToken(e,t={}){return du.withSpan(`${this.constructor.name}.getToken`,t,(async t=>{const n=Array.isArray(e)?e:[e];return this.msalFlow.getToken(n,Object.assign(Object.assign({},t),{disableAutomaticAuthentication:this.disableAutomaticAuthentication}))}))}async authenticate(e,t={}){return du.withSpan(`${this.constructor.name}.authenticate`,t,(async t=>{const n=Array.isArray(e)?e:[e];return await this.msalFlow.getToken(n,t),this.msalFlow.getActiveAccount()}))}}class Yf extends Kl{constructor(e){super(e),this.logger=yu("Node.js MSAL Authorization Code"),this.redirectUri=e.redirectUri,this.authorizationCode=e.authorizationCode,e.clientSecret&&(this.msalConfig.auth.clientSecret=e.clientSecret)}async getAuthCodeUrl(e){return await this.init(),(this.confidentialApp||this.publicApp).getAuthCodeUrl(e)}async doGetToken(e,t){var n;try{const r=await(null===(n=this.confidentialApp||this.publicApp)||void 0===n?void 0:n.acquireTokenByCode({scopes:e,redirectUri:this.redirectUri,code:this.authorizationCode,correlationId:null==t?void 0:t.correlationId,authority:null==t?void 0:t.authority,claims:null==t?void 0:t.claims}));return this.handleResult(e,this.clientId,r||void 0)}catch(n){throw this.handleError(e,n,t)}}}const Hf=yu("AuthorizationCodeCredential");class Qf{constructor(e,t,n,r,o,i){bu(Hf,e);let s=n;"string"==typeof o?(this.authorizationCode=r,this.redirectUri=o):(this.authorizationCode=n,this.redirectUri=r,s=void 0,i=o),this.msalFlow=new Yf(Object.assign(Object.assign({},i),{clientSecret:s,clientId:t,tenantId:e,tokenCredentialOptions:i||{},logger:Hf,redirectUri:this.redirectUri,authorizationCode:this.authorizationCode}))}async getToken(e,t={}){return du.withSpan(`${this.constructor.name}.getToken`,t,(async t=>{const n=Array.isArray(e)?e:[e];return this.msalFlow.getToken(n,Object.assign(Object.assign({},t),{disableAutomaticAuthentication:this.disableAutomaticAuthentication}))}))}}class Wf extends Kl{constructor(e){super(e),this.logger.info("Initialized MSAL's On-Behalf-Of flow"),this.requiresConfidential=!0,this.userAssertionToken=e.userAssertionToken,this.certificatePath=e.certificatePath,this.sendCertificateChain=e.sendCertificateChain,this.clientSecret=e.clientSecret}async init(e){if(this.certificatePath)try{const e=await Ph({certificatePath:this.certificatePath},this.sendCertificateChain);this.msalConfig.auth.clientCertificate={thumbprint:e.thumbprint,privateKey:e.certificateContents,x5c:e.x5c}}catch(e){throw this.logger.info(_u("",e)),e}else this.msalConfig.auth.clientSecret=this.clientSecret;return super.init(e)}async doGetToken(e,t={}){try{const n=await this.confidentialApp.acquireTokenOnBehalfOf({scopes:e,correlationId:t.correlationId,authority:t.authority,claims:t.claims,oboAssertion:this.userAssertionToken});return this.handleResult(e,this.clientId,n||void 0)}catch(n){throw this.handleError(e,n,t)}}}const zf="OnBehalfOfCredential",qf=yu(zf);class Kf{constructor(e){this.options=e;const{clientSecret:t}=e,{certificatePath:n}=e,{tenantId:r,clientId:o,userAssertionToken:i}=e;if(!r||!o||!t&&!n||!i)throw new Error(`${zf}: tenantId, clientId, clientSecret (or certificatePath) and userAssertionToken are required parameters.`);this.msalFlow=new Wf(Object.assign(Object.assign({},this.options),{logger:qf,tokenCredentialOptions:this.options}))}async getToken(e,t={}){return du.withSpan(`${zf}.getToken`,t,(async t=>{const n=Array.isArray(e)?e:[e];return this.msalFlow.getToken(n,t)}))}}function Xf(){return new Sf}},87891:(e,t,n)=>{"use strict";function r(e,t,n){function r(e){Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=e,t&&t.apply(this,arguments),this.toString=function(){return this.name+": "+this.message}}return void 0===n&&(n=Error),r.prototype=Object.create(n.prototype),r.prototype.name=e,r.prototype.constructor=r,r}n.r(t),n.d(t,{ArithmeticException:()=>a,ChronoField:()=>C,ChronoLocalDate:()=>Q,ChronoLocalDateTime:()=>lt,ChronoUnit:()=>S,ChronoZonedDateTime:()=>ot,Clock:()=>Et,DateTimeException:()=>o,DateTimeFormatter:()=>ze,DateTimeFormatterBuilder:()=>Ge,DateTimeParseException:()=>i,DayOfWeek:()=>F,DecimalStyle:()=>_e,Duration:()=>O,IllegalArgumentException:()=>u,IllegalStateException:()=>c,Instant:()=>dt,IsoChronology:()=>nt,IsoFields:()=>re,LocalDate:()=>ct,LocalDateTime:()=>ht,LocalTime:()=>ft,Month:()=>U,MonthDay:()=>qe,NullPointerException:()=>l,OffsetDateTime:()=>st,OffsetTime:()=>rt,ParsePosition:()=>G,Period:()=>j,ResolverStyle:()=>Y,SignStyle:()=>ge,Temporal:()=>H,TemporalAccessor:()=>L,TemporalAdjuster:()=>Je,TemporalAdjusters:()=>$e,TemporalAmount:()=>T,TemporalField:()=>I,TemporalQueries:()=>D,TemporalQuery:()=>M,TemporalUnit:()=>w,TextStyle:()=>ye,UnsupportedTemporalTypeException:()=>s,ValueRange:()=>N,Year:()=>Xe,YearConstants:()=>R,YearMonth:()=>Ke,ZoneId:()=>z,ZoneOffset:()=>$,ZoneOffsetTransition:()=>yt,ZoneRegion:()=>Be,ZoneRules:()=>q,ZoneRulesProvider:()=>xe,ZonedDateTime:()=>it,_:()=>Ct,convert:()=>Rt,nativeJs:()=>St,use:()=>Lt});var o=r("DateTimeException",(function(e,t){void 0===t&&(t=null);var n=e||this.name;null!==t&&t instanceof Error&&(n+="\n-------\nCaused by: "+t.stack+"\n-------\n"),this.message=n})),i=r("DateTimeParseException",(function(e,t,n,r){void 0===t&&(t=""),void 0===n&&(n=0),void 0===r&&(r=null);var o=e||this.name;o+=": "+t+", at index: "+n,null!==r&&r instanceof Error&&(o+="\n-------\nCaused by: "+r.stack+"\n-------\n"),this.message=o,this.parsedString=function(){return t},this.errorIndex=function(){return n}})),s=r("UnsupportedTemporalTypeException",null,o),a=r("ArithmeticException"),u=r("IllegalArgumentException"),c=r("IllegalStateException"),l=r("NullPointerException");function h(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,f(e,t)}function f(e,t){return f=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},f(e,t)}function p(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function d(e,t,n){if(!e)throw n?new n(t):new Error(t)}function E(e,t){if(null==e)throw new l(t+" must not be null");return e}function m(e,t,n){if(!(e instanceof t))throw new u(n+" must be an instance of "+(t.name?t.name:t)+(e&&e.constructor&&e.constructor.name?", but is "+e.constructor.name:""));return e}function _(e){throw new TypeError('abstract method "'+e+'" is not implemented')}var g=Object.freeze({__proto__:null,assert:d,requireNonNull:E,requireInstance:m,abstractMethodFail:_}),y=9007199254740991,A=-9007199254740991,v=function(){function e(){}return e.intDiv=function(t,n){var r=t/n;return r=e.roundDown(r),e.safeZero(r)},e.intMod=function(t,n){var r=t-e.intDiv(t,n)*n;return r=e.roundDown(r),e.safeZero(r)},e.roundDown=function(e){return e<0?Math.ceil(e):Math.floor(e)},e.floorDiv=function(t,n){var r=Math.floor(t/n);return e.safeZero(r)},e.floorMod=function(t,n){var r=t-e.floorDiv(t,n)*n;return e.safeZero(r)},e.safeAdd=function(t,n){if(e.verifyInt(t),e.verifyInt(n),0===t)return e.safeZero(n);if(0===n)return e.safeZero(t);var r=e.safeToInt(t+n);if(r===t||r===n)throw new a("Invalid addition beyond MAX_SAFE_INTEGER!");return r},e.safeSubtract=function(t,n){return e.verifyInt(t),e.verifyInt(n),0===t&&0===n?0:0===t?e.safeZero(-1*n):0===n?e.safeZero(t):e.safeToInt(t-n)},e.safeMultiply=function(t,n){if(e.verifyInt(t),e.verifyInt(n),1===t)return e.safeZero(n);if(1===n)return e.safeZero(t);if(0===t||0===n)return 0;var r=e.safeToInt(t*n);if(r/n!==t||t===A&&-1===n||n===A&&-1===t)throw new a("Multiplication overflows: "+t+" * "+n);return r},e.parseInt=function(e){function t(t){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}((function(t){var n=parseInt(t);return e.safeToInt(n)})),e.safeToInt=function(t){return e.verifyInt(t),e.safeZero(t)},e.verifyInt=function(e){if(null==e)throw new a("Invalid value: '"+e+"', using null or undefined as argument");if(isNaN(e))throw new a("Invalid int value, using NaN as argument");if(e%1!=0)throw new a("Invalid value: '"+e+"' is a float");if(e>y||et?1:0},e.smi=function(e){return e>>>1&1073741824|3221225471&e},e.hash=function(t){if(t!=t||t===1/0)return 0;for(var n=t;t>4294967295;)n^=t/=4294967295;return e.smi(n)},e.hashCode=function(){for(var t=17,n=arguments.length,r=new Array(n),o=0;o0&&r<0)r+=ft.NANOS_PER_SECOND;else if(n<0&&r>0)r-=ft.NANOS_PER_SECOND;else if(0===n&&0!==r){var i=t.with(C.NANO_OF_SECOND,o);n=e.until(i,S.SECONDS)}}catch(e){}return this.ofSeconds(n,r)},t.parse=function(e){E(e,"text");var n=new RegExp("([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?","i").exec(e);if(null!==n&&"T"===n[3]==0){var r="-"===n[1],o=n[2],s=n[4],a=n[5],u=n[6],c=n[7];if(null!=o||null!=s||null!=a||null!=u){var l=t._parseNumber(e,o,ft.SECONDS_PER_DAY,"days"),h=t._parseNumber(e,s,ft.SECONDS_PER_HOUR,"hours"),f=t._parseNumber(e,a,ft.SECONDS_PER_MINUTE,"minutes"),p=t._parseNumber(e,u,1,"seconds"),d=null!=u&&"-"===u.charAt(0),m=t._parseFraction(e,c,d?-1:1);try{return t._create(r,l,h,f,p,m)}catch(t){throw new i("Text cannot be parsed to a Duration: overflow",e,0,t)}}}throw new i("Text cannot be parsed to a Duration",e,0)},t._parseNumber=function(e,t,n,r){if(null==t)return 0;try{return"+"===t[0]&&(t=t.substring(1)),v.safeMultiply(parseFloat(t),n)}catch(t){throw new i("Text cannot be parsed to a Duration: "+r,e,0,t)}},t._parseFraction=function(e,t,n){return null==t||0===t.length?0:(t=(t+"000000000").substring(0,9),parseFloat(t)*n)},t._create=function(){return arguments.length<=2?t._createSecondsNanos(arguments[0],arguments[1]):t._createNegateDaysHoursMinutesSecondsNanos(arguments[0],arguments[1],arguments[2],arguments[3],arguments[4],arguments[5])},t._createNegateDaysHoursMinutesSecondsNanos=function(e,n,r,o,i,s){var a=v.safeAdd(n,v.safeAdd(r,v.safeAdd(o,i)));return e?t.ofSeconds(a,s).negated():t.ofSeconds(a,s)},t._createSecondsNanos=function(e,n){return void 0===e&&(e=0),void 0===n&&(n=0),0===e&&0===n?t.ZERO:new t(e,n)};var n=t.prototype;return n.get=function(e){if(e===S.SECONDS)return this._seconds;if(e===S.NANOS)return this._nanos;throw new s("Unsupported unit: "+e)},n.units=function(){return[S.SECONDS,S.NANOS]},n.isZero=function(){return 0===this._seconds&&0===this._nanos},n.isNegative=function(){return this._seconds<0},n.seconds=function(){return this._seconds},n.nano=function(){return this._nanos},n.withSeconds=function(e){return t._create(e,this._nanos)},n.withNanos=function(e){return C.NANO_OF_SECOND.checkValidIntValue(e),t._create(this._seconds,e)},n.plusDuration=function(e){return E(e,"duration"),this.plus(e.seconds(),e.nano())},n.plus=function(e,t){return 1===arguments.length?this.plusDuration(e):2===arguments.length&&t instanceof w?this.plusAmountUnit(e,t):this.plusSecondsNanos(e,t)},n.plusAmountUnit=function(e,t){if(E(e,"amountToAdd"),E(t,"unit"),t===S.DAYS)return this.plusSecondsNanos(v.safeMultiply(e,ft.SECONDS_PER_DAY),0);if(t.isDurationEstimated())throw new s("Unit must not have an estimated duration");if(0===e)return this;if(t instanceof S){switch(t){case S.NANOS:return this.plusNanos(e);case S.MICROS:return this.plusSecondsNanos(1e3*v.intDiv(e,1e9),1e3*v.intMod(e,1e9));case S.MILLIS:return this.plusMillis(e);case S.SECONDS:return this.plusSeconds(e)}return this.plusSecondsNanos(v.safeMultiply(t.duration().seconds(),e),0)}var n=t.duration().multipliedBy(e);return this.plusSecondsNanos(n.seconds(),n.nano())},n.plusDays=function(e){return this.plusSecondsNanos(v.safeMultiply(e,ft.SECONDS_PER_DAY),0)},n.plusHours=function(e){return this.plusSecondsNanos(v.safeMultiply(e,ft.SECONDS_PER_HOUR),0)},n.plusMinutes=function(e){return this.plusSecondsNanos(v.safeMultiply(e,ft.SECONDS_PER_MINUTE),0)},n.plusSeconds=function(e){return this.plusSecondsNanos(e,0)},n.plusMillis=function(e){return this.plusSecondsNanos(v.intDiv(e,1e3),1e6*v.intMod(e,1e3))},n.plusNanos=function(e){return this.plusSecondsNanos(0,e)},n.plusSecondsNanos=function(e,n){if(E(e,"secondsToAdd"),E(n,"nanosToAdd"),0===e&&0===n)return this;var r=v.safeAdd(this._seconds,e);r=v.safeAdd(r,v.intDiv(n,ft.NANOS_PER_SECOND)),n=v.intMod(n,ft.NANOS_PER_SECOND);var o=v.safeAdd(this._nanos,n);return t.ofSeconds(r,o)},n.minus=function(e,t){return 1===arguments.length?this.minusDuration(e):this.minusAmountUnit(e,t)},n.minusDuration=function(e){E(e,"duration");var t=e.seconds(),n=e.nano();return t===A?this.plus(y,-n):this.plus(-t,-n)},n.minusAmountUnit=function(e,t){return E(e,"amountToSubtract"),E(t,"unit"),e===A?this.plusAmountUnit(y,t):this.plusAmountUnit(-e,t)},n.minusDays=function(e){return e===A?this.plusDays(y):this.plusDays(-e)},n.minusHours=function(e){return e===A?this.plusHours(y):this.plusHours(-e)},n.minusMinutes=function(e){return e===A?this.plusMinutes(y):this.plusMinutes(-e)},n.minusSeconds=function(e){return e===A?this.plusSeconds(y):this.plusSeconds(-e)},n.minusMillis=function(e){return e===A?this.plusMillis(y):this.plusMillis(-e)},n.minusNanos=function(e){return e===A?this.plusNanos(y):this.plusNanos(-e)},n.multipliedBy=function(e){if(0===e)return t.ZERO;if(1===e)return this;var n=v.safeMultiply(this._seconds,e),r=v.safeMultiply(this._nanos,e);return n+=v.intDiv(r,ft.NANOS_PER_SECOND),r=v.intMod(r,ft.NANOS_PER_SECOND),t.ofSeconds(n,r)},n.dividedBy=function(e){if(0===e)throw new a("Cannot divide by zero");if(1===e)return this;var n=v.intDiv(this._seconds,e),r=v.roundDown((this._seconds/e-n)*ft.NANOS_PER_SECOND),o=v.intDiv(this._nanos,e);return o=r+o,t.ofSeconds(n,o)},n.negated=function(){return this.multipliedBy(-1)},n.abs=function(){return this.isNegative()?this.negated():this},n.addTo=function(e){return E(e,"temporal"),0!==this._seconds&&(e=e.plus(this._seconds,S.SECONDS)),0!==this._nanos&&(e=e.plus(this._nanos,S.NANOS)),e},n.subtractFrom=function(e){return E(e,"temporal"),0!==this._seconds&&(e=e.minus(this._seconds,S.SECONDS)),0!==this._nanos&&(e=e.minus(this._nanos,S.NANOS)),e},n.toDays=function(){return v.intDiv(this._seconds,ft.SECONDS_PER_DAY)},n.toHours=function(){return v.intDiv(this._seconds,ft.SECONDS_PER_HOUR)},n.toMinutes=function(){return v.intDiv(this._seconds,ft.SECONDS_PER_MINUTE)},n.toMillis=function(){var e=Math.round(v.safeMultiply(this._seconds,1e3));return v.safeAdd(e,v.intDiv(this._nanos,1e6))},n.toNanos=function(){var e=v.safeMultiply(this._seconds,ft.NANOS_PER_SECOND);return v.safeAdd(e,this._nanos)},n.compareTo=function(e){E(e,"otherDuration"),m(e,t,"otherDuration");var n=v.compareNumbers(this._seconds,e.seconds());return 0!==n?n:this._nanos-e.nano()},n.equals=function(e){return this===e||e instanceof t&&this.seconds()===e.seconds()&&this.nano()===e.nano()},n.toString=function(){if(this===t.ZERO)return"PT0S";var e,n=v.intDiv(this._seconds,ft.SECONDS_PER_HOUR),r=v.intDiv(v.intMod(this._seconds,ft.SECONDS_PER_HOUR),ft.SECONDS_PER_MINUTE),o=v.intMod(this._seconds,ft.SECONDS_PER_MINUTE),i="PT";if(0!==n&&(i+=n+"H"),0!==r&&(i+=r+"M"),0===o&&0===this._nanos&&i.length>2)return i;if(o<0&&this._nanos>0?i+=-1===o?"-0":o+1:i+=o,this._nanos>0)for(i+=".",i+=e=(e=o<0?""+(2*ft.NANOS_PER_SECOND-this._nanos):""+(ft.NANOS_PER_SECOND+this._nanos)).slice(1,e.length);"0"===i.charAt(i.length-1);)i=i.slice(0,i.length-1);return i+"S"},n.toJSON=function(){return this.toString()},t}(T),R=function(){},S=function(e){function t(t,n){var r;return(r=e.call(this)||this)._name=t,r._duration=n,r}h(t,e);var n=t.prototype;return n.duration=function(){return this._duration},n.isDurationEstimated=function(){return this.isDateBased()||this===t.FOREVER},n.isDateBased=function(){return this.compareTo(t.DAYS)>=0&&this!==t.FOREVER},n.isTimeBased=function(){return this.compareTo(t.DAYS)<0},n.isSupportedBy=function(e){if(this===t.FOREVER)return!1;try{return e.plus(1,this),!0}catch(t){try{return e.plus(-1,this),!0}catch(e){return!1}}},n.addTo=function(e,t){return e.plus(t,this)},n.between=function(e,t){return e.until(t,this)},n.toString=function(){return this._name},n.compareTo=function(e){return this.duration().compareTo(e.duration())},t}(w),I=function(){function e(){}var t=e.prototype;return t.isDateBased=function(){_("isDateBased")},t.isTimeBased=function(){_("isTimeBased")},t.baseUnit=function(){_("baseUnit")},t.rangeUnit=function(){_("rangeUnit")},t.range=function(){_("range")},t.rangeRefinedBy=function(e){_("rangeRefinedBy")},t.getFrom=function(e){_("getFrom")},t.adjustInto=function(e,t){_("adjustInto")},t.isSupportedBy=function(e){_("isSupportedBy")},t.displayName=function(){_("displayName")},t.equals=function(e){_("equals")},t.name=function(){_("name")},e}(),N=function(){function e(e,t,n,r){d(!(e>t),"Smallest minimum value '"+e+"' must be less than largest minimum value '"+t+"'",u),d(!(n>r),"Smallest maximum value '"+n+"' must be less than largest maximum value '"+r+"'",u),d(!(t>r),"Minimum value '"+t+"' must be less than maximum value '"+r+"'",u),this._minSmallest=e,this._minLargest=t,this._maxLargest=r,this._maxSmallest=n}var t=e.prototype;return t.isFixed=function(){return this._minSmallest===this._minLargest&&this._maxSmallest===this._maxLargest},t.minimum=function(){return this._minSmallest},t.largestMinimum=function(){return this._minLargest},t.maximum=function(){return this._maxLargest},t.smallestMaximum=function(){return this._maxSmallest},t.isValidValue=function(e){return this.minimum()<=e&&e<=this.maximum()},t.checkValidValue=function(e,t){return this.isValidValue(e)?e:d(!1,null!=t?"Invalid value for "+t+" (valid values "+this.toString()+"): "+e:"Invalid value (valid values "+this.toString()+"): "+e,o)},t.checkValidIntValue=function(e,t){if(!1===this.isValidIntValue(e))throw new o("Invalid int value for "+t+": "+e);return e},t.isValidIntValue=function(e){return this.isIntValue()&&this.isValidValue(e)},t.isIntValue=function(){return this.minimum()>=v.MIN_SAFE_INTEGER&&this.maximum()<=v.MAX_SAFE_INTEGER},t.equals=function(t){return t===this||t instanceof e&&this._minSmallest===t._minSmallest&&this._minLargest===t._minLargest&&this._maxSmallest===t._maxSmallest&&this._maxLargest===t._maxLargest},t.hashCode=function(){return v.hashCode(this._minSmallest,this._minLargest,this._maxSmallest,this._maxLargest)},t.toString=function(){var e=this.minimum()+(this.minimum()!==this.largestMinimum()?"/"+this.largestMinimum():"");return(e+=" - ")+(this.smallestMaximum()+(this.smallestMaximum()!==this.maximum()?"/"+this.maximum():""))},e.of=function(){return 2===arguments.length?new e(arguments[0],arguments[0],arguments[1],arguments[1]):3===arguments.length?new e(arguments[0],arguments[0],arguments[1],arguments[2]):4===arguments.length?new e(arguments[0],arguments[1],arguments[2],arguments[3]):d(!1,"Invalid number of arguments "+arguments.length,u)},e}(),C=function(e){function t(t,n,r,o){var i;return(i=e.call(this)||this)._name=t,i._baseUnit=n,i._rangeUnit=r,i._range=o,i}h(t,e),t.byName=function(e){for(var n in t)if(t[n]&&t[n]instanceof t&&t[n].name()===e)return t[n]};var n=t.prototype;return n.name=function(){return this._name},n.baseUnit=function(){return this._baseUnit},n.rangeUnit=function(){return this._rangeUnit},n.range=function(){return this._range},n.displayName=function(){return this.toString()},n.checkValidValue=function(e){return this.range().checkValidValue(e,this)},n.checkValidIntValue=function(e){return this.range().checkValidIntValue(e,this)},n.isDateBased=function(){return this===t.DAY_OF_WEEK||this===t.ALIGNED_DAY_OF_WEEK_IN_MONTH||this===t.ALIGNED_DAY_OF_WEEK_IN_YEAR||this===t.DAY_OF_MONTH||this===t.DAY_OF_YEAR||this===t.EPOCH_DAY||this===t.ALIGNED_WEEK_OF_MONTH||this===t.ALIGNED_WEEK_OF_YEAR||this===t.MONTH_OF_YEAR||this===t.PROLEPTIC_MONTH||this===t.YEAR_OF_ERA||this===t.YEAR||this===t.ERA},n.isTimeBased=function(){return this===t.NANO_OF_SECOND||this===t.NANO_OF_DAY||this===t.MICRO_OF_SECOND||this===t.MICRO_OF_DAY||this===t.MILLI_OF_SECOND||this===t.MILLI_OF_DAY||this===t.SECOND_OF_MINUTE||this===t.SECOND_OF_DAY||this===t.MINUTE_OF_HOUR||this===t.MINUTE_OF_DAY||this===t.HOUR_OF_AMPM||this===t.CLOCK_HOUR_OF_AMPM||this===t.HOUR_OF_DAY||this===t.CLOCK_HOUR_OF_DAY||this===t.AMPM_OF_DAY},n.rangeRefinedBy=function(e){return e.range(this)},n.getFrom=function(e){return e.getLong(this)},n.toString=function(){return this.name()},n.equals=function(e){return this===e},n.adjustInto=function(e,t){return e.with(this,t)},n.isSupportedBy=function(e){return e.isSupported(this)},t}(I),D=function(){function e(){}return e.zoneId=function(){return e.ZONE_ID},e.chronology=function(){return e.CHRONO},e.precision=function(){return e.PRECISION},e.zone=function(){return e.ZONE},e.offset=function(){return e.OFFSET},e.localDate=function(){return e.LOCAL_DATE},e.localTime=function(){return e.LOCAL_TIME},e}(),L=function(){function e(){}var t=e.prototype;return t.query=function(e){return e===D.zoneId()||e===D.chronology()||e===D.precision()?null:e.queryFrom(this)},t.get=function(e){return this.range(e).checkValidIntValue(this.getLong(e),e)},t.getLong=function(e){_("getLong")},t.range=function(e){if(e instanceof C){if(this.isSupported(e))return e.range();throw new s("Unsupported field: "+e)}return e.rangeRefinedBy(this)},t.isSupported=function(e){_("isSupported")},e}(),M=function(e){function t(){return e.apply(this,arguments)||this}return h(t,e),t.prototype.queryFrom=function(e){_("queryFrom")},t}(b);function x(e,t){var n=function(e){function t(){return e.apply(this,arguments)||this}return h(t,e),t}(M);return n.prototype.queryFrom=t,new n(e)}var B,P,F=function(e){function t(t,n){var r;return(r=e.call(this)||this)._ordinal=t,r._name=n,r}h(t,e);var n=t.prototype;return n.ordinal=function(){return this._ordinal},n.name=function(){return this._name},t.values=function(){return B.slice()},t.valueOf=function(e){for(var n=0;n7)throw new o("Invalid value for DayOfWeek: "+e);return B[e-1]},t.from=function(e){if(d(null!=e,"temporal",l),e instanceof t)return e;try{return t.of(e.get(C.DAY_OF_WEEK))}catch(t){throw t instanceof o?new o("Unable to obtain DayOfWeek from TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""),t):t}},n.value=function(){return this._ordinal+1},n.displayName=function(e,t){throw new u("Pattern using (localized) text not implemented yet!")},n.isSupported=function(e){return e instanceof C?e===C.DAY_OF_WEEK:null!=e&&e.isSupportedBy(this)},n.range=function(e){if(e===C.DAY_OF_WEEK)return e.range();if(e instanceof C)throw new s("Unsupported field: "+e);return e.rangeRefinedBy(this)},n.get=function(e){return e===C.DAY_OF_WEEK?this.value():this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(e===C.DAY_OF_WEEK)return this.value();if(e instanceof C)throw new s("Unsupported field: "+e);return e.getFrom(this)},n.plus=function(e){var t=v.floorMod(e,7);return B[v.floorMod(this._ordinal+(t+7),7)]},n.minus=function(e){return this.plus(-1*v.floorMod(e,7))},n.query=function(e){return e===D.precision()?S.DAYS:e===D.localDate()||e===D.localTime()||e===D.chronology()||e===D.zone()||e===D.zoneId()||e===D.offset()?null:(d(null!=e,"query",l),e.queryFrom(this))},n.adjustInto=function(e){return E(e,"temporal"),e.with(C.DAY_OF_WEEK,this.value())},n.equals=function(e){return this===e},n.toString=function(){return this._name},n.compareTo=function(e){return E(e,"other"),m(e,t,"other"),this._ordinal-e._ordinal},n.toJSON=function(){return this.toString()},t}(L),U=function(e){function t(t,n){var r;return(r=e.call(this)||this)._value=v.safeToInt(t),r._name=n,r}h(t,e);var n=t.prototype;return n.value=function(){return this._value},n.ordinal=function(){return this._value-1},n.name=function(){return this._name},n.displayName=function(e,t){throw new u("Pattern using (localized) text not implemented yet!")},n.isSupported=function(e){return null!==e&&(e instanceof C?e===C.MONTH_OF_YEAR:null!=e&&e.isSupportedBy(this))},n.get=function(e){return e===C.MONTH_OF_YEAR?this.value():this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(e===C.MONTH_OF_YEAR)return this.value();if(e instanceof C)throw new s("Unsupported field: "+e);return e.getFrom(this)},n.plus=function(e){var n=v.intMod(e,12)+12,r=v.intMod(this.value()+n,12);return r=0===r?12:r,t.of(r)},n.minus=function(e){return this.plus(-1*v.intMod(e,12))},n.length=function(e){switch(this){case t.FEBRUARY:return e?29:28;case t.APRIL:case t.JUNE:case t.SEPTEMBER:case t.NOVEMBER:return 30;default:return 31}},n.minLength=function(){switch(this){case t.FEBRUARY:return 28;case t.APRIL:case t.JUNE:case t.SEPTEMBER:case t.NOVEMBER:return 30;default:return 31}},n.maxLength=function(){switch(this){case t.FEBRUARY:return 29;case t.APRIL:case t.JUNE:case t.SEPTEMBER:case t.NOVEMBER:return 30;default:return 31}},n.firstDayOfYear=function(e){var n=e?1:0;switch(this){case t.JANUARY:return 1;case t.FEBRUARY:return 32;case t.MARCH:return 60+n;case t.APRIL:return 91+n;case t.MAY:return 121+n;case t.JUNE:return 152+n;case t.JULY:return 182+n;case t.AUGUST:return 213+n;case t.SEPTEMBER:return 244+n;case t.OCTOBER:return 274+n;case t.NOVEMBER:return 305+n;case t.DECEMBER:default:return 335+n}},n.firstMonthOfQuarter=function(){switch(this){case t.JANUARY:case t.FEBRUARY:case t.MARCH:return t.JANUARY;case t.APRIL:case t.MAY:case t.JUNE:return t.APRIL;case t.JULY:case t.AUGUST:case t.SEPTEMBER:return t.JULY;case t.OCTOBER:case t.NOVEMBER:case t.DECEMBER:default:return t.OCTOBER}},n.query=function(t){return d(null!=t,"query() parameter must not be null",o),t===D.chronology()?nt.INSTANCE:t===D.precision()?S.MONTHS:e.prototype.query.call(this,t)},n.toString=function(){switch(this){case t.JANUARY:return"JANUARY";case t.FEBRUARY:return"FEBRUARY";case t.MARCH:return"MARCH";case t.APRIL:return"APRIL";case t.MAY:return"MAY";case t.JUNE:return"JUNE";case t.JULY:return"JULY";case t.AUGUST:return"AUGUST";case t.SEPTEMBER:return"SEPTEMBER";case t.OCTOBER:return"OCTOBER";case t.NOVEMBER:return"NOVEMBER";case t.DECEMBER:return"DECEMBER";default:return"unknown Month, value: "+this.value()}},n.toJSON=function(){return this.toString()},n.adjustInto=function(e){return e.with(C.MONTH_OF_YEAR,this.value())},n.compareTo=function(e){return E(e,"other"),m(e,t,"other"),this._value-e._value},n.equals=function(e){return this===e},t.valueOf=function(e){for(var n=0;n12)&&d(!1,"Invalid value for MonthOfYear: "+e,o),P[e-1]},t.from=function(e){if(e instanceof t)return e;try{return t.of(e.get(C.MONTH_OF_YEAR))}catch(t){throw new o("Unable to obtain Month from TemporalAccessor: "+e+" of type "+(e&&null!=e.constructor?e.constructor.name:""),t)}},t}(L),k=/([-+]?)P(?:([-+]?[0-9]+)Y)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)W)?(?:([-+]?[0-9]+)D)?/,j=function(e){function t(n,r,o){var i;i=e.call(this)||this;var s=v.safeToInt(n),a=v.safeToInt(r),u=v.safeToInt(o);return 0===s&&0===a&&0===u?(t.ZERO||(i._years=s,i._months=a,i._days=u,t.ZERO=p(i)),t.ZERO||p(i)):(i._years=s,i._months=a,i._days=u,i)}h(t,e),t.ofYears=function(e){return t.create(e,0,0)},t.ofMonths=function(e){return t.create(0,e,0)},t.ofWeeks=function(e){return t.create(0,0,v.safeMultiply(e,7))},t.ofDays=function(e){return t.create(0,0,e)},t.of=function(e,n,r){return t.create(e,n,r)},t.from=function(e){if(e instanceof t)return e;E(e,"amount");for(var n=0,r=0,i=0,s=e.units(),a=0;at.MAX_SECONDS)throw new o("Zone offset not in valid range: -18:00 to +18:00")},t._validate=function(e,t,n){if(e<-18||e>18)throw new o("Zone offset hours not in valid range: value "+e+" is not in the range -18 to 18");if(e>0){if(t<0||n<0)throw new o("Zone offset minutes and seconds must be positive because hours is positive")}else if(e<0){if(t>0||n>0)throw new o("Zone offset minutes and seconds must be negative because hours is negative")}else if(t>0&&n<0||t<0&&n>0)throw new o("Zone offset minutes and seconds must have the same sign");if(Math.abs(t)>59)throw new o("Zone offset minutes not in valid range: abs(value) "+Math.abs(t)+" is not in the range 0 to 59");if(Math.abs(n)>59)throw new o("Zone offset seconds not in valid range: abs(value) "+Math.abs(n)+" is not in the range 0 to 59");if(18===Math.abs(e)&&(Math.abs(t)>0||Math.abs(n)>0))throw new o("Zone offset not in valid range: -18:00 to +18:00")},t.of=function(e){E(e,"offsetId");var n,r,i,s=J[e];if(null!=s)return s;switch(e.length){case 2:e=e[0]+"0"+e[1];case 3:n=t._parseNumber(e,1,!1),r=0,i=0;break;case 5:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,3,!1),i=0;break;case 6:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,4,!0),i=0;break;case 7:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,3,!1),i=t._parseNumber(e,5,!1);break;case 9:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,4,!0),i=t._parseNumber(e,7,!0);break;default:throw new o("Invalid ID for ZoneOffset, invalid format: "+e)}var a=e[0];if("+"!==a&&"-"!==a)throw new o("Invalid ID for ZoneOffset, plus/minus not found when expected: "+e);return"-"===a?t.ofHoursMinutesSeconds(-n,-r,-i):t.ofHoursMinutesSeconds(n,r,i)},t._parseNumber=function(e,t,n){if(n&&":"!==e[t-1])throw new o("Invalid ID for ZoneOffset, colon not found when expected: "+e);var r=e[t],i=e[t+1];if(r<"0"||r>"9"||i<"0"||i>"9")throw new o("Invalid ID for ZoneOffset, non numeric characters found: "+e);return 10*(r.charCodeAt(0)-48)+(i.charCodeAt(0)-48)},t.ofHours=function(e){return t.ofHoursMinutesSeconds(e,0,0)},t.ofHoursMinutes=function(e,n){return t.ofHoursMinutesSeconds(e,n,0)},t.ofHoursMinutesSeconds=function(e,n,r){t._validate(e,n,r);var o=e*ft.SECONDS_PER_HOUR+n*ft.SECONDS_PER_MINUTE+r;return t.ofTotalSeconds(o)},t.ofTotalMinutes=function(e){var n=e*ft.SECONDS_PER_MINUTE;return t.ofTotalSeconds(n)},t.ofTotalSeconds=function(e){if(e%(15*ft.SECONDS_PER_MINUTE)==0){var n=e,r=X[n];return null==r&&(r=new t(e),X[n]=r,J[r.id()]=r),r}return new t(e)},n.rules=function(){return this._rules},n.get=function(e){return this.getLong(e)},n.getLong=function(e){if(e===C.OFFSET_SECONDS)return this._totalSeconds;if(e instanceof C)throw new o("Unsupported field: "+e);return e.getFrom(this)},n.query=function(e){return E(e,"query"),e===D.offset()||e===D.zone()?this:e===D.localDate()||e===D.localTime()||e===D.precision()||e===D.chronology()||e===D.zoneId()?null:e.queryFrom(this)},n.adjustInto=function(e){return e.with(C.OFFSET_SECONDS,this._totalSeconds)},n.compareTo=function(e){return E(e,"other"),e._totalSeconds-this._totalSeconds},n.equals=function(e){return this===e||e instanceof t&&this._totalSeconds===e._totalSeconds},n.hashCode=function(){return this._totalSeconds},n.toString=function(){return this._id},t}(z),Z=function(e){function t(){var t;return(t=e.call(this)||this).fieldValues=new V,t.chrono=null,t.zone=null,t.date=null,t.time=null,t.leapSecond=!1,t.excessDays=null,t}h(t,e),t.create=function(e,n){var r=new t;return r._addFieldValue(e,n),r};var n=t.prototype;return n.getFieldValue0=function(e){return this.fieldValues.get(e)},n._addFieldValue=function(e,t){E(e,"field");var n=this.getFieldValue0(e);if(null!=n&&n!==t)throw new o("Conflict found: "+e+" "+n+" differs from "+e+" "+t+": "+this);return this._putFieldValue0(e,t)},n._putFieldValue0=function(e,t){return this.fieldValues.put(e,t),this},n.resolve=function(e,t){return null!=t&&this.fieldValues.retainAll(t),this._mergeDate(e),this._mergeTime(e),this._resolveTimeInferZeroes(e),null!=this.excessDays&&!1===this.excessDays.isZero()&&null!=this.date&&null!=this.time&&(this.date=this.date.plus(this.excessDays),this.excessDays=j.ZERO),this._resolveInstant(),this},n._mergeDate=function(e){this._checkDate(nt.INSTANCE.resolveDate(this.fieldValues,e))},n._checkDate=function(e){if(null!=e)for(var t in this._addObject(e),this.fieldValues.keySet()){var n=C.byName(t);if(n&&void 0!==this.fieldValues.get(n)&&n.isDateBased()){var r=void 0;try{r=e.getLong(n)}catch(e){if(e instanceof o)continue;throw e}var i=this.fieldValues.get(n);if(r!==i)throw new o("Conflict found: Field "+n+" "+r+" differs from "+n+" "+i+" derived from "+e)}}},n._mergeTime=function(e){if(this.fieldValues.containsKey(C.CLOCK_HOUR_OF_DAY)){var t=this.fieldValues.remove(C.CLOCK_HOUR_OF_DAY);e!==Y.LENIENT&&(e===Y.SMART&&0===t||C.CLOCK_HOUR_OF_DAY.checkValidValue(t)),this._addFieldValue(C.HOUR_OF_DAY,24===t?0:t)}if(this.fieldValues.containsKey(C.CLOCK_HOUR_OF_AMPM)){var n=this.fieldValues.remove(C.CLOCK_HOUR_OF_AMPM);e!==Y.LENIENT&&(e===Y.SMART&&0===n||C.CLOCK_HOUR_OF_AMPM.checkValidValue(n)),this._addFieldValue(C.HOUR_OF_AMPM,12===n?0:n)}if(e!==Y.LENIENT&&(this.fieldValues.containsKey(C.AMPM_OF_DAY)&&C.AMPM_OF_DAY.checkValidValue(this.fieldValues.get(C.AMPM_OF_DAY)),this.fieldValues.containsKey(C.HOUR_OF_AMPM)&&C.HOUR_OF_AMPM.checkValidValue(this.fieldValues.get(C.HOUR_OF_AMPM))),this.fieldValues.containsKey(C.AMPM_OF_DAY)&&this.fieldValues.containsKey(C.HOUR_OF_AMPM)){var r=this.fieldValues.remove(C.AMPM_OF_DAY),o=this.fieldValues.remove(C.HOUR_OF_AMPM);this._addFieldValue(C.HOUR_OF_DAY,12*r+o)}if(this.fieldValues.containsKey(C.NANO_OF_DAY)){var i=this.fieldValues.remove(C.NANO_OF_DAY);e!==Y.LENIENT&&C.NANO_OF_DAY.checkValidValue(i),this._addFieldValue(C.SECOND_OF_DAY,v.intDiv(i,1e9)),this._addFieldValue(C.NANO_OF_SECOND,v.intMod(i,1e9))}if(this.fieldValues.containsKey(C.MICRO_OF_DAY)){var s=this.fieldValues.remove(C.MICRO_OF_DAY);e!==Y.LENIENT&&C.MICRO_OF_DAY.checkValidValue(s),this._addFieldValue(C.SECOND_OF_DAY,v.intDiv(s,1e6)),this._addFieldValue(C.MICRO_OF_SECOND,v.intMod(s,1e6))}if(this.fieldValues.containsKey(C.MILLI_OF_DAY)){var a=this.fieldValues.remove(C.MILLI_OF_DAY);e!==Y.LENIENT&&C.MILLI_OF_DAY.checkValidValue(a),this._addFieldValue(C.SECOND_OF_DAY,v.intDiv(a,1e3)),this._addFieldValue(C.MILLI_OF_SECOND,v.intMod(a,1e3))}if(this.fieldValues.containsKey(C.SECOND_OF_DAY)){var u=this.fieldValues.remove(C.SECOND_OF_DAY);e!==Y.LENIENT&&C.SECOND_OF_DAY.checkValidValue(u),this._addFieldValue(C.HOUR_OF_DAY,v.intDiv(u,3600)),this._addFieldValue(C.MINUTE_OF_HOUR,v.intMod(v.intDiv(u,60),60)),this._addFieldValue(C.SECOND_OF_MINUTE,v.intMod(u,60))}if(this.fieldValues.containsKey(C.MINUTE_OF_DAY)){var c=this.fieldValues.remove(C.MINUTE_OF_DAY);e!==Y.LENIENT&&C.MINUTE_OF_DAY.checkValidValue(c),this._addFieldValue(C.HOUR_OF_DAY,v.intDiv(c,60)),this._addFieldValue(C.MINUTE_OF_HOUR,v.intMod(c,60))}if(e!==Y.LENIENT&&(this.fieldValues.containsKey(C.MILLI_OF_SECOND)&&C.MILLI_OF_SECOND.checkValidValue(this.fieldValues.get(C.MILLI_OF_SECOND)),this.fieldValues.containsKey(C.MICRO_OF_SECOND)&&C.MICRO_OF_SECOND.checkValidValue(this.fieldValues.get(C.MICRO_OF_SECOND))),this.fieldValues.containsKey(C.MILLI_OF_SECOND)&&this.fieldValues.containsKey(C.MICRO_OF_SECOND)){var l=this.fieldValues.remove(C.MILLI_OF_SECOND),h=this.fieldValues.get(C.MICRO_OF_SECOND);this._putFieldValue0(C.MICRO_OF_SECOND,1e3*l+v.intMod(h,1e3))}if(this.fieldValues.containsKey(C.MICRO_OF_SECOND)&&this.fieldValues.containsKey(C.NANO_OF_SECOND)){var f=this.fieldValues.get(C.NANO_OF_SECOND);this._putFieldValue0(C.MICRO_OF_SECOND,v.intDiv(f,1e3)),this.fieldValues.remove(C.MICRO_OF_SECOND)}if(this.fieldValues.containsKey(C.MILLI_OF_SECOND)&&this.fieldValues.containsKey(C.NANO_OF_SECOND)){var p=this.fieldValues.get(C.NANO_OF_SECOND);this._putFieldValue0(C.MILLI_OF_SECOND,v.intDiv(p,1e6)),this.fieldValues.remove(C.MILLI_OF_SECOND)}if(this.fieldValues.containsKey(C.MICRO_OF_SECOND)){var d=this.fieldValues.remove(C.MICRO_OF_SECOND);this._putFieldValue0(C.NANO_OF_SECOND,1e3*d)}else if(this.fieldValues.containsKey(C.MILLI_OF_SECOND)){var E=this.fieldValues.remove(C.MILLI_OF_SECOND);this._putFieldValue0(C.NANO_OF_SECOND,1e6*E)}},n._resolveTimeInferZeroes=function(e){var t=this.fieldValues.get(C.HOUR_OF_DAY),n=this.fieldValues.get(C.MINUTE_OF_HOUR),r=this.fieldValues.get(C.SECOND_OF_MINUTE),o=this.fieldValues.get(C.NANO_OF_SECOND);if(null!=t&&(null!=n||null==r&&null==o)&&(null==n||null!=r||null==o)){if(e!==Y.LENIENT){if(null!=t){e!==Y.SMART||24!==t||null!=n&&0!==n||null!=r&&0!==r||null!=o&&0!==o||(t=0,this.excessDays=j.ofDays(1));var i=C.HOUR_OF_DAY.checkValidIntValue(t);if(null!=n){var s=C.MINUTE_OF_HOUR.checkValidIntValue(n);if(null!=r){var a=C.SECOND_OF_MINUTE.checkValidIntValue(r);if(null!=o){var u=C.NANO_OF_SECOND.checkValidIntValue(o);this._addObject(ft.of(i,s,a,u))}else this._addObject(ft.of(i,s,a))}else null==o&&this._addObject(ft.of(i,s))}else null==r&&null==o&&this._addObject(ft.of(i,0))}}else if(null!=t){var c=t;if(null!=n)if(null!=r){null==o&&(o=0);var l=v.safeMultiply(c,36e11);l=v.safeAdd(l,v.safeMultiply(n,6e10)),l=v.safeAdd(l,v.safeMultiply(r,1e9)),l=v.safeAdd(l,o);var h=v.floorDiv(l,864e11),f=v.floorMod(l,864e11);this._addObject(ft.ofNanoOfDay(f)),this.excessDays=j.ofDays(h)}else{var p=v.safeMultiply(c,3600);p=v.safeAdd(p,v.safeMultiply(n,60));var d=v.floorDiv(p,86400),E=v.floorMod(p,86400);this._addObject(ft.ofSecondOfDay(E)),this.excessDays=j.ofDays(d)}else{var m=v.safeToInt(v.floorDiv(c,24));c=v.floorMod(c,24),this._addObject(ft.of(c,0)),this.excessDays=j.ofDays(m)}}this.fieldValues.remove(C.HOUR_OF_DAY),this.fieldValues.remove(C.MINUTE_OF_HOUR),this.fieldValues.remove(C.SECOND_OF_MINUTE),this.fieldValues.remove(C.NANO_OF_SECOND)}},n._addObject=function(e){e instanceof Q?this.date=e:e instanceof ft&&(this.time=e)},n._resolveInstant=function(){if(null!=this.date&&null!=this.time){var e=this.fieldValues.get(C.OFFSET_SECONDS);if(null!=e){var t=$.ofTotalSeconds(e),n=this.date.atTime(this.time).atZone(t).getLong(C.INSTANT_SECONDS);this.fieldValues.put(C.INSTANT_SECONDS,n)}else if(null!=this.zone){var r=this.date.atTime(this.time).atZone(this.zone).getLong(C.INSTANT_SECONDS);this.fieldValues.put(C.INSTANT_SECONDS,r)}}},n.build=function(e){return e.queryFrom(this)},n.isSupported=function(e){return null!=e&&(this.fieldValues.containsKey(e)&&void 0!==this.fieldValues.get(e)||null!=this.date&&this.date.isSupported(e)||null!=this.time&&this.time.isSupported(e))},n.getLong=function(e){E(e,"field");var t=this.getFieldValue0(e);if(null==t){if(null!=this.date&&this.date.isSupported(e))return this.date.getLong(e);if(null!=this.time&&this.time.isSupported(e))return this.time.getLong(e);throw new o("Field not found: "+e)}return t},n.query=function(e){return e===D.zoneId()?this.zone:e===D.chronology()?this.chrono:e===D.localDate()?null!=this.date?ct.from(this.date):null:e===D.localTime()?this.time:e===D.zone()||e===D.offset()?e.queryFrom(this):e===D.precision()?null:e.queryFrom(this)},t}(L),ee=function(){function e(){if(1===arguments.length){if(arguments[0]instanceof e)return void this._constructorSelf.apply(this,arguments);this._constructorFormatter.apply(this,arguments)}else this._constructorParam.apply(this,arguments);this._caseSensitive=!0,this._strict=!0,this._parsed=[new te(this)]}var t=e.prototype;return t._constructorParam=function(e,t,n){this._locale=e,this._symbols=t,this._overrideChronology=n},t._constructorFormatter=function(e){this._locale=e.locale(),this._symbols=e.decimalStyle(),this._overrideChronology=e.chronology()},t._constructorSelf=function(e){this._locale=e._locale,this._symbols=e._symbols,this._overrideChronology=e._overrideChronology,this._overrideZone=e._overrideZone,this._caseSensitive=e._caseSensitive,this._strict=e._strict,this._parsed=[new te(this)]},t.copy=function(){return new e(this)},t.symbols=function(){return this._symbols},t.isStrict=function(){return this._strict},t.setStrict=function(e){this._strict=e},t.locale=function(){return this._locale},t.setLocale=function(e){this._locale=e},t.startOptional=function(){this._parsed.push(this.currentParsed().copy())},t.endOptional=function(e){e?this._parsed.splice(this._parsed.length-2,1):this._parsed.splice(this._parsed.length-1,1)},t.isCaseSensitive=function(){return this._caseSensitive},t.setCaseSensitive=function(e){this._caseSensitive=e},t.subSequenceEquals=function(e,t,n,r,o){if(t+o>e.length||r+o>n.length)return!1;this.isCaseSensitive()||(e=e.toLowerCase(),n=n.toLowerCase());for(var i=0;i0)return null;throw e}},t.temporal=function(){return this._temporal},t.locale=function(){return this._locale},t.setDateTime=function(e){this._temporal=e},t.setLocale=function(e){this._locale=e},e}(),re={},oe=[0,90,181,273,0,91,182,274],ie=function(e){function t(){return e.apply(this,arguments)||this}h(t,e);var n=t.prototype;return n.isDateBased=function(){return!0},n.isTimeBased=function(){return!1},n._isIso=function(){return!0},t._getWeekRangeByLocalDate=function(e){var n=t._getWeekBasedYear(e);return N.of(1,t._getWeekRangeByYear(n))},t._getWeekRangeByYear=function(e){var t=ct.of(e,1,1);return t.dayOfWeek()===F.THURSDAY||t.dayOfWeek()===F.WEDNESDAY&&t.isLeapYear()?53:52},t._getWeek=function(e){var n=e.dayOfWeek().ordinal(),r=e.dayOfYear()-1,o=r+(3-n),i=o-7*v.intDiv(o,7)-3;if(i<-3&&(i+=7),r=363){var r=e.dayOfWeek().ordinal();(n=n-363-(e.isLeapYear()?1:0))-r>=0&&t++}return t},n.displayName=function(){return this.toString()},n.resolve=function(){return null},n.name=function(){return this.toString()},t}(I),se=function(e){function t(){return e.apply(this,arguments)||this}h(t,e);var n=t.prototype;return n.toString=function(){return"DayOfQuarter"},n.baseUnit=function(){return S.DAYS},n.rangeUnit=function(){return me},n.range=function(){return N.of(1,90,92)},n.isSupportedBy=function(e){return e.isSupported(C.DAY_OF_YEAR)&&e.isSupported(C.MONTH_OF_YEAR)&&e.isSupported(C.YEAR)&&this._isIso(e)},n.rangeRefinedBy=function(e){if(!1===e.isSupported(this))throw new s("Unsupported field: DayOfQuarter");var t=e.getLong(fe);if(1===t){var n=e.getLong(C.YEAR);return nt.isLeapYear(n)?N.of(1,91):N.of(1,90)}return 2===t?N.of(1,91):3===t||4===t?N.of(1,92):this.range()},n.getFrom=function(e){if(!1===e.isSupported(this))throw new s("Unsupported field: DayOfQuarter");var t=e.get(C.DAY_OF_YEAR),n=e.get(C.MONTH_OF_YEAR),r=e.getLong(C.YEAR);return t-oe[v.intDiv(n-1,3)+(nt.isLeapYear(r)?4:0)]},n.adjustInto=function(e,t){var n=this.getFrom(e);return this.range().checkValidValue(t,this),e.with(C.DAY_OF_YEAR,e.getLong(C.DAY_OF_YEAR)+(t-n))},n.resolve=function(e,t,n){var r=e.get(C.YEAR),o=e.get(fe);if(null==r||null==o)return null;var i,s=C.YEAR.checkValidIntValue(r),a=e.get(he);if(n===Y.LENIENT){var u=o;i=(i=(i=ct.of(s,1,1)).plusMonths(v.safeMultiply(v.safeSubtract(u,1),3))).plusDays(v.safeSubtract(a,1))}else{var c=fe.range().checkValidIntValue(o,fe);if(n===Y.STRICT){var l=92;1===c?l=nt.isLeapYear(s)?91:90:2===c&&(l=91),N.of(1,l).checkValidValue(a,this)}else this.range().checkValidValue(a,this);i=ct.of(s,3*(c-1)+1,1).plusDays(a-1)}return e.remove(this),e.remove(C.YEAR),e.remove(fe),i},t}(ie),ae=function(e){function t(){return e.apply(this,arguments)||this}h(t,e);var n=t.prototype;return n.toString=function(){return"QuarterOfYear"},n.baseUnit=function(){return me},n.rangeUnit=function(){return S.YEARS},n.range=function(){return N.of(1,4)},n.isSupportedBy=function(e){return e.isSupported(C.MONTH_OF_YEAR)&&this._isIso(e)},n.rangeRefinedBy=function(e){return this.range()},n.getFrom=function(e){if(!1===e.isSupported(this))throw new s("Unsupported field: QuarterOfYear");var t=e.getLong(C.MONTH_OF_YEAR);return v.intDiv(t+2,3)},n.adjustInto=function(e,t){var n=this.getFrom(e);return this.range().checkValidValue(t,this),e.with(C.MONTH_OF_YEAR,e.getLong(C.MONTH_OF_YEAR)+3*(t-n))},t}(ie),ue=function(e){function t(){return e.apply(this,arguments)||this}h(t,e);var n=t.prototype;return n.toString=function(){return"WeekOfWeekBasedYear"},n.baseUnit=function(){return S.WEEKS},n.rangeUnit=function(){return Ee},n.range=function(){return N.of(1,52,53)},n.isSupportedBy=function(e){return e.isSupported(C.EPOCH_DAY)&&this._isIso(e)},n.rangeRefinedBy=function(e){if(!1===e.isSupported(this))throw new s("Unsupported field: WeekOfWeekBasedYear");return ie._getWeekRangeByLocalDate(ct.from(e))},n.getFrom=function(e){if(!1===e.isSupported(this))throw new s("Unsupported field: WeekOfWeekBasedYear");return ie._getWeek(ct.from(e))},n.adjustInto=function(e,t){return this.range().checkValidValue(t,this),e.plus(v.safeSubtract(t,this.getFrom(e)),S.WEEKS)},n.resolve=function(e,t,n){var r=e.get(de),o=e.get(C.DAY_OF_WEEK);if(null==r||null==o)return null;var i,s=de.range().checkValidIntValue(r,de),a=e.get(pe);if(n===Y.LENIENT){var u=o,c=0;u>7?(c=v.intDiv(u-1,7),u=v.intMod(u-1,7)+1):u<1&&(c=v.intDiv(u,7)-1,u=v.intMod(u,7)+7),i=ct.of(s,1,4).plusWeeks(a-1).plusWeeks(c).with(C.DAY_OF_WEEK,u)}else{var l=C.DAY_OF_WEEK.checkValidIntValue(o);if(n===Y.STRICT){var h=ct.of(s,1,4);ie._getWeekRangeByLocalDate(h).checkValidValue(a,this)}else this.range().checkValidValue(a,this);i=ct.of(s,1,4).plusWeeks(a-1).with(C.DAY_OF_WEEK,l)}return e.remove(this),e.remove(de),e.remove(C.DAY_OF_WEEK),i},n.displayName=function(){return"Week"},t}(ie),ce=function(e){function t(){return e.apply(this,arguments)||this}h(t,e);var n=t.prototype;return n.toString=function(){return"WeekBasedYear"},n.baseUnit=function(){return Ee},n.rangeUnit=function(){return S.FOREVER},n.range=function(){return C.YEAR.range()},n.isSupportedBy=function(e){return e.isSupported(C.EPOCH_DAY)&&this._isIso(e)},n.rangeRefinedBy=function(e){return C.YEAR.range()},n.getFrom=function(e){if(!1===e.isSupported(this))throw new s("Unsupported field: WeekBasedYear");return ie._getWeekBasedYear(ct.from(e))},n.adjustInto=function(e,t){if(!1===this.isSupportedBy(e))throw new s("Unsupported field: WeekBasedYear");var n=this.range().checkValidIntValue(t,de),r=ct.from(e),o=r.get(C.DAY_OF_WEEK),i=ie._getWeek(r);53===i&&52===ie._getWeekRangeByYear(n)&&(i=52);var a=ct.of(n,1,4),u=o-a.get(C.DAY_OF_WEEK)+7*(i-1);return a=a.plusDays(u),e.with(a)},t}(ie),le=function(e){function t(t,n){var r;return(r=e.call(this)||this)._name=t,r._duration=n,r}h(t,e);var n=t.prototype;return n.duration=function(){return this._duration},n.isDurationEstimated=function(){return!0},n.isDateBased=function(){return!0},n.isTimeBased=function(){return!1},n.isSupportedBy=function(e){return e.isSupported(C.EPOCH_DAY)},n.addTo=function(e,t){switch(this){case Ee:var n=v.safeAdd(e.get(de),t);return e.with(de,n);case me:return e.plus(v.intDiv(t,256),S.YEARS).plus(3*v.intMod(t,256),S.MONTHS);default:throw new c("Unreachable")}},n.between=function(e,t){switch(this){case Ee:return v.safeSubtract(t.getLong(de),e.getLong(de));case me:return v.intDiv(e.until(t,S.MONTHS),3);default:throw new c("Unreachable")}},n.toString=function(){return this._name},t}(w),he=null,fe=null,pe=null,de=null,Ee=null,me=null,_e=function(){function e(e,t,n,r){this._zeroDigit=e,this._zeroDigitCharCode=e.charCodeAt(0),this._positiveSign=t,this._negativeSign=n,this._decimalSeparator=r}var t=e.prototype;return t.positiveSign=function(){return this._positiveSign},t.withPositiveSign=function(t){return t===this._positiveSign?this:new e(this._zeroDigit,t,this._negativeSign,this._decimalSeparator)},t.negativeSign=function(){return this._negativeSign},t.withNegativeSign=function(t){return t===this._negativeSign?this:new e(this._zeroDigit,this._positiveSign,t,this._decimalSeparator)},t.zeroDigit=function(){return this._zeroDigit},t.withZeroDigit=function(t){return t===this._zeroDigit?this:new e(t,this._positiveSign,this._negativeSign,this._decimalSeparator)},t.decimalSeparator=function(){return this._decimalSeparator},t.withDecimalSeparator=function(t){return t===this._decimalSeparator?this:new e(this._zeroDigit,this._positiveSign,this._negativeSign,t)},t.convertToDigit=function(e){var t=e.charCodeAt(0)-this._zeroDigitCharCode;return t>=0&&t<=9?t:-1},t.convertNumberToI18N=function(e){if("0"===this._zeroDigit)return e;for(var t=this._zeroDigitCharCode-"0".charCodeAt(0),n="",r=0;r1)throw new u('invalid literal, too long: "'+e+'"');this._literal=e}var t=e.prototype;return t.print=function(e,t){return t.append(this._literal),!0},t.parse=function(e,t,n){if(n===t.length)return~n;var r=t.charAt(n);return!1===e.charEquals(this._literal,r)?~n:n+this._literal.length},t.toString=function(){return"'"===this._literal?"''":"'"+this._literal+"'"},e}(),ve=function(){function e(e,t){this._printerParsers=e,this._optional=t}var t=e.prototype;return t.withOptional=function(t){return t===this._optional?this:new e(this._printerParsers,t)},t.print=function(e,t){var n=t.length();this._optional&&e.startOptional();try{for(var r=0;r9)throw new u("Minimum width must be from 0 to 9 inclusive but was "+t);if(n<1||n>9)throw new u("Maximum width must be from 1 to 9 inclusive but was "+n);if(n0){this.decimalPoint&&t.append(r.decimalSeparator());for(var o=0;o0)for(;i.length>this.minWidth&&"0"===i[i.length-1];)i=i.substr(0,i.length-1);var a=i;a=r.convertNumberToI18N(a),this.decimalPoint&&t.append(r.decimalSeparator()),t.append(a)}return!0},t.parse=function(e,t,n){var r=e.isStrict()?this.minWidth:0,o=e.isStrict()?this.maxWidth:9,i=t.length;if(n===i)return r>0?~n:n;if(this.decimalPoint){if(t[n]!==e.symbols().decimalSeparator())return r>0?~n:n;n++}var s=n+r;if(s>i)return~n;for(var a=Math.min(n+o,i),u=0,c=n;c0&&this._minWidth===this._maxWidth&&this._signStyle===ge.NOT_NEGATIVE},t.print=function(e,t){var n=e.getValue(this._field);if(null==n)return!1;var r=this._getValue(e,n),i=e.symbols(),s=""+Math.abs(r);if(s.length>this._maxWidth)throw new o("Field "+this._field+" cannot be printed as the value "+r+" exceeds the maximum print width of "+this._maxWidth);if(s=i.convertNumberToI18N(s),r>=0)switch(this._signStyle){case ge.EXCEEDS_PAD:this._minWidth<15&&r>=Te[this._minWidth]&&t.append(i.positiveSign());break;case ge.ALWAYS:t.append(i.positiveSign())}else switch(this._signStyle){case ge.NORMAL:case ge.EXCEEDS_PAD:case ge.ALWAYS:t.append(i.negativeSign());break;case ge.NOT_NEGATIVE:throw new o("Field "+this._field+" cannot be printed as the value "+r+" cannot be negative according to the SignStyle")}for(var a=0;a=0&&nr)return~n;for(var l=(e.isStrict()||this._isFixedWidth()?this._maxWidth:9)+Math.max(this._subsequentWidth,0),h=0,f=n,p=0;p<2;p++){for(var E=Math.min(f+l,r);f15)throw new a("number text exceeds length");h=10*h+_}if(!(this._subsequentWidth>0&&0===p))break;var g=f-n;l=Math.max(u,g-this._subsequentWidth),f=n,h=0}if(i){if(0===h&&e.isStrict())return~(n-1);0!==h&&(h=-h)}else if(this._signStyle===ge.EXCEEDS_PAD&&e.isStrict()){var y=f-n;if(s){if(y<=this._minWidth)return~(n-1)}else if(y>this._minWidth)return~n}return this._setValue(e,h,n,f)},t._getValue=function(e,t){return t},t._setValue=function(e,t,n,r){return e.setParsedField(this._field,t,n,r)},t.toString=function(){return 1===this._minWidth&&15===this._maxWidth&&this._signStyle===ge.NORMAL?"Value("+this._field+")":this._minWidth===this._maxWidth&&this._signStyle===ge.NOT_NEGATIVE?"Value("+this._field+","+this._minWidth+")":"Value("+this._field+","+this._minWidth+","+this._maxWidth+","+this._signStyle+")"},e}(),Oe=function(e){function t(t,n,r,i,s){var a;if(a=e.call(this,t,n,r,ge.NOT_NEGATIVE)||this,n<1||n>10)throw new u("The width must be from 1 to 10 inclusive but was "+n);if(r<1||r>10)throw new u("The maxWidth must be from 1 to 10 inclusive but was "+r);if(rv.MAX_SAFE_INTEGER)throw new o("Unable to add printer-parser as the range exceeds the capacity of an int")}return a._baseValue=i,a._baseDate=s,a}h(t,e);var n=t.prototype;return n._getValue=function(e,t){var n=Math.abs(t),r=this._baseValue;return null!==this._baseDate&&(e.temporal(),r=nt.INSTANCE.date(this._baseDate).get(this._field)),t>=r&&t=0){var i=Te[this._minWidth],s=o-o%i;(t=o>0?s+t:s-t)=3||this.type>=1&&i>0)&&(t.append(this.type%2==0?":":"").appendChar(v.intDiv(i,10)+"0").appendChar(i%10+"0"),u+=i,(this.type>=7||this.type>=5&&s>0)&&(t.append(this.type%2==0?":":"").appendChar(v.intDiv(s,10)+"0").appendChar(s%10+"0"),u+=s)),0===u&&(t.setLength(a),t.append(this.noOffsetText))}return!0},t.parse=function(e,t,n){var r=t.length,o=this.noOffsetText.length;if(0===o){if(n===r)return e.setParsedField(C.OFFSET_SECONDS,0,n,n)}else{if(n===r)return~n;if(e.subSequenceEquals(t,n,this.noOffsetText,0,o))return e.setParsedField(C.OFFSET_SECONDS,0,n,n+o)}var i=t[n];if("+"===i||"-"===i){var s="-"===i?-1:1,a=[0,0,0,0];if(a[0]=n+1,!1===(this._parseNumber(a,1,t,!0)||this._parseNumber(a,2,t,this.type>=3)||this._parseNumber(a,3,t,!1))){var u=v.safeZero(s*(3600*a[1]+60*a[2]+a[3]));return e.setParsedField(C.OFFSET_SECONDS,u,n,a[0])}}return 0===o?e.setParsedField(C.OFFSET_SECONDS,0,n,n+o):~n},t._parseNumber=function(e,t,n,r){if((this.type+3)/21){if(o+1>n.length||":"!==n[o])return r;o++}if(o+2>n.length)return r;var i=n[o++],s=n[o++];if(i<"0"||i>"9"||s<"0"||s>"9")return r;var a=10*(i.charCodeAt(0)-48)+(s.charCodeAt(0)-48);return a<0||a>59?r:(e[t]=a,e[0]=o,!1)},t.toString=function(){var e=this.noOffsetText.replace("'","''");return"Offset("+Re[this.type]+",'"+e+"')"},e}();Se.INSTANCE_ID=new Se("Z","+HH:MM:ss"),Se.PATTERNS=Re;var Ie=function(){function e(e,t,n){this._printerParser=e,this._padWidth=t,this._padChar=n}var t=e.prototype;return t.print=function(e,t){var n=t.length();if(!1===this._printerParser.print(e,t))return!1;var r=t.length()-n;if(r>this._padWidth)throw new o("Cannot print as output of "+r+" characters exceeds pad width of "+this._padWidth);for(var i=0;it.length)),d(n>=0),n===t.length)return~n;var i=n+this._padWidth;if(i>t.length){if(r)return~n;i=t.length}for(var s=n;st.length||n<0)),!1===e.subSequenceEquals(t,n,this._literal,0,this._literal.length)?~n:n+this._literal.length},t.toString=function(){return"'"+this._literal.replace("'","''")+"'"},e}(),xe=function(){function e(){}return e.getRules=function(e){throw new o("unsupported ZoneId:"+e)},e.getAvailableZoneIds=function(){return[]},e}(),Be=function(e){function t(t,n){var r;return(r=e.call(this)||this)._id=t,r._rules=n,r}h(t,e),t.ofId=function(e){return new t(e,xe.getRules(e))};var n=t.prototype;return n.id=function(){return this._id},n.rules=function(){return this._rules},t}(z),Pe=function(){function e(e,t){this.query=e,this.description=t}var t=e.prototype;return t.print=function(e,t){var n=e.getValueQuery(this.query);return null!=n&&(t.append(n.id()),!0)},t.parse=function(e,t,n){var r=t.length;if(n>r)return~n;if(n===r)return~n;var o=t.charAt(n);if("+"===o||"-"===o){var i=e.copy(),s=Se.INSTANCE_ID.parse(i,t,n);if(s<0)return s;var a=i.getParsed(C.OFFSET_SECONDS),u=$.ofTotalSeconds(a);return e.setParsedZone(u),s}if(r>=n+2){var c=t.charAt(n+1);if(e.charEquals(o,"U")&&e.charEquals(c,"T"))return r>=n+3&&e.charEquals(t.charAt(n+2),"C")?this._parsePrefixedOffset(e,t,n,n+3):this._parsePrefixedOffset(e,t,n,n+2);if(e.charEquals(o,"G")&&r>=n+3&&e.charEquals(c,"M")&&e.charEquals(t.charAt(n+2),"T"))return this._parsePrefixedOffset(e,t,n,n+3)}if("SYSTEM"===t.substr(n,6))return e.setParsedZone(z.systemDefault()),n+6;if(e.charEquals(o,"Z"))return e.setParsedZone($.UTC),n+1;var l=xe.getAvailableZoneIds();ke.size!==l.length&&(ke=Fe.createTreeMap(l));for(var h=r-n,f=ke.treeMap,p=null,d=0;null!=f;){var E=t.substr(n,Math.min(f.length,h));null!=(f=f.get(E))&&f.isLeaf&&(p=E,d=f.length)}return null!=p?(e.setParsedZone(Be.ofId(p)),n+d):~n},t._parsePrefixedOffset=function(e,t,n,r){var o=t.substring(n,r).toUpperCase(),i=e.copy();if(rthis.length){var r=t.substr(0,this.length),o=this._treeMap[r];null==o&&(o=new e(n,!1),this._treeMap[r]=o),o.add(t)}},t.get=function(e){return this._treeMap[e]},e}(),ke=new Fe([]),je=15,Ge=function(){function e(){this._active=this,this._parent=null,this._printerParsers=[],this._optional=!1,this._padNextWidth=0,this._padNextChar=null,this._valueParserIndex=-1}e._of=function(t,n){E(t,"parent"),E(n,"optional");var r=new e;return r._parent=t,r._optional=n,r};var t=e.prototype;return t.parseCaseSensitive=function(){return this._appendInternalPrinterParser(Ne.SENSITIVE),this},t.parseCaseInsensitive=function(){return this._appendInternalPrinterParser(Ne.INSENSITIVE),this},t.parseStrict=function(){return this._appendInternalPrinterParser(Ne.STRICT),this},t.parseLenient=function(){return this._appendInternalPrinterParser(Ne.LENIENT),this},t.parseDefaulting=function(e,t){return E(e),this._appendInternal(new Qe(e,t)),this},t.appendValue=function(){return 1===arguments.length?this._appendValue1.apply(this,arguments):2===arguments.length?this._appendValue2.apply(this,arguments):this._appendValue4.apply(this,arguments)},t._appendValue1=function(e){return E(e),this._appendValuePrinterParser(new we(e,1,je,ge.NORMAL)),this},t._appendValue2=function(e,t){if(E(e),t<1||t>je)throw new u("The width must be from 1 to 15 inclusive but was "+t);var n=new we(e,t,t,ge.NOT_NEGATIVE);return this._appendValuePrinterParser(n),this},t._appendValue4=function(e,t,n,r){if(E(e),E(r),t===n&&r===ge.NOT_NEGATIVE)return this._appendValue2(e,n);if(t<1||t>je)throw new u("The minimum width must be from 1 to 15 inclusive but was "+t);if(n<1||n>je)throw new u("The minimum width must be from 1 to 15 inclusive but was "+n);if(n=0&&this._active._printerParsers[this._active._valueParserIndex]instanceof we){var t=this._active._valueParserIndex,n=this._active._printerParsers[t];e.minWidth()===e.maxWidth()&&e.signStyle()===ge.NOT_NEGATIVE?(n=n.withSubsequentWidth(e.maxWidth()),this._appendInternal(e.withFixedWidth()),this._active._valueParserIndex=t):(n=n.withFixedWidth(),this._active._valueParserIndex=this._appendInternal(e)),this._active._printerParsers[t]=n}else this._active._valueParserIndex=this._appendInternal(e);return this},t.appendFraction=function(e,t,n,r){return this._appendInternal(new be(e,t,n,r)),this},t.appendInstant=function(e){if(void 0===e&&(e=-2),e<-2||e>9)throw new u("Invalid fractional digits: "+e);return this._appendInternal(new He(e)),this},t.appendOffsetId=function(){return this._appendInternal(Se.INSTANCE_ID),this},t.appendOffset=function(e,t){return this._appendInternalPrinterParser(new Se(t,e)),this},t.appendZoneId=function(){return this._appendInternal(new Pe(D.zoneId(),"ZoneId()")),this},t.appendPattern=function(e){return E(e,"pattern"),this._parsePattern(e),this},t.appendZoneText=function(){throw new u("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t.appendText=function(){throw new u("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t.appendLocalizedOffset=function(){throw new u("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t.appendWeekField=function(){throw new u("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t._parsePattern=function(e){for(var t={G:C.ERA,y:C.YEAR_OF_ERA,u:C.YEAR,Q:re.QUARTER_OF_YEAR,q:re.QUARTER_OF_YEAR,M:C.MONTH_OF_YEAR,L:C.MONTH_OF_YEAR,D:C.DAY_OF_YEAR,d:C.DAY_OF_MONTH,F:C.ALIGNED_DAY_OF_WEEK_IN_MONTH,E:C.DAY_OF_WEEK,c:C.DAY_OF_WEEK,e:C.DAY_OF_WEEK,a:C.AMPM_OF_DAY,H:C.HOUR_OF_DAY,k:C.CLOCK_HOUR_OF_DAY,K:C.HOUR_OF_AMPM,h:C.CLOCK_HOUR_OF_AMPM,m:C.MINUTE_OF_HOUR,s:C.SECOND_OF_MINUTE,S:C.NANO_OF_SECOND,A:C.MILLI_OF_DAY,n:C.NANO_OF_SECOND,N:C.NANO_OF_DAY},n=0;n="A"&&r<="Z"||r>="a"&&r<="z"){for(var o=n++;n="A"&&r<="Z"||r>="a"&&r<="z")){for(s=i,o=n++;n4)throw new u("Too many pattern letters: "+r);4===i?this.appendZoneText(ye.FULL):this.appendZoneText(ye.SHORT)}else if("V"===r){if(2!==i)throw new u("Pattern letter count must be 2: "+r);this.appendZoneId()}else if("Z"===r)if(i<4)this.appendOffset("+HHMM","+0000");else if(4===i)this.appendLocalizedOffset(ye.FULL);else{if(5!==i)throw new u("Too many pattern letters: "+r);this.appendOffset("+HH:MM:ss","Z")}else if("O"===r)if(1===i)this.appendLocalizedOffset(ye.SHORT);else{if(4!==i)throw new u("Pattern letter count must be 1 or 4: "+r);this.appendLocalizedOffset(ye.FULL)}else if("X"===r){if(i>5)throw new u("Too many pattern letters: "+r);this.appendOffset(Se.PATTERNS[i+(1===i?0:1)],"Z")}else if("x"===r){if(i>5)throw new u("Too many pattern letters: "+r);var c=1===i?"+00":i%2==0?"+0000":"+00:00";this.appendOffset(Se.PATTERNS[i+(1===i?0:1)],c)}else if("W"===r){if(i>1)throw new u("Too many pattern letters: "+r);this.appendWeekField("W",i)}else if("w"===r){if(i>2)throw new u("Too many pattern letters: "+r);this.appendWeekField("w",i)}else{if("Y"!==r)throw new u("Unknown pattern letter: "+r);this.appendWeekField("Y",i)}n--}else if("'"===r){for(var l=n++;n=e.length)throw new u("Pattern ends with an incomplete string literal: "+e);var h=e.substring(l+1,n);0===h.length?this.appendLiteral("'"):this.appendLiteral(h.replace("''","'"))}else if("["===r)this.optionalStart();else if("]"===r){if(null===this._active._parent)throw new u("Pattern invalid as it contains ] without previous [");this.optionalEnd()}else{if("{"===r||"}"===r||"#"===r)throw new u("Pattern includes reserved character: '"+r+"'");this.appendLiteral(r)}}},t._parseField=function(e,t,n){switch(e){case"u":case"y":2===t?this.appendValueReduced(n,2,2,Oe.BASE_DATE):t<4?this.appendValue(n,t,je,ge.NORMAL):this.appendValue(n,t,je,ge.EXCEEDS_PAD);break;case"M":case"Q":switch(t){case 1:this.appendValue(n);break;case 2:this.appendValue(n,2);break;case 3:this.appendText(n,ye.SHORT);break;case 4:this.appendText(n,ye.FULL);break;case 5:this.appendText(n,ye.NARROW);break;default:throw new u("Too many pattern letters: "+e)}break;case"L":case"q":switch(t){case 1:this.appendValue(n);break;case 2:this.appendValue(n,2);break;case 3:this.appendText(n,ye.SHORT_STANDALONE);break;case 4:this.appendText(n,ye.FULL_STANDALONE);break;case 5:this.appendText(n,ye.NARROW_STANDALONE);break;default:throw new u("Too many pattern letters: "+e)}break;case"e":switch(t){case 1:case 2:this.appendWeekField("e",t);break;case 3:this.appendText(n,ye.SHORT);break;case 4:this.appendText(n,ye.FULL);break;case 5:this.appendText(n,ye.NARROW);break;default:throw new u("Too many pattern letters: "+e)}break;case"c":switch(t){case 1:this.appendWeekField("c",t);break;case 2:throw new u("Invalid number of pattern letters: "+e);case 3:this.appendText(n,ye.SHORT_STANDALONE);break;case 4:this.appendText(n,ye.FULL_STANDALONE);break;case 5:this.appendText(n,ye.NARROW_STANDALONE);break;default:throw new u("Too many pattern letters: "+e)}break;case"a":if(1!==t)throw new u("Too many pattern letters: "+e);this.appendText(n,ye.SHORT);break;case"E":case"G":switch(t){case 1:case 2:case 3:this.appendText(n,ye.SHORT);break;case 4:this.appendText(n,ye.FULL);break;case 5:this.appendText(n,ye.NARROW);break;default:throw new u("Too many pattern letters: "+e)}break;case"S":this.appendFraction(C.NANO_OF_SECOND,t,t,!1);break;case"F":if(1!==t)throw new u("Too many pattern letters: "+e);this.appendValue(n);break;case"d":case"h":case"H":case"k":case"K":case"m":case"s":if(1===t)this.appendValue(n);else{if(2!==t)throw new u("Too many pattern letters: "+e);this.appendValue(n,t)}break;case"D":if(1===t)this.appendValue(n);else{if(!(t<=3))throw new u("Too many pattern letters: "+e);this.appendValue(n,t)}break;default:1===t?this.appendValue(n):this.appendValue(n,t)}},t.padNext=function(){return 1===arguments.length?this._padNext1.apply(this,arguments):this._padNext2.apply(this,arguments)},t._padNext1=function(e){return this._padNext2(e," ")},t._padNext2=function(e,t){if(e<1)throw new u("The pad width must be at least one but was "+e);return this._active._padNextWidth=e,this._active._padNextChar=t,this._active._valueParserIndex=-1,this},t.optionalStart=function(){return this._active._valueParserIndex=-1,this._active=e._of(this._active,!0),this},t.optionalEnd=function(){if(null==this._active._parent)throw new c("Cannot call optionalEnd() as there was no previous call to optionalStart()");if(this._active._printerParsers.length>0){var e=new ve(this._active._printerParsers,this._active._optional);this._active=this._active._parent,this._appendInternal(e)}else this._active=this._active._parent;return this},t._appendInternal=function(e){return d(null!=e),this._active._padNextWidth>0&&(null!=e&&(e=new Ie(e,this._active._padNextWidth,this._active._padNextChar)),this._active._padNextWidth=0,this._active._padNextChar=0),this._active._printerParsers.push(e),this._active._valueParserIndex=-1,this._active._printerParsers.length-1},t.appendLiteral=function(e){return d(null!=e),e.length>0&&(1===e.length?this._appendInternalPrinterParser(new Ae(e.charAt(0))):this._appendInternalPrinterParser(new Me(e))),this},t._appendInternalPrinterParser=function(e){return d(null!=e),this._active._padNextWidth>0&&(null!=e&&(e=new Ie(e,this._active._padNextWidth,this._active._padNextChar)),this._active._padNextWidth=0,this._active._padNextChar=0),this._active._printerParsers.push(e),this._active._valueParserIndex=-1,this._active._printerParsers.length-1},t.append=function(e){return E(e,"formatter"),this._appendInternal(e._toPrinterParser(!1)),this},t.toFormatter=function(e){for(void 0===e&&(e=Y.SMART);null!=this._active._parent;)this.optionalEnd();var t=new ve(this._printerParsers,!1);return new ze(t,null,_e.STANDARD,e,null,null,null)},e}(),Ve=31556952e4,Ye=62167219200,He=function(){function e(e){this.fractionalDigits=e}var t=e.prototype;return t.print=function(e,t){var n=e.getValue(C.INSTANT_SECONDS),r=0;if(e.temporal().isSupported(C.NANO_OF_SECOND)&&(r=e.temporal().getLong(C.NANO_OF_SECOND)),null==n)return!1;var o=n,i=C.NANO_OF_SECOND.checkValidIntValue(r);if(o>=-62167219200){var s=o-Ve+Ye,a=v.floorDiv(s,Ve)+1,u=v.floorMod(s,Ve),c=ht.ofEpochSecond(u-Ye,0,$.UTC);a>0&&t.append("+").append(a),t.append(c.toString()),0===c.second()&&t.append(":00")}else{var l=o+Ye,h=v.intDiv(l,Ve),f=v.intMod(l,Ve),p=ht.ofEpochSecond(f-Ye,0,$.UTC),d=t.length();t.append(p.toString()),0===p.second()&&t.append(":00"),h<0&&(-1e4===p.year()?t.replace(d,d+2,""+(h-1)):0===f?t.insert(d,h):t.insert(d+1,Math.abs(h)))}if(-2===this.fractionalDigits)0!==i&&(t.append("."),0===v.intMod(i,1e6)?t.append((""+(v.intDiv(i,1e6)+1e3)).substring(1)):0===v.intMod(i,1e3)?t.append((""+(v.intDiv(i,1e3)+1e6)).substring(1)):t.append((""+(i+1e9)).substring(1)));else if(this.fractionalDigits>0||-1===this.fractionalDigits&&i>0){t.append(".");for(var E=1e8,m=0;-1===this.fractionalDigits&&i>0||m64?e.substring(0,64)+"...":e,new i("Text '"+n+"' could not be parsed: "+t.message,e,0,t)},t._parseToBuilder=function(e,t){var n=null!=t?t:new G(0),r=this._parseUnresolved0(e,n);if(null==r||n.getErrorIndex()>=0||null==t&&n.getIndex()64?e.substr(0,64).toString()+"...":e,n.getErrorIndex()>=0?new i("Text '"+o+"' could not be parsed at index "+n.getErrorIndex(),e,n.getErrorIndex()):new i("Text '"+o+"' could not be parsed, unparsed text found at index "+n.getIndex(),e,n.getIndex())}return r.toBuilder()},t.parseUnresolved=function(e,t){return this._parseUnresolved0(e,t)},t._parseUnresolved0=function(e,t){d(null!=e,"text",l),d(null!=t,"position",l);var n=new ee(this),r=t.getIndex();return(r=this._printerParser.parse(n,e,r))<0?(t.setErrorIndex(~r),null):(t.setIndex(r),n.toParsed())},t._toPrinterParser=function(e){return this._printerParser.withOptional(e)},t.toString=function(){var e=this._printerParser.toString();return 0===e.indexOf("[")?e:e.substring(1,e.length-1)},e}(),qe=function(e){function t(t,n){var r;return(r=e.call(this)||this)._month=v.safeToInt(t),r._day=v.safeToInt(n),r}h(t,e),t.now=function(e){return 0===arguments.length?t.now0():1===arguments.length&&e instanceof z?t.nowZoneId(e):t.nowClock(e)},t.now0=function(){return this.nowClock(Et.systemDefaultZone())},t.nowZoneId=function(e){return E(e,"zone"),this.nowClock(Et.system(e))},t.nowClock=function(e){E(e,"clock");var n=ct.now(e);return t.of(n.month(),n.dayOfMonth())},t.of=function(e,n){return 2===arguments.length&&e instanceof U?t.ofMonthNumber(e,n):t.ofNumberNumber(e,n)},t.ofMonthNumber=function(e,n){if(E(e,"month"),C.DAY_OF_MONTH.checkValidValue(n),n>e.maxLength())throw new o("Illegal value for DayOfMonth field, value "+n+" is not valid for month "+e.toString());return new t(e.value(),n)},t.ofNumberNumber=function(e,n){return E(e,"month"),E(n,"dayOfMonth"),t.of(U.of(e),n)},t.from=function(e){if(E(e,"temporal"),m(e,L,"temporal"),e instanceof t)return e;try{return t.of(e.get(C.MONTH_OF_YEAR),e.get(C.DAY_OF_MONTH))}catch(t){throw new o("Unable to obtain MonthDay from TemporalAccessor: "+e+", type "+(e&&null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return 1===arguments.length?t.parseString(e):t.parseStringFormatter(e,n)},t.parseString=function(e){return t.parseStringFormatter(e,Ce)},t.parseStringFormatter=function(e,n){return E(e,"text"),E(n,"formatter"),m(n,ze,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n.monthValue=function(){return this._month},n.month=function(){return U.of(this._month)},n.dayOfMonth=function(){return this._day},n.isSupported=function(e){return e instanceof C?e===C.MONTH_OF_YEAR||e===C.DAY_OF_MONTH:null!=e&&e.isSupportedBy(this)},n.range=function(t){return t===C.MONTH_OF_YEAR?t.range():t===C.DAY_OF_MONTH?N.of(1,this.month().minLength(),this.month().maxLength()):e.prototype.range.call(this,t)},n.get=function(e){return this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(E(e,"field"),e instanceof C){switch(e){case C.DAY_OF_MONTH:return this._day;case C.MONTH_OF_YEAR:return this._month}throw new s("Unsupported field: "+e)}return e.getFrom(this)},n.isValidYear=function(e){return 0==(29===this._day&&2===this._month&&!1===Xe.isLeap(e))},n.withMonth=function(e){return this.with(U.of(e))},n.with=function(e){if(E(e,"month"),e.value()===this._month)return this;var n=Math.min(this._day,e.maxLength());return new t(e.value(),n)},n.withDayOfMonth=function(e){return e===this._day?this:t.of(this._month,e)},n.query=function(t){return E(t,"query"),m(t,M,"query"),t===D.chronology()?nt.INSTANCE:e.prototype.query.call(this,t)},n.adjustInto=function(e){return E(e,"temporal"),(e=e.with(C.MONTH_OF_YEAR,this._month)).with(C.DAY_OF_MONTH,Math.min(e.range(C.DAY_OF_MONTH).maximum(),this._day))},n.atYear=function(e){return ct.of(e,this._month,this.isValidYear(e)?this._day:28)},n.compareTo=function(e){E(e,"other"),m(e,t,"other");var n=this._month-e.monthValue();return 0===n&&(n=this._day-e.dayOfMonth()),n},n.isAfter=function(e){return E(e,"other"),m(e,t,"other"),this.compareTo(e)>0},n.isBefore=function(e){return E(e,"other"),m(e,t,"other"),this.compareTo(e)<0},n.equals=function(e){if(this===e)return!0;if(e instanceof t){var n=e;return this.monthValue()===n.monthValue()&&this.dayOfMonth()===n.dayOfMonth()}return!1},n.toString=function(){return"--"+(this._month<10?"0":"")+this._month+(this._day<10?"-0":"-")+this._day},n.toJSON=function(){return this.toString()},n.format=function(e){return E(e,"formatter"),m(e,ze,"formatter"),e.format(this)},t}(L),Ke=function(e){function t(t,n){var r;return(r=e.call(this)||this)._year=v.safeToInt(t),r._month=v.safeToInt(n),r}h(t,e),t.now=function(e){return 0===arguments.length?t.now0():1===arguments.length&&e instanceof z?t.nowZoneId(e):t.nowClock(e)},t.now0=function(){return t.nowClock(Et.systemDefaultZone())},t.nowZoneId=function(e){return t.nowClock(Et.system(e))},t.nowClock=function(e){var n=ct.now(e);return t.of(n.year(),n.month())},t.of=function(e,n){return 2===arguments.length&&n instanceof U?t.ofNumberMonth(e,n):t.ofNumberNumber(e,n)},t.ofNumberMonth=function(e,n){return E(n,"month"),m(n,U,"month"),t.ofNumberNumber(e,n.value())},t.ofNumberNumber=function(e,n){return E(e,"year"),E(n,"month"),C.YEAR.checkValidValue(e),C.MONTH_OF_YEAR.checkValidValue(n),new t(e,n)},t.from=function(e){if(E(e,"temporal"),e instanceof t)return e;try{return t.of(e.get(C.YEAR),e.get(C.MONTH_OF_YEAR))}catch(t){throw new o("Unable to obtain YearMonth from TemporalAccessor: "+e+", type "+(e&&null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return 1===arguments.length?t.parseString(e):t.parseStringFormatter(e,n)},t.parseString=function(e){return t.parseStringFormatter(e,De)},t.parseStringFormatter=function(e,n){return E(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n.isSupported=function(e){return 1===arguments.length&&e instanceof I?this.isSupportedField(e):this.isSupportedUnit(e)},n.isSupportedField=function(e){return e instanceof C?e===C.YEAR||e===C.MONTH_OF_YEAR||e===C.PROLEPTIC_MONTH||e===C.YEAR_OF_ERA||e===C.ERA:null!=e&&e.isSupportedBy(this)},n.isSupportedUnit=function(e){return e instanceof S?e===S.MONTHS||e===S.YEARS||e===S.DECADES||e===S.CENTURIES||e===S.MILLENNIA||e===S.ERAS:null!=e&&e.isSupportedBy(this)},n.range=function(t){return t===C.YEAR_OF_ERA?this.year()<=0?N.of(1,Xe.MAX_VALUE+1):N.of(1,Xe.MAX_VALUE):e.prototype.range.call(this,t)},n.get=function(e){return E(e,"field"),m(e,I,"field"),this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(E(e,"field"),m(e,I,"field"),e instanceof C){switch(e){case C.MONTH_OF_YEAR:return this._month;case C.PROLEPTIC_MONTH:return this._getProlepticMonth();case C.YEAR_OF_ERA:return this._year<1?1-this._year:this._year;case C.YEAR:return this._year;case C.ERA:return this._year<1?0:1}throw new s("Unsupported field: "+e)}return e.getFrom(this)},n._getProlepticMonth=function(){return v.safeAdd(v.safeMultiply(this._year,12),this._month-1)},n.year=function(){return this._year},n.monthValue=function(){return this._month},n.month=function(){return U.of(this._month)},n.isLeapYear=function(){return nt.isLeapYear(this._year)},n.isValidDay=function(e){return e>=1&&e<=this.lengthOfMonth()},n.lengthOfMonth=function(){return this.month().length(this.isLeapYear())},n.lengthOfYear=function(){return this.isLeapYear()?366:365},n.with=function(e,t){return 1===arguments.length?this._withAdjuster(e):this._withField(e,t)},n._withField=function(e,t){if(E(e,"field"),m(e,I,"field"),e instanceof C){var n=e;switch(n.checkValidValue(t),n){case C.MONTH_OF_YEAR:return this.withMonth(t);case C.PROLEPTIC_MONTH:return this.plusMonths(t-this.getLong(C.PROLEPTIC_MONTH));case C.YEAR_OF_ERA:return this.withYear(this._year<1?1-t:t);case C.YEAR:return this.withYear(t);case C.ERA:return this.getLong(C.ERA)===t?this:this.withYear(1-this._year)}throw new s("Unsupported field: "+e)}return e.adjustInto(this,t)},n.withYear=function(e){return C.YEAR.checkValidValue(e),new t(e,this._month)},n.withMonth=function(e){return C.MONTH_OF_YEAR.checkValidValue(e),new t(this._year,e)},n._plusUnit=function(e,t){if(E(t,"unit"),m(t,w,"unit"),t instanceof S){switch(t){case S.MONTHS:return this.plusMonths(e);case S.YEARS:return this.plusYears(e);case S.DECADES:return this.plusYears(v.safeMultiply(e,10));case S.CENTURIES:return this.plusYears(v.safeMultiply(e,100));case S.MILLENNIA:return this.plusYears(v.safeMultiply(e,1e3));case S.ERAS:return this.with(C.ERA,v.safeAdd(this.getLong(C.ERA),e))}throw new s("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusYears=function(e){if(0===e)return this;var t=C.YEAR.checkValidIntValue(this._year+e);return this.withYear(t)},n.plusMonths=function(e){if(0===e)return this;var n=12*this._year+(this._month-1)+e;return new t(C.YEAR.checkValidIntValue(v.floorDiv(n,12)),v.floorMod(n,12)+1)},n.minusYears=function(e){return e===v.MIN_SAFE_INTEGER?this.plusYears(v.MIN_SAFE_INTEGER).plusYears(1):this.plusYears(-e)},n.minusMonths=function(e){return e===v.MIN_SAFE_INTEGER?this.plusMonths(Math.MAX_SAFE_INTEGER).plusMonths(1):this.plusMonths(-e)},n.query=function(t){return E(t,"query"),m(t,M,"query"),t===D.chronology()?nt.INSTANCE:t===D.precision()?S.MONTHS:t===D.localDate()||t===D.localTime()||t===D.zone()||t===D.zoneId()||t===D.offset()?null:e.prototype.query.call(this,t)},n.adjustInto=function(e){return E(e,"temporal"),m(e,H,"temporal"),e.with(C.PROLEPTIC_MONTH,this._getProlepticMonth())},n.until=function(e,n){E(e,"endExclusive"),E(n,"unit"),m(e,H,"endExclusive"),m(n,w,"unit");var r=t.from(e);if(n instanceof S){var o=r._getProlepticMonth()-this._getProlepticMonth();switch(n){case S.MONTHS:return o;case S.YEARS:return v.intDiv(o,12);case S.DECADES:return v.intDiv(o,120);case S.CENTURIES:return v.intDiv(o,1200);case S.MILLENNIA:return v.intDiv(o,12e3);case S.ERAS:return r.getLong(C.ERA)-this.getLong(C.ERA)}throw new s("Unsupported unit: "+n)}return n.between(this,r)},n.atDay=function(e){return E(e,"dayOfMonth"),ct.of(this._year,this._month,e)},n.atEndOfMonth=function(){return ct.of(this._year,this._month,this.lengthOfMonth())},n.compareTo=function(e){E(e,"other"),m(e,t,"other");var n=this._year-e.year();return 0===n&&(n=this._month-e.monthValue()),n},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.equals=function(e){if(this===e)return!0;if(e instanceof t){var n=e;return this.year()===n.year()&&this.monthValue()===n.monthValue()}return!1},n.toString=function(){return De.format(this)},n.toJSON=function(){return this.toString()},n.format=function(e){return E(e,"formatter"),e.format(this)},t}(H),Xe=function(e){function t(t){var n;return(n=e.call(this)||this)._year=v.safeToInt(t),n}h(t,e);var n=t.prototype;return n.value=function(){return this._year},t.now=function(e){return void 0===e&&(e=void 0),void 0===e?t.now0():e instanceof z?t.nowZoneId(e):t.nowClock(e)},t.now0=function(){return t.nowClock(Et.systemDefaultZone())},t.nowZoneId=function(e){return E(e,"zone"),m(e,z,"zone"),t.nowClock(Et.system(e))},t.nowClock=function(e){E(e,"clock"),m(e,Et,"clock");var n=ct.now(e);return t.of(n.year())},t.of=function(e){return E(e,"isoYear"),C.YEAR.checkValidValue(e),new t(e)},t.from=function(e){if(E(e,"temporal"),m(e,L,"temporal"),e instanceof t)return e;try{return t.of(e.get(C.YEAR))}catch(t){throw new o("Unable to obtain Year from TemporalAccessor: "+e+", type "+(e&&null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return arguments.length<=1?t.parseText(e):t.parseTextFormatter(e,n)},t.parseText=function(e){return E(e,"text"),t.parse(e,Le)},t.parseTextFormatter=function(e,n){return void 0===n&&(n=Le),E(e,"text"),E(n,"formatter"),m(n,ze,"formatter"),n.parse(e,t.FROM)},t.isLeap=function(e){return 0===v.intMod(e,4)&&(0!==v.intMod(e,100)||0===v.intMod(e,400))},n.isSupported=function(e){return 1===arguments.length&&e instanceof I?this.isSupportedField(e):this.isSupportedUnit(e)},n.isSupportedField=function(e){return e instanceof C?e===C.YEAR||e===C.YEAR_OF_ERA||e===C.ERA:null!=e&&e.isSupportedBy(this)},n.isSupportedUnit=function(e){return e instanceof S?e===S.YEARS||e===S.DECADES||e===S.CENTURIES||e===S.MILLENNIA||e===S.ERAS:null!=e&&e.isSupportedBy(this)},n.range=function(t){if(this.isSupported(t))return t.range();if(t instanceof C)throw new s("Unsupported field: "+t);return e.prototype.range.call(this,t)},n.get=function(e){return this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(E(e,"field"),e instanceof C){switch(e){case C.YEAR_OF_ERA:return this._year<1?1-this._year:this._year;case C.YEAR:return this._year;case C.ERA:return this._year<1?0:1}throw new s("Unsupported field: "+e)}return e.getFrom(this)},n.isLeap=function(){return t.isLeap(this._year)},n._withField=function(e,n){if(E(e,"field"),m(e,I,"field"),e instanceof C){switch(e.checkValidValue(n),e){case C.YEAR_OF_ERA:return t.of(this._year<1?1-n:n);case C.YEAR:return t.of(n);case C.ERA:return this.getLong(C.ERA)===n?this:t.of(1-this._year)}throw new s("Unsupported field: "+e)}return e.adjustInto(this,n)},n._plusUnit=function(e,t){if(E(e,"amountToAdd"),E(t,"unit"),m(t,w,"unit"),t instanceof S){switch(t){case S.YEARS:return this.plusYears(e);case S.DECADES:return this.plusYears(v.safeMultiply(e,10));case S.CENTURIES:return this.plusYears(v.safeMultiply(e,100));case S.MILLENNIA:return this.plusYears(v.safeMultiply(e,1e3));case S.ERAS:return this.with(C.ERA,v.safeAdd(this.getLong(C.ERA),e))}throw new s("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusYears=function(e){return 0===e?this:t.of(C.YEAR.checkValidIntValue(v.safeAdd(this._year,e)))},n.minusYears=function(e){return e===v.MIN_SAFE_INTEGER?this.plusYears(v.MAX_SAFE_INTEGER).plusYears(1):this.plusYears(-e)},n.adjustInto=function(e){return E(e,"temporal"),e.with(C.YEAR,this._year)},n.isValidMonthDay=function(e){return null!=e&&e.isValidYear(this._year)},n.length=function(){return this.isLeap()?366:365},n.atDay=function(e){return ct.ofYearDay(this._year,e)},n.atMonth=function(e){return 1===arguments.length&&e instanceof U?this.atMonthMonth(e):this.atMonthNumber(e)},n.atMonthMonth=function(e){return E(e,"month"),m(e,U,"month"),Ke.of(this._year,e)},n.atMonthNumber=function(e){return E(e,"month"),Ke.of(this._year,e)},n.atMonthDay=function(e){return E(e,"monthDay"),m(e,qe,"monthDay"),e.atYear(this._year)},n.query=function(t){return E(t,"query()"),m(t,M,"query()"),t===D.chronology()?nt.INSTANCE:t===D.precision()?S.YEARS:t===D.localDate()||t===D.localTime()||t===D.zone()||t===D.zoneId()||t===D.offset()?null:e.prototype.query.call(this,t)},n.compareTo=function(e){return E(e,"other"),m(e,t,"other"),this._year-e._year},n.isAfter=function(e){return E(e,"other"),m(e,t,"other"),this._year>e._year},n.isBefore=function(e){return E(e,"other"),m(e,t,"other"),this._year=0){var t=e.with(C.DAY_OF_MONTH,1),n=t.get(C.DAY_OF_WEEK),r=v.intMod(this._dowValue-n+7,7);return r+=7*(this._ordinal-1),t.plus(r,S.DAYS)}var o=e.with(C.DAY_OF_MONTH,e.range(C.DAY_OF_MONTH).maximum()),i=o.get(C.DAY_OF_WEEK),s=this._dowValue-i;return s=0===s?0:s>0?s-7:s,s-=7*(-this._ordinal-1),o.plus(s,S.DAYS)},t}(Je),tt=function(e){function t(t,n){var r;return r=e.call(this)||this,E(n,"dayOfWeek"),r._relative=t,r._dowValue=n.value(),r}return h(t,e),t.prototype.adjustInto=function(e){var t=e.get(C.DAY_OF_WEEK);if(this._relative<2&&t===this._dowValue)return e;if(1&this._relative){var n=this._dowValue-t;return e.minus(n>=0?7-n:-n,S.DAYS)}var r=t-this._dowValue;return e.plus(r>=0?7-r:-r,S.DAYS)},t}(Je),nt=function(e){function t(){return e.apply(this,arguments)||this}h(t,e),t.isLeapYear=function(e){return!(3&e||e%100==0&&e%400!=0)};var n=t.prototype;return n._updateResolveMap=function(e,t,n){E(e,"fieldValues"),E(t,"field");var r=e.get(t);if(null!=r&&r!==n)throw new o("Invalid state, field: "+t+" "+r+" conflicts with "+t+" "+n);e.put(t,n)},n.resolveDate=function(e,t){if(e.containsKey(C.EPOCH_DAY))return ct.ofEpochDay(e.remove(C.EPOCH_DAY));var n=e.remove(C.PROLEPTIC_MONTH);null!=n&&(t!==Y.LENIENT&&C.PROLEPTIC_MONTH.checkValidValue(n),this._updateResolveMap(e,C.MONTH_OF_YEAR,v.floorMod(n,12)+1),this._updateResolveMap(e,C.YEAR,v.floorDiv(n,12)));var r=e.remove(C.YEAR_OF_ERA);if(null!=r){t!==Y.LENIENT&&C.YEAR_OF_ERA.checkValidValue(r);var i=e.remove(C.ERA);if(null==i){var s=e.get(C.YEAR);t===Y.STRICT?null!=s?this._updateResolveMap(e,C.YEAR,s>0?r:v.safeSubtract(1,r)):e.put(C.YEAR_OF_ERA,r):this._updateResolveMap(e,C.YEAR,null==s||s>0?r:v.safeSubtract(1,r))}else if(1===i)this._updateResolveMap(e,C.YEAR,r);else{if(0!==i)throw new o("Invalid value for era: "+i);this._updateResolveMap(e,C.YEAR,v.safeSubtract(1,r))}}else e.containsKey(C.ERA)&&C.ERA.checkValidValue(e.get(C.ERA));if(e.containsKey(C.YEAR)){if(e.containsKey(C.MONTH_OF_YEAR)&&e.containsKey(C.DAY_OF_MONTH)){var a=C.YEAR.checkValidIntValue(e.remove(C.YEAR)),u=e.remove(C.MONTH_OF_YEAR),c=e.remove(C.DAY_OF_MONTH);if(t===Y.LENIENT){var l=u-1,h=c-1;return ct.of(a,1,1).plusMonths(l).plusDays(h)}return t===Y.SMART?(C.DAY_OF_MONTH.checkValidValue(c),4===u||6===u||9===u||11===u?c=Math.min(c,30):2===u&&(c=Math.min(c,U.FEBRUARY.length(Xe.isLeap(a)))),ct.of(a,u,c)):ct.of(a,u,c)}if(e.containsKey(C.DAY_OF_YEAR)){var f=C.YEAR.checkValidIntValue(e.remove(C.YEAR));if(t===Y.LENIENT){var p=v.safeSubtract(e.remove(C.DAY_OF_YEAR),1);return ct.ofYearDay(f,1).plusDays(p)}var d=C.DAY_OF_YEAR.checkValidIntValue(e.remove(C.DAY_OF_YEAR));return ct.ofYearDay(f,d)}if(e.containsKey(C.ALIGNED_WEEK_OF_YEAR)){if(e.containsKey(C.ALIGNED_DAY_OF_WEEK_IN_YEAR)){var E=C.YEAR.checkValidIntValue(e.remove(C.YEAR));if(t===Y.LENIENT){var m=v.safeSubtract(e.remove(C.ALIGNED_WEEK_OF_YEAR),1),_=v.safeSubtract(e.remove(C.ALIGNED_DAY_OF_WEEK_IN_YEAR),1);return ct.of(E,1,1).plusWeeks(m).plusDays(_)}var g=C.ALIGNED_WEEK_OF_YEAR.checkValidIntValue(e.remove(C.ALIGNED_WEEK_OF_YEAR)),y=C.ALIGNED_DAY_OF_WEEK_IN_YEAR.checkValidIntValue(e.remove(C.ALIGNED_DAY_OF_WEEK_IN_YEAR)),A=ct.of(E,1,1).plusDays(7*(g-1)+(y-1));if(t===Y.STRICT&&A.get(C.YEAR)!==E)throw new o("Strict mode rejected date parsed to a different year");return A}if(e.containsKey(C.DAY_OF_WEEK)){var b=C.YEAR.checkValidIntValue(e.remove(C.YEAR));if(t===Y.LENIENT){var T=v.safeSubtract(e.remove(C.ALIGNED_WEEK_OF_YEAR),1),w=v.safeSubtract(e.remove(C.DAY_OF_WEEK),1);return ct.of(b,1,1).plusWeeks(T).plusDays(w)}var O=C.ALIGNED_WEEK_OF_YEAR.checkValidIntValue(e.remove(C.ALIGNED_WEEK_OF_YEAR)),R=C.DAY_OF_WEEK.checkValidIntValue(e.remove(C.DAY_OF_WEEK)),S=ct.of(b,1,1).plusWeeks(O-1).with($e.nextOrSame(F.of(R)));if(t===Y.STRICT&&S.get(C.YEAR)!==b)throw new o("Strict mode rejected date parsed to a different month");return S}}}return null},n.date=function(e){return ct.from(e)},t}(b),rt=function(e){function t(t,n){var r;return r=e.call(this)||this,E(t,"time"),m(t,ft,"time"),E(n,"offset"),m(n,$,"offset"),r._time=t,r._offset=n,r}h(t,e),t.from=function(e){if(E(e,"temporal"),e instanceof t)return e;if(e instanceof st)return e.toOffsetTime();try{return new t(ft.from(e),$.from(e))}catch(t){throw new o("Unable to obtain OffsetTime TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""))}},t.now=function(e){return 0===arguments.length?t._now(Et.systemDefaultZone()):e instanceof Et?t._now(e):t._now(Et.system(e))},t._now=function(e){E(e,"clock");var n=e.instant();return t.ofInstant(n,e.zone().rules().offset(n))},t.of=function(){return arguments.length<=2?t.ofTimeAndOffset.apply(this,arguments):t.ofNumbers.apply(this,arguments)},t.ofNumbers=function(e,n,r,o,i){return new t(ft.of(e,n,r,o),i)},t.ofTimeAndOffset=function(e,n){return new t(e,n)},t.ofInstant=function(e,n){E(e,"instant"),m(e,dt,"instant"),E(n,"zone"),m(n,z,"zone");var r=n.rules().offset(e),o=e.epochSecond()%ft.SECONDS_PER_DAY;return(o=(o+r.totalSeconds())%ft.SECONDS_PER_DAY)<0&&(o+=ft.SECONDS_PER_DAY),new t(ft.ofSecondOfDay(o,e.nano()),r)},t.parse=function(e,n){return void 0===n&&(n=ze.ISO_OFFSET_TIME),E(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n.adjustInto=function(e){return e.with(C.NANO_OF_DAY,this._time.toNanoOfDay()).with(C.OFFSET_SECONDS,this.offset().totalSeconds())},n.atDate=function(e){return st.of(e,this._time,this._offset)},n.format=function(e){return E(e,"formatter"),e.format(this,t.FROM)},n.get=function(t){return e.prototype.get.call(this,t)},n.getLong=function(e){return e instanceof C?e===C.OFFSET_SECONDS?this._offset.totalSeconds():this._time.getLong(e):e.getFrom(this)},n.hour=function(){return this._time.hour()},n.minute=function(){return this._time.minute()},n.second=function(){return this._time.second()},n.nano=function(){return this._time.nano()},n.offset=function(){return this._offset},n.isAfter=function(e){return E(e,"other"),this._toEpochNano()>e._toEpochNano()},n.isBefore=function(e){return E(e,"other"),this._toEpochNano()n?1:0),r},n.isAfter=function(e){E(e,"other");var t=this.toEpochSecond(),n=e.toEpochSecond();return t>n||t===n&&this.toLocalTime().nano()>e.toLocalTime().nano()},n.isBefore=function(e){E(e,"other");var t=this.toEpochSecond(),n=e.toEpochSecond();return tn||t===n&&this.toLocalTime().nano()>e.toLocalTime().nano()},n.isBefore=function(e){E(e,"other");var t=this.toEpochSecond(),n=e.toEpochSecond();return ti.firstDayOfYear(r)+i.length(r)-1&&(i=i.plus(1));var s=n-i.firstDayOfYear(r)+1;return new t(e,i.value(),s)},t.ofEpochDay=function(e){var n,r,o,i,s;void 0===e&&(e=0),s=e+ut,n=0,(s-=60)<0&&(n=400*(r=v.intDiv(s+1,at)-1),s+=-r*at),(o=s-(365*(i=v.intDiv(400*s+591,at))+v.intDiv(i,4)-v.intDiv(i,100)+v.intDiv(i,400)))<0&&(o=s-(365*--i+v.intDiv(i,4)-v.intDiv(i,100)+v.intDiv(i,400))),i+=n;var a=o,u=v.intDiv(5*a+2,153),c=(u+2)%12+1,l=a-v.intDiv(306*u+5,10)+1;return new t(i+=v.intDiv(u,10),c,l)},t.from=function(e){E(e,"temporal");var t=e.query(D.localDate());if(null==t)throw new o("Unable to obtain LocalDate from TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""));return t},t.parse=function(e,n){return void 0===n&&(n=ze.ISO_LOCAL_DATE),d(null!=n,"formatter",l),n.parse(e,t.FROM)},t._resolvePreviousValid=function(e,n,r){switch(n){case 2:r=Math.min(r,nt.isLeapYear(e)?29:28);break;case 4:case 6:case 9:case 11:r=Math.min(r,30)}return t.of(e,n,r)},t._validate=function(e,t,n){var r;if(C.YEAR.checkValidValue(e),C.MONTH_OF_YEAR.checkValidValue(t),C.DAY_OF_MONTH.checkValidValue(n),n>28){switch(r=31,t){case 2:r=nt.isLeapYear(e)?29:28;break;case 4:case 6:case 9:case 11:r=30}n>r&&d(!1,29===n?"Invalid date 'February 29' as '"+e+"' is not a leap year":"Invalid date '"+e+"' '"+t+"' '"+n+"'",o)}};var n=t.prototype;return n.isSupported=function(t){return e.prototype.isSupported.call(this,t)},n.range=function(e){if(e instanceof C){if(e.isDateBased()){switch(e){case C.DAY_OF_MONTH:return N.of(1,this.lengthOfMonth());case C.DAY_OF_YEAR:return N.of(1,this.lengthOfYear());case C.ALIGNED_WEEK_OF_MONTH:return N.of(1,this.month()===U.FEBRUARY&&!1===this.isLeapYear()?4:5);case C.YEAR_OF_ERA:return this._year<=0?N.of(1,Xe.MAX_VALUE+1):N.of(1,Xe.MAX_VALUE)}return e.range()}throw new s("Unsupported field: "+e)}return e.rangeRefinedBy(this)},n.get=function(e){return this.getLong(e)},n.getLong=function(e){return d(null!=e,"",l),e instanceof C?this._get0(e):e.getFrom(this)},n._get0=function(e){switch(e){case C.DAY_OF_WEEK:return this.dayOfWeek().value();case C.ALIGNED_DAY_OF_WEEK_IN_MONTH:return v.intMod(this._day-1,7)+1;case C.ALIGNED_DAY_OF_WEEK_IN_YEAR:return v.intMod(this.dayOfYear()-1,7)+1;case C.DAY_OF_MONTH:return this._day;case C.DAY_OF_YEAR:return this.dayOfYear();case C.EPOCH_DAY:return this.toEpochDay();case C.ALIGNED_WEEK_OF_MONTH:return v.intDiv(this._day-1,7)+1;case C.ALIGNED_WEEK_OF_YEAR:return v.intDiv(this.dayOfYear()-1,7)+1;case C.MONTH_OF_YEAR:return this._month;case C.PROLEPTIC_MONTH:return this._prolepticMonth();case C.YEAR_OF_ERA:return this._year>=1?this._year:1-this._year;case C.YEAR:return this._year;case C.ERA:return this._year>=1?1:0}throw new s("Unsupported field: "+e)},n._prolepticMonth=function(){return 12*this._year+(this._month-1)},n.chronology=function(){return nt.INSTANCE},n.year=function(){return this._year},n.monthValue=function(){return this._month},n.month=function(){return U.of(this._month)},n.dayOfMonth=function(){return this._day},n.dayOfYear=function(){return this.month().firstDayOfYear(this.isLeapYear())+this._day-1},n.dayOfWeek=function(){var e=v.floorMod(this.toEpochDay()+3,7);return F.of(e+1)},n.isLeapYear=function(){return nt.isLeapYear(this._year)},n.lengthOfMonth=function(){switch(this._month){case 2:return this.isLeapYear()?29:28;case 4:case 6:case 9:case 11:return 30;default:return 31}},n.lengthOfYear=function(){return this.isLeapYear()?366:365},n._withAdjuster=function(n){return E(n,"adjuster"),n instanceof t?n:e.prototype._withAdjuster.call(this,n)},n._withField=function(e,n){if(d(null!=e,"field",l),e instanceof C){var r=e;switch(r.checkValidValue(n),r){case C.DAY_OF_WEEK:return this.plusDays(n-this.dayOfWeek().value());case C.ALIGNED_DAY_OF_WEEK_IN_MONTH:return this.plusDays(n-this.getLong(C.ALIGNED_DAY_OF_WEEK_IN_MONTH));case C.ALIGNED_DAY_OF_WEEK_IN_YEAR:return this.plusDays(n-this.getLong(C.ALIGNED_DAY_OF_WEEK_IN_YEAR));case C.DAY_OF_MONTH:return this.withDayOfMonth(n);case C.DAY_OF_YEAR:return this.withDayOfYear(n);case C.EPOCH_DAY:return t.ofEpochDay(n);case C.ALIGNED_WEEK_OF_MONTH:return this.plusWeeks(n-this.getLong(C.ALIGNED_WEEK_OF_MONTH));case C.ALIGNED_WEEK_OF_YEAR:return this.plusWeeks(n-this.getLong(C.ALIGNED_WEEK_OF_YEAR));case C.MONTH_OF_YEAR:return this.withMonth(n);case C.PROLEPTIC_MONTH:return this.plusMonths(n-this.getLong(C.PROLEPTIC_MONTH));case C.YEAR_OF_ERA:return this.withYear(this._year>=1?n:1-n);case C.YEAR:return this.withYear(n);case C.ERA:return this.getLong(C.ERA)===n?this:this.withYear(1-this._year)}throw new s("Unsupported field: "+e)}return e.adjustInto(this,n)},n.withYear=function(e){return this._year===e?this:(C.YEAR.checkValidValue(e),t._resolvePreviousValid(e,this._month,this._day))},n.withMonth=function(e){var n=e instanceof U?e.value():e;return this._month===n?this:(C.MONTH_OF_YEAR.checkValidValue(n),t._resolvePreviousValid(this._year,n,this._day))},n.withDayOfMonth=function(e){return this._day===e?this:t.of(this._year,this._month,e)},n.withDayOfYear=function(e){return this.dayOfYear()===e?this:t.ofYearDay(this._year,e)},n._plusUnit=function(e,t){if(E(e,"amountToAdd"),E(t,"unit"),t instanceof S){switch(t){case S.DAYS:return this.plusDays(e);case S.WEEKS:return this.plusWeeks(e);case S.MONTHS:return this.plusMonths(e);case S.YEARS:return this.plusYears(e);case S.DECADES:return this.plusYears(v.safeMultiply(e,10));case S.CENTURIES:return this.plusYears(v.safeMultiply(e,100));case S.MILLENNIA:return this.plusYears(v.safeMultiply(e,1e3));case S.ERAS:return this.with(C.ERA,v.safeAdd(this.getLong(C.ERA),e))}throw new s("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusYears=function(e){if(0===e)return this;var n=C.YEAR.checkValidIntValue(this._year+e);return t._resolvePreviousValid(n,this._month,this._day)},n.plusMonths=function(e){if(0===e)return this;var n=12*this._year+(this._month-1)+e,r=C.YEAR.checkValidIntValue(v.floorDiv(n,12)),o=v.floorMod(n,12)+1;return t._resolvePreviousValid(r,o,this._day)},n.plusWeeks=function(e){return this.plusDays(v.safeMultiply(e,7))},n.plusDays=function(e){if(0===e)return this;var n=v.safeAdd(this.toEpochDay(),e);return t.ofEpochDay(n)},n._minusUnit=function(e,t){return E(e,"amountToSubtract"),E(t,"unit"),this._plusUnit(-1*e,t)},n.minusYears=function(e){return this.plusYears(-1*e)},n.minusMonths=function(e){return this.plusMonths(-1*e)},n.minusWeeks=function(e){return this.plusWeeks(-1*e)},n.minusDays=function(e){return this.plusDays(-1*e)},n.query=function(t){return E(t,"query"),t===D.localDate()?this:e.prototype.query.call(this,t)},n.adjustInto=function(t){return e.prototype.adjustInto.call(this,t)},n.until=function(e,t){return arguments.length<2?this.until1(e):this.until2(e,t)},n.until2=function(e,n){var r=t.from(e);if(n instanceof S){switch(n){case S.DAYS:return this.daysUntil(r);case S.WEEKS:return v.intDiv(this.daysUntil(r),7);case S.MONTHS:return this._monthsUntil(r);case S.YEARS:return v.intDiv(this._monthsUntil(r),12);case S.DECADES:return v.intDiv(this._monthsUntil(r),120);case S.CENTURIES:return v.intDiv(this._monthsUntil(r),1200);case S.MILLENNIA:return v.intDiv(this._monthsUntil(r),12e3);case S.ERAS:return r.getLong(C.ERA)-this.getLong(C.ERA)}throw new s("Unsupported unit: "+n)}return n.between(this,r)},n.daysUntil=function(e){return e.toEpochDay()-this.toEpochDay()},n._monthsUntil=function(e){var t=32*this._prolepticMonth()+this.dayOfMonth(),n=32*e._prolepticMonth()+e.dayOfMonth();return v.intDiv(n-t,32)},n.until1=function(e){var n=t.from(e),r=n._prolepticMonth()-this._prolepticMonth(),o=n._day-this._day;if(r>0&&o<0){r--;var i=this.plusMonths(r);o=n.toEpochDay()-i.toEpochDay()}else r<0&&o>0&&(r++,o-=n.lengthOfMonth());var s=v.intDiv(r,12),a=v.intMod(r,12);return j.of(s,a,o)},n.atTime=function(){return 1===arguments.length?this.atTime1.apply(this,arguments):this.atTime4.apply(this,arguments)},n.atTime1=function(e){if(E(e,"time"),e instanceof ft)return ht.of(this,e);if(e instanceof rt)return this._atTimeOffsetTime(e);throw new u("time must be an instance of LocalTime or OffsetTime"+(e&&e.constructor&&e.constructor.name?", but is "+e.constructor.name:""))},n.atTime4=function(e,t,n,r){return void 0===n&&(n=0),void 0===r&&(r=0),this.atTime1(ft.of(e,t,n,r))},n._atTimeOffsetTime=function(e){return st.of(ht.of(this,e.toLocalTime()),e.offset())},n.atStartOfDay=function(e){return null!=e?this._atStartOfDayWithZone(e):ht.of(this,ft.MIDNIGHT)},n._atStartOfDayWithZone=function(e){E(e,"zone");var t=this.atTime(ft.MIDNIGHT);if(e instanceof $==0){var n=e.rules().transition(t);null!=n&&n.isGap()&&(t=n.dateTimeAfter())}return it.of(t,e)},n.toEpochDay=function(){var e=this._year,t=this._month,n=0;return n+=365*e,e>=0?n+=v.intDiv(e+3,4)-v.intDiv(e+99,100)+v.intDiv(e+399,400):n-=v.intDiv(e,-4)-v.intDiv(e,-100)+v.intDiv(e,-400),n+=v.intDiv(367*t-362,12),n+=this.dayOfMonth()-1,t>2&&(n--,nt.isLeapYear(e)||n--),n-ut},n.compareTo=function(e){return E(e,"other"),m(e,t,"other"),this._compareTo0(e)},n._compareTo0=function(e){var t=this._year-e._year;return 0===t&&0==(t=this._month-e._month)&&(t=this._day-e._day),t},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.isEqual=function(e){return 0===this.compareTo(e)},n.equals=function(e){return this===e||e instanceof t&&0===this._compareTo0(e)},n.hashCode=function(){var e=this._year,t=this._month,n=this._day;return v.hash(4294965248&e^(e<<11)+(t<<6)+n)},n.toString=function(){var e=this._year,t=this._month,n=this._day;return(Math.abs(e)<1e3?e<0?"-"+(""+(e-1e4)).slice(-4):(""+(e+1e4)).slice(-4):e>9999?"+"+e:""+e)+(t<10?"-0"+t:"-"+t)+(n<10?"-0"+n:"-"+n)},n.toJSON=function(){return this.toString()},n.format=function(t){return E(t,"formatter"),m(t,ze,"formatter"),e.prototype.format.call(this,t)},t}(Q),lt=function(e){function t(){return e.apply(this,arguments)||this}h(t,e);var n=t.prototype;return n.chronology=function(){return this.toLocalDate().chronology()},n.query=function(t){return t===D.chronology()?this.chronology():t===D.precision()?S.NANOS:t===D.localDate()?ct.ofEpochDay(this.toLocalDate().toEpochDay()):t===D.localTime()?this.toLocalTime():t===D.zone()||t===D.zoneId()||t===D.offset()?null:e.prototype.query.call(this,t)},n.adjustInto=function(e){return e.with(C.EPOCH_DAY,this.toLocalDate().toEpochDay()).with(C.NANO_OF_DAY,this.toLocalTime().toNanoOfDay())},n.toInstant=function(e){return m(e,$,"zoneId"),dt.ofEpochSecond(this.toEpochSecond(e),this.toLocalTime().nano())},n.toEpochSecond=function(e){E(e,"offset");var t=86400*this.toLocalDate().toEpochDay()+this.toLocalTime().toSecondOfDay();return t-=e.totalSeconds(),v.safeToInt(t)},t}(H),ht=function(e){function t(t,n){var r;return r=e.call(this)||this,m(t,ct,"date"),m(n,ft,"time"),r._date=t,r._time=n,r}h(t,e),t.now=function(e){return null==e?t._now(Et.systemDefaultZone()):e instanceof Et?t._now(e):t._now(Et.system(e))},t._now=function(e){return E(e,"clock"),t.ofInstant(e.instant(),e.zone())},t._ofEpochMillis=function(e,n){var r=v.floorDiv(e,1e3)+n.totalSeconds(),o=v.floorDiv(r,ft.SECONDS_PER_DAY),i=v.floorMod(r,ft.SECONDS_PER_DAY),s=1e6*v.floorMod(e,1e3);return new t(ct.ofEpochDay(o),ft.ofSecondOfDay(i,s))},t.of=function(){return arguments.length<=2?t.ofDateAndTime.apply(this,arguments):t.ofNumbers.apply(this,arguments)},t.ofNumbers=function(e,n,r,o,i,s,a){return void 0===o&&(o=0),void 0===i&&(i=0),void 0===s&&(s=0),void 0===a&&(a=0),new t(ct.of(e,n,r),ft.of(o,i,s,a))},t.ofDateAndTime=function(e,n){return E(e,"date"),E(n,"time"),new t(e,n)},t.ofInstant=function(e,n){void 0===n&&(n=z.systemDefault()),E(e,"instant"),m(e,dt,"instant"),E(n,"zone");var r=n.rules().offset(e);return t.ofEpochSecond(e.epochSecond(),e.nano(),r)},t.ofEpochSecond=function(e,n,r){void 0===e&&(e=0),void 0===n&&(n=0),2===arguments.length&&n instanceof $&&(r=n,n=0),E(r,"offset");var o=e+r.totalSeconds(),i=v.floorDiv(o,ft.SECONDS_PER_DAY),s=v.floorMod(o,ft.SECONDS_PER_DAY);return new t(ct.ofEpochDay(i),ft.ofSecondOfDay(s,n))},t.from=function(e){if(E(e,"temporal"),e instanceof t)return e;if(e instanceof it)return e.toLocalDateTime();try{return new t(ct.from(e),ft.from(e))}catch(t){throw new o("Unable to obtain LocalDateTime TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return void 0===n&&(n=ze.ISO_LOCAL_DATE_TIME),E(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n._withDateTime=function(e,n){return this._date.equals(e)&&this._time.equals(n)?this:new t(e,n)},n.isSupported=function(e){return e instanceof C||e instanceof S?e.isDateBased()||e.isTimeBased():null!=e&&e.isSupportedBy(this)},n.range=function(e){return e instanceof C?e.isTimeBased()?this._time.range(e):this._date.range(e):e.rangeRefinedBy(this)},n.get=function(t){return t instanceof C?t.isTimeBased()?this._time.get(t):this._date.get(t):e.prototype.get.call(this,t)},n.getLong=function(e){return E(e,"field"),e instanceof C?e.isTimeBased()?this._time.getLong(e):this._date.getLong(e):e.getFrom(this)},n.year=function(){return this._date.year()},n.monthValue=function(){return this._date.monthValue()},n.month=function(){return this._date.month()},n.dayOfMonth=function(){return this._date.dayOfMonth()},n.dayOfYear=function(){return this._date.dayOfYear()},n.dayOfWeek=function(){return this._date.dayOfWeek()},n.hour=function(){return this._time.hour()},n.minute=function(){return this._time.minute()},n.second=function(){return this._time.second()},n.nano=function(){return this._time.nano()},n._withAdjuster=function(n){return E(n,"adjuster"),n instanceof ct?this._withDateTime(n,this._time):n instanceof ft?this._withDateTime(this._date,n):n instanceof t?n:e.prototype._withAdjuster.call(this,n)},n._withField=function(e,t){return E(e,"field"),e instanceof C?e.isTimeBased()?this._withDateTime(this._date,this._time.with(e,t)):this._withDateTime(this._date.with(e,t),this._time):e.adjustInto(this,t)},n.withYear=function(e){return this._withDateTime(this._date.withYear(e),this._time)},n.withMonth=function(e){return this._withDateTime(this._date.withMonth(e),this._time)},n.withDayOfMonth=function(e){return this._withDateTime(this._date.withDayOfMonth(e),this._time)},n.withDayOfYear=function(e){return this._withDateTime(this._date.withDayOfYear(e),this._time)},n.withHour=function(e){var t=this._time.withHour(e);return this._withDateTime(this._date,t)},n.withMinute=function(e){var t=this._time.withMinute(e);return this._withDateTime(this._date,t)},n.withSecond=function(e){var t=this._time.withSecond(e);return this._withDateTime(this._date,t)},n.withNano=function(e){var t=this._time.withNano(e);return this._withDateTime(this._date,t)},n.truncatedTo=function(e){return this._withDateTime(this._date,this._time.truncatedTo(e))},n._plusUnit=function(e,t){if(E(t,"unit"),t instanceof S){switch(t){case S.NANOS:return this.plusNanos(e);case S.MICROS:return this.plusDays(v.intDiv(e,ft.MICROS_PER_DAY)).plusNanos(1e3*v.intMod(e,ft.MICROS_PER_DAY));case S.MILLIS:return this.plusDays(v.intDiv(e,ft.MILLIS_PER_DAY)).plusNanos(1e6*v.intMod(e,ft.MILLIS_PER_DAY));case S.SECONDS:return this.plusSeconds(e);case S.MINUTES:return this.plusMinutes(e);case S.HOURS:return this.plusHours(e);case S.HALF_DAYS:return this.plusDays(v.intDiv(e,256)).plusHours(12*v.intMod(e,256))}return this._withDateTime(this._date.plus(e,t),this._time)}return t.addTo(this,e)},n.plusYears=function(e){var t=this._date.plusYears(e);return this._withDateTime(t,this._time)},n.plusMonths=function(e){var t=this._date.plusMonths(e);return this._withDateTime(t,this._time)},n.plusWeeks=function(e){var t=this._date.plusWeeks(e);return this._withDateTime(t,this._time)},n.plusDays=function(e){var t=this._date.plusDays(e);return this._withDateTime(t,this._time)},n.plusHours=function(e){return this._plusWithOverflow(this._date,e,0,0,0,1)},n.plusMinutes=function(e){return this._plusWithOverflow(this._date,0,e,0,0,1)},n.plusSeconds=function(e){return this._plusWithOverflow(this._date,0,0,e,0,1)},n.plusNanos=function(e){return this._plusWithOverflow(this._date,0,0,0,e,1)},n._minusUnit=function(e,t){return E(t,"unit"),this._plusUnit(-1*e,t)},n.minusYears=function(e){return this.plusYears(-1*e)},n.minusMonths=function(e){return this.plusMonths(-1*e)},n.minusWeeks=function(e){return this.plusWeeks(-1*e)},n.minusDays=function(e){return this.plusDays(-1*e)},n.minusHours=function(e){return this._plusWithOverflow(this._date,e,0,0,0,-1)},n.minusMinutes=function(e){return this._plusWithOverflow(this._date,0,e,0,0,-1)},n.minusSeconds=function(e){return this._plusWithOverflow(this._date,0,0,e,0,-1)},n.minusNanos=function(e){return this._plusWithOverflow(this._date,0,0,0,e,-1)},n._plusWithOverflow=function(e,t,n,r,o,i){if(0===t&&0===n&&0===r&&0===o)return this._withDateTime(e,this._time);var s=v.intDiv(o,ft.NANOS_PER_DAY)+v.intDiv(r,ft.SECONDS_PER_DAY)+v.intDiv(n,ft.MINUTES_PER_DAY)+v.intDiv(t,ft.HOURS_PER_DAY);s*=i;var a=v.intMod(o,ft.NANOS_PER_DAY)+v.intMod(r,ft.SECONDS_PER_DAY)*ft.NANOS_PER_SECOND+v.intMod(n,ft.MINUTES_PER_DAY)*ft.NANOS_PER_MINUTE+v.intMod(t,ft.HOURS_PER_DAY)*ft.NANOS_PER_HOUR,u=this._time.toNanoOfDay();a=a*i+u,s+=v.floorDiv(a,ft.NANOS_PER_DAY);var c=v.floorMod(a,ft.NANOS_PER_DAY),l=c===u?this._time:ft.ofNanoOfDay(c);return this._withDateTime(e.plusDays(s),l)},n.query=function(t){return E(t,"query"),t===D.localDate()?this.toLocalDate():e.prototype.query.call(this,t)},n.adjustInto=function(t){return e.prototype.adjustInto.call(this,t)},n.until=function(e,n){E(e,"endExclusive"),E(n,"unit");var r=t.from(e);if(n instanceof S){if(n.isTimeBased()){var o=this._date.daysUntil(r._date),i=r._time.toNanoOfDay()-this._time.toNanoOfDay();o>0&&i<0?(o--,i+=ft.NANOS_PER_DAY):o<0&&i>0&&(o++,i-=ft.NANOS_PER_DAY);var a=o;switch(n){case S.NANOS:return a=v.safeMultiply(a,ft.NANOS_PER_DAY),v.safeAdd(a,i);case S.MICROS:return a=v.safeMultiply(a,ft.MICROS_PER_DAY),v.safeAdd(a,v.intDiv(i,1e3));case S.MILLIS:return a=v.safeMultiply(a,ft.MILLIS_PER_DAY),v.safeAdd(a,v.intDiv(i,1e6));case S.SECONDS:return a=v.safeMultiply(a,ft.SECONDS_PER_DAY),v.safeAdd(a,v.intDiv(i,ft.NANOS_PER_SECOND));case S.MINUTES:return a=v.safeMultiply(a,ft.MINUTES_PER_DAY),v.safeAdd(a,v.intDiv(i,ft.NANOS_PER_MINUTE));case S.HOURS:return a=v.safeMultiply(a,ft.HOURS_PER_DAY),v.safeAdd(a,v.intDiv(i,ft.NANOS_PER_HOUR));case S.HALF_DAYS:return a=v.safeMultiply(a,2),v.safeAdd(a,v.intDiv(i,12*ft.NANOS_PER_HOUR))}throw new s("Unsupported unit: "+n)}var u=r._date,c=r._time;return u.isAfter(this._date)&&c.isBefore(this._time)?u=u.minusDays(1):u.isBefore(this._date)&&c.isAfter(this._time)&&(u=u.plusDays(1)),this._date.until(u,n)}return n.between(this,r)},n.atOffset=function(e){return st.of(this,e)},n.atZone=function(e){return it.of(this,e)},n.toLocalDate=function(){return this._date},n.toLocalTime=function(){return this._time},n.compareTo=function(e){return E(e,"other"),m(e,t,"other"),this._compareTo0(e)},n._compareTo0=function(e){var t=this._date.compareTo(e.toLocalDate());return 0===t&&(t=this._time.compareTo(e.toLocalTime())),t},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.isEqual=function(e){return 0===this.compareTo(e)},n.equals=function(e){return this===e||e instanceof t&&this._date.equals(e._date)&&this._time.equals(e._time)},n.hashCode=function(){return this._date.hashCode()^this._time.hashCode()},n.toString=function(){return this._date.toString()+"T"+this._time.toString()},n.toJSON=function(){return this.toString()},n.format=function(e){return E(e,"formatter"),e.format(this)},t}(lt),ft=function(e){function t(n,r,o,i){var s;void 0===n&&(n=0),void 0===r&&(r=0),void 0===o&&(o=0),void 0===i&&(i=0),s=e.call(this)||this;var a=v.safeToInt(n),u=v.safeToInt(r),c=v.safeToInt(o),l=v.safeToInt(i);return t._validate(a,u,c,l),0===u&&0===c&&0===l?(t.HOURS[a]||(s._hour=a,s._minute=u,s._second=c,s._nano=l,t.HOURS[a]=p(s)),t.HOURS[a]||p(s)):(s._hour=a,s._minute=u,s._second=c,s._nano=l,s)}h(t,e),t.now=function(e){return null==e?t._now(Et.systemDefaultZone()):e instanceof Et?t._now(e):t._now(Et.system(e))},t._now=function(e){return void 0===e&&(e=Et.systemDefaultZone()),E(e,"clock"),t.ofInstant(e.instant(),e.zone())},t.ofInstant=function(e,n){void 0===n&&(n=z.systemDefault());var r=n.rules().offset(e),o=v.intMod(e.epochSecond(),t.SECONDS_PER_DAY);return(o=v.intMod(o+r.totalSeconds(),t.SECONDS_PER_DAY))<0&&(o+=t.SECONDS_PER_DAY),t.ofSecondOfDay(o,e.nano())},t.of=function(e,n,r,o){return new t(e,n,r,o)},t.ofSecondOfDay=function(e,n){void 0===e&&(e=0),void 0===n&&(n=0),C.SECOND_OF_DAY.checkValidValue(e),C.NANO_OF_SECOND.checkValidValue(n);var r=v.intDiv(e,t.SECONDS_PER_HOUR);e-=r*t.SECONDS_PER_HOUR;var o=v.intDiv(e,t.SECONDS_PER_MINUTE);return new t(r,o,e-=o*t.SECONDS_PER_MINUTE,n)},t.ofNanoOfDay=function(e){void 0===e&&(e=0),C.NANO_OF_DAY.checkValidValue(e);var n=v.intDiv(e,t.NANOS_PER_HOUR);e-=n*t.NANOS_PER_HOUR;var r=v.intDiv(e,t.NANOS_PER_MINUTE);e-=r*t.NANOS_PER_MINUTE;var o=v.intDiv(e,t.NANOS_PER_SECOND);return new t(n,r,o,e-=o*t.NANOS_PER_SECOND)},t.from=function(e){E(e,"temporal");var t=e.query(D.localTime());if(null==t)throw new o("Unable to obtain LocalTime TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""));return t},t.parse=function(e,n){return void 0===n&&(n=ze.ISO_LOCAL_TIME),E(n,"formatter"),n.parse(e,t.FROM)},t._validate=function(e,t,n,r){C.HOUR_OF_DAY.checkValidValue(e),C.MINUTE_OF_HOUR.checkValidValue(t),C.SECOND_OF_MINUTE.checkValidValue(n),C.NANO_OF_SECOND.checkValidValue(r)};var n=t.prototype;return n.isSupported=function(e){return e instanceof C||e instanceof S?e.isTimeBased():null!=e&&e.isSupportedBy(this)},n.range=function(t){return E(t),e.prototype.range.call(this,t)},n.get=function(e){return this.getLong(e)},n.getLong=function(e){return E(e,"field"),e instanceof C?this._get0(e):e.getFrom(this)},n._get0=function(e){switch(e){case C.NANO_OF_SECOND:return this._nano;case C.NANO_OF_DAY:return this.toNanoOfDay();case C.MICRO_OF_SECOND:return v.intDiv(this._nano,1e3);case C.MICRO_OF_DAY:return v.intDiv(this.toNanoOfDay(),1e3);case C.MILLI_OF_SECOND:return v.intDiv(this._nano,1e6);case C.MILLI_OF_DAY:return v.intDiv(this.toNanoOfDay(),1e6);case C.SECOND_OF_MINUTE:return this._second;case C.SECOND_OF_DAY:return this.toSecondOfDay();case C.MINUTE_OF_HOUR:return this._minute;case C.MINUTE_OF_DAY:return 60*this._hour+this._minute;case C.HOUR_OF_AMPM:return v.intMod(this._hour,12);case C.CLOCK_HOUR_OF_AMPM:var t=v.intMod(this._hour,12);return t%12==0?12:t;case C.HOUR_OF_DAY:return this._hour;case C.CLOCK_HOUR_OF_DAY:return 0===this._hour?24:this._hour;case C.AMPM_OF_DAY:return v.intDiv(this._hour,12)}throw new s("Unsupported field: "+e)},n.hour=function(){return this._hour},n.minute=function(){return this._minute},n.second=function(){return this._second},n.nano=function(){return this._nano},n._withAdjuster=function(n){return E(n,"adjuster"),n instanceof t?n:e.prototype._withAdjuster.call(this,n)},n._withField=function(e,n){if(E(e,"field"),m(e,I,"field"),e instanceof C){switch(e.checkValidValue(n),e){case C.NANO_OF_SECOND:return this.withNano(n);case C.NANO_OF_DAY:return t.ofNanoOfDay(n);case C.MICRO_OF_SECOND:return this.withNano(1e3*n);case C.MICRO_OF_DAY:return t.ofNanoOfDay(1e3*n);case C.MILLI_OF_SECOND:return this.withNano(1e6*n);case C.MILLI_OF_DAY:return t.ofNanoOfDay(1e6*n);case C.SECOND_OF_MINUTE:return this.withSecond(n);case C.SECOND_OF_DAY:return this.plusSeconds(n-this.toSecondOfDay());case C.MINUTE_OF_HOUR:return this.withMinute(n);case C.MINUTE_OF_DAY:return this.plusMinutes(n-(60*this._hour+this._minute));case C.HOUR_OF_AMPM:return this.plusHours(n-v.intMod(this._hour,12));case C.CLOCK_HOUR_OF_AMPM:return this.plusHours((12===n?0:n)-v.intMod(this._hour,12));case C.HOUR_OF_DAY:return this.withHour(n);case C.CLOCK_HOUR_OF_DAY:return this.withHour(24===n?0:n);case C.AMPM_OF_DAY:return this.plusHours(12*(n-v.intDiv(this._hour,12)))}throw new s("Unsupported field: "+e)}return e.adjustInto(this,n)},n.withHour=function(e){return void 0===e&&(e=0),this._hour===e?this:new t(e,this._minute,this._second,this._nano)},n.withMinute=function(e){return void 0===e&&(e=0),this._minute===e?this:new t(this._hour,e,this._second,this._nano)},n.withSecond=function(e){return void 0===e&&(e=0),this._second===e?this:new t(this._hour,this._minute,e,this._nano)},n.withNano=function(e){return void 0===e&&(e=0),this._nano===e?this:new t(this._hour,this._minute,this._second,e)},n.truncatedTo=function(e){if(E(e,"unit"),e===S.NANOS)return this;var n=e.duration();if(n.seconds()>t.SECONDS_PER_DAY)throw new o("Unit is too large to be used for truncation");var r=n.toNanos();if(0!==v.intMod(t.NANOS_PER_DAY,r))throw new o("Unit must divide into a standard day without remainder");var i=this.toNanoOfDay();return t.ofNanoOfDay(v.intDiv(i,r)*r)},n._plusUnit=function(e,n){if(E(n,"unit"),n instanceof S){switch(n){case S.NANOS:return this.plusNanos(e);case S.MICROS:return this.plusNanos(1e3*v.intMod(e,t.MICROS_PER_DAY));case S.MILLIS:return this.plusNanos(1e6*v.intMod(e,t.MILLIS_PER_DAY));case S.SECONDS:return this.plusSeconds(e);case S.MINUTES:return this.plusMinutes(e);case S.HOURS:return this.plusHours(e);case S.HALF_DAYS:return this.plusHours(12*v.intMod(e,2))}throw new s("Unsupported unit: "+n)}return n.addTo(this,e)},n.plusHours=function(e){return 0===e?this:new t(v.intMod(v.intMod(e,t.HOURS_PER_DAY)+this._hour+t.HOURS_PER_DAY,t.HOURS_PER_DAY),this._minute,this._second,this._nano)},n.plusMinutes=function(e){if(0===e)return this;var n=this._hour*t.MINUTES_PER_HOUR+this._minute,r=v.intMod(v.intMod(e,t.MINUTES_PER_DAY)+n+t.MINUTES_PER_DAY,t.MINUTES_PER_DAY);return n===r?this:new t(v.intDiv(r,t.MINUTES_PER_HOUR),v.intMod(r,t.MINUTES_PER_HOUR),this._second,this._nano)},n.plusSeconds=function(e){if(0===e)return this;var n=this._hour*t.SECONDS_PER_HOUR+this._minute*t.SECONDS_PER_MINUTE+this._second,r=v.intMod(v.intMod(e,t.SECONDS_PER_DAY)+n+t.SECONDS_PER_DAY,t.SECONDS_PER_DAY);return n===r?this:new t(v.intDiv(r,t.SECONDS_PER_HOUR),v.intMod(v.intDiv(r,t.SECONDS_PER_MINUTE),t.MINUTES_PER_HOUR),v.intMod(r,t.SECONDS_PER_MINUTE),this._nano)},n.plusNanos=function(e){if(0===e)return this;var n=this.toNanoOfDay(),r=v.intMod(v.intMod(e,t.NANOS_PER_DAY)+n+t.NANOS_PER_DAY,t.NANOS_PER_DAY);return n===r?this:new t(v.intDiv(r,t.NANOS_PER_HOUR),v.intMod(v.intDiv(r,t.NANOS_PER_MINUTE),t.MINUTES_PER_HOUR),v.intMod(v.intDiv(r,t.NANOS_PER_SECOND),t.SECONDS_PER_MINUTE),v.intMod(r,t.NANOS_PER_SECOND))},n._minusUnit=function(e,t){return E(t,"unit"),this._plusUnit(-1*e,t)},n.minusHours=function(e){return this.plusHours(-1*v.intMod(e,t.HOURS_PER_DAY))},n.minusMinutes=function(e){return this.plusMinutes(-1*v.intMod(e,t.MINUTES_PER_DAY))},n.minusSeconds=function(e){return this.plusSeconds(-1*v.intMod(e,t.SECONDS_PER_DAY))},n.minusNanos=function(e){return this.plusNanos(-1*v.intMod(e,t.NANOS_PER_DAY))},n.query=function(e){return E(e,"query"),e===D.precision()?S.NANOS:e===D.localTime()?this:e===D.chronology()||e===D.zoneId()||e===D.zone()||e===D.offset()||e===D.localDate()?null:e.queryFrom(this)},n.adjustInto=function(e){return e.with(t.NANO_OF_DAY,this.toNanoOfDay())},n.until=function(e,n){E(e,"endExclusive"),E(n,"unit");var r=t.from(e);if(n instanceof S){var o=r.toNanoOfDay()-this.toNanoOfDay();switch(n){case S.NANOS:return o;case S.MICROS:return v.intDiv(o,1e3);case S.MILLIS:return v.intDiv(o,1e6);case S.SECONDS:return v.intDiv(o,t.NANOS_PER_SECOND);case S.MINUTES:return v.intDiv(o,t.NANOS_PER_MINUTE);case S.HOURS:return v.intDiv(o,t.NANOS_PER_HOUR);case S.HALF_DAYS:return v.intDiv(o,12*t.NANOS_PER_HOUR)}throw new s("Unsupported unit: "+n)}return n.between(this,r)},n.atDate=function(e){return ht.of(e,this)},n.atOffset=function(e){return rt.of(this,e)},n.toSecondOfDay=function(){var e=this._hour*t.SECONDS_PER_HOUR;return(e+=this._minute*t.SECONDS_PER_MINUTE)+this._second},n.toNanoOfDay=function(){var e=this._hour*t.NANOS_PER_HOUR;return e+=this._minute*t.NANOS_PER_MINUTE,(e+=this._second*t.NANOS_PER_SECOND)+this._nano},n.compareTo=function(e){E(e,"other"),m(e,t,"other");var n=v.compareNumbers(this._hour,e._hour);return 0===n&&0===(n=v.compareNumbers(this._minute,e._minute))&&0===(n=v.compareNumbers(this._second,e._second))&&(n=v.compareNumbers(this._nano,e._nano)),n},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.equals=function(e){return this===e||e instanceof t&&this._hour===e._hour&&this._minute===e._minute&&this._second===e._second&&this._nano===e._nano},n.hashCode=function(){var e=this.toNanoOfDay();return v.hash(e)},n.toString=function(){var e="",t=this._hour,n=this._minute,r=this._second,o=this._nano;return e+=t<10?"0":"",e+=t,e+=n<10?":0":":",e+=n,(r>0||o>0)&&(e+=r<10?":0":":",e+=r,o>0&&(e+=".",0===v.intMod(o,1e6)?e+=(""+(v.intDiv(o,1e6)+1e3)).substring(1):0===v.intMod(o,1e3)?e+=(""+(v.intDiv(o,1e3)+1e6)).substring(1):e+=(""+(o+1e9)).substring(1))),e},n.toJSON=function(){return this.toString()},n.format=function(e){return E(e,"formatter"),e.format(this)},t}(H);ft.HOURS_PER_DAY=24,ft.MINUTES_PER_HOUR=60,ft.MINUTES_PER_DAY=ft.MINUTES_PER_HOUR*ft.HOURS_PER_DAY,ft.SECONDS_PER_MINUTE=60,ft.SECONDS_PER_HOUR=ft.SECONDS_PER_MINUTE*ft.MINUTES_PER_HOUR,ft.SECONDS_PER_DAY=ft.SECONDS_PER_HOUR*ft.HOURS_PER_DAY,ft.MILLIS_PER_DAY=1e3*ft.SECONDS_PER_DAY,ft.MICROS_PER_DAY=1e6*ft.SECONDS_PER_DAY,ft.NANOS_PER_SECOND=1e9,ft.NANOS_PER_MINUTE=ft.NANOS_PER_SECOND*ft.SECONDS_PER_MINUTE,ft.NANOS_PER_HOUR=ft.NANOS_PER_MINUTE*ft.MINUTES_PER_HOUR,ft.NANOS_PER_DAY=ft.NANOS_PER_HOUR*ft.HOURS_PER_DAY;var pt=1e6,dt=function(e){function t(n,r){var o;return o=e.call(this)||this,t._validate(n,r),o._seconds=v.safeToInt(n),o._nanos=v.safeToInt(r),o}h(t,e),t.now=function(e){return void 0===e&&(e=Et.systemUTC()),e.instant()},t.ofEpochSecond=function(e,n){void 0===n&&(n=0);var r=e+v.floorDiv(n,ft.NANOS_PER_SECOND),o=v.floorMod(n,ft.NANOS_PER_SECOND);return t._create(r,o)},t.ofEpochMilli=function(e){var n=v.floorDiv(e,1e3),r=v.floorMod(e,1e3);return t._create(n,1e6*r)},t.ofEpochMicro=function(e){var n=v.floorDiv(e,1e6),r=v.floorMod(e,1e6);return t._create(n,1e3*r)},t.from=function(e){try{var n=e.getLong(C.INSTANT_SECONDS),r=e.get(C.NANO_OF_SECOND);return t.ofEpochSecond(n,r)}catch(t){throw new o("Unable to obtain Instant from TemporalAccessor: "+e+", type "+typeof e,t)}},t.parse=function(e){return ze.ISO_INSTANT.parse(e,t.FROM)},t._create=function(e,n){return 0===e&&0===n?t.EPOCH:new t(e,n)},t._validate=function(e,n){if(et.MAX_SECONDS)throw new o("Instant exceeds minimum or maximum instant");if(n<0||n>ft.NANOS_PER_SECOND)throw new o("Instant exceeds minimum or maximum instant")};var n=t.prototype;return n.isSupported=function(e){return e instanceof C?e===C.INSTANT_SECONDS||e===C.NANO_OF_SECOND||e===C.MICRO_OF_SECOND||e===C.MILLI_OF_SECOND:e instanceof S?e.isTimeBased()||e===S.DAYS:null!=e&&e.isSupportedBy(this)},n.range=function(t){return e.prototype.range.call(this,t)},n.get=function(e){return this.getLong(e)},n.getLong=function(e){if(e instanceof C){switch(e){case C.NANO_OF_SECOND:return this._nanos;case C.MICRO_OF_SECOND:return v.intDiv(this._nanos,1e3);case C.MILLI_OF_SECOND:return v.intDiv(this._nanos,pt);case C.INSTANT_SECONDS:return this._seconds}throw new s("Unsupported field: "+e)}return e.getFrom(this)},n.epochSecond=function(){return this._seconds},n.nano=function(){return this._nanos},n._withField=function(e,n){if(E(e,"field"),e instanceof C){switch(e.checkValidValue(n),e){case C.MILLI_OF_SECOND:var r=n*pt;return r!==this._nanos?t._create(this._seconds,r):this;case C.MICRO_OF_SECOND:var o=1e3*n;return o!==this._nanos?t._create(this._seconds,o):this;case C.NANO_OF_SECOND:return n!==this._nanos?t._create(this._seconds,n):this;case C.INSTANT_SECONDS:return n!==this._seconds?t._create(n,this._nanos):this}throw new s("Unsupported field: "+e)}return e.adjustInto(this,n)},n.truncatedTo=function(e){if(E(e,"unit"),e===S.NANOS)return this;var t=e.duration();if(t.seconds()>ft.SECONDS_PER_DAY)throw new o("Unit is too large to be used for truncation");var n=t.toNanos();if(0!==v.intMod(ft.NANOS_PER_DAY,n))throw new o("Unit must divide into a standard day without remainder");var r=v.intMod(this._seconds,ft.SECONDS_PER_DAY)*ft.NANOS_PER_SECOND+this._nanos,i=v.intDiv(r,n)*n;return this.plusNanos(i-r)},n._plusUnit=function(e,t){if(E(e,"amountToAdd"),E(t,"unit"),m(t,w),t instanceof S){switch(t){case S.NANOS:return this.plusNanos(e);case S.MICROS:return this.plusMicros(e);case S.MILLIS:return this.plusMillis(e);case S.SECONDS:return this.plusSeconds(e);case S.MINUTES:return this.plusSeconds(v.safeMultiply(e,ft.SECONDS_PER_MINUTE));case S.HOURS:return this.plusSeconds(v.safeMultiply(e,ft.SECONDS_PER_HOUR));case S.HALF_DAYS:return this.plusSeconds(v.safeMultiply(e,ft.SECONDS_PER_DAY/2));case S.DAYS:return this.plusSeconds(v.safeMultiply(e,ft.SECONDS_PER_DAY))}throw new s("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusSeconds=function(e){return this._plus(e,0)},n.plusMillis=function(e){return this._plus(v.intDiv(e,1e3),v.intMod(e,1e3)*pt)},n.plusNanos=function(e){return this._plus(0,e)},n.plusMicros=function(e){return this._plus(v.intDiv(e,1e6),1e3*v.intMod(e,1e6))},n._plus=function(e,n){if(0===e&&0===n)return this;var r=this._seconds+e;r+=v.intDiv(n,ft.NANOS_PER_SECOND);var o=this._nanos+n%ft.NANOS_PER_SECOND;return t.ofEpochSecond(r,o)},n._minusUnit=function(e,t){return this._plusUnit(-1*e,t)},n.minusSeconds=function(e){return this.plusSeconds(-1*e)},n.minusMillis=function(e){return this.plusMillis(-1*e)},n.minusNanos=function(e){return this.plusNanos(-1*e)},n.minusMicros=function(e){return this.plusMicros(-1*e)},n.query=function(e){return E(e,"query"),e===D.precision()?S.NANOS:e===D.localDate()||e===D.localTime()||e===D.chronology()||e===D.zoneId()||e===D.zone()||e===D.offset()?null:e.queryFrom(this)},n.adjustInto=function(e){return E(e,"temporal"),e.with(C.INSTANT_SECONDS,this._seconds).with(C.NANO_OF_SECOND,this._nanos)},n.until=function(e,n){E(e,"endExclusive"),E(n,"unit");var r=t.from(e);if(n instanceof S){switch(n){case S.NANOS:return this._nanosUntil(r);case S.MICROS:return this._microsUntil(r);case S.MILLIS:return v.safeSubtract(r.toEpochMilli(),this.toEpochMilli());case S.SECONDS:return this._secondsUntil(r);case S.MINUTES:return v.intDiv(this._secondsUntil(r),ft.SECONDS_PER_MINUTE);case S.HOURS:return v.intDiv(this._secondsUntil(r),ft.SECONDS_PER_HOUR);case S.HALF_DAYS:return v.intDiv(this._secondsUntil(r),12*ft.SECONDS_PER_HOUR);case S.DAYS:return v.intDiv(this._secondsUntil(r),ft.SECONDS_PER_DAY)}throw new s("Unsupported unit: "+n)}return n.between(this,r)},n._microsUntil=function(e){var t=v.safeSubtract(e.epochSecond(),this.epochSecond()),n=v.safeMultiply(t,1e6);return v.safeAdd(n,v.intDiv(e.nano()-this.nano(),1e3))},n._nanosUntil=function(e){var t=v.safeSubtract(e.epochSecond(),this.epochSecond()),n=v.safeMultiply(t,ft.NANOS_PER_SECOND);return v.safeAdd(n,e.nano()-this.nano())},n._secondsUntil=function(e){var t=v.safeSubtract(e.epochSecond(),this.epochSecond()),n=e.nano()-this.nano();return t>0&&n<0?t--:t<0&&n>0&&t++,t},n.atOffset=function(e){return st.ofInstant(this,e)},n.atZone=function(e){return it.ofInstant(this,e)},n.toEpochMilli=function(){return v.safeMultiply(this._seconds,1e3)+v.intDiv(this._nanos,pt)},n.compareTo=function(e){E(e,"otherInstant"),m(e,t,"otherInstant");var n=v.compareNumbers(this._seconds,e._seconds);return 0!==n?n:this._nanos-e._nanos},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.equals=function(e){return this===e||e instanceof t&&this.epochSecond()===e.epochSecond()&&this.nano()===e.nano()},n.hashCode=function(){return v.hashCode(this._seconds,this._nanos)},n.toString=function(){return ze.ISO_INSTANT.format(this)},n.toJSON=function(){return this.toString()},t}(H),Et=function(){function e(){}e.systemUTC=function(){return new mt($.UTC)},e.systemDefaultZone=function(){return new mt(z.systemDefault())},e.system=function(e){return new mt(e)},e.fixed=function(e,t){return new _t(e,t)},e.offset=function(e,t){return new gt(e,t)};var t=e.prototype;return t.millis=function(){_("Clock.millis")},t.instant=function(){_("Clock.instant")},t.zone=function(){_("Clock.zone")},t.withZone=function(){_("Clock.withZone")},e}(),mt=function(e){function t(t){var n;return E(t,"zone"),(n=e.call(this)||this)._zone=t,n}h(t,e);var n=t.prototype;return n.zone=function(){return this._zone},n.millis=function(){return(new Date).getTime()},n.instant=function(){return dt.ofEpochMilli(this.millis())},n.equals=function(e){return e instanceof t&&this._zone.equals(e._zone)},n.withZone=function(e){return e.equals(this._zone)?this:new t(e)},n.toString=function(){return"SystemClock["+this._zone.toString()+"]"},t}(Et),_t=function(e){function t(t,n){var r;return(r=e.call(this)||this)._instant=t,r._zoneId=n,r}h(t,e);var n=t.prototype;return n.instant=function(){return this._instant},n.millis=function(){return this._instant.toEpochMilli()},n.zone=function(){return this._zoneId},n.toString=function(){return"FixedClock[]"},n.equals=function(e){return e instanceof t&&this._instant.equals(e._instant)&&this._zoneId.equals(e._zoneId)},n.withZone=function(e){return e.equals(this._zoneId)?this:new t(this._instant,e)},t}(Et),gt=function(e){function t(t,n){var r;return(r=e.call(this)||this)._baseClock=t,r._offset=n,r}h(t,e);var n=t.prototype;return n.zone=function(){return this._baseClock.zone()},n.withZone=function(e){return e.equals(this._baseClock.zone())?this:new t(this._baseClock.withZone(e),this._offset)},n.millis=function(){return this._baseClock.millis()+this._offset.toMillis()},n.instant=function(){return this._baseClock.instant().plus(this._offset)},n.equals=function(e){return e instanceof t&&this._baseClock.equals(e._baseClock)&&this._offset.equals(e._offset)},n.toString=function(){return"OffsetClock["+this._baseClock+","+this._offset+"]"},t}(Et),yt=function(){function e(e,t,n){if(E(e,"transition"),E(t,"offsetBefore"),E(n,"offsetAfter"),t.equals(n))throw new u("Offsets must not be equal");if(0!==e.nano())throw new u("Nano-of-second must be zero");this._transition=e instanceof ht?e:ht.ofEpochSecond(e,0,t),this._offsetBefore=t,this._offsetAfter=n}e.of=function(t,n,r){return new e(t,n,r)};var t=e.prototype;return t.instant=function(){return this._transition.toInstant(this._offsetBefore)},t.toEpochSecond=function(){return this._transition.toEpochSecond(this._offsetBefore)},t.dateTimeBefore=function(){return this._transition},t.dateTimeAfter=function(){return this._transition.plusSeconds(this.durationSeconds())},t.offsetBefore=function(){return this._offsetBefore},t.offsetAfter=function(){return this._offsetAfter},t.duration=function(){return O.ofSeconds(this.durationSeconds())},t.durationSeconds=function(){return this._offsetAfter.totalSeconds()-this._offsetBefore.totalSeconds()},t.isGap=function(){return this._offsetAfter.totalSeconds()>this._offsetBefore.totalSeconds()},t.isOverlap=function(){return this._offsetAfter.totalSeconds()>>16},t.toString=function(){return"Transition["+(this.isGap()?"Gap":"Overlap")+" at "+this._transition.toString()+this._offsetBefore.toString()+" to "+this._offsetAfter+"]"},e}(),At=function(e){function t(){return e.apply(this,arguments)||this}h(t,e);var n=t.prototype;return n.isFixedOffset=function(){return!1},n.offsetOfInstant=function(e){var t=new Date(e.toEpochMilli()).getTimezoneOffset();return $.ofTotalMinutes(-1*t)},n.offsetOfEpochMilli=function(e){var t=new Date(e).getTimezoneOffset();return $.ofTotalMinutes(-1*t)},n.offsetOfLocalDateTime=function(e){var t=1e3*e.toEpochSecond($.UTC),n=new Date(t).getTimezoneOffset(),r=new Date(t+6e4*n).getTimezoneOffset();return $.ofTotalMinutes(-1*r)},n.validOffsets=function(e){return[this.offsetOfLocalDateTime(e)]},n.transition=function(){return null},n.standardOffset=function(e){return this.offsetOfInstant(e)},n.daylightSavings=function(){this._throwNotSupported()},n.isDaylightSavings=function(){this._throwNotSupported()},n.isValidOffset=function(e,t){return this.offsetOfLocalDateTime(e).equals(t)},n.nextTransition=function(){this._throwNotSupported()},n.previousTransition=function(){this._throwNotSupported()},n.transitions=function(){this._throwNotSupported()},n.transitionRules=function(){this._throwNotSupported()},n._throwNotSupported=function(){throw new o("not supported operation")},n.equals=function(e){return this===e||e instanceof t},n.toString=function(){return"SYSTEM"},t}(q),vt=function(e){function t(){var t;return(t=e.call(this)||this)._rules=new At,t}h(t,e);var n=t.prototype;return n.rules=function(){return this._rules},n.equals=function(e){return this===e},n.id=function(){return"SYSTEM"},t}(z),bt=function(){function e(){}return e.systemDefault=function(){return Tt},e.getAvailableZoneIds=function(){return xe.getAvailableZoneIds()},e.of=function(e){if(E(e,"zoneId"),"Z"===e)return $.UTC;if(1===e.length)throw new o("Invalid zone: "+e);if(W.startsWith(e,"+")||W.startsWith(e,"-"))return $.of(e);if("UTC"===e||"GMT"===e||"GMT0"===e||"UT"===e)return new Be(e,$.UTC.rules());if(W.startsWith(e,"UTC+")||W.startsWith(e,"GMT+")||W.startsWith(e,"UTC-")||W.startsWith(e,"GMT-")){var t=$.of(e.substring(3));return 0===t.totalSeconds()?new Be(e.substring(0,3),t.rules()):new Be(e.substring(0,3)+t.id(),t.rules())}if(W.startsWith(e,"UT+")||W.startsWith(e,"UT-")){var n=$.of(e.substring(2));return 0===n.totalSeconds()?new Be("UT",n.rules()):new Be("UT"+n.id(),n.rules())}return"SYSTEM"===e?z.systemDefault():Be.ofId(e)},e.ofOffset=function(e,t){if(E(e,"prefix"),E(t,"offset"),0===e.length)return t;if("GMT"===e||"UTC"===e||"UT"===e)return 0===t.totalSeconds()?new Be(e,t.rules()):new Be(e+t.id(),t.rules());throw new u("Invalid prefix, must be GMT, UTC or UT: "+e)},e.from=function(e){E(e,"temporal");var t=e.query(D.zone());if(null==t)throw new o("Unable to obtain ZoneId from TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""));return t},e}(),Tt=null,wt=!1;wt||(wt=!0,R.MIN_VALUE=-999999,R.MAX_VALUE=999999,O.ZERO=new O(0,0),S.NANOS=new S("Nanos",O.ofNanos(1)),S.MICROS=new S("Micros",O.ofNanos(1e3)),S.MILLIS=new S("Millis",O.ofNanos(1e6)),S.SECONDS=new S("Seconds",O.ofSeconds(1)),S.MINUTES=new S("Minutes",O.ofSeconds(60)),S.HOURS=new S("Hours",O.ofSeconds(3600)),S.HALF_DAYS=new S("HalfDays",O.ofSeconds(43200)),S.DAYS=new S("Days",O.ofSeconds(86400)),S.WEEKS=new S("Weeks",O.ofSeconds(604800)),S.MONTHS=new S("Months",O.ofSeconds(2629746)),S.YEARS=new S("Years",O.ofSeconds(31556952)),S.DECADES=new S("Decades",O.ofSeconds(315569520)),S.CENTURIES=new S("Centuries",O.ofSeconds(3155695200)),S.MILLENNIA=new S("Millennia",O.ofSeconds(31556952e3)),S.ERAS=new S("Eras",O.ofSeconds(31556952*(R.MAX_VALUE+1))),S.FOREVER=new S("Forever",O.ofSeconds(v.MAX_SAFE_INTEGER,999999999)),C.NANO_OF_SECOND=new C("NanoOfSecond",S.NANOS,S.SECONDS,N.of(0,999999999)),C.NANO_OF_DAY=new C("NanoOfDay",S.NANOS,S.DAYS,N.of(0,86399999999999)),C.MICRO_OF_SECOND=new C("MicroOfSecond",S.MICROS,S.SECONDS,N.of(0,999999)),C.MICRO_OF_DAY=new C("MicroOfDay",S.MICROS,S.DAYS,N.of(0,86399999999)),C.MILLI_OF_SECOND=new C("MilliOfSecond",S.MILLIS,S.SECONDS,N.of(0,999)),C.MILLI_OF_DAY=new C("MilliOfDay",S.MILLIS,S.DAYS,N.of(0,86399999)),C.SECOND_OF_MINUTE=new C("SecondOfMinute",S.SECONDS,S.MINUTES,N.of(0,59)),C.SECOND_OF_DAY=new C("SecondOfDay",S.SECONDS,S.DAYS,N.of(0,86399)),C.MINUTE_OF_HOUR=new C("MinuteOfHour",S.MINUTES,S.HOURS,N.of(0,59)),C.MINUTE_OF_DAY=new C("MinuteOfDay",S.MINUTES,S.DAYS,N.of(0,1439)),C.HOUR_OF_AMPM=new C("HourOfAmPm",S.HOURS,S.HALF_DAYS,N.of(0,11)),C.CLOCK_HOUR_OF_AMPM=new C("ClockHourOfAmPm",S.HOURS,S.HALF_DAYS,N.of(1,12)),C.HOUR_OF_DAY=new C("HourOfDay",S.HOURS,S.DAYS,N.of(0,23)),C.CLOCK_HOUR_OF_DAY=new C("ClockHourOfDay",S.HOURS,S.DAYS,N.of(1,24)),C.AMPM_OF_DAY=new C("AmPmOfDay",S.HALF_DAYS,S.DAYS,N.of(0,1)),C.DAY_OF_WEEK=new C("DayOfWeek",S.DAYS,S.WEEKS,N.of(1,7)),C.ALIGNED_DAY_OF_WEEK_IN_MONTH=new C("AlignedDayOfWeekInMonth",S.DAYS,S.WEEKS,N.of(1,7)),C.ALIGNED_DAY_OF_WEEK_IN_YEAR=new C("AlignedDayOfWeekInYear",S.DAYS,S.WEEKS,N.of(1,7)),C.DAY_OF_MONTH=new C("DayOfMonth",S.DAYS,S.MONTHS,N.of(1,28,31),"day"),C.DAY_OF_YEAR=new C("DayOfYear",S.DAYS,S.YEARS,N.of(1,365,366)),C.EPOCH_DAY=new C("EpochDay",S.DAYS,S.FOREVER,N.of(-365961662,364522971)),C.ALIGNED_WEEK_OF_MONTH=new C("AlignedWeekOfMonth",S.WEEKS,S.MONTHS,N.of(1,4,5)),C.ALIGNED_WEEK_OF_YEAR=new C("AlignedWeekOfYear",S.WEEKS,S.YEARS,N.of(1,53)),C.MONTH_OF_YEAR=new C("MonthOfYear",S.MONTHS,S.YEARS,N.of(1,12),"month"),C.PROLEPTIC_MONTH=new C("ProlepticMonth",S.MONTHS,S.FOREVER,N.of(12*R.MIN_VALUE,12*R.MAX_VALUE+11)),C.YEAR_OF_ERA=new C("YearOfEra",S.YEARS,S.FOREVER,N.of(1,R.MAX_VALUE,R.MAX_VALUE+1)),C.YEAR=new C("Year",S.YEARS,S.FOREVER,N.of(R.MIN_VALUE,R.MAX_VALUE),"year"),C.ERA=new C("Era",S.ERAS,S.FOREVER,N.of(0,1)),C.INSTANT_SECONDS=new C("InstantSeconds",S.SECONDS,S.FOREVER,N.of(A,y)),C.OFFSET_SECONDS=new C("OffsetSeconds",S.SECONDS,S.FOREVER,N.of(-64800,64800)),function(){ft.HOURS=[];for(var e=0;e<24;e++)ft.of(e,0,0,0);ft.MIN=ft.HOURS[0],ft.MAX=new ft(23,59,59,999999999),ft.MIDNIGHT=ft.HOURS[0],ft.NOON=ft.HOURS[12],ft.FROM=x("LocalTime.FROM",(function(e){return ft.from(e)}))}(),he=new se,fe=new ae,pe=new ue,de=new ce,Ee=new le("WeekBasedYears",O.ofSeconds(31556952)),me=new le("QuarterYears",O.ofSeconds(7889238)),re.DAY_OF_QUARTER=he,re.QUARTER_OF_YEAR=fe,re.WEEK_OF_WEEK_BASED_YEAR=pe,re.WEEK_BASED_YEAR=de,re.WEEK_BASED_YEARS=Ee,re.QUARTER_YEARS=me,ct.prototype.isoWeekOfWeekyear=function(){return this.get(re.WEEK_OF_WEEK_BASED_YEAR)},ct.prototype.isoWeekyear=function(){return this.get(re.WEEK_BASED_YEAR)},D.ZONE_ID=x("ZONE_ID",(function(e){return e.query(D.ZONE_ID)})),D.CHRONO=x("CHRONO",(function(e){return e.query(D.CHRONO)})),D.PRECISION=x("PRECISION",(function(e){return e.query(D.PRECISION)})),D.OFFSET=x("OFFSET",(function(e){return e.isSupported(C.OFFSET_SECONDS)?$.ofTotalSeconds(e.get(C.OFFSET_SECONDS)):null})),D.ZONE=x("ZONE",(function(e){var t=e.query(D.ZONE_ID);return null!=t?t:e.query(D.OFFSET)})),D.LOCAL_DATE=x("LOCAL_DATE",(function(e){return e.isSupported(C.EPOCH_DAY)?ct.ofEpochDay(e.getLong(C.EPOCH_DAY)):null})),D.LOCAL_TIME=x("LOCAL_TIME",(function(e){return e.isSupported(C.NANO_OF_DAY)?ft.ofNanoOfDay(e.getLong(C.NANO_OF_DAY)):null})),F.MONDAY=new F(0,"MONDAY"),F.TUESDAY=new F(1,"TUESDAY"),F.WEDNESDAY=new F(2,"WEDNESDAY"),F.THURSDAY=new F(3,"THURSDAY"),F.FRIDAY=new F(4,"FRIDAY"),F.SATURDAY=new F(5,"SATURDAY"),F.SUNDAY=new F(6,"SUNDAY"),F.FROM=x("DayOfWeek.FROM",(function(e){return F.from(e)})),B=[F.MONDAY,F.TUESDAY,F.WEDNESDAY,F.THURSDAY,F.FRIDAY,F.SATURDAY,F.SUNDAY],dt.MIN_SECONDS=-31619119219200,dt.MAX_SECONDS=31494816403199,dt.EPOCH=new dt(0,0),dt.MIN=dt.ofEpochSecond(dt.MIN_SECONDS,0),dt.MAX=dt.ofEpochSecond(dt.MAX_SECONDS,999999999),dt.FROM=x("Instant.FROM",(function(e){return dt.from(e)})),ct.MIN=ct.of(R.MIN_VALUE,1,1),ct.MAX=ct.of(R.MAX_VALUE,12,31),ct.EPOCH_0=ct.ofEpochDay(0),ct.FROM=x("LocalDate.FROM",(function(e){return ct.from(e)})),ht.MIN=ht.of(ct.MIN,ft.MIN),ht.MAX=ht.of(ct.MAX,ft.MAX),ht.FROM=x("LocalDateTime.FROM",(function(e){return ht.from(e)})),Xe.MIN_VALUE=R.MIN_VALUE,Xe.MAX_VALUE=R.MAX_VALUE,Le=(new Ge).appendValue(C.YEAR,4,10,ge.EXCEEDS_PAD).toFormatter(),Xe.FROM=x("Year.FROM",(function(e){return Xe.from(e)})),U.JANUARY=new U(1,"JANUARY"),U.FEBRUARY=new U(2,"FEBRUARY"),U.MARCH=new U(3,"MARCH"),U.APRIL=new U(4,"APRIL"),U.MAY=new U(5,"MAY"),U.JUNE=new U(6,"JUNE"),U.JULY=new U(7,"JULY"),U.AUGUST=new U(8,"AUGUST"),U.SEPTEMBER=new U(9,"SEPTEMBER"),U.OCTOBER=new U(10,"OCTOBER"),U.NOVEMBER=new U(11,"NOVEMBER"),U.DECEMBER=new U(12,"DECEMBER"),P=[U.JANUARY,U.FEBRUARY,U.MARCH,U.APRIL,U.MAY,U.JUNE,U.JULY,U.AUGUST,U.SEPTEMBER,U.OCTOBER,U.NOVEMBER,U.DECEMBER],De=(new Ge).appendValue(C.YEAR,4,10,ge.EXCEEDS_PAD).appendLiteral("-").appendValue(C.MONTH_OF_YEAR,2).toFormatter(),Ke.FROM=x("YearMonth.FROM",(function(e){return Ke.from(e)})),Ce=(new Ge).appendLiteral("--").appendValue(C.MONTH_OF_YEAR,2).appendLiteral("-").appendValue(C.DAY_OF_MONTH,2).toFormatter(),qe.FROM=x("MonthDay.FROM",(function(e){return qe.from(e)})),j.ofDays(0),$.MAX_SECONDS=18*ft.SECONDS_PER_HOUR,$.UTC=$.ofTotalSeconds(0),$.MIN=$.ofTotalSeconds(-$.MAX_SECONDS),$.MAX=$.ofTotalSeconds($.MAX_SECONDS),it.FROM=x("ZonedDateTime.FROM",(function(e){return it.from(e)})),Tt=new vt,z.systemDefault=bt.systemDefault,z.getAvailableZoneIds=bt.getAvailableZoneIds,z.of=bt.of,z.ofOffset=bt.ofOffset,z.from=bt.from,$.from=bt.from,z.SYSTEM=Tt,z.UTC=$.ofTotalSeconds(0),nt.INSTANCE=new nt("IsoChronology"),ze.ISO_LOCAL_DATE=(new Ge).appendValue(C.YEAR,4,10,ge.EXCEEDS_PAD).appendLiteral("-").appendValue(C.MONTH_OF_YEAR,2).appendLiteral("-").appendValue(C.DAY_OF_MONTH,2).toFormatter(Y.STRICT).withChronology(nt.INSTANCE),ze.ISO_LOCAL_TIME=(new Ge).appendValue(C.HOUR_OF_DAY,2).appendLiteral(":").appendValue(C.MINUTE_OF_HOUR,2).optionalStart().appendLiteral(":").appendValue(C.SECOND_OF_MINUTE,2).optionalStart().appendFraction(C.NANO_OF_SECOND,0,9,!0).toFormatter(Y.STRICT),ze.ISO_LOCAL_DATE_TIME=(new Ge).parseCaseInsensitive().append(ze.ISO_LOCAL_DATE).appendLiteral("T").append(ze.ISO_LOCAL_TIME).toFormatter(Y.STRICT).withChronology(nt.INSTANCE),ze.ISO_INSTANT=(new Ge).parseCaseInsensitive().appendInstant().toFormatter(Y.STRICT),ze.ISO_OFFSET_DATE_TIME=(new Ge).parseCaseInsensitive().append(ze.ISO_LOCAL_DATE_TIME).appendOffsetId().toFormatter(Y.STRICT).withChronology(nt.INSTANCE),ze.ISO_ZONED_DATE_TIME=(new Ge).append(ze.ISO_OFFSET_DATE_TIME).optionalStart().appendLiteral("[").parseCaseSensitive().appendZoneId().appendLiteral("]").toFormatter(Y.STRICT).withChronology(nt.INSTANCE),ze.BASIC_ISO_DATE=(new Ge).appendValue(C.YEAR,4,10,ge.EXCEEDS_PAD).appendValue(C.MONTH_OF_YEAR,2).appendValue(C.DAY_OF_MONTH,2).toFormatter(Y.STRICT).withChronology(nt.INSTANCE),ze.ISO_OFFSET_DATE=(new Ge).parseCaseInsensitive().append(ze.ISO_LOCAL_DATE).appendOffsetId().toFormatter(Y.STRICT).withChronology(nt.INSTANCE),ze.ISO_OFFSET_TIME=(new Ge).parseCaseInsensitive().append(ze.ISO_LOCAL_TIME).appendOffsetId().toFormatter(Y.STRICT).withChronology(nt.INSTANCE),ze.ISO_ORDINAL_DATE=(new Ge).appendValue(C.YEAR,4,10,ge.EXCEEDS_PAD).appendLiteral("-").appendValue(C.DAY_OF_YEAR).toFormatter(Y.STRICT),ze.ISO_WEEK_DATE=(new Ge).appendValue(C.YEAR,4,10,ge.EXCEEDS_PAD).appendLiteral("-W").appendValue(C.ALIGNED_WEEK_OF_YEAR).appendLiteral("-").appendValue(C.DAY_OF_WEEK).toFormatter(Y.STRICT),ze.ISO_DATE=(new Ge).parseCaseInsensitive().append(ze.ISO_LOCAL_DATE).optionalStart().appendOffsetId().optionalEnd().toFormatter(Y.STRICT).withChronology(nt.INSTANCE),ze.ISO_TIME=(new Ge).parseCaseInsensitive().append(ze.ISO_LOCAL_TIME).optionalStart().appendOffsetId().optionalEnd().toFormatter(Y.STRICT),ze.ISO_DATE_TIME=(new Ge).append(ze.ISO_LOCAL_DATE_TIME).optionalStart().appendOffsetId().optionalEnd().toFormatter(Y.STRICT).withChronology(nt.INSTANCE),ze.PARSED_EXCESS_DAYS=x("PARSED_EXCESS_DAYS",(function(e){return e instanceof Z?e.excessDays:j.ZERO})),ze.PARSED_LEAP_SECOND=x("PARSED_LEAP_SECOND",(function(e){return e instanceof Z&&e.leapSecond})),Oe.BASE_DATE=ct.of(2e3,1,1),Ge.CompositePrinterParser=ve,Ge.PadPrinterParserDecorator=Ie,Ge.SettingsParser=Ne,Ge.CharLiteralPrinterParser=Me,Ge.StringLiteralPrinterParser=Me,Ge.CharLiteralPrinterParser=Ae,Ge.NumberPrinterParser=we,Ge.ReducedPrinterParser=Oe,Ge.FractionPrinterParser=be,Ge.OffsetIdPrinterParser=Se,Ge.ZoneIdPrinterParser=Pe,st.MIN=ht.MIN.atOffset($.MAX),st.MAX=ht.MAX.atOffset($.MIN),st.FROM=x("OffsetDateTime.FROM",(function(e){return st.from(e)})),rt.MIN=rt.ofNumbers(0,0,0,0,$.MAX),rt.MAX=rt.ofNumbers(23,59,59,999999999,$.MIN),rt.FROM=x("OffsetTime.FROM",(function(e){return rt.from(e)})));var Ot=function(){function e(e,t){var n;if(e instanceof dt)this.instant=e;else{if(e instanceof ct)t=null==t?z.systemDefault():t,n=e.atStartOfDay(t);else if(e instanceof ht)t=null==t?z.systemDefault():t,n=e.atZone(t);else{if(!(e instanceof it))throw new u("unsupported instance for convert operation:"+e);n=null==t?e:e.withZoneSameInstant(t)}this.instant=n.toInstant()}}var t=e.prototype;return t.toDate=function(){return new Date(this.instant.toEpochMilli())},t.toEpochMilli=function(){return this.instant.toEpochMilli()},e}();function Rt(e,t){return new Ot(e,t)}function St(e,t){if(void 0===t&&(t=z.systemDefault()),E(e,"date"),E(t,"zone"),e instanceof Date)return dt.ofEpochMilli(e.getTime()).atZone(t);if("function"==typeof e.toDate&&e.toDate()instanceof Date)return dt.ofEpochMilli(e.toDate().getTime()).atZone(t);throw new u("date must be a javascript Date or a moment instance")}var It,Nt,Ct={assert:g,DateTimeBuilder:Z,DateTimeParseContext:ee,DateTimePrintContext:ne,MathUtil:v,StringUtil:W,StringBuilder:We},Dt={_:Ct,convert:Rt,nativeJs:St,ArithmeticException:a,DateTimeException:o,DateTimeParseException:i,IllegalArgumentException:u,IllegalStateException:c,UnsupportedTemporalTypeException:s,NullPointerException:l,Clock:Et,DayOfWeek:F,Duration:O,Instant:dt,LocalDate:ct,LocalTime:ft,LocalDateTime:ht,OffsetTime:rt,OffsetDateTime:st,Month:U,MonthDay:qe,ParsePosition:G,Period:j,Year:Xe,YearConstants:R,YearMonth:Ke,ZonedDateTime:it,ZoneOffset:$,ZoneId:z,ZoneRegion:Be,ZoneOffsetTransition:yt,ZoneRules:q,ZoneRulesProvider:xe,ChronoLocalDate:Q,ChronoLocalDateTime:lt,ChronoZonedDateTime:ot,IsoChronology:nt,ChronoField:C,ChronoUnit:S,IsoFields:re,Temporal:H,TemporalAccessor:L,TemporalAdjuster:Je,TemporalAdjusters:$e,TemporalAmount:T,TemporalField:I,TemporalQueries:D,TemporalQuery:M,TemporalUnit:w,ValueRange:N,DateTimeFormatter:ze,DateTimeFormatterBuilder:Ge,DecimalStyle:_e,ResolverStyle:Y,SignStyle:ge,TextStyle:ye},Lt=(It=Dt,Nt=[],function(e){return~Nt.indexOf(e)||(e(It),Nt.push(e)),It});Dt.use=Lt},79117:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(43106);t.default=(0,r.gunzipSync)(Buffer.from("H4sIAAAAAAACA+3dTYgcaRkA4LemO9Mhxm0FITnE9Cwr4jHgwgZ22B6YywqCJ0HQg5CL4sGTuOjCtGSF4CkHEW856MlTQHD3EJnWkU0Owh5VxE3LHlYQdNxd2U6mU59UV/d09fw4M2EySSXPAzNdP1/9fX/99bzVNZEN4jisRDulVFnQmLxm1aXF9Id/2/xMxNJ4XZlg576yuYlGt9gupV6xoFf8jhu9YvulVrFlp5XSx+lfvYhORGPXvqIRWSxERKtIm8bKFd10WNfKDS5Fo9jJWrq2+M2IlW+8uHgl/+BsROfPF4v5L7148Ur68Sha6dqZpYiVVy8tvLCWXo80Sf/lS89dGX2wHGvpzoXVn75/YWH5wmqe8uika82ViJXTy83Ve2k5Urozm38wm4/ls6t5uT6yfsTSJ7J3T0VKt8c5ExEXI8aFkH729c3eT+7EC6ca8cVULZUiYacX0R5PNWNxlh9L1y90q5kyzrpyy+9WcvOV6URntqw7La9sNVstXyczWVaWYbaaTYqzOHpr7pyiNT3/YzKuT63Z/FqKZlFTiuXtFM2vVOtIq7jiyKJbWZaOWD0euz0yoV2Z7kY0xq2x0YhfzVpmM5px9nTEH7JZ0ot5u39p0ma75Z472/s/H+2yr2inYyuq7fMvJivH2rM72N/Z3lyL31F2b1ya1P0zn816k2KP6JU9UzseucdQH5YqVeH/lFajSN2udg+TLJ9rksNxlvV2lki19rXKI43TPLejFu4ov7k3nMbhyhfY3Xb37f8BAGCf0eMTOH5szf154KmnNgKcnLb+Fzi2AfXktbN7fJelwTAiO/W5uQ2KINXRYu+znqo/WTAdLadURHmy3qciazd3bra4T3w16/f7t7Ms9U5gfJu10955sx1r3vmhBAAAAAAAgId20J1iZbDowNvIjuH427Gr5l/eiC+8OplZON8sVjx/qr9y+Pj+YRItT+NqAM+kkZs3AAAAAID6yfx1FwCAI97/dCh1/ub6SA0AAAAAAAAAgNoT/wcAAAAAAACA+hP/BwAAAAAAAID6E/8HAAAAAAAAgPoT/wcAAAAAAACA+hP/BwAAAAAAAID6E/8HAAAAAAAAgPoT/wcAAAAAAACA+hP/BwAAAAAAAID6E/8HAAAAAAAAgPoT/wcAAAAAAACA+hutp5SiQpYAAAAAAAAAQO2MIpZiT804flnAE2fhwjOeAZXr76kOAAAAAAAA8FjNf4N/l0NE3U/vuVQskLpSd4/Yh2xu9xTu0tFeeNYsLI2f/VMdNxTzj6Je9E/+6pp6Nn3awW3A54goe4Bss6v+PGsjQGMAAAAAAOBp5XEgwH6e7J7rwEQHRb/XvAMAAAAAAAA8yzoDeQDwVGjIAgAAAAAAAACoPfF/AAAAAAAAAKg/8X8AAAAAAAAAqD/xfwAAAAAAAACoP/F/AAAAAAAAAKg/8X8AAAAAAAAAqD/xfwAAAAAAAACoP/F/AAAAAAAAAKg/8X8AAAAAAAAAqD/xfwAAAAAAAACoP/F/AAAAAAAAAKg/8X8AAAAAAAAAqL/GSkSkClkCAAAAAAAAALXTSAAAAAAAAABA3Y1kAQAAAAAAAADUX8RSXZ9dsHC9+M8Fg2Ex/em1lAZpEBGttcrVjZqLEa+k0XpKw9mG4zWx4ukPUMhkAQAAAAAAABzBqbSe3//rXOS9HxGdo4TqR2XkutCdBu+LaPZw/lBbO7cbHnh2C7N7AIo4evEznllqLqWUp/LnYOtpM2bnOH66wI1+9GO4sOuISwv/TOlumu56FDv3NZhc4mR9v7zYIrafr40j/Cccvj9Xns3t3mu99E7qxUv3bqS0/ouNH/08++RGemfQ+nsx/5uNXsQPGulynPvv3ZTW37zd+1ovrqaYpP/122X6Xpx779Z3zr/3YOPKW1lkaRDf31pPaf3j/msRsVGkL+d/f+/m4sJsPm1cfSsr16e8m9Ldj/KsnyIuR3nXw83Is3EhxLd/2V773ks3m/cj/THKUummdP9qKhIOImuOU0Xjwb3y+oqt735rpTetVbF9n8R4x9crRfO77TKqVOZpDclv5bfK18lMnk+q0K18UpxF/RrGXE0Zxtqx3tWSj+vxbL4XaasfKb0dRbtLW73JsfPGg177H+OmGKlfvS1msllt7JEJm9XOJqXR+Fkfo1H66uy5H1v3Xx5+uJmGLw9jro2u7Loj4PnuR6+f+e3d261+eazNhzrL7X83MohoHpS4PddV8ki1it61//pw1g7z6p1U/26Nm2llST57B5rUvuG0XqSU/rPd7jYrqWcbd+beJQ77BgPMDwn37/8BAGCf0eMTOH4cPlufv9VGgJOzqf8Fjm1APXkd7B7f5dF57GPMaWy/MTvjvNvtXj6h8W2+GXvnzXaseeeHEgAAAAAAAB7aQXeKlcGiadBoEOeLb2dtpGOL2MyOtf391a3P/zD96c3JzIP3t4oV797vrh8+vn+YRL5bBuj/AQAAAABqJvfHXQAAHkX82zfXAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACeAgkAAAAAAAAAqLuRLAAAAAAAAACA2hv9D1iu/VAYaAYA","base64"))},99127:e=>{"use strict";const t=e=>e.codePointAt(0);function n(e){const t=[],n=e.length;for(let r=0;r=55296&&o<=56319&&n>r+1){const n=e.charCodeAt(r+1);if(n>=56320&&n<=57343){t.push(1024*(o-55296)+n-56320+65536),r+=1;continue}}t.push(o)}return t}function r({unassigned_code_points:e,commonly_mapped_to_nothing:r,non_ASCII_space_characters:o,prohibited_characters:i,bidirectional_r_al:s,bidirectional_l:a},u,c={}){const l=o,h=r;if("string"!=typeof u)throw new TypeError("Expected string.");if(0===u.length)return"";const f=n(u).map((e=>l.get(e)?32:e)).filter((e=>!h.get(e))),p=String.fromCodePoint.apply(null,f).normalize("NFKC"),d=n(p);if(d.some((e=>i.get(e))))throw new Error("Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3");if(!0!==c.allowUnassigned&&d.some((t=>e.get(t))))throw new Error("Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5");const E=d.some((e=>s.get(e))),m=d.some((e=>a.get(e)));if(E&&m)throw new Error("String must not contain RandALCat and LCat at the same time, see https://tools.ietf.org/html/rfc3454#section-6");const _=s.get(t(p[0])),g=s.get(t((y=p)[y.length-1]));var y;if(E&&(!_||!g))throw new Error("Bidirectional RandALCat character must be the first and the last character of the string, see https://tools.ietf.org/html/rfc3454#section-6");return p}r.saslprep=r,r.default=r,e.exports=r},49958:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.createMemoryCodePoints=void 0;const o=r(n(18165));t.createMemoryCodePoints=function(e){let t=0;function n(){const n=e.readUInt32BE(t);t+=4;const r=e.slice(t,t+n);return t+=n,(0,o.default)({buffer:r})}return{unassigned_code_points:n(),commonly_mapped_to_nothing:n(),non_ASCII_space_characters:n(),prohibited_characters:n(),bidirectional_r_al:n(),bidirectional_l:n()}}},13767:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};const o=r(n(99127)),i=n(49958),s=r(n(79117)),a=(0,i.createMemoryCodePoints)(s.default);function u(e,t){return(0,o.default)(a,e,t)}u.saslprep=u,u.default=u,e.exports=u},68038:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.buildConnectionString=void 0,t.buildConnectionString=function(e){return Object.entries(e).map((([e,t])=>function(e,t){if(null==t)return[e,""];if("boolean"==typeof t)return[e,t?"Yes":"No"];{const n=t.toString();return function(e){var t;return!function(e){if("{"!==e[0])return!1;for(let t=1;t{"use strict";var n;Object.defineProperty(t,"__esModule",{value:!0}),function(e){e[e.key=0]="key",e[e.value=1]="value"}(n||(n={}));const r=Object.freeze({key:{terminator:"=",quotes:{}},value:{terminator:";",quotes:{'"':'"',"'":"'","{":"}"}}});t.default=function(e,t=r){const o={};let i=n.key,s=!1,a=!1,u=!1,c="",l="",h="",f=0;function p(){return i===n.key?t.key:t.value}function d(e){return p().terminator===e}function E(e){return Object.keys(p().quotes).some((t=>e===t))}function m(e){l+=e}function _(){switch(u||(l=l.trim()),i){case n.key:h=l.toLowerCase(),i=n.value;break;case n.value:i=n.key,o[h]=l,h=""}s=!1,a=!1,u=!1,c="",l=""}for(;f"string"==typeof e&&e.length<=128},ApplicationIntent:{type:i.STRING,allowedValues:["ReadOnly","ReadWrite"],default:"ReadWrite"},"Asynchronous Processing":{type:i.BOOL,default:!1,aliases:["Async"]},AttachDBFilename:{type:i.STRING,aliases:["Extended Properties","Initial File Name"]},Authentication:{type:i.STRING,allowedValues:["Active Directory Integrated","Active Directory Password","Sql Password"]},"Column Encryption Setting":{type:i.STRING},"Connection Timeout":{type:i.NUMBER,aliases:["Connect Timeout","Timeout"],default:15},"Connection Lifetime":{type:i.NUMBER,aliases:["Load Balance Timeout"],default:0},ConnectRetryCount:{type:i.NUMBER,default:1,validator:e=>e>0&&e<=255},ConnectRetryInterval:{type:i.NUMBER,default:10},"Context Connection":{type:i.BOOL,default:!1},"Current Language":{aliases:["Language"],type:i.STRING,validator:e=>"string"==typeof e&&e.length<=128},"Data Source":{aliases:["Addr","Address","Server","Network Address"],type:i.STRING},Encrypt:{type:i.BOOL,default:!1},Enlist:{type:i.BOOL,default:!0},"Failover Partner":{type:i.STRING},"Initial Catalog":{type:i.STRING,aliases:["Database"],validator:e=>"string"==typeof e&&e.length<=128},"Integrated Security":{type:i.BOOL,aliases:["Trusted_Connection"],coerce:e=>"sspi"===e||null},"Max Pool Size":{type:i.NUMBER,default:100,validator:e=>e>=1},"Min Pool Size":{type:i.NUMBER,default:0,validator:e=>e>=0},MultipleActiveResultSets:{type:i.BOOL,default:!1},MultiSubnetFailover:{type:i.BOOL,default:!1},"Network Library":{type:i.STRING,aliases:["Network","Net"],allowedValues:["dbnmpntw","dbmsrpcn","dbmsadsn","dbmsgnet","dbmslpcn","dbmsspxn","dbmssocn","Dbmsvinn"]},"Packet Size":{type:i.NUMBER,default:8e3,validator:e=>e>=512&&e<=32768},Password:{type:i.STRING,aliases:["PWD"],validator:e=>"string"==typeof e&&e.length<=128},"Persist Security Info":{type:i.BOOL,aliases:["PersistSecurityInfo"],default:!1},PoolBlockingPeriod:{type:i.NUMBER,default:0,coerce(e){if("string"!=typeof e)return null;switch(e.toLowerCase()){case"alwaysblock":return 1;case"auto":return 0;case"neverblock":return 2}return null}},Pooling:{type:i.BOOL,default:!0},Replication:{type:i.BOOL,default:!1},"Transaction Binding":{type:i.STRING,allowedValues:["Implicit Unbind","Explicit Unbind"],default:"Implicit Unbind"},TransparentNetworkIPResolution:{type:i.BOOL,default:!0},TrustServerCertificate:{type:i.BOOL,default:!1},"Type System Version":{type:i.STRING,allowedValues:["SQL Server 2012","SQL Server 2008","SQL Server 2005","Latest"]},"User ID":{type:i.STRING,aliases:["UID"],validator:e=>"string"==typeof e&&e.length<=128},"User Instance":{type:i.BOOL,default:!1},"Workstation ID":{type:i.STRING,aliases:["WSID"],validator:e=>"string"==typeof e&&e.length<=128}},t.default=function(e,n=!1,r=!1,i=!1,u=t.SCHEMA){const c=Object.entries(u).reduce(((e,[t,n])=>{var r;return Object.assign(e,{[t.toLowerCase()]:n}),(null===(r=n.aliases)||void 0===r?void 0:r.reduce(((e,r)=>Object.assign(e,{[r.toLowerCase()]:{...n,canonical:t.toLowerCase()}})),e))||e}),{});return Object.entries((0,o.default)(e)).reduce(((e,[t,r])=>{if(!Object.prototype.hasOwnProperty.call(c,t))return Object.assign(e,{[t]:a(r,s(r))});let o=a(r,c[t].type,c[t].coerce);i&&!function(e,t,n){let r=!0;return n&&(r=n(e)),r&&(r=(null==t?void 0:t.includes(e))||!1),r}(o,c[t].allowedValues,c[t].validator)&&(o=c[t].default);const u=n&&c[t].canonical||t;return Object.assign(e,{[u]:o})}),{})}},47135:function(e,t){"use strict";var n;n=function(){let n=function(e,t,r,o){if(t=t||[],"function"!=typeof importScripts&&n.webworker){var i=n.lastid++;return n.buffer[i]=r,void n.webworker.postMessage({id:i,sql:e,params:t})}return 0===arguments.length?new F.Select({columns:[new F.Column({columnid:"*"})],from:[new F.ParamValue({param:0})]}):1===arguments.length&&e.constructor===Array?n.promise(e):("function"==typeof t&&(o=r,r=t,t=[]),"object"!=typeof t&&(t=[t]),"string"==typeof e&&"#"===e[0]&&"object"==typeof document?e=document.querySelector(e).textContent:"object"==typeof e&&e instanceof HTMLElement?e=e.textContent:"function"==typeof e&&(e=e.toString(),e=(/\/\*([\S\s]+)\*\//m.exec(e)||["","Function given as SQL. Plese Provide SQL string or have a /* ... */ syle comment with SQL in the function."])[1]),n.exec(e,t,r,o))};n.version="4.3.3",n.build="develop-b9447ae3",n.debug=void 0;var r=function(){var e=function(e,t,n,r){for(n=n||{},r=e.length;r--;n[e[r]]=t);return n},t=[2,13],r=[1,104],o=[1,102],i=[1,103],s=[1,6],a=[1,42],u=[1,79],c=[1,76],h=[1,94],f=[1,93],p=[1,69],d=[1,101],E=[1,85],m=[1,64],_=[1,71],g=[1,84],y=[1,66],A=[1,70],v=[1,68],b=[1,61],T=[1,74],w=[1,62],O=[1,67],R=[1,83],S=[1,77],I=[1,86],N=[1,87],C=[1,81],D=[1,82],L=[1,80],M=[1,88],x=[1,89],B=[1,90],P=[1,91],F=[1,92],U=[1,98],k=[1,65],j=[1,78],G=[1,72],V=[1,96],Y=[1,97],H=[1,63],Q=[1,73],W=[1,108],z=[1,107],q=[10,310,606,767],K=[10,310,314,606,767],X=[1,115],J=[1,116],$=[1,117],Z=[1,118],ee=[1,119],te=[1,120],ne=[130,357,414],re=[1,128],oe=[1,127],ie=[1,135],se=[1,165],ae=[1,176],ue=[1,179],ce=[1,174],le=[1,182],he=[1,186],fe=[1,161],pe=[1,183],de=[1,170],Ee=[1,172],me=[1,175],_e=[1,184],ge=[1,201],ye=[1,202],Ae=[1,167],ve=[1,194],be=[1,189],Te=[1,190],we=[1,195],Oe=[1,196],Re=[1,197],Se=[1,198],Ie=[1,199],Ne=[1,200],Ce=[1,203],De=[1,204],Le=[1,177],Me=[1,178],xe=[1,180],Be=[1,181],Pe=[1,187],Fe=[1,193],Ue=[1,185],ke=[1,188],je=[1,173],Ge=[1,171],Ve=[1,192],Ye=[1,205],He=[2,4,5],Qe=[2,476],We=[1,208],ze=[1,213],qe=[1,222],Ke=[1,218],Xe=[10,72,78,93,98,118,128,162,168,169,183,198,232,249,251,310,314,606,767],Je=[2,4,5,10,72,76,77,78,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,183,185,187,198,244,245,284,285,286,287,288,289,290,291,310,314,424,428,606,767],$e=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],Ze=[1,251],et=[1,258],tt=[1,267],nt=[1,272],rt=[1,271],ot=[2,4,5,10,72,77,78,93,98,107,118,128,131,132,137,143,145,149,152,154,156,162,168,169,179,180,181,183,198,232,244,245,249,251,269,270,274,275,277,284,285,286,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,306,307,310,314,316,321,424,428,606,767],it=[2,162],st=[1,283],at=[10,74,78,310,314,509,606,767],ut=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,193,198,206,208,222,223,224,225,226,227,228,229,230,231,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,306,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,348,360,372,373,374,377,378,390,393,400,404,405,406,407,408,409,410,412,413,421,422,424,428,430,437,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,518,519,520,521,606,767],ct=[2,4,5,10,53,72,89,124,146,156,189,270,271,293,310,339,342,343,400,404,405,408,410,412,413,421,422,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,521,606,767],lt=[1,564],ht=[1,566],ft=[2,508],pt=[1,572],dt=[1,583],Et=[1,586],mt=[1,587],_t=[10,78,89,132,137,146,189,300,310,314,474,606,767],gt=[10,74,310,314,606,767],yt=[2,572],At=[1,605],vt=[2,4,5,156],bt=[1,643],Tt=[1,615],wt=[1,649],Ot=[1,650],Rt=[1,623],St=[1,634],It=[1,621],Nt=[1,629],Ct=[1,622],Dt=[1,630],Lt=[1,632],Mt=[1,624],xt=[1,625],Bt=[1,644],Pt=[1,641],Ft=[1,642],Ut=[1,618],kt=[1,620],jt=[1,612],Gt=[1,613],Vt=[1,614],Yt=[1,616],Ht=[1,617],Qt=[1,619],Wt=[1,626],zt=[1,627],qt=[1,631],Kt=[1,633],Xt=[1,635],Jt=[1,636],$t=[1,637],Zt=[1,638],en=[1,639],tn=[1,645],nn=[1,646],rn=[1,647],on=[1,648],sn=[2,290],an=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,231,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],un=[2,364],cn=[1,671],ln=[1,681],hn=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,231,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],fn=[1,697],pn=[1,706],dn=[1,705],En=[2,4,5,10,72,74,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],mn=[10,72,74,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],_n=[2,202],gn=[1,728],yn=[10,72,78,93,98,118,128,162,168,169,183,232,249,251,310,314,606,767],An=[2,163],vn=[1,731],bn=[2,4,5,112],Tn=[1,744],wn=[1,763],On=[1,743],Rn=[1,742],Sn=[1,737],In=[1,738],Nn=[1,740],Cn=[1,741],Dn=[1,745],Ln=[1,746],Mn=[1,747],xn=[1,748],Bn=[1,749],Pn=[1,750],Fn=[1,751],Un=[1,752],kn=[1,753],jn=[1,754],Gn=[1,755],Vn=[1,756],Yn=[1,757],Hn=[1,758],Qn=[1,759],Wn=[1,760],zn=[1,762],qn=[1,764],Kn=[1,765],Xn=[1,766],Jn=[1,767],$n=[1,768],Zn=[1,769],er=[1,770],tr=[1,773],nr=[1,774],rr=[1,775],or=[1,776],ir=[1,777],sr=[1,778],ar=[1,779],ur=[1,780],cr=[1,781],lr=[1,782],hr=[1,783],fr=[1,784],pr=[74,89,189],dr=[10,74,78,154,187,230,301,310,314,347,360,372,373,377,378,606,767],Er=[1,801],mr=[10,74,78,304,310,314,606,767],_r=[1,802],gr=[1,808],yr=[1,809],Ar=[1,813],vr=[10,74,78,310,314,606,767],br=[2,4,5,77,131,132,137,143,145,149,152,154,156,179,180,181,244,245,269,270,274,275,277,284,285,286,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,306,307,316,321,424,428],Tr=[10,72,78,93,98,107,118,128,162,168,169,183,198,232,249,251,310,314,606,767],wr=[2,4,5,10,72,77,78,93,98,107,118,128,131,132,137,143,145,149,152,154,156,162,164,168,169,179,180,181,183,185,187,195,198,232,244,245,249,251,269,270,274,275,277,284,285,286,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,306,307,310,314,316,321,424,428,606,767],Or=[2,4,5,132,300],Rr=[1,848],Sr=[10,74,76,78,310,314,606,767],Ir=[2,743],Nr=[10,74,76,78,132,139,141,145,152,310,314,424,428,606,767],Cr=[2,1166],Dr=[10,74,76,78,139,141,145,152,310,314,424,428,606,767],Lr=[10,74,76,78,139,141,145,310,314,424,428,606,767],Mr=[10,74,78,139,141,310,314,606,767],xr=[10,78,89,132,146,189,300,310,314,474,606,767],Br=[339,342,343],Pr=[2,769],Fr=[1,873],Ur=[1,874],kr=[1,875],jr=[1,876],Gr=[1,885],Vr=[1,884],Yr=[164,166,338],Hr=[2,449],Qr=[1,940],Wr=[2,4,5,77,131,156,293,294,295,296,297],zr=[1,955],qr=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,124,128,129,130,131,132,134,135,137,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,318,319,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],Kr=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],Xr=[2,380],Jr=[1,962],$r=[310,312,314],Zr=[74,304],eo=[74,304,430],to=[1,969],no=[2,4,5,10,53,72,74,76,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],ro=[74,430],oo=[1,982],io=[1,981],so=[1,988],ao=[10,72,78,93,98,118,128,162,168,169,232,249,251,310,314,606,767],uo=[1,1014],co=[10,72,78,310,314,606,767],lo=[1,1020],ho=[1,1021],fo=[1,1022],po=[2,4,5,10,72,74,76,77,78,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,198,244,245,284,285,286,287,288,289,290,291,310,314,424,428,606,767],Eo=[1,1072],mo=[1,1071],_o=[1,1085],go=[1,1084],yo=[1,1092],Ao=[10,72,74,78,93,98,107,118,128,162,168,169,183,198,232,249,251,310,314,606,767],vo=[1,1124],bo=[10,78,89,146,189,310,314,474,606,767],To=[1,1144],wo=[1,1143],Oo=[1,1142],Ro=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],So=[1,1158],Io=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,318,319,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],No=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,319,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],Co=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,124,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,318,319,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],Do=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,124,128,129,130,131,132,134,135,137,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,318,319,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],Lo=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,318,324,325,326,327,328,329,330,334,335,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],Mo=[2,411],xo=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,107,118,122,128,129,130,131,132,134,135,137,143,145,146,148,149,150,152,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,318,334,335,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],Bo=[2,288],Po=[2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],Fo=[10,78,310,314,606,767],Uo=[1,1194],ko=[10,77,78,143,145,152,181,306,310,314,424,428,606,767],jo=[10,74,78,310,312,314,468,606,767],Go=[1,1205],Vo=[10,72,78,118,128,162,168,169,232,249,251,310,314,606,767],Yo=[10,72,74,78,93,98,118,128,162,168,169,183,198,232,249,251,310,314,606,767],Ho=[2,4,5,72,76,77,78,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,185,187,244,245,284,285,286,287,288,289,290,291,424,428],Qo=[2,4,5,72,74,76,77,78,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,185,187,244,245,284,285,286,287,288,289,290,291,424,428],Wo=[2,1090],zo=[2,4,5,72,74,76,77,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,185,187,244,245,284,285,286,287,288,289,290,291,424,428],qo=[1,1257],Ko=[10,74,78,128,310,312,314,468,606,767],Xo=[115,116,124],Jo=[2,589],$o=[1,1286],Zo=[76,139],ei=[2,729],ti=[1,1303],ni=[1,1304],ri=[2,4,5,10,53,72,76,89,124,146,156,189,230,270,271,293,310,314,339,342,343,400,404,405,408,410,412,413,421,422,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,521,606,767],oi=[2,333],ii=[1,1328],si=[1,1342],ai=[1,1344],ui=[2,492],ci=[74,78],li=[10,310,312,314,468,606,767],hi=[10,72,78,118,162,168,169,232,249,251,310,314,606,767],fi=[1,1360],pi=[1,1364],di=[1,1365],Ei=[1,1367],mi=[1,1368],_i=[1,1369],gi=[1,1370],yi=[1,1371],Ai=[1,1372],vi=[1,1373],bi=[1,1374],Ti=[10,72,74,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,232,249,251,310,314,606,767],wi=[1,1399],Oi=[10,72,78,118,162,168,169,249,251,310,314,606,767],Ri=[10,72,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,232,249,251,310,314,606,767],Si=[1,1497],Ii=[1,1499],Ni=[2,4,5,77,143,145,152,156,181,293,294,295,296,297,306,424,428],Ci=[1,1513],Di=[10,72,74,78,162,168,169,249,251,310,314,606,767],Li=[1,1531],Mi=[1,1533],xi=[1,1534],Bi=[1,1530],Pi=[1,1529],Fi=[1,1528],Ui=[1,1535],ki=[1,1525],ji=[1,1526],Gi=[1,1527],Vi=[1,1553],Yi=[2,4,5,10,53,72,89,124,146,156,189,270,271,293,310,314,339,342,343,400,404,405,408,410,412,413,421,422,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,521,606,767],Hi=[1,1564],Qi=[1,1572],Wi=[1,1571],zi=[10,72,78,162,168,169,249,251,310,314,606,767],qi=[10,72,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],Ki=[2,4,5,10,72,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],Xi=[1,1632],Ji=[1,1634],$i=[1,1631],Zi=[1,1633],es=[187,193,372,373,374,377],ts=[2,520],ns=[1,1639],rs=[1,1658],os=[10,72,78,162,168,169,310,314,606,767],is=[1,1668],ss=[1,1669],as=[1,1670],us=[1,1691],cs=[4,10,247,310,314,347,360,606,767],ls=[1,1739],hs=[10,72,74,78,118,162,168,169,239,249,251,310,314,606,767],fs=[2,4,5,77],ps=[1,1833],ds=[1,1845],Es=[1,1864],ms=[10,72,78,162,168,169,310,314,419,606,767],_s=[10,74,78,230,310,314,606,767],gs={trace:function(){},yy:{},symbols_:{error:2,Literal:3,LITERAL:4,BRALITERAL:5,NonReserved:6,LiteralWithSpaces:7,main:8,Statements:9,EOF:10,Statements_group0:11,AStatement:12,ExplainStatement:13,EXPLAIN:14,QUERY:15,PLAN:16,Statement:17,AlterTable:18,AttachDatabase:19,Call:20,CreateDatabase:21,CreateIndex:22,CreateGraph:23,CreateTable:24,CreateView:25,CreateEdge:26,CreateVertex:27,Declare:28,Delete:29,DetachDatabase:30,DropDatabase:31,DropIndex:32,DropTable:33,DropView:34,If:35,Insert:36,Merge:37,Reindex:38,RenameTable:39,Select:40,ShowCreateTable:41,ShowColumns:42,ShowDatabases:43,ShowIndex:44,ShowTables:45,TruncateTable:46,WithSelect:47,CreateTrigger:48,DropTrigger:49,BeginTransaction:50,CommitTransaction:51,RollbackTransaction:52,EndTransaction:53,UseDatabase:54,Update:55,JavaScript:56,Source:57,Assert:58,While:59,Continue:60,Break:61,BeginEnd:62,Print:63,Require:64,SetVariable:65,ExpressionStatement:66,AddRule:67,Query:68,Echo:69,CreateFunction:70,CreateAggregate:71,WITH:72,WithTablesList:73,COMMA:74,WithTable:75,AS:76,LPAR:77,RPAR:78,SelectClause:79,Select_option0:80,IntoClause:81,FromClause:82,Select_option1:83,WhereClause:84,GroupClause:85,OrderClause:86,LimitClause:87,UnionClause:88,SEARCH:89,Select_repetition0:90,Select_option2:91,PivotClause:92,PIVOT:93,Expression:94,FOR:95,PivotClause_option0:96,PivotClause_option1:97,UNPIVOT:98,IN:99,ColumnsList:100,PivotClause_option2:101,PivotClause2:102,AsList:103,AsLiteral:104,AsPart:105,RemoveClause:106,REMOVE:107,RemoveClause_option0:108,RemoveColumnsList:109,RemoveColumn:110,Column:111,LIKE:112,StringValue:113,ArrowDot:114,ARROW:115,DOT:116,SearchSelector:117,ORDER:118,BY:119,OrderExpressionsList:120,SearchSelector_option0:121,DOTDOT:122,CARET:123,EQ:124,SearchSelector_repetition_plus0:125,SearchSelector_repetition_plus1:126,SearchSelector_option1:127,WHERE:128,OF:129,CLASS:130,NUMBER:131,STRING:132,SLASH:133,VERTEX:134,EDGE:135,EXCLAMATION:136,SHARP:137,MODULO:138,GT:139,LT:140,GTGT:141,LTLT:142,DOLLAR:143,Json:144,AT:145,SET:146,SetColumnsList:147,TO:148,VALUE:149,ROW:150,ExprList:151,COLON:152,PlusStar:153,NOT:154,SearchSelector_repetition2:155,IF:156,SearchSelector_repetition3:157,Aggregator:158,SearchSelector_repetition4:159,SearchSelector_group0:160,SearchSelector_repetition5:161,UNION:162,SearchSelectorList:163,ALL:164,SearchSelector_repetition6:165,ANY:166,SearchSelector_repetition7:167,INTERSECT:168,EXCEPT:169,AND:170,OR:171,PATH:172,RETURN:173,ResultColumns:174,REPEAT:175,SearchSelector_repetition8:176,SearchSelectorList_repetition0:177,SearchSelectorList_repetition1:178,PLUS:179,STAR:180,QUESTION:181,SearchFrom:182,FROM:183,SelectModifier:184,DISTINCT:185,TopClause:186,UNIQUE:187,SelectClause_option0:188,SELECT:189,COLUMN:190,MATRIX:191,TEXTSTRING:192,INDEX:193,RECORDSET:194,TOP:195,NumValue:196,TopClause_option0:197,INTO:198,Table:199,FuncValue:200,ParamValue:201,VarValue:202,FromTablesList:203,JoinTablesList:204,ApplyClause:205,CROSS:206,APPLY:207,OUTER:208,FromTable:209,FromTable_option0:210,FromTable_option1:211,INDEXED:212,INSERTED:213,FromString:214,JoinTable:215,JoinMode:216,JoinTableAs:217,OnClause:218,JoinTableAs_option0:219,JoinTableAs_option1:220,JoinModeMode:221,NATURAL:222,JOIN:223,INNER:224,LEFT:225,RIGHT:226,FULL:227,SEMI:228,ANTI:229,ON:230,USING:231,GROUP:232,GroupExpressionsList:233,HavingClause:234,GroupExpression:235,GROUPING:236,ROLLUP:237,CUBE:238,HAVING:239,CORRESPONDING:240,OrderExpression:241,NullsOrder:242,NULLS:243,FIRST:244,LAST:245,DIRECTION:246,COLLATE:247,NOCASE:248,LIMIT:249,OffsetClause:250,OFFSET:251,LimitClause_option0:252,FETCH:253,LimitClause_option1:254,LimitClause_option2:255,LimitClause_option3:256,ResultColumn:257,Star:258,AggrValue:259,Op:260,LogicValue:261,NullValue:262,ExistsValue:263,CaseValue:264,CastClause:265,ArrayValue:266,NewClause:267,Expression_group0:268,CURRENT_TIMESTAMP:269,JAVASCRIPT:270,CREATE:271,FUNCTION:272,AGGREGATE:273,NEW:274,CAST:275,ColumnType:276,CONVERT:277,PrimitiveValue:278,OverClause:279,OVER:280,OverPartitionClause:281,OverOrderByClause:282,PARTITION:283,SUM:284,TOTAL:285,COUNT:286,MIN:287,MAX:288,AVG:289,AGGR:290,ARRAY:291,FuncValue_option0:292,REPLACE:293,DATEADD:294,DATEDIFF:295,TIMESTAMPDIFF:296,INTERVAL:297,TRUE:298,FALSE:299,NSTRING:300,NULL:301,EXISTS:302,ARRAYLBRA:303,RBRA:304,ParamValue_group0:305,BRAQUESTION:306,CASE:307,WhensList:308,ElseClause:309,END:310,When:311,WHEN:312,THEN:313,ELSE:314,REGEXP:315,TILDA:316,GLOB:317,ESCAPE:318,NOT_LIKE:319,BARBAR:320,MINUS:321,AMPERSAND:322,BAR:323,GE:324,LE:325,EQEQ:326,EQEQEQ:327,NE:328,NEEQEQ:329,NEEQEQEQ:330,CondOp:331,AllSome:332,ColFunc:333,BETWEEN:334,NOT_BETWEEN:335,IS:336,DOUBLECOLON:337,SOME:338,UPDATE:339,SetColumn:340,SetColumn_group0:341,DELETE:342,INSERT:343,Into:344,Values:345,ValuesListsList:346,DEFAULT:347,VALUES:348,ValuesList:349,Value:350,DateValue:351,TemporaryClause:352,TableClass:353,IfNotExists:354,CreateTableDefClause:355,CreateTableOptionsClause:356,TABLE:357,CreateTableOptions:358,CreateTableOption:359,IDENTITY:360,TEMP:361,ColumnDefsList:362,ConstraintsList:363,Constraint:364,ConstraintName:365,PrimaryKey:366,ForeignKey:367,UniqueKey:368,IndexKey:369,Check:370,CONSTRAINT:371,CHECK:372,PRIMARY:373,KEY:374,PrimaryKey_option0:375,ColsList:376,FOREIGN:377,REFERENCES:378,ForeignKey_option0:379,OnForeignKeyClause:380,ParColsList:381,OnDeleteClause:382,OnUpdateClause:383,NO:384,ACTION:385,UniqueKey_option0:386,UniqueKey_option1:387,ColumnDef:388,ColumnConstraintsClause:389,ColumnConstraints:390,SingularColumnType:391,NumberMax:392,ENUM:393,MAXNUM:394,ColumnConstraintsList:395,ColumnConstraint:396,ParLiteral:397,ColumnConstraint_option0:398,ColumnConstraint_option1:399,DROP:400,DropTable_group0:401,IfExists:402,TablesList:403,ALTER:404,RENAME:405,ADD:406,MODIFY:407,ATTACH:408,DATABASE:409,DETACH:410,AsClause:411,USE:412,SHOW:413,VIEW:414,CreateView_option0:415,CreateView_option1:416,SubqueryRestriction:417,READ:418,ONLY:419,OPTION:420,SOURCE:421,ASSERT:422,JsonObject:423,ATLBRA:424,JsonArray:425,JsonValue:426,JsonPrimitiveValue:427,LCUR:428,JsonPropertiesList:429,RCUR:430,JsonElementsList:431,JsonProperty:432,OnOff:433,SetPropsList:434,AtDollar:435,SetProp:436,OFF:437,COMMIT:438,TRANSACTION:439,ROLLBACK:440,BEGIN:441,ElseStatement:442,WHILE:443,CONTINUE:444,BREAK:445,PRINT:446,REQUIRE:447,StringValuesList:448,PluginsList:449,Plugin:450,ECHO:451,DECLARE:452,DeclaresList:453,DeclareItem:454,TRUNCATE:455,MERGE:456,MergeInto:457,MergeUsing:458,MergeOn:459,MergeMatchedList:460,OutputClause:461,MergeMatched:462,MergeNotMatched:463,MATCHED:464,MergeMatchedAction:465,MergeNotMatchedAction:466,TARGET:467,OUTPUT:468,CreateVertex_option0:469,CreateVertex_option1:470,CreateVertex_option2:471,CreateVertexSet:472,SharpValue:473,CONTENT:474,CreateEdge_option0:475,GRAPH:476,GraphList:477,GraphVertexEdge:478,GraphElement:479,GraphVertexEdge_option0:480,GraphVertexEdge_option1:481,GraphElementVar:482,GraphVertexEdge_option2:483,GraphVertexEdge_option3:484,GraphVertexEdge_option4:485,GraphVar:486,GraphAsClause:487,GraphAtClause:488,GraphElement2:489,GraphElement2_option0:490,GraphElement2_option1:491,GraphElement2_option2:492,GraphElement2_option3:493,GraphElement_option0:494,GraphElement_option1:495,GraphElement_option2:496,SharpLiteral:497,GraphElement_option3:498,GraphElement_option4:499,GraphElement_option5:500,ColonLiteral:501,DeleteVertex:502,DeleteVertex_option0:503,DeleteEdge:504,DeleteEdge_option0:505,DeleteEdge_option1:506,DeleteEdge_option2:507,Term:508,COLONDASH:509,TermsList:510,QUESTIONDASH:511,CALL:512,TRIGGER:513,BeforeAfter:514,InsertDeleteUpdate:515,CreateTrigger_option0:516,CreateTrigger_option1:517,BEFORE:518,AFTER:519,INSTEAD:520,REINDEX:521,A:522,ABSENT:523,ABSOLUTE:524,ACCORDING:525,ADA:526,ADMIN:527,ALWAYS:528,ASC:529,ASSERTION:530,ASSIGNMENT:531,ATTRIBUTE:532,ATTRIBUTES:533,BASE64:534,BERNOULLI:535,BLOCKED:536,BOM:537,BREADTH:538,C:539,CASCADE:540,CATALOG:541,CATALOG_NAME:542,CHAIN:543,CHARACTERISTICS:544,CHARACTERS:545,CHARACTER_SET_CATALOG:546,CHARACTER_SET_NAME:547,CHARACTER_SET_SCHEMA:548,CLASS_ORIGIN:549,COBOL:550,COLLATION:551,COLLATION_CATALOG:552,COLLATION_NAME:553,COLLATION_SCHEMA:554,COLUMNS:555,COLUMN_NAME:556,COMMAND_FUNCTION:557,COMMAND_FUNCTION_CODE:558,COMMITTED:559,CONDITION_NUMBER:560,CONNECTION:561,CONNECTION_NAME:562,CONSTRAINTS:563,CONSTRAINT_CATALOG:564,CONSTRAINT_NAME:565,CONSTRAINT_SCHEMA:566,CONSTRUCTOR:567,CONTROL:568,CURSOR_NAME:569,DATA:570,DATETIME_INTERVAL_CODE:571,DATETIME_INTERVAL_PRECISION:572,DB:573,DEFAULTS:574,DEFERRABLE:575,DEFERRED:576,DEFINED:577,DEFINER:578,DEGREE:579,DEPTH:580,DERIVED:581,DESC:582,DESCRIPTOR:583,DIAGNOSTICS:584,DISPATCH:585,DOCUMENT:586,DOMAIN:587,DYNAMIC_FUNCTION:588,DYNAMIC_FUNCTION_CODE:589,EMPTY:590,ENCODING:591,ENFORCED:592,EXCLUDE:593,EXCLUDING:594,EXPRESSION:595,FILE:596,FINAL:597,FLAG:598,FOLLOWING:599,FORTRAN:600,FOUND:601,FS:602,G:603,GENERAL:604,GENERATED:605,GO:606,GOTO:607,GRANTED:608,HEX:609,HIERARCHY:610,ID:611,IGNORE:612,IMMEDIATE:613,IMMEDIATELY:614,IMPLEMENTATION:615,INCLUDING:616,INCREMENT:617,INDENT:618,INITIALLY:619,INPUT:620,INSTANCE:621,INSTANTIABLE:622,INTEGRITY:623,INVOKER:624,ISOLATION:625,K:626,KEY_MEMBER:627,KEY_TYPE:628,LENGTH:629,LEVEL:630,LIBRARY:631,LINK:632,LOCATION:633,LOCATOR:634,M:635,MAP:636,MAPPING:637,MAXVALUE:638,MESSAGE_LENGTH:639,MESSAGE_OCTET_LENGTH:640,MESSAGE_TEXT:641,MINVALUE:642,MORE:643,MUMPS:644,NAME:645,NAMES:646,NAMESPACE:647,NESTING:648,NEXT:649,NFC:650,NFD:651,NFKC:652,NFKD:653,NIL:654,NORMALIZED:655,NULLABLE:656,OBJECT:657,OCTETS:658,OPTIONS:659,ORDERING:660,ORDINALITY:661,OTHERS:662,OVERRIDING:663,P:664,PAD:665,PARAMETER_MODE:666,PARAMETER_NAME:667,PARAMETER_ORDINAL_POSITION:668,PARAMETER_SPECIFIC_CATALOG:669,PARAMETER_SPECIFIC_NAME:670,PARAMETER_SPECIFIC_SCHEMA:671,PARTIAL:672,PASCAL:673,PASSING:674,PASSTHROUGH:675,PERMISSION:676,PLACING:677,PLI:678,PRECEDING:679,PRESERVE:680,PRIOR:681,PRIVILEGES:682,PUBLIC:683,RECOVERY:684,RELATIVE:685,REPEATABLE:686,REQUIRING:687,RESPECT:688,RESTART:689,RESTORE:690,RESTRICT:691,RETURNED_CARDINALITY:692,RETURNED_LENGTH:693,RETURNED_OCTET_LENGTH:694,RETURNED_SQLSTATE:695,RETURNING:696,ROLE:697,ROUTINE:698,ROUTINE_CATALOG:699,ROUTINE_NAME:700,ROUTINE_SCHEMA:701,ROW_COUNT:702,SCALE:703,SCHEMA:704,SCHEMA_NAME:705,SCOPE_CATALOG:706,SCOPE_NAME:707,SCOPE_SCHEMA:708,SECTION:709,SECURITY:710,SELECTIVE:711,SELF:712,SEQUENCE:713,SERIALIZABLE:714,SERVER:715,SERVER_NAME:716,SESSION:717,SETS:718,SIMPLE:719,SIZE:720,SPACE:721,SPECIFIC_NAME:722,STANDALONE:723,STATE:724,STATEMENT:725,STRIP:726,STRUCTURE:727,STYLE:728,SUBCLASS_ORIGIN:729,T:730,TABLE_NAME:731,TEMPORARY:732,TIES:733,TOKEN:734,TOP_LEVEL_COUNT:735,TRANSACTIONS_COMMITTED:736,TRANSACTIONS_ROLLED_BACK:737,TRANSACTION_ACTIVE:738,TRANSFORM:739,TRANSFORMS:740,TRIGGER_CATALOG:741,TRIGGER_NAME:742,TRIGGER_SCHEMA:743,TYPE:744,UNBOUNDED:745,UNCOMMITTED:746,UNDER:747,UNLINK:748,UNNAMED:749,UNTYPED:750,URI:751,USAGE:752,USER_DEFINED_TYPE_CATALOG:753,USER_DEFINED_TYPE_CODE:754,USER_DEFINED_TYPE_NAME:755,USER_DEFINED_TYPE_SCHEMA:756,VALID:757,VERSION:758,WHITESPACE:759,WORK:760,WRAPPER:761,WRITE:762,XMLDECLARATION:763,XMLSCHEMA:764,YES:765,ZONE:766,SEMICOLON:767,PERCENT:768,ROWS:769,FuncValue_option0_group0:770,$accept:0,$end:1},terminals_:{2:"error",4:"LITERAL",5:"BRALITERAL",10:"EOF",14:"EXPLAIN",15:"QUERY",16:"PLAN",53:"EndTransaction",72:"WITH",74:"COMMA",76:"AS",77:"LPAR",78:"RPAR",89:"SEARCH",93:"PIVOT",95:"FOR",98:"UNPIVOT",99:"IN",107:"REMOVE",112:"LIKE",115:"ARROW",116:"DOT",118:"ORDER",119:"BY",122:"DOTDOT",123:"CARET",124:"EQ",128:"WHERE",129:"OF",130:"CLASS",131:"NUMBER",132:"STRING",133:"SLASH",134:"VERTEX",135:"EDGE",136:"EXCLAMATION",137:"SHARP",138:"MODULO",139:"GT",140:"LT",141:"GTGT",142:"LTLT",143:"DOLLAR",145:"AT",146:"SET",148:"TO",149:"VALUE",150:"ROW",152:"COLON",154:"NOT",156:"IF",162:"UNION",164:"ALL",166:"ANY",168:"INTERSECT",169:"EXCEPT",170:"AND",171:"OR",172:"PATH",173:"RETURN",175:"REPEAT",179:"PLUS",180:"STAR",181:"QUESTION",183:"FROM",185:"DISTINCT",187:"UNIQUE",189:"SELECT",190:"COLUMN",191:"MATRIX",192:"TEXTSTRING",193:"INDEX",194:"RECORDSET",195:"TOP",198:"INTO",206:"CROSS",207:"APPLY",208:"OUTER",212:"INDEXED",213:"INSERTED",222:"NATURAL",223:"JOIN",224:"INNER",225:"LEFT",226:"RIGHT",227:"FULL",228:"SEMI",229:"ANTI",230:"ON",231:"USING",232:"GROUP",236:"GROUPING",237:"ROLLUP",238:"CUBE",239:"HAVING",240:"CORRESPONDING",243:"NULLS",244:"FIRST",245:"LAST",246:"DIRECTION",247:"COLLATE",248:"NOCASE",249:"LIMIT",251:"OFFSET",253:"FETCH",269:"CURRENT_TIMESTAMP",270:"JAVASCRIPT",271:"CREATE",272:"FUNCTION",273:"AGGREGATE",274:"NEW",275:"CAST",277:"CONVERT",280:"OVER",283:"PARTITION",284:"SUM",285:"TOTAL",286:"COUNT",287:"MIN",288:"MAX",289:"AVG",290:"AGGR",291:"ARRAY",293:"REPLACE",294:"DATEADD",295:"DATEDIFF",296:"TIMESTAMPDIFF",297:"INTERVAL",298:"TRUE",299:"FALSE",300:"NSTRING",301:"NULL",302:"EXISTS",303:"ARRAYLBRA",304:"RBRA",306:"BRAQUESTION",307:"CASE",310:"END",312:"WHEN",313:"THEN",314:"ELSE",315:"REGEXP",316:"TILDA",317:"GLOB",318:"ESCAPE",319:"NOT_LIKE",320:"BARBAR",321:"MINUS",322:"AMPERSAND",323:"BAR",324:"GE",325:"LE",326:"EQEQ",327:"EQEQEQ",328:"NE",329:"NEEQEQ",330:"NEEQEQEQ",334:"BETWEEN",335:"NOT_BETWEEN",336:"IS",337:"DOUBLECOLON",338:"SOME",339:"UPDATE",342:"DELETE",343:"INSERT",347:"DEFAULT",348:"VALUES",351:"DateValue",357:"TABLE",360:"IDENTITY",361:"TEMP",371:"CONSTRAINT",372:"CHECK",373:"PRIMARY",374:"KEY",377:"FOREIGN",378:"REFERENCES",384:"NO",385:"ACTION",390:"ColumnConstraints",393:"ENUM",394:"MAXNUM",400:"DROP",404:"ALTER",405:"RENAME",406:"ADD",407:"MODIFY",408:"ATTACH",409:"DATABASE",410:"DETACH",412:"USE",413:"SHOW",414:"VIEW",418:"READ",419:"ONLY",420:"OPTION",421:"SOURCE",422:"ASSERT",424:"ATLBRA",428:"LCUR",430:"RCUR",437:"OFF",438:"COMMIT",439:"TRANSACTION",440:"ROLLBACK",441:"BEGIN",443:"WHILE",444:"CONTINUE",445:"BREAK",446:"PRINT",447:"REQUIRE",451:"ECHO",452:"DECLARE",455:"TRUNCATE",456:"MERGE",464:"MATCHED",467:"TARGET",468:"OUTPUT",474:"CONTENT",476:"GRAPH",509:"COLONDASH",511:"QUESTIONDASH",512:"CALL",513:"TRIGGER",518:"BEFORE",519:"AFTER",520:"INSTEAD",521:"REINDEX",522:"A",523:"ABSENT",524:"ABSOLUTE",525:"ACCORDING",526:"ADA",527:"ADMIN",528:"ALWAYS",529:"ASC",530:"ASSERTION",531:"ASSIGNMENT",532:"ATTRIBUTE",533:"ATTRIBUTES",534:"BASE64",535:"BERNOULLI",536:"BLOCKED",537:"BOM",538:"BREADTH",539:"C",540:"CASCADE",541:"CATALOG",542:"CATALOG_NAME",543:"CHAIN",544:"CHARACTERISTICS",545:"CHARACTERS",546:"CHARACTER_SET_CATALOG",547:"CHARACTER_SET_NAME",548:"CHARACTER_SET_SCHEMA",549:"CLASS_ORIGIN",550:"COBOL",551:"COLLATION",552:"COLLATION_CATALOG",553:"COLLATION_NAME",554:"COLLATION_SCHEMA",555:"COLUMNS",556:"COLUMN_NAME",557:"COMMAND_FUNCTION",558:"COMMAND_FUNCTION_CODE",559:"COMMITTED",560:"CONDITION_NUMBER",561:"CONNECTION",562:"CONNECTION_NAME",563:"CONSTRAINTS",564:"CONSTRAINT_CATALOG",565:"CONSTRAINT_NAME",566:"CONSTRAINT_SCHEMA",567:"CONSTRUCTOR",568:"CONTROL",569:"CURSOR_NAME",570:"DATA",571:"DATETIME_INTERVAL_CODE",572:"DATETIME_INTERVAL_PRECISION",573:"DB",574:"DEFAULTS",575:"DEFERRABLE",576:"DEFERRED",577:"DEFINED",578:"DEFINER",579:"DEGREE",580:"DEPTH",581:"DERIVED",582:"DESC",583:"DESCRIPTOR",584:"DIAGNOSTICS",585:"DISPATCH",586:"DOCUMENT",587:"DOMAIN",588:"DYNAMIC_FUNCTION",589:"DYNAMIC_FUNCTION_CODE",590:"EMPTY",591:"ENCODING",592:"ENFORCED",593:"EXCLUDE",594:"EXCLUDING",595:"EXPRESSION",596:"FILE",597:"FINAL",598:"FLAG",599:"FOLLOWING",600:"FORTRAN",601:"FOUND",602:"FS",603:"G",604:"GENERAL",605:"GENERATED",606:"GO",607:"GOTO",608:"GRANTED",609:"HEX",610:"HIERARCHY",611:"ID",612:"IGNORE",613:"IMMEDIATE",614:"IMMEDIATELY",615:"IMPLEMENTATION",616:"INCLUDING",617:"INCREMENT",618:"INDENT",619:"INITIALLY",620:"INPUT",621:"INSTANCE",622:"INSTANTIABLE",623:"INTEGRITY",624:"INVOKER",625:"ISOLATION",626:"K",627:"KEY_MEMBER",628:"KEY_TYPE",629:"LENGTH",630:"LEVEL",631:"LIBRARY",632:"LINK",633:"LOCATION",634:"LOCATOR",635:"M",636:"MAP",637:"MAPPING",638:"MAXVALUE",639:"MESSAGE_LENGTH",640:"MESSAGE_OCTET_LENGTH",641:"MESSAGE_TEXT",642:"MINVALUE",643:"MORE",644:"MUMPS",645:"NAME",646:"NAMES",647:"NAMESPACE",648:"NESTING",649:"NEXT",650:"NFC",651:"NFD",652:"NFKC",653:"NFKD",654:"NIL",655:"NORMALIZED",656:"NULLABLE",657:"OBJECT",658:"OCTETS",659:"OPTIONS",660:"ORDERING",661:"ORDINALITY",662:"OTHERS",663:"OVERRIDING",664:"P",665:"PAD",666:"PARAMETER_MODE",667:"PARAMETER_NAME",668:"PARAMETER_ORDINAL_POSITION",669:"PARAMETER_SPECIFIC_CATALOG",670:"PARAMETER_SPECIFIC_NAME",671:"PARAMETER_SPECIFIC_SCHEMA",672:"PARTIAL",673:"PASCAL",674:"PASSING",675:"PASSTHROUGH",676:"PERMISSION",677:"PLACING",678:"PLI",679:"PRECEDING",680:"PRESERVE",681:"PRIOR",682:"PRIVILEGES",683:"PUBLIC",684:"RECOVERY",685:"RELATIVE",686:"REPEATABLE",687:"REQUIRING",688:"RESPECT",689:"RESTART",690:"RESTORE",691:"RESTRICT",692:"RETURNED_CARDINALITY",693:"RETURNED_LENGTH",694:"RETURNED_OCTET_LENGTH",695:"RETURNED_SQLSTATE",696:"RETURNING",697:"ROLE",698:"ROUTINE",699:"ROUTINE_CATALOG",700:"ROUTINE_NAME",701:"ROUTINE_SCHEMA",702:"ROW_COUNT",703:"SCALE",704:"SCHEMA",705:"SCHEMA_NAME",706:"SCOPE_CATALOG",707:"SCOPE_NAME",708:"SCOPE_SCHEMA",709:"SECTION",710:"SECURITY",711:"SELECTIVE",712:"SELF",713:"SEQUENCE",714:"SERIALIZABLE",715:"SERVER",716:"SERVER_NAME",717:"SESSION",718:"SETS",719:"SIMPLE",720:"SIZE",721:"SPACE",722:"SPECIFIC_NAME",723:"STANDALONE",724:"STATE",725:"STATEMENT",726:"STRIP",727:"STRUCTURE",728:"STYLE",729:"SUBCLASS_ORIGIN",730:"T",731:"TABLE_NAME",732:"TEMPORARY",733:"TIES",734:"TOKEN",735:"TOP_LEVEL_COUNT",736:"TRANSACTIONS_COMMITTED",737:"TRANSACTIONS_ROLLED_BACK",738:"TRANSACTION_ACTIVE",739:"TRANSFORM",740:"TRANSFORMS",741:"TRIGGER_CATALOG",742:"TRIGGER_NAME",743:"TRIGGER_SCHEMA",744:"TYPE",745:"UNBOUNDED",746:"UNCOMMITTED",747:"UNDER",748:"UNLINK",749:"UNNAMED",750:"UNTYPED",751:"URI",752:"USAGE",753:"USER_DEFINED_TYPE_CATALOG",754:"USER_DEFINED_TYPE_CODE",755:"USER_DEFINED_TYPE_NAME",756:"USER_DEFINED_TYPE_SCHEMA",757:"VALID",758:"VERSION",759:"WHITESPACE",760:"WORK",761:"WRAPPER",762:"WRITE",763:"XMLDECLARATION",764:"XMLSCHEMA",765:"YES",766:"ZONE",767:"SEMICOLON",768:"PERCENT",769:"ROWS"},productions_:[0,[3,1],[3,1],[3,2],[7,1],[7,2],[8,2],[9,3],[9,1],[9,1],[13,2],[13,4],[12,1],[17,0],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[17,1],[47,3],[73,3],[73,1],[75,5],[40,10],[40,4],[92,8],[92,11],[102,4],[104,2],[104,1],[103,3],[103,1],[105,1],[105,3],[106,3],[109,3],[109,1],[110,1],[110,2],[114,1],[114,1],[117,1],[117,5],[117,5],[117,1],[117,2],[117,1],[117,2],[117,2],[117,3],[117,4],[117,4],[117,4],[117,4],[117,4],[117,1],[117,1],[117,1],[117,1],[117,1],[117,1],[117,2],[117,2],[117,2],[117,1],[117,1],[117,1],[117,1],[117,1],[117,1],[117,2],[117,3],[117,4],[117,3],[117,1],[117,4],[117,2],[117,2],[117,4],[117,4],[117,4],[117,4],[117,4],[117,5],[117,4],[117,4],[117,4],[117,4],[117,4],[117,4],[117,4],[117,4],[117,6],[163,3],[163,1],[153,1],[153,1],[153,1],[182,2],[79,4],[79,4],[79,4],[79,3],[184,1],[184,2],[184,2],[184,2],[184,2],[184,2],[184,2],[184,2],[186,3],[186,4],[186,0],[81,0],[81,2],[81,2],[81,2],[81,2],[81,2],[82,2],[82,3],[82,5],[82,0],[205,6],[205,7],[205,6],[205,7],[203,1],[203,3],[209,4],[209,5],[209,3],[209,3],[209,2],[209,3],[209,1],[209,3],[209,2],[209,3],[209,1],[209,1],[209,2],[209,3],[209,1],[209,1],[209,2],[209,3],[209,1],[209,2],[209,3],[214,1],[199,3],[199,1],[204,2],[204,2],[204,1],[204,1],[215,3],[217,1],[217,2],[217,3],[217,3],[217,2],[217,3],[217,4],[217,5],[217,1],[217,2],[217,3],[217,1],[217,2],[217,3],[216,1],[216,2],[221,1],[221,2],[221,2],[221,3],[221,2],[221,3],[221,2],[221,3],[221,2],[221,2],[221,2],[218,2],[218,2],[218,0],[84,0],[84,2],[85,0],[85,4],[233,1],[233,3],[235,5],[235,4],[235,4],[235,1],[234,0],[234,2],[88,0],[88,2],[88,3],[88,2],[88,2],[88,3],[88,4],[88,3],[88,3],[86,0],[86,3],[120,1],[120,3],[242,2],[242,2],[241,1],[241,2],[241,3],[241,3],[241,4],[87,0],[87,3],[87,8],[250,0],[250,2],[174,3],[174,1],[257,3],[257,2],[257,3],[257,2],[257,3],[257,2],[257,1],[258,5],[258,3],[258,1],[111,5],[111,3],[111,3],[111,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,1],[94,3],[94,3],[94,3],[94,1],[94,1],[56,1],[70,5],[71,5],[267,2],[267,2],[265,6],[265,8],[265,6],[265,8],[278,1],[278,1],[278,1],[278,1],[278,1],[278,1],[278,1],[259,5],[259,6],[259,6],[279,0],[279,4],[279,4],[279,5],[281,3],[282,3],[158,1],[158,1],[158,1],[158,1],[158,1],[158,1],[158,1],[158,1],[158,1],[158,1],[200,5],[200,3],[200,4],[200,4],[200,8],[200,8],[200,8],[200,8],[200,8],[200,3],[151,1],[151,3],[196,1],[261,1],[261,1],[113,1],[113,1],[262,1],[202,2],[263,4],[266,3],[201,2],[201,2],[201,1],[201,1],[264,5],[264,4],[308,2],[308,1],[311,4],[309,2],[309,0],[260,3],[260,3],[260,3],[260,3],[260,5],[260,3],[260,5],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,5],[260,3],[260,3],[260,3],[260,5],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,3],[260,6],[260,6],[260,3],[260,3],[260,2],[260,2],[260,2],[260,2],[260,2],[260,3],[260,5],[260,6],[260,5],[260,6],[260,4],[260,5],[260,3],[260,4],[260,3],[260,4],[260,3],[260,3],[260,3],[260,3],[260,3],[333,1],[333,1],[333,4],[331,1],[331,1],[331,1],[331,1],[331,1],[331,1],[332,1],[332,1],[332,1],[55,6],[55,4],[147,1],[147,3],[340,3],[340,4],[29,5],[29,3],[36,5],[36,4],[36,7],[36,6],[36,5],[36,4],[36,5],[36,8],[36,7],[36,4],[36,6],[36,7],[345,1],[345,1],[344,0],[344,1],[346,3],[346,1],[346,1],[346,5],[346,3],[346,3],[349,1],[349,3],[350,1],[350,1],[350,1],[350,1],[350,1],[350,1],[100,1],[100,3],[24,9],[24,5],[353,1],[353,1],[356,0],[356,1],[358,2],[358,1],[359,1],[359,3],[359,3],[359,3],[352,0],[352,1],[354,0],[354,3],[355,3],[355,1],[355,2],[363,1],[363,3],[364,2],[364,2],[364,2],[364,2],[364,2],[365,0],[365,2],[370,4],[366,6],[367,9],[381,3],[380,0],[380,2],[382,4],[383,4],[368,6],[369,5],[369,5],[376,1],[376,1],[376,3],[376,3],[362,1],[362,3],[388,3],[388,2],[388,1],[391,6],[391,4],[391,1],[391,4],[276,2],[276,1],[392,1],[392,1],[389,0],[389,1],[395,2],[395,1],[397,3],[396,2],[396,5],[396,3],[396,6],[396,1],[396,2],[396,4],[396,2],[396,1],[396,2],[396,1],[396,1],[396,3],[396,5],[33,4],[403,3],[403,1],[402,0],[402,2],[18,6],[18,6],[18,6],[18,8],[18,6],[39,5],[19,4],[19,7],[19,6],[19,9],[30,3],[21,4],[21,6],[21,9],[21,6],[411,0],[411,2],[54,3],[54,2],[31,4],[31,5],[31,5],[22,8],[22,9],[32,3],[43,2],[43,4],[43,3],[43,5],[45,2],[45,4],[45,4],[45,6],[42,4],[42,6],[44,4],[44,6],[41,4],[41,6],[25,11],[25,8],[417,3],[417,3],[417,5],[34,4],[66,2],[57,2],[58,2],[58,2],[58,4],[144,4],[144,2],[144,2],[144,2],[144,2],[144,1],[144,2],[144,2],[426,1],[426,1],[427,1],[427,1],[427,1],[427,1],[427,1],[427,1],[427,1],[427,3],[423,3],[423,4],[423,2],[425,2],[425,3],[425,1],[429,3],[429,1],[432,3],[432,3],[432,3],[431,3],[431,1],[65,4],[65,3],[65,4],[65,5],[65,5],[65,6],[435,1],[435,1],[434,3],[434,2],[436,1],[436,1],[436,3],[433,1],[433,1],[51,2],[52,2],[50,2],[35,4],[35,3],[442,2],[59,3],[60,1],[61,1],[62,3],[63,2],[63,2],[64,2],[64,2],[450,1],[450,1],[69,2],[448,3],[448,1],[449,3],[449,1],[28,2],[453,1],[453,3],[454,3],[454,4],[454,5],[454,6],[46,3],[37,6],[457,1],[457,2],[458,2],[459,2],[460,2],[460,2],[460,1],[460,1],[462,4],[462,6],[465,1],[465,3],[463,5],[463,7],[463,7],[463,9],[463,7],[463,9],[466,3],[466,6],[466,3],[466,6],[461,0],[461,2],[461,5],[461,4],[461,7],[27,6],[473,2],[472,0],[472,2],[472,2],[472,1],[26,8],[23,3],[23,4],[477,3],[477,1],[478,3],[478,7],[478,6],[478,3],[478,4],[482,1],[482,1],[486,2],[487,3],[488,2],[489,4],[479,4],[479,3],[479,2],[479,1],[501,2],[497,2],[497,2],[502,4],[504,6],[67,3],[67,2],[510,3],[510,1],[508,1],[508,4],[68,2],[20,2],[48,9],[48,8],[48,9],[514,0],[514,1],[514,1],[514,1],[514,2],[515,1],[515,1],[515,1],[49,3],[38,2],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[11,1],[11,1],[80,0],[80,1],[83,0],[83,1],[90,0],[90,2],[91,0],[91,1],[96,0],[96,1],[97,0],[97,1],[101,0],[101,1],[108,0],[108,1],[121,0],[121,1],[125,1],[125,2],[126,1],[126,2],[127,0],[127,1],[155,0],[155,2],[157,0],[157,2],[159,0],[159,2],[160,1],[160,1],[161,0],[161,2],[165,0],[165,2],[167,0],[167,2],[176,0],[176,2],[177,0],[177,2],[178,0],[178,2],[188,0],[188,1],[197,0],[197,1],[210,0],[210,1],[211,0],[211,1],[219,0],[219,1],[220,0],[220,1],[252,0],[252,1],[254,0],[254,1],[255,0],[255,1],[256,0],[256,1],[268,1],[268,1],[770,1],[770,1],[292,0],[292,1],[305,1],[305,1],[341,1],[341,1],[375,0],[375,1],[379,0],[379,1],[386,0],[386,1],[387,0],[387,1],[398,0],[398,1],[399,0],[399,1],[401,1],[401,1],[415,0],[415,1],[416,0],[416,1],[469,0],[469,1],[470,0],[470,1],[471,0],[471,1],[475,0],[475,1],[480,0],[480,1],[481,0],[481,1],[483,0],[483,1],[484,0],[484,1],[485,0],[485,1],[490,0],[490,1],[491,0],[491,1],[492,0],[492,1],[493,0],[493,1],[494,0],[494,1],[495,0],[495,1],[496,0],[496,1],[498,0],[498,1],[499,0],[499,1],[500,0],[500,1],[503,0],[503,2],[505,0],[505,2],[506,0],[506,2],[507,0],[507,2],[516,0],[516,1],[517,0],[517,1]],performAction:function(e,t,r,o,i,s,a){var u=s.length-1;switch(i){case 1:n.options.casesensitive?this.$=s[u]:this.$=s[u].toLowerCase();break;case 2:this.$=l(s[u].substr(1,s[u].length-2));break;case 3:this.$=s[u].toLowerCase();break;case 4:case 77:case 78:case 86:case 147:case 185:case 247:case 283:case 291:case 292:case 293:case 294:case 295:case 296:case 297:case 298:case 299:case 300:case 301:case 302:case 303:case 304:case 307:case 308:case 323:case 324:case 325:case 326:case 327:case 328:case 379:case 445:case 446:case 447:case 448:case 449:case 450:case 521:case 547:case 551:case 553:case 628:case 629:case 630:case 631:case 632:case 633:case 637:case 639:case 640:case 649:case 665:case 666:case 728:case 743:case 744:case 746:case 747:case 753:case 754:case 312:case 442:case 443:case 675:this.$=s[u];break;case 5:this.$=s[u]?s[u-1]+" "+s[u]:s[u-1];break;case 6:return new o.Statements({statements:s[u-1]});case 7:this.$=s[u-2],s[u]&&s[u-2].push(s[u]);break;case 8:case 9:case 70:case 80:case 85:case 143:case 177:case 205:case 206:case 242:case 261:case 276:case 359:case 377:case 456:case 479:case 480:case 484:case 492:case 533:case 534:case 571:case 654:case 664:case 688:case 690:case 692:case 706:case 707:case 737:case 761:case 513:case 537:case 1066:case 1068:this.$=[s[u]];break;case 10:case 11:this.$=s[u],s[u].explain=!0;break;case 12:this.$=s[u],o.exists&&(this.$.exists=o.exists),delete o.exists,o.queries&&(this.$.queries=o.queries),delete o.queries;break;case 13:case 162:case 172:case 237:case 238:case 240:case 248:case 250:case 259:case 270:case 273:case 380:case 496:case 506:case 508:case 520:case 526:case 527:case 572:case 163:case 333:case 528:case 529:case 729:case 550:case 589:this.$=void 0;break;case 68:this.$=new o.WithSelect({withs:s[u-1],select:s[u]});break;case 69:case 570:case 275:case 514:case 538:case 653:case 663:case 687:case 689:case 693:case 360:s[u-2].push(s[u]),this.$=s[u-2];break;case 71:this.$={name:s[u-4],select:s[u-1]};break;case 72:o.extend(this.$,s[u-9]),o.extend(this.$,s[u-8]),o.extend(this.$,s[u-7]),o.extend(this.$,s[u-6]),o.extend(this.$,s[u-5]),o.extend(this.$,s[u-4]),o.extend(this.$,s[u-3]),o.extend(this.$,s[u-2]),o.extend(this.$,s[u-1]),o.extend(this.$,s[u]),this.$=s[u-9];break;case 73:this.$=new o.Search({selectors:s[u-2],from:s[u]}),o.extend(this.$,s[u-1]);break;case 74:this.$={pivot:{expr:s[u-5],columnid:s[u-3],inlist:s[u-2],as:s[u]}};break;case 75:this.$={unpivot:{tocolumnid:s[u-8],forcolumnid:s[u-6],inlist:s[u-3],as:s[u]}};break;case 76:case 525:case 554:case 590:case 624:case 641:case 642:case 645:case 667:case 444:this.$=s[u-1];break;case 79:case 84:case 736:case 760:case 142:this.$=s[u-2],this.$.push(s[u]);break;case 81:this.$={expr:s[u]};break;case 82:this.$={expr:s[u-2],as:s[u]};break;case 83:this.$={removecolumns:s[u]};break;case 87:this.$={like:s[u]};break;case 90:case 104:this.$={srchid:"PROP",args:[s[u]]};break;case 91:this.$={srchid:"ORDERBY",args:s[u-1]};break;case 92:var c=s[u-1];c||(c="ASC"),this.$={srchid:"ORDERBY",args:[{expression:new o.Column({columnid:"_"}),direction:c}]};break;case 93:this.$={srchid:"PARENT"};break;case 94:this.$={srchid:"APROP",args:[s[u]]};break;case 95:this.$={selid:"ROOT"};break;case 96:this.$={srchid:"EQ",args:[s[u]]};break;case 97:this.$={srchid:"LIKE",args:[s[u]]};break;case 98:case 99:this.$={selid:"WITH",args:s[u-1]};break;case 100:this.$={srchid:s[u-3].toUpperCase(),args:s[u-1]};break;case 101:this.$={srchid:"WHERE",args:[s[u-1]]};break;case 102:this.$={selid:"OF",args:[s[u-1]]};break;case 103:this.$={srchid:"CLASS",args:[s[u-1]]};break;case 105:this.$={srchid:"NAME",args:[s[u].substr(1,s[u].length-2)]};break;case 106:this.$={srchid:"CHILD"};break;case 107:this.$={srchid:"VERTEX"};break;case 108:this.$={srchid:"EDGE"};break;case 109:this.$={srchid:"REF"};break;case 110:this.$={srchid:"SHARP",args:[s[u]]};break;case 111:this.$={srchid:"ATTR",args:void 0===s[u]?void 0:[s[u]]};break;case 112:this.$={srchid:"ATTR"};break;case 113:this.$={srchid:"OUT"};break;case 114:this.$={srchid:"IN"};break;case 115:this.$={srchid:"OUTOUT"};break;case 116:this.$={srchid:"ININ"};break;case 117:this.$={srchid:"CONTENT"};break;case 118:this.$={srchid:"EX",args:[new o.Json({value:s[u]})]};break;case 119:this.$={srchid:"AT",args:[s[u]]};break;case 120:this.$={srchid:"AS",args:[s[u]]};break;case 121:this.$={srchid:"SET",args:s[u-1]};break;case 122:this.$={selid:"TO",args:[s[u]]};break;case 123:this.$={srchid:"VALUE"};break;case 124:this.$={srchid:"ROW",args:s[u-1]};break;case 125:this.$={srchid:"CLASS",args:[s[u]]};break;case 126:this.$={selid:s[u],args:[s[u-1]]};break;case 127:this.$={selid:"NOT",args:s[u-1]};break;case 128:this.$={selid:"IF",args:s[u-1]};break;case 129:this.$={selid:s[u-3],args:s[u-1]};break;case 130:this.$={selid:"DISTINCT",args:s[u-1]};break;case 131:this.$={selid:"UNION",args:s[u-1]};break;case 132:this.$={selid:"UNIONALL",args:s[u-1]};break;case 133:this.$={selid:"ALL",args:[s[u-1]]};break;case 134:this.$={selid:"ANY",args:[s[u-1]]};break;case 135:this.$={selid:"INTERSECT",args:s[u-1]};break;case 136:this.$={selid:"EXCEPT",args:s[u-1]};break;case 137:this.$={selid:"AND",args:s[u-1]};break;case 138:this.$={selid:"OR",args:s[u-1]};break;case 139:this.$={selid:"PATH",args:[s[u-1]]};break;case 140:this.$={srchid:"RETURN",args:s[u-1]};break;case 141:this.$={selid:"REPEAT",sels:s[u-3],args:s[u-1]};break;case 144:this.$="PLUS";break;case 145:this.$="STAR";break;case 146:this.$="QUESTION";break;case 148:case 149:this.$=new o.Select({columns:s[u],distinct:!0}),o.extend(this.$,s[u-3]),o.extend(this.$,s[u-1]);break;case 150:this.$=new o.Select({columns:s[u],all:!0}),o.extend(this.$,s[u-3]),o.extend(this.$,s[u-1]);break;case 151:s[u]?(this.$=new o.Select({columns:s[u]}),o.extend(this.$,s[u-2]),o.extend(this.$,s[u-1])):this.$=new o.Select({columns:[new o.Column({columnid:"_"})],modifier:"COLUMN"});break;case 152:"SELECT"==s[u]?this.$=void 0:this.$={modifier:s[u]};break;case 153:this.$={modifier:"VALUE"};break;case 154:this.$={modifier:"ROW"};break;case 155:this.$={modifier:"COLUMN"};break;case 156:this.$={modifier:"MATRIX"};break;case 157:this.$={modifier:"TEXTSTRING"};break;case 158:this.$={modifier:"INDEX"};break;case 159:this.$={modifier:"RECORDSET"};break;case 160:this.$={top:s[u-1],percent:void 0!==s[u]||void 0};break;case 161:this.$={top:s[u-1]};break;case 164:case 165:case 166:case 167:case 700:case 701:this.$={into:s[u]};break;case 168:var h=(p=(p=s[u]).substr(1,p.length-2)).substr(-3).toUpperCase(),f=p.substr(-4).toUpperCase();"#"==p[0]?this.$={into:new o.FuncValue({funcid:"HTML",args:[new o.StringValue({value:p}),new o.Json({value:{headers:!0}})]})}:"XLS"==h||"CSV"==h||"TAB"==h?this.$={into:new o.FuncValue({funcid:h,args:[new o.StringValue({value:p}),new o.Json({value:{headers:!0}})]})}:"XLSX"!=f&&"JSON"!=f||(this.$={into:new o.FuncValue({funcid:f,args:[new o.StringValue({value:p}),new o.Json({value:{headers:!0}})]})});break;case 169:this.$={from:s[u]};break;case 170:this.$={from:s[u-1],joins:s[u]};break;case 171:this.$={from:s[u-2],joins:s[u-1]};break;case 173:this.$=new o.Apply({select:s[u-2],applymode:"CROSS",as:s[u]});break;case 174:this.$=new o.Apply({select:s[u-3],applymode:"CROSS",as:s[u]});break;case 175:this.$=new o.Apply({select:s[u-2],applymode:"OUTER",as:s[u]});break;case 176:this.$=new o.Apply({select:s[u-3],applymode:"OUTER",as:s[u]});break;case 178:case 243:case 457:case 535:case 536:case 262:case 482:case 483:case 485:case 493:this.$=s[u-2],s[u-2].push(s[u]);break;case 179:this.$=s[u-2],this.$.as=s[u];break;case 180:this.$=s[u-3],this.$.as=s[u];break;case 181:this.$=s[u-1],this.$.as="default";break;case 182:this.$=new o.Json({value:s[u-2]}),s[u-2].as=s[u];break;case 183:case 187:case 191:case 195:case 198:this.$=s[u-1],s[u-1].as=s[u];break;case 184:case 188:case 192:case 196:case 199:this.$=s[u-2],s[u-2].as=s[u];break;case 186:case 643:case 646:this.$=s[u-2];break;case 189:case 190:case 194:case 197:this.$=s[u],s[u].as="default";break;case 193:this.$={inserted:!0};break;case 200:var p,d;if(h=(p=(p=s[u]).substr(1,p.length-2)).substr(-3).toUpperCase(),f=p.substr(-4).toUpperCase(),"#"==p[0])d=new o.FuncValue({funcid:"HTML",args:[new o.StringValue({value:p}),new o.Json({value:{headers:!0}})]});else if("XLS"==h||"CSV"==h||"TAB"==h)d=new o.FuncValue({funcid:h,args:[new o.StringValue({value:p}),new o.Json({value:{headers:!0}})]});else{if("XLSX"!=f&&"JSON"!=f)throw new Error("Unknown string in FROM clause");d=new o.FuncValue({funcid:f,args:[new o.StringValue({value:p}),new o.Json({value:{headers:!0}})]})}this.$=d;break;case 201:"INFORMATION_SCHEMA"==s[u-2]?this.$=new o.FuncValue({funcid:s[u-2],args:[new o.StringValue({value:s[u]})]}):this.$=new o.Table({databaseid:s[u-2],tableid:s[u]});break;case 202:this.$=new o.Table({tableid:s[u]});break;case 203:case 204:this.$=s[u-1],s[u-1].push(s[u]);break;case 207:this.$=new o.Join(s[u-2]),o.extend(this.$,s[u-1]),o.extend(this.$,s[u]);break;case 208:this.$={table:s[u]};break;case 209:this.$={table:s[u-1],as:s[u]};break;case 210:this.$={table:s[u-2],as:s[u]};break;case 211:this.$={json:new o.Json({value:s[u-2],as:s[u]})};break;case 212:this.$={param:s[u-1],as:s[u]};break;case 213:this.$={param:s[u-2],as:s[u]};break;case 214:this.$={select:s[u-2],as:s[u]};break;case 215:this.$={select:s[u-3],as:s[u]};break;case 216:this.$={func:s[u],as:"default"};break;case 217:this.$={func:s[u-1],as:s[u]};break;case 218:this.$={func:s[u-2],as:s[u]};break;case 219:this.$={variable:s[u],as:"default"};break;case 220:this.$={variable:s[u-1],as:s[u]};break;case 221:this.$={variable:s[u-2],as:s[u]};break;case 222:this.$={joinmode:s[u]};break;case 223:this.$={joinmode:s[u-1],natural:!0};break;case 224:case 225:this.$="INNER";break;case 226:case 227:this.$="LEFT";break;case 228:case 229:this.$="RIGHT";break;case 230:case 231:this.$="OUTER";break;case 232:this.$="SEMI";break;case 233:this.$="ANTI";break;case 234:this.$="CROSS";break;case 235:case 703:this.$={on:s[u]};break;case 236:case 702:this.$={using:s[u]};break;case 239:this.$={where:new o.Expression({expression:s[u]})};break;case 241:this.$={group:s[u-1]},o.extend(this.$,s[u]);break;case 244:this.$=new o.GroupExpression({type:"GROUPING SETS",group:s[u-1]});break;case 245:this.$=new o.GroupExpression({type:"ROLLUP",group:s[u-1]});break;case 246:this.$=new o.GroupExpression({type:"CUBE",group:s[u-1]});break;case 249:this.$={having:s[u]};break;case 251:this.$={union:s[u]};break;case 252:this.$={unionall:s[u]};break;case 253:this.$={except:s[u]};break;case 254:this.$={intersect:s[u]};break;case 255:this.$={union:s[u],corresponding:!0};break;case 256:this.$={unionall:s[u],corresponding:!0};break;case 257:this.$={except:s[u],corresponding:!0};break;case 258:this.$={intersect:s[u],corresponding:!0};break;case 260:case 338:this.$={order:s[u]};break;case 263:this.$={nullsOrder:"FIRST"};break;case 264:this.$={nullsOrder:"LAST"};break;case 265:this.$=new o.Expression({expression:s[u],direction:"ASC"});break;case 266:this.$=new o.Expression({expression:s[u-1],direction:s[u].toUpperCase()});break;case 267:this.$=new o.Expression({expression:s[u-2],direction:s[u-1].toUpperCase()}),o.extend(this.$,s[u]);break;case 268:this.$=new o.Expression({expression:s[u-2],direction:"ASC",nocase:!0});break;case 269:this.$=new o.Expression({expression:s[u-3],direction:s[u].toUpperCase(),nocase:!0});break;case 271:this.$={limit:s[u-1]},o.extend(this.$,s[u]);break;case 272:this.$={limit:s[u-2],offset:s[u-6]};break;case 274:this.$={offset:s[u]};break;case 277:case 279:case 281:s[u-2].as=s[u],this.$=s[u-2];break;case 278:case 280:case 282:s[u-1].as=s[u],this.$=s[u-1];break;case 284:this.$=new o.Column({columid:s[u],tableid:s[u-2],databaseid:s[u-4]});break;case 285:case 288:case 289:this.$=new o.Column({columnid:s[u],tableid:s[u-2]});break;case 286:case 290:this.$=new o.Column({columnid:s[u]});break;case 287:this.$=new o.Column({columnid:s[u],tableid:s[u-2],databaseid:s[u-4]});break;case 305:this.$=new o.DomainValueValue;break;case 306:this.$=new o.Json({value:s[u]});break;case 309:case 310:case 311:o.queries||(o.queries=[]),o.queries.push(s[u-1]),s[u-1].queriesidx=o.queries.length,this.$=s[u-1];break;case 313:case 329:this.$=new o.FuncValue({funcid:"CURRENT_TIMESTAMP"});break;case 314:this.$=new o.JavaScript({value:s[u].substr(2,s[u].length-4)});break;case 315:this.$=new o.JavaScript({value:'alasql.fn["'+s[u-2]+'"] = '+s[u].substr(2,s[u].length-4)});break;case 316:this.$=new o.JavaScript({value:'alasql.aggr["'+s[u-2]+'"] = '+s[u].substr(2,s[u].length-4)});break;case 317:this.$=new o.FuncValue({funcid:s[u],newid:!0});break;case 318:this.$=s[u],o.extend(this.$,{newid:!0});break;case 319:this.$=new o.Convert({expression:s[u-3]}),o.extend(this.$,s[u-1]);break;case 320:this.$=new o.Convert({expression:s[u-5],style:s[u-1]}),o.extend(this.$,s[u-3]);break;case 321:this.$=new o.Convert({expression:s[u-1]}),o.extend(this.$,s[u-3]);break;case 322:this.$=new o.Convert({expression:s[u-3],style:s[u-1]}),o.extend(this.$,s[u-5]);break;case 330:s[u-2].length>1&&("MAX"==s[u-4].toUpperCase()||"MIN"==s[u-4].toUpperCase())?this.$=new o.FuncValue({funcid:s[u-4],args:s[u-2]}):this.$=new o.AggrValue({aggregatorid:s[u-4].toUpperCase(),expression:s[u-2].pop(),over:s[u]});break;case 331:this.$=new o.AggrValue({aggregatorid:s[u-5].toUpperCase(),expression:s[u-2],distinct:!0,over:s[u]});break;case 332:this.$=new o.AggrValue({aggregatorid:s[u-5].toUpperCase(),expression:s[u-2],over:s[u]});break;case 334:case 335:this.$=new o.Over,o.extend(this.$,s[u-1]);break;case 336:this.$=new o.Over,o.extend(this.$,s[u-2]),o.extend(this.$,s[u-1]);break;case 337:this.$={partition:s[u]};break;case 339:this.$="SUM";break;case 340:this.$="TOTAL";break;case 341:this.$="COUNT";break;case 342:this.$="MIN";break;case 343:case 549:this.$="MAX";break;case 344:this.$="AVG";break;case 345:this.$="FIRST";break;case 346:this.$="LAST";break;case 347:this.$="AGGR";break;case 348:this.$="ARRAY";break;case 349:var E=s[u-4],m=s[u-1];m.length>1&&("MIN"==E.toUpperCase()||"MAX"==E.toUpperCase())?this.$=new o.FuncValue({funcid:E,args:m}):n.aggr[s[u-4]]?this.$=new o.AggrValue({aggregatorid:"REDUCE",funcid:E,expression:m.pop(),distinct:"DISTINCT"==s[u-2]}):this.$=new o.FuncValue({funcid:E,args:m});break;case 350:this.$=new o.FuncValue({funcid:s[u-2]});break;case 351:this.$=new o.FuncValue({funcid:"IIF",args:s[u-1]});break;case 352:this.$=new o.FuncValue({funcid:"REPLACE",args:s[u-1]});break;case 353:this.$=new o.FuncValue({funcid:"DATEADD",args:[new o.StringValue({value:s[u-5]}),s[u-3],s[u-1]]});break;case 354:this.$=new o.FuncValue({funcid:"DATEADD",args:[s[u-5],s[u-3],s[u-1]]});break;case 355:this.$=new o.FuncValue({funcid:"DATEDIFF",args:[new o.StringValue({value:s[u-5]}),s[u-3],s[u-1]]});break;case 356:this.$=new o.FuncValue({funcid:"DATEDIFF",args:[s[u-5],s[u-3],s[u-1]]});break;case 357:this.$=new o.FuncValue({funcid:"TIMESTAMPDIFF",args:[new o.StringValue({value:s[u-5]}),s[u-3],s[u-1]]});break;case 358:this.$=new o.FuncValue({funcid:"INTERVAL",args:[s[u-1],new o.StringValue({value:s[u].toLowerCase()})]});break;case 361:this.$=new o.NumValue({value:+s[u]});break;case 362:this.$=new o.LogicValue({value:!0});break;case 363:this.$=new o.LogicValue({value:!1});break;case 364:this.$=new o.StringValue({value:s[u].substr(1,s[u].length-2).replace(/(\\\')/g,"'").replace(/(\'\')/g,"'")});break;case 365:this.$=new o.StringValue({value:s[u].substr(2,s[u].length-3).replace(/(\\\')/g,"'").replace(/(\'\')/g,"'")});break;case 366:this.$=new o.NullValue({value:void 0});break;case 367:this.$=new o.VarValue({variable:s[u]});break;case 368:o.exists||(o.exists=[]),this.$=new o.ExistsValue({value:s[u-1],existsidx:o.exists.length}),o.exists.push(s[u-1]);break;case 369:this.$=new o.ArrayValue({value:s[u-1]});break;case 370:case 371:this.$=new o.ParamValue({param:s[u]});break;case 372:void 0===o.question&&(o.question=0),this.$=new o.ParamValue({param:o.question++});break;case 373:void 0===o.question&&(o.question=0),this.$=new o.ParamValue({param:o.question++,array:!0});break;case 374:this.$=new o.CaseValue({expression:s[u-3],whens:s[u-2],elses:s[u-1]});break;case 375:this.$=new o.CaseValue({whens:s[u-2],elses:s[u-1]});break;case 376:case 704:case 705:this.$=s[u-1],this.$.push(s[u]);break;case 378:this.$={when:s[u-2],then:s[u]};break;case 381:case 382:this.$=new o.Op({left:s[u-2],op:"REGEXP",right:s[u]});break;case 383:this.$=new o.Op({left:s[u-2],op:"GLOB",right:s[u]});break;case 384:this.$=new o.Op({left:s[u-2],op:"LIKE",right:s[u]});break;case 385:this.$=new o.Op({left:s[u-4],op:"LIKE",right:s[u-2],escape:s[u]});break;case 386:this.$=new o.Op({left:s[u-2],op:"NOT LIKE",right:s[u]});break;case 387:this.$=new o.Op({left:s[u-4],op:"NOT LIKE",right:s[u-2],escape:s[u]});break;case 388:this.$=new o.Op({left:s[u-2],op:"||",right:s[u]});break;case 389:this.$=new o.Op({left:s[u-2],op:"+",right:s[u]});break;case 390:this.$=new o.Op({left:s[u-2],op:"-",right:s[u]});break;case 391:this.$=new o.Op({left:s[u-2],op:"*",right:s[u]});break;case 392:this.$=new o.Op({left:s[u-2],op:"/",right:s[u]});break;case 393:this.$=new o.Op({left:s[u-2],op:"%",right:s[u]});break;case 394:this.$=new o.Op({left:s[u-2],op:"^",right:s[u]});break;case 395:this.$=new o.Op({left:s[u-2],op:">>",right:s[u]});break;case 396:this.$=new o.Op({left:s[u-2],op:"<<",right:s[u]});break;case 397:this.$=new o.Op({left:s[u-2],op:"&",right:s[u]});break;case 398:this.$=new o.Op({left:s[u-2],op:"|",right:s[u]});break;case 399:case 400:case 402:this.$=new o.Op({left:s[u-2],op:"->",right:s[u]});break;case 401:this.$=new o.Op({left:s[u-4],op:"->",right:s[u-1]});break;case 403:case 404:case 406:this.$=new o.Op({left:s[u-2],op:"!",right:s[u]});break;case 405:this.$=new o.Op({left:s[u-4],op:"!",right:s[u-1]});break;case 407:this.$=new o.Op({left:s[u-2],op:">",right:s[u]});break;case 408:this.$=new o.Op({left:s[u-2],op:">=",right:s[u]});break;case 409:this.$=new o.Op({left:s[u-2],op:"<",right:s[u]});break;case 410:this.$=new o.Op({left:s[u-2],op:"<=",right:s[u]});break;case 411:this.$=new o.Op({left:s[u-2],op:"=",right:s[u]});break;case 412:this.$=new o.Op({left:s[u-2],op:"==",right:s[u]});break;case 413:this.$=new o.Op({left:s[u-2],op:"===",right:s[u]});break;case 414:this.$=new o.Op({left:s[u-2],op:"!=",right:s[u]});break;case 415:this.$=new o.Op({left:s[u-2],op:"!==",right:s[u]});break;case 416:this.$=new o.Op({left:s[u-2],op:"!===",right:s[u]});break;case 417:o.queries||(o.queries=[]),this.$=new o.Op({left:s[u-5],op:s[u-4],allsome:s[u-3],right:s[u-1],queriesidx:o.queries.length}),o.queries.push(s[u-1]);break;case 418:this.$=new o.Op({left:s[u-5],op:s[u-4],allsome:s[u-3],right:s[u-1]});break;case 419:"BETWEEN1"==s[u-2].op?"AND"==s[u-2].left.op?this.$=new o.Op({left:s[u-2].left.left,op:"AND",right:new o.Op({left:s[u-2].left.right,op:"BETWEEN",right1:s[u-2].right,right2:s[u]})}):this.$=new o.Op({left:s[u-2].left,op:"BETWEEN",right1:s[u-2].right,right2:s[u]}):"NOT BETWEEN1"==s[u-2].op?"AND"==s[u-2].left.op?this.$=new o.Op({left:s[u-2].left.left,op:"AND",right:new o.Op({left:s[u-2].left.right,op:"NOT BETWEEN",right1:s[u-2].right,right2:s[u]})}):this.$=new o.Op({left:s[u-2].left,op:"NOT BETWEEN",right1:s[u-2].right,right2:s[u]}):this.$=new o.Op({left:s[u-2],op:"AND",right:s[u]});break;case 420:this.$=new o.Op({left:s[u-2],op:"OR",right:s[u]});break;case 421:this.$=new o.UniOp({op:"NOT",right:s[u]});break;case 422:this.$=new o.UniOp({op:"-",right:s[u]});break;case 423:this.$=new o.UniOp({op:"+",right:s[u]});break;case 424:this.$=new o.UniOp({op:"~",right:s[u]});break;case 425:this.$=new o.UniOp({op:"#",right:s[u]});break;case 426:this.$=new o.UniOp({right:s[u-1]});break;case 427:o.queries||(o.queries=[]),this.$=new o.Op({left:s[u-4],op:"IN",right:s[u-1],queriesidx:o.queries.length}),o.queries.push(s[u-1]);break;case 428:o.queries||(o.queries=[]),this.$=new o.Op({left:s[u-5],op:"NOT IN",right:s[u-1],queriesidx:o.queries.length}),o.queries.push(s[u-1]);break;case 429:this.$=new o.Op({left:s[u-4],op:"IN",right:s[u-1]});break;case 430:this.$=new o.Op({left:s[u-5],op:"NOT IN",right:s[u-1]});break;case 431:this.$=new o.Op({left:s[u-3],op:"IN",right:[]});break;case 432:this.$=new o.Op({left:s[u-4],op:"NOT IN",right:[]});break;case 433:case 435:this.$=new o.Op({left:s[u-2],op:"IN",right:s[u]});break;case 434:case 436:this.$=new o.Op({left:s[u-3],op:"NOT IN",right:s[u]});break;case 437:this.$=new o.Op({left:s[u-2],op:"BETWEEN1",right:s[u]});break;case 438:this.$=new o.Op({left:s[u-2],op:"NOT BETWEEN1",right:s[u]});break;case 439:this.$=new o.Op({op:"IS",left:s[u-2],right:s[u]});break;case 440:this.$=new o.Op({op:"IS",left:s[u-2],right:new o.UniOp({op:"NOT",right:new o.NullValue({value:void 0})})});break;case 441:this.$=new o.Convert({expression:s[u-2]}),o.extend(this.$,s[u]);break;case 451:this.$="ALL";break;case 452:this.$="SOME";break;case 453:this.$="ANY";break;case 454:this.$=new o.Update({table:s[u-4],columns:s[u-2],where:s[u]});break;case 455:this.$=new o.Update({table:s[u-2],columns:s[u]});break;case 458:this.$=new o.SetColumn({column:s[u-2],expression:s[u]});break;case 459:this.$=new o.SetColumn({variable:s[u-2],expression:s[u],method:s[u-3]});break;case 460:this.$=new o.Delete({table:s[u-2],where:s[u]});break;case 461:this.$=new o.Delete({table:s[u]});break;case 462:this.$=new o.Insert({into:s[u-2],values:s[u]});break;case 463:this.$=new o.Insert({into:s[u-1],values:s[u]});break;case 464:case 466:this.$=new o.Insert({into:s[u-2],values:s[u],orreplace:!0});break;case 465:case 467:this.$=new o.Insert({into:s[u-1],values:s[u],orreplace:!0});break;case 468:this.$=new o.Insert({into:s[u-2],default:!0});break;case 469:this.$=new o.Insert({into:s[u-5],columns:s[u-3],values:s[u]});break;case 470:this.$=new o.Insert({into:s[u-4],columns:s[u-2],values:s[u]});break;case 471:this.$=new o.Insert({into:s[u-1],select:s[u]});break;case 472:this.$=new o.Insert({into:s[u-1],select:s[u],orreplace:!0});break;case 473:this.$=new o.Insert({into:s[u-4],columns:s[u-2],select:s[u]});break;case 478:this.$=[s[u-1]];break;case 481:this.$=s[u-4],s[u-4].push(s[u-1]);break;case 494:this.$=new o.CreateTable({table:s[u-4]}),o.extend(this.$,s[u-7]),o.extend(this.$,s[u-6]),o.extend(this.$,s[u-5]),o.extend(this.$,s[u-2]),o.extend(this.$,s[u]);break;case 495:this.$=new o.CreateTable({table:s[u]}),o.extend(this.$,s[u-3]),o.extend(this.$,s[u-2]),o.extend(this.$,s[u-1]);break;case 497:this.$={class:!0};break;case 507:this.$={temporary:!0};break;case 509:this.$={ifnotexists:!0};break;case 510:this.$={columns:s[u-2],constraints:s[u]};break;case 511:this.$={columns:s[u]};break;case 512:this.$={as:s[u]};break;case 515:case 516:case 517:case 518:case 519:s[u].constraintid=s[u-1],this.$=s[u];break;case 522:this.$={type:"CHECK",expression:s[u-1]};break;case 523:this.$={type:"PRIMARY KEY",columns:s[u-1],clustered:(s[u-3]+"").toUpperCase()};break;case 524:this.$={type:"FOREIGN KEY",columns:s[u-5],fktable:s[u-2],fkcolumns:s[u-1]};break;case 530:this.$={type:"UNIQUE",columns:s[u-1],clustered:(s[u-3]+"").toUpperCase()};break;case 539:this.$=new o.ColumnDef({columnid:s[u-2]}),o.extend(this.$,s[u-1]),o.extend(this.$,s[u]);break;case 540:this.$=new o.ColumnDef({columnid:s[u-1]}),o.extend(this.$,s[u]);break;case 541:this.$=new o.ColumnDef({columnid:s[u],dbtypeid:""});break;case 542:this.$={dbtypeid:s[u-5],dbsize:s[u-3],dbprecision:+s[u-1]};break;case 543:this.$={dbtypeid:s[u-3],dbsize:s[u-1]};break;case 544:this.$={dbtypeid:s[u]};break;case 545:this.$={dbtypeid:"ENUM",enumvalues:s[u-1]};break;case 546:this.$=s[u-1],s[u-1].dbtypeid+="["+s[u]+"]";break;case 548:case 755:this.$=+s[u];break;case 552:o.extend(s[u-1],s[u]),this.$=s[u-1];break;case 555:this.$={primarykey:!0};break;case 556:case 557:this.$={foreignkey:{table:s[u-1],columnid:s[u]}};break;case 558:this.$={identity:{value:s[u-3],step:s[u-1]}};break;case 559:this.$={identity:{value:1,step:1}};break;case 560:case 562:this.$={default:s[u]};break;case 561:this.$={default:s[u-1]};break;case 563:this.$={null:!0};break;case 564:this.$={notnull:!0};break;case 565:this.$={check:s[u]};break;case 566:this.$={unique:!0};break;case 567:this.$={onupdate:s[u]};break;case 568:this.$={onupdate:s[u-1]};break;case 569:this.$=new o.DropTable({tables:s[u],type:s[u-2]}),o.extend(this.$,s[u-1]);break;case 573:this.$={ifexists:!0};break;case 574:this.$=new o.AlterTable({table:s[u-3],renameto:s[u]});break;case 575:this.$=new o.AlterTable({table:s[u-3],addcolumn:s[u]});break;case 576:this.$=new o.AlterTable({table:s[u-3],modifycolumn:s[u]});break;case 577:this.$=new o.AlterTable({table:s[u-5],renamecolumn:s[u-2],to:s[u]});break;case 578:this.$=new o.AlterTable({table:s[u-3],dropcolumn:s[u]});break;case 579:this.$=new o.AlterTable({table:s[u-2],renameto:s[u]});break;case 580:this.$=new o.AttachDatabase({databaseid:s[u],engineid:s[u-2].toUpperCase()});break;case 581:this.$=new o.AttachDatabase({databaseid:s[u-3],engineid:s[u-5].toUpperCase(),args:s[u-1]});break;case 582:this.$=new o.AttachDatabase({databaseid:s[u-2],engineid:s[u-4].toUpperCase(),as:s[u]});break;case 583:this.$=new o.AttachDatabase({databaseid:s[u-5],engineid:s[u-7].toUpperCase(),as:s[u],args:s[u-3]});break;case 584:this.$=new o.DetachDatabase({databaseid:s[u]});break;case 585:this.$=new o.CreateDatabase({databaseid:s[u]}),o.extend(this.$,s[u]);break;case 586:this.$=new o.CreateDatabase({engineid:s[u-4].toUpperCase(),databaseid:s[u-1],as:s[u]}),o.extend(this.$,s[u-2]);break;case 587:this.$=new o.CreateDatabase({engineid:s[u-7].toUpperCase(),databaseid:s[u-4],args:s[u-2],as:s[u]}),o.extend(this.$,s[u-5]);break;case 588:this.$=new o.CreateDatabase({engineid:s[u-4].toUpperCase(),as:s[u],args:[s[u-1]]}),o.extend(this.$,s[u-2]);break;case 591:case 592:this.$=new o.UseDatabase({databaseid:s[u]});break;case 593:this.$=new o.DropDatabase({databaseid:s[u]}),o.extend(this.$,s[u-1]);break;case 594:case 595:this.$=new o.DropDatabase({databaseid:s[u],engineid:s[u-3].toUpperCase()}),o.extend(this.$,s[u-1]);break;case 596:this.$=new o.CreateIndex({indexid:s[u-5],table:s[u-3],columns:s[u-1]});break;case 597:this.$=new o.CreateIndex({indexid:s[u-5],table:s[u-3],columns:s[u-1],unique:!0});break;case 598:this.$=new o.DropIndex({indexid:s[u]});break;case 599:this.$=new o.ShowDatabases;break;case 600:this.$=new o.ShowDatabases({like:s[u]});break;case 601:this.$=new o.ShowDatabases({engineid:s[u-1].toUpperCase()});break;case 602:this.$=new o.ShowDatabases({engineid:s[u-3].toUpperCase(),like:s[u]});break;case 603:this.$=new o.ShowTables;break;case 604:this.$=new o.ShowTables({like:s[u]});break;case 605:this.$=new o.ShowTables({databaseid:s[u]});break;case 606:this.$=new o.ShowTables({like:s[u],databaseid:s[u-2]});break;case 607:this.$=new o.ShowColumns({table:s[u]});break;case 608:this.$=new o.ShowColumns({table:s[u-2],databaseid:s[u]});break;case 609:this.$=new o.ShowIndex({table:s[u]});break;case 610:this.$=new o.ShowIndex({table:s[u-2],databaseid:s[u]});break;case 611:this.$=new o.ShowCreateTable({table:s[u]});break;case 612:this.$=new o.ShowCreateTable({table:s[u-2],databaseid:s[u]});break;case 613:this.$=new o.CreateTable({table:s[u-6],view:!0,select:s[u-1],viewcolumns:s[u-4]}),o.extend(this.$,s[u-9]),o.extend(this.$,s[u-7]);break;case 614:this.$=new o.CreateTable({table:s[u-3],view:!0,select:s[u-1]}),o.extend(this.$,s[u-6]),o.extend(this.$,s[u-4]);break;case 618:this.$=new o.DropTable({tables:s[u],view:!0}),o.extend(this.$,s[u-1]);break;case 619:case 765:this.$=new o.ExpressionStatement({expression:s[u]});break;case 620:this.$=new o.Source({url:s[u].value});break;case 621:this.$=new o.Assert({value:s[u]});break;case 622:this.$=new o.Assert({value:s[u].value});break;case 623:this.$=new o.Assert({value:s[u],message:s[u-2]});break;case 625:case 636:case 638:this.$=s[u].value;break;case 626:case 634:this.$=+s[u].value;break;case 627:this.$=!!s[u].value;break;case 635:this.$=""+s[u].value;break;case 644:this.$={};break;case 647:case 1052:case 1072:case 1074:case 1076:case 1080:case 1082:case 1084:case 1086:case 1088:case 1090:this.$=[];break;case 648:o.extend(s[u-2],s[u]),this.$=s[u-2];break;case 650:this.$={},this.$[s[u-2].substr(1,s[u-2].length-2)]=s[u];break;case 651:case 652:this.$={},this.$[s[u-2]]=s[u];break;case 655:this.$=new o.SetVariable({variable:s[u-2].toLowerCase(),value:s[u]});break;case 656:this.$=new o.SetVariable({variable:s[u-1].toLowerCase(),value:s[u]});break;case 657:this.$=new o.SetVariable({variable:s[u-2],expression:s[u]});break;case 658:this.$=new o.SetVariable({variable:s[u-3],props:s[u-2],expression:s[u]});break;case 659:this.$=new o.SetVariable({variable:s[u-2],expression:s[u],method:s[u-3]});break;case 660:this.$=new o.SetVariable({variable:s[u-3],props:s[u-2],expression:s[u],method:s[u-4]});break;case 661:this.$="@";break;case 662:this.$="$";break;case 668:this.$=!0;break;case 669:this.$=!1;break;case 670:this.$=new o.CommitTransaction;break;case 671:this.$=new o.RollbackTransaction;break;case 672:this.$=new o.BeginTransaction;break;case 673:this.$=new o.If({expression:s[u-2],thenstat:s[u-1],elsestat:s[u]}),s[u-1].exists&&(this.$.exists=s[u-1].exists),s[u-1].queries&&(this.$.queries=s[u-1].queries);break;case 674:this.$=new o.If({expression:s[u-1],thenstat:s[u]}),s[u].exists&&(this.$.exists=s[u].exists),s[u].queries&&(this.$.queries=s[u].queries);break;case 676:this.$=new o.While({expression:s[u-1],loopstat:s[u]}),s[u].exists&&(this.$.exists=s[u].exists),s[u].queries&&(this.$.queries=s[u].queries);break;case 677:this.$=new o.Continue;break;case 678:this.$=new o.Break;break;case 679:this.$=new o.BeginEnd({statements:s[u-1]});break;case 680:this.$=new o.Print({exprs:s[u]});break;case 681:this.$=new o.Print({select:s[u]});break;case 682:this.$=new o.Require({paths:s[u]});break;case 683:this.$=new o.Require({plugins:s[u]});break;case 684:case 685:this.$=s[u].toUpperCase();break;case 686:this.$=new o.Echo({expr:s[u]});break;case 691:this.$=new o.Declare({declares:s[u]});break;case 694:this.$={variable:s[u-1]},o.extend(this.$,s[u]);break;case 695:this.$={variable:s[u-2]},o.extend(this.$,s[u]);break;case 696:this.$={variable:s[u-3],expression:s[u]},o.extend(this.$,s[u-2]);break;case 697:this.$={variable:s[u-4],expression:s[u]},o.extend(this.$,s[u-2]);break;case 698:this.$=new o.TruncateTable({table:s[u]});break;case 699:this.$=new o.Merge,o.extend(this.$,s[u-4]),o.extend(this.$,s[u-3]),o.extend(this.$,s[u-2]),o.extend(this.$,{matches:s[u-1]}),o.extend(this.$,s[u]);break;case 708:this.$={matched:!0,action:s[u]};break;case 709:this.$={matched:!0,expr:s[u-2],action:s[u]};break;case 710:this.$={delete:!0};break;case 711:this.$={update:s[u]};break;case 712:case 713:this.$={matched:!1,bytarget:!0,action:s[u]};break;case 714:case 715:this.$={matched:!1,bytarget:!0,expr:s[u-2],action:s[u]};break;case 716:this.$={matched:!1,bysource:!0,action:s[u]};break;case 717:this.$={matched:!1,bysource:!0,expr:s[u-2],action:s[u]};break;case 718:this.$={insert:!0,values:s[u]};break;case 719:this.$={insert:!0,values:s[u],columns:s[u-3]};break;case 720:this.$={insert:!0,defaultvalues:!0};break;case 721:this.$={insert:!0,defaultvalues:!0,columns:s[u-3]};break;case 723:this.$={output:{columns:s[u]}};break;case 724:this.$={output:{columns:s[u-3],intovar:s[u],method:s[u-1]}};break;case 725:this.$={output:{columns:s[u-2],intotable:s[u]}};break;case 726:this.$={output:{columns:s[u-5],intotable:s[u-3],intocolumns:s[u-1]}};break;case 727:this.$=new o.CreateVertex({class:s[u-3],sharp:s[u-2],name:s[u-1]}),o.extend(this.$,s[u]);break;case 730:this.$={sets:s[u]};break;case 731:this.$={content:s[u]};break;case 732:this.$={select:s[u]};break;case 733:this.$=new o.CreateEdge({from:s[u-3],to:s[u-1],name:s[u-5]}),o.extend(this.$,s[u]);break;case 734:this.$=new o.CreateGraph({graph:s[u]});break;case 735:this.$=new o.CreateGraph({from:s[u]});break;case 738:this.$=s[u-2],s[u-1]&&(this.$.json=new o.Json({value:s[u-1]})),s[u]&&(this.$.as=s[u]);break;case 739:this.$={source:s[u-6],target:s[u]},s[u-3]&&(this.$.json=new o.Json({value:s[u-3]})),s[u-2]&&(this.$.as=s[u-2]),o.extend(this.$,s[u-4]);break;case 740:this.$={source:s[u-5],target:s[u]},s[u-2]&&(this.$.json=new o.Json({value:s[u-3]})),s[u-1]&&(this.$.as=s[u-2]);break;case 741:this.$={source:s[u-2],target:s[u]};break;case 745:this.$={vars:s[u],method:s[u-1]};break;case 748:case 749:var _=s[u-1];this.$={prop:s[u-3],sharp:s[u-2],name:void 0===_?void 0:_.substr(1,_.length-2),class:s[u]};break;case 750:var g=s[u-1];this.$={sharp:s[u-2],name:void 0===g?void 0:g.substr(1,g.length-2),class:s[u]};break;case 751:var y=s[u-1];this.$={name:void 0===y?void 0:y.substr(1,y.length-2),class:s[u]};break;case 752:this.$={class:s[u]};break;case 758:this.$=new o.AddRule({left:s[u-2],right:s[u]});break;case 759:this.$=new o.AddRule({right:s[u]});break;case 762:this.$={termid:s[u]};break;case 763:this.$={termid:s[u-3],args:s[u-1]};break;case 766:this.$=new o.CreateTrigger({trigger:s[u-6],when:s[u-5],action:s[u-4],table:s[u-2],statement:s[u]}),s[u].exists&&(this.$.exists=s[u].exists),s[u].queries&&(this.$.queries=s[u].queries);break;case 767:this.$=new o.CreateTrigger({trigger:s[u-5],when:s[u-4],action:s[u-3],table:s[u-1],funcid:s[u]});break;case 768:this.$=new o.CreateTrigger({trigger:s[u-6],when:s[u-4],action:s[u-3],table:s[u-5],statement:s[u]}),s[u].exists&&(this.$.exists=s[u].exists),s[u].queries&&(this.$.queries=s[u].queries);break;case 769:case 770:case 772:this.$="AFTER";break;case 771:this.$="BEFORE";break;case 773:this.$="INSTEADOF";break;case 774:this.$="INSERT";break;case 775:this.$="DELETE";break;case 776:this.$="UPDATE";break;case 777:this.$=new o.DropTrigger({trigger:s[u]});break;case 778:this.$=new o.Reindex({indexid:s[u]});break;case 1053:case 1067:case 1069:case 1073:case 1075:case 1077:case 1081:case 1083:case 1085:case 1087:case 1089:case 1091:s[u-1].push(s[u])}},table:[e([10,606,767],t,{8:1,9:2,12:3,13:4,17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,2:r,4:o,5:i,14:s,53:a,72:u,89:c,124:h,146:f,156:p,189:d,270:E,271:m,293:_,339:g,342:y,343:A,400:v,404:b,405:T,408:w,410:O,412:R,413:S,421:I,422:N,438:C,440:D,441:L,443:M,444:x,445:B,446:P,447:F,451:U,452:k,455:j,456:G,509:V,511:Y,512:H,521:Q}),{1:[3]},{10:[1,105],11:106,606:W,767:z},e(q,[2,8]),e(q,[2,9]),e(K,[2,12]),e(q,t,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:109,2:r,4:o,5:i,15:[1,110],53:a,72:u,89:c,124:h,146:f,156:p,189:d,270:E,271:m,293:_,339:g,342:y,343:A,400:v,404:b,405:T,408:w,410:O,412:R,413:S,421:I,422:N,438:C,440:D,441:L,443:M,444:x,445:B,446:P,447:F,451:U,452:k,455:j,456:G,509:V,511:Y,512:H,521:Q}),e(K,[2,14]),e(K,[2,15]),e(K,[2,16]),e(K,[2,17]),e(K,[2,18]),e(K,[2,19]),e(K,[2,20]),e(K,[2,21]),e(K,[2,22]),e(K,[2,23]),e(K,[2,24]),e(K,[2,25]),e(K,[2,26]),e(K,[2,27]),e(K,[2,28]),e(K,[2,29]),e(K,[2,30]),e(K,[2,31]),e(K,[2,32]),e(K,[2,33]),e(K,[2,34]),e(K,[2,35]),e(K,[2,36]),e(K,[2,37]),e(K,[2,38]),e(K,[2,39]),e(K,[2,40]),e(K,[2,41]),e(K,[2,42]),e(K,[2,43]),e(K,[2,44]),e(K,[2,45]),e(K,[2,46]),e(K,[2,47]),e(K,[2,48]),e(K,[2,49]),e(K,[2,50]),e(K,[2,51]),e(K,[2,52]),e(K,[2,53]),e(K,[2,54]),e(K,[2,55]),e(K,[2,56]),e(K,[2,57]),e(K,[2,58]),e(K,[2,59]),e(K,[2,60]),e(K,[2,61]),e(K,[2,62]),e(K,[2,63]),e(K,[2,64]),e(K,[2,65]),e(K,[2,66]),e(K,[2,67]),{357:[1,111]},{2:r,3:112,4:o,5:i},{2:r,3:114,4:o,5:i,156:X,200:113,293:J,294:$,295:Z,296:ee,297:te},e(ne,[2,506],{3:122,352:126,2:r,4:o,5:i,134:re,135:oe,187:[1,124],193:[1,123],272:[1,130],273:[1,131],361:[1,132],409:[1,121],476:[1,125],513:[1,129]}),{145:ie,453:133,454:134},{183:[1,136]},{409:[1,137]},{2:r,3:139,4:o,5:i,130:[1,145],193:[1,140],357:[1,144],401:141,409:[1,138],414:[1,142],513:[1,143]},{2:r,3:169,4:o,5:i,56:166,77:se,94:146,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(He,Qe,{344:206,171:[1,207],198:We}),e(He,Qe,{344:209,198:We}),{2:r,3:221,4:o,5:i,77:ze,132:qe,143:le,144:214,145:he,152:pe,156:X,181:_e,198:[1,212],199:215,200:217,201:216,202:219,209:211,213:Ke,214:220,293:J,294:$,295:Z,296:ee,297:te,306:Ue,423:191,424:Ve,428:Ye,457:210},{2:r,3:223,4:o,5:i},{357:[1,224]},e(Xe,[2,1048],{80:225,106:226,107:[1,227]}),e(Je,[2,1052],{90:228}),{2:r,3:232,4:o,5:i,190:[1,230],193:[1,233],271:[1,229],357:[1,234],409:[1,231]},{357:[1,235]},{2:r,3:238,4:o,5:i,73:236,75:237},e([310,606,767],t,{12:3,13:4,17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,9:240,2:r,4:o,5:i,14:s,53:a,72:u,89:c,124:h,146:f,156:p,189:d,270:E,271:m,293:_,339:g,342:y,343:A,400:v,404:b,405:T,408:w,410:O,412:R,413:S,421:I,422:N,438:C,439:[1,239],440:D,441:L,443:M,444:x,445:B,446:P,447:F,451:U,452:k,455:j,456:G,509:V,511:Y,512:H,521:Q}),{439:[1,241]},{439:[1,242]},{2:r,3:244,4:o,5:i,409:[1,243]},{2:r,3:246,4:o,5:i,199:245},e($e,[2,314]),{113:247,132:ue,300:xe},{2:r,3:114,4:o,5:i,113:253,131:ae,132:[1,250],143:le,144:248,145:Ze,152:pe,156:X,181:_e,196:252,200:257,201:256,261:254,262:255,269:et,278:249,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,306:Ue,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:259,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(K,[2,677]),e(K,[2,678]),{2:r,3:169,4:o,5:i,40:261,56:166,77:se,79:75,89:c,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:260,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,184:99,189:d,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:268,4:o,5:i,113:265,132:ue,300:xe,448:263,449:264,450:266,451:tt},{2:r,3:269,4:o,5:i,143:nt,145:rt,435:270},{2:r,3:169,4:o,5:i,56:166,77:se,94:273,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{509:[1,274]},{2:r,3:100,4:o,5:i,508:276,510:275},{2:r,3:114,4:o,5:i,156:X,200:277,293:J,294:$,295:Z,296:ee,297:te},{2:r,3:169,4:o,5:i,56:166,77:se,94:278,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(ot,it,{186:282,164:[1,281],185:[1,279],187:[1,280],195:st}),e(at,[2,762],{77:[1,284]}),e([2,4,5,10,72,77,78,93,98,107,118,128,131,132,137,143,145,152,154,156,162,164,168,169,179,180,181,183,185,187,195,198,232,244,245,249,251,269,270,274,275,277,284,285,286,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,306,307,310,314,316,321,424,428,606,767],[2,152],{149:[1,285],150:[1,286],190:[1,287],191:[1,288],192:[1,289],193:[1,290],194:[1,291]}),e(ut,[2,1]),e(ut,[2,2]),{6:292,131:[1,441],172:[1,464],243:[1,440],244:[1,375],245:[1,409],249:[1,413],374:[1,406],385:[1,297],406:[1,299],414:[1,551],418:[1,473],420:[1,445],421:[1,511],437:[1,444],439:[1,527],444:[1,344],464:[1,420],468:[1,450],474:[1,343],518:[1,309],519:[1,301],520:[1,401],522:[1,293],523:[1,294],524:[1,295],525:[1,296],526:[1,298],527:[1,300],528:[1,302],529:[1,303],530:[1,304],531:[1,305],532:[1,306],533:[1,307],534:[1,308],535:[1,310],536:[1,311],537:[1,312],538:[1,313],539:[1,314],540:[1,315],541:[1,316],542:[1,317],543:[1,318],544:[1,319],545:[1,320],546:[1,321],547:[1,322],548:[1,323],549:[1,324],550:[1,325],551:[1,326],552:[1,327],553:[1,328],554:[1,329],555:[1,330],556:[1,331],557:[1,332],558:[1,333],559:[1,334],560:[1,335],561:[1,336],562:[1,337],563:[1,338],564:[1,339],565:[1,340],566:[1,341],567:[1,342],568:[1,345],569:[1,346],570:[1,347],571:[1,348],572:[1,349],573:[1,350],574:[1,351],575:[1,352],576:[1,353],577:[1,354],578:[1,355],579:[1,356],580:[1,357],581:[1,358],582:[1,359],583:[1,360],584:[1,361],585:[1,362],586:[1,363],587:[1,364],588:[1,365],589:[1,366],590:[1,367],591:[1,368],592:[1,369],593:[1,370],594:[1,371],595:[1,372],596:[1,373],597:[1,374],598:[1,376],599:[1,377],600:[1,378],601:[1,379],602:[1,380],603:[1,381],604:[1,382],605:[1,383],606:[1,384],607:[1,385],608:[1,386],609:[1,387],610:[1,388],611:[1,389],612:[1,390],613:[1,391],614:[1,392],615:[1,393],616:[1,394],617:[1,395],618:[1,396],619:[1,397],620:[1,398],621:[1,399],622:[1,400],623:[1,402],624:[1,403],625:[1,404],626:[1,405],627:[1,407],628:[1,408],629:[1,410],630:[1,411],631:[1,412],632:[1,414],633:[1,415],634:[1,416],635:[1,417],636:[1,418],637:[1,419],638:[1,421],639:[1,422],640:[1,423],641:[1,424],642:[1,425],643:[1,426],644:[1,427],645:[1,428],646:[1,429],647:[1,430],648:[1,431],649:[1,432],650:[1,433],651:[1,434],652:[1,435],653:[1,436],654:[1,437],655:[1,438],656:[1,439],657:[1,442],658:[1,443],659:[1,446],660:[1,447],661:[1,448],662:[1,449],663:[1,451],664:[1,452],665:[1,453],666:[1,454],667:[1,455],668:[1,456],669:[1,457],670:[1,458],671:[1,459],672:[1,460],673:[1,461],674:[1,462],675:[1,463],676:[1,465],677:[1,466],678:[1,467],679:[1,468],680:[1,469],681:[1,470],682:[1,471],683:[1,472],684:[1,474],685:[1,475],686:[1,476],687:[1,477],688:[1,478],689:[1,479],690:[1,480],691:[1,481],692:[1,482],693:[1,483],694:[1,484],695:[1,485],696:[1,486],697:[1,487],698:[1,488],699:[1,489],700:[1,490],701:[1,491],702:[1,492],703:[1,493],704:[1,494],705:[1,495],706:[1,496],707:[1,497],708:[1,498],709:[1,499],710:[1,500],711:[1,501],712:[1,502],713:[1,503],714:[1,504],715:[1,505],716:[1,506],717:[1,507],718:[1,508],719:[1,509],720:[1,510],721:[1,512],722:[1,513],723:[1,514],724:[1,515],725:[1,516],726:[1,517],727:[1,518],728:[1,519],729:[1,520],730:[1,521],731:[1,522],732:[1,523],733:[1,524],734:[1,525],735:[1,526],736:[1,528],737:[1,529],738:[1,530],739:[1,531],740:[1,532],741:[1,533],742:[1,534],743:[1,535],744:[1,536],745:[1,537],746:[1,538],747:[1,539],748:[1,540],749:[1,541],750:[1,542],751:[1,543],752:[1,544],753:[1,545],754:[1,546],755:[1,547],756:[1,548],757:[1,549],758:[1,550],759:[1,552],760:[1,553],761:[1,554],762:[1,555],763:[1,556],764:[1,557],765:[1,558],766:[1,559]},{1:[2,6]},e(q,t,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:560,2:r,4:o,5:i,53:a,72:u,89:c,124:h,146:f,156:p,189:d,270:E,271:m,293:_,339:g,342:y,343:A,400:v,404:b,405:T,408:w,410:O,412:R,413:S,421:I,422:N,438:C,440:D,441:L,443:M,444:x,445:B,446:P,447:F,451:U,452:k,455:j,456:G,509:V,511:Y,512:H,521:Q}),e(ct,[2,1046]),e(ct,[2,1047]),e(q,[2,10]),{16:[1,561]},{2:r,3:246,4:o,5:i,199:562},{409:[1,563]},e(K,[2,765]),{77:lt},{77:[1,565]},{77:ht},{77:[1,567]},{77:[1,568]},{77:[1,569]},{2:r,3:169,4:o,5:i,56:166,77:se,94:570,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(He,ft,{354:571,156:pt}),{409:[1,573]},{2:r,3:574,4:o,5:i},{193:[1,575]},{2:r,3:581,4:o,5:i,132:dt,137:Et,143:nt,145:rt,152:mt,183:[1,577],435:588,477:576,478:578,479:579,482:580,486:585,497:582,501:584},{130:[1,592],353:589,357:[1,591],414:[1,590]},{113:594,132:ue,183:[2,1146],300:xe,475:593},e(_t,[2,1140],{469:595,3:596,2:r,4:o,5:i}),{2:r,3:597,4:o,5:i},{4:[1,598]},{4:[1,599]},e(ne,[2,507]),e(K,[2,691],{74:[1,600]}),e(gt,[2,692]),{2:r,3:601,4:o,5:i},{2:r,3:246,4:o,5:i,199:602},{2:r,3:603,4:o,5:i},e(He,yt,{402:604,156:At}),{409:[1,606]},{2:r,3:607,4:o,5:i},e(He,yt,{402:608,156:At}),e(He,yt,{402:609,156:At}),{2:r,3:610,4:o,5:i},e(vt,[2,1134]),e(vt,[2,1135]),e(K,t,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:611,114:628,331:640,2:r,4:o,5:i,53:a,72:u,89:c,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:St,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,146:f,154:Bt,156:p,170:Pt,171:Ft,179:Ut,180:kt,189:d,270:E,271:m,293:_,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on,339:g,342:y,343:A,400:v,404:b,405:T,408:w,410:O,412:R,413:S,421:I,422:N,438:C,440:D,441:L,443:M,444:x,445:B,446:P,447:F,451:U,452:k,455:j,456:G,509:V,511:Y,512:H,521:Q}),e($e,[2,291]),e($e,[2,292]),e($e,[2,293]),e($e,[2,294]),e($e,[2,295]),e($e,[2,296]),e($e,[2,297]),e($e,[2,298]),e($e,[2,299]),e($e,[2,300]),e($e,[2,301]),e($e,[2,302]),e($e,[2,303]),e($e,[2,304]),e($e,[2,305]),e($e,[2,306]),e($e,[2,307]),e($e,[2,308]),{2:r,3:169,4:o,5:i,26:657,27:656,36:652,40:651,56:166,77:se,79:75,89:c,94:654,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,184:99,189:d,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,268:653,269:Ae,270:E,271:[1,658],274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:[1,655],294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,343:A,423:191,424:Ve,428:Ye},e($e,[2,312]),e($e,[2,313]),{77:[1,659]},e([2,4,5,10,53,72,74,76,78,89,93,95,98,99,107,112,115,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],sn,{77:lt,116:[1,660]}),{2:r,3:169,4:o,5:i,56:166,77:se,94:661,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:662,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:663,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:664,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:665,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e($e,[2,286]),e([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,231,232,239,244,245,246,247,249,251,253,269,270,271,274,275,277,284,285,286,287,288,289,290,291,293,294,295,296,297,298,299,300,301,302,303,304,306,307,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,419,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767,768,769],[2,361]),e(an,[2,362]),e(an,[2,363]),e(an,un),e(an,[2,365]),e([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,366]),{2:r,3:667,4:o,5:i,131:[1,668],305:666},{2:r,3:669,4:o,5:i},e(an,[2,372]),e(an,[2,373]),{2:r,3:670,4:o,5:i,77:cn,113:672,131:ae,132:ue,143:le,152:pe,181:_e,196:673,201:675,261:674,298:Le,299:Me,300:xe,306:Ue,423:676,428:Ye},{77:[1,677]},{2:r,3:169,4:o,5:i,56:166,77:se,94:678,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,308:679,311:680,312:ln,316:je,321:Ge,423:191,424:Ve,428:Ye},{77:[1,682]},{77:[1,683]},e(hn,[2,629]),{2:r,3:698,4:o,5:i,77:fn,111:693,113:691,131:ae,132:ue,143:le,144:688,145:Ze,152:pe,156:X,181:_e,196:690,200:696,201:695,261:692,262:694,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,304:[1,686],306:Ue,423:191,424:Ve,425:684,426:687,427:689,428:Ye,431:685},{2:r,3:169,4:o,5:i,56:166,77:se,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:699,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:700,4:o,5:i,156:X,200:701,293:J,294:$,295:Z,296:ee,297:te},{77:[2,339]},{77:[2,340]},{77:[2,341]},{77:[2,342]},{77:[2,343]},{77:[2,344]},{77:[2,345]},{77:[2,346]},{77:[2,347]},{77:[2,348]},{2:r,3:707,4:o,5:i,131:pn,132:dn,429:702,430:[1,703],432:704},{2:r,3:246,4:o,5:i,199:708},{293:[1,709]},e(He,[2,477]),{2:r,3:246,4:o,5:i,199:710},{231:[1,712],458:711},{231:[2,700]},{2:r,3:221,4:o,5:i,77:ze,132:qe,143:le,144:214,145:he,152:pe,156:X,181:_e,199:215,200:217,201:216,202:219,209:713,213:Ke,214:220,293:J,294:$,295:Z,296:ee,297:te,306:Ue,423:191,424:Ve,428:Ye},{40:714,79:75,89:c,184:99,189:d},e(En,[2,1096],{210:715,76:[1,716]}),e(mn,[2,185],{3:717,2:r,4:o,5:i,76:[1,718],154:[1,719]}),e(mn,[2,189],{3:720,2:r,4:o,5:i,76:[1,721]}),e(mn,[2,190],{3:722,2:r,4:o,5:i,76:[1,723]}),e(mn,[2,193]),e(mn,[2,194],{3:724,2:r,4:o,5:i,76:[1,725]}),e(mn,[2,197],{3:726,2:r,4:o,5:i,76:[1,727]}),e([2,4,5,10,72,74,76,78,93,98,118,128,154,162,168,169,183,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],_n,{77:lt,116:gn}),e([2,4,5,10,72,74,76,78,93,98,118,128,162,168,169,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,310,314,606,767],[2,200]),e(K,[2,778]),{2:r,3:246,4:o,5:i,199:729},e(yn,An,{81:730,198:vn}),e(Xe,[2,1049]),e(bn,[2,1062],{108:732,190:[1,733]}),e([10,78,183,310,314,606,767],An,{423:191,81:734,117:735,3:736,114:739,144:761,158:771,160:772,2:r,4:o,5:i,72:Tn,76:wn,77:On,112:Rn,115:wt,116:Ot,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,198:vn,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,424:Ve,428:Ye}),{357:[1,785]},{183:[1,786]},e(K,[2,599],{112:[1,787]}),{409:[1,788]},{183:[1,789]},e(K,[2,603],{112:[1,790],183:[1,791]}),{2:r,3:246,4:o,5:i,199:792},{40:793,74:[1,794],79:75,89:c,184:99,189:d},e(pr,[2,70]),{76:[1,795]},e(K,[2,672]),{11:106,310:[1,796],606:W,767:z},e(K,[2,670]),e(K,[2,671]),{2:r,3:797,4:o,5:i},e(K,[2,592]),{146:[1,798]},e([2,4,5,10,53,72,74,76,77,78,89,95,124,128,143,145,146,148,149,152,154,156,181,183,187,189,230,270,271,293,301,306,310,314,339,342,343,347,348,360,372,373,377,378,400,404,405,406,407,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,518,519,520,521,606,767],_n,{116:gn}),e(K,[2,620]),e(K,[2,621]),e(K,[2,622]),e(K,un,{74:[1,799]}),{77:cn,113:672,131:ae,132:ue,143:le,152:pe,181:_e,196:673,201:675,261:674,298:Le,299:Me,300:xe,306:Ue,423:676,428:Ye},e(dr,[2,323]),e(dr,[2,324]),e(dr,[2,325]),e(dr,[2,326]),e(dr,[2,327]),e(dr,[2,328]),e(dr,[2,329]),e(K,t,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,114:628,331:640,12:800,2:r,4:o,5:i,53:a,72:u,89:c,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:St,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,146:f,154:Bt,156:p,170:Pt,171:Ft,179:Ut,180:kt,189:d,270:E,271:m,293:_,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on,339:g,342:y,343:A,400:v,404:b,405:T,408:w,410:O,412:R,413:S,421:I,422:N,438:C,440:D,441:L,443:M,444:x,445:B,446:P,447:F,451:U,452:k,455:j,456:G,509:V,511:Y,512:H,521:Q}),e(K,[2,680],{74:Er}),e(K,[2,681]),e(mr,[2,359],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(K,[2,682],{74:[1,803]}),e(K,[2,683],{74:[1,804]}),e(gt,[2,688]),e(gt,[2,690]),e(gt,[2,684]),e(gt,[2,685]),{114:810,115:wt,116:Ot,124:[1,805],230:gr,433:806,434:807,437:yr},{2:r,3:811,4:o,5:i},e(He,[2,661]),e(He,[2,662]),e(K,[2,619],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{2:r,3:100,4:o,5:i,508:276,510:812},e(K,[2,759],{74:Ar}),e(vr,[2,761]),e(K,[2,764]),e(K,[2,686],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(br,it,{186:814,195:st}),e(br,it,{186:815,195:st}),e(br,it,{186:816,195:st}),e(Tr,[2,1092],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,188:817,174:818,257:819,94:820,2:r,4:o,5:i,77:se,131:ae,132:ue,137:ce,143:le,145:he,149:fe,152:pe,154:de,156:X,179:Ee,180:me,181:_e,244:ge,245:ye,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,424:Ve,428:Ye}),{77:[1,822],131:ae,196:821},{2:r,3:100,4:o,5:i,508:276,510:823},e(wr,[2,153]),e(wr,[2,154]),e(wr,[2,155]),e(wr,[2,156]),e(wr,[2,157]),e(wr,[2,158]),e(wr,[2,159]),e(ut,[2,3]),e(ut,[2,779]),e(ut,[2,780]),e(ut,[2,781]),e(ut,[2,782]),e(ut,[2,783]),e(ut,[2,784]),e(ut,[2,785]),e(ut,[2,786]),e(ut,[2,787]),e(ut,[2,788]),e(ut,[2,789]),e(ut,[2,790]),e(ut,[2,791]),e(ut,[2,792]),e(ut,[2,793]),e(ut,[2,794]),e(ut,[2,795]),e(ut,[2,796]),e(ut,[2,797]),e(ut,[2,798]),e(ut,[2,799]),e(ut,[2,800]),e(ut,[2,801]),e(ut,[2,802]),e(ut,[2,803]),e(ut,[2,804]),e(ut,[2,805]),e(ut,[2,806]),e(ut,[2,807]),e(ut,[2,808]),e(ut,[2,809]),e(ut,[2,810]),e(ut,[2,811]),e(ut,[2,812]),e(ut,[2,813]),e(ut,[2,814]),e(ut,[2,815]),e(ut,[2,816]),e(ut,[2,817]),e(ut,[2,818]),e(ut,[2,819]),e(ut,[2,820]),e(ut,[2,821]),e(ut,[2,822]),e(ut,[2,823]),e(ut,[2,824]),e(ut,[2,825]),e(ut,[2,826]),e(ut,[2,827]),e(ut,[2,828]),e(ut,[2,829]),e(ut,[2,830]),e(ut,[2,831]),e(ut,[2,832]),e(ut,[2,833]),e(ut,[2,834]),e(ut,[2,835]),e(ut,[2,836]),e(ut,[2,837]),e(ut,[2,838]),e(ut,[2,839]),e(ut,[2,840]),e(ut,[2,841]),e(ut,[2,842]),e(ut,[2,843]),e(ut,[2,844]),e(ut,[2,845]),e(ut,[2,846]),e(ut,[2,847]),e(ut,[2,848]),e(ut,[2,849]),e(ut,[2,850]),e(ut,[2,851]),e(ut,[2,852]),e(ut,[2,853]),e(ut,[2,854]),e(ut,[2,855]),e(ut,[2,856]),e(ut,[2,857]),e(ut,[2,858]),e(ut,[2,859]),e(ut,[2,860]),e(ut,[2,861]),e(ut,[2,862]),e(ut,[2,863]),e(ut,[2,864]),e(ut,[2,865]),e(ut,[2,866]),e(ut,[2,867]),e(ut,[2,868]),e(ut,[2,869]),e(ut,[2,870]),e(ut,[2,871]),e(ut,[2,872]),e(ut,[2,873]),e(ut,[2,874]),e(ut,[2,875]),e(ut,[2,876]),e(ut,[2,877]),e(ut,[2,878]),e(ut,[2,879]),e(ut,[2,880]),e(ut,[2,881]),e(ut,[2,882]),e(ut,[2,883]),e(ut,[2,884]),e(ut,[2,885]),e(ut,[2,886]),e(ut,[2,887]),e(ut,[2,888]),e(ut,[2,889]),e(ut,[2,890]),e(ut,[2,891]),e(ut,[2,892]),e(ut,[2,893]),e(ut,[2,894]),e(ut,[2,895]),e(ut,[2,896]),e(ut,[2,897]),e(ut,[2,898]),e(ut,[2,899]),e(ut,[2,900]),e(ut,[2,901]),e(ut,[2,902]),e(ut,[2,903]),e(ut,[2,904]),e(ut,[2,905]),e(ut,[2,906]),e(ut,[2,907]),e(ut,[2,908]),e(ut,[2,909]),e(ut,[2,910]),e(ut,[2,911]),e(ut,[2,912]),e(ut,[2,913]),e(ut,[2,914]),e(ut,[2,915]),e(ut,[2,916]),e(ut,[2,917]),e(ut,[2,918]),e(ut,[2,919]),e(ut,[2,920]),e(ut,[2,921]),e(ut,[2,922]),e(ut,[2,923]),e(ut,[2,924]),e(ut,[2,925]),e(ut,[2,926]),e(ut,[2,927]),e(ut,[2,928]),e(ut,[2,929]),e(ut,[2,930]),e(ut,[2,931]),e(ut,[2,932]),e(ut,[2,933]),e(ut,[2,934]),e(ut,[2,935]),e(ut,[2,936]),e(ut,[2,937]),e(ut,[2,938]),e(ut,[2,939]),e(ut,[2,940]),e(ut,[2,941]),e(ut,[2,942]),e(ut,[2,943]),e(ut,[2,944]),e(ut,[2,945]),e(ut,[2,946]),e(ut,[2,947]),e(ut,[2,948]),e(ut,[2,949]),e(ut,[2,950]),e(ut,[2,951]),e(ut,[2,952]),e(ut,[2,953]),e(ut,[2,954]),e(ut,[2,955]),e(ut,[2,956]),e(ut,[2,957]),e(ut,[2,958]),e(ut,[2,959]),e(ut,[2,960]),e(ut,[2,961]),e(ut,[2,962]),e(ut,[2,963]),e(ut,[2,964]),e(ut,[2,965]),e(ut,[2,966]),e(ut,[2,967]),e(ut,[2,968]),e(ut,[2,969]),e(ut,[2,970]),e(ut,[2,971]),e(ut,[2,972]),e(ut,[2,973]),e(ut,[2,974]),e(ut,[2,975]),e(ut,[2,976]),e(ut,[2,977]),e(ut,[2,978]),e(ut,[2,979]),e(ut,[2,980]),e(ut,[2,981]),e(ut,[2,982]),e(ut,[2,983]),e(ut,[2,984]),e(ut,[2,985]),e(ut,[2,986]),e(ut,[2,987]),e(ut,[2,988]),e(ut,[2,989]),e(ut,[2,990]),e(ut,[2,991]),e(ut,[2,992]),e(ut,[2,993]),e(ut,[2,994]),e(ut,[2,995]),e(ut,[2,996]),e(ut,[2,997]),e(ut,[2,998]),e(ut,[2,999]),e(ut,[2,1e3]),e(ut,[2,1001]),e(ut,[2,1002]),e(ut,[2,1003]),e(ut,[2,1004]),e(ut,[2,1005]),e(ut,[2,1006]),e(ut,[2,1007]),e(ut,[2,1008]),e(ut,[2,1009]),e(ut,[2,1010]),e(ut,[2,1011]),e(ut,[2,1012]),e(ut,[2,1013]),e(ut,[2,1014]),e(ut,[2,1015]),e(ut,[2,1016]),e(ut,[2,1017]),e(ut,[2,1018]),e(ut,[2,1019]),e(ut,[2,1020]),e(ut,[2,1021]),e(ut,[2,1022]),e(ut,[2,1023]),e(ut,[2,1024]),e(ut,[2,1025]),e(ut,[2,1026]),e(ut,[2,1027]),e(ut,[2,1028]),e(ut,[2,1029]),e(ut,[2,1030]),e(ut,[2,1031]),e(ut,[2,1032]),e(ut,[2,1033]),e(ut,[2,1034]),e(ut,[2,1035]),e(ut,[2,1036]),e(ut,[2,1037]),e(ut,[2,1038]),e(ut,[2,1039]),e(ut,[2,1040]),e(ut,[2,1041]),e(ut,[2,1042]),e(ut,[2,1043]),e(ut,[2,1044]),e(ut,[2,1045]),e(q,[2,7]),e(q,t,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:824,2:r,4:o,5:i,53:a,72:u,89:c,124:h,146:f,156:p,189:d,270:E,271:m,293:_,339:g,342:y,343:A,400:v,404:b,405:T,408:w,410:O,412:R,413:S,421:I,422:N,438:C,440:D,441:L,443:M,444:x,445:B,446:P,447:F,451:U,452:k,455:j,456:G,509:V,511:Y,512:H,521:Q}),{400:[1,828],405:[1,825],406:[1,826],407:[1,827]},{2:r,3:829,4:o,5:i},e(br,[2,1116],{292:830,770:832,78:[1,831],164:[1,834],185:[1,833]}),{2:r,3:169,4:o,5:i,56:166,77:se,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:835,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:836,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:837,4:o,5:i,132:[1,838]},{2:r,3:839,4:o,5:i,132:[1,840]},{2:r,3:169,4:o,5:i,56:166,77:se,94:841,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:842,4:o,5:i,99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{2:r,3:843,4:o,5:i},{154:[1,844]},e(Or,ft,{354:845,156:pt}),{230:[1,846]},{2:r,3:847,4:o,5:i},e(K,[2,734],{74:Rr}),{2:r,3:169,4:o,5:i,56:166,77:se,94:849,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(vr,[2,737]),e(Sr,[2,1148],{423:191,480:850,144:851,139:Ir,141:Ir,145:Ze,424:Ve,428:Ye}),{139:[1,852],141:[1,853]},e(Nr,Cr,{494:855,497:856,77:[1,854],137:Et}),e(Dr,[2,1172],{498:857,132:[1,858]}),e(Lr,[2,1176],{500:859,501:860,152:mt}),e(Lr,[2,752]),e(Mr,[2,744]),{2:r,3:861,4:o,5:i,131:[1,862]},{2:r,3:863,4:o,5:i},{2:r,3:864,4:o,5:i},e(He,ft,{354:865,156:pt}),e(He,ft,{354:866,156:pt}),e(vt,[2,496]),e(vt,[2,497]),{183:[1,867]},{183:[2,1147]},e(xr,[2,1142],{470:868,473:869,137:[1,870]}),e(_t,[2,1141]),e(Br,Pr,{514:871,95:Fr,230:[1,872],518:Ur,519:kr,520:jr}),{76:[1,877]},{76:[1,878]},{145:ie,454:879},{4:Gr,7:883,76:[1,881],276:880,391:882,393:Vr},e(K,[2,461],{128:[1,886]}),e(K,[2,584]),{2:r,3:887,4:o,5:i},{302:[1,888]},e(Or,yt,{402:889,156:At}),e(K,[2,598]),{2:r,3:246,4:o,5:i,199:891,403:890},{2:r,3:246,4:o,5:i,199:891,403:892},e(K,[2,777]),e(q,[2,674],{442:893,314:[1,894]}),{2:r,3:169,4:o,5:i,56:166,77:se,94:895,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:896,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:897,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:898,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:899,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:900,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:901,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:902,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:903,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:904,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:905,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:906,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:907,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:908,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:909,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:910,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:911,4:o,5:i,77:[1,913],131:ae,156:X,196:912,200:914,293:J,294:$,295:Z,296:ee,297:te},{2:r,3:915,4:o,5:i,77:[1,917],131:ae,156:X,196:916,200:918,293:J,294:$,295:Z,296:ee,297:te},e(Yr,[2,445],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:919,2:r,4:o,5:i,77:se,131:ae,132:ue,137:ce,143:le,145:he,149:fe,152:pe,154:de,156:X,179:Ee,180:me,181:_e,244:ge,245:ye,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,424:Ve,428:Ye}),e(Yr,[2,446],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:920,2:r,4:o,5:i,77:se,131:ae,132:ue,137:ce,143:le,145:he,149:fe,152:pe,154:de,156:X,179:Ee,180:me,181:_e,244:ge,245:ye,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,424:Ve,428:Ye}),e(Yr,[2,447],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:921,2:r,4:o,5:i,77:se,131:ae,132:ue,137:ce,143:le,145:he,149:fe,152:pe,154:de,156:X,179:Ee,180:me,181:_e,244:ge,245:ye,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,424:Ve,428:Ye}),e(Yr,[2,448],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:922,2:r,4:o,5:i,77:se,131:ae,132:ue,137:ce,143:le,145:he,149:fe,152:pe,154:de,156:X,179:Ee,180:me,181:_e,244:ge,245:ye,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,424:Ve,428:Ye}),e(Yr,Hr,{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:923,2:r,4:o,5:i,77:se,131:ae,132:ue,137:ce,143:le,145:he,149:fe,152:pe,154:de,156:X,179:Ee,180:me,181:_e,244:ge,245:ye,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,424:Ve,428:Ye}),{2:r,3:169,4:o,5:i,56:166,77:se,94:924,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:925,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(Yr,[2,450],{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:926,2:r,4:o,5:i,77:se,131:ae,132:ue,137:ce,143:le,145:he,149:fe,152:pe,154:de,156:X,179:Ee,180:me,181:_e,244:ge,245:ye,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,424:Ve,428:Ye}),{2:r,3:169,4:o,5:i,56:166,77:se,94:927,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:928,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{164:[1,930],166:[1,932],332:929,338:[1,931]},{2:r,3:169,4:o,5:i,56:166,77:se,94:933,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:934,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:698,4:o,5:i,77:[1,935],111:938,145:Qr,156:X,200:939,202:937,293:J,294:$,295:Z,296:ee,297:te,333:936},{99:[1,941],301:[1,942]},{2:r,3:169,4:o,5:i,56:166,77:se,94:943,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:944,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:945,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{4:Gr,7:883,276:946,391:882,393:Vr},e(Wr,[2,88]),e(Wr,[2,89]),{78:[1,947]},{78:[1,948]},{78:[1,949]},{78:[1,950],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(He,Qe,{344:209,77:ht,198:We}),{78:[2,1112]},{78:[2,1113]},{134:re,135:oe},{2:r,3:169,4:o,5:i,56:166,77:se,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:951,152:pe,154:de,156:X,158:168,164:[1,953],179:Ee,180:me,181:_e,185:[1,952],196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:954,4:o,5:i,149:zr,180:[1,956]},e([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,118,122,128,129,130,131,132,134,135,137,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,318,334,335,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,421],{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,336:rn}),e(qr,[2,422],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,180:kt,316:Gt,320:Ht}),e(qr,[2,423],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,180:kt,316:Gt,320:Ht}),e(Kr,[2,424],{114:628,331:640,320:Ht}),e(Kr,[2,425],{114:628,331:640,320:Ht}),e(an,[2,370]),e(an,[2,1118]),e(an,[2,1119]),e(an,[2,371]),e([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,231,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,367]),{2:r,3:169,4:o,5:i,56:166,77:se,94:957,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(hn,[2,625]),e(hn,[2,626]),e(hn,[2,627]),e(hn,[2,628]),e(hn,[2,630]),{40:958,79:75,89:c,184:99,189:d},{99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,308:959,311:680,312:ln,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{309:960,310:Xr,311:961,312:ln,314:Jr},e($r,[2,377]),{2:r,3:169,4:o,5:i,56:166,77:se,94:963,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:964,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{4:Gr,7:883,276:965,391:882,393:Vr},e(hn,[2,631]),{74:[1,967],304:[1,966]},e(hn,[2,647]),e(Zr,[2,654]),e(eo,[2,632]),e(eo,[2,633]),e(eo,[2,634]),e(eo,[2,635]),e(eo,[2,636]),e(eo,[2,637]),e(eo,[2,638]),e(eo,[2,639]),e(eo,[2,640]),{2:r,3:169,4:o,5:i,56:166,77:se,94:968,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e([2,4,5,10,53,72,74,76,78,89,93,95,98,99,107,112,115,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,430,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],sn,{77:lt,116:to}),{74:Er,304:[1,970]},e(no,[2,317],{77:lt}),e($e,[2,318]),{74:[1,972],430:[1,971]},e(hn,[2,644]),e(ro,[2,649]),{152:[1,973]},{152:[1,974]},{152:[1,975]},{40:980,77:[1,979],79:75,89:c,143:le,144:983,145:Ze,149:oo,152:pe,181:_e,184:99,189:d,201:984,306:Ue,345:976,346:977,347:[1,978],348:io,423:191,424:Ve,428:Ye},e(He,Qe,{344:985,198:We}),{77:so,143:le,144:983,145:Ze,149:oo,152:pe,181:_e,201:984,306:Ue,345:986,346:987,348:io,423:191,424:Ve,428:Ye},{230:[1,990],459:989},{2:r,3:221,4:o,5:i,77:ze,132:qe,143:le,144:214,145:he,152:pe,156:X,181:_e,199:215,200:217,201:216,202:219,209:991,213:Ke,214:220,293:J,294:$,295:Z,296:ee,297:te,306:Ue,423:191,424:Ve,428:Ye},{231:[2,701]},{78:[1,992]},e(mn,[2,1098],{211:993,3:994,2:r,4:o,5:i}),e(En,[2,1097]),e(mn,[2,183]),{2:r,3:995,4:o,5:i},{212:[1,996]},e(mn,[2,187]),{2:r,3:997,4:o,5:i},e(mn,[2,191]),{2:r,3:998,4:o,5:i},e(mn,[2,195]),{2:r,3:999,4:o,5:i},e(mn,[2,198]),{2:r,3:1e3,4:o,5:i},{2:r,3:1001,4:o,5:i},{148:[1,1002]},e(ao,[2,172],{82:1003,183:[1,1004]}),{2:r,3:221,4:o,5:i,132:[1,1009],143:le,145:[1,1010],152:pe,156:X,181:_e,199:1005,200:1006,201:1007,202:1008,293:J,294:$,295:Z,296:ee,297:te,306:Ue},{2:r,3:1015,4:o,5:i,109:1011,110:1012,111:1013,112:uo},e(bn,[2,1063]),e(co,[2,1054],{91:1016,182:1017,183:[1,1018]}),e(Je,[2,1053],{153:1019,179:lo,180:ho,181:fo}),e([2,4,5,10,72,74,76,78,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,198,244,245,284,285,286,287,288,289,290,291,310,314,424,428,606,767],[2,90],{77:[1,1023]}),{119:[1,1024]},e(po,[2,93]),{2:r,3:1025,4:o,5:i},e(po,[2,95]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1026,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1027,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:736,4:o,5:i,72:Tn,76:wn,77:On,112:Rn,114:739,115:wt,116:Ot,117:1029,118:Sn,122:In,123:Nn,124:Cn,125:1028,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},{77:[1,1030]},{77:[1,1031]},{77:[1,1032]},{77:[1,1033]},e(po,[2,104]),e(po,[2,105]),e(po,[2,106]),e(po,[2,107]),e(po,[2,108]),e(po,[2,109]),{2:r,3:1034,4:o,5:i},{2:r,3:1035,4:o,5:i,133:[1,1036]},e(po,[2,113]),e(po,[2,114]),e(po,[2,115]),e(po,[2,116]),e(po,[2,117]),e(po,[2,118]),{2:r,3:1037,4:o,5:i,77:cn,113:672,131:ae,132:ue,143:le,152:pe,181:_e,196:673,201:675,261:674,298:Le,299:Me,300:xe,306:Ue,423:676,428:Ye},{145:[1,1038]},{77:[1,1039]},{145:[1,1040]},e(po,[2,123]),{77:[1,1041]},{2:r,3:1042,4:o,5:i},{77:[1,1043]},{77:[1,1044]},{77:[1,1045]},{77:[1,1046]},{77:[1,1047],164:[1,1048]},{77:[1,1049]},{77:[1,1050]},{77:[1,1051]},{77:[1,1052]},{77:[1,1053]},{77:[1,1054]},{77:[1,1055]},{77:[1,1056]},{77:[1,1057]},{77:[2,1078]},{77:[2,1079]},{2:r,3:246,4:o,5:i,199:1058},{2:r,3:246,4:o,5:i,199:1059},{113:1060,132:ue,300:xe},e(K,[2,601],{112:[1,1061]}),{2:r,3:246,4:o,5:i,199:1062},{113:1063,132:ue,300:xe},{2:r,3:1064,4:o,5:i},e(K,[2,698]),e(K,[2,68]),{2:r,3:238,4:o,5:i,75:1065},{77:[1,1066]},e(K,[2,679]),e(K,[2,591]),{2:r,3:1015,4:o,5:i,111:1069,143:Eo,145:mo,147:1067,340:1068,341:1070},{144:1073,145:Ze,423:191,424:Ve,428:Ye},e(K,[2,676]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1074,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(Yr,Hr,{259:147,200:148,260:149,111:150,258:151,196:152,261:153,113:154,262:155,201:156,202:157,263:158,264:159,265:160,144:162,266:163,267:164,56:166,158:168,3:169,423:191,94:1075,2:r,4:o,5:i,77:se,131:ae,132:ue,137:ce,143:le,145:he,149:fe,152:pe,154:de,156:X,179:Ee,180:me,181:_e,244:ge,245:ye,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,424:Ve,428:Ye}),{113:1076,132:ue,300:xe},{2:r,3:268,4:o,5:i,450:1077,451:tt},{2:r,3:169,4:o,5:i,56:166,77:se,94:1079,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,230:gr,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye,433:1078,437:yr},e(K,[2,656]),{114:1081,115:wt,116:Ot,124:[1,1080]},e(K,[2,668]),e(K,[2,669]),{2:r,3:1083,4:o,5:i,77:_o,131:go,436:1082},{114:810,115:wt,116:Ot,124:[1,1086],434:1087},e(K,[2,758],{74:Ar}),{2:r,3:100,4:o,5:i,508:1088},{2:r,3:169,4:o,5:i,56:166,77:se,94:820,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,174:1089,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,257:819,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:820,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,174:1090,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,257:819,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:820,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,174:1091,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,257:819,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(Tr,[2,151]),e(Tr,[2,1093],{74:yo}),e(Ao,[2,276]),e(Ao,[2,283],{114:628,331:640,3:1094,113:1096,2:r,4:o,5:i,76:[1,1093],99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,131:[1,1095],132:ue,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,300:xe,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(ot,[2,1094],{197:1097,768:[1,1098]}),{131:ae,196:1099},{74:Ar,78:[1,1100]},e(q,[2,11]),{148:[1,1101],190:[1,1102]},{190:[1,1103]},{190:[1,1104]},{190:[1,1105]},e(K,[2,580],{76:[1,1107],77:[1,1106]}),{2:r,3:169,4:o,5:i,56:166,77:se,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:1108,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(an,[2,350]),e(br,[2,1117]),e(br,[2,1114]),e(br,[2,1115]),{74:Er,78:[1,1109]},{74:Er,78:[1,1110]},{74:[1,1111]},{74:[1,1112]},{74:[1,1113]},{74:[1,1114]},{74:[1,1115],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(an,[2,358]),e(K,[2,585]),{302:[1,1116]},{2:r,3:1117,4:o,5:i,113:1118,132:ue,300:xe},{2:r,3:246,4:o,5:i,199:1119},{230:[1,1120]},{2:r,3:581,4:o,5:i,132:dt,137:Et,143:nt,145:rt,152:mt,435:588,478:1121,479:579,482:580,486:585,497:582,501:584},e(K,[2,735],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(vr,[2,1150],{481:1122,487:1123,76:vo}),e(Sr,[2,1149]),{2:r,3:1127,4:o,5:i,132:dt,137:Et,144:1126,145:Ze,152:mt,423:191,424:Ve,428:Ye,479:1125,497:582,501:584},{2:r,3:1127,4:o,5:i,132:dt,137:Et,143:nt,145:rt,152:mt,435:588,479:1129,482:1128,486:585,497:582,501:584},{2:r,3:581,4:o,5:i,132:dt,137:Et,143:nt,145:rt,152:mt,435:588,477:1130,478:578,479:579,482:580,486:585,497:582,501:584},e(Dr,[2,1168],{495:1131,132:[1,1132]}),e(Nr,[2,1167]),e(Lr,[2,1174],{499:1133,501:1134,152:mt}),e(Dr,[2,1173]),e(Lr,[2,751]),e(Lr,[2,1177]),e(Nr,[2,754]),e(Nr,[2,755]),e(Lr,[2,753]),e(Mr,[2,745]),{2:r,3:246,4:o,5:i,199:1135},{2:r,3:246,4:o,5:i,199:1136},{2:r,3:169,4:o,5:i,56:166,77:se,94:1137,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(bo,[2,1144],{471:1138,113:1139,132:ue,300:xe}),e(xr,[2,1143]),{2:r,3:1140,4:o,5:i},{339:To,342:wo,343:Oo,515:1141},{2:r,3:246,4:o,5:i,199:1145},e(Br,[2,770]),e(Br,[2,771]),e(Br,[2,772]),{129:[1,1146]},{270:[1,1147]},{270:[1,1148]},e(gt,[2,693]),e(gt,[2,694],{124:[1,1149]}),{4:Gr,7:883,276:1150,391:882,393:Vr},e([2,4,10,53,72,74,76,77,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,547],{5:[1,1151]}),e([2,5,10,53,72,74,76,78,89,93,95,98,99,107,112,115,116,118,122,123,124,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,230,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,301,304,310,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,347,360,372,373,377,378,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,544],{4:[1,1153],77:[1,1152]}),{77:[1,1154]},e(Ro,[2,4]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1155,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(K,[2,593]),e(Or,[2,573]),{2:r,3:1156,4:o,5:i,113:1157,132:ue,300:xe},e(K,[2,569],{74:So}),e(gt,[2,571]),e(K,[2,618],{74:So}),e(K,[2,673]),e(K,t,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:1159,2:r,4:o,5:i,53:a,72:u,89:c,124:h,146:f,156:p,189:d,270:E,271:m,293:_,339:g,342:y,343:A,400:v,404:b,405:T,408:w,410:O,412:R,413:S,421:I,422:N,438:C,440:D,441:L,443:M,444:x,445:B,446:P,447:F,451:U,452:k,455:j,456:G,509:V,511:Y,512:H,521:Q}),e(Io,[2,381],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,316:Gt,320:Ht,321:Qt,322:Wt,323:zt}),e(Kr,[2,382],{114:628,331:640,320:Ht}),e(Io,[2,383],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,316:Gt,320:Ht,321:Qt,322:Wt,323:zt}),e(No,[2,384],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,316:Gt,318:[1,1160],320:Ht,321:Qt,322:Wt,323:zt}),e(No,[2,386],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,316:Gt,318:[1,1161],320:Ht,321:Qt,322:Wt,323:zt}),e($e,[2,388],{114:628,331:640}),e(qr,[2,389],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,180:kt,316:Gt,320:Ht}),e(qr,[2,390],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,180:kt,316:Gt,320:Ht}),e(Co,[2,391],{114:628,331:640,115:wt,116:Ot,123:Rt,136:Nt,316:Gt,320:Ht}),e(Co,[2,392],{114:628,331:640,115:wt,116:Ot,123:Rt,136:Nt,316:Gt,320:Ht}),e(Co,[2,393],{114:628,331:640,115:wt,116:Ot,123:Rt,136:Nt,316:Gt,320:Ht}),e([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,112,118,122,123,124,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,179,180,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,315,317,318,319,321,322,323,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,394],{114:628,331:640,115:wt,116:Ot,136:Nt,316:Gt,320:Ht}),e(Do,[2,395],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,179:Ut,180:kt,316:Gt,320:Ht,321:Qt}),e(Do,[2,396],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,179:Ut,180:kt,316:Gt,320:Ht,321:Qt}),e(Do,[2,397],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,179:Ut,180:kt,316:Gt,320:Ht,321:Qt}),e(Do,[2,398],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,179:Ut,180:kt,316:Gt,320:Ht,321:Qt}),e(no,[2,399],{77:lt}),e($e,[2,400]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1162,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e($e,[2,402]),e(no,[2,403],{77:lt}),e($e,[2,404]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1163,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e($e,[2,406]),e(Lo,[2,407],{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,336:rn}),e(Lo,[2,408],{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,336:rn}),e(Lo,[2,409],{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,336:rn}),e(Lo,[2,410],{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,336:rn}),e([2,4,5,10,53,72,89,99,124,139,140,146,154,156,170,171,189,270,271,293,310,314,324,325,326,327,328,329,330,334,335,337,339,342,343,400,404,405,408,410,412,413,421,422,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,521,606,767],Mo,{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,336:rn}),e(Lo,[2,412],{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,336:rn}),e(Lo,[2,413],{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,336:rn}),e(Lo,[2,414],{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,336:rn}),e(Lo,[2,415],{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,336:rn}),e(Lo,[2,416],{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,336:rn}),{77:[1,1164]},{77:[2,451]},{77:[2,452]},{77:[2,453]},e(xo,[2,419],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,336:rn}),e([2,4,5,10,53,72,74,76,77,78,89,93,95,98,107,118,122,128,129,130,131,132,134,135,137,143,145,146,148,149,150,152,156,162,164,166,168,169,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,318,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,420],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn}),{2:r,3:169,4:o,5:i,40:1165,56:166,77:se,78:[1,1167],79:75,89:c,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:1166,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,184:99,189:d,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e($e,[2,433]),e($e,[2,435]),e($e,[2,442]),e($e,[2,443]),{2:r,3:670,4:o,5:i,77:[1,1168]},{2:r,3:698,4:o,5:i,77:[1,1169],111:938,145:Qr,156:X,200:939,202:1171,293:J,294:$,295:Z,296:ee,297:te,333:1170},e($e,[2,440]),e(xo,[2,437],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,336:rn}),e(xo,[2,438],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,336:rn}),e([2,4,5,10,53,72,74,76,77,78,89,93,95,98,99,107,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,189,198,206,208,222,223,224,225,226,227,228,229,232,239,244,245,246,247,249,251,270,271,284,285,286,287,288,289,290,291,293,300,304,310,312,313,314,318,324,325,326,327,328,329,330,334,335,336,337,339,342,343,400,404,405,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,468,474,509,511,512,521,606,767],[2,439],{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt}),e($e,[2,441]),e($e,[2,309]),e($e,[2,310]),e($e,[2,311]),e($e,[2,426]),{74:Er,78:[1,1172]},{2:r,3:169,4:o,5:i,56:166,77:se,94:1173,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1174,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e($e,Bo),e(Po,[2,289]),e($e,[2,285]),{78:[1,1176],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{78:[1,1177]},{309:1178,310:Xr,311:961,312:ln,314:Jr},{310:[1,1179]},e($r,[2,376]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1180,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,313:[1,1181],315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{76:[1,1182],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{74:[1,1183]},e(hn,[2,645]),{2:r,3:698,4:o,5:i,77:fn,111:693,113:691,131:ae,132:ue,143:le,144:688,145:Ze,152:pe,156:X,181:_e,196:690,200:696,201:695,261:692,262:694,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,304:[1,1184],306:Ue,423:191,424:Ve,426:1185,427:689,428:Ye},{78:[1,1186],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{2:r,3:1187,4:o,5:i,149:zr},e($e,[2,369]),e(hn,[2,642]),{2:r,3:707,4:o,5:i,131:pn,132:dn,430:[1,1188],432:1189},{2:r,3:698,4:o,5:i,77:fn,111:693,113:691,131:ae,132:ue,143:le,144:688,145:Ze,152:pe,156:X,181:_e,196:690,200:696,201:695,261:692,262:694,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,306:Ue,423:191,424:Ve,426:1190,427:689,428:Ye},{2:r,3:698,4:o,5:i,77:fn,111:693,113:691,131:ae,132:ue,143:le,144:688,145:Ze,152:pe,156:X,181:_e,196:690,200:696,201:695,261:692,262:694,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,306:Ue,423:191,424:Ve,426:1191,427:689,428:Ye},{2:r,3:698,4:o,5:i,77:fn,111:693,113:691,131:ae,132:ue,143:le,144:688,145:Ze,152:pe,156:X,181:_e,196:690,200:696,201:695,261:692,262:694,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,306:Ue,423:191,424:Ve,426:1192,427:689,428:Ye},{77:so,143:le,144:983,145:Ze,152:pe,181:_e,201:984,306:Ue,346:1193,423:191,424:Ve,428:Ye},e(Fo,[2,463],{74:Uo}),{149:oo,345:1195,348:io},{2:r,3:169,4:o,5:i,56:166,77:se,94:1199,100:1196,111:1198,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,349:1197,423:191,424:Ve,428:Ye},e(Fo,[2,471]),e(ko,[2,474]),e(ko,[2,475]),e(jo,[2,479]),e(jo,[2,480]),{2:r,3:246,4:o,5:i,199:1200},{77:so,143:le,144:983,145:Ze,152:pe,181:_e,201:984,306:Ue,346:1201,423:191,424:Ve,428:Ye},e(Fo,[2,467],{74:Uo}),{2:r,3:169,4:o,5:i,56:166,77:se,94:1199,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,349:1197,423:191,424:Ve,428:Ye},{312:Go,460:1202,462:1203,463:1204},{2:r,3:169,4:o,5:i,56:166,77:se,94:1206,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{230:[2,702]},e(mn,[2,181],{3:1207,2:r,4:o,5:i,76:[1,1208]}),e(mn,[2,182]),e(mn,[2,1099]),e(mn,[2,184]),e(mn,[2,186]),e(mn,[2,188]),e(mn,[2,192]),e(mn,[2,196]),e(mn,[2,199]),e([2,4,5,10,53,72,74,76,77,78,89,93,95,98,118,124,128,143,145,146,148,149,152,154,156,162,168,169,181,183,187,189,206,208,222,223,224,225,226,227,228,229,230,231,232,249,251,270,271,293,301,306,310,314,339,342,343,347,348,360,372,373,377,378,400,404,405,406,407,408,410,412,413,421,422,424,428,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,518,519,520,521,606,767],[2,201]),{2:r,3:1209,4:o,5:i},e(Vo,[2,1050],{83:1210,92:1211,93:[1,1212],98:[1,1213]}),{2:r,3:221,4:o,5:i,77:[1,1215],132:qe,143:le,144:214,145:he,152:pe,156:X,181:_e,199:215,200:217,201:216,202:219,203:1214,209:1216,213:Ke,214:220,293:J,294:$,295:Z,296:ee,297:te,306:Ue,423:191,424:Ve,428:Ye},e(yn,[2,164]),e(yn,[2,165]),e(yn,[2,166]),e(yn,[2,167]),e(yn,[2,168]),{2:r,3:670,4:o,5:i},e(Xe,[2,83],{74:[1,1217]}),e(Yo,[2,85]),e(Yo,[2,86]),{113:1218,132:ue,300:xe},e([10,72,74,78,93,98,118,124,128,162,168,169,183,198,206,208,222,223,224,225,226,227,228,229,232,249,251,310,314,606,767],sn,{116:to}),e(co,[2,73]),e(co,[2,1055]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1219,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(po,[2,126]),e(po,[2,144]),e(po,[2,145]),e(po,[2,146]),{2:r,3:169,4:o,5:i,56:166,77:se,78:[2,1070],94:262,111:150,113:154,127:1220,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:1221,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{77:[1,1222]},e(po,[2,94]),e([2,4,5,10,72,74,76,77,78,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,198,244,245,284,285,286,287,288,289,290,291,310,314,424,428,606,767],[2,96],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e([2,4,5,10,72,74,76,77,78,112,118,122,124,128,129,130,131,132,134,135,137,139,140,143,145,146,148,149,150,152,154,156,162,164,166,168,169,170,171,172,173,175,181,183,185,187,198,244,245,284,285,286,287,288,289,290,291,310,314,424,428,606,767],[2,97],{114:628,331:640,99:bt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{2:r,3:736,4:o,5:i,72:Tn,76:wn,77:On,78:[1,1223],112:Rn,114:739,115:wt,116:Ot,117:1224,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},e(Ho,[2,1066],{153:1019,179:lo,180:ho,181:fo}),{2:r,3:736,4:o,5:i,72:Tn,76:wn,77:On,112:Rn,114:739,115:wt,116:Ot,117:1226,118:Sn,122:In,123:Nn,124:Cn,126:1225,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1227,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1228,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:1229,4:o,5:i},e(po,[2,110]),e(po,[2,111]),e(po,[2,112]),e(po,[2,119]),{2:r,3:1230,4:o,5:i},{2:r,3:1015,4:o,5:i,111:1069,143:Eo,145:mo,147:1231,340:1068,341:1070},{2:r,3:1232,4:o,5:i},{2:r,3:169,4:o,5:i,56:166,77:se,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:1233,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(po,[2,125]),e(Ho,[2,1072],{155:1234}),e(Ho,[2,1074],{157:1235}),e(Ho,[2,1076],{159:1236}),e(Ho,[2,1080],{161:1237}),e(Qo,Wo,{163:1238,178:1239}),{77:[1,1240]},e(Ho,[2,1082],{165:1241}),e(Ho,[2,1084],{167:1242}),e(Qo,Wo,{178:1239,163:1243}),e(Qo,Wo,{178:1239,163:1244}),e(Qo,Wo,{178:1239,163:1245}),e(Qo,Wo,{178:1239,163:1246}),{2:r,3:736,4:o,5:i,72:Tn,76:wn,77:On,112:Rn,114:739,115:wt,116:Ot,117:1247,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:820,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,174:1248,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,257:819,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(zo,[2,1086],{176:1249}),e(K,[2,611],{183:[1,1250]}),e(K,[2,607],{183:[1,1251]}),e(K,[2,600]),{113:1252,132:ue,300:xe},e(K,[2,609],{183:[1,1253]}),e(K,[2,604]),e(K,[2,605],{112:[1,1254]}),e(pr,[2,69]),{40:1255,79:75,89:c,184:99,189:d},e(K,[2,455],{74:qo,128:[1,1256]}),e(Ko,[2,456]),{124:[1,1258]},{2:r,3:1259,4:o,5:i},e(He,[2,1120]),e(He,[2,1121]),e(K,[2,623]),e(mr,[2,360],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(Lo,Mo,{114:628,331:640,112:Tt,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,336:rn}),e(gt,[2,687]),e(gt,[2,689]),e(K,[2,655]),e(K,[2,657],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{2:r,3:169,4:o,5:i,56:166,77:se,94:1260,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:1083,4:o,5:i,77:_o,131:go,436:1261},e(Xo,[2,664]),e(Xo,[2,665]),e(Xo,[2,666]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1263,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{114:1081,115:wt,116:Ot,124:[1,1264]},e(vr,[2,760]),e(Tr,[2,148],{74:yo}),e(Tr,[2,149],{74:yo}),e(Tr,[2,150],{74:yo}),{2:r,3:169,4:o,5:i,56:166,77:se,94:820,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,257:1265,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:1266,4:o,5:i,113:1268,131:[1,1267],132:ue,300:xe},e(Ao,[2,278]),e(Ao,[2,280]),e(Ao,[2,282]),e(ot,[2,160]),e(ot,[2,1095]),{78:[1,1269]},e(at,[2,763]),{2:r,3:1270,4:o,5:i},{2:r,3:1271,4:o,5:i},{2:r,3:1273,4:o,5:i,388:1272},{2:r,3:1273,4:o,5:i,388:1274},{2:r,3:1275,4:o,5:i},{2:r,3:169,4:o,5:i,56:166,77:se,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:1276,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:1277,4:o,5:i},{74:Er,78:[1,1278]},e(an,[2,351]),e(an,[2,352]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1279,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1280,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1281,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1282,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1283,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(Or,[2,509]),e(K,Jo,{411:1284,76:$o,77:[1,1285]}),e(K,Jo,{411:1287,76:$o}),{77:[1,1288]},{2:r,3:246,4:o,5:i,199:1289},e(vr,[2,736]),e(vr,[2,738]),e(vr,[2,1151]),{143:nt,145:rt,435:1290},e(Zo,[2,1152],{423:191,483:1291,144:1292,145:Ze,424:Ve,428:Ye}),{76:vo,139:[2,1156],485:1293,487:1294},e([10,74,76,78,132,139,145,152,310,314,424,428,606,767],Cr,{494:855,497:856,137:Et}),e(vr,[2,741]),e(vr,Ir),{74:Rr,78:[1,1295]},e(Lr,[2,1170],{496:1296,501:1297,152:mt}),e(Dr,[2,1169]),e(Lr,[2,750]),e(Lr,[2,1175]),e(K,[2,495],{77:[1,1298]}),{76:[1,1300],77:[1,1299]},{99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,148:[1,1301],154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(Fo,ei,{79:75,184:99,472:1302,40:1305,89:c,146:ti,189:d,474:ni}),e(bo,[2,1145]),e(xr,[2,728]),{230:[1,1306]},e(ri,[2,774]),e(ri,[2,775]),e(ri,[2,776]),e(Br,Pr,{514:1307,95:Fr,518:Ur,519:kr,520:jr}),e(Br,[2,773]),e(K,[2,315]),e(K,[2,316]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1308,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(gt,[2,695],{124:[1,1309]}),e(Ro,[2,546]),{131:[1,1311],392:1310,394:[1,1312]},e(Ro,[2,5]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1199,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,349:1313,423:191,424:Ve,428:Ye},e(K,[2,460],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(K,[2,594]),e(K,[2,595]),{2:r,3:246,4:o,5:i,199:1314},e(K,[2,675]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1315,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1316,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{78:[1,1317],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{78:[1,1318],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{2:r,3:169,4:o,5:i,40:1319,56:166,77:se,79:75,89:c,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:1320,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,184:99,189:d,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{78:[1,1321]},{74:Er,78:[1,1322]},e($e,[2,431]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1323,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,40:1324,56:166,77:se,78:[1,1326],79:75,89:c,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:1325,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,184:99,189:d,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e($e,[2,434]),e($e,[2,436]),e($e,oi,{279:1327,280:ii}),{78:[1,1329],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{78:[1,1330],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{2:r,3:1331,4:o,5:i,180:[1,1332]},e(hn,[2,624]),e($e,[2,368]),{310:[1,1333]},e($e,[2,375]),{99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,310:[2,379],315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{2:r,3:169,4:o,5:i,56:166,77:se,94:1334,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{4:Gr,7:883,276:1335,391:882,393:Vr},{2:r,3:169,4:o,5:i,56:166,77:se,94:1336,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(hn,[2,646]),e(Zr,[2,653]),e(eo,[2,641]),e(Po,Bo),e(hn,[2,643]),e(ro,[2,648]),e(ro,[2,650]),e(ro,[2,651]),e(ro,[2,652]),e(Fo,[2,462],{74:Uo}),{77:[1,1338],143:le,144:1339,145:Ze,152:pe,181:_e,201:1340,306:Ue,423:191,424:Ve,428:Ye},e(Fo,[2,468]),{74:si,78:[1,1341]},{74:ai,78:[1,1343]},e([74,78,99,112,115,116,123,124,133,136,138,139,140,141,142,154,170,171,179,180,315,316,317,319,320,321,322,323,324,325,326,327,328,329,330,334,335,336,337],ui),e(ci,[2,484],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{40:1347,77:so,79:75,89:c,143:le,144:983,145:Ze,149:oo,152:pe,181:_e,184:99,189:d,201:984,306:Ue,345:1345,346:1346,348:io,423:191,424:Ve,428:Ye},e(Fo,[2,466],{74:Uo}),e(K,[2,722],{461:1348,462:1349,463:1350,312:Go,468:[1,1351]}),e(li,[2,706]),e(li,[2,707]),{154:[1,1353],464:[1,1352]},{99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,312:[2,703],315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(mn,[2,179]),{2:r,3:1354,4:o,5:i},e(K,[2,579]),e(hi,[2,238],{84:1355,128:[1,1356]}),e(Vo,[2,1051]),{77:[1,1357]},{77:[1,1358]},e(ao,[2,169],{204:1359,215:1361,205:1362,216:1363,221:1366,74:fi,206:pi,208:di,222:Ei,223:mi,224:_i,225:gi,226:yi,227:Ai,228:vi,229:bi}),{2:r,3:221,4:o,5:i,40:714,77:ze,79:75,89:c,132:qe,143:le,144:214,145:he,152:pe,156:X,181:_e,184:99,189:d,199:215,200:217,201:216,202:219,203:1375,209:1216,213:Ke,214:220,293:J,294:$,295:Z,296:ee,297:te,306:Ue,423:191,424:Ve,428:Ye},e(Ti,[2,177]),{2:r,3:1015,4:o,5:i,110:1376,111:1013,112:uo},e(Yo,[2,87]),e(co,[2,147],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{78:[1,1377]},{74:Er,78:[2,1071]},{2:r,3:169,4:o,5:i,56:166,77:se,78:[2,1064],94:1382,111:150,113:154,120:1378,121:1379,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,241:1380,244:ge,245:ye,246:[1,1381],258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(po,[2,98]),e(Ho,[2,1067],{153:1019,179:lo,180:ho,181:fo}),{2:r,3:736,4:o,5:i,72:Tn,76:wn,77:On,78:[1,1383],112:Rn,114:739,115:wt,116:Ot,117:1384,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},e(Ho,[2,1068],{153:1019,179:lo,180:ho,181:fo}),{78:[1,1385],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{78:[1,1386],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{78:[1,1387]},e(po,[2,120]),{74:qo,78:[1,1388]},e(po,[2,122]),{74:Er,78:[1,1389]},{2:r,3:736,4:o,5:i,72:Tn,76:wn,77:On,78:[1,1390],112:Rn,114:739,115:wt,116:Ot,117:1391,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},{2:r,3:736,4:o,5:i,72:Tn,76:wn,77:On,78:[1,1392],112:Rn,114:739,115:wt,116:Ot,117:1393,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},{2:r,3:736,4:o,5:i,72:Tn,76:wn,77:On,78:[1,1394],112:Rn,114:739,115:wt,116:Ot,117:1395,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},{2:r,3:736,4:o,5:i,72:Tn,76:wn,77:On,78:[1,1396],112:Rn,114:739,115:wt,116:Ot,117:1397,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},{74:wi,78:[1,1398]},e(ci,[2,143],{423:191,3:736,114:739,144:761,158:771,160:772,117:1400,2:r,4:o,5:i,72:Tn,76:wn,77:On,112:Rn,115:wt,116:Ot,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,424:Ve,428:Ye}),e(Qo,Wo,{178:1239,163:1401}),{2:r,3:736,4:o,5:i,72:Tn,76:wn,77:On,78:[1,1402],112:Rn,114:739,115:wt,116:Ot,117:1403,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},{2:r,3:736,4:o,5:i,72:Tn,76:wn,77:On,78:[1,1404],112:Rn,114:739,115:wt,116:Ot,117:1405,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},{74:wi,78:[1,1406]},{74:wi,78:[1,1407]},{74:wi,78:[1,1408]},{74:wi,78:[1,1409]},{78:[1,1410],153:1019,179:lo,180:ho,181:fo},{74:yo,78:[1,1411]},{2:r,3:736,4:o,5:i,72:Tn,74:[1,1412],76:wn,77:On,112:Rn,114:739,115:wt,116:Ot,117:1413,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,144:761,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,158:771,160:772,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,423:191,424:Ve,428:Ye},{2:r,3:1414,4:o,5:i},{2:r,3:1415,4:o,5:i},e(K,[2,602]),{2:r,3:1416,4:o,5:i},{113:1417,132:ue,300:xe},{78:[1,1418]},{2:r,3:169,4:o,5:i,56:166,77:se,94:1419,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:1015,4:o,5:i,111:1069,143:Eo,145:mo,340:1420,341:1070},{2:r,3:169,4:o,5:i,56:166,77:se,94:1421,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{124:[1,1422]},e(K,[2,658],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(Xo,[2,663]),{78:[1,1423],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(K,[2,659],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{2:r,3:169,4:o,5:i,56:166,77:se,94:1424,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(Ao,[2,275]),e(Ao,[2,277]),e(Ao,[2,279]),e(Ao,[2,281]),e(ot,[2,161]),e(K,[2,574]),{148:[1,1425]},e(K,[2,575]),e(vr,[2,541],{391:882,7:883,276:1426,4:Gr,390:[1,1427],393:Vr}),e(K,[2,576]),e(K,[2,578]),{74:Er,78:[1,1428]},e(K,[2,582]),e(an,[2,349]),{74:[1,1429],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{74:[1,1430],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{74:[1,1431],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{74:[1,1432],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{74:[1,1433],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(K,[2,586]),{2:r,3:169,4:o,5:i,56:166,77:se,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:1434,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:1435,4:o,5:i},e(K,[2,588]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1382,111:150,113:154,120:1436,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,241:1380,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{77:[1,1437]},{2:r,3:1438,4:o,5:i},{76:vo,139:[2,1154],484:1439,487:1440},e(Zo,[2,1153]),{139:[1,1441]},{139:[2,1157]},e(vr,[2,742]),e(Lr,[2,749]),e(Lr,[2,1171]),{2:r,3:1273,4:o,5:i,76:[1,1444],355:1442,362:1443,388:1445},{2:r,3:1015,4:o,5:i,100:1446,111:1447},{40:1448,79:75,89:c,184:99,189:d},{2:r,3:169,4:o,5:i,56:166,77:se,94:1449,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(Fo,[2,727]),{2:r,3:1015,4:o,5:i,111:1069,143:Eo,145:mo,147:1450,340:1068,341:1070},{2:r,3:169,4:o,5:i,56:166,77:se,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:1451,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(Fo,[2,732]),{2:r,3:246,4:o,5:i,199:1452},{339:To,342:wo,343:Oo,515:1453},e(gt,[2,696],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{2:r,3:169,4:o,5:i,56:166,77:se,94:1454,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{74:[1,1455],78:[1,1456]},e(ci,[2,548]),e(ci,[2,549]),{74:ai,78:[1,1457]},e(gt,[2,570]),e(Io,[2,385],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,316:Gt,320:Ht,321:Qt,322:Wt,323:zt}),e(Io,[2,387],{114:628,331:640,115:wt,116:Ot,123:Rt,133:It,136:Nt,138:Ct,141:Mt,142:xt,179:Ut,180:kt,316:Gt,320:Ht,321:Qt,322:Wt,323:zt}),e($e,[2,401]),e($e,[2,405]),{78:[1,1458]},{74:Er,78:[1,1459]},e($e,[2,427]),e($e,[2,429]),{78:[1,1460],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{78:[1,1461]},{74:Er,78:[1,1462]},e($e,[2,432]),e($e,[2,330]),{77:[1,1463]},e($e,oi,{279:1464,280:ii}),e($e,oi,{279:1465,280:ii}),e(Po,[2,287]),e($e,[2,284]),e($e,[2,374]),e($r,[2,378],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{74:[1,1467],78:[1,1466]},{74:[1,1469],78:[1,1468],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{2:r,3:1331,4:o,5:i},{2:r,3:169,4:o,5:i,56:166,77:se,94:1199,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,349:1470,423:191,424:Ve,428:Ye},e(jo,[2,482]),e(jo,[2,483]),{40:1473,77:so,79:75,89:c,143:le,144:983,145:Ze,149:oo,152:pe,181:_e,184:99,189:d,201:984,306:Ue,345:1471,346:1472,348:io,423:191,424:Ve,428:Ye},{2:r,3:1015,4:o,5:i,111:1474},e(jo,[2,478]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1475,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{77:so,143:le,144:983,145:Ze,152:pe,181:_e,201:984,306:Ue,346:1476,423:191,424:Ve,428:Ye},e(Fo,[2,465],{74:Uo}),e(Fo,[2,472]),e(K,[2,699]),e(li,[2,704]),e(li,[2,705]),{2:r,3:169,4:o,5:i,56:166,77:se,94:820,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,174:1477,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,257:819,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{170:[1,1479],313:[1,1478]},{464:[1,1480]},e(mn,[2,180]),e(Oi,[2,240],{85:1481,232:[1,1482]}),{2:r,3:169,4:o,5:i,56:166,77:se,94:1483,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1484,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:1485,4:o,5:i},e(ao,[2,170],{216:1363,221:1366,215:1486,205:1487,206:pi,208:di,222:Ei,223:mi,224:_i,225:gi,226:yi,227:Ai,228:vi,229:bi}),{2:r,3:221,4:o,5:i,77:ze,132:qe,143:le,144:214,145:he,152:pe,156:X,181:_e,199:215,200:217,201:216,202:219,209:1488,213:Ke,214:220,293:J,294:$,295:Z,296:ee,297:te,306:Ue,423:191,424:Ve,428:Ye},e(Ri,[2,205]),e(Ri,[2,206]),{2:r,3:221,4:o,5:i,77:[1,1493],143:le,144:1491,145:he,152:pe,156:X,181:_e,199:1490,200:1494,201:1492,202:1495,217:1489,293:J,294:$,295:Z,296:ee,297:te,306:Ue,423:191,424:Ve,428:Ye},{207:[1,1496],223:Si},{207:[1,1498],223:Ii},e(Ni,[2,222]),{206:[1,1502],208:[1,1501],221:1500,223:mi,224:_i,225:gi,226:yi,227:Ai,228:vi,229:bi},e(Ni,[2,224]),{223:[1,1503]},{208:[1,1505],223:[1,1504]},{208:[1,1507],223:[1,1506]},{208:[1,1508]},{223:[1,1509]},{223:[1,1510]},{74:fi,204:1511,205:1362,206:pi,208:di,215:1361,216:1363,221:1366,222:Ei,223:mi,224:_i,225:gi,226:yi,227:Ai,228:vi,229:bi},e(Yo,[2,84]),e(po,[2,100]),{74:Ci,78:[1,1512]},{78:[1,1514]},e(Di,[2,261]),{78:[2,1065]},e(Di,[2,265],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,246:[1,1515],247:[1,1516],315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(po,[2,99]),e(Ho,[2,1069],{153:1019,179:lo,180:ho,181:fo}),e(po,[2,101]),e(po,[2,102]),e(po,[2,103]),e(po,[2,121]),e(po,[2,124]),e(po,[2,127]),e(Ho,[2,1073],{153:1019,179:lo,180:ho,181:fo}),e(po,[2,128]),e(Ho,[2,1075],{153:1019,179:lo,180:ho,181:fo}),e(po,[2,129]),e(Ho,[2,1077],{153:1019,179:lo,180:ho,181:fo}),e(po,[2,130]),e(Ho,[2,1081],{153:1019,179:lo,180:ho,181:fo}),e(po,[2,131]),e(Qo,[2,1088],{177:1517}),e(Qo,[2,1091],{153:1019,179:lo,180:ho,181:fo}),{74:wi,78:[1,1518]},e(po,[2,133]),e(Ho,[2,1083],{153:1019,179:lo,180:ho,181:fo}),e(po,[2,134]),e(Ho,[2,1085],{153:1019,179:lo,180:ho,181:fo}),e(po,[2,135]),e(po,[2,136]),e(po,[2,137]),e(po,[2,138]),e(po,[2,139]),e(po,[2,140]),{2:r,3:169,4:o,5:i,56:166,77:se,94:262,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,151:1519,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(zo,[2,1087],{153:1019,179:lo,180:ho,181:fo}),e(K,[2,612]),e(K,[2,608]),e(K,[2,610]),e(K,[2,606]),e(pr,[2,71]),e(K,[2,454],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(Ko,[2,457]),e(Ko,[2,458],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{2:r,3:169,4:o,5:i,56:166,77:se,94:1520,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(Xo,[2,667]),e(K,[2,660],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{2:r,3:1521,4:o,5:i},e(vr,[2,550],{389:1522,395:1523,396:1524,370:1532,154:Li,187:Mi,230:xi,301:Bi,347:Pi,360:Fi,372:Ui,373:ki,377:ji,378:Gi}),e(vr,[2,540]),e(K,[2,581],{76:[1,1536]}),{2:r,3:169,4:o,5:i,56:166,77:se,94:1537,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1538,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1539,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1540,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1541,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{74:Er,78:[1,1542]},e(K,[2,590]),{74:Ci,78:[1,1543]},{2:r,3:169,4:o,5:i,56:166,77:se,94:1382,111:150,113:154,120:1544,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,241:1380,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e([10,74,78,139,310,314,606,767],[2,746]),{139:[1,1545]},{139:[2,1155]},{2:r,3:1127,4:o,5:i,132:dt,137:Et,143:nt,145:rt,152:mt,435:588,479:1129,482:1546,486:585,497:582,501:584},{78:[1,1547]},{74:[1,1548],78:[2,511]},{40:1549,79:75,89:c,184:99,189:d},e(ci,[2,537]),{74:si,78:[1,1550]},e(Ti,ui),e(K,[2,1138],{416:1551,417:1552,72:Vi}),e(Fo,ei,{79:75,184:99,114:628,331:640,40:1305,472:1554,89:c,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,146:ti,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,189:d,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on,474:ni}),e(Fo,[2,730],{74:qo}),e(Fo,[2,731],{74:Er}),e([10,53,72,89,124,146,156,189,270,271,293,310,314,339,342,343,400,404,405,408,410,412,413,421,422,438,440,441,443,444,445,446,447,451,452,455,456,509,511,512,521,606,767],[2,1186],{516:1555,3:1556,2:r,4:o,5:i,76:[1,1557]}),e(Yi,[2,1188],{517:1558,76:[1,1559]}),e(gt,[2,697],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{131:[1,1560]},e(Ro,[2,543]),e(Ro,[2,545]),e($e,[2,417]),e($e,[2,418]),e($e,[2,444]),e($e,[2,428]),e($e,[2,430]),{118:Hi,281:1561,282:1562,283:[1,1563]},e($e,[2,331]),e($e,[2,332]),e($e,[2,319]),{131:[1,1565]},e($e,[2,321]),{131:[1,1566]},{74:ai,78:[1,1567]},{77:so,143:le,144:983,145:Ze,152:pe,181:_e,201:984,306:Ue,346:1568,423:191,424:Ve,428:Ye},e(Fo,[2,470],{74:Uo}),e(Fo,[2,473]),e(Ti,[2,493]),e(ci,[2,485],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(Fo,[2,464],{74:Uo}),e(K,[2,723],{74:yo,198:[1,1569]}),{339:Qi,342:Wi,465:1570},{2:r,3:169,4:o,5:i,56:166,77:se,94:1573,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{119:[1,1575],170:[1,1576],313:[1,1574]},e(zi,[2,259],{86:1577,118:[1,1578]}),{119:[1,1579]},e(hi,[2,239],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{95:[1,1580],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{95:[1,1581]},e(Ri,[2,203]),e(Ri,[2,204]),e(Ti,[2,178]),e(Ri,[2,237],{218:1582,230:[1,1583],231:[1,1584]}),e(qi,[2,208],{3:1585,2:r,4:o,5:i,76:[1,1586]}),e(Ki,[2,1100],{219:1587,76:[1,1588]}),{2:r,3:1589,4:o,5:i,76:[1,1590]},{40:1591,79:75,89:c,184:99,189:d},e(qi,[2,216],{3:1592,2:r,4:o,5:i,76:[1,1593]}),e(qi,[2,219],{3:1594,2:r,4:o,5:i,76:[1,1595]}),{77:[1,1596]},e(Ni,[2,234]),{77:[1,1597]},e(Ni,[2,230]),e(Ni,[2,223]),{223:Ii},{223:Si},e(Ni,[2,225]),e(Ni,[2,226]),{223:[1,1598]},e(Ni,[2,228]),{223:[1,1599]},{223:[1,1600]},e(Ni,[2,232]),e(Ni,[2,233]),{78:[1,1601],205:1487,206:pi,208:di,215:1486,216:1363,221:1366,222:Ei,223:mi,224:_i,225:gi,226:yi,227:Ai,228:vi,229:bi},e(po,[2,91]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1382,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,241:1602,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(po,[2,92]),e(Di,[2,266],{242:1603,243:[1,1604]}),{248:[1,1605]},e(ci,[2,142],{423:191,3:736,114:739,144:761,158:771,160:772,117:1606,2:r,4:o,5:i,72:Tn,76:wn,77:On,112:Rn,115:wt,116:Ot,118:Sn,122:In,123:Nn,124:Cn,128:Dn,129:Ln,130:Mn,131:xn,132:Bn,133:Pn,134:Fn,135:Un,136:kn,137:jn,138:Gn,139:Vn,140:Yn,141:Hn,142:Qn,143:Wn,145:zn,146:qn,148:Kn,149:Xn,150:Jn,152:$n,154:Zn,156:er,162:tr,164:nr,166:rr,168:or,169:ir,170:sr,171:ar,172:ur,173:cr,175:lr,185:hr,187:fr,244:ge,245:ye,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,424:Ve,428:Ye}),e(po,[2,132]),{74:Er,78:[1,1607]},e(Ko,[2,459],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(K,[2,577]),e(vr,[2,539]),e(vr,[2,551],{370:1532,396:1608,154:Li,187:Mi,230:xi,301:Bi,347:Pi,360:Fi,372:Ui,373:ki,377:ji,378:Gi}),e(dr,[2,553]),{374:[1,1609]},{374:[1,1610]},{2:r,3:246,4:o,5:i,199:1611},e(dr,[2,559],{77:[1,1612]}),{2:r,3:114,4:o,5:i,77:[1,1614],113:253,131:ae,132:ue,143:le,152:pe,156:X,181:_e,196:252,200:1615,201:256,261:254,262:255,269:et,278:1613,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,306:Ue},e(dr,[2,563]),{301:[1,1616]},e(dr,[2,565]),e(dr,[2,566]),{339:[1,1617]},{77:[1,1618]},{2:r,3:1619,4:o,5:i},{78:[1,1620],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{78:[1,1621],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{78:[1,1622],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{78:[1,1623],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{78:[1,1624],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(K,Jo,{411:1625,76:$o}),e(K,[2,596]),{74:Ci,78:[1,1626]},{2:r,3:1127,4:o,5:i,132:dt,137:Et,143:nt,145:rt,152:mt,435:588,479:1129,482:1627,486:585,497:582,501:584},e(vr,[2,740]),e(K,[2,498],{356:1628,358:1629,359:1630,4:Xi,247:Ji,347:$i,360:Zi}),e(es,ts,{3:1273,363:1635,388:1636,364:1637,365:1638,2:r,4:o,5:i,371:ns}),{78:[2,512]},{76:[1,1640]},e(K,[2,614]),e(K,[2,1139]),{372:[1,1642],418:[1,1641]},e(Fo,[2,733]),e(K,t,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:1643,2:r,4:o,5:i,53:a,72:u,89:c,124:h,146:f,156:p,189:d,270:E,271:m,293:_,339:g,342:y,343:A,400:v,404:b,405:T,408:w,410:O,412:R,413:S,421:I,422:N,438:C,440:D,441:L,443:M,444:x,445:B,446:P,447:F,451:U,452:k,455:j,456:G,509:V,511:Y,512:H,521:Q}),e(K,[2,767]),e(Yi,[2,1187]),e(K,t,{17:5,18:7,19:8,20:9,21:10,22:11,23:12,24:13,25:14,26:15,27:16,28:17,29:18,30:19,31:20,32:21,33:22,34:23,35:24,36:25,37:26,38:27,39:28,40:29,41:30,42:31,43:32,44:33,45:34,46:35,47:36,48:37,49:38,50:39,51:40,52:41,54:43,55:44,56:45,57:46,58:47,59:48,60:49,61:50,62:51,63:52,64:53,65:54,66:55,67:56,68:57,69:58,70:59,71:60,79:75,508:95,184:99,3:100,12:1644,2:r,4:o,5:i,53:a,72:u,89:c,124:h,146:f,156:p,189:d,270:E,271:m,293:_,339:g,342:y,343:A,400:v,404:b,405:T,408:w,410:O,412:R,413:S,421:I,422:N,438:C,440:D,441:L,443:M,444:x,445:B,446:P,447:F,451:U,452:k,455:j,456:G,509:V,511:Y,512:H,521:Q}),e(Yi,[2,1189]),{78:[1,1645]},{78:[1,1646],118:Hi,282:1647},{78:[1,1648]},{119:[1,1649]},{119:[1,1650]},{78:[1,1651]},{78:[1,1652]},e(jo,[2,481]),e(Fo,[2,469],{74:Uo}),{2:r,3:246,4:o,5:i,143:nt,145:rt,199:1654,435:1653},e(li,[2,708]),e(li,[2,710]),{146:[1,1655]},{99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,313:[1,1656],315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},{343:rs,466:1657},{421:[1,1660],467:[1,1659]},{2:r,3:169,4:o,5:i,56:166,77:se,94:1661,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(os,[2,270],{87:1662,249:[1,1663],251:[1,1664]}),{119:[1,1665]},{2:r,3:169,4:o,5:i,56:166,77:se,94:1671,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,233:1666,235:1667,236:is,237:ss,238:as,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:1672,4:o,5:i},{2:r,3:1673,4:o,5:i},e(Ri,[2,207]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1674,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:1015,4:o,5:i,100:1675,111:1447},e(qi,[2,209]),{2:r,3:1676,4:o,5:i},e(qi,[2,1102],{220:1677,3:1678,2:r,4:o,5:i}),e(Ki,[2,1101]),e(qi,[2,212]),{2:r,3:1679,4:o,5:i},{78:[1,1680]},e(qi,[2,217]),{2:r,3:1681,4:o,5:i},e(qi,[2,220]),{2:r,3:1682,4:o,5:i},{40:1683,79:75,89:c,184:99,189:d},{40:1684,79:75,89:c,184:99,189:d},e(Ni,[2,227]),e(Ni,[2,229]),e(Ni,[2,231]),e(ao,[2,171]),e(Di,[2,262]),e(Di,[2,267]),{244:[1,1685],245:[1,1686]},e(Di,[2,268],{246:[1,1687]}),e(Qo,[2,1089],{153:1019,179:lo,180:ho,181:fo}),e(po,[2,141]),e(dr,[2,552]),e(dr,[2,555]),{378:[1,1688]},e(dr,[2,1132],{399:1689,397:1690,77:us}),{131:ae,196:1692},e(dr,[2,560]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1693,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(dr,[2,562]),e(dr,[2,564]),{2:r,3:114,4:o,5:i,77:[1,1695],113:253,131:ae,132:ue,143:le,152:pe,156:X,181:_e,196:252,200:257,201:256,261:254,262:255,269:et,278:1694,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,306:Ue},{2:r,3:169,4:o,5:i,56:166,77:se,94:1696,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(K,[2,583]),e(an,[2,353]),e(an,[2,354]),e(an,[2,355]),e(an,[2,356]),e(an,[2,357]),e(K,[2,587]),e(K,[2,597]),e(vr,[2,739]),e(K,[2,494]),e(K,[2,499],{359:1697,4:Xi,247:Ji,347:$i,360:Zi}),e(cs,[2,501]),e(cs,[2,502]),{124:[1,1698]},{124:[1,1699]},{124:[1,1700]},{74:[1,1701],78:[2,510]},e(ci,[2,538]),e(ci,[2,513]),{187:[1,1709],193:[1,1710],366:1702,367:1703,368:1704,369:1705,370:1706,372:Ui,373:[1,1707],374:[1,1711],377:[1,1708]},{2:r,3:1712,4:o,5:i},{40:1713,79:75,89:c,184:99,189:d},{419:[1,1714]},{420:[1,1715]},e(K,[2,766]),e(K,[2,768]),e(Ro,[2,542]),e($e,[2,334]),{78:[1,1716]},e($e,[2,335]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1671,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,233:1717,235:1667,236:is,237:ss,238:as,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1382,111:150,113:154,120:1718,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,241:1380,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e($e,[2,320]),e($e,[2,322]),{2:r,3:1719,4:o,5:i},e(K,[2,725],{77:[1,1720]}),{2:r,3:1015,4:o,5:i,111:1069,143:Eo,145:mo,147:1721,340:1068,341:1070},{339:Qi,342:Wi,465:1722},e(li,[2,712]),{77:[1,1724],347:[1,1725],348:[1,1723]},{170:[1,1727],313:[1,1726]},{170:[1,1729],313:[1,1728]},{99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,313:[1,1730],315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(co,[2,250],{88:1731,162:[1,1732],168:[1,1734],169:[1,1733]}),{131:ae,196:1735},{131:ae,196:1736},{2:r,3:169,4:o,5:i,56:166,77:se,94:1382,111:150,113:154,120:1737,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,241:1380,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},e(Oi,[2,248],{234:1738,74:ls,239:[1,1740]}),e(hs,[2,242]),{146:[1,1741]},{77:[1,1742]},{77:[1,1743]},e(hs,[2,247],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{78:[2,1056],96:1744,99:[1,1746],102:1745},{99:[1,1747]},e(Ri,[2,235],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),e(Ri,[2,236],{74:si}),e(qi,[2,210]),e(qi,[2,211]),e(qi,[2,1103]),e(qi,[2,213]),{2:r,3:1748,4:o,5:i,76:[1,1749]},e(qi,[2,218]),e(qi,[2,221]),{78:[1,1750]},{78:[1,1751]},e(Di,[2,263]),e(Di,[2,264]),e(Di,[2,269]),{2:r,3:246,4:o,5:i,199:1752},e(dr,[2,557]),e(dr,[2,1133]),{2:r,3:1753,4:o,5:i},{74:[1,1754]},{78:[1,1755],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(dr,[2,567]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1756,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{78:[1,1757],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(cs,[2,500]),{2:r,3:1758,4:o,5:i},{131:ae,196:1759},{2:r,3:1760,4:o,5:i},e(es,ts,{365:1638,364:1761,371:ns}),e(vr,[2,515]),e(vr,[2,516]),e(vr,[2,517]),e(vr,[2,518]),e(vr,[2,519]),{374:[1,1762]},{374:[1,1763]},e(fs,[2,1126],{386:1764,374:[1,1765]}),{2:r,3:1766,4:o,5:i},{2:r,3:1767,4:o,5:i},e(es,[2,521]),e(K,[2,1136],{415:1768,417:1769,72:Vi}),e(K,[2,615]),e(K,[2,616],{371:[1,1770]}),e($e,[2,336]),e([78,118],[2,337],{74:ls}),{74:Ci,78:[2,338]},e(K,[2,724]),{2:r,3:1015,4:o,5:i,100:1771,111:1447},e(li,[2,711],{74:qo}),e(li,[2,709]),{77:so,143:le,144:983,145:Ze,152:pe,181:_e,201:984,306:Ue,346:1772,423:191,424:Ve,428:Ye},{2:r,3:1015,4:o,5:i,100:1773,111:1447},{348:[1,1774]},{343:rs,466:1775},{2:r,3:169,4:o,5:i,56:166,77:se,94:1776,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{343:rs,466:1777},{2:r,3:169,4:o,5:i,56:166,77:se,94:1778,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{343:rs,466:1779},e(co,[2,72]),{40:1780,79:75,89:c,164:[1,1781],184:99,189:d,240:[1,1782]},{40:1783,79:75,89:c,184:99,189:d,240:[1,1784]},{40:1785,79:75,89:c,184:99,189:d,240:[1,1786]},e(os,[2,273],{250:1787,251:[1,1788]}),{252:1789,253:[2,1104],769:[1,1790]},e(zi,[2,260],{74:Ci}),e(Oi,[2,241]),{2:r,3:169,4:o,5:i,56:166,77:se,94:1671,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,235:1791,236:is,237:ss,238:as,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1792,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{77:[1,1793]},{2:r,3:169,4:o,5:i,56:166,77:se,94:1671,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,233:1794,235:1667,236:is,237:ss,238:as,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:169,4:o,5:i,56:166,77:se,94:1671,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,233:1795,235:1667,236:is,237:ss,238:as,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{78:[1,1796]},{78:[2,1057]},{77:[1,1797]},{77:[1,1798]},e(qi,[2,214]),{2:r,3:1799,4:o,5:i},{2:r,3:1800,4:o,5:i,76:[1,1801]},{2:r,3:1802,4:o,5:i,76:[1,1803]},e(dr,[2,1130],{398:1804,397:1805,77:us}),{78:[1,1806]},{131:ae,196:1807},e(dr,[2,561]),{78:[1,1808],99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(dr,[2,522]),e(cs,[2,503]),e(cs,[2,504]),e(cs,[2,505]),e(ci,[2,514]),{2:r,3:1810,4:o,5:i,77:[2,1122],375:1809},{77:[1,1811]},{2:r,3:1813,4:o,5:i,77:[2,1128],387:1812},e(fs,[2,1127]),{77:[1,1814]},{77:[1,1815]},e(K,[2,613]),e(K,[2,1137]),e(es,ts,{365:1638,364:1816,371:ns}),{74:si,78:[1,1817]},e(li,[2,718],{74:Uo}),{74:si,78:[1,1818]},e(li,[2,720]),e(li,[2,713]),{99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,313:[1,1819],315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(li,[2,716]),{99:bt,112:Tt,114:628,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,313:[1,1820],315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,331:640,334:tn,335:nn,336:rn,337:on},e(li,[2,714]),e(co,[2,251]),{40:1821,79:75,89:c,184:99,189:d,240:[1,1822]},{40:1823,79:75,89:c,184:99,189:d},e(co,[2,253]),{40:1824,79:75,89:c,184:99,189:d},e(co,[2,254]),{40:1825,79:75,89:c,184:99,189:d},e(os,[2,271]),{131:ae,196:1826},{253:[1,1827]},{253:[2,1105]},e(hs,[2,243]),e(Oi,[2,249],{114:628,331:640,99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{2:r,3:169,4:o,5:i,56:166,77:se,94:1671,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,233:1828,235:1667,236:is,237:ss,238:as,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{74:ls,78:[1,1829]},{74:ls,78:[1,1830]},e(Vo,[2,1058],{97:1831,104:1832,3:1834,2:r,4:o,5:i,76:ps}),{2:r,3:169,4:o,5:i,56:166,77:se,94:1837,103:1835,105:1836,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:1015,4:o,5:i,100:1838,111:1447},e(qi,[2,215]),e(Ri,[2,173]),{2:r,3:1839,4:o,5:i},e(Ri,[2,175]),{2:r,3:1840,4:o,5:i},e(dr,[2,556]),e(dr,[2,1131]),e(dr,[2,554]),{78:[1,1841]},e(dr,[2,568]),{77:[1,1842]},{77:[2,1123]},{2:r,3:1844,4:o,5:i,132:ds,376:1843},{77:[1,1846]},{77:[2,1129]},{2:r,3:1015,4:o,5:i,100:1847,111:1447},{2:r,3:1015,4:o,5:i,100:1848,111:1447},e(K,[2,617]),e(K,[2,726]),{347:[1,1850],348:[1,1849]},{343:rs,466:1851},{339:Qi,342:Wi,465:1852},e(co,[2,252]),{40:1853,79:75,89:c,184:99,189:d},e(co,[2,255]),e(co,[2,257]),e(co,[2,258]),e(os,[2,274]),{131:[2,1106],254:1854,649:[1,1855]},{74:ls,78:[1,1856]},e(hs,[2,245]),e(hs,[2,246]),e(Vo,[2,74]),e(Vo,[2,1059]),{2:r,3:1857,4:o,5:i},e(Vo,[2,78]),{74:[1,1859],78:[1,1858]},e(ci,[2,80]),e(ci,[2,81],{114:628,331:640,76:[1,1860],99:bt,112:Tt,115:wt,116:Ot,123:Rt,124:_r,133:It,136:Nt,138:Ct,139:Dt,140:Lt,141:Mt,142:xt,154:Bt,170:Pt,171:Ft,179:Ut,180:kt,315:jt,316:Gt,317:Vt,319:Yt,320:Ht,321:Qt,322:Wt,323:zt,324:qt,325:Kt,326:Xt,327:Jt,328:$t,329:Zt,330:en,334:tn,335:nn,336:rn,337:on}),{74:si,78:[1,1861]},e(Ri,[2,174]),e(Ri,[2,176]),e(dr,[2,558]),{2:r,3:1844,4:o,5:i,132:ds,376:1862},{74:Es,78:[1,1863]},e(ci,[2,533]),e(ci,[2,534]),{2:r,3:1015,4:o,5:i,100:1865,111:1447},{74:si,78:[1,1866]},{74:si,78:[1,1867]},{77:so,143:le,144:983,145:Ze,152:pe,181:_e,201:984,306:Ue,346:1868,423:191,424:Ve,428:Ye},{348:[1,1869]},e(li,[2,715]),e(li,[2,717]),e(co,[2,256]),{131:ae,196:1870},{131:[2,1107]},e(hs,[2,244]),e(Vo,[2,77]),{78:[2,76]},{2:r,3:169,4:o,5:i,56:166,77:se,94:1837,105:1871,111:150,113:154,131:ae,132:ue,137:ce,143:le,144:162,145:he,149:fe,152:pe,154:de,156:X,158:168,179:Ee,180:me,181:_e,196:152,200:148,201:156,202:157,244:ge,245:ye,258:151,259:147,260:149,261:153,262:155,263:158,264:159,265:160,266:163,267:164,269:Ae,270:E,274:ve,275:be,277:Te,284:we,285:Oe,286:Re,287:Se,288:Ie,289:Ne,290:Ce,291:De,293:J,294:$,295:Z,296:ee,297:te,298:Le,299:Me,300:xe,301:Be,302:Pe,303:Fe,306:Ue,307:ke,316:je,321:Ge,423:191,424:Ve,428:Ye},{2:r,3:1872,4:o,5:i},{78:[1,1873]},{74:Es,78:[1,1874]},{378:[1,1875]},{2:r,3:1876,4:o,5:i,132:[1,1877]},{74:si,78:[1,1878]},e(vr,[2,531]),e(vr,[2,532]),e(li,[2,719],{74:Uo}),e(li,[2,721]),e(ms,[2,1108],{255:1879,769:[1,1880]}),e(ci,[2,79]),e(ci,[2,82]),e(Vo,[2,1060],{3:1834,101:1881,104:1882,2:r,4:o,5:i,76:ps}),e(vr,[2,523]),{2:r,3:246,4:o,5:i,199:1883},e(ci,[2,535]),e(ci,[2,536]),e(vr,[2,530]),e(os,[2,1110],{256:1884,419:[1,1885]}),e(ms,[2,1109]),e(Vo,[2,75]),e(Vo,[2,1061]),e(_s,[2,1124],{379:1886,381:1887,77:[1,1888]}),e(os,[2,272]),e(os,[2,1111]),e(vr,[2,526],{380:1889,382:1890,230:[1,1891]}),e(_s,[2,1125]),{2:r,3:1844,4:o,5:i,132:ds,376:1892},e(vr,[2,524]),{230:[1,1894],383:1893},{342:[1,1895]},{74:Es,78:[1,1896]},e(vr,[2,527]),{339:[1,1897]},{384:[1,1898]},e(_s,[2,525]),{384:[1,1899]},{385:[1,1900]},{385:[1,1901]},{230:[2,528]},e(vr,[2,529])],defaultActions:{105:[2,6],195:[2,339],196:[2,340],197:[2,341],198:[2,342],199:[2,343],200:[2,344],201:[2,345],202:[2,346],203:[2,347],204:[2,348],211:[2,700],594:[2,1147],656:[2,1112],657:[2,1113],713:[2,701],783:[2,1078],784:[2,1079],930:[2,451],931:[2,452],932:[2,453],991:[2,702],1294:[2,1157],1381:[2,1065],1440:[2,1155],1549:[2,512],1745:[2,1057],1790:[2,1105],1810:[2,1123],1813:[2,1129],1855:[2,1107],1858:[2,76],1900:[2,528]},parseError:function(e,t){if(!t.recoverable){var n=new Error(e);throw n.hash=t,n}this.trace(e)},parse:function(e){var t=this,n=[0],r=[null],o=[],i=this.table,s="",a=0,u=0,c=0,l=o.slice.call(arguments,1),h=Object.create(this.lexer),f={yy:{}};for(var p in this.yy)Object.prototype.hasOwnProperty.call(this.yy,p)&&(f.yy[p]=this.yy[p]);h.setInput(e,f.yy),f.yy.lexer=h,f.yy.parser=this,void 0===h.yylloc&&(h.yylloc={});var d=h.yylloc;o.push(d);var E=h.options&&h.options.ranges;"function"==typeof f.yy.parseError?this.parseError=f.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var m,_,g,y,A,v,b,T,w,O,R=function(){var e;return"number"!=typeof(e=h.lex()||1)&&(e=t.symbols_[e]||e),e},S={};;){if(g=n[n.length-1],this.defaultActions[g]?y=this.defaultActions[g]:(null==m&&(m=R()),y=i[g]&&i[g][m]),void 0===y||!y.length||!y[0]){var I,N="";function C(e){for(var t=n.length-1,r=0;;){if(2..toString()in i[e])return r;if(0===e||t<2)return!1;e=n[t-=2],++r}}if(c)1!==_&&(I=C(g));else{for(v in I=C(g),w=[],i[g])this.terminals_[v]&&v>2&&w.push("'"+this.terminals_[v]+"'");N=h.showPosition?"Parse error on line "+(a+1)+":\n"+h.showPosition()+"\nExpecting "+w.join(", ")+", got '"+(this.terminals_[m]||m)+"'":"Parse error on line "+(a+1)+": Unexpected "+(1==m?"end of input":"'"+(this.terminals_[m]||m)+"'"),this.parseError(N,{text:h.match,token:this.terminals_[m]||m,line:h.yylineno,loc:d,expected:w,recoverable:!1!==I})}if(3==c){if(1===m||1===_)throw new Error(N||"Parsing halted while starting to recover from another error.");u=h.yyleng,s=h.yytext,a=h.yylineno,d=h.yylloc,m=R()}if(!1===I)throw new Error(N||"Parsing halted. No suitable error recovery rule available.");O=I,n.length=n.length-2*O,r.length=r.length-O,o.length=o.length-O,_=2==m?null:m,m=2,g=n[n.length-1],y=i[g]&&i[g][2],c=3}if(y[0]instanceof Array&&y.length>1)throw new Error("Parse Error: multiple actions possible at state: "+g+", token: "+m);switch(y[0]){case 1:n.push(m),r.push(h.yytext),o.push(h.yylloc),n.push(y[1]),m=null,_?(m=_,_=null):(u=h.yyleng,s=h.yytext,a=h.yylineno,d=h.yylloc,c>0&&c--);break;case 2:if(b=this.productions_[y[1]][1],S.$=r[r.length-b],S._$={first_line:o[o.length-(b||1)].first_line,last_line:o[o.length-1].last_line,first_column:o[o.length-(b||1)].first_column,last_column:o[o.length-1].last_column},E&&(S._$.range=[o[o.length-(b||1)].range[0],o[o.length-1].range[1]]),void 0!==(A=this.performAction.apply(S,[s,u,a,f.yy,y[1],r,o].concat(l))))return A;b&&(n=n.slice(0,-1*b*2),r=r.slice(0,-1*b),o=o.slice(0,-1*b)),n.push(this.productions_[y[1]][0]),r.push(S.$),o.push(S._$),T=i[n[n.length-2]][n[n.length-1]],n.push(T);break;case 3:return!0}}return!0}},ys=["A","ABSENT","ABSOLUTE","ACCORDING","ACTION","ADA","ADD","ADMIN","AFTER","ALWAYS","ASC","ASSERTION","ASSIGNMENT","ATTRIBUTE","ATTRIBUTES","BASE64","BEFORE","BERNOULLI","BLOCKED","BOM","BREADTH","C","CASCADE","CATALOG","CATALOG_NAME","CHAIN","CHARACTERISTICS","CHARACTERS","CHARACTER_SET_CATALOG","CHARACTER_SET_NAME","CHARACTER_SET_SCHEMA","CLASS_ORIGIN","COBOL","COLLATION","COLLATION_CATALOG","COLLATION_NAME","COLLATION_SCHEMA","COLUMNS","COLUMN_NAME","COMMAND_FUNCTION","COMMAND_FUNCTION_CODE","COMMITTED","CONDITION_NUMBER","CONNECTION","CONNECTION_NAME","CONSTRAINTS","CONSTRAINT_CATALOG","CONSTRAINT_NAME","CONSTRAINT_SCHEMA","CONSTRUCTOR","CONTENT","CONTINUE","CONTROL","CURSOR_NAME","DATA","DATETIME_INTERVAL_CODE","DATETIME_INTERVAL_PRECISION","DB","DEFAULTS","DEFERRABLE","DEFERRED","DEFINED","DEFINER","DEGREE","DEPTH","DERIVED","DESC","DESCRIPTOR","DIAGNOSTICS","DISPATCH","DOCUMENT","DOMAIN","DYNAMIC_FUNCTION","DYNAMIC_FUNCTION_CODE","EMPTY","ENCODING","ENFORCED","EXCLUDE","EXCLUDING","EXPRESSION","FILE","FINAL","FIRST","FLAG","FOLLOWING","FORTRAN","FOUND","FS","G","GENERAL","GENERATED","GO","GOTO","GRANTED","HEX","HIERARCHY","ID","IGNORE","IMMEDIATE","IMMEDIATELY","IMPLEMENTATION","INCLUDING","INCREMENT","INDENT","INITIALLY","INPUT","INSTANCE","INSTANTIABLE","INSTEAD","INTEGRITY","INVOKER","ISOLATION","K","KEY","KEY_MEMBER","KEY_TYPE","LAST","LENGTH","LEVEL","LIBRARY","LIMIT","LINK","LOCATION","LOCATOR","M","MAP","MAPPING","MATCHED","MAXVALUE","MESSAGE_LENGTH","MESSAGE_OCTET_LENGTH","MESSAGE_TEXT","MINVALUE","MORE","MUMPS","NAME","NAMES","NAMESPACE","NESTING","NEXT","NFC","NFD","NFKC","NFKD","NIL","NORMALIZED","NULLABLE","NULLS","NUMBER","OBJECT","OCTETS","OFF","OPTION","OPTIONS","ORDERING","ORDINALITY","OTHERS","OUTPUT","OVERRIDING","P","PAD","PARAMETER_MODE","PARAMETER_NAME","PARAMETER_ORDINAL_POSITION","PARAMETER_SPECIFIC_CATALOG","PARAMETER_SPECIFIC_NAME","PARAMETER_SPECIFIC_SCHEMA","PARTIAL","PASCAL","PASSING","PASSTHROUGH","PATH","PERMISSION","PLACING","PLI","PRECEDING","PRESERVE","PRIOR","PRIVILEGES","PUBLIC","READ","RECOVERY","RELATIVE","REPEATABLE","REQUIRING","RESPECT","RESTART","RESTORE","RESTRICT","RETURNED_CARDINALITY","RETURNED_LENGTH","RETURNED_OCTET_LENGTH","RETURNED_SQLSTATE","RETURNING","ROLE","ROUTINE","ROUTINE_CATALOG","ROUTINE_NAME","ROUTINE_SCHEMA","ROW_COUNT","SCALE","SCHEMA","SCHEMA_NAME","SCOPE_CATALOG","SCOPE_NAME","SCOPE_SCHEMA","SECTION","SECURITY","SELECTIVE","SELF","SEQUENCE","SERIALIZABLE","SERVER","SERVER_NAME","SESSION","SETS","SIMPLE","SIZE","SOURCE","SPACE","SPECIFIC_NAME","STANDALONE","STATE","STATEMENT","STRIP","STRUCTURE","STYLE","SUBCLASS_ORIGIN","T","TABLE_NAME","TEMPORARY","TIES","TOKEN","TOP_LEVEL_COUNT","TRANSACTION","TRANSACTIONS_COMMITTED","TRANSACTIONS_ROLLED_BACK","TRANSACTION_ACTIVE","TRANSFORM","TRANSFORMS","TRIGGER_CATALOG","TRIGGER_NAME","TRIGGER_SCHEMA","TYPE","UNBOUNDED","UNCOMMITTED","UNDER","UNLINK","UNNAMED","UNTYPED","URI","USAGE","USER_DEFINED_TYPE_CATALOG","USER_DEFINED_TYPE_CODE","USER_DEFINED_TYPE_NAME","USER_DEFINED_TYPE_SCHEMA","VALID","VERSION","VIEW","WHITESPACE","WORK","WRAPPER","WRITE","XMLDECLARATION","XMLSCHEMA","YES","ZONE"];gs.parseError=function(e,t){if(!(t.expected&&t.expected.indexOf("'LITERAL'")>-1&&/[a-zA-Z_][a-zA-Z_0-9]*/.test(t.token)&&ys.indexOf(t.token)>-1))throw new SyntaxError(e)};var As=function(){var e={EOF:1,parseError:function(e,t){if(!this.yy.parser)throw new Error(e);this.yy.parser.parseError(e,t)},setInput:function(e,t){return this.yy=t||this.yy||{},this._input=e,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var e=this._input[0];return this.yytext+=e,this.yyleng++,this.offset++,this.match+=e,this.matched+=e,e.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),e},unput:function(e){var t=e.length,n=e.split(/(?:\r\n?|\n)/g);this._input=e+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-t),this.offset-=t;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var o=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-t},this.options.ranges&&(this.yylloc.range=[o[0],o[0]+this.yyleng-t]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(e){this.unput(this.match.slice(e))},pastInput:function(){var e=this.matched.substr(0,this.matched.length-this.match.length);return(e.length>20?"...":"")+e.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var e=this.match;return e.length<20&&(e+=this._input.substr(0,20-e.length)),(e.substr(0,20)+(e.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var e=this.pastInput(),t=new Array(e.length+1).join("-");return e+this.upcomingInput()+"\n"+t+"^"},test_match:function(e,t){var n,r,o;if(this.options.backtrack_lexer&&(o={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(o.yylloc.range=this.yylloc.range.slice(0))),(r=e[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+e[0].length},this.yytext+=e[0],this.match+=e[0],this.matches=e,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(e[0].length),this.matched+=e[0],n=this.performAction.call(this,this.yy,this,t,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var i in o)this[i]=o[i];return!1}return!1},next:function(){if(this.done)return this.EOF;var e,t,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var o=this._currentRules(),i=0;it[0].length)){if(t=n,r=i,this.options.backtrack_lexer){if(!1!==(e=this.test_match(n,o[i])))return e;if(this._backtrack){t=!1;continue}return!1}if(!this.options.flex)break}return t?!1!==(e=this.test_match(t,o[r]))&&e:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(e){this.conditionStack.push(e)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(e){return(e=this.conditionStack.length-1-Math.abs(e||0))>=0?this.conditionStack[e]:"INITIAL"},pushState:function(e){this.begin(e)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(e,t,n,r){switch(n){case 0:return 270;case 1:return 306;case 2:return 424;case 3:return 303;case 4:case 5:return 5;case 6:case 7:return 300;case 8:case 9:return 132;case 10:return;case 11:break;case 12:return 320;case 13:case 247:return 323;case 14:return t.yytext="VALUE",89;case 15:return t.yytext="VALUE",189;case 16:return t.yytext="ROW",189;case 17:return t.yytext="COLUMN",189;case 18:return t.yytext="MATRIX",189;case 19:return t.yytext="INDEX",189;case 20:return t.yytext="RECORDSET",189;case 21:return t.yytext="TEXT",189;case 22:return t.yytext="SELECT",189;case 23:return 524;case 24:return 385;case 25:return 406;case 26:return 519;case 27:return 290;case 28:case 29:return 273;case 30:return 164;case 31:return 404;case 32:return 170;case 33:return 229;case 34:return 166;case 35:return 207;case 36:return 291;case 37:return 76;case 38:return 422;case 39:case 85:return 246;case 40:return 408;case 41:case 115:return 360;case 42:return 289;case 43:return 518;case 44:return 441;case 45:return 334;case 46:return 445;case 47:return 335;case 48:case 51:case 53:case 55:return 319;case 49:return 119;case 50:case 52:case 54:case 132:return 112;case 56:case 96:case 97:return 512;case 57:return 307;case 58:return 275;case 59:return 372;case 60:return 130;case 61:return"CLOSE";case 62:return 247;case 63:case 64:return 190;case 65:return 438;case 66:return 371;case 67:return 474;case 68:return 444;case 69:return 277;case 70:return 240;case 71:return 286;case 72:return 271;case 73:return 206;case 74:return 238;case 75:return 269;case 76:return"CURSOR";case 77:case 190:return 409;case 78:return 294;case 79:return 295;case 80:return 296;case 81:return 452;case 82:return 347;case 83:return 342;case 84:return"DELETED";case 86:return 410;case 87:return 185;case 88:return 400;case 89:return 451;case 90:return 135;case 91:return 310;case 92:return 393;case 93:return 314;case 94:return 318;case 95:case 140:return 169;case 98:return 302;case 99:return 14;case 100:return 299;case 101:return 253;case 102:return 244;case 103:return 95;case 104:return 377;case 105:return 183;case 106:return 227;case 107:return 272;case 108:return 317;case 109:return 606;case 110:return 476;case 111:return 232;case 112:return 236;case 113:return 239;case 114:return 156;case 116:return 336;case 117:return 99;case 118:return 193;case 119:return 212;case 120:return 224;case 121:return 520;case 122:return 343;case 123:return 213;case 124:return 168;case 125:return 297;case 126:return 198;case 127:return 223;case 128:return 374;case 129:return 245;case 130:return"LET";case 131:return 225;case 133:return 249;case 134:return 464;case 135:return 191;case 136:return 288;case 137:return 394;case 138:return 287;case 139:return 456;case 141:return 407;case 142:return 222;case 143:return 649;case 144:return 274;case 145:return 248;case 146:return 384;case 147:return 154;case 148:return 301;case 149:return 243;case 150:return 437;case 151:return 230;case 152:return 419;case 153:return 129;case 154:return 251;case 155:return"OPEN";case 156:return 420;case 157:return 171;case 158:return 118;case 159:return 208;case 160:return 280;case 161:return 172;case 162:return 283;case 163:return 768;case 164:return 93;case 165:return 16;case 166:return 373;case 167:return 446;case 168:return 681;case 169:return 15;case 170:return 418;case 171:return 194;case 172:return"REDUCE";case 173:return 378;case 174:return 315;case 175:return 521;case 176:return 685;case 177:return 107;case 178:return 405;case 179:return 175;case 180:return 293;case 181:return 447;case 182:return 690;case 183:case 184:return 173;case 185:return 226;case 186:return 440;case 187:return 237;case 188:return 150;case 189:return 769;case 191:return 89;case 192:return 228;case 193:case 194:return 146;case 195:return 413;case 196:return 338;case 197:return 421;case 198:return"STRATEGY";case 199:return"STORE";case 200:return 284;case 201:return 285;case 202:case 203:return 357;case 204:return 467;case 205:case 206:return 361;case 207:return 192;case 208:return 313;case 209:return"TIMEOUT";case 210:return 148;case 211:return 195;case 212:case 213:case 231:return 439;case 214:return 513;case 215:return 298;case 216:return 455;case 217:return 162;case 218:return 187;case 219:return 98;case 220:return 339;case 221:return 412;case 222:return 231;case 223:return 149;case 224:return 348;case 225:return 134;case 226:return 414;case 227:return 312;case 228:return 128;case 229:return 443;case 230:return 72;case 232:case 233:return 131;case 234:return 115;case 235:return 137;case 236:return 179;case 237:return 321;case 238:return 180;case 239:return 133;case 240:return 138;case 241:return 330;case 242:return 327;case 243:return 329;case 244:return 326;case 245:return 324;case 246:return 322;case 248:return 142;case 249:return 141;case 250:return 139;case 251:return 325;case 252:case 255:return 328;case 253:return 140;case 254:return 124;case 256:return 77;case 257:return 78;case 258:return 145;case 259:return 428;case 260:return 430;case 261:return 304;case 262:return 509;case 263:return 511;case 264:return 122;case 265:return 116;case 266:return 74;case 267:return 337;case 268:return 152;case 269:return 767;case 270:return 143;case 271:return 181;case 272:return 136;case 273:return 123;case 274:return 316;case 275:return 4;case 276:return 10;case 277:return"INVALID"}},rules:[/^(?:``([^\`])+``)/i,/^(?:\[\?\])/i,/^(?:@\[)/i,/^(?:ARRAY\[)/i,/^(?:\[([^\]'])*?\])/i,/^(?:`([^\`'])*?`)/i,/^(?:N(['](\\.|[^']|\\')*?['])+)/i,/^(?:X(['](\\.|[^']|\\')*?['])+)/i,/^(?:(['](\\.|[^']|\\')*?['])+)/i,/^(?:(["](\\.|[^"]|\\")*?["])+)/i,/^(?:--(.*?)($|\r\n|\r|\n))/i,/^(?:\s+)/i,/^(?:\|\|)/i,/^(?:\|)/i,/^(?:VALUE\s+OF\s+SEARCH\b)/i,/^(?:VALUE\s+OF\s+SELECT\b)/i,/^(?:ROW\s+OF\s+SELECT\b)/i,/^(?:COLUMN\s+OF\s+SELECT\b)/i,/^(?:MATRIX\s+OF\s+SELECT\b)/i,/^(?:INDEX\s+OF\s+SELECT\b)/i,/^(?:RECORDSET\s+OF\s+SELECT\b)/i,/^(?:TEXT\s+OF\s+SELECT\b)/i,/^(?:SELECT\b)/i,/^(?:ABSOLUTE\b)/i,/^(?:ACTION\b)/i,/^(?:ADD\b)/i,/^(?:AFTER\b)/i,/^(?:AGGR\b)/i,/^(?:AGGREGATE\b)/i,/^(?:AGGREGATOR\b)/i,/^(?:ALL\b)/i,/^(?:ALTER\b)/i,/^(?:AND\b)/i,/^(?:ANTI\b)/i,/^(?:ANY\b)/i,/^(?:APPLY\b)/i,/^(?:ARRAY\b)/i,/^(?:AS\b)/i,/^(?:ASSERT\b)/i,/^(?:ASC\b)/i,/^(?:ATTACH\b)/i,/^(?:AUTO(_)?INCREMENT\b)/i,/^(?:AVG\b)/i,/^(?:BEFORE\b)/i,/^(?:BEGIN\b)/i,/^(?:BETWEEN\b)/i,/^(?:BREAK\b)/i,/^(?:NOT\s+BETWEEN\b)/i,/^(?:NOT\s+LIKE\b)/i,/^(?:BY\b)/i,/^(?:~~\*)/i,/^(?:!~~\*)/i,/^(?:~~)/i,/^(?:!~~)/i,/^(?:ILIKE\b)/i,/^(?:NOT\s+ILIKE\b)/i,/^(?:CALL\b)/i,/^(?:CASE\b)/i,/^(?:CAST\b)/i,/^(?:CHECK\b)/i,/^(?:CLASS\b)/i,/^(?:CLOSE\b)/i,/^(?:COLLATE\b)/i,/^(?:COLUMN\b)/i,/^(?:COLUMNS\b)/i,/^(?:COMMIT\b)/i,/^(?:CONSTRAINT\b)/i,/^(?:CONTENT\b)/i,/^(?:CONTINUE\b)/i,/^(?:CONVERT\b)/i,/^(?:CORRESPONDING\b)/i,/^(?:COUNT\b)/i,/^(?:CREATE\b)/i,/^(?:CROSS\b)/i,/^(?:CUBE\b)/i,/^(?:CURRENT_TIMESTAMP\b)/i,/^(?:CURSOR\b)/i,/^(?:DATABASE(S)?)/i,/^(?:DATEADD\b)/i,/^(?:DATEDIFF\b)/i,/^(?:TIMESTAMPDIFF\b)/i,/^(?:DECLARE\b)/i,/^(?:DEFAULT\b)/i,/^(?:DELETE\b)/i,/^(?:DELETED\b)/i,/^(?:DESC\b)/i,/^(?:DETACH\b)/i,/^(?:DISTINCT\b)/i,/^(?:DROP\b)/i,/^(?:ECHO\b)/i,/^(?:EDGE\b)/i,/^(?:END\b)/i,/^(?:ENUM\b)/i,/^(?:ELSE\b)/i,/^(?:ESCAPE\b)/i,/^(?:EXCEPT\b)/i,/^(?:EXEC\b)/i,/^(?:EXECUTE\b)/i,/^(?:EXISTS\b)/i,/^(?:EXPLAIN\b)/i,/^(?:FALSE\b)/i,/^(?:FETCH\b)/i,/^(?:FIRST\b)/i,/^(?:FOR\b)/i,/^(?:FOREIGN\b)/i,/^(?:FROM\b)/i,/^(?:FULL\b)/i,/^(?:FUNCTION\b)/i,/^(?:GLOB\b)/i,/^(?:GO\b)/i,/^(?:GRAPH\b)/i,/^(?:GROUP\b)/i,/^(?:GROUPING\b)/i,/^(?:HAVING\b)/i,/^(?:IF\b)/i,/^(?:IDENTITY\b)/i,/^(?:IS\b)/i,/^(?:IN\b)/i,/^(?:INDEX\b)/i,/^(?:INDEXED\b)/i,/^(?:INNER\b)/i,/^(?:INSTEAD\b)/i,/^(?:INSERT\b)/i,/^(?:INSERTED\b)/i,/^(?:INTERSECT\b)/i,/^(?:INTERVAL\b)/i,/^(?:INTO\b)/i,/^(?:JOIN\b)/i,/^(?:KEY\b)/i,/^(?:LAST\b)/i,/^(?:LET\b)/i,/^(?:LEFT\b)/i,/^(?:LIKE\b)/i,/^(?:LIMIT\b)/i,/^(?:MATCHED\b)/i,/^(?:MATRIX\b)/i,/^(?:MAX(\s+)?(?=\())/i,/^(?:MAX(\s+)?(?=(,|\))))/i,/^(?:MIN(\s+)?(?=\())/i,/^(?:MERGE\b)/i,/^(?:MINUS\b)/i,/^(?:MODIFY\b)/i,/^(?:NATURAL\b)/i,/^(?:NEXT\b)/i,/^(?:NEW\b)/i,/^(?:NOCASE\b)/i,/^(?:NO\b)/i,/^(?:NOT\b)/i,/^(?:NULL\b)/i,/^(?:NULLS\b)/i,/^(?:OFF\b)/i,/^(?:ON\b)/i,/^(?:ONLY\b)/i,/^(?:OF\b)/i,/^(?:OFFSET\b)/i,/^(?:OPEN\b)/i,/^(?:OPTION\b)/i,/^(?:OR\b)/i,/^(?:ORDER\b)/i,/^(?:OUTER\b)/i,/^(?:OVER\b)/i,/^(?:PATH\b)/i,/^(?:PARTITION\b)/i,/^(?:PERCENT\b)/i,/^(?:PIVOT\b)/i,/^(?:PLAN\b)/i,/^(?:PRIMARY\b)/i,/^(?:PRINT\b)/i,/^(?:PRIOR\b)/i,/^(?:QUERY\b)/i,/^(?:READ\b)/i,/^(?:RECORDSET\b)/i,/^(?:REDUCE\b)/i,/^(?:REFERENCES\b)/i,/^(?:REGEXP\b)/i,/^(?:REINDEX\b)/i,/^(?:RELATIVE\b)/i,/^(?:REMOVE\b)/i,/^(?:RENAME\b)/i,/^(?:REPEAT\b)/i,/^(?:REPLACE\b)/i,/^(?:REQUIRE\b)/i,/^(?:RESTORE\b)/i,/^(?:RETURN\b)/i,/^(?:RETURNS\b)/i,/^(?:RIGHT\b)/i,/^(?:ROLLBACK\b)/i,/^(?:ROLLUP\b)/i,/^(?:ROW\b)/i,/^(?:ROWS\b)/i,/^(?:SCHEMA(S)?)/i,/^(?:SEARCH\b)/i,/^(?:SEMI\b)/i,/^(?:SET\b)/i,/^(?:SETS\b)/i,/^(?:SHOW\b)/i,/^(?:SOME\b)/i,/^(?:SOURCE\b)/i,/^(?:STRATEGY\b)/i,/^(?:STORE\b)/i,/^(?:SUM\b)/i,/^(?:TOTAL\b)/i,/^(?:TABLE\b)/i,/^(?:TABLES\b)/i,/^(?:TARGET\b)/i,/^(?:TEMP\b)/i,/^(?:TEMPORARY\b)/i,/^(?:TEXTSTRING\b)/i,/^(?:THEN\b)/i,/^(?:TIMEOUT\b)/i,/^(?:TO\b)/i,/^(?:TOP\b)/i,/^(?:TRAN\b)/i,/^(?:TRANSACTION\b)/i,/^(?:TRIGGER\b)/i,/^(?:TRUE\b)/i,/^(?:TRUNCATE\b)/i,/^(?:UNION\b)/i,/^(?:UNIQUE\b)/i,/^(?:UNPIVOT\b)/i,/^(?:UPDATE\b)/i,/^(?:USE\b)/i,/^(?:USING\b)/i,/^(?:VALUE\b)/i,/^(?:VALUES\b)/i,/^(?:VERTEX\b)/i,/^(?:VIEW\b)/i,/^(?:WHEN\b)/i,/^(?:WHERE\b)/i,/^(?:WHILE\b)/i,/^(?:WITH\b)/i,/^(?:WORK\b)/i,/^(?:(\d*[.])?\d+[eE]\d+)/i,/^(?:(\d*[.])?\d+)/i,/^(?:->)/i,/^(?:#)/i,/^(?:\+)/i,/^(?:-)/i,/^(?:\*)/i,/^(?:\/)/i,/^(?:%)/i,/^(?:!===)/i,/^(?:===)/i,/^(?:!==)/i,/^(?:==)/i,/^(?:>=)/i,/^(?:&)/i,/^(?:\|)/i,/^(?:<<)/i,/^(?:>>)/i,/^(?:>)/i,/^(?:<=)/i,/^(?:<>)/i,/^(?:<)/i,/^(?:=)/i,/^(?:!=)/i,/^(?:\()/i,/^(?:\))/i,/^(?:@)/i,/^(?:\{)/i,/^(?:\})/i,/^(?:\])/i,/^(?::-)/i,/^(?:\?-)/i,/^(?:\.\.)/i,/^(?:\.)/i,/^(?:,)/i,/^(?:::)/i,/^(?::)/i,/^(?:;)/i,/^(?:\$)/i,/^(?:\?)/i,/^(?:!)/i,/^(?:\^)/i,/^(?:~)/i,/^(?:[0-9]*[a-zA-Z_]+[a-zA-Z_0-9]*)/i,/^(?:$)/i,/^(?:.)/i],conditions:{INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277],inclusive:!0}}};return e}();function vs(){this.yy={}}return gs.lexer=As,vs.prototype=gs,gs.Parser=vs,new vs}();"undefined"!=typeof require&&void 0!==t&&(t.parser=r,t.Parser=r.Parser,t.parse=function(){return r.parse.apply(r,arguments)},t.main=function(e){e[1]||(console.log("Usage: "+e[0]+" FILE"),process.exit(1));var n=require("fs").readFileSync(require("path").normalize(e[1]),"utf8");return t.parser.parse(n)},void 0!==e&&require.main===e&&t.main(process.argv.slice(1))),n.prettyflag=!1,n.pretty=function(e,t){var r=n.prettyflag;n.prettyflag=!t;var o=n.parse(e).toString();return n.prettyflag=r,o};var o=n.utils={};function i(e){return"(y="+e+",y===y?y:undefined)"}function s(e,t){return"(y="+e+',typeof y=="undefined"?undefined:'+t+")"}function a(){return!0}var u=o.escapeq=function(e){return(""+e).replace(/["'\\\n\r\u2028\u2029]/g,(function(e){switch(e){case'"':case"'":case"\\":return"\\"+e;case"\n":return"\\n";case"\r":return"\\r";case"\u2028":return"\\u2028";case"\u2029":return"\\u2029"}}))},c=o.undoubleq=function(e){return e.replace(/(\')/g,"''")},l=o.doubleq=function(e){return e.replace(/(\'\')/g,"\\'")},h=(o.doubleqq=function(e){return e.replace(/\'/g,"'")},function(e){return e[0]===String.fromCharCode(65279)&&(e=e.substr(1)),e});o.global="undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:Function("return this")(),o.isNativeFunction=function(e){return"function"==typeof e&&!!~e.toString().indexOf("[native code]")},o.isWebWorker=function(){try{var e=o.global.importScripts;return o.isNativeFunction(e)}catch(e){return!1}}(),o.isNode=function(){try{return!("undefined"==typeof process||!process.versions||!process.versions.node)}catch(e){return!1}}(),o.isBrowser=function(){try{return o.isNativeFunction(o.global.location.reload)}catch(e){return!1}}(),o.isBrowserify=o.isBrowser&&"undefined"!=typeof process&&process.browser,o.isRequireJS=o.isBrowser&&"function"==typeof require&&"function"==typeof require.specified,o.isMeteor="undefined"!=typeof Meteor&&Meteor.release,o.isMeteorClient=o.isMeteorClient=o.isMeteor&&Meteor.isClient,o.isMeteorServer=o.isMeteor&&Meteor.isServer,o.isCordova="object"==typeof cordova,o.isReactNative=function(){var e=!1;try{"object"==typeof require("react-native")&&(e=!0)}catch(e){}return e}(),o.hasIndexedDB=!!o.global.indexedDB,o.isArray=function(e){return"[object Array]"===Object.prototype.toString.call(e)};const f=/^[a-z]+:\/\//i;let p=o.loadFile=function(e,t,n,r){var i,s;if(o.isNode||o.isMeteorServer){if(s=require("fs"),void 0===e){var a="";return process.stdin.setEncoding("utf8"),process.stdin.on("readable",(function(){var e=process.stdin.read();null!==e&&(a+=e.toString())})),void process.stdin.on("end",(function(){n(h(a))}))}if(f.test(e))return void E(e,(e=>n(h(e))),r,t);if(t)return void s.readFile(e,(function(e,t){if(e)return r(e,null);n(h(t.toString()))}));try{i=s.readFileSync(e)}catch(e){return void r(err,null)}n(h(i.toString()))}else if(o.isReactNative)require("react-native-fs").readFile(e,"utf8").then((function(e){n(h(e))})).catch((function(e){return r(e,null)}));else if(o.isCordova)o.global.requestFileSystem(LocalFileSystem.PERSISTENT,0,(function(t){t.root.getFile(e,{create:!1},(function(e){e.file((function(e){var t=new FileReader;t.onloadend=function(e){n(h(this.result))},t.readAsText(e)}))}))}));else{if("string"==typeof e)return"#"===e.substr(0,1)&&"undefined"!=typeof document?(i=document.querySelector(e).textContent,void n(i)):void E(e,(e=>n(h(e))),r,t);if(e instanceof Event){var u=e.target.files,c=new FileReader;u[0].name,c.onload=function(e){var t=e.target.result;n(h(t))},c.readAsText(u[0])}E(e,(e=>n(h(e))),r,t)}},d="undefined"!=typeof fetch?fetch:null;async function E(e,t,n,r){return r?m(e,t,n):await m(e,t,n)}function m(e,t,n){return d(e).then((e=>e.arrayBuffer())).then((e=>{var n=[...new Uint8Array(e)].map((e=>String.fromCharCode(e))).join("");t(n)})).catch((e=>{if(n)return n(e);throw console.error(e),e}))}d="undefined"!=typeof fetch?fetch:require("cross-fetch"),o.loadBinaryFile=function(e,t,n,r=(e=>{throw e})){var i;if(o.isNode||o.isMeteorServer)if(i=require("fs"),/^[a-z]+:\/\//i.test(e))E(e,n,r,t);else if(t)i.readFile(e,(function(e,t){if(e)return r(e);for(var o=[],i=0;i701){let n=((e-26)/676|0)-1;t=String.fromCharCode(65+n%26),e%=676}var n=String.fromCharCode(65+e%26);return e>=26&&(e=(e/26|0)-1,n=String.fromCharCode(65+e%26)+n,e>26&&(e=(e/26|0)-1,n=String.fromCharCode(65+e%26)+n)),t+n},o.xlscn=function(e){var t=e.charCodeAt(0)-65;return e.length>1&&(t=26*(t+1)+e.charCodeAt(1)-65,e.length>2&&(t=26*(t+1)+e.charCodeAt(2)-65)),t},o.domEmptyChildren=function(e){for(var t=e.childNodes.length;t--;)e.removeChild(e.lastChild)};var C={};o.like=function(e,t,n){if(!C[e]){n||(n="");for(var r=0,o="^";r-1?o+="\\"+i:o+=i,r++}o+="$",C[e]=RegExp(o,"i")}return(""+(t??"")).search(C[e])>-1},o.glob=function(e,t){for(var n=0,r="^";n-1?r+="\\"+o:r+=o,n++}return r+="$",(""+(e||"")).toUpperCase().search(RegExp(r.toUpperCase()))>-1},o.findAlaSQLPath=function(){if(o.isWebWorker)return"";if(o.isMeteorClient)return"/packages/dist/";if(o.isMeteorServer)return"assets/packages/dist/";if(o.isNode)return __dirname;if(o.isBrowser)for(var e=document.getElementsByTagName("script"),t=0;tn.MAXSQLCACHESIZE&&s.resetSqlCache(),s.sqlCacheSize++,s.sqlCache[a]=c),n.res=c(r,o,i)}return n.precompile(u.statements[0],n.useid,r),n.res=u.statements[0].execute(e,r,o,i)}if(!o)return n.drun(e,u,r,o,i);n.adrun(e,u,r,o,i)}},n.drun=function(e,t,r,o,i){var s=n.useid;s!==e&&n.use(e);for(var a=[],u=0,c=t.statements.length;u{var n=t.resolve([]);return e.forEach((e=>{n=n.then((t=>L(e.sql,e.params,e.i,e.length).then((e=>[...t,e]))))})),n})(i,o.global.Promise)}}(e)};var M=n.Database=function(e){var t=this;if(t===n)if(e){if(t=n.databases[e],n.databases[e]=t,!t)throw new Error(`Database ${e} not found`)}else t=n.databases.alasql,n.options.tsql&&(n.databases.tempdb=n.databases.alasql);return e||(e="db"+n.databasenum++),t.databaseid=e,n.databases[e]=t,t.dbversion=0,t.tables={},t.views={},t.triggers={},t.indices={},t.objects={},t.counter=0,t.resetSqlCache(),t};M.prototype.resetSqlCache=function(){this.sqlCache={},this.sqlCacheSize=0,this.astCache={}},M.prototype.exec=function(e,t,r){return n.dexec(this.databaseid,e,t,r)},M.prototype.autoval=function(e,t,r){return n.autoval(e,t,r,this.databaseid)},M.prototype.transaction=function(e){return e(new n.Transaction(this.databaseid))};class x{transactionid=Date.now();committed=!1;bank;constructor(e){this.databaseid=e,this.dbversion=n.databases[e].dbversion,this.bank=JSON.stringify(n.databases[e])}commit(){this.committed=!0,n.databases[this.databaseid].dbversion=Date.now(),delete this.bank}rollback(){if(this.committed)throw new Error("Transaction already commited");n.databases[this.databaseid]=JSON.parse(this.bank),delete this.bank}exec(e,t,r){return n.dexec(this.databaseid,e,t,r)}}x.prototype.executeSQL=x.prototype.exec,n.Transaction=x;var B=n.Table=function(e){this.data=[],this.columns=[],this.xcolumns={},this.inddefs={},this.indices={},this.uniqs={},this.uniqdefs={},this.identities={},this.checks=[],this.checkfns=[],this.beforeinsert={},this.afterinsert={},this.insteadofinsert={},this.beforedelete={},this.afterdelete={},this.insteadofdelete={},this.beforeupdate={},this.afterupdate={},this.insteadofupdate={},Object.assign(this,e)};B.prototype.indexColumns=function(){var e=this;e.xcolumns={},e.columns.forEach((function(t){e.xcolumns[t.columnid]=t}))},n.View=class{constructor(e){this.columns=[],this.xcolumns={},this.query=[],Object.assign(this,e)}};class P{constructor(e){this.alasql=n,this.columns=[],this.xcolumns={},this.selectGroup=[],this.groupColumns={},Object.assign(this,e)}}n.Recordset=class{constructor(e){Object.assign(this,e)}},n.Query=P;var F={extend:Object.assign,casesensitive:n.options.casesensitive,Base:class{constructor(e){Object.assign(this,e)}toString(){}toType(){}toJS(){}exec(){}compile(){}}};r.yy=n.yy=F,F.Statements=class{constructor(e){Object.assign(this,e)}toString(){return this.statements.map((e=>e.toString())).join("; ")}compile(e){const t=this.statements.map((t=>t.compile(e)));return 1===t.length?t[0]:(e,n)=>{const r=t.map((t=>t(e)));return n&&n(r),r}}},F.Search=class{constructor(e){Object.assign(this,e)}toString(){let e="SEARCH ";return this.selectors&&(e+=this.selectors.toString()),this.from&&(e+="FROM "+this.from.toString()),e}toJS(e){return`this.queriesfn[${this.queriesidx-1}](this.params,null,${e})`}compile(e){var t=e,n=(e,r)=>{var o;return this.#e(t,e,(function(e){o=Y(n.query,e),r&&(o=r(o))})),o};return n.query={},n}#e(e,t,r){var o,i,s,a,u={},c=w(this.selectors);if(void 0!==c&&c.length>0&&(c&&c[0]&&"PROP"===c[0].srchid&&c[0].args&&c[0].args[0]&&("XML"===c[0].args[0].toUpperCase()?(u.mode="XML",c.shift()):"HTML"===c[0].args[0].toUpperCase()?(u.mode="HTML",c.shift()):"JSON"===c[0].args[0].toUpperCase()&&(u.mode="JSON",c.shift())),c.length>0&&"VALUE"===c[0].srchid&&(u.value=!0,c.shift())),this.from instanceof F.Column){var l=this.from.databaseid||e;i=n.databases[l].tables[this.from.columnid].data}else if(this.from instanceof F.FuncValue&&n.from[this.from.funcid.toUpperCase()]){var h=this.from.args.map((function(e){var r=e.toJS();return new Function("params,alasql","var y;return "+r).bind(this)(t,n)}));i=n.from[this.from.funcid.toUpperCase()].apply(this,h)}else if(void 0===this.from)i=n.databases[e].objects;else{var f=new Function("params,alasql","var y;return "+this.from.toJS());i=f(t,n),"object"==typeof Mongo&&"object"!=typeof Mongo.Collection&&i instanceof Mongo.Collection&&(i=i.find().fetch())}return o=void 0!==c&&c.length>0?function e(r,o,s){var a=r[o],c=n.options.loopbreak||1e5;if(a.selid){if("PATH"===a.selid){for(var l=[{node:s,stack:[]}],h={},f=n.databases[n.useid].objects;l.length>0;){var p=l.shift(),d=p.node,E=p.stack;if((D=e(a.args,0,d)).length>0){if(o+1+1>r.length)return E;var m=[];return E&&E.length>0&&E.forEach((function(t){m=m.concat(e(r,o+1,t))})),m}void 0===h[d.$id]&&(h[d.$id]=!0,d.$out&&d.$out.length>0&&d.$out.forEach((function(e){var t=f[e],n=E.concat(t);n.push(f[t.$out[0]]),l.push({node:f[t.$out[0]],stack:n})})))}return[]}if("NOT"===a.selid)return(g=e(a.args,0,s)).length>0?[]:o+1+1>r.length?[s]:e(r,o+1,s);if("DISTINCT"===a.selid){if(0===(g=void 0===a.args||0===a.args.length?R(s):e(a.args,0,s)).length)return[];var _=R(g);return o+1+1>r.length?_:e(r,o+1,_)}if("AND"===a.selid)return _=!0,a.args.forEach((function(t){_=_&&e(t,0,s).length>0})),_?o+1+1>r.length?[s]:e(r,o+1,s):[];if("OR"===a.selid)return _=!1,a.args.forEach((function(t){_=_||e(t,0,s).length>0})),_?o+1+1>r.length?[s]:e(r,o+1,s):[];if("ALL"===a.selid)return 0===(g=e(a.args[0],0,s)).length?[]:o+1+1>r.length?g:e(r,o+1,g);if("ANY"===a.selid)return 0===(g=e(a.args[0],0,s)).length?[]:o+1+1>r.length?[g[0]]:e(r,o+1,[g[0]]);if("UNIONALL"===a.selid){var g=[];return a.args.forEach((function(t){g=g.concat(e(t,0,s))})),0===g.length?[]:o+1+1>r.length?g:e(r,o+1,g)}if("UNION"===a.selid)return g=[],a.args.forEach((function(t){g=g.concat(e(t,0,s))})),0===(g=R(g)).length?[]:o+1+1>r.length?g:e(r,o+1,g);if("IF"===a.selid)return 0===(g=e(a.args,0,s)).length?[]:o+1+1>r.length?[s]:e(r,o+1,s);if("REPEAT"===a.selid){var y,A,v=a.args[0].value;A=a.args[1]?a.args[1].value:v,a.args[2]&&(y=a.args[2].variable);var b=[];if(0===v&&(o+1+1>r.length?b=[s]:(y&&(n.vars[y]=0),b=b.concat(e(r,o+1,s)))),A>0)for(var T=[{value:s,lvl:1}],w=0;T.length>0;){if(g=T[0],T.shift(),g.lvl<=A){y&&(n.vars[y]=g.lvl);var O=e(a.sels,0,g.value);O.forEach((function(e){T.push({value:e,lvl:g.lvl+1})})),g.lvl>=v&&(o+1+1>r.length?b=b.concat(O):O.forEach((function(t){b=b.concat(e(r,o+1,t))})))}if(++w>c)throw new Error("Infinite loop brake. Number of iterations = "+w)}return b}if("OF"===a.selid){if(o+1+1>r.length)return[s];var S=[];return Object.keys(s).forEach((function(t){n.vars[a.args[0].variable]=t,S=S.concat(e(r,o+1,s[t]))})),S}if("TO"===a.selid){var I=n.vars[a.args[0]],N=[];return(N=void 0!==I?I.slice(0):[]).push(s),o+1+1>r.length?[s]:(n.vars[a.args[0]]=N,S=e(r,o+1,s),n.vars[a.args[0]]=I,S)}if("ARRAY"===a.selid)return(g=e(a.args,0,s)).length>0?(C=g,o+1+1>r.length?[C]:e(r,o+1,C)):[];if("SUM"===a.selid){if(!((g=e(a.args,0,s)).length>0))return[];var C=g.reduce((function(e,t){return e+t}),0);return o+1+1>r.length?[C]:e(r,o+1,C)}if("AVG"===a.selid)return(g=e(a.args,0,s)).length>0?(C=g.reduce((function(e,t){return e+t}),0)/g.length,o+1+1>r.length?[C]:e(r,o+1,C)):[];if("COUNT"===a.selid)return(g=e(a.args,0,s)).length>0?(C=g.length,o+1+1>r.length?[C]:e(r,o+1,C)):[];if("FIRST"===a.selid)return(g=e(a.args,0,s)).length>0?(C=g[0],o+1+1>r.length?[C]:e(r,o+1,C)):[];if("LAST"===a.selid)return(g=e(a.args,0,s)).length>0?(C=g[g.length-1],o+1+1>r.length?[C]:e(r,o+1,C)):[];if("MIN"===a.selid)return 0===(g=e(a.args,0,s)).length?[]:(C=g.reduce((function(e,t){return Math.min(e,t)}),1/0),o+1+1>r.length?[C]:e(r,o+1,C));if("MAX"===a.selid)return 0===(g=e(a.args,0,s)).length?[]:(C=g.reduce((function(e,t){return Math.max(e,t)}),-1/0),o+1+1>r.length?[C]:e(r,o+1,C));if("PLUS"===a.selid){for(b=[],T=e(a.args,0,s).slice(),o+1+1>r.length?b=b.concat(T):T.forEach((function(t){b=b.concat(e(r,o+1,t))})),w=0;T.length>0;)if(g=T.shift(),g=e(a.args,0,g),T=T.concat(g),o+1+1>r.length?b=b.concat(g):g.forEach((function(t){var n=e(r,o+1,t);b=b.concat(n)})),++w>c)throw new Error("Infinite loop brake. Number of iterations = "+w);return b}if("STAR"===a.selid){for(b=[],b=e(r,o+1,s),T=e(a.args,0,s).slice(),o+1+1>r.length?b=b.concat(T):T.forEach((function(t){b=b.concat(e(r,o+1,t))})),w=0;T.length>0;)if(g=T[0],T.shift(),g=e(a.args,0,g),T=T.concat(g),o+1+1<=r.length&&g.forEach((function(t){b=b.concat(e(r,o+1,t))})),++w>c)throw new Error("Infinite loop brake. Number of iterations = "+w);return b}if("QUESTION"===a.selid)return b=(b=[]).concat(e(r,o+1,s)),g=e(a.args,0,s),o+1+1<=r.length&&g.forEach((function(t){b=b.concat(e(r,o+1,t))})),b;if("WITH"!==a.selid){if("ROOT"===a.selid)return o+1+1>r.length?[s]:e(r,o+1,i);throw new Error("Wrong selector "+a.selid)}if(0===(g=e(a.args,0,s)).length)return[];var D={status:1,values:g}}else{if(!a.srchid)throw new Error("Selector not found");D=n.srch[a.srchid.toUpperCase()](s,a.args,u,t)}if(void 0===D&&(D={status:1,values:[s]}),_=[],1===D.status){var L=D.values;if(o+1+1>r.length)_=L;else for(w=0;w0&&(o=o[0]),r&&(o=r(o))),o}},n.srch={PROP(e,t,n){if("XML"===n.mode){const n=e.children.filter((e=>e.name.toUpperCase()===t[0].toUpperCase()));return{status:n.length?1:-1,values:n}}return"object"!=typeof e||null===e||"object"!=typeof t||void 0===e[t[0]]?{status:-1,values:[]}:{status:1,values:[e[t[0]]]}},APROP:(e,t)=>"object"!=typeof e||null===e||"object"!=typeof t||void 0===e[t[0]]?{status:1,values:[void 0]}:{status:1,values:[e[t[0]]]},EQ(e,t,r,o){var i=t[0].toJS("x","");return e===new Function("x,alasql,params","return "+i)(e,n,o)?{status:1,values:[e]}:{status:-1,values:[]}},LIKE(e,t,r,o){var i=t[0].toJS("x",""),s=new Function("x,alasql,params","return "+i);return e.toUpperCase().match(new RegExp("^"+s(e,n,o).toUpperCase().replace(/%/g,".*").replace(/\?|_/g,".")+"$"),"g")?{status:1,values:[e]}:{status:-1,values:[]}},ATTR(e,t,n){if("XML"===n.mode)return void 0===t?{status:1,values:[e.attributes]}:"object"==typeof e&&"object"==typeof e.attributes&&void 0!==e.attributes[t[0]]?{status:1,values:[e.attributes[t[0]]]}:{status:-1,values:[]};throw new Error("ATTR is not using in usual mode")},CONTENT(e,t,n){if("XML"!==n.mode)throw new Error("ATTR is not using in usual mode");return{status:1,values:[e.content]}},SHARP(e,t){const r=n.databases[n.useid].objects[t[0]];return void 0!==e&&e===r?{status:1,values:[e]}:{status:-1,values:[]}},PARENT(){return console.error("PARENT not implemented",arguments),{status:-1,values:[]}},CHILD:(e,t,n)=>"object"==typeof e?Array.isArray(e)?{status:1,values:e}:"XML"===n.mode?{status:1,values:Object.keys(e.children).map((function(t){return e.children[t]}))}:{status:1,values:Object.keys(e).map((function(t){return e[t]}))}:{status:1,values:[]},KEYS:e=>"object"==typeof e&&null!==e?{status:1,values:Object.keys(e)}:{status:1,values:[]},WHERE(e,t,r,o){var i=t[0].toJS("x","");return new Function("x,alasql,params","return "+i)(e,n,o)?{status:1,values:[e]}:{status:-1,values:[]}},NAME:(e,t)=>e.name===t[0]?{status:1,values:[e]}:{status:-1,values:[]},CLASS:(e,t)=>e.$class==t?{status:1,values:[e]}:{status:-1,values:[]},VERTEX:e=>"VERTEX"===e.$node?{status:1,values:[e]}:{status:-1,values:[]},INSTANCEOF:(e,t)=>e instanceof n.fn[t[0]]?{status:1,values:[e]}:{status:-1,values:[]},EDGE:e=>"EDGE"===e.$node?{status:1,values:[e]}:{status:-1,values:[]},EX(e,t,r,o){var i=t[0].toJS("x","");return{status:1,values:[new Function("x,alasql,params","return "+i)(e,n,o)]}},RETURN(e,t,r,o){var i={};return t&&t.length>0&&t.forEach((function(t){var r=t.toJS("x",""),s=new Function("x,alasql,params","return "+r);void 0===t.as&&(t.as=t.toString()),i[t.as]=s(e,n,o)})),{status:1,values:[i]}},REF:e=>({status:1,values:[n.databases[n.useid].objects[e]]}),OUT:e=>e.$out&&e.$out.length>0?{status:1,values:e.$out.map((function(e){return n.databases[n.useid].objects[e]}))}:{status:-1,values:[]},OUTOUT(e){if(e.$out&&e.$out.length>0){var t=[];return e.$out.forEach((function(e){var r=n.databases[n.useid].objects[e];r&&r.$out&&r.$out.length>0&&r.$out.forEach((function(e){t=t.concat(n.databases[n.useid].objects[e])}))})),{status:1,values:t}}return{status:-1,values:[]}},IN:e=>e.$in&&e.$in.length>0?{status:1,values:e.$in.map((function(e){return n.databases[n.useid].objects[e]}))}:{status:-1,values:[]},ININ(e){if(e.$in&&e.$in.length>0){var t=[];return e.$in.forEach((function(e){var r=n.databases[n.useid].objects[e];r&&r.$in&&r.$in.length>0&&r.$in.forEach((function(e){t=t.concat(n.databases[n.useid].objects[e])}))})),{status:1,values:t}}return{status:-1,values:[]}},AS:(e,t)=>(n.vars[t[0]]=e,{status:1,values:[e]}),AT:(e,t)=>({status:1,values:[n.vars[t[0]]]}),CLONEDEEP:e=>({status:1,values:[w(e)]}),SET(e,t,r,o){var i=t.map((function(e){return"@"===e.method?`alasql.vars[${JSON.stringify(e.variable)}]=`+e.expression.toJS("x",""):"$"===e.method?`params[${JSON.stringify(e.variable)}]=`+e.expression.toJS("x",""):`x[${JSON.stringify(e.column.columnid)}]=`+e.expression.toJS("x","")})).join(";");return new Function("x,params,alasql",i)(e,o,n),{status:1,values:[e]}},ROW(e,t,r,o){var i="var y;return [";return i+=t.map((e=>e.toJS("x",""))).join(","),i+="]",{status:1,values:[new Function("x,params,alasql",i)(e,o,n)]}},D3:e=>("VERTEX"!==e.$node&&"EDGE"===e.$node&&(e.source=e.$in[0],e.target=e.$out[0]),{status:1,values:[e]}),ORDERBY:(e,t)=>({status:1,values:e.sort(U(t))})};var U=function(e){if(e){if("function"==typeof e?.[0]?.expression){var t=e[0].expression;return function(e,n){var r=t(e),o=t(n);return r>o?1:r===o?0:-1}}var r="",o="";return e.forEach((function(e){var t="";if(e.expression instanceof F.NumValue&&(e.expression=self.columns[e.expression.value-1]),e.expression instanceof F.Column){var i=e.expression.columnid;n.options.valueof&&(t=".valueOf()"),e.nocase&&(t+=".toUpperCase()"),"_"===i?(r+="if(a"+t+("ASC"===e.direction?">":"<")+"b"+t+")return 1;",r+="if(a"+t+"==b"+t+"){"):r+=`if (\n\t\t\t\t\t\t\t(a[${JSON.stringify(i)}]||'')${t}\n\t\t\t\t\t\t\t${"ASC"===e.direction?">":"<"}\n\t\t\t\t\t\t\t(b[${JSON.stringify(i)}]||'')${t}\n\t\t\t\t\t\t) return 1;\n\n\t\t\t\t\t\tif(\n\t\t\t\t\t\t\t(a[${JSON.stringify(i)}]||'')${t}\n\t\t\t\t\t\t\t==\n\t\t\t\t\t\t\t(b[${JSON.stringify(i)}]||'')${t}\n\t\t\t\t\t\t){\n\t\t\t\t\t\t`}else t=".valueOf()",e.nocase&&(t+=".toUpperCase()"),r+=`\n\t\t\t\t\tif (\n\t\t\t\t\t\t(${e.toJS("a","")} || '')${t}\n\t\t\t\t\t\t${"ASC"===e.direction?">":"<"}\n\t\t\t\t\t\t(${e.toJS("b","")} || '')${t}\n\t\t\t\t\t) return 1;\n\n\t\t\t\t\tif (\n\t\t\t\t\t\t(${e.toJS("a","")} || '')${t} ==\n\t\t\t\t\t\t(${e.toJS("b","")} || '')${t}\n\t\t\t\t\t) {`;o+="}"})),r+="return 0;",r+=o+"return -1",new Function("a,b",r)}};function k(e,t,n){if(t>=0){let r=n.sources[t];r.data=e,"function"==typeof r.data&&(r.getfn=r.data,r.dontcache=r.getfn.dontcache,["OUTER","RIGHT","ANTI"].includes(r.joinmode)&&(r.dontcache=!1),r.data={})}else n.queriesdata[-t-1]=N(e);if(n.sourceslen--,!(n.sourceslen>0))return j(n)}function j(e){var t,r=e.scope;if(G(e),e.data=[],e.xgroups={},e.groups=[],V(e,r,0),e.groupfn){if(e.data=[],0===e.groups.length&&0===e.allgroups.length){var o={};e.selectGroup.length>0&&e.selectGroup.forEach((function(e){"COUNT"==e.aggregatorid||"SUM"==e.aggregatorid||"TOTAL"==e.aggregatorid?o[e.nick]=0:o[e.nick]=void 0})),e.groups=[o]}if(e.aggrKeys.length>0){var i="";e.aggrKeys.forEach((function(e){i+=`\n\t\t\t\tg[${JSON.stringify(e.nick)}] = alasql.aggr[${JSON.stringify(e.funcid)}](undefined,g[${JSON.stringify(e.nick)}],3); `}));var s=new Function("g,params,alasql","var y;"+i)}for(var a=0,u=e.groups.length;a0){var E=e.removeKeys;if((t=E.length)>0)for(u=e.data.length,a=0;a0&&(e.columns=e.columns.filter((function(e){var t=!1;return E.forEach((function(n){e.columnid==n&&(t=!0)})),!t})))}if(void 0!==e.removeLikeKeys&&e.removeLikeKeys.length>0){var m=e.removeLikeKeys;for(a=0,u=e.data.length;a0&&(e.columns=e.columns.filter((function(e){var t=!1;return m.forEach((function(r){n.utils.like(r,e.columnid)&&(t=!0)})),!t})))}if(e.pivotfn&&e.pivotfn(),e.unpivotfn&&e.unpivotfn(),e.intoallfn){var g=e.intoallfn(e.columns,e.cb,e.params,e.alasql);return g}if(e.intofn){for(u=e.data.length,a=0;a0&&"ix"==o.optimization&&o.onleftfn&&o.onrightfn){if(o.databaseid&&n.databases[o.databaseid].tables[o.tableid]){n.databases[o.databaseid].tables[o.tableid].indices||(e.database.tables[o.tableid].indices={});let t=n.databases[o.databaseid].tables[o.tableid].indices[_(o.onrightfns+"`"+o.srcwherefns)];!n.databases[o.databaseid].tables[o.tableid].dirty&&t&&(o.ix=t)}if(!o.ix){o.ix={};let t,r={},a=0,u=o.data.length;for(;(t=o.data[a])||o.getfn&&(t=o.getfn(a))||a=e.sources.length)e.wherefn(t,e.params,n)&&(e.groupfn?e.groupfn(t,e.params,n):e.data.push(e.selectfn(t,e.params,n)));else if(e.sources[r].applyselect){var o=e.sources[r];o.applyselect(e.params,(function(n){if(n.length>0)for(var i=0;i0){for(var i={},s=Math.min(t.length,n.options.columnlookup||10)-1;0<=s;s--)for(var a in t[s])i[a]=!0;o=Object.keys(i).map((function(e){return{columnid:e}}))}else o=[];switch(r){case"VALUE":if(0===t.length)return;const e=o&&o.length>0?o[0].columnid:Object.keys(t[0])[0];return t[0][e];case"ROW":if(0===t.length)return;return Object.values(t[0]);case"COLUMN":if(0===t.length)return[];let r;r=o&&o.length>0?o[0].columnid:Object.keys(t[0])[0];let i=[];s=0;for(var u=t.length;so.map((t=>e[t.columnid]))));case"INDEX":if(0===t.length)return;const a=o&&o.length>0?o[0].columnid:Object.keys(t[0])[0],c=o&&o.length>1?o[1].columnid:Object.keys(t[0])[1];return t.reduce(((e,t)=>({...e,[t[a]]:t[c]})),{});case"RECORDSET":return new n.Recordset({columns:o,data:t});case"TEXTSTRING":if(0===t.length)return;const l=o&&o.length>0?o[0].columnid:Object.keys(t[0])[0];return t.map((e=>e[l])).join("\n")}return t}function H(e,t,r){var o="",i=[],s={};return t.forEach((function(t){if(e.ixsources={},e.sources.forEach((function(t){e.ixsources[t.alias]=t})),e.ixsources[t])var a=e.ixsources[t].columns;r&&"json"==n.options.joinstar&&(o+="r['"+t+"']={};"),a&&a.length>0?a.forEach((function(a){const c=u(a.columnid);if(r&&"underscore"==n.options.joinstar)i.push("'"+t+"_"+c+"':p['"+t+"']['"+c+"']");else if(r&&"json"==n.options.joinstar)o+="r['"+t+"']['"+c+"']=p['"+t+"']['"+c+"'];";else{var l="p['"+t+"']['"+c+"']";if(s[a.columnid]){var h=l+" !== undefined ? "+l+" : "+s[a.columnid].value;i[s[a.columnid].id]=s[a.columnid].key+h,s[a.columnid].value=h}else{var f="'"+c+"':";i.push(f+l),s[a.columnid]={id:i.length-1,value:l,key:f}}}e.selectColumns[c]=!0;var p={columnid:a.columnid,dbtypeid:a.dbtypeid,dbsize:a.dbsize,dbprecision:a.dbprecision,dbenum:a.dbenum};e.columns.push(p),e.xcolumns[p.columnid]=p})):(o+='var w=p["'+t+'"];for(var k in w){r[k]=w[k]};',e.dirtyColumns=!0)})),{s:i.join(","),sp:o}}F.Select=class{constructor(e){Object.assign(this,e)}toString(){var e;return e="",this.explain&&(e+="EXPLAIN "),e+="SELECT ",this.modifier&&(e+=this.modifier+" "),this.distinct&&(e+="DISTINCT "),this.top&&(e+="TOP "+this.top.value+" ",this.percent&&(e+="PERCENT ")),e+=this.columns.map((function(e){var t;return t=e.toString(),void 0!==e.as&&(t+=" AS "+e.as),t})).join(", "),this.from&&(e+=" FROM "+this.from.map((function(e){var t;return t=e.toString(),e.as&&(t+=" AS "+e.as),t})).join(",")),this.joins&&(e+=this.joins.map((function(e){var t;if(t=" ",e.joinmode&&(t+=e.joinmode+" "),e.table)t+="JOIN "+e.table.toString();else if(e.select)t+="JOIN ("+e.select.toString()+")";else{if(!(e instanceof n.yy.Apply))throw new Error("Wrong type in JOIN mode");t+=e.toString()}return e.as&&(t+=" AS "+e.as),e.using&&(t+=" USING "+e.using.toString()),e.on&&(t+=" ON "+e.on.toString()),t})).join("")),this.where&&(e+=" WHERE "+this.where.toString()),this.group&&this.group.length>0&&(e+=" GROUP BY "+this.group.map((function(e){return e.toString()})).join(", ")),this.having&&(e+=" HAVING "+this.having.toString()),this.order&&this.order.length>0&&(e+=" ORDER BY "+this.order.map((function(e){return e.toString()})).join(", ")),this.limit&&(e+=" LIMIT "+this.limit.value),this.offset&&(e+=" OFFSET "+this.offset.value),this.union&&(e+=" UNION "+(this.corresponding?"CORRESPONDING ":"")+this.union.toString()),this.unionall&&(e+=" UNION ALL "+(this.corresponding?"CORRESPONDING ":"")+this.unionall.toString()),this.except&&(e+=" EXCEPT "+(this.corresponding?"CORRESPONDING ":"")+this.except.toString()),this.intersect&&(e+=" INTERSECT "+(this.corresponding?"CORRESPONDING ":"")+this.intersect.toString()),e}toJS(e){return"alasql.utils.flatArray(this.queriesfn["+(this.queriesidx-1)+"](this.params,null,"+e+"))[0]"}compile(e,t){var r=n.databases[e],o=new P;if(o.removeKeys=[],o.aggrKeys=[],o.explain=this.explain,o.explaination=[],o.explid=1,o.modifier=this.modifier,o.database=r,this.compileWhereExists(o),this.compileQueries(o),o.defcols=this.compileDefCols(o,e),o.fromfn=this.compileFrom(o),this.joins&&this.compileJoins(o),o.rownums=[],this.compileSelectGroup0(o),this.group||o.selectGroup.length>0?o.selectgfns=this.compileSelectGroup1(o):o.selectfns=this.compileSelect1(o,t),this.compileRemoveColumns(o),this.where&&this.compileWhereJoins(o),o.wherefn=this.compileWhere(o),(this.group||o.selectGroup.length>0)&&(o.groupfn=this.compileGroup(o)),this.having&&(o.havingfn=this.compileHaving(o)),this.order&&(o.orderfn=this.compileOrder(o,t)),this.group||o.selectGroup.length>0?o.selectgfn=this.compileSelectGroup2(o):o.selectfn=this.compileSelect2(o,t),o.distinct=this.distinct,this.pivot&&(o.pivotfn=this.compilePivot(o)),this.unpivot&&(o.pivotfn=this.compileUnpivot(o)),this.top?o.limit=this.top.value:this.limit&&(o.limit=this.limit.value,this.offset&&(o.offset=this.offset.value)),o.percent=this.percent,o.corresponding=this.corresponding,this.union?(o.unionfn=this.union.compile(e),o.orderfn=this.union.order?this.union.compileOrder(o,t):null):this.unionall?(o.unionallfn=this.unionall.compile(e),o.orderfn=this.unionall.order?this.unionall.compileOrder(o,t):null):this.except?(o.exceptfn=this.except.compile(e),o.orderfn=this.except.order?this.except.compileOrder(o,t):null):this.intersect&&(o.intersectfn=this.intersect.compile(e),o.orderfn=this.intersect.order?this.intersect.compileOrder(o,t):null),this.into){if(this.into instanceof F.Table)n.options.autocommit&&n.databases[this.into.databaseid||e].engineid?o.intoallfns=`return alasql\n\t\t\t\t\t\t\t\t.engines[${JSON.stringify(n.databases[this.into.databaseid||e].engineid)}]\n\t\t\t\t\t\t\t\t.intoTable(\n\t\t\t\t\t\t\t\t\t${JSON.stringify(this.into.databaseid||e)},\n\t\t\t\t\t\t\t\t\t${JSON.stringify(this.into.tableid)},\n\t\t\t\t\t\t\t\t\tthis.data,\n\t\t\t\t\t\t\t\t\tcolumns,\n\t\t\t\t\t\t\t\t\tcb\n\t\t\t\t\t\t\t\t);`:o.intofns=`alasql\n\t\t\t\t\t\t\t.databases[${JSON.stringify(this.into.databaseid||e)}]\n\t\t\t\t\t\t\t.tables[${JSON.stringify(this.into.tableid)}]\n\t\t\t\t\t\t\t.data.push(r);\n\t\t\t\t\t\t`;else if(this.into instanceof F.VarValue)o.intoallfns=`\n\t\t\t\t\talasql.vars[${JSON.stringify(this.into.variable)}]=this.data;\n\t\t\t\t\tres=this.data.length;\n\t\t\t\t\tif(cb) res = cb(res);\n\t\t\t\t\treturn res;\n\t\t\t\t`;else if(this.into instanceof F.FuncValue){var i="return alasql.into["+JSON.stringify(this.into.funcid.toUpperCase())+"](";this.into.args&&this.into.args.length>0?(i+=this.into.args[0].toJS()+",",this.into.args.length>1?i+=this.into.args[1].toJS()+",":i+="undefined,"):i+="undefined, undefined,",o.intoallfns=i+"this.data,columns,cb)"}else this.into instanceof F.ParamValue&&(o.intofns=`params[${JSON.stringify(this.into.param)}].push(r)`);o.intofns?o.intofn=new Function("r,i,params,alasql","var y;"+o.intofns):o.intoallfns&&(o.intoallfn=new Function("columns,cb,params,alasql","var y;"+o.intoallfns))}var s=function(e,t,r){o.params=e;var i=function(e,t,r,o,i){e.sourceslen=e.sources.length;let s,a=e.sourceslen;if(e.query=e,e.A=void 0,e.B=void 0,e.cb=r,e.oldscope=t,e.queriesfn&&(e.sourceslen+=e.queriesfn.length,a+=e.queriesfn.length,e.queriesdata=[],e.queriesfn.forEach((function(t,n){t.query.params=e.params,k([],-n-1,e)}))),e.scope=t?w(t):{},e.sources.forEach((function(t,r){t.query=e;var o=t.datafn(e,e.params,k,r,n);void 0!==o&&((e.intofn||e.intoallfn)&&Array.isArray(o)&&(o=o.length),s=o),t.queriesdata=e.queriesdata})),0==e.sources.length||0===a)try{s=j(e)}catch(e){if(r)return r(null,e);throw e}return s}(o,r,(function(e,n){if(n)return t(null,n);if(o.rownums.length>0)for(var r=0,i=e.length;r{const r=t.as||t.tableid;if(t instanceof F.Table)e.aliases[r]={tableid:t.tableid,databaseid:t.databaseid||e.database.databaseid,type:"table"};else if(t instanceof F.Select)e.aliases[r]={type:"subquery"};else if(t instanceof F.Search)e.aliases[r]={type:"subsearch"};else if(t instanceof F.ParamValue)e.aliases[r]={type:"paramvalue"};else if(t instanceof F.FuncValue)e.aliases[r]={type:"funcvalue"};else if(t instanceof F.VarValue)e.aliases[r]={type:"varvalue"};else if(t instanceof F.FromData)e.aliases[r]={type:"fromdata"};else if(t instanceof F.Json)e.aliases[r]={type:"json"};else{if(!t.inserted)throw new Error("Wrong table at FROM");e.aliases[r]={type:"inserted"}}const o={alias:r,databaseid:t.databaseid||e.database.databaseid,tableid:t.tableid,joinmode:"INNER",onmiddlefn:a,srcwherefns:"",srcwherefn:a};if(t instanceof F.Table)o.columns=n.databases[o.databaseid].tables[o.tableid].columns,n.options.autocommit&&n.databases[o.databaseid].engineid&&!n.databases[o.databaseid].tables[o.tableid].view?o.datafn=(e,t,n,r,i)=>i.engines[i.databases[o.databaseid].engineid].fromTable(o.databaseid,o.tableid,n,r,e):n.databases[o.databaseid].tables[o.tableid].view?o.datafn=(e,t,n,r,i)=>{let s=i.databases[o.databaseid].tables[o.tableid].select(t);return n&&(s=n(s,r,e)),s}:o.datafn=(e,t,n,r,i)=>{let s=i.databases[o.databaseid].tables[o.tableid].data;return n&&(s=n(s,r,e)),s};else if(t instanceof F.Select)o.subquery=t.compile(e.database.databaseid),void 0===o.subquery.query.modifier&&(o.subquery.query.modifier="RECORDSET"),o.columns=o.subquery.query.columns,o.datafn=(e,t,n,r,i)=>{let s;return o.subquery(e.params,(t=>{s=t.data,n&&(s=n(s,r,e))})),s};else if(t instanceof F.Search)o.subsearch=t,o.columns=[],o.datafn=(e,t,n,r,i)=>{let s;return o.subsearch.execute(e.database.databaseid,e.params,(t=>{s=t,n&&(s=n(s,r,e))})),s};else if(t instanceof F.ParamValue){let e=`var res = alasql.prepareFromData(params['${t.param}']`;t.array&&(e+=",true"),e+=");if(cb)res=cb(res,idx,query);return res",o.datafn=new Function("query,params,cb,idx,alasql",e)}else if(t.inserted){let e="var res = alasql.prepareFromData(alasql.inserted";t.array&&(e+=",true"),e+=");if(cb)res=cb(res,idx,query);return res",o.datafn=new Function("query,params,cb,idx,alasql",e)}else if(t instanceof F.Json){let e="var res = alasql.prepareFromData("+t.toJS();t.array&&(e+=",true"),e+=");if(cb)res=cb(res,idx,query);return res",o.datafn=new Function("query,params,cb,idx,alasql",e)}else if(t instanceof F.VarValue){let e=`var res = alasql.prepareFromData(alasql.vars['${t.variable}']`;t.array&&(e+=",true"),e+=");if(cb)res=cb(res,idx,query);return res",o.datafn=new Function("query,params,cb,idx,alasql",e)}else if(t instanceof F.FuncValue){let e="var res=alasql.from["+JSON.stringify(t.funcid.toUpperCase())+"](";t.args&&t.args.length>0?(t.args[0]?e+=t.args[0].toJS("query.oldscope")+",":e+="null,",t.args[1]?e+=t.args[1].toJS("query.oldscope")+",":e+="null,"):e+="null,null,",e+="cb,idx,query); return res",o.datafn=new Function("query,params,cb,idx,alasql",e)}else{if(!(t instanceof F.FromData))throw new Error("Wrong table at FROM");o.datafn=(e,n,r,o,i)=>{let s=t.data;return r&&(s=r(s,o,e)),s}}e.sources.push(o)})),e.defaultTableid=e.sources[0].alias)},n.prepareFromData=function(e,t){let n=e;if("string"==typeof e)n=e.split(/\r?\n/),t&&(n=n.map((e=>[e])));else if(t)n=e.map((e=>[e]));else if("object"==typeof e&&!Array.isArray(e))if("undefined"!=typeof Mongo&&void 0!==Mongo.Collection&&e instanceof Mongo.Collection)n=e.find().fetch();else{n=[];for(const t in e)e.hasOwnProperty(t)&&n.push([t,e[t]])}return n},F.Select.prototype.compileJoins=function(e){this.joins.forEach((t=>{let r,o,i;if("CROSS"===t.joinmode){if(t.using||t.on)throw new Error("CROSS JOIN cannot have USING or ON clauses");t.joinmode="INNER"}if(t instanceof F.Apply)return i={alias:t.as,applymode:t.applymode,onmiddlefn:a,srcwherefns:"",srcwherefn:a,columns:[]},i.applyselect=t.select.compile(e.database.databaseid),i.columns=i.applyselect.query.columns,i.datafn=function(e,t,n,r,o){let i;return n&&(i=n(i,r,e)),i},void e.sources.push(i);if(t.table){if(r=t.table,i={alias:t.as||r.tableid,databaseid:r.databaseid||e.database.databaseid,tableid:r.tableid,joinmode:t.joinmode,onmiddlefn:a,srcwherefns:"",srcwherefn:a,columns:[]},!n.databases[i.databaseid].tables[i.tableid])throw new Error("Table '"+i.tableid+"' is not exists in database '"+i.databaseid+"'");i.columns=n.databases[i.databaseid].tables[i.tableid].columns,n.options.autocommit&&n.databases[i.databaseid].engineid?i.datafn=function(e,t,n,r,o){return o.engines[o.databases[i.databaseid].engineid].fromTable(i.databaseid,i.tableid,n,r,e)}:n.databases[i.databaseid].tables[i.tableid].view?i.datafn=function(e,t,n,r,o){let s=o.databases[i.databaseid].tables[i.tableid].select(t);return n&&(s=n(s,r,e)),s}:i.datafn=function(e,t,n,r,o){let s=o.databases[i.databaseid].tables[i.tableid].data;return n&&(s=n(s,r,e)),s},e.aliases[i.alias]={tableid:r.tableid,databaseid:r.databaseid||e.database.databaseid}}else if(t.select)r=t.select,i={alias:t.as,joinmode:t.joinmode,onmiddlefn:a,srcwherefns:"",srcwherefn:a,columns:[]},i.subquery=r.compile(e.database.databaseid),void 0===i.subquery.query.modifier&&(i.subquery.query.modifier="RECORDSET"),i.columns=i.subquery.query.columns,i.datafn=function(e,t,n,r,o){i.data=i.subquery(e.params,null,n,r).data;let s=i.data;return n&&(s=n(s,r,e)),s},e.aliases[i.alias]={type:"subquery"};else if(t.param)i={alias:t.as,joinmode:t.joinmode,onmiddlefn:a,srcwherefns:"",srcwherefn:a},o="let res=alasql.prepareFromData(params['"+t.param.param+"']",t.array&&(o+=",true"),o+="); if(cb) res=cb(res, idx, query); return res",i.datafn=new Function("query,params,cb,idx, alasql",o),e.aliases[i.alias]={type:"paramvalue"};else if(t.variable)i={alias:t.as,joinmode:t.joinmode,onmiddlefn:a,srcwherefns:"",srcwherefn:a},o="let res=alasql.prepareFromData(alasql.vars['"+t.variable+"']",t.array&&(o+=", true"),o+="); if(cb)res=cb(res, idx, query);return res",i.datafn=new Function("query,params,cb,idx, alasql",o),e.aliases[i.alias]={type:"varvalue"};else if(t.func){i={alias:t.as,joinmode:t.joinmode,onmiddlefn:a,srcwherefns:"",srcwherefn:a};let n="let res=alasql.from["+JSON.stringify(t.func.funcid.toUpperCase())+"](";const r=t.func.args;r&&r.length>0?(r[0]?n+=r[0].toJS("query.oldscope")+", ":n+="null, ",r[1]?n+=r[1].toJS("query.oldscope")+", ":n+="null, "):n+="null, null, ",n+="cb, idx, query); return res",i.datafn=new Function("query, params, cb, idx, alasql",n),e.aliases[i.alias]={type:"funcvalue"}}const s=i.alias;if(t.natural){if(t.using||t.on)throw new Error("NATURAL JOIN cannot have USING or ON clauses");if(e.sources.length>0){const r=e.sources[e.sources.length-1],o=n.databases[r.databaseid].tables[r.tableid],s=n.databases[i.databaseid].tables[i.tableid];if(!o||!s)throw new Error("In this version of Alasql NATURAL JOIN works for tables with predefined columns only");{const e=o.columns.map((e=>e.columnid)),n=s.columns.map((e=>e.columnid));t.using=A(e,n).map((e=>({columnid:e})))}}}if(t.using){const n=e.sources[e.sources.length-1];i.onleftfns=t.using.map((e=>"p['"+(n.alias||n.tableid)+"']['"+e.columnid+"']")).join('+"`"+'),i.onleftfn=new Function("p,params,alasql","let y;return "+i.onleftfns),i.onrightfns=t.using.map((e=>"p['"+(i.alias||i.tableid)+"']['"+e.columnid+"']")).join('+"`"+'),i.onrightfn=new Function("p,params,alasql","let y;return "+i.onrightfns),i.optimization="ix"}else if(t.on)if(t.on instanceof F.Op&&"="===t.on.op&&!t.on.allsome){i.optimization="ix";let n="",r="",o="",a=!1;const u=t.on.left.toJS("p",e.defaultTableid,e.defcols),c=t.on.right.toJS("p",e.defaultTableid,e.defcols);u.indexOf("p['"+s+"']")>-1&&!(c.indexOf("p['"+s+"']")>-1)?(u.match(/p\['.*?'\]/g)||[]).every((e=>e==="p['"+s+"']"))?r=u:a=!0:!(u.indexOf("p['"+s+"']")>-1)&&c.indexOf("p['"+s+"']")>-1&&(c.match(/p\['.*?'\]/g)||[]).every((e=>e==="p['"+s+"']"))?n=u:a=!0,c.indexOf("p['"+s+"']")>-1&&!(u.indexOf("p['"+s+"']")>-1)?(c.match(/p\['.*?'\]/g)||[]).every((e=>e==="p['"+s+"']"))?r=c:a=!0:!(c.indexOf("p['"+s+"']")>-1)&&u.indexOf("p['"+s+"']")>-1&&(u.match(/p\['.*?'\]/g)||[]).every((e=>e==="p['"+s+"']"))?n=c:a=!0,a&&(r="",n="",o=t.on.toJS("p",e.defaultTableid,e.defcols),i.optimization="no"),i.onleftfns=n,i.onrightfns=r,i.onmiddlefns=o||"true",i.onleftfn=new Function("p,params,alasql","let y;return "+i.onleftfns),i.onrightfn=new Function("p,params,alasql","let y;return "+i.onrightfns),i.onmiddlefn=new Function("p,params,alasql","let y;return "+i.onmiddlefns)}else i.optimization="no",i.onmiddlefns=t.on.toJS("p",e.defaultTableid,e.defcols),i.onmiddlefn=new Function("p,params,alasql","let y;return "+t.on.toJS("p",e.defaultTableid,e.defcols));e.sources.push(i)}))},F.Select.prototype.compileWhere=function(e){if(this.where){if("function"==typeof this.where)return this.where;var t=this.where.toJS("p",e.defaultTableid,e.defcols);return e.wherefns=t,new Function("p,params,alasql","var y;return "+t)}return function(){return!0}},F.Select.prototype.compileWhereJoins=function(e){},F.Select.prototype.compileGroup=function(e){if(e.sources.length>0)var t=e.sources[0].alias;else t="";var n=e.defcols,r=[[]];this.group&&(r=K(this.group,e));var o=[];r.forEach((function(e){o=g(o,e)})),e.allgroups=o,e.ingroup=[];var i="";return r.forEach((function(r){i+="var g=this.xgroups[";var s=r.map((function(t){var n=t.split("\t")[0],r=t.split("\t")[1];return""===n?"1":(e.ingroup.push(n),r)}));0===s.length&&(s=["''"]),i+=s.join('+"`"+'),i+="];if(!g) {this.groups.push((g=this.xgroups[",i+=s.join('+"`"+'),i+="] = {",i+=r.map((function(e){var t=e.split("\t")[0],n=e.split("\t")[1];return""===t?"":"'"+t+"':"+n+","})).join("");var a=y(o,r);i+=a.map((function(e){return"'"+e.split("\t")[0]+"':null,"})).join("");var u="",c="";void 0!==e.groupStar&&(c+="for(var f in p['"+e.groupStar+"']) {g[f]=p['"+e.groupStar+"'][f];};"),i+=e.selectGroup.map((function(r){var o=r.expression.toJS("p",t,n),i=r.nick;let s=e=>e.args[0].toJS("p",t,n);if(r instanceof F.AggrValue){if(r.distinct&&(u+=",g['$$_VALUES_"+i+"']={},g['$$_VALUES_"+i+"']["+o+"]=true"),"SUM"===r.aggregatorid){if("funcid"in r.expression){let e=s(r.expression);return`'${i}':(${e})|| typeof ${e} == 'number' ? ${o} : null,`}return`'${i}':(${o})|| typeof ${o} == 'number' ? ${o} : null,`}if("TOTAL"===r.aggregatorid){if("funcid"in r.expression){let e=s(r.expression);return`'${i}':(${e}) || typeof ${e} == 'number' ?\n\t\t\t\t\t\t\t${e} : ${e} == 'string' && typeof Number(${e}) == 'number' ? Number(${e}) :\n\t\t\t\t\t\t\ttypeof ${e} == 'boolean' ? Number(${e}) : 0,`}return`'${i}':(${o})|| typeof ${o} == 'number' ?\n\t\t\t\t\t\t\t${o} : ${o} == 'string' && typeof Number(${o}) == 'number' ? Number(${o}) :\n\t\t\t\t\t\t\ttypeof ${o} === 'boolean' ? Number(${o}) : 0,`}if("FIRST"===r.aggregatorid||"LAST"===r.aggregatorid)return"'"+i+"':"+o+",";if("MIN"===r.aggregatorid){if("funcid"in r.expression){let e=s(r.expression);return`'${i}': (typeof ${e} == 'number' ? ${o} : typeof ${e} == 'object' ?\n\t\t\t\t\t\t\ttypeof Number(${e}) == 'number' && ${e}!== null? ${o} : null : null),`}return`'${i}': (typeof ${o} == 'number' ? ${o} : typeof ${o} == 'object' ?\n\t\t\t\t\t\t\ttypeof Number(${o}) == 'number' && ${o}!== null? ${o} : null : null),`}if("MAX"===r.aggregatorid){if("funcid"in r.expression){let e=s(r.expression);return`'${i}' : (typeof ${e} == 'number' ? ${o} : typeof ${e} == 'object' ?\n\t\t\t\t\t\t\ttypeof Number(${e}) == 'number' ? ${o} : null : null),`}return`'${i}' : (typeof ${o} == 'number' ? ${o} : typeof ${o} == 'object' ?\n\t\t\t\t\t\t\ttypeof Number(${o}) == 'number' ? ${o} : null : null),`}return"ARRAY"===r.aggregatorid?`'${i}':[${o}],`:"COUNT"===r.aggregatorid?"*"===r.expression.columnid?`'${i}':1,`:`'${i}':(typeof ${o} == "undefined" || ${o} === null) ? 0 : 1,`:"AVG"===r.aggregatorid?(e.removeKeys.push(`_SUM_${i}`),e.removeKeys.push(`_COUNT_${i}`),`'${i}':${o},'_SUM_${i}':(${o})||0,'_COUNT_${i}':(typeof ${o} == "undefined" || ${o} === null) ? 0 : 1,`):"AGGR"===r.aggregatorid?(u+=`,g['${i}']=${r.expression.toJS("g",-1)}`,""):"REDUCE"===r.aggregatorid?(e.aggrKeys.push(r),`'${i}':alasql.aggr['${r.funcid}'](${o},undefined,1),`):""}return""})).join(""),i+="}"+u+",g));"+c+"} else {",i+=e.selectGroup.map((function(e){var r=e.nick,o=e.expression.toJS("p",t,n);let i=e=>e.args[0].toJS("p",t,n);if(e instanceof F.AggrValue){var s="",a="";if(e.distinct&&(s=`if(typeof ${o}!="undefined" && (!g['$$_VALUES_${r}'][${o}])) {`,a=`g['$$_VALUES_${r}'][${o}]=true;}`),"SUM"===e.aggregatorid){if("funcid"in e.expression){let t=i(e.expression);return s+`\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tconst __g_colas = g['${r}'];\n\t\t\t\t\t\t\t\t\tconst __typeof_colexp1 = typeof ${t};\n\n\t\t\t\t\t\t\t\t\tif (__g_colas == null && ${t} == null) {\n\t\t\t\t\t\t\t\t\t\tg['${r}'] = null;\n\t\t\t\t\t\t\t\t\t} else if ((typeof __g_colas !== 'object' && typeof __g_colas !== 'number' && __typeof_colexp1 !== 'object' && __typeof_colexp1 !== 'number') ||\n\t\t\t\t\t\t\t\t\t\t\t (__g_colas == null || (typeof __g_colas !== 'number' && typeof __g_colas !== 'object')) && (${t} == null || (__typeof_colexp1 !== 'number' && __typeof_colexp1 !== 'object'))) {\n\t\t\t\t\t\t\t\t\t\tg['${r}'] = null;\n\t\t\t\t\t\t\t\t\t} else if ((typeof __g_colas !== 'object' && typeof __g_colas !== 'number' && __typeof_colexp1 == 'number') ||\n\t\t\t\t\t\t\t\t\t\t\t (__g_colas == null && __typeof_colexp1 == 'number')) {\n\t\t\t\t\t\t\t\t\t\tg['${r}'] = ${o};\n\t\t\t\t\t\t\t\t\t} else if (typeof __g_colas == 'number' && ${t} == null) {\n\t\t\t\t\t\t\t\t\t\tg['${r}'] = __g_colas;\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tg['${r}'] += ${o} || 0;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t`+a}return s+`\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tconst __g_colas = g['${r}'];\n\t\t\t\t\t\t\t\tconst __typeof_colexp = typeof ${o};\n\n\t\t\t\t\t\t\t\tif (__g_colas == null && ${o} == null) {\n\t\t\t\t\t\t\t\t\tg['${r}'] = null;\n\t\t\t\t\t\t\t\t} else if ((typeof __g_colas !== 'object' && typeof __g_colas !== 'number' && __typeof_colexp !== 'object' && __typeof_colexp !== 'number') ||\n\t\t\t\t\t\t\t\t\t\t (__g_colas == null || (typeof __g_colas !== 'number' && typeof __g_colas !== 'object')) && (${o} == null || (__typeof_colexp !== 'number' && __typeof_colexp !== 'object'))) {\n\t\t\t\t\t\t\t\t\tg['${r}'] = null;\n\t\t\t\t\t\t\t\t} else if (typeof __g_colas !== 'object' && typeof __g_colas !== 'number' && __typeof_colexp == 'number') {\n\t\t\t\t\t\t\t\t\tg['${r}'] = ${o};\n\t\t\t\t\t\t\t\t} else if (typeof __g_colas == 'number' && ${o} == null) {\n\t\t\t\t\t\t\t\t\tg['${r}'] = __g_colas;\n\t\t\t\t\t\t\t\t} else if (__g_colas == null && __typeof_colexp == 'number') {\n\t\t\t\t\t\t\t\t\tg['${r}'] = ${o};\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tg['${r}'] += ${o} || 0;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t`+a}if("TOTAL"===e.aggregatorid)return"funcid"in e.expression?s+`{\n\t\t\t\t\t\t\t\t\tconst __g_colas = g['${r}'];\n\t\t\t\t\t\t\t\t\tconst __colexp1 = ${i(e.expression)};\n\t\t\t\t\t\t\t\t\tconst __typeof_g_colas = typeof __g_colas;\n\t\t\t\t\t\t\t\t\tconst __typeof_colexp1 = typeof __colexp1;\n\n\t\t\t\t\t\t\t\t\tif (__typeof_g_colas == 'string' && !isNaN(__g_colas) && typeof Number(__g_colas) == 'number' &&\n\t\t\t\t\t\t\t\t\t\t__typeof_colexp1 == 'string' && !isNaN(__colexp1) && typeof Number(__colexp1) == 'number') {\n\t\t\t\t\t\t\t\t\t\tg['${r}'] = Number(__g_colas) + Number(__colexp1);\n\t\t\t\t\t\t\t\t\t} else if (__typeof_g_colas == 'string' && __typeof_colexp1 == 'string') {\n\t\t\t\t\t\t\t\t\t\tg['${r}'] = 0;\n\t\t\t\t\t\t\t\t\t} else if (__typeof_g_colas == 'string' && __typeof_colexp1 == 'number') {\n\t\t\t\t\t\t\t\t\t\tg['${r}'] = __colexp1;\n\t\t\t\t\t\t\t\t\t} else if (__typeof_colexp1 == 'string' && __typeof_g_colas == 'number') {\n\t\t\t\t\t\t\t\t\t\tg['${r}'] = __g_colas;\n\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\tg['${r}'] += __colexp1 || 0;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}`+a:s+`{\n\t\t\t\t\t\t\t\tconst __g_colas = g['${r}'];\n\t\t\t\t\t\t\t\tconst __colexp = ${o};\n\t\t\t\t\t\t\t\tconst __typeof_g_colas = typeof __g_colas;\n\t\t\t\t\t\t\t\tconst __typeof_colexp = typeof __colexp;\n\n\t\t\t\t\t\t\t\tif (__typeof_g_colas === 'string' && !isNaN(__g_colas) && typeof Number(__g_colas) === 'number' &&\n\t\t\t\t\t\t\t\t\t__typeof_colexp === 'string' && !isNaN(__colexp) && typeof Number(__colexp) === 'number') {\n\t\t\t\t\t\t\t\t\tg['${r}'] = Number(__g_colas) + Number(__colexp);\n\t\t\t\t\t\t\t\t} else if (__typeof_g_colas === 'string' && __typeof_colexp === 'string') {\n\t\t\t\t\t\t\t\t\tg['${r}'] = 0;\n\t\t\t\t\t\t\t\t} else if (__typeof_g_colas === 'string' && __typeof_colexp === 'number') {\n\t\t\t\t\t\t\t\t\tg['${r}'] = __colexp;\n\t\t\t\t\t\t\t\t} else if (__typeof_colexp === 'string' && __typeof_g_colas === 'number') {\n\t\t\t\t\t\t\t\t\tg['${r}'] = __g_colas;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tg['${r}'] += __colexp || 0;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t`+a;if("COUNT"===e.aggregatorid)return"*"===e.expression.columnid?`${s}\n\t\t\t\t\t\t\t\tg['${r}']++;\n\t\t\t\t\t\t\t\t${a}`:`${s}\n\t\t\t\t\t\t\tif(typeof ${o}!="undefined" && ${o} !== null) g['${r}']++;\n\t\t\t\t\t\t\t${a}`;if("ARRAY"===e.aggregatorid)return s+"g['"+r+"'].push("+o+");"+a;if("MIN"===e.aggregatorid){if("funcid"in e.expression){let t=i(e.expression);return s+`if((g['${r}'] == null && ${t}!== null) ? y = ${o} : (g['${r}']!== null &&\n\t\t\t\t\t\t\t${t} == null) ? y = g['${r}']:((y=${o}) < g['${r}'])){ if(typeof y == 'number')\n\t\t\t\t\t\t\t{g['${r}'] = y;}else if(typeof y == 'object' && y instanceof Date){g['${r}'] = y;}\n\t\t\t\t\t\t\telse if(typeof y == 'object' && typeof Number(y) == 'number'){g['${r}'] = Number(y);}}\n\t\t\t\t\t\t\telse if(g['${r}']!== null && typeof g['${r}'] == 'object' && y instanceof Date){g['${r}'] = g['${r}']}\n\t\t\t\t\t\t\telse if(g['${r}']!== null && typeof g['${r}'] == 'object'){g['${r}'] = Number(g['${r}'])}`+a}return s+`if((g['${r}'] == null && ${o}!== null) ? y = ${o} : (g['${r}']!== null &&\n\t\t\t\t\t\t\t${o} == null) ? y = g['${r}']:((y=${o}) < g['${r}'])){ if(typeof y == 'number')\n\t\t\t\t\t\t\t{g['${r}'] = y;}else if(typeof y == 'object' && y instanceof Date){g['${r}'] = y;}\n\t\t\t\t\t\t\telse if(typeof y == 'object' && typeof Number(y) == 'number'){g['${r}'] = Number(y);}}\n\t\t\t\t\t\t\telse if(g['${r}']!== null && typeof g['${r}'] == 'object' && y instanceof Date){g['${r}'] = g['${r}']}\n\t\t\t\t\t\t\telse if(g['${r}']!== null && typeof g['${r}'] == 'object'){g['${r}'] = Number(g['${r}'])}`+a}if("MAX"===e.aggregatorid){if("funcid"in e.expression){let t=i(e.expression);return s+`if((g['${r}'] == null && ${t}!== null) ? y = ${o} : (g['${r}']!== null &&\n\t\t\t\t\t\t\t${t} == null) ? y = g['${r}']:((y=${o}) > g['${r}'])){ if(typeof y == 'number')\n\t\t\t\t\t\t\t{g['${r}'] = y;}else if(typeof y == 'object' && y instanceof Date){g['${r}'] = y;}\n\t\t\t\t\t\t\telse if(typeof y == 'object' && typeof Number(y) == 'number'){g['${r}'] = Number(y);}}\n\t\t\t\t\t\t\telse if(g['${r}']!== null && typeof g['${r}'] == 'object' && y instanceof Date){g['${r}'] = g['${r}']}\n\t\t\t\t\t\t\telse if(g['${r}']!== null && typeof g['${r}'] == 'object'){g['${r}'] = Number(g['${r}'])}`+a}return s+`if((g['${r}'] == null && ${o}!== null) ? y = ${o} : (g['${r}']!== null &&\n\t\t\t\t\t\t\t${o} == null) ? y = g['${r}']:((y=${o}) > g['${r}'])){ if(typeof y == 'number')\n\t\t\t\t\t\t\t{g['${r}'] = y;}else if(typeof y == 'object' && y instanceof Date){g['${r}'] = y;}\n\t\t\t\t\t\t\telse if(typeof y == 'object' && typeof Number(y) == 'number'){g['${r}'] = Number(y);}}\n\t\t\t\t\t\t\telse if(g['${r}']!== null && typeof g['${r}'] == 'object' && y instanceof Date){g['${r}'] = g['${r}']}\n\t\t\t\t\t\t\telse if(g['${r}']!== null && typeof g['${r}'] == 'object'){g['${r}'] = Number(g['${r}'])}`+a}return"FIRST"===e.aggregatorid?"":"LAST"===e.aggregatorid?`${s}g['${r}']=${o};${a}`:"AVG"===e.aggregatorid?`${s}\n\t\t\t\t\t\t\tg['_SUM_${r}'] += (y=${o})||0;\n\t\t\t\t\t\t\tg['_COUNT_${r}'] += (typeof y == "undefined" || y === null) ? 0 : 1;\n\t\t\t\t\t\t\tg['${r}']=g['_SUM_${r}'] / g['_COUNT_${r}'];\n\t\t\t\t\t\t\t${a}`:"AGGR"===e.aggregatorid?`${s}\n\t\t\t\t\t\t\tg['${r}']=${e.expression.toJS("g",-1)};\n\t\t\t\t\t\t\t${a}`:"REDUCE"===e.aggregatorid?`${s}\n\t\t\t\t\t\t\tg['${r}'] = alasql.aggr.${e.funcid}(${o},g['${r}'],2);\n\t\t\t\t\t\t\t${a}`:""}return""})).join(""),i+="}"})),new Function("p,params,alasql","var y;"+i)},F.Select.prototype.compileSelect1=function(e,t){var r=this;e.columns=[],e.xcolumns={},e.selectColumns={},e.dirtyColumns=!1;var o="var r={",s="",a=[];return this.columns.forEach((function(o){if(o instanceof F.Column)if("*"===o.columnid)if(o.func)s+="r=params['"+o.param+"'](p['"+e.sources[0].alias+"'],p,params,alasql);";else if(o.tableid)(c=H(e,[o.tableid],!1)).s&&(a=a.concat(c.s)),s+=c.sp;else{var c;(c=H(e,Object.keys(e.aliases),!0)).s&&(a=a.concat(c.s)),s+=c.sp}else{var l=o.tableid,h=o.databaseid||e.sources[0].databaseid||e.database.databaseid;if(l||(l=e.defcols[o.columnid]),l||(l=e.defaultTableid),"_"!==o.columnid?t&&t.length>1&&Array.isArray(t[0])&&t[0].length>=1&&t[0][0].hasOwnProperty("sheetid")?s='var r={};var w=p["'+l+'"];var cols=['+r.columns.map((function(e){return"'"+e.columnid+"'"})).join(",")+"];var colas=["+r.columns.map((function(e){return"'"+(e.as||e.columnid)+"'"})).join(",")+"];for (var i=0;i0){var d=p[o.columnid];if(void 0===d)throw new Error("Column does not exist: "+o.columnid);var E={columnid:o.as||o.columnid,dbtypeid:d.dbtypeid,dbsize:d.dbsize,dbpecision:d.dbprecision,dbenum:d.dbenum};e.columns.push(E),e.xcolumns[E.columnid]=E}else E={columnid:o.as||o.columnid},e.columns.push(E),e.xcolumns[E.columnid]=E,e.dirtyColumns=!0}else E={columnid:o.as||o.columnid},e.columns.push(E),e.xcolumns[E.columnid]=E}else o instanceof F.AggrValue?(r.group||(r.group=[""]),o.as||(o.as=u(o.toString())),"SUM"===o.aggregatorid||"MAX"===o.aggregatorid||"MIN"===o.aggregatorid||"FIRST"===o.aggregatorid||"LAST"===o.aggregatorid||"AVG"===o.aggregatorid||"ARRAY"===o.aggregatorid||"REDUCE"===o.aggregatorid||"TOTAL"===o.aggregatorid?a.push("'"+u(o.as)+"':"+i(o.expression.toJS("p",e.defaultTableid,e.defcols))):"COUNT"===o.aggregatorid&&a.push("'"+u(o.as)+"':1"),E={columnid:o.as||o.columnid||o.toString()},e.columns.push(E),e.xcolumns[E.columnid]=E):(a.push("'"+u(o.as||o.columnid||o.toString())+"':"+i(o.toJS("p",e.defaultTableid,e.defcols))),e.selectColumns[u(o.as||o.columnid||o.toString())]=!0,E={columnid:o.as||o.columnid||o.toString()},e.columns.push(E),e.xcolumns[E.columnid]=E)})),o+(a.join(",")+"};")+s},F.Select.prototype.compileSelect2=function(e,t){var n=e.selectfns;return this.orderColumns&&this.orderColumns.length>0&&this.orderColumns.forEach((function(r,o){var i="$$$"+o;r instanceof F.Column&&e.xcolumns[r.columnid]?n+="r['"+i+"']=r['"+r.columnid+"'];":r instanceof F.ParamValue&&e.xcolumns[t[r.param]]?n+="r['"+i+"']=r['"+t[r.param]+"'];":n+="r['"+i+"']="+r.toJS("p",e.defaultTableid,e.defcols)+";",e.removeKeys.push(i)})),new Function("p,params,alasql","var y;"+n+"return r")},F.Select.prototype.compileSelectGroup0=function(e){var t=this;t.columns.forEach((function(n,r){if(n instanceof F.Column&&"*"===n.columnid)e.groupStar=n.tableid||"default";else{var o;o=n instanceof F.Column?u(n.columnid):u(n.toString(!0));for(var i=0;i-1&&(t.group[s].nick=o)}!n.funcid||"ROWNUM"!==n.funcid.toUpperCase()&&"ROW_NUMBER"!==n.funcid.toUpperCase()||e.rownums.push(n.as)}})),this.columns.forEach((function(t){t.findAggregator&&t.findAggregator(e)})),this.having&&this.having.findAggregator&&this.having.findAggregator(e)},F.Select.prototype.compileSelectGroup1=function(e){var t="var r = {};";return this.columns.forEach((function(n){if(n instanceof F.Column&&"*"===n.columnid)return t+="for(var k in g) {r[k]=g[k]};","";var r=n.as;void 0===r&&(r=n instanceof F.Column?u(n.columnid):n.nick),e.groupColumns[r]=n.nick,t+="r['"+r+"']=",t+=i(n.toJS("g",""))+";";for(var o=0;o-1&&(t+="r['"+(n.as||n.nick)+"']=g['"+n.nick+"'];")})),this.orderColumns&&this.orderColumns.length>0&&this.orderColumns.forEach((function(n,r){var o="$$$"+r;n instanceof F.Column&&e.groupColumns[n.columnid]?t+="r['"+o+"']=r['"+n.columnid+"'];":t+="r['"+o+"']="+n.toJS("g","")+";",e.removeKeys.push(o)})),new Function("g,params,alasql","var y;"+t+"return r")},F.Select.prototype.compileRemoveColumns=function(e){void 0!==this.removecolumns&&(e.removeKeys=e.removeKeys.concat(this.removecolumns.filter((function(e){return void 0===e.like})).map((function(e){return e.columnid}))),e.removeLikeKeys=this.removecolumns.filter((function(e){return void 0!==e.like})).map((function(e){return e.like.value})))},F.Select.prototype.compileHaving=function(e){if(this.having){var t=this.having.toJS("g",-1);return e.havingfns=t,new Function("g,params,alasql","var y;return "+t)}return function(){return!0}},F.Select.prototype.compileOrder=function(e,t){var r=this;if(r.orderColumns=[],this.order){if(this.order&&1==this.order.length&&this.order[0].expression&&"function"==typeof this.order[0].expression){var o=this.order[0].expression,i="FIRST"==this.order[0].nullsOrder?-1:"LAST"==this.order[0].nullsOrder?1:0;return function(e,t){var n=o(e),r=o(t);if(i){if(null==n)return null==r?0:i;if(null==r)return-i}return n>r?1:n==r?0:-1}}var s="",a="";return this.order.forEach((function(o,i){if(o.expression instanceof F.NumValue){if(o.expression.value>r.columns.length)throw new Error(`You are trying to order by column number ${o.expression.value} but you have only selected ${r.columns.length} columns.`);var u=r.columns[o.expression.value-1]}else u=o.expression;r.orderColumns.push(u);var c="$$$"+i,l="";if(o.expression instanceof F.Column){var h=o.expression.columnid;n.options.valueof?l=".valueOf()":e.xcolumns[h]&&("DATE"!=(f=e.xcolumns[h].dbtypeid)&&"DATETIME"!=f&&"DATETIME2"!=f&&"STRING"!=f&&"NUMBER"!=f||(l=".valueOf()"))}if(o.expression instanceof F.ParamValue)if(h=t[o.expression.param],n.options.valueof)l=".valueOf()";else if(e.xcolumns[h]){var f;"DATE"!=(f=e.xcolumns[h].dbtypeid)&&"DATETIME"!=f&&"DATETIME2"!=f&&"STRING"!=f&&"NUMBER"!=f||(l=".valueOf()")}o.nocase&&(l+=".toUpperCase()"),o.nullsOrder&&("FIRST"==o.nullsOrder?s+="if((a['"+c+"'] != null) && (b['"+c+"'] == null)) return 1;":"LAST"==o.nullsOrder&&(s+="if((a['"+c+"'] == null) && (b['"+c+"'] != null)) return 1;"),s+="if((a['"+c+"'] == null) == (b['"+c+"'] == null)) {",a+="}"),s+="if((a['"+c+"']||'')"+l+("ASC"==o.direction?">":"<")+"(b['"+c+"']||'')"+l+")return 1;",s+="if((a['"+c+"']||'')"+l+"==(b['"+c+"']||'')"+l+"){",a+="}"})),s+="return 0;",s+=a+"return -1",e.orderfns=s,new Function("a,b","var y;"+s)}},F.Select.prototype.compilePivot=function(e){var t,r=this,o=r.pivot.columnid,i=r.pivot.expr.aggregatorid,s=r.pivot.inlist;if(null==(t=r.pivot.expr.expression.hasOwnProperty("columnid")?r.pivot.expr.expression.columnid:r.pivot.expr.expression.expression.columnid))throw"columnid not found";return s&&(s=s.map((function(e){return e.expr.columnid}))),function(){var e=this,r=e.columns.filter((function(e){return e.columnid!=o&&e.columnid!=t})).map((function(e){return e.columnid})),a=[],u={},c={},l={},h=[];if(e.data.forEach((function(e){if(!s||s.indexOf(e[o])>-1){var f=r.map((function(t){return e[t]})).join("`"),p=c[f];if(p||(p={},c[f]=p,h.push(p),r.forEach((function(t){p[t]=e[t]}))),l[f]||(l[f]={}),l[f][e[o]]?l[f][e[o]]++:l[f][e[o]]=1,u[e[o]]||(u[e[o]]=!0,a.push(e[o])),"SUM"==i||"AVG"==i||"TOTAL"==i)void 0===p[e[o]]&&(p[e[o]]=0),p[e[o]]+=+e[t];else if("COUNT"==i)void 0===p[e[o]]&&(p[e[o]]=0),p[e[o]]++;else if("MIN"==i)void 0===p[e[o]]&&(p[e[o]]=e[t]),e[t]p[e[o]]&&(p[e[o]]=e[t]);else if("FIRST"==i)void 0===p[e[o]]&&(p[e[o]]=e[t]);else if("LAST"==i)p[e[o]]=e[t];else{if(!n.aggr[i])throw new Error("Wrong aggregator in PIVOT clause");n.aggr[i](p[e[o]],e[t])}}})),"AVG"==i)for(var f in c){var p=c[f];for(var d in p)-1==r.indexOf(d)&&d!=t&&(p[d]=p[d]/l[f][d])}e.data=h,s&&(a=s);var E=e.columns.filter((function(e){return e.columnid==t}))[0];e.columns=e.columns.filter((function(e){return!(e.columnid==o||e.columnid==t)})),a.forEach((function(t){var n=w(E);n.columnid=t,e.columns.push(n)}))}},F.Select.prototype.compileUnpivot=function(e){var t=this,n=t.unpivot.tocolumnid,r=t.unpivot.forcolumnid,o=t.unpivot.inlist.map((function(e){return e.columnid}));return function(){var t=[],i=e.columns.map((function(e){return e.columnid})).filter((function(e){return-1==o.indexOf(e)&&e!=r&&e!=n}));e.data.forEach((function(e){o.forEach((function(o){var s={};i.forEach((function(t){s[t]=e[t]})),s[r]=o,s[n]=e[o],t.push(s)}))})),e.data=t}};const Q=(e,t)=>{const n=[];let r=0;const o=e.length;for(let i=0;i{const n=[],r=e.length,o=1<e.reduce(((e,n)=>e.concat(K(n,t))),[]),q=(e,t)=>{const n=[];for(let r=0;rn.concat(`${e[r].nick}\t${e[r].toJS("p",t.sources[0].alias,t.defcols)}`)));else if(e[r]instanceof F.FuncValue)t.groupColumns[u(e[r].toString())]=u(e[r].toString()),n=n.map((n=>n.concat(`${u(e[r].toString())}\t${e[r].toJS("p",t.sources[0].alias,t.defcols)}`)));else if(e[r]instanceof F.GroupExpression)if("ROLLUP"==e[r].type)n=q(n,Q(e[r].group,t));else if("CUBE"==e[r].type)n=q(n,W(e[r].group,t));else{if("GROUPING SETS"!=e[r].type)throw new Error("Unknown grouping function");n=q(n,z(e[r].group,t))}else n=""===e[r]?[["1\t1"]]:n.map((n=>n.concat(`${u(e[r].toString())}\t${e[r].toJS("p",t.sources[0].alias,t.defcols)}`)));return n}return e instanceof F.FuncValue?(t.groupColumns[u(e.toString())]=u(e.toString()),[`${e.toString()}\t${e.toJS("p",t.sources[0].alias,t.defcols)}`]):e instanceof F.Column?(e.nick=u(e.columnid),t.groupColumns[e.nick]=e.nick,[`${e.nick}\t${e.toJS("p",t.sources[0].alias,t.defcols)}`]):(t.groupColumns[u(e.toString())]=u(e.toString()),[`${u(e.toString())}\t${e.toJS("p",t.sources[0].alias,t.defcols)}`])}F.Select.prototype.compileDefCols=function(e,t){var r={".":{}};return this.from&&this.from.forEach((function(e){if(r["."][e.as||e.tableid]=!0,e instanceof F.Table){var o=e.as||e.tableid,i=n.databases[e.databaseid||t].tables[e.tableid];if(void 0===i)throw new Error("Table does not exist: "+e.tableid);i.columns&&i.columns.forEach((function(e){r[e.columnid]?r[e.columnid]="-":r[e.columnid]=o}))}else if(e instanceof F.Select);else if(e instanceof F.Search);else if(e instanceof F.ParamValue);else if(e instanceof F.VarValue);else if(e instanceof F.FuncValue);else if(e instanceof F.FromData);else if(e instanceof F.Json);else if(!e.inserted)throw new Error("Unknown type of FROM clause")})),this.joins&&this.joins.forEach((function(e){if(r["."][e.as||e.table.tableid]=!0,e.table){var o=e.as||e.table.tableid,i=e.table.databaseid||t,s=n.databases[i];if(void 0===s)throw new Error("Database does not exist: "+i);var a=s.tables[e.table.tableid];if(void 0===a)throw new Error("Table does not exist: "+e.table.tableid);a.columns&&a.columns.forEach((function(e){r[e.columnid]?r[e.columnid]="-":r[e.columnid]=o}))}else if(e.select);else if(e.param);else if(!e.func)throw new Error("Unknown type of FROM clause")})),r},F.Union=class{constructor(e){Object.assign(this,e)}toString(){return"UNION"}compile(e){return null}},F.Apply=class{constructor(e){Object.assign(this,e)}toString(){let e=`${this.applymode} APPLY (${this.select.toString()})`;return this.as&&(e+=` AS ${this.as}`),e}},F.Over=class{constructor(e){Object.assign(this,e)}toString(){let e="OVER (";return this.partition&&(e+=`PARTITION BY ${this.partition.toString()}`,this.order&&(e+=" ")),this.order&&(e+=`ORDER BY ${this.order.toString()}`),e+=")",e}};{const e=Object.assign;class t{constructor(t){e(this,t)}toString(){return this.expression.toString()}execute(e,t,r){if(this.expression){n.precompile(this,e,t);var o=new Function("params,alasql,p","var y;return "+this.expression.toJS("({})","",null)).bind(this)(t,n);return r&&(o=r(o)),o}}}class r{constructor(t){e(this,t)}toString(){var e=this.expression.toString();return this.order&&(e+=" "+this.order.toString()),this.nocase&&(e+=" COLLATE NOCASE"),this.direction&&(e+=" "+this.direction),e}findAggregator(e){this.expression.findAggregator&&this.expression.findAggregator(e)}toJS(e,t,n){return this.expression.reduced?"true":this.expression.toJS(e,t,n)}compile(e,t,n){return!!this.reduced||new Function("p","var y;return "+this.toJS(e,t,n))}}class o{constructor(t){e(this,t)}toString(){return"``"+this.value+"``"}toJS(){return"("+this.value+")"}execute(e,t,r){var o=1;return new Function("params,alasql,p",this.value)(t,n),r&&(o=r(o)),o}}class i{constructor(t){e(this,t)}toString(){var e=this.value;return this.value1&&(e=this.value1+"."+e),e}}class s{constructor(t){e(this,t)}toString(){var e=" ";return this.joinmode&&(e+=this.joinmode+" "),e+"JOIN "+this.table.toString()}}class a{constructor(t){e(this,t)}toString(){var e=this.tableid;return this.databaseid&&(e=this.databaseid+"."+e),e}}class c{constructor(t){e(this,t)}toString(){var e=this.viewid;return this.databaseid&&(e=this.databaseid+"."+e),e}}const l=new Set(["-","*","/","%","^"]),h=new Set(["||"]),f=new Set(["AND","OR","NOT","=","==","===","!=","!==","!===",">",">=","<","<=","IN","NOT IN","LIKE","NOT LIKE","REGEXP","GLOB","BETWEEN","NOT BETWEEN","IS NULL","IS NOT NULL"]);class p{constructor(t){e(this,t)}toString(){const e=this.left.toString();let t;return"IN"===this.op||"NOT IN"===this.op?`${e} ${this.op} (${this.right.toString()})`:this.allsome?`${e} ${this.op} ${this.allsome} (${this.right.toString()})`:"->"===this.op||"!"===this.op?(t=`${e}${this.op}`,"string"!=typeof this.right&&"number"!=typeof this.right?t+`(${this.right.toString()})`:t+this.right.toString()):"BETWEEN"===this.op||"NOT BETWEEN"===this.op?`${e} ${this.op} ${this.right1.toString()} AND ${this.right2.toString()}`:`${e} ${this.op} ${this.allsome?this.allsome+" ":""}${this.right.toString()}`}findAggregator(e){this.left&&this.left.findAggregator&&this.left.findAggregator(e),this.right&&this.right.findAggregator&&!this.allsome&&this.right.findAggregator(e)}toType(e){if(l.has(this.op))return"number";if(h.has(this.op))return"string";if("+"===this.op){const t=this.left.toType(e),n=this.right.toType(e);if("string"===t||"string"===n)return"string";if("number"===t||"number"===n)return"number"}return f.has(this.op)||this.allsome?"boolean":this.op?"unknown":this.left.toType(e)}toJS(e,t,r){let o=[],i=this.op,s=this,a=function(n){return n.toJS&&(n=n.toJS(e,t,r)),"y["+(o.push(n)-1)+"]"};var c,l=function(){return a(s.left)},h=function(){return a(s.right)};if("="===this.op)i="===";else if("<>"===this.op)i="!=";else if("OR"===this.op)i="||";else if("->"===this.op){const e=`(${l()} || {})`;if("string"==typeof this.right)c=`${e}["${u(this.right)}"]`;else if("number"==typeof this.right)c=`${e}[${this.right}]`;else if(this.right instanceof F.FuncValue){let t=[];this.right.args&&this.right.args.length>0&&(t=this.right.args.map(a)),c=`${e}[${JSON.stringify(this.right.funcid)}](${t.join(",")})`}else c=`${e}[${h()}]`}else if("!"===this.op)"string"==typeof this.right&&(c=`alasql.databases[alasql.useid].objects[${l()}]["${this.right}"]`);else if("IS"===this.op){const e=l(),t=h();c=this.right instanceof F.NullValue||"NOT"===this.right.op&&this.right.right instanceof F.NullValue?`((${e} == null) === (${t} == null))`:`((${e} == ${t}) || (${e} < 0 && true == ${t}))`}else if("=="===this.op)c=`alasql.utils.deepEqual(${l()}, ${h()})`;else if("==="===this.op||"!==="===this.op)c=`(${"!==="===this.op?"!":""}((${l()}).valueOf() === (${h()}).valueOf()))`;else if("!=="===this.op)c=`(!alasql.utils.deepEqual(${l()}, ${h()}))`;else if("||"===this.op)c=`(''+(${l()} || '') + (${h()} || ''))`;else if("LIKE"===this.op||"NOT LIKE"===this.op)c=`(${"NOT LIKE"===this.op?"!":""}alasql.utils.like(${h()}, ${l()}${this.escape?`, ${a(this.escape)}`:""}))`;else if("REGEXP"===this.op)c=`alasql.stdfn.REGEXP_LIKE(${l()}, ${h()})`;else if("GLOB"===this.op)c=`alasql.utils.glob(${l()}, ${h()})`;else if("BETWEEN"===this.op||"NOT BETWEEN"===this.op){const e=l();c=`(${"NOT BETWEEN"===this.op?"!":""}((${a(this.right1)} <= ${e}) && (${e} <= ${a(this.right2)})))`}else if("IN"===this.op)if(this.right instanceof F.Select)c=`alasql.utils.flatArray(this.queriesfn[${this.queriesidx}](params, null, ${e})).indexOf(alasql.utils.getValueOf(${l()})) > -1`;else if(Array.isArray(this.right))if(!n.options.cache||this.right.some((e=>e instanceof F.ParamValue)))c=`(new Set([${this.right.map(a).join(",")}]).has(alasql.utils.getValueOf(${l()})))`;else{n.sets=n.sets||{};const e=this.right.map((e=>e.value)),t=e.join(",");n.sets[t]=n.sets[t]||new Set(e),c=`alasql.sets["${t}"].has(alasql.utils.getValueOf(${l()}))`}else c=`(${h()}.indexOf(${l()}) > -1)`;else if("NOT IN"===this.op)if(this.right instanceof F.Select)c=`alasql.utils.flatArray(this.queriesfn[${this.queriesidx}](params, null, p)).indexOf(alasql.utils.getValueOf(${l()})) < 0`;else if(Array.isArray(this.right))if(!n.options.cache||this.right.some((e=>e instanceof F.ParamValue)))c=`(!(new Set([${this.right.map(a).join(",")}]).has(alasql.utils.getValueOf(${l()}))))`;else{n.sets=n.sets||{};const e=this.right.map((e=>e.value)),t=e.join(",");n.sets[t]=n.sets[t]||new Set(e),c=`!alasql.sets["${t}"].has(alasql.utils.getValueOf(${l()}))`}else c=`(${h()}.indexOf(${l()}) === -1)`;if("ALL"===this.allsome)if(this.right instanceof F.Select)c="alasql.utils.flatArray(this.query.queriesfn["+this.queriesidx+"](params,null,p))",c+=".every(function(b){return (",c+=l()+")"+i+"b})";else{if(!Array.isArray(this.right))throw new Error("NOT IN operator without SELECT");c=""+(1==this.right.length?a(this.right[0]):"["+this.right.map(a).join(",")+"]"),c+=".every(function(b){return (",c+=l()+")"+i+"b})"}if("SOME"===this.allsome||"ANY"===this.allsome)if(this.right instanceof F.Select)c="alasql.utils.flatArray(this.query.queriesfn["+this.queriesidx+"](params,null,p))",c+=".some(function(b){return (",c+=l()+")"+i+"b})";else{if(!Array.isArray(this.right))throw new Error("SOME/ANY operator without SELECT");c=""+(1==this.right.length?a(this.right[0]):"["+this.right.map(a).join(",")+"]"),c+=".some(function(b){return (",c+=l()+")"+i+"b})"}if("AND"===this.op){if(this.left.reduced){if(this.right.reduced)return"true";c=h()}else this.right.reduced&&(c=l());i="&&"}var f=c||"("+l()+i+h()+")",p="y=[("+o.join("), (")+")]";return"&&"===i||"||"===i||"IS"===i||"IS NULL"===i||"IS NOT NULL"===i?"("+p+", "+f+")":`(${p}, y.some(e => e == null) ? void 0 : ${f})`}}class d{constructor(t){e(this,t)}toString(){return"@"+this.variable}toType(){return"unknown"}toJS(){return"alasql.vars['"+u(this.variable)+"']"}}class E{constructor(t){e(this,t)}toString(){return this.value.toString()}toType(){return"number"}toJS(){return""+this.value}}class m{constructor(t){e(this,t)}toString(){return"'"+this.value.toString()+"'"}toType(){return"string"}toJS(){return"'"+u(this.value)+"'"}}class _{constructor(t){e(this,t)}toString(){return"VALUE"}toType(){return"object"}toJS(e,t,n){return e}}class g{constructor(t){e(this,t)}toString(){return"ARRAY[]"}toType(){return"object"}toJS(e,t,n){return"[("+this.value.map((function(r){return r.toJS(e,t,n)})).join("), (")+")]"}}class y{constructor(t){e(this,t)}toString(){return this.value?"TRUE":"FALSE"}toType(){return"boolean"}toJS(){return this.value?"true":"false"}}class A{constructor(t){e(this,t)}toString(){return"NULL"}toJS(){return"undefined"}}class v{constructor(t){e(this,t)}toString(){return"$"+this.param}toJS(){return"string"==typeof this.param?"params['"+this.param+"']":"params["+this.param+"]"}}const b={"~":"~","-":"-","+":"+",NOT:"!"};class T{constructor(t){e(this,t)}toString(){const{op:e,right:t}=this,n=t.toString();switch(e){case"~":case"-":case"+":case"#":return e+n;case"NOT":return e+"("+n+")";default:return"("+n+")"}}findAggregator(e){this.right.findAggregator&&this.right.findAggregator(e)}toType(){switch(this.op){case"-":case"+":return"number";case"NOT":return"boolean";default:return"string"}}toJS(e,t,n){if(this.right instanceof w&&"#"===this.op)return`(alasql.databases[alasql.useid].objects['${this.right.columnid}'])`;const r=this.right.toJS(e,t,n);if(b.hasOwnProperty(this.op))return`(${b[this.op]}(${r}))`;if(null==this.op)return`(${r})`;throw new Error(`Unsupported operator: ${this.op}`)}}class w{constructor(t){e(this,t)}toString(){let e=this.columnid;return this.columnid==+this.columnid&&(e="["+this.columnid+"]"),this.tableid&&(e=this.tableid+(this.columnid===+this.columnid?"":".")+e,this.databaseid&&(e=this.databaseid+"."+e)),e}toJS(e,t,n){if(!this.tableid&&""===t&&!n)return"_"!==this.columnid?`${e}['${this.columnid}']`:"g"===e?"g['_']":e;if("g"===e)return`g['${this.nick}']`;if(this.tableid)return"_"!==this.columnid?`${e}['${this.tableid}']['${this.columnid}']`:"g"===e?"g['_']":`${e}['${this.tableid}']`;if(n){const r=n[this.columnid];if("-"===r)throw new Error(`Cannot resolve column "${this.columnid}" because it exists in two source tables`);return r?"_"!==this.columnid?`${e}['${r}']['${this.columnid}']`:`${e}['${r}']`:"_"!==this.columnid?`${e}['${this.tableid||t}']['${this.columnid}']`:`${e}['${this.tableid||t}']`}return-1===t?`${e}['${this.columnid}']`:"_"!==this.columnid?`${e}['${this.tableid||t}']['${this.columnid}']`:`${e}['${this.tableid||t}']`}}class O{constructor(t){e(this,t)}toString(){return`${"REDUCE"===this.aggregatorid?this.funcid.replace(X,""):this.aggregatorid}(${this.distinct?"DISTINCT ":""}${this.expression?this.expression.toString():""})${this.over?` ${this.over.toString()}`:""}`}findAggregator(e){const t=u(this.toString())+":"+e.selectGroup.length;this.nick||(this.nick=t,e.removeKeys.includes(t)||e.removeKeys.push(t)),e.selectGroup.push(this)}toType(){return["SUM","COUNT","AVG","MIN","MAX","AGGR","VAR","STDDEV","TOTAL"].includes(this.aggregatorid)?"number":"ARRAY"===this.aggregatorid?"array":this.expression.toType()}toJS(){var e=this.nick;return void 0===e&&(e=u(this.toString())),"g['"+e+"']"}}class R{constructor(t){e(this,t)}}R.prototype.toString=r.prototype.toString;class S{constructor(t){e(this,t)}toString(){return this.type+"("+this.group.toString()+")"}}e(F,{AggrValue:O,ArrayValue:g,Column:w,DomainValueValue:_,Expression:r,ExpressionStatement:t,GroupExpression:S,JavaScript:o,Join:s,Literal:i,LogicValue:y,NullValue:A,NumValue:E,Op:p,OrderExpression:R,ParamValue:v,StringValue:m,Table:a,UniOp:T,VarValue:d,View:c})}F.FromData=function(e){return F.extend(this,e)},F.FromData.prototype.toString=function(){return this.data?"DATA("+(1e16*Math.random()|0)+")":"?"},F.FromData.prototype.toJS=function(){},F.Select.prototype.exec=function(e,t){this.preparams&&(e=this.preparams.concat(e));var r=n.useid,o=n.databases[r],i=this.toString(),s=_(i),a=this.compile(r);if(a)return a.sql=i,a.dbversion=o.dbversion,o.sqlCacheSize>n.MAXSQLCACHESIZE&&o.resetSqlCache(),o.sqlCacheSize++,o.sqlCache[s]=a,n.res=a(e,t)},F.Select.prototype.Select=function(){var e=this,t=[];if(arguments.length>1)t=Array.prototype.slice.call(arguments);else{if(1!=arguments.length)throw new Error("Wrong number of arguments of Select() function");t=Array.isArray(arguments[0])?arguments[0]:[arguments[0]]}return e.columns=[],t.forEach((function(t){if("string"==typeof t)e.columns.push(new F.Column({columnid:t}));else if("function"==typeof t){var n=0;e.preparams?n=e.preparams.length:e.preparams=[],e.preparams.push(t),e.columns.push(new F.Column({columnid:"*",func:t,param:n}))}})),e},F.Select.prototype.From=function(e){var t=this;if(t.from||(t.from=[]),Array.isArray(e)){var n=0;t.preparams?n=t.preparams.length:t.preparams=[],t.preparams.push(e),t.from.push(new F.ParamValue({param:n}))}else{if("string"!=typeof e)throw new Error("Unknown arguments in From() function");t.from.push(new F.Table({tableid:e}))}return t},F.Select.prototype.OrderBy=function(){var e=this,t=[];if(e.order=[],0==arguments.length)t=["_"];else if(arguments.length>1)t=Array.prototype.slice.call(arguments);else{if(1!=arguments.length)throw new Error("Wrong number of arguments of Select() function");t=Array.isArray(arguments[0])?arguments[0]:[arguments[0]]}return t.length>0&&t.forEach((function(t){var n=new F.Column({columnid:t});"function"==typeof t&&(n=t),e.order.push(new F.OrderExpression({expression:n,direction:"ASC"}))})),e},F.Select.prototype.Top=function(e){return this.top=new F.NumValue({value:e}),this},F.Select.prototype.GroupBy=function(){var e=this,t=[];if(arguments.length>1)t=Array.prototype.slice.call(arguments);else{if(1!=arguments.length)throw new Error("Wrong number of arguments of Select() function");t=Array.isArray(arguments[0])?arguments[0]:[arguments[0]]}return e.group=[],t.forEach((function(t){var n=new F.Column({columnid:t});e.group.push(n)})),e},F.Select.prototype.Where=function(e){return"function"==typeof e&&(this.where=e),this},F.FuncValue=function(e){return Object.assign(this,e)};let X=/[^0-9A-Z_$]+/i;F.FuncValue.prototype.toString=function(){let e="";return n.fn[this.funcid]||n.aggr[this.funcid]?e+=this.funcid:(n.stdlib[this.funcid.toUpperCase()]||n.stdfn[this.funcid.toUpperCase()])&&(e+=this.funcid.toUpperCase().replace(X,"")),"CURRENT_TIMESTAMP"!==this.funcid&&(e+="(",this.args&&this.args.length>0&&(e+=this.args.map((function(e){return e.toString()})).join(",")),e+=")"),e},F.FuncValue.prototype.execute=function(e,t,r){let o=1;return n.precompile(this,e,t),new Function("params,alasql","var y;return "+this.toJS("","",null))(t,n),r&&(o=r(o)),o},F.FuncValue.prototype.findAggregator=function(e){this.args&&this.args.length>0&&this.args.forEach((function(t){t.findAggregator&&t.findAggregator(e)}))},F.FuncValue.prototype.toJS=function(e,t,r){var o="",i=this.funcid;return!n.fn[i]&&n.stdlib[i.toUpperCase()]?this.args&&this.args.length>0?o+=n.stdlib[i.toUpperCase()].apply(this,this.args.map((function(n){return n.toJS(e,t)}))):o+=n.stdlib[i.toUpperCase()]():!n.fn[i]&&n.stdfn[i.toUpperCase()]?(this.newid&&(o+="new "),o+="alasql.stdfn["+JSON.stringify(this.funcid.toUpperCase())+"](",this.args&&this.args.length>0&&(o+=this.args.map((function(n){return n.toJS(e,t,r)})).join(",")),o+=")"):(this.newid&&(o+="new "),o+="alasql.fn["+JSON.stringify(this.funcid)+"](",this.args&&this.args.length>0&&(o+=this.args.map((function(n){return n.toJS(e,t,r)})).join(",")),o+=")"),o};var J=n.stdlib={},$=n.stdfn={};J.ABS=function(e){return"Math.abs("+e+")"},J.CLONEDEEP=function(e){return"alasql.utils.cloneDeep("+e+")"},$.CONCAT=function(){return Array.prototype.slice.call(arguments).join("")},J.EXP=function(e){return"Math.pow(Math.E,"+e+")"},J.IIF=function(e,t,n){if(3===arguments.length)return`((${e}) ? (${t}) : (${n}))`;throw new Error("Number of arguments of IFF is not equals to 3")},J.IFNULL=function(e,t){return`((typeof ${e} === "undefined" || ${e} === null) ? ${t} : ${e})`},J.INSTR=function(e,t){return`((${e}).indexOf(${t}) + 1)`},J.LEN=J.LENGTH=function(e){return s(e,"y.length")},J.LOWER=J.LCASE=function(e){return s(e,"String(y).toLowerCase()")},J.LTRIM=function(e){return s(e,'y.replace(/^[ ]+/,"")')},J.RTRIM=function(e){return s(e,'y.replace(/[ ]+$/,"")')},J.MAX=J.GREATEST=function(){return"["+Array.prototype.join.call(arguments,",")+"].reduce(function (a, b) { return a > b ? a : b; })"},J.MIN=J.LEAST=function(){return"["+Array.prototype.join.call(arguments,",")+"].reduce(function (a, b) { return a < b ? a : b; })"},J.SUBSTRING=J.SUBSTR=J.MID=function(e,t,n){return 2==arguments.length?s(e,"y.substr("+t+"-1)"):3==arguments.length?s(e,"y.substr("+t+"-1,"+n+")"):void 0},$.REGEXP_LIKE=function(e,t,n){return(e||"").search(RegExp(t,n))>-1},J.ISNULL=J.NULLIF=function(e,t){return"("+e+"=="+t+"?undefined:"+e+")"},J.POWER=function(e,t){return"Math.pow("+e+","+t+")"},J.RANDOM=function(e){return 0==arguments.length?"Math.random()":"(Math.random()*("+e+")|0)"},J.ROUND=function(e,t){return 2==arguments.length?"Math.round(("+e+")*Math.pow(10,("+t+")))/Math.pow(10,("+t+"))":"Math.round("+e+")"},J.CEIL=J.CEILING=function(e){return"Math.ceil("+e+")"},J.FLOOR=function(e){return"Math.floor("+e+")"},J.ROWNUM=function(){return"1"},J.ROW_NUMBER=function(){return"1"},J.SQRT=function(e){return"Math.sqrt("+e+")"},J.TRIM=function(e){return s(e,"y.trim()")},J.UPPER=J.UCASE=function(e){return s(e,"String(y).toUpperCase()")},$.CONCAT_WS=function(){var e=Array.prototype.slice.call(arguments);return(e=e.filter((e=>!(null==e)))).slice(1,e.length).join(e[0]||"")},n.aggr.group_concat=n.aggr.GROUP_CONCAT=function(e,t,n){return 1===n?""+e:2===n?t+=","+e:t},n.aggr.median=n.aggr.MEDIAN=function(e,t,n){if(2===n)return null!==e&&t.push(e),t;if(1===n)return null===e?[]:[e];if(!t.length)return null;let r=t.sort(((e,t)=>e>t?1:et?1:-1}));let i=r*(o.length+1)/4;return Number.isInteger(i)?o[i-1]:o[Math.floor(i)]},n.aggr.QUART2=function(e,t,r){return n.aggr.QUART(e,t,r,2)},n.aggr.QUART3=function(e,t,r){return n.aggr.QUART(e,t,r,3)},n.aggr.VAR=function(e,t,n){return 1===n?null===e?{sum:0,sumSq:0,count:0}:{sum:e,sumSq:e*e,count:1}:2===n?(null!==e&&(t.sum+=e,t.sumSq+=e*e,t.count++),t):t.count>1?(t.sumSq-t.sum*t.sum/t.count)/(t.count-1):0},n.aggr.STDEV=function(e,t,r){return 1===r||2===r?n.aggr.VAR(e,t,r):Math.sqrt(n.aggr.VAR(e,t,r))},n.aggr.STDEV=function(e,t,r){return 1===r||2===r?n.aggr.VAR(e,t,r):Math.sqrt(n.aggr.VAR(e,t,r))},n.aggr.VARP=function(e,t,n){if(1===n)return{count:1,sum:e,sumSq:e*e};if(2===n)return t.count++,t.sum+=e,t.sumSq+=e*e,t;if(t.count>0){const e=t.sum/t.count;return t.sumSq/t.count-e*e}return 0},n.aggr.STD=n.aggr.STDDEV=n.aggr.STDEVP=function(e,t,r){return 1==r||2==r?n.aggr.VARP(e,t,r):Math.sqrt(n.aggr.VARP(e,t,r))},n._aggrOriginal=n.aggr,n.aggr={},Object.keys(n._aggrOriginal).forEach((function(e){n.aggr[e]=function(t,r,o){if(3!==o||void 0!==r)return n._aggrOriginal[e].apply(null,arguments)}})),$.REPLACE=function(e,t,n){return(e||"").split(t).join(n)};for(var Z=[],ee=0;ee<256;ee++)Z[ee]=(ee<16?"0":"")+ee.toString(16);$.NEWID=$.UUID=$.GEN_RANDOM_UUID=function(){var e=4294967295*Math.random()|0,t=4294967295*Math.random()|0,n=4294967295*Math.random()|0,r=4294967295*Math.random()|0;return Z[255&e]+Z[e>>8&255]+Z[e>>16&255]+Z[e>>24&255]+"-"+Z[255&t]+Z[t>>8&255]+"-"+Z[t>>16&15|64]+Z[t>>24&255]+"-"+Z[63&n|128]+Z[n>>8&255]+"-"+Z[n>>16&255]+Z[n>>24&255]+Z[255&r]+Z[r>>8&255]+Z[r>>16&255]+Z[r>>24&255]},F.CaseValue=function(e){return Object.assign(this,e)},F.CaseValue.prototype.toString=function(){var e="CASE ";return this.expression&&(e+=this.expression.toString()),this.whens&&(e+=this.whens.map((function(e){return" WHEN "+e.when.toString()+" THEN "+e.then.toString()})).join()),e+" END"},F.CaseValue.prototype.findAggregator=function(e){this.expression&&this.expression.findAggregator&&this.expression.findAggregator(e),this.whens&&this.whens.length>0&&this.whens.forEach((function(t){t.when.findAggregator&&t.when.findAggregator(e),t.then.findAggregator&&t.then.findAggregator(e)})),this.elses&&this.elses.findAggregator&&this.elses.findAggregator(e)},F.CaseValue.prototype.toJS=function(e,t,n){let r=`(((${e}, params, alasql) => {\n let y, r;`;return this.expression?(r+=`let v = ${this.expression.toJS(e,t,n)};`,this.whens.forEach(((o,i)=>{const s=`v === ${o.when.toJS(e,t,n)}`,a=`r = ${o.then.toJS(e,t,n)}`;r+=`${0===i?"if":" else if"} (${s}) { ${a}; }`}))):this.whens.forEach(((o,i)=>{const s=o.when.toJS(e,t,n),a=`r = ${o.then.toJS(e,t,n)}`;r+=`${0===i?"if":" else if"} (${s}) { ${a}; }`})),this.elses&&(r+=` else { r = ${this.elses.toJS(e,t,n)}; }`),r+="; return r; }))("+e+", params, alasql)",r},F.Json=function(e){return Object.assign(this,e)},F.Json.prototype.toString=function(){var e="";return(e+=te(this.value))+""};const te=n.utils.JSONtoString=function(e){if("string"==typeof e)return`"${e}"`;if("number"==typeof e||"boolean"==typeof e)return String(e);if(Array.isArray(e))return`[${e.map((e=>te(e))).join(",")}]`;if("object"==typeof e){if(!e.toJS||e instanceof F.Json){const t=[];for(const n in e){const r="string"==typeof n?`"${n}"`:String(n),o=te(e[n]);t.push(`${r}:${o}`)}return`{${t.join(",")}}`}if(e.toString)return e.toString();throw new Error(`1: Cannot show JSON object ${JSON.stringify(e)}`)}throw new Error(`2: Cannot show JSON object ${JSON.stringify(e)}`)};function ne(e,t,n,r){var o="";if("string"==typeof e)o='"'+e+'"';else if("number"==typeof e)o="("+e+")";else if("boolean"==typeof e)o=e;else{if("object"!=typeof e)throw new Error("2Can not parse JSON object "+JSON.stringify(e));if(Array.isArray(e))o+=`[${e.map((e=>ne(e,t,n,r))).join(",")}]`;else if(!e.toJS||e instanceof F.Json){let i=[];for(const o in e){let s="string"==typeof o?`"${o}"`:o.toString(),a=ne(e[o],t,n,r);i.push(`${s}:${a}`)}o=`{${i.join(",")}}`}else{if(!e.toJS)throw new Error(`Cannot parse JSON object ${JSON.stringify(e)}`);o=e.toJS(t,n,r)}}return o}F.Json.prototype.toJS=function(e,t,n){return ne(this.value,e,t,n)},F.Convert=function(e){return Object.assign(this,e)},F.Convert.prototype.toString=function(){var e="CONVERT(";return e+=this.dbtypeid,void 0!==this.dbsize&&(e+="("+this.dbsize,this.dbprecision&&(e+=","+this.dbprecision),e+=")"),e+=","+this.expression.toString(),this.style&&(e+=","+this.style),e+")"},F.Convert.prototype.toJS=function(e,t,n){return`alasql.stdfn.CONVERT(${this.expression.toJS(e,t,n)}, {\n dbtypeid: "${this.dbtypeid}",\n dbsize: ${this.dbsize},\n dbprecision: ${this.dbprecision},\n style: ${this.style}\n })`},n.stdfn.CONVERT=function(e,t){var n,r,o,i,s,a=e,u=t.dbtypeid?.toUpperCase();if((t.style||"Date"==t.dbtypeid||["DATE","DATETIME","DATETIME2"].indexOf(u)>-1)&&(n={month:o=(r=/\d{8}/.test(a)?new Date(+a.substr(0,4),+a.substr(4,2)-1,+a.substr(6,2)):ie(a)).getMonth()+1,year:i=r.getYear(),fullYear:r.getFullYear(),date:s=r.getDate(),day:r.toString().substr(4,3),formattedDate:("0"+s).substr(-2),formattedMonth:("0"+o).substr(-2),formattedYear:("0"+i).substr(-2),formattedHour:("0"+r.getHours()).substr(-2),formattedMinutes:("0"+r.getMinutes()).substr(-2),formattedSeconds:("0"+r.getSeconds()).substr(-2),formattedMilliseconds:("00"+r.getMilliseconds()).substr(-3)}),t.style)switch(t.style){case 1:a=n.formattedMonth+"/"+n.formattedDate+"/"+n.formattedYear;break;case 2:a=n.formattedYear+"."+n.formattedMonth+"."+n.formattedDate;break;case 3:a=n.formattedDate+"/"+n.formattedMonth+"/"+n.formattedYear;break;case 4:a=n.formattedDate+"."+n.formattedMonth+"."+n.formattedYear;break;case 5:a=n.formattedDate+"-"+n.formattedMonth+"-"+n.formattedYear;break;case 6:a=n.formattedDate+" "+n.day.toLowerCase()+" "+n.formattedYear;break;case 7:a=n.day+" "+n.formattedDate+","+n.formattedYear;break;case 8:case 108:a=n.formattedHour+":"+n.formattedMinutes+":"+n.formattedSeconds;break;case 10:a=n.formattedMonth+"-"+n.formattedDate+"-"+n.formattedYear;break;case 11:a=n.formattedYear+"/"+n.formattedMonth+"/"+n.formattedDate;break;case 12:a=n.formattedYear+n.formattedMonth+n.formattedDate;break;case 101:a=n.formattedMonth+"/"+n.formattedDate+"/"+n.fullYear;break;case 102:a=n.fullYear+"."+n.formattedMonth+"."+n.formattedDate;break;case 103:a=n.formattedDate+"/"+n.formattedMonth+"/"+n.fullYear;break;case 104:a=n.formattedDate+"."+n.formattedMonth+"."+n.fullYear;break;case 105:a=n.formattedDate+"-"+n.formattedMonth+"-"+n.fullYear;break;case 106:a=n.formattedDate+" "+n.day.toLowerCase()+" "+n.fullYear;break;case 107:a=n.day+" "+n.formattedDate+","+n.fullYear;break;case 110:a=n.formattedMonth+"-"+n.formattedDate+"-"+n.fullYear;break;case 111:a=n.fullYear+"/"+n.formattedMonth+"/"+n.formattedDate;break;case 112:a=n.fullYear+n.formattedMonth+n.formattedDate;break;default:throw new Error("The CONVERT style "+t.style+" is not realized yet.")}switch(u){case"DATE":return`${n.formattedYear}.${n.formattedMonth}.${n.formattedDate}`;case"DATETIME":case"DATETIME2":return`${n.fullYear}.${n.formattedMonth}.${n.formattedDate} ${n.formattedHour}:${n.formattedMinutes}:${n.formattedSeconds}.${n.formattedMilliseconds}`;case"MONEY":return(0|(c=+a))+100*c%100/100;case"BOOLEAN":return!!a;case"INT":case"INTEGER":case"SMALLINT":case"BIGINT":case"SERIAL":case"SMALLSERIAL":case"BIGSERIAL":return 0|a;case"STRING":case"VARCHAR":case"NVARCHAR":case"CHARACTER VARIABLE":return t.dbsize?String(a).substr(0,t.dbsize):String(a);case"CHAR":case"CHARACTER":case"NCHAR":return(a+" ".repeat(t.dbsize)).substr(0,t.dbsize);case"NUMBER":case"FLOAT":case"DECIMAL":case"NUMERIC":var c=+a;return void 0!==t.dbsize&&(c=parseFloat(c.toPrecision(t.dbsize))),void 0!==t.dbprecision&&(c=parseFloat(c.toFixed(t.dbprecision))),c;case"JSON":if("object"==typeof a)return a;try{return JSON.parse(a)}catch(e){throw new Error("Cannot convert string to JSON")}default:return a}},F.ColumnDef=function(e){return Object.assign(this,e)},F.ColumnDef.prototype.toString=function(){let e=this.columnid;return this.dbtypeid&&(e+=" "+this.dbtypeid),this.dbsize&&(e+="("+this.dbsize,this.dbprecision&&(e+=","+this.dbprecision),e+=")"),this.primarykey&&(e+=" PRIMARY KEY"),this.notnull&&(e+=" NOT NULL"),e},F.CreateTable=function(e){return Object.assign(this,e)},F.CreateTable.prototype.toString=function(){let e=`CREATE${this.temporary?" TEMPORARY":""}${this.view?" VIEW":" "+(this.class?"CLASS":"TABLE")}${this.ifnotexists?" IF NOT EXISTS":""} ${this.table.toString()}`;return this.viewcolumns&&(e+=`(${this.viewcolumns.map((e=>e.toString())).join(",")})`),this.as?e+=` AS ${this.as}`:e+=` (${this.columns.map((e=>e.toString())).join(",")})`,this.view&&this.select&&(e+=` AS ${this.select.toString()}`),e},F.CreateTable.prototype.execute=function(e,t,r){var o=n.databases[this.table.databaseid||e],i=this.table.tableid;if(!i)throw new Error("Table name is not defined");var s=this.columns,a=this.constraints||[];if(this.ifnotexists&&o.tables[i])return r?r(0):0;if(o.tables[i])throw new Error("Can not create table '"+i+"', because it already exists in the database '"+o.databaseid+"'");var u=o.tables[i]=new n.Table;this.class&&(u.isclass=!0);var c,l=[],h=[];if(s&&s.forEach((function(t){var r=t.dbtypeid;n.fn[r]||(r=r.toUpperCase()),["SERIAL","SMALLSERIAL","BIGSERIAL"].indexOf(r)>-1&&(t.identity={value:1,step:1});var o={columnid:t.columnid,dbtypeid:r,dbsize:t.dbsize,dbprecision:t.dbprecision,notnull:t.notnull,identity:t.identity};if(t.identity&&(u.identities[t.columnid]={value:+t.identity.value,step:+t.identity.step}),t.check&&u.checks.push({id:t.check.constrantid,fn:new Function("r","var y;return "+t.check.expression.toJS("r",""))}),t.default&&l.push(JSON.stringify(""+t.columnid)+":"+t.default.toJS("r","")),t.primarykey){var i=u.pk={};i.columns=[t.columnid],i.onrightfns=`r[${JSON.stringify(t.columnid)}]`,i.onrightfn=new Function("r","var y;return "+i.onrightfns),i.hh=_(i.onrightfns),u.uniqs[i.hh]={}}if(t.unique){var s={};u.uk=u.uk||[],u.uk.push(s),s.columns=[t.columnid],s.onrightfns=`r[${JSON.stringify(t.columnid)}]`,s.onrightfn=new Function("r","var y;return "+s.onrightfns),s.hh=_(s.onrightfns),u.uniqs[s.hh]={}}if(t.foreignkey){var a=t.foreignkey.table,c=n.databases[a.databaseid||e].tables[a.tableid];if(void 0===a.columnid){if(!(c.pk.columns&&c.pk.columns.length>0))throw new Error("FOREIGN KEY allowed only to tables with PRIMARY KEYs");a.columnid=c.pk.columns[0]}u.checks.push({fn:function(e){var n={};if(void 0===e[t.columnid])return!0;n[a.columnid]=e[t.columnid];var r=c.pk.onrightfn(n);if(!c.uniqs[c.pk.hh][r])throw new Error("Foreign key violation");return!0}})}t.onupdate&&h.push(`r[${JSON.stringify(t.columnid)}]=`+t.onupdate.toJS("r","")),u.columns.push(o),u.xcolumns[o.columnid]=o})),u.defaultfns=l.join(","),u.onupdatefns=h.join(";"),a.forEach((function(t){var r;if("PRIMARY KEY"===t.type){if(u.pk)throw new Error("Primary key already exists");var o=u.pk={};o.columns=t.columns,o.onrightfns=o.columns.map((function(e){return`r[${JSON.stringify(e)}]`})).join("+'`'+"),o.onrightfn=new Function("r","var y;return "+o.onrightfns),o.hh=_(o.onrightfns),u.uniqs[o.hh]={}}else if("CHECK"===t.type)r=new Function("r","var y;return "+t.expression.toJS("r",""));else if("UNIQUE"===t.type){var i={};u.uk=u.uk||[],u.uk.push(i),i.columns=t.columns,i.onrightfns=i.columns.map((function(e){return`r[${JSON.stringify(e)}]`})).join("+'`'+"),i.onrightfn=new Function("r","var y;return "+i.onrightfns),i.hh=_(i.onrightfns),u.uniqs[i.hh]={}}else if("FOREIGN KEY"===t.type){var s=t.fktable;t.fkcolumns&&t.fkcolumns.length>0&&(s.fkcolumns=t.fkcolumns);var a=n.databases[s.databaseid||e].tables[s.tableid];if(void 0===s.fkcolumns&&(s.fkcolumns=a.pk.columns),s.columns=t.columns,s.fkcolumns.length>s.columns.length)throw new Error("Invalid foreign key on table "+u.tableid);r=function(t){var r={};if(s.fkcolumns.forEach((function(e,n){null!=t[s.columns[n]]&&(r[e]=t[s.columns[n]])})),0===Object.keys(r).length)return!0;if(Object.keys(r).length!==s.columns.length)throw new Error("Invalid foreign key on table "+u.tableid);var o=n.databases[s.databaseid||e].tables[s.tableid],i=o.pk.onrightfn(r);if(!o.uniqs[o.pk.hh][i])throw new Error("Foreign key violation");return!0}}r&&u.checks.push({fn:r,id:t.constraintid,fk:"FOREIGN KEY"===t.type})})),this.view&&this.viewcolumns){var f=this;this.viewcolumns.forEach((function(e,t){f.select.columns[t].as=e.columnid}))}return this.view&&this.select&&(u.view=!0,u.select=this.select.compile(this.table.databaseid||e)),o.engineid?n.engines[o.engineid].createTable(this.table.databaseid||e,i,this.ifnotexists,r):(u.insert=function(r,o){var i=n.inserted;n.inserted=[r];var s=this,a=!1,u=!1;for(var c in s.beforeinsert)(E=s.beforeinsert[c])&&(E.funcid?!1===n.fn[E.funcid](r)&&(u=u||!0):E.statement&&!1===E.statement.execute(e)&&(u=u||!0));if(!u){var l=!1;for(c in s.insteadofinsert)l=!0,(E=s.insteadofinsert[c])&&(E.funcid?n.fn[E.funcid](r):E.statement&&E.statement.execute(e));if(!l){for(var h in s.identities){var f=s.identities[h];r[h]=f.value}if(s.checks&&s.checks.length>0&&s.checks.forEach((function(e){if(!e.fn(r))throw new Error("Violation of CHECK constraint "+(e.id||""))})),s.columns.forEach((function(e){if(e.notnull&&void 0===r[e.columnid])throw new Error("Wrong NULL value in NOT NULL column "+e.columnid)})),s.pk){var p=(d=s.pk).onrightfn(r);if(void 0!==s.uniqs[d.hh][p]){if(!o)throw new Error("Cannot insert record, because it already exists in primary key index");a=s.uniqs[d.hh][p]}}if(s.uk&&s.uk.length&&s.uk.forEach((function(e){var t=e.onrightfn(r);if(void 0!==s.uniqs[e.hh][t]){if(!o)throw new Error("Cannot insert record, because it already exists in unique index");a=s.uniqs[e.hh][t]}})),a)s.update((function(e){for(var t in r)e[t]=r[t]}),s.data.indexOf(a),t);else{for(var h in s.data.push(r),s.identities)(f=s.identities[h]).value+=f.step;var d;s.pk&&(p=(d=s.pk).onrightfn(r),s.uniqs[d.hh][p]=r),s.uk&&s.uk.length&&s.uk.forEach((function(e){var t=e.onrightfn(r);s.uniqs[e.hh][t]=r}))}for(var c in s.afterinsert){var E;(E=s.afterinsert[c])&&(E.funcid?n.fn[E.funcid](r):E.statement&&E.statement.execute(e))}n.inserted=i}}},u.delete=function(t){var r=this,o=r.data[t],i=!1;for(var s in r.beforedelete)(u=r.beforedelete[s])&&(u.funcid?!1===n.fn[u.funcid](o)&&(i=i||!0):u.statement&&!1===u.statement.execute(e)&&(i=i||!0));if(i)return!1;var a=!1;for(var s in r.insteadofdelete){var u;a=!0,(u=r.insteadofdelete[s])&&(u.funcid?n.fn[u.funcid](o):u.statement&&u.statement.execute(e))}if(!a){if(this.pk){var c=this.pk,l=c.onrightfn(o);if(void 0===this.uniqs[c.hh][l])throw new Error("Something wrong with primary key index on table");this.uniqs[c.hh][l]=void 0}r.uk&&r.uk.length&&r.uk.forEach((function(e){var t=e.onrightfn(o);if(void 0===r.uniqs[e.hh][t])throw new Error("Something wrong with unique index on table");r.uniqs[e.hh][t]=void 0}))}},u.deleteall=function(){this.data.length=0,this.pk&&(this.uniqs[this.pk.hh]={}),u.uk&&u.uk.length&&u.uk.forEach((function(e){u.uniqs[e.hh]={}}))},u.update=function(t,r,o){var i,s=w(this.data[r]);if(this.pk&&((i=this.pk).pkaddr=i.onrightfn(s,o),void 0===this.uniqs[i.hh][i.pkaddr]))throw new Error("Something wrong with index on table");u.uk&&u.uk.length&&u.uk.forEach((function(e){if(e.ukaddr=e.onrightfn(s),void 0===u.uniqs[e.hh][e.ukaddr])throw new Error("Something wrong with unique index on table")})),t(s,o,n);var a=!1;for(var c in u.beforeupdate)(h=u.beforeupdate[c])&&(h.funcid?!1===n.fn[h.funcid](this.data[r],s)&&(a=a||!0):h.statement&&!1===h.statement.execute(e)&&(a=a||!0));if(a)return!1;var l=!1;for(var c in u.insteadofupdate)l=!0,(h=u.insteadofupdate[c])&&(h.funcid?n.fn[h.funcid](this.data[r],s):h.statement&&h.statement.execute(e));if(!l){if(u.checks&&u.checks.length>0&&u.checks.forEach((function(e){if(!e.fn(s))throw new Error("Violation of CHECK constraint "+(e.id||""))})),u.columns.forEach((function(e){if(e.notnull&&void 0===s[e.columnid])throw new Error("Wrong NULL value in NOT NULL column "+e.columnid)})),this.pk&&(i.newpkaddr=i.onrightfn(s),void 0!==this.uniqs[i.hh][i.newpkaddr]&&i.newpkaddr!==i.pkaddr))throw new Error("Record already exists");for(var c in u.uk&&u.uk.length&&u.uk.forEach((function(e){if(e.newukaddr=e.onrightfn(s),void 0!==u.uniqs[e.hh][e.newukaddr]&&e.newukaddr!==e.ukaddr)throw new Error("Record already exists")})),this.pk&&(this.uniqs[i.hh][i.pkaddr]=void 0,this.uniqs[i.hh][i.newpkaddr]=s),u.uk&&u.uk.length&&u.uk.forEach((function(e){u.uniqs[e.hh][e.ukaddr]=void 0,u.uniqs[e.hh][e.newukaddr]=s})),this.data[r]=s,u.afterupdate){var h;(h=u.afterupdate[c])&&(h.funcid?n.fn[h.funcid](this.data[r],s):h.statement&&h.statement.execute(e))}}},n.options.nocount||(c=1),r&&(c=r(c)),c)},n.fn.Date=Object,n.fn.Date=Date,n.fn.Number=Number,n.fn.String=String,n.fn.Boolean=Boolean,$.EXTEND=n.utils.extend,$.CHAR=String.fromCharCode.bind(String),$.ASCII=function(e){return e.charCodeAt(0)},$.COALESCE=function(){for(var e=0;e0){o=this.sets.map((function(e){return`x[${JSON.stringify(e.column.columnid)}]=`+e.expression.toJS("x","")})).join(";");var s=new Function("x,params,alasql",o)}return function(e,o){var a,u=n.databases[t],c={$id:void 0!==r?r:u.counter++,$node:"VERTEX"};return u.objects[c.$id]=c,a=c,i&&i(c),s&&s(c,e,n),o&&(a=o(a)),a}},F.CreateEdge=function(e){return Object.assign(this,e)},F.CreateEdge.prototype.toString=function(){var e="CREATE EDGE ";return this.class&&(e+=this.class+" "),e},F.CreateEdge.prototype.toJS=function(e){return"this.queriesfn["+(this.queriesidx-1)+"](this.params,null,"+e+")"},F.CreateEdge.prototype.compile=function(e){var t=e,r=new Function("params,alasql","var y;return "+this.from.toJS()),o=new Function("params,alasql","var y;return "+this.to.toJS());if(void 0!==this.name)var i="x.name="+this.name.toJS(),s=new Function("x",i);if(this.sets&&this.sets.length>0){i=this.sets.map((function(e){return`x[${JSON.stringify(e.column.columnid)}]=`+e.expression.toJS("x","")})).join(";");var a=new Function("x,params,alasql","var y;"+i)}return(e,i)=>{let u=0,c=n.databases[t],l={$id:c.counter++,$node:"EDGE"},h=r(e,n),f=o(e,n);return l.$in=[h.$id],l.$out=[f.$id],h.$out=h.$out||[],h.$out.push(l.$id),f.$in=f.$in||[],f.$in.push(l.$id),c.objects[l.$id]=l,u=l,s?.(l),a?.(l,e,n),i?i(u):u}},F.CreateGraph=function(e){return Object.assign(this,e)},F.CreateGraph.prototype.toString=function(){var e="CREATE GRAPH ";return this.class&&(e+=this.class+" "),e},F.CreateGraph.prototype.execute=function(e,t,r){var o=[];return this.from&&n.from[this.from.funcid]&&(this.graph=n.from[this.from.funcid.toUpperCase()]),this.graph.forEach((r=>{if(r.source){let s={};void 0!==r.as&&(n.vars[r.as]=s),void 0!==r.prop&&(s.name=r.prop),void 0!==r.sharp&&(s.$id=r.sharp),void 0!==r.name&&(s.name=r.name),void 0!==r.class&&(s.$class=r.class);let a=n.databases[e];s.$id=void 0!==s.$id?s.$id:a.counter++,s.$node="EDGE",void 0!==r.json&&Object.assign(s,new Function("params, alasql",`return ${r.json.toJS()}`)(t,n));const u=(e,t)=>{let r,o;if(e.vars)o=n.vars[e.vars],r="object"==typeof o?o:a.objects[o];else{let t=e.sharp||e.prop;r=a.objects[t],void 0===r&&n.options.autovertex&&(e.prop||e.name)&&(r=function(e){var t=n.databases[n.useid].objects;for(var r in t)if(t[r].name===e)return t[r]}(e.prop||e.name)||i(e))}return t&&r&&void 0===r.$out&&(r.$out=[]),!t&&r&&void 0===r.$in&&(r.$in=[]),r};let c=u(r.source,!0),l=u(r.target,!1);if(s.$in=[c.$id],s.$out=[l.$id],c.$out.push(s.$id),l.$in.push(s.$id),a.objects[s.$id]=s,void 0!==s.$class){let t=n.databases[e].tables[s.$class];if(void 0===t)throw new Error("No such class. Please use CREATE CLASS");t.data.push(s)}o.push(s.$id)}else i(r)})),r&&(o=r(o)),o;function i(r){var i={};void 0!==r.as&&(n.vars[r.as]=i),void 0!==r.prop&&(i.$id=r.prop,i.name=r.prop),void 0!==r.sharp&&(i.$id=r.sharp),void 0!==r.name&&(i.name=r.name),void 0!==r.class&&(i.$class=r.class);var s=n.databases[e];if(void 0===i.$id&&(i.$id=s.counter++),i.$node="VERTEX",void 0!==r.json&&S(i,new Function("params,alasql","var y;return "+r.json.toJS())(t,n)),s.objects[i.$id]=i,void 0!==i.$class){if(void 0===n.databases[e].tables[i.$class])throw new Error("No such class. Pleace use CREATE CLASS");n.databases[e].tables[i.$class].data.push(i)}return o.push(i.$id),i}},F.CreateGraph.prototype.compile1=function(e){const t=e,r=new Function("params, alasql",`return ${this.from.toJS()}`),o=new Function("params, alasql",`return ${this.to.toJS()}`);let i,s;if(void 0!==this.name){const e=`x.name = ${this.name.toJS()}`;i=new Function("x",e)}if(this.sets&&this.sets.length>0){const e=this.sets.map((e=>`x[${JSON.stringify(e.column.columnid)}] = ${e.expression.toJS("x","")}`)).join(";");s=new Function("x, params, alasql",`var y; ${e}`)}return(e,a)=>{let u=0;const c=n.databases[t],l={$id:c.counter++,$node:"EDGE"},h=r(e,n),f=o(e,n);return l.$in=[h.$id],l.$out=[f.$id],h.$out=h.$out||[],h.$out.push(l.$id),f.$in=f.$in||[],f.$in.push(l.$id),c.objects[l.$id]=l,u=l,i&&i(l),s&&s(l,e,n),a&&(u=a(u)),u}},F.AlterTable=function(e){return Object.assign(this,e)},F.AlterTable.prototype.toString=function(){let e="ALTER TABLE "+this.table.toString();return this.renameto&&(e+=" RENAME TO "+this.renameto),e},F.AlterTable.prototype.execute=function(e,t,r){let o=n.databases[e];if(o.dbversion=Date.now(),this.renameto){var i=this.table.tableid,s=this.renameto;if(o.tables[s])throw new Error(`Can not rename a table "${i}" to "${s}" because the table with this name already exists`);if(s===i)throw new Error(`Can not rename a table "${i}" to itself`);return o.tables[s]=o.tables[i],delete o.tables[i],r&&r(1),1}if(this.addcolumn){o=n.databases[this.table.databaseid||e],o.dbversion++;var a=this.table.tableid,u=o.tables[a],c=this.addcolumn.columnid;if(u.xcolumns[c])throw new Error(`Cannot add column "${c}" because it already exists in table "${a}"`);var l={columnid:c,dbtypeid:this.addcolumn.dbtypeid,dbsize:this.dbsize,dbprecision:this.dbprecision,dbenum:this.dbenum,defaultfns:null};u.columns.push(l),u.xcolumns[c]=l;for(let e=0,t=u.data.length;e0)for(var h=0,f=s.data.length;h0)for(h=0,f=s.data.length;h=0?r+="(x="+s[t].toJS()+",x==undefined?undefined:+x)":n.fn[i.xcolumns[e.columnid].dbtypeid]?(r+="(new "+i.xcolumns[e.columnid].dbtypeid+"(",r+=s[t].toJS(),r+="))"):r+=s[t].toJS():r+=s[t].toJS(),c.push(r)})):Array.isArray(s)&&i.columns&&i.columns.length>0?i.columns.forEach((function(e,t){var r="'"+e.columnid+"':";["INT","FLOAT","NUMBER","MONEY"].indexOf(e.dbtypeid)>=0?r+="+"+s[t].toJS():n.fn[e.dbtypeid]?(r+="(new "+e.dbtypeid+"(",r+=s[t].toJS(),r+="))"):r+=s[t].toJS(),c.push(r)})):u=ne(s),r.tables[o].defaultfns&&c.unshift(r.tables[o].defaultfns),a+=u?"a="+u+";":"a={"+c.join(",")+"};",r.tables[o].isclass&&(a+="var db=alasql.databases['"+e+"'];",a+='a.$class="'+o+'";',a+="a.$id=db.counter++;",a+="db.objects[a.$id]=a;"),r.tables[o].insert?(a+="var db=alasql.databases['"+e+"'];",a+="db.tables['"+o+"'].insert(a,"+(t.orreplace?"true":"false")+");"):a+="aa.push(a);"})),s=c+a,r.tables[o].insert||(a+="alasql.databases['"+e+"'].tables['"+o+"'].data=alasql.databases['"+e+"'].tables['"+o+"'].data.concat(aa);"),r.tables[o].insert&&r.tables[o].isclass?a+="return a.$id;":a+="return "+t.values.length;var l=new Function("db, params, alasql","var y;"+c+a).bind(this)}else if(this.select){this.select.modifier="RECORDSET",this.queries&&(this.select.queries=this.queries);var h=this.select.compile(e);if(r.engineid&&n.engines[r.engineid].intoTable)return function(e,t){var i=h(e);return n.engines[r.engineid].intoTable(r.databaseid,o,i.data,null,t)};var f="return alasql.utils.extend(r,{"+i.defaultfns+"})",p=new Function("r,db,params,alasql",f);l=function(e,n,r){var i=h(n).data;if(e.tables[o].insert)for(var s=0,a=i.length;s"+(o+1),n.forEach((function(n){t+=" ",e[o][n]==+e[o][n]?(t+='
',void 0===e[o][n]?t+="NULL":t+=e[o][n],t+="
"):void 0===e[o][n]?t+="NULL":"string"==typeof e[o][n]?t+=e[o][n]:t+=te(e[o][n])}));t+=""}else t+="

"+te(e)+"

";return t}function ue(e,t,n){if(!(n<=0)){var r=(t-e.scrollTop)/n*10;setTimeout((function(){e.scrollTop!==t&&(e.scrollTop=e.scrollTop+r,ue(e,t,n-10))}),10)}}F.CreateTrigger.prototype.execute=function(e,t,r){let o=1;const i=this.trigger;e=this.table.databaseid||e;const s=n.databases[e],{tableid:a}=this.table,u={action:this.action,when:this.when,statement:this.statement,funcid:this.funcid,tableid:a};s.triggers[i]=u;const c=`${this.when}${this.action}`.toLowerCase();return se.includes(c)&&(s.tables[a]=s.tables[a]||{},s.tables[a][c]=s.tables[a][c]||{},s.tables[a][c][i]=u),r&&(o=r(o)),o},F.DropTrigger=function(e){return Object.assign(this,e)},F.DropTrigger.prototype.toString=function(){return"DROP TRIGGER "+this.trigger},F.DropTrigger.prototype.execute=function(e,t,r){let o=0;const i=n.databases[e],s=this.trigger,a=i.triggers[s];if(!a)throw new Error("Trigger not found");{const{tableid:e}=a;if(!e)throw new Error("Trigger Table not found");o=1,se.forEach((t=>{delete i.tables[e][t][s]})),delete i.triggers[s]}return r&&(o=r(o)),o},F.Delete=function(e){return Object.assign(this,e)},F.Delete.prototype.toString=function(){var e="DELETE FROM "+this.table.toString();return this.where&&(e+=" WHERE "+this.where.toString()),e},F.Delete.prototype.compile=function(e){e=this.table.databaseid||e;var t,r=this.table.tableid,o=n.databases[e];if(this.where){this.exists&&(this.existsfn=this.exists.map((function(t){var n=t.compile(e);return n.query.modifier="RECORDSET",n}))),this.queries&&(this.queriesfn=this.queries.map((function(t){var n=t.compile(e);return n.query.modifier="RECORDSET",n})));var i=new Function("r,params,alasql","var y;return ("+this.where.toJS("r","")+")").bind(this);t=function(t,s){if(o.engineid&&n.engines[o.engineid].deleteFromTable)return n.engines[o.engineid].deleteFromTable(e,r,i,t,s);n.options.autocommit&&o.engineid&&("LOCALSTORAGE"==o.engineid||"FILESTORAGE"==o.engineid)&&n.engines[o.engineid].loadTableData(e,r);for(var a=o.tables[r],u=a.data.length,c=[],l=0,h=a.data.length;l{e+="WHEN ",t.matched||(e+="NOT "),e+="MATCHED ",t.bytarget&&(e+="BY TARGET "),t.bysource&&(e+="BY SOURCE "),t.expr&&(e+=`AND ${t.expr.toString()} `),e+="THEN ",t.action.delete&&(e+="DELETE "),t.action.insert&&(e+="INSERT ",t.action.columns&&(e+=`(${t.action.columns.toString()}) `),t.action.values&&(e+=`VALUES (${t.action.values.toString()}) `),t.action.defaultvalues&&(e+="DEFAULT VALUES ")),t.action.update&&(e+="UPDATE ",e+=t.action.update.map((e=>e.toString())).join(", ")+" ")})),e},F.Merge.prototype.execute=function(e,t,n){var r=1;return n&&(r=n(r)),r},F.CreateDatabase=function(e){return Object.assign(this,e)},F.CreateDatabase.prototype.toString=function(){let e="CREATE ";return this.engineid&&(e+=`${this.engineid} `),e+="DATABASE ",this.ifnotexists&&(e+="IF NOT EXISTS "),e+=`${this.databaseid} `,this.args&&this.args.length>0&&(e+=`(${this.args.map((e=>e.toString())).join(", ")}) `),this.as&&(e+=`AS ${this.as}`),e},F.CreateDatabase.prototype.execute=function(e,t,r){if(this.args&&this.args.length>0&&this.args.map((function(e){return new Function("params,alasql","var y;return "+e.toJS())(t,n)})),this.engineid)return n.engines[this.engineid].createDatabase(this.databaseid,this.args,this.ifnotexists,this.as,r);var o=this.databaseid;if(n.databases[o])throw new Error("Database '"+o+"' already exists");new n.Database(o);var i=1;return r?r(i):i},F.AttachDatabase=function(e){return Object.assign(this,e)},F.AttachDatabase.prototype.toString=function(e){let t="ATTACH";return this.engineid&&(t+=` ${this.engineid}`),t+=` DATABASE ${this.databaseid}`,e&&(t+="(",e.length>0&&(t+=e.map((e=>e.toString())).join(", ")),t+=")"),this.as&&(t+=` AS ${this.as}`),t},F.AttachDatabase.prototype.execute=function(e,t,r){if(!n.engines[this.engineid])throw new Error('Engine "'+this.engineid+'" is not defined.');return n.engines[this.engineid].attachDatabase(this.databaseid,this.as,this.args,t,r)},F.DetachDatabase=function(e){return Object.assign(this,e)},F.DetachDatabase.prototype.toString=function(){return"DETACH"+" DATABASE "+this.databaseid},F.DetachDatabase.prototype.execute=function(e,t,r){if(!n.databases[this.databaseid].engineid)throw new Error('Cannot detach database "'+this.engineid+'", because it was not attached.');var o,i=this.databaseid;if(i===n.DEFAULTDATABASEID)throw new Error("Drop of default database is prohibited");if(n.databases[i]){var s=n.databases[i].engineid&&"FILESTORAGE"==n.databases[i].engineid,a=n.databases[i].filename||"";delete n.databases[i],s&&(n.databases[i]={},n.databases[i].isDetached=!0,n.databases[i].filename=a),i===n.useid&&n.use(),o=1}else{if(!this.ifexists)throw new Error("Database '"+i+"' does not exist");o=0}return r&&r(o),o},F.UseDatabase=function(e){return Object.assign(this,e)},F.UseDatabase.prototype.toString=function(){return"USE DATABASE "+this.databaseid},F.UseDatabase.prototype.execute=function(e,t,r){var o=this.databaseid;if(!n.databases[o])throw new Error("Database '"+o+"' does not exist");return n.use(o),r&&r(1),1},F.DropDatabase=function(e){return Object.assign(this,e)},F.DropDatabase.prototype.toString=function(){var e="DROP";return this.ifexists&&(e+=" IF EXISTS"),e+" DATABASE "+this.databaseid},F.DropDatabase.prototype.execute=function(e,t,r){if(this.engineid)return n.engines[this.engineid].dropDatabase(this.databaseid,this.ifexists,r);let o;const i=this.databaseid;if(i===n.DEFAULTDATABASEID)throw new Error("Drop of default database is prohibited");if(n.databases[i]){if(n.databases[i].engineid)throw new Error(`Cannot drop database '${i}', because it is attached. Detach it.`);delete n.databases[i],i===n.useid&&n.use(),o=1}else{if(!this.ifexists)throw new Error(`Database '${i}' does not exist`);o=0}return r&&r(o),o},F.Declare=function(e){return Object.assign(this,e)},F.Declare.prototype.toString=function(){let e="DECLARE ";return this.declares&&this.declares.length>0&&(e+=this.declares.map((e=>{let t=`@${e.variable} ${e.dbtypeid}`;return e.dbsize&&(t+=`(${e.dbsize}`,e.dbprecision&&(t+=`,${e.dbprecision}`),t+=")"),e.expression&&(t+=` = ${e.expression.toString()}`),t})).join(",")),e},F.Declare.prototype.execute=function(e,t,r){var o=1,i=this;return i.declares&&i.declares.length>0&&i.declares.forEach((function(e){var r=e.dbtypeid;n.fn[r]||(r=r.toUpperCase()),n.declares[e.variable]={dbtypeid:r,dbsize:e.dbsize,dbprecision:e.dbprecision},e.expression&&(n.vars[e.variable]=new Function("params,alasql","return "+e.expression.toJS("({})","",null)).bind(i)(t,n),n.declares[e.variable]&&(n.vars[e.variable]=n.stdfn.CONVERT(n.vars[e.variable],n.declares[e.variable])))})),r&&(o=r(o)),o},F.ShowDatabases=function(e){return Object.assign(this,e)},F.ShowDatabases.prototype.toString=function(){var e="SHOW DATABASES";return this.like&&(e+="LIKE "+this.like.toString()),e},F.ShowDatabases.prototype.execute=function(e,t,r){if(this.engineid)return n.engines[this.engineid].showDatabases(this.like,r);var o=this,i=[];for(var s in n.databases)i.push({databaseid:s});return o.like&&i&&i.length>0&&(i=i.filter((function(e){return n.utils.like(o.like.value,e.databaseid)}))),r&&r(i),i},F.ShowTables=function(e){return Object.assign(this,e)},F.ShowTables.prototype.toString=function(){var e="SHOW TABLES";return this.databaseid&&(e+=" FROM "+this.databaseid),this.like&&(e+=" LIKE "+this.like.toString()),e},F.ShowTables.prototype.execute=function(e,t,r){var o=n.databases[this.databaseid||e],i=this,s=[];for(var a in o.tables)s.push({tableid:a});return i.like&&s&&s.length>0&&(s=s.filter((function(e){return n.utils.like(i.like.value,e.tableid)}))),r&&r(s),s},F.ShowColumns=function(e){return Object.assign(this,e)},F.ShowColumns.prototype.toString=function(){var e="SHOW COLUMNS";return this.table.tableid&&(e+=" FROM "+this.table.tableid),this.databaseid&&(e+=" FROM "+this.databaseid),e},F.ShowColumns.prototype.execute=function(e,t,r){var o=n.databases[this.databaseid||e].tables[this.table.tableid];if(o&&o.columns){var i=o.columns.map((function(e){return{columnid:e.columnid,dbtypeid:e.dbtypeid,dbsize:e.dbsize}}));return r&&r(i),i}return r&&r([]),[]},F.ShowIndex=function(e){return Object.assign(this,e)},F.ShowIndex.prototype.toString=function(){var e="SHOW INDEX";return this.table.tableid&&(e+=" FROM "+this.table.tableid),this.databaseid&&(e+=" FROM "+this.databaseid),e},F.ShowIndex.prototype.execute=function(e,t,r){var o=n.databases[this.databaseid||e].tables[this.table.tableid],i=[];if(o&&o.indices)for(var s in o.indices)i.push({hh:s,len:Object.keys(o.indices[s]).length});return r&&r(i),i},F.ShowCreateTable=function(e){return Object.assign(this,e)},F.ShowCreateTable.prototype.toString=function(){var e="SHOW CREATE TABLE "+this.table.tableid;return this.databaseid&&(e+=" FROM "+this.databaseid),e},F.ShowCreateTable.prototype.execute=function(e){var t=n.databases[this.databaseid||e].tables[this.table.tableid];if(t){var r="CREATE TABLE "+this.table.tableid+" (",o=[];return t.columns&&(t.columns.forEach((function(e){var t=e.columnid+" "+e.dbtypeid;e.dbsize&&(t+="("+e.dbsize+")"),e.primarykey&&(t+=" PRIMARY KEY"),o.push(t)})),r+=o.join(", ")),r+")"}throw new Error('There is no such table "'+this.table.tableid+'"')},F.SetVariable=function(e){return Object.assign(this,e)},F.SetVariable.prototype.toString=function(){var e="SET ";return void 0!==this.value&&(e+=this.variable.toUpperCase()+" "+(this.value?"ON":"OFF")),this.expression&&(e+=this.method+this.variable+" = "+this.expression.toString()),e},F.SetVariable.prototype.execute=function(e,t,r){if(void 0!==this.value){let e=this.value;"ON"===e?e=!0:"OFF"===e&&(e=!1),n.options[this.variable]=e}else if(this.expression){this.exists&&(this.existsfn=this.exists.map((t=>{let n=t.compile(e);return n.query&&!n.query.modifier&&(n.query.modifier="RECORDSET"),n}))),this.queries&&(this.queriesfn=this.queries.map((t=>{let n=t.compile(e);return n.query&&!n.query.modifier&&(n.query.modifier="RECORDSET"),n})));let r=new Function("params, alasql","return "+this.expression.toJS("({})","",null)).bind(this)(t,n);if(n.declares[this.variable]&&(r=n.stdfn.CONVERT(r,n.declares[this.variable])),this.props&&this.props.length>0){let e;e="@"===this.method?`alasql.vars['${this.variable}']`:`params['${this.variable}']`,this.props.forEach((t=>{e+="string"==typeof t?`['${t}']`:"number"==typeof t?`[${t}]`:`[${t.toJS()}]`})),new Function("value, params, alasql",`${e} = value`)(r,t,n)}else"@"===this.method?n.vars[this.variable]=r:t[this.variable]=r}let o=1;return r&&(o=r(o)),o},n.test=function(e,t,r){if(0!==arguments.length){var o=Date.now();if(1===arguments.length)return r(),void n.con.log(Date.now()-o);2===arguments.length&&(r=t,t=1);for(var i=0;i",e),Array.isArray(r)&&console.table?console.table(r):console.log(te(r));else{var a;a="output"===s?document.getElementsByTagName("output")[0]:"string"==typeof s?document.getElementById(s):s;var u="";if("string"==typeof e&&n.options.logprompt&&(u+="
"+n.pretty(e)+"
"),Array.isArray(r))if(0===r.length)u+="

[ ]

";else if("object"!=typeof r[0]||Array.isArray(r[0]))for(var c=0,l=r.length;c"+ae(r[c])+"

";else u+=ae(r);else u+=ae(r);a.innerHTML+=u}},n.clear=function(){var e=n.options.logtarget;o.isNode||o.isMeteorServer?console.clear&&console.clear():("output"===e?document.getElementsByTagName("output")[0]:"string"==typeof e?document.getElementById(e):e).innerHTML=""},n.write=function(e){var t=n.options.logtarget;o.isNode||o.isMeteorServer?console.log&&console.log(e):("output"===t?document.getElementsByTagName("output")[0]:"string"==typeof t?document.getElementById(t):t).innerHTML+=e},n.prompt=function(e,t,r){if(o.isNode)throw new Error("The prompt not realized for Node.js");var i=0;if("string"==typeof e&&(e=document.getElementById(e)),"string"==typeof t&&(t=document.getElementById(t)),t.textContent=n.useid,r){n.prompthistory.push(r),i=n.prompthistory.length;try{var s=Date.now();n.log(r),n.write('

'+(Date.now()-s)+" ms

")}catch(e){n.write("

"+n.useid+"> "+r+"

"),n.write('

'+e+"

")}}var a=e.getBoundingClientRect().top+document.getElementsByTagName("body")[0].scrollTop;ue(document.getElementsByTagName("body")[0],a,500),e.onkeydown=function(r){if(13===r.which){var o=e.value,s=n.useid;e.value="",n.prompthistory.push(o),i=n.prompthistory.length;try{var a=Date.now();n.log(o),n.write('

'+(Date.now()-a)+" ms

")}catch(e){n.write("

"+s+"> "+n.pretty(o,!1)+"

"),n.write('

'+e+"

")}e.focus(),t.textContent=n.useid;var u=e.getBoundingClientRect().top+document.getElementsByTagName("body")[0].scrollTop;ue(document.getElementsByTagName("body")[0],u,500)}else 38===r.which?(--i<0&&(i=0),n.prompthistory[i]&&(e.value=n.prompthistory[i],r.preventDefault())):40===r.which&&(++i>=n.prompthistory.length?(i=n.prompthistory.length,e.value=""):n.prompthistory[i]&&(e.value=n.prompthistory[i],r.preventDefault()))}},F.BeginTransaction=function(e){return Object.assign(this,e)},F.BeginTransaction.prototype.toString=function(){return"BEGIN TRANSACTION"},F.BeginTransaction.prototype.execute=function(e,t,r){var o=1;return n.databases[e].engineid?n.engines[n.databases[n.useid].engineid].begin(e,r):(r&&(o=r(o)),o)},F.CommitTransaction=function(e){return Object.assign(this,e)},F.CommitTransaction.prototype.toString=function(){return"COMMIT TRANSACTION"},F.CommitTransaction.prototype.execute=function(e,t,r){var o=1;return n.databases[e].engineid?n.engines[n.databases[n.useid].engineid].commit(e,r):(r&&(o=r(o)),o)},F.RollbackTransaction=function(e){return Object.assign(this,e)},F.RollbackTransaction.prototype.toString=function(){return"ROLLBACK TRANSACTION"},F.RollbackTransaction.prototype.execute=function(e,t,r){var o=1;return n.databases[e].engineid?n.engines[n.databases[e].engineid].rollback(e,r):(r&&(o=r(o)),o)},n.options.tsql&&(n.stdfn.OBJECT_ID=function(e,t){void 0===t&&(t="T"),t=t.toUpperCase();var r=e.split("."),o=n.useid,i=r[0];2==r.length&&(o=r[0],i=r[1]);var s=n.databases[o].tables;for(var a in o=n.databases[o].databaseid,s)if(a==i)return s[a].view&&"V"==t?o+"."+a:s[a].view||"T"!=t?void 0:o+"."+a}),n.options.mysql&&(n.fn.TIMESTAMPDIFF=function(e,t,r){return n.stdfn.DATEDIFF(e,t,r)}),(n.options.mysql||n.options.sqlite)&&(n.from.INFORMATION_SCHEMA=function(e,t,r,o,i){if("VIEWS"==e||"TABLES"==e){var s=[];for(var a in n.databases){var u=n.databases[a].tables;for(var c in u)(u[c].view&&"VIEWS"==e||!u[c].view&&"TABLES"==e)&&s.push({TABLE_CATALOG:a,TABLE_NAME:c})}return r&&(s=r(s,o,i)),s}throw new Error("Unknown INFORMATION_SCHEMA table")}),n.options.postgres,n.options.oracle,n.options.sqlite,n.into.SQL=function(e,t,r,o,i){var s;"object"==typeof e&&(t=e,e=void 0);var a={};if(n.utils.extend(a,t),void 0===a.tableid)throw new Error("Table for INSERT TO is not defined.");var u="";0===o.length&&"object"==typeof r[0]&&(o=Object.keys(r[0]).map((function(e){return{columnid:e}})));for(var l=0,h=r.length;l0&&(o=Object.keys(r[0]).map((function(e){return{columnid:e}}))),"object"==typeof e&&(t=e,e=void 0);var s=r.length,a="";if(r.length>0){var u=o[0].columnid;a+=r.map((function(e){return e[u]})).join("\n")}return e=n.utils.autoExtFilename(e,"txt",t),s=n.utils.saveFile(e,a),i&&(s=i(s)),s},n.into.TAB=n.into.TSV=function(e,t,r,o,i){var s={};return n.utils.extend(s,t),s.separator="\t",e=n.utils.autoExtFilename(e,"tab",t),s.autoExt=!1,n.into.CSV(e,s,r,o,i)},n.into.CSV=function(e,t,r,o,i){0===o.length&&r.length>0&&(o=Object.keys(r[0]).map((function(e){return{columnid:e}}))),"object"==typeof e&&(t=e,e=void 0);var s={headers:!0,separator:";",quote:'"',utf8Bom:!0};t&&!t.headers&&void 0!==t.headers&&(s.utf8Bom=!1),n.utils.extend(s,t);var a=r.length,u=s.utf8Bom?"\ufeff":"";return s.headers&&(u+=s.quote+o.map((function(e){return e.columnid.trim()})).join(s.quote+s.separator+s.quote)+s.quote+"\r\n"),r.forEach((function(e){u+=o.map((function(t){var n=e[t.columnid];return""!==s.quote&&(n=(n+"").replace(new RegExp("\\"+s.quote,"g"),s.quote+s.quote)),+n!=n&&(n=s.quote+n+s.quote),n})).join(s.separator)+"\r\n"})),e=n.utils.autoExtFilename(e,"csv",t),a=n.utils.saveFile(e,u,null,{disableAutoBom:!0}),i&&(a=i(a)),a},n.into.XLS=function(e,t,r,o,i){"object"==typeof e&&(t=e,e=void 0);var s={};t&&t.sheets&&(s=t.sheets);var a={headers:!0};void 0!==s.Sheet1?a=s[0]:void 0!==t&&(a=t),void 0===a.sheetid&&(a.sheetid="Sheet1");var u=function(){var e=' \t\t \t\t\x3c!--[if gte mso 9]> ';if(e+=" "+a.sheetid+" \t\t",e+="",e+="",e+="",void 0!==a.caption){var n=a.caption;"string"==typeof n&&(n={title:n}),e+=""}return void 0!==a.columns?o=a.columns:0==o.length&&r.length>0&&"object"==typeof r[0]&&(o=Array.isArray(r[0])?r[0].map((function(e,t){return{columnid:t}})):Object.keys(r[0]).map((function(e){return{columnid:e}}))),o.forEach((function(e,t){void 0!==a.column&&S(e,a.column),void 0===e.width&&(a.column&&"undefined"!=a.column.width?e.width=a.column.width:e.width="120px"),"number"==typeof e.width&&(e.width=e.width+"px"),void 0===e.columnid&&(e.columnid=t),void 0===e.title&&(e.title=""+e.columnid.trim()),a.headers&&Array.isArray(a.headers)&&(e.title=a.headers[t])})),e+="",o.forEach((function(t){e+=''})),e+="",a.headers&&(e+="",e+="",o.forEach((function(t,n){e+="",e+=""),e+="",r&&r.length>0&&r.forEach((function(n,r){if(!(r>a.limit)){e+=""})),e+=""}})),e+="",e+="
"})),e+="
",e+="",e+=""}();e=n.utils.autoExtFilename(e,"xls",t);var c=n.utils.saveFile(e,u);return i&&(c=i(c)),c},n.into.XLSXML=function(e,t,r,o,i){t=t||{},"object"==typeof e&&(t=e,e=void 0);var s,a,u={};t&&t.sheets?(u=t.sheets,s=r,a=o):(u.Sheet1=t,s=[r],a=[o]),e=n.utils.autoExtFilename(e,"xls",t);var c=n.utils.saveFile(e,function(){var e="",n=" ",r={},o=62;function i(t){var n="";for(var i in t){for(var s in n+="<"+i,t[i])n+=" ","x:"==s.substr(0,2)?n+=s:n+="ss:",n+=s+"="+JSON.stringify(t[i][s]);n+="/>"}var a=_(n);return r[a]||(r[a]={styleid:o},e+=`",o++),"s"+r[a].styleid}function c(e){try{return Object.values(e)}catch(t){return Object.keys(e).map((function(t){return e[t]}))}}var l=0;for(var h in u){var f=u[h],p=void 0!==f.dataidx?f.dataidx:l++,d=c(s[p]),E=void 0;void 0!==f.columns?E=f.columns:(void 0===(E=a[p])||0==E.length&&d.length>0)&&"object"==typeof d[0]&&(E=Array.isArray(d[0])?d[0].map((function(e,t){return{columnid:t}})):Object.keys(d[0]).map((function(e){return{columnid:e}}))),E.forEach((function(e,t){void 0!==f.column&&S(e,f.column),void 0===e.width&&(f.column&&void 0!==f.column.width?e.width=f.column.width:e.width=120),"number"==typeof e.width&&(e.width=e.width),void 0===e.columnid&&(e.columnid=t),void 0===e.title&&(e.title=""+e.columnid.trim()),f.headers&&Array.isArray(f.headers)&&(e.title=f.headers[t])})),n+="',E.forEach((function(e,t){n+=`\n\t\t\t\t\t`})),f.headers&&(n+='',E.forEach((function(e,t){if(n+=""})),n+=""),d&&d.length>0&&d.forEach((function(e,r){if(!(r>f.limit)){var o={};if(S(o,f.row),f.rows&&f.rows[r]&&S(o,f.rows[r]),n+="";var E=u.format;if(void 0===c)n+="";else if(void 0!==E)if("function"==typeof E)n+=E(c);else{if("string"!=typeof E)throw new Error("Unknown format type. Should be function or string");n+=c}else n+="number"==l||"date"==l?c.toString():"money"==l?(+c).toFixed(2):c;n+=""})),n+=""}})),n+=""}return' \t\t \t\t \t\t \t\t \t\t \t\t \t\t \t\t 0 \t\t \t\t \t\t '+e+(n+="")}());return i&&(c=i(c)),c},n.into.XLSX=function(e,t,r,i,s){var a=1;t=t||{},O(i,[{columnid:"_"}])&&(r=r.map((function(e){return e._})),i=void 0),e=n.utils.autoExtFilename(e,"xlsx",t);var u=D();"object"==typeof e&&(t=e,e=void 0);var c={SheetNames:[],Sheets:{}};return t.sourcefilename?n.utils.loadBinaryFile(t.sourcefilename,!!s,(function(e){c=u.read(e,{type:"binary",...n.options.excel,...t}),l()})):l(),s&&(a=s(a)),a;function l(){"object"==typeof t&&Array.isArray(t)?r&&r.length>0&&r.forEach((function(e,n){h(t[n],e,void 0,n+1)})):h(t,r,i,1),function(t){var n;if(void 0===e)a=c;else if(n=D(),o.isNode||o.isMeteorServer)n.writeFile(c,e);else{var r=n.write(c,{bookType:"xlsx",bookSST:!1,type:"binary"});me(new Blob([function(e){for(var t=new ArrayBuffer(e.length),n=new Uint8Array(t),r=0;r!=e.length;++r)n[r]=255&e.charCodeAt(r);return t}(r)],{type:"application/octet-stream"}),e)}}()}function h(e,t,r,o){var i={sheetid:"Sheet "+o,headers:!0};n.utils.extend(i,e);var s=Object.keys(t).length;r&&0!=r.length||(r=s>0?Object.keys(t[0]).map((function(e){return{columnid:e}})):[]);var a={};c.SheetNames.indexOf(i.sheetid)>-1||(c.SheetNames.push(i.sheetid),c.Sheets[i.sheetid]={}),a=c.Sheets[i.sheetid];var u="A1";i.range&&(u=i.range);var l=n.utils.xlscn(u.match(/[A-Z]+/)[0]),h=+u.match(/[0-9]+/)[0]-1;if(c.Sheets[i.sheetid]["!ref"])var f=c.Sheets[i.sheetid]["!ref"],p=n.utils.xlscn(f.match(/[A-Z]+/)[0]),d=+f.match(/[0-9]+/)[0]-1;else p=1,d=1;var E=r.length?0:1,m=Math.max(l+r.length-1+E,p),_=Math.max(h+s+2,d),g=h+1;c.Sheets[i.sheetid]["!ref"]="A1:"+n.utils.xlsnc(m)+_,i.headers&&(r.forEach((function(e,t){a[n.utils.xlsnc(l+t)+""+g]={v:e.columnid.trim()}})),g++);for(var y=0;yfunction(t,r,o,i,s){let a=[];return t=n.utils.autoExtFilename(t,e,r),n.utils.loadFile(t,!!o,(function(e){e.split(/\r?\n/).forEach(((e,t)=>{const n=e.trim();if(""!==n)try{a.push(JSON.parse(n))}catch(e){throw new Error(`Could not parse JSON at line ${t}: ${e.toString()}`)}})),o&&(res=o(a,i,s))}),(e=>{throw new Error(e)})),a};function le(e,t,r,o,i,s){var a={};function u(e){return e&&!1===n.options.casesensitive?e.toLowerCase():e}r=r||{},n.utils.extend(a,r),void 0===a.headers&&(a.headers=!0),t=n.utils.autoExtFilename(t,"xls",r),n.utils.loadBinaryFile(t,!!o,(function(t){if(t instanceof ArrayBuffer)var c=function(e){for(var t="",n=0,r=10240;n0&&p[p.length-1]&&0==Object.keys(p[p.length-1]).length&&p.pop(),o&&(p=o(p,i,s))}),(function(e){throw e}))}n.from.JSONL=ce("jsonl"),n.from.NDJSON=ce("ndjson"),n.from.TXT=function(e,t,r,o,i){var s;return e=n.utils.autoExtFilename(e,"txt",t),n.utils.loadFile(e,!!r,(function(e){""===(s=e.split(/\r?\n/))[s.length-1]&&s.pop();for(var t=0,n=s.length;t=d)return f;if(n)return n=!1,h;var t=E;if(e.charCodeAt(t)===l){for(var r=t;r++/g,""),{declaration:t(),root:n()};function t(){if(i(/^<\?xml\s*/)){for(var e={attributes:{}};!s()&&!a("?>");){var t=r();if(!t)return e;e.attributes[t.name]=t.value}return i(/\?>\s*/),e}}function n(){var e=i(/^<([\w-:.]+)\s*/);if(e){for(var t,o={name:e[1],attributes:{},children:[]};!(s()||a(">")||a("?>")||a("/>"));){var u=r();if(!u)return o;o.attributes[u.name]=u.value}if(i(/^\s*\/>\s*/))return o;for(i(/\??>\s*/),o.content=function(){var e=i(/^([^<]*)/);return e?e[1]:""}();t=n();)o.children.push(t);return i(/^<\/[\w-:.]+>\s*/),o}}function r(){var e=i(/([\w:-]+)\s*=\s*("[^"]*"|'[^']*'|\w+)\s*/);if(e)return{name:e[1],value:o(e[2])}}function o(e){return e.replace(/^['"]|['"]$/g,"")}function i(t){var n=e.match(t);if(n)return e=e.slice(n[0].length),n}function s(){return 0==e.length}function a(t){return 0==e.indexOf(t)}}(e).root,r&&(s=r(s,o,i))})),s},n.from.GEXF=function(e,t,r,o,i){var s;return n("SEARCH FROM XML("+e+")",[],(function(e){s=e,r&&(s=r(s))})),s},F.Print=function(e){return Object.assign(this,e)},F.Print.prototype.toString=function(){var e="PRINT";return this.statement&&(e+=" "+this.statement.toString()),e},F.Print.prototype.execute=function(e,t,r){var o=this,i=1;if(n.precompile(this,e,t),this.exprs&&this.exprs.length>0){var s=this.exprs.map((function(e){var r=new Function("params,alasql,p","var y;return "+e.toJS("({})","",null)).bind(o)(t,n);return te(r)}));console.log.apply(console,s)}else if(this.select){var a=this.select.execute(e,t);console.log(te(a))}else console.log();return r&&(i=r(i)),i},F.Source=function(e){return Object.assign(this,e)},F.Source.prototype.toString=function(){var e="SOURCE";return this.url&&(e+=" '"+this.url+" '"),e},F.Source.prototype.execute=function(e,t,r){var o;return p(this.url,!!r,(function(e){return o=n(e),r&&(o=r(o)),o}),(function(e){throw e})),o},F.Require=function(e){return Object.assign(this,e)},F.Require.prototype.toString=function(){var e="REQUIRE";return this.paths&&this.paths.length>0&&(e+=this.paths.map((function(e){return e.toString()})).join(",")),this.plugins&&this.plugins.length>0&&(e+=this.plugins.map((function(e){return e.toUpperCase()})).join(",")),e},F.Require.prototype.execute=function(e,t,r){var o=this,i=0,s="";return this.paths&&this.paths.length>0?this.paths.forEach((function(e){p(e.value,!!r,(function(e){i++,s+=e,i0?this.plugins.forEach((function(e){n.plugins[e]||p(n.path+"/alasql-"+e.toLowerCase()+".js",!!r,(function(a){i++,s+=a,it.name===e))||0;const n=t.open(e);return new Promise((function(t,r){n.onsuccess=()=>{n.result.close(),t({name:e,version:n.result.version})},n.onupgradeneeded=e=>{e.target.transaction.abort(),t(0)},n.onerror=()=>{r(new Error("IndexedDB error"))},n.onblocked=()=>{t({name:e,version:n.result.version})}}))}he.showDatabases=function(e,t){indexedDB.databases?indexedDB.databases().then((n=>{const r=[],o=e&&new RegExp(e.value.replace(/\%/g,".*"),"g");for(var i=0;i{throw o&&o(null,e),e})))if(n)o&&o(0);else{const t=new Error(`IndexedDB: Cannot create new database "${e}" because it already exists`);o&&o(null,t)}else{const t=indexedDB.open(e,1);t.onsuccess=()=>{t.result.close(),o(1)}}},he.dropDatabase=async function(e,t,n){await fe(e).catch((e=>{throw n&&n(null,e),e}))?indexedDB.deleteDatabase(e).onsuccess=()=>{n&&n(1)}:t?n&&n(0):n&&n(null,new Error(`IndexedDB: Cannot drop new database "${e}" because it does not exist'`))},he.attachDatabase=async function(e,t,r,o,i){if(!await fe(e).catch((e=>{throw i&&i(null,e),e}))){const t=new Error(`IndexedDB: Cannot attach database "${e}" because it does not exist`);throw i&&i(null,t),t}const s=await new Promise(((t,n)=>{const r=indexedDB.open(e);r.onsuccess=()=>{t(r.result.objectStoreNames),r.result.close()}})),a=new n.Database(t||e);a.engineid="INDEXEDDB",a.ixdbid=e,a.tables=[];for(var u=0;u{throw o&&o(null,e),e}));if(!s){const e=new Error('IndexedDB: Cannot create table in database "'+i+'" because it does not exist');throw o&&o(null,e),e}const a=indexedDB.open(i,s.version+1);a.onupgradeneeded=function(e){a.result.createObjectStore(t,{autoIncrement:!0})},a.onsuccess=function(e){a.result.close(),o&&o(1)},a.onerror=e=>{o(null,e)},a.onblocked=function(n){o(null,new Error(`Cannot create table "${t}" because database "${e}" is blocked`))}},he.dropTable=async function(e,t,r,o){const i=n.databases[e].ixdbid,s=await fe(i).catch((e=>{throw o&&o(null,e),e}));if(!s){const e=new Error('IndexedDB: Cannot drop table in database "'+i+'" because it does not exist');throw o&&o(null,e),e}const a=indexedDB.open(i,s.version+1);let u;a.onupgradeneeded=function(o){var i=a.result;i.objectStoreNames.contains(t)?(i.deleteObjectStore(t),delete n.databases[e].tables[t]):r||(u=new Error(`IndexedDB: Cannot drop table "${t}" because it does not exist`),o.target.transaction.abort())},a.onsuccess=function(e){a.result.close(),o&&o(1)},a.onerror=function(e){o&&o(null,u||e)},a.onblocked=function(n){o(null,new Error(`Cannot drop table "${t}" because database "${e}" is blocked`))}},he.intoTable=function(e,t,r,o,i){const s=n.databases[e].ixdbid,a=indexedDB.open(s);var u=n.databases[e].tables[t];a.onupgradeneeded=n=>{n.target.transaction.abort();const r=new Error(`Cannot insert into table "${t}" because database "${e}" does not exist`);i&&i(null,r)},a.onsuccess=()=>{for(var o=a.result,s=o.transaction([t],"readwrite"),c=s.objectStore(t),l=0,h=r.length;l{n.target.transaction.abort();const o=new Error(`Cannot select from table "${t}" because database "${e}" does not exist`);r&&r(null,o)},a.onsuccess=()=>{const e=[],n=a.result,s=n.transaction([t]).objectStore(t).openCursor();s.onsuccess=()=>{const t=s.result;if(t){const n="object"==typeof t?t.value:{[t.key]:t.value};e.push(n),t.continue()}else n.close(),r&&r(e,o,i)}}},he.deleteFromTable=function(e,t,r,o,i){const s=n.databases[e].ixdbid,a=indexedDB.open(s);a.onsuccess=()=>{const e=a.result,s=e.transaction([t],"readwrite").objectStore(t).openCursor();let u=0;s.onsuccess=()=>{var t=s.result;t?(r&&!r(t.value,o,n)||(t.delete(),u++),t.continue()):(e.close(),i&&i(u))}}},he.updateTable=function(e,t,r,o,i,s){const a=n.databases[e].ixdbid,u=indexedDB.open(a);u.onsuccess=function(){const e=u.result,n=e.transaction([t],"readwrite").objectStore(t).openCursor();let a=0;n.onsuccess=()=>{var t=n.result;if(t){if(!o||o(t.value,i)){var u=t.value;r(u,i),t.update(u),a++}t.continue()}else e.close(),s&&s(a)}}};var pe=n.engines.LOCALSTORAGE=function(){};pe.get=function(e){var t=localStorage.getItem(e);if(void 0!==t){var n;try{n=JSON.parse(t)}catch(e){throw new Error("Cannot parse JSON object from localStorage"+t)}return n}},pe.set=function(e,t){void 0===t?localStorage.removeItem(e):localStorage.setItem(e,JSON.stringify(t))},pe.storeTable=function(e,t){var r=n.databases[e],o=r.tables[t],i={};i.columns=o.columns,i.data=o.data,i.identities=o.identities,pe.set(r.lsdbid+"."+t,i)},pe.restoreTable=function(e,t){var r=n.databases[e],o=pe.get(r.lsdbid+"."+t),i=new n.Table;for(var s in o)i[s]=o[s];return r.tables[t]=i,i.indexColumns(),i},pe.removeTable=function(e,t){var r=n.databases[e];localStorage.removeItem(r.lsdbid+"."+t)},pe.createDatabase=function(e,t,n,r,o){var i=1,s=pe.get("alasql");if(n&&s&&s.databases&&s.databases[e])i=0;else{if(s||(s={databases:{}}),s.databases&&s.databases[e])throw new Error('localStorage: Cannot create new database "'+e+'" because it already exists');s.databases[e]=!0,pe.set("alasql",s),pe.set(e,{databaseid:e,tables:{}})}return o&&(i=o(i)),i},pe.dropDatabase=function(e,t,n){var r=1,o=pe.get("alasql");if(t&&o&&o.databases&&!o.databases[e])r=0;else{if(!o){if(t)return n?n(0):0;throw new Error("There is no any AlaSQL databases in localStorage")}if(o.databases&&!o.databases[e])throw new Error('localStorage: Cannot drop database "'+e+'" because there is no such database');delete o.databases[e],pe.set("alasql",o);var i=pe.get(e);for(var s in i.tables)localStorage.removeItem(e+"."+s);localStorage.removeItem(e)}return n&&(r=n(r)),r},pe.attachDatabase=function(e,t,r,o,i){var s=1;if(n.databases[t])throw new Error('Unable to attach database as "'+t+'" because it already exists');t||(t=e);var a=new n.Database(t);if(a.engineid="LOCALSTORAGE",a.lsdbid=e,a.tables=pe.get(e).tables,!n.options.autocommit&&a.tables)for(var u in a.tables)pe.restoreTable(t,u);return i&&(s=i(s)),s},pe.showDatabases=function(e,t){var n=[],r=pe.get("alasql");if(e)var o=new RegExp(e.value.replace(/%/g,".*"),"g");if(r&&r.databases){for(var i in r.databases)n.push({databaseid:i});e&&n&&n.length>0&&(n=n.filter((function(e){return e.databaseid.match(o)})))}return t&&(n=t(n)),n},pe.createTable=function(e,t,r,o){var i=1,s=n.databases[e].lsdbid;if(pe.get(s+"."+t)&&!r)throw new Error('Table "'+t+'" alsready exists in localStorage database "'+s+'"');var a=pe.get(s);return n.databases[e].tables[t],a.tables[t]=!0,pe.set(s,a),pe.storeTable(e,t),o&&(i=o(i)),i},pe.truncateTable=function(e,t,r,o){var i,s=1,a=n.databases[e].lsdbid;if(i=n.options.autocommit?pe.get(a):n.databases[e],!r&&!i.tables[t])throw new Error('Cannot truncate table "'+t+'" in localStorage, because it does not exist');return pe.restoreTable(e,t).data=[],pe.storeTable(e,t),o&&(s=o(s)),s},pe.dropTable=function(e,t,r,o){var i,s=1,a=n.databases[e].lsdbid;if(i=n.options.autocommit?pe.get(a):n.databases[e],!r&&!i.tables[t])throw new Error('Cannot drop table "'+t+'" in localStorage, because it does not exist');return delete i.tables[t],pe.set(a,i),pe.removeTable(e,t),o&&(s=o(s)),s},pe.fromTable=function(e,t,r,o,i){n.databases[e].lsdbid;var s=pe.restoreTable(e,t).data;return r&&(s=r(s,o,i)),s},pe.intoTable=function(e,t,r,o,i){n.databases[e].lsdbid;var s=r.length,a=pe.restoreTable(e,t);for(var u in a.identities){var c=a.identities[u];for(var l in r)r[l][u]=c.value,c.value+=c.step}return a.data||(a.data=[]),a.data=a.data.concat(r),pe.storeTable(e,t),i&&(s=i(s)),s},pe.loadTableData=function(e,t){n.databases[e],n.databases[e].lsdbid,pe.restoreTable(e,t)},pe.saveTableData=function(e,t){var r=n.databases[e],o=n.databases[e].lsdbid;pe.storeTable(o,t),r.tables[t].data=void 0},pe.commit=function(e,t){var r=n.databases[e],o=n.databases[e].lsdbid,i={databaseid:o,tables:{}};if(r.tables)for(var s in r.tables)i.tables[s]=!0,pe.storeTable(e,s);return pe.set(o,i),t?t(1):1},pe.begin=pe.commit,pe.rollback=function(e,t){};var de=n.engines.SQLITE=function(){};de.createDatabase=function(e,t,n,r,o){throw new Error("Connot create SQLITE database in memory. Attach it.")},de.dropDatabase=function(e){throw new Error("This is impossible to drop SQLite database. Detach it.")},de.attachDatabase=function(e,t,r,o,i){if(n.databases[t])throw new Error('Unable to attach database as "'+t+'" because it already exists');if(r[0]&&r[0]instanceof F.StringValue||r[0]instanceof F.ParamValue){if(r[0]instanceof F.StringValue)var s=r[0].value;else r[0]instanceof F.ParamValue&&(s=o[r[0].param]);return n.utils.loadBinaryFile(s,!0,(function(r){var o=new n.Database(t||e);o.engineid="SQLITE",o.sqldbid=e;var s=o.sqldb=new SQL.Database(r);o.tables=[],s.exec("SELECT * FROM sqlite_master WHERE type='table'")[0].values.forEach((function(e){o.tables[e[1]]={};var t=o.tables[e[1]].columns=[],r=n.parse(e[4]).statements[0].columns;r&&r.length>0&&r.forEach((function(e){t.push(e)}))})),i(1)}),(function(e){throw new Error('Cannot open SQLite database file "'+r[0].value+'"')})),1}throw new Error("Cannot attach SQLite database without a file")},de.fromTable=function(e,t,r,o,i){var s=n.databases[e].sqldb.exec("SELECT * FROM "+t),a=i.sources[o].columns=[];s[0].columns.length>0&&s[0].columns.forEach((function(e){a.push({columnid:e})}));var u=[];s[0].values.length>0&&s[0].values.forEach((function(e){var t={};a.forEach((function(n,r){t[n.columnid]=e[r]})),u.push(t)})),r&&r(u,o,i)},de.intoTable=function(e,t,r,o,i){for(var s=n.databases[e].sqldb,a=0,u=r.length;a1){var u="REQUIRE "+t.map((function(e){return'"'+e+'"'})).join(",");n(u,[],r)}}else if(!1===e)return void delete n.webworker});var me=me||function(e){if(!(void 0===e||"undefined"!=typeof navigator&&/MSIE [1-9]\./.test(navigator.userAgent))){var t=e.document,n=function(){return e.URL||e.webkitURL||e},r=t.createElementNS("http://www.w3.org/1999/xhtml","a"),o="download"in r,i=/constructor/i.test(e.HTMLElement)||e.safari,s=/CriOS\/[\d]+/.test(navigator.userAgent),a=function(t){(e.setImmediate||e.setTimeout)((function(){throw t}),0)},u=function(e){setTimeout((function(){"string"==typeof e?n().revokeObjectURL(e):e.remove()}),4e4)},c=function(e){return/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob([String.fromCharCode(65279),e],{type:e.type}):e},l=function(t,l,h){h||(t=c(t));var f,p=this,d="application/octet-stream"===t.type,E=function(){!function(e,t,n){for(var r=(t=[].concat(t)).length;r--;){var o=e["on"+t[r]];if("function"==typeof o)try{o.call(e,e)}catch(e){a(e)}}}(p,"writestart progress write writeend".split(" "))};if(p.readyState=p.INIT,o)return f=n().createObjectURL(t),void setTimeout((function(){var e,t;r.href=f,r.download=l,e=r,t=new MouseEvent("click"),e.dispatchEvent(t),E(),u(f),p.readyState=p.DONE}));!function(){if((s||d&&i)&&e.FileReader){var r=new FileReader;return r.onloadend=function(){var t=s?r.result:r.result.replace(/^data:[^;]*;/,"data:attachment/file;");e.open(t,"_blank")||(e.location.href=t),t=void 0,p.readyState=p.DONE,E()},r.readAsDataURL(t),void(p.readyState=p.INIT)}f||(f=n().createObjectURL(t)),d?e.location.href=f:e.open(f,"_blank")||(e.location.href=f),p.readyState=p.DONE,E(),u(f)}()},h=l.prototype;return"undefined"!=typeof navigator&&navigator.msSaveOrOpenBlob?function(e,t,n){return t=t||e.name||"download",n||(e=c(e)),navigator.msSaveOrOpenBlob(e,t)}:(h.abort=function(){},h.readyState=h.INIT=0,h.WRITING=1,h.DONE=2,h.error=h.onwritestart=h.onprogress=h.onwrite=h.onabort=h.onerror=h.onwriteend=null,function(e,t,n){return new l(e,t||e.name||"download",n)})}}("undefined"!=typeof self&&self||"undefined"!=typeof window&&window||this.content);void 0!==e&&e.exports?e.exports.saveAs=me:"undefined"!=typeof define&&null!==define&&null!==define.amd&&define("FileSaver.js",(function(){return me})),n.utils.saveAs=me}return new M("alasql"),n.use("alasql"),n},"function"==typeof define&&define.amd?define([],n):"object"==typeof t?e.exports=n():this.alasql=n()},76725:(e,t,n)=>{var r=n(79896),o=n(16928),i=n(83254),s=o.join,a=o.dirname,u=r.accessSync&&function(e){try{r.accessSync(e)}catch(e){return!1}return!0}||r.existsSync||o.existsSync,c={arrow:process.env.NODE_BINDINGS_ARROW||" → ",compiled:process.env.NODE_BINDINGS_COMPILED_DIR||"compiled",platform:process.platform,arch:process.arch,nodePreGyp:"node-v"+process.versions.modules+"-"+process.platform+"-"+process.arch,version:process.versions.node,bindings:"bindings.node",try:[["module_root","build","bindings"],["module_root","build","Debug","bindings"],["module_root","build","Release","bindings"],["module_root","out","Debug","bindings"],["module_root","Debug","bindings"],["module_root","out","Release","bindings"],["module_root","Release","bindings"],["module_root","build","default","bindings"],["module_root","compiled","version","platform","arch","bindings"],["module_root","addon-build","release","install-root","bindings"],["module_root","addon-build","debug","install-root","bindings"],["module_root","addon-build","default","install-root","bindings"],["module_root","lib","binding","nodePreGyp","bindings"]]};e.exports=t=function(e){"string"==typeof e?e={bindings:e}:e||(e={}),Object.keys(c).map((function(t){t in e||(e[t]=c[t])})),e.module_root||(e.module_root=t.getRoot(t.getFileName())),".node"!=o.extname(e.bindings)&&(e.bindings+=".node");for(var n,r,i,a=require,u=[],l=0,h=e.try.length;l{"use strict";var r=n(20181).Buffer,o=n(20181).SlowBuffer;function i(e,t){if(!r.isBuffer(e)||!r.isBuffer(t))return!1;if(e.length!==t.length)return!1;for(var n=0,o=0;o{"use strict";const{parseContentType:r}=n(90012),o=[n(67679),n(54018)].filter((function(e){return"function"==typeof e.detect}));e.exports=e=>{if("object"==typeof e&&null!==e||(e={}),"object"!=typeof e.headers||null===e.headers||"string"!=typeof e.headers["content-type"])throw new Error("Missing Content-Type");return function(e){const t=e.headers,n=r(t["content-type"]);if(!n)throw new Error("Malformed content type");for(const r of o){if(!r.detect(n))continue;const o={limits:e.limits,headers:t,conType:n,highWaterMark:void 0,fileHwm:void 0,defCharset:void 0,defParamCharset:void 0,preservePath:!1};return e.highWaterMark&&(o.highWaterMark=e.highWaterMark),e.fileHwm&&(o.fileHwm=e.fileHwm),o.defCharset=e.defCharset,o.defParamCharset=e.defParamCharset,o.preservePath=e.preservePath,new r(o)}throw new Error(`Unsupported content type: ${t["content-type"]}`)}(e)}},67679:(e,t,n)=>{"use strict";const{Readable:r,Writable:o}=n(2203),i=n(70249),{basename:s,convertToUTF8:a,getDecoder:u,parseContentType:c,parseDisposition:l}=n(90012),h=Buffer.from("\r\n"),f=Buffer.from("\r"),p=Buffer.from("-");function d(){}const E=16384;class m{constructor(e){this.header=Object.create(null),this.pairCount=0,this.byteCount=0,this.state=0,this.name="",this.value="",this.crlf=0,this.cb=e}reset(){this.header=Object.create(null),this.pairCount=0,this.byteCount=0,this.state=0,this.name="",this.value="",this.crlf=0}push(e,t,n){let r=t;for(;t{if(this._read(),0==--t._fileEndsLeft&&t._finalcb){const e=t._finalcb;t._finalcb=null,process.nextTick(e)}}))}_read(e){const t=this._readcb;t&&(this._readcb=null,t())}}const g={push:(e,t)=>{},destroy:()=>{}};function y(e,t){return e}function A(e,t,n){if(n)return t(n);t(n=v(e))}function v(e){if(e._hparser)return new Error("Malformed part header");const t=e._fileStream;return t&&(e._fileStream=null,t.destroy(new Error("Unexpected end of file"))),e._complete?void 0:new Error("Unexpected end of form")}const b=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],T=[0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1];e.exports=class extends o{constructor(e){if(super({autoDestroy:!0,emitClose:!0,highWaterMark:"number"==typeof e.highWaterMark?e.highWaterMark:void 0}),!e.conType.params||"string"!=typeof e.conType.params.boundary)throw new Error("Multipart: Boundary not found");const t=e.conType.params.boundary,n="string"==typeof e.defParamCharset&&e.defParamCharset?u(e.defParamCharset):y,r=e.defCharset||"utf8",o=e.preservePath,E={autoDestroy:!0,emitClose:!0,highWaterMark:"number"==typeof e.fileHwm?e.fileHwm:void 0},A=e.limits,v=A&&"number"==typeof A.fieldSize?A.fieldSize:1048576,b=A&&"number"==typeof A.fileSize?A.fileSize:1/0,T=A&&"number"==typeof A.files?A.files:1/0,w=A&&"number"==typeof A.fields?A.fields:1/0,O=A&&"number"==typeof A.parts?A.parts:1/0;let R=-1,S=0,I=0,N=!1;this._fileEndsLeft=0,this._fileStream=void 0,this._complete=!1;let C,D,L,M,x,B=0,P=0,F=!1,U=!1,k=!1;this._hparser=null;const j=new m((e=>{let t;if(this._hparser=null,N=!1,M="text/plain",D=r,L="7bit",x=void 0,F=!1,!e["content-disposition"])return void(N=!0);const i=l(e["content-disposition"][0],n);if(i&&"form-data"===i.type){if(i.params&&(i.params.name&&(x=i.params.name),i.params["filename*"]?t=i.params["filename*"]:i.params.filename&&(t=i.params.filename),void 0===t||o||(t=s(t))),e["content-type"]){const t=c(e["content-type"][0]);t&&(M=`${t.type}/${t.subtype}`,t.params&&"string"==typeof t.params.charset&&(D=t.params.charset.toLowerCase()))}if(e["content-transfer-encoding"]&&(L=e["content-transfer-encoding"][0].toLowerCase()),"application/octet-stream"===M||void 0!==t){if(I===T)return U||(U=!0,this.emit("filesLimit")),void(N=!0);if(++I,0===this.listenerCount("file"))return void(N=!0);B=0,this._fileStream=new _(E,this),++this._fileEndsLeft,this.emit("file",x,this._fileStream,{filename:t,encoding:L,mimeType:M})}else{if(S===w)return k||(k=!0,this.emit("fieldsLimit")),void(N=!0);if(++S,0===this.listenerCount("field"))return void(N=!0);C=[],P=0}}else N=!0}));let G=0;const V=(e,t,n,r,o)=>{e:for(;t;){if(null!==this._hparser){const e=this._hparser.push(t,n,r);if(-1===e){this._hparser=null,j.reset(),this.emit("error",new Error("Malformed part header"));break}n=e}if(n===r)break;if(0!==G){if(1===G){switch(t[n]){case 45:G=2,++n;break;case 13:G=3,++n;break;default:G=0}if(n===r)return}if(2===G){if(G=0,45===t[n])return this._complete=!0,void(this._bparser=g);const e=this._writecb;this._writecb=d,V(!1,p,0,1,!1),this._writecb=e}else if(3===G){if(G=0,10===t[n]){if(++n,R>=O)break;if(this._hparser=j,n===r)break;continue e}{const e=this._writecb;this._writecb=d,V(!1,f,0,1,!1),this._writecb=e}}}if(!N)if(this._fileStream){let e;const i=Math.min(r-n,b-B);o?e=t.slice(n,n+i):(e=Buffer.allocUnsafe(i),t.copy(e,0,n,n+i)),B+=e.length,B===b?(e.length>0&&this._fileStream.push(e),this._fileStream.emit("limit"),this._fileStream.truncated=!0,N=!0):this._fileStream.push(e)||(this._writecb&&(this._fileStream._readcb=this._writecb),this._writecb=null)}else if(void 0!==C){let e;const i=Math.min(r-n,v-P);o?e=t.slice(n,n+i):(e=Buffer.allocUnsafe(i),t.copy(e,0,n,n+i)),P+=i,C.push(e),P===v&&(N=!0,F=!0)}break}if(e){if(G=1,this._fileStream)this._fileStream.push(null),this._fileStream=null;else if(void 0!==C){let e;switch(C.length){case 0:e="";break;case 1:e=a(C[0],D,0);break;default:e=a(Buffer.concat(C,P),D,0)}C=void 0,P=0,this.emit("field",x,e,{nameTruncated:!1,valueTruncated:F,encoding:L,mimeType:M})}++R===O&&this.emit("partsLimit")}};this._bparser=new i(`\r\n--${t}`,V),this._writecb=null,this._finalcb=null,this.write(h)}static detect(e){return"multipart"===e.type&&"form-data"===e.subtype}_write(e,t,n){this._writecb=n,this._bparser.push(e,0),this._writecb&&function(e,t){const n=e._writecb;e._writecb=null,n&&n()}(this)}_destroy(e,t){this._hparser=null,this._bparser=g,e||(e=v(this));const n=this._fileStream;n&&(this._fileStream=null,n.destroy(e)),t(e)}_final(e){if(this._bparser.destroy(),!this._complete)return e(new Error("Unexpected end of form"));this._fileEndsLeft?this._finalcb=A.bind(null,this,e):A(this,e)}}},54018:(e,t,n)=>{"use strict";const{Writable:r}=n(2203),{getDecoder:o}=n(90012);function i(e,t,n,r){if(n>=r)return r;if(-1===e._byte){const o=u[t[n++]];if(-1===o)return-1;if(o>=8&&(e._encode=2),ne.fieldNameSizeLimit){for(e._keyTrunc||e._lastPose.fieldSizeLimit){for(e._valTrunc||e._lastPos=this.fieldsLimit)return n();let r=0;const o=e.length;if(this._lastPos=0,-2!==this._byte){if(r=i(this,e,r,o),-1===r)return n(new Error("Malformed urlencoded form"));if(r>=o)return n();this._inKey?++this._bytesKey:++this._bytesVal}e:for(;r0&&this.emit("field",this._key,"",{nameTruncated:this._keyTrunc,valueTruncated:!1,encoding:this.charset,mimeType:"text/plain"}),this._key="",this._val="",this._keyTrunc=!1,this._valTrunc=!1,this._bytesKey=0,this._bytesVal=0,++this._fields>=this.fieldsLimit)return this.emit("fieldsLimit"),n();continue;case 43:this._lastPos=o)return n();++this._bytesKey,r=s(this,e,r,o);continue}++r,++this._bytesKey,r=s(this,e,r,o)}this._lastPos0||this._bytesVal>0)&&this.emit("field",this._key,this._val,{nameTruncated:this._keyTrunc,valueTruncated:this._valTrunc,encoding:this.charset,mimeType:"text/plain"}),this._key="",this._val="",this._keyTrunc=!1,this._valTrunc=!1,this._bytesKey=0,this._bytesVal=0,++this._fields>=this.fieldsLimit)return this.emit("fieldsLimit"),n();continue e;case 43:this._lastPos=o)return n();++this._bytesVal,r=a(this,e,r,o);continue}++r,++this._bytesVal,r=a(this,e,r,o)}this._lastPos0||this._bytesVal>0)&&(this._inKey?this._key=this._decoder(this._key,this._encode):this._val=this._decoder(this._val,this._encode),this.emit("field",this._key,this._val,{nameTruncated:this._keyTrunc,valueTruncated:this._valTrunc,encoding:this.charset,mimeType:"text/plain"})),e()}}},90012:function(e){"use strict";function t(e,t,n){for(;t=128?r=2:0===r&&(r=1);continue}return}break}}if(d+=e.slice(f,t),d=i(d,p,r),void 0===d)return}else{if(++t===e.length)return;if(34===e.charCodeAt(t)){f=++t;let n=!1;for(;t{if(0===e.length)return"";if("string"==typeof e){if(t<2)return e;e=Buffer.from(e,"latin1")}return e.utf8Slice(0,e.length)},latin1:(e,t)=>0===e.length?"":"string"==typeof e?e:e.latin1Slice(0,e.length),utf16le:(e,t)=>0===e.length?"":("string"==typeof e&&(e=Buffer.from(e,"latin1")),e.ucs2Slice(0,e.length)),base64:(e,t)=>0===e.length?"":("string"==typeof e&&(e=Buffer.from(e,"latin1")),e.base64Slice(0,e.length)),other:(e,t)=>{if(0===e.length)return"";"string"==typeof e&&(e=Buffer.from(e,"latin1"));try{return new TextDecoder(this).decode(e)}catch{}}};function i(e,t,n){const o=r(t);if(o)return o(e,n)}const s=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],a=[0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],u=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,0,0,0,0,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],c=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],l=[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,-1,-1,-1,-1,-1,-1,-1,10,11,12,13,14,15,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,10,11,12,13,14,15,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1];e.exports={basename:function(e){if("string"!=typeof e)return"";for(let t=e.length-1;t>=0;--t)switch(e.charCodeAt(t)){case 47:case 92:return".."===(e=e.slice(t+1))||"."===e?"":e}return".."===e||"."===e?"":e},convertToUTF8:i,getDecoder:r,parseContentType:function(e){if(0===e.length)return;const n=Object.create(null);let r=0;for(;r{"use strict";var r=n(70453),o=n(10487),i=o(r("String.prototype.indexOf"));e.exports=function(e,t){var n=r(e,!!t);return"function"==typeof n&&i(e,".prototype.")>-1?o(n):n}},10487:(e,t,n)=>{"use strict";var r=n(66743),o=n(70453),i=n(96897),s=n(69675),a=o("%Function.prototype.apply%"),u=o("%Function.prototype.call%"),c=o("%Reflect.apply%",!0)||r.call(u,a),l=n(30655),h=o("%Math.max%");e.exports=function(e){if("function"!=typeof e)throw new s("a function is required");var t=c(r,u,arguments);return i(t,1+h(0,e.length-(arguments.length-1)),!0)};var f=function(){return c(r,a,arguments)};l?l(e.exports,"apply",{value:f}):e.exports.apply=f},74353:function(e){e.exports=function(){"use strict";var e=6e4,t=36e5,n="millisecond",r="second",o="minute",i="hour",s="day",a="week",u="month",c="quarter",l="year",h="date",f="Invalid Date",p=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,d=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,E={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],n=e%100;return"["+e+(t[(n-20)%10]||t[n]||t[0])+"]"}},m=function(e,t,n){var r=String(e);return!r||r.length>=t?e:""+Array(t+1-r.length).join(n)+e},_={s:m,z:function(e){var t=-e.utcOffset(),n=Math.abs(t),r=Math.floor(n/60),o=n%60;return(t<=0?"+":"-")+m(r,2,"0")+":"+m(o,2,"0")},m:function e(t,n){if(t.date()1)return e(s[0])}else{var a=t.name;y[a]=t,o=a}return!r&&o&&(g=o),o||!r&&g},T=function(e,t){if(v(e))return e.clone();var n="object"==typeof t?t:{};return n.date=e,n.args=arguments,new O(n)},w=_;w.l=b,w.i=v,w.w=function(e,t){return T(e,{locale:t.$L,utc:t.$u,x:t.$x,$offset:t.$offset})};var O=function(){function E(e){this.$L=b(e.locale,null,!0),this.parse(e),this.$x=this.$x||e.x||{},this[A]=!0}var m=E.prototype;return m.parse=function(e){this.$d=function(e){var t=e.date,n=e.utc;if(null===t)return new Date(NaN);if(w.u(t))return new Date;if(t instanceof Date)return new Date(t);if("string"==typeof t&&!/Z$/i.test(t)){var r=t.match(p);if(r){var o=r[2]-1||0,i=(r[7]||"0").substring(0,3);return n?new Date(Date.UTC(r[1],o,r[3]||1,r[4]||0,r[5]||0,r[6]||0,i)):new Date(r[1],o,r[3]||1,r[4]||0,r[5]||0,r[6]||0,i)}}return new Date(t)}(e),this.init()},m.init=function(){var e=this.$d;this.$y=e.getFullYear(),this.$M=e.getMonth(),this.$D=e.getDate(),this.$W=e.getDay(),this.$H=e.getHours(),this.$m=e.getMinutes(),this.$s=e.getSeconds(),this.$ms=e.getMilliseconds()},m.$utils=function(){return w},m.isValid=function(){return!(this.$d.toString()===f)},m.isSame=function(e,t){var n=T(e);return this.startOf(t)<=n&&n<=this.endOf(t)},m.isAfter=function(e,t){return T(e){t.formatArgs=function(t){if(t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff),!this.useColors)return;const n="color: "+this.color;t.splice(1,0,n,"color: inherit");let r=0,o=0;t[0].replace(/%[a-zA-Z%]/g,(e=>{"%%"!==e&&(r++,"%c"===e&&(o=r))})),t.splice(o,0,n)},t.save=function(e){try{e?t.storage.setItem("debug",e):t.storage.removeItem("debug")}catch(e){}},t.load=function(){let e;try{e=t.storage.getItem("debug")}catch(e){}return!e&&"undefined"!=typeof process&&"env"in process&&(e=process.env.DEBUG),e},t.useColors=function(){return!("undefined"==typeof window||!window.process||"renderer"!==window.process.type&&!window.process.__nwjs)||("undefined"==typeof navigator||!navigator.userAgent||!navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/))&&("undefined"!=typeof document&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||"undefined"!=typeof window&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||"undefined"!=typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/))},t.storage=function(){try{return localStorage}catch(e){}}(),t.destroy=(()=>{let e=!1;return()=>{e||(e=!0,console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."))}})(),t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"],t.log=console.debug||console.log||(()=>{}),e.exports=n(40736)(t);const{formatters:r}=e.exports;r.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}},40736:(e,t,n)=>{e.exports=function(e){function t(e){let n,o,i,s=null;function a(...e){if(!a.enabled)return;const r=a,o=Number(new Date),i=o-(n||o);r.diff=i,r.prev=n,r.curr=o,n=o,e[0]=t.coerce(e[0]),"string"!=typeof e[0]&&e.unshift("%O");let s=0;e[0]=e[0].replace(/%([a-zA-Z%])/g,((n,o)=>{if("%%"===n)return"%";s++;const i=t.formatters[o];if("function"==typeof i){const t=e[s];n=i.call(r,t),e.splice(s,1),s--}return n})),t.formatArgs.call(r,e),(r.log||t.log).apply(r,e)}return a.namespace=e,a.useColors=t.useColors(),a.color=t.selectColor(e),a.extend=r,a.destroy=t.destroy,Object.defineProperty(a,"enabled",{enumerable:!0,configurable:!1,get:()=>null!==s?s:(o!==t.namespaces&&(o=t.namespaces,i=t.enabled(e)),i),set:e=>{s=e}}),"function"==typeof t.init&&t.init(a),a}function r(e,n){const r=t(this.namespace+(void 0===n?":":n)+e);return r.log=this.log,r}function o(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}return t.debug=t,t.default=t,t.coerce=function(e){return e instanceof Error?e.stack||e.message:e},t.disable=function(){const e=[...t.names.map(o),...t.skips.map(o).map((e=>"-"+e))].join(",");return t.enable(""),e},t.enable=function(e){let n;t.save(e),t.namespaces=e,t.names=[],t.skips=[];const r=("string"==typeof e?e:"").split(/[\s,]+/),o=r.length;for(n=0;n{t[n]=e[n]})),t.names=[],t.skips=[],t.formatters={},t.selectColor=function(e){let n=0;for(let t=0;t{"undefined"==typeof process||"renderer"===process.type||!0===process.browser||process.__nwjs?e.exports=n(17833):e.exports=n(76033)},76033:(e,t,n)=>{const r=n(52018),o=n(39023);t.init=function(e){e.inspectOpts={};const n=Object.keys(t.inspectOpts);for(let r=0;r{}),"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."),t.colors=[6,2,3,4,5,1];try{const e=n(27687);e&&(e.stderr||e).level>=2&&(t.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221])}catch(e){}t.inspectOpts=Object.keys(process.env).filter((e=>/^debug_/i.test(e))).reduce(((e,t)=>{const n=t.substring(6).toLowerCase().replace(/_([a-z])/g,((e,t)=>t.toUpperCase()));let r=process.env[t];return r=!!/^(yes|on|true|enabled)$/i.test(r)||!/^(no|off|false|disabled)$/i.test(r)&&("null"===r?null:Number(r)),e[n]=r,e}),{}),e.exports=n(40736)(t);const{formatters:i}=e.exports;i.o=function(e){return this.inspectOpts.colors=this.useColors,o.inspect(e,this.inspectOpts).split("\n").map((e=>e.trim())).join(" ")},i.O=function(e){return this.inspectOpts.colors=this.useColors,o.inspect(e,this.inspectOpts)}},30041:(e,t,n)=>{"use strict";var r=n(30655),o=n(58068),i=n(69675),s=n(75795);e.exports=function(e,t,n){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new i("`obj` must be an object or a function`");if("string"!=typeof t&&"symbol"!=typeof t)throw new i("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new i("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new i("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new i("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new i("`loose`, if provided, must be a boolean");var a=arguments.length>3?arguments[3]:null,u=arguments.length>4?arguments[4]:null,c=arguments.length>5?arguments[5]:null,l=arguments.length>6&&arguments[6],h=!!s&&s(e,t);if(r)r(e,t,{configurable:null===c&&h?h.configurable:!c,enumerable:null===a&&h?h.enumerable:!a,value:n,writable:null===u&&h?h.writable:!u});else{if(!l&&(a||u||c))throw new o("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");e[t]=n}}},49795:e=>{"use strict";e.exports=(e,t,n)=>{const r=n=>Object.defineProperty(e,t,{value:n,enumerable:!0,writable:!0});return Object.defineProperty(e,t,{configurable:!0,enumerable:!0,get(){const e=n();return r(e),e},set(e){r(e)}}),e}},38452:(e,t,n)=>{"use strict";var r=n(1189),o="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),i=Object.prototype.toString,s=Array.prototype.concat,a=n(30041),u=n(30592)(),c=function(e,t,n,r){if(t in e)if(!0===r){if(e[t]===n)return}else if("function"!=typeof(o=r)||"[object Function]"!==i.call(o)||!r())return;var o;u?a(e,t,n,!0):a(e,t,n)},l=function(e,t){var n=arguments.length>2?arguments[2]:{},i=r(t);o&&(i=s.call(i,Object.getOwnPropertySymbols(t)));for(var a=0;a{"use strict";function t(e,t){t=t||{},this._capacity=t.capacity,this._head=0,this._tail=0,Array.isArray(e)?this._fromArray(e):(this._capacityMask=3,this._list=new Array(4))}t.prototype.peekAt=function(e){var t=e;if(t===(0|t)){var n=this.size();if(!(t>=n||t<-n))return t<0&&(t+=n),t=this._head+t&this._capacityMask,this._list[t]}},t.prototype.get=function(e){return this.peekAt(e)},t.prototype.peek=function(){if(this._head!==this._tail)return this._list[this._head]},t.prototype.peekFront=function(){return this.peek()},t.prototype.peekBack=function(){return this.peekAt(-1)},Object.defineProperty(t.prototype,"length",{get:function(){return this.size()}}),t.prototype.size=function(){return this._head===this._tail?0:this._headthis._capacity&&this.pop(),this._head1e4&&this._tail<=this._list.length>>>2&&this._shrinkArray(),t}},t.prototype.push=function(e){if(0===arguments.length)return this.size();var t=this._tail;return this._list[t]=e,this._tail=t+1&this._capacityMask,this._tail===this._head&&this._growArray(),this._capacity&&this.size()>this._capacity&&this.shift(),this._head1e4&&e<=t>>>2&&this._shrinkArray(),n}},t.prototype.removeOne=function(e){var t=e;if(t===(0|t)&&this._head!==this._tail){var n=this.size(),r=this._list.length;if(!(t>=n||t<-n)){t<0&&(t+=n),t=this._head+t&this._capacityMask;var o,i=this._list[t];if(e0;o--)this._list[t]=this._list[t=t-1+r&this._capacityMask];this._list[t]=void 0,this._head=this._head+1+r&this._capacityMask}else{for(o=n-1-e;o>0;o--)this._list[t]=this._list[t=t+1+r&this._capacityMask];this._list[t]=void 0,this._tail=this._tail-1+r&this._capacityMask}return i}}},t.prototype.remove=function(e,t){var n,r=e,o=t;if(r===(0|r)&&this._head!==this._tail){var i=this.size(),s=this._list.length;if(!(r>=i||r<-i||t<1)){if(r<0&&(r+=i),1===t||!t)return(n=new Array(1))[0]=this.removeOne(r),n;if(0===r&&r+t>=i)return n=this.toArray(),this.clear(),n;var a;for(r+t>i&&(t=i-r),n=new Array(t),a=0;a0;a--)this._list[r=r+1+s&this._capacityMask]=void 0;return n}if(0===e){for(this._head=this._head+t+s&this._capacityMask,a=t-1;a>0;a--)this._list[r=r+1+s&this._capacityMask]=void 0;return n}if(r0;a--)this.unshift(this._list[r=r-1+s&this._capacityMask]);for(r=this._head-1+s&this._capacityMask;o>0;)this._list[r=r-1+s&this._capacityMask]=void 0,o--;e<0&&(this._tail=r)}else{for(this._tail=r,r=r+t+s&this._capacityMask,a=i-(t+e);a>0;a--)this.push(this._list[r++]);for(r=this._tail;o>0;)this._list[r=r+1+s&this._capacityMask]=void 0,o--}return this._head<2&&this._tail>1e4&&this._tail<=s>>>2&&this._shrinkArray(),n}}},t.prototype.splice=function(e,t){var n=e;if(n===(0|n)){var r=this.size();if(n<0&&(n+=r),!(n>r)){if(arguments.length>2){var o,i,s,a=arguments.length,u=this._list.length,c=2;if(!r||n0&&(this._head=this._head+n+u&this._capacityMask)):(s=this.remove(n,t),this._head=this._head+n+u&this._capacityMask);a>c;)this.unshift(arguments[--a]);for(o=n;o>0;o--)this.unshift(i[o-1])}else{var l=(i=new Array(r-(n+t))).length;for(o=0;othis._tail){for(i=this._head;i>>=1,this._capacityMask>>>=1},t.prototype._nextPowerOf2=function(e){var t=1<{"use strict";var r=n(92861).Buffer,o=n(3527),i=128;function s(e){if(r.isBuffer(e))return e;if("string"==typeof e)return r.from(e,"base64");throw new TypeError("ECDSA signature must be a Base64 string or a Buffer")}function a(e,t,n){for(var r=0;t+r=i&&--r,r}e.exports={derToJose:function(e,t){e=s(e);var n=o(t),i=n+1,a=e.length,u=0;if(48!==e[u++])throw new Error('Could not find expected "seq"');var c=e[u++];if(129===c&&(c=e[u++]),a-u{"use strict";function t(e){return(e/8|0)+(e%8==0?0:1)}var n={ES256:t(256),ES384:t(384),ES512:t(521)};e.exports=function(e){var t=n[e];if(t)return t;throw new Error('Unknown algorithm "'+e+'"')}},2740:(e,t,n)=>{"use strict";var r=n(87976),o=n(52413),i=n(72034),s=n(30592)(),a=n(37461),u=n(74107),c=n(69383);function l(e,t){var n=new c(t);u(n,h),delete n.constructor;var o=a(i(e,"SYNC"));return r(n,"errors",o),n}s&&Object.defineProperty(l,"prototype",{writable:!1});var h=l.prototype;if(!o(h,"constructor",l)||!o(h,"message","")||!o(h,"name","AggregateError"))throw new c("unable to install AggregateError.prototype properties; please report this!");u(l.prototype,Error.prototype),e.exports=l},41424:(e,t,n)=>{"use strict";var r=n(66743),o=n(38452),i=n(43206),s=n(30041),a=n(2740),u=n(72545),c=n(73455),l=u(),h=i(r.call(l),l.name,!0);s(h,"prototype",l.prototype,!0,!0,!0,!0),o(h,{getPolyfill:u,implementation:a,shim:c}),e.exports=h},72545:(e,t,n)=>{"use strict";var r=n(2740);e.exports=function(){return"function"==typeof AggregateError?AggregateError:r}},73455:(e,t,n)=>{"use strict";var r=n(38452),o=n(90170)(),i=n(72545);e.exports=function(){var e=i();return r(o,{AggregateError:e},{AggregateError:function(){return o.AggregateError!==e}}),e}},30655:(e,t,n)=>{"use strict";var r=n(70453)("%Object.defineProperty%",!0)||!1;if(r)try{r({},"a",{value:1})}catch(e){r=!1}e.exports=r},41237:e=>{"use strict";e.exports=EvalError},69383:e=>{"use strict";e.exports=Error},79290:e=>{"use strict";e.exports=RangeError},79538:e=>{"use strict";e.exports=ReferenceError},58068:e=>{"use strict";e.exports=SyntaxError},69675:e=>{"use strict";e.exports=TypeError},35345:e=>{"use strict";e.exports=URIError},86454:(e,t,n)=>{"use strict";const r=n(43918),o=n(32923),i=n(8904);e.exports={XMLParser:o,XMLValidator:r,XMLBuilder:i}},35334:(e,t)=>{"use strict";const n=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",r="["+n+"]["+n+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*",o=new RegExp("^"+r+"$");t.isExist=function(e){return void 0!==e},t.isEmptyObject=function(e){return 0===Object.keys(e).length},t.merge=function(e,t,n){if(t){const r=Object.keys(t),o=r.length;for(let i=0;i{"use strict";const r=n(35334),o={allowBooleanAttributes:!1,unpairedTags:[]};function i(e){return" "===e||"\t"===e||"\n"===e||"\r"===e}function s(e,t){const n=t;for(;t5&&"xml"===r)return d("InvalidXml","XML declaration allowed only at the start of the document.",m(e,t));if("?"==e[t]&&">"==e[t+1]){t++;break}}return t}function a(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){let n=1;for(t+=8;t"===e[t]&&(n--,0===n))break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7])for(t+=8;t"===e[t+2]){t+=2;break}return t}t.validate=function(e,t){t=Object.assign({},o,t);const n=[];let u=!1,c=!1;"\ufeff"===e[0]&&(e=e.substr(1));for(let o=0;o"!==e[o]&&" "!==e[o]&&"\t"!==e[o]&&"\n"!==e[o]&&"\r"!==e[o];o++)g+=e[o];if(g=g.trim(),"/"===g[g.length-1]&&(g=g.substring(0,g.length-1),o--),h=g,!r.isName(h)){let t;return t=0===g.trim().length?"Invalid space after '<'.":"Tag '"+g+"' is an invalid name.",d("InvalidTag",t,m(e,o))}const y=l(e,o);if(!1===y)return d("InvalidAttr","Attributes for '"+g+"' have open quote.",m(e,o));let A=y.value;if(o=y.index,"/"===A[A.length-1]){const n=o-A.length;A=A.substring(0,A.length-1);const r=f(A,t);if(!0!==r)return d(r.err.code,r.err.msg,m(e,n+r.err.line));u=!0}else if(_){if(!y.tagClosed)return d("InvalidTag","Closing tag '"+g+"' doesn't have proper closing.",m(e,o));if(A.trim().length>0)return d("InvalidTag","Closing tag '"+g+"' can't have attributes or invalid starting.",m(e,E));if(0===n.length)return d("InvalidTag","Closing tag '"+g+"' has not been opened.",m(e,E));{const t=n.pop();if(g!==t.tagName){let n=m(e,t.tagStartPos);return d("InvalidTag","Expected closing tag '"+t.tagName+"' (opened in line "+n.line+", col "+n.col+") instead of closing tag '"+g+"'.",m(e,E))}0==n.length&&(c=!0)}}else{const r=f(A,t);if(!0!==r)return d(r.err.code,r.err.msg,m(e,o-A.length+r.err.line));if(!0===c)return d("InvalidXml","Multiple possible root nodes found.",m(e,o));-1!==t.unpairedTags.indexOf(g)||n.push({tagName:g,tagStartPos:E}),u=!0}for(o++;o0)||d("InvalidXml","Invalid '"+JSON.stringify(n.map((e=>e.tagName)),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):d("InvalidXml","Start tag expected.",1)};const u='"',c="'";function l(e,t){let n="",r="",o=!1;for(;t"===e[t]&&""===r){o=!0;break}n+=e[t]}return""===r&&{value:n,index:t,tagClosed:o}}const h=new RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function f(e,t){const n=r.getAllMatches(e,h),o={};for(let e=0;e{"use strict";const r=n(12788),o={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&"},{regex:new RegExp(">","g"),val:">"},{regex:new RegExp("<","g"),val:"<"},{regex:new RegExp("'","g"),val:"'"},{regex:new RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function i(e){this.options=Object.assign({},o,e),this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=u),this.processTextOrObjNode=s,this.options.format?(this.indentate=a,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function s(e,t,n){const r=this.j2x(e,n+1);return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,r.attrStr,n):this.buildObjectNode(r.val,t,r.attrStr,n)}function a(e){return this.options.indentBy.repeat(e)}function u(e){return!(!e.startsWith(this.options.attributeNamePrefix)||e===this.options.textNodeName)&&e.substr(this.attrPrefixLen)}i.prototype.build=function(e){return this.options.preserveOrder?r(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e={[this.options.arrayNodeName]:e}),this.j2x(e,0).val)},i.prototype.j2x=function(e,t){let n="",r="";for(let o in e)if(Object.prototype.hasOwnProperty.call(e,o))if(void 0===e[o])this.isAttribute(o)&&(r+="");else if(null===e[o])this.isAttribute(o)?r+="":"?"===o[0]?r+=this.indentate(t)+"<"+o+"?"+this.tagEndChar:r+=this.indentate(t)+"<"+o+"/"+this.tagEndChar;else if(e[o]instanceof Date)r+=this.buildTextValNode(e[o],o,"",t);else if("object"!=typeof e[o]){const i=this.isAttribute(o);if(i)n+=this.buildAttrPairStr(i,""+e[o]);else if(o===this.options.textNodeName){let t=this.options.tagValueProcessor(o,""+e[o]);r+=this.replaceEntitiesValue(t)}else r+=this.buildTextValNode(e[o],o,"",t)}else if(Array.isArray(e[o])){const n=e[o].length;let i="";for(let s=0;s"+e+o}},i.prototype.closeTag=function(e){let t="";return-1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":`>`+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(r)+`\x3c!--${e}--\x3e`+this.newLine;if("?"===t[0])return this.indentate(r)+"<"+t+n+"?"+this.tagEndChar;{let o=this.options.tagValueProcessor(t,e);return o=this.replaceEntitiesValue(o),""===o?this.indentate(r)+"<"+t+n+this.closeTag(t)+this.tagEndChar:this.indentate(r)+"<"+t+n+">"+o+"0&&this.options.processEntities)for(let t=0;t{function t(e,s,a,u){let c="",l=!1;for(let h=0;h`,l=!1;continue}if(p===s.commentPropName){c+=u+`\x3c!--${f[p][0][s.textNodeName]}--\x3e`,l=!0;continue}if("?"===p[0]){const e=r(f[":@"],s),t="?xml"===p?"":u;let n=f[p][0][s.textNodeName];n=0!==n.length?" "+n:"",c+=t+`<${p}${n}${e}?>`,l=!0;continue}let E=u;""!==E&&(E+=s.indentBy);const m=u+`<${p}${r(f[":@"],s)}`,_=t(f[p],s,d,E);-1!==s.unpairedTags.indexOf(p)?s.suppressUnpairedNode?c+=m+">":c+=m+"/>":_&&0!==_.length||!s.suppressEmptyNode?_&&_.endsWith(">")?c+=m+`>${_}${u}`:(c+=m+">",_&&""!==u&&(_.includes("/>")||_.includes("`):c+=m+"/>",l=!0}return c}function n(e){const t=Object.keys(e);for(let n=0;n0&&t.processEntities)for(let n=0;n0&&(r="\n"),t(e,n,"",r)}},9400:(e,t,n)=>{const r=n(35334);function o(e,t){let n="";for(;t"===e[t]){if(f?"-"===e[t-1]&&"-"===e[t-2]&&(f=!1,r--):r--,0===r)break}else"["===e[t]?h=!0:p+=e[t];else{if(h&&s(e,t))t+=7,[entityName,val,t]=o(e,t+1),-1===val.indexOf("&")&&(n[l(entityName)]={regx:RegExp(`&${entityName};`,"g"),val});else if(h&&a(e,t))t+=8;else if(h&&u(e,t))t+=8;else if(h&&c(e,t))t+=9;else{if(!i)throw new Error("Invalid DOCTYPE");f=!0}r++,p=""}if(0!==r)throw new Error("Unclosed DOCTYPE")}return{entities:n,i:t}}},50460:(e,t)=>{const n={preserveOrder:!1,attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,removeNSPrefix:!1,allowBooleanAttributes:!1,parseTagValue:!0,parseAttributeValue:!1,trimValues:!0,cdataPropName:!1,numberParseOptions:{hex:!0,leadingZeros:!0,eNotation:!0},tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},stopNodes:[],alwaysCreateTextNode:!1,isArray:()=>!1,commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:function(e,t,n){return e}};t.buildOptions=function(e){return Object.assign({},n,e)},t.defaultOptions=n},17680:(e,t,n)=>{"use strict";const r=n(35334),o=n(23832),i=n(9400),s=n(17983);function a(e){const t=Object.keys(e);for(let n=0;n0)){s||(e=this.replaceEntitiesValue(e));const r=this.options.tagValueProcessor(t,e,n,o,i);return null==r?e:typeof r!=typeof e||r!==e?r:this.options.trimValues||e.trim()===e?A(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function c(e){if(this.options.removeNSPrefix){const t=e.split(":"),n="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=n+t[1])}return e}const l=new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function h(e,t,n){if(!this.options.ignoreAttributes&&"string"==typeof e){const n=r.getAllMatches(e,l),o=n.length,i={};for(let e=0;e",a,"Closing Tag is not closed.");let o=e.substring(a+2,t).trim();if(this.options.removeNSPrefix){const e=o.indexOf(":");-1!==e&&(o=o.substr(e+1))}this.options.transformTagName&&(o=this.options.transformTagName(o)),n&&(r=this.saveTextToParentTag(r,n,s));const i=s.substring(s.lastIndexOf(".")+1);if(o&&-1!==this.options.unpairedTags.indexOf(o))throw new Error(`Unpaired tag can not be used as closing tag: `);let u=0;i&&-1!==this.options.unpairedTags.indexOf(i)?(u=s.lastIndexOf(".",s.lastIndexOf(".")-1),this.tagsNodeStack.pop()):u=s.lastIndexOf("."),s=s.substring(0,u),n=this.tagsNodeStack.pop(),r="",a=t}else if("?"===e[a+1]){let t=g(e,a,!1,"?>");if(!t)throw new Error("Pi Tag is not closed.");if(r=this.saveTextToParentTag(r,n,s),this.options.ignoreDeclaration&&"?xml"===t.tagName||this.options.ignorePiTags);else{const e=new o(t.tagName);e.add(this.options.textNodeName,""),t.tagName!==t.tagExp&&t.attrExpPresent&&(e[":@"]=this.buildAttributesMap(t.tagExp,s,t.tagName)),this.addChild(n,e,s)}a=t.closeIndex+1}else if("!--"===e.substr(a+1,3)){const t=_(e,"--\x3e",a+4,"Comment is not closed.");if(this.options.commentPropName){const o=e.substring(a+4,t-2);r=this.saveTextToParentTag(r,n,s),n.add(this.options.commentPropName,[{[this.options.textNodeName]:o}])}a=t}else if("!D"===e.substr(a+1,2)){const t=i(e,a);this.docTypeEntities=t.entities,a=t.i}else if("!["===e.substr(a+1,2)){const t=_(e,"]]>",a,"CDATA is not closed.")-2,o=e.substring(a+9,t);r=this.saveTextToParentTag(r,n,s);let i=this.parseTextData(o,n.tagname,s,!0,!1,!0,!0);null==i&&(i=""),this.options.cdataPropName?n.add(this.options.cdataPropName,[{[this.options.textNodeName]:o}]):n.add(this.options.textNodeName,i),a=t+2}else{let i=g(e,a,this.options.removeNSPrefix),u=i.tagName;const c=i.rawTagName;let l=i.tagExp,h=i.attrExpPresent,f=i.closeIndex;this.options.transformTagName&&(u=this.options.transformTagName(u)),n&&r&&"!xml"!==n.tagname&&(r=this.saveTextToParentTag(r,n,s,!1));const p=n;if(p&&-1!==this.options.unpairedTags.indexOf(p.tagname)&&(n=this.tagsNodeStack.pop(),s=s.substring(0,s.lastIndexOf("."))),u!==t.tagname&&(s+=s?"."+u:u),this.isItStopNode(this.options.stopNodes,s,u)){let t="";if(l.length>0&&l.lastIndexOf("/")===l.length-1)"/"===u[u.length-1]?(u=u.substr(0,u.length-1),s=s.substr(0,s.length-1),l=u):l=l.substr(0,l.length-1),a=i.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(u))a=i.closeIndex;else{const n=this.readStopNodeData(e,c,f+1);if(!n)throw new Error(`Unexpected end of ${c}`);a=n.i,t=n.tagContent}const r=new o(u);u!==l&&h&&(r[":@"]=this.buildAttributesMap(l,s,u)),t&&(t=this.parseTextData(t,u,s,!0,h,!0,!0)),s=s.substr(0,s.lastIndexOf(".")),r.add(this.options.textNodeName,t),this.addChild(n,r,s)}else{if(l.length>0&&l.lastIndexOf("/")===l.length-1){"/"===u[u.length-1]?(u=u.substr(0,u.length-1),s=s.substr(0,s.length-1),l=u):l=l.substr(0,l.length-1),this.options.transformTagName&&(u=this.options.transformTagName(u));const e=new o(u);u!==l&&h&&(e[":@"]=this.buildAttributesMap(l,s,u)),this.addChild(n,e,s),s=s.substr(0,s.lastIndexOf("."))}else{const e=new o(u);this.tagsNodeStack.push(n),u!==l&&h&&(e[":@"]=this.buildAttributesMap(l,s,u)),this.addChild(n,e,s),n=e}r="",a=f}}else r+=e[a];return t.child};function p(e,t,n){const r=this.options.updateTag(t.tagname,n,t[":@"]);!1===r||("string"==typeof r?(t.tagname=r,e.addChild(t)):e.addChild(t))}const d=function(e){if(this.options.processEntities){for(let t in this.docTypeEntities){const n=this.docTypeEntities[t];e=e.replace(n.regx,n.val)}for(let t in this.lastEntities){const n=this.lastEntities[t];e=e.replace(n.regex,n.val)}if(this.options.htmlEntities)for(let t in this.htmlEntities){const n=this.htmlEntities[t];e=e.replace(n.regex,n.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function E(e,t,n,r){return e&&(void 0===r&&(r=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,n,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,r))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function m(e,t,n){const r="*."+n;for(const n in e){const o=e[n];if(r===o||t===o)return!0}return!1}function _(e,t,n,r){const o=e.indexOf(t,n);if(-1===o)throw new Error(r);return o+t.length-1}function g(e,t,n,r=">"){const o=function(e,t,n=">"){let r,o="";for(let i=t;i",n,`${t} is not closed`);if(e.substring(n+2,i).trim()===t&&(o--,0===o))return{tagContent:e.substring(r,n),i};n=i}else if("?"===e[n+1])n=_(e,"?>",n+1,"StopNode is not closed.");else if("!--"===e.substr(n+1,3))n=_(e,"--\x3e",n+3,"StopNode is not closed.");else if("!["===e.substr(n+1,2))n=_(e,"]]>",n,"StopNode is not closed.")-2;else{const r=g(e,n,">");r&&((r&&r.tagName)===t&&"/"!==r.tagExp[r.tagExp.length-1]&&o++,n=r.closeIndex)}}function A(e,t,n){if(t&&"string"==typeof e){const t=e.trim();return"true"===t||"false"!==t&&s(e,n)}return r.isExist(e)?e:""}e.exports=class{constructor(e){this.options=e,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:(e,t)=>String.fromCharCode(Number.parseInt(t,10))},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:(e,t)=>String.fromCharCode(Number.parseInt(t,16))}},this.addExternalEntities=a,this.parseXml=f,this.parseTextData=u,this.resolveNameSpace=c,this.buildAttributesMap=h,this.isItStopNode=m,this.replaceEntitiesValue=d,this.readStopNodeData=y,this.saveTextToParentTag=E,this.addChild=p}}},32923:(e,t,n)=>{const{buildOptions:r}=n(50460),o=n(17680),{prettify:i}=n(98010),s=n(43918);e.exports=class{constructor(e){this.externalEntities={},this.options=r(e)}parse(e,t){if("string"==typeof e);else{if(!e.toString)throw new Error("XML data is accepted in String or Bytes[] form.");e=e.toString()}if(t){!0===t&&(t={});const n=s.validate(e,t);if(!0!==n)throw Error(`${n.err.msg}:${n.err.line}:${n.err.col}`)}const n=new o(this.options);n.addExternalEntities(this.externalEntities);const r=n.parseXml(e);return this.options.preserveOrder||void 0===r?r:i(r,this.options)}addEntity(e,t){if(-1!==t.indexOf("&"))throw new Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw new Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw new Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}},98010:(e,t)=>{"use strict";function n(e,t,s){let a;const u={};for(let c=0;c0&&(u[t.textNodeName]=a):void 0!==a&&(u[t.textNodeName]=a),u}function r(e){const t=Object.keys(e);for(let e=0;e{"use strict";e.exports=class{constructor(e){this.tagname=e,this.child=[],this[":@"]={}}add(e,t){"__proto__"===e&&(e="#__proto__"),this.child.push({[e]:t})}addChild(e){"__proto__"===e.tagname&&(e.tagname="#__proto__"),e[":@"]&&Object.keys(e[":@"]).length>0?this.child.push({[e.tagname]:e.child,":@":e[":@"]}):this.child.push({[e.tagname]:e.child})}}},83254:(e,t,n)=>{var r=n(16928).sep||"/";e.exports=function(e){if("string"!=typeof e||e.length<=7||"file://"!=e.substring(0,7))throw new TypeError("must pass in a file:// URI to convert to a file path");var t=decodeURI(e.substring(7)),n=t.indexOf("/"),o=t.substring(0,n),i=t.substring(n+1);return"localhost"==o&&(o=""),o&&(o=r+r+o),i=i.replace(/^(.+)\|/,"$1:"),"\\"==r&&(i=i.replace(/\//g,"\\")),/^.+\:/.test(i)||(i=r+i),o+i}},89353:e=>{"use strict";var t=Object.prototype.toString,n=Math.max,r=function(e,t){for(var n=[],r=0;r{"use strict";var r=n(89353);e.exports=Function.prototype.bind||r},74462:e=>{"use strict";var t=function(){return"string"==typeof function(){}.name},n=Object.getOwnPropertyDescriptor;if(n)try{n([],"length")}catch(e){n=null}t.functionsHaveConfigurableNames=function(){if(!t()||!n)return!1;var e=n((function(){}),"name");return!!e&&!!e.configurable};var r=Function.prototype.bind;t.boundFunctionsHaveNames=function(){return t()&&"function"==typeof r&&""!==function(){}.bind().name},e.exports=t},14065:(e,t,n)=>{for(var r=n(39023),o=n(55027),i=/[\{\[]/,s=/[\}\]]/,a=["do","if","in","for","let","new","try","var","case","else","enum","eval","null","this","true","void","with","await","break","catch","class","const","false","super","throw","while","yield","delete","export","import","public","return","static","switch","typeof","default","extends","finally","package","private","continue","debugger","function","arguments","interface","protected","implements","instanceof","NaN","undefined"],u={},c=0;c-1)for(var t=e.trim().split("\n"),n=0;n{"use strict";var r,o=n(69383),i=n(41237),s=n(79290),a=n(79538),u=n(58068),c=n(69675),l=n(35345),h=Function,f=function(e){try{return h('"use strict"; return ('+e+").constructor;")()}catch(e){}},p=Object.getOwnPropertyDescriptor;if(p)try{p({},"")}catch(e){p=null}var d=function(){throw new c},E=p?function(){try{return d}catch(e){try{return p(arguments,"callee").get}catch(e){return d}}}():d,m=n(64039)(),_=n(80024)(),g=Object.getPrototypeOf||(_?function(e){return e.__proto__}:null),y={},A="undefined"!=typeof Uint8Array&&g?g(Uint8Array):r,v={__proto__:null,"%AggregateError%":"undefined"==typeof AggregateError?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?r:ArrayBuffer,"%ArrayIteratorPrototype%":m&&g?g([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":y,"%AsyncGenerator%":y,"%AsyncGeneratorFunction%":y,"%AsyncIteratorPrototype%":y,"%Atomics%":"undefined"==typeof Atomics?r:Atomics,"%BigInt%":"undefined"==typeof BigInt?r:BigInt,"%BigInt64Array%":"undefined"==typeof BigInt64Array?r:BigInt64Array,"%BigUint64Array%":"undefined"==typeof BigUint64Array?r:BigUint64Array,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":o,"%eval%":eval,"%EvalError%":i,"%Float32Array%":"undefined"==typeof Float32Array?r:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?r:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?r:FinalizationRegistry,"%Function%":h,"%GeneratorFunction%":y,"%Int8Array%":"undefined"==typeof Int8Array?r:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?r:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":m&&g?g(g([][Symbol.iterator]())):r,"%JSON%":"object"==typeof JSON?JSON:r,"%Map%":"undefined"==typeof Map?r:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&m&&g?g((new Map)[Symbol.iterator]()):r,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?r:Promise,"%Proxy%":"undefined"==typeof Proxy?r:Proxy,"%RangeError%":s,"%ReferenceError%":a,"%Reflect%":"undefined"==typeof Reflect?r:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?r:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&m&&g?g((new Set)[Symbol.iterator]()):r,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":m&&g?g(""[Symbol.iterator]()):r,"%Symbol%":m?Symbol:r,"%SyntaxError%":u,"%ThrowTypeError%":E,"%TypedArray%":A,"%TypeError%":c,"%Uint8Array%":"undefined"==typeof Uint8Array?r:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?r:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?r:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?r:Uint32Array,"%URIError%":l,"%WeakMap%":"undefined"==typeof WeakMap?r:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?r:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?r:WeakSet};if(g)try{null.error}catch(e){var b=g(g(e));v["%Error.prototype%"]=b}var T=function e(t){var n;if("%AsyncFunction%"===t)n=f("async function () {}");else if("%GeneratorFunction%"===t)n=f("function* () {}");else if("%AsyncGeneratorFunction%"===t)n=f("async function* () {}");else if("%AsyncGenerator%"===t){var r=e("%AsyncGeneratorFunction%");r&&(n=r.prototype)}else if("%AsyncIteratorPrototype%"===t){var o=e("%AsyncGenerator%");o&&g&&(n=g(o.prototype))}return v[t]=n,n},w={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},O=n(66743),R=n(9957),S=O.call(Function.call,Array.prototype.concat),I=O.call(Function.apply,Array.prototype.splice),N=O.call(Function.call,String.prototype.replace),C=O.call(Function.call,String.prototype.slice),D=O.call(Function.call,RegExp.prototype.exec),L=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,M=/\\(\\)?/g,x=function(e,t){var n,r=e;if(R(w,r)&&(r="%"+(n=w[r])[0]+"%"),R(v,r)){var o=v[r];if(o===y&&(o=T(r)),void 0===o&&!t)throw new c("intrinsic "+e+" exists, but is not available. Please file an issue!");return{alias:n,name:r,value:o}}throw new u("intrinsic "+e+" does not exist!")};e.exports=function(e,t){if("string"!=typeof e||0===e.length)throw new c("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof t)throw new c('"allowMissing" argument must be a boolean');if(null===D(/^%?[^%]*%?$/,e))throw new u("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var n=function(e){var t=C(e,0,1),n=C(e,-1);if("%"===t&&"%"!==n)throw new u("invalid intrinsic syntax, expected closing `%`");if("%"===n&&"%"!==t)throw new u("invalid intrinsic syntax, expected opening `%`");var r=[];return N(e,L,(function(e,t,n,o){r[r.length]=n?N(o,M,"$1"):t||e})),r}(e),r=n.length>0?n[0]:"",o=x("%"+r+"%",t),i=o.name,s=o.value,a=!1,l=o.alias;l&&(r=l[0],I(n,S([0,1],l)));for(var h=1,f=!0;h=n.length){var _=p(s,d);s=(f=!!_)&&"get"in _&&!("originalValue"in _.get)?_.get:s[d]}else f=R(s,d),s=s[d];f&&!a&&(v[i]=s)}}return s}},57970:e=>{"use strict";e.exports=global},90170:(e,t,n)=>{"use strict";var r=n(38452),o=n(57970),i=n(35323),s=n(36061),a=i(),u=function(){return a};r(u,{getPolyfill:i,implementation:o,shim:s}),e.exports=u},35323:(e,t,n)=>{"use strict";var r=n(57970);e.exports=function(){return"object"==typeof global&&global&&global.Math===Math&&global.Array===Array?global:r}},36061:(e,t,n)=>{"use strict";var r=n(38452),o=n(75795),i=n(35323);e.exports=function(){var e=i();if(r.supportsDescriptors){var t=o(e,"globalThis");t&&(!t.configurable||!t.enumerable&&t.writable&&globalThis===e)||Object.defineProperty(e,"globalThis",{configurable:!0,enumerable:!1,value:e,writable:!0})}else"object"==typeof globalThis&&globalThis===e||(e.globalThis=e);return e}},75795:(e,t,n)=>{"use strict";var r=n(70453)("%Object.getOwnPropertyDescriptor%",!0);if(r)try{r([],"length")}catch(e){r=null}e.exports=r},25884:e=>{"use strict";e.exports=(e,t=process.argv)=>{const n=e.startsWith("-")?"":1===e.length?"-":"--",r=t.indexOf(n+e),o=t.indexOf("--");return-1!==r&&(-1===o||r{"use strict";var r=n(30655),o=function(){return!!r};o.hasArrayLengthDefineBug=function(){if(!r)return null;try{return 1!==r([],"length",{value:1}).length}catch(e){return!0}},e.exports=o},80024:e=>{"use strict";var t={__proto__:null,foo:{}},n=Object;e.exports=function(){return{__proto__:t}.foo===t.foo&&!(t instanceof n)}},64039:(e,t,n)=>{"use strict";var r="undefined"!=typeof Symbol&&Symbol,o=n(41333);e.exports=function(){return"function"==typeof r&&"function"==typeof Symbol&&"symbol"==typeof r("foo")&&"symbol"==typeof Symbol("bar")&&o()}},41333:e=>{"use strict";e.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var e={},t=Symbol("test"),n=Object(t);if("string"==typeof t)return!1;if("[object Symbol]"!==Object.prototype.toString.call(t))return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;for(t in e[t]=42,e)return!1;if("function"==typeof Object.keys&&0!==Object.keys(e).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(e).length)return!1;var r=Object.getOwnPropertySymbols(e);if(1!==r.length||r[0]!==t)return!1;if(!Object.prototype.propertyIsEnumerable.call(e,t))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var o=Object.getOwnPropertyDescriptor(e,t);if(42!==o.value||!0!==o.enumerable)return!1}return!0}},49092:(e,t,n)=>{"use strict";var r=n(41333);e.exports=function(){return r()&&!!Symbol.toStringTag}},9957:(e,t,n)=>{"use strict";var r=Function.prototype.call,o=Object.prototype.hasOwnProperty,i=n(66743);e.exports=i.call(r,o)},47161:(e,t,n)=>{"use strict";var r=n(54774).Buffer;t._dbcs=l;for(var o=-1,i=-2,s=-10,a=-1e3,u=new Array(256),c=0;c<256;c++)u[c]=o;function l(e,t){if(this.encodingName=e.encodingName,!e)throw new Error("DBCS codec is called without the data.");if(!e.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var n=e.table();this.decodeTables=[],this.decodeTables[0]=u.slice(0),this.decodeTableSeq=[];for(var r=0;ra)throw new Error("gb18030 decode tables conflict at byte 2");for(var p=this.decodeTables[a-h[f]],d=129;d<=254;d++){if(p[d]===o)p[d]=a-c;else{if(p[d]===a-c)continue;if(p[d]>a)throw new Error("gb18030 decode tables conflict at byte 3")}for(var E=this.decodeTables[a-p[d]],m=48;m<=57;m++)E[m]===o&&(E[m]=i)}}}this.defaultCharUnicode=t.defaultCharUnicode,this.encodeTable=[],this.encodeTableSeq=[];var _={};if(e.encodeSkipVals)for(r=0;rt)return-1;for(var n=0,r=e.length;n>1);e[o]<=t?n=o:r=o}return n}l.prototype.encoder=h,l.prototype.decoder=f,l.prototype._getDecodeTrieNode=function(e){for(var t=[];e>0;e>>>=8)t.push(255&e);0==t.length&&t.push(0);for(var n=this.decodeTables[0],r=t.length-1;r>0;r--){var i=n[t[r]];if(i==o)n[t[r]]=a-this.decodeTables.length,this.decodeTables.push(n=u.slice(0));else{if(!(i<=a))throw new Error("Overwrite byte in "+this.encodingName+", addr: "+e.toString(16));n=this.decodeTables[a-i]}}return n},l.prototype._addDecodeChunk=function(e){var t=parseInt(e[0],16),n=this._getDecodeTrieNode(t);t&=255;for(var r=1;r255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+e[0]+": too long"+t)},l.prototype._getEncodeBucket=function(e){var t=e>>8;return void 0===this.encodeTable[t]&&(this.encodeTable[t]=u.slice(0)),this.encodeTable[t]},l.prototype._setEncodeChar=function(e,t){var n=this._getEncodeBucket(e),r=255&e;n[r]<=s?this.encodeTableSeq[s-n[r]][-1]=t:n[r]==o&&(n[r]=t)},l.prototype._setEncodeSequence=function(e,t){var n,r=e[0],i=this._getEncodeBucket(r),a=255&r;i[a]<=s?n=this.encodeTableSeq[s-i[a]]:(n={},i[a]!==o&&(n[-1]=i[a]),i[a]=s-this.encodeTableSeq.length,this.encodeTableSeq.push(n));for(var u=1;u=0)this._setEncodeChar(c,l),o=!0;else if(c<=a){var h=a-c;if(!i[h]){var f=l<<8>>>0;this._fillEncodeTable(h,f,n)?o=!0:i[h]=!0}}else c<=s&&(this._setEncodeSequence(this.decodeTableSeq[s-c],l),o=!0)}return o},h.prototype.write=function(e){for(var t=r.alloc(e.length*(this.gb18030?4:3)),n=this.leadSurrogate,i=this.seqObj,a=-1,u=0,c=0;;){if(-1===a){if(u==e.length)break;var l=e.charCodeAt(u++)}else l=a,a=-1;if(55296<=l&&l<57344)if(l<56320){if(-1===n){n=l;continue}n=l,l=o}else-1!==n?(l=65536+1024*(n-55296)+(l-56320),n=-1):l=o;else-1!==n&&(a=l,l=o,n=-1);var h=o;if(void 0!==i&&l!=o){var f=i[l];if("object"==typeof f){i=f;continue}"number"==typeof f?h=f:null==f&&void 0!==(f=i[-1])&&(h=f,a=l),i=void 0}else if(l>=0){var d=this.encodeTable[l>>8];if(void 0!==d&&(h=d[255&l]),h<=s){i=this.encodeTableSeq[s-h];continue}if(h==o&&this.gb18030){var E=p(this.gb18030.uChars,l);if(-1!=E){h=this.gb18030.gbChars[E]+(l-this.gb18030.uChars[E]),t[c++]=129+Math.floor(h/12600),h%=12600,t[c++]=48+Math.floor(h/1260),h%=1260,t[c++]=129+Math.floor(h/10),h%=10,t[c++]=48+h;continue}}}h===o&&(h=this.defaultCharSingleByte),h<256?t[c++]=h:h<65536?(t[c++]=h>>8,t[c++]=255&h):h<16777216?(t[c++]=h>>16,t[c++]=h>>8&255,t[c++]=255&h):(t[c++]=h>>>24,t[c++]=h>>>16&255,t[c++]=h>>>8&255,t[c++]=255&h)}return this.seqObj=i,this.leadSurrogate=n,t.slice(0,c)},h.prototype.end=function(){if(-1!==this.leadSurrogate||void 0!==this.seqObj){var e=r.alloc(10),t=0;if(this.seqObj){var n=this.seqObj[-1];void 0!==n&&(n<256?e[t++]=n:(e[t++]=n>>8,e[t++]=255&n)),this.seqObj=void 0}return-1!==this.leadSurrogate&&(e[t++]=this.defaultCharSingleByte,this.leadSurrogate=-1),e.slice(0,t)}},h.prototype.findIdx=p,f.prototype.write=function(e){for(var t=r.alloc(2*e.length),n=this.nodeIdx,u=this.prevBytes,c=this.prevBytes.length,l=-this.prevBytes.length,h=0,f=0;h=0?e[h]:u[h+c];if((d=this.decodeTables[n][E])>=0);else if(d===o)d=this.defaultCharUnicode.charCodeAt(0),h=l;else if(d===i){if(h>=3)var m=12600*(e[h-3]-129)+1260*(e[h-2]-48)+10*(e[h-1]-129)+(E-48);else m=12600*(u[h-3+c]-129)+1260*((h-2>=0?e[h-2]:u[h-2+c])-48)+10*((h-1>=0?e[h-1]:u[h-1+c])-129)+(E-48);var _=p(this.gb18030.gbChars,m);d=this.gb18030.uChars[_]+m-this.gb18030.gbChars[_]}else{if(d<=a){n=a-d;continue}if(!(d<=s))throw new Error("iconv-lite internal error: invalid decoding table value "+d+" at "+n+"/"+E);for(var g=this.decodeTableSeq[s-d],y=0;y>8;d=g[g.length-1]}if(d>=65536){var A=55296|(d-=65536)>>10;t[f++]=255&A,t[f++]=A>>8,d=56320|1023&d}t[f++]=255&d,t[f++]=d>>8,n=0,l=h+1}return this.nodeIdx=n,this.prevBytes=l>=0?Array.prototype.slice.call(e,l):u.slice(l+c).concat(Array.prototype.slice.call(e)),t.slice(0,f).toString("ucs2")},f.prototype.end=function(){for(var e="";this.prevBytes.length>0;){e+=this.defaultCharUnicode;var t=this.prevBytes.slice(1);this.prevBytes=[],this.nodeIdx=0,t.length>0&&(e+=this.write(t))}return this.prevBytes=[],this.nodeIdx=0,e}},37003:(e,t,n)=>{"use strict";e.exports={shiftjis:{type:"_dbcs",table:function(){return n(40679)},encodeAdd:{"¥":92,"‾":126},encodeSkipVals:[{from:60736,to:63808}]},csshiftjis:"shiftjis",mskanji:"shiftjis",sjis:"shiftjis",windows31j:"shiftjis",ms31j:"shiftjis",xsjis:"shiftjis",windows932:"shiftjis",ms932:"shiftjis",932:"shiftjis",cp932:"shiftjis",eucjp:{type:"_dbcs",table:function(){return n(56406)},encodeAdd:{"¥":92,"‾":126}},gb2312:"cp936",gb231280:"cp936",gb23121980:"cp936",csgb2312:"cp936",csiso58gb231280:"cp936",euccn:"cp936",windows936:"cp936",ms936:"cp936",936:"cp936",cp936:{type:"_dbcs",table:function(){return n(74488)}},gbk:{type:"_dbcs",table:function(){return n(74488).concat(n(55914))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return n(74488).concat(n(55914))},gb18030:function(){return n(99129)},encodeSkipVals:[128],encodeAdd:{"€":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return n(21166)}},cseuckr:"cp949",csksc56011987:"cp949",euckr:"cp949",isoir149:"cp949",korean:"cp949",ksc56011987:"cp949",ksc56011989:"cp949",ksc5601:"cp949",windows950:"cp950",ms950:"cp950",950:"cp950",cp950:{type:"_dbcs",table:function(){return n(72324)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return n(72324).concat(n(43267))},encodeSkipVals:[36457,36463,36478,36523,36532,36557,36560,36695,36713,36718,36811,36862,36973,36986,37060,37084,37105,37311,37551,37552,37553,37554,37585,37959,38090,38361,38652,39285,39798,39800,39803,39878,39902,39916,39926,40002,40019,40034,40040,40043,40055,40124,40125,40144,40279,40282,40388,40431,40443,40617,40687,40701,40800,40907,41079,41180,41183,36812,37576,38468,38637,41636,41637,41639,41638,41676,41678]},cnbig5:"big5hkscs",csbig5:"big5hkscs",xxbig5:"big5hkscs"}},43336:(e,t,n)=>{"use strict";for(var r=[n(42911),n(65172),n(15082),n(71336),n(43770),n(38698),n(67446),n(47161),n(37003)],o=0;o{"use strict";var r=n(54774).Buffer;function o(e,t){this.enc=e.encodingName,this.bomAware=e.bomAware,"base64"===this.enc?this.encoder=u:"cesu8"===this.enc&&(this.enc="utf8",this.encoder=c,"💩"!==r.from("eda0bdedb2a9","hex").toString()&&(this.decoder=l,this.defaultCharUnicode=t.defaultCharUnicode))}e.exports={utf8:{type:"_internal",bomAware:!0},cesu8:{type:"_internal",bomAware:!0},unicode11utf8:"utf8",ucs2:{type:"_internal",bomAware:!0},utf16le:"ucs2",binary:{type:"_internal"},base64:{type:"_internal"},hex:{type:"_internal"},_internal:o},o.prototype.encoder=a,o.prototype.decoder=s;var i=n(35574).StringDecoder;function s(e,t){this.decoder=new i(t.enc)}function a(e,t){this.enc=t.enc}function u(e,t){this.prevStr=""}function c(e,t){}function l(e,t){this.acc=0,this.contBytes=0,this.accBytes=0,this.defaultCharUnicode=t.defaultCharUnicode}i.prototype.end||(i.prototype.end=function(){}),s.prototype.write=function(e){return r.isBuffer(e)||(e=r.from(e)),this.decoder.write(e)},s.prototype.end=function(){return this.decoder.end()},a.prototype.write=function(e){return r.from(e,this.enc)},a.prototype.end=function(){},u.prototype.write=function(e){var t=(e=this.prevStr+e).length-e.length%4;return this.prevStr=e.slice(t),e=e.slice(0,t),r.from(e,"base64")},u.prototype.end=function(){return r.from(this.prevStr,"base64")},c.prototype.write=function(e){for(var t=r.alloc(3*e.length),n=0,o=0;o>>6),t[n++]=128+(63&i)):(t[n++]=224+(i>>>12),t[n++]=128+(i>>>6&63),t[n++]=128+(63&i))}return t.slice(0,n)},c.prototype.end=function(){},l.prototype.write=function(e){for(var t=this.acc,n=this.contBytes,r=this.accBytes,o="",i=0;i0&&(o+=this.defaultCharUnicode,n=0),s<128?o+=String.fromCharCode(s):s<224?(t=31&s,n=1,r=1):s<240?(t=15&s,n=2,r=1):o+=this.defaultCharUnicode):n>0?(t=t<<6|63&s,r++,0==--n&&(o+=2===r&&t<128&&t>0||3===r&&t<2048?this.defaultCharUnicode:String.fromCharCode(t))):o+=this.defaultCharUnicode}return this.acc=t,this.contBytes=n,this.accBytes=r,o},l.prototype.end=function(){var e=0;return this.contBytes>0&&(e+=this.defaultCharUnicode),e}},43770:(e,t,n)=>{"use strict";var r=n(54774).Buffer;function o(e,t){if(!e)throw new Error("SBCS codec is called without the data.");if(!e.chars||128!==e.chars.length&&256!==e.chars.length)throw new Error("Encoding '"+e.type+"' has incorrect 'chars' (must be of len 128 or 256)");if(128===e.chars.length){for(var n="",o=0;o<128;o++)n+=String.fromCharCode(o);e.chars=n+e.chars}this.decodeBuf=r.from(e.chars,"ucs2");var i=r.alloc(65536,t.defaultCharSingleByte.charCodeAt(0));for(o=0;o{"use strict";e.exports={437:"cp437",737:"cp737",775:"cp775",850:"cp850",852:"cp852",855:"cp855",856:"cp856",857:"cp857",858:"cp858",860:"cp860",861:"cp861",862:"cp862",863:"cp863",864:"cp864",865:"cp865",866:"cp866",869:"cp869",874:"windows874",922:"cp922",1046:"cp1046",1124:"cp1124",1125:"cp1125",1129:"cp1129",1133:"cp1133",1161:"cp1161",1162:"cp1162",1163:"cp1163",1250:"windows1250",1251:"windows1251",1252:"windows1252",1253:"windows1253",1254:"windows1254",1255:"windows1255",1256:"windows1256",1257:"windows1257",1258:"windows1258",28591:"iso88591",28592:"iso88592",28593:"iso88593",28594:"iso88594",28595:"iso88595",28596:"iso88596",28597:"iso88597",28598:"iso88598",28599:"iso88599",28600:"iso885910",28601:"iso885911",28603:"iso885913",28604:"iso885914",28605:"iso885915",28606:"iso885916",windows874:{type:"_sbcs",chars:"€����…�����������‘’“”•–—�������� กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"},win874:"windows874",cp874:"windows874",windows1250:{type:"_sbcs",chars:"€�‚�„…†‡�‰Š‹ŚŤŽŹ�‘’“”•–—�™š›śťžź ˇ˘Ł¤Ą¦§¨©Ş«¬­®Ż°±˛ł´µ¶·¸ąş»Ľ˝ľżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙"},win1250:"windows1250",cp1250:"windows1250",windows1251:{type:"_sbcs",chars:"ЂЃ‚ѓ„…†‡€‰Љ‹ЊЌЋЏђ‘’“”•–—�™љ›њќћџ ЎўЈ¤Ґ¦§Ё©Є«¬­®Ї°±Ііґµ¶·ё№є»јЅѕїАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},win1251:"windows1251",cp1251:"windows1251",windows1252:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰Š‹Œ�Ž��‘’“”•–—˜™š›œ�žŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},win1252:"windows1252",cp1252:"windows1252",windows1253:{type:"_sbcs",chars:"€�‚ƒ„…†‡�‰�‹�����‘’“”•–—�™�›���� ΅Ά£¤¥¦§¨©�«¬­®―°±²³΄µ¶·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ�"},win1253:"windows1253",cp1253:"windows1253",windows1254:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰Š‹Œ����‘’“”•–—˜™š›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ"},win1254:"windows1254",cp1254:"windows1254",windows1255:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰�‹�����‘’“”•–—˜™�›���� ¡¢£₪¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾¿ְֱֲֳִֵֶַָֹֺֻּֽ־ֿ׀ׁׂ׃װױײ׳״�������אבגדהוזחטיךכלםמןנסעףפץצקרשת��‎‏�"},win1255:"windows1255",cp1255:"windows1255",windows1256:{type:"_sbcs",chars:"€پ‚ƒ„…†‡ˆ‰ٹ‹Œچژڈگ‘’“”•–—ک™ڑ›œ‌‍ں ،¢£¤¥¦§¨©ھ«¬­®¯°±²³´µ¶·¸¹؛»¼½¾؟ہءآأؤإئابةتثجحخدذرزسشصض×طظعغـفقكàلâمنهوçèéêëىيîïًٌٍَôُِ÷ّùْûü‎‏ے"},win1256:"windows1256",cp1256:"windows1256",windows1257:{type:"_sbcs",chars:"€�‚�„…†‡�‰�‹�¨ˇ¸�‘’“”•–—�™�›�¯˛� �¢£¤�¦§Ø©Ŗ«¬­®Æ°±²³´µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž˙"},win1257:"windows1257",cp1257:"windows1257",windows1258:{type:"_sbcs",chars:"€�‚ƒ„…†‡ˆ‰�‹Œ����‘’“”•–—˜™�›œ��Ÿ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},win1258:"windows1258",cp1258:"windows1258",iso88591:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},cp28591:"iso88591",iso88592:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ą˘Ł¤ĽŚ§¨ŠŞŤŹ­ŽŻ°ą˛ł´ľśˇ¸šşťź˝žżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙"},cp28592:"iso88592",iso88593:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ħ˘£¤�Ĥ§¨İŞĞĴ­�ݰħ²³´µĥ·¸ışğĵ½�żÀÁÂ�ÄĊĈÇÈÉÊËÌÍÎÏ�ÑÒÓÔĠÖ×ĜÙÚÛÜŬŜßàáâ�äċĉçèéêëìíîï�ñòóôġö÷ĝùúûüŭŝ˙"},cp28593:"iso88593",iso88594:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĸŖ¤Ĩϧ¨ŠĒĢŦ­Ž¯°ą˛ŗ´ĩšēģŧŊžŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎĪĐŅŌĶÔÕÖרŲÚÛÜŨŪßāáâãäåæįčéęëėíîīđņōķôõö÷øųúûüũū˙"},cp28594:"iso88594",iso88595:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ЁЂЃЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђѓєѕіїјљњћќ§ўџ"},cp28595:"iso88595",iso88596:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ���¤�������،­�������������؛���؟�ءآأؤإئابةتثجحخدذرزسشصضطظعغ�����ـفقكلمنهوىيًٌٍَُِّْ�������������"},cp28596:"iso88596",iso88597:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ‘’£€₯¦§¨©ͺ«¬­�―°±²³΄΅Ά·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ�ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ�"},cp28597:"iso88597",iso88598:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ �¢£¤¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾��������������������������������‗אבגדהוזחטיךכלםמןנסעףפץצקרשת��‎‏�"},cp28598:"iso88598",iso88599:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ"},cp28599:"iso88599",iso885910:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĒĢĪĨͧĻĐŠŦŽ­ŪŊ°ąēģīĩķ·ļđšŧž―ūŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎÏÐŅŌÓÔÕÖŨØŲÚÛÜÝÞßāáâãäåæįčéęëėíîïðņōóôõöũøųúûüýþĸ"},cp28600:"iso885910",iso885911:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"},cp28601:"iso885911",iso885913:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ”¢£¤„¦§Ø©Ŗ«¬­®Æ°±²³“µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž’"},cp28603:"iso885913",iso885914:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ḃḃ£ĊċḊ§Ẁ©ẂḋỲ­®ŸḞḟĠġṀṁ¶ṖẁṗẃṠỳẄẅṡÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŴÑÒÓÔÕÖṪØÙÚÛÜÝŶßàáâãäåæçèéêëìíîïŵñòóôõöṫøùúûüýŷÿ"},cp28604:"iso885914",iso885915:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£€¥Š§š©ª«¬­®¯°±²³Žµ¶·ž¹º»ŒœŸ¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},cp28605:"iso885915",iso885916:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄąŁ€„Чš©Ș«Ź­źŻ°±ČłŽ”¶·žčș»ŒœŸżÀÁÂĂÄĆÆÇÈÉÊËÌÍÎÏĐŃÒÓÔŐÖŚŰÙÚÛÜĘȚßàáâăäćæçèéêëìíîïđńòóôőöśűùúûüęțÿ"},cp28606:"iso885916",cp437:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm437:"cp437",csibm437:"cp437",cp737:{type:"_sbcs",chars:"ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρσςτυφχψ░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀ωάέήϊίόύϋώΆΈΉΊΌΎΏ±≥≤ΪΫ÷≈°∙·√ⁿ²■ "},ibm737:"cp737",csibm737:"cp737",cp775:{type:"_sbcs",chars:"ĆüéāäģåćłēŖŗīŹÄÅÉæÆōöĢ¢ŚśÖÜø£Ø×¤ĀĪóŻżź”¦©®¬½¼Ł«»░▒▓│┤ĄČĘĖ╣║╗╝ĮŠ┐└┴┬├─┼ŲŪ╚╔╩╦╠═╬Žąčęėįšųūž┘┌█▄▌▐▀ÓßŌŃõÕµńĶķĻļņĒŅ’­±“¾¶§÷„°∙·¹³²■ "},ibm775:"cp775",csibm775:"cp775",cp850:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈıÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´­±‗¾¶§÷¸°¨·¹³²■ "},ibm850:"cp850",csibm850:"cp850",cp852:{type:"_sbcs",chars:"ÇüéâäůćçłëŐőîŹÄĆÉĹĺôöĽľŚśÖÜŤťŁ×čáíóúĄąŽžĘ꬟Ⱥ«»░▒▓│┤ÁÂĚŞ╣║╗╝Żż┐└┴┬├─┼Ăă╚╔╩╦╠═╬¤đĐĎËďŇÍÎě┘┌█▄ŢŮ▀ÓßÔŃńňŠšŔÚŕŰýÝţ´­˝˛ˇ˘§÷¸°¨˙űŘř■ "},ibm852:"cp852",csibm852:"cp852",cp855:{type:"_sbcs",chars:"ђЂѓЃёЁєЄѕЅіІїЇјЈљЉњЊћЋќЌўЎџЏюЮъЪаАбБцЦдДеЕфФгГ«»░▒▓│┤хХиИ╣║╗╝йЙ┐└┴┬├─┼кК╚╔╩╦╠═╬¤лЛмМнНоОп┘┌█▄Пя▀ЯрРсСтТуУжЖвВьЬ№­ыЫзЗшШэЭщЩчЧ§■ "},ibm855:"cp855",csibm855:"cp855",cp856:{type:"_sbcs",chars:"אבגדהוזחטיךכלםמןנסעףפץצקרשת�£�×����������®¬½¼�«»░▒▓│┤���©╣║╗╝¢¥┐└┴┬├─┼��╚╔╩╦╠═╬¤���������┘┌█▄¦�▀������µ�������¯´­±‗¾¶§÷¸°¨·¹³²■ "},ibm856:"cp856",csibm856:"cp856",cp857:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîıÄÅÉæÆôöòûùİÖÜø£ØŞşáíóúñÑĞ𿮬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ºªÊËÈ�ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµ�×ÚÛÙìÿ¯´­±�¾¶§÷¸°¨·¹³²■ "},ibm857:"cp857",csibm857:"cp857",cp858:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈ€ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´­±‗¾¶§÷¸°¨·¹³²■ "},ibm858:"cp858",csibm858:"cp858",cp860:{type:"_sbcs",chars:"ÇüéâãàÁçêÊèÍÔìÃÂÉÀÈôõòÚùÌÕÜ¢£Ù₧ÓáíóúñѪº¿Ò¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm860:"cp860",csibm860:"cp860",cp861:{type:"_sbcs",chars:"ÇüéâäàåçêëèÐðÞÄÅÉæÆôöþûÝýÖÜø£Ø₧ƒáíóúÁÍÓÚ¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm861:"cp861",csibm861:"cp861",cp862:{type:"_sbcs",chars:"אבגדהוזחטיךכלםמןנסעףפץצקרשת¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm862:"cp862",csibm862:"cp862",cp863:{type:"_sbcs",chars:"ÇüéâÂà¶çêëèïî‗À§ÉÈÊôËÏûù¤ÔÜ¢£ÙÛƒ¦´óú¨¸³¯Î⌐¬½¼¾«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm863:"cp863",csibm863:"cp863",cp864:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#$٪&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~°·∙√▒─│┼┤┬├┴┐┌└┘β∞φ±½¼≈«»ﻷﻸ��ﻻﻼ� ­ﺂ£¤ﺄ��ﺎﺏﺕﺙ،ﺝﺡﺥ٠١٢٣٤٥٦٧٨٩ﻑ؛ﺱﺵﺹ؟¢ﺀﺁﺃﺅﻊﺋﺍﺑﺓﺗﺛﺟﺣﺧﺩﺫﺭﺯﺳﺷﺻﺿﻁﻅﻋﻏ¦¬÷×ﻉـﻓﻗﻛﻟﻣﻧﻫﻭﻯﻳﺽﻌﻎﻍﻡﹽّﻥﻩﻬﻰﻲﻐﻕﻵﻶﻝﻙﻱ■�"},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø₧ƒáíóúñѪº¿⌐¬½¼¡«¤░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№¤■ "},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"������Ά�·¬¦‘’Έ―ΉΊΪΌ��ΎΫ©Ώ²³ά£έήίϊΐόύΑΒΓΔΕΖΗ½ΘΙ«»░▒▓│┤ΚΛΜΝ╣║╗╝ΞΟ┐└┴┬├─┼ΠΡ╚╔╩╦╠═╬ΣΤΥΦΧΨΩαβγ┘┌█▄δε▀ζηθικλμνξοπρσςτ΄­±υφχ§ψ΅°¨ωϋΰώ■ "},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®‾°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŠÑÒÓÔÕÖרÙÚÛÜÝŽßàáâãäåæçèéêëìíîïšñòóôõö÷øùúûüýžÿ"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"ﺈ×÷ﹱˆ■│─┐┌└┘ﹹﹻﹽﹿﹷﺊﻰﻳﻲﻎﻏﻐﻶﻸﻺﻼ ¤ﺋﺑﺗﺛﺟﺣ،­ﺧﺳ٠١٢٣٤٥٦٧٨٩ﺷ؛ﺻﺿﻊ؟ﻋءآأؤإئابةتثجحخدذرزسشصضطﻇعغﻌﺂﺄﺎﻓـفقكلمنهوىيًٌٍَُِّْﻗﻛﻟﻵﻷﻹﻻﻣﻧﻬﻩ�"},ibm1046:"cp1046",csibm1046:"cp1046",cp1124:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ЁЂҐЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђґєѕіїјљњћќ§ўџ"},ibm1124:"cp1124",csibm1124:"cp1124",cp1125:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёҐґЄєІіЇї·√№¤■ "},ibm1125:"cp1125",csibm1125:"cp1125",cp1129:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§œ©ª«¬­®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},ibm1129:"cp1129",csibm1129:"cp1129",cp1133:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ກຂຄງຈສຊຍດຕຖທນບປຜຝພຟມຢຣລວຫອຮ���ຯະາຳິີຶືຸູຼັົຽ���ເແໂໃໄ່້໊໋໌ໍໆ�ໜໝ₭����������������໐໑໒໓໔໕໖໗໘໙��¢¬¦�"},ibm1133:"cp1133",csibm1133:"cp1133",cp1161:{type:"_sbcs",chars:"��������������������������������่กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู้๊๋€฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛¢¬¦ "},ibm1161:"cp1161",csibm1161:"cp1161",cp1162:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"},ibm1162:"cp1162",csibm1162:"cp1162",cp1163:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£€¥¦§œ©ª«¬­®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},ibm1163:"cp1163",csibm1163:"cp1163",maccroatian:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑∏š∫ªºΩžø¿¡¬√ƒ≈ƫȅ ÀÃÕŒœĐ—“”‘’÷◊�©⁄¤‹›Æ»–·‚„‰ÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸Êæˇ"},maccyrillic:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°¢£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµ∂ЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤"},macgreek:{type:"_sbcs",chars:"Ĺ²É³ÖÜ΅àâä΄¨çéèê룙î‰ôö¦­ùûü†ΓΔΘΛΞΠß®©ΣΪ§≠°·Α±≤≥¥ΒΕΖΗΙΚΜΦΫΨΩάΝ¬ΟΡ≈Τ«»… ΥΧΆΈœ–―“”‘’÷ΉΊΌΎέήίόΏύαβψδεφγηιξκλμνοπώρστθωςχυζϊϋΐΰ�"},maciceland:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüݰ¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤ÐðÞþý·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macroman:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macromania:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ĂŞ∞±≤≥¥µ∂∑∏π∫ªºΩăş¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›Ţţ‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macthai:{type:"_sbcs",chars:"«»…“”�•‘’� กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู\ufeff​–—฿เแโใไๅๆ็่้๊๋์ํ™๏๐๑๒๓๔๕๖๗๘๙®©����"},macturkish:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸĞğİıŞş‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙ�ˆ˜¯˘˙˚¸˝˛ˇ"},macukraine:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°Ґ£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµґЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤"},koi8r:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ё╓╔╕╖╗╘╙╚╛╜╝╞╟╠╡Ё╢╣╤╥╦╧╨╩╪╫╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8u:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґ╝╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪Ґ╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8ru:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґў╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪ҐЎ©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8t:{type:"_sbcs",chars:"қғ‚Ғ„…†‡�‰ҳ‹ҲҷҶ�Қ‘’“”•–—�™�›�����ӯӮё¤ӣ¦§���«¬­®�°±²Ё�Ӣ¶·�№�»���©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},armscii8:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ �և։)(»«—.՝,-֊…՜՛՞ԱաԲբԳգԴդԵեԶզԷէԸըԹթԺժԻիԼլԽխԾծԿկՀհՁձՂղՃճՄմՅյՆնՇշՈոՉչՊպՋջՌռՍսՎվՏտՐրՑցՒւՓփՔքՕօՖֆ՚�"},rk1048:{type:"_sbcs",chars:"ЂЃ‚ѓ„…†‡€‰Љ‹ЊҚҺЏђ‘’“”•–—�™љ›њқһџ ҰұӘ¤Ө¦§Ё©Ғ«¬­®Ү°±Ііөµ¶·ё№ғ»әҢңүАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},tcvn:{type:"_sbcs",chars:"\0ÚỤỪỬỮ\b\t\n\v\f\rỨỰỲỶỸÝỴ !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ÀẢÃÁẠẶẬÈẺẼÉẸỆÌỈĨÍỊÒỎÕÓỌỘỜỞỠỚỢÙỦŨ ĂÂÊÔƠƯĐăâêôơưđẶ̀̀̉̃́àảãáạẲằẳẵắẴẮẦẨẪẤỀặầẩẫấậèỂẻẽéẹềểễếệìỉỄẾỒĩíịòỔỏõóọồổỗốộờởỡớợùỖủũúụừửữứựỳỷỹýỵỐ"},georgianacademy:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზთიკლმნოპჟრსტუფქღყშჩცძწჭხჯჰჱჲჳჴჵჶçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},georgianps:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზჱთიკლმნჲოპჟრსტჳუფქღყშჩცძწჭხჴჯჰჵæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},pt154:{type:"_sbcs",chars:"ҖҒӮғ„…ҶҮҲүҠӢҢҚҺҸҗ‘’“”•–—ҳҷҡӣңқһҹ ЎўЈӨҘҰ§Ё©Ә«¬ӯ®Ҝ°ұІіҙө¶·ё№ә»јҪҫҝАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},viscii:{type:"_sbcs",chars:"\0ẲẴẪ\b\t\n\v\f\rỶỸỴ !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ẠẮẰẶẤẦẨẬẼẸẾỀỂỄỆỐỒỔỖỘỢỚỜỞỊỎỌỈỦŨỤỲÕắằặấầẩậẽẹếềểễệốồổỗỠƠộờởịỰỨỪỬơớƯÀÁÂÃẢĂẳẵÈÉÊẺÌÍĨỳĐứÒÓÔạỷừửÙÚỹỵÝỡưàáâãảăữẫèéêẻìíĩỉđựòóôõỏọụùúũủýợỮ"},iso646cn:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#¥%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������"},iso646jp:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[¥]^_`abcdefghijklmnopqrstuvwxyz{|}‾��������������������������������������������������������������������������������������������������������������������������������"},hproman8:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ÀÂÈÊËÎÏ´ˋˆ¨˜ÙÛ₤¯Ýý°ÇçÑñ¡¿¤£¥§ƒ¢âêôûáéóúàèòùäëöüÅîØÆåíøæÄìÖÜÉïßÔÁÃãÐðÍÌÓÒÕõŠšÚŸÿÞþ·µ¶¾—¼½ªº«■»±�"},macintosh:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ–—“”‘’÷◊ÿŸ⁄¤‹›fifl‡·‚„‰ÂÊÁËÈÍÎÏÌÓÔ�ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},ascii:{type:"_sbcs",chars:"��������������������������������������������������������������������������������������������������������������������������������"},tis620:{type:"_sbcs",chars:"���������������������������������กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู����฿เแโใไๅๆ็่้๊๋์ํ๎๏๐๑๒๓๔๕๖๗๘๙๚๛����"}}},38698:e=>{"use strict";e.exports={10029:"maccenteuro",maccenteuro:{type:"_sbcs",chars:"ÄĀāÉĄÖÜáąČäčĆć鏟ĎíďĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»… ňŐÕőŌ–—“”‘’÷◊ōŔŕŘ‹›řŖŗŠ‚„šŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇ"},808:"cp808",ibm808:"cp808",cp808:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№€■ "},mik:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя└┴┬├─┼╣║╚╔╩╦╠═╬┐░▒▓│┤№§╗╝┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},cp720:{type:"_sbcs",chars:"€éâ„à†çêëèïّْô¤ـûùءآأؤ£إئابةتثجحخدذرزسشص«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀ضطظعغفµقكلمنهوىي≡ًٌٍَُِ≈°∙·√ⁿ²■ "},ascii8bit:"ascii",usascii:"ascii",ansix34:"ascii",ansix341968:"ascii",ansix341986:"ascii",csascii:"ascii",cp367:"ascii",ibm367:"ascii",isoir6:"ascii",iso646us:"ascii",iso646irv:"ascii",us:"ascii",latin1:"iso88591",latin2:"iso88592",latin3:"iso88593",latin4:"iso88594",latin5:"iso88599",latin6:"iso885910",latin7:"iso885913",latin8:"iso885914",latin9:"iso885915",latin10:"iso885916",csisolatin1:"iso88591",csisolatin2:"iso88592",csisolatin3:"iso88593",csisolatin4:"iso88594",csisolatincyrillic:"iso88595",csisolatinarabic:"iso88596",csisolatingreek:"iso88597",csisolatinhebrew:"iso88598",csisolatin5:"iso88599",csisolatin6:"iso885910",l1:"iso88591",l2:"iso88592",l3:"iso88593",l4:"iso88594",l5:"iso88599",l6:"iso885910",l7:"iso885913",l8:"iso885914",l9:"iso885915",l10:"iso885916",isoir14:"iso646jp",isoir57:"iso646cn",isoir100:"iso88591",isoir101:"iso88592",isoir109:"iso88593",isoir110:"iso88594",isoir144:"iso88595",isoir127:"iso88596",isoir126:"iso88597",isoir138:"iso88598",isoir148:"iso88599",isoir157:"iso885910",isoir166:"tis620",isoir179:"iso885913",isoir199:"iso885914",isoir203:"iso885915",isoir226:"iso885916",cp819:"iso88591",ibm819:"iso88591",cyrillic:"iso88595",arabic:"iso88596",arabic8:"iso88596",ecma114:"iso88596",asmo708:"iso88596",greek:"iso88597",greek8:"iso88597",ecma118:"iso88597",elot928:"iso88597",hebrew:"iso88598",hebrew8:"iso88598",turkish:"iso88599",turkish8:"iso88599",thai:"iso885911",thai8:"iso885911",celtic:"iso885914",celtic8:"iso885914",isoceltic:"iso885914",tis6200:"tis620",tis62025291:"tis620",tis62025330:"tis620",1e4:"macroman",10006:"macgreek",10007:"maccyrillic",10079:"maciceland",10081:"macturkish",cspc8codepage437:"cp437",cspc775baltic:"cp775",cspc850multilingual:"cp850",cspcp852:"cp852",cspc862latinhebrew:"cp862",cpgr:"cp869",msee:"cp1250",mscyrl:"cp1251",msansi:"cp1252",msgreek:"cp1253",msturk:"cp1254",mshebr:"cp1255",msarab:"cp1256",winbaltrim:"cp1257",cp20866:"koi8r",20866:"koi8r",ibm878:"koi8r",cskoi8r:"koi8r",cp21866:"koi8u",21866:"koi8u",ibm1168:"koi8u",strk10482002:"rk1048",tcvn5712:"tcvn",tcvn57121:"tcvn",gb198880:"iso646cn",cn:"iso646cn",csiso14jisc6220ro:"iso646jp",jisc62201969ro:"iso646jp",jp:"iso646jp",cshproman8:"hproman8",r8:"hproman8",roman8:"hproman8",xroman8:"hproman8",ibm1051:"hproman8",mac:"macintosh",csmacintosh:"macintosh"}},15082:(e,t,n)=>{"use strict";var r=n(54774).Buffer;function o(){}function i(){}function s(){this.overflowByte=-1}function a(e,t){this.iconv=t}function u(e,t){void 0===(e=e||{}).addBOM&&(e.addBOM=!0),this.encoder=t.iconv.getEncoder("utf-16le",e)}function c(e,t){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=e||{},this.iconv=t.iconv}function l(e,t){var n=[],r=0,o=0,i=0;e:for(var s=0;s=100)break e}return i>o?"utf-16be":i{"use strict";var r=n(54774).Buffer;function o(e,t){this.iconv=t,this.bomAware=!0,this.isLE=e.isLE}function i(e,t){this.isLE=t.isLE,this.highSurrogate=0}function s(e,t){this.isLE=t.isLE,this.badChar=t.iconv.defaultCharUnicode.charCodeAt(0),this.overflow=[]}function a(e,t,n,r){if((n<0||n>1114111)&&(n=r),n>=65536){var o=55296|(n-=65536)>>10;e[t++]=255&o,e[t++]=o>>8,n=56320|1023&n}return e[t++]=255&n,e[t++]=n>>8,t}function u(e,t){this.iconv=t}function c(e,t){void 0===(e=e||{}).addBOM&&(e.addBOM=!0),this.encoder=t.iconv.getEncoder(e.defaultEncoding||"utf-32le",e)}function l(e,t){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=e||{},this.iconv=t.iconv}function h(e,t){var n=[],r=0,o=0,i=0,s=0,a=0;e:for(var u=0;u16)&&i++,(0!==n[3]||n[2]>16)&&o++,0!==n[0]||0!==n[1]||0===n[2]&&0===n[3]||a++,0===n[0]&&0===n[1]||0!==n[2]||0!==n[3]||s++,n.length=0,++r>=100)break e}return a-i>s-o?"utf-32be":a-i0){for(;t{"use strict";var r=n(54774).Buffer;function o(e,t){this.iconv=t}t.utf7=o,t.unicode11utf7="utf7",o.prototype.encoder=s,o.prototype.decoder=a,o.prototype.bomAware=!0;var i=/[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g;function s(e,t){this.iconv=t.iconv}function a(e,t){this.iconv=t.iconv,this.inBase64=!1,this.base64Accum=""}s.prototype.write=function(e){return r.from(e.replace(i,function(e){return"+"+("+"===e?"":this.iconv.encode(e,"utf16-be").toString("base64").replace(/=+$/,""))+"-"}.bind(this)))},s.prototype.end=function(){};for(var u=/[A-Za-z0-9\/+]/,c=[],l=0;l<256;l++)c[l]=u.test(String.fromCharCode(l));var h="+".charCodeAt(0),f="-".charCodeAt(0),p="&".charCodeAt(0);function d(e,t){this.iconv=t}function E(e,t){this.iconv=t.iconv,this.inBase64=!1,this.base64Accum=r.alloc(6),this.base64AccumIdx=0}function m(e,t){this.iconv=t.iconv,this.inBase64=!1,this.base64Accum=""}a.prototype.write=function(e){for(var t="",n=0,o=this.inBase64,i=this.base64Accum,s=0;s0&&(e=this.iconv.decode(r.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",e},t.utf7imap=d,d.prototype.encoder=E,d.prototype.decoder=m,d.prototype.bomAware=!0,E.prototype.write=function(e){for(var t=this.inBase64,n=this.base64Accum,o=this.base64AccumIdx,i=r.alloc(5*e.length+10),s=0,a=0;a0&&(s+=i.write(n.slice(0,o).toString("base64").replace(/\//g,",").replace(/=+$/,""),s),o=0),i[s++]=f,t=!1),t||(i[s++]=u,u===p&&(i[s++]=f))):(t||(i[s++]=p,t=!0),t&&(n[o++]=u>>8,n[o++]=255&u,o==n.length&&(s+=i.write(n.toString("base64").replace(/\//g,","),s),o=0)))}return this.inBase64=t,this.base64AccumIdx=o,i.slice(0,s)},E.prototype.end=function(){var e=r.alloc(10),t=0;return this.inBase64&&(this.base64AccumIdx>0&&(t+=e.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),t),this.base64AccumIdx=0),e[t++]=f,this.inBase64=!1),e.slice(0,t)};var _=c.slice();_[",".charCodeAt(0)]=!0,m.prototype.write=function(e){for(var t="",n=0,o=this.inBase64,i=this.base64Accum,s=0;s0&&(e=this.iconv.decode(r.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",e}},40557:(e,t)=>{"use strict";function n(e,t){this.encoder=e,this.addBOM=!0}function r(e,t){this.decoder=e,this.pass=!1,this.options=t||{}}t.PrependBOM=n,n.prototype.write=function(e){return this.addBOM&&(e="\ufeff"+e,this.addBOM=!1),this.encoder.write(e)},n.prototype.end=function(){return this.encoder.end()},t.StripBOM=r,r.prototype.write=function(e){var t=this.decoder.write(e);return this.pass||!t||("\ufeff"===t[0]&&(t=t.slice(1),"function"==typeof this.options.stripBOM&&this.options.stripBOM()),this.pass=!0),t},r.prototype.end=function(){return this.decoder.end()}},95249:(e,t,n)=>{"use strict";var r,o=n(54774).Buffer,i=n(40557),s=e.exports;s.encodings=null,s.defaultCharUnicode="�",s.defaultCharSingleByte="?",s.encode=function(e,t,n){e=""+(e||"");var r=s.getEncoder(t,n),i=r.write(e),a=r.end();return a&&a.length>0?o.concat([i,a]):i},s.decode=function(e,t,n){"string"==typeof e&&(s.skipDecodeWarning||(console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding"),s.skipDecodeWarning=!0),e=o.from(""+(e||""),"binary"));var r=s.getDecoder(t,n),i=r.write(e),a=r.end();return a?i+a:i},s.encodingExists=function(e){try{return s.getCodec(e),!0}catch(e){return!1}},s.toEncoding=s.encode,s.fromEncoding=s.decode,s._codecDataCache={},s.getCodec=function(e){s.encodings||(s.encodings=n(43336));for(var t=s._canonicalizeEncoding(e),r={};;){var o=s._codecDataCache[t];if(o)return o;var i=s.encodings[t];switch(typeof i){case"string":t=i;break;case"object":for(var a in i)r[a]=i[a];r.encodingName||(r.encodingName=t),t=i.type;break;case"function":return r.encodingName||(r.encodingName=t),o=new i(r,s),s._codecDataCache[r.encodingName]=o,o;default:throw new Error("Encoding not recognized: '"+e+"' (searched as: '"+t+"')")}}},s._canonicalizeEncoding=function(e){return(""+e).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")},s.getEncoder=function(e,t){var n=s.getCodec(e),r=new n.encoder(t,n);return n.bomAware&&t&&t.addBOM&&(r=new i.PrependBOM(r,t)),r},s.getDecoder=function(e,t){var n=s.getCodec(e),r=new n.decoder(t,n);return!n.bomAware||t&&!1===t.stripBOM||(r=new i.StripBOM(r,t)),r},s.enableStreamingAPI=function(e){if(!s.supportsStreams){var t=n(77792)(e);s.IconvLiteEncoderStream=t.IconvLiteEncoderStream,s.IconvLiteDecoderStream=t.IconvLiteDecoderStream,s.encodeStream=function(e,t){return new s.IconvLiteEncoderStream(s.getEncoder(e,t),t)},s.decodeStream=function(e,t){return new s.IconvLiteDecoderStream(s.getDecoder(e,t),t)},s.supportsStreams=!0}};try{r=n(2203)}catch(e){}r&&r.Transform?s.enableStreamingAPI(r):s.encodeStream=s.decodeStream=function(){throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it.")}},77792:(e,t,n)=>{"use strict";var r=n(54774).Buffer;e.exports=function(e){var t=e.Transform;function n(e,n){this.conv=e,(n=n||{}).decodeStrings=!1,t.call(this,n)}function o(e,n){this.conv=e,(n=n||{}).encoding=this.encoding="utf8",t.call(this,n)}return n.prototype=Object.create(t.prototype,{constructor:{value:n}}),n.prototype._transform=function(e,t,n){if("string"!=typeof e)return n(new Error("Iconv encoding stream needs strings as its input."));try{var r=this.conv.write(e);r&&r.length&&this.push(r),n()}catch(e){n(e)}},n.prototype._flush=function(e){try{var t=this.conv.end();t&&t.length&&this.push(t),e()}catch(t){e(t)}},n.prototype.collect=function(e){var t=[];return this.on("error",e),this.on("data",(function(e){t.push(e)})),this.on("end",(function(){e(null,r.concat(t))})),this},o.prototype=Object.create(t.prototype,{constructor:{value:o}}),o.prototype._transform=function(e,t,n){if(!(r.isBuffer(e)||e instanceof Uint8Array))return n(new Error("Iconv decoding stream needs buffers as its input."));try{var o=this.conv.write(e);o&&o.length&&this.push(o,this.encoding),n()}catch(e){n(e)}},o.prototype._flush=function(e){try{var t=this.conv.end();t&&t.length&&this.push(t,this.encoding),e()}catch(t){e(t)}},o.prototype.collect=function(e){var t="";return this.on("error",e),this.on("data",(function(e){t+=e})),this.on("end",(function(){e(null,t)})),this},{IconvLiteEncoderStream:n,IconvLiteDecoderStream:o}}},62535:(e,t,n)=>{var r=n(35317),o=n(24434).EventEmitter;function i(e,t){var n={encoding:"utf8",timeout:0,maxBuffer:512e3,killSignal:"SIGKILL",output:null},i=arguments[arguments.length-1];if("function"!=typeof i&&(i=null),"object"==typeof arguments[2])for(var s=Object.keys(n),a=0;an.maxBuffer&&(c.kill(n.killSignal),l=!0)}};this.out=t(this.stdout),this.err=t(this.stderr)};p.prototype.current=function(){return this.stdout.contents},p.prototype.errCurrent=function(){return this.stderr.contents},p.prototype.finish=function(e){this.callback(e,this.stdout.contents,this.stderr.contents)};var d,E=i?new p(i):new f(c);n.timeout>0&&(d=setTimeout((function(){l||(c.kill(n.killSignal),h=!0,l=!0,d=null)}),n.timeout)),c.stdout.setEncoding(n.encoding),c.stderr.setEncoding(n.encoding),c.stdout.addListener("data",(function(e){E.out(e,n.encoding)})),c.stderr.addListener("data",(function(e){E.err(e,n.encoding)}));var m=process.versions.node.split(".");return c.addListener(0==m[0]&&m[1]<7?"exit":"close",(function(e,t){if(d&&clearTimeout(d),0===e&&null===t)E.finish(null);else{var n=new Error("Command "+(h?"timed out":"failed")+": "+E.errCurrent());n.timedOut=h,n.killed=l,n.code=e,n.signal=t,E.finish(n)}})),c}function s(e){return e=e.split(/ /),new Date(e[0].replace(/:/g,"-")+" "+e[1]+" +0000")}function a(e){return e.replace(a.RE,(function(e){return 1===e.length?e.toLowerCase():e.substr(0,e.length-1).toLowerCase()+e.substr(e.length-1)}))}t.identify=function(e,n){var r,o=Array.isArray(e),s=o?[].concat(e):["-verbose",e];if("object"==typeof s[s.length-1]){if(r=!0,e=s[s.length-1],s[s.length-1]="-",!e.data)throw new Error('first argument is missing the "data" member')}else"function"==typeof e&&(s[s.length-1]="-",n=e);var a=i(t.identify.path,s,{timeout:12e4},(function(e,t,r){var i,s;e||(o?i=t:(s=(i=function(e){var t,n,r,o,i=e.split("\n"),s={},a=[s],u=0,c=[r];for(o in i.shift(),i)if((r=(t=i[o]).search(/\S/))>=0){for(n=t.split(": "),r>u&&c.push(r);r0&&!isNaN(n)&&(o.timeout=n),i(t.convert.path,e,o,r)},t.convert.path="convert";var c=function(e,n){var r=t.convert(e.args,e.opt.timeout,n);return e.opt.srcPath.match(/-$/)&&("string"==typeof e.opt.srcData?(r.stdin.setEncoding("binary"),r.stdin.write(e.opt.srcData,"binary"),r.stdin.end()):r.stdin.end(e.opt.srcData)),r};t.resize=function(e,n){var r=t.resizeArgs(e);return c(r,n)},t.crop=function(e,n){if("object"!=typeof e)throw new TypeError("First argument must be an object");if(!e.srcPath&&!e.srcData)throw new TypeError("No srcPath or data defined");if(!e.height&&!e.width)throw new TypeError("No width or height defined");if(e.srcPath)var r=e.srcPath;else r={data:e.srcData};t.identify(r,(function(r,o){if(r)return n&&n(r);var i=t.resizeArgs(e),s=!1,a=!1,u=[];i.args.forEach((function(t){if(!0===a&&(console.log("arg",t),a=!1),s||"-resize"==t||u.push(t),"-resize"==t&&(console.log("resize arg"),s=!0,a=!0),"-crop"===t&&(console.log("crop arg"),a=!0),"-resize"!=t&&s){var n=o.width/o.height0&&(r=r.concat(["-set","option:filter:blur",String(1-t.sharpening)])),t.filter&&(r.push("-filter"),r.push(t.filter)),t.strip&&r.push("-strip"),(t.width||t.height)&&(r.push("-resize"),0===t.height?r.push(String(t.width)):0===t.width?r.push("x"+String(t.height)):r.push(String(t.width)+"x"+String(t.height))),t.format=t.format.toLowerCase();var o="jpg"===t.format||"jpeg"===t.format;return o&&t.progressive&&(r.push("-interlace"),r.push("plane")),o||"png"===t.format?(r.push("-quality"),r.push(Math.round(100*t.quality).toString())):"miff"!==t.format&&"mif"!==t.format||(r.push("-quality"),r.push(Math.round(9*t.quality).toString())),t.colorspace&&(r.push("-colorspace"),r.push(t.colorspace)),Array.isArray(t.customArgs)&&t.customArgs.length&&(r=r.concat(t.customArgs)),r.push(t.dstPath),{opt:t,args:r}}},72017:(e,t,n)=>{try{var r=n(39023);if("function"!=typeof r.inherits)throw"";e.exports=r.inherits}catch(t){e.exports=n(56698)}},56698:e=>{"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},20063:(e,t,n)=>{"use strict";var r=n(9957),o=n(920)(),i=n(69675),s={assert:function(e,t){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new i("`O` is not an object");if("string"!=typeof t)throw new i("`slot` must be a string");if(o.assert(e),!s.has(e,t))throw new i("`"+t+"` is not present on `O`")},get:function(e,t){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new i("`O` is not an object");if("string"!=typeof t)throw new i("`slot` must be a string");var n=o.get(e);return n&&n["$"+t]},has:function(e,t){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new i("`O` is not an object");if("string"!=typeof t)throw new i("`slot` must be a string");var n=o.get(e);return!!n&&r(n,"$"+t)},set:function(e,t,n){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new i("`O` is not an object");if("string"!=typeof t)throw new i("`slot` must be a string");var r=o.get(e);r||(r={},o.set(e,r)),r["$"+t]=n}};Object.freeze&&Object.freeze(s),e.exports=s},22437:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AddressError=void 0;class n extends Error{constructor(e,t){super(e),this.name="AddressError",null!==t&&(this.parseMessage=t)}}t.AddressError=n},90837:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isCorrect=t.isInSubnet=void 0,t.isInSubnet=function(e){return!(this.subnetMaska.BITS)throw new u.AddressError("Invalid subnet mask.");e=e.replace(a.RE_SUBNET_STRING,"")}this.addressMinusSuffix=e,this.parsedAddress=this.parse(e)}static isValid(e){try{return new h(e),!0}catch(e){return!1}}parse(e){const t=e.split(".");if(!e.match(a.RE_ADDRESS))throw new u.AddressError("Invalid IPv4 address.");return t}correctForm(){return this.parsedAddress.map((e=>parseInt(e,10))).join(".")}static fromHex(e){const t=e.replace(/:/g,"").padStart(8,"0"),n=[];let r;for(r=0;r<8;r+=2){const e=t.slice(r,r+2);n.push(parseInt(e,16))}return new h(n.join("."))}static fromInteger(e){return h.fromHex(e.toString(16))}static fromArpa(e){const t=e.replace(/(\.in-addr\.arpa)?\.$/,"").split(".").reverse().join(".");return new h(t)}toHex(){return this.parsedAddress.map((e=>(0,l.sprintf)("%02x",parseInt(e,10)))).join(":")}toArray(){return this.parsedAddress.map((e=>parseInt(e,10)))}toGroup6(){const e=[];let t;for(t=0;t(0,l.sprintf)("%02x",parseInt(e,10)))).join(""),16)}_startAddress(){return new c.BigInteger(this.mask()+"0".repeat(a.BITS-this.subnetMask),2)}startAddress(){return h.fromBigInteger(this._startAddress())}startAddressExclusive(){const e=new c.BigInteger("1");return h.fromBigInteger(this._startAddress().add(e))}_endAddress(){return new c.BigInteger(this.mask()+"1".repeat(a.BITS-this.subnetMask),2)}endAddress(){return h.fromBigInteger(this._endAddress())}endAddressExclusive(){const e=new c.BigInteger("1");return h.fromBigInteger(this._endAddress().subtract(e))}static fromBigInteger(e){return h.fromInteger(parseInt(e.toString(),10))}mask(e){return void 0===e&&(e=this.subnetMask),this.getBitsBase2(0,e)}getBitsBase2(e,t){return this.binaryZeroPad().slice(e,t)}reverseForm(e){e||(e={});const t=this.correctForm().split(".").reverse().join(".");return e.omitSuffix?t:(0,l.sprintf)("%s.in-addr.arpa.",t)}isMulticast(){return this.isInSubnet(new h("224.0.0.0/4"))}binaryZeroPad(){return this.bigInteger().toString(2).padStart(a.BITS,"0")}groupForV6(){const e=this.parsedAddress;return this.address.replace(a.RE_ADDRESS,(0,l.sprintf)('%s.%s',e.slice(0,2).join("."),e.slice(2,4).join(".")))}}t.Address4=h},36329:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return o(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Address6=void 0;const s=i(n(90837)),a=i(n(9576)),u=i(n(28914)),c=i(n(62846)),l=n(92839),h=n(50321),f=n(22437),p=n(19534),d=n(78816);function E(e){if(!e)throw new Error("Assertion failed.")}function m(e){return(e=e.replace(/^(0{1,})([1-9]+)$/,'$1$2')).replace(/^(0{1,})(0)$/,'$1$2')}function _(e){return(0,d.sprintf)("%04x",parseInt(e,16))}function g(e){return 255&e}class y{constructor(e,t){this.addressMinusSuffix="",this.parsedSubnet="",this.subnet="/128",this.subnetMask=128,this.v4=!1,this.zone="",this.isInSubnet=s.isInSubnet,this.isCorrect=s.isCorrect(u.BITS),this.groups=void 0===t?u.GROUPS:t,this.address=e;const n=u.RE_SUBNET_STRING.exec(e);if(n){if(this.parsedSubnet=n[0].replace("/",""),this.subnetMask=parseInt(this.parsedSubnet,10),this.subnet=`/${this.subnetMask}`,Number.isNaN(this.subnetMask)||this.subnetMask<0||this.subnetMask>u.BITS)throw new f.AddressError("Invalid subnet mask.");e=e.replace(u.RE_SUBNET_STRING,"")}else if(/\//.test(e))throw new f.AddressError("Invalid subnet mask.");const r=u.RE_ZONE_STRING.exec(e);r&&(this.zone=r[0],e=e.replace(u.RE_ZONE_STRING,"")),this.addressMinusSuffix=e,this.parsedAddress=this.parse(this.addressMinusSuffix)}static isValid(e){try{return new y(e),!0}catch(e){return!1}}static fromBigInteger(e){const t=e.toString(16).padStart(32,"0"),n=[];let r;for(r=0;r65536)&&(r=null)):r=null,{address:new y(t),port:r}}static fromAddress4(e){const t=new l.Address4(e),n=u.BITS-(a.BITS-t.subnetMask);return new y(`::ffff:${t.correctForm()}/${n}`)}static fromArpa(e){let t=e.replace(/(\.ip6\.arpa)?\.$/,"");if(63!==t.length)throw new f.AddressError("Invalid 'ip6.arpa' form.");const n=t.split(".").reverse();for(let e=7;e>0;e--){const t=4*e;n.splice(t,0,":")}return t=n.join(""),new y(t)}microsoftTranscription(){return(0,d.sprintf)("%s.ipv6-literal.net",this.correctForm().replace(/:/g,"-"))}mask(e=this.subnetMask){return this.getBitsBase2(0,e)}possibleSubnets(e=128){const t=u.BITS-this.subnetMask-Math.abs(e-u.BITS);return t<0?"0":function(e){const t=/(\d+)(\d{3})/;for(;t.test(e);)e=e.replace(t,"$1,$2");return e}(new p.BigInteger("2",10).pow(t).toString(10))}_startAddress(){return new p.BigInteger(this.mask()+"0".repeat(u.BITS-this.subnetMask),2)}startAddress(){return y.fromBigInteger(this._startAddress())}startAddressExclusive(){const e=new p.BigInteger("1");return y.fromBigInteger(this._startAddress().add(e))}_endAddress(){return new p.BigInteger(this.mask()+"1".repeat(u.BITS-this.subnetMask),2)}endAddress(){return y.fromBigInteger(this._endAddress())}endAddressExclusive(){const e=new p.BigInteger("1");return y.fromBigInteger(this._endAddress().subtract(e))}getScope(){let e=u.SCOPES[this.getBits(12,16).intValue()];return"Global unicast"===this.getType()&&"Link local"!==e&&(e="Global"),e||"Unknown"}getType(){for(const e of Object.keys(u.TYPES))if(this.isInSubnet(new y(e)))return u.TYPES[e];return"Global unicast"}getBits(e,t){return new p.BigInteger(this.getBitsBase2(e,t),2)}getBitsBase2(e,t){return this.binaryZeroPad().slice(e,t)}getBitsBase16(e,t){const n=t-e;if(n%4!=0)throw new Error("Length of bits to retrieve must be divisible by four");return this.getBits(e,t).toString(16).padStart(n/4,"0")}getBitsPastSubnet(){return this.getBitsBase2(this.subnetMask,u.BITS)}reverseForm(e){e||(e={});const t=Math.floor(this.subnetMask/4),n=this.canonicalForm().replace(/:/g,"").split("").slice(0,t).reverse().join(".");return t>0?e.omitSuffix?n:(0,d.sprintf)("%s.ip6.arpa.",n):e.omitSuffix?"":"ip6.arpa."}correctForm(){let e,t=[],n=0;const r=[];for(e=0;e0&&(n>1&&r.push([e-n,e-1]),n=0)}n>1&&r.push([this.parsedAddress.length-n,this.parsedAddress.length-1]);const o=r.map((e=>e[1]-e[0]+1));if(r.length>0){const e=o.indexOf(Math.max(...o));t=function(e,t){const n=[],r=[];let o;for(o=0;ot[1]&&r.push(e[o]);return n.concat(["compact"]).concat(r)}(this.parsedAddress,r[e])}else t=this.parsedAddress;for(e=0;e1?"s":"",t.join("")),e.replace(u.RE_BAD_CHARACTERS,'$1'));const n=e.match(u.RE_BAD_ADDRESS);if(n)throw new f.AddressError((0,d.sprintf)("Address failed regex: %s",n.join("")),e.replace(u.RE_BAD_ADDRESS,'$1'));let r=[];const o=e.split("::");if(2===o.length){let e=o[0].split(":"),t=o[1].split(":");1===e.length&&""===e[0]&&(e=[]),1===t.length&&""===t[0]&&(t=[]);const n=this.groups-(e.length+t.length);if(!n)throw new f.AddressError("Error parsing groups");this.elidedGroups=n,this.elisionBegin=e.length,this.elisionEnd=e.length+this.elidedGroups,r=r.concat(e);for(let e=0;e(0,d.sprintf)("%x",parseInt(e,16)))),r.length!==this.groups)throw new f.AddressError("Incorrect number of groups found");return r}canonicalForm(){return this.parsedAddress.map(_).join(":")}decimal(){return this.parsedAddress.map((e=>(0,d.sprintf)("%05d",parseInt(e,16)))).join(":")}bigInteger(){return new p.BigInteger(this.parsedAddress.map(_).join(""),16)}to4(){const e=this.binaryZeroPad().split("");return l.Address4.fromHex(new p.BigInteger(e.slice(96,128).join(""),2).toString(16))}to4in6(){const e=this.to4(),t=new y(this.parsedAddress.slice(0,6).join(":"),6).correctForm();let n="";return/:$/.test(t)||(n=":"),t+n+e.address}inspectTeredo(){const e=this.getBitsBase16(0,32),t=this.getBits(80,96).xor(new p.BigInteger("ffff",16)).toString(),n=l.Address4.fromHex(this.getBitsBase16(32,64)),r=l.Address4.fromHex(this.getBits(96,128).xor(new p.BigInteger("ffffffff",16)).toString(16)),o=this.getBits(64,80),i=this.getBitsBase2(64,80),s=o.testBit(15),a=o.testBit(14),u=o.testBit(8),c=o.testBit(9),h=new p.BigInteger(i.slice(2,6)+i.slice(8,16),2).toString(10);return{prefix:(0,d.sprintf)("%s:%s",e.slice(0,4),e.slice(4,8)),server4:n.address,client4:r.address,flags:i,coneNat:s,microsoft:{reserved:a,universalLocal:c,groupIndividual:u,nonce:h},udpPort:t}}inspect6to4(){const e=this.getBitsBase16(0,16),t=l.Address4.fromHex(this.getBitsBase16(16,48));return{prefix:(0,d.sprintf)("%s",e.slice(0,4)),gateway:t.address}}to6to4(){if(!this.is4())return null;const e=["2002",this.getBitsBase16(96,112),this.getBitsBase16(112,128),"","/16"].join(":");return new y(e)}toByteArray(){const e=this.bigInteger().toByteArray();return 17===e.length&&0===e[0]?e.slice(1):e}toUnsignedByteArray(){return this.toByteArray().map(g)}static fromByteArray(e){return this.fromUnsignedByteArray(e.map(g))}static fromUnsignedByteArray(e){const t=new p.BigInteger("256",10);let n=new p.BigInteger("0",10),r=new p.BigInteger("1",10);for(let o=e.length-1;o>=0;o--)n=n.add(r.multiply(new p.BigInteger(e[o].toString(10),10))),r=r.multiply(t);return y.fromBigInteger(n)}isCanonical(){return this.addressMinusSuffix===this.canonicalForm()}isLinkLocal(){return"1111111010000000000000000000000000000000000000000000000000000000"===this.getBitsBase2(0,64)}isMulticast(){return"Multicast"===this.getType()}is4(){return this.v4}isTeredo(){return this.isInSubnet(new y("2001::/32"))}is6to4(){return this.isInSubnet(new y("2002::/16"))}isLoopback(){return"Loopback"===this.getType()}href(e){return e=void 0===e?"":(0,d.sprintf)(":%s",e),(0,d.sprintf)("http://[%s]%s/",this.correctForm(),e)}link(e){e||(e={}),void 0===e.className&&(e.className=""),void 0===e.prefix&&(e.prefix="/#address="),void 0===e.v4&&(e.v4=!1);let t=this.correctForm;return e.v4&&(t=this.to4in6),e.className?(0,d.sprintf)('%2$s',e.prefix,t.call(this),e.className):(0,d.sprintf)('%2$s',e.prefix,t.call(this))}group(){if(0===this.elidedGroups)return c.simpleGroup(this.address).join(":");E("number"==typeof this.elidedGroups),E("number"==typeof this.elisionBegin);const e=[],[t,n]=this.address.split("::");t.length?e.push(...c.simpleGroup(t)):e.push("");const r=["hover-group"];for(let e=this.elisionBegin;e',r.join(" "))),n.length?e.push(...c.simpleGroup(n,this.elisionEnd)):e.push(""),this.is4()&&(E(this.address4 instanceof l.Address4),e.pop(),e.push(this.address4.groupForV6())),e.join(":")}regularExpressionString(e=!1){let t=[];const n=new y(this.correctForm());if(0===n.elidedGroups)t.push((0,h.simpleRegularExpression)(n.parsedAddress));else if(n.elidedGroups===u.GROUPS)t.push((0,h.possibleElisions)(u.GROUPS));else{const e=n.address.split("::");e[0].length&&t.push((0,h.simpleRegularExpression)(e[0].split(":"))),E("number"==typeof n.elidedGroups),t.push((0,h.possibleElisions)(n.elidedGroups,0!==e[0].length,0!==e[1].length)),e[1].length&&t.push((0,h.simpleRegularExpression)(e[1].split(":"))),t=[t.join(":")]}return e||(t=["(?=^|",h.ADDRESS_BOUNDARY,"|[^\\w\\:])(",...t,")(?=[^\\w\\:]|",h.ADDRESS_BOUNDARY,"|$)"]),t.join("")}regularExpression(e=!1){return new RegExp(this.regularExpressionString(e),"i")}}t.Address6=y},9576:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.RE_SUBNET_STRING=t.RE_ADDRESS=t.GROUPS=t.BITS=void 0,t.BITS=32,t.GROUPS=4,t.RE_ADDRESS=/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/g,t.RE_SUBNET_STRING=/\/\d{1,2}$/},28914:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.RE_URL_WITH_PORT=t.RE_URL=t.RE_ZONE_STRING=t.RE_SUBNET_STRING=t.RE_BAD_ADDRESS=t.RE_BAD_CHARACTERS=t.TYPES=t.SCOPES=t.GROUPS=t.BITS=void 0,t.BITS=128,t.GROUPS=8,t.SCOPES={0:"Reserved",1:"Interface local",2:"Link local",4:"Admin local",5:"Site local",8:"Organization local",14:"Global",15:"Reserved"},t.TYPES={"ff01::1/128":"Multicast (All nodes on this interface)","ff01::2/128":"Multicast (All routers on this interface)","ff02::1/128":"Multicast (All nodes on this link)","ff02::2/128":"Multicast (All routers on this link)","ff05::2/128":"Multicast (All routers in this site)","ff02::5/128":"Multicast (OSPFv3 AllSPF routers)","ff02::6/128":"Multicast (OSPFv3 AllDR routers)","ff02::9/128":"Multicast (RIP routers)","ff02::a/128":"Multicast (EIGRP routers)","ff02::d/128":"Multicast (PIM routers)","ff02::16/128":"Multicast (MLDv2 reports)","ff01::fb/128":"Multicast (mDNSv6)","ff02::fb/128":"Multicast (mDNSv6)","ff05::fb/128":"Multicast (mDNSv6)","ff02::1:2/128":"Multicast (All DHCP servers and relay agents on this link)","ff05::1:2/128":"Multicast (All DHCP servers and relay agents in this site)","ff02::1:3/128":"Multicast (All DHCP servers on this link)","ff05::1:3/128":"Multicast (All DHCP servers in this site)","::/128":"Unspecified","::1/128":"Loopback","ff00::/8":"Multicast","fe80::/10":"Link-local unicast"},t.RE_BAD_CHARACTERS=/([^0-9a-f:/%])/gi,t.RE_BAD_ADDRESS=/([0-9a-f]{5,}|:{3,}|[^:]:$|^:[^:]|\/$)/gi,t.RE_SUBNET_STRING=/\/\d{1,3}(?=%|$)/,t.RE_ZONE_STRING=/%.*$/,t.RE_URL=new RegExp(/^\[{0,1}([0-9a-f:]+)\]{0,1}/),t.RE_URL_WITH_PORT=new RegExp(/\[([0-9a-f:]+)\]:([0-9]{1,5})/)},62846:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.simpleGroup=t.spanLeadingZeroes=t.spanAll=t.spanAllZeroes=void 0;const r=n(78816);function o(e){return e.replace(/(0+)/g,'$1')}function i(e){return e.replace(/^(0+)/,'$1')}t.spanAllZeroes=o,t.spanAll=function(e,t=0){return e.split("").map(((e,n)=>(0,r.sprintf)('%s',e,n+t,o(e)))).join("")},t.spanLeadingZeroes=function(e){return e.split(":").map((e=>i(e))).join(":")},t.simpleGroup=function(e,t=0){return e.split(":").map(((e,n)=>/group-v4/.test(e)?e:(0,r.sprintf)('%s',n+t,i(e))))}},50321:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return o(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.possibleElisions=t.simpleRegularExpression=t.ADDRESS_BOUNDARY=t.padGroup=t.groupPossibilities=void 0;const s=i(n(28914)),a=n(78816);function u(e){return(0,a.sprintf)("(%s)",e.join("|"))}function c(e){return e.length<4?(0,a.sprintf)("0{0,%d}%s",4-e.length,e):e}t.groupPossibilities=u,t.padGroup=c,t.ADDRESS_BOUNDARY="[^A-Fa-f0-9:]",t.simpleRegularExpression=function(e){const t=[];e.forEach(((e,n)=>{0===parseInt(e,16)&&t.push(n)}));const n=t.map((t=>e.map(((e,n)=>{if(n===t){const t=0===n||n===s.GROUPS-1?":":"";return u([c(e),t])}return c(e)})).join(":")));return n.push(e.map(c).join(":")),u(n)},t.possibleElisions=function(e,t,n){const r=t?"":":",o=n?"":":",i=[];t||n||i.push("::"),t&&n&&i.push(""),(n&&!t||!n&&t)&&i.push(":"),i.push((0,a.sprintf)("%s(:0{1,4}){1,%d}",r,e-1)),i.push((0,a.sprintf)("(0{1,4}:){1,%d}%s",e-1,o)),i.push((0,a.sprintf)("(0{1,4}:){%d}0{1,4}",e-1));for(let t=1;t{var r;!function(){"use strict";var o={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function i(e){return function(e,t){var n,r,s,a,u,c,l,h,f,p=1,d=e.length,E="";for(r=0;r=0),a.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,a.width?parseInt(a.width):0);break;case"e":n=a.precision?parseFloat(n).toExponential(a.precision):parseFloat(n).toExponential();break;case"f":n=a.precision?parseFloat(n).toFixed(a.precision):parseFloat(n);break;case"g":n=a.precision?String(Number(n.toPrecision(a.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=a.precision?n.substring(0,a.precision):n;break;case"t":n=String(!!n),n=a.precision?n.substring(0,a.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=a.precision?n.substring(0,a.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=a.precision?n.substring(0,a.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}o.json.test(a.type)?E+=n:(!o.number.test(a.type)||h&&!a.sign?f="":(f=h?"+":"-",n=n.toString().replace(o.sign,"")),c=a.pad_char?"0"===a.pad_char?"0":a.pad_char.charAt(1):" ",l=a.width-(f+n).length,u=a.width&&l>0?c.repeat(l):"",E+=a.align?f+n+u:"0"===c?f+u+n:u+f+n)}return E}(function(e){if(a[e])return a[e];for(var t,n=e,r=[],i=0;n;){if(null!==(t=o.text.exec(n)))r.push(t[0]);else if(null!==(t=o.modulo.exec(n)))r.push("%");else{if(null===(t=o.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){i|=1;var s=[],u=t[2],c=[];if(null===(c=o.key.exec(u)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(s.push(c[1]);""!==(u=u.substring(c[0].length));)if(null!==(c=o.key_access.exec(u)))s.push(c[1]);else{if(null===(c=o.index_access.exec(u)))throw new SyntaxError("[sprintf] failed to parse named argument key");s.push(c[1])}t[2]=s}else i|=2;if(3===i)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");r.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return a[e]=r}(e),arguments)}function s(e,t){return i.apply(null,[e].concat(t||[]))}var a=Object.create(null);t.sprintf=i,t.vsprintf=s,"undefined"!=typeof window&&(window.sprintf=i,window.vsprintf=s,void 0===(r=function(){return{sprintf:i,vsprintf:s}}.call(t,n,t,e))||(e.exports=r))}()},69600:e=>{"use strict";var t,n,r=Function.prototype.toString,o="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof o&&"function"==typeof Object.defineProperty)try{t=Object.defineProperty({},"length",{get:function(){throw n}}),n={},o((function(){throw 42}),null,t)}catch(e){e!==n&&(o=null)}else o=null;var i=/^\s*class\b/,s=function(e){try{var t=r.call(e);return i.test(t)}catch(e){return!1}},a=function(e){try{return!s(e)&&(r.call(e),!0)}catch(e){return!1}},u=Object.prototype.toString,c="function"==typeof Symbol&&!!Symbol.toStringTag,l=!(0 in[,]),h=function(){return!1};if("object"==typeof document){var f=document.all;u.call(f)===u.call(document.all)&&(h=function(e){if((l||!e)&&(void 0===e||"object"==typeof e))try{var t=u.call(e);return("[object HTMLAllCollection]"===t||"[object HTML document.all class]"===t||"[object HTMLCollection]"===t||"[object Object]"===t)&&null==e("")}catch(e){}return!1})}e.exports=o?function(e){if(h(e))return!0;if(!e)return!1;if("function"!=typeof e&&"object"!=typeof e)return!1;try{o(e,null,t)}catch(e){if(e!==n)return!1}return!s(e)&&a(e)}:function(e){if(h(e))return!0;if(!e)return!1;if("function"!=typeof e&&"object"!=typeof e)return!1;if(c)return a(e);if(s(e))return!1;var t=u.call(e);return!("[object Function]"!==t&&"[object GeneratorFunction]"!==t&&!/^\[object HTML/.test(t))&&a(e)}},54796:(e,t,n)=>{"use strict";const r=n(79896);let o;e.exports=()=>(void 0===o&&(o=function(){try{return r.statSync("/.dockerenv"),!0}catch(e){return!1}}()||function(){try{return r.readFileSync("/proc/self/cgroup","utf8").includes("docker")}catch(e){return!1}}()),o)},55027:e=>{"use strict";e.exports=function(e){return/^[$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc][$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc0-9\u0300-\u036f\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08e4-\u08fe\u0900-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c01-\u0c03\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c82\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d02\u0d03\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19b0-\u19c0\u19c8\u19c9\u19d0-\u19d9\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf2-\u1cf4\u1dc0-\u1de6\u1dfc-\u1dff\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c4\ua8d0-\ua8d9\ua8e0-\ua8f1\ua900-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f]*$/.test(e)}},4761:(e,t,n)=>{"use strict";var r=String.prototype.valueOf,o=Object.prototype.toString,i=n(49092)();e.exports=function(e){return"string"==typeof e||"object"==typeof e&&(i?function(e){try{return r.call(e),!0}catch(e){return!1}}(e):"[object String]"===o.call(e))}},9870:(e,t,n)=>{"use strict";const r=n(70857),o=n(79896),i=n(54796),s=()=>{if("linux"!==process.platform)return!1;if(r.release().toLowerCase().includes("microsoft"))return!i();try{return!!o.readFileSync("/proc/version","utf8").toLowerCase().includes("microsoft")&&!i()}catch(e){return!1}};process.env.__IS_WSL_TEST__?e.exports=s:e.exports=s()},9702:(e,t,n)=>{var r;!function(){"use strict";var t="object"==typeof window?window:{},o=!t.JS_MD4_NO_NODE_JS&&"object"==typeof process&&process.versions&&process.versions.node;o&&(t=global);var i,s=!t.JS_MD4_NO_COMMON_JS&&e.exports,a=n.amdO,u=!t.JS_MD4_NO_ARRAY_BUFFER&&"undefined"!=typeof ArrayBuffer,c="0123456789abcdef".split(""),l=[128,32768,8388608,-2147483648],h=[0,8,16,24],f=["hex","array","digest","buffer","arrayBuffer"],p=[];if(u){var d=new ArrayBuffer(68);i=new Uint8Array(d),p=new Uint32Array(d)}var E=function(e){return function(t){return new m(!0).update(t)[e]()}};function m(e){if(e)p[0]=p[16]=p[1]=p[2]=p[3]=p[4]=p[5]=p[6]=p[7]=p[8]=p[9]=p[10]=p[11]=p[12]=p[13]=p[14]=p[15]=0,this.blocks=p,this.buffer8=i;else if(u){var t=new ArrayBuffer(68);this.buffer8=new Uint8Array(t),this.blocks=new Uint32Array(t)}else this.blocks=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];this.h0=this.h1=this.h2=this.h3=this.start=this.bytes=0,this.finalized=this.hashed=!1,this.first=!0}m.prototype.update=function(e){if(!this.finalized){var t="string"!=typeof e;t&&u&&e instanceof ArrayBuffer&&(e=new Uint8Array(e));for(var n,r,o=0,i=e.length||0,s=this.blocks,a=this.buffer8;o>2]|=e[o]<>6,a[r++]=128|63&n):n<55296||n>=57344?(a[r++]=224|n>>12,a[r++]=128|n>>6&63,a[r++]=128|63&n):(n=65536+((1023&n)<<10|1023&e.charCodeAt(++o)),a[r++]=240|n>>18,a[r++]=128|n>>12&63,a[r++]=128|n>>6&63,a[r++]=128|63&n);else for(r=this.start;o>2]|=n<>2]|=(192|n>>6)<>2]|=(128|63&n)<=57344?(s[r>>2]|=(224|n>>12)<>2]|=(128|n>>6&63)<>2]|=(128|63&n)<>2]|=(240|n>>18)<>2]|=(128|n>>12&63)<>2]|=(128|n>>6&63)<>2]|=(128|63&n)<=64?(this.start=r-64,this.hash(),this.hashed=!0):this.start=r}return this}},m.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var e=this.blocks,t=this.lastByteIndex;e[t>>2]|=l[3&t],t>=56&&(this.hashed||this.hash(),e[0]=e[16],e[16]=e[1]=e[2]=e[3]=e[4]=e[5]=e[6]=e[7]=e[8]=e[9]=e[10]=e[11]=e[12]=e[13]=e[14]=e[15]=0),e[14]=this.bytes<<3,this.hash()}},m.prototype.hash=function(){var e,t,n,r,o,i,s,a,u=this.blocks;this.first?t=(t=((n=(n=((r=(r=(4023233417&(e=(e=u[0]-1)<<3|e>>>29)|2562383102&~e)+u[1]+271733878)<<7|r>>>25)&e|4023233417&~r)+u[2]-1732584194)<<11|n>>>21)&r|~n&e)+u[3]-271733879)<<19|t>>>13:(e=this.h0,t=this.h1,n=this.h2,r=this.h3,t=(t+=((n=(n+=((r=(r+=((e=(e+=(t&n|~t&r)+u[0])<<3|e>>>29)&t|~e&n)+u[1])<<7|r>>>25)&e|~r&t)+u[2])<<11|n>>>21)&r|~n&e)+u[3])<<19|t>>>13),t=(t+=((n=(n+=((r=(r+=((e=(e+=(t&n|~t&r)+u[4])<<3|e>>>29)&t|~e&n)+u[5])<<7|r>>>25)&e|~r&t)+u[6])<<11|n>>>21)&r|~n&e)+u[7])<<19|t>>>13,t=(t+=((n=(n+=((r=(r+=((e=(e+=(t&n|~t&r)+u[8])<<3|e>>>29)&t|~e&n)+u[9])<<7|r>>>25)&e|~r&t)+u[10])<<11|n>>>21)&r|~n&e)+u[11])<<19|t>>>13,t=(t+=((n=(n+=((r=(r+=((e=(e+=(t&n|~t&r)+u[12])<<3|e>>>29)&t|~e&n)+u[13])<<7|r>>>25)&e|~r&t)+u[14])<<11|n>>>21)&r|~n&e)+u[15])<<19|t>>>13,t=(t+=((s=(n=(n+=((a=(r=(r+=((o=(e=(e+=((i=t&n)|t&r|n&r)+u[0]+1518500249)<<3|e>>>29)&t)|e&n|i)+u[4]+1518500249)<<5|r>>>27)&e)|r&t|o)+u[8]+1518500249)<<9|n>>>23)&r)|n&e|a)+u[12]+1518500249)<<13|t>>>19,t=(t+=((s=(n=(n+=((a=(r=(r+=((o=(e=(e+=((i=t&n)|t&r|s)+u[1]+1518500249)<<3|e>>>29)&t)|e&n|i)+u[5]+1518500249)<<5|r>>>27)&e)|r&t|o)+u[9]+1518500249)<<9|n>>>23)&r)|n&e|a)+u[13]+1518500249)<<13|t>>>19,t=(t+=((s=(n=(n+=((a=(r=(r+=((o=(e=(e+=((i=t&n)|t&r|s)+u[2]+1518500249)<<3|e>>>29)&t)|e&n|i)+u[6]+1518500249)<<5|r>>>27)&e)|r&t|o)+u[10]+1518500249)<<9|n>>>23)&r)|n&e|a)+u[14]+1518500249)<<13|t>>>19,t=(t+=((n=(n+=((a=(r=(r+=((o=(e=(e+=((i=t&n)|t&r|s)+u[3]+1518500249)<<3|e>>>29)&t)|e&n|i)+u[7]+1518500249)<<5|r>>>27)&e)|r&t|o)+u[11]+1518500249)<<9|n>>>23)&r|n&e|a)+u[15]+1518500249)<<13|t>>>19,t=(t+=((a=(r=(r+=((i=t^n)^(e=(e+=(i^r)+u[0]+1859775393)<<3|e>>>29))+u[8]+1859775393)<<9|r>>>23)^e)^(n=(n+=(a^t)+u[4]+1859775393)<<11|n>>>21))+u[12]+1859775393)<<15|t>>>17,t=(t+=((a=(r=(r+=((i=t^n)^(e=(e+=(i^r)+u[2]+1859775393)<<3|e>>>29))+u[10]+1859775393)<<9|r>>>23)^e)^(n=(n+=(a^t)+u[6]+1859775393)<<11|n>>>21))+u[14]+1859775393)<<15|t>>>17,t=(t+=((a=(r=(r+=((i=t^n)^(e=(e+=(i^r)+u[1]+1859775393)<<3|e>>>29))+u[9]+1859775393)<<9|r>>>23)^e)^(n=(n+=(a^t)+u[5]+1859775393)<<11|n>>>21))+u[13]+1859775393)<<15|t>>>17,t=(t+=((a=(r=(r+=((i=t^n)^(e=(e+=(i^r)+u[3]+1859775393)<<3|e>>>29))+u[11]+1859775393)<<9|r>>>23)^e)^(n=(n+=(a^t)+u[7]+1859775393)<<11|n>>>21))+u[15]+1859775393)<<15|t>>>17,this.first?(this.h0=e+1732584193|0,this.h1=t-271733879|0,this.h2=n-1732584194|0,this.h3=r+271733878|0,this.first=!1):(this.h0=this.h0+e|0,this.h1=this.h1+t|0,this.h2=this.h2+n|0,this.h3=this.h3+r|0)},m.prototype.hex=function(){this.finalize();var e=this.h0,t=this.h1,n=this.h2,r=this.h3;return c[e>>4&15]+c[15&e]+c[e>>12&15]+c[e>>8&15]+c[e>>20&15]+c[e>>16&15]+c[e>>28&15]+c[e>>24&15]+c[t>>4&15]+c[15&t]+c[t>>12&15]+c[t>>8&15]+c[t>>20&15]+c[t>>16&15]+c[t>>28&15]+c[t>>24&15]+c[n>>4&15]+c[15&n]+c[n>>12&15]+c[n>>8&15]+c[n>>20&15]+c[n>>16&15]+c[n>>28&15]+c[n>>24&15]+c[r>>4&15]+c[15&r]+c[r>>12&15]+c[r>>8&15]+c[r>>20&15]+c[r>>16&15]+c[r>>28&15]+c[r>>24&15]},m.prototype.toString=m.prototype.hex,m.prototype.digest=function(){this.finalize();var e=this.h0,t=this.h1,n=this.h2,r=this.h3;return[255&e,e>>8&255,e>>16&255,e>>24&255,255&t,t>>8&255,t>>16&255,t>>24&255,255&n,n>>8&255,n>>16&255,n>>24&255,255&r,r>>8&255,r>>16&255,r>>24&255]},m.prototype.array=m.prototype.digest,m.prototype.arrayBuffer=function(){this.finalize();var e=new ArrayBuffer(16),t=new Uint32Array(e);return t[0]=this.h0,t[1]=this.h1,t[2]=this.h2,t[3]=this.h3,e},m.prototype.buffer=m.prototype.arrayBuffer;var _=function(){var e=E("hex");o&&(e=function(e){var t=n(76982),r=n(20181).Buffer;return function(n){if("string"==typeof n)return t.createHash("md4").update(n,"utf8").digest("hex");if(u&&n instanceof ArrayBuffer)n=new Uint8Array(n);else if(void 0===n.length)return e(n);return t.createHash("md4").update(new r(n)).digest("hex")}}(e)),e.create=function(){return new m},e.update=function(t){return e.create().update(t)};for(var t=0;t>15;--i>=0;){var u=32767&this[e],c=this[e++]>>15,l=a*u+c*s;o=((u=s*u+((32767&l)<<15)+n[r]+(1073741823&o))>>>30)+(l>>>15)+a*c+(o>>>30),n[r++]=1073741823&u}return o},t=30):o&&"Netscape"!=navigator.appName?(n.prototype.am=function(e,t,n,r,o,i){for(;--i>=0;){var s=t*this[e++]+n[r]+o;o=Math.floor(s/67108864),n[r++]=67108863&s}return o},t=26):(n.prototype.am=function(e,t,n,r,o,i){for(var s=16383&t,a=t>>14;--i>=0;){var u=16383&this[e],c=this[e++]>>14,l=a*u+c*s;o=((u=s*u+((16383&l)<<14)+n[r]+o)>>28)+(l>>14)+a*c,n[r++]=268435455&u}return o},t=28),n.prototype.DB=t,n.prototype.DM=(1<>>16)&&(e=t,n+=16),0!=(t=e>>8)&&(e=t,n+=8),0!=(t=e>>4)&&(e=t,n+=4),0!=(t=e>>2)&&(e=t,n+=2),0!=(t=e>>1)&&(e=t,n+=1),n}function f(e){this.m=e}function p(e){this.m=e,this.mp=e.invDigit(),this.mpl=32767&this.mp,this.mph=this.mp>>15,this.um=(1<>=16,t+=16),255&e||(e>>=8,t+=8),15&e||(e>>=4,t+=4),3&e||(e>>=2,t+=2),1&e||++t,t}function y(e){for(var t=0;0!=e;)e&=e-1,++t;return t}function A(){}function v(e){return e}function b(e){this.r2=r(),this.q3=r(),n.ONE.dlShiftTo(2*e.t,this.r2),this.mu=this.r2.divide(e),this.m=e}f.prototype.convert=function(e){return e.s<0||e.compareTo(this.m)>=0?e.mod(this.m):e},f.prototype.revert=function(e){return e},f.prototype.reduce=function(e){e.divRemTo(this.m,null,e)},f.prototype.mulTo=function(e,t,n){e.multiplyTo(t,n),this.reduce(n)},f.prototype.sqrTo=function(e,t){e.squareTo(t),this.reduce(t)},p.prototype.convert=function(e){var t=r();return e.abs().dlShiftTo(this.m.t,t),t.divRemTo(this.m,null,t),e.s<0&&t.compareTo(n.ZERO)>0&&this.m.subTo(t,t),t},p.prototype.revert=function(e){var t=r();return e.copyTo(t),this.reduce(t),t},p.prototype.reduce=function(e){for(;e.t<=this.mt2;)e[e.t++]=0;for(var t=0;t>15)*this.mpl&this.um)<<15)&e.DM;for(e[n=t+this.m.t]+=this.m.am(0,r,e,t,0,this.m.t);e[n]>=e.DV;)e[n]-=e.DV,e[++n]++}e.clamp(),e.drShiftTo(this.m.t,e),e.compareTo(this.m)>=0&&e.subTo(this.m,e)},p.prototype.mulTo=function(e,t,n){e.multiplyTo(t,n),this.reduce(n)},p.prototype.sqrTo=function(e,t){e.squareTo(t),this.reduce(t)},n.prototype.copyTo=function(e){for(var t=this.t-1;t>=0;--t)e[t]=this[t];e.t=this.t,e.s=this.s},n.prototype.fromInt=function(e){this.t=1,this.s=e<0?-1:0,e>0?this[0]=e:e<-1?this[0]=e+this.DV:this.t=0},n.prototype.fromString=function(e,t){var r;if(16==t)r=4;else if(8==t)r=3;else if(256==t)r=8;else if(2==t)r=1;else if(32==t)r=5;else{if(4!=t)return void this.fromRadix(e,t);r=2}this.t=0,this.s=0;for(var o=e.length,i=!1,s=0;--o>=0;){var a=8==r?255&e[o]:c(e,o);a<0?"-"==e.charAt(o)&&(i=!0):(i=!1,0==s?this[this.t++]=a:s+r>this.DB?(this[this.t-1]|=(a&(1<>this.DB-s):this[this.t-1]|=a<=this.DB&&(s-=this.DB))}8==r&&128&e[0]&&(this.s=-1,s>0&&(this[this.t-1]|=(1<0&&this[this.t-1]==e;)--this.t},n.prototype.dlShiftTo=function(e,t){var n;for(n=this.t-1;n>=0;--n)t[n+e]=this[n];for(n=e-1;n>=0;--n)t[n]=0;t.t=this.t+e,t.s=this.s},n.prototype.drShiftTo=function(e,t){for(var n=e;n=0;--n)t[n+s+1]=this[n]>>o|a,a=(this[n]&i)<=0;--n)t[n]=0;t[s]=a,t.t=this.t+s+1,t.s=this.s,t.clamp()},n.prototype.rShiftTo=function(e,t){t.s=this.s;var n=Math.floor(e/this.DB);if(n>=this.t)t.t=0;else{var r=e%this.DB,o=this.DB-r,i=(1<>r;for(var s=n+1;s>r;r>0&&(t[this.t-n-1]|=(this.s&i)<>=this.DB;if(e.t>=this.DB;r+=this.s}else{for(r+=this.s;n>=this.DB;r-=e.s}t.s=r<0?-1:0,r<-1?t[n++]=this.DV+r:r>0&&(t[n++]=r),t.t=n,t.clamp()},n.prototype.multiplyTo=function(e,t){var r=this.abs(),o=e.abs(),i=r.t;for(t.t=i+o.t;--i>=0;)t[i]=0;for(i=0;i=0;)e[n]=0;for(n=0;n=t.DV&&(e[n+t.t]-=t.DV,e[n+t.t+1]=1)}e.t>0&&(e[e.t-1]+=t.am(n,t[n],e,2*n,0,1)),e.s=0,e.clamp()},n.prototype.divRemTo=function(e,t,o){var i=e.abs();if(!(i.t<=0)){var s=this.abs();if(s.t0?(i.lShiftTo(l,a),s.lShiftTo(l,o)):(i.copyTo(a),s.copyTo(o));var f=a.t,p=a[f-1];if(0!=p){var d=p*(1<1?a[f-2]>>this.F2:0),E=this.FV/d,m=(1<=0&&(o[o.t++]=1,o.subTo(A,o)),n.ONE.dlShiftTo(f,A),A.subTo(a,a);a.t=0;){var v=o[--g]==p?this.DM:Math.floor(o[g]*E+(o[g-1]+_)*m);if((o[g]+=a.am(0,v,o,y,0,f))0&&o.rShiftTo(l,o),u<0&&n.ZERO.subTo(o,o)}}},n.prototype.invDigit=function(){if(this.t<1)return 0;var e=this[0];if(!(1&e))return 0;var t=3&e;return(t=(t=(t=(t=t*(2-(15&e)*t)&15)*(2-(255&e)*t)&255)*(2-((65535&e)*t&65535))&65535)*(2-e*t%this.DV)%this.DV)>0?this.DV-t:-t},n.prototype.isEven=function(){return 0==(this.t>0?1&this[0]:this.s)},n.prototype.exp=function(e,t){if(e>4294967295||e<1)return n.ONE;var o=r(),i=r(),s=t.convert(this),a=h(e)-1;for(s.copyTo(o);--a>=0;)if(t.sqrTo(o,i),(e&1<0)t.mulTo(i,s,o);else{var u=o;o=i,i=u}return t.revert(o)},n.prototype.toString=function(e){if(this.s<0)return"-"+this.negate().toString(e);var t;if(16==e)t=4;else if(8==e)t=3;else if(2==e)t=1;else if(32==e)t=5;else{if(4!=e)return this.toRadix(e);t=2}var n,r=(1<0)for(a>a)>0&&(o=!0,i=u(n));s>=0;)a>(a+=this.DB-t)):(n=this[s]>>(a-=t)&r,a<=0&&(a+=this.DB,--s)),n>0&&(o=!0),o&&(i+=u(n));return o?i:"0"},n.prototype.negate=function(){var e=r();return n.ZERO.subTo(this,e),e},n.prototype.abs=function(){return this.s<0?this.negate():this},n.prototype.compareTo=function(e){var t=this.s-e.s;if(0!=t)return t;var n=this.t;if(0!=(t=n-e.t))return this.s<0?-t:t;for(;--n>=0;)if(0!=(t=this[n]-e[n]))return t;return 0},n.prototype.bitLength=function(){return this.t<=0?0:this.DB*(this.t-1)+h(this[this.t-1]^this.s&this.DM)},n.prototype.mod=function(e){var t=r();return this.abs().divRemTo(e,null,t),this.s<0&&t.compareTo(n.ZERO)>0&&e.subTo(t,t),t},n.prototype.modPowInt=function(e,t){var n;return n=e<256||t.isEven()?new f(t):new p(t),this.exp(e,n)},n.ZERO=l(0),n.ONE=l(1),A.prototype.convert=v,A.prototype.revert=v,A.prototype.mulTo=function(e,t,n){e.multiplyTo(t,n)},A.prototype.sqrTo=function(e,t){e.squareTo(t)},b.prototype.convert=function(e){if(e.s<0||e.t>2*this.m.t)return e.mod(this.m);if(e.compareTo(this.m)<0)return e;var t=r();return e.copyTo(t),this.reduce(t),t},b.prototype.revert=function(e){return e},b.prototype.reduce=function(e){for(e.drShiftTo(this.m.t-1,this.r2),e.t>this.m.t+1&&(e.t=this.m.t+1,e.clamp()),this.mu.multiplyUpperTo(this.r2,this.m.t+1,this.q3),this.m.multiplyLowerTo(this.q3,this.m.t+1,this.r2);e.compareTo(this.r2)<0;)e.dAddOffset(1,this.m.t+1);for(e.subTo(this.r2,e);e.compareTo(this.m)>=0;)e.subTo(this.m,e)},b.prototype.mulTo=function(e,t,n){e.multiplyTo(t,n),this.reduce(n)},b.prototype.sqrTo=function(e,t){e.squareTo(t),this.reduce(t)};var T,w,O,R=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997],S=(1<<26)/R[R.length-1];function I(){var e;e=(new Date).getTime(),w[O++]^=255&e,w[O++]^=e>>8&255,w[O++]^=e>>16&255,w[O++]^=e>>24&255,O>=B&&(O-=B)}if(n.prototype.chunkSize=function(e){return Math.floor(Math.LN2*this.DB/Math.log(e))},n.prototype.toRadix=function(e){if(null==e&&(e=10),0==this.signum()||e<2||e>36)return"0";var t=this.chunkSize(e),n=Math.pow(e,t),o=l(n),i=r(),s=r(),a="";for(this.divRemTo(o,i,s);i.signum()>0;)a=(n+s.intValue()).toString(e).substr(1)+a,i.divRemTo(o,i,s);return s.intValue().toString(e)+a},n.prototype.fromRadix=function(e,t){this.fromInt(0),null==t&&(t=10);for(var r=this.chunkSize(t),o=Math.pow(t,r),i=!1,s=0,a=0,u=0;u=r&&(this.dMultiply(o),this.dAddOffset(a,0),s=0,a=0))}s>0&&(this.dMultiply(Math.pow(t,s)),this.dAddOffset(a,0)),i&&n.ZERO.subTo(this,this)},n.prototype.fromNumber=function(e,t,r){if("number"==typeof t)if(e<2)this.fromInt(1);else for(this.fromNumber(e,r),this.testBit(e-1)||this.bitwiseTo(n.ONE.shiftLeft(e-1),E,this),this.isEven()&&this.dAddOffset(1,0);!this.isProbablePrime(t);)this.dAddOffset(2,0),this.bitLength()>e&&this.subTo(n.ONE.shiftLeft(e-1),this);else{var o=new Array,i=7&e;o.length=1+(e>>3),t.nextBytes(o),i>0?o[0]&=(1<>=this.DB;if(e.t>=this.DB;r+=this.s}else{for(r+=this.s;n>=this.DB;r+=e.s}t.s=r<0?-1:0,r>0?t[n++]=r:r<-1&&(t[n++]=this.DV+r),t.t=n,t.clamp()},n.prototype.dMultiply=function(e){this[this.t]=this.am(0,e-1,this,0,0,this.t),++this.t,this.clamp()},n.prototype.dAddOffset=function(e,t){if(0!=e){for(;this.t<=t;)this[this.t++]=0;for(this[t]+=e;this[t]>=this.DV;)this[t]-=this.DV,++t>=this.t&&(this[this.t++]=0),++this[t]}},n.prototype.multiplyLowerTo=function(e,t,n){var r,o=Math.min(this.t+e.t,t);for(n.s=0,n.t=o;o>0;)n[--o]=0;for(r=n.t-this.t;o=0;)n[r]=0;for(r=Math.max(t-this.t,0);r0)if(0==t)n=this[0]%e;else for(var r=this.t-1;r>=0;--r)n=(t*n+this[r])%e;return n},n.prototype.millerRabin=function(e){var t=this.subtract(n.ONE),o=t.getLowestSetBit();if(o<=0)return!1;var i=t.shiftRight(o);(e=e+1>>1)>R.length&&(e=R.length);for(var s=r(),a=0;a>24},n.prototype.shortValue=function(){return 0==this.t?this.s:this[0]<<16>>16},n.prototype.signum=function(){return this.s<0?-1:this.t<=0||1==this.t&&this[0]<=0?0:1},n.prototype.toByteArray=function(){var e=this.t,t=new Array;t[0]=this.s;var n,r=this.DB-e*this.DB%8,o=0;if(e-- >0)for(r>r)!=(this.s&this.DM)>>r&&(t[o++]=n|this.s<=0;)r<8?(n=(this[e]&(1<>(r+=this.DB-8)):(n=this[e]>>(r-=8)&255,r<=0&&(r+=this.DB,--e)),128&n&&(n|=-256),0==o&&(128&this.s)!=(128&n)&&++o,(o>0||n!=this.s)&&(t[o++]=n);return t},n.prototype.equals=function(e){return 0==this.compareTo(e)},n.prototype.min=function(e){return this.compareTo(e)<0?this:e},n.prototype.max=function(e){return this.compareTo(e)>0?this:e},n.prototype.and=function(e){var t=r();return this.bitwiseTo(e,d,t),t},n.prototype.or=function(e){var t=r();return this.bitwiseTo(e,E,t),t},n.prototype.xor=function(e){var t=r();return this.bitwiseTo(e,m,t),t},n.prototype.andNot=function(e){var t=r();return this.bitwiseTo(e,_,t),t},n.prototype.not=function(){for(var e=r(),t=0;t=this.t?0!=this.s:!!(this[t]&1<1){var E=r();for(o.sqrTo(a[1],E);u<=d;)a[u]=r(),o.mulTo(E,a[u-2],a[u]),u+=2}var m,_,g=e.t-1,y=!0,A=r();for(i=h(e[g])-1;g>=0;){for(i>=c?m=e[g]>>i-c&d:(m=(e[g]&(1<0&&(m|=e[g-1]>>this.DB+i-c)),u=n;!(1&m);)m>>=1,--u;if((i-=u)<0&&(i+=this.DB,--g),y)a[m].copyTo(s),y=!1;else{for(;u>1;)o.sqrTo(s,A),o.sqrTo(A,s),u-=2;u>0?o.sqrTo(s,A):(_=s,s=A,A=_),o.mulTo(A,a[m],s)}for(;g>=0&&!(e[g]&1<=0?(r.subTo(o,r),t&&i.subTo(a,i),s.subTo(u,s)):(o.subTo(r,o),t&&a.subTo(i,a),u.subTo(s,u))}return 0!=o.compareTo(n.ONE)?n.ZERO:u.compareTo(e)>=0?u.subtract(e):u.signum()<0?(u.addTo(e,u),u.signum()<0?u.add(e):u):u},n.prototype.pow=function(e){return this.exp(e,new A)},n.prototype.gcd=function(e){var t=this.s<0?this.negate():this.clone(),n=e.s<0?e.negate():e.clone();if(t.compareTo(n)<0){var r=t;t=n,n=r}var o=t.getLowestSetBit(),i=n.getLowestSetBit();if(i<0)return t;for(o0&&(t.rShiftTo(i,t),n.rShiftTo(i,n));t.signum()>0;)(o=t.getLowestSetBit())>0&&t.rShiftTo(o,t),(o=n.getLowestSetBit())>0&&n.rShiftTo(o,n),t.compareTo(n)>=0?(t.subTo(n,t),t.rShiftTo(1,t)):(n.subTo(t,n),n.rShiftTo(1,n));return i>0&&n.lShiftTo(i,n),n},n.prototype.isProbablePrime=function(e){var t,n=this.abs();if(1==n.t&&n[0]<=R[R.length-1]){for(t=0;t>>8,w[O++]=255&N;O=0,I()}function L(){if(null==T){for(I(),(T=new x).init(w),O=0;O{var r=n(50652);e.exports=function(e,t){t=t||{};var n=r.decode(e,t);if(!n)return null;var o=n.payload;if("string"==typeof o)try{var i=JSON.parse(o);null!==i&&"object"==typeof i&&(o=i)}catch(e){}return!0===t.complete?{header:n.header,payload:o,signature:n.signature}:o}},44040:(e,t,n)=>{e.exports={decode:n(37260),verify:n(91691),sign:n(37651),JsonWebTokenError:n(81741),NotBeforeError:n(13726),TokenExpiredError:n(18980)}},81741:e=>{var t=function(e,t){Error.call(this,e),Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor),this.name="JsonWebTokenError",this.message=e,t&&(this.inner=t)};(t.prototype=Object.create(Error.prototype)).constructor=t,e.exports=t},13726:(e,t,n)=>{var r=n(81741),o=function(e,t){r.call(this,e),this.name="NotBeforeError",this.date=t};(o.prototype=Object.create(r.prototype)).constructor=o,e.exports=o},18980:(e,t,n)=>{var r=n(81741),o=function(e,t){r.call(this,e),this.name="TokenExpiredError",this.expiredAt=t};(o.prototype=Object.create(r.prototype)).constructor=o,e.exports=o},1977:(e,t,n)=>{const r=n(95864);e.exports=r.satisfies(process.version,">=15.7.0")},74977:(e,t,n)=>{var r=n(95864);e.exports=r.satisfies(process.version,"^6.12.0 || >=8.0.0")},34623:(e,t,n)=>{const r=n(95864);e.exports=r.satisfies(process.version,">=16.9.0")},40855:(e,t,n)=>{var r=n(6585);e.exports=function(e,t){var n=t||Math.floor(Date.now()/1e3);if("string"==typeof e){var o=r(e);if(void 0===o)return;return Math.floor(n+o/1e3)}return"number"==typeof e?n+e:void 0}},47019:(e,t,n)=>{const r=n(1977),o=n(34623),i={ec:["ES256","ES384","ES512"],rsa:["RS256","PS256","RS384","PS384","RS512","PS512"],"rsa-pss":["PS256","PS384","PS512"]},s={ES256:"prime256v1",ES384:"secp384r1",ES512:"secp521r1"};e.exports=function(e,t){if(!e||!t)return;const n=t.asymmetricKeyType;if(!n)return;const a=i[n];if(!a)throw new Error(`Unknown key type "${n}".`);if(!a.includes(e))throw new Error(`"alg" parameter for "${n}" key type must be one of: ${a.join(", ")}.`);if(r)switch(n){case"ec":const n=t.asymmetricKeyDetails.namedCurve,r=s[e];if(n!==r)throw new Error(`"alg" parameter "${e}" requires curve "${r}".`);break;case"rsa-pss":if(o){const n=parseInt(e.slice(-3),10),{hashAlgorithm:r,mgf1HashAlgorithm:o,saltLength:i}=t.asymmetricKeyDetails;if(r!==`sha${n}`||o!==r)throw new Error(`Invalid key for this operation, its RSA-PSS parameters do not meet the requirements of "alg" ${e}.`);if(void 0!==i&&i>n>>3)throw new Error(`Invalid key for this operation, its RSA-PSS parameter saltLength does not meet the requirements of "alg" ${e}.`)}}}},36942:(e,t,n)=>{var r=n(41045),o=n(92861).Buffer,i=n(76982),s=n(22010),a=n(39023),u="secret must be a string or buffer",c="key must be a string or a buffer",l="key must be a string, a buffer or an object",h="function"==typeof i.createPublicKey;function f(e){if(!o.isBuffer(e)&&"string"!=typeof e){if(!h)throw m(c);if("object"!=typeof e)throw m(c);if("string"!=typeof e.type)throw m(c);if("string"!=typeof e.asymmetricKeyType)throw m(c);if("function"!=typeof e.export)throw m(c)}}function p(e){if(!o.isBuffer(e)&&"string"!=typeof e&&"object"!=typeof e)throw m(l)}function d(e){return e.replace(/=/g,"").replace(/\+/g,"-").replace(/\//g,"_")}function E(e){var t=4-(e=e.toString()).length%4;if(4!==t)for(var n=0;n{var r=n(26456),o=n(53440);t.ALGORITHMS=["HS256","HS384","HS512","RS256","RS384","RS512","PS256","PS384","PS512","ES256","ES384","ES512"],t.sign=r.sign,t.verify=o.verify,t.decode=o.decode,t.isValid=o.isValid,t.createSign=function(e){return new r(e)},t.createVerify=function(e){return new o(e)}},22103:(e,t,n)=>{var r=n(92861).Buffer,o=n(2203);function i(e){if(this.buffer=null,this.writable=!0,this.readable=!0,!e)return this.buffer=r.alloc(0),this;if("function"==typeof e.pipe)return this.buffer=r.alloc(0),e.pipe(this),this;if(e.length||"object"==typeof e)return this.buffer=e,this.writable=!1,process.nextTick(function(){this.emit("end",e),this.readable=!1,this.emit("close")}.bind(this)),this;throw new TypeError("Unexpected data type ("+typeof e+")")}n(39023).inherits(i,o),i.prototype.write=function(e){this.buffer=r.concat([this.buffer,r.from(e)]),this.emit("data",e)},i.prototype.end=function(e){e&&this.write(e),this.emit("end",e),this.emit("close"),this.writable=!1,this.readable=!1},e.exports=i},26456:(e,t,n)=>{var r=n(92861).Buffer,o=n(22103),i=n(36942),s=n(2203),a=n(17894),u=n(39023);function c(e,t){return r.from(e,t).toString("base64").replace(/=/g,"").replace(/\+/g,"-").replace(/\//g,"_")}function l(e){var t=e.header,n=e.payload,r=e.secret||e.privateKey,o=e.encoding,s=i(t.alg),l=function(e,t,n){n=n||"utf8";var r=c(a(e),"binary"),o=c(a(t),n);return u.format("%s.%s",r,o)}(t,n,o),h=s.sign(l,r);return u.format("%s.%s",l,h)}function h(e){var t=e.secret||e.privateKey||e.key,n=new o(t);this.readable=!0,this.header=e.header,this.encoding=e.encoding,this.secret=this.privateKey=this.key=n,this.payload=new o(e.payload),this.secret.once("close",function(){!this.payload.writable&&this.readable&&this.sign()}.bind(this)),this.payload.once("close",function(){!this.secret.writable&&this.readable&&this.sign()}.bind(this))}u.inherits(h,s),h.prototype.sign=function(){try{var e=l({header:this.header,payload:this.payload.buffer,secret:this.secret.buffer,encoding:this.encoding});return this.emit("done",e),this.emit("data",e),this.emit("end"),this.readable=!1,e}catch(e){this.readable=!1,this.emit("error",e),this.emit("close")}},h.sign=l,e.exports=h},17894:(e,t,n)=>{var r=n(20181).Buffer;e.exports=function(e){return"string"==typeof e?e:"number"==typeof e||r.isBuffer(e)?e.toString():JSON.stringify(e)}},53440:(e,t,n)=>{var r=n(92861).Buffer,o=n(22103),i=n(36942),s=n(2203),a=n(17894),u=n(39023),c=/^[a-zA-Z0-9\-_]+?\.[a-zA-Z0-9\-_]+?\.([a-zA-Z0-9\-_]+)?$/;function l(e){var t=e.split(".",1)[0];return function(e){if(function(e){return"[object Object]"===Object.prototype.toString.call(e)}(e))return e;try{return JSON.parse(e)}catch(e){return}}(r.from(t,"base64").toString("binary"))}function h(e){return e.split(".")[2]}function f(e){return c.test(e)&&!!l(e)}function p(e,t,n){if(!t){var r=new Error("Missing algorithm parameter for jws.verify");throw r.code="MISSING_ALGORITHM",r}var o=h(e=a(e)),s=function(e){return e.split(".",2).join(".")}(e);return i(t).verify(s,o,n)}function d(e,t){if(t=t||{},!f(e=a(e)))return null;var n=l(e);if(!n)return null;var o=function(e,t){t=t||"utf8";var n=e.split(".")[1];return r.from(n,"base64").toString(t)}(e);return("JWT"===n.typ||t.json)&&(o=JSON.parse(o,t.encoding)),{header:n,payload:o,signature:h(e)}}function E(e){var t=(e=e||{}).secret||e.publicKey||e.key,n=new o(t);this.readable=!0,this.algorithm=e.algorithm,this.encoding=e.encoding,this.secret=this.publicKey=this.key=n,this.signature=new o(e.signature),this.secret.once("close",function(){!this.signature.writable&&this.readable&&this.verify()}.bind(this)),this.signature.once("close",function(){!this.secret.writable&&this.readable&&this.verify()}.bind(this))}u.inherits(E,s),E.prototype.verify=function(){try{var e=p(this.signature.buffer,this.algorithm,this.key.buffer),t=d(this.signature.buffer,this.encoding);return this.emit("done",e,t),this.emit("data",e),this.emit("end"),this.readable=!1,e}catch(e){this.readable=!1,this.emit("error",e),this.emit("close")}},E.decode=d,E.isValid=f,E.verify=p,e.exports=E},32659:(e,t,n)=>{const r=Symbol("SemVer ANY");class o{static get ANY(){return r}constructor(e,t){if(t=i(t),e instanceof o){if(e.loose===!!t.loose)return e;e=e.value}e=e.trim().split(/\s+/).join(" "),c("comparator",e,t),this.options=t,this.loose=!!t.loose,this.parse(e),this.semver===r?this.value="":this.value=this.operator+this.semver.version,c("comp",this)}parse(e){const t=this.options.loose?s[a.COMPARATORLOOSE]:s[a.COMPARATOR],n=e.match(t);if(!n)throw new TypeError(`Invalid comparator: ${e}`);this.operator=void 0!==n[1]?n[1]:"","="===this.operator&&(this.operator=""),n[2]?this.semver=new l(n[2],this.options.loose):this.semver=r}toString(){return this.value}test(e){if(c("Comparator.test",e,this.options.loose),this.semver===r||e===r)return!0;if("string"==typeof e)try{e=new l(e,this.options)}catch(e){return!1}return u(e,this.operator,this.semver,this.options)}intersects(e,t){if(!(e instanceof o))throw new TypeError("a Comparator is required");return""===this.operator?""===this.value||new h(e.value,t).test(this.value):""===e.operator?""===e.value||new h(this.value,t).test(e.semver):!((t=i(t)).includePrerelease&&("<0.0.0-0"===this.value||"<0.0.0-0"===e.value)||!t.includePrerelease&&(this.value.startsWith("<0.0.0")||e.value.startsWith("<0.0.0"))||(!this.operator.startsWith(">")||!e.operator.startsWith(">"))&&(!this.operator.startsWith("<")||!e.operator.startsWith("<"))&&(this.semver.version!==e.semver.version||!this.operator.includes("=")||!e.operator.includes("="))&&!(u(this.semver,"<",e.semver,t)&&this.operator.startsWith(">")&&e.operator.startsWith("<"))&&!(u(this.semver,">",e.semver,t)&&this.operator.startsWith("<")&&e.operator.startsWith(">")))}}e.exports=o;const i=n(9284),{safeRe:s,t:a}=n(12351),u=n(80630),c=n(86839),l=n(86315),h=n(15006)},15006:(e,t,n)=>{class r{constructor(e,t){if(t=i(t),e instanceof r)return e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease?e:new r(e.raw,t);if(e instanceof s)return this.raw=e.value,this.set=[[e]],this.format(),this;if(this.options=t,this.loose=!!t.loose,this.includePrerelease=!!t.includePrerelease,this.raw=e.trim().split(/\s+/).join(" "),this.set=this.raw.split("||").map((e=>this.parseRange(e.trim()))).filter((e=>e.length)),!this.set.length)throw new TypeError(`Invalid SemVer Range: ${this.raw}`);if(this.set.length>1){const e=this.set[0];if(this.set=this.set.filter((e=>!m(e[0]))),0===this.set.length)this.set=[e];else if(this.set.length>1)for(const e of this.set)if(1===e.length&&_(e[0])){this.set=[e];break}}this.format()}format(){return this.range=this.set.map((e=>e.join(" ").trim())).join("||").trim(),this.range}toString(){return this.range}parseRange(e){const t=((this.options.includePrerelease&&d)|(this.options.loose&&E))+":"+e,n=o.get(t);if(n)return n;const r=this.options.loose,i=r?c[l.HYPHENRANGELOOSE]:c[l.HYPHENRANGE];e=e.replace(i,N(this.options.includePrerelease)),a("hyphen replace",e),e=e.replace(c[l.COMPARATORTRIM],h),a("comparator trim",e),e=e.replace(c[l.TILDETRIM],f),a("tilde trim",e),e=e.replace(c[l.CARETTRIM],p),a("caret trim",e);let u=e.split(" ").map((e=>y(e,this.options))).join(" ").split(/\s+/).map((e=>I(e,this.options)));r&&(u=u.filter((e=>(a("loose invalid filter",e,this.options),!!e.match(c[l.COMPARATORLOOSE]))))),a("range list",u);const _=new Map,g=u.map((e=>new s(e,this.options)));for(const e of g){if(m(e))return[e];_.set(e.value,e)}_.size>1&&_.has("")&&_.delete("");const A=[..._.values()];return o.set(t,A),A}intersects(e,t){if(!(e instanceof r))throw new TypeError("a Range is required");return this.set.some((n=>g(n,t)&&e.set.some((e=>g(e,t)&&n.every((n=>e.every((e=>n.intersects(e,t)))))))))}test(e){if(!e)return!1;if("string"==typeof e)try{e=new u(e,this.options)}catch(e){return!1}for(let t=0;t"<0.0.0-0"===e.value,_=e=>""===e.value,g=(e,t)=>{let n=!0;const r=e.slice();let o=r.pop();for(;n&&r.length;)n=r.every((e=>o.intersects(e,t))),o=r.pop();return n},y=(e,t)=>(a("comp",e,t),e=T(e,t),a("caret",e),e=v(e,t),a("tildes",e),e=O(e,t),a("xrange",e),e=S(e,t),a("stars",e),e),A=e=>!e||"x"===e.toLowerCase()||"*"===e,v=(e,t)=>e.trim().split(/\s+/).map((e=>b(e,t))).join(" "),b=(e,t)=>{const n=t.loose?c[l.TILDELOOSE]:c[l.TILDE];return e.replace(n,((t,n,r,o,i)=>{let s;return a("tilde",e,t,n,r,o,i),A(n)?s="":A(r)?s=`>=${n}.0.0 <${+n+1}.0.0-0`:A(o)?s=`>=${n}.${r}.0 <${n}.${+r+1}.0-0`:i?(a("replaceTilde pr",i),s=`>=${n}.${r}.${o}-${i} <${n}.${+r+1}.0-0`):s=`>=${n}.${r}.${o} <${n}.${+r+1}.0-0`,a("tilde return",s),s}))},T=(e,t)=>e.trim().split(/\s+/).map((e=>w(e,t))).join(" "),w=(e,t)=>{a("caret",e,t);const n=t.loose?c[l.CARETLOOSE]:c[l.CARET],r=t.includePrerelease?"-0":"";return e.replace(n,((t,n,o,i,s)=>{let u;return a("caret",e,t,n,o,i,s),A(n)?u="":A(o)?u=`>=${n}.0.0${r} <${+n+1}.0.0-0`:A(i)?u="0"===n?`>=${n}.${o}.0${r} <${n}.${+o+1}.0-0`:`>=${n}.${o}.0${r} <${+n+1}.0.0-0`:s?(a("replaceCaret pr",s),u="0"===n?"0"===o?`>=${n}.${o}.${i}-${s} <${n}.${o}.${+i+1}-0`:`>=${n}.${o}.${i}-${s} <${n}.${+o+1}.0-0`:`>=${n}.${o}.${i}-${s} <${+n+1}.0.0-0`):(a("no pr"),u="0"===n?"0"===o?`>=${n}.${o}.${i}${r} <${n}.${o}.${+i+1}-0`:`>=${n}.${o}.${i}${r} <${n}.${+o+1}.0-0`:`>=${n}.${o}.${i} <${+n+1}.0.0-0`),a("caret return",u),u}))},O=(e,t)=>(a("replaceXRanges",e,t),e.split(/\s+/).map((e=>R(e,t))).join(" ")),R=(e,t)=>{e=e.trim();const n=t.loose?c[l.XRANGELOOSE]:c[l.XRANGE];return e.replace(n,((n,r,o,i,s,u)=>{a("xRange",e,n,r,o,i,s,u);const c=A(o),l=c||A(i),h=l||A(s),f=h;return"="===r&&f&&(r=""),u=t.includePrerelease?"-0":"",c?n=">"===r||"<"===r?"<0.0.0-0":"*":r&&f?(l&&(i=0),s=0,">"===r?(r=">=",l?(o=+o+1,i=0,s=0):(i=+i+1,s=0)):"<="===r&&(r="<",l?o=+o+1:i=+i+1),"<"===r&&(u="-0"),n=`${r+o}.${i}.${s}${u}`):l?n=`>=${o}.0.0${u} <${+o+1}.0.0-0`:h&&(n=`>=${o}.${i}.0${u} <${o}.${+i+1}.0-0`),a("xRange return",n),n}))},S=(e,t)=>(a("replaceStars",e,t),e.trim().replace(c[l.STAR],"")),I=(e,t)=>(a("replaceGTE0",e,t),e.trim().replace(c[t.includePrerelease?l.GTE0PRE:l.GTE0],"")),N=e=>(t,n,r,o,i,s,a,u,c,l,h,f)=>`${n=A(r)?"":A(o)?`>=${r}.0.0${e?"-0":""}`:A(i)?`>=${r}.${o}.0${e?"-0":""}`:s?`>=${n}`:`>=${n}${e?"-0":""}`} ${u=A(c)?"":A(l)?`<${+c+1}.0.0-0`:A(h)?`<${c}.${+l+1}.0-0`:f?`<=${c}.${l}.${h}-${f}`:e?`<${c}.${l}.${+h+1}-0`:`<=${u}`}`.trim(),C=(e,t,n)=>{for(let n=0;n0){const r=e[n].semver;if(r.major===t.major&&r.minor===t.minor&&r.patch===t.patch)return!0}return!1}return!0}},86315:(e,t,n)=>{const r=n(86839),{MAX_LENGTH:o,MAX_SAFE_INTEGER:i}=n(25501),{safeRe:s,t:a}=n(12351),u=n(9284),{compareIdentifiers:c}=n(9716);class l{constructor(e,t){if(t=u(t),e instanceof l){if(e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease)return e;e=e.version}else if("string"!=typeof e)throw new TypeError(`Invalid version. Must be a string. Got type "${typeof e}".`);if(e.length>o)throw new TypeError(`version is longer than ${o} characters`);r("SemVer",e,t),this.options=t,this.loose=!!t.loose,this.includePrerelease=!!t.includePrerelease;const n=e.trim().match(t.loose?s[a.LOOSE]:s[a.FULL]);if(!n)throw new TypeError(`Invalid Version: ${e}`);if(this.raw=e,this.major=+n[1],this.minor=+n[2],this.patch=+n[3],this.major>i||this.major<0)throw new TypeError("Invalid major version");if(this.minor>i||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>i||this.patch<0)throw new TypeError("Invalid patch version");n[4]?this.prerelease=n[4].split(".").map((e=>{if(/^[0-9]+$/.test(e)){const t=+e;if(t>=0&&t=0;)"number"==typeof this.prerelease[r]&&(this.prerelease[r]++,r=-2);if(-1===r){if(t===this.prerelease.join(".")&&!1===n)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(e)}}if(t){let r=[t,e];!1===n&&(r=[t]),0===c(this.prerelease[0],t)?isNaN(this.prerelease[1])&&(this.prerelease=r):this.prerelease=r}break}default:throw new Error(`invalid increment argument: ${e}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}}e.exports=l},50871:(e,t,n)=>{const r=n(47153);e.exports=(e,t)=>{const n=r(e.trim().replace(/^[=v]+/,""),t);return n?n.version:null}},80630:(e,t,n)=>{const r=n(84506),o=n(54654),i=n(9671),s=n(29540),a=n(76912),u=n(68445);e.exports=(e,t,n,c)=>{switch(t){case"===":return"object"==typeof e&&(e=e.version),"object"==typeof n&&(n=n.version),e===n;case"!==":return"object"==typeof e&&(e=e.version),"object"==typeof n&&(n=n.version),e!==n;case"":case"=":case"==":return r(e,n,c);case"!=":return o(e,n,c);case">":return i(e,n,c);case">=":return s(e,n,c);case"<":return a(e,n,c);case"<=":return u(e,n,c);default:throw new TypeError(`Invalid operator: ${t}`)}}},52393:(e,t,n)=>{const r=n(86315),o=n(47153),{safeRe:i,t:s}=n(12351);e.exports=(e,t)=>{if(e instanceof r)return e;if("number"==typeof e&&(e=String(e)),"string"!=typeof e)return null;let n=null;if((t=t||{}).rtl){const r=t.includePrerelease?i[s.COERCERTLFULL]:i[s.COERCERTL];let o;for(;(o=r.exec(e))&&(!n||n.index+n[0].length!==e.length);)n&&o.index+o[0].length===n.index+n[0].length||(n=o),r.lastIndex=o.index+o[1].length+o[2].length;r.lastIndex=-1}else n=e.match(t.includePrerelease?i[s.COERCEFULL]:i[s.COERCE]);if(null===n)return null;const a=n[2],u=n[3]||"0",c=n[4]||"0",l=t.includePrerelease&&n[5]?`-${n[5]}`:"",h=t.includePrerelease&&n[6]?`+${n[6]}`:"";return o(`${a}.${u}.${c}${l}${h}`,t)}},94848:(e,t,n)=>{const r=n(86315);e.exports=(e,t,n)=>{const o=new r(e,n),i=new r(t,n);return o.compare(i)||o.compareBuild(i)}},8474:(e,t,n)=>{const r=n(43701);e.exports=(e,t)=>r(e,t,!0)},43701:(e,t,n)=>{const r=n(86315);e.exports=(e,t,n)=>new r(e,n).compare(new r(t,n))},3719:(e,t,n)=>{const r=n(47153);e.exports=(e,t)=>{const n=r(e,null,!0),o=r(t,null,!0),i=n.compare(o);if(0===i)return null;const s=i>0,a=s?n:o,u=s?o:n,c=!!a.prerelease.length;if(u.prerelease.length&&!c)return u.patch||u.minor?a.patch?"patch":a.minor?"minor":"major":"major";const l=c?"pre":"";return n.major!==o.major?l+"major":n.minor!==o.minor?l+"minor":n.patch!==o.patch?l+"patch":"prerelease"}},84506:(e,t,n)=>{const r=n(43701);e.exports=(e,t,n)=>0===r(e,t,n)},9671:(e,t,n)=>{const r=n(43701);e.exports=(e,t,n)=>r(e,t,n)>0},29540:(e,t,n)=>{const r=n(43701);e.exports=(e,t,n)=>r(e,t,n)>=0},49746:(e,t,n)=>{const r=n(86315);e.exports=(e,t,n,o,i)=>{"string"==typeof n&&(i=o,o=n,n=void 0);try{return new r(e instanceof r?e.version:e,n).inc(t,o,i).version}catch(e){return null}}},76912:(e,t,n)=>{const r=n(43701);e.exports=(e,t,n)=>r(e,t,n)<0},68445:(e,t,n)=>{const r=n(43701);e.exports=(e,t,n)=>r(e,t,n)<=0},87887:(e,t,n)=>{const r=n(86315);e.exports=(e,t)=>new r(e,t).major},76651:(e,t,n)=>{const r=n(86315);e.exports=(e,t)=>new r(e,t).minor},54654:(e,t,n)=>{const r=n(43701);e.exports=(e,t,n)=>0!==r(e,t,n)},47153:(e,t,n)=>{const r=n(86315);e.exports=(e,t,n=!1)=>{if(e instanceof r)return e;try{return new r(e,t)}catch(e){if(!n)return null;throw e}}},10180:(e,t,n)=>{const r=n(86315);e.exports=(e,t)=>new r(e,t).patch},40818:(e,t,n)=>{const r=n(47153);e.exports=(e,t)=>{const n=r(e,t);return n&&n.prerelease.length?n.prerelease:null}},6813:(e,t,n)=>{const r=n(43701);e.exports=(e,t,n)=>r(t,e,n)},9544:(e,t,n)=>{const r=n(94848);e.exports=(e,t)=>e.sort(((e,n)=>r(n,e,t)))},71995:(e,t,n)=>{const r=n(15006);e.exports=(e,t,n)=>{try{t=new r(t,n)}catch(e){return!1}return t.test(e)}},38080:(e,t,n)=>{const r=n(94848);e.exports=(e,t)=>e.sort(((e,n)=>r(e,n,t)))},8300:(e,t,n)=>{const r=n(47153);e.exports=(e,t)=>{const n=r(e,t);return n?n.version:null}},95864:(e,t,n)=>{const r=n(12351),o=n(25501),i=n(86315),s=n(9716),a=n(47153),u=n(8300),c=n(50871),l=n(49746),h=n(3719),f=n(87887),p=n(76651),d=n(10180),E=n(40818),m=n(43701),_=n(6813),g=n(8474),y=n(94848),A=n(38080),v=n(9544),b=n(9671),T=n(76912),w=n(84506),O=n(54654),R=n(29540),S=n(68445),I=n(80630),N=n(52393),C=n(32659),D=n(15006),L=n(71995),M=n(59278),x=n(21017),B=n(43811),P=n(33514),F=n(96561),U=n(5368),k=n(9924),j=n(74173),G=n(20153),V=n(99388),Y=n(66529);e.exports={parse:a,valid:u,clean:c,inc:l,diff:h,major:f,minor:p,patch:d,prerelease:E,compare:m,rcompare:_,compareLoose:g,compareBuild:y,sort:A,rsort:v,gt:b,lt:T,eq:w,neq:O,gte:R,lte:S,cmp:I,coerce:N,Comparator:C,Range:D,satisfies:L,toComparators:M,maxSatisfying:x,minSatisfying:B,minVersion:P,validRange:F,outside:U,gtr:k,ltr:j,intersects:G,simplifyRange:V,subset:Y,SemVer:i,re:r.re,src:r.src,tokens:r.t,SEMVER_SPEC_VERSION:o.SEMVER_SPEC_VERSION,RELEASE_TYPES:o.RELEASE_TYPES,compareIdentifiers:s.compareIdentifiers,rcompareIdentifiers:s.rcompareIdentifiers}},25501:e=>{const t=Number.MAX_SAFE_INTEGER||9007199254740991;e.exports={MAX_LENGTH:256,MAX_SAFE_COMPONENT_LENGTH:16,MAX_SAFE_BUILD_LENGTH:250,MAX_SAFE_INTEGER:t,RELEASE_TYPES:["major","premajor","minor","preminor","patch","prepatch","prerelease"],SEMVER_SPEC_VERSION:"2.0.0",FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}},86839:e=>{const t="object"==typeof process&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)?(...e)=>console.error("SEMVER",...e):()=>{};e.exports=t},9716:e=>{const t=/^[0-9]+$/,n=(e,n)=>{const r=t.test(e),o=t.test(n);return r&&o&&(e=+e,n=+n),e===n?0:r&&!o?-1:o&&!r?1:en(t,e)}},17207:e=>{e.exports=class{constructor(){this.max=1e3,this.map=new Map}get(e){const t=this.map.get(e);return void 0===t?void 0:(this.map.delete(e),this.map.set(e,t),t)}delete(e){return this.map.delete(e)}set(e,t){if(!this.delete(e)&&void 0!==t){if(this.map.size>=this.max){const e=this.map.keys().next().value;this.delete(e)}this.map.set(e,t)}return this}}},9284:e=>{const t=Object.freeze({loose:!0}),n=Object.freeze({});e.exports=e=>e?"object"!=typeof e?t:e:n},12351:(e,t,n)=>{const{MAX_SAFE_COMPONENT_LENGTH:r,MAX_SAFE_BUILD_LENGTH:o,MAX_LENGTH:i}=n(25501),s=n(86839),a=(t=e.exports={}).re=[],u=t.safeRe=[],c=t.src=[],l=t.t={};let h=0;const f="[a-zA-Z0-9-]",p=[["\\s",1],["\\d",i],[f,o]],d=(e,t,n)=>{const r=(e=>{for(const[t,n]of p)e=e.split(`${t}*`).join(`${t}{0,${n}}`).split(`${t}+`).join(`${t}{1,${n}}`);return e})(t),o=h++;s(e,o,t),l[e]=o,c[o]=t,a[o]=new RegExp(t,n?"g":void 0),u[o]=new RegExp(r,n?"g":void 0)};d("NUMERICIDENTIFIER","0|[1-9]\\d*"),d("NUMERICIDENTIFIERLOOSE","\\d+"),d("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${f}*`),d("MAINVERSION",`(${c[l.NUMERICIDENTIFIER]})\\.(${c[l.NUMERICIDENTIFIER]})\\.(${c[l.NUMERICIDENTIFIER]})`),d("MAINVERSIONLOOSE",`(${c[l.NUMERICIDENTIFIERLOOSE]})\\.(${c[l.NUMERICIDENTIFIERLOOSE]})\\.(${c[l.NUMERICIDENTIFIERLOOSE]})`),d("PRERELEASEIDENTIFIER",`(?:${c[l.NUMERICIDENTIFIER]}|${c[l.NONNUMERICIDENTIFIER]})`),d("PRERELEASEIDENTIFIERLOOSE",`(?:${c[l.NUMERICIDENTIFIERLOOSE]}|${c[l.NONNUMERICIDENTIFIER]})`),d("PRERELEASE",`(?:-(${c[l.PRERELEASEIDENTIFIER]}(?:\\.${c[l.PRERELEASEIDENTIFIER]})*))`),d("PRERELEASELOOSE",`(?:-?(${c[l.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${c[l.PRERELEASEIDENTIFIERLOOSE]})*))`),d("BUILDIDENTIFIER",`${f}+`),d("BUILD",`(?:\\+(${c[l.BUILDIDENTIFIER]}(?:\\.${c[l.BUILDIDENTIFIER]})*))`),d("FULLPLAIN",`v?${c[l.MAINVERSION]}${c[l.PRERELEASE]}?${c[l.BUILD]}?`),d("FULL",`^${c[l.FULLPLAIN]}$`),d("LOOSEPLAIN",`[v=\\s]*${c[l.MAINVERSIONLOOSE]}${c[l.PRERELEASELOOSE]}?${c[l.BUILD]}?`),d("LOOSE",`^${c[l.LOOSEPLAIN]}$`),d("GTLT","((?:<|>)?=?)"),d("XRANGEIDENTIFIERLOOSE",`${c[l.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`),d("XRANGEIDENTIFIER",`${c[l.NUMERICIDENTIFIER]}|x|X|\\*`),d("XRANGEPLAIN",`[v=\\s]*(${c[l.XRANGEIDENTIFIER]})(?:\\.(${c[l.XRANGEIDENTIFIER]})(?:\\.(${c[l.XRANGEIDENTIFIER]})(?:${c[l.PRERELEASE]})?${c[l.BUILD]}?)?)?`),d("XRANGEPLAINLOOSE",`[v=\\s]*(${c[l.XRANGEIDENTIFIERLOOSE]})(?:\\.(${c[l.XRANGEIDENTIFIERLOOSE]})(?:\\.(${c[l.XRANGEIDENTIFIERLOOSE]})(?:${c[l.PRERELEASELOOSE]})?${c[l.BUILD]}?)?)?`),d("XRANGE",`^${c[l.GTLT]}\\s*${c[l.XRANGEPLAIN]}$`),d("XRANGELOOSE",`^${c[l.GTLT]}\\s*${c[l.XRANGEPLAINLOOSE]}$`),d("COERCEPLAIN",`(^|[^\\d])(\\d{1,${r}})(?:\\.(\\d{1,${r}}))?(?:\\.(\\d{1,${r}}))?`),d("COERCE",`${c[l.COERCEPLAIN]}(?:$|[^\\d])`),d("COERCEFULL",c[l.COERCEPLAIN]+`(?:${c[l.PRERELEASE]})?`+`(?:${c[l.BUILD]})?(?:$|[^\\d])`),d("COERCERTL",c[l.COERCE],!0),d("COERCERTLFULL",c[l.COERCEFULL],!0),d("LONETILDE","(?:~>?)"),d("TILDETRIM",`(\\s*)${c[l.LONETILDE]}\\s+`,!0),t.tildeTrimReplace="$1~",d("TILDE",`^${c[l.LONETILDE]}${c[l.XRANGEPLAIN]}$`),d("TILDELOOSE",`^${c[l.LONETILDE]}${c[l.XRANGEPLAINLOOSE]}$`),d("LONECARET","(?:\\^)"),d("CARETTRIM",`(\\s*)${c[l.LONECARET]}\\s+`,!0),t.caretTrimReplace="$1^",d("CARET",`^${c[l.LONECARET]}${c[l.XRANGEPLAIN]}$`),d("CARETLOOSE",`^${c[l.LONECARET]}${c[l.XRANGEPLAINLOOSE]}$`),d("COMPARATORLOOSE",`^${c[l.GTLT]}\\s*(${c[l.LOOSEPLAIN]})$|^$`),d("COMPARATOR",`^${c[l.GTLT]}\\s*(${c[l.FULLPLAIN]})$|^$`),d("COMPARATORTRIM",`(\\s*)${c[l.GTLT]}\\s*(${c[l.LOOSEPLAIN]}|${c[l.XRANGEPLAIN]})`,!0),t.comparatorTrimReplace="$1$2$3",d("HYPHENRANGE",`^\\s*(${c[l.XRANGEPLAIN]})\\s+-\\s+(${c[l.XRANGEPLAIN]})\\s*$`),d("HYPHENRANGELOOSE",`^\\s*(${c[l.XRANGEPLAINLOOSE]})\\s+-\\s+(${c[l.XRANGEPLAINLOOSE]})\\s*$`),d("STAR","(<|>)?=?\\s*\\*"),d("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),d("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")},9924:(e,t,n)=>{const r=n(5368);e.exports=(e,t,n)=>r(e,t,">",n)},20153:(e,t,n)=>{const r=n(15006);e.exports=(e,t,n)=>(e=new r(e,n),t=new r(t,n),e.intersects(t,n))},74173:(e,t,n)=>{const r=n(5368);e.exports=(e,t,n)=>r(e,t,"<",n)},21017:(e,t,n)=>{const r=n(86315),o=n(15006);e.exports=(e,t,n)=>{let i=null,s=null,a=null;try{a=new o(t,n)}catch(e){return null}return e.forEach((e=>{a.test(e)&&(i&&-1!==s.compare(e)||(i=e,s=new r(i,n)))})),i}},43811:(e,t,n)=>{const r=n(86315),o=n(15006);e.exports=(e,t,n)=>{let i=null,s=null,a=null;try{a=new o(t,n)}catch(e){return null}return e.forEach((e=>{a.test(e)&&(i&&1!==s.compare(e)||(i=e,s=new r(i,n)))})),i}},33514:(e,t,n)=>{const r=n(86315),o=n(15006),i=n(9671);e.exports=(e,t)=>{e=new o(e,t);let n=new r("0.0.0");if(e.test(n))return n;if(n=new r("0.0.0-0"),e.test(n))return n;n=null;for(let t=0;t{const t=new r(e.semver.version);switch(e.operator){case">":0===t.prerelease.length?t.patch++:t.prerelease.push(0),t.raw=t.format();case"":case">=":s&&!i(t,s)||(s=t);break;case"<":case"<=":break;default:throw new Error(`Unexpected operation: ${e.operator}`)}})),!s||n&&!i(n,s)||(n=s)}return n&&e.test(n)?n:null}},5368:(e,t,n)=>{const r=n(86315),o=n(32659),{ANY:i}=o,s=n(15006),a=n(71995),u=n(9671),c=n(76912),l=n(68445),h=n(29540);e.exports=(e,t,n,f)=>{let p,d,E,m,_;switch(e=new r(e,f),t=new s(t,f),n){case">":p=u,d=l,E=c,m=">",_=">=";break;case"<":p=c,d=h,E=u,m="<",_="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(a(e,t,f))return!1;for(let n=0;n{e.semver===i&&(e=new o(">=0.0.0")),s=s||e,a=a||e,p(e.semver,s.semver,f)?s=e:E(e.semver,a.semver,f)&&(a=e)})),s.operator===m||s.operator===_)return!1;if((!a.operator||a.operator===m)&&d(e,a.semver))return!1;if(a.operator===_&&E(e,a.semver))return!1}return!0}},99388:(e,t,n)=>{const r=n(71995),o=n(43701);e.exports=(e,t,n)=>{const i=[];let s=null,a=null;const u=e.sort(((e,t)=>o(e,t,n)));for(const e of u)r(e,t,n)?(a=e,s||(s=e)):(a&&i.push([s,a]),a=null,s=null);s&&i.push([s,null]);const c=[];for(const[e,t]of i)e===t?c.push(e):t||e!==u[0]?t?e===u[0]?c.push(`<=${t}`):c.push(`${e} - ${t}`):c.push(`>=${e}`):c.push("*");const l=c.join(" || "),h="string"==typeof t.raw?t.raw:String(t);return l.length{const r=n(15006),o=n(32659),{ANY:i}=o,s=n(71995),a=n(43701),u=[new o(">=0.0.0-0")],c=[new o(">=0.0.0")],l=(e,t,n)=>{if(e===t)return!0;if(1===e.length&&e[0].semver===i){if(1===t.length&&t[0].semver===i)return!0;e=n.includePrerelease?u:c}if(1===t.length&&t[0].semver===i){if(n.includePrerelease)return!0;t=c}const r=new Set;let o,l,p,d,E,m,_;for(const t of e)">"===t.operator||">="===t.operator?o=h(o,t,n):"<"===t.operator||"<="===t.operator?l=f(l,t,n):r.add(t.semver);if(r.size>1)return null;if(o&&l){if(p=a(o.semver,l.semver,n),p>0)return null;if(0===p&&(">="!==o.operator||"<="!==l.operator))return null}for(const e of r){if(o&&!s(e,String(o),n))return null;if(l&&!s(e,String(l),n))return null;for(const r of t)if(!s(e,String(r),n))return!1;return!0}let g=!(!l||n.includePrerelease||!l.semver.prerelease.length)&&l.semver,y=!(!o||n.includePrerelease||!o.semver.prerelease.length)&&o.semver;g&&1===g.prerelease.length&&"<"===l.operator&&0===g.prerelease[0]&&(g=!1);for(const e of t){if(_=_||">"===e.operator||">="===e.operator,m=m||"<"===e.operator||"<="===e.operator,o)if(y&&e.semver.prerelease&&e.semver.prerelease.length&&e.semver.major===y.major&&e.semver.minor===y.minor&&e.semver.patch===y.patch&&(y=!1),">"===e.operator||">="===e.operator){if(d=h(o,e,n),d===e&&d!==o)return!1}else if(">="===o.operator&&!s(o.semver,String(e),n))return!1;if(l)if(g&&e.semver.prerelease&&e.semver.prerelease.length&&e.semver.major===g.major&&e.semver.minor===g.minor&&e.semver.patch===g.patch&&(g=!1),"<"===e.operator||"<="===e.operator){if(E=f(l,e,n),E===e&&E!==l)return!1}else if("<="===l.operator&&!s(l.semver,String(e),n))return!1;if(!e.operator&&(l||o)&&0!==p)return!1}return!(o&&m&&!l&&0!==p||l&&_&&!o&&0!==p||y||g)},h=(e,t,n)=>{if(!e)return t;const r=a(e.semver,t.semver,n);return r>0?e:r<0||">"===t.operator&&">="===e.operator?t:e},f=(e,t,n)=>{if(!e)return t;const r=a(e.semver,t.semver,n);return r<0?e:r>0||"<"===t.operator&&"<="===e.operator?t:e};e.exports=(e,t,n={})=>{if(e===t)return!0;e=new r(e,n),t=new r(t,n);let o=!1;e:for(const r of e.set){for(const e of t.set){const t=l(r,e,n);if(o=o||null!==t,t)continue e}if(o)return!1}return!0}},59278:(e,t,n)=>{const r=n(15006);e.exports=(e,t)=>new r(e,t).set.map((e=>e.map((e=>e.value)).join(" ").trim().split(" ")))},96561:(e,t,n)=>{const r=n(15006);e.exports=(e,t)=>{try{return new r(e,t).range||"*"}catch(e){return null}}},37651:(e,t,n)=>{const r=n(40855),o=n(74977),i=n(47019),s=n(50652),a=n(46111),u=n(87914),c=n(58928),l=n(73639),h=n(79001),f=n(45931),p=n(67083),{KeyObject:d,createSecretKey:E,createPrivateKey:m}=n(76982),_=["RS256","RS384","RS512","ES256","ES384","ES512","HS256","HS384","HS512","none"];o&&_.splice(3,0,"PS256","PS384","PS512");const g={expiresIn:{isValid:function(e){return c(e)||f(e)&&e},message:'"expiresIn" should be a number of seconds or string representing a timespan'},notBefore:{isValid:function(e){return c(e)||f(e)&&e},message:'"notBefore" should be a number of seconds or string representing a timespan'},audience:{isValid:function(e){return f(e)||Array.isArray(e)},message:'"audience" must be a string or array'},algorithm:{isValid:a.bind(null,_),message:'"algorithm" must be a valid string enum value'},header:{isValid:h,message:'"header" must be an object'},encoding:{isValid:f,message:'"encoding" must be a string'},issuer:{isValid:f,message:'"issuer" must be a string'},subject:{isValid:f,message:'"subject" must be a string'},jwtid:{isValid:f,message:'"jwtid" must be a string'},noTimestamp:{isValid:u,message:'"noTimestamp" must be a boolean'},keyid:{isValid:f,message:'"keyid" must be a string'},mutatePayload:{isValid:u,message:'"mutatePayload" must be a boolean'},allowInsecureKeySizes:{isValid:u,message:'"allowInsecureKeySizes" must be a boolean'},allowInvalidAsymmetricKeyTypes:{isValid:u,message:'"allowInvalidAsymmetricKeyTypes" must be a boolean'}},y={iat:{isValid:l,message:'"iat" should be a number of seconds'},exp:{isValid:l,message:'"exp" should be a number of seconds'},nbf:{isValid:l,message:'"nbf" should be a number of seconds'}};function A(e,t,n,r){if(!h(n))throw new Error('Expected "'+r+'" to be a plain object.');Object.keys(n).forEach((function(o){const i=e[o];if(i){if(!i.isValid(n[o]))throw new Error(i.message)}else if(!t)throw new Error('"'+o+'" is not allowed in "'+r+'"')}))}const v={audience:"aud",issuer:"iss",subject:"sub",jwtid:"jti"},b=["expiresIn","notBefore","noTimestamp","audience","issuer","subject","jwtid"];e.exports=function(e,t,n,o){"function"==typeof n?(o=n,n={}):n=n||{};const a="object"==typeof e&&!Buffer.isBuffer(e),u=Object.assign({alg:n.algorithm||"HS256",typ:a?"JWT":void 0,kid:n.keyid},n.header);function c(e){if(o)return o(e);throw e}if(!t&&"none"!==n.algorithm)return c(new Error("secretOrPrivateKey must have a value"));if(null!=t&&!(t instanceof d))try{t=m(t)}catch(e){try{t=E("string"==typeof t?Buffer.from(t):t)}catch(e){return c(new Error("secretOrPrivateKey is not valid key material"))}}if(u.alg.startsWith("HS")&&"secret"!==t.type)return c(new Error(`secretOrPrivateKey must be a symmetric key when using ${u.alg}`));if(/^(?:RS|PS|ES)/.test(u.alg)){if("private"!==t.type)return c(new Error(`secretOrPrivateKey must be an asymmetric key when using ${u.alg}`));if(!n.allowInsecureKeySizes&&!u.alg.startsWith("ES")&&void 0!==t.asymmetricKeyDetails&&t.asymmetricKeyDetails.modulusLength<2048)return c(new Error(`secretOrPrivateKey has a minimum key size of 2048 bits for ${u.alg}`))}if(void 0===e)return c(new Error("payload is required"));if(a){try{!function(e){A(y,!0,e,"payload")}(e)}catch(e){return c(e)}n.mutatePayload||(e=Object.assign({},e))}else{const t=b.filter((function(e){return void 0!==n[e]}));if(t.length>0)return c(new Error("invalid "+t.join(",")+" option for "+typeof e+" payload"))}if(void 0!==e.exp&&void 0!==n.expiresIn)return c(new Error('Bad "options.expiresIn" option the payload already has an "exp" property.'));if(void 0!==e.nbf&&void 0!==n.notBefore)return c(new Error('Bad "options.notBefore" option the payload already has an "nbf" property.'));try{!function(e){A(g,!1,e,"options")}(n)}catch(e){return c(e)}if(!n.allowInvalidAsymmetricKeyTypes)try{i(u.alg,t)}catch(e){return c(e)}const l=e.iat||Math.floor(Date.now()/1e3);if(n.noTimestamp?delete e.iat:a&&(e.iat=l),void 0!==n.notBefore){try{e.nbf=r(n.notBefore,l)}catch(e){return c(e)}if(void 0===e.nbf)return c(new Error('"notBefore" should be a number of seconds or string representing a timespan eg: "1d", "20h", 60'))}if(void 0!==n.expiresIn&&"object"==typeof e){try{e.exp=r(n.expiresIn,l)}catch(e){return c(e)}if(void 0===e.exp)return c(new Error('"expiresIn" should be a number of seconds or string representing a timespan eg: "1d", "20h", 60'))}Object.keys(v).forEach((function(t){const r=v[t];if(void 0!==n[t]){if(void 0!==e[r])return c(new Error('Bad "options.'+t+'" option. The payload already has an "'+r+'" property.'));e[r]=n[t]}}));const h=n.encoding||"utf8";if("function"!=typeof o){let r=s.sign({header:u,payload:e,secret:t,encoding:h});if(!n.allowInsecureKeySizes&&/^(?:RS|PS)/.test(u.alg)&&r.length<256)throw new Error(`secretOrPrivateKey has a minimum key size of 2048 bits for ${u.alg}`);return r}o=o&&p(o),s.createSign({header:u,privateKey:t,payload:e,encoding:h}).once("error",o).once("done",(function(e){if(!n.allowInsecureKeySizes&&/^(?:RS|PS)/.test(u.alg)&&e.length<256)return o(new Error(`secretOrPrivateKey has a minimum key size of 2048 bits for ${u.alg}`));o(null,e)}))}},91691:(e,t,n)=>{const r=n(81741),o=n(13726),i=n(18980),s=n(37260),a=n(40855),u=n(47019),c=n(74977),l=n(50652),{KeyObject:h,createSecretKey:f,createPublicKey:p}=n(76982),d=["RS256","RS384","RS512"],E=["ES256","ES384","ES512"],m=["RS256","RS384","RS512"],_=["HS256","HS384","HS512"];c&&(d.splice(d.length,0,"PS256","PS384","PS512"),m.splice(m.length,0,"PS256","PS384","PS512")),e.exports=function(e,t,n,c){let g;if("function"!=typeof n||c||(c=n,n={}),n||(n={}),n=Object.assign({},n),g=c||function(e,t){if(e)throw e;return t},n.clockTimestamp&&"number"!=typeof n.clockTimestamp)return g(new r("clockTimestamp must be a number"));if(void 0!==n.nonce&&("string"!=typeof n.nonce||""===n.nonce.trim()))return g(new r("nonce must be a non-empty string"));if(void 0!==n.allowInvalidAsymmetricKeyTypes&&"boolean"!=typeof n.allowInvalidAsymmetricKeyTypes)return g(new r("allowInvalidAsymmetricKeyTypes must be a boolean"));const y=n.clockTimestamp||Math.floor(Date.now()/1e3);if(!e)return g(new r("jwt must be provided"));if("string"!=typeof e)return g(new r("jwt must be a string"));const A=e.split(".");if(3!==A.length)return g(new r("jwt malformed"));let v;try{v=s(e,{complete:!0})}catch(e){return g(e)}if(!v)return g(new r("invalid token"));const b=v.header;let T;if("function"==typeof t){if(!c)return g(new r("verify must be called asynchronous if secret or public key is provided as a callback"));T=t}else T=function(e,n){return n(null,t)};return T(b,(function(t,s){if(t)return g(new r("error in secret or public key callback: "+t.message));const c=""!==A[2].trim();if(!c&&s)return g(new r("jwt signature is required"));if(c&&!s)return g(new r("secret or public key must be provided"));if(!c&&!n.algorithms)return g(new r('please specify "none" in "algorithms" to verify unsigned tokens'));if(null!=s&&!(s instanceof h))try{s=p(s)}catch(e){try{s=f("string"==typeof s?Buffer.from(s):s)}catch(e){return g(new r("secretOrPublicKey is not valid key material"))}}if(n.algorithms||("secret"===s.type?n.algorithms=_:["rsa","rsa-pss"].includes(s.asymmetricKeyType)?n.algorithms=m:"ec"===s.asymmetricKeyType?n.algorithms=E:n.algorithms=d),-1===n.algorithms.indexOf(v.header.alg))return g(new r("invalid algorithm"));if(b.alg.startsWith("HS")&&"secret"!==s.type)return g(new r(`secretOrPublicKey must be a symmetric key when using ${b.alg}`));if(/^(?:RS|PS|ES)/.test(b.alg)&&"public"!==s.type)return g(new r(`secretOrPublicKey must be an asymmetric key when using ${b.alg}`));if(!n.allowInvalidAsymmetricKeyTypes)try{u(b.alg,s)}catch(e){return g(e)}let T;try{T=l.verify(e,v.header.alg,s)}catch(e){return g(e)}if(!T)return g(new r("invalid signature"));const w=v.payload;if(void 0!==w.nbf&&!n.ignoreNotBefore){if("number"!=typeof w.nbf)return g(new r("invalid nbf value"));if(w.nbf>y+(n.clockTolerance||0))return g(new o("jwt not active",new Date(1e3*w.nbf)))}if(void 0!==w.exp&&!n.ignoreExpiration){if("number"!=typeof w.exp)return g(new r("invalid exp value"));if(y>=w.exp+(n.clockTolerance||0))return g(new i("jwt expired",new Date(1e3*w.exp)))}if(n.audience){const e=Array.isArray(n.audience)?n.audience:[n.audience];if(!(Array.isArray(w.aud)?w.aud:[w.aud]).some((function(t){return e.some((function(e){return e instanceof RegExp?e.test(t):e===t}))})))return g(new r("jwt audience invalid. expected: "+e.join(" or ")))}if(n.issuer&&("string"==typeof n.issuer&&w.iss!==n.issuer||Array.isArray(n.issuer)&&-1===n.issuer.indexOf(w.iss)))return g(new r("jwt issuer invalid. expected: "+n.issuer));if(n.subject&&w.sub!==n.subject)return g(new r("jwt subject invalid. expected: "+n.subject));if(n.jwtid&&w.jti!==n.jwtid)return g(new r("jwt jwtid invalid. expected: "+n.jwtid));if(n.nonce&&w.nonce!==n.nonce)return g(new r("jwt nonce invalid. expected: "+n.nonce));if(n.maxAge){if("number"!=typeof w.iat)return g(new r("iat required when maxAge is specified"));const e=a(n.maxAge,w.iat);if(void 0===e)return g(new r('"maxAge" should be a number of seconds or string representing a timespan eg: "1d", "20h", 60'));if(y>=e+(n.clockTolerance||0))return g(new i("maxAge exceeded",new Date(1e3*e)))}if(!0===n.complete){const e=v.signature;return g(null,{header:b,payload:w,signature:e})}return g(null,w)}))}},46111:e=>{var t=1/0,n=9007199254740991,r="[object Function]",o="[object GeneratorFunction]",i=/^\s+|\s+$/g,s=/^[-+]0x[0-9a-f]+$/i,a=/^0b[01]+$/i,u=/^0o[0-7]+$/i,c=/^(?:0|[1-9]\d*)$/,l=parseInt;function h(e){return e!=e}var f,p,d=Object.prototype,E=d.hasOwnProperty,m=d.toString,_=d.propertyIsEnumerable,g=(f=Object.keys,p=Object,function(e){return f(p(e))}),y=Math.max;function A(e,t){return!!(t=null==t?n:t)&&("number"==typeof e||c.test(e))&&e>-1&&e%1==0&&e-1&&e%1==0&&e<=n}(e.length)&&!function(e){var t=T(e)?m.call(e):"";return t==r||t==o}(e)}function T(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function w(e){return!!e&&"object"==typeof e}e.exports=function(e,n,r,o){var c;e=b(e)?e:(c=e)?function(e,t){return function(t,n){for(var r=-1,o=t?t.length:0,i=Array(o);++r-1:!!f&&function(e,t,n){if(t!=t)return function(e,t,n,r){for(var o=e.length,i=n+-1;++i-1}},87914:e=>{var t=Object.prototype.toString;e.exports=function(e){return!0===e||!1===e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Boolean]"==t.call(e)}},58928:e=>{var t=1/0,n=/^\s+|\s+$/g,r=/^[-+]0x[0-9a-f]+$/i,o=/^0b[01]+$/i,i=/^0o[0-7]+$/i,s=parseInt,a=Object.prototype.toString;function u(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}e.exports=function(e){return"number"==typeof e&&e==function(e){var c=function(e){return e?(e=function(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==a.call(e)}(e))return NaN;if(u(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=u(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(n,"");var c=o.test(e);return c||i.test(e)?s(e.slice(2),c?2:8):r.test(e)?NaN:+e}(e))===t||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}(e),l=c%1;return c==c?l?c-l:c:0}(e)}},73639:e=>{var t=Object.prototype.toString;e.exports=function(e){return"number"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Number]"==t.call(e)}},79001:e=>{var t,n,r=Function.prototype,o=Object.prototype,i=r.toString,s=o.hasOwnProperty,a=i.call(Object),u=o.toString,c=(t=Object.getPrototypeOf,n=Object,function(e){return t(n(e))});e.exports=function(e){if(!function(e){return!!e&&"object"==typeof e}(e)||"[object Object]"!=u.call(e)||function(e){var t=!1;if(null!=e&&"function"!=typeof e.toString)try{t=!!(e+"")}catch(e){}return t}(e))return!1;var t=c(e);if(null===t)return!0;var n=s.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&i.call(n)==a}},45931:e=>{var t=Object.prototype.toString,n=Array.isArray;e.exports=function(e){return"string"==typeof e||!n(e)&&function(e){return!!e&&"object"==typeof e}(e)&&"[object String]"==t.call(e)}},67083:e=>{var t=1/0,n=/^\s+|\s+$/g,r=/^[-+]0x[0-9a-f]+$/i,o=/^0b[01]+$/i,i=/^0o[0-7]+$/i,s=parseInt,a=Object.prototype.toString;function u(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}e.exports=function(e){return function(e,c){var l;if("function"!=typeof c)throw new TypeError("Expected a function");return e=function(e){var c=function(e){return e?(e=function(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==a.call(e)}(e))return NaN;if(u(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=u(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(n,"");var c=o.test(e);return c||i.test(e)?s(e.slice(2),c?2:8):r.test(e)?NaN:+e}(e))===t||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}(e),l=c%1;return c==c?l?c-l:c:0}(e),function(){return--e>0&&(l=c.apply(this,arguments)),e<=1&&(c=void 0),l}}(2,e)}},44832:e=>{function t(e,r){if(!(this instanceof t))return new t(e,r);this.length=0,this.updates=[],this.path=new Uint16Array(4),this.pages=new Array(32768),this.maxPages=this.pages.length,this.level=0,this.pageSize=e||1024,this.deduplicate=r?r.deduplicate:null,this.zeros=this.deduplicate?n(this.deduplicate.length):null}function n(e){if(Buffer.alloc)return Buffer.alloc(e);var t=new Buffer(e);return t.fill(0),t}function r(e,t){this.offset=e*t.length,this.buffer=t,this.updated=!1,this.deduplicate=0}e.exports=t,t.prototype.updated=function(e){for(;this.deduplicate&&e.buffer[e.deduplicate]===this.deduplicate[e.deduplicate];)if(e.deduplicate++,e.deduplicate===this.deduplicate.length){e.deduplicate=0,e.buffer.equals&&e.buffer.equals(this.deduplicate)&&(e.buffer=this.deduplicate);break}!e.updated&&this.updates&&(e.updated=!0,this.updates.push(e))},t.prototype.lastUpdate=function(){if(!this.updates||!this.updates.length)return null;var e=this.updates.pop();return e.updated=!1,e},t.prototype._array=function(e,t){if(e>=this.maxPages){if(t)return;!function(e,t){for(;e.maxPages0;i--){var s=this.path[i],a=o[s];if(!a){if(t)return;a=o[s]=new Array(32768)}o=a}return o},t.prototype.get=function(e,t){var o,i,s=this._array(e,t),a=this.path[0],u=s&&s[a];return u||t||(u=s[a]=new r(e,n(this.pageSize)),e>=this.length&&(this.length=e+1)),u&&u.buffer===this.deduplicate&&this.deduplicate&&!t&&(u.buffer=(o=u.buffer,i=Buffer.allocUnsafe?Buffer.allocUnsafe(o.length):new Buffer(o.length),o.copy(i),i),u.deduplicate=0),u},t.prototype.set=function(e,t){var o=this._array(e,!1),i=this.path[0];if(e>=this.length&&(this.length=e+1),!t||this.zeros&&t.equals&&t.equals(this.zeros))o[i]=void 0;else{this.deduplicate&&t.equals&&t.equals(this.deduplicate)&&(t=this.deduplicate);var s=o[i],a=function(e,t){if(e.length===t)return e;if(e.length>t)return e.slice(0,t);var r=n(t);return e.copy(r),r}(t,this.pageSize);s?s.buffer=a:o[i]=new r(e,a)}},t.prototype.toBuffer=function(){for(var e=new Array(this.length),t=n(this.pageSize),r=0;r{e.exports=n(81813)},86049:(e,t,n)=>{"use strict";var r,o,i,s=n(7598),a=n(16928).extname,u=/^\s*([^;\s]*)(?:;|\s|$)/,c=/^text\//i;function l(e){if(!e||"string"!=typeof e)return!1;var t=u.exec(e),n=t&&s[t[1].toLowerCase()];return n&&n.charset?n.charset:!(!t||!c.test(t[1]))&&"UTF-8"}t.charset=l,t.charsets={lookup:l},t.contentType=function(e){if(!e||"string"!=typeof e)return!1;var n=-1===e.indexOf("/")?t.lookup(e):e;if(!n)return!1;if(-1===n.indexOf("charset")){var r=t.charset(n);r&&(n+="; charset="+r.toLowerCase())}return n},t.extension=function(e){if(!e||"string"!=typeof e)return!1;var n=u.exec(e),r=n&&t.extensions[n[1].toLowerCase()];return!(!r||!r.length)&&r[0]},t.extensions=Object.create(null),t.lookup=function(e){if(!e||"string"!=typeof e)return!1;var n=a("x."+e).toLowerCase().substr(1);return n&&t.types[n]||!1},t.types=Object.create(null),r=t.extensions,o=t.types,i=["nginx","apache",void 0,"iana"],Object.keys(s).forEach((function(e){var t=s[e],n=t.extensions;if(n&&n.length){r[e]=n;for(var a=0;al||c===l&&"application/"===o[u].substr(0,12)))continue}o[u]=e}}}))},93858:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CommaAndColonSeparatedRecord=t.ConnectionString=t.redactConnectionString=void 0;const r=n(75833),o=n(17025);Object.defineProperty(t,"redactConnectionString",{enumerable:!0,get:function(){return o.redactConnectionString}});const i="__this_is_a_placeholder__",s=/^(?[^/]+):\/\/(?:(?[^:@]*)(?::(?[^@]*))?@)?(?(?!:)[^/?@]*)(?.*)/;class a extends Map{delete(e){return super.delete(this._normalizeKey(e))}get(e){return super.get(this._normalizeKey(e))}has(e){return super.has(this._normalizeKey(e))}set(e,t){return super.set(this._normalizeKey(e),t)}_normalizeKey(e){e=`${e}`;for(const t of this.keys())if(t.toLowerCase()===e.toLowerCase()){e=t;break}return e}}class u extends r.URL{}class c extends Error{get name(){return"MongoParseError"}}class l extends u{constructor(e,t={}){var n;const{looseValidation:r}=t;if(!r&&!(o=e).startsWith("mongodb://")&&!o.startsWith("mongodb+srv://"))throw new c('Invalid scheme, expected connection string to start with "mongodb://" or "mongodb+srv://"');var o;const u=e.match(s);if(!u)throw new c(`Invalid connection string "${e}"`);const{protocol:h,username:f,password:p,hosts:d,rest:E}=null!==(n=u.groups)&&void 0!==n?n:{};if(!r){if(!h||!d)throw new c(`Protocol and host list are required in "${e}"`);try{decodeURIComponent(null!=f?f:""),decodeURIComponent(null!=p?p:"")}catch(e){throw new c(e.message)}const t=/[:/?#[\]@]/gi;if(null==f?void 0:f.match(t))throw new c(`Username contains unescaped characters ${f}`);if(!f||!p){const t=e.replace(`${h}://`,"");if(t.startsWith("@")||t.startsWith(":"))throw new c("URI contained empty userinfo section")}if(null==p?void 0:p.match(t))throw new c("Password contains unescaped characters")}let m="";"string"==typeof f&&(m+=f),"string"==typeof p&&(m+=`:${p}`),m&&(m+="@");try{super(`${h.toLowerCase()}://${m}${i}${E}`)}catch(n){throw r&&new l(e,{...t,looseValidation:!1}),"string"==typeof n.message&&(n.message=n.message.replace(i,d)),n}if(this._hosts=d.split(","),!r){if(this.isSRV&&1!==this.hosts.length)throw new c("mongodb+srv URI cannot have multiple service names");if(this.isSRV&&this.hosts.some((e=>e.includes(":"))))throw new c("mongodb+srv URI cannot have port number")}var _;this.pathname||(this.pathname="/"),Object.setPrototypeOf(this.searchParams,(_=this.searchParams.constructor,class extends _{append(e,t){return super.append(this._normalizeKey(e),t)}delete(e){return super.delete(this._normalizeKey(e))}get(e){return super.get(this._normalizeKey(e))}getAll(e){return super.getAll(this._normalizeKey(e))}has(e){return super.has(this._normalizeKey(e))}set(e,t){return super.set(this._normalizeKey(e),t)}keys(){return super.keys()}values(){return super.values()}entries(){return super.entries()}[Symbol.iterator](){return super[Symbol.iterator]()}_normalizeKey(e){return a.prototype._normalizeKey.call(this,e)}}).prototype)}get host(){return i}set host(e){throw new Error("No single host for connection string")}get hostname(){return i}set hostname(e){throw new Error("No single host for connection string")}get port(){return""}set port(e){throw new Error("No single host for connection string")}get href(){return this.toString()}set href(e){throw new Error("Cannot set href for connection strings")}get isSRV(){return this.protocol.includes("srv")}get hosts(){return this._hosts}set hosts(e){this._hosts=e}toString(){return super.toString().replace(i,this.hosts.join(","))}clone(){return new l(this.toString(),{looseValidation:!0})}redact(e){return(0,o.redactValidConnectionString)(this,e)}typedSearchParams(){return this.searchParams}[Symbol.for("nodejs.util.inspect.custom")](){const{href:e,origin:t,protocol:n,username:r,password:o,hosts:i,pathname:s,search:a,searchParams:u,hash:c}=this;return{href:e,origin:t,protocol:n,username:r,password:o,hosts:i,pathname:s,search:a,searchParams:u,hash:c}}}t.ConnectionString=l,t.CommaAndColonSeparatedRecord=class extends a{constructor(e){super();for(const t of(null!=e?e:"").split(",")){if(!t)continue;const e=t.indexOf(":");-1===e?this.set(t,""):this.set(t.slice(0,e),t.slice(e+1))}}toString(){return[...this].map((e=>e.join(":"))).join(",")}},t.default=l},17025:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return o(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.redactConnectionString=t.redactValidConnectionString=void 0;const s=i(n(93858));t.redactValidConnectionString=function(e,t){var n,r;const o=e.clone(),i=null!==(n=null==t?void 0:t.replacementString)&&void 0!==n?n:"_credentials_",a=null===(r=null==t?void 0:t.redactUsernames)||void 0===r||r;if((o.username||o.password)&&a?(o.username=i,o.password=""):o.password&&(o.password=i),o.searchParams.has("authMechanismProperties")){const e=new s.CommaAndColonSeparatedRecord(o.searchParams.get("authMechanismProperties"));e.get("AWS_SESSION_TOKEN")&&(e.set("AWS_SESSION_TOKEN",i),o.searchParams.set("authMechanismProperties",e.toString()))}return o.searchParams.has("tlsCertificateKeyFilePassword")&&o.searchParams.set("tlsCertificateKeyFilePassword",i),o.searchParams.has("proxyUsername")&&a&&o.searchParams.set("proxyUsername",i),o.searchParams.has("proxyPassword")&&o.searchParams.set("proxyPassword",i),o},t.redactConnectionString=function(e,t){var n,r;const o=null!==(n=null==t?void 0:t.replacementString)&&void 0!==n?n:"",i=null===(r=null==t?void 0:t.redactUsernames)||void 0===r||r;let a;try{a=new s.default(e)}catch(e){}if(a)return t={...t,replacementString:"___credentials___"},a.redact(t).toString().replace(/___credentials___/g,o);const u=o,c=[e=>e.replace(i?/(\/\/)(.*)(@)/g:/(\/\/[^@]*:)(.*)(@)/g,`$1${u}$3`),e=>e.replace(/(AWS_SESSION_TOKEN(:|%3A))([^,&]+)/gi,`$1${u}`),e=>e.replace(/(tlsCertificateKeyFilePassword=)([^&]+)/gi,`$1${u}`),e=>i?e.replace(/(proxyUsername=)([^&]+)/gi,`$1${u}`):e,e=>e.replace(/(proxyPassword=)([^&]+)/gi,`$1${u}`)];for(const t of c)e=t(e);return e}},47306:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Admin=void 0;const r=n(63403),o=n(86437),i=n(13463),s=n(67862),a=n(37639),u=n(35571);t.Admin=class{constructor(e){this.s={db:e}}async command(e,t){return await(0,o.executeOperation)(this.s.db.client,new a.RunAdminCommandOperation(e,{...(0,r.resolveBSONOptions)(t),session:t?.session,readPreference:t?.readPreference}))}async buildInfo(e){return await this.command({buildinfo:1},e)}async serverInfo(e){return await this.command({buildinfo:1},e)}async serverStatus(e){return await this.command({serverStatus:1},e)}async ping(e){return await this.command({ping:1},e)}async removeUser(e,t){return await(0,o.executeOperation)(this.s.db.client,new s.RemoveUserOperation(this.s.db,e,{dbName:"admin",...t}))}async validateCollection(e,t={}){return await(0,o.executeOperation)(this.s.db.client,new u.ValidateCollectionOperation(this,e,t))}async listDatabases(e){return await(0,o.executeOperation)(this.s.db.client,new i.ListDatabasesOperation(this.s.db,e))}async replSetGetStatus(e){return await this.command({replSetGetStatus:1},e)}}},63403:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.resolveBSONOptions=t.pluckBSONSerializeOptions=t.toUTF8=t.getBigInt64LE=t.getFloat64LE=t.getInt32LE=t.parseToElementsToArray=t.UUID=t.Timestamp=t.serialize=t.ObjectId=t.MinKey=t.MaxKey=t.Long=t.Int32=t.EJSON=t.Double=t.deserialize=t.Decimal128=t.DBRef=t.Code=t.calculateObjectSize=t.BSONType=t.BSONSymbol=t.BSONRegExp=t.BSONError=t.BSON=t.Binary=void 0;const r=n(83633);var o=n(83633);Object.defineProperty(t,"Binary",{enumerable:!0,get:function(){return o.Binary}}),Object.defineProperty(t,"BSON",{enumerable:!0,get:function(){return o.BSON}}),Object.defineProperty(t,"BSONError",{enumerable:!0,get:function(){return o.BSONError}}),Object.defineProperty(t,"BSONRegExp",{enumerable:!0,get:function(){return o.BSONRegExp}}),Object.defineProperty(t,"BSONSymbol",{enumerable:!0,get:function(){return o.BSONSymbol}}),Object.defineProperty(t,"BSONType",{enumerable:!0,get:function(){return o.BSONType}}),Object.defineProperty(t,"calculateObjectSize",{enumerable:!0,get:function(){return o.calculateObjectSize}}),Object.defineProperty(t,"Code",{enumerable:!0,get:function(){return o.Code}}),Object.defineProperty(t,"DBRef",{enumerable:!0,get:function(){return o.DBRef}}),Object.defineProperty(t,"Decimal128",{enumerable:!0,get:function(){return o.Decimal128}}),Object.defineProperty(t,"deserialize",{enumerable:!0,get:function(){return o.deserialize}}),Object.defineProperty(t,"Double",{enumerable:!0,get:function(){return o.Double}}),Object.defineProperty(t,"EJSON",{enumerable:!0,get:function(){return o.EJSON}}),Object.defineProperty(t,"Int32",{enumerable:!0,get:function(){return o.Int32}}),Object.defineProperty(t,"Long",{enumerable:!0,get:function(){return o.Long}}),Object.defineProperty(t,"MaxKey",{enumerable:!0,get:function(){return o.MaxKey}}),Object.defineProperty(t,"MinKey",{enumerable:!0,get:function(){return o.MinKey}}),Object.defineProperty(t,"ObjectId",{enumerable:!0,get:function(){return o.ObjectId}}),Object.defineProperty(t,"serialize",{enumerable:!0,get:function(){return o.serialize}}),Object.defineProperty(t,"Timestamp",{enumerable:!0,get:function(){return o.Timestamp}}),Object.defineProperty(t,"UUID",{enumerable:!0,get:function(){return o.UUID}}),t.parseToElementsToArray=function(e,t){const n=r.BSON.onDemand.parseToElements(e,t);return Array.isArray(n)?n:[...n]},t.getInt32LE=r.BSON.onDemand.NumberUtils.getInt32LE,t.getFloat64LE=r.BSON.onDemand.NumberUtils.getFloat64LE,t.getBigInt64LE=r.BSON.onDemand.NumberUtils.getBigInt64LE,t.toUTF8=r.BSON.onDemand.ByteUtils.toUTF8,t.pluckBSONSerializeOptions=function(e){const{fieldsAsRaw:t,useBigInt64:n,promoteValues:r,promoteBuffers:o,promoteLongs:i,serializeFunctions:s,ignoreUndefined:a,bsonRegExp:u,raw:c,enableUtf8Validation:l}=e;return{fieldsAsRaw:t,useBigInt64:n,promoteValues:r,promoteBuffers:o,promoteLongs:i,serializeFunctions:s,ignoreUndefined:a,bsonRegExp:u,raw:c,enableUtf8Validation:l}},t.resolveBSONOptions=function(e,t){const n=t?.bsonOptions;return{raw:e?.raw??n?.raw??!1,useBigInt64:e?.useBigInt64??n?.useBigInt64??!1,promoteLongs:e?.promoteLongs??n?.promoteLongs??!0,promoteValues:e?.promoteValues??n?.promoteValues??!0,promoteBuffers:e?.promoteBuffers??n?.promoteBuffers??!1,ignoreUndefined:e?.ignoreUndefined??n?.ignoreUndefined??!1,bsonRegExp:e?.bsonRegExp??n?.bsonRegExp??!1,serializeFunctions:e?.serializeFunctions??n?.serializeFunctions??!1,fieldsAsRaw:e?.fieldsAsRaw??n?.fieldsAsRaw??{},enableUtf8Validation:e?.enableUtf8Validation??n?.enableUtf8Validation??!0}}},53717:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BulkOperationBase=t.BulkWriteShimOperation=t.FindOperators=t.MongoBulkWriteError=t.mergeBatchResults=t.WriteError=t.WriteConcernError=t.BulkWriteResult=t.Batch=t.BatchType=void 0;const r=n(39023),o=n(63403),i=n(86947),s=n(20321),a=n(86437),u=n(42011),c=n(66181),l=n(48703),h=n(52060),f=n(52060),p=n(98349),d=Symbol("serverError");t.BatchType=Object.freeze({INSERT:1,UPDATE:2,DELETE:3}),t.Batch=class{constructor(e,t){this.originalZeroIndex=t,this.currentIndex=0,this.originalIndexes=[],this.batchType=e,this.operations=[],this.size=0,this.sizeBytes=0}};class E{static generateIdMap(e){const t={};for(const n of e)t[n.index]=n._id;return t}constructor(e,t){this.result=e,this.insertedCount=this.result.nInserted??0,this.matchedCount=this.result.nMatched??0,this.modifiedCount=this.result.nModified??0,this.deletedCount=this.result.nRemoved??0,this.upsertedCount=this.result.upserted.length??0,this.upsertedIds=E.generateIdMap(this.result.upserted),this.insertedIds=E.generateIdMap(this.getSuccessfullyInsertedIds(e,t)),Object.defineProperty(this,"result",{value:this.result,enumerable:!1})}get ok(){return this.result.ok}getSuccessfullyInsertedIds(e,t){return 0===e.writeErrors.length?e.insertedIds:t?e.insertedIds.slice(0,e.writeErrors[0].index):e.insertedIds.filter((({index:t})=>!e.writeErrors.some((e=>t===e.index))))}getUpsertedIdAt(e){return this.result.upserted[e]}getRawResponse(){return this.result}hasWriteErrors(){return this.result.writeErrors.length>0}getWriteErrorCount(){return this.result.writeErrors.length}getWriteErrorAt(e){return ee.multi))),R(o)&&(h.retryWrites=h.retryWrites&&!o.operations.some((e=>0===e.limit))));try{const e=w(o)?new u.InsertOperation(t.s.namespace,o.operations,h):O(o)?new l.UpdateOperation(t.s.namespace,o.operations,h):R(o)?new s.DeleteOperation(t.s.namespace,o.operations,h):null;null!=e&&(0,a.executeOperation)(t.s.collection.client,e).then((e=>c(void 0,e)),(e=>c(e)))}catch(e){e.ok=0,g(o,t.s.bulkResult,e,void 0),r()}}));class b extends c.AbstractOperation{constructor(e,t){super(t),this.bulkOperation=e}get commandName(){return"bulkWrite"}execute(e,t){return null==this.options.session&&(this.options.session=t),v(this.bulkOperation,this.options)}}t.BulkWriteShimOperation=b;class T{constructor(e,t,n){this.collection=e,this.isOrdered=n;const r=(0,f.getTopology)(e);t=null==t?{}:t;const i=e.s.namespace,s=r.lastHello(),a=!(!r.s.options||!r.s.options.autoEncrypter),u=s&&s.maxBsonObjectSize?s.maxBsonObjectSize:16777216,c=a?2097152:u,l=s&&s.maxWriteBatchSize?s.maxWriteBatchSize:1e3,h=(l-1).toString(10).length+2;let d=Object.assign({},t);d=(0,f.applyRetryableWrites)(d,e.s.db),this.s={bulkResult:{ok:1,writeErrors:[],writeConcernErrors:[],insertedIds:[],nInserted:0,nUpserted:0,nMatched:0,nModified:0,nRemoved:0,upserted:[]},currentBatch:void 0,currentIndex:0,currentBatchSize:0,currentBatchSizeBytes:0,currentInsertBatch:void 0,currentUpdateBatch:void 0,currentRemoveBatch:void 0,batches:[],writeConcern:p.WriteConcern.fromOptions(t),maxBsonObjectSize:u,maxBatchSizeBytes:c,maxWriteBatchSize:l,maxKeySize:h,namespace:i,topology:r,options:d,bsonOptions:(0,o.resolveBSONOptions)(t),currentOp:void 0,executed:!1,collection:e,err:void 0,checkKeys:"boolean"==typeof t.checkKeys&&t.checkKeys},!0===t.bypassDocumentValidation&&(this.s.bypassDocumentValidation=!0)}insert(e){return(0,h.maybeAddIdToDocuments)(this.collection,e,{forceServerObjectId:this.shouldForceServerObjectId()}),this.addToOperationsList(t.BatchType.INSERT,e)}find(e){if(!e)throw new i.MongoInvalidArgumentError("Bulk find operation must specify a selector");return this.s.currentOp={selector:e},new A(this)}raw(e){if(null==e||"object"!=typeof e)throw new i.MongoInvalidArgumentError("Operation must be an object with an operation key");if("insertOne"in e){const n=this.shouldForceServerObjectId(),r=e.insertOne&&null==e.insertOne.document?e.insertOne:e.insertOne.document;return(0,h.maybeAddIdToDocuments)(this.collection,r,{forceServerObjectId:n}),this.addToOperationsList(t.BatchType.INSERT,r)}if("replaceOne"in e||"updateOne"in e||"updateMany"in e){if("replaceOne"in e){if("q"in e.replaceOne)throw new i.MongoInvalidArgumentError("Raw operations are not allowed");const n=(0,l.makeUpdateStatement)(e.replaceOne.filter,e.replaceOne.replacement,{...e.replaceOne,multi:!1});if((0,f.hasAtomicOperators)(n.u))throw new i.MongoInvalidArgumentError("Replacement document must not use atomic operators");return this.addToOperationsList(t.BatchType.UPDATE,n)}if("updateOne"in e){if("q"in e.updateOne)throw new i.MongoInvalidArgumentError("Raw operations are not allowed");const n=(0,l.makeUpdateStatement)(e.updateOne.filter,e.updateOne.update,{...e.updateOne,multi:!1});if(!(0,f.hasAtomicOperators)(n.u))throw new i.MongoInvalidArgumentError("Update document requires atomic operators");return this.addToOperationsList(t.BatchType.UPDATE,n)}if("updateMany"in e){if("q"in e.updateMany)throw new i.MongoInvalidArgumentError("Raw operations are not allowed");const n=(0,l.makeUpdateStatement)(e.updateMany.filter,e.updateMany.update,{...e.updateMany,multi:!0});if(!(0,f.hasAtomicOperators)(n.u))throw new i.MongoInvalidArgumentError("Update document requires atomic operators");return this.addToOperationsList(t.BatchType.UPDATE,n)}}if("deleteOne"in e){if("q"in e.deleteOne)throw new i.MongoInvalidArgumentError("Raw operations are not allowed");return this.addToOperationsList(t.BatchType.DELETE,(0,s.makeDeleteStatement)(e.deleteOne.filter,{...e.deleteOne,limit:1}))}if("deleteMany"in e){if("q"in e.deleteMany)throw new i.MongoInvalidArgumentError("Raw operations are not allowed");return this.addToOperationsList(t.BatchType.DELETE,(0,s.makeDeleteStatement)(e.deleteMany.filter,{...e.deleteMany,limit:0}))}throw new i.MongoInvalidArgumentError("bulkWrite only supports insertOne, updateOne, updateMany, deleteOne, deleteMany")}get bsonOptions(){return this.s.bsonOptions}get writeConcern(){return this.s.writeConcern}get batches(){const e=[...this.s.batches];return this.isOrdered?this.s.currentBatch&&e.push(this.s.currentBatch):(this.s.currentInsertBatch&&e.push(this.s.currentInsertBatch),this.s.currentUpdateBatch&&e.push(this.s.currentUpdateBatch),this.s.currentRemoveBatch&&e.push(this.s.currentRemoveBatch)),e}async execute(e={}){if(this.s.executed)throw new i.MongoBatchReExecutionError;const t=p.WriteConcern.fromOptions(e);if(t&&(this.s.writeConcern=t),this.isOrdered?this.s.currentBatch&&this.s.batches.push(this.s.currentBatch):(this.s.currentInsertBatch&&this.s.batches.push(this.s.currentInsertBatch),this.s.currentUpdateBatch&&this.s.batches.push(this.s.currentUpdateBatch),this.s.currentRemoveBatch&&this.s.batches.push(this.s.currentRemoveBatch)),0===this.s.batches.length)throw new i.MongoInvalidArgumentError("Invalid BulkOperation, Batch cannot be empty");this.s.executed=!0;const n={...this.s.options,...e},r=new b(this,n);return await(0,a.executeOperation)(this.s.collection.client,r)}handleWriteError(e,t){if(this.s.bulkResult.writeErrors.length>0){const n=this.s.bulkResult.writeErrors[0].errmsg?this.s.bulkResult.writeErrors[0].errmsg:"write operation failed";return e(new y({message:n,code:this.s.bulkResult.writeErrors[0].code,writeErrors:this.s.bulkResult.writeErrors},t)),!0}const n=t.getWriteConcernError();return!!n&&(e(new y(n,t)),!0)}shouldForceServerObjectId(){return!0===this.s.options.forceServerObjectId||!0===this.s.collection.s.db.options?.forceServerObjectId}}function w(e){return e.batchType===t.BatchType.INSERT}function O(e){return e.batchType===t.BatchType.UPDATE}function R(e){return e.batchType===t.BatchType.DELETE}function S(e){let{currentOp:t}=e.s;return e.s.currentOp=void 0,t||(t={}),t}t.BulkOperationBase=T,Object.defineProperty(T.prototype,"length",{enumerable:!0,get(){return this.s.currentIndex}})},42795:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.OrderedBulkOperation=void 0;const r=n(63403),o=n(86947),i=n(53717);class s extends i.BulkOperationBase{constructor(e,t){super(e,t,!0)}addToOperationsList(e,t){const n=r.calculateObjectSize(t,{checkKeys:!1,ignoreUndefined:!1});if(n>=this.s.maxBsonObjectSize)throw new o.MongoInvalidArgumentError(`Document is larger than the maximum size ${this.s.maxBsonObjectSize}`);null==this.s.currentBatch&&(this.s.currentBatch=new i.Batch(e,this.s.currentIndex));const s=this.s.maxKeySize;if((this.s.currentBatchSize+1>=this.s.maxWriteBatchSize||this.s.currentBatchSize>0&&this.s.currentBatchSizeBytes+s+n>=this.s.maxBatchSizeBytes||this.s.currentBatch.batchType!==e)&&(this.s.batches.push(this.s.currentBatch),this.s.currentBatch=new i.Batch(e,this.s.currentIndex),this.s.currentBatchSize=0,this.s.currentBatchSizeBytes=0),e===i.BatchType.INSERT&&this.s.bulkResult.insertedIds.push({index:this.s.currentIndex,_id:t._id}),Array.isArray(t))throw new o.MongoInvalidArgumentError("Operation passed in cannot be an Array");return this.s.currentBatch.originalIndexes.push(this.s.currentIndex),this.s.currentBatch.operations.push(t),this.s.currentBatchSize+=1,this.s.currentBatchSizeBytes+=s+n,this.s.currentIndex+=1,this}}t.OrderedBulkOperation=s},5702:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UnorderedBulkOperation=void 0;const r=n(63403),o=n(86947),i=n(53717);class s extends i.BulkOperationBase{constructor(e,t){super(e,t,!1)}handleWriteError(e,t){return!this.s.batches.length&&super.handleWriteError(e,t)}addToOperationsList(e,t){const n=r.calculateObjectSize(t,{checkKeys:!1,ignoreUndefined:!1});if(n>=this.s.maxBsonObjectSize)throw new o.MongoInvalidArgumentError(`Document is larger than the maximum size ${this.s.maxBsonObjectSize}`);this.s.currentBatch=void 0,e===i.BatchType.INSERT?this.s.currentBatch=this.s.currentInsertBatch:e===i.BatchType.UPDATE?this.s.currentBatch=this.s.currentUpdateBatch:e===i.BatchType.DELETE&&(this.s.currentBatch=this.s.currentRemoveBatch);const s=this.s.maxKeySize;if(null==this.s.currentBatch&&(this.s.currentBatch=new i.Batch(e,this.s.currentIndex)),(this.s.currentBatch.size+1>=this.s.maxWriteBatchSize||this.s.currentBatch.size>0&&this.s.currentBatch.sizeBytes+s+n>=this.s.maxBatchSizeBytes||this.s.currentBatch.batchType!==e)&&(this.s.batches.push(this.s.currentBatch),this.s.currentBatch=new i.Batch(e,this.s.currentIndex)),Array.isArray(t))throw new o.MongoInvalidArgumentError("Operation passed in cannot be an Array");return this.s.currentBatch.operations.push(t),this.s.currentBatch.originalIndexes.push(this.s.currentIndex),this.s.currentIndex=this.s.currentIndex+1,e===i.BatchType.INSERT?(this.s.currentInsertBatch=this.s.currentBatch,this.s.bulkResult.insertedIds.push({index:this.s.bulkResult.insertedIds.length,_id:t._id})):e===i.BatchType.UPDATE?this.s.currentUpdateBatch=this.s.currentBatch:e===i.BatchType.DELETE&&(this.s.currentRemoveBatch=this.s.currentBatch),this.s.currentBatch.size+=1,this.s.currentBatch.sizeBytes+=s+n,this}}t.UnorderedBulkOperation=s},9272:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ChangeStream=void 0;const r=n(36653),o=n(32568),i=n(22250),s=n(90263),a=n(86947),u=n(13139),c=n(96327),l=n(52060),h=Symbol("cursorStream"),f=Symbol("closed"),p=Symbol("mode"),d=["resumeAfter","startAfter","startAtOperationTime","fullDocument","fullDocumentBeforeChange","showExpandedEvents"],E={COLLECTION:Symbol("Collection"),DATABASE:Symbol("Database"),CLUSTER:Symbol("Cluster")},m=[o.RESUME_TOKEN_CHANGED,o.END,o.CLOSE],_="ChangeStream is closed";class g extends c.TypedEventEmitter{constructor(e,t=[],n={}){if(super(),this.pipeline=t,this.options={...n},delete this.options.writeConcern,e instanceof r.Collection)this.type=E.COLLECTION;else if(e instanceof s.Db)this.type=E.DATABASE;else{if(!(e instanceof u.MongoClient))throw new a.MongoChangeStreamError("Parent provided to ChangeStream constructor must be an instance of Collection, Db, or MongoClient");this.type=E.CLUSTER}this.parent=e,this.namespace=e.s.namespace,!this.options.readPreference&&e.readPreference&&(this.options.readPreference=e.readPreference),this.cursor=this._createChangeStreamCursor(n),this[f]=!1,this[p]=!1,this.on("newListener",(e=>{"change"===e&&this.cursor&&0===this.listenerCount("change")&&this._streamEvents(this.cursor)})),this.on("removeListener",(e=>{"change"===e&&0===this.listenerCount("change")&&this.cursor&&this[h]?.removeAllListeners("data")}))}get cursorStream(){return this[h]}get resumeToken(){return this.cursor?.resumeToken}async hasNext(){for(this._setIsIterator();;)try{return await this.cursor.hasNext()}catch(e){try{await this._processErrorIteratorMode(e)}catch(e){try{await this.close()}catch(e){(0,l.squashError)(e)}throw e}}}async next(){for(this._setIsIterator();;)try{const e=await this.cursor.next();return this._processChange(e??null)}catch(e){try{await this._processErrorIteratorMode(e)}catch(e){try{await this.close()}catch(e){(0,l.squashError)(e)}throw e}}}async tryNext(){for(this._setIsIterator();;)try{return await this.cursor.tryNext()??null}catch(e){try{await this._processErrorIteratorMode(e)}catch(e){try{await this.close()}catch(e){(0,l.squashError)(e)}throw e}}}async*[Symbol.asyncIterator](){if(!this.closed)try{for(;;)yield await this.next()}finally{try{await this.close()}catch(e){(0,l.squashError)(e)}}}get closed(){return this[f]||this.cursor.closed}async close(){this[f]=!0;const e=this.cursor;try{await e.close()}finally{this._endStream()}}stream(e){if(this.closed)throw new a.MongoChangeStreamError(_);return this.streamOptions=e,this.cursor.stream(e)}_setIsEmitter(){if("iterator"===this[p])throw new a.MongoAPIError("ChangeStream cannot be used as an EventEmitter after being used as an iterator");this[p]="emitter"}_setIsIterator(){if("emitter"===this[p])throw new a.MongoAPIError("ChangeStream cannot be used as an iterator after being used as an EventEmitter");this[p]="iterator"}_createChangeStreamCursor(e){const t=(0,l.filterOptions)(e,d);this.type===E.CLUSTER&&(t.allChangesForCluster=!0);const n=[{$changeStream:t},...this.pipeline],r=this.type===E.CLUSTER?this.parent:this.type===E.DATABASE||this.type===E.COLLECTION?this.parent.client:null;if(null==r)throw new a.MongoRuntimeError(`Changestream type should only be one of cluster, database, collection. Found ${this.type.toString()}`);const o=new i.ChangeStreamCursor(r,this.namespace,n,e);for(const e of m)o.on(e,(t=>this.emit(e,t)));return this.listenerCount(g.CHANGE)>0&&this._streamEvents(o),o}_closeEmitterModeWithError(e){this.emit(g.ERROR,e),this.close().then(void 0,l.squashError)}_streamEvents(e){this._setIsEmitter();const t=this[h]??e.stream();this[h]=t,t.on("data",(e=>{try{const t=this._processChange(e);this.emit(g.CHANGE,t)}catch(e){this.emit(g.ERROR,e)}})),t.on("error",(e=>this._processErrorStreamMode(e)))}_endStream(){const e=this[h];e&&(["data","close","end","error"].forEach((t=>e.removeAllListeners(t))),e.destroy()),this[h]=void 0}_processChange(e){if(this[f])throw new a.MongoAPIError(_);if(null==e)throw new a.MongoRuntimeError(_);if(e&&!e._id)throw new a.MongoChangeStreamError("A change stream document has been received that lacks a resume token (_id).");return this.cursor.cacheResumeToken(e._id),this.options.startAtOperationTime=void 0,e}_processErrorStreamMode(e){this[f]||((0,a.isResumableError)(e,this.cursor.maxWireVersion)?(this._endStream(),this.cursor.close().then(void 0,l.squashError),(0,l.getTopology)(this.parent).selectServer(this.cursor.readPreference,{operationName:"reconnect topology in change stream"}).then((()=>{this.cursor=this._createChangeStreamCursor(this.cursor.resumeOptions)}),(()=>this._closeEmitterModeWithError(e)))):this._closeEmitterModeWithError(e))}async _processErrorIteratorMode(e){if(this[f])throw new a.MongoAPIError(_);if(!(0,a.isResumableError)(e,this.cursor.maxWireVersion)){try{await this.close()}catch(e){(0,l.squashError)(e)}throw e}try{await this.cursor.close()}catch(e){(0,l.squashError)(e)}const t=(0,l.getTopology)(this.parent);try{await t.selectServer(this.cursor.readPreference,{operationName:"reconnect topology in change stream"}),this.cursor=this._createChangeStreamCursor(this.cursor.resumeOptions)}catch{throw await this.close(),e}}}g.RESPONSE=o.RESPONSE,g.MORE=o.MORE,g.INIT=o.INIT,g.CLOSE=o.CLOSE,g.CHANGE=o.CHANGE,g.END=o.END,g.ERROR=o.ERROR,g.RESUME_TOKEN_CHANGED=o.RESUME_TOKEN_CHANGED,t.ChangeStream=g},72377:(e,t,n)=>{"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.AutoEncrypter=t.AutoEncryptionLoggerLevel=void 0;const o=n(63403),i=n(33371),s=n(86947),a=n(13139),u=n(52060),c=n(34185),l=n(61784),h=n(98199),f=n(86162),p=n(68272);t.AutoEncryptionLoggerLevel=Object.freeze({FatalError:0,Error:1,Warning:2,Info:3,Trace:4});const d=Symbol.for("@@mdb.decorateDecryptionResult"),E=Symbol.for("@@mdb.decryptedKeys");class m{static getMongoCrypt(){const e=(0,i.getMongoDBClientEncryption)();if("kModuleError"in e)throw e.kModuleError;return e.MongoCrypt}constructor(e,t){this[r]=!1,this._client=e,this._bypassEncryption=!0===t.bypassAutoEncryption,this._keyVaultNamespace=t.keyVaultNamespace||"admin.datakeys",this._keyVaultClient=t.keyVaultClient||e,this._metaDataClient=t.metadataClient||e,this._proxyOptions=t.proxyOptions||{},this._tlsOptions=t.tlsOptions||{},this._kmsProviders=t.kmsProviders||{};const n={cryptoCallbacks:c};t.schemaMap&&(n.schemaMap=Buffer.isBuffer(t.schemaMap)?t.schemaMap:(0,o.serialize)(t.schemaMap)),t.encryptedFieldsMap&&(n.encryptedFieldsMap=Buffer.isBuffer(t.encryptedFieldsMap)?t.encryptedFieldsMap:(0,o.serialize)(t.encryptedFieldsMap)),n.kmsProviders=Buffer.isBuffer(this._kmsProviders)?this._kmsProviders:(0,o.serialize)(this._kmsProviders),t.options?.logger&&(n.logger=t.options.logger),t.extraOptions&&t.extraOptions.cryptSharedLibPath&&(n.cryptSharedLibPath=t.extraOptions.cryptSharedLibPath),t.bypassQueryAnalysis&&(n.bypassQueryAnalysis=t.bypassQueryAnalysis),this._bypassMongocryptdAndCryptShared=this._bypassEncryption||!!t.bypassQueryAnalysis,t.extraOptions&&t.extraOptions.cryptSharedLibSearchPaths?n.cryptSharedLibSearchPaths=t.extraOptions.cryptSharedLibSearchPaths:this._bypassMongocryptdAndCryptShared||(n.cryptSharedLibSearchPaths=["$SYSTEM"]);const i=m.getMongoCrypt();if(this._mongocrypt=new i(n),this._contextCounter=0,t.extraOptions&&t.extraOptions.cryptSharedLibRequired&&!this.cryptSharedLibVersionInfo)throw new l.MongoCryptInvalidArgumentError("`cryptSharedLibRequired` set but no crypt_shared library loaded");if(!this._bypassMongocryptdAndCryptShared&&!this.cryptSharedLibVersionInfo){this._mongocryptdManager=new h.MongocryptdManager(t.extraOptions);const e={serverSelectionTimeoutMS:1e4};null!=t.extraOptions&&"string"==typeof t.extraOptions.mongocryptdURI||(e.family=4),this._mongocryptdClient=new a.MongoClient(this._mongocryptdManager.uri,e)}}async init(){if(!this._bypassMongocryptdAndCryptShared&&!this.cryptSharedLibVersionInfo){if(!this._mongocryptdManager)throw new s.MongoRuntimeError("Reached impossible state: mongocryptdManager is undefined when neither bypassSpawn nor the shared lib are specified.");if(!this._mongocryptdClient)throw new s.MongoRuntimeError("Reached impossible state: mongocryptdClient is undefined when neither bypassSpawn nor the shared lib are specified.");this._mongocryptdManager.bypassSpawn||await this._mongocryptdManager.spawn();try{return await this._mongocryptdClient.connect()}catch(e){const{message:t}=e;if(t&&(t.match(/timed out after/)||t.match(/ENOTFOUND/)))throw new s.MongoRuntimeError("Unable to connect to `mongocryptd`, please make sure it is running or in your PATH for auto-spawn",{cause:e});throw e}}}async teardown(e){await(this._mongocryptdClient?.close(e))}async encrypt(e,t,n={}){if(this._bypassEncryption)return t;const r=Buffer.isBuffer(t)?t:(0,o.serialize)(t,n),i=this._mongocrypt.makeEncryptionContext(u.MongoDBCollectionNamespace.fromString(e).db,r);i.id=this._contextCounter++,i.ns=e,i.document=t;const s=new p.StateMachine({promoteValues:!1,promoteLongs:!1,proxyOptions:this._proxyOptions,tlsOptions:this._tlsOptions});return await s.execute(this,i)}async decrypt(e,t={}){const n=Buffer.isBuffer(e)?e:(0,o.serialize)(e,t),r=this._mongocrypt.makeDecryptionContext(n);r.id=this._contextCounter++;const i=new p.StateMachine({...t,proxyOptions:this._proxyOptions,tlsOptions:this._tlsOptions}),s=this[d],a=await i.execute(this,r);return s&&_(a,e),a}async askForKMSCredentials(){return await(0,f.refreshKMSCredentials)(this._kmsProviders)}get cryptSharedLibVersionInfo(){return this._mongocrypt.cryptSharedLibVersionInfo}static get libmongocryptVersion(){return m.getMongoCrypt().libmongocryptVersion}}function _(e,t,n=!0){if(n&&(Buffer.isBuffer(t)&&(t=(0,o.deserialize)(t)),Buffer.isBuffer(e)))throw new s.MongoRuntimeError("Expected result of decryption to be deserialized BSON object");if(e&&"object"==typeof e)for(const n of Object.keys(e)){const r=t[n];r&&"Binary"===r._bsontype&&6===r.sub_type?(e[E]||Object.defineProperty(e,E,{value:[],configurable:!0,enumerable:!1,writable:!1}),e[E].push(n)):_(e[n],r,!1)}}t.AutoEncrypter=m,r=d},24814:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ClientEncryption=void 0;const r=n(63403),o=n(33371),i=n(52060),s=n(34185),a=n(61784),u=n(86162),c=n(68272);class l{static getMongoCrypt(){const e=(0,o.getMongoDBClientEncryption)();if("kModuleError"in e)throw e.kModuleError;return e.MongoCrypt}constructor(e,t){if(this._client=e,this._proxyOptions=t.proxyOptions??{},this._tlsOptions=t.tlsOptions??{},this._kmsProviders=t.kmsProviders||{},null==t.keyVaultNamespace)throw new a.MongoCryptInvalidArgumentError("Missing required option `keyVaultNamespace`");const n={...t,cryptoCallbacks:s,kmsProviders:Buffer.isBuffer(this._kmsProviders)?this._kmsProviders:(0,r.serialize)(this._kmsProviders)};this._keyVaultNamespace=t.keyVaultNamespace,this._keyVaultClient=t.keyVaultClient||e;const o=l.getMongoCrypt();this._mongoCrypt=new o(n)}async createDataKey(e,t={}){if(t.keyAltNames&&!Array.isArray(t.keyAltNames))throw new a.MongoCryptInvalidArgumentError(`Option "keyAltNames" must be an array of strings, but was of type ${typeof t.keyAltNames}.`);let n,o;t.keyAltNames&&t.keyAltNames.length>0&&(n=t.keyAltNames.map(((e,t)=>{if("string"!=typeof e)throw new a.MongoCryptInvalidArgumentError(`Option "keyAltNames" must be an array of strings, but item at index ${t} was of type ${typeof e}`);return(0,r.serialize)({keyAltName:e})}))),t.keyMaterial&&(o=(0,r.serialize)({keyMaterial:t.keyMaterial}));const s=(0,r.serialize)({provider:e,...t.masterKey}),u=this._mongoCrypt.makeDataKeyContext(s,{keyAltNames:n,keyMaterial:o}),l=new c.StateMachine({proxyOptions:this._proxyOptions,tlsOptions:this._tlsOptions}),h=await l.execute(this,u),{db:f,collection:p}=i.MongoDBCollectionNamespace.fromString(this._keyVaultNamespace),{insertedId:d}=await this._keyVaultClient.db(f).collection(p).insertOne(h,{writeConcern:{w:"majority"}});return d}async rewrapManyDataKey(e,t){let n;if(t){const e=Object.assign({provider:t.provider},t.masterKey);n=(0,r.serialize)(e)}const o=(0,r.serialize)(e),s=this._mongoCrypt.makeRewrapManyDataKeyContext(o,n),a=new c.StateMachine({proxyOptions:this._proxyOptions,tlsOptions:this._tlsOptions}),{v:u}=await a.execute(this,s);if(0===u.length)return{};const{db:l,collection:h}=i.MongoDBCollectionNamespace.fromString(this._keyVaultNamespace),f=u.map((e=>({updateOne:{filter:{_id:e._id},update:{$set:{masterKey:e.masterKey,keyMaterial:e.keyMaterial},$currentDate:{updateDate:!0}}}})));return{bulkWriteResult:await this._keyVaultClient.db(l).collection(h).bulkWrite(f,{writeConcern:{w:"majority"}})}}async deleteKey(e){const{db:t,collection:n}=i.MongoDBCollectionNamespace.fromString(this._keyVaultNamespace);return await this._keyVaultClient.db(t).collection(n).deleteOne({_id:e},{writeConcern:{w:"majority"}})}getKeys(){const{db:e,collection:t}=i.MongoDBCollectionNamespace.fromString(this._keyVaultNamespace);return this._keyVaultClient.db(e).collection(t).find({},{readConcern:{level:"majority"}})}async getKey(e){const{db:t,collection:n}=i.MongoDBCollectionNamespace.fromString(this._keyVaultNamespace);return await this._keyVaultClient.db(t).collection(n).findOne({_id:e},{readConcern:{level:"majority"}})}async getKeyByAltName(e){const{db:t,collection:n}=i.MongoDBCollectionNamespace.fromString(this._keyVaultNamespace);return await this._keyVaultClient.db(t).collection(n).findOne({keyAltNames:e},{readConcern:{level:"majority"}})}async addKeyAltName(e,t){const{db:n,collection:r}=i.MongoDBCollectionNamespace.fromString(this._keyVaultNamespace);return await this._keyVaultClient.db(n).collection(r).findOneAndUpdate({_id:e},{$addToSet:{keyAltNames:t}},{writeConcern:{w:"majority"},returnDocument:"before"})}async removeKeyAltName(e,t){const{db:n,collection:r}=i.MongoDBCollectionNamespace.fromString(this._keyVaultNamespace),o=[{$set:{keyAltNames:{$cond:[{$eq:["$keyAltNames",[t]]},"$$REMOVE",{$filter:{input:"$keyAltNames",cond:{$ne:["$$this",t]}}}]}}}];return await this._keyVaultClient.db(n).collection(r).findOneAndUpdate({_id:e},o,{writeConcern:{w:"majority"},returnDocument:"before"})}async createEncryptedCollection(e,t,n){const{provider:r,masterKey:o,createCollectionOptions:{encryptedFields:{...i},...s}}=n;if(Array.isArray(i.fields)){const e=i.fields.map((async e=>null==e||"object"!=typeof e||null!=e.keyId?e:{...e,keyId:await this.createDataKey(r,{masterKey:o})})),t=await Promise.allSettled(e);i.fields=t.map(((e,t)=>"fulfilled"===e.status?e.value:i.fields[t]));const n=t.find((e=>"rejected"===e.status));if(null!=n)throw new a.MongoCryptCreateDataKeyError(i,{cause:n.reason})}try{return{collection:await e.createCollection(t,{...s,encryptedFields:i}),encryptedFields:i}}catch(e){throw new a.MongoCryptCreateEncryptedCollectionError(i,{cause:e})}}async encrypt(e,t){return await this._encrypt(e,!1,t)}async encryptExpression(e,t){return await this._encrypt(e,!0,t)}async decrypt(e){const t=(0,r.serialize)({v:e}),n=this._mongoCrypt.makeExplicitDecryptionContext(t),o=new c.StateMachine({proxyOptions:this._proxyOptions,tlsOptions:this._tlsOptions}),{v:i}=await o.execute(this,n);return i}async askForKMSCredentials(){return await(0,u.refreshKMSCredentials)(this._kmsProviders)}static get libmongocryptVersion(){return l.getMongoCrypt().libmongocryptVersion}async _encrypt(e,t,n){const{algorithm:o,keyId:i,keyAltName:s,contentionFactor:u,queryType:l,rangeOptions:h}=n,f={expressionMode:t,algorithm:o};if(i&&(f.keyId=i.buffer),s){if(i)throw new a.MongoCryptInvalidArgumentError('"options" cannot contain both "keyId" and "keyAltName"');if("string"!=typeof s)throw new a.MongoCryptInvalidArgumentError('"options.keyAltName" must be of type string, but was of type '+typeof s);f.keyAltName=(0,r.serialize)({keyAltName:s})}"number"!=typeof u&&"bigint"!=typeof u||(f.contentionFactor=u),"string"==typeof l&&(f.queryType=l),"object"==typeof h&&(f.rangeOptions=(0,r.serialize)(h));const p=(0,r.serialize)({v:e}),d=new c.StateMachine({proxyOptions:this._proxyOptions,tlsOptions:this._tlsOptions}),E=this._mongoCrypt.makeExplicitEncryptionContext(p,f);return(await d.execute(this,E)).v}}t.ClientEncryption=l},34185:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hmacSha256Hook=t.hmacSha512Hook=t.aes256CtrDecryptHook=t.aes256CtrEncryptHook=t.aes256CbcDecryptHook=t.aes256CbcEncryptHook=t.signRsaSha256Hook=t.makeHmacHook=t.sha256Hook=t.randomHook=t.makeAES256Hook=void 0;const r=n(76982);function o(e,t){return function(n,o,i,s){let a;try{const s=r[e](t,n,o);s.setAutoPadding(!1),a=s.update(i);const u=s.final();u.length>0&&(a=Buffer.concat([a,u]))}catch(e){return e}return a.copy(s),a.length}}function i(e){return(t,n,o)=>{let i;try{i=r.createHmac(e,t).update(n).digest()}catch(e){return e}return i.copy(o),i.length}}t.makeAES256Hook=o,t.randomHook=function(e,t){try{r.randomFillSync(e,0,t)}catch(e){return e}return t},t.sha256Hook=function(e,t){let n;try{n=r.createHash("sha256").update(e).digest()}catch(e){return e}return n.copy(t),n.length},t.makeHmacHook=i,t.signRsaSha256Hook=function(e,t,n){let o;try{const n=r.createSign("sha256WithRSAEncryption"),i=Buffer.from(`-----BEGIN PRIVATE KEY-----\n${e.toString("base64")}\n-----END PRIVATE KEY-----\n`);o=n.update(t).end().sign(i)}catch(e){return e}return o.copy(n),o.length},t.aes256CbcEncryptHook=o("createCipheriv","aes-256-cbc"),t.aes256CbcDecryptHook=o("createDecipheriv","aes-256-cbc"),t.aes256CtrEncryptHook=o("createCipheriv","aes-256-ctr"),t.aes256CtrDecryptHook=o("createDecipheriv","aes-256-ctr"),t.hmacSha512Hook=i("sha512"),t.hmacSha256Hook=i("sha256")},61784:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MongoCryptKMSRequestNetworkTimeoutError=t.MongoCryptAzureKMSRequestError=t.MongoCryptCreateEncryptedCollectionError=t.MongoCryptCreateDataKeyError=t.MongoCryptInvalidArgumentError=t.MongoCryptError=void 0;const r=n(86947);class o extends r.MongoError{constructor(e,t={}){super(e,t)}get name(){return"MongoCryptError"}}t.MongoCryptError=o,t.MongoCryptInvalidArgumentError=class extends o{constructor(e){super(e)}get name(){return"MongoCryptInvalidArgumentError"}},t.MongoCryptCreateDataKeyError=class extends o{constructor(e,{cause:t}){super(`Unable to complete creating data keys: ${t.message}`,{cause:t}),this.encryptedFields=e}get name(){return"MongoCryptCreateDataKeyError"}},t.MongoCryptCreateEncryptedCollectionError=class extends o{constructor(e,{cause:t}){super(`Unable to create collection: ${t.message}`,{cause:t}),this.encryptedFields=e}get name(){return"MongoCryptCreateEncryptedCollectionError"}},t.MongoCryptAzureKMSRequestError=class extends o{constructor(e,t){super(e),this.body=t}get name(){return"MongoCryptAzureKMSRequestError"}},t.MongoCryptKMSRequestNetworkTimeoutError=class extends o{get name(){return"MongoCryptKMSRequestNetworkTimeoutError"}}},98199:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MongocryptdManager=void 0;const r=n(86947);class o{constructor(e={}){this.uri="string"==typeof e.mongocryptdURI&&e.mongocryptdURI.length>0?e.mongocryptdURI:o.DEFAULT_MONGOCRYPTD_URI,this.bypassSpawn=!!e.mongocryptdBypassSpawn,this.spawnPath=e.mongocryptdSpawnPath||"",this.spawnArgs=[],Array.isArray(e.mongocryptdSpawnArgs)&&(this.spawnArgs=this.spawnArgs.concat(e.mongocryptdSpawnArgs)),this.spawnArgs.filter((e=>"string"==typeof e)).every((e=>e.indexOf("--idleShutdownTimeoutSecs")<0))&&this.spawnArgs.push("--idleShutdownTimeoutSecs","60")}async spawn(){const e=this.spawnPath||"mongocryptd",{spawn:t}=n(35317);this._child=t(e,this.spawnArgs,{stdio:"ignore",detached:!0}),this._child.on("error",(()=>{})),this._child.unref()}async withRespawn(e){try{return await e()}catch(e){if(!(e instanceof r.MongoNetworkTimeoutError)||this.bypassSpawn)throw e}return await this.spawn(),await e()}}o.DEFAULT_MONGOCRYPTD_URI="mongodb://localhost:27020",t.MongocryptdManager=o},41407:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.loadAWSCredentials=void 0;const r=n(35786);t.loadAWSCredentials=async function(e){const t=new r.AWSSDKCredentialProvider,{SecretAccessKey:n="",AccessKeyId:o="",Token:i}=await t.getCredentials(),s={secretAccessKey:n,accessKeyId:o};return null!=i&&(s.sessionToken=i),{...e,aws:s}}},42589:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.loadAzureCredentials=t.fetchAzureKMSToken=t.prepareRequest=t.addAzureParams=t.tokenCache=t.AzureCredentialCache=t.AZURE_BASE_URL=void 0;const r=n(86947),o=n(52060),i=n(61784);t.AZURE_BASE_URL="http://169.254.169.254/metadata/identity/oauth2/token?";class s{constructor(){this.cachedToken=null}async getToken(){return(null==this.cachedToken||this.needsRefresh(this.cachedToken))&&(this.cachedToken=await this._getToken()),{accessToken:this.cachedToken.accessToken}}needsRefresh(e){return e.expiresOnTimestamp-Date.now()<=6e3}resetCache(){this.cachedToken=null}_getToken(){return c()}}function a(e,t,n){return e.searchParams.append("api-version","2018-02-01"),e.searchParams.append("resource",t),n&&e.searchParams.append("client_id",n),e}function u(e){const n=new URL(e.url?.toString()??t.AZURE_BASE_URL);return a(n,"https://vault.azure.net"),{headers:{...e.headers,"Content-Type":"application/json",Metadata:!0},url:n}}async function c(e={}){const{headers:t,url:n}=u(e);try{const e=await(0,o.get)(n,{headers:t});return await async function(e){const{status:t,body:n}=e,r=(()=>{try{return JSON.parse(n)}catch{throw new i.MongoCryptAzureKMSRequestError("Malformed JSON body in GET request.")}})();if(200!==t)throw new i.MongoCryptAzureKMSRequestError("Unable to complete request.",r);if(!r.access_token)throw new i.MongoCryptAzureKMSRequestError("Malformed response body - missing field `access_token`.");if(!r.expires_in)throw new i.MongoCryptAzureKMSRequestError("Malformed response body - missing field `expires_in`.");const o=1e3*Number(r.expires_in);if(Number.isNaN(o))throw new i.MongoCryptAzureKMSRequestError("Malformed response body - unable to parse int from `expires_in` field.");return{accessToken:r.access_token,expiresOnTimestamp:Date.now()+o}}(e)}catch(e){if(e instanceof r.MongoNetworkTimeoutError)throw new i.MongoCryptAzureKMSRequestError(`[Azure KMS] ${e.message}`);throw e}}t.AzureCredentialCache=s,t.tokenCache=new s,t.addAzureParams=a,t.prepareRequest=u,t.fetchAzureKMSToken=c,t.loadAzureCredentials=async function(e){return{...e,azure:await t.tokenCache.getToken()}}},91828:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.loadGCPCredentials=void 0;const r=n(33371);t.loadGCPCredentials=async function(e){const t=(0,r.getGcpMetadata)();if("kModuleError"in t)return e;const{access_token:n}=await t.instance({property:"service-accounts/default/token"});return{...e,gcp:{accessToken:n}}}},86162:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.refreshKMSCredentials=t.isEmptyCredentials=void 0;const r=n(41407),o=n(42589),i=n(91828);function s(e,t){const n=t[e];return null!=n&&"object"==typeof n&&0===Object.keys(n).length}t.isEmptyCredentials=s,t.refreshKMSCredentials=async function(e){let t=e;return s("aws",e)&&(t=await(0,r.loadAWSCredentials)(t)),s("gcp",e)&&(t=await(0,i.loadGCPCredentials)(t)),s("azure",e)&&(t=await(0,o.loadAzureCredentials)(t)),t}},68272:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.StateMachine=void 0;const r=n(91943),o=n(69278),i=n(64756),s=n(63403),a=n(33371),u=n(52060),c=n(61784);let l=null;const h=new Map([[0,"MONGOCRYPT_CTX_ERROR"],[1,"MONGOCRYPT_CTX_NEED_MONGO_COLLINFO"],[2,"MONGOCRYPT_CTX_NEED_MONGO_MARKINGS"],[3,"MONGOCRYPT_CTX_NEED_MONGO_KEYS"],[7,"MONGOCRYPT_CTX_NEED_KMS_CREDENTIALS"],[4,"MONGOCRYPT_CTX_NEED_KMS"],[5,"MONGOCRYPT_CTX_READY"],[6,"MONGOCRYPT_CTX_DONE"]]),f=["tlsInsecure","tlsAllowInvalidCertificates","tlsAllowInvalidHostnames","tlsDisableOCSPEndpointCheck","tlsDisableCertificateRevocationCheck"];function p(e){process.env.MONGODB_CRYPT_DEBUG&&console.error(e)}t.StateMachine=class{constructor(e,t=(0,s.pluckBSONSerializeOptions)(e)){this.options=e,this.bsonOptions=t}async execute(e,t){const n=e._keyVaultNamespace,r=e._keyVaultClient,o=e._metaDataClient,i=e._mongocryptdClient,a=e._mongocryptdManager;let u=null;for(;6!==t.state&&0!==t.state;)switch(p(`[context#${t.id}] ${h.get(t.state)||t.state}`),t.state){case 1:{const e=(0,s.deserialize)(t.nextMongoOperation());if(!o)throw new c.MongoCryptError("unreachable state machine state: entered MONGOCRYPT_CTX_NEED_MONGO_COLLINFO but metadata client is undefined");const n=await this.fetchCollectionInfo(o,t.ns,e);n&&t.addMongoOperationResponse(n),t.finishMongoOperation();break}case 2:{const e=t.nextMongoOperation();if(!i)throw new c.MongoCryptError("unreachable state machine state: entered MONGOCRYPT_CTX_NEED_MONGO_MARKINGS but mongocryptdClient is undefined");const n=a?await a.withRespawn(this.markCommand.bind(this,i,t.ns,e)):await this.markCommand(i,t.ns,e);t.addMongoOperationResponse(n),t.finishMongoOperation();break}case 3:{const e=t.nextMongoOperation(),o=await this.fetchKeys(r,n,e);0===o.length&&(u={v:[]});for await(const e of o)t.addMongoOperationResponse((0,s.serialize)(e));t.finishMongoOperation();break}case 7:{const n=await e.askForKMSCredentials();t.provideKMSProviders((0,s.serialize)(n));break}case 4:{const e=Array.from(this.requests(t));await Promise.all(e),t.finishKMSRequests();break}case 5:{const e=t.finalize();if(0===t.state){const e=t.status.message||"Finalization error";throw new c.MongoCryptError(e)}u=(0,s.deserialize)(e,this.options);break}default:throw new c.MongoCryptError(`Unknown state: ${t.state}`)}if(0===t.state||null==u){const e=t.status.message;throw e||p("unidentifiable error in MongoCrypt - received an error status from `libmongocrypt` but received no error message."),new c.MongoCryptError(e??"unidentifiable error in MongoCrypt - received an error status from `libmongocrypt` but received no error message.")}return u}async kmsRequest(e){const t=e.endpoint.split(":"),n=null!=t[1]?Number.parseInt(t[1],10):443,r={host:t[0],servername:t[0],port:n},s=e.message,h=new u.BufferPool,f=new o.Socket;let p;function d(){return new c.MongoCryptError("KMS request timed out")}function E(e){return new c.MongoCryptError("KMS request failed",{cause:e})}function m(){return new c.MongoCryptError("KMS request closed")}const _=this.options.tlsOptions;if(_){const t=e.kmsProvider,n=_[t];if(n){const e=this.validateTlsOptions(t,n);if(e)throw e;try{await this.setTlsOptions(n,r)}catch(e){throw E(e)}}}const{promise:g,reject:y,resolve:A}=(0,u.promiseWithResolvers)();f.once("timeout",(()=>y(d()))).once("error",(e=>y(E(e)))).once("close",(()=>y(m()))).once("connect",(()=>A()));try{if(this.options.proxyOptions&&this.options.proxyOptions.proxyHost){f.connect({host:this.options.proxyOptions.proxyHost,port:this.options.proxyOptions.proxyPort||1080}),await g;try{l??=function(){if(null==l){const e=(0,a.getSocks)();if("kModuleError"in e)throw e.kModuleError;l=e}return l}(),r.socket=(await l.SocksClient.createConnection({existing_socket:f,command:"connect",destination:{host:r.host,port:r.port},proxy:{host:"iLoveJavaScript",port:0,type:5,userId:this.options.proxyOptions.proxyUsername,password:this.options.proxyOptions.proxyPassword}})).socket}catch(e){throw E(e)}}p=i.connect(r,(()=>{p.write(s)}));const{promise:t,reject:n,resolve:o}=(0,u.promiseWithResolvers)();p.once("timeout",(()=>n(d()))).once("error",(e=>n(E(e)))).once("close",(()=>n(m()))).on("data",(t=>{for(h.append(t);e.bytesNeeded>0&&h.length;){const t=Math.min(e.bytesNeeded,h.length);e.addResponse(h.read(t))}e.bytesNeeded<=0&&o()})),await t}finally{!function(){for(const e of[p,f])e&&(e.removeAllListeners(),e.destroy())}()}}*requests(e){for(let t=e.nextKMSRequest();null!=t;t=e.nextKMSRequest())yield this.kmsRequest(t)}validateTlsOptions(e,t){const n=Object.keys(t);for(const t of f)if(n.includes(t))return new c.MongoCryptError(`Insecure TLS options prohibited for ${e}: ${t}`)}async setTlsOptions(e,t){if(e.tlsCertificateKeyFile){const n=await r.readFile(e.tlsCertificateKeyFile);t.cert=t.key=n}e.tlsCAFile&&(t.ca=await r.readFile(e.tlsCAFile)),e.tlsCertificateKeyFilePassword&&(t.passphrase=e.tlsCertificateKeyFilePassword)}async fetchCollectionInfo(e,t,n){const{db:r}=u.MongoDBCollectionNamespace.fromString(t),o=await e.db(r).listCollections(n,{promoteLongs:!1,promoteValues:!1}).toArray();return o.length>0?(0,s.serialize)(o[0]):null}async markCommand(e,t,n){const r={promoteLongs:!1,promoteValues:!1},{db:o}=u.MongoDBCollectionNamespace.fromString(t),i=(0,s.deserialize)(n,r),a=await e.db(o).command(i,r);return(0,s.serialize)(a,this.bsonOptions)}fetchKeys(e,t,n){const{db:r,collection:o}=u.MongoDBCollectionNamespace.fromString(t);return e.db(r).collection(o,{readConcern:{level:"majority"}}).find((0,s.deserialize)(n)).toArray()}}},5644:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AuthProvider=t.AuthContext=void 0;const r=n(86947);t.AuthContext=class{constructor(e,t,n){this.reauthenticating=!1,this.connection=e,this.credentials=t,this.options=n}},t.AuthProvider=class{async prepare(e,t){return e}async reauth(e){if(e.reauthenticating)throw new r.MongoRuntimeError("Reauthentication already in progress.");try{e.reauthenticating=!0,await this.auth(e)}finally{e.reauthenticating=!1}}}},35786:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.LegacyAWSTemporaryCredentialProvider=t.AWSSDKCredentialProvider=t.AWSTemporaryCredentialProvider=void 0;const r=n(33371),o=n(86947),i=n(52060),s="http://169.254.169.254",a="/latest/meta-data/iam/security-credentials";class u{static get awsSDK(){return u._awsSDK??=(0,r.getAwsCredentialProvider)(),u._awsSDK}static get isAWSSDKInstalled(){return!("kModuleError"in u.awsSDK)}}t.AWSTemporaryCredentialProvider=u,t.AWSSDKCredentialProvider=class extends u{get provider(){if("kModuleError"in u.awsSDK)throw u.awsSDK.kModuleError;if(this._provider)return this._provider;let{AWS_STS_REGIONAL_ENDPOINTS:e="",AWS_REGION:t=""}=process.env;e=e.toLowerCase(),t=t.toLowerCase();const n=0!==t.length&&0!==e.length,r=new Set(["ap-northeast-1","ap-south-1","ap-southeast-1","ap-southeast-2","aws-global","ca-central-1","eu-central-1","eu-north-1","eu-west-1","eu-west-2","eu-west-3","sa-east-1","us-east-1","us-east-2","us-west-1","us-west-2"]),o="regional"===e||"legacy"===e&&!r.has(t);return this._provider=n&&o?u.awsSDK.fromNodeProviderChain({clientConfig:{region:t}}):u.awsSDK.fromNodeProviderChain(),this._provider}async getCredentials(){try{const e=await this.provider();return{AccessKeyId:e.accessKeyId,SecretAccessKey:e.secretAccessKey,Token:e.sessionToken,Expiration:e.expiration}}catch(e){throw new o.MongoAWSError(e.message,{cause:e})}}},t.LegacyAWSTemporaryCredentialProvider=class extends u{async getCredentials(){if(process.env.AWS_CONTAINER_CREDENTIALS_RELATIVE_URI)return await(0,i.request)(`http://169.254.170.2${process.env.AWS_CONTAINER_CREDENTIALS_RELATIVE_URI}`);const e=await(0,i.request)(`${s}/latest/api/token`,{method:"PUT",json:!1,headers:{"X-aws-ec2-metadata-token-ttl-seconds":30}}),t=await(0,i.request)(`${s}/${a}`,{json:!1,headers:{"X-aws-ec2-metadata-token":e}});return await(0,i.request)(`${s}/${a}/${t}`,{headers:{"X-aws-ec2-metadata-token":e}})}}},88573:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.resolveCname=t.performGSSAPICanonicalizeHostName=t.GSSAPI=t.GSSAPICanonicalizationValue=void 0;const r=n(72250),o=n(33371),i=n(86947),s=n(52060),a=n(5644);async function u(e,t){return await e.command((0,s.ns)("$external.$cmd"),t)}let c;t.GSSAPICanonicalizationValue=Object.freeze({on:!0,off:!1,none:"none",forward:"forward",forwardAndReverse:"forwardAndReverse"});class l extends a.AuthProvider{async auth(e){const{connection:t,credentials:n}=e;if(null==n)throw new i.MongoMissingCredentialsError("Credentials required for GSSAPI authentication");const{username:r}=n,s=await async function(e){const{hostAddress:t}=e.options,{credentials:n}=e;if(!t||"string"!=typeof t.host||!n)throw new i.MongoInvalidArgumentError("Connection must have host and port and credentials defined.");if(c||(c=(0,o.getKerberos)()),"kModuleError"in c)throw c.kModuleError;const{initializeClient:r}=c,{username:s,password:a}=n,u=n.mechanismProperties,l=u.SERVICE_NAME??"mongodb",h=await f(t.host,u),p={};null!=a&&Object.assign(p,{user:s,password:a});const d=u.SERVICE_HOST??h;let E=`${l}${"win32"===process.platform?"/":"@"}${d}`;return"SERVICE_REALM"in u&&(E=`${E}@${u.SERVICE_REALM}`),await r(E,p)}(e),a=await s.step(""),l=await u(t,function(e){return{saslStart:1,mechanism:"GSSAPI",payload:e,autoAuthorize:1}}(a)),p=await h(s,10,l.payload),d=await u(t,function(e,t){return{saslContinue:1,conversationId:t,payload:e}}(p,l.conversationId)),E=await async function(e,t,n){const r=await e.unwrap(n);return await e.wrap(r||"",{user:t})}(s,r,d.payload);await u(t,{saslContinue:1,conversationId:d.conversationId,payload:E})}}async function h(e,t,n){try{return await e.step(n)||""}catch(r){if(0===t)throw r;return await h(e,t-1,n)}}async function f(e,n){const o=n.CANONICALIZE_HOST_NAME;if(!o||o===t.GSSAPICanonicalizationValue.none)return e;if(o!==t.GSSAPICanonicalizationValue.on&&o!==t.GSSAPICanonicalizationValue.forwardAndReverse)return await p(e);{const{address:t}=await r.promises.lookup(e);try{const n=await r.promises.resolvePtr(t);return n.length>0?n[0]:e}catch(t){return await p(e)}}}async function p(e){try{const t=await r.promises.resolveCname(e);return t.length>0?t[0]:e}catch{return e}}t.GSSAPI=l,t.performGSSAPICanonicalizeHostName=f,t.resolveCname=p},37935:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MongoCredentials=t.DEFAULT_ALLOWED_HOSTS=void 0;const r=n(86947),o=n(88573),i=n(24380);function s(e){if(e){if(Array.isArray(e.saslSupportedMechs))return e.saslSupportedMechs.includes(i.AuthMechanism.MONGODB_SCRAM_SHA256)?i.AuthMechanism.MONGODB_SCRAM_SHA256:i.AuthMechanism.MONGODB_SCRAM_SHA1;if(e.maxWireVersion>=3)return i.AuthMechanism.MONGODB_SCRAM_SHA1}return i.AuthMechanism.MONGODB_CR}const a=["test","azure","gcp"],u="Auth mechanism property ALLOWED_HOSTS must be an array of strings.";t.DEFAULT_ALLOWED_HOSTS=["*.mongodb.net","*.mongodb-qa.net","*.mongodb-dev.net","*.mongodbgov.net","localhost","127.0.0.1","::1"];class c{constructor(e){this.username=e.username??"",this.password=e.password,this.source=e.source,!this.source&&e.db&&(this.source=e.db),this.mechanism=e.mechanism||i.AuthMechanism.MONGODB_DEFAULT,this.mechanismProperties=e.mechanismProperties||{},this.mechanism.match(/MONGODB-AWS/i)&&(!this.username&&process.env.AWS_ACCESS_KEY_ID&&(this.username=process.env.AWS_ACCESS_KEY_ID),!this.password&&process.env.AWS_SECRET_ACCESS_KEY&&(this.password=process.env.AWS_SECRET_ACCESS_KEY),null==this.mechanismProperties.AWS_SESSION_TOKEN&&null!=process.env.AWS_SESSION_TOKEN&&(this.mechanismProperties={...this.mechanismProperties,AWS_SESSION_TOKEN:process.env.AWS_SESSION_TOKEN})),this.mechanism!==i.AuthMechanism.MONGODB_OIDC||this.mechanismProperties.ALLOWED_HOSTS||(this.mechanismProperties={...this.mechanismProperties,ALLOWED_HOSTS:t.DEFAULT_ALLOWED_HOSTS}),Object.freeze(this.mechanismProperties),Object.freeze(this)}equals(e){return this.mechanism===e.mechanism&&this.username===e.username&&this.password===e.password&&this.source===e.source}resolveAuthMechanism(e){return this.mechanism.match(/DEFAULT/i)?new c({username:this.username,password:this.password,source:this.source,mechanism:s(e),mechanismProperties:this.mechanismProperties}):this}validate(){if((this.mechanism===i.AuthMechanism.MONGODB_GSSAPI||this.mechanism===i.AuthMechanism.MONGODB_CR||this.mechanism===i.AuthMechanism.MONGODB_PLAIN||this.mechanism===i.AuthMechanism.MONGODB_SCRAM_SHA1||this.mechanism===i.AuthMechanism.MONGODB_SCRAM_SHA256)&&!this.username)throw new r.MongoMissingCredentialsError(`Username required for mechanism '${this.mechanism}'`);if(this.mechanism===i.AuthMechanism.MONGODB_OIDC){if(this.username&&this.mechanismProperties.ENVIRONMENT&&"azure"!==this.mechanismProperties.ENVIRONMENT)throw new r.MongoInvalidArgumentError(`username and ENVIRONMENT '${this.mechanismProperties.ENVIRONMENT}' may not be used together for mechanism '${this.mechanism}'.`);if(this.username&&this.password)throw new r.MongoInvalidArgumentError(`No password is allowed in ENVIRONMENT '${this.mechanismProperties.ENVIRONMENT}' for '${this.mechanism}'.`);if(("azure"===this.mechanismProperties.ENVIRONMENT||"gcp"===this.mechanismProperties.ENVIRONMENT)&&!this.mechanismProperties.TOKEN_RESOURCE)throw new r.MongoInvalidArgumentError("TOKEN_RESOURCE must be set in the auth mechanism properties when ENVIRONMENT is azure or gcp.");if(this.mechanismProperties.ENVIRONMENT&&!a.includes(this.mechanismProperties.ENVIRONMENT))throw new r.MongoInvalidArgumentError(`Currently only a ENVIRONMENT in ${a.join(",")} is supported for mechanism '${this.mechanism}'.`);if(!this.mechanismProperties.ENVIRONMENT&&!this.mechanismProperties.OIDC_CALLBACK&&!this.mechanismProperties.OIDC_HUMAN_CALLBACK)throw new r.MongoInvalidArgumentError(`Either a ENVIRONMENT, OIDC_CALLBACK, or OIDC_HUMAN_CALLBACK must be specified for mechanism '${this.mechanism}'.`);if(this.mechanismProperties.ALLOWED_HOSTS){const e=this.mechanismProperties.ALLOWED_HOSTS;if(!Array.isArray(e))throw new r.MongoInvalidArgumentError(u);for(const t of e)if("string"!=typeof t)throw new r.MongoInvalidArgumentError(u)}}if(i.AUTH_MECHS_AUTH_SRC_EXTERNAL.has(this.mechanism)&&null!=this.source&&"$external"!==this.source)throw new r.MongoAPIError(`Invalid source '${this.source}' for mechanism '${this.mechanism}' specified.`);if(this.mechanism===i.AuthMechanism.MONGODB_PLAIN&&null==this.source)throw new r.MongoAPIError("PLAIN Authentication Mechanism needs an auth source");if(this.mechanism===i.AuthMechanism.MONGODB_X509&&null!=this.password){if(""===this.password)return void Reflect.set(this,"password",void 0);throw new r.MongoAPIError("Password not allowed for mechanism MONGODB-X509")}const e=this.mechanismProperties.CANONICALIZE_HOST_NAME??!1;if(!Object.values(o.GSSAPICanonicalizationValue).includes(e))throw new r.MongoAPIError(`Invalid CANONICALIZE_HOST_NAME value: ${e}`)}static merge(e,t){return new c({username:t.username??e?.username??"",password:t.password??e?.password??"",mechanism:t.mechanism??e?.mechanism??i.AuthMechanism.MONGODB_DEFAULT,mechanismProperties:t.mechanismProperties??e?.mechanismProperties??{},source:t.source??t.db??e?.source??"admin"})}}t.MongoCredentials=c},1135:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MongoCR=void 0;const r=n(76982),o=n(86947),i=n(52060),s=n(5644);class a extends s.AuthProvider{async auth(e){const{connection:t,credentials:n}=e;if(!n)throw new o.MongoMissingCredentialsError("AuthContext must provide credentials.");const{username:s,password:a,source:u}=n,{nonce:c}=await t.command((0,i.ns)(`${u}.$cmd`),{getnonce:1},void 0),l=r.createHash("md5").update(`${s}:mongo:${a}`,"utf8").digest("hex"),h={authenticate:1,user:s,nonce:c,key:r.createHash("md5").update(`${c}${s}${l}`,"utf8").digest("hex")};await t.command((0,i.ns)(`${u}.$cmd`),h,void 0)}}t.MongoCR=a},88626:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MongoDBAWS=void 0;const r=n(63403),o=n(33371),i=n(86947),s=n(52060),a=n(5644),u=n(35786),c=n(37935),l=n(24380),h={useBigInt64:!1,promoteLongs:!0,promoteValues:!0,promoteBuffers:!1,bsonRegExp:!1};class f extends a.AuthProvider{constructor(){super(),this.credentialFetcher=u.AWSTemporaryCredentialProvider.isAWSSDKInstalled?new u.AWSSDKCredentialProvider:new u.LegacyAWSTemporaryCredentialProvider}async auth(e){const{connection:t}=e;if(!e.credentials)throw new i.MongoMissingCredentialsError("AuthContext must provide credentials.");if("kModuleError"in o.aws4)throw o.aws4.kModuleError;const{sign:n}=o.aws4;if((0,s.maxWireVersion)(t)<9)throw new i.MongoCompatibilityError("MONGODB-AWS authentication requires MongoDB version 4.4 or later");e.credentials.username||(e.credentials=await async function(e,t){return function(t){if(!t.AccessKeyId||!t.SecretAccessKey)throw new i.MongoMissingCredentialsError("Could not obtain temporary MONGODB-AWS credentials");return new c.MongoCredentials({username:t.AccessKeyId,password:t.SecretAccessKey,source:e.source,mechanism:l.AuthMechanism.MONGODB_AWS,mechanismProperties:{AWS_SESSION_TOKEN:t.Token}})}(await t.getCredentials())}(e.credentials,this.credentialFetcher));const{credentials:a}=e,u=a.username,f=a.password,d=a.mechanismProperties.AWS_SESSION_TOKEN,E=u&&f&&d?{accessKeyId:u,secretAccessKey:f,sessionToken:d}:u&&f?{accessKeyId:u,secretAccessKey:f}:void 0,m=a.source,_=await(0,s.randomBytes)(32),g={saslStart:1,mechanism:"MONGODB-AWS",payload:r.serialize({r:_,p:110},h)},y=await t.command((0,s.ns)(`${m}.$cmd`),g,void 0),A=r.deserialize(y.payload.buffer,h),v=A.h,b=A.s.buffer;if(64!==b.length)throw new i.MongoRuntimeError(`Invalid server nonce length ${b.length}, expected 64`);if(!s.ByteUtils.equals(b.subarray(0,_.byteLength),_))throw new i.MongoRuntimeError("Server nonce does not begin with client nonce");if(v.length<1||v.length>255||-1!==v.indexOf(".."))throw new i.MongoRuntimeError(`Server returned an invalid host: "${v}"`);const T=n({method:"POST",host:v,region:p(A.h),service:"sts",headers:{"Content-Type":"application/x-www-form-urlencoded","Content-Length":43,"X-MongoDB-Server-Nonce":s.ByteUtils.toBase64(b),"X-MongoDB-GS2-CB-Flag":"n"},path:"/",body:"Action=GetCallerIdentity&Version=2011-06-15"},E),w={a:T.headers.Authorization,d:T.headers["X-Amz-Date"]};d&&(w.t=d);const O={saslContinue:1,conversationId:1,payload:r.serialize(w,h)};await t.command((0,s.ns)(`${m}.$cmd`),O,void 0)}}function p(e){const t=e.split(".");return 1===t.length||"amazonaws"===t[1]?"us-east-1":t[1]}t.MongoDBAWS=f},68542:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MongoDBOIDC=t.OIDC_WORKFLOWS=t.OIDC_VERSION=void 0;const r=n(86947),o=n(5644),i=n(96162),s=n(54405),a=n(24257),u=n(5536);t.OIDC_VERSION=1,t.OIDC_WORKFLOWS=new Map,t.OIDC_WORKFLOWS.set("test",(()=>new u.TokenMachineWorkflow(new a.TokenCache))),t.OIDC_WORKFLOWS.set("azure",(()=>new i.AzureMachineWorkflow(new a.TokenCache))),t.OIDC_WORKFLOWS.set("gcp",(()=>new s.GCPMachineWorkflow(new a.TokenCache)));class c extends o.AuthProvider{constructor(e){if(super(),!e)throw new r.MongoInvalidArgumentError("No workflow provided to the OIDC auth provider.");this.workflow=e}async auth(e){const{connection:t,reauthenticating:n,response:r}=e;if(r?.speculativeAuthenticate?.done)return;const o=l(e);n?await this.workflow.reauthenticate(t,o):await this.workflow.execute(t,o,r)}async prepare(e,t){const{connection:n}=t,r=l(t);return{...e,...await this.workflow.speculativeAuth(n,r)}}}function l(e){const{credentials:t}=e;if(!t)throw new r.MongoMissingCredentialsError("AuthContext must provide credentials.");return t}t.MongoDBOIDC=c},45693:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AutomatedCallbackWorkflow=void 0;const r=n(86947),o=n(38286),i=n(68542),s=n(56872);class a extends s.CallbackWorkflow{constructor(e,t){super(e,t)}async execute(e,t){if(this.cache.hasAccessToken){const n=this.cache.getAccessToken();try{return await this.finishAuthentication(e,t,n)}catch(n){if(n instanceof r.MongoError&&n.code===r.MONGODB_ERROR_CODES.AuthenticationFailed)return this.cache.removeAccessToken(),await this.execute(e,t);throw n}}const n=await this.fetchAccessToken(t);this.cache.put(n),e.accessToken=n.accessToken,await this.finishAuthentication(e,t,n.accessToken)}async fetchAccessToken(e){const t=new AbortController,n={timeoutContext:t.signal,version:i.OIDC_VERSION};e.username&&(n.username=e.username);const a=o.Timeout.expires(s.AUTOMATED_TIMEOUT_MS);try{return await Promise.race([this.executeAndValidateCallback(n),a])}catch(e){if(o.TimeoutError.is(e))throw t.abort(),new r.MongoOIDCError(`OIDC callback timed out after ${s.AUTOMATED_TIMEOUT_MS}ms.`);throw e}finally{a.clear()}}}t.AutomatedCallbackWorkflow=a},96162:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AzureMachineWorkflow=void 0;const r=n(42589),o=n(86947),i=n(52060),s=n(72590),a=Object.freeze({Metadata:"true",Accept:"application/json"});class u extends s.MachineWorkflow{constructor(e){super(e)}async getToken(e){const t=e?.mechanismProperties.TOKEN_RESOURCE,n=e?.username;if(!t)throw new o.MongoAzureError("TOKEN_RESOURCE must be set in the auth mechanism properties when ENVIRONMENT is azure.");const s=await async function(e,t){const n=new URL(r.AZURE_BASE_URL);(0,r.addAzureParams)(n,e,t);const s=await(0,i.get)(n,{headers:a});if(200!==s.status)throw new o.MongoAzureError(`Status code ${s.status} returned from the Azure endpoint. Response body: ${s.body}`);const u=JSON.parse(s.body);return{access_token:u.access_token,expires_in:Number(u.expires_in)}}(t,n);if(null==(u=s)||"object"!=typeof u||!("access_token"in u)||"string"!=typeof u.access_token||!("expires_in"in u)||"number"!=typeof u.expires_in)throw new o.MongoAzureError("Azure endpoint did not return a value with only access_token and expires_in properties");var u;return s}}t.AzureMachineWorkflow=u},56872:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CallbackWorkflow=t.AUTOMATED_TIMEOUT_MS=t.HUMAN_TIMEOUT_MS=void 0;const r=n(16460),o=n(86947),i=n(52060),s=n(16987);t.HUMAN_TIMEOUT_MS=3e5,t.AUTOMATED_TIMEOUT_MS=6e4;const a=["accessToken","expiresInSeconds","refreshToken"];t.CallbackWorkflow=class{constructor(e,t){this.cache=e,this.callback=this.withLock(t),this.lastExecutionTime=Date.now()-100}async speculativeAuth(e,t){if(this.cache.hasAccessToken){const n=this.cache.getAccessToken();e.accessToken=n;const r=(0,s.finishCommandDocument)(n);return r.db=t.source,{speculativeAuthenticate:r}}return{}}async reauthenticate(e,t){this.cache.hasAccessToken&&(e.accessToken===this.cache.getAccessToken()?(this.cache.removeAccessToken(),delete e.accessToken):e.accessToken=this.cache.getAccessToken()),await this.execute(e,t)}async startAuthentication(e,t,n){let r;return r=n?.speculativeAuthenticate?n.speculativeAuthenticate:await e.command((0,i.ns)(t.source),(0,s.startCommandDocument)(t),void 0),r}async finishAuthentication(e,t,n,r){await e.command((0,i.ns)(t.source),(0,s.finishCommandDocument)(n,r),void 0)}async executeAndValidateCallback(e){const t=await this.callback(e);if(null==(n=t)||"object"!=typeof n||!("accessToken"in n)||!Object.getOwnPropertyNames(n).every((e=>a.includes(e))))throw new o.MongoMissingCredentialsError("User provided OIDC callbacks must return a valid object with an accessToken.");var n;return t}withLock(e){let t=Promise.resolve();return async n=>(await t,t=t.catch((()=>null)).then((async()=>{const t=Date.now()-this.lastExecutionTime;return t<=100&&await(0,r.setTimeout)(100-t,{signal:n.timeoutContext}),this.lastExecutionTime=Date.now(),await e(n)})),await t)}}},16987:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.startCommandDocument=t.finishCommandDocument=void 0;const r=n(83633),o=n(24380);t.finishCommandDocument=function(e,t){return null!=t?{saslContinue:1,conversationId:t,payload:new r.Binary(r.BSON.serialize({jwt:e}))}:{saslStart:1,mechanism:o.AuthMechanism.MONGODB_OIDC,payload:new r.Binary(r.BSON.serialize({jwt:e}))}},t.startCommandDocument=function(e){const t={};return e.username&&(t.n=e.username),{saslStart:1,autoAuthorize:1,mechanism:o.AuthMechanism.MONGODB_OIDC,payload:new r.Binary(r.BSON.serialize(t))}}},54405:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.GCPMachineWorkflow=void 0;const r=n(86947),o=n(52060),i=n(72590),s=Object.freeze({"Metadata-Flavor":"Google"});class a extends i.MachineWorkflow{constructor(e){super(e)}async getToken(e){const t=e?.mechanismProperties.TOKEN_RESOURCE;if(!t)throw new r.MongoGCPError("TOKEN_RESOURCE must be set in the auth mechanism properties when ENVIRONMENT is gcp.");return await async function(e){const t=new URL("http://metadata/computeMetadata/v1/instance/service-accounts/default/identity");t.searchParams.append("audience",e);const n=await(0,o.get)(t,{headers:s});if(200!==n.status)throw new r.MongoGCPError(`Status code ${n.status} returned from the GCP endpoint. Response body: ${n.body}`);return{access_token:n.body}}(t)}}t.GCPMachineWorkflow=a},22362:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.HumanCallbackWorkflow=void 0;const r=n(83633),o=n(86947),i=n(38286),s=n(68542),a=n(56872);class u extends a.CallbackWorkflow{constructor(e,t){super(e,t)}async execute(e,t){if(this.cache.hasAccessToken){const n=this.cache.getAccessToken();e.accessToken=n;try{return await this.finishAuthentication(e,t,n)}catch(n){if(n instanceof o.MongoError&&n.code===o.MONGODB_ERROR_CODES.AuthenticationFailed)return this.cache.removeAccessToken(),delete e.accessToken,await this.execute(e,t);throw n}}if(this.cache.hasRefreshToken){const n=this.cache.getRefreshToken(),r=await this.fetchAccessToken(this.cache.getIdpInfo(),t,n);this.cache.put(r),e.accessToken=r.accessToken;try{return await this.finishAuthentication(e,t,r.accessToken)}catch(n){if(n instanceof o.MongoError&&n.code===o.MONGODB_ERROR_CODES.AuthenticationFailed)return this.cache.removeRefreshToken(),delete e.accessToken,await this.execute(e,t);throw n}}const n=await this.startAuthentication(e,t),i=n.conversationId,s=r.BSON.deserialize(n.payload.buffer),a=await this.fetchAccessToken(s,t);return this.cache.put(a,s),e.accessToken=a.accessToken,await this.finishAuthentication(e,t,a.accessToken,i)}async fetchAccessToken(e,t,n){const r=new AbortController,u={timeoutContext:r.signal,version:s.OIDC_VERSION,idpInfo:e};t.username&&(u.username=t.username),n&&(u.refreshToken=n);const c=i.Timeout.expires(a.HUMAN_TIMEOUT_MS);try{return await Promise.race([this.executeAndValidateCallback(u),c])}catch(e){if(i.TimeoutError.is(e))throw r.abort(),new o.MongoOIDCError(`OIDC callback timed out after ${a.HUMAN_TIMEOUT_MS}ms.`);throw e}finally{c.clear()}}}t.HumanCallbackWorkflow=u},72590:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MachineWorkflow=void 0;const r=n(16460),o=n(52060),i=n(16987);t.MachineWorkflow=class{constructor(e){this.cache=e,this.callback=this.withLock(this.getToken.bind(this)),this.lastExecutionTime=Date.now()-100}async execute(e,t){const n=await this.getTokenFromCacheOrEnv(e,t),r=(0,i.finishCommandDocument)(n);await e.command((0,o.ns)(t.source),r,void 0)}async reauthenticate(e,t){this.cache.hasAccessToken&&(e.accessToken===this.cache.getAccessToken()?(this.cache.removeAccessToken(),delete e.accessToken):e.accessToken=this.cache.getAccessToken()),await this.execute(e,t)}async speculativeAuth(e,t){if(!this.cache.hasAccessToken)return{};const n=await this.getTokenFromCacheOrEnv(e,t),r=(0,i.finishCommandDocument)(n);return r.db=t.source,{speculativeAuthenticate:r}}async getTokenFromCacheOrEnv(e,t){if(this.cache.hasAccessToken)return this.cache.getAccessToken();{const n=await this.callback(t);return this.cache.put({accessToken:n.access_token,expiresInSeconds:n.expires_in}),e.accessToken=n.access_token,n.access_token}}withLock(e){let t=Promise.resolve();return async n=>(await t,t=t.catch((()=>null)).then((async()=>{const t=Date.now()-this.lastExecutionTime;return t<=100&&await(0,r.setTimeout)(100-t),this.lastExecutionTime=Date.now(),await e(n)})),await t)}}},24257:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TokenCache=void 0;const r=n(86947);class o extends r.MongoDriverError{}t.TokenCache=class{get hasAccessToken(){return!!this.accessToken}get hasRefreshToken(){return!!this.refreshToken}get hasIdpInfo(){return!!this.idpInfo}getAccessToken(){if(!this.accessToken)throw new o("Attempted to get an access token when none exists.");return this.accessToken}getRefreshToken(){if(!this.refreshToken)throw new o("Attempted to get a refresh token when none exists.");return this.refreshToken}getIdpInfo(){if(!this.idpInfo)throw new o("Attempted to get IDP information when none exists.");return this.idpInfo}put(e,t){this.accessToken=e.accessToken,this.refreshToken=e.refreshToken,this.expiresInSeconds=e.expiresInSeconds,t&&(this.idpInfo=t)}removeAccessToken(){this.accessToken=void 0}removeRefreshToken(){this.refreshToken=void 0}}},5536:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TokenMachineWorkflow=void 0;const r=n(79896),o=n(86947),i=n(72590);class s extends i.MachineWorkflow{constructor(e){super(e)}async getToken(){const e=process.env.OIDC_TOKEN_FILE;if(!e)throw new o.MongoAWSError("OIDC_TOKEN_FILE must be set in the environment.");return{access_token:await r.promises.readFile(e,"utf8")}}}t.TokenMachineWorkflow=s},99626:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Plain=void 0;const r=n(63403),o=n(86947),i=n(52060),s=n(5644);class a extends s.AuthProvider{async auth(e){const{connection:t,credentials:n}=e;if(!n)throw new o.MongoMissingCredentialsError("AuthContext must provide credentials.");const{username:s,password:a}=n,u={saslStart:1,mechanism:"PLAIN",payload:new r.Binary(Buffer.from(`\0${s}\0${a}`)),autoAuthorize:1};await t.command((0,i.ns)("$external.$cmd"),u,void 0)}}t.Plain=a},24380:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AUTH_MECHS_AUTH_SRC_EXTERNAL=t.AuthMechanism=void 0,t.AuthMechanism=Object.freeze({MONGODB_AWS:"MONGODB-AWS",MONGODB_CR:"MONGODB-CR",MONGODB_DEFAULT:"DEFAULT",MONGODB_GSSAPI:"GSSAPI",MONGODB_PLAIN:"PLAIN",MONGODB_SCRAM_SHA1:"SCRAM-SHA-1",MONGODB_SCRAM_SHA256:"SCRAM-SHA-256",MONGODB_X509:"MONGODB-X509",MONGODB_OIDC:"MONGODB-OIDC"}),t.AUTH_MECHS_AUTH_SRC_EXTERNAL=new Set([t.AuthMechanism.MONGODB_GSSAPI,t.AuthMechanism.MONGODB_AWS,t.AuthMechanism.MONGODB_OIDC,t.AuthMechanism.MONGODB_X509])},9112:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ScramSHA256=t.ScramSHA1=void 0;const r=n(13767),o=n(76982),i=n(63403),s=n(86947),a=n(52060),u=n(5644),c=n(24380);class l extends u.AuthProvider{constructor(e){super(),this.cryptoMethod=e||"sha1"}async prepare(e,t){const n=this.cryptoMethod,r=t.credentials;if(!r)throw new s.MongoMissingCredentialsError("AuthContext must provide credentials.");const o=await(0,a.randomBytes)(24);return t.nonce=o,{...e,speculativeAuthenticate:{...p(n,r,o),db:r.source}}}async auth(e){const{reauthenticating:t,response:n}=e;return n?.speculativeAuthenticate&&!t?await d(this.cryptoMethod,n.speculativeAuthenticate,e):await async function(e,t){const{connection:n,credentials:r}=t;if(!r)throw new s.MongoMissingCredentialsError("AuthContext must provide credentials.");if(!t.nonce)throw new s.MongoInvalidArgumentError("AuthContext must contain a valid nonce property");const o=t.nonce,i=r.source,u=p(e,r,o),c=await n.command((0,a.ns)(`${i}.$cmd`),u,void 0);await d(e,c,t)}(this.cryptoMethod,e)}}function h(e){return e.replace("=","=3D").replace(",","=2C")}function f(e,t){return Buffer.concat([Buffer.from("n=","utf8"),Buffer.from(e,"utf8"),Buffer.from(",r=","utf8"),Buffer.from(t.toString("base64"),"utf8")])}function p(e,t,n){const r=h(t.username);return{saslStart:1,mechanism:"sha1"===e?c.AuthMechanism.MONGODB_SCRAM_SHA1:c.AuthMechanism.MONGODB_SCRAM_SHA256,payload:new i.Binary(Buffer.concat([Buffer.from("n,,","utf8"),f(r,n)])),autoAuthorize:1,options:{skipEmptyExchange:!0}}}async function d(e,t,n){const u=n.connection,c=n.credentials;if(!c)throw new s.MongoMissingCredentialsError("AuthContext must provide credentials.");if(!n.nonce)throw new s.MongoInvalidArgumentError("Unable to continue SCRAM without valid nonce");const l=n.nonce,p=c.source,d=h(c.username),A=c.password,v="sha256"===e?(0,r.saslprep)(A):function(e,t){if("string"!=typeof e)throw new s.MongoInvalidArgumentError("Username must be a string");if("string"!=typeof t)throw new s.MongoInvalidArgumentError("Password must be a string");if(0===t.length)throw new s.MongoInvalidArgumentError("Password cannot be empty");let n;try{n=o.createHash("md5")}catch(e){if(o.getFips())throw new Error("Auth mechanism SCRAM-SHA-1 is not supported in FIPS mode");throw e}return n.update(`${e}:mongo:${t}`,"utf8"),n.digest("hex")}(d,A),b=Buffer.isBuffer(t.payload)?new i.Binary(t.payload):t.payload,T=E(b),w=parseInt(T.i,10);if(w&&w<4096)throw new s.MongoRuntimeError(`Server returned an invalid iteration count ${w}`);const O=T.s,R=T.r;if(R.startsWith("nonce"))throw new s.MongoRuntimeError(`Server returned an invalid nonce: ${R}`);const S=`c=biws,r=${R}`,I=function(e,t,n,r){const i=[e,t.toString("base64"),n].join("_");if(null!=_[i])return _[i];const s=o.pbkdf2Sync(e,t,n,y[r],r);return g>=200&&(_={},g=0),_[i]=s,g+=1,s}(v,Buffer.from(O,"base64"),w,e),N=m(e,I,"Client Key"),C=m(e,I,"Server Key"),D=(L=e,M=N,o.createHash(L).update(M).digest());var L,M;const x=[f(d,l),b.toString("utf8"),S].join(","),B=[S,`p=${function(e,t){Buffer.isBuffer(e)||(e=Buffer.from(e)),Buffer.isBuffer(t)||(t=Buffer.from(t));const n=Math.max(e.length,t.length),r=[];for(let o=0;o{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.X509=void 0;const r=n(86947),o=n(52060),i=n(5644);class s extends i.AuthProvider{async prepare(e,t){const{credentials:n}=t;if(!n)throw new r.MongoMissingCredentialsError("AuthContext must provide credentials.");return{...e,speculativeAuthenticate:a(n)}}async auth(e){const t=e.connection,n=e.credentials;if(!n)throw new r.MongoMissingCredentialsError("AuthContext must provide credentials.");const i=e.response;i?.speculativeAuthenticate||await t.command((0,o.ns)("$external.$cmd"),a(n),void 0)}}function a(e){const t={authenticate:1,mechanism:"MONGODB-X509"};return e.username&&(t.user=e.username),t}t.X509=s},61643:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SENSITIVE_COMMANDS=t.CommandFailedEvent=t.CommandSucceededEvent=t.CommandStartedEvent=void 0;const r=n(32568),o=n(52060),i=n(50045);t.CommandStartedEvent=class{constructor(e,n,o){this.name=r.COMMAND_STARTED;const i=d(n),s=a(i),{address:u,connectionId:c,serviceId:h}=E(e);t.SENSITIVE_COMMANDS.has(s)&&(this.commandObj={},this.commandObj[s]=!0),this.address=u,this.connectionId=c,this.serviceId=h,this.requestId=n.requestId,this.databaseName=n.databaseName,this.commandName=s,this.command=l(s,i,i),this.serverConnectionId=o}get hasServiceId(){return!!this.serviceId}},t.CommandSucceededEvent=class{constructor(e,t,n,s,c){this.name=r.COMMAND_SUCCEEDED;const h=d(t),f=a(h),{address:p,connectionId:m,serviceId:_}=E(e);this.address=p,this.connectionId=m,this.serviceId=_,this.requestId=t.requestId,this.commandName=f,this.duration=(0,o.calculateDurationInMs)(s),this.reply=l(f,h,function(e,t){return t?e instanceof i.OpMsgRequest?(0,o.deepCopy)(t.result?t.result:t):e.query&&null!=e.query.$query?{ok:1,cursor:{id:(0,o.deepCopy)(t.cursorId),ns:u(e),firstBatch:(0,o.deepCopy)(t.documents)}}:(0,o.deepCopy)(t.result?t.result:t):t}(t,n)),this.serverConnectionId=c}get hasServiceId(){return!!this.serviceId}},t.CommandFailedEvent=class{constructor(e,t,n,i,s){this.name=r.COMMAND_FAILED;const u=d(t),c=a(u),{address:h,connectionId:f,serviceId:p}=E(e);this.address=h,this.connectionId=f,this.serviceId=p,this.requestId=t.requestId,this.commandName=c,this.duration=(0,o.calculateDurationInMs)(i),this.failure=l(c,u,n),this.serverConnectionId=s}get hasServiceId(){return!!this.serviceId}},t.SENSITIVE_COMMANDS=new Set(["authenticate","saslStart","saslContinue","getnonce","createUser","updateUser","copydbgetnonce","copydbsaslstart","copydb"]);const s=new Set(["hello",r.LEGACY_HELLO_COMMAND,r.LEGACY_HELLO_COMMAND_CAMEL_CASE]),a=e=>Object.keys(e)[0],u=e=>e.ns,c=e=>e.ns.split(".")[1],l=(e,n,r)=>t.SENSITIVE_COMMANDS.has(e)||s.has(e)&&n.speculativeAuthenticate?{}:r,h={$query:"filter",$orderby:"sort",$hint:"hint",$comment:"comment",$maxScan:"maxScan",$max:"max",$min:"min",$returnKey:"returnKey",$showDiskLoc:"showRecordId",$maxTimeMS:"maxTimeMS",$snapshot:"snapshot"},f={numberToSkip:"skip",numberToReturn:"batchSize",returnFieldSelector:"projection"},p=["tailable","oplogReplay","noCursorTimeout","awaitData","partial","exhaust"];function d(e){if(e instanceof i.OpMsgRequest)return(0,o.deepCopy)(e.command);if(e.query?.$query){let t;return"admin.$cmd"===e.ns?t=Object.assign({},e.query.$query):(t={find:c(e)},Object.keys(h).forEach((n=>{null!=e.query[n]&&(t[h[n]]=(0,o.deepCopy)(e.query[n]))}))),Object.keys(f).forEach((n=>{const r=n;null!=e[r]&&(t[f[r]]=(0,o.deepCopy)(e[r]))})),p.forEach((n=>{e[n]&&(t[n]=e[n])})),null!=e.pre32Limit&&(t.limit=e.pre32Limit),e.query.$explain?{explain:t}:t}const t={},n={};if(e.query){for(const n in e.query)t[n]=(0,o.deepCopy)(e.query[n]);n.query=t}for(const t in e)"query"!==t&&(n[t]=(0,o.deepCopy)(e[t]));return e.query?t:n}function E(e){let t;return"id"in e&&(t=e.id),{address:e.address,serviceId:e.serviceId,connectionId:t}}},50045:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.OpCompressedRequest=t.OpMsgResponse=t.OpMsgRequest=t.OpReply=t.OpQueryRequest=void 0;const r=n(63403),o=n(86947),i=n(3460),s=n(26447);let a=0;class u{constructor(e,t,n){this.databaseName=e,this.query=t;const r=`${e}.$cmd`;if("string"!=typeof e)throw new o.MongoRuntimeError("Database name must be a string for a query");if(null==t)throw new o.MongoRuntimeError("A query document must be specified for query");if(-1!==r.indexOf("\0"))throw new o.MongoRuntimeError("Namespace cannot contain a null character");this.ns=r,this.numberToSkip=n.numberToSkip||0,this.numberToReturn=n.numberToReturn||0,this.returnFieldSelector=n.returnFieldSelector||void 0,this.requestId=n.requestId??u.getRequestId(),this.pre32Limit=n.pre32Limit,this.serializeFunctions="boolean"==typeof n.serializeFunctions&&n.serializeFunctions,this.ignoreUndefined="boolean"==typeof n.ignoreUndefined&&n.ignoreUndefined,this.maxBsonSize=n.maxBsonSize||16777216,this.checkKeys="boolean"==typeof n.checkKeys&&n.checkKeys,this.batchSize=this.numberToReturn,this.tailable=!1,this.secondaryOk="boolean"==typeof n.secondaryOk&&n.secondaryOk,this.oplogReplay=!1,this.noCursorTimeout=!1,this.awaitData=!1,this.exhaust=!1,this.partial=!1}incRequestId(){this.requestId=a++}nextRequestId(){return a+1}static getRequestId(){return++a}toBin(){const e=[];let t=null,n=0;this.tailable&&(n|=2),this.secondaryOk&&(n|=4),this.oplogReplay&&(n|=8),this.noCursorTimeout&&(n|=16),this.awaitData&&(n|=32),this.exhaust&&(n|=64),this.partial&&(n|=128),this.batchSize!==this.numberToReturn&&(this.numberToReturn=this.batchSize);const o=Buffer.alloc(20+Buffer.byteLength(this.ns)+1+4+4);e.push(o);const i=r.serialize(this.query,{checkKeys:this.checkKeys,serializeFunctions:this.serializeFunctions,ignoreUndefined:this.ignoreUndefined});e.push(i),this.returnFieldSelector&&Object.keys(this.returnFieldSelector).length>0&&(t=r.serialize(this.returnFieldSelector,{checkKeys:this.checkKeys,serializeFunctions:this.serializeFunctions,ignoreUndefined:this.ignoreUndefined}),e.push(t));const a=o.length+i.length+(t?t.length:0);let u=4;return o[3]=a>>24&255,o[2]=a>>16&255,o[1]=a>>8&255,o[0]=255&a,o[u+3]=this.requestId>>24&255,o[u+2]=this.requestId>>16&255,o[u+1]=this.requestId>>8&255,o[u]=255&this.requestId,u+=4,o[u+3]=0,o[u+2]=0,o[u+1]=0,o[u]=0,u+=4,o[u+3]=s.OP_QUERY>>24&255,o[u+2]=s.OP_QUERY>>16&255,o[u+1]=s.OP_QUERY>>8&255,o[u]=255&s.OP_QUERY,u+=4,o[u+3]=n>>24&255,o[u+2]=n>>16&255,o[u+1]=n>>8&255,o[u]=255&n,u+=4,u=u+o.write(this.ns,u,"utf8")+1,o[u-1]=0,o[u+3]=this.numberToSkip>>24&255,o[u+2]=this.numberToSkip>>16&255,o[u+1]=this.numberToSkip>>8&255,o[u]=255&this.numberToSkip,u+=4,o[u+3]=this.numberToReturn>>24&255,o[u+2]=this.numberToReturn>>16&255,o[u+1]=this.numberToReturn>>8&255,o[u]=255&this.numberToReturn,u+=4,e}}t.OpQueryRequest=u,t.OpReply=class{constructor(e,t,n,r){this.index=0,this.sections=[],this.moreToCome=!1,this.parsed=!1,this.raw=e,this.data=n,this.opts=r??{useBigInt64:!1,promoteLongs:!0,promoteValues:!0,promoteBuffers:!1,bsonRegExp:!1},this.length=t.length,this.requestId=t.requestId,this.responseTo=t.responseTo,this.opCode=t.opCode,this.fromCompressed=t.fromCompressed,this.useBigInt64="boolean"==typeof this.opts.useBigInt64&&this.opts.useBigInt64,this.promoteLongs="boolean"!=typeof this.opts.promoteLongs||this.opts.promoteLongs,this.promoteValues="boolean"!=typeof this.opts.promoteValues||this.opts.promoteValues,this.promoteBuffers="boolean"==typeof this.opts.promoteBuffers&&this.opts.promoteBuffers,this.bsonRegExp="boolean"==typeof this.opts.bsonRegExp&&this.opts.bsonRegExp}isParsed(){return this.parsed}parse(){if(this.parsed)return this.sections[0];if(this.index=20,this.responseFlags=this.data.readInt32LE(0),this.cursorId=new r.Long(this.data.readInt32LE(4),this.data.readInt32LE(8)),this.startingFrom=this.data.readInt32LE(12),this.numberReturned=this.data.readInt32LE(16),this.numberReturned<0||this.numberReturned>2**32-1)throw new RangeError(`OP_REPLY numberReturned is an invalid array length ${this.numberReturned}`);this.cursorNotFound=!!(1&this.responseFlags),this.queryFailure=!!(2&this.responseFlags),this.shardConfigStale=!!(4&this.responseFlags),this.awaitCapable=!!(8&this.responseFlags);for(let e=0;e{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.makeSocket=t.LEGAL_TCP_SOCKET_OPTIONS=t.LEGAL_TLS_SOCKET_OPTIONS=t.prepareHandshakeDocument=t.performInitialHandshake=t.makeConnection=t.connect=void 0;const r=n(69278),o=n(64756),i=n(32568),s=n(33371),a=n(86947),u=n(52060),c=n(5644),l=n(24380),h=n(15307),f=n(26447);function p(e,t){let n=e.connectionType??h.Connection;return e.autoEncrypter&&(n=h.CryptoConnection),new n(t,e)}async function d(e,t){const n=t.credentials;if(n&&n.mechanism!==l.AuthMechanism.MONGODB_DEFAULT&&!t.authProviders.getOrCreateProvider(n.mechanism,n.mechanismProperties))throw new a.MongoInvalidArgumentError(`AuthMechanism '${n.mechanism}' not supported`);const r=new c.AuthContext(e,n,t);e.authContext=r;const o=await E(r),s={...t,raw:!1};"number"==typeof t.connectTimeoutMS&&(s.socketTimeoutMS=t.connectTimeoutMS);const h=(new Date).getTime(),p=await e.command((0,u.ns)("admin.$cmd"),o,s);"isWritablePrimary"in p||(p.isWritablePrimary=p[i.LEGACY_HELLO_COMMAND]),p.helloOk&&(e.helloOk=!0);const d=function(e,t){const n=Number(e.maxWireVersion),r=Number(e.minWireVersion),o=!Number.isNaN(n)&&n>=f.MIN_SUPPORTED_WIRE_VERSION,i=!Number.isNaN(r)&&r<=f.MAX_SUPPORTED_WIRE_VERSION;if(o){if(i)return null;const n=`Server at ${t.hostAddress} reports minimum wire version ${JSON.stringify(e.minWireVersion)}, but this version of the Node.js Driver requires at most ${f.MAX_SUPPORTED_WIRE_VERSION} (MongoDB ${f.MAX_SUPPORTED_SERVER_VERSION})`;return new a.MongoCompatibilityError(n)}const s=`Server at ${t.hostAddress} reports maximum wire version ${JSON.stringify(e.maxWireVersion)??0}, but this version of the Node.js Driver requires at least ${f.MIN_SUPPORTED_WIRE_VERSION} (MongoDB ${f.MIN_SUPPORTED_SERVER_VERSION})`;return new a.MongoCompatibilityError(s)}(p,t);if(d)throw d;if(t.loadBalanced&&!p.serviceId)throw new a.MongoCompatibilityError("Driver attempted to initialize in load balancing mode, but the server does not support this mode.");if(e.hello=p,e.lastHelloMS=(new Date).getTime()-h,!p.arbiterOnly&&n){r.response=p;const e=n.resolveAuthMechanism(p),o=t.authProviders.getOrCreateProvider(e.mechanism,e.mechanismProperties);if(!o)throw new a.MongoInvalidArgumentError(`No AuthProvider for ${e.mechanism} defined.`);try{await o.auth(r)}catch(e){throw e instanceof a.MongoError&&(e.addErrorLabel(a.MongoErrorLabel.HandshakeError),(0,a.needsRetryableWriteLabel)(e,p.maxWireVersion)&&e.addErrorLabel(a.MongoErrorLabel.RetryableWriteError)),e}}e.established=!0}async function E(e){const t=e.options,n=t.compressors?t.compressors:[],{serverApi:r}=e.connection,o=await t.extendedMetadata,s={[r?.version||!0===t.loadBalanced?"hello":i.LEGACY_HELLO_COMMAND]:1,helloOk:!0,client:o,compression:n};!0===t.loadBalanced&&(s.loadBalanced=!0);const u=e.credentials;if(u){if(u.mechanism===l.AuthMechanism.MONGODB_DEFAULT&&u.username){s.saslSupportedMechs=`${u.source}.${u.username}`;const t=e.options.authProviders.getOrCreateProvider(l.AuthMechanism.MONGODB_SCRAM_SHA256,u.mechanismProperties);if(!t)throw new a.MongoInvalidArgumentError(`No AuthProvider for ${l.AuthMechanism.MONGODB_SCRAM_SHA256} defined.`);return await t.prepare(s,e)}const t=e.options.authProviders.getOrCreateProvider(u.mechanism,u.mechanismProperties);if(!t)throw new a.MongoInvalidArgumentError(`No AuthProvider for ${u.mechanism} defined.`);return await t.prepare(s,e)}return s}function m(e){const n=e.hostAddress;if(!n)throw new a.MongoInvalidArgumentError('Option "hostAddress" is required');const r={};for(const n of t.LEGAL_TCP_SOCKET_OPTIONS)null!=e[n]&&(r[n]=e[n]);if("string"==typeof n.socketPath)return r.path=n.socketPath,r;if("string"==typeof n.host)return r.host=n.host,r.port=n.port,r;throw new a.MongoRuntimeError(`Unexpected HostAddress ${JSON.stringify(n)}`)}async function _(e){const n=e.tls??!1,i=e.noDelay??!0,c=e.connectTimeoutMS??3e4,l=e.existingSocket;let h;if(null!=e.proxyHost)return await async function(e){const t=u.HostAddress.fromHostPort(e.proxyHost??"",e.proxyPort??1080),n=await _({...e,hostAddress:t,tls:!1,proxyHost:void 0}),r=m(e);if("string"!=typeof r.host||"number"!=typeof r.port)throw new a.MongoInvalidArgumentError("Can only make Socks5 connections to TCP hosts");g??=function(){if(null==g){const e=(0,s.getSocks)();if("kModuleError"in e)throw e.kModuleError;g=e}return g}();try{const{socket:t}=await g.SocksClient.createConnection({existing_socket:n,timeout:e.connectTimeoutMS,command:"connect",destination:{host:r.host,port:r.port},proxy:{host:"iLoveJavaScript",port:0,type:5,userId:e.proxyUsername||void 0,password:e.proxyPassword||void 0}});return await _({...e,existingSocket:t,proxyHost:void 0})}catch(e){throw y("error",e)}}({...e,connectTimeoutMS:c});if(n){const n=o.connect(function(e){const n=m(e);for(const r of t.LEGAL_TLS_SOCKET_OPTIONS)null!=e[r]&&(n[r]=e[r]);return e.existingSocket&&(n.socket=e.existingSocket),null==n.servername&&n.host&&!r.isIP(n.host)&&(n.servername=n.host),n}(e));"function"==typeof n.disableRenegotiation&&n.disableRenegotiation(),h=n}else h=l||r.createConnection(m(e));h.setKeepAlive(!0,3e5),h.setTimeout(c),h.setNoDelay(i);let f=null;const{promise:p,resolve:d,reject:E}=(0,u.promiseWithResolvers)();if(l)d(h);else{const t=n?"secureConnect":"connect";h.once(t,(()=>d(h))).once("error",(e=>E(y("error",e)))).once("timeout",(()=>E(y("timeout")))).once("close",(()=>E(y("close")))),null!=e.cancellationToken&&(f=()=>E(y("cancel")),e.cancellationToken.once("cancel",f))}try{return h=await p,h}catch(e){throw h.destroy(),e}finally{h.setTimeout(0),h.removeAllListeners(),null!=f&&e.cancellationToken?.removeListener("cancel",f)}}t.connect=async function(e){let t=null;try{return t=p(e,await _(e)),await d(t,e),t}catch(e){throw t?.destroy(),e}},t.makeConnection=p,t.performInitialHandshake=d,t.prepareHandshakeDocument=E,t.LEGAL_TLS_SOCKET_OPTIONS=["ALPNProtocols","ca","cert","checkServerIdentity","ciphers","crl","ecdhCurve","key","minDHSize","passphrase","pfx","rejectUnauthorized","secureContext","secureProtocol","servername","session"],t.LEGAL_TCP_SOCKET_OPTIONS=["family","hints","localAddress","localPort","lookup"],t.makeSocket=_;let g=null;function y(e,t){switch(e){case"error":return new a.MongoNetworkError(a.MongoError.buildErrorMessage(t),{cause:t});case"timeout":return new a.MongoNetworkTimeoutError("connection timed out");case"close":return new a.MongoNetworkError("connection closed");case"cancel":return new a.MongoNetworkError("connection establishment was cancelled");default:return new a.MongoNetworkError("unknown network error")}}},15307:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CryptoConnection=t.SizedMessageTransform=t.Connection=t.hasSessionSupport=void 0;const r=n(2203),o=n(53557),i=n(32568),s=n(86947),a=n(60528),u=n(96327),c=n(50773),l=n(48446),h=n(94452),f=n(52060),p=n(61643),d=n(50045),E=n(4382),m=n(3460),_=n(90268),g=n(89086),y=n(13193);t.hasSessionSupport=function(e){return null!=e.description.logicalSessionTimeoutMinutes};class A extends u.TypedEventEmitter{constructor(e,t){super(),this.lastHelloMS=-1,this.helloOk=!1,this.delayedTimeoutId=null,this.closed=!1,this.clusterTime=null,this.error=null,this.dataEvents=null,this.socket=e,this.id=t.id,this.address=function(e,t){if(t.proxyHost)return t.hostAddress.toString();const{remoteAddress:n,remotePort:r}=e;return"string"==typeof n&&"number"==typeof r?f.HostAddress.fromHostPort(n,r).toString():(0,f.uuidV4)().toString("hex")}(e,t),this.socketTimeoutMS=t.socketTimeoutMS??0,this.monitorCommands=t.monitorCommands,this.serverApi=t.serverApi,this.mongoLogger=t.mongoLogger,this.established=!1,this.description=new E.StreamDescription(this.address,t),this.generation=t.generation,this.lastUseTime=(0,f.now)(),this.messageStream=this.socket.on("error",this.onError.bind(this)).pipe(new v({connection:this})).on("error",this.onError.bind(this)),this.socket.on("close",this.onClose.bind(this)),this.socket.on("timeout",this.onTimeout.bind(this))}get hello(){return this.description.hello}set hello(e){this.description.receiveResponse(e),Object.freeze(this.description)}get serviceId(){return this.hello?.serviceId}get loadBalanced(){return this.description.loadBalanced}get idleTime(){return(0,f.calculateDurationInMs)(this.lastUseTime)}get hasSessionSupport(){return null!=this.description.logicalSessionTimeoutMinutes}get supportsOpMsg(){return null!=this.description&&(0,f.maxWireVersion)(this)>=6&&!this.description.__nodejs_mock_server__}get shouldEmitAndLogCommand(){return(this.monitorCommands||this.established&&!this.authContext?.reauthenticating&&this.mongoLogger?.willLog(a.MongoLoggableComponent.COMMAND,a.SeverityLevel.DEBUG))??!1}markAvailable(){this.lastUseTime=(0,f.now)()}onError(e){this.cleanup(e)}onClose(){const e=`connection ${this.id} to ${this.address} closed`;this.cleanup(new s.MongoNetworkError(e))}onTimeout(){this.delayedTimeoutId=(0,o.setTimeout)((()=>{const e=`connection ${this.id} to ${this.address} timed out`,t=null==this.hello;this.cleanup(new s.MongoNetworkTimeoutError(e,{beforeHandshake:t}))}),1).unref()}destroy(){if(this.closed)return;this.removeAllListeners(A.PINNED),this.removeAllListeners(A.UNPINNED);const e=`connection ${this.id} to ${this.address} closed`;this.cleanup(new s.MongoNetworkError(e))}cleanup(e){this.closed||(this.socket.destroy(),this.error=e,this.dataEvents?.throw(e).then(void 0,f.squashError),this.closed=!0,this.emit(A.CLOSE))}prepareCommand(e,t,n){let r={...t};const o=(0,y.getReadPreference)(n),i=n?.session;let a=this.clusterTime;if(this.serverApi){const{version:e,strict:t,deprecationErrors:n}=this.serverApi;r.apiVersion=e,null!=t&&(r.apiStrict=t),null!=n&&(r.apiDeprecationErrors=n)}if(this.hasSessionSupport&&i){i.clusterTime&&a&&i.clusterTime.clusterTime.greaterThan(a.clusterTime)&&(a=i.clusterTime);const e=(0,h.applySession)(i,r,n);if(e)throw e}else if(i?.explicit)throw new s.MongoCompatibilityError("Current topology does not support sessions");a&&(r.$clusterTime=a),this.description.type!==l.ServerType.Standalone&&((0,y.isSharded)(this)||this.description.loadBalanced||!this.supportsOpMsg||!0!==n.directConnection||"primary"!==o?.mode?(0,y.isSharded)(this)&&!this.supportsOpMsg&&"primary"!==o?.mode?r={$query:r,$readPreference:o.toJSON()}:"primary"!==o?.mode&&(r.$readPreference=o.toJSON()):r.$readPreference=c.ReadPreference.primaryPreferred.toJSON());const u={numberToSkip:0,numberToReturn:-1,checkKeys:!1,secondaryOk:o.secondaryOk(),...n};return this.supportsOpMsg?new d.OpMsgRequest(e,r,u):new d.OpQueryRequest(e,r,u)}async*sendWire(e,t,n){this.throwIfAborted(),"number"==typeof t.socketTimeoutMS?this.socket.setTimeout(t.socketTimeoutMS):0!==this.socketTimeoutMS&&this.socket.setTimeout(this.socketTimeoutMS);try{if(await this.writeCommand(e,{agreedCompressor:this.description.compressor??"none",zlibCompressionLevel:this.description.zlibCompressionLevel}),t.noResponse)return void(yield g.MongoDBResponse.empty);this.throwIfAborted();for await(const e of this.readMany()){this.socket.setTimeout(0);const r=e.parse(),o=null==n||(0,g.isErrorResponse)(r)?new g.MongoDBResponse(r):new n(r);yield o,this.throwIfAborted(),"number"==typeof t.socketTimeoutMS?this.socket.setTimeout(t.socketTimeoutMS):0!==this.socketTimeoutMS&&this.socket.setTimeout(this.socketTimeoutMS)}}finally{this.socket.setTimeout(0)}}async*sendCommand(e,t,n,r){const o=this.prepareCommand(e.db,t,n);let i=0;this.shouldEmitAndLogCommand&&(i=(0,f.now)(),this.emitAndLogCommand(this.monitorCommands,A.COMMAND_STARTED,o.databaseName,this.established,new p.CommandStartedEvent(this,o,this.description.serverConnectionId)));const a=null!=n.documentsReturnedIn&&n.raw?{...n,raw:!1,fieldsAsRaw:{[n.documentsReturnedIn]:!0}}:n;let u,c;try{for await(u of(this.throwIfAborted(),this.sendWire(o,n,r))){if(c=void 0,null!=n.session&&(0,h.updateSessionFromResponse)(n.session,u),u.$clusterTime&&(this.clusterTime=u.$clusterTime,this.emit(A.CLUSTER_TIME_RECEIVED,u.$clusterTime)),u.has("writeConcernError"))throw c??=u.toObject(a),new s.MongoWriteConcernError(c.writeConcernError,c);if(u.isError)throw new s.MongoServerError(c??=u.toObject(a));this.shouldEmitAndLogCommand&&this.emitAndLogCommand(this.monitorCommands,A.COMMAND_SUCCEEDED,o.databaseName,this.established,new p.CommandSucceededEvent(this,o,n.noResponse?void 0:c??=u.toObject(a),i,this.description.serverConnectionId)),null==r?yield c??=u.toObject(a):yield u,this.throwIfAborted()}}catch(e){throw this.shouldEmitAndLogCommand&&("MongoWriteConcernError"===e.name?this.emitAndLogCommand(this.monitorCommands,A.COMMAND_SUCCEEDED,o.databaseName,this.established,new p.CommandSucceededEvent(this,o,n.noResponse?void 0:c??=u?.toObject(a),i,this.description.serverConnectionId)):this.emitAndLogCommand(this.monitorCommands,A.COMMAND_FAILED,o.databaseName,this.established,new p.CommandFailedEvent(this,o,e,i,this.description.serverConnectionId))),e}}async command(e,t,n={},r){this.throwIfAborted();for await(const o of this.sendCommand(e,t,n,r))return o;throw new s.MongoUnexpectedServerResponseError("Unable to get response from server")}exhaustCommand(e,t,n,r){(async()=>{this.throwIfAborted();for await(const o of this.sendCommand(e,t,n))r(void 0,o),this.throwIfAborted();throw new s.MongoUnexpectedServerResponseError("Server ended moreToCome unexpectedly")})().then(void 0,r)}throwIfAborted(){if(this.error)throw this.error}async writeCommand(e,t){const n="none"!==t.agreedCompressor&&d.OpCompressedRequest.canCompress(e)?new d.OpCompressedRequest(e,{agreedCompressor:t.agreedCompressor??"none",zlibCompressionLevel:t.zlibCompressionLevel??0}):e,r=Buffer.concat(await n.toBin());if(!this.socket.write(r))return await(0,f.once)(this.socket,"drain")}async*readMany(){try{this.dataEvents=(0,_.onData)(this.messageStream);for await(const e of this.dataEvents){const t=await(0,m.decompressResponse)(e);if(yield t,!t.moreToCome)return}}finally{this.dataEvents=null,this.throwIfAborted()}}}A.COMMAND_STARTED=i.COMMAND_STARTED,A.COMMAND_SUCCEEDED=i.COMMAND_SUCCEEDED,A.COMMAND_FAILED=i.COMMAND_FAILED,A.CLUSTER_TIME_RECEIVED=i.CLUSTER_TIME_RECEIVED,A.CLOSE=i.CLOSE,A.PINNED=i.PINNED,A.UNPINNED=i.UNPINNED,t.Connection=A;class v extends r.Transform{constructor({connection:e}){super({objectMode:!1}),this.bufferPool=new f.BufferPool,this.connection=e}_transform(e,t,n){null!=this.connection.delayedTimeoutId&&((0,o.clearTimeout)(this.connection.delayedTimeoutId),this.connection.delayedTimeoutId=null),this.bufferPool.append(e);const r=this.bufferPool.getInt32();return null==r?n():r<0?n(new s.MongoParseError(`Invalid message size: ${r}, too small`)):r>this.bufferPool.length?n():n(null,this.bufferPool.read(r))}}t.SizedMessageTransform=v,t.CryptoConnection=class extends A{constructor(e,t){super(e,t),this.autoEncrypter=t.autoEncrypter}async command(e,t,n,r){const{autoEncrypter:o}=this;if(!o)throw new s.MongoMissingDependencyError("No AutoEncrypter available for encryption",{dependencyName:"n/a"});const i=(0,f.maxWireVersion)(this);if(0===i)return await super.command(e,t,n,void 0);if(i<8)throw new s.MongoCompatibilityError("Auto-encryption requires a minimum MongoDB version of 4.2");const a=t.find||t.findAndModify?t.sort:null,u=t.createIndexes?t.indexes.map((e=>e.key)):null,c=await o.encrypt(e.toString(),t,n);if(null!=a&&(t.find||t.findAndModify)&&(c.sort=a),null!=u&&t.createIndexes)for(const[e,t]of u.entries())c.indexes[e].key=t;const l=await super.command(e,c,n,void 0);return await o.decrypt(l,n)}}},49740:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ConnectionPool=t.PoolState=void 0;const r=n(53557),o=n(32568),i=n(86947),s=n(96327),a=n(38286),u=n(52060),c=n(34469),l=n(15307),h=n(99730),f=n(53216),p=n(86634),d=Symbol("server"),E=Symbol("connections"),m=Symbol("pending"),_=Symbol("checkedOut"),g=Symbol("minPoolSizeTimer"),y=Symbol("generation"),A=Symbol("serviceGenerations"),v=Symbol("connectionCounter"),b=Symbol("cancellationToken"),T=Symbol("waitQueue"),w=Symbol("cancelled"),O=Symbol("metrics"),R=Symbol("processingWaitQueue"),S=Symbol("poolState");t.PoolState=Object.freeze({paused:"paused",ready:"ready",closed:"closed"});class I extends s.TypedEventEmitter{constructor(e,n){if(super(),this.options=Object.freeze({connectionType:l.Connection,...n,maxPoolSize:n.maxPoolSize??100,minPoolSize:n.minPoolSize??0,maxConnecting:n.maxConnecting??2,maxIdleTimeMS:n.maxIdleTimeMS??0,waitQueueTimeoutMS:n.waitQueueTimeoutMS??0,minPoolSizeCheckFrequencyMS:n.minPoolSizeCheckFrequencyMS??100,autoEncrypter:n.autoEncrypter}),this.options.minPoolSize>this.options.maxPoolSize)throw new i.MongoInvalidArgumentError("Connection pool minimum size must not be greater than maximum pool size");this[S]=t.PoolState.paused,this[d]=e,this[E]=new u.List,this[m]=0,this[_]=new Set,this[g]=void 0,this[y]=0,this[A]=new Map,this[v]=(0,u.makeCounter)(1),this[b]=new s.CancellationToken,this[b].setMaxListeners(1/0),this[T]=new u.List,this[O]=new p.ConnectionPoolMetrics,this[R]=!1,this.mongoLogger=this[d].topology.client?.mongoLogger,this.component="connection",process.nextTick((()=>{this.emitAndLog(I.CONNECTION_POOL_CREATED,new h.ConnectionPoolCreatedEvent(this))}))}get address(){return this.options.hostAddress.toString()}get closed(){return this[S]===t.PoolState.closed}get generation(){return this[y]}get totalConnectionCount(){return this.availableConnectionCount+this.pendingConnectionCount+this.currentCheckedOutCount}get availableConnectionCount(){return this[E].length}get pendingConnectionCount(){return this[m]}get currentCheckedOutCount(){return this[_].size}get waitQueueSize(){return this[T].length}get loadBalanced(){return this.options.loadBalanced}get serviceGenerations(){return this[A]}get serverError(){return this[d].description.error}get checkedOutConnections(){return this[_]}waitQueueErrorMetrics(){return this[O].info(this.options.maxPoolSize)}ready(){this[S]===t.PoolState.paused&&(this[S]=t.PoolState.ready,this.emitAndLog(I.CONNECTION_POOL_READY,new h.ConnectionPoolReadyEvent(this)),(0,r.clearTimeout)(this[g]),this.ensureMinPoolSize())}async checkOut(){this.emitAndLog(I.CONNECTION_CHECK_OUT_STARTED,new h.ConnectionCheckOutStartedEvent(this));const e=this.options.waitQueueTimeoutMS,{promise:t,resolve:n,reject:r}=(0,u.promiseWithResolvers)(),o={resolve:n,reject:r,timeout:a.Timeout.expires(e)};this[T].push(o),process.nextTick((()=>this.processWaitQueue()));try{return await Promise.race([t,o.timeout])}catch(e){if(a.TimeoutError.is(e))throw o[w]=!0,o.timeout.clear(),this.emitAndLog(I.CONNECTION_CHECK_OUT_FAILED,new h.ConnectionCheckOutFailedEvent(this,"timeout")),new f.WaitQueueTimeoutError(this.loadBalanced?this.waitQueueErrorMetrics():"Timed out while checking out a connection from connection pool",this.address);throw e}}checkIn(e){if(!this[_].has(e))return;const t=this.closed,n=this.connectionIsStale(e),r=!!(t||n||e.closed);if(r||(e.markAvailable(),this[E].unshift(e)),this[_].delete(e),this.emitAndLog(I.CONNECTION_CHECKED_IN,new h.ConnectionCheckedInEvent(this,e)),r){const n=e.closed?"error":t?"poolClosed":"stale";this.destroyConnection(e,n)}process.nextTick((()=>this.processWaitQueue()))}clear(e={}){if(this.closed)return;if(this.loadBalanced){const{serviceId:t}=e;if(!t)throw new i.MongoRuntimeError("ConnectionPool.clear() called in load balanced mode with no serviceId.");const n=t.toHexString(),r=this.serviceGenerations.get(n);if(null==r)throw new i.MongoRuntimeError("Service generations are required in load balancer mode.");return this.serviceGenerations.set(n,r+1),void this.emitAndLog(I.CONNECTION_POOL_CLEARED,new h.ConnectionPoolClearedEvent(this,{serviceId:t}))}const n=e.interruptInUseConnections??!1,r=this[y];this[y]+=1;const o=this[S]===t.PoolState.paused;this[S]=t.PoolState.paused,this.clearMinPoolSizeTimer(),o||this.emitAndLog(I.CONNECTION_POOL_CLEARED,new h.ConnectionPoolClearedEvent(this,{interruptInUseConnections:n})),n&&process.nextTick((()=>this.interruptInUseConnections(r))),this.processWaitQueue()}interruptInUseConnections(e){for(const t of this[_])t.generation<=e&&(t.onError(new f.PoolClearedOnNetworkError(this)),this.checkIn(t))}close(){if(!this.closed){this[b].emit("cancel"),"function"==typeof this[v].return&&this[v].return(void 0),this[S]=t.PoolState.closed,this.clearMinPoolSizeTimer(),this.processWaitQueue();for(const e of this[E])this.emitAndLog(I.CONNECTION_CLOSED,new h.ConnectionClosedEvent(this,e,"poolClosed")),e.destroy();this[E].clear(),this.emitAndLog(I.CONNECTION_POOL_CLOSED,new h.ConnectionPoolClosedEvent(this))}}async reauthenticate(e){const t=e.authContext;if(!t)throw new i.MongoRuntimeError("No auth context found on connection.");const n=t.credentials;if(!n)throw new i.MongoMissingCredentialsError("Connection is missing credentials when asked to reauthenticate");const r=n.resolveAuthMechanism(e.hello),o=this[d].topology.client.s.authProviders.getOrCreateProvider(r.mechanism,r.mechanismProperties);if(!o)throw new i.MongoMissingCredentialsError(`Reauthenticate failed due to no auth provider for ${n.mechanism}`);await o.reauth(t)}clearMinPoolSizeTimer(){const e=this[g];e&&(0,r.clearTimeout)(e)}destroyConnection(e,t){this.emitAndLog(I.CONNECTION_CLOSED,new h.ConnectionClosedEvent(this,e,t)),e.destroy()}connectionIsStale(e){const t=e.serviceId;if(this.loadBalanced&&t){const n=t.toHexString(),r=this.serviceGenerations.get(n);return e.generation!==r}return e.generation!==this[y]}connectionIsIdle(e){return!!(this.options.maxIdleTimeMS&&e.idleTime>this.options.maxIdleTimeMS)}destroyConnectionIfPerished(e){const t=this.connectionIsStale(e),n=this.connectionIsIdle(e);if(!t&&!n&&!e.closed)return!1;const r=e.closed?"error":t?"stale":"idle";return this.destroyConnection(e,r),!0}createConnection(e){const n={...this.options,id:this[v].next().value,generation:this[y],cancellationToken:this[b],mongoLogger:this.mongoLogger,authProviders:this[d].topology.client.s.authProviders};this[m]++,this.emitAndLog(I.CONNECTION_CREATED,new h.ConnectionCreatedEvent(this,{id:n.id})),(0,c.connect)(n).then((n=>{if(this[S]!==t.PoolState.ready)return this[m]--,n.destroy(),void e(this.closed?new f.PoolClosedError(this):new f.PoolClearedError(this));for(const e of[...o.APM_EVENTS,l.Connection.CLUSTER_TIME_RECEIVED])n.on(e,(t=>this.emit(e,t)));if(this.loadBalanced){n.on(l.Connection.PINNED,(e=>this[O].markPinned(e))),n.on(l.Connection.UNPINNED,(e=>this[O].markUnpinned(e)));const e=n.serviceId;if(e){let t;const r=e.toHexString();(t=this.serviceGenerations.get(r))?n.generation=t:(this.serviceGenerations.set(r,0),n.generation=0)}}n.markAvailable(),this.emitAndLog(I.CONNECTION_READY,new h.ConnectionReadyEvent(this,n)),this[m]--,e(void 0,n)}),(t=>{this[m]--,this.emitAndLog(I.CONNECTION_CLOSED,new h.ConnectionClosedEvent(this,{id:n.id,serviceId:void 0},"error",t)),(t instanceof i.MongoNetworkError||t instanceof i.MongoServerError)&&(t.connectionGeneration=n.generation),e(t??new i.MongoRuntimeError("Connection creation failed without error"))}))}ensureMinPoolSize(){const e=this.options.minPoolSize;this[S]===t.PoolState.ready&&0!==e&&(this[E].prune((e=>this.destroyConnectionIfPerished(e))),this.totalConnectionCount{e&&this[d].handleError(e),!e&&n&&(this[E].push(n),process.nextTick((()=>this.processWaitQueue()))),this[S]===t.PoolState.ready&&((0,r.clearTimeout)(this[g]),this[g]=(0,r.setTimeout)((()=>this.ensureMinPoolSize()),this.options.minPoolSizeCheckFrequencyMS))})):((0,r.clearTimeout)(this[g]),this[g]=(0,r.setTimeout)((()=>this.ensureMinPoolSize()),this.options.minPoolSizeCheckFrequencyMS)))}processWaitQueue(){if(this[R])return;for(this[R]=!0;this.waitQueueSize;){const e=this[T].first();if(!e){this[T].shift();continue}if(e[w]){this[T].shift();continue}if(this[S]!==t.PoolState.ready){const t=this.closed?"poolClosed":"connectionError",n=this.closed?new f.PoolClosedError(this):new f.PoolClearedError(this);this.emitAndLog(I.CONNECTION_CHECK_OUT_FAILED,new h.ConnectionCheckOutFailedEvent(this,t,n)),e.timeout.clear(),this[T].shift(),e.reject(n);continue}if(!this.availableConnectionCount)break;const n=this[E].shift();if(!n)break;this.destroyConnectionIfPerished(n)||(this[_].add(n),this.emitAndLog(I.CONNECTION_CHECKED_OUT,new h.ConnectionCheckedOutEvent(this,n)),e.timeout.clear(),this[T].shift(),e.resolve(n))}const{maxPoolSize:e,maxConnecting:n}=this.options;for(;this.waitQueueSize>0&&this.pendingConnectionCount{e[w]?!t&&n&&this[E].push(n):(t?(this.emitAndLog(I.CONNECTION_CHECK_OUT_FAILED,new h.ConnectionCheckOutFailedEvent(this,"connectionError",t)),e.reject(t)):n&&(this[_].add(n),this.emitAndLog(I.CONNECTION_CHECKED_OUT,new h.ConnectionCheckedOutEvent(this,n)),e.resolve(n)),e.timeout.clear()),process.nextTick((()=>this.processWaitQueue()))}))}this[R]=!1}}I.CONNECTION_POOL_CREATED=o.CONNECTION_POOL_CREATED,I.CONNECTION_POOL_CLOSED=o.CONNECTION_POOL_CLOSED,I.CONNECTION_POOL_CLEARED=o.CONNECTION_POOL_CLEARED,I.CONNECTION_POOL_READY=o.CONNECTION_POOL_READY,I.CONNECTION_CREATED=o.CONNECTION_CREATED,I.CONNECTION_READY=o.CONNECTION_READY,I.CONNECTION_CLOSED=o.CONNECTION_CLOSED,I.CONNECTION_CHECK_OUT_STARTED=o.CONNECTION_CHECK_OUT_STARTED,I.CONNECTION_CHECK_OUT_FAILED=o.CONNECTION_CHECK_OUT_FAILED,I.CONNECTION_CHECKED_OUT=o.CONNECTION_CHECKED_OUT,I.CONNECTION_CHECKED_IN=o.CONNECTION_CHECKED_IN,t.ConnectionPool=I},99730:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ConnectionPoolClearedEvent=t.ConnectionCheckedInEvent=t.ConnectionCheckedOutEvent=t.ConnectionCheckOutFailedEvent=t.ConnectionCheckOutStartedEvent=t.ConnectionClosedEvent=t.ConnectionReadyEvent=t.ConnectionCreatedEvent=t.ConnectionPoolClosedEvent=t.ConnectionPoolReadyEvent=t.ConnectionPoolCreatedEvent=t.ConnectionPoolMonitoringEvent=void 0;const r=n(32568);class o{constructor(e){this.time=new Date,this.address=e.address}}t.ConnectionPoolMonitoringEvent=o,t.ConnectionPoolCreatedEvent=class extends o{constructor(e){super(e),this.name=r.CONNECTION_POOL_CREATED;const{maxConnecting:t,maxPoolSize:n,minPoolSize:o,maxIdleTimeMS:i,waitQueueTimeoutMS:s}=e.options;this.options={maxConnecting:t,maxPoolSize:n,minPoolSize:o,maxIdleTimeMS:i,waitQueueTimeoutMS:s}}},t.ConnectionPoolReadyEvent=class extends o{constructor(e){super(e),this.name=r.CONNECTION_POOL_READY}},t.ConnectionPoolClosedEvent=class extends o{constructor(e){super(e),this.name=r.CONNECTION_POOL_CLOSED}},t.ConnectionCreatedEvent=class extends o{constructor(e,t){super(e),this.name=r.CONNECTION_CREATED,this.connectionId=t.id}},t.ConnectionReadyEvent=class extends o{constructor(e,t){super(e),this.name=r.CONNECTION_READY,this.connectionId=t.id}},t.ConnectionClosedEvent=class extends o{constructor(e,t,n,o){super(e),this.name=r.CONNECTION_CLOSED,this.connectionId=t.id,this.reason=n,this.serviceId=t.serviceId,this.error=o??null}},t.ConnectionCheckOutStartedEvent=class extends o{constructor(e){super(e),this.name=r.CONNECTION_CHECK_OUT_STARTED}},t.ConnectionCheckOutFailedEvent=class extends o{constructor(e,t,n){super(e),this.name=r.CONNECTION_CHECK_OUT_FAILED,this.reason=t,this.error=n}},t.ConnectionCheckedOutEvent=class extends o{constructor(e,t){super(e),this.name=r.CONNECTION_CHECKED_OUT,this.connectionId=t.id}},t.ConnectionCheckedInEvent=class extends o{constructor(e,t){super(e),this.name=r.CONNECTION_CHECKED_IN,this.connectionId=t.id}},t.ConnectionPoolClearedEvent=class extends o{constructor(e,t={}){super(e),this.name=r.CONNECTION_POOL_CLEARED,this.serviceId=t.serviceId,this.interruptInUseConnections=t.interruptInUseConnections}}},53216:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.WaitQueueTimeoutError=t.PoolClearedOnNetworkError=t.PoolClearedError=t.PoolClosedError=void 0;const r=n(86947);class o extends r.MongoDriverError{constructor(e){super("Attempted to check out a connection from closed connection pool"),this.address=e.address}get name(){return"MongoPoolClosedError"}}t.PoolClosedError=o;class i extends r.MongoNetworkError{constructor(e,t){super(t||`Connection pool for ${e.address} was cleared because another operation failed with: "${e.serverError?.message}"`,e.serverError?{cause:e.serverError}:void 0),this.address=e.address,this.addErrorLabel(r.MongoErrorLabel.PoolRequstedRetry)}get name(){return"MongoPoolClearedError"}}t.PoolClearedError=i,t.PoolClearedOnNetworkError=class extends i{constructor(e){super(e,`Connection to ${e.address} interrupted due to server monitor timeout`)}get name(){return"PoolClearedOnNetworkError"}};class s extends r.MongoDriverError{constructor(e,t){super(e),this.address=t}get name(){return"MongoWaitQueueTimeoutError"}}t.WaitQueueTimeoutError=s},96088:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getFAASEnv=t.addContainerMetadata=t.makeClientMetadata=t.LimitedSizeDocument=void 0;const r=n(70857),o=n(932),i=n(63403),s=n(86947),a=n(52060),u=n(78790).rE;class c{constructor(e){this.maxSize=e,this.document=new Map,this.documentSize=5}ifItFitsItSits(e,t){const n=i.BSON.serialize((new Map).set(e,t)).byteLength-5;return!(n+this.documentSize>this.maxSize||(this.documentSize+=n,this.document.set(e,t),0))}toObject(){return i.BSON.deserialize(i.BSON.serialize(this.document),{promoteLongs:!1,promoteBuffers:!1,promoteValues:!1,useBigInt64:!1})}}let l;function h(){const{AWS_EXECUTION_ENV:e="",AWS_LAMBDA_RUNTIME_API:t="",FUNCTIONS_WORKER_RUNTIME:n="",K_SERVICE:r="",FUNCTION_NAME:s="",VERCEL:a="",AWS_LAMBDA_FUNCTION_MEMORY_SIZE:u="",AWS_REGION:c="",FUNCTION_MEMORY_MB:l="",FUNCTION_REGION:h="",FUNCTION_TIMEOUT_SEC:f="",VERCEL_REGION:p=""}=o.env,d=e.startsWith("AWS_Lambda_")||t.length>0,E=n.length>0,m=r.length>0||s.length>0,_=a.length>0,g=new Map;return!_||E||m?d&&!(E||m||_)?(c.length>0&&g.set("region",c),u.length>0&&Number.isInteger(+u)&&g.set("memory_mb",new i.Int32(u)),g.set("name","aws.lambda"),g):E&&!(m||d||_)?(g.set("name","azure.func"),g):m&&!(E||d||_)?(h.length>0&&g.set("region",h),l.length>0&&Number.isInteger(+l)&&g.set("memory_mb",new i.Int32(l)),f.length>0&&Number.isInteger(+f)&&g.set("timeout_sec",new i.Int32(f)),g.set("name","gcp.func"),g):null:(p.length>0&&g.set("region",p),g.set("name","vercel"),g)}t.LimitedSizeDocument=c,t.makeClientMetadata=function(e){const t=new c(512),{appName:n=""}=e;if(n.length>0){const r=Buffer.byteLength(n,"utf8")<=128?e.appName:Buffer.from(n,"utf8").subarray(0,128).toString("utf8");t.ifItFitsItSits("application",{name:r})}const{name:i="",version:a="",platform:l=""}=e.driverInfo,f={name:i.length>0?`nodejs|${i}`:"nodejs",version:a.length>0?`${u}|${a}`:u};if(!t.ifItFitsItSits("driver",f))throw new s.MongoInvalidArgumentError("Unable to include driverInfo name and version, metadata cannot exceed 512 bytes");let p="Deno"in globalThis?`Deno v${"string"==typeof Deno?.version?.deno?Deno?.version?.deno:"0.0.0-unknown"}, ${r.endianness()}`:"Bun"in globalThis?`Bun v${"string"==typeof Bun?.version?Bun?.version:"0.0.0-unknown"}, ${r.endianness()}`:`Node.js ${o.version}, ${r.endianness()}`;if(l.length>0&&(p=`${p}|${l}`),!t.ifItFitsItSits("platform",p))throw new s.MongoInvalidArgumentError("Unable to include driverInfo platform, metadata cannot exceed 512 bytes");const d=(new Map).set("name",o.platform).set("architecture",o.arch).set("version",r.release()).set("type",r.type());if(!t.ifItFitsItSits("os",d))for(const e of d.keys()){if(d.delete(e),0===d.size)break;if(t.ifItFitsItSits("os",d))break}const E=h();if(null!=E&&!t.ifItFitsItSits("env",E))for(const e of E.keys()){if(E.delete(e),0===E.size)break;if(t.ifItFitsItSits("env",E))break}return t.toObject()},t.addContainerMetadata=async function(e){const t=await async function(){const e={};l??=(0,a.fileIsAccessible)("/.dockerenv");const t=await l,{KUBERNETES_SERVICE_HOST:n=""}=o.env,r=n.length>0;return t&&(e.runtime="docker"),r&&(e.orchestrator="kubernetes"),e}();if(0===Object.keys(t).length)return e;const n=new c(512),r={...e?.env,container:t};for(const[t,o]of Object.entries(e))"env"!==t?n.ifItFitsItSits(t,o):n.ifItFitsItSits("env",r)||n.ifItFitsItSits("env",o);return"env"in e||n.ifItFitsItSits("env",r),n.toObject()},t.getFAASEnv=h},86634:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ConnectionPoolMetrics=void 0;class n{constructor(){this.txnConnections=0,this.cursorConnections=0,this.otherConnections=0}markPinned(e){e===n.TXN?this.txnConnections+=1:e===n.CURSOR?this.cursorConnections+=1:this.otherConnections+=1}markUnpinned(e){e===n.TXN?this.txnConnections-=1:e===n.CURSOR?this.cursorConnections-=1:this.otherConnections-=1}info(e){return`Timed out while checking out a connection from connection pool: maxPoolSize: ${e}, connections in use by cursors: ${this.cursorConnections}, connections in use by transactions: ${this.txnConnections}, connections in use by other operations: ${this.otherConnections}`}reset(){this.txnConnections=0,this.cursorConnections=0,this.otherConnections=0}}n.TXN="txn",n.CURSOR="cursor",n.OTHER="other",t.ConnectionPoolMetrics=n},4382:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.StreamDescription=void 0;const r=n(63403),o=n(48446),i=n(66029),s=["minWireVersion","maxWireVersion","maxBsonObjectSize","maxMessageSizeBytes","maxWriteBatchSize","logicalSessionTimeoutMinutes"];t.StreamDescription=class{constructor(e,t){this.hello=null,this.address=e,this.type=o.ServerType.Unknown,this.minWireVersion=void 0,this.maxWireVersion=void 0,this.maxBsonObjectSize=16777216,this.maxMessageSizeBytes=48e6,this.maxWriteBatchSize=1e5,this.logicalSessionTimeoutMinutes=t?.logicalSessionTimeoutMinutes,this.loadBalanced=!!t?.loadBalanced,this.compressors=t&&t.compressors&&Array.isArray(t.compressors)?t.compressors:[],this.serverConnectionId=null}receiveResponse(e){if(null!=e){this.hello=e,this.type=(0,i.parseServerType)(e),this.serverConnectionId="connectionId"in e?this.parseServerConnectionID(e.connectionId):null;for(const t of s)null!=e[t]&&(this[t]=e[t]),"__nodejs_mock_server__"in e&&(this.__nodejs_mock_server__=e.__nodejs_mock_server__);e.compression&&(this.compressor=this.compressors.filter((t=>e.compression?.includes(t)))[0])}}parseServerConnectionID(e){return r.Long.isLong(e)?e.toBigInt():BigInt(e)}}},3460:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.decompressResponse=t.compressCommand=t.decompress=t.compress=t.uncompressibleCommands=t.Compressor=void 0;const r=n(39023),o=n(43106),i=n(32568),s=n(33371),a=n(86947),u=n(50045),c=n(26447);t.Compressor=Object.freeze({none:0,snappy:1,zlib:2,zstd:3}),t.uncompressibleCommands=new Set([i.LEGACY_HELLO_COMMAND,"saslStart","saslContinue","getnonce","authenticate","createUser","updateUser","copydbSaslStart","copydbgetnonce","copydb"]);const l=(0,r.promisify)(o.inflate.bind(o)),h=(0,r.promisify)(o.deflate.bind(o));let f,p=null;function d(){if(null==p){const e=(0,s.getSnappy)();if("kModuleError"in e)throw e.kModuleError;p=e}return p}async function E(e,n){if(e!==t.Compressor.snappy&&e!==t.Compressor.zstd&&e!==t.Compressor.zlib&&e!==t.Compressor.none)throw new a.MongoDecompressionError(`Server sent message compressed using an unsupported compressor. (Received compressor ID ${e})`);switch(e){case t.Compressor.snappy:return p??=d(),await p.uncompress(n,{asBuffer:!0});case t.Compressor.zstd:if(m(),"kModuleError"in f)throw f.kModuleError;return await f.decompress(n);case t.Compressor.zlib:return await l(n);default:return n}}function m(){f||(f=(0,s.getZstdLibrary)())}t.compress=async function(e,t){const n={};switch(e.agreedCompressor){case"snappy":return p??=d(),await p.compress(t);case"zstd":if(m(),"kModuleError"in f)throw f.kModuleError;return await f.compress(t,3);case"zlib":return e.zlibCompressionLevel&&(n.level=e.zlibCompressionLevel),await h(t,n);default:throw new a.MongoInvalidArgumentError(`Unknown compressor ${e.agreedCompressor} failed to compress`)}},t.decompress=E,t.compressCommand=async function(e,t){const n="none"!==t.agreedCompressor&&u.OpCompressedRequest.canCompress(e)?new u.OpCompressedRequest(e,{agreedCompressor:t.agreedCompressor??"none",zlibCompressionLevel:t.zlibCompressionLevel??0}):e,r=await n.toBin();return Buffer.concat(r)},t.decompressResponse=async function(e){const t={length:e.readInt32LE(0),requestId:e.readInt32LE(4),responseTo:e.readInt32LE(8),opCode:e.readInt32LE(12)};if(t.opCode!==c.OP_COMPRESSED){const n=t.opCode===c.OP_MSG?u.OpMsgResponse:u.OpReply,r=e.subarray(16);return new n(e,t,r)}const n={...t,fromCompressed:!0,opCode:e.readInt32LE(16),length:e.readInt32LE(20)},r=e[24],o=e.slice(25),i=n.opCode===c.OP_MSG?u.OpMsgResponse:u.OpReply,s=await E(r,o);if(s.length!==n.length)throw new a.MongoDecompressionError("Message body and message header must be the same length");return new i(e,n,s)}},26447:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.OP_MSG=t.OP_COMPRESSED=t.OP_DELETE=t.OP_QUERY=t.OP_INSERT=t.OP_UPDATE=t.OP_REPLY=t.MIN_SUPPORTED_QE_SERVER_VERSION=t.MIN_SUPPORTED_QE_WIRE_VERSION=t.MAX_SUPPORTED_WIRE_VERSION=t.MIN_SUPPORTED_WIRE_VERSION=t.MAX_SUPPORTED_SERVER_VERSION=t.MIN_SUPPORTED_SERVER_VERSION=void 0,t.MIN_SUPPORTED_SERVER_VERSION="3.6",t.MAX_SUPPORTED_SERVER_VERSION="7.0",t.MIN_SUPPORTED_WIRE_VERSION=6,t.MAX_SUPPORTED_WIRE_VERSION=21,t.MIN_SUPPORTED_QE_WIRE_VERSION=21,t.MIN_SUPPORTED_QE_SERVER_VERSION="7.0",t.OP_REPLY=1,t.OP_UPDATE=2001,t.OP_INSERT=2002,t.OP_QUERY=2004,t.OP_DELETE=2006,t.OP_COMPRESSED=2012,t.OP_MSG=2013},90268:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.onData=void 0;const r=n(52060);t.onData=function(e){const t=new r.List,n=new r.List;let o=null,i=!1;const s={next(){const e=t.shift();if(null!=e)return Promise.resolve({value:e,done:!1});if(null!=o){const e=Promise.reject(o);return o=null,e}if(i)return c();const{promise:s,resolve:a,reject:u}=(0,r.promiseWithResolvers)();return n.push({resolve:a,reject:u}),s},return:()=>c(),throw:e=>(u(e),Promise.resolve({value:void 0,done:!0})),[Symbol.asyncIterator](){return this}};return e.on("data",a),e.on("error",u),s;function a(e){const r=n.shift();null!=r?r.resolve({value:e,done:!1}):t.push(e)}function u(e){const t=n.shift();null!=t?t.reject(e):o=e,c()}function c(){e.off("data",a),e.off("error",u),i=!0;const t={value:void 0,done:i};for(const e of n)e.resolve(t);return Promise.resolve(t)}}},71359:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.OnDemandDocument=void 0;const r=n(63403);class o{constructor(e,t=0,n=!1){this.bson=e,this.offset=t,this.isArray=n,this.cache=Object.create(null),this.indexFound=Object.create(null),this.elements=(0,r.parseToElementsToArray)(this.bson,t)}isElementName(e,t){const n=t[2],r=t[1];if(e.length!==n)return!1;for(let t=0;te-4)throw new r.BSONError("Binary type with subtype 0x02 contains too long binary size");if(t{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CursorResponse=t.MongoDBResponse=t.isErrorResponse=void 0;const r=n(63403),o=n(86947),i=n(52060),s=n(71359);t.isErrorResponse=function(e){const t=(0,r.parseToElementsToArray)(e,0);for(let n=0;n>32n&0xffffffffn));const u=s.get("ns",r.BSONType.string);if(null!=u&&(this.ns=(0,i.ns)(u)),s.has("firstBatch"))this.batch=s.get("firstBatch",r.BSONType.array,!0);else{if(!s.has("nextBatch"))throw new o.MongoUnexpectedServerResponseError("Cursor document did not contain a batch");this.batch=s.get("nextBatch",r.BSONType.array,!0)}this.batchSize=this.batch.size()}get length(){return Math.max(this.batchSize-this.iterated,0)}shift(e){if(this.iterated>=this.batchSize)return null;const t=this.batch.get(this.iterated,r.BSONType.object,!0)??null;return this.iterated+=1,e?.raw?t.toBytes():t.toObject(e)}clear(){this.iterated=this.batchSize}pushMany(){throw new Error("pushMany Unsupported method")}push(){throw new Error("push Unsupported method")}}u.emptyGetMore={id:new r.Long(0),length:0,shift:()=>null},t.CursorResponse=u},13193:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isSharded=t.getReadPreference=void 0;const r=n(86947),o=n(50773),i=n(48446),s=n(42027);t.getReadPreference=function(e){let t=e?.readPreference??o.ReadPreference.primary;if("string"==typeof t&&(t=o.ReadPreference.fromString(t)),!(t instanceof o.ReadPreference))throw new r.MongoInvalidArgumentError('Option "readPreference" must be a ReadPreference instance');return t},t.isSharded=function(e){return null!=e&&(!(!e.description||e.description.type!==i.ServerType.Mongos)||!!(e.description&&e.description instanceof s.TopologyDescription)&&Array.from(e.description.servers.values()).some((e=>e.type===i.ServerType.Mongos)))}},36653:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Collection=void 0;const r=n(63403),o=n(42795),i=n(5702),s=n(9272),a=n(24091),u=n(79614),c=n(5058),l=n(8159),h=n(86947),f=n(18062),p=n(64303),d=n(37454),E=n(20321),m=n(11042),_=n(5415),g=n(99264),y=n(86437),A=n(31244),v=n(87988),b=n(42011),T=n(10428),w=n(94716),O=n(5964),R=n(38636),S=n(91793),I=n(74025),N=n(48703),C=n(38938),D=n(50773),L=n(52060),M=n(98349);t.Collection=class{constructor(e,t,n){this.s={db:e,options:n,namespace:new L.MongoDBCollectionNamespace(e.databaseName,t),pkFactory:e.options?.pkFactory??L.DEFAULT_PK_FACTORY,readPreference:D.ReadPreference.fromOptions(n),bsonOptions:(0,r.resolveBSONOptions)(n,e),readConcern:C.ReadConcern.fromOptions(n),writeConcern:M.WriteConcern.fromOptions(n)},this.client=e.client}get dbName(){return this.s.namespace.db}get collectionName(){return this.s.namespace.collection}get namespace(){return this.fullNamespace.toString()}get fullNamespace(){return this.s.namespace}get readConcern(){return null==this.s.readConcern?this.s.db.readConcern:this.s.readConcern}get readPreference(){return null==this.s.readPreference?this.s.db.readPreference:this.s.readPreference}get bsonOptions(){return this.s.bsonOptions}get writeConcern(){return null==this.s.writeConcern?this.s.db.writeConcern:this.s.writeConcern}get hint(){return this.s.collectionHint}set hint(e){this.s.collectionHint=(0,L.normalizeHintField)(e)}async insertOne(e,t){return await(0,y.executeOperation)(this.client,new b.InsertOneOperation(this,e,(0,L.resolveOptions)(this,t)))}async insertMany(e,t){return await(0,y.executeOperation)(this.client,new b.InsertManyOperation(this,e,(0,L.resolveOptions)(this,t??{ordered:!0})))}async bulkWrite(e,t){if(!Array.isArray(e))throw new h.MongoInvalidArgumentError('Argument "operations" must be an array of documents');return await(0,y.executeOperation)(this.client,new f.BulkWriteOperation(this,e,(0,L.resolveOptions)(this,t??{ordered:!0})))}async updateOne(e,t,n){return await(0,y.executeOperation)(this.client,new N.UpdateOneOperation(this,e,t,(0,L.resolveOptions)(this,n)))}async replaceOne(e,t,n){return await(0,y.executeOperation)(this.client,new N.ReplaceOneOperation(this,e,t,(0,L.resolveOptions)(this,n)))}async updateMany(e,t,n){return await(0,y.executeOperation)(this.client,new N.UpdateManyOperation(this,e,t,(0,L.resolveOptions)(this,n)))}async deleteOne(e={},t={}){return await(0,y.executeOperation)(this.client,new E.DeleteOneOperation(this,e,(0,L.resolveOptions)(this,t)))}async deleteMany(e={},t={}){return await(0,y.executeOperation)(this.client,new E.DeleteManyOperation(this,e,(0,L.resolveOptions)(this,t)))}async rename(e,t){return await(0,y.executeOperation)(this.client,new O.RenameOperation(this,e,{...t,readPreference:D.ReadPreference.PRIMARY}))}async drop(e){return await(0,y.executeOperation)(this.client,new _.DropCollectionOperation(this.s.db,this.collectionName,e))}async findOne(e={},t={}){const n=this.find(e,t).limit(-1).batchSize(1),r=await n.next();return await n.close(),r}find(e={},t={}){return new u.FindCursor(this.client,this.s.namespace,e,(0,L.resolveOptions)(this,t))}async options(e){return await(0,y.executeOperation)(this.client,new w.OptionsOperation(this,(0,L.resolveOptions)(this,e)))}async isCapped(e){return await(0,y.executeOperation)(this.client,new T.IsCappedOperation(this,(0,L.resolveOptions)(this,e)))}async createIndex(e,t){return(await(0,y.executeOperation)(this.client,v.CreateIndexesOperation.fromIndexSpecification(this,this.collectionName,e,(0,L.resolveOptions)(this,t))))[0]}async createIndexes(e,t){return await(0,y.executeOperation)(this.client,v.CreateIndexesOperation.fromIndexDescriptionArray(this,this.collectionName,e,(0,L.resolveOptions)(this,{...t,maxTimeMS:void 0})))}async dropIndex(e,t){return await(0,y.executeOperation)(this.client,new v.DropIndexOperation(this,e,{...(0,L.resolveOptions)(this,t),readPreference:D.ReadPreference.primary}))}async dropIndexes(e){try{return await(0,y.executeOperation)(this.client,new v.DropIndexOperation(this,"*",(0,L.resolveOptions)(this,e))),!0}catch{return!1}}listIndexes(e){return new c.ListIndexesCursor(this,(0,L.resolveOptions)(this,e))}async indexExists(e,t){const n=Array.isArray(e)?e:[e],r=new Set(await this.listIndexes(t).map((({name:e})=>e)).toArray());return n.every((e=>r.has(e)))}async indexInformation(e){return await this.indexes({...e,full:e?.full??!1})}async estimatedDocumentCount(e){return await(0,y.executeOperation)(this.client,new g.EstimatedDocumentCountOperation(this,(0,L.resolveOptions)(this,e)))}async countDocuments(e={},t={}){return await(0,y.executeOperation)(this.client,new d.CountDocumentsOperation(this,e,(0,L.resolveOptions)(this,t)))}async distinct(e,t={},n={}){return await(0,y.executeOperation)(this.client,new m.DistinctOperation(this,e,t,(0,L.resolveOptions)(this,n)))}async indexes(e){const t=await this.listIndexes(e).toArray();return e?.full??1?t:Object.fromEntries(t.map((({name:e,key:t})=>[e,Object.entries(t)])))}async findOneAndDelete(e,t){return await(0,y.executeOperation)(this.client,new A.FindOneAndDeleteOperation(this,e,(0,L.resolveOptions)(this,t)))}async findOneAndReplace(e,t,n){return await(0,y.executeOperation)(this.client,new A.FindOneAndReplaceOperation(this,e,t,(0,L.resolveOptions)(this,n)))}async findOneAndUpdate(e,t,n){return await(0,y.executeOperation)(this.client,new A.FindOneAndUpdateOperation(this,e,t,(0,L.resolveOptions)(this,n)))}aggregate(e=[],t){if(!Array.isArray(e))throw new h.MongoInvalidArgumentError('Argument "pipeline" must be an array of aggregation stages');return new a.AggregationCursor(this.client,this.s.namespace,e,(0,L.resolveOptions)(this,t))}watch(e=[],t={}){return Array.isArray(e)||(t=e,e=[]),new s.ChangeStream(this,e,(0,L.resolveOptions)(this,t))}initializeUnorderedBulkOp(e){return new i.UnorderedBulkOperation(this,(0,L.resolveOptions)(this,e))}initializeOrderedBulkOp(e){return new o.OrderedBulkOperation(this,(0,L.resolveOptions)(this,e))}async count(e={},t={}){return await(0,y.executeOperation)(this.client,new p.CountOperation(this.fullNamespace,e,(0,L.resolveOptions)(this,t)))}listSearchIndexes(e,t){t="object"==typeof e?e:null==t?{}:t;const n=null==e||"object"==typeof e?null:e;return new l.ListSearchIndexesCursor(this,n,t)}async createSearchIndex(e){const[t]=await this.createSearchIndexes([e]);return t}async createSearchIndexes(e){return await(0,y.executeOperation)(this.client,new R.CreateSearchIndexesOperation(this,e))}async dropSearchIndex(e){return await(0,y.executeOperation)(this.client,new S.DropSearchIndexOperation(this,e))}async updateSearchIndex(e,t){return await(0,y.executeOperation)(this.client,new I.UpdateSearchIndexOperation(this,e,t))}}},77689:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FEATURE_FLAGS=t.DEFAULT_OPTIONS=t.OPTIONS=t.parseOptions=t.resolveSRVRecord=void 0;const r=n(72250),o=n(93858),i=n(87016),s=n(37935),a=n(24380),u=n(96088),c=n(3460),l=n(52831),h=n(86947),f=n(13139),p=n(60528),d=n(38938),E=n(50773),m=n(46445),_=n(52060),g=n(98349),y=["authSource","replicaSet","loadBalanced"];function A(e,t){if("boolean"==typeof t)return t;switch(t){case"true":return!0;case"false":return!1;default:throw new h.MongoParseError(`${e} must be either "true" or "false"`)}}function v(e,t){const n=(0,_.parseInteger)(t);if(null!=n)return n;throw new h.MongoParseError(`Expected ${e} to be stringified int value, got: ${t}`)}function b(e,t){const n=v(e,t);if(n<0)throw new h.MongoParseError(`${e} can only be a positive int value, got: ${t}`);return n}function*T(e){if(""===e)return;const t=e.split(",");for(const e of t){const[t,n]=e.split(/:(.*)/);if(null==n)throw new h.MongoParseError("Cannot have undefined values in key value pairs");yield[t,n]}}t.resolveSRVRecord=async function(e){if("string"!=typeof e.srvHost)throw new h.MongoAPIError('Option "srvHost" must not be empty');if(e.srvHost.split(".").length<3)throw new h.MongoAPIError("URI must include hostname, domain name, and tld");const t=e.srvHost,n=r.promises.resolveTxt(t);n.then(void 0,_.squashError);const o=await r.promises.resolveSrv(`_${e.srvServiceName}._tcp.${t}`);if(0===o.length)throw new h.MongoAPIError("No addresses found at host");for(const{name:e}of o)if(!(0,_.matchesParentDomain)(e,t))throw new h.MongoAPIError("Server record does not share hostname with parent URI");const u=o.map((e=>_.HostAddress.fromString(`${e.name}:${e.port??27017}`)));let c;O(u,e,!0);try{c=await n}catch(e){if("ENODATA"!==e.code&&"ENOTFOUND"!==e.code)throw e;return u}if(c.length>1)throw new h.MongoParseError("Multiple text records not allowed");const l=new i.URLSearchParams(c[0].join(""));if([...l.keys()].some((e=>!y.includes(e))))throw new h.MongoParseError(`Text record may only set any of: ${y.join(", ")}`);if(y.some((e=>""===l.get(e))))throw new h.MongoParseError("Cannot have empty URI params in DNS TXT Record");const f=l.get("authSource")??void 0,p=l.get("replicaSet")??void 0,d=l.get("loadBalanced")??void 0;if(!e.userSpecifiedAuthSource&&f&&e.credentials&&!a.AUTH_MECHS_AUTH_SRC_EXTERNAL.has(e.credentials.mechanism)&&(e.credentials=s.MongoCredentials.merge(e.credentials,{source:f})),!e.userSpecifiedReplicaSet&&p&&(e.replicaSet=p),"true"===d&&(e.loadBalanced=!0),e.replicaSet&&e.srvMaxHosts>0)throw new h.MongoParseError("Cannot combine replicaSet option with srvMaxHosts");return O(u,e,!0),u};class w extends Map{constructor(e=[]){super(e.map((([e,t])=>[e.toLowerCase(),t])))}has(e){return super.has(e.toLowerCase())}get(e){return super.get(e.toLowerCase())}set(e,t){return super.set(e.toLowerCase(),t)}delete(e){return super.delete(e.toLowerCase())}}function O(e,t,n){if(t.loadBalanced){if(e.length>1)throw new h.MongoParseError("loadBalanced option only supported with a single host in the URI");if(t.replicaSet)throw new h.MongoParseError("loadBalanced option not supported with a replicaSet option");if(t.directConnection)throw new h.MongoParseError("loadBalanced option not supported when directConnection is provided");if(n&&t.srvMaxHosts>0)throw new h.MongoParseError("Cannot limit srv hosts with loadBalanced enabled")}}function R(e,t,n,r){const{target:o,type:i,transform:s}=n,a=o??t;switch(i){case"boolean":e[a]=A(a,r[0]);break;case"int":e[a]=v(a,r[0]);break;case"uint":e[a]=b(a,r[0]);break;case"string":if(null==r[0])break;e[a]=String(r[0]);break;case"record":if(!(0,_.isRecord)(r[0]))throw new h.MongoParseError(`${a} must be an object`);e[a]=r[0];break;case"any":e[a]=r[0];break;default:{if(!s)throw new h.MongoParseError("Descriptors missing a type must define a transform");const t=s({name:a,options:e,values:r});e[a]=t;break}}}t.parseOptions=function(e,n=void 0,r={}){if(null==n||n instanceof f.MongoClient||(r=n,n=void 0),r.useBigInt64&&"boolean"==typeof r.promoteLongs&&!r.promoteLongs)throw new h.MongoAPIError("Must request either bigint or Long for int64 deserialization");if(r.useBigInt64&&"boolean"==typeof r.promoteValues&&!r.promoteValues)throw new h.MongoAPIError("Must request either bigint or Long for int64 deserialization");const i=new o.default(e),{hosts:c,isSRV:d}=i,E=Object.create(null);for(const e of Object.getOwnPropertySymbols(r))t.FEATURE_FLAGS.has(e)&&(E[e]=r[e]);E.hosts=d?[]:c.map(_.HostAddress.fromString);const m=new w;if("/"!==i.pathname&&""!==i.pathname){const e=decodeURIComponent("/"===i.pathname[0]?i.pathname.slice(1):i.pathname);e&&m.set("dbName",[e])}if(""!==i.username){const e={username:decodeURIComponent(i.username)};"string"==typeof i.password&&(e.password=decodeURIComponent(i.password)),m.set("auth",[e])}for(const e of i.searchParams.keys()){const t=i.searchParams.getAll(e),n=/readPreferenceTags/i.test(e);if(!n&&t.length>1)throw new h.MongoInvalidArgumentError(`URI option "${e}" cannot appear more than once in the connection string`);if(!n&&t.includes(""))throw new h.MongoAPIError(`URI option "${e}" cannot be specified with no value`);m.has(e)||m.set(e,t)}const g=new w(Object.entries(r).filter((([,e])=>null!=e)));if(m.has("serverApi"))throw new h.MongoParseError("URI cannot contain `serverApi`, it can only be passed to the client");const y=m.get("authMechanismProperties");if(y)for(const e of y)if(/(^|,)ALLOWED_HOSTS:/.test(e))throw new h.MongoParseError("Auth mechanism property ALLOWED_HOSTS is not allowed in the connection string.");if(g.has("loadBalanced"))throw new h.MongoParseError("loadBalanced is only a valid option in the URI");const v=new w,b=new Set([...m.keys(),...g.keys()]);for(const e of b){const t=[],n=g.get(e);null!=n&&t.push(n);const r=m.get(e)??[];t.push(...r),v.set(e,t)}if(v.has("tls")||v.has("ssl")){const e=(v.get("tls")||[]).concat(v.get("ssl")||[]).map(A.bind(null,"tls/ssl"));if(1!==new Set(e).size)throw new h.MongoParseError("All values of tls/ssl must be the same.")}!function(e){if(!e)return;const t=(t,n)=>{if(e.has(t)&&e.has(n))throw new h.MongoAPIError(`The '${t}' option cannot be used with the '${n}' option`)};t("tlsInsecure","tlsAllowInvalidCertificates"),t("tlsInsecure","tlsAllowInvalidHostnames"),t("tlsInsecure","tlsDisableCertificateRevocationCheck"),t("tlsInsecure","tlsDisableOCSPEndpointCheck"),t("tlsAllowInvalidCertificates","tlsDisableCertificateRevocationCheck"),t("tlsAllowInvalidCertificates","tlsDisableOCSPEndpointCheck"),t("tlsDisableCertificateRevocationCheck","tlsDisableOCSPEndpointCheck")}(v);const T=(0,_.setDifference)(b,Array.from(Object.keys(t.OPTIONS)).map((e=>e.toLowerCase())));if(0!==T.size){const e=T.size>1?"options":"option",t=T.size>1?"are":"is";throw new h.MongoParseError(`${e} ${Array.from(T).join(", ")} ${t} not supported`)}for(const[e,n]of Object.entries(t.OPTIONS)){const r=v.get(e);if(r&&0!==r.length){const{deprecated:t}=n;if(t){const n="string"==typeof t?`: ${t}`:"";(0,_.emitWarning)(`${e} is a deprecated option${n}`)}R(E,e,n,r)}else t.DEFAULT_OPTIONS.has(e)&&R(E,e,n,[t.DEFAULT_OPTIONS.get(e)])}if(E.credentials){const e=E.credentials.mechanism===a.AuthMechanism.MONGODB_GSSAPI,t=E.credentials.mechanism===a.AuthMechanism.MONGODB_X509,n=E.credentials.mechanism===a.AuthMechanism.MONGODB_AWS,r=E.credentials.mechanism===a.AuthMechanism.MONGODB_OIDC;if((e||t)&&v.has("authSource")&&"$external"!==E.credentials.source)throw new h.MongoParseError(`authMechanism ${E.credentials.mechanism} requires an authSource of '$external'`);if(e||t||n||r||!E.dbName||v.has("authSource")||(E.credentials=s.MongoCredentials.merge(E.credentials,{source:E.dbName})),n&&E.credentials.username&&!E.credentials.password)throw new h.MongoMissingCredentialsError(`When using ${E.credentials.mechanism} password must be set when a username is specified`);E.credentials.validate(),""===E.credentials.password&&""===E.credentials.username&&E.credentials.mechanism===a.AuthMechanism.MONGODB_DEFAULT&&0===Object.keys(E.credentials.mechanismProperties).length&&delete E.credentials}if(E.dbName||(E.dbName="test"),O(c,E,d),n&&E.autoEncryption&&(l.Encrypter.checkForMongoCrypt(),E.encrypter=new l.Encrypter(n,e,r),E.autoEncrypter=E.encrypter.autoEncrypter),E.userSpecifiedAuthSource=g.has("authSource")||m.has("authSource"),E.userSpecifiedReplicaSet=g.has("replicaSet")||m.has("replicaSet"),d){if(E.srvHost=c[0],E.directConnection)throw new h.MongoAPIError("SRV URI does not support directConnection");if(E.srvMaxHosts>0&&"string"==typeof E.replicaSet)throw new h.MongoParseError("Cannot use srvMaxHosts option with replicaSet");const e=!g.has("tls")&&!m.has("tls"),t=!g.has("ssl")&&!m.has("ssl");e&&t&&(E.tls=!0)}else if(m.has("srvMaxHosts")||g.has("srvMaxHosts")||m.has("srvServiceName")||g.has("srvServiceName"))throw new h.MongoParseError("Cannot use srvMaxHosts or srvServiceName with a non-srv connection string");if(E.directConnection&&1!==E.hosts.length)throw new h.MongoParseError("directConnection option requires exactly one host");if(!E.proxyHost&&(E.proxyPort||E.proxyUsername||E.proxyPassword))throw new h.MongoParseError("Must specify proxyHost if other proxy options are passed");if(E.proxyUsername&&!E.proxyPassword||!E.proxyUsername&&E.proxyPassword)throw new h.MongoParseError("Can only specify both of proxy username/password or neither");if(["proxyHost","proxyPort","proxyUsername","proxyPassword"].map((e=>m.get(e)??[])).some((e=>e.length>1)))throw new h.MongoParseError("Proxy options cannot be specified multiple times in the connection string");const S=Symbol.for("@@mdb.enableMongoLogger");E[S]=E[S]??!1;let I={},N={};return E[S]&&(I={MONGODB_LOG_COMMAND:process.env.MONGODB_LOG_COMMAND,MONGODB_LOG_TOPOLOGY:process.env.MONGODB_LOG_TOPOLOGY,MONGODB_LOG_SERVER_SELECTION:process.env.MONGODB_LOG_SERVER_SELECTION,MONGODB_LOG_CONNECTION:process.env.MONGODB_LOG_CONNECTION,MONGODB_LOG_CLIENT:process.env.MONGODB_LOG_CLIENT,MONGODB_LOG_ALL:process.env.MONGODB_LOG_ALL,MONGODB_LOG_MAX_DOCUMENT_LENGTH:process.env.MONGODB_LOG_MAX_DOCUMENT_LENGTH,MONGODB_LOG_PATH:process.env.MONGODB_LOG_PATH,...E[Symbol.for("@@mdb.internalLoggerConfig")]},N={mongodbLogPath:E.mongodbLogPath,mongodbLogComponentSeverities:E.mongodbLogComponentSeverities,mongodbLogMaxDocumentLength:E.mongodbLogMaxDocumentLength}),E.mongoLoggerOptions=p.MongoLogger.resolveOptions(I,N),E.metadata=(0,u.makeClientMetadata)(E),E.extendedMetadata=(0,u.addContainerMetadata)(E.metadata).then(void 0,_.squashError),E},t.OPTIONS={appName:{type:"string"},auth:{target:"credentials",transform({name:e,options:t,values:[n]}){if(!(0,_.isRecord)(n,["username","password"]))throw new h.MongoParseError(`${e} must be an object with 'username' and 'password' properties`);return s.MongoCredentials.merge(t.credentials,{username:n.username,password:n.password})}},authMechanism:{target:"credentials",transform({options:e,values:[t]}){const n=Object.values(a.AuthMechanism),[r]=n.filter((e=>e.match(RegExp(String.raw`\b${t}\b`,"i"))));if(!r)throw new h.MongoParseError(`authMechanism one of ${n}, got ${t}`);let o=e.credentials?.source;(r===a.AuthMechanism.MONGODB_PLAIN||a.AUTH_MECHS_AUTH_SRC_EXTERNAL.has(r))&&(o="$external");let i=e.credentials?.password;return r===a.AuthMechanism.MONGODB_X509&&""===i&&(i=void 0),s.MongoCredentials.merge(e.credentials,{mechanism:r,source:o,password:i})}},authMechanismProperties:{target:"credentials",transform({options:e,values:t}){let n=Object.create(null);for(const e of t)if("string"==typeof e)for(const[t,r]of T(e))try{n[t]=A(t,r)}catch{n[t]=r}else{if(!(0,_.isRecord)(e))throw new h.MongoParseError("AuthMechanismProperties must be an object");n={...e}}return s.MongoCredentials.merge(e.credentials,{mechanismProperties:n})}},authSource:{target:"credentials",transform({options:e,values:[t]}){const n=String(t);return s.MongoCredentials.merge(e.credentials,{source:n})}},autoEncryption:{type:"record"},bsonRegExp:{type:"boolean"},serverApi:{target:"serverApi",transform({values:[e]}){const t="string"==typeof e?{version:e}:e,n=t&&t.version;if(!n)throw new h.MongoParseError(`Invalid \`serverApi\` property; must specify a version from the following enum: ["${Object.values(f.ServerApiVersion).join('", "')}"]`);if(!Object.values(f.ServerApiVersion).some((e=>e===n)))throw new h.MongoParseError(`Invalid server API version=${n}; must be in the following enum: ["${Object.values(f.ServerApiVersion).join('", "')}"]`);return t}},checkKeys:{type:"boolean"},compressors:{default:"none",target:"compressors",transform({values:e}){const t=new Set;for(const n of e){const e="string"==typeof n?n.split(","):n;if(!Array.isArray(e))throw new h.MongoInvalidArgumentError("compressors must be an array or a comma-delimited list of strings");for(const n of e){if(!Object.keys(c.Compressor).includes(String(n)))throw new h.MongoInvalidArgumentError(`${n} is not a valid compression mechanism. Must be one of: ${Object.keys(c.Compressor)}.`);t.add(String(n))}}return[...t]}},connectTimeoutMS:{default:3e4,type:"uint"},dbName:{type:"string"},directConnection:{default:!1,type:"boolean"},driverInfo:{default:{},type:"record"},enableUtf8Validation:{type:"boolean",default:!0},family:{transform({name:e,values:[t]}){const n=v(e,t);if(4===n||6===n)return n;throw new h.MongoParseError(`Option 'family' must be 4 or 6 got ${n}.`)}},fieldsAsRaw:{type:"record"},forceServerObjectId:{default:!1,type:"boolean"},fsync:{deprecated:"Please use journal instead",target:"writeConcern",transform({name:e,options:t,values:[n]}){const r=g.WriteConcern.fromOptions({writeConcern:{...t.writeConcern,fsync:A(e,n)}});if(!r)throw new h.MongoParseError(`Unable to make a writeConcern from fsync=${n}`);return r}},heartbeatFrequencyMS:{default:1e4,type:"uint"},ignoreUndefined:{type:"boolean"},j:{deprecated:"Please use journal instead",target:"writeConcern",transform({name:e,options:t,values:[n]}){const r=g.WriteConcern.fromOptions({writeConcern:{...t.writeConcern,journal:A(e,n)}});if(!r)throw new h.MongoParseError(`Unable to make a writeConcern from journal=${n}`);return r}},journal:{target:"writeConcern",transform({name:e,options:t,values:[n]}){const r=g.WriteConcern.fromOptions({writeConcern:{...t.writeConcern,journal:A(e,n)}});if(!r)throw new h.MongoParseError(`Unable to make a writeConcern from journal=${n}`);return r}},loadBalanced:{default:!1,type:"boolean"},localThresholdMS:{default:15,type:"uint"},maxConnecting:{default:2,transform({name:e,values:[t]}){const n=b(e,t);if(0===n)throw new h.MongoInvalidArgumentError("maxConnecting must be > 0 if specified");return n}},maxIdleTimeMS:{default:0,type:"uint"},maxPoolSize:{default:100,type:"uint"},maxStalenessSeconds:{target:"readPreference",transform({name:e,options:t,values:[n]}){const r=b(e,n);return t.readPreference?E.ReadPreference.fromOptions({readPreference:{...t.readPreference,maxStalenessSeconds:r}}):new E.ReadPreference("secondary",void 0,{maxStalenessSeconds:r})}},minInternalBufferSize:{type:"uint"},minPoolSize:{default:0,type:"uint"},minHeartbeatFrequencyMS:{default:500,type:"uint"},monitorCommands:{default:!1,type:"boolean"},name:{target:"driverInfo",transform:({values:[e],options:t})=>({...t.driverInfo,name:String(e)})},noDelay:{default:!0,type:"boolean"},pkFactory:{default:_.DEFAULT_PK_FACTORY,transform({values:[e]}){if((0,_.isRecord)(e,["createPk"])&&"function"==typeof e.createPk)return e;throw new h.MongoParseError(`Option pkFactory must be an object with a createPk function, got ${e}`)}},promoteBuffers:{type:"boolean"},promoteLongs:{type:"boolean"},promoteValues:{type:"boolean"},useBigInt64:{type:"boolean"},proxyHost:{type:"string"},proxyPassword:{type:"string"},proxyPort:{type:"uint"},proxyUsername:{type:"string"},raw:{default:!1,type:"boolean"},readConcern:{transform({values:[e],options:t}){if(e instanceof d.ReadConcern||(0,_.isRecord)(e,["level"]))return d.ReadConcern.fromOptions({...t.readConcern,...e});throw new h.MongoParseError(`ReadConcern must be an object, got ${JSON.stringify(e)}`)}},readConcernLevel:{target:"readConcern",transform:({values:[e],options:t})=>d.ReadConcern.fromOptions({...t.readConcern,level:e})},readPreference:{default:E.ReadPreference.primary,transform({values:[e],options:t}){if(e instanceof E.ReadPreference)return E.ReadPreference.fromOptions({readPreference:{...t.readPreference,...e},...e});if((0,_.isRecord)(e,["mode"])){const n=E.ReadPreference.fromOptions({readPreference:{...t.readPreference,...e},...e});if(n)return n;throw new h.MongoParseError(`Cannot make read preference from ${JSON.stringify(e)}`)}if("string"==typeof e){const n={hedge:t.readPreference?.hedge,maxStalenessSeconds:t.readPreference?.maxStalenessSeconds};return new E.ReadPreference(e,t.readPreference?.tags,n)}throw new h.MongoParseError(`Unknown ReadPreference value: ${e}`)}},readPreferenceTags:{target:"readPreference",transform({values:e,options:t}){const n=Array.isArray(e[0])?e[0]:e,r=[];for(const e of n){const t=Object.create(null);if("string"==typeof e)for(const[n,r]of T(e))t[n]=r;if((0,_.isRecord)(e))for(const[n,r]of Object.entries(e))t[n]=r;r.push(t)}return E.ReadPreference.fromOptions({readPreference:t.readPreference,readPreferenceTags:r})}},replicaSet:{type:"string"},retryReads:{default:!0,type:"boolean"},retryWrites:{default:!0,type:"boolean"},serializeFunctions:{type:"boolean"},serverMonitoringMode:{default:"auto",transform({values:[e]}){if(!Object.values(m.ServerMonitoringMode).includes(e))throw new h.MongoParseError("serverMonitoringMode must be one of `auto`, `poll`, or `stream`");return e}},serverSelectionTimeoutMS:{default:3e4,type:"uint"},servername:{type:"string"},socketTimeoutMS:{default:0,type:"uint"},srvMaxHosts:{type:"uint",default:0},srvServiceName:{type:"string",default:"mongodb"},ssl:{target:"tls",type:"boolean"},timeoutMS:{type:"uint"},tls:{type:"boolean"},tlsAllowInvalidCertificates:{target:"rejectUnauthorized",transform:({name:e,values:[t]})=>!A(e,t)},tlsAllowInvalidHostnames:{target:"checkServerIdentity",transform:({name:e,values:[t]})=>A(e,t)?()=>{}:void 0},tlsCAFile:{type:"string"},tlsCRLFile:{type:"string"},tlsCertificateKeyFile:{type:"string"},tlsCertificateKeyFilePassword:{target:"passphrase",type:"any"},tlsInsecure:{transform({name:e,options:t,values:[n]}){const r=A(e,n);return r?(t.checkServerIdentity=()=>{},t.rejectUnauthorized=!1):(t.checkServerIdentity=t.tlsAllowInvalidHostnames?()=>{}:void 0,t.rejectUnauthorized=!t.tlsAllowInvalidCertificates),r}},w:{target:"writeConcern",transform:({values:[e],options:t})=>g.WriteConcern.fromOptions({writeConcern:{...t.writeConcern,w:e}})},waitQueueTimeoutMS:{default:0,type:"uint"},writeConcern:{target:"writeConcern",transform({values:[e],options:t}){if((0,_.isRecord)(e)||e instanceof g.WriteConcern)return g.WriteConcern.fromOptions({writeConcern:{...t.writeConcern,...e}});if("majority"===e||"number"==typeof e)return g.WriteConcern.fromOptions({writeConcern:{...t.writeConcern,w:e}});throw new h.MongoParseError(`Invalid WriteConcern cannot parse: ${JSON.stringify(e)}`)}},wtimeout:{deprecated:"Please use wtimeoutMS instead",target:"writeConcern",transform({values:[e],options:t}){const n=g.WriteConcern.fromOptions({writeConcern:{...t.writeConcern,wtimeout:b("wtimeout",e)}});if(n)return n;throw new h.MongoParseError("Cannot make WriteConcern from wtimeout")}},wtimeoutMS:{target:"writeConcern",transform({values:[e],options:t}){const n=g.WriteConcern.fromOptions({writeConcern:{...t.writeConcern,wtimeoutMS:b("wtimeoutMS",e)}});if(n)return n;throw new h.MongoParseError("Cannot make WriteConcern from wtimeout")}},zlibCompressionLevel:{default:0,type:"int"},connectionType:{type:"any"},srvPoller:{type:"any"},minDHSize:{type:"any"},pskCallback:{type:"any"},secureContext:{type:"any"},enableTrace:{type:"any"},requestCert:{type:"any"},rejectUnauthorized:{type:"any"},checkServerIdentity:{type:"any"},ALPNProtocols:{type:"any"},SNICallback:{type:"any"},session:{type:"any"},requestOCSP:{type:"any"},localAddress:{type:"any"},localPort:{type:"any"},hints:{type:"any"},lookup:{type:"any"},ca:{type:"any"},cert:{type:"any"},ciphers:{type:"any"},crl:{type:"any"},ecdhCurve:{type:"any"},key:{type:"any"},passphrase:{type:"any"},pfx:{type:"any"},secureProtocol:{type:"any"},index:{type:"any"},useNewUrlParser:{type:"boolean",deprecated:"useNewUrlParser has no effect since Node.js Driver version 4.0.0 and will be removed in the next major version"},useUnifiedTopology:{type:"boolean",deprecated:"useUnifiedTopology has no effect since Node.js Driver version 4.0.0 and will be removed in the next major version"},mongodbLogPath:{transform({values:[e]}){if(!("string"==typeof e&&["stderr","stdout"].includes(e)||e&&"object"==typeof e&&"write"in e&&"function"==typeof e.write))throw new h.MongoAPIError("Option 'mongodbLogPath' must be of type 'stderr' | 'stdout' | MongoDBLogWritable");return e}},mongodbLogComponentSeverities:{transform({values:[e]}){if("object"!=typeof e||!e)throw new h.MongoAPIError("Option 'mongodbLogComponentSeverities' must be a non-null object");for(const[t,n]of Object.entries(e)){if("string"!=typeof n||"string"!=typeof t)throw new h.MongoAPIError("User input for option 'mongodbLogComponentSeverities' object cannot include a non-string key or value");if(!Object.values(p.MongoLoggableComponent).some((e=>e===t))&&"default"!==t)throw new h.MongoAPIError(`User input for option 'mongodbLogComponentSeverities' contains invalid key: ${t}`);if(!Object.values(p.SeverityLevel).some((e=>e===n)))throw new h.MongoAPIError(`Option 'mongodbLogComponentSeverities' does not support ${n} as a value for ${t}`)}return e}},mongodbLogMaxDocumentLength:{type:"uint"}},t.DEFAULT_OPTIONS=new w(Object.entries(t.OPTIONS).filter((([,e])=>null!=e.default)).map((([e,t])=>[e,t.default]))),t.FEATURE_FLAGS=new Set([Symbol.for("@@mdb.skipPingOnConnect"),Symbol.for("@@mdb.enableMongoLogger"),Symbol.for("@@mdb.internalLoggerConfig")])},32568:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.END=t.CHANGE=t.INIT=t.MORE=t.RESPONSE=t.SERVER_HEARTBEAT_FAILED=t.SERVER_HEARTBEAT_SUCCEEDED=t.SERVER_HEARTBEAT_STARTED=t.COMMAND_FAILED=t.COMMAND_SUCCEEDED=t.COMMAND_STARTED=t.CLUSTER_TIME_RECEIVED=t.CONNECTION_CHECKED_IN=t.CONNECTION_CHECKED_OUT=t.CONNECTION_CHECK_OUT_FAILED=t.CONNECTION_CHECK_OUT_STARTED=t.CONNECTION_CLOSED=t.CONNECTION_READY=t.CONNECTION_CREATED=t.CONNECTION_POOL_READY=t.CONNECTION_POOL_CLEARED=t.CONNECTION_POOL_CLOSED=t.CONNECTION_POOL_CREATED=t.WAITING_FOR_SUITABLE_SERVER=t.SERVER_SELECTION_SUCCEEDED=t.SERVER_SELECTION_FAILED=t.SERVER_SELECTION_STARTED=t.TOPOLOGY_DESCRIPTION_CHANGED=t.TOPOLOGY_CLOSED=t.TOPOLOGY_OPENING=t.SERVER_DESCRIPTION_CHANGED=t.SERVER_CLOSED=t.SERVER_OPENING=t.DESCRIPTION_RECEIVED=t.UNPINNED=t.PINNED=t.MESSAGE=t.ENDED=t.CLOSED=t.CONNECT=t.OPEN=t.CLOSE=t.TIMEOUT=t.ERROR=t.SYSTEM_JS_COLLECTION=t.SYSTEM_COMMAND_COLLECTION=t.SYSTEM_USER_COLLECTION=t.SYSTEM_PROFILE_COLLECTION=t.SYSTEM_INDEX_COLLECTION=t.SYSTEM_NAMESPACE_COLLECTION=void 0,t.LEGACY_HELLO_COMMAND_CAMEL_CASE=t.LEGACY_HELLO_COMMAND=t.MONGO_CLIENT_EVENTS=t.LOCAL_SERVER_EVENTS=t.SERVER_RELAY_EVENTS=t.APM_EVENTS=t.TOPOLOGY_EVENTS=t.CMAP_EVENTS=t.HEARTBEAT_EVENTS=t.RESUME_TOKEN_CHANGED=void 0,t.SYSTEM_NAMESPACE_COLLECTION="system.namespaces",t.SYSTEM_INDEX_COLLECTION="system.indexes",t.SYSTEM_PROFILE_COLLECTION="system.profile",t.SYSTEM_USER_COLLECTION="system.users",t.SYSTEM_COMMAND_COLLECTION="$cmd",t.SYSTEM_JS_COLLECTION="system.js",t.ERROR="error",t.TIMEOUT="timeout",t.CLOSE="close",t.OPEN="open",t.CONNECT="connect",t.CLOSED="closed",t.ENDED="ended",t.MESSAGE="message",t.PINNED="pinned",t.UNPINNED="unpinned",t.DESCRIPTION_RECEIVED="descriptionReceived",t.SERVER_OPENING="serverOpening",t.SERVER_CLOSED="serverClosed",t.SERVER_DESCRIPTION_CHANGED="serverDescriptionChanged",t.TOPOLOGY_OPENING="topologyOpening",t.TOPOLOGY_CLOSED="topologyClosed",t.TOPOLOGY_DESCRIPTION_CHANGED="topologyDescriptionChanged",t.SERVER_SELECTION_STARTED="serverSelectionStarted",t.SERVER_SELECTION_FAILED="serverSelectionFailed",t.SERVER_SELECTION_SUCCEEDED="serverSelectionSucceeded",t.WAITING_FOR_SUITABLE_SERVER="waitingForSuitableServer",t.CONNECTION_POOL_CREATED="connectionPoolCreated",t.CONNECTION_POOL_CLOSED="connectionPoolClosed",t.CONNECTION_POOL_CLEARED="connectionPoolCleared",t.CONNECTION_POOL_READY="connectionPoolReady",t.CONNECTION_CREATED="connectionCreated",t.CONNECTION_READY="connectionReady",t.CONNECTION_CLOSED="connectionClosed",t.CONNECTION_CHECK_OUT_STARTED="connectionCheckOutStarted",t.CONNECTION_CHECK_OUT_FAILED="connectionCheckOutFailed",t.CONNECTION_CHECKED_OUT="connectionCheckedOut",t.CONNECTION_CHECKED_IN="connectionCheckedIn",t.CLUSTER_TIME_RECEIVED="clusterTimeReceived",t.COMMAND_STARTED="commandStarted",t.COMMAND_SUCCEEDED="commandSucceeded",t.COMMAND_FAILED="commandFailed",t.SERVER_HEARTBEAT_STARTED="serverHeartbeatStarted",t.SERVER_HEARTBEAT_SUCCEEDED="serverHeartbeatSucceeded",t.SERVER_HEARTBEAT_FAILED="serverHeartbeatFailed",t.RESPONSE="response",t.MORE="more",t.INIT="init",t.CHANGE="change",t.END="end",t.RESUME_TOKEN_CHANGED="resumeTokenChanged",t.HEARTBEAT_EVENTS=Object.freeze([t.SERVER_HEARTBEAT_STARTED,t.SERVER_HEARTBEAT_SUCCEEDED,t.SERVER_HEARTBEAT_FAILED]),t.CMAP_EVENTS=Object.freeze([t.CONNECTION_POOL_CREATED,t.CONNECTION_POOL_READY,t.CONNECTION_POOL_CLEARED,t.CONNECTION_POOL_CLOSED,t.CONNECTION_CREATED,t.CONNECTION_READY,t.CONNECTION_CLOSED,t.CONNECTION_CHECK_OUT_STARTED,t.CONNECTION_CHECK_OUT_FAILED,t.CONNECTION_CHECKED_OUT,t.CONNECTION_CHECKED_IN]),t.TOPOLOGY_EVENTS=Object.freeze([t.SERVER_OPENING,t.SERVER_CLOSED,t.SERVER_DESCRIPTION_CHANGED,t.TOPOLOGY_OPENING,t.TOPOLOGY_CLOSED,t.TOPOLOGY_DESCRIPTION_CHANGED,t.ERROR,t.TIMEOUT,t.CLOSE]),t.APM_EVENTS=Object.freeze([t.COMMAND_STARTED,t.COMMAND_SUCCEEDED,t.COMMAND_FAILED]),t.SERVER_RELAY_EVENTS=Object.freeze([t.SERVER_HEARTBEAT_STARTED,t.SERVER_HEARTBEAT_SUCCEEDED,t.SERVER_HEARTBEAT_FAILED,t.COMMAND_STARTED,t.COMMAND_SUCCEEDED,t.COMMAND_FAILED,...t.CMAP_EVENTS]),t.LOCAL_SERVER_EVENTS=Object.freeze([t.CONNECT,t.DESCRIPTION_RECEIVED,t.CLOSED,t.ENDED]),t.MONGO_CLIENT_EVENTS=Object.freeze([...t.CMAP_EVENTS,...t.APM_EVENTS,...t.TOPOLOGY_EVENTS,...t.HEARTBEAT_EVENTS]),t.LEGACY_HELLO_COMMAND="ismaster",t.LEGACY_HELLO_COMMAND_CAMEL_CASE="isMaster"},65017:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.assertUninitialized=t.AbstractCursor=t.CURSOR_FLAGS=void 0;const r=n(2203),o=n(63403),i=n(89086),s=n(86947),a=n(96327),u=n(86437),c=n(42326),l=n(53494),h=n(38938),f=n(50773),p=n(94452),d=n(52060),E=Symbol("id"),m=Symbol("documents"),_=Symbol("server"),g=Symbol("namespace"),y=Symbol("client"),A=Symbol("session"),v=Symbol("options"),b=Symbol("transform"),T=Symbol("initialized"),w=Symbol("closed"),O=Symbol("killed"),R=Symbol("kInit");t.CURSOR_FLAGS=["tailable","oplogReplay","noCursorTimeout","awaitData","exhaust","partial"];class S extends a.TypedEventEmitter{constructor(e,t,n={}){if(super(),!e.s.isMongoClient)throw new s.MongoRuntimeError("Cursor must be constructed with MongoClient");this[y]=e,this[g]=t,this[E]=null,this[m]=new d.List,this[T]=!1,this[w]=!1,this[O]=!1,this[v]={readPreference:n.readPreference&&n.readPreference instanceof f.ReadPreference?n.readPreference:f.ReadPreference.primary,...(0,o.pluckBSONSerializeOptions)(n)},this[v].timeoutMS=n.timeoutMS;const r=h.ReadConcern.fromOptions(n);r&&(this[v].readConcern=r),"number"==typeof n.batchSize&&(this[v].batchSize=n.batchSize),void 0!==n.comment&&(this[v].comment=n.comment),"number"==typeof n.maxTimeMS&&(this[v].maxTimeMS=n.maxTimeMS),"number"==typeof n.maxAwaitTimeMS&&(this[v].maxAwaitTimeMS=n.maxAwaitTimeMS),n.session instanceof p.ClientSession?this[A]=n.session:this[A]=this[y].startSession({owner:this,explicit:!1})}get id(){return this[E]??void 0}get isDead(){return(this[E]?.isZero()??!1)||this[w]||this[O]}get client(){return this[y]}get server(){return this[_]}get namespace(){return this[g]}get readPreference(){return this[v].readPreference}get readConcern(){return this[v].readConcern}get session(){return this[A]}set session(e){this[A]=e}get cursorOptions(){return this[v]}get closed(){return this[w]}get killed(){return this[O]}get loadBalanced(){return!!this[y].topology?.loadBalanced}bufferedCount(){return this[m].length}readBufferedDocuments(e){const t=[],n=Math.min(e??this[m].length,this[m].length);for(let e=0;eo.emit("error",e))),o}return new D(this)}async hasNext(){return this[E]!==o.Long.ZERO&&(0!==this[m].length||await I(this,{blocking:!0,transform:!1,shift:!1}))}async next(){if(this[E]===o.Long.ZERO)throw new s.MongoCursorExhaustedError;return await I(this,{blocking:!0,transform:!0,shift:!0})}async tryNext(){if(this[E]===o.Long.ZERO)throw new s.MongoCursorExhaustedError;return await I(this,{blocking:!1,transform:!0,shift:!0})}async forEach(e){if("function"!=typeof e)throw new s.MongoInvalidArgumentError('Argument "iterator" must be a function');for await(const t of this)if(!1===e(t))break}async close(){const e=!this[w];this[w]=!0,await N(this,{needsToEmitClosed:e})}async toArray(){const e=[];for await(const t of this)e.push(t);return e}addCursorFlag(e,n){if(C(this),!t.CURSOR_FLAGS.includes(e))throw new s.MongoInvalidArgumentError(`Flag ${e} is not one of ${t.CURSOR_FLAGS}`);if("boolean"!=typeof n)throw new s.MongoInvalidArgumentError(`Flag ${e} must be a boolean value`);return this[v][e]=n,this}map(e){C(this);const t=this[b];return this[b]=t?n=>e(t(n)):e,this}withReadPreference(e){if(C(this),e instanceof f.ReadPreference)this[v].readPreference=e;else{if("string"!=typeof e)throw new s.MongoInvalidArgumentError(`Invalid read preference: ${e}`);this[v].readPreference=f.ReadPreference.fromString(e)}return this}withReadConcern(e){C(this);const t=h.ReadConcern.fromOptions({readConcern:e});return t&&(this[v].readConcern=t),this}maxTimeMS(e){if(C(this),"number"!=typeof e)throw new s.MongoInvalidArgumentError("Argument for maxTimeMS must be a number");return this[v].maxTimeMS=e,this}batchSize(e){if(C(this),this[v].tailable)throw new s.MongoTailableCursorError("Tailable cursor does not support batchSize");if("number"!=typeof e)throw new s.MongoInvalidArgumentError('Operation "batchSize" requires an integer');return this[v].batchSize=e,this}rewind(){if(!this[T])return;this[E]=null,this[m].clear(),this[w]=!1,this[O]=!1,this[T]=!1;const e=this[A];e&&!1===e.explicit&&(e.hasEnded||e.endSession().then(void 0,d.squashError),this[A]=this.client.startSession({owner:this,explicit:!1}))}async getMore(e,t=!1){const n=new c.GetMoreOperation(this[g],this[E],this[_],{...this[v],session:this[A],batchSize:e,useCursorResponse:t});return await(0,u.executeOperation)(this[y],n)}async[R](){try{const e=await this._initialize(this[A]),t=e.response;this[_]=e.server,i.CursorResponse.is(t)?(this[E]=t.id,t.ns&&(this[g]=t.ns),this[m]=t):t.cursor&&(this[E]="number"==typeof t.cursor.id?o.Long.fromNumber(t.cursor.id):"bigint"==typeof t.cursor.id?o.Long.fromBigInt(t.cursor.id):t.cursor.id,t.cursor.ns&&(this[g]=(0,d.ns)(t.cursor.ns)),this[m].pushMany(t.cursor.firstBatch)),null==this[E]&&(this[E]=o.Long.ZERO,this[m].push(e.response)),this[T]=!0}catch(e){throw this[T]=!0,await N(this,{error:e}),e}this.isDead&&await N(this,void 0)}}async function I(e,{blocking:t,transform:n,shift:r}){if(e.closed)return!!r&&null;do{if(null==e[E]&&await e[R](),0!==e[m].length){if(!r)return!0;const t=e[m].shift(e[v]);if(null!=t&&n&&e[b])try{return e[b](t)}catch(t){try{await N(e,{error:t,needsToEmitClosed:!0})}catch(e){(0,d.squashError)(e)}throw t}return t}if(e.isDead)return await N(e,{}),!!r&&null;const s=e[v].batchSize||1e3;try{const t=await e.getMore(s);if(i.CursorResponse.is(t))e[E]=t.id,e[m]=t;else if(t){const n="number"==typeof t.cursor.id?o.Long.fromNumber(t.cursor.id):"bigint"==typeof t.cursor.id?o.Long.fromBigInt(t.cursor.id):t.cursor.id;e[m].pushMany(t.cursor.nextBatch),e[E]=n}}catch(t){try{await N(e,{error:t,needsToEmitClosed:!0})}catch(e){(0,d.squashError)(e)}throw t}if(e.isDead&&await N(e,{}),0===e[m].length&&!1===t)return!!r&&null}while(!e.isDead||0!==e[m].length);return!!r&&null}async function N(e,t){const n=e[E],r=e[g],i=e[_],a=e[A],c=t?.error,h=t?.needsToEmitClosed??0===e[m].length;if(c&&e.loadBalanced&&c instanceof s.MongoNetworkError)return await f();if(null==n||null==i||n.isZero()||null==r){if(h&&(e[w]=!0,e[E]=o.Long.ZERO,e.emit(S.CLOSE)),a){if(a.owner===e)return void await a.endSession({error:c});a.inTransaction()||(0,p.maybeClearPinnedConnection)(a,{error:c})}}else{if(e[O]=!0,a.hasEnded)return await f();try{await(0,u.executeOperation)(e[y],new l.KillCursorsOperation(n,r,i,{session:a}))}catch(c){(0,d.squashError)(c)}finally{await f()}}async function f(){if(a){if(a.owner===e){try{await a.endSession({error:c})}finally{e.emit(S.CLOSE)}return}a.inTransaction()||(0,p.maybeClearPinnedConnection)(a,{error:c})}e.emit(S.CLOSE)}}function C(e){if(e[T])throw new s.MongoCursorInUseError}S.CLOSE="close",t.AbstractCursor=S,t.assertUninitialized=C;class D extends r.Readable{constructor(e){super({objectMode:!0,autoDestroy:!1,highWaterMark:1}),this._readInProgress=!1,this._cursor=e}_read(e){this._readInProgress||(this._readInProgress=!0,this._readNext())}_destroy(e,t){this._cursor.close().then((()=>t(e)),(e=>t(e)))}_readNext(){I(this._cursor,{blocking:!0,transform:!0,shift:!0}).then((e=>{if(null==e)this.push(null);else if(this.destroyed)this._cursor.close().then(void 0,d.squashError);else{if(this.push(e))return this._readNext();this._readInProgress=!1}}),(e=>e.message.match(/server is closed/)?(this._cursor.close().then(void 0,d.squashError),this.push(null)):e.message.match(/operation was interrupted/)?this.push(null):this.destroy(e)))}}},24091:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AggregationCursor=void 0;const r=n(4651),o=n(86437),i=n(52060),s=n(65017),a=Symbol("pipeline"),u=Symbol("options");class c extends s.AbstractCursor{constructor(e,t,n=[],r={}){super(e,t,r),this[a]=n,this[u]=r}get pipeline(){return this[a]}clone(){const e=(0,i.mergeOptions)({},this[u]);return delete e.session,new c(this.client,this.namespace,this[a],{...e})}map(e){return super.map(e)}async _initialize(e){const t=new r.AggregateOperation(this.namespace,this[a],{...this[u],...this.cursorOptions,session:e}),n=await(0,o.executeOperation)(this.client,t);return{server:t.server,session:e,response:n}}async explain(e){return await(0,o.executeOperation)(this.client,new r.AggregateOperation(this.namespace,this[a],{...this[u],...this.cursorOptions,explain:e??!0}))}addStage(e){return(0,s.assertUninitialized)(this),this[a].push(e),this}group(e){return this.addStage({$group:e})}limit(e){return this.addStage({$limit:e})}match(e){return this.addStage({$match:e})}out(e){return this.addStage({$out:e})}project(e){return this.addStage({$project:e})}lookup(e){return this.addStage({$lookup:e})}redact(e){return this.addStage({$redact:e})}skip(e){return this.addStage({$skip:e})}sort(e){return this.addStage({$sort:e})}unwind(e){return this.addStage({$unwind:e})}geoNear(e){return this.addStage({$geoNear:e})}}t.AggregationCursor=c},22250:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ChangeStreamCursor=void 0;const r=n(9272),o=n(32568),i=n(4651),s=n(86437),a=n(52060),u=n(65017);class c extends u.AbstractCursor{constructor(e,t,n=[],r={}){super(e,t,r),this.pipeline=n,this.options=r,this._resumeToken=null,this.startAtOperationTime=r.startAtOperationTime,r.startAfter?this.resumeToken=r.startAfter:r.resumeAfter&&(this.resumeToken=r.resumeAfter)}set resumeToken(e){this._resumeToken=e,this.emit(r.ChangeStream.RESUME_TOKEN_CHANGED,e)}get resumeToken(){return this._resumeToken}get resumeOptions(){const e={...this.options};for(const t of["resumeAfter","startAfter","startAtOperationTime"])delete e[t];return null!=this.resumeToken?this.options.startAfter&&!this.hasReceived?e.startAfter=this.resumeToken:e.resumeAfter=this.resumeToken:null!=this.startAtOperationTime&&(0,a.maxWireVersion)(this.server)>=7&&(e.startAtOperationTime=this.startAtOperationTime),e}cacheResumeToken(e){0===this.bufferedCount()&&this.postBatchResumeToken?this.resumeToken=this.postBatchResumeToken:this.resumeToken=e,this.hasReceived=!0}_processBatch(e){const t=e.cursor;t.postBatchResumeToken&&(this.postBatchResumeToken=e.cursor.postBatchResumeToken,0===("firstBatch"in e.cursor?e.cursor.firstBatch:e.cursor.nextBatch).length&&(this.resumeToken=t.postBatchResumeToken))}clone(){return new c(this.client,this.namespace,this.pipeline,{...this.cursorOptions})}async _initialize(e){const t=new i.AggregateOperation(this.namespace,this.pipeline,{...this.cursorOptions,...this.options,session:e}),n=await(0,s.executeOperation)(e.client,t),r=t.server;return this.maxWireVersion=(0,a.maxWireVersion)(r),null==this.startAtOperationTime&&null==this.resumeAfter&&null==this.startAfter&&this.maxWireVersion>=7&&(this.startAtOperationTime=n.operationTime),this._processBatch(n),this.emit(o.INIT,n),this.emit(o.RESPONSE),{server:r,session:e,response:n}}async getMore(e){const t=await super.getMore(e);return this.maxWireVersion=(0,a.maxWireVersion)(this.server),this._processBatch(t),this.emit(r.ChangeStream.MORE,t),this.emit(r.ChangeStream.RESPONSE),t}}t.ChangeStreamCursor=c},79614:(e,t,n)=>{"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.FindCursor=t.FLAGS=void 0;const o=n(89086),i=n(86947),s=n(64303),a=n(86437),u=n(93793),c=n(47781),l=n(52060),h=n(65017),f=Symbol("filter"),p=Symbol("numReturned"),d=Symbol("builtOptions");t.FLAGS=["tailable","oplogReplay","noCursorTimeout","awaitData","exhaust","partial"];class E extends h.AbstractCursor{constructor(e,t,n={},o={}){super(e,t,o),this[r]=0,this[f]=n,this[d]=o,null!=o.sort&&(this[d].sort=(0,c.formatSort)(o.sort))}clone(){const e=(0,l.mergeOptions)({},this[d]);return delete e.session,new E(this.client,this.namespace,this[f],{...e})}map(e){return super.map(e)}async _initialize(e){const t=new u.FindOperation(this.namespace,this[f],{...this[d],...this.cursorOptions,session:e}),n=await(0,a.executeOperation)(this.client,t);return o.CursorResponse.is(n)?this[p]=n.batchSize:this[p]=this[p]+(n?.cursor?.firstBatch?.length??0),{server:t.server,session:e,response:n}}async getMore(e){const t=this[p];if(t){const n=this[d].limit;if((e=n&&n>0&&t+e>n?n-t:e)<=0){try{await this.close()}catch(e){(0,l.squashError)(e)}return o.CursorResponse.emptyGetMore}}const n=await super.getMore(e,!1);return o.CursorResponse.is(n)?this[p]=this[p]+n.batchSize:this[p]=this[p]+(n?.cursor?.nextBatch?.length??0),n}async count(e){if((0,l.emitWarningOnce)("cursor.count is deprecated and will be removed in the next major version, please use `collection.estimatedDocumentCount` or `collection.countDocuments` instead "),"boolean"==typeof e)throw new i.MongoInvalidArgumentError("Invalid first parameter to count");return await(0,a.executeOperation)(this.client,new s.CountOperation(this.namespace,this[f],{...this[d],...this.cursorOptions,...e}))}async explain(e){return await(0,a.executeOperation)(this.client,new u.FindOperation(this.namespace,this[f],{...this[d],...this.cursorOptions,explain:e??!0}))}filter(e){return(0,h.assertUninitialized)(this),this[f]=e,this}hint(e){return(0,h.assertUninitialized)(this),this[d].hint=e,this}min(e){return(0,h.assertUninitialized)(this),this[d].min=e,this}max(e){return(0,h.assertUninitialized)(this),this[d].max=e,this}returnKey(e){return(0,h.assertUninitialized)(this),this[d].returnKey=e,this}showRecordId(e){return(0,h.assertUninitialized)(this),this[d].showRecordId=e,this}addQueryModifier(e,t){if((0,h.assertUninitialized)(this),"$"!==e[0])throw new i.MongoInvalidArgumentError(`${e} is not a valid query modifier`);switch(e.substr(1)){case"comment":this[d].comment=t;break;case"explain":this[d].explain=t;break;case"hint":this[d].hint=t;break;case"max":this[d].max=t;break;case"maxTimeMS":this[d].maxTimeMS=t;break;case"min":this[d].min=t;break;case"orderby":this[d].sort=(0,c.formatSort)(t);break;case"query":this[f]=t;break;case"returnKey":this[d].returnKey=t;break;case"showDiskLoc":this[d].showRecordId=t;break;default:throw new i.MongoInvalidArgumentError(`Invalid query modifier: ${e}`)}return this}comment(e){return(0,h.assertUninitialized)(this),this[d].comment=e,this}maxAwaitTimeMS(e){if((0,h.assertUninitialized)(this),"number"!=typeof e)throw new i.MongoInvalidArgumentError("Argument for maxAwaitTimeMS must be a number");return this[d].maxAwaitTimeMS=e,this}maxTimeMS(e){if((0,h.assertUninitialized)(this),"number"!=typeof e)throw new i.MongoInvalidArgumentError("Argument for maxTimeMS must be a number");return this[d].maxTimeMS=e,this}project(e){return(0,h.assertUninitialized)(this),this[d].projection=e,this}sort(e,t){if((0,h.assertUninitialized)(this),this[d].tailable)throw new i.MongoTailableCursorError("Tailable cursor does not support sorting");return this[d].sort=(0,c.formatSort)(e,t),this}allowDiskUse(e=!0){if((0,h.assertUninitialized)(this),!this[d].sort)throw new i.MongoInvalidArgumentError('Option "allowDiskUse" requires a sort specification');return e?(this[d].allowDiskUse=!0,this):(this[d].allowDiskUse=!1,this)}collation(e){return(0,h.assertUninitialized)(this),this[d].collation=e,this}limit(e){if((0,h.assertUninitialized)(this),this[d].tailable)throw new i.MongoTailableCursorError("Tailable cursor does not support limit");if("number"!=typeof e)throw new i.MongoInvalidArgumentError('Operation "limit" requires an integer');return this[d].limit=e,this}skip(e){if((0,h.assertUninitialized)(this),this[d].tailable)throw new i.MongoTailableCursorError("Tailable cursor does not support skip");if("number"!=typeof e)throw new i.MongoInvalidArgumentError('Operation "skip" requires an integer');return this[d].skip=e,this}}t.FindCursor=E,r=p},63537:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ListCollectionsCursor=void 0;const r=n(86437),o=n(65860),i=n(65017);class s extends i.AbstractCursor{constructor(e,t,n){super(e.client,e.s.namespace,n),this.parent=e,this.filter=t,this.options=n}clone(){return new s(this.parent,this.filter,{...this.options,...this.cursorOptions})}async _initialize(e){const t=new o.ListCollectionsOperation(this.parent,this.filter,{...this.cursorOptions,...this.options,session:e}),n=await(0,r.executeOperation)(this.parent.client,t);return{server:t.server,session:e,response:n}}}t.ListCollectionsCursor=s},5058:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ListIndexesCursor=void 0;const r=n(86437),o=n(87988),i=n(65017);class s extends i.AbstractCursor{constructor(e,t){super(e.client,e.s.namespace,t),this.parent=e,this.options=t}clone(){return new s(this.parent,{...this.options,...this.cursorOptions})}async _initialize(e){const t=new o.ListIndexesOperation(this.parent,{...this.cursorOptions,...this.options,session:e}),n=await(0,r.executeOperation)(this.parent.client,t);return{server:t.server,session:e,response:n}}}t.ListIndexesCursor=s},8159:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ListSearchIndexesCursor=void 0;const r=n(24091);class o extends r.AggregationCursor{constructor({fullNamespace:e,client:t},n,r={}){super(t,e,null==n?[{$listSearchIndexes:{}}]:[{$listSearchIndexes:{name:n}}],r)}}t.ListSearchIndexesCursor=o},8328:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.RunCommandCursor=void 0;const r=n(86947),o=n(86437),i=n(42326),s=n(37639),a=n(52060),u=n(65017);class c extends u.AbstractCursor{setComment(e){return this.getMoreOptions.comment=e,this}setMaxTimeMS(e){return this.getMoreOptions.maxAwaitTimeMS=e,this}setBatchSize(e){return this.getMoreOptions.batchSize=e,this}clone(){throw new r.MongoAPIError("Clone not supported, create a new cursor with db.runCursorCommand")}withReadConcern(e){throw new r.MongoAPIError("RunCommandCursor does not support readConcern it must be attached to the command being run")}addCursorFlag(e,t){throw new r.MongoAPIError("RunCommandCursor does not support cursor flags, they must be attached to the command being run")}maxTimeMS(e){throw new r.MongoAPIError("maxTimeMS must be configured on the command document directly, to configure getMore.maxTimeMS use cursor.setMaxTimeMS()")}batchSize(e){throw new r.MongoAPIError("batchSize must be configured on the command document directly, to configure getMore.batchSize use cursor.setBatchSize()")}constructor(e,t,n={}){super(e.client,(0,a.ns)(e.namespace),n),this.getMoreOptions={},this.db=e,this.command=Object.freeze({...t})}async _initialize(e){const t=new s.RunCommandOperation(this.db,this.command,{...this.cursorOptions,session:e,readPreference:this.cursorOptions.readPreference}),n=await(0,o.executeOperation)(this.client,t);if(null==n.cursor)throw new r.MongoUnexpectedServerResponseError("Expected server to respond with cursor");return{server:t.server,session:e,response:n}}async getMore(e){const t=new i.GetMoreOperation(this.namespace,this.id,this.server,{...this.cursorOptions,session:this.session,...this.getMoreOptions,useCursorResponse:!1});return await(0,o.executeOperation)(this.client,t)}}t.RunCommandCursor=c},90263:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Db=void 0;const r=n(47306),o=n(63403),i=n(9272),s=n(36653),a=n(32568),u=n(24091),c=n(63537),l=n(8328),h=n(86947),f=n(37477),p=n(75629),d=n(5415),E=n(86437),m=n(87988),_=n(4867),g=n(67862),y=n(5964),A=n(37639),v=n(80008),b=n(35207),T=n(38938),w=n(50773),O=n(52060),R=n(98349),S=["writeConcern","readPreference","readPreferenceTags","native_parser","forceServerObjectId","pkFactory","serializeFunctions","raw","authSource","ignoreUndefined","readConcern","retryMiliSeconds","numberOfRetries","useBigInt64","promoteBuffers","promoteLongs","bsonRegExp","enableUtf8Validation","promoteValues","compression","retryWrites","timeoutMS"];class I{constructor(e,t,n){if(n=n??{},n=(0,O.filterOptions)(n,S),"string"==typeof t&&t.includes("."))throw new h.MongoInvalidArgumentError("Database names cannot contain the character '.'");this.s={options:n,readPreference:w.ReadPreference.fromOptions(n),bsonOptions:(0,o.resolveBSONOptions)(n,e),pkFactory:n?.pkFactory??O.DEFAULT_PK_FACTORY,readConcern:T.ReadConcern.fromOptions(n),writeConcern:R.WriteConcern.fromOptions(n),namespace:new O.MongoDBNamespace(t)},this.client=e}get databaseName(){return this.s.namespace.db}get options(){return this.s.options}get secondaryOk(){return"primary"!==this.s.readPreference?.preference||!1}get readConcern(){return this.s.readConcern}get readPreference(){return null==this.s.readPreference?this.client.readPreference:this.s.readPreference}get bsonOptions(){return this.s.bsonOptions}get writeConcern(){return this.s.writeConcern}get namespace(){return this.s.namespace.toString()}async createCollection(e,t){return await(0,E.executeOperation)(this.client,new p.CreateCollectionOperation(this,e,(0,O.resolveOptions)(this,t)))}async command(e,t){return await(0,E.executeOperation)(this.client,new A.RunCommandOperation(this,e,{...(0,o.resolveBSONOptions)(t),session:t?.session,readPreference:t?.readPreference}))}aggregate(e=[],t){return new u.AggregationCursor(this.client,this.s.namespace,e,(0,O.resolveOptions)(this,t))}admin(){return new r.Admin(this)}collection(e,t={}){if("function"==typeof t)throw new h.MongoInvalidArgumentError("The callback form of this helper has been removed.");return new s.Collection(this,e,(0,O.resolveOptions)(this,t))}async stats(e){return await(0,E.executeOperation)(this.client,new b.DbStatsOperation(this,(0,O.resolveOptions)(this,e)))}listCollections(e={},t={}){return new c.ListCollectionsCursor(this,e,(0,O.resolveOptions)(this,t))}async renameCollection(e,t,n){return await(0,E.executeOperation)(this.client,new y.RenameOperation(this.collection(e),t,{...n,new_collection:!0,readPreference:w.ReadPreference.primary}))}async dropCollection(e,t){return await(0,E.executeOperation)(this.client,new d.DropCollectionOperation(this,e,(0,O.resolveOptions)(this,t)))}async dropDatabase(e){return await(0,E.executeOperation)(this.client,new d.DropDatabaseOperation(this,(0,O.resolveOptions)(this,e)))}async collections(e){return await(0,E.executeOperation)(this.client,new f.CollectionsOperation(this,(0,O.resolveOptions)(this,e)))}async createIndex(e,t,n){return(await(0,E.executeOperation)(this.client,m.CreateIndexesOperation.fromIndexSpecification(this,e,t,n)))[0]}async removeUser(e,t){return await(0,E.executeOperation)(this.client,new g.RemoveUserOperation(this,e,(0,O.resolveOptions)(this,t)))}async setProfilingLevel(e,t){return await(0,E.executeOperation)(this.client,new v.SetProfilingLevelOperation(this,e,(0,O.resolveOptions)(this,t)))}async profilingLevel(e){return await(0,E.executeOperation)(this.client,new _.ProfilingLevelOperation(this,(0,O.resolveOptions)(this,e)))}async indexInformation(e,t){return await this.collection(e).indexInformation((0,O.resolveOptions)(this,t))}watch(e=[],t={}){return Array.isArray(e)||(t=e,e=[]),new i.ChangeStream(this,e,(0,O.resolveOptions)(this,t))}runCursorCommand(e,t){return new l.RunCommandCursor(this,e,t)}}I.SYSTEM_NAMESPACE_COLLECTION=a.SYSTEM_NAMESPACE_COLLECTION,I.SYSTEM_INDEX_COLLECTION=a.SYSTEM_INDEX_COLLECTION,I.SYSTEM_PROFILE_COLLECTION=a.SYSTEM_PROFILE_COLLECTION,I.SYSTEM_USER_COLLECTION=a.SYSTEM_USER_COLLECTION,I.SYSTEM_COMMAND_COLLECTION=a.SYSTEM_COMMAND_COLLECTION,I.SYSTEM_JS_COLLECTION=a.SYSTEM_JS_COLLECTION,t.Db=I},33371:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getMongoDBClientEncryption=t.aws4=t.getSocks=t.getSnappy=t.getGcpMetadata=t.getAwsCredentialProvider=t.getZstdLibrary=t.getKerberos=void 0;const r=n(86947);function o(e){return new Proxy(e?{kModuleError:e}:{},{get:(t,n)=>{if("kModuleError"===n)return e;throw e},set:()=>{throw e}})}t.getKerberos=function(){let e;try{e=n(Object(function(){var e=new Error("Cannot find module 'kerberos'");throw e.code="MODULE_NOT_FOUND",e}()))}catch(t){e=o(new r.MongoMissingDependencyError("Optional module `kerberos` not found. Please install it to enable kerberos authentication",{cause:t,dependencyName:"kerberos"}))}return e},t.getZstdLibrary=function(){let e;try{e=n(Object(function(){var e=new Error("Cannot find module '@mongodb-js/zstd'");throw e.code="MODULE_NOT_FOUND",e}()))}catch(t){e=o(new r.MongoMissingDependencyError("Optional module `@mongodb-js/zstd` not found. Please install it to enable zstd compression",{cause:t,dependencyName:"zstd"}))}return e},t.getAwsCredentialProvider=function(){try{return n(Object(function(){var e=new Error("Cannot find module '@aws-sdk/credential-providers'");throw e.code="MODULE_NOT_FOUND",e}()))}catch(e){return o(new r.MongoMissingDependencyError("Optional module `@aws-sdk/credential-providers` not found. Please install it to enable getting aws credentials via the official sdk.",{cause:e,dependencyName:"@aws-sdk/credential-providers"}))}},t.getGcpMetadata=function(){try{return n(Object(function(){var e=new Error("Cannot find module 'gcp-metadata'");throw e.code="MODULE_NOT_FOUND",e}()))}catch(e){return o(new r.MongoMissingDependencyError("Optional module `gcp-metadata` not found. Please install it to enable getting gcp credentials via the official sdk.",{cause:e,dependencyName:"gcp-metadata"}))}},t.getSnappy=function(){try{return n(Object(function(){var e=new Error("Cannot find module 'snappy'");throw e.code="MODULE_NOT_FOUND",e}()))}catch(e){return{kModuleError:new r.MongoMissingDependencyError("Optional module `snappy` not found. Please install it to enable snappy compression",{cause:e,dependencyName:"snappy"})}}},t.getSocks=function(){try{return n(65861)}catch(e){return{kModuleError:new r.MongoMissingDependencyError("Optional module `socks` not found. Please install it to connections over a SOCKS5 proxy",{cause:e,dependencyName:"socks"})}}},t.aws4=function(){let e;try{e=n(Object(function(){var e=new Error("Cannot find module 'aws4'");throw e.code="MODULE_NOT_FOUND",e}()))}catch(t){e=o(new r.MongoMissingDependencyError("Optional module `aws4` not found. Please install it to enable AWS authentication",{cause:t,dependencyName:"aws4"}))}return e}(),t.getMongoDBClientEncryption=function(){let e=null;try{e=n(Object(function(){var e=new Error("Cannot find module 'mongodb-client-encryption'");throw e.code="MODULE_NOT_FOUND",e}()))}catch(e){return{kModuleError:new r.MongoMissingDependencyError("Optional module `mongodb-client-encryption` not found. Please install it to use auto encryption or ClientEncryption.",{cause:e,dependencyName:"mongodb-client-encryption"})}}return e}},52831:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Encrypter=void 0;const r=n(39023),o=n(72377),i=n(32568),s=n(33371),a=n(86947),u=n(13139),c=Symbol("internalClient");t.Encrypter=class{constructor(e,t,n){if("object"!=typeof n.autoEncryption)throw new a.MongoInvalidArgumentError('Option "autoEncryption" must be specified');this[c]=null,this.bypassAutoEncryption=!!n.autoEncryption.bypassAutoEncryption,this.needsConnecting=!1,0===n.maxPoolSize&&null==n.autoEncryption.keyVaultClient?n.autoEncryption.keyVaultClient=e:null==n.autoEncryption.keyVaultClient&&(n.autoEncryption.keyVaultClient=this.getInternalClient(e,t,n)),this.bypassAutoEncryption?n.autoEncryption.metadataClient=void 0:0===n.maxPoolSize?n.autoEncryption.metadataClient=e:n.autoEncryption.metadataClient=this.getInternalClient(e,t,n),n.proxyHost&&(n.autoEncryption.proxyOptions={proxyHost:n.proxyHost,proxyPort:n.proxyPort,proxyUsername:n.proxyUsername,proxyPassword:n.proxyPassword}),this.autoEncrypter=new o.AutoEncrypter(e,n.autoEncryption)}getInternalClient(e,t,n){let r=this[c];if(null==r){const o={};for(const e of[...Object.getOwnPropertyNames(n),...Object.getOwnPropertySymbols(n)])["autoEncryption","minPoolSize","servers","caseTranslate","dbName"].includes(e)||Reflect.set(o,e,Reflect.get(n,e));o.minPoolSize=0,r=new u.MongoClient(t,o),this[c]=r;for(const t of i.MONGO_CLIENT_EVENTS)for(const n of e.listeners(t))r.on(t,n);e.on("newListener",((e,t)=>{r?.on(e,t)})),this.needsConnecting=!0}return r}async connectInternalClient(){const e=this[c];this.needsConnecting&&null!=e&&(this.needsConnecting=!1,await e.connect())}closeCallback(e,t,n){(0,r.callbackify)(this.close.bind(this))(e,t,n)}async close(e,t){let n;try{await this.autoEncrypter.teardown(t)}catch(e){n=e}const r=this[c];if(null!=r&&e!==r)return await r.close(t);if(null!=n)throw n}static checkForMongoCrypt(){const e=(0,s.getMongoDBClientEncryption)();if("kModuleError"in e)throw new a.MongoMissingDependencyError("Auto-encryption requested, but the module is not installed. Please add `mongodb-client-encryption` as a dependency of your project",{cause:e.kModuleError,dependencyName:"mongodb-client-encryption"})}}},86947:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isResumableError=t.isNetworkTimeoutError=t.isSDAMUnrecoverableError=t.isNodeShuttingDownError=t.isRetryableReadError=t.isRetryableWriteError=t.needsRetryableWriteLabel=t.MongoWriteConcernError=t.MongoServerSelectionError=t.MongoSystemError=t.MongoMissingDependencyError=t.MongoMissingCredentialsError=t.MongoCompatibilityError=t.MongoInvalidArgumentError=t.MongoParseError=t.MongoNetworkTimeoutError=t.MongoNetworkError=t.isNetworkErrorBeforeHandshake=t.MongoTopologyClosedError=t.MongoCursorExhaustedError=t.MongoServerClosedError=t.MongoCursorInUseError=t.MongoUnexpectedServerResponseError=t.MongoGridFSChunkError=t.MongoGridFSStreamError=t.MongoTailableCursorError=t.MongoChangeStreamError=t.MongoGCPError=t.MongoAzureError=t.MongoOIDCError=t.MongoAWSError=t.MongoKerberosError=t.MongoExpiredSessionError=t.MongoTransactionError=t.MongoNotConnectedError=t.MongoDecompressionError=t.MongoBatchReExecutionError=t.MongoRuntimeError=t.MongoAPIError=t.MongoDriverError=t.MongoServerError=t.MongoError=t.MongoErrorLabel=t.GET_MORE_RESUMABLE_CODES=t.MONGODB_ERROR_CODES=t.NODE_IS_RECOVERING_ERROR_MESSAGE=t.LEGACY_NOT_PRIMARY_OR_SECONDARY_ERROR_MESSAGE=t.LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE=void 0;const n=Symbol("errorLabels");t.LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE=new RegExp("not master","i"),t.LEGACY_NOT_PRIMARY_OR_SECONDARY_ERROR_MESSAGE=new RegExp("not master or secondary","i"),t.NODE_IS_RECOVERING_ERROR_MESSAGE=new RegExp("node is recovering","i"),t.MONGODB_ERROR_CODES=Object.freeze({HostUnreachable:6,HostNotFound:7,AuthenticationFailed:18,NetworkTimeout:89,ShutdownInProgress:91,PrimarySteppedDown:189,ExceededTimeLimit:262,SocketException:9001,NotWritablePrimary:10107,InterruptedAtShutdown:11600,InterruptedDueToReplStateChange:11602,NotPrimaryNoSecondaryOk:13435,NotPrimaryOrSecondary:13436,StaleShardVersion:63,StaleEpoch:150,StaleConfig:13388,RetryChangeStream:234,FailedToSatisfyReadPreference:133,CursorNotFound:43,LegacyNotPrimary:10058,WriteConcernFailed:64,NamespaceNotFound:26,IllegalOperation:20,MaxTimeMSExpired:50,UnknownReplWriteConcern:79,UnsatisfiableWriteConcern:100,Reauthenticate:391}),t.GET_MORE_RESUMABLE_CODES=new Set([t.MONGODB_ERROR_CODES.HostUnreachable,t.MONGODB_ERROR_CODES.HostNotFound,t.MONGODB_ERROR_CODES.NetworkTimeout,t.MONGODB_ERROR_CODES.ShutdownInProgress,t.MONGODB_ERROR_CODES.PrimarySteppedDown,t.MONGODB_ERROR_CODES.ExceededTimeLimit,t.MONGODB_ERROR_CODES.SocketException,t.MONGODB_ERROR_CODES.NotWritablePrimary,t.MONGODB_ERROR_CODES.InterruptedAtShutdown,t.MONGODB_ERROR_CODES.InterruptedDueToReplStateChange,t.MONGODB_ERROR_CODES.NotPrimaryNoSecondaryOk,t.MONGODB_ERROR_CODES.NotPrimaryOrSecondary,t.MONGODB_ERROR_CODES.StaleShardVersion,t.MONGODB_ERROR_CODES.StaleEpoch,t.MONGODB_ERROR_CODES.StaleConfig,t.MONGODB_ERROR_CODES.RetryChangeStream,t.MONGODB_ERROR_CODES.FailedToSatisfyReadPreference,t.MONGODB_ERROR_CODES.CursorNotFound]),t.MongoErrorLabel=Object.freeze({RetryableWriteError:"RetryableWriteError",TransientTransactionError:"TransientTransactionError",UnknownTransactionCommitResult:"UnknownTransactionCommitResult",ResumableChangeStreamError:"ResumableChangeStreamError",HandshakeError:"HandshakeError",ResetPool:"ResetPool",PoolRequstedRetry:"PoolRequstedRetry",InterruptInUseConnections:"InterruptInUseConnections",NoWritesPerformed:"NoWritesPerformed"});class r extends Error{constructor(e,t){super(e,t),this[n]=new Set}static buildErrorMessage(e){return"string"==typeof e?e:function(e){return null!=e&&"object"==typeof e&&"errors"in e&&Array.isArray(e.errors)}(e)&&0===e.message.length?0===e.errors.length?"AggregateError has an empty errors array. Please check the `cause` property for more information.":e.errors.map((({message:e})=>e)).join(", "):null!=e&&"object"==typeof e&&"message"in e&&"string"==typeof e.message?e.message:"empty error message"}get name(){return"MongoError"}get errmsg(){return this.message}hasErrorLabel(e){return this[n].has(e)}addErrorLabel(e){this[n].add(e)}get errorLabels(){return Array.from(this[n])}}t.MongoError=r;class o extends r{constructor(e){super(e.message||e.errmsg||e.$err||"n/a"),e.errorLabels&&(this[n]=new Set(e.errorLabels)),this.errorResponse=e;for(const t in e)"errorLabels"!==t&&"errmsg"!==t&&"message"!==t&&"errorResponse"!==t&&(this[t]=e[t])}get name(){return"MongoServerError"}}t.MongoServerError=o;class i extends r{constructor(e,t){super(e,t)}get name(){return"MongoDriverError"}}t.MongoDriverError=i;class s extends i{constructor(e,t){super(e,t)}get name(){return"MongoAPIError"}}t.MongoAPIError=s;class a extends i{constructor(e,t){super(e,t)}get name(){return"MongoRuntimeError"}}t.MongoRuntimeError=a,t.MongoBatchReExecutionError=class extends s{constructor(e="This batch has already been executed, create new batch to execute"){super(e)}get name(){return"MongoBatchReExecutionError"}},t.MongoDecompressionError=class extends a{constructor(e){super(e)}get name(){return"MongoDecompressionError"}},t.MongoNotConnectedError=class extends s{constructor(e){super(e)}get name(){return"MongoNotConnectedError"}},t.MongoTransactionError=class extends s{constructor(e){super(e)}get name(){return"MongoTransactionError"}},t.MongoExpiredSessionError=class extends s{constructor(e="Cannot use a session that has ended"){super(e)}get name(){return"MongoExpiredSessionError"}},t.MongoKerberosError=class extends a{constructor(e){super(e)}get name(){return"MongoKerberosError"}},t.MongoAWSError=class extends a{constructor(e,t){super(e,t)}get name(){return"MongoAWSError"}};class u extends a{constructor(e){super(e)}get name(){return"MongoOIDCError"}}t.MongoOIDCError=u,t.MongoAzureError=class extends u{constructor(e){super(e)}get name(){return"MongoAzureError"}},t.MongoGCPError=class extends u{constructor(e){super(e)}get name(){return"MongoGCPError"}},t.MongoChangeStreamError=class extends a{constructor(e){super(e)}get name(){return"MongoChangeStreamError"}},t.MongoTailableCursorError=class extends s{constructor(e="Tailable cursor does not support this operation"){super(e)}get name(){return"MongoTailableCursorError"}},t.MongoGridFSStreamError=class extends a{constructor(e){super(e)}get name(){return"MongoGridFSStreamError"}},t.MongoGridFSChunkError=class extends a{constructor(e){super(e)}get name(){return"MongoGridFSChunkError"}},t.MongoUnexpectedServerResponseError=class extends a{constructor(e){super(e)}get name(){return"MongoUnexpectedServerResponseError"}},t.MongoCursorInUseError=class extends s{constructor(e="Cursor is already initialized"){super(e)}get name(){return"MongoCursorInUseError"}},t.MongoServerClosedError=class extends s{constructor(e="Server is closed"){super(e)}get name(){return"MongoServerClosedError"}},t.MongoCursorExhaustedError=class extends s{constructor(e){super(e||"Cursor is exhausted")}get name(){return"MongoCursorExhaustedError"}},t.MongoTopologyClosedError=class extends s{constructor(e="Topology is closed"){super(e)}get name(){return"MongoTopologyClosedError"}};const c=Symbol("beforeHandshake");t.isNetworkErrorBeforeHandshake=function(e){return!0===e[c]};class l extends r{constructor(e,t){super(e,{cause:t?.cause}),t&&"boolean"==typeof t.beforeHandshake&&(this[c]=t.beforeHandshake)}get name(){return"MongoNetworkError"}}t.MongoNetworkError=l,t.MongoNetworkTimeoutError=class extends l{constructor(e,t){super(e,t)}get name(){return"MongoNetworkTimeoutError"}};class h extends i{constructor(e){super(e)}get name(){return"MongoParseError"}}t.MongoParseError=h,t.MongoInvalidArgumentError=class extends s{constructor(e){super(e)}get name(){return"MongoInvalidArgumentError"}},t.MongoCompatibilityError=class extends s{constructor(e){super(e)}get name(){return"MongoCompatibilityError"}},t.MongoMissingCredentialsError=class extends s{constructor(e){super(e)}get name(){return"MongoMissingCredentialsError"}},t.MongoMissingDependencyError=class extends s{constructor(e,t){super(e,t),this.dependencyName=t.dependencyName}get name(){return"MongoMissingDependencyError"}};class f extends r{constructor(e,t){t&&t.error?super(r.buildErrorMessage(t.error.message||t.error),{cause:t.error}):super(e),t&&(this.reason=t),this.code=t.error?.code}get name(){return"MongoSystemError"}}t.MongoSystemError=f,t.MongoServerSelectionError=class extends f{constructor(e,t){super(e,t)}get name(){return"MongoServerSelectionError"}};class p extends o{constructor(e,t){t&&Array.isArray(t.errorLabels)&&(e.errorLabels=t.errorLabels),super(e),this.errInfo=e.errInfo,null!=t&&(this.result=function(e){const t=Object.assign({},e);return 0===t.ok&&(t.ok=1,delete t.errmsg,delete t.code,delete t.codeName),t}(t))}get name(){return"MongoWriteConcernError"}}t.MongoWriteConcernError=p;const d=new Set([t.MONGODB_ERROR_CODES.HostUnreachable,t.MONGODB_ERROR_CODES.HostNotFound,t.MONGODB_ERROR_CODES.NetworkTimeout,t.MONGODB_ERROR_CODES.ShutdownInProgress,t.MONGODB_ERROR_CODES.PrimarySteppedDown,t.MONGODB_ERROR_CODES.SocketException,t.MONGODB_ERROR_CODES.NotWritablePrimary,t.MONGODB_ERROR_CODES.InterruptedAtShutdown,t.MONGODB_ERROR_CODES.InterruptedDueToReplStateChange,t.MONGODB_ERROR_CODES.NotPrimaryNoSecondaryOk,t.MONGODB_ERROR_CODES.NotPrimaryOrSecondary,t.MONGODB_ERROR_CODES.ExceededTimeLimit]),E=d;function m(e){return e.hasErrorLabel(t.MongoErrorLabel.RetryableWriteError)||e.hasErrorLabel(t.MongoErrorLabel.PoolRequstedRetry)}t.needsRetryableWriteLabel=function(e,n){return e instanceof l||!(e instanceof r&&(n>=9||m(e))&&!e.hasErrorLabel(t.MongoErrorLabel.HandshakeError))&&(e instanceof p?E.has(e.result?.code??e.code??0):e instanceof r&&"number"==typeof e.code?E.has(e.code):!!t.LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE.test(e.message)||!!t.NODE_IS_RECOVERING_ERROR_MESSAGE.test(e.message))},t.isRetryableWriteError=m,t.isRetryableReadError=function(e){return!("number"!=typeof e.code||!d.has(e.code))||e instanceof l||!!t.LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE.test(e.message)||!!t.NODE_IS_RECOVERING_ERROR_MESSAGE.test(e.message)};const _=new Set([t.MONGODB_ERROR_CODES.ShutdownInProgress,t.MONGODB_ERROR_CODES.PrimarySteppedDown,t.MONGODB_ERROR_CODES.InterruptedAtShutdown,t.MONGODB_ERROR_CODES.InterruptedDueToReplStateChange,t.MONGODB_ERROR_CODES.NotPrimaryOrSecondary]),g=new Set([t.MONGODB_ERROR_CODES.NotWritablePrimary,t.MONGODB_ERROR_CODES.NotPrimaryNoSecondaryOk,t.MONGODB_ERROR_CODES.LegacyNotPrimary]),y=new Set([t.MONGODB_ERROR_CODES.InterruptedAtShutdown,t.MONGODB_ERROR_CODES.ShutdownInProgress]);function A(e){return"number"==typeof e.code?_.has(e.code):t.LEGACY_NOT_PRIMARY_OR_SECONDARY_ERROR_MESSAGE.test(e.message)||t.NODE_IS_RECOVERING_ERROR_MESSAGE.test(e.message)}t.isNodeShuttingDownError=function(e){return!("number"!=typeof e.code||!y.has(e.code))},t.isSDAMUnrecoverableError=function(e){return e instanceof h||null==e||A(e)||function(e){return"number"==typeof e.code?g.has(e.code):!A(e)&&t.LEGACY_NOT_WRITABLE_PRIMARY_ERROR_MESSAGE.test(e.message)}(e)},t.isNetworkTimeoutError=function(e){return!!(e instanceof l&&e.message.match(/timed out/))},t.isResumableError=function(e,n){return null!=e&&e instanceof r&&(e instanceof l||(null!=n&&n>=9?e.code===t.MONGODB_ERROR_CODES.CursorNotFound||e.hasErrorLabel(t.MongoErrorLabel.ResumableChangeStreamError):"number"==typeof e.code&&t.GET_MORE_RESUMABLE_CODES.has(e.code)))}},8682:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Explain=t.ExplainVerbosity=void 0;const r=n(86947);t.ExplainVerbosity=Object.freeze({queryPlanner:"queryPlanner",queryPlannerExtended:"queryPlannerExtended",executionStats:"executionStats",allPlansExecution:"allPlansExecution"});class o{constructor(e){this.verbosity="boolean"==typeof e?e?t.ExplainVerbosity.allPlansExecution:t.ExplainVerbosity.queryPlanner:e}static fromOptions(e){if(null==e?.explain)return;const t=e.explain;if("boolean"==typeof t||"string"==typeof t)return new o(t);throw new r.MongoInvalidArgumentError('Field "explain" must be a string or a boolean')}}t.Explain=o},48433:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.GridFSBucketReadStream=void 0;const r=n(2203),o=n(86947);class i extends r.Readable{constructor(e,t,n,r,o){super({emitClose:!0}),this.s={bytesToTrim:0,bytesToSkip:0,bytesRead:0,chunks:e,expected:0,files:t,filter:r,init:!1,expectedEnd:0,options:{start:0,end:0,...o},readPreference:n}}_read(){this.destroyed||function(e,t){if(e.s.file)return t();e.s.init||(function(e){const t={};e.s.readPreference&&(t.readPreference=e.s.readPreference),e.s.options&&e.s.options.sort&&(t.sort=e.s.options.sort),e.s.options&&e.s.options.skip&&(t.skip=e.s.options.skip);e.s.files.findOne(e.s.filter,t).then((t=>{if(e.destroyed)return;if(!t){const t=`FileNotFound: file ${e.s.filter._id?e.s.filter._id.toString():e.s.filter.filename} was not found`,n=new o.MongoRuntimeError(t);return n.code="ENOENT",e.destroy(n)}if(t.length<=0)return void e.push(null);if(e.destroyed)return void e.destroy();try{e.s.bytesToSkip=function(e,t,n){if(n&&null!=n.start){if(n.start>t.length)throw new o.MongoInvalidArgumentError(`Stream start (${n.start}) must not be more than the length of the file (${t.length})`);if(n.start<0)throw new o.MongoInvalidArgumentError(`Stream start (${n.start}) must not be negative`);if(null!=n.end&&n.end0&&(n.n={$gte:r})}e.s.cursor=e.s.chunks.find(n).sort({n:1}),e.s.readPreference&&e.s.cursor.withReadPreference(e.s.readPreference),e.s.expectedEnd=Math.ceil(t.length/t.chunkSize),e.s.file=t;try{e.s.bytesToTrim=function(e,t,n,r){if(r&&null!=r.end){if(r.end>t.length)throw new o.MongoInvalidArgumentError(`Stream end (${r.end}) must not be more than the length of the file (${t.length})`);if(null==r.start||r.start<0)throw new o.MongoInvalidArgumentError(`Stream end (${r.end}) must not be negative`);const i=null!=r.start?Math.floor(r.start/t.chunkSize):0;return n.limit(Math.ceil(r.end/t.chunkSize)-i),e.s.expectedEnd=Math.ceil(r.end/t.chunkSize),Math.ceil(r.end/t.chunkSize)*t.chunkSize-r.end}throw new o.MongoInvalidArgumentError("End option must be defined")}(e,t,e.s.cursor,e.s.options)}catch(t){return e.destroy(t)}e.emit(i.FILE,t)}),(t=>{e.destroyed||e.destroy(t)}))}(e),e.s.init=!0),e.once("file",(()=>{t()}))}(this,(()=>function(e){if(e.destroyed)return;if(!e.s.cursor)return;if(!e.s.file)return;e.s.cursor.next().then((t=>{if(e.destroyed)return;if(!t)return e.push(null),void e.s.cursor?.close().then(void 0,(t=>e.destroy(t)));if(!e.s.file)return;const n=e.s.file.length-e.s.bytesRead,r=e.s.expected++,i=Math.min(e.s.file.chunkSize,n);if(t.n>r)return e.destroy(new o.MongoGridFSChunkError(`ChunkIsMissing: Got unexpected n: ${t.n}, expected: ${r}`));if(t.n{e.destroyed||e.destroy(t)}))}(this)))}start(e=0){return s(this),this.s.options.start=e,this}end(e=0){return s(this),this.s.options.end=e,this}async abort(){this.push(null),this.destroy(),await(this.s.cursor?.close())}}function s(e){if(e.s.init)throw new o.MongoGridFSStreamError("Options cannot be changed after the stream is initialized")}i.FILE="file",t.GridFSBucketReadStream=i},35229:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.GridFSBucket=void 0;const r=n(86947),o=n(96327),i=n(98349),s=n(48433),a=n(92880),u={bucketName:"fs",chunkSizeBytes:261120};class c extends o.TypedEventEmitter{constructor(e,t){super(),this.setMaxListeners(0);const n={...u,...t,writeConcern:i.WriteConcern.fromOptions(t)};this.s={db:e,options:n,_chunksCollection:e.collection(n.bucketName+".chunks"),_filesCollection:e.collection(n.bucketName+".files"),checkedIndexes:!1,calledOpenUploadStream:!1}}openUploadStream(e,t){return new a.GridFSBucketWriteStream(this,e,t)}openUploadStreamWithId(e,t,n){return new a.GridFSBucketWriteStream(this,t,{...n,id:e})}openDownloadStream(e,t){return new s.GridFSBucketReadStream(this.s._chunksCollection,this.s._filesCollection,this.s.options.readPreference,{_id:e},t)}async delete(e){const{deletedCount:t}=await this.s._filesCollection.deleteOne({_id:e});if(await this.s._chunksCollection.deleteMany({files_id:e}),0===t)throw new r.MongoRuntimeError(`File not found for id ${e}`)}find(e={},t={}){return this.s._filesCollection.find(e,t)}openDownloadStreamByName(e,t){let n,r={uploadDate:-1};return t&&null!=t.revision&&(t.revision>=0?(r={uploadDate:1},n=t.revision):n=-t.revision-1),new s.GridFSBucketReadStream(this.s._chunksCollection,this.s._filesCollection,this.s.options.readPreference,{filename:e},{...t,sort:r,skip:n})}async rename(e,t){const n={_id:e},o={$set:{filename:t}},{matchedCount:i}=await this.s._filesCollection.updateOne(n,o);if(0===i)throw new r.MongoRuntimeError(`File with id ${e} not found`)}async drop(){await this.s._filesCollection.drop(),await this.s._chunksCollection.drop()}}c.INDEX="index",t.GridFSBucket=c},92880:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.GridFSBucketWriteStream=void 0;const r=n(2203),o=n(63403),i=n(86947),s=n(52060),a=n(98349);class u extends r.Writable{constructor(e,t,n){super(),this.gridFSFile=null,n=n??{},this.bucket=e,this.chunks=e.s._chunksCollection,this.filename=t,this.files=e.s._filesCollection,this.options=n,this.writeConcern=a.WriteConcern.fromOptions(n)||e.s.options.writeConcern,this.done=!1,this.id=n.id?n.id:new o.ObjectId,this.chunkSizeBytes=n.chunkSizeBytes||this.bucket.s.options.chunkSizeBytes,this.bufToStore=Buffer.alloc(this.chunkSizeBytes),this.length=0,this.n=0,this.pos=0,this.state={streamEnd:!1,outstandingRequests:0,errored:!1,aborted:!1},this.bucket.s.calledOpenUploadStream||(this.bucket.s.calledOpenUploadStream=!0,async function(e){if(null!=await e.files.findOne({},{projection:{_id:1}}))return;let t;try{t=await e.files.listIndexes().toArray()}catch(e){if(!(e instanceof i.MongoError&&e.code===i.MONGODB_ERROR_CODES.NamespaceNotFound))throw e;t=[]}t.find((e=>2===Object.keys(e.key).length&&1===e.key.filename&&1===e.key.uploadDate))||await e.files.createIndex({filename:1,uploadDate:1},{background:!1}),await async function(e){let t;try{t=await e.chunks.listIndexes().toArray()}catch(e){if(!(e instanceof i.MongoError&&e.code===i.MONGODB_ERROR_CODES.NamespaceNotFound))throw e;t=[]}const n=!!t.find((e=>2===Object.keys(e.key).length&&1===e.key.files_id&&1===e.key.n));n||await e.chunks.createIndex({files_id:1,n:1},{...e.writeConcern,background:!0,unique:!0})}(e)}(this).then((()=>{this.bucket.s.checkedIndexes=!0,this.bucket.emit("index")}),s.squashError))}_construct(e){if(this.bucket.s.checkedIndexes)return process.nextTick(e);this.bucket.once("index",e)}_write(e,t,n){!function(e,t,n,r){if(f(e,r))return;const o=Buffer.isBuffer(t)?t:Buffer.from(t,n);if(e.length+=o.length,e.pos+o.length0;){const t=o.length-i;let n;if(o.copy(e.bufToStore,e.pos,t,t+a),e.pos+=a,s-=a,0===s){if(n=l(e.id,e.n,Buffer.from(e.bufToStore)),++e.state.outstandingRequests,++u,f(e,r))return;e.chunks.insertOne(n,{writeConcern:e.writeConcern}).then((()=>{--e.state.outstandingRequests,--u,u||h(e,r)}),(t=>c(e,t,r))),s=e.chunkSizeBytes,e.pos=0,++e.n}i-=a,a=Math.min(s,i)}}(this,e,t,n)}_final(e){if(this.state.streamEnd)return process.nextTick(e);this.state.streamEnd=!0,function(e,t){if(0===e.pos)return h(e,t);++e.state.outstandingRequests;const n=Buffer.alloc(e.pos);e.bufToStore.copy(n,0,0,e.pos);const r=l(e.id,e.n,n);f(e,t)||e.chunks.insertOne(r,{writeConcern:e.writeConcern}).then((()=>{--e.state.outstandingRequests,h(e,t)}),(n=>c(e,n,t)))}(this,e)}async abort(){if(this.state.streamEnd)throw new i.MongoAPIError("Cannot abort a stream that has already completed");if(this.state.aborted)throw new i.MongoAPIError("Cannot call abort() on a stream twice");this.state.aborted=!0,await this.chunks.deleteMany({files_id:this.id})}}function c(e,t,n){e.state.errored?process.nextTick(n):(e.state.errored=!0,process.nextTick(n,t))}function l(e,t,n){return{_id:new o.ObjectId,files_id:e,n:t,data:n}}function h(e,t){if(e.done)return process.nextTick(t);if(!e.state.streamEnd||0!==e.state.outstandingRequests||e.state.errored)process.nextTick(t);else{e.done=!0;const n=function(e,t,n,r,o,i,s){const a={_id:e,length:t,chunkSize:n,uploadDate:new Date,filename:r};return o&&(a.contentType=o),i&&(a.aliases=i),s&&(a.metadata=s),a}(e.id,e.length,e.chunkSizeBytes,e.filename,e.options.contentType,e.options.aliases,e.options.metadata);if(f(e,t))return;e.files.insertOne(n,{writeConcern:e.writeConcern}).then((()=>{e.gridFSFile=n,t()}),(n=>c(e,n,t)))}}function f(e,t){return!!e.state.aborted&&(process.nextTick(t,new i.MongoAPIError("Stream has been aborted")),!0)}t.GridFSBucketWriteStream=u},45009:(e,t,n)=>{"use strict";t.sb=void 0;n(47306),n(42795),n(5702),n(9272),n(36653),n(65017),n(24091),n(79614),n(63537),n(5058),n(90263),n(35229),n(48433),n(92880);const r=n(13139);Object.defineProperty(t,"sb",{enumerable:!0,get:function(){return r.MongoClient}});n(96327),n(94452);n(63403),n(63403),n(53717),n(24814),n(22250),n(86947),n(53717),n(72377),n(88573),n(24380),n(3460),n(65017),n(86947),n(8682),n(13139),n(31244),n(80008),n(38938),n(50773),n(48446),n(38938),n(50773),n(98349),n(61643),n(99730),n(60838),n(9089),n(29246),n(61784),n(51401)},13139:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MongoClient=t.ServerApiVersion=void 0;const r=n(79896),o=n(63403),i=n(9272),s=n(37935),a=n(24380),u=n(77689),c=n(32568),l=n(90263),h=n(86947),f=n(51401),p=n(60528),d=n(96327),E=n(86437),m=n(37639),_=n(50773),g=n(44289),y=n(80306),A=n(94452),v=n(52060);t.ServerApiVersion=Object.freeze({v1:"1"});const b=Symbol("options");class T extends d.TypedEventEmitter{constructor(e,t){super(),this[b]=(0,u.parseOptions)(e,this,t);const n=Object.values(this[b].mongoLoggerOptions.componentSeverities).some((e=>e!==p.SeverityLevel.OFF));this.mongoLogger=n?new p.MongoLogger(this[b].mongoLoggerOptions):void 0;const r=this;this.s={url:e,bsonOptions:(0,o.resolveBSONOptions)(this[b]),namespace:(0,v.ns)("admin"),hasBeenClosed:!1,sessionPool:new A.ServerSessionPool(this),activeSessions:new Set,authProviders:new f.MongoClientAuthProviders,get options(){return r[b]},get readConcern(){return r[b].readConcern},get writeConcern(){return r[b].writeConcern},get readPreference(){return r[b].readPreference},get isMongoClient(){return!0}},this.checkForNonGenuineHosts()}checkForNonGenuineHosts(){const e=this[b].hosts.filter((e=>(0,v.isHostMatch)(v.DOCUMENT_DB_CHECK,e.host))),t=(0,v.isHostMatch)(v.DOCUMENT_DB_CHECK,this[b].srvHost),n=this[b].hosts.filter((e=>(0,v.isHostMatch)(v.COSMOS_DB_CHECK,e.host))),r=(0,v.isHostMatch)(v.COSMOS_DB_CHECK,this[b].srvHost);0!==e.length||t?this.mongoLogger?.info("client",v.DOCUMENT_DB_MSG):(0!==n.length||r)&&this.mongoLogger?.info("client",v.COSMOS_DB_MSG)}get options(){return Object.freeze({...this[b]})}get serverApi(){return this[b].serverApi&&Object.freeze({...this[b].serverApi})}get monitorCommands(){return this[b].monitorCommands}set monitorCommands(e){this[b].monitorCommands=e}get autoEncrypter(){return this[b].autoEncrypter}get readConcern(){return this.s.readConcern}get writeConcern(){return this.s.writeConcern}get readPreference(){return this.s.readPreference}get bsonOptions(){return this.s.bsonOptions}async connect(){if(this.connectionLock)return await this.connectionLock;try{this.connectionLock=this._connect(),await this.connectionLock}finally{this.connectionLock=void 0}return this}async _connect(){if(this.topology&&this.topology.isConnected())return this;const e=this[b];if(e.tls&&("string"==typeof e.tlsCAFile&&(e.ca??=await r.promises.readFile(e.tlsCAFile)),"string"==typeof e.tlsCRLFile&&(e.crl??=await r.promises.readFile(e.tlsCRLFile)),!("string"!=typeof e.tlsCertificateKeyFile||e.key&&e.cert))){const t=await r.promises.readFile(e.tlsCertificateKeyFile);e.key??=t,e.cert??=t}if("string"==typeof e.srvHost){const t=await(0,u.resolveSRVRecord)(e);for(const[n,r]of t.entries())e.hosts[n]=r}if(e.credentials?.mechanism===a.AuthMechanism.MONGODB_OIDC){const t=e.credentials?.mechanismProperties?.ALLOWED_HOSTS||s.DEFAULT_ALLOWED_HOSTS;if(!e.credentials?.mechanismProperties?.ENVIRONMENT)for(const n of e.hosts)if(!(0,v.hostMatchesWildcards)(n.toHostPort().host,t))throw new h.MongoInvalidArgumentError(`Host '${n}' is not valid for OIDC authentication with ALLOWED_HOSTS of '${t.join(",")}'`)}this.topology=new y.Topology(this,e.hosts,e),this.topology.once(y.Topology.OPEN,(()=>this.emit("open",this)));for(const e of c.MONGO_CLIENT_EVENTS)this.topology.on(e,((...t)=>this.emit(e,...t)));const t=async()=>{try{await(this.topology?.connect(e))}catch(e){throw this.topology?.close(),e}};return this.autoEncrypter?(await(this.autoEncrypter?.init()),await t(),await e.encrypter.connectInternalClient()):await t(),this}async close(e=!1){Object.defineProperty(this.s,"hasBeenClosed",{value:!0,enumerable:!0,configurable:!1,writable:!1});const t=Array.from(this.s.activeSessions,(e=>e.endSession()));if(this.s.activeSessions.clear(),await Promise.all(t),null==this.topology)return;const n=(0,g.readPreferenceServerSelector)(_.ReadPreference.primaryPreferred),r=this.topology.description,o=Array.from(r.servers.values());if(0!==n(r,o).length){const e=Array.from(this.s.sessionPool.sessions,(({id:e})=>e));if(0!==e.length)try{await(0,E.executeOperation)(this,new m.RunAdminCommandOperation({endSessions:e},{readPreference:_.ReadPreference.primaryPreferred,noResponse:!0}))}catch(e){(0,v.squashError)(e)}}const i=this.topology;this.topology=void 0,i.close();const{encrypter:s}=this[b];s&&await s.close(this,e)}db(e,t){t=t??{},e||(e=this.options.dbName);const n=Object.assign({},this[b],t);return new l.Db(this,e,n)}static async connect(e,t){const n=new this(e,t);return await n.connect()}startSession(e){const t=new A.ClientSession(this,this.s.sessionPool,{explicit:!0,...e},this[b]);return this.s.activeSessions.add(t),t.once("ended",(()=>{this.s.activeSessions.delete(t)})),t}async withSession(e,t){const n={owner:Symbol(),..."object"==typeof e?e:{}},r="function"==typeof e?e:t;if(null==r)throw new h.MongoInvalidArgumentError("Missing required callback parameter");const o=this.startSession(n);try{return await r(o)}finally{try{await o.endSession()}catch(e){(0,v.squashError)(e)}}}watch(e=[],t={}){return Array.isArray(e)||(t=e,e=[]),new i.ChangeStream(this,e,(0,v.resolveOptions)(this,t))}}t.MongoClient=T},51401:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MongoClientAuthProviders=void 0;const r=n(88573),o=n(1135),i=n(88626),s=n(68542),a=n(45693),u=n(22362),c=n(24257),l=n(99626),h=n(24380),f=n(9112),p=n(95240),d=n(86947),E=new Map([[h.AuthMechanism.MONGODB_AWS,()=>new i.MongoDBAWS],[h.AuthMechanism.MONGODB_CR,()=>new o.MongoCR],[h.AuthMechanism.MONGODB_GSSAPI,()=>new r.GSSAPI],[h.AuthMechanism.MONGODB_OIDC,e=>new s.MongoDBOIDC(e)],[h.AuthMechanism.MONGODB_PLAIN,()=>new l.Plain],[h.AuthMechanism.MONGODB_SCRAM_SHA1,()=>new f.ScramSHA1],[h.AuthMechanism.MONGODB_SCRAM_SHA256,()=>new f.ScramSHA256],[h.AuthMechanism.MONGODB_X509,()=>new p.X509]]);t.MongoClientAuthProviders=class{constructor(){this.existingProviders=new Map}getOrCreateProvider(e,t){const n=this.existingProviders.get(e);if(n)return n;const r=E.get(e);if(!r)throw new d.MongoInvalidArgumentError(`authMechanism ${e} not supported`);let o;return o=e===h.AuthMechanism.MONGODB_OIDC?r(this.getWorkflow(t)):r(),this.existingProviders.set(e,o),o}getWorkflow(e){if(e.OIDC_HUMAN_CALLBACK)return new u.HumanCallbackWorkflow(new c.TokenCache,e.OIDC_HUMAN_CALLBACK);if(e.OIDC_CALLBACK)return new a.AutomatedCallbackWorkflow(new c.TokenCache,e.OIDC_CALLBACK);{const t=e.ENVIRONMENT,n=s.OIDC_WORKFLOWS.get(t)?.();if(!n)throw new d.MongoInvalidArgumentError(`Could not load workflow for environment ${e.ENVIRONMENT}`);return n}}}},60528:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MongoLogger=t.defaultLogTransform=t.stringifyWithMaxLen=t.createStdioLogger=t.parseSeverityFromString=t.MongoLoggableComponent=t.SEVERITY_LEVEL_MAP=t.DEFAULT_MAX_DOCUMENT_LENGTH=t.SeverityLevel=void 0;const r=n(39023),o=n(63403),i=n(32568),s=n(52060);t.SeverityLevel=Object.freeze({EMERGENCY:"emergency",ALERT:"alert",CRITICAL:"critical",ERROR:"error",WARNING:"warn",NOTICE:"notice",INFORMATIONAL:"info",DEBUG:"debug",TRACE:"trace",OFF:"off"}),t.DEFAULT_MAX_DOCUMENT_LENGTH=1e3;class a extends Map{constructor(e){const t=[];for(const[n,r]of e)t.push([r,n]);t.push(...e),super(t)}getNumericSeverityLevel(e){return this.get(e)}getSeverityLevelName(e){return this.get(e)}}function u(e){const n=Object.values(t.SeverityLevel),r=e?.toLowerCase();return null!=r&&n.includes(r)?r:null}function c(e){return{write:(0,r.promisify)(((t,n)=>{const o=(0,r.inspect)(t,{compact:!0,breakLength:1/0});e.write(`${o}\n`,"utf-8",n)}))}}function l(e,t,n){return u(e)??u(t)??n}function h(e,n){const r=t.SEVERITY_LEVEL_MAP.getNumericSeverityLevel(e),o=t.SEVERITY_LEVEL_MAP.getNumericSeverityLevel(n);return ro?1:0}function f(e,t,n={}){let r="";if("string"==typeof e)r=e;else if("function"==typeof e)r=e.name;else try{r=o.EJSON.stringify(e,n)}catch(e){r=`Extended JSON serialization failed with: ${e.message}`}return 0!==t&&r.length>t&&r.charCodeAt(t-1)!==r.codePointAt(t-1)&&0==--t?"":0!==t&&r.length>t?`${r.slice(0,t)}...`:r}function p(e,n,r=t.DEFAULT_MAX_DOCUMENT_LENGTH){const{selector:o,operation:i,topologyDescription:s,message:a}=n;return e.selector=f(o,r),e.operation=i,e.topologyDescription=f(s,r),e.message=a,e}function d(e,t){e.commandName=t.commandName,e.requestId=t.requestId,e.driverConnectionId=t.connectionId;const{host:n,port:r}=s.HostAddress.fromString(t.address).toHostPort();return e.serverHost=n,e.serverPort=r,t?.serviceId&&(e.serviceId=t.serviceId.toHexString()),e.databaseName=t.databaseName,e.serverConnectionId=t.serverConnectionId,e}function E(e,t){const{host:n,port:r}=s.HostAddress.fromString(t.address).toHostPort();return e.serverHost=n,e.serverPort=r,e}function m(e,t){return e.topologyId=t.topologyId,e}function _(e,t){const{awaited:n,connectionId:r}=t;e.awaited=n,e.driverConnectionId=t.connectionId;const{host:o,port:i}=s.HostAddress.fromString(r).toHostPort();return e.serverHost=o,e.serverPort=i,e}function g(e,n=t.DEFAULT_MAX_DOCUMENT_LENGTH){let r=Object.create(null);switch(e.name){case i.SERVER_SELECTION_STARTED:return r=p(r,e,n),r;case i.SERVER_SELECTION_FAILED:return r=p(r,e,n),r.failure=e.failure?.message,r;case i.SERVER_SELECTION_SUCCEEDED:return r=p(r,e,n),r.serverHost=e.serverHost,r.serverPort=e.serverPort,r;case i.WAITING_FOR_SUITABLE_SERVER:return r=p(r,e,n),r.remainingTimeMS=e.remainingTimeMS,r;case i.COMMAND_STARTED:return r=d(r,e),r.message="Command started",r.command=f(e.command,n,{relaxed:!0}),r.databaseName=e.databaseName,r;case i.COMMAND_SUCCEEDED:return r=d(r,e),r.message="Command succeeded",r.durationMS=e.duration,r.reply=f(e.reply,n,{relaxed:!0}),r;case i.COMMAND_FAILED:return r=d(r,e),r.message="Command failed",r.durationMS=e.duration,r.failure=e.failure?.message??"(redacted)",r;case i.CONNECTION_POOL_CREATED:if(r=E(r,e),r.message="Connection pool created",e.options){const{maxIdleTimeMS:t,minPoolSize:n,maxPoolSize:o,maxConnecting:i,waitQueueTimeoutMS:s}=e.options;r={...r,maxIdleTimeMS:t,minPoolSize:n,maxPoolSize:o,maxConnecting:i,waitQueueTimeoutMS:s}}return r;case i.CONNECTION_POOL_READY:return r=E(r,e),r.message="Connection pool ready",r;case i.CONNECTION_POOL_CLEARED:return r=E(r,e),r.message="Connection pool cleared","ObjectId"===e.serviceId?._bsontype&&(r.serviceId=e.serviceId?.toHexString()),r;case i.CONNECTION_POOL_CLOSED:return r=E(r,e),r.message="Connection pool closed",r;case i.CONNECTION_CREATED:return r=E(r,e),r.message="Connection created",r.driverConnectionId=e.connectionId,r;case i.CONNECTION_READY:return r=E(r,e),r.message="Connection ready",r.driverConnectionId=e.connectionId,r;case i.CONNECTION_CLOSED:switch(r=E(r,e),r.message="Connection closed",r.driverConnectionId=e.connectionId,e.reason){case"stale":r.reason="Connection became stale because the pool was cleared";break;case"idle":r.reason="Connection has been available but unused for longer than the configured max idle time";break;case"error":r.reason="An error occurred while using the connection",e.error&&(r.error=e.error);break;case"poolClosed":r.reason="Connection pool was closed";break;default:r.reason=`Unknown close reason: ${e.reason}`}return r;case i.CONNECTION_CHECK_OUT_STARTED:return r=E(r,e),r.message="Connection checkout started",r;case i.CONNECTION_CHECK_OUT_FAILED:switch(r=E(r,e),r.message="Connection checkout failed",e.reason){case"poolClosed":r.reason="Connection pool was closed";break;case"timeout":r.reason="Wait queue timeout elapsed without a connection becoming available";break;case"connectionError":r.reason="An error occurred while trying to establish a new connection",e.error&&(r.error=e.error);break;default:r.reason=`Unknown close reason: ${e.reason}`}return r;case i.CONNECTION_CHECKED_OUT:return r=E(r,e),r.message="Connection checked out",r.driverConnectionId=e.connectionId,r;case i.CONNECTION_CHECKED_IN:return r=E(r,e),r.message="Connection checked in",r.driverConnectionId=e.connectionId,r;case i.SERVER_OPENING:return r=m(r,e),r=E(r,e),r.message="Starting server monitoring",r;case i.SERVER_CLOSED:return r=m(r,e),r=E(r,e),r.message="Stopped server monitoring",r;case i.SERVER_HEARTBEAT_STARTED:return r=m(r,e),r=_(r,e),r.message="Server heartbeat started",r;case i.SERVER_HEARTBEAT_SUCCEEDED:return r=m(r,e),r=_(r,e),r.message="Server heartbeat succeeded",r.durationMS=e.duration,r.serverConnectionId=e.serverConnectionId,r.reply=f(e.reply,n,{relaxed:!0}),r;case i.SERVER_HEARTBEAT_FAILED:return r=m(r,e),r=_(r,e),r.message="Server heartbeat failed",r.durationMS=e.duration,r.failure=e.failure?.message,r;case i.TOPOLOGY_OPENING:return r=m(r,e),r.message="Starting topology monitoring",r;case i.TOPOLOGY_CLOSED:return r=m(r,e),r.message="Stopped topology monitoring",r;case i.TOPOLOGY_DESCRIPTION_CHANGED:return r=m(r,e),r.message="Topology description changed",r.previousDescription=r.reply=f(e.previousDescription,n),r.newDescription=r.reply=f(e.newDescription,n),r;default:for(const[t,n]of Object.entries(e))null!=n&&(r[t]=n)}return r}t.SEVERITY_LEVEL_MAP=new a([[t.SeverityLevel.OFF,-1/0],[t.SeverityLevel.EMERGENCY,0],[t.SeverityLevel.ALERT,1],[t.SeverityLevel.CRITICAL,2],[t.SeverityLevel.ERROR,3],[t.SeverityLevel.WARNING,4],[t.SeverityLevel.NOTICE,5],[t.SeverityLevel.INFORMATIONAL,6],[t.SeverityLevel.DEBUG,7],[t.SeverityLevel.TRACE,8]]),t.MongoLoggableComponent=Object.freeze({COMMAND:"command",TOPOLOGY:"topology",SERVER_SELECTION:"serverSelection",CONNECTION:"connection",CLIENT:"client"}),t.parseSeverityFromString=u,t.createStdioLogger=c,t.stringifyWithMaxLen=f,t.defaultLogTransform=g,t.MongoLogger=class{constructor(e){this.pendingLog=null,this.error=this.log.bind(this,"error"),this.warn=this.log.bind(this,"warn"),this.info=this.log.bind(this,"info"),this.debug=this.log.bind(this,"debug"),this.trace=this.log.bind(this,"trace"),this.componentSeverities=e.componentSeverities,this.maxDocumentLength=e.maxDocumentLength,this.logDestination=e.logDestination,this.logDestinationIsStdErr=e.logDestinationIsStdErr,this.severities=this.createLoggingSeverities()}createLoggingSeverities(){const e=Object();for(const n of Object.values(t.MongoLoggableComponent)){e[n]={};for(const r of Object.values(t.SeverityLevel))e[n][r]=h(r,this.componentSeverities[n])<=0}return e}turnOffSeverities(){for(const e of Object.values(t.MongoLoggableComponent)){this.componentSeverities[e]=t.SeverityLevel.OFF;for(const n of Object.values(t.SeverityLevel))this.severities[e][n]=!1}}logWriteFailureHandler(e){if(this.logDestinationIsStdErr)return this.turnOffSeverities(),void this.clearPendingLog();this.logDestination=c(process.stderr),this.logDestinationIsStdErr=!0,this.clearPendingLog(),this.error(t.MongoLoggableComponent.CLIENT,{toLog:function(){return{message:"User input for mongodbLogPath is now invalid. Logging is halted.",error:e.message}}}),this.turnOffSeverities(),this.clearPendingLog()}clearPendingLog(){this.pendingLog=null}willLog(e,n){return n!==t.SeverityLevel.OFF&&this.severities[e][n]}log(e,t,n){if(!this.willLog(t,e))return;let r={t:new Date,c:t,s:e};if("string"==typeof n?r.message=n:"object"==typeof n&&(r=function(e){const t=e;return void 0!==t.toLog&&"function"==typeof t.toLog}(n)?{...r,...n.toLog()}:{...r,...g(n,this.maxDocumentLength)}),(0,s.isPromiseLike)(this.pendingLog))this.pendingLog=this.pendingLog.then((()=>this.logDestination.write(r))).then(this.clearPendingLog.bind(this),this.logWriteFailureHandler.bind(this));else try{const e=this.logDestination.write(r);(0,s.isPromiseLike)(e)&&(this.pendingLog=e.then(this.clearPendingLog.bind(this),this.logWriteFailureHandler.bind(this)))}catch(e){this.logWriteFailureHandler(e)}}static resolveOptions(e,n){const r=function({MONGODB_LOG_PATH:e},{mongodbLogPath:t}){return"string"==typeof t&&/^stderr$/i.test(t)?{mongodbLogPath:c(process.stderr),mongodbLogPathIsStdErr:!0}:"string"==typeof t&&/^stdout$/i.test(t)?{mongodbLogPath:c(process.stdout),mongodbLogPathIsStdErr:!1}:"object"==typeof t&&"function"==typeof t?.write?{mongodbLogPath:t,mongodbLogPathIsStdErr:!1}:e&&/^stderr$/i.test(e)?{mongodbLogPath:c(process.stderr),mongodbLogPathIsStdErr:!0}:e&&/^stdout$/i.test(e)?{mongodbLogPath:c(process.stdout),mongodbLogPathIsStdErr:!1}:{mongodbLogPath:c(process.stderr),mongodbLogPathIsStdErr:!0}}(e,n),o={...e,...n,mongodbLogPath:r.mongodbLogPath,mongodbLogPathIsStdErr:r.mongodbLogPathIsStdErr},i=l(o.mongodbLogComponentSeverities?.default,o.MONGODB_LOG_ALL,t.SeverityLevel.OFF);return{componentSeverities:{command:l(o.mongodbLogComponentSeverities?.command,o.MONGODB_LOG_COMMAND,i),topology:l(o.mongodbLogComponentSeverities?.topology,o.MONGODB_LOG_TOPOLOGY,i),serverSelection:l(o.mongodbLogComponentSeverities?.serverSelection,o.MONGODB_LOG_SERVER_SELECTION,i),connection:l(o.mongodbLogComponentSeverities?.connection,o.MONGODB_LOG_CONNECTION,i),client:l(o.mongodbLogComponentSeverities?.client,o.MONGODB_LOG_CLIENT,i),default:i},maxDocumentLength:o.mongodbLogMaxDocumentLength??(0,s.parseUnsignedInteger)(o.MONGODB_LOG_MAX_DOCUMENT_LENGTH)??1e3,logDestination:o.mongodbLogPath,logDestinationIsStdErr:o.mongodbLogPathIsStdErr}}}},96327:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CancellationToken=t.TypedEventEmitter=void 0;const r=n(24434),o=n(60528);class i extends r.EventEmitter{emitAndLog(e,...t){this.emit(e,...t),this.component&&this.mongoLogger?.debug(this.component,t[0])}emitAndLogHeartbeat(e,t,n,...r){if(this.emit(e,...r),this.component){const e={topologyId:t,serverConnectionId:n??null,...r[0]};this.mongoLogger?.debug(this.component,e)}}emitAndLogCommand(e,t,n,r,...i){if(e&&this.emit(t,...i),r){const e={databaseName:n,...i[0]};this.mongoLogger?.debug(o.MongoLoggableComponent.COMMAND,e)}}}t.TypedEventEmitter=i,t.CancellationToken=class extends i{}},4651:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.AggregateOperation=t.DB_AGGREGATE_COLLECTION=void 0;const r=n(86947),o=n(52060),i=n(98349),s=n(29097),a=n(66181);t.DB_AGGREGATE_COLLECTION=1;class u extends s.CommandOperation{constructor(e,n,o){if(super(void 0,{...o,dbName:e.db}),this.options={...o},this.target=e.collection||t.DB_AGGREGATE_COLLECTION,this.pipeline=n,this.hasWriteStage=!1,"string"==typeof o?.out)this.pipeline=this.pipeline.concat({$out:o.out}),this.hasWriteStage=!0;else if(n.length>0){const e=n[n.length-1];(e.$out||e.$merge)&&(this.hasWriteStage=!0)}if(this.hasWriteStage?this.trySecondaryWrite=!0:delete this.options.writeConcern,this.explain&&this.writeConcern)throw new r.MongoInvalidArgumentError('Option "explain" cannot be used on an aggregate call with writeConcern');if(null!=o?.cursor&&"object"!=typeof o.cursor)throw new r.MongoInvalidArgumentError("Cursor options must be an object")}get commandName(){return"aggregate"}get canRetryRead(){return!this.hasWriteStage}addToPipeline(e){this.pipeline.push(e)}async execute(e,t){const n=this.options,r=(0,o.maxWireVersion)(e),s={aggregate:this.target,pipeline:this.pipeline};return this.hasWriteStage&&r<8&&(this.readConcern=void 0),this.hasWriteStage&&this.writeConcern&&i.WriteConcern.apply(s,this.writeConcern),!0===n.bypassDocumentValidation&&(s.bypassDocumentValidation=n.bypassDocumentValidation),"boolean"==typeof n.allowDiskUse&&(s.allowDiskUse=n.allowDiskUse),n.hint&&(s.hint=n.hint),n.let&&(s.let=n.let),void 0!==n.comment&&(s.comment=n.comment),s.cursor=n.cursor||{},n.batchSize&&!this.hasWriteStage&&(s.cursor.batchSize=n.batchSize),await super.executeCommand(e,t,s)}}t.AggregateOperation=u,(0,a.defineAspects)(u,[a.Aspect.READ_OPERATION,a.Aspect.RETRYABLE,a.Aspect.EXPLAINABLE,a.Aspect.CURSOR_CREATING])},18062:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BulkWriteOperation=void 0;const r=n(66181);class o extends r.AbstractOperation{constructor(e,t,n){super(n),this.options=n,this.collection=e,this.operations=t}get commandName(){return"bulkWrite"}async execute(e,t){const n=this.collection,r=this.operations,o={...this.options,...this.bsonOptions,readPreference:this.readPreference},i=!1===o.ordered?n.initializeUnorderedBulkOp(o):n.initializeOrderedBulkOp(o);for(let e=0;e{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CollectionsOperation=void 0;const r=n(36653),o=n(66181);class i extends o.AbstractOperation{constructor(e,t){super(t),this.options=t,this.db=e}get commandName(){return"listCollections"}async execute(e,t){const n=await this.db.listCollections({},{...this.options,nameOnly:!0,readPreference:this.readPreference,session:t}).toArray(),o=[];for(const{name:e}of n)e.includes("$")||o.push(new r.Collection(this.db,e,this.db.s.options));return o}}t.CollectionsOperation=i},29097:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CommandOperation=void 0;const r=n(86947),o=n(8682),i=n(38938),s=n(44289),a=n(52060),u=n(98349),c=n(66181);class l extends c.AbstractOperation{constructor(e,t){super(t),this.options=t??{};const n=t?.dbName||t?.authdb;if(this.ns=n?new a.MongoDBNamespace(n,"$cmd"):e?e.s.namespace.withCollection("$cmd"):new a.MongoDBNamespace("admin","$cmd"),this.readConcern=i.ReadConcern.fromOptions(t),this.writeConcern=u.WriteConcern.fromOptions(t),this.hasAspect(c.Aspect.EXPLAINABLE))this.explain=o.Explain.fromOptions(t);else if(null!=t?.explain)throw new r.MongoInvalidArgumentError('Option "explain" is not supported on this command')}get canRetryWrite(){return!this.hasAspect(c.Aspect.EXPLAINABLE)||null==this.explain}async executeCommand(e,t,n){this.server=e;const r={...this.options,...this.bsonOptions,readPreference:this.readPreference,session:t},o=(0,a.maxWireVersion)(e),i=this.session&&this.session.inTransaction();return this.readConcern&&(0,a.commandSupportsReadConcern)(n)&&!i&&Object.assign(n,{readConcern:this.readConcern}),this.trySecondaryWrite&&o{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CountOperation=void 0;const r=n(29097),o=n(66181);class i extends r.CommandOperation{constructor(e,t,n){super({s:{namespace:e}},n),this.options=n,this.collectionName=e.collection,this.query=t}get commandName(){return"count"}async execute(e,t){const n=this.options,r={count:this.collectionName,query:this.query};"number"==typeof n.limit&&(r.limit=n.limit),"number"==typeof n.skip&&(r.skip=n.skip),null!=n.hint&&(r.hint=n.hint),"number"==typeof n.maxTimeMS&&(r.maxTimeMS=n.maxTimeMS);const o=await super.executeCommand(e,t,r);return o?o.n:0}}t.CountOperation=i,(0,o.defineAspects)(i,[o.Aspect.READ_OPERATION,o.Aspect.RETRYABLE])},37454:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CountDocumentsOperation=void 0;const r=n(4651);class o extends r.AggregateOperation{constructor(e,t,n){const r=[];r.push({$match:t}),"number"==typeof n.skip&&r.push({$skip:n.skip}),"number"==typeof n.limit&&r.push({$limit:n.limit}),r.push({$group:{_id:1,n:{$sum:1}}}),super(e.s.namespace,r,n)}async execute(e,t){const n=await super.execute(e,t);if(null==n.cursor||null==n.cursor.firstBatch)return 0;const r=n.cursor.firstBatch;return r.length?r[0].n:0}}t.CountDocumentsOperation=o},75629:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CreateCollectionOperation=void 0;const r=n(26447),o=n(36653),i=n(86947),s=n(29097),a=n(87988),u=n(66181),c=new Set(["w","wtimeout","j","fsync","autoIndexId","pkFactory","raw","readPreference","session","readConcern","writeConcern","raw","fieldsAsRaw","useBigInt64","promoteLongs","promoteValues","promoteBuffers","bsonRegExp","serializeFunctions","ignoreUndefined","enableUtf8Validation"]);class l extends s.CommandOperation{constructor(e,t,n={}){super(e,n),this.options=n,this.db=e,this.name=t}get commandName(){return"create"}async execute(e,t){const n=this.db,o=this.name,s=this.options,u=s.encryptedFields??n.client.options.autoEncryption?.encryptedFieldsMap?.[`${n.databaseName}.${o}`];if(u){if(!e.loadBalanced&&e.description.maxWireVersion{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.makeDeleteStatement=t.DeleteManyOperation=t.DeleteOneOperation=t.DeleteOperation=void 0;const r=n(86947),o=n(29097),i=n(66181);class s extends o.CommandOperation{constructor(e,t,n){super(void 0,n),this.options=n,this.ns=e,this.statements=t}get commandName(){return"delete"}get canRetryWrite(){return!1!==super.canRetryWrite&&this.statements.every((e=>null==e.limit||e.limit>0))}async execute(e,t){const n=this.options??{},o="boolean"!=typeof n.ordered||n.ordered,i={delete:this.ns.collection,deletes:this.statements,ordered:o};if(n.let&&(i.let=n.let),void 0!==n.comment&&(i.comment=n.comment),this.writeConcern&&0===this.writeConcern.w&&this.statements.find((e=>e.hint)))throw new r.MongoCompatibilityError("hint is not supported with unacknowledged writes");return await super.executeCommand(e,t,i)}}t.DeleteOperation=s;class a extends s{constructor(e,t,n){super(e.s.namespace,[c(t,{...n,limit:1})],n)}async execute(e,t){const n=await super.execute(e,t);if(this.explain)return n;if(n.code)throw new r.MongoServerError(n);if(n.writeErrors)throw new r.MongoServerError(n.writeErrors[0]);return{acknowledged:0!==this.writeConcern?.w,deletedCount:n.n}}}t.DeleteOneOperation=a;class u extends s{constructor(e,t,n){super(e.s.namespace,[c(t,n)],n)}async execute(e,t){const n=await super.execute(e,t);if(this.explain)return n;if(n.code)throw new r.MongoServerError(n);if(n.writeErrors)throw new r.MongoServerError(n.writeErrors[0]);return{acknowledged:0!==this.writeConcern?.w,deletedCount:n.n}}}function c(e,t){const n={q:e,limit:"number"==typeof t.limit?t.limit:0};return t.collation&&(n.collation=t.collation),t.hint&&(n.hint=t.hint),n}t.DeleteManyOperation=u,t.makeDeleteStatement=c,(0,i.defineAspects)(s,[i.Aspect.RETRYABLE,i.Aspect.WRITE_OPERATION]),(0,i.defineAspects)(a,[i.Aspect.RETRYABLE,i.Aspect.WRITE_OPERATION,i.Aspect.EXPLAINABLE,i.Aspect.SKIP_COLLATION]),(0,i.defineAspects)(u,[i.Aspect.WRITE_OPERATION,i.Aspect.EXPLAINABLE,i.Aspect.SKIP_COLLATION])},11042:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DistinctOperation=void 0;const r=n(52060),o=n(29097),i=n(66181);class s extends o.CommandOperation{constructor(e,t,n,r){super(e,r),this.options=r??{},this.collection=e,this.key=t,this.query=n}get commandName(){return"distinct"}async execute(e,t){const n=this.collection,o=this.key,i=this.query,s=this.options,a={distinct:n.collectionName,key:o,query:i};"number"==typeof s.maxTimeMS&&(a.maxTimeMS=s.maxTimeMS),void 0!==s.comment&&(a.comment=s.comment),(0,r.decorateWithReadConcern)(a,n,s),(0,r.decorateWithCollation)(a,n,s);const u=await super.executeCommand(e,t,a);return this.explain?u:u.values}}t.DistinctOperation=s,(0,i.defineAspects)(s,[i.Aspect.READ_OPERATION,i.Aspect.RETRYABLE,i.Aspect.EXPLAINABLE])},5415:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DropDatabaseOperation=t.DropCollectionOperation=void 0;const r=n(86947),o=n(29097),i=n(66181);class s extends o.CommandOperation{constructor(e,t,n={}){super(e,n),this.db=e,this.options=n,this.name=t}get commandName(){return"drop"}async execute(e,t){const n=this.db,o=this.options,i=this.name,a=n.client.options.autoEncryption?.encryptedFieldsMap;let u=o.encryptedFields??a?.[`${n.databaseName}.${i}`];if(!u&&a){const e=await n.listCollections({name:i},{nameOnly:!1}).toArray();u=e?.[0]?.options?.encryptedFields}if(u){const o=u.escCollection||`enxcol_.${i}.esc`,a=u.ecocCollection||`enxcol_.${i}.ecoc`;for(const i of[o,a]){const o=new s(n,i);try{await o.executeWithoutEncryptedFieldsCheck(e,t)}catch(e){if(!(e instanceof r.MongoServerError)||e.code!==r.MONGODB_ERROR_CODES.NamespaceNotFound)throw e}}}return await this.executeWithoutEncryptedFieldsCheck(e,t)}async executeWithoutEncryptedFieldsCheck(e,t){return await super.executeCommand(e,t,{drop:this.name}),!0}}t.DropCollectionOperation=s;class a extends o.CommandOperation{constructor(e,t){super(e,t),this.options=t}get commandName(){return"dropDatabase"}async execute(e,t){return await super.executeCommand(e,t,{dropDatabase:1}),!0}}t.DropDatabaseOperation=a,(0,i.defineAspects)(s,[i.Aspect.WRITE_OPERATION]),(0,i.defineAspects)(a,[i.Aspect.WRITE_OPERATION])},99264:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.EstimatedDocumentCountOperation=void 0;const r=n(29097),o=n(66181);class i extends r.CommandOperation{constructor(e,t={}){super(e,t),this.options=t,this.collectionName=e.collectionName}get commandName(){return"count"}async execute(e,t){const n={count:this.collectionName};"number"==typeof this.options.maxTimeMS&&(n.maxTimeMS=this.options.maxTimeMS),void 0!==this.options.comment&&(n.comment=this.options.comment);const r=await super.executeCommand(e,t,n);return r?.n||0}}t.EstimatedDocumentCountOperation=i,(0,o.defineAspects)(i,[o.Aspect.READ_OPERATION,o.Aspect.RETRYABLE,o.Aspect.CURSOR_CREATING])},86437:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.executeOperation=void 0;const r=n(86947),o=n(50773),i=n(44289),s=n(52060),a=n(66181),u=r.MONGODB_ERROR_CODES.IllegalOperation,c="This MongoDB deployment does not support retryable writes. Please add retryWrites=false to your connection string.";t.executeOperation=async function(e,t){if(!(t instanceof a.AbstractOperation))throw new r.MongoRuntimeError("This method requires a valid operation instance");if(null==e.topology){if(e.s.hasBeenClosed)throw new r.MongoNotConnectedError("Client must be connected before running operations");e.s.options[Symbol.for("@@mdb.skipPingOnConnect")]=!0;try{await e.connect()}finally{delete e.s.options[Symbol.for("@@mdb.skipPingOnConnect")]}}const{topology:n}=e;if(null==n)throw new r.MongoRuntimeError("client.connect did not create a topology but also did not throw");let l,h=t.session;if(null==h)l=Symbol(),h=e.startSession({owner:l,explicit:!1});else{if(h.hasEnded)throw new r.MongoExpiredSessionError("Use of expired sessions is not permitted");if(h.snapshotEnabled&&!n.capabilities.supportsSnapshotReads)throw new r.MongoCompatibilityError("Snapshot reads require MongoDB 5.0 or later");if(h.client!==e)throw new r.MongoInvalidArgumentError("ClientSession must be from the same MongoClient")}if(h.explicit&&null!=h?.timeoutMS&&null!=t.options.timeoutMS)throw new r.MongoInvalidArgumentError("Do not specify timeoutMS on operation if already specified on an explicit session");const f=t.readPreference??o.ReadPreference.primary,p=!!h?.inTransaction(),d=t.hasAspect(a.Aspect.READ_OPERATION),E=t.hasAspect(a.Aspect.WRITE_OPERATION);if(p&&!f.equals(o.ReadPreference.primary)&&(d||"runCommand"===t.commandName))throw new r.MongoTransactionError(`Read preference in a transaction must be primary, not: ${f.mode}`);let m;h?.isPinned&&h.transaction.isCommitted&&!t.bypassPinningCheck&&h.unpin(),m=t.hasAspect(a.Aspect.MUST_SELECT_SAME_SERVER)?(0,i.sameServerSelector)(t.server?.description):t.trySecondaryWrite?(0,i.secondaryWritableServerSelector)(n.commonWireVersion,f):f;const _=await n.selectServer(m,{session:h,operationName:t.commandName});if(null==h)return await t.execute(_,void 0);if(!t.hasAspect(a.Aspect.RETRYABLE))try{return await t.execute(_,h)}finally{if(null!=h?.owner&&h.owner===l)try{await h.endSession()}catch(e){(0,s.squashError)(e)}}const g=n.s.options.retryReads&&!p&&t.canRetryRead,y=n.s.options.retryWrites&&!p&&(0,s.supportsRetryableWrites)(_)&&t.canRetryWrite,A=d&&g||E&&y;E&&y&&(t.options.willRetryWrite=!0,h.incrementTransactionNumber());try{return await t.execute(_,h)}catch(e){if(A&&e instanceof r.MongoError)return await async function(e,t,{session:n,topology:o,selector:i,previousServer:l}){const h=e.hasAspect(a.Aspect.WRITE_OPERATION),f=e.hasAspect(a.Aspect.READ_OPERATION);if(h&&t.code===u)throw new r.MongoServerError({message:c,errmsg:c,originalError:t});if(h&&!(0,r.isRetryableWriteError)(t))throw t;if(f&&!(0,r.isRetryableReadError)(t))throw t;t instanceof r.MongoNetworkError&&n.isPinned&&!n.inTransaction()&&e.hasAspect(a.Aspect.CURSOR_CREATING)&&n.unpin({force:!0,forceClear:!0});const p=await o.selectServer(i,{session:n,operationName:e.commandName,previousServer:l});if(h&&!(0,s.supportsRetryableWrites)(p))throw new r.MongoUnexpectedServerResponseError("Selected server does not support retryable writes");try{return await e.execute(p,n)}catch(e){if(e instanceof r.MongoError&&e.hasErrorLabel(r.MongoErrorLabel.NoWritesPerformed))throw t;throw e}}(t,e,{session:h,topology:n,selector:m,previousServer:_.description});throw e}finally{if(null!=h?.owner&&h.owner===l)try{await h.endSession()}catch(e){(0,s.squashError)(e)}}}},93793:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FindOperation=void 0;const r=n(86947),o=n(38938),i=n(47781),s=n(52060),a=n(29097),u=n(66181);class c extends a.CommandOperation{constructor(e,t={},n={}){if(super(void 0,n),this.options={...n},delete this.options.writeConcern,this.ns=e,"object"!=typeof t||Array.isArray(t))throw new r.MongoInvalidArgumentError("Query filter must be a plain object or ObjectId");this.filter=null!=t&&"ObjectId"===t._bsontype?{_id:t}:t}get commandName(){return"find"}async execute(e,t){this.server=e;const n=this.options;let r=function(e,t,n){const r={find:e.collection,filter:t};if(n.sort&&(r.sort=(0,i.formatSort)(n.sort)),n.projection){let e=n.projection;e&&Array.isArray(e)&&(e=e.length?e.reduce(((e,t)=>(e[t]=1,e)),{}):{_id:1}),r.projection=e}n.hint&&(r.hint=(0,s.normalizeHintField)(n.hint)),"number"==typeof n.skip&&(r.skip=n.skip),"number"==typeof n.limit&&(n.limit<0?(r.limit=-n.limit,r.singleBatch=!0):r.limit=n.limit),"number"==typeof n.batchSize&&(n.batchSize<0?(n.limit&&0!==n.limit&&Math.abs(n.batchSize){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FindOneAndUpdateOperation=t.FindOneAndReplaceOperation=t.FindOneAndDeleteOperation=t.FindAndModifyOperation=t.ReturnDocument=void 0;const r=n(86947),o=n(50773),i=n(47781),s=n(52060),a=n(29097),u=n(66181);function c(e,n){return e.new=n.returnDocument===t.ReturnDocument.AFTER,e.upsert=!0===n.upsert,!0===n.bypassDocumentValidation&&(e.bypassDocumentValidation=n.bypassDocumentValidation),e}t.ReturnDocument=Object.freeze({BEFORE:"before",AFTER:"after"});class l extends a.CommandOperation{constructor(e,t,n){super(e,n),this.options=n??{},this.cmdBase={remove:!1,new:!1,upsert:!1},n.includeResultMetadata??=!1;const r=(0,i.formatSort)(n.sort);r&&(this.cmdBase.sort=r),n.projection&&(this.cmdBase.fields=n.projection),n.maxTimeMS&&(this.cmdBase.maxTimeMS=n.maxTimeMS),n.writeConcern&&(this.cmdBase.writeConcern=n.writeConcern),n.let&&(this.cmdBase.let=n.let),void 0!==n.comment&&(this.cmdBase.comment=n.comment),this.readPreference=o.ReadPreference.primary,this.collection=e,this.query=t}get commandName(){return"findAndModify"}async execute(e,t){const n=this.collection,o=this.query,i={...this.options,...this.bsonOptions},a={findAndModify:n.collectionName,query:o,...this.cmdBase};try{(0,s.decorateWithCollation)(a,n,i)}catch(e){return e}if(i.hint){if(0===this.writeConcern?.w||(0,s.maxWireVersion)(e)<8)throw new r.MongoCompatibilityError("The current topology does not support a hint on findAndModify commands");a.hint=i.hint}const u=await super.executeCommand(e,t,a);return i.includeResultMetadata?u:u.value??null}}t.FindAndModifyOperation=l,t.FindOneAndDeleteOperation=class extends l{constructor(e,t,n){if(null==t||"object"!=typeof t)throw new r.MongoInvalidArgumentError('Argument "filter" must be an object');super(e,t,n),this.cmdBase.remove=!0}},t.FindOneAndReplaceOperation=class extends l{constructor(e,t,n,o){if(null==t||"object"!=typeof t)throw new r.MongoInvalidArgumentError('Argument "filter" must be an object');if(null==n||"object"!=typeof n)throw new r.MongoInvalidArgumentError('Argument "replacement" must be an object');if((0,s.hasAtomicOperators)(n))throw new r.MongoInvalidArgumentError("Replacement document must not contain atomic operators");super(e,t,o),this.cmdBase.update=n,c(this.cmdBase,o)}},t.FindOneAndUpdateOperation=class extends l{constructor(e,t,n,o){if(null==t||"object"!=typeof t)throw new r.MongoInvalidArgumentError('Argument "filter" must be an object');if(null==n||"object"!=typeof n)throw new r.MongoInvalidArgumentError('Argument "update" must be an object');if(!(0,s.hasAtomicOperators)(n))throw new r.MongoInvalidArgumentError("Update document requires atomic operators");super(e,t,o),this.cmdBase.update=n,c(this.cmdBase,o),o.arrayFilters&&(this.cmdBase.arrayFilters=o.arrayFilters)}},(0,u.defineAspects)(l,[u.Aspect.WRITE_OPERATION,u.Aspect.RETRYABLE,u.Aspect.EXPLAINABLE])},42326:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.GetMoreOperation=void 0;const r=n(89086),o=n(86947),i=n(52060),s=n(66181);class a extends s.AbstractOperation{constructor(e,t,n,r){super(r),this.options=r,this.ns=e,this.cursorId=t,this.server=n}get commandName(){return"getMore"}async execute(e,t){if(e!==this.server)throw new o.MongoRuntimeError("Getmore must run on the same server operation began on");if(null==this.cursorId||this.cursorId.isZero())throw new o.MongoRuntimeError("Unable to iterate cursor with no id");const n=this.ns.collection;if(null==n)throw new o.MongoRuntimeError("A collection name must be determined before getMore");const s={getMore:this.cursorId,collection:n};"number"==typeof this.options.batchSize&&(s.batchSize=Math.abs(this.options.batchSize)),"number"==typeof this.options.maxAwaitTimeMS&&(s.maxTimeMS=this.options.maxAwaitTimeMS),void 0!==this.options.comment&&(0,i.maxWireVersion)(e)>=9&&(s.comment=this.options.comment);const a={returnFieldSelector:null,documentsReturnedIn:"nextBatch",...this.options};return await e.command(this.ns,s,a,this.options.useCursorResponse?r.CursorResponse:void 0)}}t.GetMoreOperation=a,(0,s.defineAspects)(a,[s.Aspect.READ_OPERATION,s.Aspect.MUST_SELECT_SAME_SERVER])},87988:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ListIndexesOperation=t.DropIndexOperation=t.CreateIndexesOperation=void 0;const r=n(86947),o=n(52060),i=n(29097),s=n(66181),a=new Set(["background","unique","name","partialFilterExpression","sparse","hidden","expireAfterSeconds","storageEngine","collation","version","weights","default_language","language_override","textIndexVersion","2dsphereIndexVersion","bits","min","max","bucketSize","wildcardProjection"]);class u extends i.CommandOperation{constructor(e,t,n,r){super(e,r),this.options=r??{},this.collectionName=t,this.indexes=n.map((e=>{const t=e.key instanceof Map?e.key:new Map(Object.entries(e.key)),n=e.name??Array.from(t).flat().join("_"),r=function(e){const t=Object.entries(e).filter((([e])=>a.has(e)));return Object.fromEntries(t.map((([e,t])=>"version"===e?["v",t]:[e,t])))}(e);return{...r,name:n,key:t}}))}static fromIndexDescriptionArray(e,t,n,r){return new u(e,t,n,r)}static fromIndexSpecification(e,t,n,r={}){const i=function(e){const t=new Map,n=Array.isArray(e)&&(r=e,!Array.isArray(r)||2!==r.length||"number"!=typeof(i=r[1])&&"2d"!==i&&"2dsphere"!==i&&"text"!==i&&"geoHaystack"!==i)?e:[e];var r,i;for(const e of n)if("string"==typeof e)t.set(e,1);else if(Array.isArray(e))t.set(e[0],e[1]??1);else if(e instanceof Map)for(const[n,r]of e)t.set(n,r);else if((0,o.isObject)(e))for(const[n,r]of Object.entries(e))t.set(n,r);return t}(n),s={...r,key:i};return new u(e,t,[s],r)}get commandName(){return"createIndexes"}async execute(e,t){const n=this.options,i=this.indexes,s=(0,o.maxWireVersion)(e),a={createIndexes:this.collectionName,indexes:i};if(null!=n.commitQuorum){if(s<9)throw new r.MongoCompatibilityError("Option `commitQuorum` for `createIndexes` not supported on servers < 4.4");a.commitQuorum=n.commitQuorum}return this.options.collation=void 0,await super.executeCommand(e,t,a),i.map((e=>e.name||""))}}t.CreateIndexesOperation=u;class c extends i.CommandOperation{constructor(e,t,n){super(e,n),this.options=n??{},this.collection=e,this.indexName=t}get commandName(){return"dropIndexes"}async execute(e,t){const n={dropIndexes:this.collection.collectionName,index:this.indexName};return await super.executeCommand(e,t,n)}}t.DropIndexOperation=c;class l extends i.CommandOperation{constructor(e,t){super(e,t),this.options={...t},delete this.options.writeConcern,this.collectionNamespace=e.s.namespace}get commandName(){return"listIndexes"}async execute(e,t){const n=(0,o.maxWireVersion)(e),r=this.options.batchSize?{batchSize:this.options.batchSize}:{},i={listIndexes:this.collectionNamespace.collection,cursor:r};return n>=9&&void 0!==this.options.comment&&(i.comment=this.options.comment),await super.executeCommand(e,t,i)}}t.ListIndexesOperation=l,(0,s.defineAspects)(l,[s.Aspect.READ_OPERATION,s.Aspect.RETRYABLE,s.Aspect.CURSOR_CREATING]),(0,s.defineAspects)(u,[s.Aspect.WRITE_OPERATION]),(0,s.defineAspects)(c,[s.Aspect.WRITE_OPERATION])},42011:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.InsertManyOperation=t.InsertOneOperation=t.InsertOperation=void 0;const r=n(86947),o=n(52060),i=n(98349),s=n(18062),a=n(29097),u=n(66181);class c extends a.CommandOperation{constructor(e,t,n){super(void 0,n),this.options={...n,checkKeys:n.checkKeys??!1},this.ns=e,this.documents=t}get commandName(){return"insert"}async execute(e,t){const n=this.options??{},r="boolean"!=typeof n.ordered||n.ordered,o={insert:this.ns.collection,documents:this.documents,ordered:r};return"boolean"==typeof n.bypassDocumentValidation&&(o.bypassDocumentValidation=n.bypassDocumentValidation),void 0!==n.comment&&(o.comment=n.comment),await super.executeCommand(e,t,o)}}t.InsertOperation=c;class l extends c{constructor(e,t,n){super(e.s.namespace,(0,o.maybeAddIdToDocuments)(e,[t],n),n)}async execute(e,t){const n=await super.execute(e,t);if(n.code)throw new r.MongoServerError(n);if(n.writeErrors)throw new r.MongoServerError(n.writeErrors[0]);return{acknowledged:0!==this.writeConcern?.w,insertedId:this.documents[0]._id}}}t.InsertOneOperation=l;class h extends u.AbstractOperation{constructor(e,t,n){if(super(n),!Array.isArray(t))throw new r.MongoInvalidArgumentError('Argument "docs" must be an array of documents');this.options=n,this.collection=e,this.docs=t}get commandName(){return"insert"}async execute(e,t){const n=this.collection,o={...this.options,...this.bsonOptions,readPreference:this.readPreference},a=i.WriteConcern.fromOptions(o),u=new s.BulkWriteOperation(n,this.docs.map((e=>({insertOne:{document:e}}))),o);try{const n=await u.execute(e,t);return{acknowledged:0!==a?.w,insertedCount:n.insertedCount,insertedIds:n.insertedIds}}catch(e){if(e&&"Operation must be an object with an operation key"===e.message)throw new r.MongoInvalidArgumentError("Collection.insertMany() cannot be called with an array that has null/undefined values");throw e}}}t.InsertManyOperation=h,(0,u.defineAspects)(c,[u.Aspect.RETRYABLE,u.Aspect.WRITE_OPERATION]),(0,u.defineAspects)(l,[u.Aspect.RETRYABLE,u.Aspect.WRITE_OPERATION]),(0,u.defineAspects)(h,[u.Aspect.WRITE_OPERATION])},10428:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.IsCappedOperation=void 0;const r=n(86947),o=n(66181);class i extends o.AbstractOperation{constructor(e,t){super(t),this.options=t,this.collection=e}get commandName(){return"listCollections"}async execute(e,t){const n=this.collection,[o]=await n.s.db.listCollections({name:n.collectionName},{...this.options,nameOnly:!1,readPreference:this.readPreference,session:t}).toArray();if(null==o||null==o.options)throw new r.MongoAPIError(`collection ${n.namespace} not found`);return!!o.options?.capped}}t.IsCappedOperation=i},53494:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.KillCursorsOperation=void 0;const r=n(86947),o=n(52060),i=n(66181);class s extends i.AbstractOperation{constructor(e,t,n,r){super(r),this.ns=t,this.cursorId=e,this.server=n}get commandName(){return"killCursors"}async execute(e,t){if(e!==this.server)throw new r.MongoRuntimeError("Killcursor must run on the same server operation began on");const n=this.ns.collection;if(null==n)throw new r.MongoRuntimeError("A collection name must be determined before killCursors");const i={killCursors:n,cursors:[this.cursorId]};try{await e.command(this.ns,i,{session:t})}catch(e){(0,o.squashError)(e)}}}t.KillCursorsOperation=s,(0,i.defineAspects)(s,[i.Aspect.MUST_SELECT_SAME_SERVER])},65860:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ListCollectionsOperation=void 0;const r=n(52060),o=n(29097),i=n(66181);class s extends o.CommandOperation{constructor(e,t,n){super(e,n),this.options={...n},delete this.options.writeConcern,this.db=e,this.filter=t,this.nameOnly=!!this.options.nameOnly,this.authorizedCollections=!!this.options.authorizedCollections,"number"==typeof this.options.batchSize&&(this.batchSize=this.options.batchSize)}get commandName(){return"listCollections"}async execute(e,t){return await super.executeCommand(e,t,this.generateCommand((0,r.maxWireVersion)(e)))}generateCommand(e){const t={listCollections:1,filter:this.filter,cursor:this.batchSize?{batchSize:this.batchSize}:{},nameOnly:this.nameOnly,authorizedCollections:this.authorizedCollections};return e>=9&&void 0!==this.options.comment&&(t.comment=this.options.comment),t}}t.ListCollectionsOperation=s,(0,i.defineAspects)(s,[i.Aspect.READ_OPERATION,i.Aspect.RETRYABLE,i.Aspect.CURSOR_CREATING])},13463:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ListDatabasesOperation=void 0;const r=n(52060),o=n(29097),i=n(66181);class s extends o.CommandOperation{constructor(e,t){super(e,t),this.options=t??{},this.ns=new r.MongoDBNamespace("admin","$cmd")}get commandName(){return"listDatabases"}async execute(e,t){const n={listDatabases:1};return"boolean"==typeof this.options.nameOnly&&(n.nameOnly=this.options.nameOnly),this.options.filter&&(n.filter=this.options.filter),"boolean"==typeof this.options.authorizedDatabases&&(n.authorizedDatabases=this.options.authorizedDatabases),(0,r.maxWireVersion)(e)>=9&&void 0!==this.options.comment&&(n.comment=this.options.comment),await super.executeCommand(e,t,n)}}t.ListDatabasesOperation=s,(0,i.defineAspects)(s,[i.Aspect.READ_OPERATION,i.Aspect.RETRYABLE])},66181:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.defineAspects=t.AbstractOperation=t.Aspect=void 0;const r=n(63403),o=n(50773);t.Aspect={READ_OPERATION:Symbol("READ_OPERATION"),WRITE_OPERATION:Symbol("WRITE_OPERATION"),RETRYABLE:Symbol("RETRYABLE"),EXPLAINABLE:Symbol("EXPLAINABLE"),SKIP_COLLATION:Symbol("SKIP_COLLATION"),CURSOR_CREATING:Symbol("CURSOR_CREATING"),MUST_SELECT_SAME_SERVER:Symbol("MUST_SELECT_SAME_SERVER")};const i=Symbol("session");t.AbstractOperation=class{constructor(e={}){this.readPreference=this.hasAspect(t.Aspect.WRITE_OPERATION)?o.ReadPreference.primary:o.ReadPreference.fromOptions(e)??o.ReadPreference.primary,this.bsonOptions=(0,r.resolveBSONOptions)(e),this[i]=null!=e.session?e.session:void 0,this.options=e,this.bypassPinningCheck=!!e.bypassPinningCheck,this.trySecondaryWrite=!1}hasAspect(e){const t=this.constructor;return null!=t.aspects&&t.aspects.has(e)}get session(){return this[i]}clearSession(){this[i]=void 0}get canRetryRead(){return!0}get canRetryWrite(){return!0}},t.defineAspects=function(e,t){return Array.isArray(t)||t instanceof Set||(t=[t]),t=new Set(t),Object.defineProperty(e,"aspects",{value:t,writable:!1}),t}},94716:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.OptionsOperation=void 0;const r=n(86947),o=n(66181);class i extends o.AbstractOperation{constructor(e,t){super(t),this.options=t,this.collection=e}get commandName(){return"listCollections"}async execute(e,t){const n=this.collection,[o]=await n.s.db.listCollections({name:n.collectionName},{...this.options,nameOnly:!1,readPreference:this.readPreference,session:t}).toArray();if(null==o||null==o.options)throw new r.MongoAPIError(`collection ${n.namespace} not found`);return o.options}}t.OptionsOperation=i},4867:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ProfilingLevelOperation=void 0;const r=n(86947),o=n(29097);class i extends o.CommandOperation{constructor(e,t){super(e,t),this.options=t}get commandName(){return"profile"}async execute(e,t){const n=await super.executeCommand(e,t,{profile:-1});if(1===n.ok){const e=n.was;if(0===e)return"off";if(1===e)return"slow_only";if(2===e)return"all";throw new r.MongoUnexpectedServerResponseError(`Illegal profiling level value ${e}`)}throw new r.MongoUnexpectedServerResponseError("Error with profile command")}}t.ProfilingLevelOperation=i},67862:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.RemoveUserOperation=void 0;const r=n(29097),o=n(66181);class i extends r.CommandOperation{constructor(e,t,n){super(e,n),this.options=n,this.username=t}get commandName(){return"dropUser"}async execute(e,t){return await super.executeCommand(e,t,{dropUser:this.username}),!0}}t.RemoveUserOperation=i,(0,o.defineAspects)(i,[o.Aspect.WRITE_OPERATION])},5964:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.RenameOperation=void 0;const r=n(36653),o=n(52060),i=n(29097),s=n(66181);class a extends i.CommandOperation{constructor(e,t,n){super(e,n),this.collection=e,this.newName=t,this.options=n,this.ns=new o.MongoDBNamespace("admin","$cmd")}get commandName(){return"renameCollection"}async execute(e,t){const n={renameCollection:this.collection.namespace,to:this.collection.s.namespace.withCollection(this.newName).toString(),dropTarget:"boolean"==typeof this.options.dropTarget&&this.options.dropTarget};return await super.executeCommand(e,t,n),new r.Collection(this.collection.s.db,this.newName,this.collection.s.options)}}t.RenameOperation=a,(0,s.defineAspects)(a,[s.Aspect.WRITE_OPERATION])},37639:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.RunAdminCommandOperation=t.RunCommandOperation=void 0;const r=n(52060),o=n(66181);class i extends o.AbstractOperation{constructor(e,t,n){super(n),this.command=t,this.options=n,this.ns=e.s.namespace.withCollection("$cmd")}get commandName(){return"runCommand"}async execute(e,t){return this.server=e,await e.command(this.ns,this.command,{...this.options,readPreference:this.readPreference,session:t})}}t.RunCommandOperation=i;class s extends o.AbstractOperation{constructor(e,t){super(t),this.command=e,this.options=t,this.ns=new r.MongoDBNamespace("admin","$cmd")}get commandName(){return"runCommand"}async execute(e,t){return this.server=e,await e.command(this.ns,this.command,{...this.options,readPreference:this.readPreference,session:t})}}t.RunAdminCommandOperation=s},38636:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CreateSearchIndexesOperation=void 0;const r=n(66181);class o extends r.AbstractOperation{constructor(e,t){super(),this.collection=e,this.descriptions=t}get commandName(){return"createSearchIndexes"}async execute(e,t){const n=this.collection.fullNamespace,r={createSearchIndexes:n.collection,indexes:this.descriptions},o=await e.command(n,r,{session:t});return(o?.indexesCreated??[]).map((({name:e})=>e))}}t.CreateSearchIndexesOperation=o},91793:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DropSearchIndexOperation=void 0;const r=n(86947),o=n(66181);class i extends o.AbstractOperation{constructor(e,t){super(),this.collection=e,this.name=t}get commandName(){return"dropSearchIndex"}async execute(e,t){const n=this.collection.fullNamespace,o={dropSearchIndex:n.collection};"string"==typeof this.name&&(o.name=this.name);try{await e.command(n,o,{session:t})}catch(e){if(!(e instanceof r.MongoServerError&&e.code===r.MONGODB_ERROR_CODES.NamespaceNotFound))throw e}}}t.DropSearchIndexOperation=i},74025:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UpdateSearchIndexOperation=void 0;const r=n(66181);class o extends r.AbstractOperation{constructor(e,t,n){super(),this.collection=e,this.name=t,this.definition=n}get commandName(){return"updateSearchIndex"}async execute(e,t){const n=this.collection.fullNamespace,r={updateSearchIndex:n.collection,name:this.name,definition:this.definition};await e.command(n,r,{session:t})}}t.UpdateSearchIndexOperation=o},80008:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SetProfilingLevelOperation=t.ProfilingLevel=void 0;const r=n(86947),o=n(52060),i=n(29097),s=new Set(["off","slow_only","all"]);t.ProfilingLevel=Object.freeze({off:"off",slowOnly:"slow_only",all:"all"});class a extends i.CommandOperation{constructor(e,n,r){switch(super(e,r),this.options=r,n){case t.ProfilingLevel.off:this.profile=0;break;case t.ProfilingLevel.slowOnly:this.profile=1;break;case t.ProfilingLevel.all:this.profile=2;break;default:this.profile=0}this.level=n}get commandName(){return"profile"}async execute(e,n){const i=this.level;if(!s.has(i))throw new r.MongoInvalidArgumentError(`Profiling level must be one of "${(0,o.enumToString)(t.ProfilingLevel)}"`);return await super.executeCommand(e,n,{profile:this.profile}),i}}t.SetProfilingLevelOperation=a},35207:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DbStatsOperation=void 0;const r=n(29097),o=n(66181);class i extends r.CommandOperation{constructor(e,t){super(e,t),this.options=t}get commandName(){return"dbStats"}async execute(e,t){const n={dbStats:!0};return null!=this.options.scale&&(n.scale=this.options.scale),await super.executeCommand(e,t,n)}}t.DbStatsOperation=i,(0,o.defineAspects)(i,[o.Aspect.READ_OPERATION])},48703:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.makeUpdateStatement=t.ReplaceOneOperation=t.UpdateManyOperation=t.UpdateOneOperation=t.UpdateOperation=void 0;const r=n(86947),o=n(52060),i=n(29097),s=n(66181);class a extends i.CommandOperation{constructor(e,t,n){super(void 0,n),this.options=n,this.ns=e,this.statements=t}get commandName(){return"update"}get canRetryWrite(){return!1!==super.canRetryWrite&&this.statements.every((e=>null==e.multi||!1===e.multi))}async execute(e,t){const n=this.options??{},o="boolean"!=typeof n.ordered||n.ordered,i={update:this.ns.collection,updates:this.statements,ordered:o};if("boolean"==typeof n.bypassDocumentValidation&&(i.bypassDocumentValidation=n.bypassDocumentValidation),n.let&&(i.let=n.let),void 0!==n.comment&&(i.comment=n.comment),this.writeConcern&&0===this.writeConcern.w&&this.statements.find((e=>e.hint)))throw new r.MongoCompatibilityError("hint is not supported with unacknowledged writes");return await super.executeCommand(e,t,i)}}t.UpdateOperation=a;class u extends a{constructor(e,t,n,i){if(super(e.s.namespace,[h(t,n,{...i,multi:!1})],i),!(0,o.hasAtomicOperators)(n))throw new r.MongoInvalidArgumentError("Update document requires atomic operators")}async execute(e,t){const n=await super.execute(e,t);if(null!=this.explain)return n;if(n.code)throw new r.MongoServerError(n);if(n.writeErrors)throw new r.MongoServerError(n.writeErrors[0]);return{acknowledged:0!==this.writeConcern?.w,modifiedCount:n.nModified??n.n,upsertedId:Array.isArray(n.upserted)&&n.upserted.length>0?n.upserted[0]._id:null,upsertedCount:Array.isArray(n.upserted)&&n.upserted.length?n.upserted.length:0,matchedCount:Array.isArray(n.upserted)&&n.upserted.length>0?0:n.n}}}t.UpdateOneOperation=u;class c extends a{constructor(e,t,n,i){if(super(e.s.namespace,[h(t,n,{...i,multi:!0})],i),!(0,o.hasAtomicOperators)(n))throw new r.MongoInvalidArgumentError("Update document requires atomic operators")}async execute(e,t){const n=await super.execute(e,t);if(null!=this.explain)return n;if(n.code)throw new r.MongoServerError(n);if(n.writeErrors)throw new r.MongoServerError(n.writeErrors[0]);return{acknowledged:0!==this.writeConcern?.w,modifiedCount:n.nModified??n.n,upsertedId:Array.isArray(n.upserted)&&n.upserted.length>0?n.upserted[0]._id:null,upsertedCount:Array.isArray(n.upserted)&&n.upserted.length?n.upserted.length:0,matchedCount:Array.isArray(n.upserted)&&n.upserted.length>0?0:n.n}}}t.UpdateManyOperation=c;class l extends a{constructor(e,t,n,i){if(super(e.s.namespace,[h(t,n,{...i,multi:!1})],i),(0,o.hasAtomicOperators)(n))throw new r.MongoInvalidArgumentError("Replacement document must not contain atomic operators")}async execute(e,t){const n=await super.execute(e,t);if(null!=this.explain)return n;if(n.code)throw new r.MongoServerError(n);if(n.writeErrors)throw new r.MongoServerError(n.writeErrors[0]);return{acknowledged:0!==this.writeConcern?.w,modifiedCount:n.nModified??n.n,upsertedId:Array.isArray(n.upserted)&&n.upserted.length>0?n.upserted[0]._id:null,upsertedCount:Array.isArray(n.upserted)&&n.upserted.length?n.upserted.length:0,matchedCount:Array.isArray(n.upserted)&&n.upserted.length>0?0:n.n}}}function h(e,t,n){if(null==e||"object"!=typeof e)throw new r.MongoInvalidArgumentError("Selector must be a valid JavaScript object");if(null==t||"object"!=typeof t)throw new r.MongoInvalidArgumentError("Document must be a valid JavaScript object");const o={q:e,u:t};return"boolean"==typeof n.upsert&&(o.upsert=n.upsert),n.multi&&(o.multi=n.multi),n.hint&&(o.hint=n.hint),n.arrayFilters&&(o.arrayFilters=n.arrayFilters),n.collation&&(o.collation=n.collation),o}t.ReplaceOneOperation=l,t.makeUpdateStatement=h,(0,s.defineAspects)(a,[s.Aspect.RETRYABLE,s.Aspect.WRITE_OPERATION,s.Aspect.SKIP_COLLATION]),(0,s.defineAspects)(u,[s.Aspect.RETRYABLE,s.Aspect.WRITE_OPERATION,s.Aspect.EXPLAINABLE,s.Aspect.SKIP_COLLATION]),(0,s.defineAspects)(c,[s.Aspect.WRITE_OPERATION,s.Aspect.EXPLAINABLE,s.Aspect.SKIP_COLLATION]),(0,s.defineAspects)(l,[s.Aspect.RETRYABLE,s.Aspect.WRITE_OPERATION,s.Aspect.SKIP_COLLATION])},35571:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ValidateCollectionOperation=void 0;const r=n(86947),o=n(29097);class i extends o.CommandOperation{constructor(e,t,n){const r={validate:t},o=Object.keys(n);for(let e=0;e{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ReadConcern=t.ReadConcernLevel=void 0,t.ReadConcernLevel=Object.freeze({local:"local",majority:"majority",linearizable:"linearizable",available:"available",snapshot:"snapshot"});class n{constructor(e){this.level=t.ReadConcernLevel[e]??e}static fromOptions(e){if(null!=e){if(e.readConcern){const{readConcern:t}=e;if(t instanceof n)return t;if("string"==typeof t)return new n(t);if("level"in t&&t.level)return new n(t.level)}return e.level?new n(e.level):void 0}}static get MAJORITY(){return t.ReadConcernLevel.majority}static get AVAILABLE(){return t.ReadConcernLevel.available}static get LINEARIZABLE(){return t.ReadConcernLevel.linearizable}static get SNAPSHOT(){return t.ReadConcernLevel.snapshot}toJSON(){return{level:this.level}}}t.ReadConcern=n},50773:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ReadPreference=t.ReadPreferenceMode=void 0;const r=n(86947);t.ReadPreferenceMode=Object.freeze({primary:"primary",primaryPreferred:"primaryPreferred",secondary:"secondary",secondaryPreferred:"secondaryPreferred",nearest:"nearest"});class o{constructor(e,t,n){if(!o.isValid(e))throw new r.MongoInvalidArgumentError(`Invalid read preference mode ${JSON.stringify(e)}`);if(null!=n||"object"!=typeof t||Array.isArray(t)){if(t&&!Array.isArray(t))throw new r.MongoInvalidArgumentError("ReadPreference tags must be an array")}else n=t,t=void 0;if(this.mode=e,this.tags=t,this.hedge=n?.hedge,this.maxStalenessSeconds=void 0,this.minWireVersion=void 0,null!=(n=n??{}).maxStalenessSeconds){if(n.maxStalenessSeconds<=0)throw new r.MongoInvalidArgumentError("maxStalenessSeconds must be a positive integer");this.maxStalenessSeconds=n.maxStalenessSeconds,this.minWireVersion=5}if(this.mode===o.PRIMARY){if(this.tags&&Array.isArray(this.tags)&&this.tags.length>0)throw new r.MongoInvalidArgumentError("Primary read preference cannot be combined with tags");if(this.maxStalenessSeconds)throw new r.MongoInvalidArgumentError("Primary read preference cannot be combined with maxStalenessSeconds");if(this.hedge)throw new r.MongoInvalidArgumentError("Primary read preference cannot be combined with hedge")}}get preference(){return this.mode}static fromString(e){return new o(e)}static fromOptions(e){if(!e)return;const t=e.readPreference??e.session?.transaction.options.readPreference,n=e.readPreferenceTags;if(null!=t){if("string"==typeof t)return new o(t,n,{maxStalenessSeconds:e.maxStalenessSeconds,hedge:e.hedge});if(!(t instanceof o)&&"object"==typeof t){const r=t.mode||t.preference;if(r&&"string"==typeof r)return new o(r,t.tags??n,{maxStalenessSeconds:t.maxStalenessSeconds,hedge:e.hedge})}return n&&(t.tags=n),t}}static translate(e){if(null==e.readPreference)return e;const t=e.readPreference;if("string"==typeof t)e.readPreference=new o(t);else if(!t||t instanceof o||"object"!=typeof t){if(!(t instanceof o))throw new r.MongoInvalidArgumentError(`Invalid read preference: ${t}`)}else{const n=t.mode||t.preference;n&&"string"==typeof n&&(e.readPreference=new o(n,t.tags,{maxStalenessSeconds:t.maxStalenessSeconds}))}return e}static isValid(e){return new Set([o.PRIMARY,o.PRIMARY_PREFERRED,o.SECONDARY,o.SECONDARY_PREFERRED,o.NEAREST,null]).has(e)}isValid(e){return o.isValid("string"==typeof e?e:this.mode)}secondaryOk(){return new Set([o.PRIMARY_PREFERRED,o.SECONDARY,o.SECONDARY_PREFERRED,o.NEAREST]).has(this.mode)}equals(e){return e.mode===this.mode}toJSON(){const e={mode:this.mode};return Array.isArray(this.tags)&&(e.tags=this.tags),this.maxStalenessSeconds&&(e.maxStalenessSeconds=this.maxStalenessSeconds),this.hedge&&(e.hedge=this.hedge),e}}o.PRIMARY=t.ReadPreferenceMode.primary,o.PRIMARY_PREFERRED=t.ReadPreferenceMode.primaryPreferred,o.SECONDARY=t.ReadPreferenceMode.secondary,o.SECONDARY_PREFERRED=t.ReadPreferenceMode.secondaryPreferred,o.NEAREST=t.ReadPreferenceMode.nearest,o.primary=new o(t.ReadPreferenceMode.primary),o.primaryPreferred=new o(t.ReadPreferenceMode.primaryPreferred),o.secondary=new o(t.ReadPreferenceMode.secondary),o.secondaryPreferred=new o(t.ReadPreferenceMode.secondaryPreferred),o.nearest=new o(t.ReadPreferenceMode.nearest),t.ReadPreference=o},48446:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t._advanceClusterTime=t.drainTimerQueue=t.ServerType=t.TopologyType=t.STATE_CONNECTED=t.STATE_CONNECTING=t.STATE_CLOSED=t.STATE_CLOSING=void 0;const r=n(53557);t.STATE_CLOSING="closing",t.STATE_CLOSED="closed",t.STATE_CONNECTING="connecting",t.STATE_CONNECTED="connected",t.TopologyType=Object.freeze({Single:"Single",ReplicaSetNoPrimary:"ReplicaSetNoPrimary",ReplicaSetWithPrimary:"ReplicaSetWithPrimary",Sharded:"Sharded",Unknown:"Unknown",LoadBalanced:"LoadBalanced"}),t.ServerType=Object.freeze({Standalone:"Standalone",Mongos:"Mongos",PossiblePrimary:"PossiblePrimary",RSPrimary:"RSPrimary",RSSecondary:"RSSecondary",RSArbiter:"RSArbiter",RSOther:"RSOther",RSGhost:"RSGhost",Unknown:"Unknown",LoadBalancer:"LoadBalancer"}),t.drainTimerQueue=function(e){e.forEach(r.clearTimeout),e.clear()},t._advanceClusterTime=function(e,t){(null==e.clusterTime||t.clusterTime.greaterThan(e.clusterTime.clusterTime))&&(e.clusterTime=t)}},60838:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ServerHeartbeatFailedEvent=t.ServerHeartbeatSucceededEvent=t.ServerHeartbeatStartedEvent=t.TopologyClosedEvent=t.TopologyOpeningEvent=t.TopologyDescriptionChangedEvent=t.ServerClosedEvent=t.ServerOpeningEvent=t.ServerDescriptionChangedEvent=void 0;const r=n(32568);t.ServerDescriptionChangedEvent=class{constructor(e,t,n,o){this.name=r.SERVER_DESCRIPTION_CHANGED,this.topologyId=e,this.address=t,this.previousDescription=n,this.newDescription=o}},t.ServerOpeningEvent=class{constructor(e,t){this.name=r.SERVER_OPENING,this.topologyId=e,this.address=t}},t.ServerClosedEvent=class{constructor(e,t){this.name=r.SERVER_CLOSED,this.topologyId=e,this.address=t}},t.TopologyDescriptionChangedEvent=class{constructor(e,t,n){this.name=r.TOPOLOGY_DESCRIPTION_CHANGED,this.topologyId=e,this.previousDescription=t,this.newDescription=n}},t.TopologyOpeningEvent=class{constructor(e){this.name=r.TOPOLOGY_OPENING,this.topologyId=e}},t.TopologyClosedEvent=class{constructor(e){this.name=r.TOPOLOGY_CLOSED,this.topologyId=e}},t.ServerHeartbeatStartedEvent=class{constructor(e,t){this.name=r.SERVER_HEARTBEAT_STARTED,this.connectionId=e,this.awaited=t}},t.ServerHeartbeatSucceededEvent=class{constructor(e,t,n,o){this.name=r.SERVER_HEARTBEAT_SUCCEEDED,this.connectionId=e,this.duration=t,this.reply=n??{},this.awaited=o}},t.ServerHeartbeatFailedEvent=class{constructor(e,t,n,o){this.name=r.SERVER_HEARTBEAT_FAILED,this.connectionId=e,this.duration=t,this.failure=n,this.awaited=o}}},46445:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.RTTSampler=t.MonitorInterval=t.RTTPinger=t.Monitor=t.ServerMonitoringMode=void 0;const r=n(53557),o=n(63403),i=n(34469),s=n(96088),a=n(32568),u=n(86947),c=n(60528),l=n(96327),h=n(52060),f=n(48446),p=n(60838),d=n(51116),E=Symbol("server"),m=Symbol("monitorId"),_=Symbol("cancellationToken"),g="idle",y="monitoring",A=(0,h.makeStateMachine)({[f.STATE_CLOSING]:[f.STATE_CLOSING,g,f.STATE_CLOSED],[f.STATE_CLOSED]:[f.STATE_CLOSED,y],[g]:[g,y,f.STATE_CLOSING],[y]:[y,g,f.STATE_CLOSING]}),v=new Set([f.STATE_CLOSING,f.STATE_CLOSED,y]);function b(e){return e.s.state===f.STATE_CLOSED||e.s.state===f.STATE_CLOSING}t.ServerMonitoringMode=Object.freeze({auto:"auto",poll:"poll",stream:"stream"});class T extends l.TypedEventEmitter{constructor(e,t){super(),this.component=c.MongoLoggableComponent.TOPOLOGY,this[E]=e,this.connection=null,this[_]=new l.CancellationToken,this[_].setMaxListeners(1/0),this[m]=void 0,this.s={state:f.STATE_CLOSED},this.address=e.description.address,this.options=Object.freeze({connectTimeoutMS:t.connectTimeoutMS??1e4,heartbeatFrequencyMS:t.heartbeatFrequencyMS??1e4,minHeartbeatFrequencyMS:t.minHeartbeatFrequencyMS??500,serverMonitoringMode:t.serverMonitoringMode}),this.isRunningInFaasEnv=null!=(0,s.getFAASEnv)(),this.mongoLogger=this[E].topology.client?.mongoLogger,this.rttSampler=new N(10);const n=this[_],r={id:"",generation:e.pool.generation,cancellationToken:n,hostAddress:e.description.hostAddress,...t,raw:!1,useBigInt64:!1,promoteLongs:!0,promoteValues:!0,promoteBuffers:!0};delete r.credentials,r.autoEncrypter&&delete r.autoEncrypter,this.connectOptions=Object.freeze(r)}connect(){if(this.s.state!==f.STATE_CLOSED)return;const e=this.options.heartbeatFrequencyMS,t=this.options.minHeartbeatFrequencyMS;this[m]=new I(R(this),{heartbeatFrequencyMS:e,minHeartbeatFrequencyMS:t,immediate:!0})}requestCheck(){v.has(this.s.state)||this[m]?.wake()}reset(){const e=this[E].description.topologyVersion;if(b(this)||null==e)return;A(this,f.STATE_CLOSING),w(this),A(this,g);const t=this.options.heartbeatFrequencyMS,n=this.options.minHeartbeatFrequencyMS;this[m]=new I(R(this),{heartbeatFrequencyMS:t,minHeartbeatFrequencyMS:n})}close(){b(this)||(A(this,f.STATE_CLOSING),w(this),this.emit("close"),A(this,f.STATE_CLOSED))}get roundTripTime(){return this.rttSampler.average()}get minRoundTripTime(){return this.rttSampler.min()}get latestRtt(){return this.rttSampler.last}addRttSample(e){this.rttSampler.addSample(e)}clearRttSamples(){this.rttSampler.clear()}}function w(e){e[m]?.stop(),e[m]=void 0,e.rttPinger?.close(),e.rttPinger=void 0,e[_].emit("cancel"),e.connection?.destroy(),e.connection=null,e.clearRttSamples()}function O(e,n){if(null==n)return!1;const r=e.options.serverMonitoringMode;return r!==t.ServerMonitoringMode.poll&&(r===t.ServerMonitoringMode.stream||!e.isRunningInFaasEnv)}function R(e){return t=>{function n(){b(e)||A(e,g),t()}e.s.state!==y?(A(e,y),function(e,t){let n,r;const s=e[E].description.topologyVersion,c=O(e,s);function l(o){e.connection?.destroy(),e.connection=null,e.emitAndLogHeartbeat(d.Server.SERVER_HEARTBEAT_FAILED,e[E].topology.s.id,void 0,new p.ServerHeartbeatFailedEvent(e.address,(0,h.calculateDurationInMs)(n),o,r));const i=o instanceof u.MongoError?o:new u.MongoError(u.MongoError.buildErrorMessage(o),{cause:o});i.addErrorLabel(u.MongoErrorLabel.ResetPool),i instanceof u.MongoNetworkTimeoutError&&i.addErrorLabel(u.MongoErrorLabel.InterruptInUseConnections),e.emit("resetServer",i),t(o)}function f(r){"isWritablePrimary"in r||(r.isWritablePrimary=r[a.LEGACY_HELLO_COMMAND]);const o=c&&e.rttPinger?e.rttPinger.latestRtt??(0,h.calculateDurationInMs)(n):(0,h.calculateDurationInMs)(n);e.addRttSample(o),e.emitAndLogHeartbeat(d.Server.SERVER_HEARTBEAT_SUCCEEDED,e[E].topology.s.id,r.connectionId,new p.ServerHeartbeatSucceededEvent(e.address,o,r,c)),c?(e.emitAndLogHeartbeat(d.Server.SERVER_HEARTBEAT_STARTED,e[E].topology.s.id,void 0,new p.ServerHeartbeatStartedEvent(e.address,!0)),n=(0,h.now)()):(e.rttPinger?.close(),e.rttPinger=void 0,t(void 0,r))}e.emitAndLogHeartbeat(d.Server.SERVER_HEARTBEAT_STARTED,e[E].topology.s.id,void 0,new p.ServerHeartbeatStartedEvent(e.address,c));const{connection:m}=e;if(m&&!m.closed){const{serverApi:t,helloOk:i}=m,u=e.options.connectTimeoutMS,p=e.options.heartbeatFrequencyMS,d={[t?.version||i?"hello":a.LEGACY_HELLO_COMMAND]:1,...c&&s?{maxAwaitTimeMS:p,topologyVersion:(_=s,{processId:_.processId,counter:o.Long.isLong(_.counter)?_.counter:o.Long.fromNumber(_.counter)})}:{}},E=c?{socketTimeoutMS:u?u+p:0,exhaustAllowed:!0}:{socketTimeoutMS:u};return c&&null==e.rttPinger&&(e.rttPinger=new S(e)),n=(0,h.now)(),c?(r=!0,m.exhaustCommand((0,h.ns)("admin.$cmd"),d,E,((e,t)=>e?l(e):f(t)))):(r=!1,void m.command((0,h.ns)("admin.$cmd"),d,E).then(f,l))}var _;(async()=>{const t=await(0,i.makeSocket)(e.connectOptions),r=(0,i.makeConnection)(e.connectOptions,t);n=(0,h.now)();try{return await(0,i.performInitialHandshake)(r,e.connectOptions),r}catch(e){throw r.destroy(),e}})().then((r=>{if(b(e))return void r.destroy();const o=(0,h.calculateDurationInMs)(n);e.addRttSample(o),e.connection=r,e.emitAndLogHeartbeat(d.Server.SERVER_HEARTBEAT_SUCCEEDED,e[E].topology.s.id,r.hello?.connectionId,new p.ServerHeartbeatSucceededEvent(e.address,o,r.hello,O(e,r.hello?.topologyVersion))),t(void 0,r.hello)}),(t=>{e.connection=null,r=!1,l(t)}))}(e,((t,o)=>{if(t&&e[E].description.type===f.ServerType.Unknown)return n();O(e,o?.topologyVersion)&&(0,r.setTimeout)((()=>{b(e)||e[m]?.wake()}),0),n()}))):process.nextTick(t)}}t.Monitor=T;class S{constructor(e){this.connection=void 0,this[_]=e[_],this.closed=!1,this.monitor=e,this.latestRtt=e.latestRtt??void 0;const t=e.options.heartbeatFrequencyMS;this[m]=(0,r.setTimeout)((()=>this.measureRoundTripTime()),t)}get roundTripTime(){return this.monitor.roundTripTime}get minRoundTripTime(){return this.monitor.minRoundTripTime}close(){this.closed=!0,(0,r.clearTimeout)(this[m]),this.connection?.destroy(),this.connection=void 0}measureAndReschedule(e,t){this.closed?t?.destroy():(null==this.connection&&(this.connection=t),this.latestRtt=(0,h.calculateDurationInMs)(e),this[m]=(0,r.setTimeout)((()=>this.measureRoundTripTime()),this.monitor.options.heartbeatFrequencyMS))}measureRoundTripTime(){const e=(0,h.now)();if(this.closed)return;const t=this.connection;if(null==t)return void(0,i.connect)(this.monitor.connectOptions).then((t=>{this.measureAndReschedule(e,t)}),(()=>{this.connection=void 0}));const n=t.serverApi?.version||t.helloOk?"hello":a.LEGACY_HELLO_COMMAND;t.command((0,h.ns)("admin.$cmd"),{[n]:1},void 0).then((()=>this.measureAndReschedule(e)),(()=>{this.connection?.destroy(),this.connection=void 0}))}}t.RTTPinger=S;class I{constructor(e,t={}){this.isExpeditedCallToFnScheduled=!1,this.stopped=!1,this.isExecutionInProgress=!1,this.hasExecutedOnce=!1,this._executeAndReschedule=()=>{this.stopped||(this.timerId&&(0,r.clearTimeout)(this.timerId),this.isExpeditedCallToFnScheduled=!1,this.isExecutionInProgress=!0,this.fn((()=>{this.lastExecutionEnded=(0,h.now)(),this.isExecutionInProgress=!1,this._reschedule(this.heartbeatFrequencyMS)})))},this.fn=e,this.lastExecutionEnded=-1/0,this.heartbeatFrequencyMS=t.heartbeatFrequencyMS??1e3,this.minHeartbeatFrequencyMS=t.minHeartbeatFrequencyMS??500,t.immediate?this._executeAndReschedule():this._reschedule(void 0)}wake(){const e=(0,h.now)()-this.lastExecutionEnded;return e<0?this._executeAndReschedule():this.isExecutionInProgress||this.isExpeditedCallToFnScheduled?void 0:e{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Server=void 0;const r=n(15307),o=n(49740),i=n(53216),s=n(32568),a=n(86947),u=n(96327),c=n(34716),l=n(52060),h=n(48446),f=n(46445),p=n(66029),d=(0,l.makeStateMachine)({[h.STATE_CLOSED]:[h.STATE_CLOSED,h.STATE_CONNECTING],[h.STATE_CONNECTING]:[h.STATE_CONNECTING,h.STATE_CLOSING,h.STATE_CONNECTED,h.STATE_CLOSED],[h.STATE_CONNECTED]:[h.STATE_CONNECTED,h.STATE_CLOSING,h.STATE_CLOSED],[h.STATE_CLOSING]:[h.STATE_CLOSING,h.STATE_CLOSED]});class E extends u.TypedEventEmitter{constructor(e,t,n){super(),this.serverApi=n.serverApi;const i={hostAddress:t.hostAddress,...n};this.topology=e,this.pool=new o.ConnectionPool(this,i),this.s={description:t,options:n,state:h.STATE_CLOSED,operationCount:0};for(const e of[...s.CMAP_EVENTS,...s.APM_EVENTS])this.pool.on(e,(t=>this.emit(e,t)));if(this.pool.on(r.Connection.CLUSTER_TIME_RECEIVED,(e=>{this.clusterTime=e})),this.loadBalanced)this.monitor=null;else{this.monitor=new f.Monitor(this,this.s.options);for(const e of s.HEARTBEAT_EVENTS)this.monitor.on(e,(t=>this.emit(e,t)));this.monitor.on("resetServer",(e=>m(this,e))),this.monitor.on(E.SERVER_HEARTBEAT_SUCCEEDED,(e=>{this.emit(E.DESCRIPTION_RECEIVED,new p.ServerDescription(this.description.hostAddress,e.reply,{roundTripTime:this.monitor?.roundTripTime,minRoundTripTime:this.monitor?.minRoundTripTime})),this.s.state===h.STATE_CONNECTING&&(d(this,h.STATE_CONNECTED),this.emit(E.CONNECT,this))}))}}get clusterTime(){return this.topology.clusterTime}set clusterTime(e){this.topology.clusterTime=e}get description(){return this.s.description}get name(){return this.s.description.address}get autoEncrypter(){if(this.s.options&&this.s.options.autoEncrypter)return this.s.options.autoEncrypter}get loadBalanced(){return this.topology.description.type===h.TopologyType.LoadBalanced}connect(){this.s.state===h.STATE_CLOSED&&(d(this,h.STATE_CONNECTING),this.loadBalanced?(d(this,h.STATE_CONNECTED),this.emit(E.CONNECT,this)):this.monitor?.connect())}destroy(){this.s.state!==h.STATE_CLOSED&&(d(this,h.STATE_CLOSING),this.loadBalanced||this.monitor?.close(),this.pool.close(),d(this,h.STATE_CLOSED),this.emit("closed"))}requestCheck(){this.loadBalanced||this.monitor?.requestCheck()}async command(e,t,n,r){if(null==e.db||"string"==typeof e)throw new a.MongoInvalidArgumentError("Namespace must not be a string");if(this.s.state===h.STATE_CLOSING||this.s.state===h.STATE_CLOSED)throw new a.MongoServerClosedError;const o=Object.assign({},n,{wireProtocolCommand:!1,directConnection:this.topology.s.options.directConnection});o.omitReadPreference&&delete o.readPreference;const s=o.session;let u=s?.pinnedConnection;if(this.incrementOperationCount(),null==u)try{u=await this.pool.checkOut(),this.loadBalanced&&function(e,t){return!!t&&(t.inTransaction()||t.transaction.isCommitted&&"commitTransaction"in e||"aggregate"in e||"find"in e||"getMore"in e||"listCollections"in e||"listIndexes"in e)}(t,s)&&s?.pin(u)}catch(e){throw this.decrementOperationCount(),e instanceof i.PoolClearedError||this.handleError(e),e}try{try{return await u.command(e,t,o,r)}catch(e){throw this.decorateCommandError(u,t,o,e)}}catch(n){if(!(n instanceof a.MongoError&&n.code===a.MONGODB_ERROR_CODES.Reauthenticate))throw n;await this.pool.reauthenticate(u);try{return await u.command(e,t,o,r)}catch(e){throw this.decorateCommandError(u,t,o,e)}}finally{this.decrementOperationCount(),s?.pinnedConnection!==u&&this.pool.checkIn(u)}}handleError(e,t){if(!(e instanceof a.MongoError))return;if(e.connectionGeneration&&e.connectionGenerationthis.requestCheck())))}}decorateCommandError(e,t,n,r){if("object"!=typeof r||null==r||!("name"in r))throw new a.MongoRuntimeError("An unexpected error type: "+typeof r);if("AbortError"===r.name&&"cause"in r&&r.cause instanceof a.MongoError&&(r=r.cause),!(r instanceof a.MongoError))return r;if(function(e,t){return t.serviceId?t.generation!==e.serviceGenerations.get(t.serviceId.toHexString()):t.generation!==e.generation}(this.pool,e))return r;const o=n?.session;return r instanceof a.MongoNetworkError?(o&&!o.hasEnded&&o.serverSession&&(o.serverSession.isDirty=!0),_(o,t)&&!r.hasErrorLabel(a.MongoErrorLabel.TransientTransactionError)&&r.addErrorLabel(a.MongoErrorLabel.TransientTransactionError),(g(this.topology)||(0,c.isTransactionCommand)(t))&&(0,l.supportsRetryableWrites)(this)&&!_(o,t)&&r.addErrorLabel(a.MongoErrorLabel.RetryableWriteError)):(g(this.topology)||(0,c.isTransactionCommand)(t))&&(0,a.needsRetryableWriteLabel)(r,(0,l.maxWireVersion)(this))&&!_(o,t)&&r.addErrorLabel(a.MongoErrorLabel.RetryableWriteError),o&&o.isPinned&&r.hasErrorLabel(a.MongoErrorLabel.TransientTransactionError)&&o.unpin({force:!0}),this.handleError(r,e),r}decrementOperationCount(){return this.s.operationCount-=1}incrementOperationCount(){return this.s.operationCount+=1}}function m(e,t){e.loadBalanced||(t instanceof a.MongoNetworkError&&!(t instanceof a.MongoNetworkTimeoutError)&&e.monitor?.reset(),e.emit(E.DESCRIPTION_RECEIVED,new p.ServerDescription(e.description.hostAddress,void 0,{error:t})))}function _(e,t){return e&&e.inTransaction()&&!(0,c.isTransactionCommand)(t)}function g(e){return!1!==e.s.options.retryWrites}E.SERVER_HEARTBEAT_STARTED=s.SERVER_HEARTBEAT_STARTED,E.SERVER_HEARTBEAT_SUCCEEDED=s.SERVER_HEARTBEAT_SUCCEEDED,E.SERVER_HEARTBEAT_FAILED=s.SERVER_HEARTBEAT_FAILED,E.CONNECT=s.CONNECT,E.DESCRIPTION_RECEIVED=s.DESCRIPTION_RECEIVED,E.CLOSED=s.CLOSED,E.ENDED=s.ENDED,t.Server=E},66029:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.compareTopologyVersion=t.parseServerType=t.ServerDescription=void 0;const r=n(63403),o=n(86947),i=n(52060),s=n(48446),a=new Set([s.ServerType.RSPrimary,s.ServerType.Standalone,s.ServerType.Mongos,s.ServerType.LoadBalancer]),u=new Set([s.ServerType.RSPrimary,s.ServerType.RSSecondary,s.ServerType.Mongos,s.ServerType.Standalone,s.ServerType.LoadBalancer]);function c(e,t){return t?.loadBalanced?s.ServerType.LoadBalancer:e&&e.ok?e.isreplicaset?s.ServerType.RSGhost:e.msg&&"isdbgrid"===e.msg?s.ServerType.Mongos:e.setName?e.hidden?s.ServerType.RSOther:e.isWritablePrimary?s.ServerType.RSPrimary:e.secondary?s.ServerType.RSSecondary:e.arbiterOnly?s.ServerType.RSArbiter:s.ServerType.RSOther:s.ServerType.Standalone:s.ServerType.Unknown}function l(e,t){if(null==e||null==t)return-1;if(!e.processId.equals(t.processId))return-1;const n="bigint"==typeof e.counter?r.Long.fromBigInt(e.counter):r.Long.isLong(e.counter)?e.counter:r.Long.fromNumber(e.counter),o="bigint"==typeof t.counter?r.Long.fromBigInt(t.counter):r.Long.isLong(t.counter)?t.counter:r.Long.fromNumber(t.counter);return n.compare(o)}t.ServerDescription=class{constructor(e,t,n={}){if(null==e||""===e)throw new o.MongoRuntimeError("ServerDescription must be provided with a non-empty address");this.address="string"==typeof e?i.HostAddress.fromString(e).toString():e.toString(),this.type=c(t,n),this.hosts=t?.hosts?.map((e=>e.toLowerCase()))??[],this.passives=t?.passives?.map((e=>e.toLowerCase()))??[],this.arbiters=t?.arbiters?.map((e=>e.toLowerCase()))??[],this.tags=t?.tags??{},this.minWireVersion=t?.minWireVersion??0,this.maxWireVersion=t?.maxWireVersion??0,this.roundTripTime=n?.roundTripTime??-1,this.minRoundTripTime=n?.minRoundTripTime??0,this.lastUpdateTime=(0,i.now)(),this.lastWriteDate=t?.lastWrite?.lastWriteDate??0,this.error=n.error??null,this.topologyVersion=this.error?.topologyVersion??t?.topologyVersion??null,this.setName=t?.setName??null,this.setVersion=t?.setVersion??null,this.electionId=t?.electionId??null,this.logicalSessionTimeoutMinutes=t?.logicalSessionTimeoutMinutes??null,this.primary=t?.primary??null,this.me=t?.me?.toLowerCase()??null,this.$clusterTime=t?.$clusterTime??null}get hostAddress(){return i.HostAddress.fromString(this.address)}get allHosts(){return this.hosts.concat(this.arbiters).concat(this.passives)}get isReadable(){return this.type===s.ServerType.RSSecondary||this.isWritable}get isDataBearing(){return u.has(this.type)}get isWritable(){return a.has(this.type)}get host(){const e=`:${this.port}`.length;return this.address.slice(0,-e)}get port(){const e=this.address.split(":").pop();return e?Number.parseInt(e,10):27017}equals(e){const t=this.topologyVersion===e?.topologyVersion||0===l(this.topologyVersion,e?.topologyVersion),n=null!=this.electionId&&null!=e?.electionId?0===(0,i.compareObjectId)(this.electionId,e.electionId):this.electionId===e?.electionId;return null!=e&&(0,i.errorStrictEqual)(this.error,e.error)&&this.type===e.type&&this.minWireVersion===e.minWireVersion&&(0,i.arrayStrictEqual)(this.hosts,e.hosts)&&function(e,t){const n=Object.keys(e),r=Object.keys(t);return n.length===r.length&&n.every((n=>t[n]===e[n]))}(this.tags,e.tags)&&this.setName===e.setName&&this.setVersion===e.setVersion&&n&&this.primary===e.primary&&this.logicalSessionTimeoutMinutes===e.logicalSessionTimeoutMinutes&&t}},t.parseServerType=c,t.compareTopologyVersion=l},44289:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.readPreferenceServerSelector=t.secondaryWritableServerSelector=t.sameServerSelector=t.writableServerSelector=t.MIN_SECONDARY_WRITE_WIRE_VERSION=void 0;const r=n(86947),o=n(50773),i=n(48446);function s(e,t){const n=Object.keys(e),r=Object.keys(t);for(let o=0;oMath.min(t.roundTripTime,e)),1/0),r=n+e.localThresholdMS;return t.reduce(((e,t)=>(t.roundTripTime<=r&&t.roundTripTime>=n&&e.push(t),e)),[])}function u(e){return e.type===i.ServerType.RSPrimary}function c(e){return e.type===i.ServerType.RSSecondary}function l(e){return e.type===i.ServerType.RSSecondary||e.type===i.ServerType.RSPrimary}function h(e){return e.type!==i.ServerType.Unknown}function f(e){return e.type===i.ServerType.LoadBalancer}function p(e){if(!e.isValid())throw new r.MongoInvalidArgumentError("Invalid read preference specified");return function(t,n,p=[]){const d=t.commonWireVersion;if(d&&e.minWireVersion&&e.minWireVersion>d)throw new r.MongoCompatibilityError(`Minimum wire version '${e.minWireVersion}' required, but found '${d}'`);if(t.type===i.TopologyType.LoadBalanced)return n.filter(f);if(t.type===i.TopologyType.Unknown)return[];if(t.type===i.TopologyType.Single)return a(t,n.filter(h));if(t.type===i.TopologyType.Sharded){const e=n.filter((e=>!p.includes(e)));return a(t,(e.length>0?e:p).filter(h))}const E=e.mode;if(E===o.ReadPreference.PRIMARY)return n.filter(u);if(E===o.ReadPreference.PRIMARY_PREFERRED){const e=n.filter(u);if(e.length)return e}const m=E===o.ReadPreference.NEAREST?l:c,_=a(t,function(e,t){if(null==e.tags||Array.isArray(e.tags)&&0===e.tags.length)return t;for(let n=0;n(s(r,t.tags)&&e.push(t),e)),[]);if(o.length)return o}return[]}(e,function(e,t,n){if(null==e.maxStalenessSeconds||e.maxStalenessSeconds<0)return n;const o=e.maxStalenessSeconds,s=(t.heartbeatFrequencyMS+1e4)/1e3;if(o((o.lastUpdateTime-o.lastWriteDate-(r.lastUpdateTime-r.lastWriteDate)+t.heartbeatFrequencyMS)/1e3<=(e.maxStalenessSeconds??0)&&n.push(o),n)),[])}if(t.type===i.TopologyType.ReplicaSetNoPrimary){if(0===n.length)return n;const r=n.reduce(((e,t)=>t.lastWriteDate>e.lastWriteDate?t:e));return n.reduce(((n,o)=>((r.lastWriteDate-o.lastWriteDate+t.heartbeatFrequencyMS)/1e3<=(e.maxStalenessSeconds??0)&&n.push(o),n)),[])}return n}(e,t,n.filter(m))));return E===o.ReadPreference.SECONDARY_PREFERRED&&0===_.length?n.filter(u):_}}t.MIN_SECONDARY_WRITE_WIRE_VERSION=13,t.writableServerSelector=function(){return function(e,t){return a(e,t.filter((e=>e.isWritable)))}},t.sameServerSelector=function(e){return function(t,n){return e?n.filter((t=>t.address===e.address&&t.type!==i.ServerType.Unknown)):[]}},t.secondaryWritableServerSelector=function(e,n){return!n||!e||e&&e{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.WaitingForSuitableServerEvent=t.ServerSelectionSucceededEvent=t.ServerSelectionFailedEvent=t.ServerSelectionStartedEvent=t.ServerSelectionEvent=void 0;const r=n(52060),o=n(32568);class i{constructor(e,t,n){this.selector=e,this.operation=n,this.topologyDescription=t}}t.ServerSelectionEvent=i,t.ServerSelectionStartedEvent=class extends i{constructor(e,t,n){super(e,t,n),this.name=o.SERVER_SELECTION_STARTED,this.message="Server selection started"}},t.ServerSelectionFailedEvent=class extends i{constructor(e,t,n,r){super(e,t,r),this.name=o.SERVER_SELECTION_FAILED,this.message="Server selection failed",this.failure=n}},t.ServerSelectionSucceededEvent=class extends i{constructor(e,t,n,i){super(e,t,i),this.name=o.SERVER_SELECTION_SUCCEEDED,this.message="Server selection succeeded";const{host:s,port:a}=r.HostAddress.fromString(n).toHostPort();this.serverHost=s,this.serverPort=a}},t.WaitingForSuitableServerEvent=class extends i{constructor(e,t,n,r){super(e,t,r),this.name=o.WAITING_FOR_SUITABLE_SERVER,this.message="Waiting for suitable server to become available",this.remainingTimeMS=n}}},29246:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SrvPoller=t.SrvPollingEvent=void 0;const r=n(72250),o=n(53557),i=n(86947),s=n(96327),a=n(52060);class u{constructor(e){this.srvRecords=e}hostnames(){return new Set(this.srvRecords.map((e=>a.HostAddress.fromSrvRecord(e).toString())))}}t.SrvPollingEvent=u;class c extends s.TypedEventEmitter{constructor(e){if(super(),!e||!e.srvHost)throw new i.MongoRuntimeError("Options for SrvPoller must exist and include srvHost");this.srvHost=e.srvHost,this.srvMaxHosts=e.srvMaxHosts??0,this.srvServiceName=e.srvServiceName??"mongodb",this.rescanSrvIntervalMS=6e4,this.heartbeatFrequencyMS=e.heartbeatFrequencyMS??1e4,this.haMode=!1,this.generation=0,this._timeout=void 0}get srvAddress(){return`_${this.srvServiceName}._tcp.${this.srvHost}`}get intervalMS(){return this.haMode?this.heartbeatFrequencyMS:this.rescanSrvIntervalMS}start(){this._timeout||this.schedule()}stop(){this._timeout&&((0,o.clearTimeout)(this._timeout),this.generation+=1,this._timeout=void 0)}schedule(){this._timeout&&(0,o.clearTimeout)(this._timeout),this._timeout=(0,o.setTimeout)((()=>{this._poll().then(void 0,a.squashError)}),this.intervalMS)}success(e){this.haMode=!1,this.schedule(),this.emit(c.SRV_RECORD_DISCOVERY,new u(e))}failure(){this.haMode=!0,this.schedule()}async _poll(){const e=this.generation;let t;try{t=await r.promises.resolveSrv(this.srvAddress)}catch(e){return void this.failure()}if(e!==this.generation)return;const n=[];for(const e of t)(0,a.matchesParentDomain)(e.name,this.srvHost)&&n.push(e);n.length?this.success(n):this.failure()}}c.SRV_RECORD_DISCOVERY="srvRecordDiscovery",t.SrvPoller=c},80306:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ServerCapabilities=t.Topology=void 0;const r=n(77689),o=n(32568),i=n(86947),s=n(60528),a=n(96327),u=n(50773),c=n(38286),l=n(52060),h=n(48446),f=n(60838),p=n(51116),d=n(66029),E=n(44289),m=n(9089),_=n(29246),g=n(42027);let y=0;const A=(0,l.makeStateMachine)({[h.STATE_CLOSED]:[h.STATE_CLOSED,h.STATE_CONNECTING],[h.STATE_CONNECTING]:[h.STATE_CONNECTING,h.STATE_CLOSING,h.STATE_CONNECTED,h.STATE_CLOSED],[h.STATE_CONNECTED]:[h.STATE_CONNECTED,h.STATE_CLOSING,h.STATE_CLOSED],[h.STATE_CLOSING]:[h.STATE_CLOSING,h.STATE_CLOSED]}),v=Symbol("cancelled"),b=Symbol("waitQueue");class T extends a.TypedEventEmitter{constructor(e,t,n){super(),this.client=e,n=n??{hosts:[l.HostAddress.fromString("localhost:27017")],...Object.fromEntries(r.DEFAULT_OPTIONS.entries()),...Object.fromEntries(r.FEATURE_FLAGS.entries())},"string"==typeof t?t=[l.HostAddress.fromString(t)]:Array.isArray(t)||(t=[t]);const o=[];for(const e of t)if("string"==typeof e)o.push(l.HostAddress.fromString(e));else{if(!(e instanceof l.HostAddress))throw new i.MongoRuntimeError(`Topology cannot be constructed from ${JSON.stringify(e)}`);o.push(e)}const s=function(e){return e?.directConnection?h.TopologyType.Single:e?.replicaSet?h.TopologyType.ReplicaSetNoPrimary:e?.loadBalanced?h.TopologyType.LoadBalanced:h.TopologyType.Unknown}(n),a=y++,u=null==n.srvMaxHosts||0===n.srvMaxHosts||n.srvMaxHosts>=o.length?o:(0,l.shuffle)(o,n.srvMaxHosts),c=new Map;for(const e of u)c.set(e.toString(),new d.ServerDescription(e));this[b]=new l.List,this.s={id:a,options:n,seedlist:o,state:h.STATE_CLOSED,description:new g.TopologyDescription(s,c,n.replicaSet,void 0,void 0,void 0,n),serverSelectionTimeoutMS:n.serverSelectionTimeoutMS,heartbeatFrequencyMS:n.heartbeatFrequencyMS,minHeartbeatFrequencyMS:n.minHeartbeatFrequencyMS,servers:new Map,credentials:n?.credentials,clusterTime:void 0,connectionTimers:new Set,detectShardedTopology:e=>this.detectShardedTopology(e),detectSrvRecords:e=>this.detectSrvRecords(e)},this.mongoLogger=e.mongoLogger,this.component="topology",n.srvHost&&!n.loadBalanced&&(this.s.srvPoller=n.srvPoller??new _.SrvPoller({heartbeatFrequencyMS:this.s.heartbeatFrequencyMS,srvHost:n.srvHost,srvMaxHosts:n.srvMaxHosts,srvServiceName:n.srvServiceName}),this.on(T.TOPOLOGY_DESCRIPTION_CHANGED,this.s.detectShardedTopology)),this.connectionLock=void 0}detectShardedTopology(e){const t=e.previousDescription.type,n=e.newDescription.type,r=t!==h.TopologyType.Sharded&&n===h.TopologyType.Sharded,o=this.s.srvPoller?.listeners(_.SrvPoller.SRV_RECORD_DISCOVERY),i=!!o?.includes(this.s.detectSrvRecords);r&&!i&&(this.s.srvPoller?.on(_.SrvPoller.SRV_RECORD_DISCOVERY,this.s.detectSrvRecords),this.s.srvPoller?.start())}detectSrvRecords(e){const t=this.s.description;this.s.description=this.s.description.updateFromSrvPollingEvent(e,this.s.options.srvMaxHosts),this.s.description!==t&&(R(this),this.emitAndLog(T.TOPOLOGY_DESCRIPTION_CHANGED,new f.TopologyDescriptionChangedEvent(this.s.id,t,this.s.description)))}get description(){return this.s.description}get loadBalanced(){return this.s.options.loadBalanced}get serverApi(){return this.s.options.serverApi}get capabilities(){return new N(this.lastHello())}async connect(e){this.connectionLock??=this._connect(e);try{return await this.connectionLock,this}finally{this.connectionLock=void 0}return this}async _connect(e){if(e=e??{},this.s.state===h.STATE_CONNECTED)return this;A(this,h.STATE_CONNECTING),this.emitAndLog(T.TOPOLOGY_OPENING,new f.TopologyOpeningEvent(this.s.id)),this.emitAndLog(T.TOPOLOGY_DESCRIPTION_CHANGED,new f.TopologyDescriptionChangedEvent(this.s.id,new g.TopologyDescription(h.TopologyType.Unknown),this.s.description));const t=Array.from(this.s.description.servers.values());if(this.s.servers=new Map(t.map((e=>[e.address,O(this,e)]))),this.s.options.loadBalanced)for(const e of t){const t=new d.ServerDescription(e.hostAddress,void 0,{loadBalanced:this.s.options.loadBalanced});this.serverUpdateHandler(t)}const n=e.readPreference??u.ReadPreference.primary,r={operationName:"ping",...e};try{const e=await this.selectServer((0,E.readPreferenceServerSelector)(n),r);return!0!==this.s.options[Symbol.for("@@mdb.skipPingOnConnect")]&&e&&this.s.credentials?(await e.command((0,l.ns)("admin.$cmd"),{ping:1},{}),A(this,h.STATE_CONNECTED),this.emit(T.OPEN,this),this.emit(T.CONNECT,this),this):(A(this,h.STATE_CONNECTED),this.emit(T.OPEN,this),this.emit(T.CONNECT,this),this)}catch(e){throw this.close(),e}}close(){if(this.s.state!==h.STATE_CLOSED&&this.s.state!==h.STATE_CLOSING){for(const e of this.s.servers.values())w(e,this);this.s.servers.clear(),A(this,h.STATE_CLOSING),S(this[b],new i.MongoTopologyClosedError),(0,h.drainTimerQueue)(this.s.connectionTimers),this.s.srvPoller&&(this.s.srvPoller.stop(),this.s.srvPoller.removeListener(_.SrvPoller.SRV_RECORD_DISCOVERY,this.s.detectSrvRecords)),this.removeListener(T.TOPOLOGY_DESCRIPTION_CHANGED,this.s.detectShardedTopology),A(this,h.STATE_CLOSED),this.emitAndLog(T.TOPOLOGY_CLOSED,new f.TopologyClosedEvent(this.s.id))}}async selectServer(e,t){let n;if("function"!=typeof e)if("string"==typeof e)n=(0,E.readPreferenceServerSelector)(u.ReadPreference.fromString(e));else{let r;e instanceof u.ReadPreference?r=e:(u.ReadPreference.translate(t),r=t.readPreference||u.ReadPreference.primary),n=(0,E.readPreferenceServerSelector)(r)}else n=e;t={serverSelectionTimeoutMS:this.s.serverSelectionTimeoutMS,...t},this.client.mongoLogger?.willLog(s.MongoLoggableComponent.SERVER_SELECTION,s.SeverityLevel.DEBUG)&&this.client.mongoLogger?.debug(s.MongoLoggableComponent.SERVER_SELECTION,new m.ServerSelectionStartedEvent(e,this.description,t.operationName));const r=this.description.type===h.TopologyType.Sharded,o=t.session,a=o&&o.transaction;if(r&&a&&a.server)return this.client.mongoLogger?.willLog(s.MongoLoggableComponent.SERVER_SELECTION,s.SeverityLevel.DEBUG)&&this.client.mongoLogger?.debug(s.MongoLoggableComponent.SERVER_SELECTION,new m.ServerSelectionSucceededEvent(e,this.description,a.server.pool.address,t.operationName)),a.server;const{promise:f,resolve:p,reject:d}=(0,l.promiseWithResolvers)(),_=c.Timeout.expires(t.serverSelectionTimeoutMS??0),g={serverSelector:n,topologyDescription:this.description,mongoLogger:this.client.mongoLogger,transaction:a,resolve:p,reject:d,timeout:_,startTime:(0,l.now)(),operationName:t.operationName,waitingLogged:!1,previousServer:t.previousServer};this[b].push(g),I(this);try{return await Promise.race([f,g.timeout])}catch(n){if(c.TimeoutError.is(n)){g[v]=!0,_.clear();const n=new i.MongoServerSelectionError(`Server selection timed out after ${t.serverSelectionTimeoutMS} ms`,this.description);throw this.client.mongoLogger?.willLog(s.MongoLoggableComponent.SERVER_SELECTION,s.SeverityLevel.DEBUG)&&this.client.mongoLogger?.debug(s.MongoLoggableComponent.SERVER_SELECTION,new m.ServerSelectionFailedEvent(e,this.description,n,t.operationName)),n}throw n}}serverUpdateHandler(e){if(!this.s.description.hasServer(e.address))return;if(function(e,t){const n=e.servers.get(t.address),r=n?.topologyVersion;return(0,d.compareTopologyVersion)(r,t.topologyVersion)>0}(this.s.description,e))return;const t=this.s.description,n=this.s.description.servers.get(e.address);if(!n)return;const r=e.$clusterTime;r&&(0,h._advanceClusterTime)(this,r);const o=n&&n.equals(e);if(this.s.description=this.s.description.update(e),this.s.description.compatibilityError)this.emit(T.ERROR,new i.MongoCompatibilityError(this.s.description.compatibilityError));else{if(!o){const t=this.s.description.servers.get(e.address);t&&this.emit(T.SERVER_DESCRIPTION_CHANGED,new f.ServerDescriptionChangedEvent(this.s.id,e.address,n,t))}R(this,e),this[b].length>0&&I(this),o||this.emitAndLog(T.TOPOLOGY_DESCRIPTION_CHANGED,new f.TopologyDescriptionChangedEvent(this.s.id,t,this.s.description))}}auth(e,t){"function"==typeof e&&(t=e,e=void 0),"function"==typeof t&&t(void 0,!0)}get clientMetadata(){return this.s.options.metadata}isConnected(){return this.s.state===h.STATE_CONNECTED}isDestroyed(){return this.s.state===h.STATE_CLOSED}lastHello(){const e=Array.from(this.description.servers.values());return 0===e.length?{}:e.filter((e=>e.type!==h.ServerType.Unknown))[0]||{maxWireVersion:this.description.commonWireVersion}}get commonWireVersion(){return this.description.commonWireVersion}get logicalSessionTimeoutMinutes(){return this.description.logicalSessionTimeoutMinutes}get clusterTime(){return this.s.clusterTime}set clusterTime(e){this.s.clusterTime=e}}function w(e,t){for(const t of o.LOCAL_SERVER_EVENTS)e.removeAllListeners(t);e.destroy(),t.emitAndLog(T.SERVER_CLOSED,new f.ServerClosedEvent(t.s.id,e.description.address));for(const t of o.SERVER_RELAY_EVENTS)e.removeAllListeners(t)}function O(e,t){e.emitAndLog(T.SERVER_OPENING,new f.ServerOpeningEvent(e.s.id,t.address));const n=new p.Server(e,t,e.s.options);for(const t of o.SERVER_RELAY_EVENTS)n.on(t,(n=>e.emit(t,n)));return n.on(p.Server.DESCRIPTION_RECEIVED,(t=>e.serverUpdateHandler(t))),n.connect(),n}function R(e,t){if(t&&e.s.servers.has(t.address)){const n=e.s.servers.get(t.address);if(n)if(n.s.description=t,t.error instanceof i.MongoError&&t.error.hasErrorLabel(i.MongoErrorLabel.ResetPool)){const e=t.error.hasErrorLabel(i.MongoErrorLabel.InterruptInUseConnections);n.pool.clear({interruptInUseConnections:e})}else if(null==t.error){const r=e.s.description.type;(t.isDataBearing||t.type!==h.ServerType.Unknown&&r===h.TopologyType.Single)&&n.pool.ready()}}for(const t of e.description.servers.values())if(!e.s.servers.has(t.address)){const n=O(e,t);e.s.servers.set(t.address,n)}for(const t of e.s.servers){const n=t[0];if(e.description.hasServer(n))continue;if(!e.s.servers.has(n))continue;const r=e.s.servers.get(n);e.s.servers.delete(n),r&&w(r,e)}}function S(e,t){for(;e.length;){const n=e.shift();n&&(n.timeout.clear(),n[v]||(n.mongoLogger?.willLog(s.MongoLoggableComponent.SERVER_SELECTION,s.SeverityLevel.DEBUG)&&n.mongoLogger?.debug(s.MongoLoggableComponent.SERVER_SELECTION,new m.ServerSelectionFailedEvent(n.serverSelector,n.topologyDescription,t,n.operationName)),n.reject(t)))}}function I(e){if(e.s.state===h.STATE_CLOSED)return void S(e[b],new i.MongoTopologyClosedError);const t=e.description.type===h.TopologyType.Sharded,n=Array.from(e.description.servers.values()),r=e[b].length;for(let o=0;o0)for(const[,t]of e.s.servers)process.nextTick((function(){return t.requestCheck()}))}T.SERVER_OPENING=o.SERVER_OPENING,T.SERVER_CLOSED=o.SERVER_CLOSED,T.SERVER_DESCRIPTION_CHANGED=o.SERVER_DESCRIPTION_CHANGED,T.TOPOLOGY_OPENING=o.TOPOLOGY_OPENING,T.TOPOLOGY_CLOSED=o.TOPOLOGY_CLOSED,T.TOPOLOGY_DESCRIPTION_CHANGED=o.TOPOLOGY_DESCRIPTION_CHANGED,T.ERROR=o.ERROR,T.OPEN=o.OPEN,T.CONNECT=o.CONNECT,T.CLOSE=o.CLOSE,T.TIMEOUT=o.TIMEOUT,t.Topology=T;class N{constructor(e){this.minWireVersion=e.minWireVersion||0,this.maxWireVersion=e.maxWireVersion||0}get hasAggregationCursor(){return this.maxWireVersion>=1}get hasWriteCommands(){return this.maxWireVersion>=2}get hasTextSearch(){return this.minWireVersion>=0}get hasAuthCommands(){return this.maxWireVersion>=1}get hasListCollectionsCommand(){return this.maxWireVersion>=3}get hasListIndexesCommand(){return this.maxWireVersion>=3}get supportsSnapshotReads(){return this.maxWireVersion>=13}get commandsTakeWriteConcern(){return this.maxWireVersion>=5}get commandsTakeCollation(){return this.maxWireVersion>=5}}t.ServerCapabilities=N},42027:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TopologyDescription=void 0;const r=n(63403),o=n(26447),i=n(86947),s=n(52060),a=n(48446),u=n(66029),c=o.MIN_SUPPORTED_SERVER_VERSION,l=o.MAX_SUPPORTED_SERVER_VERSION,h=o.MIN_SUPPORTED_WIRE_VERSION,f=o.MAX_SUPPORTED_WIRE_VERSION,p=new Set([a.ServerType.Mongos,a.ServerType.Unknown]),d=new Set([a.ServerType.Mongos,a.ServerType.Standalone]),E=new Set([a.ServerType.RSSecondary,a.ServerType.RSArbiter,a.ServerType.RSOther]);class m{constructor(e,t=null,n=null,r=null,o=null,i=null,s=null){s=s??{},this.type=e??a.TopologyType.Unknown,this.servers=t??new Map,this.stale=!1,this.compatible=!0,this.heartbeatFrequencyMS=s.heartbeatFrequencyMS??0,this.localThresholdMS=s.localThresholdMS??15,this.setName=n??null,this.maxElectionId=o??null,this.maxSetVersion=r??null,this.commonWireVersion=i??0;for(const e of this.servers.values())if(e.type!==a.ServerType.Unknown&&e.type!==a.ServerType.LoadBalancer&&(e.minWireVersion>f&&(this.compatible=!1,this.compatibilityError=`Server at ${e.address} requires wire version ${e.minWireVersion}, but this version of the driver only supports up to ${f} (MongoDB ${l})`),e.maxWireVersion0)if(0===t)for(const e of o)a.set(e,new u.ServerDescription(e));else if(a.size{e.has(t)||e.set(t,new u.ServerDescription(t))})),t.me&&t.address!==t.me&&e.delete(t.address),[r,n])}(h,e,r);n=t[0],r=t[1]}if(n===a.TopologyType.ReplicaSetWithPrimary)if(d.has(l))h.delete(t),n=g(h);else if(l===a.ServerType.RSPrimary){const t=_(h,e,r,o,s);n=t[0],r=t[1],o=t[2],s=t[3]}else n=E.has(l)?function(e,t,n=null){if(null==n)throw new i.MongoRuntimeError('Argument "setName" is required if connected to a replica set');return(n!==t.setName||t.me&&t.address!==t.me)&&e.delete(t.address),g(e)}(h,e,r):g(h);return new m(n,h,r,o,s,c,{heartbeatFrequencyMS:this.heartbeatFrequencyMS,localThresholdMS:this.localThresholdMS})}get error(){const e=Array.from(this.servers.values()).filter((e=>e.error));return e.length>0?e[0].error:null}get hasKnownServers(){return Array.from(this.servers.values()).some((e=>e.type!==a.ServerType.Unknown))}get hasDataBearingServers(){return Array.from(this.servers.values()).some((e=>e.isDataBearing))}hasServer(e){return this.servers.has(e)}toJSON(){return r.EJSON.serialize(this)}}function _(e,t,n=null,r=null,o=null){if((n=n||t.setName)!==t.setName)return e.delete(t.address),[g(e),n,r,o];if(t.maxWireVersion>=17){const i=(0,s.compareObjectId)(o,t.electionId),a=0===i,c=-1===i,l=(r??-1)<=(t.setVersion??-1);if(!(c||a&&l))return e.set(t.address,new u.ServerDescription(t.address)),[g(e),n,r,o];o=t.electionId,r=t.setVersion}else{const i=t.electionId?t.electionId:null;if(t.setVersion&&i){if(r&&o&&(r>t.setVersion||(0,s.compareObjectId)(o,i)>0))return e.set(t.address,new u.ServerDescription(t.address)),[g(e),n,r,o];o=t.electionId}null!=t.setVersion&&(null==r||t.setVersion>r)&&(r=t.setVersion)}for(const[n,r]of e)if(r.type===a.ServerType.RSPrimary&&r.address!==t.address){e.set(n,new u.ServerDescription(r.address));break}t.allHosts.forEach((t=>{e.has(t)||e.set(t,new u.ServerDescription(t))}));const i=Array.from(e.keys()),c=t.allHosts;return i.filter((e=>-1===c.indexOf(e))).forEach((t=>{e.delete(t)})),[g(e),n,r,o]}function g(e){for(const t of e.values())if(t.type===a.ServerType.RSPrimary)return a.TopologyType.ReplicaSetWithPrimary;return a.TopologyType.ReplicaSetNoPrimary}t.TopologyDescription=m},94452:(e,t,n)=>{"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.updateSessionFromResponse=t.applySession=t.ServerSessionPool=t.ServerSession=t.maybeClearPinnedConnection=t.ClientSession=void 0;const o=n(63403),i=n(86634),s=n(13193),a=n(32568),u=n(86947),c=n(96327),l=n(86437),h=n(37639),f=n(38938),p=n(50773),d=n(48446),E=n(34716),m=n(52060),_=n(98349),g=Symbol("serverSession"),y=Symbol("snapshotTime"),A=Symbol("snapshotEnabled"),v=Symbol("pinnedConnection"),b=Symbol("txnNumberIncrement");class T extends c.TypedEventEmitter{constructor(e,t,n,o){if(super(),this[r]=!1,null==e)throw new u.MongoRuntimeError("ClientSession requires a MongoClient");if(null==t||!(t instanceof B))throw new u.MongoRuntimeError("ClientSession requires a ServerSessionPool");if(!0===(n=n??{}).snapshot&&(this[A]=!0,!0===n.causalConsistency))throw new u.MongoInvalidArgumentError('Properties "causalConsistency" and "snapshot" are mutually exclusive');this.client=e,this.sessionPool=t,this.hasEnded=!1,this.clientOptions=o,this.timeoutMS=n.defaultTimeoutMS??e.options?.timeoutMS,this.explicit=!!n.explicit,this[g]=this.explicit?this.sessionPool.acquire():null,this[b]=0;const i=this.explicit&&!0!==n.snapshot;this.supports={causalConsistency:n.causalConsistency??i},this.clusterTime=n.initialClusterTime,this.operationTime=void 0,this.owner=n.owner,this.defaultTransactionOptions={...n.defaultTransactionOptions},this.transaction=new E.Transaction}get id(){return this[g]?.id}get serverSession(){let e=this[g];if(null==e){if(this.explicit)throw new u.MongoRuntimeError("Unexpected null serverSession for an explicit session");if(this.hasEnded)throw new u.MongoRuntimeError("Unexpected null serverSession for an ended implicit session");e=this.sessionPool.acquire(),this[g]=e}return e}get snapshotEnabled(){return this[A]}get loadBalanced(){return this.client.topology?.description.type===d.TopologyType.LoadBalanced}get pinnedConnection(){return this[v]}pin(e){if(this[v])throw TypeError("Cannot pin multiple connections to the same session");this[v]=e,e.emit(a.PINNED,this.inTransaction()?i.ConnectionPoolMetrics.TXN:i.ConnectionPoolMetrics.CURSOR)}unpin(e){if(this.loadBalanced)return S(this,e);this.transaction.unpinServer()}get isPinned(){return this.loadBalanced?!!this[v]:this.transaction.isPinned}async endSession(e){try{if(this.inTransaction()&&await this.abortTransaction(),!this.hasEnded){const e=this[g];null!=e&&(this.sessionPool.release(e),Object.defineProperty(this,g,{value:x.clone(e),writable:!1})),this.hasEnded=!0,this.emit("ended",this)}}catch(e){(0,m.squashError)(e)}finally{S(this,{force:!0,...e})}}advanceOperationTime(e){null!=this.operationTime?e.greaterThan(this.operationTime)&&(this.operationTime=e):this.operationTime=e}advanceClusterTime(e){if(!e||"object"!=typeof e)throw new u.MongoInvalidArgumentError("input cluster time must be an object");if(!e.clusterTime||"Timestamp"!==e.clusterTime._bsontype)throw new u.MongoInvalidArgumentError('input cluster time "clusterTime" property must be a valid BSON Timestamp');if(!e.signature||"Binary"!==e.signature.hash?._bsontype||"bigint"!=typeof e.signature.keyId&&"number"!=typeof e.signature.keyId&&"Long"!==e.signature.keyId?._bsontype)throw new u.MongoInvalidArgumentError('input cluster time must have a valid "signature" property with BSON Binary hash and BSON Long keyId');(0,d._advanceClusterTime)(this,e)}equals(e){return e instanceof T&&null!=this.id&&null!=e.id&&m.ByteUtils.equals(this.id.id.buffer,e.id.id.buffer)}incrementTransactionNumber(){this[b]+=1}inTransaction(){return this.transaction.isActive}startTransaction(e){if(this[A])throw new u.MongoCompatibilityError("Transactions are not supported in snapshot sessions");if(this.inTransaction())throw new u.MongoTransactionError("Transaction already in progress");this.isPinned&&this.transaction.isCommitted&&this.unpin();const t=(0,m.maxWireVersion)(this.client.topology);if((0,s.isSharded)(this.client.topology)&&null!=t&&t<8)throw new u.MongoCompatibilityError("Transactions are not supported on sharded clusters in MongoDB < 4.2.");this.incrementTransactionNumber(),this.transaction=new E.Transaction({readConcern:e?.readConcern??this.defaultTransactionOptions.readConcern??this.clientOptions?.readConcern,writeConcern:e?.writeConcern??this.defaultTransactionOptions.writeConcern??this.clientOptions?.writeConcern,readPreference:e?.readPreference??this.defaultTransactionOptions.readPreference??this.clientOptions?.readPreference,maxCommitTimeMS:e?.maxCommitTimeMS??this.defaultTransactionOptions.maxCommitTimeMS}),this.transaction.transition(E.TxnState.STARTING_TRANSACTION)}async commitTransaction(){return await L(this,"commitTransaction")}async abortTransaction(){return await L(this,"abortTransaction")}toBSON(){throw new u.MongoRuntimeError("ClientSession cannot be serialized to BSON.")}async withTransaction(e,t){const n=(0,m.now)();return await D(this,n,e,t)}}t.ClientSession=T,r=A;const w=12e4,O=new Set(["CannotSatisfyWriteConcern","UnknownReplWriteConcern","UnsatisfiableWriteConcern"]);function R(e,t){return(0,m.calculateDurationInMs)(e)e-1}static clone(e){const t=new ArrayBuffer(16),n=Buffer.from(t);n.set(e.id.id.buffer);const r=new o.Binary(n,e.id.id.sub_type);return Object.setPrototypeOf({id:{id:r},lastUse:e.lastUse,txnNumber:e.txnNumber,isDirty:e.isDirty},x.prototype)}}t.ServerSession=x;class B{constructor(e){if(null==e)throw new u.MongoRuntimeError("ServerSessionPool requires a MongoClient");this.client=e,this.sessions=new m.List}acquire(){const e=this.client.topology?.logicalSessionTimeoutMinutes??10;let t=null;for(;this.sessions.length>0;){const n=this.sessions.shift();if(null!=n&&(this.client.topology?.loadBalanced||!n.hasTimedOut(e))){t=n;break}}return null==t&&(t=new x),t}release(e){const t=this.client.topology?.logicalSessionTimeoutMinutes??10;if(this.client.topology?.loadBalanced&&!t&&this.sessions.unshift(e),t&&(this.sessions.prune((e=>e.hasTimedOut(t))),!e.hasTimedOut(t))){if(e.isDirty)return;this.sessions.unshift(e)}}}t.ServerSessionPool=B,t.applySession=function(e,t,n){if(e.hasEnded)return new u.MongoExpiredSessionError;const r=e.serverSession;if(null==r)return new u.MongoRuntimeError("Unable to acquire server session");if(0===n.writeConcern?.w)return e&&e.explicit?new u.MongoAPIError("Cannot have explicit session with unacknowledged writes"):void 0;r.lastUse=(0,m.now)(),t.lsid=r.id;const i=e.inTransaction()||(0,E.isTransactionCommand)(t);if((!!n.willRetryWrite||i)&&(r.txnNumber+=e[b],e[b]=0,t.txnNumber=o.Long.fromNumber(r.txnNumber)),!i)return e.transaction.state!==E.TxnState.NO_TRANSACTION&&e.transaction.transition(E.TxnState.NO_TRANSACTION),void(e.supports.causalConsistency&&e.operationTime&&(0,m.commandSupportsReadConcern)(t)?(t.readConcern=t.readConcern||{},Object.assign(t.readConcern,{afterClusterTime:e.operationTime})):e[A]&&(t.readConcern=t.readConcern||{level:f.ReadConcernLevel.snapshot},null!=e[y]&&Object.assign(t.readConcern,{atClusterTime:e[y]})));if(t.autocommit=!1,e.transaction.state===E.TxnState.STARTING_TRANSACTION){e.transaction.transition(E.TxnState.TRANSACTION_IN_PROGRESS),t.startTransaction=!0;const n=e.transaction.options.readConcern||e?.clientOptions?.readConcern;n&&(t.readConcern=n),e.supports.causalConsistency&&e.operationTime&&(t.readConcern=t.readConcern||{},Object.assign(t.readConcern,{afterClusterTime:e.operationTime}))}},t.updateSessionFromResponse=function(e,t){if(t.$clusterTime&&(0,d._advanceClusterTime)(e,t.$clusterTime),t.operationTime&&e&&e.supports.causalConsistency&&e.advanceOperationTime(t.operationTime),t.recoveryToken&&e&&e.inTransaction()&&(e.transaction._recoveryToken=t.recoveryToken),e?.[A]&&null==e[y]){const n=t.atClusterTime;n&&(e[y]=n)}}},47781:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.formatSort=void 0;const r=n(86947);function o(e=1){const t=`${e}`.toLowerCase();if("object"==typeof(n=e)&&null!=n&&"$meta"in n&&"string"==typeof n.$meta)return e;var n;switch(t){case"ascending":case"asc":case"1":return 1;case"descending":case"desc":case"-1":return-1;default:throw new r.MongoInvalidArgumentError(`Invalid sort direction: ${JSON.stringify(e)}`)}}t.formatSort=function(e,t){if(null!=e){if("string"==typeof e)return new Map([[e,o(t)]]);if("object"!=typeof e)throw new r.MongoInvalidArgumentError(`Invalid sort format: ${JSON.stringify(e)} Sort must be a valid object`);if(!Array.isArray(e))return(n=e)instanceof Map&&n.size>0?function(e){const t=Array.from(e).map((([e,t])=>[`${e}`,o(t)]));return new Map(t)}(e):Object.keys(e).length?function(e){const t=Object.entries(e).map((([e,t])=>[`${e}`,o(t)]));return new Map(t)}(e):void 0;var n,i;if(e.length)return function(e){return Array.isArray(e)&&Array.isArray(e[0])}(e)?function(e){const t=e.map((([e,t])=>[`${e}`,o(t)]));return new Map(t)}(e):function(e){if(Array.isArray(e)&&2===e.length)try{return o(e[1]),!0}catch(e){return!1}return!1}(e)?(i=e,new Map([[`${i[0]}`,o([i[1]])]])):function(e){const t=e.map((e=>[`${e}`,1]));return new Map(t)}(e)}}},38286:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Timeout=t.TimeoutError=void 0;const r=n(53557),o=n(86947),i=n(52060);class s extends Error{get name(){return"TimeoutError"}constructor(e,t){super(e,t)}static is(e){return null!=e&&"object"==typeof e&&"name"in e&&"TimeoutError"===e.name}}t.TimeoutError=s;class a extends Promise{get[Symbol.toStringTag](){return"MongoDBTimeout"}constructor(e=(()=>null),t,n=!1){let a;if(t<0)throw new o.MongoInvalidArgumentError("Cannot create a Timeout with a negative duration");super(((t,n)=>{a=n,e(i.noop,n)})),this.ended=null,this.timedOut=!1,this.duration=t,this.start=Math.trunc(performance.now()),this.duration>0&&(this.id=(0,r.setTimeout)((()=>{this.ended=Math.trunc(performance.now()),this.timedOut=!0,a(new s(`Expired after ${t}ms`))}),this.duration),"function"==typeof this.id.unref&&n&&this.id.unref())}clear(){(0,r.clearTimeout)(this.id),this.id=void 0}static expires(e,t){return new a(void 0,e,t)}static is(e){return"object"==typeof e&&null!=e&&Symbol.toStringTag in e&&"MongoDBTimeout"===e[Symbol.toStringTag]&&"then"in e&&"function"==typeof e.then}}t.Timeout=a},34716:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isTransactionCommand=t.Transaction=t.TxnState=void 0;const r=n(86947),o=n(38938),i=n(50773),s=n(98349);t.TxnState=Object.freeze({NO_TRANSACTION:"NO_TRANSACTION",STARTING_TRANSACTION:"STARTING_TRANSACTION",TRANSACTION_IN_PROGRESS:"TRANSACTION_IN_PROGRESS",TRANSACTION_COMMITTED:"TRANSACTION_COMMITTED",TRANSACTION_COMMITTED_EMPTY:"TRANSACTION_COMMITTED_EMPTY",TRANSACTION_ABORTED:"TRANSACTION_ABORTED"});const a={[t.TxnState.NO_TRANSACTION]:[t.TxnState.NO_TRANSACTION,t.TxnState.STARTING_TRANSACTION],[t.TxnState.STARTING_TRANSACTION]:[t.TxnState.TRANSACTION_IN_PROGRESS,t.TxnState.TRANSACTION_COMMITTED,t.TxnState.TRANSACTION_COMMITTED_EMPTY,t.TxnState.TRANSACTION_ABORTED],[t.TxnState.TRANSACTION_IN_PROGRESS]:[t.TxnState.TRANSACTION_IN_PROGRESS,t.TxnState.TRANSACTION_COMMITTED,t.TxnState.TRANSACTION_ABORTED],[t.TxnState.TRANSACTION_COMMITTED]:[t.TxnState.TRANSACTION_COMMITTED,t.TxnState.TRANSACTION_COMMITTED_EMPTY,t.TxnState.STARTING_TRANSACTION,t.TxnState.NO_TRANSACTION],[t.TxnState.TRANSACTION_ABORTED]:[t.TxnState.STARTING_TRANSACTION,t.TxnState.NO_TRANSACTION],[t.TxnState.TRANSACTION_COMMITTED_EMPTY]:[t.TxnState.TRANSACTION_COMMITTED_EMPTY,t.TxnState.NO_TRANSACTION]},u=new Set([t.TxnState.STARTING_TRANSACTION,t.TxnState.TRANSACTION_IN_PROGRESS]),c=new Set([t.TxnState.TRANSACTION_COMMITTED,t.TxnState.TRANSACTION_COMMITTED_EMPTY,t.TxnState.TRANSACTION_ABORTED]);t.Transaction=class{constructor(e){e=e??{},this.state=t.TxnState.NO_TRANSACTION,this.options={};const n=s.WriteConcern.fromOptions(e);if(n){if(0===n.w)throw new r.MongoTransactionError("Transactions do not support unacknowledged write concern");this.options.writeConcern=n}e.readConcern&&(this.options.readConcern=o.ReadConcern.fromOptions(e)),e.readPreference&&(this.options.readPreference=i.ReadPreference.fromOptions(e)),e.maxCommitTimeMS&&(this.options.maxTimeMS=e.maxCommitTimeMS),this._pinnedServer=void 0,this._recoveryToken=void 0}get server(){return this._pinnedServer}get recoveryToken(){return this._recoveryToken}get isPinned(){return!!this.server}get isStarting(){return this.state===t.TxnState.STARTING_TRANSACTION}get isActive(){return u.has(this.state)}get isCommitted(){return c.has(this.state)}transition(e){const n=a[this.state];if(n&&n.includes(e))return this.state=e,void(this.state!==t.TxnState.NO_TRANSACTION&&this.state!==t.TxnState.STARTING_TRANSACTION&&this.state!==t.TxnState.TRANSACTION_ABORTED||this.unpinServer());throw new r.MongoRuntimeError(`Attempted illegal state transition from [${this.state}] to [${e}]`)}pinServer(e){this.isActive&&(this._pinnedServer=e)}unpinServer(){this._pinnedServer=void 0}},t.isTransactionCommand=function(e){return!(!e.commitTransaction&&!e.abortTransaction)}},52060:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.COSMOS_DB_CHECK=t.DOCUMENT_DB_CHECK=t.request=t.get=t.matchesParentDomain=t.parseUnsignedInteger=t.parseInteger=t.compareObjectId=t.commandSupportsReadConcern=t.shuffle=t.supportsRetryableWrites=t.enumToString=t.emitWarningOnce=t.emitWarning=t.MONGODB_WARNING_CODE=t.DEFAULT_PK_FACTORY=t.HostAddress=t.BufferPool=t.List=t.deepCopy=t.isRecord=t.setDifference=t.isHello=t.isSuperset=t.resolveOptions=t.hasAtomicOperators=t.calculateDurationInMs=t.now=t.makeStateMachine=t.errorStrictEqual=t.arrayStrictEqual=t.maxWireVersion=t.uuidV4=t.makeCounter=t.MongoDBCollectionNamespace=t.MongoDBNamespace=t.ns=t.getTopology=t.decorateWithExplain=t.decorateWithReadConcern=t.decorateWithCollation=t.isPromiseLike=t.applyRetryableWrites=t.filterOptions=t.mergeOptions=t.isObject=t.normalizeHintField=t.hostMatchesWildcards=t.isUint8Array=t.ByteUtils=void 0,t.noop=t.fileIsAccessible=t.maybeAddIdToDocuments=t.once=t.randomBytes=t.squashError=t.promiseWithResolvers=t.isHostMatch=t.COSMOS_DB_MSG=t.DOCUMENT_DB_MSG=void 0;const r=n(76982),o=n(79896),i=n(58611),s=n(53557),a=n(87016),u=n(87016),c=n(39023),l=n(63403),h=n(26447),f=n(32568),p=n(86947),d=n(38938),E=n(50773),m=n(48446),_=n(98349);t.ByteUtils={toLocalBufferType:e=>Buffer.isBuffer(e)?e:Buffer.from(e.buffer,e.byteOffset,e.byteLength),equals:(e,n)=>t.ByteUtils.toLocalBufferType(e).equals(n),compare:(e,n)=>t.ByteUtils.toLocalBufferType(e).compare(n),toBase64:e=>t.ByteUtils.toLocalBufferType(e).toString("base64")},t.isUint8Array=function(e){return null!=e&&"object"==typeof e&&Symbol.toStringTag in e&&"Uint8Array"===e[Symbol.toStringTag]},t.hostMatchesWildcards=function(e,t){for(const n of t)if(e===n||n.startsWith("*.")&&e?.endsWith(n.substring(2,n.length))||n.startsWith("*/")&&e?.endsWith(n.substring(2,n.length)))return!0;return!1},t.normalizeHintField=function(e){let t;if("string"==typeof e)t=e;else if(Array.isArray(e))t={},e.forEach((e=>{t[e]=1}));else if(null!=e&&"object"==typeof e){t={};for(const n in e)t[n]=e[n]}return t};const g=e=>Object.prototype.toString.call(e);function y(e){return"[object Object]"===g(e)}function A(e){if("topology"in e&&e.topology)return e.topology;if("client"in e&&e.client.topology)return e.client.topology;throw new p.MongoNotConnectedError("MongoClient must be connected to perform this operation")}t.isObject=y,t.mergeOptions=function(e,t){return{...e,...t}},t.filterOptions=function(e,t){const n={};for(const r in e)t.includes(r)&&(n[r]=e[r]);return n},t.applyRetryableWrites=function(e,t){return t&&t.s.options?.retryWrites&&(e.retryWrites=!0),e},t.isPromiseLike=function(e){return null!=e&&"object"==typeof e&&"then"in e&&"function"==typeof e.then},t.decorateWithCollation=function(e,t,n){const r=A(t).capabilities;if(n.collation&&"object"==typeof n.collation){if(!r||!r.commandsTakeCollation)throw new p.MongoCompatibilityError("Current topology does not support collation");e.collation=n.collation}},t.decorateWithReadConcern=function(e,t,n){if(n&&n.session&&n.session.inTransaction())return;const r=Object.assign({},e.readConcern||{});t.s.readConcern&&Object.assign(r,t.s.readConcern),Object.keys(r).length>0&&Object.assign(e,{readConcern:r})},t.decorateWithExplain=function(e,t){return e.explain?e:{explain:e,verbosity:t.verbosity}},t.getTopology=A,t.ns=function(e){return v.fromString(e)};class v{constructor(e,t){this.db=e,this.collection=t,this.collection=""===t?void 0:t}toString(){return this.collection?`${this.db}.${this.collection}`:this.db}withCollection(e){return new b(this.db,e)}static fromString(e){if("string"!=typeof e||""===e)throw new p.MongoRuntimeError(`Cannot parse namespace from "${e}"`);const[t,...n]=e.split("."),r=n.join(".");return new v(t,""===r?void 0:r)}}t.MongoDBNamespace=v;class b extends v{constructor(e,t){super(e,t),this.collection=t}static fromString(e){return super.fromString(e)}}function T(){const e=process.hrtime();return Math.floor(1e3*e[0]+e[1]/1e6)}function w(e,t){e=Array.isArray(e)?new Set(e):e,t=Array.isArray(t)?new Set(t):t;for(const n of t)if(!e.has(n))return!1;return!0}t.MongoDBCollectionNamespace=b,t.makeCounter=function*(e=0){let t=e;for(;;){const e=t;t+=1,yield e}},t.uuidV4=function(){const e=r.randomBytes(16);return e[6]=15&e[6]|64,e[8]=63&e[8]|128,e},t.maxWireVersion=function(e){if(e){if(e.loadBalanced||e.serverApi?.version)return h.MAX_SUPPORTED_WIRE_VERSION;if(e.hello)return e.hello.maxWireVersion;if("lastHello"in e&&"function"==typeof e.lastHello){const t=e.lastHello();if(t)return t.maxWireVersion}if(e.description&&"maxWireVersion"in e.description&&null!=e.description.maxWireVersion)return e.description.maxWireVersion}return 0},t.arrayStrictEqual=function(e,t){return!(!Array.isArray(e)||!Array.isArray(t))&&e.length===t.length&&e.every(((e,n)=>e===t[n]))},t.errorStrictEqual=function(e,t){return e===t||(e&&t?!(null==e&&null!=t||null!=e&&null==t)&&e.constructor.name===t.constructor.name&&e.message===t.message:e===t)},t.makeStateMachine=function(e){return function(t,n){const r=e[t.s.state];if(r&&r.indexOf(n)<0)throw new p.MongoRuntimeError(`illegal state transition from [${t.s.state}] => [${n}], allowed: [${r}]`);t.emit("stateChanged",t.s.state,n),t.s.state=n}},t.now=T,t.calculateDurationInMs=function(e){if("number"!=typeof e)return-1;const t=T()-e;return t<0?0:t},t.hasAtomicOperators=function e(t){if(Array.isArray(t)){for(const n of t)if(e(n))return!0;return!1}const n=Object.keys(t);return n.length>0&&"$"===n[0][0]},t.resolveOptions=function(e,t){const n=Object.assign({},t,(0,l.resolveBSONOptions)(t,e)),r=t?.session;if(!r?.inTransaction()){const r=d.ReadConcern.fromOptions(t)??e?.readConcern;r&&(n.readConcern=r);const o=_.WriteConcern.fromOptions(t)??e?.writeConcern;o&&(n.writeConcern=o)}const o=E.ReadPreference.fromOptions(t)??e?.readPreference;return o&&(n.readPreference=o),n},t.isSuperset=w,t.isHello=function(e){return!(!e[f.LEGACY_HELLO_COMMAND]&&!e.hello)},t.setDifference=function(e,t){const n=new Set(e);for(const e of t)n.delete(e);return n};function O(e,t=void 0){if(!y(e))return!1;const n=e.constructor;if(n&&n.prototype){if(!y(n.prototype))return!1;if(r=n.prototype,o="isPrototypeOf",!Object.prototype.hasOwnProperty.call(r,o))return!1}var r,o;return!t||w(Object.keys(e),t)}t.isRecord=O,t.deepCopy=function e(t){if(null==t)return t;if(Array.isArray(t))return t.map((t=>e(t)));if(O(t)){const n={};for(const r in t)n[r]=e(t[r]);return n}const n=t.constructor;if(n)switch(n.name.toLowerCase()){case"date":return new n(Number(t));case"map":return new Map(t);case"set":return new Set(t);case"buffer":return Buffer.from(t)}return t};class R{get length(){return this.count}get[Symbol.toStringTag](){return"List"}constructor(){this.count=0,this.head={next:null,prev:null,value:null},this.head.next=this.head,this.head.prev=this.head}toArray(){return Array.from(this)}toString(){return`head <=> ${this.toArray().join(" <=> ")} <=> head`}*[Symbol.iterator](){for(const e of this.nodes())yield e.value}*nodes(){let e=this.head.next;for(;e!==this.head;){const{next:t}=e;yield e,e=t}}push(e){this.count+=1;const t={next:this.head,prev:this.head.prev,value:e};this.head.prev.next=t,this.head.prev=t}pushMany(e){for(const t of e)this.push(t)}unshift(e){this.count+=1;const t={next:this.head.next,prev:this.head,value:e};this.head.next.prev=t,this.head.next=t}remove(e){if(e===this.head||0===this.length)return null;this.count-=1;const t=e.prev,n=e.next;return t.next=n,n.prev=t,e.value}shift(){return this.remove(this.head.next)}pop(){return this.remove(this.head.prev)}prune(e){for(const t of this.nodes())e(t.value)&&this.remove(t)}clear(){this.count=0,this.head.next=this.head,this.head.prev=this.head}first(){return this.head.next.value}last(){return this.head.prev.value}}t.List=R,t.BufferPool=class{constructor(){this.buffers=new R,this.totalByteLength=0}get length(){return this.totalByteLength}append(e){this.buffers.push(e),this.totalByteLength+=e.length}getInt32(){if(this.totalByteLength<4)return null;const e=this.buffers.first();if(null!=e&&e.byteLength>=4)return e.readInt32LE(0);const t=this.read(4),n=t.readInt32LE(0);return this.totalByteLength+=4,this.buffers.unshift(t),n}read(e){if("number"!=typeof e||e<0)throw new p.MongoInvalidArgumentError('Argument "size" must be a non-negative number');if(e>this.totalByteLength)return Buffer.alloc(0);const t=Buffer.allocUnsafe(e);for(let n=0;nnew l.ObjectId},t.MONGODB_WARNING_CODE="MONGODB DRIVER",t.emitWarning=I;const N=new Set;function C(e){if("number"==typeof e)return Math.trunc(e);const t=Number.parseInt(String(e),10);return Number.isNaN(t)?null:t}function D(){let e,t;return{promise:new Promise((function(n,r){e=n,t=r})),resolve:e,reject:t}}t.emitWarningOnce=function(e){if(!N.has(e))return N.add(e),I(e)},t.enumToString=function(e){return Object.values(e).join(", ")},t.supportsRetryableWrites=function(e){return!!e&&(!!e.loadBalanced||null!=e.description.logicalSessionTimeoutMinutes&&e.description.type!==m.ServerType.Standalone)},t.shuffle=function(e,t=0){const n=Array.from(e);if(t>n.length)throw new p.MongoRuntimeError("Limit must be less than the number of items");let r=n.length;const o=t%n.length==0?1:n.length-t;for(;r>o;){const e=Math.floor(Math.random()*r);r-=1;const t=n[r];n[r]=n[e],n[e]=t}return t%n.length==0?n:n.slice(o)},t.commandSupportsReadConcern=function(e){return!!(e.aggregate||e.count||e.distinct||e.find||e.geoNear)},t.compareObjectId=function(e,n){return null==e&&null==n?0:null==e?-1:null==n?1:t.ByteUtils.compare(e.id,n.id)},t.parseInteger=C,t.parseUnsignedInteger=function(e){const t=C(e);return null!=t&&t>=0?t:null},t.matchesParentDomain=function(e,t){const n=e.endsWith(".")?e.slice(0,e.length-1):e,r=t.endsWith(".")?t.slice(0,t.length-1):t,o=/^.*?\./,i=`.${n.replace(o,"")}`,s=`.${r.replace(o,"")}`;return i.endsWith(s)},t.get=function(e,t={}){return new Promise(((n,r)=>{let o;const a=i.get(e,t,(e=>{e.setEncoding("utf8");let t="";e.on("data",(e=>t+=e)),e.on("end",(()=>{(0,s.clearTimeout)(o),n({status:e.statusCode,body:t})}))})).on("error",(e=>{(0,s.clearTimeout)(o),r(e)})).end();o=(0,s.setTimeout)((()=>{a.destroy(new p.MongoNetworkTimeoutError("request timed out after 10 seconds"))}),1e4)}))},t.request=async function(e,t={}){return await new Promise(((n,r)=>{const o={method:"GET",timeout:1e4,json:!0,...a.parse(e),...t},s=i.request(o,(e=>{e.setEncoding("utf8");let o="";e.on("data",(e=>{o+=e})),e.once("end",(()=>{if(!1!==t.json)try{const e=JSON.parse(o);n(e)}catch{r(new p.MongoRuntimeError(`Invalid JSON response: "${o}"`))}else n(o)}))}));s.once("timeout",(()=>s.destroy(new p.MongoNetworkTimeoutError(`Network request to ${e} timed out after ${t.timeout} ms`)))),s.once("error",(e=>r(e))),s.end()}))},t.DOCUMENT_DB_CHECK=/(\.docdb\.amazonaws\.com$)|(\.docdb-elastic\.amazonaws\.com$)/,t.COSMOS_DB_CHECK=/\.cosmos\.azure\.com$/,t.DOCUMENT_DB_MSG="You appear to be connected to a DocumentDB cluster. For more information regarding feature compatibility and support please visit https://www.mongodb.com/supportability/documentdb",t.COSMOS_DB_MSG="You appear to be connected to a CosmosDB cluster. For more information regarding feature compatibility and support please visit https://www.mongodb.com/supportability/cosmosdb",t.isHostMatch=function(e,t){return!(!t||!e.test(t.toLowerCase()))},t.promiseWithResolvers=D,t.squashError=function(e){},t.randomBytes=(0,c.promisify)(r.randomBytes),t.once=async function(e,t){const{promise:n,resolve:r,reject:o}=D(),i=e=>r(e),s=e=>o(e);e.once(t,i).once("error",s);try{const t=await n;return e.off("error",s),t}catch(n){throw e.off(t,i),n}},t.maybeAddIdToDocuments=function(e,t,n){if(!0===("boolean"==typeof n.forceServerObjectId?n.forceServerObjectId:e.s.db.options?.forceServerObjectId))return t;const r=t=>(null==t._id&&(t._id=e.s.pkFactory.createPk()),t);return Array.isArray(t)?t.map(r):r(t)},t.fileIsAccessible=async function(e,t){try{return await o.promises.access(e,t),!0}catch{return!1}},t.noop=function(){}},98349:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.WriteConcern=t.WRITE_CONCERN_KEYS=void 0,t.WRITE_CONCERN_KEYS=["w","wtimeout","j","journal","fsync"];class n{constructor(e,t,n,r){null!=e&&(Number.isNaN(Number(e))?this.w=e:this.w=Number(e)),null!=t&&(this.wtimeoutMS=this.wtimeout=t),null!=n&&(this.journal=this.j=n),null!=r&&(this.journal=this.j=!!r)}static apply(e,t){const n={};return null!=t.w&&(n.w=t.w),null!=t.wtimeoutMS&&(n.wtimeout=t.wtimeoutMS),null!=t.journal&&(n.j=t.j),e.writeConcern=n,e}static fromOptions(e,t){if(null==e)return;let r;t=t??{},r="string"==typeof e||"number"==typeof e?{w:e}:e instanceof n?e:e.writeConcern;const o=t instanceof n?t:t.writeConcern,{w:i,wtimeout:s,j:a,fsync:u,journal:c,wtimeoutMS:l}={...o,...r};return null!=i||null!=s||null!=l||null!=a||null!=c||null!=u?new n(i,s??l,a??c,u):void 0}}t.WriteConcern=n},6585:e=>{var t=1e3,n=60*t,r=60*n,o=24*r,i=7*o;function s(e,t,n,r){var o=t>=1.5*n;return Math.round(e/n)+" "+r+(o?"s":"")}e.exports=function(e,a){a=a||{};var u,c,l=typeof e;if("string"===l&&e.length>0)return function(e){if(!((e=String(e)).length>100)){var s=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(s){var a=parseFloat(s[1]);switch((s[2]||"ms").toLowerCase()){case"years":case"year":case"yrs":case"yr":case"y":return 315576e5*a;case"weeks":case"week":case"w":return a*i;case"days":case"day":case"d":return a*o;case"hours":case"hour":case"hrs":case"hr":case"h":return a*r;case"minutes":case"minute":case"mins":case"min":case"m":return a*n;case"seconds":case"second":case"secs":case"sec":case"s":return a*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return a;default:return}}}}(e);if("number"===l&&isFinite(e))return a.long?(u=e,(c=Math.abs(u))>=o?s(u,c,o,"day"):c>=r?s(u,c,r,"hour"):c>=n?s(u,c,n,"minute"):c>=t?s(u,c,t,"second"):u+" ms"):function(e){var i=Math.abs(e);return i>=o?Math.round(e/o)+"d":i>=r?Math.round(e/r)+"h":i>=n?Math.round(e/n)+"m":i>=t?Math.round(e/t)+"s":e+"ms"}(e);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))}},86087:(e,t,n)=>{e.exports=n(74361)},27628:(e,t,n)=>{"use strict";const{EventEmitter:r}=n(24434),o=n(45753)("mssql:base"),{parseSqlConnectionString:i}=n(14578),s=n(75972),{IDS:a}=n(4546),u=n(36255),c=n(8482),l=n(53885),{MSSQLError:h}=n(59310);e.exports=class extends r{constructor(e,t){if(super(),a.add(this,"ConnectionPool"),o("pool(%d): created",a.get(this)),this._connectStack=[],this._closeStack=[],this._connected=!1,this._connecting=!1,this._healthy=!1,"string"==typeof e)try{this.config=this.constructor.parseConnectionString(e)}catch(e){if("function"==typeof t)return setImmediate(t,e);throw e}else this.config=l(e);this.config.port=this.config.port||1433,this.config.options=this.config.options||{},this.config.stream=this.config.stream||!1,this.config.parseJSON=this.config.parseJSON||!1,this.config.arrayRowMode=this.config.arrayRowMode||!1,this.config.validateConnection=!("validateConnection"in this.config)||this.config.validateConnection;const n=/^(.*)\\(.*)$/.exec(this.config.server);if(n&&(this.config.server=n[1],this.config.options.instanceName=n[2]),void 0!==this.config.options.useColumnNames&&!0!==this.config.options.useColumnNames){const e=new h("Invalid options `useColumnNames`, use `arrayRowMode` instead");if("function"==typeof t)return setImmediate(t,e);throw e}"function"==typeof t&&this.connect(t)}get connected(){return this._connected}get connecting(){return this._connecting}get healthy(){return this._healthy}static parseConnectionString(e){return this._parseConnectionString(e)}static _parseAuthenticationType(e,t){switch(e.toLowerCase()){case"active directory integrated":return t.includes("token")?"azure-active-directory-access-token":["client id","client secret","tenant id"].every((e=>t.includes(e)))?"azure-active-directory-service-principal-secret":["client id","msi endpoint","msi secret"].every((e=>t.includes(e)))?"azure-active-directory-msi-app-service":["client id","msi endpoint"].every((e=>t.includes(e)))?"azure-active-directory-msi-vm":"azure-active-directory-default";case"active directory password":return"azure-active-directory-password";case"ntlm":return"ntlm";default:return"default"}}static _parseConnectionString(e){const t=i(e,!0,!0);return Object.entries(t).reduce(((e,[n,r])=>{switch(n){case"application name":case"asynchronous processing":case"attachdbfilename":case"column encryption setting":case"connection lifetime":case"connectretrycount":case"context connection":case"enlist":case"failover partner":case"integrated security":case"multipleactiveresultsets":case"network library":case"persist security info":case"poolblockingperiod":case"pooling":case"replication":case"transparentnetworkipresolution":case"type system version":case"user instance":break;case"applicationintent":Object.assign(e.options,{readOnlyIntent:"readonly"===r});break;case"authentication":Object.assign(e,{authentication_type:this._parseAuthenticationType(r,Object.keys(t))});break;case"connection timeout":Object.assign(e,{connectionTimeout:1e3*r});break;case"connectretryinterval":Object.assign(e.options,{connectionRetryInterval:1e3*r});break;case"client id":Object.assign(e,{clientId:r});break;case"client secret":Object.assign(e,{clientSecret:r});break;case"current language":Object.assign(e.options,{language:r});break;case"data source":{let t,n=r,o=1433;if(/^np:/i.test(n))throw new Error("Connection via Named Pipes is not supported.");/^tcp:/i.test(n)&&(n=n.substr(4));const i=/^(.*)\\(.*)$/.exec(n);i&&(n=i[1].trim(),t=i[2].trim());const s=/^(.*),(.*)$/.exec(n);if(s)n=s[1].trim(),o=parseInt(s[2].trim(),10);else{const e=/^(.*),(.*)$/.exec(t);e&&(t=e[1].trim(),o=parseInt(e[2].trim(),10))}"."!==n&&"(.)"!==n&&"(localdb)"!==n.toLowerCase()&&"(local)"!==n.toLowerCase()||(n="localhost"),Object.assign(e,{port:o,server:n}),t&&Object.assign(e.options,{instanceName:t});break}case"encrypt":Object.assign(e.options,{encrypt:!!r});break;case"initial catalog":Object.assign(e,{database:r});break;case"max pool size":Object.assign(e.pool,{max:r});break;case"min pool size":Object.assign(e.pool,{min:r});break;case"msi endpoint":Object.assign(e,{msiEndpoint:r});break;case"msi secret":Object.assign(e,{msiSecret:r});break;case"multisubnetfailover":Object.assign(e.options,{multiSubnetFailover:r});break;case"packet size":Object.assign(e.options,{packetSize:r});break;case"password":Object.assign(e,{password:r});break;case"tenant id":Object.assign(e,{tenantId:r});break;case"token":Object.assign(e,{token:r});break;case"transaction binding":Object.assign(e.options,{enableImplicitTransactions:"implicit unbind"===r.toLowerCase()});break;case"trustservercertificate":Object.assign(e.options,{trustServerCertificate:r});break;case"user id":{let t,n=r;const o=/^(.*)\\(.*)$/.exec(n);o&&(t=o[1],n=o[2]),t&&Object.assign(e,{domain:t}),n&&Object.assign(e,{user:n});break}case"workstation id":Object.assign(e.options,{workstationId:r});break;case"request timeout":Object.assign(e,{requestTimeout:parseInt(r,10)});break;case"stream":Object.assign(e,{stream:!!r});break;case"useutc":Object.assign(e.options,{useUTC:!!r});break;case"parsejson":Object.assign(e,{parseJSON:!!r})}return e}),{options:{},pool:{}})}acquire(e,t){const n=c.Promise.resolve(this._acquire().promise).catch((e=>{throw this.emit("error",e),e}));return"function"==typeof t?(n.then((e=>t(null,e,this.config))).catch(t),this):n}_acquire(){return this.pool?this.pool.destroyed?c.Promise.reject(new u("Connection is closing","ENOTOPEN")):this.pool.acquire():c.Promise.reject(new u("Connection not yet open.","ENOTOPEN"))}release(e){return o("connection(%d): released",a.get(e)),this.pool&&this.pool.release(e),this}connect(e){return"function"==typeof e?(this._connect(e),this):new c.Promise(((e,t)=>this._connect((n=>{if(n)return t(n);e(this)}))))}_connect(e){if(this._connected)return o("pool(%d): already connected, executing connect callback immediately",a.get(this)),setImmediate(e,null,this);this._connectStack.push(e),this._connecting||(this._connecting=!0,o("pool(%d): connecting",a.get(this)),this._poolCreate().then((e=>(o("pool(%d): connected",a.get(this)),this._healthy=!0,this._poolDestroy(e).then((()=>{this.pool=new s.Pool(Object.assign({create:()=>this._poolCreate().then((e=>(this._healthy=!0,e))).catch((e=>{throw this.pool.numUsed()+this.pool.numFree()<=0&&(this._healthy=!1),e})),validate:this._poolValidate.bind(this),destroy:this._poolDestroy.bind(this),max:10,min:0,idleTimeoutMillis:3e4,propagateCreateError:!0},this.config.pool)),this._connecting=!1,this._connected=!0}))))).then((()=>{this._connectStack.forEach((e=>{setImmediate(e,null,this)}))})).catch((e=>{this._connecting=!1,this._connectStack.forEach((t=>{setImmediate(t,e)}))})).then((()=>{this._connectStack=[]})))}get size(){return this.pool.numFree()+this.pool.numUsed()+this.pool.numPendingCreates()}get available(){return this.pool.numFree()}get pending(){return this.pool.numPendingAcquires()}get borrowed(){return this.pool.numUsed()}close(e){return"function"==typeof e?(this._close(e),this):new c.Promise(((e,t)=>{this._close((n=>{if(n)return t(n);e(this)}))}))}_close(e){if(this._connecting&&(o("pool(%d): close called while connecting",a.get(this)),setImmediate(e,new u("Cannot close a pool while it is connecting"))),!this.pool)return o("pool(%d): already closed, executing close callback immediately",a.get(this)),setImmediate(e,null);this._closeStack.push(e),this.pool.destroyed||(this._connecting=this._connected=this._healthy=!1,this.pool.destroy().then((()=>{o("pool(%d): pool closed, removing pool reference and executing close callbacks",a.get(this)),this.pool=null,this._closeStack.forEach((e=>{setImmediate(e,null)}))})).catch((e=>{this.pool=null,this._closeStack.forEach((t=>{setImmediate(t,e)}))})).then((()=>{this._closeStack=[]})))}request(){return new c.driver.Request(this)}transaction(){return new c.driver.Transaction(this)}query(){if("string"==typeof arguments[0])return new c.driver.Request(this).query(arguments[0],arguments[1]);const e=Array.prototype.slice.call(arguments),t=e.shift();return new c.driver.Request(this)._template(t,e,"query")}batch(){if("string"==typeof arguments[0])return new c.driver.Request(this).batch(arguments[0],arguments[1]);const e=Array.prototype.slice.call(arguments),t=e.shift();return new c.driver.Request(this)._template(t,e,"batch")}}},60825:(e,t,n)=>{"use strict";const r=n(27628),o=n(60468),i=n(78956),s=n(80433),{ConnectionError:a,TransactionError:u,RequestError:c,PreparedStatementError:l,MSSQLError:h}=n(59310),f=n(8482),p=n(76543),d=n(21669),{TYPES:E}=n(13110),{connect:m,close:_,on:g,off:y,removeListener:A,query:v,batch:b}=n(3489);e.exports={ConnectionPool:r,Transaction:s,Request:i,PreparedStatement:o,ConnectionError:a,TransactionError:u,RequestError:c,PreparedStatementError:l,MSSQLError:h,driver:f.driver,exports:{ConnectionError:a,TransactionError:u,RequestError:c,PreparedStatementError:l,MSSQLError:h,Table:p,ISOLATION_LEVEL:d,TYPES:E,MAX:65535,map:f.map,getTypeByValue:f.getTypeByValue,connect:m,close:_,on:g,removeListener:A,off:y,query:v,batch:b}},Object.defineProperty(e.exports,"Promise",{enumerable:!0,get:()=>f.Promise,set:e=>{f.Promise=e}}),Object.defineProperty(e.exports,"valueHandler",{enumerable:!0,value:f.valueHandler,writable:!1,configurable:!1});for(const t in E){const n=E[t];e.exports.exports[t]=n,e.exports.exports[t.toUpperCase()]=n}},60468:(e,t,n)=>{"use strict";const r=n(45753)("mssql:base"),{EventEmitter:o}=n(24434),{IDS:i,objectHasProperty:s}=n(4546),a=n(3489),{TransactionError:u,PreparedStatementError:c}=n(59310),l=n(8482),{TYPES:h,declare:f}=n(13110);e.exports=class extends o{constructor(e){super(),i.add(this,"PreparedStatement"),r("ps(%d): created",i.get(this)),this.parent=e||a.pool,this._handle=0,this.prepared=!1,this.parameters={}}get config(){return this.parent.config}get connected(){return this.parent.connected}acquire(e,t){return this._acquiredConnection?this._activeRequest?(setImmediate(t,new u("Can't acquire connection for the request. There is another request in progress.","EREQINPROG")),this):(this._activeRequest=e,setImmediate(t,null,this._acquiredConnection,this._acquiredConfig),this):(setImmediate(t,new c("Statement is not prepared. Call prepare() first.","ENOTPREPARED")),this)}release(e){return e===this._acquiredConnection&&(this._activeRequest=null),this}input(e,t){if(/(--| |\/\*|\*\/|')/.test(e))throw new c(`SQL injection warning for param '${e}'`,"EINJECT");if(arguments.length<2)throw new c("Invalid number of arguments. 2 arguments expected.","EARGS");if(t instanceof Function&&(t=t()),s(this.parameters,e))throw new c(`The parameter name ${e} has already been declared. Parameter names must be unique`,"EDUPEPARAM");return this.parameters[e]={name:e,type:t.type,io:1,length:t.length,scale:t.scale,precision:t.precision,tvpType:t.tvpType},this}replaceInput(e,t,n){return delete this.parameters[e],this.input(e,t,n)}output(e,t){if(/(--| |\/\*|\*\/|')/.test(e))throw new c(`SQL injection warning for param '${e}'`,"EINJECT");if(arguments.length<2)throw new c("Invalid number of arguments. 2 arguments expected.","EARGS");if(t instanceof Function&&(t=t()),s(this.parameters,e))throw new c(`The parameter name ${e} has already been declared. Parameter names must be unique`,"EDUPEPARAM");return this.parameters[e]={name:e,type:t.type,io:2,length:t.length,scale:t.scale,precision:t.precision},this}replaceOutput(e,t){return delete this.parameters[e],this.output(e,t)}prepare(e,t){return"function"==typeof t?(this._prepare(e,t),this):new l.Promise(((t,n)=>{this._prepare(e,(e=>{if(e)return n(e);t(this)}))}))}_prepare(e,t){if(r("ps(%d): prepare",i.get(this)),"function"==typeof e&&(t=e,e=void 0),this.prepared)return setImmediate(t,new c("Statement is already prepared.","EALREADYPREPARED"));this.statement=e||this.statement,this.parent.acquire(this,((e,n,o)=>{if(e)return t(e);this._acquiredConnection=n,this._acquiredConfig=o;const a=new l.driver.Request(this);a.stream=!1,a.output("handle",h.Int),a.input("params",h.NVarChar,(()=>{const e=[];for(const t in this.parameters){if(!s(this.parameters,t))continue;const n=this.parameters[t];e.push(`@${t} ${f(n.type,n)}${2===n.io?" output":""}`)}return e})().join(",")),a.input("stmt",h.NVarChar,this.statement),a.execute("sp_prepare",((e,n)=>{if(e)return this.parent.release(this._acquiredConnection),this._acquiredConnection=null,this._acquiredConfig=null,t(e);r("ps(%d): prepared",i.get(this)),this._handle=n.output.handle,this.prepared=!0,t(null)}))}))}execute(e,t){return this.stream||"function"==typeof t?this._execute(e,t):new l.Promise(((t,n)=>{this._execute(e,((e,r)=>{if(e)return n(e);t(r)}))}))}_execute(e,t){const n=new l.driver.Request(this);n.stream=this.stream,n.arrayRowMode=this.arrayRowMode,n.input("handle",h.Int,this._handle);for(const t in this.parameters){if(!s(this.parameters,t))continue;const r=this.parameters[t];n.parameters[t]={name:t,type:r.type,io:r.io,value:e[t],length:r.length,scale:r.scale,precision:r.precision}}return n.execute("sp_execute",((e,n)=>{if(e)return t(e);t(null,n)})),n}unprepare(e){return"function"==typeof e?(this._unprepare(e),this):new l.Promise(((e,t)=>{this._unprepare((n=>{if(n)return t(n);e()}))}))}_unprepare(e){if(r("ps(%d): unprepare",i.get(this)),!this.prepared)return setImmediate(e,new c("Statement is not prepared. Call prepare() first.","ENOTPREPARED"));if(this._activeRequest)return setImmediate(e,new u("Can't unprepare the statement. There is a request in progress.","EREQINPROG"));const t=new l.driver.Request(this);t.stream=!1,t.input("handle",h.Int,this._handle),t.execute("sp_unprepare",(t=>t?e(t):(this.parent.release(this._acquiredConnection),this._acquiredConnection=null,this._acquiredConfig=null,this._handle=0,this.prepared=!1,r("ps(%d): unprepared",i.get(this)),e(null))))}}},78956:(e,t,n)=>{"use strict";const r=n(45753)("mssql:base"),{EventEmitter:o}=n(24434),{Readable:i}=n(2203),{IDS:s,objectHasProperty:a}=n(4546),u=n(3489),{RequestError:c,ConnectionError:l}=n(59310),{TYPES:h}=n(13110),f=n(8482);e.exports=class extends o{constructor(e){super(),s.add(this,"Request"),r("request(%d): created",s.get(this)),this.canceled=!1,this._paused=!1,this.parent=e||u.pool,this.parameters={},this.stream=null,this.arrayRowMode=null}get paused(){return this._paused}template(){const e=Array.prototype.slice.call(arguments),t=e.shift();return this._template(t,e)}_template(e,t,n){const r=[e[0]];for(let n=0;n{if(this.stream&&(e&&this.emit("error",e),e=null,this.emit("done",{output:r,rowsAffected:o})),e)return t(e);t(null,{recordsets:n,recordset:n&&n[0],output:r,rowsAffected:o})})),this;if("object"==typeof e){const t=Array.prototype.slice.call(arguments),n=t.shift();e=this._template(n,t)}return new f.Promise(((t,n)=>{this._batch(e,((e,r,o,i)=>{if(this.stream&&(e&&this.emit("error",e),e=null,this.emit("done",{output:o,rowsAffected:i})),e)return n(e);t({recordsets:r,recordset:r&&r[0],output:o,rowsAffected:i})}))}))}_batch(e,t){return this.parent?this.parent.connected?(this.canceled=!1,void setImmediate(t)):setImmediate(t,new l("Connection is closed.","ECONNCLOSED")):setImmediate(t,new c("No connection is specified for that request.","ENOCONN"))}bulk(e,t,n){return"function"==typeof t?(n=t,t={}):void 0===t&&(t={}),null===this.stream&&this.parent&&(this.stream=this.parent.config.stream),null===this.arrayRowMode&&this.parent&&(this.arrayRowMode=this.parent.config.arrayRowMode),this.stream||"function"==typeof n?(this._bulk(e,t,((e,t)=>this.stream?(e&&this.emit("error",e),this.emit("done",{rowsAffected:t})):e?n(e):void n(null,{rowsAffected:t}))),this):new f.Promise(((n,r)=>{this._bulk(e,t,((e,t)=>{if(e)return r(e);n({rowsAffected:t})}))}))}_bulk(e,t,n){return this.parent?this.parent.connected?(this.canceled=!1,void setImmediate(n)):setImmediate(n,new l("Connection is closed.","ECONNCLOSED")):setImmediate(n,new c("No connection is specified for that request.","ENOCONN"))}toReadableStream(e={}){this.stream=!0,this.pause();const t=new i({...e,objectMode:!0,read:()=>{this.resume()}});return this.on("row",(e=>{t.push(e)||this.pause()})),this.on("error",(e=>{t.emit("error",e)})),this.on("done",(()=>{t.push(null)})),t}pipe(e){return this.toReadableStream().pipe(e)}query(e,t){if(null===this.stream&&this.parent&&(this.stream=this.parent.config.stream),null===this.arrayRowMode&&this.parent&&(this.arrayRowMode=this.parent.config.arrayRowMode),this.rowsAffected=0,"function"==typeof t)return this._query(e,((e,n,r,o,i)=>{if(this.stream&&(e&&this.emit("error",e),e=null,this.emit("done",{output:r,rowsAffected:o})),e)return t(e);const s={recordsets:n,recordset:n&&n[0],output:r,rowsAffected:o};this.arrayRowMode&&(s.columns=i),t(null,s)})),this;if("object"==typeof e){const t=Array.prototype.slice.call(arguments),n=t.shift();e=this._template(n,t)}return new f.Promise(((t,n)=>{this._query(e,((e,r,o,i,s)=>{if(this.stream&&(e&&this.emit("error",e),e=null,this.emit("done",{output:o,rowsAffected:i})),e)return n(e);const a={recordsets:r,recordset:r&&r[0],output:o,rowsAffected:i};this.arrayRowMode&&(a.columns=s),t(a)}))}))}_query(e,t){return this.parent?this.parent.connected?(this.canceled=!1,void setImmediate(t)):setImmediate(t,new l("Connection is closed.","ECONNCLOSED")):setImmediate(t,new c("No connection is specified for that request.","ENOCONN"))}execute(e,t){return null===this.stream&&this.parent&&(this.stream=this.parent.config.stream),null===this.arrayRowMode&&this.parent&&(this.arrayRowMode=this.parent.config.arrayRowMode),this.rowsAffected=0,"function"==typeof t?(this._execute(e,((e,n,r,o,i,s)=>{if(this.stream&&(e&&this.emit("error",e),e=null,this.emit("done",{output:r,rowsAffected:i,returnValue:o})),e)return t(e);const a={recordsets:n,recordset:n&&n[0],output:r,rowsAffected:i,returnValue:o};this.arrayRowMode&&(a.columns=s),t(null,a)})),this):new f.Promise(((t,n)=>{this._execute(e,((e,r,o,i,s,a)=>{if(this.stream&&(e&&this.emit("error",e),e=null,this.emit("done",{output:o,rowsAffected:s,returnValue:i})),e)return n(e);const u={recordsets:r,recordset:r&&r[0],output:o,rowsAffected:s,returnValue:i};this.arrayRowMode&&(u.columns=a),t(u)}))}))}_execute(e,t){return this.parent?this.parent.connected?(this.canceled=!1,void setImmediate(t)):setImmediate(t,new l("Connection is closed.","ECONNCLOSED")):setImmediate(t,new c("No connection is specified for that request.","ENOCONN"))}cancel(){return this._cancel(),!0}_cancel(){this.canceled=!0}pause(){return!!this.stream&&(this._pause(),!0)}_pause(){this._paused=!0}resume(){return!!this.stream&&(this._resume(),!0)}_resume(){this._paused=!1}_setCurrentRequest(e){return this._currentRequest=e,this._paused&&this.pause(),this}}},80433:(e,t,n)=>{"use strict";const r=n(45753)("mssql:base"),{EventEmitter:o}=n(24434),{IDS:i}=n(4546),s=n(3489),{TransactionError:a}=n(59310),u=n(8482),c=n(21669);class l extends o{constructor(e){super(),i.add(this,"Transaction"),r("transaction(%d): created",i.get(this)),this.parent=e||s.pool,this.isolationLevel=l.defaultIsolationLevel,this.name=""}get config(){return this.parent.config}get connected(){return this.parent.connected}acquire(e,t){return this._acquiredConnection?this._activeRequest?(setImmediate(t,new a("Can't acquire connection for the request. There is another request in progress.","EREQINPROG")),this):(this._activeRequest=e,setImmediate(t,null,this._acquiredConnection,this._acquiredConfig),this):(setImmediate(t,new a("Transaction has not begun. Call begin() first.","ENOTBEGUN")),this)}release(e){return e===this._acquiredConnection&&(this._activeRequest=null),this}begin(e,t){return e instanceof Function&&(t=e,e=void 0),"function"==typeof t?(this._begin(e,(e=>{e||this.emit("begin"),t(e)})),this):new u.Promise(((t,n)=>{this._begin(e,(e=>{if(e)return n(e);this.emit("begin"),t(this)}))}))}_begin(e,t){if(this._acquiredConnection)return setImmediate(t,new a("Transaction has already begun.","EALREADYBEGUN"));if(this._aborted=!1,this._rollbackRequested=!1,e){if(!Object.keys(c).some((t=>c[t]===e)))throw new a("Invalid isolation level.");this.isolationLevel=e}setImmediate(t)}commit(e){return"function"==typeof e?(this._commit((t=>{t||this.emit("commit"),e(t)})),this):new u.Promise(((e,t)=>{this._commit((n=>{if(n)return t(n);this.emit("commit"),e()}))}))}_commit(e){return this._aborted?setImmediate(e,new a("Transaction has been aborted.","EABORT")):this._acquiredConnection?this._activeRequest?setImmediate(e,new a("Can't commit transaction. There is a request in progress.","EREQINPROG")):void setImmediate(e):setImmediate(e,new a("Transaction has not begun. Call begin() first.","ENOTBEGUN"))}request(){return new u.driver.Request(this)}rollback(e){return"function"==typeof e?(this._rollback((t=>{t||this.emit("rollback",this._aborted),e(t)})),this):new u.Promise(((e,t)=>this._rollback((n=>{if(n)return t(n);this.emit("rollback",this._aborted),e()}))))}_rollback(e){return this._aborted?setImmediate(e,new a("Transaction has been aborted.","EABORT")):this._acquiredConnection?this._activeRequest?setImmediate(e,new a("Can't rollback transaction. There is a request in progress.","EREQINPROG")):(this._rollbackRequested=!0,void setImmediate(e)):setImmediate(e,new a("Transaction has not begun. Call begin() first.","ENOTBEGUN"))}}l.defaultIsolationLevel=c.READ_COMMITTED,e.exports=l},13110:(e,t,n)=>{"use strict";const r=n(4546).objectHasProperty,o=Symbol.for("nodejs.util.inspect.custom"),i={VarChar:e=>({type:i.VarChar,length:e}),NVarChar:e=>({type:i.NVarChar,length:e}),Text:()=>({type:i.Text}),Int:()=>({type:i.Int}),BigInt:()=>({type:i.BigInt}),TinyInt:()=>({type:i.TinyInt}),SmallInt:()=>({type:i.SmallInt}),Bit:()=>({type:i.Bit}),Float:()=>({type:i.Float}),Numeric:(e,t)=>({type:i.Numeric,precision:e,scale:t}),Decimal:(e,t)=>({type:i.Decimal,precision:e,scale:t}),Real:()=>({type:i.Real}),Date:()=>({type:i.Date}),DateTime:()=>({type:i.DateTime}),DateTime2:e=>({type:i.DateTime2,scale:e}),DateTimeOffset:e=>({type:i.DateTimeOffset,scale:e}),SmallDateTime:()=>({type:i.SmallDateTime}),Time:e=>({type:i.Time,scale:e}),UniqueIdentifier:()=>({type:i.UniqueIdentifier}),SmallMoney:()=>({type:i.SmallMoney}),Money:()=>({type:i.Money}),Binary:e=>({type:i.Binary,length:e}),VarBinary:e=>({type:i.VarBinary,length:e}),Image:()=>({type:i.Image}),Xml:()=>({type:i.Xml}),Char:e=>({type:i.Char,length:e}),NChar:e=>({type:i.NChar,length:e}),NText:()=>({type:i.NText}),TVP:e=>({type:i.TVP,tvpType:e}),UDT:()=>({type:i.UDT}),Geography:()=>({type:i.Geography}),Geometry:()=>({type:i.Geometry}),Variant:()=>({type:i.Variant})};e.exports.TYPES=i,e.exports.DECLARATIONS={};const s=function(e,t){if(null==t&&(t=2),(e=String(e)).length{t[o]=()=>`[sql.${e}]`})(t,n)}e.exports.declare=(e,t)=>{switch(e){case i.VarChar:case i.VarBinary:return`${e.declaration} (${t.length>8e3||null==t.length?"MAX":t.length})`;case i.NVarChar:return`${e.declaration} (${t.length>4e3||null==t.length?"MAX":t.length})`;case i.Char:case i.NChar:case i.Binary:return`${e.declaration} (${null==t.length?1:t.length})`;case i.Decimal:case i.Numeric:return`${e.declaration} (${null==t.precision?18:t.precision}, ${null==t.scale?0:t.scale})`;case i.Time:case i.DateTime2:case i.DateTimeOffset:return`${e.declaration} (${null==t.scale?7:t.scale})`;case i.TVP:return`${t.tvpType} readonly`;default:return e.declaration}},e.exports.cast=(e,t,n)=>{if(null==e)return null;switch(typeof e){case"string":return`N'${e.replace(/'/g,"''")}'`;case"number":return e;case"boolean":return e?1:0;case"object":if(e instanceof Date){let t=e.getUTCMilliseconds()/1e3;null!=e.nanosecondDelta&&(t+=e.nanosecondDelta);const r=null==n.scale?7:n.scale;return t=r>0?String(t).substr(1,r+1):"",`N'${e.getUTCFullYear()}-${s(e.getUTCMonth()+1)}-${s(e.getUTCDate())} ${s(e.getUTCHours())}:${s(e.getUTCMinutes())}:${s(e.getUTCSeconds())}${t}'`}return Buffer.isBuffer(e)?`0x${e.toString("hex")}`:null;default:return null}}},36255:(e,t,n)=>{"use strict";const r=n(17413);e.exports=class extends r{constructor(e,t){super(e,t),this.name="ConnectionError"}}},59310:(e,t,n)=>{"use strict";const r=n(36255),o=n(17413),i=n(8046),s=n(75132),a=n(2933);e.exports={ConnectionError:r,MSSQLError:o,PreparedStatementError:i,RequestError:s,TransactionError:a}},17413:e=>{"use strict";class t extends Error{constructor(e,t){e instanceof Error?(super(e.message),this.code=e.code||t,Error.captureStackTrace(this,this.constructor),Object.defineProperty(this,"originalError",{enumerable:!0,value:e})):(super(e),this.code=t),this.name="MSSQLError"}}e.exports=t},8046:(e,t,n)=>{"use strict";const r=n(17413);e.exports=class extends r{constructor(e,t){super(e,t),this.name="PreparedStatementError"}}},75132:(e,t,n)=>{"use strict";const r=n(17413);e.exports=class extends r{constructor(e,t){super(e,t),e instanceof Error&&(e.info?(this.number=e.info.number||e.code,this.lineNumber=e.info.lineNumber,this.state=e.info.state||e.sqlstate,this.class=e.info.class,this.serverName=e.info.serverName,this.procName=e.info.procName):(this.number=e.code,this.lineNumber=e.lineNumber,this.state=e.sqlstate,this.class=e.severity,this.serverName=e.serverName,this.procName=e.procName)),this.name="RequestError";const n=/^\[Microsoft\]\[SQL Server Native Client 11\.0\](?:\[SQL Server\])?([\s\S]*)$/.exec(this.message);n&&(this.message=n[1])}}},2933:(e,t,n)=>{"use strict";const r=n(17413);e.exports=class extends r{constructor(e,t){super(e,t),this.name="TransactionError"}}},3489:(e,t,n)=>{"use strict";const r=n(8482);let o=null;const i={};function s(e,t){if(!i[e])return o;const n=i[e].indexOf(t);return-1===n||(i[e].splice(n,1),0===i[e].length&&(i[e]=void 0),o&&o.removeListener(e,t)),o}e.exports={batch:function(){if("string"==typeof arguments[0])return(new r.driver.Request).batch(arguments[0],arguments[1]);const e=Array.prototype.slice.call(arguments),t=e.shift();return(new r.driver.Request)._template(t,e,"batch")},close:function(e){if(o){const t=o;return o=null,t.close(e)}return"function"==typeof e?(setImmediate(e),null):new r.Promise((e=>{e(o)}))},connect:function(e,t){if(!o){o=new r.driver.ConnectionPool(e);for(const e in i)for(let t=0,n=i[e].length;t{if(i.error)for(let t=0,n=i.error.length;t{e&&(o=null),t(e,n)})):o.connect().catch((e=>(o=null,r.Promise.reject(e))))},off:s,on:function(e,t){return i[e]||(i[e]=[]),i[e].push(t),o&&o.on(e,t),o},query:function(){if("string"==typeof arguments[0])return(new r.driver.Request).query(arguments[0],arguments[1]);const e=Array.prototype.slice.call(arguments),t=e.shift();return(new r.driver.Request)._template(t,e,"query")},removeListener:s},Object.defineProperty(e.exports,"pool",{get:()=>o,set:()=>{}})},21669:e=>{"use strict";e.exports={READ_UNCOMMITTED:1,READ_COMMITTED:2,REPEATABLE_READ:3,SERIALIZABLE:4,SNAPSHOT:5}},8482:(e,t,n)=>{"use strict";const r=n(13110).TYPES,o=n(76543);let i=Promise;const s=[];s.register=function(e,t){for(let t=0;t2147483647?r.BigInt:r.Int:r.Float;case"boolean":for(const e of Array.from(s))if(e.js===Boolean)return e.sql;return r.Bit;case"object":for(const t of Array.from(s))if(e instanceof t.js)return t.sql;return r.NVarChar;default:return r.NVarChar}},map:s},Object.defineProperty(e.exports,"Promise",{get:()=>i,set:e=>{i=e}}),Object.defineProperty(e.exports,"valueHandler",{enumerable:!0,value:new Map,writable:!1,configurable:!1})},76543:(e,t,n)=>{"use strict";const r=n(13110).TYPES,o=n(13110).declare,i=n(4546).objectHasProperty;function s(e){if(e){const t=s.parseName(e);this.name=t.name,this.schema=t.schema,this.database=t.database,this.path=(this.database?`[${this.database}].`:"")+(this.schema?`[${this.schema}].`:"")+`[${this.name}]`,this.temporary="#"===this.name.charAt(0)}this.columns=[],this.rows=[],Object.defineProperty(this.columns,"add",{value(e,t,n){if(null==t)throw new Error("Column data type is not defined.");return t instanceof Function&&(t=t()),n=n||{},t.name=e,["nullable","primary","identity","readOnly","length"].forEach((e=>{i(n,e)&&(t[e]=n[e])})),this.push(t)}}),Object.defineProperty(this.rows,"add",{value(){return this.push(Array.prototype.slice.call(arguments))}}),Object.defineProperty(this.rows,"clear",{value(){return this.splice(0,this.length)}})}s.prototype._makeBulk=function(){for(let e=0;e!0===e.primary)).map((e=>`[${e.name}]`)),t=this.columns.map((t=>{const n=[`[${t.name}] ${o(t.type,t)}`];return!0===t.nullable?n.push("null"):!1===t.nullable&&n.push("not null"),!0===t.primary&&1===e.length&&n.push("primary key"),n.join(" ")})),n=e.length>1?`, constraint [PK_${this.temporary?this.name.substr(1):this.name}] primary key (${e.join(", ")})`:"";return`create table ${this.path} (${t.join(", ")}${n})`},s.fromRecordset=function(e,t){const n=new this(t);for(const t in e.columns)if(i(e.columns,t)){const r=e.columns[t];n.columns.add(t,{type:r.type,length:r.length,scale:r.scale,precision:r.precision},{nullable:r.nullable,identity:r.identity,readOnly:r.readOnly})}if(1===n.columns.length&&"JSON_F52E2B61-18A1-11d1-B105-00805F49916B"===n.columns[0].name)for(let t=0;te[t][n.name])));return n},s.parseName=function(e){const t=e.length;let n=-1,r="",o=!1;const i=[];for(;++n{"use strict";const r=n(63019),o=n(45753)("mssql:tedi"),i=n(27628),{IDS:s}=n(4546),a=n(8482),u=n(36255);e.exports=class extends i{_config(){const e={server:this.config.server,options:Object.assign({encrypt:"boolean"!=typeof this.config.encrypt||this.config.encrypt,trustServerCertificate:"boolean"==typeof this.config.trustServerCertificate&&this.config.trustServerCertificate},this.config.options),authentication:Object.assign({type:void 0!==this.config.domain?"ntlm":void 0!==this.config.authentication_type?this.config.authentication_type:"default",options:Object.entries({userName:this.config.user,password:this.config.password,domain:this.config.domain,clientId:this.config.clientId,clientSecret:this.config.clientSecret,tenantId:this.config.tenantId,token:this.config.token,msiEndpoint:this.config.msiEndpoint,msiSecret:this.config.msiSecret}).reduce(((e,[t,n])=>void 0!==n?{...e,[t]:n}:e),{})},this.config.authentication)};return e.options.database=e.options.database||this.config.database,e.options.port=e.options.port||this.config.port,e.options.connectTimeout=e.options.connectTimeout??this.config.connectionTimeout??this.config.timeout??15e3,e.options.requestTimeout=e.options.requestTimeout??this.config.requestTimeout??this.config.timeout??15e3,e.options.tdsVersion=e.options.tdsVersion||"7_4",e.options.rowCollectionOnDone=e.options.rowCollectionOnDone||!1,e.options.rowCollectionOnRequestCompletion=e.options.rowCollectionOnRequestCompletion||!1,e.options.useColumnNames=e.options.useColumnNames||!1,e.options.appName=e.options.appName||"node-mssql",e.options.instanceName&&delete e.options.port,isNaN(e.options.requestTimeout)&&(e.options.requestTimeout=15e3),(e.options.requestTimeout===1/0||e.options.requestTimeout<0)&&(e.options.requestTimeout=0),!e.options.debug&&this.config.debug&&(e.options.debug={packet:!0,token:!0,data:!0,payload:!0}),e}_poolCreate(){return new a.Promise(((e,t)=>{const n=n=>{t(n),e=t=()=>{}};let i;try{i=new r.Connection(this._config())}catch(e){return void n(e)}i.connect((r=>{if(r)return r=new u(r),n(r);o("connection(%d): established",s.get(i)),this.collation=i.databaseCollation,e(i),e=t=()=>{}})),s.add(i,"Connection"),o("pool(%d): connection #%d created",s.get(this),s.get(i)),o("connection(%d): establishing",s.get(i)),i.on("end",(()=>{const e=new u("The connection ended without ever completing the connection");n(e)})),i.on("error",(e=>{"ESOCKET"===e.code?i.hasError=!0:this.emit("error",e),n(e)})),this.config.debug&&i.on("debug",this.emit.bind(this,"debug",i)),"function"==typeof this.config.beforeConnect&&this.config.beforeConnect(i)}))}_poolValidate(e){return!(!e||e.closed||e.hasError)&&(!this.config.validateConnection||new a.Promise((t=>{const n=new r.Request("SELECT 1;",(e=>{t(!e)}));e.execSql(n)})))}_poolDestroy(e){return new a.Promise(((t,n)=>{e?(o("connection(%d): destroying",s.get(e)),e.closed?(o("connection(%d): already closed",s.get(e)),t()):(e.once("end",(()=>{o("connection(%d): destroyed",s.get(e)),t()})),e.close())):t()}))}}},74361:(e,t,n)=>{"use strict";const r=n(60825),o=n(34732),i=n(27057),s=n(23628);e.exports=Object.assign({ConnectionPool:o,Transaction:i,Request:s,PreparedStatement:r.PreparedStatement},r.exports),Object.defineProperty(e.exports,"Promise",{enumerable:!0,get:()=>r.Promise,set:e=>{r.Promise=e}}),Object.defineProperty(e.exports,"valueHandler",{enumerable:!0,value:r.valueHandler,writable:!1,configurable:!1}),r.driver.name="tedious",r.driver.ConnectionPool=o,r.driver.Transaction=i,r.driver.Request=s},23628:(e,t,n)=>{"use strict";const r=n(63019),o=n(45753)("mssql:tedi"),i=n(78956),s=n(75132),{IDS:a,objectHasProperty:u}=n(4546),{TYPES:c,DECLARATIONS:l,declare:h,cast:f}=n(13110),p=n(76543),{PARSERS:d}=n(66880),{valueHandler:E}=n(8482),m="JSON_F52E2B61-18A1-11d1-B105-00805F49916B",_="XML_F52E2B61-18A1-11d1-B105-00805F49916B",g=function(e){switch(e){case c.VarChar:return r.TYPES.VarChar;case c.NVarChar:return r.TYPES.NVarChar;case c.Text:return r.TYPES.Text;case c.Int:return r.TYPES.Int;case c.BigInt:return r.TYPES.BigInt;case c.TinyInt:return r.TYPES.TinyInt;case c.SmallInt:return r.TYPES.SmallInt;case c.Bit:return r.TYPES.Bit;case c.Float:return r.TYPES.Float;case c.Decimal:return r.TYPES.Decimal;case c.Numeric:return r.TYPES.Numeric;case c.Real:return r.TYPES.Real;case c.Money:return r.TYPES.Money;case c.SmallMoney:return r.TYPES.SmallMoney;case c.Time:return r.TYPES.Time;case c.Date:return r.TYPES.Date;case c.DateTime:return r.TYPES.DateTime;case c.DateTime2:return r.TYPES.DateTime2;case c.DateTimeOffset:return r.TYPES.DateTimeOffset;case c.SmallDateTime:return r.TYPES.SmallDateTime;case c.UniqueIdentifier:return r.TYPES.UniqueIdentifier;case c.Xml:return r.TYPES.NVarChar;case c.Char:return r.TYPES.Char;case c.NChar:return r.TYPES.NChar;case c.NText:return r.TYPES.NVarChar;case c.Image:return r.TYPES.Image;case c.Binary:return r.TYPES.Binary;case c.VarBinary:return r.TYPES.VarBinary;case c.UDT:case c.Geography:case c.Geometry:return r.TYPES.UDT;case c.TVP:return r.TYPES.TVP;case c.Variant:return r.TYPES.Variant;default:return e}},y=function(e,t){if("object"==typeof e)switch(e){case r.TYPES.Char:return c.Char;case r.TYPES.NChar:return c.NChar;case r.TYPES.VarChar:return c.VarChar;case r.TYPES.NVarChar:return c.NVarChar;case r.TYPES.Text:return c.Text;case r.TYPES.NText:return c.NText;case r.TYPES.Int:return c.Int;case r.TYPES.BigInt:return c.BigInt;case r.TYPES.TinyInt:return c.TinyInt;case r.TYPES.SmallInt:return c.SmallInt;case r.TYPES.Bit:return c.Bit;case r.TYPES.Float:return c.Float;case r.TYPES.Real:return c.Real;case r.TYPES.Money:return c.Money;case r.TYPES.SmallMoney:return c.SmallMoney;case r.TYPES.Numeric:return c.Numeric;case r.TYPES.Decimal:return c.Decimal;case r.TYPES.DateTime:return c.DateTime;case r.TYPES.Time:return c.Time;case r.TYPES.Date:return c.Date;case r.TYPES.DateTime2:return c.DateTime2;case r.TYPES.DateTimeOffset:return c.DateTimeOffset;case r.TYPES.SmallDateTime:return c.SmallDateTime;case r.TYPES.UniqueIdentifier:return c.UniqueIdentifier;case r.TYPES.Image:return c.Image;case r.TYPES.Binary:return c.Binary;case r.TYPES.VarBinary:return c.VarBinary;case r.TYPES.Xml:return c.Xml;case r.TYPES.UDT:return c.UDT;case r.TYPES.TVP:return c.TVP;case r.TYPES.Variant:return c.Variant;default:switch(e.id){case 104:return c.Bit;case 108:return c.Numeric;case 106:return c.Decimal;case 38:return 8===t?c.BigInt:4===t?c.Int:2===t?c.SmallInt:c.TinyInt;case 109:return 8===t?c.Float:c.Real;case 110:return 8===t?c.Money:c.SmallMoney;case 111:return 8===t?c.DateTime:c.SmallDateTime}}},A=function(e,t){let n={};t&&(n=[]);for(let r=0,o=e.length;r{if(i)return n(i);try{e._makeBulk()}catch(e){return n(new s(e,"EREQUEST"))}if(!e.name)return n(new s("Table name must be specified for bulk insert.","ENAME"));if("@"===e.name.charAt(0))return n(new s("You can't use table variables for bulk insert.","ENAME"));const u=[],c={};let l=!1;const h=(e,t,r)=>{let o=new Error(r.message);if(o.info=r,o=new s(o,"EREQUEST"),this.stream)this.emit("error",o);else if(e&&!l){if(t){for(const e in c)t.removeListener(e,c[e]);this.parent.release(t)}l=!0,n(o)}u.push(o)},f=e=>{this.emit("info",{message:e.message,number:e.number,state:e.state,class:e.class,lineNumber:e.lineNumber,serverName:e.serverName,procName:e.procName})};this.parent.acquire(this,((i,p)=>{const d=(e,...t)=>{try{this.parent.release(p)}catch(e){}n(e,...t)};if(i)return d(i);if(o("connection(%d): borrowed to request #%d",a.get(p),a.get(this)),this.canceled)return o("request(%d): canceled",a.get(this)),d(new s("Canceled.","ECANCEL"));this._cancel=()=>{o("request(%d): cancel",a.get(this)),p.cancel()},p.on("infoMessage",c.infoMessage=f),p.on("errorMessage",c.errorMessage=h.bind(null,!1,p)),p.on("error",c.error=h.bind(null,!0,p));const E=(e,t)=>{let n;if(e&&(!u.length||u.length&&e.message!==u[u.length-1].message)&&(e=new s(e,"EREQUEST"),this.stream&&this.emit("error",e),u.push(e)),delete this._cancel,u.length&&!this.stream&&(n=u.pop(),n.precedingErrors=u),!l){for(const e in c)p.removeListener(e,c[e]);l=!0,this.stream?d(null,t):d(n,t)}},m=p.newBulkLoad(e.path,t,E);for(const t of e.columns)m.addColumn(t.name,g(t.type),{nullable:t.nullable,length:t.length,scale:t.scale,precision:t.precision});if(e.create){const t=e.temporary?`tempdb..[${e.name}]`:e.path,n=new r.Request(`if object_id('${t.replace(/'/g,"''")}') is null ${e.declare()}`,(t=>{if(t)return E(t);p.execBulkLoad(m,e.rows)}));this._setCurrentRequest(n),p.execSqlBatch(n)}else p.execBulkLoad(m,e.rows)}))}))}_query(e,t){super._query(e,(n=>{if(n)return t(n);const i=[],c=[],l=[],d={},E={},y=[];let T={},w=[],O=null,R=!1,S=!1,I=null,N=!1;const C=(e,n,r)=>{let o=new Error(r.message);if(o.info=r,o=new s(o,"EREQUEST"),this.stream)this.emit("error",o);else if(e&&!N){if(n){for(const e in d)n.removeListener(e,d[e]);this.parent.release(n)}N=!0,t(o)}l.push(o)},D=e=>{this.emit("info",{message:e.message,number:e.number,state:e.state,class:e.class,lineNumber:e.lineNumber,serverName:e.serverName,procName:e.procName})};this.parent.acquire(this,((n,L,M)=>{if(n)return t(n);let x;if(o("connection(%d): borrowed to request #%d",a.get(L),a.get(this)),this.canceled)return o("request(%d): canceled",a.get(this)),this.parent.release(L),t(new s("Canceled.","ECANCEL"));this._cancel=()=>{o("request(%d): cancel",a.get(this)),L.cancel()},L.on("infoMessage",d.infoMessage=D),L.on("errorMessage",d.errorMessage=C.bind(null,!1,L)),L.on("error",d.error=C.bind(null,!0,L)),o("request(%d): query",a.get(this),e);const B=new r.Request(e,(e=>{if((e?.errors?e.errors:[e]).forEach(((e,t,{length:n})=>{e&&(!l.length||l.length&&l.length>=n&&e.message!==l[l.length-n+t].message)&&(e=new s(e,"EREQUEST"),this.stream&&this.emit("error",e),l.push(e))})),R){this.stream||(O=i.pop()[0]);for(const e in O){const t=O[e];"___return___"!==e&&(E[e]=t)}}let n;if(delete this._cancel,l.length&&!this.stream&&(n=l.pop(),n.precedingErrors=l),!N){for(const e in d)L.removeListener(e,d[e]);this.parent.release(L),N=!0,n?o("request(%d): failed",a.get(this),n):o("request(%d): completed",a.get(this)),this.stream?t(null,null,E,y,c):t(n,i,E,y,c)}}));this._setCurrentRequest(B),B.on("columnMetadata",(e=>{T=A(e,this.arrayRowMode),S=!1,1!==e.length||e[0].colName!==m&&e[0].colName!==_||(S=!0,I=[]),this.stream&&(this._isBatch&&T.___return___||this.emit("recordset",T)),this.arrayRowMode&&c.push(T)}));const P=(e,t)=>{if(null!=e&&(y.push(e),this.stream&&this.emit("rowsaffected",e)),0!==Object.keys(T).length){if(S){const e=I.join("");if(T[m]&&!0===M.parseJSON)try{x=""===e?null:JSON.parse(e)}catch(e){x=null;const t=new s(new Error(`Failed to parse incoming JSON. ${e.message}`),"EJSON");this.stream&&this.emit("error",t),l.push(t)}else x={},x[Object.keys(T)[0]]=e;I=null,this.stream?this.emit("row",x):w.push(x)}this.stream||(Object.defineProperty(w,"columns",{enumerable:!1,configurable:!0,value:T}),Object.defineProperty(w,"toTable",{enumerable:!1,configurable:!0,value(e){return p.fromRecordset(this,e)}}),i.push(w)),w=[],T={}}};if(B.on("doneInProc",P),B.on("done",P),B.on("returnValue",((e,t,n)=>{E[e]=t})),B.on("row",(e=>{if(w||(w=[]),S)return I.push(e[0].value);x=this.arrayRowMode?[]:{};for(const t of e)if(t.value=v(t.value,t.metadata),this.arrayRowMode)x.push(t.value);else{const e=x[t.metadata.colName];void 0!==e?e instanceof Array?e.push(t.value):x[t.metadata.colName]=[e,t.value]:x[t.metadata.colName]=t.value}this.stream?this._isBatch&&x.___return___?O=x:this.emit("row",x):w.push(x)})),this._isBatch){if(Object.keys(this.parameters).length){for(const e in this.parameters){if(!u(this.parameters,e))continue;const n=this.parameters[e];try{n.value=g(n.type).validate(n.value,this.parent.collation)}catch(n){n.message=`Validation failed for parameter '${e}'. ${n.message}`;const r=new s(n,"EPARAM");return this.parent.release(L),t(r)}}const e=[];for(const t in this.parameters){if(!u(this.parameters,t))continue;const n=this.parameters[t];e.push(`@${t} ${h(n.type,n)}`)}const n=[];for(const e in this.parameters){if(!u(this.parameters,e))continue;const t=this.parameters[e];n.push(`@${e} = ${f(t.value,t.type,t)}`)}const r=[];for(const e in this.parameters)u(this.parameters,e)&&2===this.parameters[e].io&&r.push(`@${e} as [${e}]`);R=r.length>0,B.sqlTextOrProcedure=`declare ${e.join(", ")};select ${n.join(", ")};${B.sqlTextOrProcedure};${R?`select 1 as [___return___], ${r.join(", ")}`:""}`}}else for(const e in this.parameters){if(!u(this.parameters,e))continue;const t=this.parameters[e];1===t.io?B.addParameter(t.name,g(t.type),b(t.value),{length:t.length,scale:t.scale,precision:t.precision}):B.addOutputParameter(t.name,g(t.type),b(t.value),{length:t.length,scale:t.scale,precision:t.precision})}try{L[this._isBatch?"execSqlBatch":"execSql"](B)}catch(e){C(!0,L,e)}}))}))}_execute(e,t){super._execute(e,(n=>{if(n)return t(n);const i=[],c=[],l=[],h={},f={},d=[];let E={},y=[],T=0,w=!1,O=null,R=!1;const S=(e,n,r)=>{let o=new Error(r.message);if(o.info=r,o=new s(o,"EREQUEST"),this.stream)this.emit("error",o);else if(e&&!R){if(n){for(const e in h)n.removeListener(e,h[e]);this.parent.release(n)}R=!0,t(o)}l.push(o)},I=e=>{this.emit("info",{message:e.message,number:e.number,state:e.state,class:e.class,lineNumber:e.lineNumber,serverName:e.serverName,procName:e.procName})};this.parent.acquire(this,((n,N,C)=>{if(n)return t(n);let D;if(o("connection(%d): borrowed to request #%d",a.get(N),a.get(this)),this.canceled)return o("request(%d): canceled",a.get(this)),this.parent.release(N),t(new s("Canceled.","ECANCEL"));if(this._cancel=()=>{o("request(%d): cancel",a.get(this)),N.cancel()},N.on("infoMessage",h.infoMessage=I),N.on("errorMessage",h.errorMessage=S.bind(null,!1,N)),N.on("error",h.error=S.bind(null,!0,N)),o.enabled){const t=Object.keys(this.parameters).map((e=>this.parameters[e])),n=e=>"string"==typeof e&&e.length>50?e.substring(0,47)+"...":e,r=e=>e.name+" [sql."+e.type.name+"]",i={};t.forEach((e=>{i[r(e)]=n(e.value)})),o("request(%d): execute %s %O",a.get(this),e,i)}const L=new r.Request(e,(e=>{let n;if(e&&(!l.length||l.length&&e.message!==l[l.length-1].message)&&(e=new s(e,"EREQUEST"),this.stream&&this.emit("error",e),l.push(e)),delete this._cancel,l.length&&!this.stream&&(n=l.pop(),n.precedingErrors=l),!R){for(const e in h)N.removeListener(e,h[e]);this.parent.release(N),R=!0,n?o("request(%d): failed",a.get(this),n):o("request(%d): complete",a.get(this)),this.stream?t(null,null,f,T,d,c):t(n,i,f,T,d,c)}}));this._setCurrentRequest(L),L.on("columnMetadata",(e=>{E=A(e,this.arrayRowMode),w=!1,1!==e.length||e[0].colName!==m&&e[0].colName!==_||(w=!0,O=[]),this.stream&&this.emit("recordset",E),this.arrayRowMode&&c.push(E)})),L.on("row",(e=>{if(y||(y=[]),w)return O.push(e[0].value);D=this.arrayRowMode?[]:{};for(const t of e)if(t.value=v(t.value,t.metadata),this.arrayRowMode)D.push(t.value);else{const e=D[t.metadata.colName];null!=e?e instanceof Array?e.push(t.value):D[t.metadata.colName]=[e,t.value]:D[t.metadata.colName]=t.value}this.stream?this.emit("row",D):y.push(D)})),L.on("doneInProc",((e,t)=>{if(null!=e&&(d.push(e),this.stream&&this.emit("rowsaffected",e)),0!==Object.keys(E).length){if(w){if(E[m]&&!0===C.parseJSON)try{D=0===O.length?null:JSON.parse(O.join(""))}catch(e){D=null;const t=new s(new Error(`Failed to parse incoming JSON. ${e.message}`),"EJSON");this.stream&&this.emit("error",t),l.push(t)}else D={},D[Object.keys(E)[0]]=O.join("");O=null,this.stream?this.emit("row",D):y.push(D)}this.stream||(Object.defineProperty(y,"columns",{enumerable:!1,configurable:!0,value:E}),Object.defineProperty(y,"toTable",{enumerable:!1,configurable:!0,value(e){return p.fromRecordset(this,e)}}),i.push(y)),y=[],E={}}})),L.on("doneProc",((e,t,n)=>{T=n})),L.on("returnValue",((e,t,n)=>{f[e]=t}));for(const e in this.parameters){if(!u(this.parameters,e))continue;const t=this.parameters[e];1===t.io?L.addParameter(t.name,g(t.type),b(t.value),{length:t.length,scale:t.scale,precision:t.precision}):L.addOutputParameter(t.name,g(t.type),b(t.value),{length:t.length,scale:t.scale,precision:t.precision})}N.callProcedure(L)}))}))}_pause(){super._pause(),this._currentRequest&&this._currentRequest.pause()}_resume(){super._resume(),this._currentRequest&&this._currentRequest.resume()}}},27057:(e,t,n)=>{"use strict";const r=n(45753)("mssql:tedi"),o=n(80433),{IDS:i}=n(4546),s=n(2933);e.exports=class extends o{constructor(e){super(e),this._abort=()=>{if(!this._rollbackRequested){const e=this._acquiredConnection;setImmediate(this.parent.release.bind(this.parent),e),this._acquiredConnection.removeListener("rollbackTransaction",this._abort),this._acquiredConnection=null,this._acquiredConfig=null,this._aborted=!0,this.emit("rollback",!0)}}}_begin(e,t){super._begin(e,(e=>{if(e)return t(e);r("transaction(%d): begin",i.get(this)),this.parent.acquire(this,((e,n,o)=>{if(e)return t(e);this._acquiredConnection=n,this._acquiredConnection.on("rollbackTransaction",this._abort),this._acquiredConfig=o,n.beginTransaction((e=>{e&&(e=new s(e)),r("transaction(%d): begun",i.get(this)),t(e)}),this.name,this.isolationLevel)}))}))}_commit(e){super._commit((t=>{if(t)return e(t);r("transaction(%d): commit",i.get(this)),this._acquiredConnection.commitTransaction((t=>{t&&(t=new s(t)),this._acquiredConnection.removeListener("rollbackTransaction",this._abort),this.parent.release(this._acquiredConnection),this._acquiredConnection=null,this._acquiredConfig=null,t||r("transaction(%d): commited",i.get(this)),e(t)}))}))}_rollback(e){super._rollback((t=>{if(t)return e(t);r("transaction(%d): rollback",i.get(this)),this._acquiredConnection.rollbackTransaction((t=>{t&&(t=new s(t)),this._acquiredConnection.removeListener("rollbackTransaction",this._abort),this.parent.release(this._acquiredConnection),this._acquiredConnection=null,this._acquiredConfig=null,t||r("transaction(%d): rolled back",i.get(this)),e(t)}))}))}}},66880:e=>{"use strict";class t{constructor(){this.x=0,this.y=0,this.z=null,this.m=null}}const n=(e,n)=>{const r=e.readInt32LE(0);if(-1===r)return null;const o={srid:r,version:e.readUInt8(4)},i=e.readUInt8(5);e.position=6;const s={Z:(1&i)>0,M:(2&i)>0,V:(4&i)>0,P:(8&i)>0,L:(16&i)>0};let a,u,c;if(2===o.version&&(s.H=(8&i)>0),s.P?a=1:s.L?a=2:(a=e.readUInt32LE(e.position),e.position+=4),o.points=((e,n,r)=>{const o=[];if(n<1)return o;if(r)for(let r=1;r<=n;r++){const n=new t;o.push(n),n.x=e.readDoubleLE(e.position),n.y=e.readDoubleLE(e.position+8),e.position+=16}else for(let r=1;r<=n;r++){const n=new t;o.push(n),n.lat=e.readDoubleLE(e.position),n.lng=e.readDoubleLE(e.position+8),n.x=n.lat,n.y=n.lng,e.position+=16}return o})(e,a,n),s.Z&&((e,t)=>{t<1||t.forEach((t=>{t.z=e.readDoubleLE(e.position),e.position+=8}))})(e,o.points),s.M&&((e,t)=>{t<1||t.forEach((t=>{t.m=e.readDoubleLE(e.position),e.position+=8}))})(e,o.points),s.P||s.L?u=1:(u=e.readUInt32LE(e.position),e.position+=4),o.figures=((e,t,n)=>{const r=[];if(t<1)return r;if(n.P)r.push({attribute:1,pointOffset:0});else if(n.L)r.push({attribute:1,pointOffset:0});else for(let n=1;n<=t;n++)r.push({attribute:e.readUInt8(e.position),pointOffset:e.readInt32LE(e.position+1)}),e.position+=5;return r})(e,u,s),s.P||s.L?c=1:(c=e.readUInt32LE(e.position),e.position+=4),o.shapes=((e,t,n)=>{const r=[];if(t<1)return r;if(n.P)r.push({parentOffset:-1,figureOffset:0,type:1});else if(n.L)r.push({parentOffset:-1,figureOffset:0,type:2});else for(let n=1;n<=t;n++)r.push({parentOffset:e.readInt32LE(e.position),figureOffset:e.readInt32LE(e.position+4),type:e.readUInt8(e.position+8)}),e.position+=9;return r})(e,c,s),2===o.version&&e.position{const n=[];if(t<1)return n;for(let r=1;r<=t;r++)n.push({type:e.readUInt8(e.position)}),e.position++;return n})(e,t)}else o.segments=[];return o};e.exports.PARSERS={geography:e=>n(e,!1),geometry:e=>n(e,!0)}},4546:e=>{const t=new WeakMap,n={Connection:1,ConnectionPool:1,Request:1,Transaction:1,PreparedStatement:1};e.exports={objectHasProperty:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),INCREMENT:n,IDS:{get:t.get.bind(t),add:(e,r,o)=>{if(o)return t.set(e,o);t.set(e,n[r]++)}}}},97333:(e,t,n)=>{"use strict";const r=n(61526),o=n(69277),i=n(36206),s=n(77074);t.createConnection=function(e){return new o({config:new i(e)})},t.connect=t.createConnection,t.Connection=o,t.ConnectionConfig=i;const a=n(83531),u=n(70322);t.createPool=function(e){const t=n(78296);return new a({config:new t(e)})},t.createPoolCluster=function(e){return new(n(70322))(e)},t.createQuery=o.createQuery,t.Pool=a,t.PoolCluster=u,t.createServer=function(e){const t=new(n(34562));return e&&t.on("connection",e),t},t.PoolConnection=n(27062),t.authPlugins=n(44915),t.escape=r.escape,t.escapeId=r.escapeId,t.format=r.format,t.raw=r.raw,t.__defineGetter__("createConnectionPromise",(()=>n(56396).createConnection)),t.__defineGetter__("createPoolPromise",(()=>n(56396).createPool)),t.__defineGetter__("createPoolClusterPromise",(()=>n(56396).createPoolCluster)),t.__defineGetter__("Types",(()=>n(61850))),t.__defineGetter__("Charsets",(()=>n(44782))),t.__defineGetter__("CharsetToEncoding",(()=>n(89238))),t.setMaxParserCache=function(e){s.setMaxCache(e)},t.clearParserCache=function(){s.clearCache()}},58045:(e,t,n)=>{"use strict";const r=n(76982);function o(e,t,n){const o=r.createHash("sha1");return o.update(e),t&&o.update(t),n&&o.update(n),o.digest()}function i(e,t){const n=Buffer.allocUnsafe(e.length);for(let r=0;r{"use strict";const r="caching_sha2_password",o=n(76982),{xor:i,xorRotating:s}=n(58045),a=Buffer.from([2]),u=Buffer.from([3]),c=Buffer.from([4]);function l(e){const t=o.createHash("sha256");return t.update(e),t.digest()}e.exports=(e={})=>({connection:t})=>{let n=0,h=null;const f=t.config.password,p=e=>{const t=function(e,t,n){const r=s(Buffer.from(`${e}\0`,"utf8"),t);return o.publicEncrypt({key:n,padding:o.constants.RSA_PKCS1_OAEP_PADDING},r)}(f,h,e);return n=-1,t};return o=>{switch(n){case 0:return h=o.slice(0,20),n=1,function(e,t){if(!e)return Buffer.alloc(0);const n=l(Buffer.from(e)),r=l(n),o=l(Buffer.concat([r,t]));return i(n,o)}(f,h);case 1:if(u.equals(o))return n=-1,null;if(c.equals(o))return(void 0===e.overrideIsSecure?t.config.ssl||t.config.socketPath:e.overrideIsSecure)?(n=-1,Buffer.from(`${f}\0`,"utf8")):e.serverPublicKey?p(e.serverPublicKey):(n=2,a);throw new Error(`Invalid AuthMoreData packet received by ${r} plugin in STATE_TOKEN_SENT state.`);case 2:return e.onServerPublicKey&&e.onServerPublicKey(o),p(o);case-1:throw new Error(`Unexpected data in AuthMoreData packet received by ${r} plugin in STATE_FINAL state.`)}throw new Error(`Unexpected data in AuthMoreData packet received by ${r} plugin in state ${n}`)}}},44915:(e,t,n)=>{"use strict";e.exports={caching_sha2_password:n(4417),mysql_clear_password:n(44235),mysql_native_password:n(24823),sha256_password:n(15746)}},44235:e=>{"use strict";e.exports=e=>function({connection:t,command:n}){const r=n.password||e.password||t.config.password;return function(){return e=r,Buffer.from(`${e}\0`);var e}}},24823:(e,t,n)=>{"use strict";const r=n(58045);e.exports=e=>({connection:t,command:n})=>{const o=n.password||e.password||t.config.password,i=n.passwordSha1||e.passwordSha1||t.config.passwordSha1;return e=>{const t=e.slice(0,8),n=e.slice(8,20);let s;return s=i?r.calculateTokenFromPasswordSha(i,t,n):r.calculateToken(o,t,n),s}}},15746:(e,t,n)=>{"use strict";const r="sha256_password",o=n(76982),{xorRotating:i}=n(58045),s=Buffer.from([1]);e.exports=(e={})=>({connection:t})=>{let n=0,a=null;const u=t.config.password,c=e=>{const t=function(e,t,n){const r=i(Buffer.from(`${e}\0`,"utf8"),t);return o.publicEncrypt(n,r)}(u,a,e);return n=-1,t};return t=>{switch(n){case 0:return a=t.slice(0,20),e.serverPublicKey?c(e.serverPublicKey):(n=1,s);case 1:return e.onServerPublicKey&&e.onServerPublicKey(t),c(t);case-1:throw new Error(`Unexpected data in AuthMoreData packet received by ${r} plugin in STATE_FINAL state.`)}throw new Error(`Unexpected data in AuthMoreData packet received by ${r} plugin in state ${n}`)}}},75079:(e,t,n)=>{"use strict";const r=n(65923),o=n(15746),i=n(4417),s=n(24823),a=n(44235),u={sha256_password:o({}),caching_sha2_password:i({}),mysql_native_password:s({}),mysql_clear_password:a({})};function c(){console.warn("WARNING! authSwitchHandler api is deprecated, please use new authPlugins api")}function l(e,t){e.code="AUTH_SWITCH_PLUGIN_ERROR",e.fatal=!0,t.emit("error",e)}e.exports={authSwitchRequest:function(e,t,n){const{pluginName:o,pluginData:i}=r.AuthSwitchRequest.fromPacket(e);let s=t.config.authPlugins&&t.config.authPlugins[o];if(t.config.authSwitchHandler&&"mysql_native_password"!==o){const e=t.config.authSwitchHandler;return c(),void e({pluginName:o,pluginData:i},((e,o)=>{if(e)return l(e,n);t.writePacket(new r.AuthSwitchResponse(o).toPacket())}))}if(s||(s=u[o]),!s)throw new Error(`Server requests authentication using unknown plugin ${o}. See TODO: add plugins doco here on how to configure or author authentication plugins.`);t._authPlugin=s({connection:t,command:n}),Promise.resolve(t._authPlugin(i)).then((e=>{e&&t.writePacket(new r.AuthSwitchResponse(e).toPacket())})).catch((e=>{l(e,n)}))},authSwitchRequestMoreData:function(e,t,n){const{data:o}=r.AuthSwitchRequestMoreData.fromPacket(e);if(t.config.authSwitchHandler){const e=t.config.authSwitchHandler;return c(),void e({pluginData:o},((e,o)=>{if(e)return l(e,n);t.writePacket(new r.AuthSwitchResponse(o).toPacket())}))}if(!t._authPlugin)throw new Error("AuthPluginMoreData received but no auth plugin instance found");Promise.resolve(t._authPlugin(o)).then((e=>{e&&t.writePacket(new r.AuthSwitchResponse(e).toPacket())})).catch((e=>{l(e,n)}))}}},13572:(e,t,n)=>{"use strict";const r=n(78745),o=n(65923),i=[];class s{constructor(e){this.timestamp=e.readInt32(),this.eventType=e.readInt8(),this.serverId=e.readInt32(),this.eventSize=e.readInt32(),this.logPos=e.readInt32(),this.flags=e.readInt16()}}class a extends r{constructor(e){super(),this.opts=e}start(e,t){const n=new o.BinlogDump(this.opts);return t.writePacket(n.toPacket(1)),a.prototype.binlogData}binlogData(e){if(e.isEOF())return this.emit("eof"),null;e.readInt8();const t=new s(e),n=i[t.eventType];let r;return r=n?new n(e):{name:"UNKNOWN"},r.header=t,this.emit("event",r),a.prototype.binlogData}}i[2]=class{constructor(e){const t=n(68904);this.slaveProxyId=e.readInt32(),this.executionTime=e.readInt32();const r=e.readInt8();this.errorCode=e.readInt16();const o=e.readInt16(),i=e.readBuffer(o);this.schema=e.readString(r),e.readInt8(),this.statusVars=t(i),this.query=e.readString(),this.name="QueryEvent"}},i[4]=class{constructor(e){this.pposition=e.readInt32(),e.readInt32(),this.nextBinlog=e.readString(),this.name="RotateEvent"}},i[15]=class{constructor(e){this.binlogVersion=e.readInt16(),this.serverVersion=e.readString(50).replace(/\u0000.*/,""),this.createTimestamp=e.readInt32(),this.eventHeaderLength=e.readInt8(),this.eventsLength=e.readBuffer(),this.name="FormatDescriptionEvent"}},i[16]=class{constructor(e){this.binlogVersion=e.readInt16(),this.xid=e.readInt64(),this.name="XidEvent"}},e.exports=a},7270:(e,t,n)=>{"use strict";const r=n(78745),o=n(65923),i=n(18388),s=n(34303),a=n(89238);class u extends r{constructor(e,t){super(),this.onResult=t,this.user=e.user,this.password=e.password,this.password1=e.password,this.password2=e.password2,this.password3=e.password3,this.database=e.database,this.passwordSha1=e.passwordSha1,this.charsetNumber=e.charsetNumber,this.currentConfig=e.currentConfig,this.authenticationFactor=0}start(e,t){const n=new o.ChangeUser({flags:t.config.clientFlags,user:this.user,database:this.database,charsetNumber:this.charsetNumber,password:this.password,passwordSha1:this.passwordSha1,authPluginData1:t._handshakePacket.authPluginData1,authPluginData2:t._handshakePacket.authPluginData2});return this.currentConfig.user=this.user,this.currentConfig.password=this.password,this.currentConfig.database=this.database,this.currentConfig.charsetNumber=this.charsetNumber,t.clientEncoding=a[this.charsetNumber],t._statements.clear(),t.writePacket(n.toPacket()),t.serverCapabilityFlags&i.MULTI_FACTOR_AUTHENTICATION&&(this.authenticationFactor=1),u.prototype.handshakeResult}}u.prototype.handshakeResult=s.prototype.handshakeResult,u.prototype.calculateNativePasswordAuthToken=s.prototype.calculateNativePasswordAuthToken,e.exports=u},34303:(e,t,n)=>{"use strict";const r=n(78745),o=n(65923),i=n(18388),s=n(89238),a=n(58045);function u(e){const t=[];for(const n in i)e&i[n]&&t.push(n.replace(/_/g," ").toLowerCase());return t}class c extends r{constructor(e){super(),this.handshake=null,this.clientFlags=e,this.authenticationFactor=0}start(){return c.prototype.handshakeInit}sendSSLRequest(e){const t=new o.SSLRequest(this.clientFlags,e.config.charsetNumber);e.writePacket(t.toPacket())}sendCredentials(e){e.config.debug&&console.log("Sending handshake packet: flags:%d=(%s)",this.clientFlags,u(this.clientFlags).join(", ")),this.user=e.config.user,this.password=e.config.password,this.password1=e.config.password,this.password2=e.config.password2,this.password3=e.config.password3,this.passwordSha1=e.config.passwordSha1,this.database=e.config.database,this.autPluginName=this.handshake.autPluginName;const t=new o.HandshakeResponse({flags:this.clientFlags,user:this.user,database:this.database,password:this.password,passwordSha1:this.passwordSha1,charsetNumber:e.config.charsetNumber,authPluginData1:this.handshake.authPluginData1,authPluginData2:this.handshake.authPluginData2,compress:e.config.compress,connectAttributes:e.config.connectAttributes});e.writePacket(t.toPacket())}calculateNativePasswordAuthToken(e){const t=e.slice(0,8),n=e.slice(8,20);let r;return r=this.passwordSha1?a.calculateTokenFromPasswordSha(this.passwordSha1,t,n):a.calculateToken(this.password,t,n),r}handshakeInit(e,t){this.on("error",(e=>{t._fatalError=e,t._protocolError=e})),this.handshake=o.Handshake.fromPacket(e),t.config.debug&&console.log("Server hello packet: capability flags:%d=(%s)",this.handshake.capabilityFlags,u(this.handshake.capabilityFlags).join(", ")),t.serverCapabilityFlags=this.handshake.capabilityFlags,t.serverEncoding=s[this.handshake.characterSet],t.connectionId=this.handshake.connectionId;const n=this.handshake.capabilityFlags&i.SSL,r=this.handshake.capabilityFlags&i.MULTI_FACTOR_AUTHENTICATION;if(this.clientFlags=this.clientFlags|r,t.config.compress=t.config.compress&&this.handshake.capabilityFlags&i.COMPRESS,this.clientFlags=this.clientFlags|t.config.compress,t.config.ssl){if(!n){const e=new Error("Server does not support secure connection");return e.code="HANDSHAKE_NO_SSL_SUPPORT",e.fatal=!0,this.emit("error",e),!1}this.clientFlags|=i.SSL,this.sendSSLRequest(t),t.startTLS((e=>{if(e)return e.code="HANDSHAKE_SSL_ERROR",e.fatal=!0,void this.emit("error",e);this.sendCredentials(t)}))}else this.sendCredentials(t);return r&&(this.authenticationFactor=1),c.prototype.handshakeResult}handshakeResult(e,t){const r=e.peekByte();if(254===r||1===r||2===r){const o=n(75079);try{return 1===r?o.authSwitchRequestMoreData(e,t,this):(0!==this.authenticationFactor&&(t.config.password=this[`password${this.authenticationFactor}`],this.authenticationFactor+=1),o.authSwitchRequest(e,t,this)),c.prototype.handshakeResult}catch(e){return e.code="AUTH_SWITCH_PLUGIN_ERROR",e.fatal=!0,this.onResult?this.onResult(e):this.emit("error",e),null}}if(0!==r){const e=new Error("Unexpected packet during handshake phase");return e.code="HANDSHAKE_UNKNOWN_ERROR",e.fatal=!0,this.onResult?this.onResult(e):this.emit("error",e),null}return!t.authorized&&(t.authorized=!0,t.config.compress)&&(0,n(52043).enableCompression)(t),this.onResult&&this.onResult(null),null}}e.exports=c},31710:(e,t,n)=>{"use strict";const r=n(78745),o=n(65923);e.exports=class extends r{constructor(e){super(),this.id=e}start(e,t){return t.writePacket(new o.CloseStatement(this.id).toPacket(1)),null}}},78745:(e,t,n)=>{"use strict";const r=n(24434).EventEmitter,o=n(53557);e.exports=class extends r{constructor(){super(),this.next=null}stateName(){const e=this.next;for(const t in this)if(this[t]===e&&"next"!==t)return t;return"unknown name"}execute(e,t){if(this.next||(this.next=this.start,t._resetSequenceId()),e&&e.isError()){const n=e.asError(t.clientEncoding);return n.sql=this.sql||this.query,this.queryTimeout&&(o.clearTimeout(this.queryTimeout),this.queryTimeout=null),this.onResult?(this.onResult(n),this.emit("end")):(this.emit("error",n),this.emit("end")),!0}return this.next=this.next(e,t),!this.next&&(this.emit("end"),!0)}}},22555:(e,t,n)=>{"use strict";const r=n(78745),o=n(3564),i=n(65923),s=n(34363);class a extends r{constructor(e,t){super(),this.statement=e.statement,this.sql=e.sql,this.values=e.values,this.onResult=t,this.parameters=e.values,this.insertId=0,this.timeout=e.timeout,this.queryTimeout=null,this._rows=[],this._fields=[],this._result=[],this._fieldCount=0,this._rowParser=null,this._executeOptions=e,this._resultIndex=0,this._localStream=null,this._unpipeStream=function(){},this._streamFactory=e.infileStreamFactory,this._connection=null}buildParserFromFields(e,t){return s(e,this.options,t.config)}start(e,t){this._connection=t,this.options=Object.assign({},t.config,this._executeOptions),this._setTimeout();const n=new i.Execute(this.statement.id,this.parameters,t.config.charsetNumber,t.config.timezone);try{t.writePacket(n.toPacket(1))}catch(e){this.onResult(e)}return a.prototype.resultsetHeader}readField(e,t){let n;const r=new i.ColumnDefinition(e,t.clientEncoding);return this._receivedFieldsCount++,this._fields[this._resultIndex].push(r),this._receivedFieldsCount===this._fieldCount?(n=this._fields[this._resultIndex],this.emit("fields",n,this._resultIndex),a.prototype.fieldsEOF):a.prototype.readField}fieldsEOF(e,t){return e.isEOF()?(this._rowParser=new(this.buildParserFromFields(this._fields[this._resultIndex],t)),a.prototype.row):t.protocolError("Expected EOF packet")}}a.prototype.done=o.prototype.done,a.prototype.doneInsert=o.prototype.doneInsert,a.prototype.resultsetHeader=o.prototype.resultsetHeader,a.prototype._findOrCreateReadStream=o.prototype._findOrCreateReadStream,a.prototype._streamLocalInfile=o.prototype._streamLocalInfile,a.prototype._setTimeout=o.prototype._setTimeout,a.prototype._handleTimeoutError=o.prototype._handleTimeoutError,a.prototype.row=o.prototype.row,a.prototype.stream=o.prototype.stream,e.exports=a},79668:(e,t,n)=>{"use strict";const r=n(34303),o=n(61931),i=n(3564),s=n(38055),a=n(31710),u=n(22555),c=n(18294),l=n(32987),h=n(13572),f=n(7270),p=n(49701);e.exports={ClientHandshake:r,ServerHandshake:o,Query:i,Prepare:s,CloseStatement:a,Execute:u,Ping:c,RegisterSlave:l,BinlogDump:h,ChangeUser:f,Quit:p}},18294:(e,t,n)=>{"use strict";const r=n(78745),o=n(90633),i=n(59719);class s extends r{constructor(e){super(),this.onResult=e}start(e,t){const n=new i(0,Buffer.from([1,0,0,0,o.PING]),0,5);return t.writePacket(n),s.prototype.pingResponse}pingResponse(){return this.onResult&&process.nextTick(this.onResult.bind(this)),null}}e.exports=s},38055:(e,t,n)=>{"use strict";const r=n(65923),o=n(78745),i=n(31710),s=n(22555);class a{constructor(e,t,n,r,o){this.query=e,this.id=t,this.columns=n,this.parameters=r,this.rowParser=null,this._connection=o}close(){return this._connection.addCommand(new i(this.id))}execute(e,t){return"function"==typeof e&&(t=e,e=[]),this._connection.addCommand(new s({statement:this,values:e},t))}}class u extends o{constructor(e,t){super(),this.query=e.sql,this.onResult=t,this.id=0,this.fieldCount=0,this.parameterCount=0,this.fields=[],this.parameterDefinitions=[],this.options=e}start(e,t){const n=t.constructor;this.key=n.statementKey(this.options);const o=t._statements.get(this.key);if(o)return this.onResult&&this.onResult(null,o),null;const i=new r.PrepareStatement(this.query,t.config.charsetNumber,this.options.values);return t.writePacket(i.toPacket(1)),u.prototype.prepareHeader}prepareHeader(e,t){const n=new r.PreparedStatementHeader(e);return this.id=n.id,this.fieldCount=n.fieldCount,this.parameterCount=n.parameterCount,this.parameterCount>0?u.prototype.readParameter:this.fieldCount>0?u.prototype.readField:this.prepareDone(t)}readParameter(e,t){if(e.isEOF())return this.fieldCount>0?u.prototype.readField:this.prepareDone(t);const n=new r.ColumnDefinition(e,t.clientEncoding);return this.parameterDefinitions.push(n),this.parameterDefinitions.length===this.parameterCount?u.prototype.parametersEOF:this.readParameter}readField(e,t){if(e.isEOF())return this.prepareDone(t);const n=new r.ColumnDefinition(e,t.clientEncoding);return this.fields.push(n),this.fields.length===this.fieldCount?u.prototype.fieldsEOF:u.prototype.readField}parametersEOF(e,t){return e.isEOF()?this.fieldCount>0?u.prototype.readField:this.prepareDone(t):t.protocolError("Expected EOF packet after parameters")}fieldsEOF(e,t){return e.isEOF()?this.prepareDone(t):t.protocolError("Expected EOF packet after fields")}prepareDone(e){const t=new a(this.query,this.id,this.fields,this.parameterDefinitions,e);return e._statements.set(this.key,t),this.onResult&&this.onResult(null,t),null}}e.exports=u},3564:(e,t,n)=>{"use strict";const r=n(932),o=n(53557),i=n(2203).Readable,s=n(78745),a=n(65923),u=n(88305),c=n(87033),l=new a.Packet(0,Buffer.allocUnsafe(4),0,4);class h extends s{constructor(e,t){super(),this.sql=e.sql,this.values=e.values,this._queryOptions=e,this.namedPlaceholders=e.namedPlaceholders||!1,this.onResult=t,this.timeout=e.timeout,this.queryTimeout=null,this._fieldCount=0,this._rowParser=null,this._fields=[],this._rows=[],this._receivedFieldsCount=0,this._resultIndex=0,this._localStream=null,this._unpipeStream=function(){},this._streamFactory=e.infileStreamFactory,this._connection=null}then(){const e="You have tried to call .then(), .catch(), or invoked await on the result of query that is not a promise, which is a programming error. Try calling con.promise().query(), or require('mysql2/promise') instead of 'mysql2' for a promise-compatible version of the query interface. To learn how to use async/await or Promises check out documentation at https://sidorares.github.io/node-mysql2/docs#using-promise-wrapper, or the mysql2 documentation at https://sidorares.github.io/node-mysql2/docs/documentation/promise-wrapper";throw console.log(e),new Error(e)}start(e,t){t.config.debug&&console.log(" Sending query command: %s",this.sql),this._connection=t,this.options=Object.assign({},t.config,this._queryOptions),this._setTimeout();const n=new a.Query(this.sql,t.config.charsetNumber);return t.writePacket(n.toPacket(1)),h.prototype.resultsetHeader}done(){if(this._unpipeStream(),this.timeout&&!this.queryTimeout)return null;if(this.queryTimeout&&(o.clearTimeout(this.queryTimeout),this.queryTimeout=null),this.onResult){let e,t;0===this._resultIndex?(e=this._rows[0],t=this._fields[0]):(e=this._rows,t=this._fields),t?r.nextTick((()=>{this.onResult(null,e,t)})):r.nextTick((()=>{this.onResult(null,e)}))}return null}doneInsert(e){return this._localStreamError?(this.onResult?this.onResult(this._localStreamError,e):this.emit("error",this._localStreamError),null):(this._rows.push(e),this._fields.push(void 0),this.emit("fields",void 0),this.emit("result",e),e.serverStatus&c.SERVER_MORE_RESULTS_EXISTS?(this._resultIndex++,this.resultsetHeader):this.done())}resultsetHeader(e,t){const n=new a.ResultSetHeader(e,t);return this._fieldCount=n.fieldCount,t.config.debug&&console.log(` Resultset header received, expecting ${n.fieldCount} column definition packets`),0===this._fieldCount?this.doneInsert(n):null===this._fieldCount?this._streamLocalInfile(t,n.infileName):(this._receivedFieldsCount=0,this._rows.push([]),this._fields.push([]),this.readField)}_streamLocalInfile(e,t){if(!this._streamFactory)return this._localStreamError=new Error(`As a result of LOCAL INFILE command server wants to read ${t} file, but as of v2.0 you must provide streamFactory option returning ReadStream.`),e.writePacket(l),this.infileOk;this._localStream=this._streamFactory(t);const n=()=>{this._unpipeStream()},r=()=>{this._localStream.resume()},o=()=>{this._localStream.pause()},i=function(t){const n=Buffer.allocUnsafe(t.length+4);t.copy(n,4),e.writePacket(new a.Packet(0,n,0,n.length))},s=()=>{e.removeListener("error",n),e.writePacket(l)},u=t=>{this._localStreamError=t,e.removeListener("error",n),e.writePacket(l)};return this._unpipeStream=()=>{e.stream.removeListener("pause",o),e.stream.removeListener("drain",r),this._localStream.removeListener("data",i),this._localStream.removeListener("end",s),this._localStream.removeListener("error",u)},e.stream.on("pause",o),e.stream.on("drain",r),this._localStream.on("data",i),this._localStream.on("end",s),this._localStream.on("error",u),e.once("error",n),this.infileOk}readField(e,t){if(this._receivedFieldsCount++,this._fields[this._resultIndex].length!==this._fieldCount){const n=new a.ColumnDefinition(e,t.clientEncoding);this._fields[this._resultIndex].push(n),t.config.debug&&(console.log(" Column definition:"),console.log(` name: ${n.name}`),console.log(` type: ${n.columnType}`),console.log(` flags: ${n.flags}`))}if(this._receivedFieldsCount===this._fieldCount){const e=this._fields[this._resultIndex];return this.emit("fields",e),this._rowParser=new(u(e,this.options,t.config))(e),h.prototype.fieldsEOF}return h.prototype.readField}fieldsEOF(e,t){return e.isEOF()?this.row:t.protocolError("Expected EOF packet")}row(e,t){if(e.isEOF())return e.eofStatusFlags()&c.SERVER_MORE_RESULTS_EXISTS?(this._resultIndex++,h.prototype.resultsetHeader):this.done();let n;try{n=this._rowParser.next(e,this._fields[this._resultIndex],this.options)}catch(e){return this._localStreamError=e,this.doneInsert(null)}return this.onResult?this._rows[this._resultIndex].push(n):this.emit("result",n,this._resultIndex),h.prototype.row}infileOk(e,t){const n=new a.ResultSetHeader(e,t);return this.doneInsert(n)}stream(e){(e=e||{}).objectMode=!0;const t=new i(e);return t._read=()=>{this._connection&&this._connection.resume()},this.on("result",((e,n)=>{t.push(e)||this._connection.pause(),t.emit("result",e,n)})),this.on("error",(e=>{t.emit("error",e)})),this.on("end",(()=>{t.push(null)})),this.on("fields",(e=>{t.emit("fields",e)})),t.on("end",(()=>{t.emit("close")})),t}_setTimeout(){if(this.timeout){const e=this._handleTimeoutError.bind(this);this.queryTimeout=o.setTimeout(e,this.timeout)}}_handleTimeoutError(){this.queryTimeout&&(o.clearTimeout(this.queryTimeout),this.queryTimeout=null);const e=new Error("Query inactivity timeout");e.errorno="PROTOCOL_SEQUENCE_TIMEOUT",e.code="PROTOCOL_SEQUENCE_TIMEOUT",e.syscall="query",this.onResult?this.onResult(e):this.emit("error",e)}}h.prototype.catch=h.prototype.then,e.exports=h},49701:(e,t,n)=>{"use strict";const r=n(78745),o=n(90633),i=n(59719);e.exports=class extends r{constructor(e){super(),this.onResult=e}start(e,t){t._closing=!0;const n=new i(0,Buffer.from([1,0,0,0,o.QUIT]),0,5);return this.onResult&&this.onResult(),t.writePacket(n),null}}},32987:(e,t,n)=>{"use strict";const r=n(78745),o=n(65923);class i extends r{constructor(e,t){super(),this.onResult=t,this.opts=e}start(e,t){const n=new o.RegisterSlave(this.opts);return t.writePacket(n.toPacket(1)),i.prototype.registerResponse}registerResponse(){return this.onResult&&process.nextTick(this.onResult.bind(this)),null}}e.exports=i},61931:(e,t,n)=>{"use strict";const r=n(90633),o=n(9556),i=n(78745),s=n(65923);class a extends i{constructor(e){super(),this.args=e}start(e,t){const n=new s.Handshake(this.args);return this.serverHello=n,n.setScrambleData((e=>{e?t.emit("error",new Error("Error generating random bytes")):t.writePacket(n.toPacket(0))})),a.prototype.readClientReply}readClientReply(e,t){const n=s.HandshakeResponse.fromPacket(e);return t.clientHelloReply=n,this.args.authCallback?this.args.authCallback({user:n.user,database:n.database,address:t.stream.remoteAddress,authPluginData1:this.serverHello.authPluginData1,authPluginData2:this.serverHello.authPluginData2,authToken:n.authToken},((e,n)=>{n?(t.writeError({message:n.message||"",code:n.code||1045}),t.close()):t.writeOk()})):t.writeOk(),a.prototype.dispatchCommands}_isStatement(e,t){return e.split(" ")[0].toUpperCase()===t}dispatchCommands(e,t){let n=!0;const i=t.clientHelloReply.encoding,u=e.readInt8();switch(u){case r.STMT_PREPARE:if(t.listeners("stmt_prepare").length){const n=e.readString(void 0,i);t.emit("stmt_prepare",n)}else t.writeError({code:o.HA_ERR_INTERNAL_ERROR,message:"No query handler for prepared statements."});break;case r.STMT_EXECUTE:if(t.listeners("stmt_execute").length){const{stmtId:n,flags:r,iterationCount:o,values:a}=s.Execute.fromPacket(e,i);t.emit("stmt_execute",n,r,o,a)}else t.writeError({code:o.HA_ERR_INTERNAL_ERROR,message:"No query handler for execute statements."});break;case r.QUIT:t.listeners("quit").length?t.emit("quit"):t.stream.end();break;case r.INIT_DB:if(t.listeners("init_db").length){const n=e.readString(void 0,i);t.emit("init_db",n)}else t.writeOk();break;case r.QUERY:if(t.listeners("query").length){const n=e.readString(void 0,i);this._isStatement(n,"PREPARE")||this._isStatement(n,"SET")?t.emit("stmt_prepare",n):this._isStatement(n,"EXECUTE")?t.emit("stmt_execute",null,null,null,null,n):t.emit("query",n)}else t.writeError({code:o.HA_ERR_INTERNAL_ERROR,message:"No query handler"});break;case r.FIELD_LIST:if(t.listeners("field_list").length){const n=e.readNullTerminatedString(i),r=e.readString(void 0,i);t.emit("field_list",n,r)}else t.writeError({code:o.ER_WARN_DEPRECATED_SYNTAX,message:"As of MySQL 5.7.11, COM_FIELD_LIST is deprecated and will be removed in a future version of MySQL."});break;case r.PING:t.listeners("ping").length?t.emit("ping"):t.writeOk();break;default:n=!1}return t.listeners("packet").length?t.emit("packet",e.clone(),n,u):n||console.log("Unknown command:",u),a.prototype.dispatchCommands}}e.exports=a},52043:(e,t,n)=>{"use strict";const r=n(43106),o=n(21355);function i(e){const t=this,n=e.readInt24(),o=e.readBuffer();0!==n?t.inflateQueue.push((n=>{r.inflate(o,((r,o)=>{r?t._handleNetworkError(r):(t._bumpCompressedSequenceId(e.numPackets),t._inflatedPacketsParser.execute(o),n.done())}))})):t.inflateQueue.push((n=>{t._bumpCompressedSequenceId(e.numPackets),t._inflatedPacketsParser.execute(o),n.done()}))}function s(e){const t=16777210;let n;if(e.length>t){for(n=0;n{r.deflate(e,((n,r)=>{if(n)return void o._handleFatalError(n);let s=r.length;s>8,1),a.writeUInt8(u,3),a.writeUInt8(255&i,4),a.writeUInt16LE(i>>8,5),o.writeUncompressed(a),o.writeUncompressed(r)):(s=i,i=0,a.writeUInt8(255&s,0),a.writeUInt16LE(s>>8,1),a.writeUInt8(u,3),a.writeUInt8(255&i,4),a.writeUInt16LE(i>>8,5),o.writeUncompressed(a),o.writeUncompressed(e)),t.done()}))})),o._bumpCompressedSequenceId(1)}e.exports={enableCompression:function(e){e._lastWrittenPacketId=0,e._lastReceivedPacketId=0,e._handleCompressedPacket=i,e._inflatedPacketsParser=new o((t=>{e.handlePacket(t)}),4),e._inflatedPacketsParser._lastPacket=0,e.packetParser=new o((t=>{e._handleCompressedPacket(t)}),7),e.writeUncompressed=e.write,e.write=s;const t=n(25438);e.inflateQueue=t.createQueue(),e.deflateQueue=t.createQueue()}}},69277:(e,t,n)=>{"use strict";const r=n(69278),o=n(64756),i=n(53557),s=n(24434).EventEmitter,a=n(2203).Readable,u=n(22153),c=n(61526),l=n(95987).default,h=n(21355),f=n(65923),p=n(79668),d=n(36206),E=n(89238);let m=0,_=null;class g extends s{constructor(e){let t;if(super(),this.config=e.config,e.config.stream?"function"==typeof e.config.stream?this.stream=e.config.stream(e):this.stream=e.config.stream:e.config.socketPath?this.stream=r.connect(e.config.socketPath):(this.stream=r.connect(e.config.port,e.config.host),this.config.enableKeepAlive&&this.stream.on("connect",(()=>{this.stream.setKeepAlive(!0,this.config.keepAliveInitialDelay)})),this.stream.setNoDelay(!0)),this._internalId=m++,this._commands=new u,this._command=null,this._paused=!1,this._paused_packets=new u,this._statements=new l({max:this.config.maxPreparedStatements,dispose:function(e){e.close()}}),this.serverCapabilityFlags=0,this.authorized=!1,this.sequenceId=0,this.compressedSequenceId=0,this.threadId=null,this._handshakePacket=null,this._fatalError=null,this._protocolError=null,this._outOfOrderPackets=[],this.clientEncoding=E[this.config.charsetNumber],this.stream.on("error",this._handleNetworkError.bind(this)),this.packetParser=new h((e=>{this.handlePacket(e)})),this.stream.on("data",(e=>{this.connectTimeout&&(i.clearTimeout(this.connectTimeout),this.connectTimeout=null),this.packetParser.execute(e)})),this.stream.on("end",(()=>{this.emit("end")})),this.stream.on("close",(()=>{this._closing||(this._protocolError||(this._protocolError=new Error("Connection lost: The server closed the connection."),this._protocolError.fatal=!0,this._protocolError.code="PROTOCOL_CONNECTION_LOST"),this._notifyError(this._protocolError))})),this.config.isServer||(t=new p.ClientHandshake(this.config.clientFlags),t.on("end",(()=>{!t.handshake||this._fatalError||this._protocolError||(this._handshakePacket=t.handshake,this.threadId=t.handshake.connectionId,this.emit("connect",t.handshake))})),t.on("error",(e=>{this._closing=!0,this._notifyError(e)})),this.addCommand(t)),this.serverEncoding="utf8",this.config.connectTimeout){const e=this._handleTimeoutError.bind(this);this.connectTimeout=i.setTimeout(e,this.config.connectTimeout)}}promise(e){return new(0,n(56396).PromiseConnection)(this,e)}_addCommandClosedState(e){const t=new Error("Can't add new command when connection is in closed state");t.fatal=!0,e.onResult?e.onResult(t):this.emit("error",t)}_handleFatalError(e){e.fatal=!0,this.stream.removeAllListeners("data"),this.addCommand=this._addCommandClosedState,this.write=()=>{this.emit("error",new Error("Can't write in closed state"))},this._notifyError(e),this._fatalError=e}_handleNetworkError(e){this.connectTimeout&&(i.clearTimeout(this.connectTimeout),this.connectTimeout=null),"ECONNRESET"===e.code&&this._closing||this._handleFatalError(e)}_handleTimeoutError(){this.connectTimeout&&(i.clearTimeout(this.connectTimeout),this.connectTimeout=null),this.stream.destroy&&this.stream.destroy();const e=new Error("connect ETIMEDOUT");e.errorno="ETIMEDOUT",e.code="ETIMEDOUT",e.syscall="connect",this._handleNetworkError(e)}_notifyError(e){if(this.connectTimeout&&(i.clearTimeout(this.connectTimeout),this.connectTimeout=null),this._fatalError)return;let t,n=!this._command;for(this._command&&this._command.onResult?(this._command.onResult(e),this._command=null):this._command&&this._command.constructor===p.ClientHandshake&&this._commands.length>0||(n=!0);t=this._commands.shift();)t.onResult?t.onResult(e):n=!0;(n||this._pool)&&this.emit("error",e),e.fatal&&this.close()}write(e){this.stream.write(e,(e=>{e&&this._handleNetworkError(e)}))||this.stream.emit("pause")}_resetSequenceId(){this.sequenceId=0,this.compressedSequenceId=0}_bumpCompressedSequenceId(e){this.compressedSequenceId+=e,this.compressedSequenceId%=256}_bumpSequenceId(e){this.sequenceId+=e,this.sequenceId%=256}writePacket(e){const t=16777215,n=e.length();let r,o,i;if(n>8&255,r.length>>16&255,this.sequenceId]),this._bumpSequenceId(1),this.write(i),this.write(r)}startTLS(e){this.config.debug&&console.log("Upgrading connection to TLS");const t=o.createSecureContext({ca:this.config.ssl.ca,cert:this.config.ssl.cert,ciphers:this.config.ssl.ciphers,key:this.config.ssl.key,passphrase:this.config.ssl.passphrase,minVersion:this.config.ssl.minVersion,maxVersion:this.config.ssl.maxVersion}),n=this.config.ssl.rejectUnauthorized,r=this.config.ssl.verifyIdentity,i=this.config.host;let s=!1;this.stream.removeAllListeners("data");const a=o.connect({rejectUnauthorized:n,requestCert:n,checkServerIdentity:r?o.checkServerIdentity:function(){},secureContext:t,isServer:!1,socket:this.stream,servername:i},(()=>{if(s=!0,n&&"string"==typeof i&&r){const t=a.getPeerCertificate(!0),n=o.checkServerIdentity(i,t);if(n)return void e(n)}e()}));a.on("error",(t=>{s?this._handleNetworkError(t):e(t)})),a.on("data",(e=>{this.packetParser.execute(e)})),this.write=e=>a.write(e)}protocolError(e,t){if(this._closing)return;const n=new Error(e);n.fatal=!0,n.code=t||"PROTOCOL_ERROR",this.emit("error",n)}get fatalError(){return this._fatalError}handlePacket(e){if(this._paused)this._paused_packets.push(e);else{if(this.config.debug&&e){console.log(` raw: ${e.buffer.slice(e.offset,e.offset+e.length()).toString("hex")}`),console.trace();const t=this._command?this._command._commandName:"(no command)",n=this._command?this._command.stateName():"(no command)";console.log(`${this._internalId} ${this.connectionId} ==> ${t}#${n}(${[e.sequenceId,e.type(),e.length()].join(",")})`)}if(this._command){if(e){if(this.sequenceId!==e.sequenceId){const t=new Error(`Warning: got packets out of order. Expected ${this.sequenceId} but received ${e.sequenceId}`);t.expected=this.sequenceId,t.received=e.sequenceId,this.emit("warn",t),console.error(t.message)}this._bumpSequenceId(e.numPackets)}try{if(this._fatalError)return;this._command.execute(e,this)&&(this._command=this._commands.shift(),this._command&&(this.sequenceId=0,this.compressedSequenceId=0,this.handlePacket()))}catch(e){this._handleFatalError(e),this.stream.destroy()}}else{if(255===e.peekByte()){const t=f.Error.fromPacket(e);this.protocolError(t.message,t.code)}else this.protocolError("Unexpected packet while no commands in the queue","PROTOCOL_UNEXPECTED_PACKET");this.close()}}}addCommand(e){if(this.config.debug){const t=e.constructor.name;console.log(`Add command: ${t}`),e._commandName=t}return this._command?this._commands.push(e):(this._command=e,this.handlePacket()),e}format(e,t){if("function"==typeof this.config.queryFormat)return this.config.queryFormat.call(this,e,t,this.config.timezone);const n={sql:e,values:t};return this._resolveNamedPlaceholders(n),c.format(n.sql,n.values,this.config.stringifyObjects,this.config.timezone)}escape(e){return c.escape(e,!1,this.config.timezone)}escapeId(e){return c.escapeId(e,!1)}raw(e){return c.raw(e)}_resolveNamedPlaceholders(e){let t;if(this.config.namedPlaceholders||e.namedPlaceholders){if(Array.isArray(e.values))return;null===_&&(_=n(33579)()),t=_(e.sql,e.values),e.sql=t[0],e.values=t[1]}}query(e,t,n){let r;r=e.constructor===p.Query?e:g.createQuery(e,t,n,this.config),this._resolveNamedPlaceholders(r);const o=this.format(r.sql,void 0!==r.values?r.values:[]);return r.sql=o,this.addCommand(r)}pause(){this._paused=!0,this.stream.pause()}resume(){let e;for(this._paused=!1;e=this._paused_packets.shift();)if(this.handlePacket(e),this._paused)return;this.stream.resume()}prepare(e,t){return"string"==typeof e&&(e={sql:e}),this.addCommand(new p.Prepare(e,t))}unprepare(e){let t={};"object"==typeof e?t=e:t.sql=e;const n=g.statementKey(t),r=this._statements.get(n);return r&&(this._statements.delete(n),r.close()),r}execute(e,t,n){let r={infileStreamFactory:this.config.infileStreamFactory};if("object"==typeof e?(r={...r,...e,sql:e.sql,values:e.values},"function"==typeof t?n=t:r.values=r.values||t):"function"==typeof t?(n=t,r.sql=e,r.values=void 0):(r.sql=e,r.values=t),this._resolveNamedPlaceholders(r),r.values){if(!Array.isArray(r.values))throw new TypeError("Bind parameters must be array if namedPlaceholders parameter is not enabled");r.values.forEach((e=>{if(!Array.isArray(r.values))throw new TypeError("Bind parameters must be array if namedPlaceholders parameter is not enabled");if(void 0===e)throw new TypeError("Bind parameters must not contain undefined. To pass SQL NULL specify JS null");if("function"==typeof e)throw new TypeError("Bind parameters must not contain function(s). To pass the body of a function as a string call .toString() first")}))}const o=new p.Execute(r,n),i=new p.Prepare(r,((e,t)=>{if(e)return o.start=function(){return null},n?n(e):o.emit("error",e),void o.emit("end");o.statement=t}));return this.addCommand(i),this.addCommand(o),o}changeUser(e,t){t||"function"!=typeof e||(t=e,e={});const n=e.charset?d.getCharsetNumber(e.charset):this.config.charsetNumber;return this.addCommand(new p.ChangeUser({user:e.user||this.config.user,password:e.password||e.password1||this.config.password||this.config.password1,password2:e.password2||this.config.password2,password3:e.password3||this.config.password3,passwordSha1:e.passwordSha1||this.config.passwordSha1,database:e.database||this.config.database,timeout:e.timeout,charsetNumber:n,currentConfig:this.config},(e=>{e&&(e.fatal=!0),t&&t(e)})))}beginTransaction(e){return this.query("START TRANSACTION",e)}commit(e){return this.query("COMMIT",e)}rollback(e){return this.query("ROLLBACK",e)}ping(e){return this.addCommand(new p.Ping(e))}_registerSlave(e,t){return this.addCommand(new p.RegisterSlave(e,t))}_binlogDump(e,t){return this.addCommand(new p.BinlogDump(e,t))}destroy(){this.close()}close(){this.connectTimeout&&(i.clearTimeout(this.connectTimeout),this.connectTimeout=null),this._closing=!0,this.stream.end(),this.addCommand=this._addCommandClosedState}createBinlogStream(e){let t=1;const n=new a({objectMode:!0});return n._read=function(){return{data:t++}},this._registerSlave(e,(()=>{const t=this._binlogDump(e);t.on("event",(e=>{n.push(e)})),t.on("eof",(()=>{n.push(null),e.flags&&1&e.flags&&this.close()}))})),n}connect(e){if(!e)return;if(this._fatalError||this._protocolError)return e(this._fatalError||this._protocolError);if(this._handshakePacket)return e(null,this);let t=0;function n(n){return function(r){t||(n?e(r):e(null,r)),t=1}}this.once("error",n(!0)),this.once("connect",n(!1))}writeColumns(e){this.writePacket(f.ResultSetHeader.toPacket(e.length)),e.forEach((e=>{this.writePacket(f.ColumnDefinition.toPacket(e,this.serverConfig.encoding))})),this.writeEof()}writeTextRow(e){this.writePacket(f.TextRow.toPacket(e,this.serverConfig.encoding))}writeBinaryRow(e){this.writePacket(f.BinaryRow.toPacket(e,this.serverConfig.encoding))}writeTextResult(e,t,n=!1){this.writeColumns(t),e.forEach((e=>{const r=new Array(t.length);t.forEach((t=>{r.push(e[t.name])})),n?this.writeBinaryRow(r):this.writeTextRow(r)})),this.writeEof()}writeEof(e,t){this.writePacket(f.EOF.toPacket(e,t))}writeOk(e){e||(e={affectedRows:0}),this.writePacket(f.OK.toPacket(e,this.serverConfig.encoding))}writeError(e){const t=this.serverConfig?this.serverConfig.encoding:"cesu8";this.writePacket(f.Error.toPacket(e,t))}serverHandshake(e){return this.serverConfig=e,this.serverConfig.encoding=E[this.serverConfig.characterSet],this.addCommand(new p.ServerHandshake(e))}end(e){if(this.config.isServer){this._closing=!0;const e=new s;return setImmediate((()=>{this.stream.end(),e.emit("end")})),e}const t=this.addCommand(new p.Quit(e));return this.addCommand=this._addCommandClosedState,t}static createQuery(e,t,n,r){let o={rowsAsArray:r.rowsAsArray,infileStreamFactory:r.infileStreamFactory};return"object"==typeof e?(o={...o,...e,sql:e.sql,values:e.values},"function"==typeof t?n=t:void 0!==t&&(o.values=t)):"function"==typeof t?(n=t,o.sql=e,o.values=void 0):(o.sql=e,o.values=t),new p.Query(o,n)}static statementKey(e){return`${typeof e.nestTables}/${e.nestTables}/${e.rowsAsArray}${e.sql}`}}e.exports=g},36206:(e,t,n)=>{"use strict";const{URL:r}=n(87016),o=n(18388),i=n(44782),{version:s}=n(87466);let a=null;const u={authPlugins:1,authSwitchHandler:1,bigNumberStrings:1,charset:1,charsetNumber:1,compress:1,connectAttributes:1,connectTimeout:1,database:1,dateStrings:1,debug:1,decimalNumbers:1,enableKeepAlive:1,flags:1,host:1,insecureAuth:1,infileStreamFactory:1,isServer:1,keepAliveInitialDelay:1,localAddress:1,maxPreparedStatements:1,multipleStatements:1,namedPlaceholders:1,nestTables:1,password:1,password1:1,password2:1,password3:1,passwordSha1:1,pool:1,port:1,queryFormat:1,rowsAsArray:1,socketPath:1,ssl:1,stream:1,stringifyObjects:1,supportBigNumbers:1,timezone:1,trace:1,typeCast:1,uri:1,user:1,connectionLimit:1,maxIdle:1,idleTimeout:1,Promise:1,queueLimit:1,waitForConnections:1,jsonStrings:1};class c{constructor(e){if("string"==typeof e)e=c.parseUrl(e);else if(e&&e.uri){const t=c.parseUrl(e.uri);for(const n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]||(e[n]=t[n]))}for(const t in e)Object.prototype.hasOwnProperty.call(e,t)&&1!==u[t]&&console.error(`Ignoring invalid configuration option passed to Connection: ${t}. This is currently a warning, but in future versions of MySQL2, an error will be thrown if you pass an invalid configuration option to a Connection`);if(this.isServer=e.isServer,this.stream=e.stream,this.host=e.host||"localhost",this.port=("string"==typeof e.port?parseInt(e.port,10):e.port)||3306,this.localAddress=e.localAddress,this.socketPath=e.socketPath,this.user=e.user||void 0,this.password=e.password||e.password1||void 0,this.password2=e.password2||void 0,this.password3=e.password3||void 0,this.passwordSha1=e.passwordSha1||void 0,this.database=e.database,this.connectTimeout=isNaN(e.connectTimeout)?1e4:e.connectTimeout,this.insecureAuth=e.insecureAuth||!1,this.infileStreamFactory=e.infileStreamFactory||void 0,this.supportBigNumbers=e.supportBigNumbers||!1,this.bigNumberStrings=e.bigNumberStrings||!1,this.decimalNumbers=e.decimalNumbers||!1,this.dateStrings=e.dateStrings||!1,this.debug=e.debug,this.trace=!1!==e.trace,this.stringifyObjects=e.stringifyObjects||!1,this.enableKeepAlive=!1!==e.enableKeepAlive,this.keepAliveInitialDelay=e.keepAliveInitialDelay,e.timezone&&!/^(?:local|Z|[ +-]\d\d:\d\d)$/.test(e.timezone)?(console.error(`Ignoring invalid timezone passed to Connection: ${e.timezone}. This is currently a warning, but in future versions of MySQL2, an error will be thrown if you pass an invalid configuration option to a Connection`),this.timezone="Z"):this.timezone=e.timezone||"local",this.queryFormat=e.queryFormat,this.pool=e.pool||void 0,this.ssl="string"==typeof e.ssl?c.getSSLProfile(e.ssl):e.ssl||!1,this.multipleStatements=e.multipleStatements||!1,this.rowsAsArray=e.rowsAsArray||!1,this.namedPlaceholders=e.namedPlaceholders||!1,this.nestTables=void 0===e.nestTables?void 0:e.nestTables,this.typeCast=void 0===e.typeCast||e.typeCast," "===this.timezone[0]&&(this.timezone=`+${this.timezone.slice(1)}`),this.ssl){if("object"!=typeof this.ssl)throw new TypeError("SSL profile must be an object, instead it's a "+typeof this.ssl);this.ssl.rejectUnauthorized=!1!==this.ssl.rejectUnauthorized}this.maxPacketSize=0,this.charsetNumber=e.charset?c.getCharsetNumber(e.charset):e.charsetNumber||i.UTF8MB4_UNICODE_CI,this.compress=e.compress||!1,this.authPlugins=e.authPlugins,this.authSwitchHandler=e.authSwitchHandler,this.clientFlags=c.mergeFlags(c.getDefaultFlags(e),e.flags||"");const t={_client_name:"Node-MySQL-2",_client_version:s};this.connectAttributes={...t,...e.connectAttributes||{}},this.maxPreparedStatements=e.maxPreparedStatements||16e3,this.jsonStrings=e.jsonStrings||!1}static mergeFlags(e,t){let n,r=0;for(n in Array.isArray(t)||(t=String(t||"").toUpperCase().split(/\s*,+\s*/)),e)t.indexOf(`-${e[n]}`)>=0||(r|=o[e[n]]||0);for(n in t)"-"!==t[n][0]&&(e.indexOf(t[n])>=0||(r|=o[t[n]]||0));return r}static getDefaultFlags(e){const t=["LONG_PASSWORD","FOUND_ROWS","LONG_FLAG","CONNECT_WITH_DB","ODBC","LOCAL_FILES","IGNORE_SPACE","PROTOCOL_41","IGNORE_SIGPIPE","TRANSACTIONS","RESERVED","SECURE_CONNECTION","MULTI_RESULTS","TRANSACTIONS","SESSION_TRACK","CONNECT_ATTRS"];return e&&e.multipleStatements&&t.push("MULTI_STATEMENTS"),t.push("PLUGIN_AUTH"),t.push("PLUGIN_AUTH_LENENC_CLIENT_DATA"),t}static getCharsetNumber(e){const t=i[e.toUpperCase()];if(void 0===t)throw new TypeError(`Unknown charset '${e}'`);return t}static getSSLProfile(e){a||(a=n(21534));const t=a[e];if(void 0===t)throw new TypeError(`Unknown SSL profile '${e}'`);return t}static parseUrl(e){const t=new r(e),n={host:decodeURIComponent(t.hostname),port:parseInt(t.port,10),database:decodeURIComponent(t.pathname.slice(1)),user:decodeURIComponent(t.username),password:decodeURIComponent(t.password)};return t.searchParams.forEach(((e,t)=>{try{n[t]=JSON.parse(e)}catch(r){n[t]=e}})),n}}e.exports=c},89238:e=>{"use strict";e.exports=["utf8","big5","latin2","dec8","cp850","latin1","hp8","koi8r","latin1","latin2","swe7","ascii","eucjp","sjis","cp1251","latin1","hebrew","utf8","tis620","euckr","latin7","latin2","koi8u","cp1251","gb2312","greek","cp1250","latin2","gbk","cp1257","latin5","latin1","armscii8","cesu8","cp1250","ucs2","cp866","keybcs2","macintosh","macroman","cp852","latin7","latin7","macintosh","cp1250","utf8","utf8","latin1","latin1","latin1","cp1251","cp1251","cp1251","macroman","utf16","utf16","utf16-le","cp1256","cp1257","cp1257","utf32","utf32","utf16-le","binary","armscii8","ascii","cp1250","cp1256","cp866","dec8","greek","hebrew","hp8","keybcs2","koi8r","koi8u","cesu8","latin2","latin5","latin7","cp850","cp852","swe7","cesu8","big5","euckr","gb2312","gbk","sjis","tis620","ucs2","eucjp","geostd8","geostd8","latin1","cp932","cp932","eucjpms","eucjpms","cp1250","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf16","utf8","utf8","utf8","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","ucs2","utf8","utf8","utf8","utf8","utf8","utf8","utf8","ucs2","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf32","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","cesu8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","cesu8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","gb18030","gb18030","gb18030","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8","utf8"]},44782:(e,t)=>{"use strict";t.BIG5_CHINESE_CI=1,t.LATIN2_CZECH_CS=2,t.DEC8_SWEDISH_CI=3,t.CP850_GENERAL_CI=4,t.LATIN1_GERMAN1_CI=5,t.HP8_ENGLISH_CI=6,t.KOI8R_GENERAL_CI=7,t.LATIN1_SWEDISH_CI=8,t.LATIN2_GENERAL_CI=9,t.SWE7_SWEDISH_CI=10,t.ASCII_GENERAL_CI=11,t.UJIS_JAPANESE_CI=12,t.SJIS_JAPANESE_CI=13,t.CP1251_BULGARIAN_CI=14,t.LATIN1_DANISH_CI=15,t.HEBREW_GENERAL_CI=16,t.TIS620_THAI_CI=18,t.EUCKR_KOREAN_CI=19,t.LATIN7_ESTONIAN_CS=20,t.LATIN2_HUNGARIAN_CI=21,t.KOI8U_GENERAL_CI=22,t.CP1251_UKRAINIAN_CI=23,t.GB2312_CHINESE_CI=24,t.GREEK_GENERAL_CI=25,t.CP1250_GENERAL_CI=26,t.LATIN2_CROATIAN_CI=27,t.GBK_CHINESE_CI=28,t.CP1257_LITHUANIAN_CI=29,t.LATIN5_TURKISH_CI=30,t.LATIN1_GERMAN2_CI=31,t.ARMSCII8_GENERAL_CI=32,t.UTF8_GENERAL_CI=33,t.CP1250_CZECH_CS=34,t.UCS2_GENERAL_CI=35,t.CP866_GENERAL_CI=36,t.KEYBCS2_GENERAL_CI=37,t.MACCE_GENERAL_CI=38,t.MACROMAN_GENERAL_CI=39,t.CP852_GENERAL_CI=40,t.LATIN7_GENERAL_CI=41,t.LATIN7_GENERAL_CS=42,t.MACCE_BIN=43,t.CP1250_CROATIAN_CI=44,t.UTF8MB4_GENERAL_CI=45,t.UTF8MB4_BIN=46,t.LATIN1_BIN=47,t.LATIN1_GENERAL_CI=48,t.LATIN1_GENERAL_CS=49,t.CP1251_BIN=50,t.CP1251_GENERAL_CI=51,t.CP1251_GENERAL_CS=52,t.MACROMAN_BIN=53,t.UTF16_GENERAL_CI=54,t.UTF16_BIN=55,t.UTF16LE_GENERAL_CI=56,t.CP1256_GENERAL_CI=57,t.CP1257_BIN=58,t.CP1257_GENERAL_CI=59,t.UTF32_GENERAL_CI=60,t.UTF32_BIN=61,t.UTF16LE_BIN=62,t.BINARY=63,t.ARMSCII8_BIN=64,t.ASCII_BIN=65,t.CP1250_BIN=66,t.CP1256_BIN=67,t.CP866_BIN=68,t.DEC8_BIN=69,t.GREEK_BIN=70,t.HEBREW_BIN=71,t.HP8_BIN=72,t.KEYBCS2_BIN=73,t.KOI8R_BIN=74,t.KOI8U_BIN=75,t.UTF8_TOLOWER_CI=76,t.LATIN2_BIN=77,t.LATIN5_BIN=78,t.LATIN7_BIN=79,t.CP850_BIN=80,t.CP852_BIN=81,t.SWE7_BIN=82,t.UTF8_BIN=83,t.BIG5_BIN=84,t.EUCKR_BIN=85,t.GB2312_BIN=86,t.GBK_BIN=87,t.SJIS_BIN=88,t.TIS620_BIN=89,t.UCS2_BIN=90,t.UJIS_BIN=91,t.GEOSTD8_GENERAL_CI=92,t.GEOSTD8_BIN=93,t.LATIN1_SPANISH_CI=94,t.CP932_JAPANESE_CI=95,t.CP932_BIN=96,t.EUCJPMS_JAPANESE_CI=97,t.EUCJPMS_BIN=98,t.CP1250_POLISH_CI=99,t.UTF16_UNICODE_CI=101,t.UTF16_ICELANDIC_CI=102,t.UTF16_LATVIAN_CI=103,t.UTF16_ROMANIAN_CI=104,t.UTF16_SLOVENIAN_CI=105,t.UTF16_POLISH_CI=106,t.UTF16_ESTONIAN_CI=107,t.UTF16_SPANISH_CI=108,t.UTF16_SWEDISH_CI=109,t.UTF16_TURKISH_CI=110,t.UTF16_CZECH_CI=111,t.UTF16_DANISH_CI=112,t.UTF16_LITHUANIAN_CI=113,t.UTF16_SLOVAK_CI=114,t.UTF16_SPANISH2_CI=115,t.UTF16_ROMAN_CI=116,t.UTF16_PERSIAN_CI=117,t.UTF16_ESPERANTO_CI=118,t.UTF16_HUNGARIAN_CI=119,t.UTF16_SINHALA_CI=120,t.UTF16_GERMAN2_CI=121,t.UTF16_CROATIAN_CI=122,t.UTF16_UNICODE_520_CI=123,t.UTF16_VIETNAMESE_CI=124,t.UCS2_UNICODE_CI=128,t.UCS2_ICELANDIC_CI=129,t.UCS2_LATVIAN_CI=130,t.UCS2_ROMANIAN_CI=131,t.UCS2_SLOVENIAN_CI=132,t.UCS2_POLISH_CI=133,t.UCS2_ESTONIAN_CI=134,t.UCS2_SPANISH_CI=135,t.UCS2_SWEDISH_CI=136,t.UCS2_TURKISH_CI=137,t.UCS2_CZECH_CI=138,t.UCS2_DANISH_CI=139,t.UCS2_LITHUANIAN_CI=140,t.UCS2_SLOVAK_CI=141,t.UCS2_SPANISH2_CI=142,t.UCS2_ROMAN_CI=143,t.UCS2_PERSIAN_CI=144,t.UCS2_ESPERANTO_CI=145,t.UCS2_HUNGARIAN_CI=146,t.UCS2_SINHALA_CI=147,t.UCS2_GERMAN2_CI=148,t.UCS2_CROATIAN_CI=149,t.UCS2_UNICODE_520_CI=150,t.UCS2_VIETNAMESE_CI=151,t.UCS2_GENERAL_MYSQL500_CI=159,t.UTF32_UNICODE_CI=160,t.UTF32_ICELANDIC_CI=161,t.UTF32_LATVIAN_CI=162,t.UTF32_ROMANIAN_CI=163,t.UTF32_SLOVENIAN_CI=164,t.UTF32_POLISH_CI=165,t.UTF32_ESTONIAN_CI=166,t.UTF32_SPANISH_CI=167,t.UTF32_SWEDISH_CI=168,t.UTF32_TURKISH_CI=169,t.UTF32_CZECH_CI=170,t.UTF32_DANISH_CI=171,t.UTF32_LITHUANIAN_CI=172,t.UTF32_SLOVAK_CI=173,t.UTF32_SPANISH2_CI=174,t.UTF32_ROMAN_CI=175,t.UTF32_PERSIAN_CI=176,t.UTF32_ESPERANTO_CI=177,t.UTF32_HUNGARIAN_CI=178,t.UTF32_SINHALA_CI=179,t.UTF32_GERMAN2_CI=180,t.UTF32_CROATIAN_CI=181,t.UTF32_UNICODE_520_CI=182,t.UTF32_VIETNAMESE_CI=183,t.UTF8_UNICODE_CI=192,t.UTF8_ICELANDIC_CI=193,t.UTF8_LATVIAN_CI=194,t.UTF8_ROMANIAN_CI=195,t.UTF8_SLOVENIAN_CI=196,t.UTF8_POLISH_CI=197,t.UTF8_ESTONIAN_CI=198,t.UTF8_SPANISH_CI=199,t.UTF8_SWEDISH_CI=200,t.UTF8_TURKISH_CI=201,t.UTF8_CZECH_CI=202,t.UTF8_DANISH_CI=203,t.UTF8_LITHUANIAN_CI=204,t.UTF8_SLOVAK_CI=205,t.UTF8_SPANISH2_CI=206,t.UTF8_ROMAN_CI=207,t.UTF8_PERSIAN_CI=208,t.UTF8_ESPERANTO_CI=209,t.UTF8_HUNGARIAN_CI=210,t.UTF8_SINHALA_CI=211,t.UTF8_GERMAN2_CI=212,t.UTF8_CROATIAN_CI=213,t.UTF8_UNICODE_520_CI=214,t.UTF8_VIETNAMESE_CI=215,t.UTF8_GENERAL_MYSQL500_CI=223,t.UTF8MB4_UNICODE_CI=224,t.UTF8MB4_ICELANDIC_CI=225,t.UTF8MB4_LATVIAN_CI=226,t.UTF8MB4_ROMANIAN_CI=227,t.UTF8MB4_SLOVENIAN_CI=228,t.UTF8MB4_POLISH_CI=229,t.UTF8MB4_ESTONIAN_CI=230,t.UTF8MB4_SPANISH_CI=231,t.UTF8MB4_SWEDISH_CI=232,t.UTF8MB4_TURKISH_CI=233,t.UTF8MB4_CZECH_CI=234,t.UTF8MB4_DANISH_CI=235,t.UTF8MB4_LITHUANIAN_CI=236,t.UTF8MB4_SLOVAK_CI=237,t.UTF8MB4_SPANISH2_CI=238,t.UTF8MB4_ROMAN_CI=239,t.UTF8MB4_PERSIAN_CI=240,t.UTF8MB4_ESPERANTO_CI=241,t.UTF8MB4_HUNGARIAN_CI=242,t.UTF8MB4_SINHALA_CI=243,t.UTF8MB4_GERMAN2_CI=244,t.UTF8MB4_CROATIAN_CI=245,t.UTF8MB4_UNICODE_520_CI=246,t.UTF8MB4_VIETNAMESE_CI=247,t.GB18030_CHINESE_CI=248,t.GB18030_BIN=249,t.GB18030_UNICODE_520_CI=250,t.UTF8_GENERAL50_CI=253,t.UTF8MB4_0900_AI_CI=255,t.UTF8MB4_DE_PB_0900_AI_CI=256,t.UTF8MB4_IS_0900_AI_CI=257,t.UTF8MB4_LV_0900_AI_CI=258,t.UTF8MB4_RO_0900_AI_CI=259,t.UTF8MB4_SL_0900_AI_CI=260,t.UTF8MB4_PL_0900_AI_CI=261,t.UTF8MB4_ET_0900_AI_CI=262,t.UTF8MB4_ES_0900_AI_CI=263,t.UTF8MB4_SV_0900_AI_CI=264,t.UTF8MB4_TR_0900_AI_CI=265,t.UTF8MB4_CS_0900_AI_CI=266,t.UTF8MB4_DA_0900_AI_CI=267,t.UTF8MB4_LT_0900_AI_CI=268,t.UTF8MB4_SK_0900_AI_CI=269,t.UTF8MB4_ES_TRAD_0900_AI_CI=270,t.UTF8MB4_LA_0900_AI_CI=271,t.UTF8MB4_EO_0900_AI_CI=273,t.UTF8MB4_HU_0900_AI_CI=274,t.UTF8MB4_HR_0900_AI_CI=275,t.UTF8MB4_VI_0900_AI_CI=277,t.UTF8MB4_0900_AS_CS=278,t.UTF8MB4_DE_PB_0900_AS_CS=279,t.UTF8MB4_IS_0900_AS_CS=280,t.UTF8MB4_LV_0900_AS_CS=281,t.UTF8MB4_RO_0900_AS_CS=282,t.UTF8MB4_SL_0900_AS_CS=283,t.UTF8MB4_PL_0900_AS_CS=284,t.UTF8MB4_ET_0900_AS_CS=285,t.UTF8MB4_ES_0900_AS_CS=286,t.UTF8MB4_SV_0900_AS_CS=287,t.UTF8MB4_TR_0900_AS_CS=288,t.UTF8MB4_CS_0900_AS_CS=289,t.UTF8MB4_DA_0900_AS_CS=290,t.UTF8MB4_LT_0900_AS_CS=291,t.UTF8MB4_SK_0900_AS_CS=292,t.UTF8MB4_ES_TRAD_0900_AS_CS=293,t.UTF8MB4_LA_0900_AS_CS=294,t.UTF8MB4_EO_0900_AS_CS=296,t.UTF8MB4_HU_0900_AS_CS=297,t.UTF8MB4_HR_0900_AS_CS=298,t.UTF8MB4_VI_0900_AS_CS=300,t.UTF8MB4_JA_0900_AS_CS=303,t.UTF8MB4_JA_0900_AS_CS_KS=304,t.UTF8MB4_0900_AS_CI=305,t.UTF8MB4_RU_0900_AI_CI=306,t.UTF8MB4_RU_0900_AS_CS=307,t.UTF8MB4_ZH_0900_AS_CS=308,t.UTF8MB4_0900_BIN=309,t.BIG5=t.BIG5_CHINESE_CI,t.DEC8=t.DEC8_SWEDISH_CI,t.CP850=t.CP850_GENERAL_CI,t.HP8=t.HP8_ENGLISH_CI,t.KOI8R=t.KOI8R_GENERAL_CI,t.LATIN1=t.LATIN1_SWEDISH_CI,t.LATIN2=t.LATIN2_GENERAL_CI,t.SWE7=t.SWE7_SWEDISH_CI,t.ASCII=t.ASCII_GENERAL_CI,t.UJIS=t.UJIS_JAPANESE_CI,t.SJIS=t.SJIS_JAPANESE_CI,t.HEBREW=t.HEBREW_GENERAL_CI,t.TIS620=t.TIS620_THAI_CI,t.EUCKR=t.EUCKR_KOREAN_CI,t.KOI8U=t.KOI8U_GENERAL_CI,t.GB2312=t.GB2312_CHINESE_CI,t.GREEK=t.GREEK_GENERAL_CI,t.CP1250=t.CP1250_GENERAL_CI,t.GBK=t.GBK_CHINESE_CI,t.LATIN5=t.LATIN5_TURKISH_CI,t.ARMSCII8=t.ARMSCII8_GENERAL_CI,t.UTF8=t.UTF8_GENERAL_CI,t.UCS2=t.UCS2_GENERAL_CI,t.CP866=t.CP866_GENERAL_CI,t.KEYBCS2=t.KEYBCS2_GENERAL_CI,t.MACCE=t.MACCE_GENERAL_CI,t.MACROMAN=t.MACROMAN_GENERAL_CI,t.CP852=t.CP852_GENERAL_CI,t.LATIN7=t.LATIN7_GENERAL_CI,t.UTF8MB4=t.UTF8MB4_GENERAL_CI,t.CP1251=t.CP1251_GENERAL_CI,t.UTF16=t.UTF16_GENERAL_CI,t.UTF16LE=t.UTF16LE_GENERAL_CI,t.CP1256=t.CP1256_GENERAL_CI,t.CP1257=t.CP1257_GENERAL_CI,t.UTF32=t.UTF32_GENERAL_CI,t.CP932=t.CP932_JAPANESE_CI,t.EUCJPMS=t.EUCJPMS_JAPANESE_CI,t.GB18030=t.GB18030_CHINESE_CI,t.GEOSTD8=t.GEOSTD8_GENERAL_CI},18388:(e,t)=>{"use strict";t.LONG_PASSWORD=1,t.FOUND_ROWS=2,t.LONG_FLAG=4,t.CONNECT_WITH_DB=8,t.NO_SCHEMA=16,t.COMPRESS=32,t.ODBC=64,t.LOCAL_FILES=128,t.IGNORE_SPACE=256,t.PROTOCOL_41=512,t.INTERACTIVE=1024,t.SSL=2048,t.IGNORE_SIGPIPE=4096,t.TRANSACTIONS=8192,t.RESERVED=16384,t.SECURE_CONNECTION=32768,t.MULTI_STATEMENTS=65536,t.MULTI_RESULTS=131072,t.PS_MULTI_RESULTS=262144,t.PLUGIN_AUTH=524288,t.CONNECT_ATTRS=1048576,t.PLUGIN_AUTH_LENENC_CLIENT_DATA=2097152,t.CAN_HANDLE_EXPIRED_PASSWORDS=4194304,t.SESSION_TRACK=8388608,t.DEPRECATE_EOF=16777216,t.SSL_VERIFY_SERVER_CERT=1073741824,t.REMEMBER_OPTIONS=2147483648,t.MULTI_FACTOR_AUTHENTICATION=268435456},90633:e=>{"use strict";e.exports={SLEEP:0,QUIT:1,INIT_DB:2,QUERY:3,FIELD_LIST:4,CREATE_DB:5,DROP_DB:6,REFRESH:7,SHUTDOWN:8,STATISTICS:9,PROCESS_INFO:10,CONNECT:11,PROCESS_KILL:12,DEBUG:13,PING:14,TIME:15,DELAYED_INSERT:16,CHANGE_USER:17,BINLOG_DUMP:18,TABLE_DUMP:19,CONNECT_OUT:20,REGISTER_SLAVE:21,STMT_PREPARE:22,STMT_EXECUTE:23,STMT_SEND_LONG_DATA:24,STMT_CLOSE:25,STMT_RESET:26,SET_OPTION:27,STMT_FETCH:28,DAEMON:29,BINLOG_DUMP_GTID:30,UNKNOWN:255}},18541:e=>{"use strict";e.exports={NO_CURSOR:0,READ_ONLY:1,FOR_UPDATE:2,SCROLLABLE:3}},16397:e=>{"use strict";e.exports={big5:1,latin2:2,dec8:3,cp850:4,latin1:5,hp8:6,koi8r:7,swe7:10,ascii:11,eucjp:12,sjis:13,cp1251:14,hebrew:16,tis620:18,euckr:19,latin7:20,koi8u:22,gb2312:24,greek:25,cp1250:26,gbk:28,cp1257:29,latin5:30,armscii8:32,cesu8:33,ucs2:35,cp866:36,keybcs2:37,macintosh:38,macroman:39,cp852:40,utf8:45,utf8mb4:45,utf16:54,utf16le:56,cp1256:57,utf32:60,binary:63,geostd8:92,cp932:95,eucjpms:97,gb18030:248}},9556:(e,t)=>{"use strict";t.EE_CANTCREATEFILE=1,t.EE_READ=2,t.EE_WRITE=3,t.EE_BADCLOSE=4,t.EE_OUTOFMEMORY=5,t.EE_DELETE=6,t.EE_LINK=7,t.EE_EOFERR=9,t.EE_CANTLOCK=10,t.EE_CANTUNLOCK=11,t.EE_DIR=12,t.EE_STAT=13,t.EE_CANT_CHSIZE=14,t.EE_CANT_OPEN_STREAM=15,t.EE_GETWD=16,t.EE_SETWD=17,t.EE_LINK_WARNING=18,t.EE_OPEN_WARNING=19,t.EE_DISK_FULL=20,t.EE_CANT_MKDIR=21,t.EE_UNKNOWN_CHARSET=22,t.EE_OUT_OF_FILERESOURCES=23,t.EE_CANT_READLINK=24,t.EE_CANT_SYMLINK=25,t.EE_REALPATH=26,t.EE_SYNC=27,t.EE_UNKNOWN_COLLATION=28,t.EE_FILENOTFOUND=29,t.EE_FILE_NOT_CLOSED=30,t.EE_CHANGE_OWNERSHIP=31,t.EE_CHANGE_PERMISSIONS=32,t.EE_CANT_SEEK=33,t.EE_CAPACITY_EXCEEDED=34,t.EE_DISK_FULL_WITH_RETRY_MSG=35,t.EE_FAILED_TO_CREATE_TIMER=36,t.EE_FAILED_TO_DELETE_TIMER=37,t.EE_FAILED_TO_CREATE_TIMER_QUEUE=38,t.EE_FAILED_TO_START_TIMER_NOTIFY_THREAD=39,t.EE_FAILED_TO_CREATE_TIMER_NOTIFY_THREAD_INTERRUPT_EVENT=40,t.EE_EXITING_TIMER_NOTIFY_THREAD=41,t.EE_WIN_LIBRARY_LOAD_FAILED=42,t.EE_WIN_RUN_TIME_ERROR_CHECK=43,t.EE_FAILED_TO_DETERMINE_LARGE_PAGE_SIZE=44,t.EE_FAILED_TO_KILL_ALL_THREADS=45,t.EE_FAILED_TO_CREATE_IO_COMPLETION_PORT=46,t.EE_FAILED_TO_OPEN_DEFAULTS_FILE=47,t.EE_FAILED_TO_HANDLE_DEFAULTS_FILE=48,t.EE_WRONG_DIRECTIVE_IN_CONFIG_FILE=49,t.EE_SKIPPING_DIRECTIVE_DUE_TO_MAX_INCLUDE_RECURSION=50,t.EE_INCORRECT_GRP_DEFINITION_IN_CONFIG_FILE=51,t.EE_OPTION_WITHOUT_GRP_IN_CONFIG_FILE=52,t.EE_CONFIG_FILE_PERMISSION_ERROR=53,t.EE_IGNORE_WORLD_WRITABLE_CONFIG_FILE=54,t.EE_USING_DISABLED_OPTION=55,t.EE_USING_DISABLED_SHORT_OPTION=56,t.EE_USING_PASSWORD_ON_CLI_IS_INSECURE=57,t.EE_UNKNOWN_SUFFIX_FOR_VARIABLE=58,t.EE_SSL_ERROR_FROM_FILE=59,t.EE_SSL_ERROR=60,t.EE_NET_SEND_ERROR_IN_BOOTSTRAP=61,t.EE_PACKETS_OUT_OF_ORDER=62,t.EE_UNKNOWN_PROTOCOL_OPTION=63,t.EE_FAILED_TO_LOCATE_SERVER_PUBLIC_KEY=64,t.EE_PUBLIC_KEY_NOT_IN_PEM_FORMAT=65,t.EE_DEBUG_INFO=66,t.EE_UNKNOWN_VARIABLE=67,t.EE_UNKNOWN_OPTION=68,t.EE_UNKNOWN_SHORT_OPTION=69,t.EE_OPTION_WITHOUT_ARGUMENT=70,t.EE_OPTION_REQUIRES_ARGUMENT=71,t.EE_SHORT_OPTION_REQUIRES_ARGUMENT=72,t.EE_OPTION_IGNORED_DUE_TO_INVALID_VALUE=73,t.EE_OPTION_WITH_EMPTY_VALUE=74,t.EE_FAILED_TO_ASSIGN_MAX_VALUE_TO_OPTION=75,t.EE_INCORRECT_BOOLEAN_VALUE_FOR_OPTION=76,t.EE_FAILED_TO_SET_OPTION_VALUE=77,t.EE_INCORRECT_INT_VALUE_FOR_OPTION=78,t.EE_INCORRECT_UINT_VALUE_FOR_OPTION=79,t.EE_ADJUSTED_SIGNED_VALUE_FOR_OPTION=80,t.EE_ADJUSTED_UNSIGNED_VALUE_FOR_OPTION=81,t.EE_ADJUSTED_ULONGLONG_VALUE_FOR_OPTION=82,t.EE_ADJUSTED_DOUBLE_VALUE_FOR_OPTION=83,t.EE_INVALID_DECIMAL_VALUE_FOR_OPTION=84,t.EE_COLLATION_PARSER_ERROR=85,t.EE_FAILED_TO_RESET_BEFORE_PRIMARY_IGNORABLE_CHAR=86,t.EE_FAILED_TO_RESET_BEFORE_TERTIARY_IGNORABLE_CHAR=87,t.EE_SHIFT_CHAR_OUT_OF_RANGE=88,t.EE_RESET_CHAR_OUT_OF_RANGE=89,t.EE_UNKNOWN_LDML_TAG=90,t.EE_FAILED_TO_RESET_BEFORE_SECONDARY_IGNORABLE_CHAR=91,t.EE_FAILED_PROCESSING_DIRECTIVE=92,t.EE_PTHREAD_KILL_FAILED=93,t.HA_ERR_KEY_NOT_FOUND=120,t.HA_ERR_FOUND_DUPP_KEY=121,t.HA_ERR_INTERNAL_ERROR=122,t.HA_ERR_RECORD_CHANGED=123,t.HA_ERR_WRONG_INDEX=124,t.HA_ERR_ROLLED_BACK=125,t.HA_ERR_CRASHED=126,t.HA_ERR_WRONG_IN_RECORD=127,t.HA_ERR_OUT_OF_MEM=128,t.HA_ERR_NOT_A_TABLE=130,t.HA_ERR_WRONG_COMMAND=131,t.HA_ERR_OLD_FILE=132,t.HA_ERR_NO_ACTIVE_RECORD=133,t.HA_ERR_RECORD_DELETED=134,t.HA_ERR_RECORD_FILE_FULL=135,t.HA_ERR_INDEX_FILE_FULL=136,t.HA_ERR_END_OF_FILE=137,t.HA_ERR_UNSUPPORTED=138,t.HA_ERR_TOO_BIG_ROW=139,t.HA_WRONG_CREATE_OPTION=140,t.HA_ERR_FOUND_DUPP_UNIQUE=141,t.HA_ERR_UNKNOWN_CHARSET=142,t.HA_ERR_WRONG_MRG_TABLE_DEF=143,t.HA_ERR_CRASHED_ON_REPAIR=144,t.HA_ERR_CRASHED_ON_USAGE=145,t.HA_ERR_LOCK_WAIT_TIMEOUT=146,t.HA_ERR_LOCK_TABLE_FULL=147,t.HA_ERR_READ_ONLY_TRANSACTION=148,t.HA_ERR_LOCK_DEADLOCK=149,t.HA_ERR_CANNOT_ADD_FOREIGN=150,t.HA_ERR_NO_REFERENCED_ROW=151,t.HA_ERR_ROW_IS_REFERENCED=152,t.HA_ERR_NO_SAVEPOINT=153,t.HA_ERR_NON_UNIQUE_BLOCK_SIZE=154,t.HA_ERR_NO_SUCH_TABLE=155,t.HA_ERR_TABLE_EXIST=156,t.HA_ERR_NO_CONNECTION=157,t.HA_ERR_NULL_IN_SPATIAL=158,t.HA_ERR_TABLE_DEF_CHANGED=159,t.HA_ERR_NO_PARTITION_FOUND=160,t.HA_ERR_RBR_LOGGING_FAILED=161,t.HA_ERR_DROP_INDEX_FK=162,t.HA_ERR_FOREIGN_DUPLICATE_KEY=163,t.HA_ERR_TABLE_NEEDS_UPGRADE=164,t.HA_ERR_TABLE_READONLY=165,t.HA_ERR_AUTOINC_READ_FAILED=166,t.HA_ERR_AUTOINC_ERANGE=167,t.HA_ERR_GENERIC=168,t.HA_ERR_RECORD_IS_THE_SAME=169,t.HA_ERR_LOGGING_IMPOSSIBLE=170,t.HA_ERR_CORRUPT_EVENT=171,t.HA_ERR_NEW_FILE=172,t.HA_ERR_ROWS_EVENT_APPLY=173,t.HA_ERR_INITIALIZATION=174,t.HA_ERR_FILE_TOO_SHORT=175,t.HA_ERR_WRONG_CRC=176,t.HA_ERR_TOO_MANY_CONCURRENT_TRXS=177,t.HA_ERR_NOT_IN_LOCK_PARTITIONS=178,t.HA_ERR_INDEX_COL_TOO_LONG=179,t.HA_ERR_INDEX_CORRUPT=180,t.HA_ERR_UNDO_REC_TOO_BIG=181,t.HA_FTS_INVALID_DOCID=182,t.HA_ERR_TABLE_IN_FK_CHECK=183,t.HA_ERR_TABLESPACE_EXISTS=184,t.HA_ERR_TOO_MANY_FIELDS=185,t.HA_ERR_ROW_IN_WRONG_PARTITION=186,t.HA_ERR_INNODB_READ_ONLY=187,t.HA_ERR_FTS_EXCEED_RESULT_CACHE_LIMIT=188,t.HA_ERR_TEMP_FILE_WRITE_FAILURE=189,t.HA_ERR_INNODB_FORCED_RECOVERY=190,t.HA_ERR_FTS_TOO_MANY_WORDS_IN_PHRASE=191,t.HA_ERR_FK_DEPTH_EXCEEDED=192,t.HA_MISSING_CREATE_OPTION=193,t.HA_ERR_SE_OUT_OF_MEMORY=194,t.HA_ERR_TABLE_CORRUPT=195,t.HA_ERR_QUERY_INTERRUPTED=196,t.HA_ERR_TABLESPACE_MISSING=197,t.HA_ERR_TABLESPACE_IS_NOT_EMPTY=198,t.HA_ERR_WRONG_FILE_NAME=199,t.HA_ERR_NOT_ALLOWED_COMMAND=200,t.HA_ERR_COMPUTE_FAILED=201,t.HA_ERR_ROW_FORMAT_CHANGED=202,t.HA_ERR_NO_WAIT_LOCK=203,t.HA_ERR_DISK_FULL_NOWAIT=204,t.HA_ERR_NO_SESSION_TEMP=205,t.HA_ERR_WRONG_TABLE_NAME=206,t.HA_ERR_TOO_LONG_PATH=207,t.HA_ERR_SAMPLING_INIT_FAILED=208,t.HA_ERR_FTS_TOO_MANY_NESTED_EXP=209,t.ER_HASHCHK=1e3,t.ER_NISAMCHK=1001,t.ER_NO=1002,t.ER_YES=1003,t.ER_CANT_CREATE_FILE=1004,t.ER_CANT_CREATE_TABLE=1005,t.ER_CANT_CREATE_DB=1006,t.ER_DB_CREATE_EXISTS=1007,t.ER_DB_DROP_EXISTS=1008,t.ER_DB_DROP_DELETE=1009,t.ER_DB_DROP_RMDIR=1010,t.ER_CANT_DELETE_FILE=1011,t.ER_CANT_FIND_SYSTEM_REC=1012,t.ER_CANT_GET_STAT=1013,t.ER_CANT_GET_WD=1014,t.ER_CANT_LOCK=1015,t.ER_CANT_OPEN_FILE=1016,t.ER_FILE_NOT_FOUND=1017,t.ER_CANT_READ_DIR=1018,t.ER_CANT_SET_WD=1019,t.ER_CHECKREAD=1020,t.ER_DISK_FULL=1021,t.ER_DUP_KEY=1022,t.ER_ERROR_ON_CLOSE=1023,t.ER_ERROR_ON_READ=1024,t.ER_ERROR_ON_RENAME=1025,t.ER_ERROR_ON_WRITE=1026,t.ER_FILE_USED=1027,t.ER_FILSORT_ABORT=1028,t.ER_FORM_NOT_FOUND=1029,t.ER_GET_ERRNO=1030,t.ER_ILLEGAL_HA=1031,t.ER_KEY_NOT_FOUND=1032,t.ER_NOT_FORM_FILE=1033,t.ER_NOT_KEYFILE=1034,t.ER_OLD_KEYFILE=1035,t.ER_OPEN_AS_READONLY=1036,t.ER_OUTOFMEMORY=1037,t.ER_OUT_OF_SORTMEMORY=1038,t.ER_UNEXPECTED_EOF=1039,t.ER_CON_COUNT_ERROR=1040,t.ER_OUT_OF_RESOURCES=1041,t.ER_BAD_HOST_ERROR=1042,t.ER_HANDSHAKE_ERROR=1043,t.ER_DBACCESS_DENIED_ERROR=1044,t.ER_ACCESS_DENIED_ERROR=1045,t.ER_NO_DB_ERROR=1046,t.ER_UNKNOWN_COM_ERROR=1047,t.ER_BAD_NULL_ERROR=1048,t.ER_BAD_DB_ERROR=1049,t.ER_TABLE_EXISTS_ERROR=1050,t.ER_BAD_TABLE_ERROR=1051,t.ER_NON_UNIQ_ERROR=1052,t.ER_SERVER_SHUTDOWN=1053,t.ER_BAD_FIELD_ERROR=1054,t.ER_WRONG_FIELD_WITH_GROUP=1055,t.ER_WRONG_GROUP_FIELD=1056,t.ER_WRONG_SUM_SELECT=1057,t.ER_WRONG_VALUE_COUNT=1058,t.ER_TOO_LONG_IDENT=1059,t.ER_DUP_FIELDNAME=1060,t.ER_DUP_KEYNAME=1061,t.ER_DUP_ENTRY=1062,t.ER_WRONG_FIELD_SPEC=1063,t.ER_PARSE_ERROR=1064,t.ER_EMPTY_QUERY=1065,t.ER_NONUNIQ_TABLE=1066,t.ER_INVALID_DEFAULT=1067,t.ER_MULTIPLE_PRI_KEY=1068,t.ER_TOO_MANY_KEYS=1069,t.ER_TOO_MANY_KEY_PARTS=1070,t.ER_TOO_LONG_KEY=1071,t.ER_KEY_COLUMN_DOES_NOT_EXITS=1072,t.ER_BLOB_USED_AS_KEY=1073,t.ER_TOO_BIG_FIELDLENGTH=1074,t.ER_WRONG_AUTO_KEY=1075,t.ER_READY=1076,t.ER_NORMAL_SHUTDOWN=1077,t.ER_GOT_SIGNAL=1078,t.ER_SHUTDOWN_COMPLETE=1079,t.ER_FORCING_CLOSE=1080,t.ER_IPSOCK_ERROR=1081,t.ER_NO_SUCH_INDEX=1082,t.ER_WRONG_FIELD_TERMINATORS=1083,t.ER_BLOBS_AND_NO_TERMINATED=1084,t.ER_TEXTFILE_NOT_READABLE=1085,t.ER_FILE_EXISTS_ERROR=1086,t.ER_LOAD_INFO=1087,t.ER_ALTER_INFO=1088,t.ER_WRONG_SUB_KEY=1089,t.ER_CANT_REMOVE_ALL_FIELDS=1090,t.ER_CANT_DROP_FIELD_OR_KEY=1091,t.ER_INSERT_INFO=1092,t.ER_UPDATE_TABLE_USED=1093,t.ER_NO_SUCH_THREAD=1094,t.ER_KILL_DENIED_ERROR=1095,t.ER_NO_TABLES_USED=1096,t.ER_TOO_BIG_SET=1097,t.ER_NO_UNIQUE_LOGFILE=1098,t.ER_TABLE_NOT_LOCKED_FOR_WRITE=1099,t.ER_TABLE_NOT_LOCKED=1100,t.ER_BLOB_CANT_HAVE_DEFAULT=1101,t.ER_WRONG_DB_NAME=1102,t.ER_WRONG_TABLE_NAME=1103,t.ER_TOO_BIG_SELECT=1104,t.ER_UNKNOWN_ERROR=1105,t.ER_UNKNOWN_PROCEDURE=1106,t.ER_WRONG_PARAMCOUNT_TO_PROCEDURE=1107,t.ER_WRONG_PARAMETERS_TO_PROCEDURE=1108,t.ER_UNKNOWN_TABLE=1109,t.ER_FIELD_SPECIFIED_TWICE=1110,t.ER_INVALID_GROUP_FUNC_USE=1111,t.ER_UNSUPPORTED_EXTENSION=1112,t.ER_TABLE_MUST_HAVE_COLUMNS=1113,t.ER_RECORD_FILE_FULL=1114,t.ER_UNKNOWN_CHARACTER_SET=1115,t.ER_TOO_MANY_TABLES=1116,t.ER_TOO_MANY_FIELDS=1117,t.ER_TOO_BIG_ROWSIZE=1118,t.ER_STACK_OVERRUN=1119,t.ER_WRONG_OUTER_JOIN=1120,t.ER_NULL_COLUMN_IN_INDEX=1121,t.ER_CANT_FIND_UDF=1122,t.ER_CANT_INITIALIZE_UDF=1123,t.ER_UDF_NO_PATHS=1124,t.ER_UDF_EXISTS=1125,t.ER_CANT_OPEN_LIBRARY=1126,t.ER_CANT_FIND_DL_ENTRY=1127,t.ER_FUNCTION_NOT_DEFINED=1128,t.ER_HOST_IS_BLOCKED=1129,t.ER_HOST_NOT_PRIVILEGED=1130,t.ER_PASSWORD_ANONYMOUS_USER=1131,t.ER_PASSWORD_NOT_ALLOWED=1132,t.ER_PASSWORD_NO_MATCH=1133,t.ER_UPDATE_INFO=1134,t.ER_CANT_CREATE_THREAD=1135,t.ER_WRONG_VALUE_COUNT_ON_ROW=1136,t.ER_CANT_REOPEN_TABLE=1137,t.ER_INVALID_USE_OF_NULL=1138,t.ER_REGEXP_ERROR=1139,t.ER_MIX_OF_GROUP_FUNC_AND_FIELDS=1140,t.ER_NONEXISTING_GRANT=1141,t.ER_TABLEACCESS_DENIED_ERROR=1142,t.ER_COLUMNACCESS_DENIED_ERROR=1143,t.ER_ILLEGAL_GRANT_FOR_TABLE=1144,t.ER_GRANT_WRONG_HOST_OR_USER=1145,t.ER_NO_SUCH_TABLE=1146,t.ER_NONEXISTING_TABLE_GRANT=1147,t.ER_NOT_ALLOWED_COMMAND=1148,t.ER_SYNTAX_ERROR=1149,t.ER_UNUSED1=1150,t.ER_UNUSED2=1151,t.ER_ABORTING_CONNECTION=1152,t.ER_NET_PACKET_TOO_LARGE=1153,t.ER_NET_READ_ERROR_FROM_PIPE=1154,t.ER_NET_FCNTL_ERROR=1155,t.ER_NET_PACKETS_OUT_OF_ORDER=1156,t.ER_NET_UNCOMPRESS_ERROR=1157,t.ER_NET_READ_ERROR=1158,t.ER_NET_READ_INTERRUPTED=1159,t.ER_NET_ERROR_ON_WRITE=1160,t.ER_NET_WRITE_INTERRUPTED=1161,t.ER_TOO_LONG_STRING=1162,t.ER_TABLE_CANT_HANDLE_BLOB=1163,t.ER_TABLE_CANT_HANDLE_AUTO_INCREMENT=1164,t.ER_UNUSED3=1165,t.ER_WRONG_COLUMN_NAME=1166,t.ER_WRONG_KEY_COLUMN=1167,t.ER_WRONG_MRG_TABLE=1168,t.ER_DUP_UNIQUE=1169,t.ER_BLOB_KEY_WITHOUT_LENGTH=1170,t.ER_PRIMARY_CANT_HAVE_NULL=1171,t.ER_TOO_MANY_ROWS=1172,t.ER_REQUIRES_PRIMARY_KEY=1173,t.ER_NO_RAID_COMPILED=1174,t.ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE=1175,t.ER_KEY_DOES_NOT_EXITS=1176,t.ER_CHECK_NO_SUCH_TABLE=1177,t.ER_CHECK_NOT_IMPLEMENTED=1178,t.ER_CANT_DO_THIS_DURING_AN_TRANSACTION=1179,t.ER_ERROR_DURING_COMMIT=1180,t.ER_ERROR_DURING_ROLLBACK=1181,t.ER_ERROR_DURING_FLUSH_LOGS=1182,t.ER_ERROR_DURING_CHECKPOINT=1183,t.ER_NEW_ABORTING_CONNECTION=1184,t.ER_DUMP_NOT_IMPLEMENTED=1185,t.ER_FLUSH_MASTER_BINLOG_CLOSED=1186,t.ER_INDEX_REBUILD=1187,t.ER_SOURCE=1188,t.ER_SOURCE_NET_READ=1189,t.ER_SOURCE_NET_WRITE=1190,t.ER_FT_MATCHING_KEY_NOT_FOUND=1191,t.ER_LOCK_OR_ACTIVE_TRANSACTION=1192,t.ER_UNKNOWN_SYSTEM_VARIABLE=1193,t.ER_CRASHED_ON_USAGE=1194,t.ER_CRASHED_ON_REPAIR=1195,t.ER_WARNING_NOT_COMPLETE_ROLLBACK=1196,t.ER_TRANS_CACHE_FULL=1197,t.ER_SLAVE_MUST_STOP=1198,t.ER_REPLICA_NOT_RUNNING=1199,t.ER_BAD_REPLICA=1200,t.ER_CONNECTION_METADATA=1201,t.ER_REPLICA_THREAD=1202,t.ER_TOO_MANY_USER_CONNECTIONS=1203,t.ER_SET_CONSTANTS_ONLY=1204,t.ER_LOCK_WAIT_TIMEOUT=1205,t.ER_LOCK_TABLE_FULL=1206,t.ER_READ_ONLY_TRANSACTION=1207,t.ER_DROP_DB_WITH_READ_LOCK=1208,t.ER_CREATE_DB_WITH_READ_LOCK=1209,t.ER_WRONG_ARGUMENTS=1210,t.ER_NO_PERMISSION_TO_CREATE_USER=1211,t.ER_UNION_TABLES_IN_DIFFERENT_DIR=1212,t.ER_LOCK_DEADLOCK=1213,t.ER_TABLE_CANT_HANDLE_FT=1214,t.ER_CANNOT_ADD_FOREIGN=1215,t.ER_NO_REFERENCED_ROW=1216,t.ER_ROW_IS_REFERENCED=1217,t.ER_CONNECT_TO_SOURCE=1218,t.ER_QUERY_ON_MASTER=1219,t.ER_ERROR_WHEN_EXECUTING_COMMAND=1220,t.ER_WRONG_USAGE=1221,t.ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT=1222,t.ER_CANT_UPDATE_WITH_READLOCK=1223,t.ER_MIXING_NOT_ALLOWED=1224,t.ER_DUP_ARGUMENT=1225,t.ER_USER_LIMIT_REACHED=1226,t.ER_SPECIFIC_ACCESS_DENIED_ERROR=1227,t.ER_LOCAL_VARIABLE=1228,t.ER_GLOBAL_VARIABLE=1229,t.ER_NO_DEFAULT=1230,t.ER_WRONG_VALUE_FOR_VAR=1231,t.ER_WRONG_TYPE_FOR_VAR=1232,t.ER_VAR_CANT_BE_READ=1233,t.ER_CANT_USE_OPTION_HERE=1234,t.ER_NOT_SUPPORTED_YET=1235,t.ER_SOURCE_FATAL_ERROR_READING_BINLOG=1236,t.ER_REPLICA_IGNORED_TABLE=1237,t.ER_INCORRECT_GLOBAL_LOCAL_VAR=1238,t.ER_WRONG_FK_DEF=1239,t.ER_KEY_REF_DO_NOT_MATCH_TABLE_REF=1240,t.ER_OPERAND_COLUMNS=1241,t.ER_SUBQUERY_NO_1_ROW=1242,t.ER_UNKNOWN_STMT_HANDLER=1243,t.ER_CORRUPT_HELP_DB=1244,t.ER_CYCLIC_REFERENCE=1245,t.ER_AUTO_CONVERT=1246,t.ER_ILLEGAL_REFERENCE=1247,t.ER_DERIVED_MUST_HAVE_ALIAS=1248,t.ER_SELECT_REDUCED=1249,t.ER_TABLENAME_NOT_ALLOWED_HERE=1250,t.ER_NOT_SUPPORTED_AUTH_MODE=1251,t.ER_SPATIAL_CANT_HAVE_NULL=1252,t.ER_COLLATION_CHARSET_MISMATCH=1253,t.ER_SLAVE_WAS_RUNNING=1254,t.ER_SLAVE_WAS_NOT_RUNNING=1255,t.ER_TOO_BIG_FOR_UNCOMPRESS=1256,t.ER_ZLIB_Z_MEM_ERROR=1257,t.ER_ZLIB_Z_BUF_ERROR=1258,t.ER_ZLIB_Z_DATA_ERROR=1259,t.ER_CUT_VALUE_GROUP_CONCAT=1260,t.ER_WARN_TOO_FEW_RECORDS=1261,t.ER_WARN_TOO_MANY_RECORDS=1262,t.ER_WARN_NULL_TO_NOTNULL=1263,t.ER_WARN_DATA_OUT_OF_RANGE=1264,t.WARN_DATA_TRUNCATED=1265,t.ER_WARN_USING_OTHER_HANDLER=1266,t.ER_CANT_AGGREGATE_2COLLATIONS=1267,t.ER_DROP_USER=1268,t.ER_REVOKE_GRANTS=1269,t.ER_CANT_AGGREGATE_3COLLATIONS=1270,t.ER_CANT_AGGREGATE_NCOLLATIONS=1271,t.ER_VARIABLE_IS_NOT_STRUCT=1272,t.ER_UNKNOWN_COLLATION=1273,t.ER_REPLICA_IGNORED_SSL_PARAMS=1274,t.ER_SERVER_IS_IN_SECURE_AUTH_MODE=1275,t.ER_WARN_FIELD_RESOLVED=1276,t.ER_BAD_REPLICA_UNTIL_COND=1277,t.ER_MISSING_SKIP_REPLICA=1278,t.ER_UNTIL_COND_IGNORED=1279,t.ER_WRONG_NAME_FOR_INDEX=1280,t.ER_WRONG_NAME_FOR_CATALOG=1281,t.ER_WARN_QC_RESIZE=1282,t.ER_BAD_FT_COLUMN=1283,t.ER_UNKNOWN_KEY_CACHE=1284,t.ER_WARN_HOSTNAME_WONT_WORK=1285,t.ER_UNKNOWN_STORAGE_ENGINE=1286,t.ER_WARN_DEPRECATED_SYNTAX=1287,t.ER_NON_UPDATABLE_TABLE=1288,t.ER_FEATURE_DISABLED=1289,t.ER_OPTION_PREVENTS_STATEMENT=1290,t.ER_DUPLICATED_VALUE_IN_TYPE=1291,t.ER_TRUNCATED_WRONG_VALUE=1292,t.ER_TOO_MUCH_AUTO_TIMESTAMP_COLS=1293,t.ER_INVALID_ON_UPDATE=1294,t.ER_UNSUPPORTED_PS=1295,t.ER_GET_ERRMSG=1296,t.ER_GET_TEMPORARY_ERRMSG=1297,t.ER_UNKNOWN_TIME_ZONE=1298,t.ER_WARN_INVALID_TIMESTAMP=1299,t.ER_INVALID_CHARACTER_STRING=1300,t.ER_WARN_ALLOWED_PACKET_OVERFLOWED=1301,t.ER_CONFLICTING_DECLARATIONS=1302,t.ER_SP_NO_RECURSIVE_CREATE=1303,t.ER_SP_ALREADY_EXISTS=1304,t.ER_SP_DOES_NOT_EXIST=1305,t.ER_SP_DROP_FAILED=1306,t.ER_SP_STORE_FAILED=1307,t.ER_SP_LILABEL_MISMATCH=1308,t.ER_SP_LABEL_REDEFINE=1309,t.ER_SP_LABEL_MISMATCH=1310,t.ER_SP_UNINIT_VAR=1311,t.ER_SP_BADSELECT=1312,t.ER_SP_BADRETURN=1313,t.ER_SP_BADSTATEMENT=1314,t.ER_UPDATE_LOG_DEPRECATED_IGNORED=1315,t.ER_UPDATE_LOG_DEPRECATED_TRANSLATED=1316,t.ER_QUERY_INTERRUPTED=1317,t.ER_SP_WRONG_NO_OF_ARGS=1318,t.ER_SP_COND_MISMATCH=1319,t.ER_SP_NORETURN=1320,t.ER_SP_NORETURNEND=1321,t.ER_SP_BAD_CURSOR_QUERY=1322,t.ER_SP_BAD_CURSOR_SELECT=1323,t.ER_SP_CURSOR_MISMATCH=1324,t.ER_SP_CURSOR_ALREADY_OPEN=1325,t.ER_SP_CURSOR_NOT_OPEN=1326,t.ER_SP_UNDECLARED_VAR=1327,t.ER_SP_WRONG_NO_OF_FETCH_ARGS=1328,t.ER_SP_FETCH_NO_DATA=1329,t.ER_SP_DUP_PARAM=1330,t.ER_SP_DUP_VAR=1331,t.ER_SP_DUP_COND=1332,t.ER_SP_DUP_CURS=1333,t.ER_SP_CANT_ALTER=1334,t.ER_SP_SUBSELECT_NYI=1335,t.ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG=1336,t.ER_SP_VARCOND_AFTER_CURSHNDLR=1337,t.ER_SP_CURSOR_AFTER_HANDLER=1338,t.ER_SP_CASE_NOT_FOUND=1339,t.ER_FPARSER_TOO_BIG_FILE=1340,t.ER_FPARSER_BAD_HEADER=1341,t.ER_FPARSER_EOF_IN_COMMENT=1342,t.ER_FPARSER_ERROR_IN_PARAMETER=1343,t.ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER=1344,t.ER_VIEW_NO_EXPLAIN=1345,t.ER_FRM_UNKNOWN_TYPE=1346,t.ER_WRONG_OBJECT=1347,t.ER_NONUPDATEABLE_COLUMN=1348,t.ER_VIEW_SELECT_DERIVED=1349,t.ER_VIEW_SELECT_CLAUSE=1350,t.ER_VIEW_SELECT_VARIABLE=1351,t.ER_VIEW_SELECT_TMPTABLE=1352,t.ER_VIEW_WRONG_LIST=1353,t.ER_WARN_VIEW_MERGE=1354,t.ER_WARN_VIEW_WITHOUT_KEY=1355,t.ER_VIEW_INVALID=1356,t.ER_SP_NO_DROP_SP=1357,t.ER_SP_GOTO_IN_HNDLR=1358,t.ER_TRG_ALREADY_EXISTS=1359,t.ER_TRG_DOES_NOT_EXIST=1360,t.ER_TRG_ON_VIEW_OR_TEMP_TABLE=1361,t.ER_TRG_CANT_CHANGE_ROW=1362,t.ER_TRG_NO_SUCH_ROW_IN_TRG=1363,t.ER_NO_DEFAULT_FOR_FIELD=1364,t.ER_DIVISION_BY_ZERO=1365,t.ER_TRUNCATED_WRONG_VALUE_FOR_FIELD=1366,t.ER_ILLEGAL_VALUE_FOR_TYPE=1367,t.ER_VIEW_NONUPD_CHECK=1368,t.ER_VIEW_CHECK_FAILED=1369,t.ER_PROCACCESS_DENIED_ERROR=1370,t.ER_RELAY_LOG_FAIL=1371,t.ER_PASSWD_LENGTH=1372,t.ER_UNKNOWN_TARGET_BINLOG=1373,t.ER_IO_ERR_LOG_INDEX_READ=1374,t.ER_BINLOG_PURGE_PROHIBITED=1375,t.ER_FSEEK_FAIL=1376,t.ER_BINLOG_PURGE_FATAL_ERR=1377,t.ER_LOG_IN_USE=1378,t.ER_LOG_PURGE_UNKNOWN_ERR=1379,t.ER_RELAY_LOG_INIT=1380,t.ER_NO_BINARY_LOGGING=1381,t.ER_RESERVED_SYNTAX=1382,t.ER_WSAS_FAILED=1383,t.ER_DIFF_GROUPS_PROC=1384,t.ER_NO_GROUP_FOR_PROC=1385,t.ER_ORDER_WITH_PROC=1386,t.ER_LOGGING_PROHIBIT_CHANGING_OF=1387,t.ER_NO_FILE_MAPPING=1388,t.ER_WRONG_MAGIC=1389,t.ER_PS_MANY_PARAM=1390,t.ER_KEY_PART_0=1391,t.ER_VIEW_CHECKSUM=1392,t.ER_VIEW_MULTIUPDATE=1393,t.ER_VIEW_NO_INSERT_FIELD_LIST=1394,t.ER_VIEW_DELETE_MERGE_VIEW=1395,t.ER_CANNOT_USER=1396,t.ER_XAER_NOTA=1397,t.ER_XAER_INVAL=1398,t.ER_XAER_RMFAIL=1399,t.ER_XAER_OUTSIDE=1400,t.ER_XAER_RMERR=1401,t.ER_XA_RBROLLBACK=1402,t.ER_NONEXISTING_PROC_GRANT=1403,t.ER_PROC_AUTO_GRANT_FAIL=1404,t.ER_PROC_AUTO_REVOKE_FAIL=1405,t.ER_DATA_TOO_LONG=1406,t.ER_SP_BAD_SQLSTATE=1407,t.ER_STARTUP=1408,t.ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR=1409,t.ER_CANT_CREATE_USER_WITH_GRANT=1410,t.ER_WRONG_VALUE_FOR_TYPE=1411,t.ER_TABLE_DEF_CHANGED=1412,t.ER_SP_DUP_HANDLER=1413,t.ER_SP_NOT_VAR_ARG=1414,t.ER_SP_NO_RETSET=1415,t.ER_CANT_CREATE_GEOMETRY_OBJECT=1416,t.ER_FAILED_ROUTINE_BREAK_BINLOG=1417,t.ER_BINLOG_UNSAFE_ROUTINE=1418,t.ER_BINLOG_CREATE_ROUTINE_NEED_SUPER=1419,t.ER_EXEC_STMT_WITH_OPEN_CURSOR=1420,t.ER_STMT_HAS_NO_OPEN_CURSOR=1421,t.ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG=1422,t.ER_NO_DEFAULT_FOR_VIEW_FIELD=1423,t.ER_SP_NO_RECURSION=1424,t.ER_TOO_BIG_SCALE=1425,t.ER_TOO_BIG_PRECISION=1426,t.ER_M_BIGGER_THAN_D=1427,t.ER_WRONG_LOCK_OF_SYSTEM_TABLE=1428,t.ER_CONNECT_TO_FOREIGN_DATA_SOURCE=1429,t.ER_QUERY_ON_FOREIGN_DATA_SOURCE=1430,t.ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST=1431,t.ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE=1432,t.ER_FOREIGN_DATA_STRING_INVALID=1433,t.ER_CANT_CREATE_FEDERATED_TABLE=1434,t.ER_TRG_IN_WRONG_SCHEMA=1435,t.ER_STACK_OVERRUN_NEED_MORE=1436,t.ER_TOO_LONG_BODY=1437,t.ER_WARN_CANT_DROP_DEFAULT_KEYCACHE=1438,t.ER_TOO_BIG_DISPLAYWIDTH=1439,t.ER_XAER_DUPID=1440,t.ER_DATETIME_FUNCTION_OVERFLOW=1441,t.ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG=1442,t.ER_VIEW_PREVENT_UPDATE=1443,t.ER_PS_NO_RECURSION=1444,t.ER_SP_CANT_SET_AUTOCOMMIT=1445,t.ER_MALFORMED_DEFINER=1446,t.ER_VIEW_FRM_NO_USER=1447,t.ER_VIEW_OTHER_USER=1448,t.ER_NO_SUCH_USER=1449,t.ER_FORBID_SCHEMA_CHANGE=1450,t.ER_ROW_IS_REFERENCED_2=1451,t.ER_NO_REFERENCED_ROW_2=1452,t.ER_SP_BAD_VAR_SHADOW=1453,t.ER_TRG_NO_DEFINER=1454,t.ER_OLD_FILE_FORMAT=1455,t.ER_SP_RECURSION_LIMIT=1456,t.ER_SP_PROC_TABLE_CORRUPT=1457,t.ER_SP_WRONG_NAME=1458,t.ER_TABLE_NEEDS_UPGRADE=1459,t.ER_SP_NO_AGGREGATE=1460,t.ER_MAX_PREPARED_STMT_COUNT_REACHED=1461,t.ER_VIEW_RECURSIVE=1462,t.ER_NON_GROUPING_FIELD_USED=1463,t.ER_TABLE_CANT_HANDLE_SPKEYS=1464,t.ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA=1465,t.ER_REMOVED_SPACES=1466,t.ER_AUTOINC_READ_FAILED=1467,t.ER_USERNAME=1468,t.ER_HOSTNAME=1469,t.ER_WRONG_STRING_LENGTH=1470,t.ER_NON_INSERTABLE_TABLE=1471,t.ER_ADMIN_WRONG_MRG_TABLE=1472,t.ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT=1473,t.ER_NAME_BECOMES_EMPTY=1474,t.ER_AMBIGUOUS_FIELD_TERM=1475,t.ER_FOREIGN_SERVER_EXISTS=1476,t.ER_FOREIGN_SERVER_DOESNT_EXIST=1477,t.ER_ILLEGAL_HA_CREATE_OPTION=1478,t.ER_PARTITION_REQUIRES_VALUES_ERROR=1479,t.ER_PARTITION_WRONG_VALUES_ERROR=1480,t.ER_PARTITION_MAXVALUE_ERROR=1481,t.ER_PARTITION_SUBPARTITION_ERROR=1482,t.ER_PARTITION_SUBPART_MIX_ERROR=1483,t.ER_PARTITION_WRONG_NO_PART_ERROR=1484,t.ER_PARTITION_WRONG_NO_SUBPART_ERROR=1485,t.ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR=1486,t.ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR=1487,t.ER_FIELD_NOT_FOUND_PART_ERROR=1488,t.ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR=1489,t.ER_INCONSISTENT_PARTITION_INFO_ERROR=1490,t.ER_PARTITION_FUNC_NOT_ALLOWED_ERROR=1491,t.ER_PARTITIONS_MUST_BE_DEFINED_ERROR=1492,t.ER_RANGE_NOT_INCREASING_ERROR=1493,t.ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR=1494,t.ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR=1495,t.ER_PARTITION_ENTRY_ERROR=1496,t.ER_MIX_HANDLER_ERROR=1497,t.ER_PARTITION_NOT_DEFINED_ERROR=1498,t.ER_TOO_MANY_PARTITIONS_ERROR=1499,t.ER_SUBPARTITION_ERROR=1500,t.ER_CANT_CREATE_HANDLER_FILE=1501,t.ER_BLOB_FIELD_IN_PART_FUNC_ERROR=1502,t.ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF=1503,t.ER_NO_PARTS_ERROR=1504,t.ER_PARTITION_MGMT_ON_NONPARTITIONED=1505,t.ER_FOREIGN_KEY_ON_PARTITIONED=1506,t.ER_DROP_PARTITION_NON_EXISTENT=1507,t.ER_DROP_LAST_PARTITION=1508,t.ER_COALESCE_ONLY_ON_HASH_PARTITION=1509,t.ER_REORG_HASH_ONLY_ON_SAME_NO=1510,t.ER_REORG_NO_PARAM_ERROR=1511,t.ER_ONLY_ON_RANGE_LIST_PARTITION=1512,t.ER_ADD_PARTITION_SUBPART_ERROR=1513,t.ER_ADD_PARTITION_NO_NEW_PARTITION=1514,t.ER_COALESCE_PARTITION_NO_PARTITION=1515,t.ER_REORG_PARTITION_NOT_EXIST=1516,t.ER_SAME_NAME_PARTITION=1517,t.ER_NO_BINLOG_ERROR=1518,t.ER_CONSECUTIVE_REORG_PARTITIONS=1519,t.ER_REORG_OUTSIDE_RANGE=1520,t.ER_PARTITION_FUNCTION_FAILURE=1521,t.ER_PART_STATE_ERROR=1522,t.ER_LIMITED_PART_RANGE=1523,t.ER_PLUGIN_IS_NOT_LOADED=1524,t.ER_WRONG_VALUE=1525,t.ER_NO_PARTITION_FOR_GIVEN_VALUE=1526,t.ER_FILEGROUP_OPTION_ONLY_ONCE=1527,t.ER_CREATE_FILEGROUP_FAILED=1528,t.ER_DROP_FILEGROUP_FAILED=1529,t.ER_TABLESPACE_AUTO_EXTEND_ERROR=1530,t.ER_WRONG_SIZE_NUMBER=1531,t.ER_SIZE_OVERFLOW_ERROR=1532,t.ER_ALTER_FILEGROUP_FAILED=1533,t.ER_BINLOG_ROW_LOGGING_FAILED=1534,t.ER_BINLOG_ROW_WRONG_TABLE_DEF=1535,t.ER_BINLOG_ROW_RBR_TO_SBR=1536,t.ER_EVENT_ALREADY_EXISTS=1537,t.ER_EVENT_STORE_FAILED=1538,t.ER_EVENT_DOES_NOT_EXIST=1539,t.ER_EVENT_CANT_ALTER=1540,t.ER_EVENT_DROP_FAILED=1541,t.ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG=1542,t.ER_EVENT_ENDS_BEFORE_STARTS=1543,t.ER_EVENT_EXEC_TIME_IN_THE_PAST=1544,t.ER_EVENT_OPEN_TABLE_FAILED=1545,t.ER_EVENT_NEITHER_M_EXPR_NOR_M_AT=1546,t.ER_COL_COUNT_DOESNT_MATCH_CORRUPTED=1547,t.ER_CANNOT_LOAD_FROM_TABLE=1548,t.ER_EVENT_CANNOT_DELETE=1549,t.ER_EVENT_COMPILE_ERROR=1550,t.ER_EVENT_SAME_NAME=1551,t.ER_EVENT_DATA_TOO_LONG=1552,t.ER_DROP_INDEX_FK=1553,t.ER_WARN_DEPRECATED_SYNTAX_WITH_VER=1554,t.ER_CANT_WRITE_LOCK_LOG_TABLE=1555,t.ER_CANT_LOCK_LOG_TABLE=1556,t.ER_FOREIGN_DUPLICATE_KEY=1557,t.ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE=1558,t.ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR=1559,t.ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT=1560,t.ER_NDB_CANT_SWITCH_BINLOG_FORMAT=1561,t.ER_PARTITION_NO_TEMPORARY=1562,t.ER_PARTITION_CONST_DOMAIN_ERROR=1563,t.ER_PARTITION_FUNCTION_IS_NOT_ALLOWED=1564,t.ER_DDL_LOG_ERROR=1565,t.ER_NULL_IN_VALUES_LESS_THAN=1566,t.ER_WRONG_PARTITION_NAME=1567,t.ER_CANT_CHANGE_TX_CHARACTERISTICS=1568,t.ER_DUP_ENTRY_AUTOINCREMENT_CASE=1569,t.ER_EVENT_MODIFY_QUEUE_ERROR=1570,t.ER_EVENT_SET_VAR_ERROR=1571,t.ER_PARTITION_MERGE_ERROR=1572,t.ER_CANT_ACTIVATE_LOG=1573,t.ER_RBR_NOT_AVAILABLE=1574,t.ER_BASE64_DECODE_ERROR=1575,t.ER_EVENT_RECURSION_FORBIDDEN=1576,t.ER_EVENTS_DB_ERROR=1577,t.ER_ONLY_INTEGERS_ALLOWED=1578,t.ER_UNSUPORTED_LOG_ENGINE=1579,t.ER_BAD_LOG_STATEMENT=1580,t.ER_CANT_RENAME_LOG_TABLE=1581,t.ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT=1582,t.ER_WRONG_PARAMETERS_TO_NATIVE_FCT=1583,t.ER_WRONG_PARAMETERS_TO_STORED_FCT=1584,t.ER_NATIVE_FCT_NAME_COLLISION=1585,t.ER_DUP_ENTRY_WITH_KEY_NAME=1586,t.ER_BINLOG_PURGE_EMFILE=1587,t.ER_EVENT_CANNOT_CREATE_IN_THE_PAST=1588,t.ER_EVENT_CANNOT_ALTER_IN_THE_PAST=1589,t.ER_SLAVE_INCIDENT=1590,t.ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT=1591,t.ER_BINLOG_UNSAFE_STATEMENT=1592,t.ER_BINLOG_FATAL_ERROR=1593,t.ER_SLAVE_RELAY_LOG_READ_FAILURE=1594,t.ER_SLAVE_RELAY_LOG_WRITE_FAILURE=1595,t.ER_SLAVE_CREATE_EVENT_FAILURE=1596,t.ER_SLAVE_MASTER_COM_FAILURE=1597,t.ER_BINLOG_LOGGING_IMPOSSIBLE=1598,t.ER_VIEW_NO_CREATION_CTX=1599,t.ER_VIEW_INVALID_CREATION_CTX=1600,t.ER_SR_INVALID_CREATION_CTX=1601,t.ER_TRG_CORRUPTED_FILE=1602,t.ER_TRG_NO_CREATION_CTX=1603,t.ER_TRG_INVALID_CREATION_CTX=1604,t.ER_EVENT_INVALID_CREATION_CTX=1605,t.ER_TRG_CANT_OPEN_TABLE=1606,t.ER_CANT_CREATE_SROUTINE=1607,t.ER_NEVER_USED=1608,t.ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT=1609,t.ER_REPLICA_CORRUPT_EVENT=1610,t.ER_LOAD_DATA_INVALID_COLUMN=1611,t.ER_LOG_PURGE_NO_FILE=1612,t.ER_XA_RBTIMEOUT=1613,t.ER_XA_RBDEADLOCK=1614,t.ER_NEED_REPREPARE=1615,t.ER_DELAYED_NOT_SUPPORTED=1616,t.WARN_NO_CONNECTION_METADATA=1617,t.WARN_OPTION_IGNORED=1618;t.ER_PLUGIN_DELETE_BUILTIN=1619,t.WARN_PLUGIN_BUSY=1620,t.ER_VARIABLE_IS_READONLY=1621,t.ER_WARN_ENGINE_TRANSACTION_ROLLBACK=1622,t.ER_SLAVE_HEARTBEAT_FAILURE=1623,t.ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE=1624,t.ER_NDB_REPLICATION_SCHEMA_ERROR=1625,t.ER_CONFLICT_FN_PARSE_ERROR=1626,t.ER_EXCEPTIONS_WRITE_ERROR=1627,t.ER_TOO_LONG_TABLE_COMMENT=1628,t.ER_TOO_LONG_FIELD_COMMENT=1629,t.ER_FUNC_INEXISTENT_NAME_COLLISION=1630,t.ER_DATABASE_NAME=1631,t.ER_TABLE_NAME=1632,t.ER_PARTITION_NAME=1633,t.ER_SUBPARTITION_NAME=1634,t.ER_TEMPORARY_NAME=1635,t.ER_RENAMED_NAME=1636,t.ER_TOO_MANY_CONCURRENT_TRXS=1637,t.WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED=1638,t.ER_DEBUG_SYNC_TIMEOUT=1639,t.ER_DEBUG_SYNC_HIT_LIMIT=1640,t.ER_DUP_SIGNAL_SET=1641,t.ER_SIGNAL_WARN=1642,t.ER_SIGNAL_NOT_FOUND=1643,t.ER_SIGNAL_EXCEPTION=1644,t.ER_RESIGNAL_WITHOUT_ACTIVE_HANDLER=1645,t.ER_SIGNAL_BAD_CONDITION_TYPE=1646,t.WARN_COND_ITEM_TRUNCATED=1647,t.ER_COND_ITEM_TOO_LONG=1648,t.ER_UNKNOWN_LOCALE=1649,t.ER_REPLICA_IGNORE_SERVER_IDS=1650,t.ER_QUERY_CACHE_DISABLED=1651,t.ER_SAME_NAME_PARTITION_FIELD=1652,t.ER_PARTITION_COLUMN_LIST_ERROR=1653,t.ER_WRONG_TYPE_COLUMN_VALUE_ERROR=1654,t.ER_TOO_MANY_PARTITION_FUNC_FIELDS_ERROR=1655,t.ER_MAXVALUE_IN_VALUES_IN=1656,t.ER_TOO_MANY_VALUES_ERROR=1657,t.ER_ROW_SINGLE_PARTITION_FIELD_ERROR=1658,t.ER_FIELD_TYPE_NOT_ALLOWED_AS_PARTITION_FIELD=1659,t.ER_PARTITION_FIELDS_TOO_LONG=1660,t.ER_BINLOG_ROW_ENGINE_AND_STMT_ENGINE=1661,t.ER_BINLOG_ROW_MODE_AND_STMT_ENGINE=1662,t.ER_BINLOG_UNSAFE_AND_STMT_ENGINE=1663,t.ER_BINLOG_ROW_INJECTION_AND_STMT_ENGINE=1664,t.ER_BINLOG_STMT_MODE_AND_ROW_ENGINE=1665,t.ER_BINLOG_ROW_INJECTION_AND_STMT_MODE=1666,t.ER_BINLOG_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE=1667,t.ER_BINLOG_UNSAFE_LIMIT=1668,t.ER_UNUSED4=1669,t.ER_BINLOG_UNSAFE_SYSTEM_TABLE=1670,t.ER_BINLOG_UNSAFE_AUTOINC_COLUMNS=1671,t.ER_BINLOG_UNSAFE_UDF=1672,t.ER_BINLOG_UNSAFE_SYSTEM_VARIABLE=1673,t.ER_BINLOG_UNSAFE_SYSTEM_FUNCTION=1674,t.ER_BINLOG_UNSAFE_NONTRANS_AFTER_TRANS=1675,t.ER_MESSAGE_AND_STATEMENT=1676,t.ER_SLAVE_CONVERSION_FAILED=1677,t.ER_REPLICA_CANT_CREATE_CONVERSION=1678,t.ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_FORMAT=1679,t.ER_PATH_LENGTH=1680,t.ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT=1681,t.ER_WRONG_NATIVE_TABLE_STRUCTURE=1682,t.ER_WRONG_PERFSCHEMA_USAGE=1683,t.ER_WARN_I_S_SKIPPED_TABLE=1684,t.ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_DIRECT=1685,t.ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_DIRECT=1686,t.ER_SPATIAL_MUST_HAVE_GEOM_COL=1687,t.ER_TOO_LONG_INDEX_COMMENT=1688,t.ER_LOCK_ABORTED=1689,t.ER_DATA_OUT_OF_RANGE=1690,t.ER_WRONG_SPVAR_TYPE_IN_LIMIT=1691,t.ER_BINLOG_UNSAFE_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE=1692,t.ER_BINLOG_UNSAFE_MIXED_STATEMENT=1693,t.ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_SQL_LOG_BIN=1694,t.ER_STORED_FUNCTION_PREVENTS_SWITCH_SQL_LOG_BIN=1695,t.ER_FAILED_READ_FROM_PAR_FILE=1696,t.ER_VALUES_IS_NOT_INT_TYPE_ERROR=1697,t.ER_ACCESS_DENIED_NO_PASSWORD_ERROR=1698,t.ER_SET_PASSWORD_AUTH_PLUGIN=1699,t.ER_GRANT_PLUGIN_USER_EXISTS=1700,t.ER_TRUNCATE_ILLEGAL_FK=1701,t.ER_PLUGIN_IS_PERMANENT=1702,t.ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE_MIN=1703,t.ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE_MAX=1704,t.ER_STMT_CACHE_FULL=1705,t.ER_MULTI_UPDATE_KEY_CONFLICT=1706,t.ER_TABLE_NEEDS_REBUILD=1707,t.WARN_OPTION_BELOW_LIMIT=1708,t.ER_INDEX_COLUMN_TOO_LONG=1709,t.ER_ERROR_IN_TRIGGER_BODY=1710,t.ER_ERROR_IN_UNKNOWN_TRIGGER_BODY=1711,t.ER_INDEX_CORRUPT=1712,t.ER_UNDO_RECORD_TOO_BIG=1713,t.ER_BINLOG_UNSAFE_INSERT_IGNORE_SELECT=1714,t.ER_BINLOG_UNSAFE_INSERT_SELECT_UPDATE=1715,t.ER_BINLOG_UNSAFE_REPLACE_SELECT=1716,t.ER_BINLOG_UNSAFE_CREATE_IGNORE_SELECT=1717,t.ER_BINLOG_UNSAFE_CREATE_REPLACE_SELECT=1718,t.ER_BINLOG_UNSAFE_UPDATE_IGNORE=1719,t.ER_PLUGIN_NO_UNINSTALL=1720,t.ER_PLUGIN_NO_INSTALL=1721,t.ER_BINLOG_UNSAFE_WRITE_AUTOINC_SELECT=1722,t.ER_BINLOG_UNSAFE_CREATE_SELECT_AUTOINC=1723,t.ER_BINLOG_UNSAFE_INSERT_TWO_KEYS=1724,t.ER_TABLE_IN_FK_CHECK=1725,t.ER_UNSUPPORTED_ENGINE=1726,t.ER_BINLOG_UNSAFE_AUTOINC_NOT_FIRST=1727,t.ER_CANNOT_LOAD_FROM_TABLE_V2=1728,t.ER_SOURCE_DELAY_VALUE_OUT_OF_RANGE=1729,t.ER_ONLY_FD_AND_RBR_EVENTS_ALLOWED_IN_BINLOG_STATEMENT=1730,t.ER_PARTITION_EXCHANGE_DIFFERENT_OPTION=1731,t.ER_PARTITION_EXCHANGE_PART_TABLE=1732,t.ER_PARTITION_EXCHANGE_TEMP_TABLE=1733,t.ER_PARTITION_INSTEAD_OF_SUBPARTITION=1734,t.ER_UNKNOWN_PARTITION=1735,t.ER_TABLES_DIFFERENT_METADATA=1736,t.ER_ROW_DOES_NOT_MATCH_PARTITION=1737,t.ER_BINLOG_CACHE_SIZE_GREATER_THAN_MAX=1738,t.ER_WARN_INDEX_NOT_APPLICABLE=1739,t.ER_PARTITION_EXCHANGE_FOREIGN_KEY=1740,t.ER_NO_SUCH_KEY_VALUE=1741,t.ER_RPL_INFO_DATA_TOO_LONG=1742,t.ER_NETWORK_READ_EVENT_CHECKSUM_FAILURE=1743,t.ER_BINLOG_READ_EVENT_CHECKSUM_FAILURE=1744,t.ER_BINLOG_STMT_CACHE_SIZE_GREATER_THAN_MAX=1745,t.ER_CANT_UPDATE_TABLE_IN_CREATE_TABLE_SELECT=1746,t.ER_PARTITION_CLAUSE_ON_NONPARTITIONED=1747,t.ER_ROW_DOES_NOT_MATCH_GIVEN_PARTITION_SET=1748,t.ER_NO_SUCH_PARTITION=1749,t.ER_CHANGE_RPL_INFO_REPOSITORY_FAILURE=1750,t.ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_CREATED_TEMP_TABLE=1751,t.ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_DROPPED_TEMP_TABLE=1752,t.ER_MTA_FEATURE_IS_NOT_SUPPORTED=1753,t.ER_MTA_UPDATED_DBS_GREATER_MAX=1754,t.ER_MTA_CANT_PARALLEL=1755,t.ER_MTA_INCONSISTENT_DATA=1756,t.ER_FULLTEXT_NOT_SUPPORTED_WITH_PARTITIONING=1757,t.ER_DA_INVALID_CONDITION_NUMBER=1758,t.ER_INSECURE_PLAIN_TEXT=1759,t.ER_INSECURE_CHANGE_SOURCE=1760,t.ER_FOREIGN_DUPLICATE_KEY_WITH_CHILD_INFO=1761,t.ER_FOREIGN_DUPLICATE_KEY_WITHOUT_CHILD_INFO=1762,t.ER_SQLTHREAD_WITH_SECURE_REPLICA=1763,t.ER_TABLE_HAS_NO_FT=1764,t.ER_VARIABLE_NOT_SETTABLE_IN_SF_OR_TRIGGER=1765,t.ER_VARIABLE_NOT_SETTABLE_IN_TRANSACTION=1766,t.ER_GTID_NEXT_IS_NOT_IN_GTID_NEXT_LIST=1767,t.ER_CANT_CHANGE_GTID_NEXT_IN_TRANSACTION=1768,t.ER_SET_STATEMENT_CANNOT_INVOKE_FUNCTION=1769,t.ER_GTID_NEXT_CANT_BE_AUTOMATIC_IF_GTID_NEXT_LIST_IS_NON_NULL=1770,t.ER_SKIPPING_LOGGED_TRANSACTION=1771,t.ER_MALFORMED_GTID_SET_SPECIFICATION=1772,t.ER_MALFORMED_GTID_SET_ENCODING=1773,t.ER_MALFORMED_GTID_SPECIFICATION=1774,t.ER_GNO_EXHAUSTED=1775,t.ER_BAD_REPLICA_AUTO_POSITION=1776,t.ER_AUTO_POSITION_REQUIRES_GTID_MODE_NOT_OFF=1777,t.ER_CANT_DO_IMPLICIT_COMMIT_IN_TRX_WHEN_GTID_NEXT_IS_SET=1778,t.ER_GTID_MODE_ON_REQUIRES_ENFORCE_GTID_CONSISTENCY_ON=1779,t.ER_GTID_MODE_REQUIRES_BINLOG=1780,t.ER_CANT_SET_GTID_NEXT_TO_GTID_WHEN_GTID_MODE_IS_OFF=1781,t.ER_CANT_SET_GTID_NEXT_TO_ANONYMOUS_WHEN_GTID_MODE_IS_ON=1782,t.ER_CANT_SET_GTID_NEXT_LIST_TO_NON_NULL_WHEN_GTID_MODE_IS_OFF=1783,t.ER_FOUND_GTID_EVENT_WHEN_GTID_MODE_IS_OFF=1784,t.ER_GTID_UNSAFE_NON_TRANSACTIONAL_TABLE=1785,t.ER_GTID_UNSAFE_CREATE_SELECT=1786,t.ER_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE_IN_TRANSACTION=1787,t.ER_GTID_MODE_CAN_ONLY_CHANGE_ONE_STEP_AT_A_TIME=1788,t.ER_SOURCE_HAS_PURGED_REQUIRED_GTIDS=1789,t.ER_CANT_SET_GTID_NEXT_WHEN_OWNING_GTID=1790,t.ER_UNKNOWN_EXPLAIN_FORMAT=1791,t.ER_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION=1792,t.ER_TOO_LONG_TABLE_PARTITION_COMMENT=1793,t.ER_REPLICA_CONFIGURATION=1794,t.ER_INNODB_FT_LIMIT=1795,t.ER_INNODB_NO_FT_TEMP_TABLE=1796,t.ER_INNODB_FT_WRONG_DOCID_COLUMN=1797,t.ER_INNODB_FT_WRONG_DOCID_INDEX=1798,t.ER_INNODB_ONLINE_LOG_TOO_BIG=1799,t.ER_UNKNOWN_ALTER_ALGORITHM=1800,t.ER_UNKNOWN_ALTER_LOCK=1801,t.ER_MTA_CHANGE_SOURCE_CANT_RUN_WITH_GAPS=1802,t.ER_MTA_RECOVERY_FAILURE=1803,t.ER_MTA_RESET_WORKERS=1804,t.ER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2=1805,t.ER_REPLICA_SILENT_RETRY_TRANSACTION=1806,t.ER_DISCARD_FK_CHECKS_RUNNING=1807,t.ER_TABLE_SCHEMA_MISMATCH=1808,t.ER_TABLE_IN_SYSTEM_TABLESPACE=1809,t.ER_IO_READ_ERROR=1810,t.ER_IO_WRITE_ERROR=1811,t.ER_TABLESPACE_MISSING=1812,t.ER_TABLESPACE_EXISTS=1813,t.ER_TABLESPACE_DISCARDED=1814,t.ER_INTERNAL_ERROR=1815,t.ER_INNODB_IMPORT_ERROR=1816,t.ER_INNODB_INDEX_CORRUPT=1817,t.ER_INVALID_YEAR_COLUMN_LENGTH=1818,t.ER_NOT_VALID_PASSWORD=1819,t.ER_MUST_CHANGE_PASSWORD=1820,t.ER_FK_NO_INDEX_CHILD=1821,t.ER_FK_NO_INDEX_PARENT=1822,t.ER_FK_FAIL_ADD_SYSTEM=1823,t.ER_FK_CANNOT_OPEN_PARENT=1824,t.ER_FK_INCORRECT_OPTION=1825,t.ER_FK_DUP_NAME=1826,t.ER_PASSWORD_FORMAT=1827,t.ER_FK_COLUMN_CANNOT_DROP=1828,t.ER_FK_COLUMN_CANNOT_DROP_CHILD=1829,t.ER_FK_COLUMN_NOT_NULL=1830,t.ER_DUP_INDEX=1831,t.ER_FK_COLUMN_CANNOT_CHANGE=1832,t.ER_FK_COLUMN_CANNOT_CHANGE_CHILD=1833,t.ER_UNUSED5=1834,t.ER_MALFORMED_PACKET=1835,t.ER_READ_ONLY_MODE=1836,t.ER_GTID_NEXT_TYPE_UNDEFINED_GTID=1837,t.ER_VARIABLE_NOT_SETTABLE_IN_SP=1838,t.ER_CANT_SET_GTID_PURGED_WHEN_GTID_MODE_IS_OFF=1839,t.ER_CANT_SET_GTID_PURGED_WHEN_GTID_EXECUTED_IS_NOT_EMPTY=1840,t.ER_CANT_SET_GTID_PURGED_WHEN_OWNED_GTIDS_IS_NOT_EMPTY=1841,t.ER_GTID_PURGED_WAS_CHANGED=1842,t.ER_GTID_EXECUTED_WAS_CHANGED=1843,t.ER_BINLOG_STMT_MODE_AND_NO_REPL_TABLES=1844,t.ER_ALTER_OPERATION_NOT_SUPPORTED=1845,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON=1846,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COPY=1847,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_PARTITION=1848,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_RENAME=1849,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE=1850,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_CHECK=1851,t.ER_UNUSED6=1852,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOPK=1853,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_AUTOINC=1854,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_HIDDEN_FTS=1855,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_CHANGE_FTS=1856,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FTS=1857,t.ER_SQL_REPLICA_SKIP_COUNTER_NOT_SETTABLE_IN_GTID_MODE=1858,t.ER_DUP_UNKNOWN_IN_INDEX=1859,t.ER_IDENT_CAUSES_TOO_LONG_PATH=1860,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOT_NULL=1861,t.ER_MUST_CHANGE_PASSWORD_LOGIN=1862,t.ER_ROW_IN_WRONG_PARTITION=1863,t.ER_MTA_EVENT_BIGGER_PENDING_JOBS_SIZE_MAX=1864,t.ER_INNODB_NO_FT_USES_PARSER=1865,t.ER_BINLOG_LOGICAL_CORRUPTION=1866,t.ER_WARN_PURGE_LOG_IN_USE=1867,t.ER_WARN_PURGE_LOG_IS_ACTIVE=1868,t.ER_AUTO_INCREMENT_CONFLICT=1869,t.WARN_ON_BLOCKHOLE_IN_RBR=1870,t.ER_REPLICA_CM_INIT_REPOSITORY=1871,t.ER_REPLICA_AM_INIT_REPOSITORY=1872,t.ER_ACCESS_DENIED_CHANGE_USER_ERROR=1873,t.ER_INNODB_READ_ONLY=1874,t.ER_STOP_REPLICA_SQL_THREAD_TIMEOUT=1875,t.ER_STOP_REPLICA_IO_THREAD_TIMEOUT=1876,t.ER_TABLE_CORRUPT=1877,t.ER_TEMP_FILE_WRITE_FAILURE=1878,t.ER_INNODB_FT_AUX_NOT_HEX_ID=1879,t.ER_OLD_TEMPORALS_UPGRADED=1880,t.ER_INNODB_FORCED_RECOVERY=1881,t.ER_AES_INVALID_IV=1882,t.ER_PLUGIN_CANNOT_BE_UNINSTALLED=1883,t.ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_ASSIGNED_GTID=1884,t.ER_REPLICA_HAS_MORE_GTIDS_THAN_SOURCE=1885,t.ER_MISSING_KEY=1886,t.WARN_NAMED_PIPE_ACCESS_EVERYONE=1887,t.ER_FILE_CORRUPT=3e3,t.ER_ERROR_ON_SOURCE=3001,t.ER_INCONSISTENT_ERROR=3002,t.ER_STORAGE_ENGINE_NOT_LOADED=3003,t.ER_GET_STACKED_DA_WITHOUT_ACTIVE_HANDLER=3004,t.ER_WARN_LEGACY_SYNTAX_CONVERTED=3005,t.ER_BINLOG_UNSAFE_FULLTEXT_PLUGIN=3006,t.ER_CANNOT_DISCARD_TEMPORARY_TABLE=3007,t.ER_FK_DEPTH_EXCEEDED=3008,t.ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE_V2=3009,t.ER_WARN_TRIGGER_DOESNT_HAVE_CREATED=3010,t.ER_REFERENCED_TRG_DOES_NOT_EXIST=3011,t.ER_EXPLAIN_NOT_SUPPORTED=3012,t.ER_INVALID_FIELD_SIZE=3013,t.ER_MISSING_HA_CREATE_OPTION=3014,t.ER_ENGINE_OUT_OF_MEMORY=3015,t.ER_PASSWORD_EXPIRE_ANONYMOUS_USER=3016,t.ER_REPLICA_SQL_THREAD_MUST_STOP=3017,t.ER_NO_FT_MATERIALIZED_SUBQUERY=3018,t.ER_INNODB_UNDO_LOG_FULL=3019,t.ER_INVALID_ARGUMENT_FOR_LOGARITHM=3020,t.ER_REPLICA_CHANNEL_IO_THREAD_MUST_STOP=3021,t.ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO=3022,t.ER_WARN_ONLY_SOURCE_LOG_FILE_NO_POS=3023,t.ER_QUERY_TIMEOUT=3024,t.ER_NON_RO_SELECT_DISABLE_TIMER=3025,t.ER_DUP_LIST_ENTRY=3026,t.ER_SQL_MODE_NO_EFFECT=3027,t.ER_AGGREGATE_ORDER_FOR_UNION=3028,t.ER_AGGREGATE_ORDER_NON_AGG_QUERY=3029,t.ER_REPLICA_WORKER_STOPPED_PREVIOUS_THD_ERROR=3030,t.ER_DONT_SUPPORT_REPLICA_PRESERVE_COMMIT_ORDER=3031,t.ER_SERVER_OFFLINE_MODE=3032,t.ER_GIS_DIFFERENT_SRIDS=3033,t.ER_GIS_UNSUPPORTED_ARGUMENT=3034,t.ER_GIS_UNKNOWN_ERROR=3035,t.ER_GIS_UNKNOWN_EXCEPTION=3036,t.ER_GIS_INVALID_DATA=3037,t.ER_BOOST_GEOMETRY_EMPTY_INPUT_EXCEPTION=3038,t.ER_BOOST_GEOMETRY_CENTROID_EXCEPTION=3039,t.ER_BOOST_GEOMETRY_OVERLAY_INVALID_INPUT_EXCEPTION=3040,t.ER_BOOST_GEOMETRY_TURN_INFO_EXCEPTION=3041,t.ER_BOOST_GEOMETRY_SELF_INTERSECTION_POINT_EXCEPTION=3042,t.ER_BOOST_GEOMETRY_UNKNOWN_EXCEPTION=3043,t.ER_STD_BAD_ALLOC_ERROR=3044,t.ER_STD_DOMAIN_ERROR=3045,t.ER_STD_LENGTH_ERROR=3046,t.ER_STD_INVALID_ARGUMENT=3047,t.ER_STD_OUT_OF_RANGE_ERROR=3048,t.ER_STD_OVERFLOW_ERROR=3049,t.ER_STD_RANGE_ERROR=3050,t.ER_STD_UNDERFLOW_ERROR=3051,t.ER_STD_LOGIC_ERROR=3052,t.ER_STD_RUNTIME_ERROR=3053,t.ER_STD_UNKNOWN_EXCEPTION=3054,t.ER_GIS_DATA_WRONG_ENDIANESS=3055,t.ER_CHANGE_SOURCE_PASSWORD_LENGTH=3056,t.ER_USER_LOCK_WRONG_NAME=3057,t.ER_USER_LOCK_DEADLOCK=3058,t.ER_REPLACE_INACCESSIBLE_ROWS=3059,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_GIS=3060,t.ER_ILLEGAL_USER_VAR=3061,t.ER_GTID_MODE_OFF=3062,t.ER_UNSUPPORTED_BY_REPLICATION_THREAD=3063,t.ER_INCORRECT_TYPE=3064,t.ER_FIELD_IN_ORDER_NOT_SELECT=3065,t.ER_AGGREGATE_IN_ORDER_NOT_SELECT=3066,t.ER_INVALID_RPL_WILD_TABLE_FILTER_PATTERN=3067,t.ER_NET_OK_PACKET_TOO_LARGE=3068,t.ER_INVALID_JSON_DATA=3069,t.ER_INVALID_GEOJSON_MISSING_MEMBER=3070,t.ER_INVALID_GEOJSON_WRONG_TYPE=3071,t.ER_INVALID_GEOJSON_UNSPECIFIED=3072,t.ER_DIMENSION_UNSUPPORTED=3073,t.ER_REPLICA_CHANNEL_DOES_NOT_EXIST=3074,t.ER_SLAVE_MULTIPLE_CHANNELS_HOST_PORT=3075,t.ER_REPLICA_CHANNEL_NAME_INVALID_OR_TOO_LONG=3076,t.ER_REPLICA_NEW_CHANNEL_WRONG_REPOSITORY=3077,t.ER_SLAVE_CHANNEL_DELETE=3078,t.ER_REPLICA_MULTIPLE_CHANNELS_CMD=3079,t.ER_REPLICA_MAX_CHANNELS_EXCEEDED=3080,t.ER_REPLICA_CHANNEL_MUST_STOP=3081,t.ER_REPLICA_CHANNEL_NOT_RUNNING=3082,t.ER_REPLICA_CHANNEL_WAS_RUNNING=3083,t.ER_REPLICA_CHANNEL_WAS_NOT_RUNNING=3084,t.ER_REPLICA_CHANNEL_SQL_THREAD_MUST_STOP=3085,t.ER_REPLICA_CHANNEL_SQL_SKIP_COUNTER=3086,t.ER_WRONG_FIELD_WITH_GROUP_V2=3087,t.ER_MIX_OF_GROUP_FUNC_AND_FIELDS_V2=3088,t.ER_WARN_DEPRECATED_SYSVAR_UPDATE=3089,t.ER_WARN_DEPRECATED_SQLMODE=3090,t.ER_CANNOT_LOG_PARTIAL_DROP_DATABASE_WITH_GTID=3091,t.ER_GROUP_REPLICATION_CONFIGURATION=3092,t.ER_GROUP_REPLICATION_RUNNING=3093,t.ER_GROUP_REPLICATION_APPLIER_INIT_ERROR=3094,t.ER_GROUP_REPLICATION_STOP_APPLIER_THREAD_TIMEOUT=3095,t.ER_GROUP_REPLICATION_COMMUNICATION_LAYER_SESSION_ERROR=3096,t.ER_GROUP_REPLICATION_COMMUNICATION_LAYER_JOIN_ERROR=3097,t.ER_BEFORE_DML_VALIDATION_ERROR=3098,t.ER_PREVENTS_VARIABLE_WITHOUT_RBR=3099,t.ER_RUN_HOOK_ERROR=3100,t.ER_TRANSACTION_ROLLBACK_DURING_COMMIT=3101,t.ER_GENERATED_COLUMN_FUNCTION_IS_NOT_ALLOWED=3102,t.ER_UNSUPPORTED_ALTER_INPLACE_ON_VIRTUAL_COLUMN=3103,t.ER_WRONG_FK_OPTION_FOR_GENERATED_COLUMN=3104,t.ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN=3105,t.ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN=3106,t.ER_GENERATED_COLUMN_NON_PRIOR=3107,t.ER_DEPENDENT_BY_GENERATED_COLUMN=3108,t.ER_GENERATED_COLUMN_REF_AUTO_INC=3109,t.ER_FEATURE_NOT_AVAILABLE=3110,t.ER_CANT_SET_GTID_MODE=3111,t.ER_CANT_USE_AUTO_POSITION_WITH_GTID_MODE_OFF=3112,t.ER_CANT_REPLICATE_ANONYMOUS_WITH_AUTO_POSITION=3113,t.ER_CANT_REPLICATE_ANONYMOUS_WITH_GTID_MODE_ON=3114,t.ER_CANT_REPLICATE_GTID_WITH_GTID_MODE_OFF=3115,t.ER_CANT_ENFORCE_GTID_CONSISTENCY_WITH_ONGOING_GTID_VIOLATING_TX=3116,t.ER_ENFORCE_GTID_CONSISTENCY_WARN_WITH_ONGOING_GTID_VIOLATING_TX=3117,t.ER_ACCOUNT_HAS_BEEN_LOCKED=3118,t.ER_WRONG_TABLESPACE_NAME=3119,t.ER_TABLESPACE_IS_NOT_EMPTY=3120,t.ER_WRONG_FILE_NAME=3121,t.ER_BOOST_GEOMETRY_INCONSISTENT_TURNS_EXCEPTION=3122,t.ER_WARN_OPTIMIZER_HINT_SYNTAX_ERROR=3123,t.ER_WARN_BAD_MAX_EXECUTION_TIME=3124,t.ER_WARN_UNSUPPORTED_MAX_EXECUTION_TIME=3125,t.ER_WARN_CONFLICTING_HINT=3126,t.ER_WARN_UNKNOWN_QB_NAME=3127,t.ER_UNRESOLVED_HINT_NAME=3128,t.ER_WARN_ON_MODIFYING_GTID_EXECUTED_TABLE=3129,t.ER_PLUGGABLE_PROTOCOL_COMMAND_NOT_SUPPORTED=3130,t.ER_LOCKING_SERVICE_WRONG_NAME=3131,t.ER_LOCKING_SERVICE_DEADLOCK=3132,t.ER_LOCKING_SERVICE_TIMEOUT=3133,t.ER_GIS_MAX_POINTS_IN_GEOMETRY_OVERFLOWED=3134,t.ER_SQL_MODE_MERGED=3135,t.ER_VTOKEN_PLUGIN_TOKEN_MISMATCH=3136,t.ER_VTOKEN_PLUGIN_TOKEN_NOT_FOUND=3137,t.ER_CANT_SET_VARIABLE_WHEN_OWNING_GTID=3138,t.ER_REPLICA_CHANNEL_OPERATION_NOT_ALLOWED=3139,t.ER_INVALID_JSON_TEXT=3140,t.ER_INVALID_JSON_TEXT_IN_PARAM=3141,t.ER_INVALID_JSON_BINARY_DATA=3142,t.ER_INVALID_JSON_PATH=3143,t.ER_INVALID_JSON_CHARSET=3144,t.ER_INVALID_JSON_CHARSET_IN_FUNCTION=3145,t.ER_INVALID_TYPE_FOR_JSON=3146,t.ER_INVALID_CAST_TO_JSON=3147,t.ER_INVALID_JSON_PATH_CHARSET=3148,t.ER_INVALID_JSON_PATH_WILDCARD=3149,t.ER_JSON_VALUE_TOO_BIG=3150,t.ER_JSON_KEY_TOO_BIG=3151,t.ER_JSON_USED_AS_KEY=3152,t.ER_JSON_VACUOUS_PATH=3153,t.ER_JSON_BAD_ONE_OR_ALL_ARG=3154,t.ER_NUMERIC_JSON_VALUE_OUT_OF_RANGE=3155,t.ER_INVALID_JSON_VALUE_FOR_CAST=3156,t.ER_JSON_DOCUMENT_TOO_DEEP=3157,t.ER_JSON_DOCUMENT_NULL_KEY=3158,t.ER_SECURE_TRANSPORT_REQUIRED=3159,t.ER_NO_SECURE_TRANSPORTS_CONFIGURED=3160,t.ER_DISABLED_STORAGE_ENGINE=3161,t.ER_USER_DOES_NOT_EXIST=3162,t.ER_USER_ALREADY_EXISTS=3163,t.ER_AUDIT_API_ABORT=3164,t.ER_INVALID_JSON_PATH_ARRAY_CELL=3165,t.ER_BUFPOOL_RESIZE_INPROGRESS=3166,t.ER_FEATURE_DISABLED_SEE_DOC=3167,t.ER_SERVER_ISNT_AVAILABLE=3168,t.ER_SESSION_WAS_KILLED=3169,t.ER_CAPACITY_EXCEEDED=3170,t.ER_CAPACITY_EXCEEDED_IN_RANGE_OPTIMIZER=3171,t.ER_TABLE_NEEDS_UPG_PART=3172,t.ER_CANT_WAIT_FOR_EXECUTED_GTID_SET_WHILE_OWNING_A_GTID=3173,t.ER_CANNOT_ADD_FOREIGN_BASE_COL_VIRTUAL=3174,t.ER_CANNOT_CREATE_VIRTUAL_INDEX_CONSTRAINT=3175,t.ER_ERROR_ON_MODIFYING_GTID_EXECUTED_TABLE=3176,t.ER_LOCK_REFUSED_BY_ENGINE=3177,t.ER_UNSUPPORTED_ALTER_ONLINE_ON_VIRTUAL_COLUMN=3178,t.ER_MASTER_KEY_ROTATION_NOT_SUPPORTED_BY_SE=3179,t.ER_MASTER_KEY_ROTATION_ERROR_BY_SE=3180,t.ER_MASTER_KEY_ROTATION_BINLOG_FAILED=3181,t.ER_MASTER_KEY_ROTATION_SE_UNAVAILABLE=3182,t.ER_TABLESPACE_CANNOT_ENCRYPT=3183,t.ER_INVALID_ENCRYPTION_OPTION=3184,t.ER_CANNOT_FIND_KEY_IN_KEYRING=3185,t.ER_CAPACITY_EXCEEDED_IN_PARSER=3186,t.ER_UNSUPPORTED_ALTER_ENCRYPTION_INPLACE=3187,t.ER_KEYRING_UDF_KEYRING_SERVICE_ERROR=3188,t.ER_USER_COLUMN_OLD_LENGTH=3189,t.ER_CANT_RESET_SOURCE=3190,t.ER_GROUP_REPLICATION_MAX_GROUP_SIZE=3191,t.ER_CANNOT_ADD_FOREIGN_BASE_COL_STORED=3192,t.ER_TABLE_REFERENCED=3193,t.ER_PARTITION_ENGINE_DEPRECATED_FOR_TABLE=3194,t.ER_WARN_USING_GEOMFROMWKB_TO_SET_SRID_ZERO=3195,t.ER_WARN_USING_GEOMFROMWKB_TO_SET_SRID=3196,t.ER_XA_RETRY=3197,t.ER_KEYRING_AWS_UDF_AWS_KMS_ERROR=3198,t.ER_BINLOG_UNSAFE_XA=3199,t.ER_UDF_ERROR=3200,t.ER_KEYRING_MIGRATION_FAILURE=3201,t.ER_KEYRING_ACCESS_DENIED_ERROR=3202,t.ER_KEYRING_MIGRATION_STATUS=3203,t.ER_PLUGIN_FAILED_TO_OPEN_TABLES=3204,t.ER_PLUGIN_FAILED_TO_OPEN_TABLE=3205,t.ER_AUDIT_LOG_NO_KEYRING_PLUGIN_INSTALLED=3206,t.ER_AUDIT_LOG_ENCRYPTION_PASSWORD_HAS_NOT_BEEN_SET=3207,t.ER_AUDIT_LOG_COULD_NOT_CREATE_AES_KEY=3208,t.ER_AUDIT_LOG_ENCRYPTION_PASSWORD_CANNOT_BE_FETCHED=3209,t.ER_AUDIT_LOG_JSON_FILTERING_NOT_ENABLED=3210,t.ER_AUDIT_LOG_UDF_INSUFFICIENT_PRIVILEGE=3211,t.ER_AUDIT_LOG_SUPER_PRIVILEGE_REQUIRED=3212,t.ER_COULD_NOT_REINITIALIZE_AUDIT_LOG_FILTERS=3213,t.ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_TYPE=3214,t.ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_COUNT=3215,t.ER_AUDIT_LOG_HAS_NOT_BEEN_INSTALLED=3216,t.ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_ARG_TYPE=3217,t.ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_ARG_VALUE=3218,t.ER_AUDIT_LOG_JSON_FILTER_PARSING_ERROR=3219,t.ER_AUDIT_LOG_JSON_FILTER_NAME_CANNOT_BE_EMPTY=3220,t.ER_AUDIT_LOG_JSON_USER_NAME_CANNOT_BE_EMPTY=3221,t.ER_AUDIT_LOG_JSON_FILTER_DOES_NOT_EXISTS=3222,t.ER_AUDIT_LOG_USER_FIRST_CHARACTER_MUST_BE_ALPHANUMERIC=3223,t.ER_AUDIT_LOG_USER_NAME_INVALID_CHARACTER=3224,t.ER_AUDIT_LOG_HOST_NAME_INVALID_CHARACTER=3225,t.WARN_DEPRECATED_MAXDB_SQL_MODE_FOR_TIMESTAMP=3226,t.ER_XA_REPLICATION_FILTERS=3227,t.ER_CANT_OPEN_ERROR_LOG=3228,t.ER_GROUPING_ON_TIMESTAMP_IN_DST=3229,t.ER_CANT_START_SERVER_NAMED_PIPE=3230,t.ER_WRITE_SET_EXCEEDS_LIMIT=3231,t.ER_DEPRECATED_TLS_VERSION_SESSION_57=3232,t.ER_WARN_DEPRECATED_TLS_VERSION_57=3233,t.ER_WARN_WRONG_NATIVE_TABLE_STRUCTURE=3234,t.ER_AES_INVALID_KDF_NAME=3235,t.ER_AES_INVALID_KDF_ITERATIONS=3236,t.WARN_AES_KEY_SIZE=3237,t.ER_AES_INVALID_KDF_OPTION_SIZE=3238,t.ER_UNSUPPORT_COMPRESSED_TEMPORARY_TABLE=3500,t.ER_ACL_OPERATION_FAILED=3501,t.ER_UNSUPPORTED_INDEX_ALGORITHM=3502,t.ER_NO_SUCH_DB=3503,t.ER_TOO_BIG_ENUM=3504,t.ER_TOO_LONG_SET_ENUM_VALUE=3505,t.ER_INVALID_DD_OBJECT=3506,t.ER_UPDATING_DD_TABLE=3507,t.ER_INVALID_DD_OBJECT_ID=3508,t.ER_INVALID_DD_OBJECT_NAME=3509,t.ER_TABLESPACE_MISSING_WITH_NAME=3510,t.ER_TOO_LONG_ROUTINE_COMMENT=3511,t.ER_SP_LOAD_FAILED=3512,t.ER_INVALID_BITWISE_OPERANDS_SIZE=3513,t.ER_INVALID_BITWISE_AGGREGATE_OPERANDS_SIZE=3514,t.ER_WARN_UNSUPPORTED_HINT=3515,t.ER_UNEXPECTED_GEOMETRY_TYPE=3516,t.ER_SRS_PARSE_ERROR=3517,t.ER_SRS_PROJ_PARAMETER_MISSING=3518,t.ER_WARN_SRS_NOT_FOUND=3519,t.ER_SRS_NOT_CARTESIAN=3520,t.ER_SRS_NOT_CARTESIAN_UNDEFINED=3521,t.ER_PK_INDEX_CANT_BE_INVISIBLE=3522,t.ER_UNKNOWN_AUTHID=3523,t.ER_FAILED_ROLE_GRANT=3524,t.ER_OPEN_ROLE_TABLES=3525,t.ER_FAILED_DEFAULT_ROLES=3526,t.ER_COMPONENTS_NO_SCHEME=3527,t.ER_COMPONENTS_NO_SCHEME_SERVICE=3528,t.ER_COMPONENTS_CANT_LOAD=3529,t.ER_ROLE_NOT_GRANTED=3530,t.ER_FAILED_REVOKE_ROLE=3531,t.ER_RENAME_ROLE=3532,t.ER_COMPONENTS_CANT_ACQUIRE_SERVICE_IMPLEMENTATION=3533,t.ER_COMPONENTS_CANT_SATISFY_DEPENDENCY=3534,t.ER_COMPONENTS_LOAD_CANT_REGISTER_SERVICE_IMPLEMENTATION=3535,t.ER_COMPONENTS_LOAD_CANT_INITIALIZE=3536,t.ER_COMPONENTS_UNLOAD_NOT_LOADED=3537,t.ER_COMPONENTS_UNLOAD_CANT_DEINITIALIZE=3538,t.ER_COMPONENTS_CANT_RELEASE_SERVICE=3539,t.ER_COMPONENTS_UNLOAD_CANT_UNREGISTER_SERVICE=3540,t.ER_COMPONENTS_CANT_UNLOAD=3541,t.ER_WARN_UNLOAD_THE_NOT_PERSISTED=3542,t.ER_COMPONENT_TABLE_INCORRECT=3543,t.ER_COMPONENT_MANIPULATE_ROW_FAILED=3544,t.ER_COMPONENTS_UNLOAD_DUPLICATE_IN_GROUP=3545,t.ER_CANT_SET_GTID_PURGED_DUE_SETS_CONSTRAINTS=3546,t.ER_CANNOT_LOCK_USER_MANAGEMENT_CACHES=3547,t.ER_SRS_NOT_FOUND=3548,t.ER_VARIABLE_NOT_PERSISTED=3549,t.ER_IS_QUERY_INVALID_CLAUSE=3550,t.ER_UNABLE_TO_STORE_STATISTICS=3551,t.ER_NO_SYSTEM_SCHEMA_ACCESS=3552,t.ER_NO_SYSTEM_TABLESPACE_ACCESS=3553,t.ER_NO_SYSTEM_TABLE_ACCESS=3554,t.ER_NO_SYSTEM_TABLE_ACCESS_FOR_DICTIONARY_TABLE=3555,t.ER_NO_SYSTEM_TABLE_ACCESS_FOR_SYSTEM_TABLE=3556,t.ER_NO_SYSTEM_TABLE_ACCESS_FOR_TABLE=3557,t.ER_INVALID_OPTION_KEY=3558,t.ER_INVALID_OPTION_VALUE=3559,t.ER_INVALID_OPTION_KEY_VALUE_PAIR=3560,t.ER_INVALID_OPTION_START_CHARACTER=3561,t.ER_INVALID_OPTION_END_CHARACTER=3562,t.ER_INVALID_OPTION_CHARACTERS=3563,t.ER_DUPLICATE_OPTION_KEY=3564,t.ER_WARN_SRS_NOT_FOUND_AXIS_ORDER=3565,t.ER_NO_ACCESS_TO_NATIVE_FCT=3566,t.ER_RESET_SOURCE_TO_VALUE_OUT_OF_RANGE=3567,t.ER_UNRESOLVED_TABLE_LOCK=3568,t.ER_DUPLICATE_TABLE_LOCK=3569,t.ER_BINLOG_UNSAFE_SKIP_LOCKED=3570,t.ER_BINLOG_UNSAFE_NOWAIT=3571,t.ER_LOCK_NOWAIT=3572,t.ER_CTE_RECURSIVE_REQUIRES_UNION=3573,t.ER_CTE_RECURSIVE_REQUIRES_NONRECURSIVE_FIRST=3574,t.ER_CTE_RECURSIVE_FORBIDS_AGGREGATION=3575,t.ER_CTE_RECURSIVE_FORBIDDEN_JOIN_ORDER=3576,t.ER_CTE_RECURSIVE_REQUIRES_SINGLE_REFERENCE=3577,t.ER_SWITCH_TMP_ENGINE=3578,t.ER_WINDOW_NO_SUCH_WINDOW=3579,t.ER_WINDOW_CIRCULARITY_IN_WINDOW_GRAPH=3580,t.ER_WINDOW_NO_CHILD_PARTITIONING=3581,t.ER_WINDOW_NO_INHERIT_FRAME=3582,t.ER_WINDOW_NO_REDEFINE_ORDER_BY=3583,t.ER_WINDOW_FRAME_START_ILLEGAL=3584,t.ER_WINDOW_FRAME_END_ILLEGAL=3585,t.ER_WINDOW_FRAME_ILLEGAL=3586,t.ER_WINDOW_RANGE_FRAME_ORDER_TYPE=3587,t.ER_WINDOW_RANGE_FRAME_TEMPORAL_TYPE=3588,t.ER_WINDOW_RANGE_FRAME_NUMERIC_TYPE=3589,t.ER_WINDOW_RANGE_BOUND_NOT_CONSTANT=3590,t.ER_WINDOW_DUPLICATE_NAME=3591,t.ER_WINDOW_ILLEGAL_ORDER_BY=3592,t.ER_WINDOW_INVALID_WINDOW_FUNC_USE=3593,t.ER_WINDOW_INVALID_WINDOW_FUNC_ALIAS_USE=3594,t.ER_WINDOW_NESTED_WINDOW_FUNC_USE_IN_WINDOW_SPEC=3595,t.ER_WINDOW_ROWS_INTERVAL_USE=3596,t.ER_WINDOW_NO_GROUP_ORDER=3597,t.ER_WINDOW_EXPLAIN_JSON=3598,t.ER_WINDOW_FUNCTION_IGNORES_FRAME=3599,t.ER_WL9236_NOW=3600,t.ER_INVALID_NO_OF_ARGS=3601,t.ER_FIELD_IN_GROUPING_NOT_GROUP_BY=3602,t.ER_TOO_LONG_TABLESPACE_COMMENT=3603,t.ER_ENGINE_CANT_DROP_TABLE=3604,t.ER_ENGINE_CANT_DROP_MISSING_TABLE=3605,t.ER_TABLESPACE_DUP_FILENAME=3606,t.ER_DB_DROP_RMDIR2=3607,t.ER_IMP_NO_FILES_MATCHED=3608,t.ER_IMP_SCHEMA_DOES_NOT_EXIST=3609,t.ER_IMP_TABLE_ALREADY_EXISTS=3610,t.ER_IMP_INCOMPATIBLE_MYSQLD_VERSION=3611,t.ER_IMP_INCOMPATIBLE_DD_VERSION=3612,t.ER_IMP_INCOMPATIBLE_SDI_VERSION=3613,t.ER_WARN_INVALID_HINT=3614,t.ER_VAR_DOES_NOT_EXIST=3615,t.ER_LONGITUDE_OUT_OF_RANGE=3616,t.ER_LATITUDE_OUT_OF_RANGE=3617,t.ER_NOT_IMPLEMENTED_FOR_GEOGRAPHIC_SRS=3618,t.ER_ILLEGAL_PRIVILEGE_LEVEL=3619,t.ER_NO_SYSTEM_VIEW_ACCESS=3620,t.ER_COMPONENT_FILTER_FLABBERGASTED=3621,t.ER_PART_EXPR_TOO_LONG=3622,t.ER_UDF_DROP_DYNAMICALLY_REGISTERED=3623,t.ER_UNABLE_TO_STORE_COLUMN_STATISTICS=3624,t.ER_UNABLE_TO_UPDATE_COLUMN_STATISTICS=3625,t.ER_UNABLE_TO_DROP_COLUMN_STATISTICS=3626,t.ER_UNABLE_TO_BUILD_HISTOGRAM=3627,t.ER_MANDATORY_ROLE=3628,t.ER_MISSING_TABLESPACE_FILE=3629,t.ER_PERSIST_ONLY_ACCESS_DENIED_ERROR=3630,t.ER_CMD_NEED_SUPER=3631,t.ER_PATH_IN_DATADIR=3632,t.ER_CLONE_DDL_IN_PROGRESS=3633,t.ER_CLONE_TOO_MANY_CONCURRENT_CLONES=3634,t.ER_APPLIER_LOG_EVENT_VALIDATION_ERROR=3635,t.ER_CTE_MAX_RECURSION_DEPTH=3636,t.ER_NOT_HINT_UPDATABLE_VARIABLE=3637,t.ER_CREDENTIALS_CONTRADICT_TO_HISTORY=3638,t.ER_WARNING_PASSWORD_HISTORY_CLAUSES_VOID=3639,t.ER_CLIENT_DOES_NOT_SUPPORT=3640,t.ER_I_S_SKIPPED_TABLESPACE=3641,t.ER_TABLESPACE_ENGINE_MISMATCH=3642,t.ER_WRONG_SRID_FOR_COLUMN=3643,t.ER_CANNOT_ALTER_SRID_DUE_TO_INDEX=3644,t.ER_WARN_BINLOG_PARTIAL_UPDATES_DISABLED=3645,t.ER_WARN_BINLOG_V1_ROW_EVENTS_DISABLED=3646,t.ER_WARN_BINLOG_PARTIAL_UPDATES_SUGGESTS_PARTIAL_IMAGES=3647,t.ER_COULD_NOT_APPLY_JSON_DIFF=3648,t.ER_CORRUPTED_JSON_DIFF=3649,t.ER_RESOURCE_GROUP_EXISTS=3650,t.ER_RESOURCE_GROUP_NOT_EXISTS=3651,t.ER_INVALID_VCPU_ID=3652,t.ER_INVALID_VCPU_RANGE=3653,t.ER_INVALID_THREAD_PRIORITY=3654,t.ER_DISALLOWED_OPERATION=3655,t.ER_RESOURCE_GROUP_BUSY=3656,t.ER_RESOURCE_GROUP_DISABLED=3657,t.ER_FEATURE_UNSUPPORTED=3658,t.ER_ATTRIBUTE_IGNORED=3659,t.ER_INVALID_THREAD_ID=3660,t.ER_RESOURCE_GROUP_BIND_FAILED=3661,t.ER_INVALID_USE_OF_FORCE_OPTION=3662,t.ER_GROUP_REPLICATION_COMMAND_FAILURE=3663,t.ER_SDI_OPERATION_FAILED=3664,t.ER_MISSING_JSON_TABLE_VALUE=3665,t.ER_WRONG_JSON_TABLE_VALUE=3666,t.ER_TF_MUST_HAVE_ALIAS=3667,t.ER_TF_FORBIDDEN_JOIN_TYPE=3668,t.ER_JT_VALUE_OUT_OF_RANGE=3669,t.ER_JT_MAX_NESTED_PATH=3670,t.ER_PASSWORD_EXPIRATION_NOT_SUPPORTED_BY_AUTH_METHOD=3671,t.ER_INVALID_GEOJSON_CRS_NOT_TOP_LEVEL=3672,t.ER_BAD_NULL_ERROR_NOT_IGNORED=3673,t.WARN_USELESS_SPATIAL_INDEX=3674,t.ER_DISK_FULL_NOWAIT=3675,t.ER_PARSE_ERROR_IN_DIGEST_FN=3676,t.ER_UNDISCLOSED_PARSE_ERROR_IN_DIGEST_FN=3677,t.ER_SCHEMA_DIR_EXISTS=3678,t.ER_SCHEMA_DIR_MISSING=3679,t.ER_SCHEMA_DIR_CREATE_FAILED=3680,t.ER_SCHEMA_DIR_UNKNOWN=3681,t.ER_ONLY_IMPLEMENTED_FOR_SRID_0_AND_4326=3682,t.ER_BINLOG_EXPIRE_LOG_DAYS_AND_SECS_USED_TOGETHER=3683,t.ER_REGEXP_BUFFER_OVERFLOW=3684,t.ER_REGEXP_ILLEGAL_ARGUMENT=3685,t.ER_REGEXP_INDEX_OUTOFBOUNDS_ERROR=3686,t.ER_REGEXP_INTERNAL_ERROR=3687,t.ER_REGEXP_RULE_SYNTAX=3688,t.ER_REGEXP_BAD_ESCAPE_SEQUENCE=3689,t.ER_REGEXP_UNIMPLEMENTED=3690,t.ER_REGEXP_MISMATCHED_PAREN=3691,t.ER_REGEXP_BAD_INTERVAL=3692,t.ER_REGEXP_MAX_LT_MIN=3693,t.ER_REGEXP_INVALID_BACK_REF=3694,t.ER_REGEXP_LOOK_BEHIND_LIMIT=3695,t.ER_REGEXP_MISSING_CLOSE_BRACKET=3696,t.ER_REGEXP_INVALID_RANGE=3697,t.ER_REGEXP_STACK_OVERFLOW=3698,t.ER_REGEXP_TIME_OUT=3699,t.ER_REGEXP_PATTERN_TOO_BIG=3700,t.ER_CANT_SET_ERROR_LOG_SERVICE=3701,t.ER_EMPTY_PIPELINE_FOR_ERROR_LOG_SERVICE=3702,t.ER_COMPONENT_FILTER_DIAGNOSTICS=3703,t.ER_NOT_IMPLEMENTED_FOR_CARTESIAN_SRS=3704,t.ER_NOT_IMPLEMENTED_FOR_PROJECTED_SRS=3705,t.ER_NONPOSITIVE_RADIUS=3706,t.ER_RESTART_SERVER_FAILED=3707,t.ER_SRS_MISSING_MANDATORY_ATTRIBUTE=3708,t.ER_SRS_MULTIPLE_ATTRIBUTE_DEFINITIONS=3709,t.ER_SRS_NAME_CANT_BE_EMPTY_OR_WHITESPACE=3710,t.ER_SRS_ORGANIZATION_CANT_BE_EMPTY_OR_WHITESPACE=3711,t.ER_SRS_ID_ALREADY_EXISTS=3712,t.ER_WARN_SRS_ID_ALREADY_EXISTS=3713,t.ER_CANT_MODIFY_SRID_0=3714,t.ER_WARN_RESERVED_SRID_RANGE=3715,t.ER_CANT_MODIFY_SRS_USED_BY_COLUMN=3716,t.ER_SRS_INVALID_CHARACTER_IN_ATTRIBUTE=3717,t.ER_SRS_ATTRIBUTE_STRING_TOO_LONG=3718,t.ER_DEPRECATED_UTF8_ALIAS=3719,t.ER_DEPRECATED_NATIONAL=3720,t.ER_INVALID_DEFAULT_UTF8MB4_COLLATION=3721,t.ER_UNABLE_TO_COLLECT_LOG_STATUS=3722,t.ER_RESERVED_TABLESPACE_NAME=3723,t.ER_UNABLE_TO_SET_OPTION=3724,t.ER_REPLICA_POSSIBLY_DIVERGED_AFTER_DDL=3725,t.ER_SRS_NOT_GEOGRAPHIC=3726,t.ER_POLYGON_TOO_LARGE=3727,t.ER_SPATIAL_UNIQUE_INDEX=3728,t.ER_INDEX_TYPE_NOT_SUPPORTED_FOR_SPATIAL_INDEX=3729,t.ER_FK_CANNOT_DROP_PARENT=3730,t.ER_GEOMETRY_PARAM_LONGITUDE_OUT_OF_RANGE=3731,t.ER_GEOMETRY_PARAM_LATITUDE_OUT_OF_RANGE=3732,t.ER_FK_CANNOT_USE_VIRTUAL_COLUMN=3733,t.ER_FK_NO_COLUMN_PARENT=3734,t.ER_CANT_SET_ERROR_SUPPRESSION_LIST=3735,t.ER_SRS_GEOGCS_INVALID_AXES=3736,t.ER_SRS_INVALID_SEMI_MAJOR_AXIS=3737,t.ER_SRS_INVALID_INVERSE_FLATTENING=3738,t.ER_SRS_INVALID_ANGULAR_UNIT=3739,t.ER_SRS_INVALID_PRIME_MERIDIAN=3740,t.ER_TRANSFORM_SOURCE_SRS_NOT_SUPPORTED=3741,t.ER_TRANSFORM_TARGET_SRS_NOT_SUPPORTED=3742,t.ER_TRANSFORM_SOURCE_SRS_MISSING_TOWGS84=3743,t.ER_TRANSFORM_TARGET_SRS_MISSING_TOWGS84=3744,t.ER_TEMP_TABLE_PREVENTS_SWITCH_SESSION_BINLOG_FORMAT=3745,t.ER_TEMP_TABLE_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT=3746,t.ER_RUNNING_APPLIER_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT=3747,t.ER_CLIENT_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE_IN_TRX_IN_SBR=3748,t.ER_XA_CANT_CREATE_MDL_BACKUP=3749,t.ER_TABLE_WITHOUT_PK=3750,t.ER_WARN_DATA_TRUNCATED_FUNCTIONAL_INDEX=3751,t.ER_WARN_DATA_OUT_OF_RANGE_FUNCTIONAL_INDEX=3752,t.ER_FUNCTIONAL_INDEX_ON_JSON_OR_GEOMETRY_FUNCTION=3753,t.ER_FUNCTIONAL_INDEX_REF_AUTO_INCREMENT=3754,t.ER_CANNOT_DROP_COLUMN_FUNCTIONAL_INDEX=3755,t.ER_FUNCTIONAL_INDEX_PRIMARY_KEY=3756,t.ER_FUNCTIONAL_INDEX_ON_LOB=3757,t.ER_FUNCTIONAL_INDEX_FUNCTION_IS_NOT_ALLOWED=3758,t.ER_FULLTEXT_FUNCTIONAL_INDEX=3759,t.ER_SPATIAL_FUNCTIONAL_INDEX=3760,t.ER_WRONG_KEY_COLUMN_FUNCTIONAL_INDEX=3761,t.ER_FUNCTIONAL_INDEX_ON_FIELD=3762,t.ER_GENERATED_COLUMN_NAMED_FUNCTION_IS_NOT_ALLOWED=3763,t.ER_GENERATED_COLUMN_ROW_VALUE=3764,t.ER_GENERATED_COLUMN_VARIABLES=3765,t.ER_DEPENDENT_BY_DEFAULT_GENERATED_VALUE=3766,t.ER_DEFAULT_VAL_GENERATED_NON_PRIOR=3767,t.ER_DEFAULT_VAL_GENERATED_REF_AUTO_INC=3768,t.ER_DEFAULT_VAL_GENERATED_FUNCTION_IS_NOT_ALLOWED=3769,t.ER_DEFAULT_VAL_GENERATED_NAMED_FUNCTION_IS_NOT_ALLOWED=3770,t.ER_DEFAULT_VAL_GENERATED_ROW_VALUE=3771,t.ER_DEFAULT_VAL_GENERATED_VARIABLES=3772,t.ER_DEFAULT_AS_VAL_GENERATED=3773,t.ER_UNSUPPORTED_ACTION_ON_DEFAULT_VAL_GENERATED=3774,t.ER_GTID_UNSAFE_ALTER_ADD_COL_WITH_DEFAULT_EXPRESSION=3775,t.ER_FK_CANNOT_CHANGE_ENGINE=3776,t.ER_WARN_DEPRECATED_USER_SET_EXPR=3777,t.ER_WARN_DEPRECATED_UTF8MB3_COLLATION=3778,t.ER_WARN_DEPRECATED_NESTED_COMMENT_SYNTAX=3779,t.ER_FK_INCOMPATIBLE_COLUMNS=3780,t.ER_GR_HOLD_WAIT_TIMEOUT=3781,t.ER_GR_HOLD_KILLED=3782,t.ER_GR_HOLD_MEMBER_STATUS_ERROR=3783,t.ER_RPL_ENCRYPTION_FAILED_TO_FETCH_KEY=3784,t.ER_RPL_ENCRYPTION_KEY_NOT_FOUND=3785,t.ER_RPL_ENCRYPTION_KEYRING_INVALID_KEY=3786,t.ER_RPL_ENCRYPTION_HEADER_ERROR=3787,t.ER_RPL_ENCRYPTION_FAILED_TO_ROTATE_LOGS=3788,t.ER_RPL_ENCRYPTION_KEY_EXISTS_UNEXPECTED=3789,t.ER_RPL_ENCRYPTION_FAILED_TO_GENERATE_KEY=3790,t.ER_RPL_ENCRYPTION_FAILED_TO_STORE_KEY=3791;t.ER_RPL_ENCRYPTION_FAILED_TO_REMOVE_KEY=3792,t.ER_RPL_ENCRYPTION_UNABLE_TO_CHANGE_OPTION=3793,t.ER_RPL_ENCRYPTION_MASTER_KEY_RECOVERY_FAILED=3794,t.ER_SLOW_LOG_MODE_IGNORED_WHEN_NOT_LOGGING_TO_FILE=3795,t.ER_GRP_TRX_CONSISTENCY_NOT_ALLOWED=3796,t.ER_GRP_TRX_CONSISTENCY_BEFORE=3797,t.ER_GRP_TRX_CONSISTENCY_AFTER_ON_TRX_BEGIN=3798,t.ER_GRP_TRX_CONSISTENCY_BEGIN_NOT_ALLOWED=3799,t.ER_FUNCTIONAL_INDEX_ROW_VALUE_IS_NOT_ALLOWED=3800,t.ER_RPL_ENCRYPTION_FAILED_TO_ENCRYPT=3801,t.ER_PAGE_TRACKING_NOT_STARTED=3802,t.ER_PAGE_TRACKING_RANGE_NOT_TRACKED=3803,t.ER_PAGE_TRACKING_CANNOT_PURGE=3804,t.ER_RPL_ENCRYPTION_CANNOT_ROTATE_BINLOG_MASTER_KEY=3805,t.ER_BINLOG_MASTER_KEY_RECOVERY_OUT_OF_COMBINATION=3806,t.ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_OPERATE_KEY=3807,t.ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_ROTATE_LOGS=3808,t.ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_REENCRYPT_LOG=3809,t.ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_UNUSED_KEYS=3810,t.ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_AUX_KEY=3811,t.ER_NON_BOOLEAN_EXPR_FOR_CHECK_CONSTRAINT=3812,t.ER_COLUMN_CHECK_CONSTRAINT_REFERENCES_OTHER_COLUMN=3813,t.ER_CHECK_CONSTRAINT_NAMED_FUNCTION_IS_NOT_ALLOWED=3814,t.ER_CHECK_CONSTRAINT_FUNCTION_IS_NOT_ALLOWED=3815,t.ER_CHECK_CONSTRAINT_VARIABLES=3816,t.ER_CHECK_CONSTRAINT_ROW_VALUE=3817,t.ER_CHECK_CONSTRAINT_REFERS_AUTO_INCREMENT_COLUMN=3818,t.ER_CHECK_CONSTRAINT_VIOLATED=3819,t.ER_CHECK_CONSTRAINT_REFERS_UNKNOWN_COLUMN=3820,t.ER_CHECK_CONSTRAINT_NOT_FOUND=3821,t.ER_CHECK_CONSTRAINT_DUP_NAME=3822,t.ER_CHECK_CONSTRAINT_CLAUSE_USING_FK_REFER_ACTION_COLUMN=3823,t.WARN_UNENCRYPTED_TABLE_IN_ENCRYPTED_DB=3824,t.ER_INVALID_ENCRYPTION_REQUEST=3825,t.ER_CANNOT_SET_TABLE_ENCRYPTION=3826,t.ER_CANNOT_SET_DATABASE_ENCRYPTION=3827,t.ER_CANNOT_SET_TABLESPACE_ENCRYPTION=3828,t.ER_TABLESPACE_CANNOT_BE_ENCRYPTED=3829,t.ER_TABLESPACE_CANNOT_BE_DECRYPTED=3830,t.ER_TABLESPACE_TYPE_UNKNOWN=3831,t.ER_TARGET_TABLESPACE_UNENCRYPTED=3832,t.ER_CANNOT_USE_ENCRYPTION_CLAUSE=3833,t.ER_INVALID_MULTIPLE_CLAUSES=3834,t.ER_UNSUPPORTED_USE_OF_GRANT_AS=3835,t.ER_UKNOWN_AUTH_ID_OR_ACCESS_DENIED_FOR_GRANT_AS=3836,t.ER_DEPENDENT_BY_FUNCTIONAL_INDEX=3837,t.ER_PLUGIN_NOT_EARLY=3838,t.ER_INNODB_REDO_LOG_ARCHIVE_START_SUBDIR_PATH=3839,t.ER_INNODB_REDO_LOG_ARCHIVE_START_TIMEOUT=3840,t.ER_INNODB_REDO_LOG_ARCHIVE_DIRS_INVALID=3841,t.ER_INNODB_REDO_LOG_ARCHIVE_LABEL_NOT_FOUND=3842,t.ER_INNODB_REDO_LOG_ARCHIVE_DIR_EMPTY=3843,t.ER_INNODB_REDO_LOG_ARCHIVE_NO_SUCH_DIR=3844,t.ER_INNODB_REDO_LOG_ARCHIVE_DIR_CLASH=3845,t.ER_INNODB_REDO_LOG_ARCHIVE_DIR_PERMISSIONS=3846,t.ER_INNODB_REDO_LOG_ARCHIVE_FILE_CREATE=3847,t.ER_INNODB_REDO_LOG_ARCHIVE_ACTIVE=3848,t.ER_INNODB_REDO_LOG_ARCHIVE_INACTIVE=3849,t.ER_INNODB_REDO_LOG_ARCHIVE_FAILED=3850,t.ER_INNODB_REDO_LOG_ARCHIVE_SESSION=3851,t.ER_STD_REGEX_ERROR=3852,t.ER_INVALID_JSON_TYPE=3853,t.ER_CANNOT_CONVERT_STRING=3854,t.ER_DEPENDENT_BY_PARTITION_FUNC=3855,t.ER_WARN_DEPRECATED_FLOAT_AUTO_INCREMENT=3856,t.ER_RPL_CANT_STOP_REPLICA_WHILE_LOCKED_BACKUP=3857,t.ER_WARN_DEPRECATED_FLOAT_DIGITS=3858,t.ER_WARN_DEPRECATED_FLOAT_UNSIGNED=3859,t.ER_WARN_DEPRECATED_INTEGER_DISPLAY_WIDTH=3860,t.ER_WARN_DEPRECATED_ZEROFILL=3861,t.ER_CLONE_DONOR=3862,t.ER_CLONE_PROTOCOL=3863,t.ER_CLONE_DONOR_VERSION=3864,t.ER_CLONE_OS=3865,t.ER_CLONE_PLATFORM=3866,t.ER_CLONE_CHARSET=3867,t.ER_CLONE_CONFIG=3868,t.ER_CLONE_SYS_CONFIG=3869,t.ER_CLONE_PLUGIN_MATCH=3870,t.ER_CLONE_LOOPBACK=3871,t.ER_CLONE_ENCRYPTION=3872,t.ER_CLONE_DISK_SPACE=3873,t.ER_CLONE_IN_PROGRESS=3874,t.ER_CLONE_DISALLOWED=3875,t.ER_CANNOT_GRANT_ROLES_TO_ANONYMOUS_USER=3876,t.ER_SECONDARY_ENGINE_PLUGIN=3877,t.ER_SECOND_PASSWORD_CANNOT_BE_EMPTY=3878,t.ER_DB_ACCESS_DENIED=3879,t.ER_DA_AUTH_ID_WITH_SYSTEM_USER_PRIV_IN_MANDATORY_ROLES=3880,t.ER_DA_RPL_GTID_TABLE_CANNOT_OPEN=3881,t.ER_GEOMETRY_IN_UNKNOWN_LENGTH_UNIT=3882,t.ER_DA_PLUGIN_INSTALL_ERROR=3883,t.ER_NO_SESSION_TEMP=3884,t.ER_DA_UNKNOWN_ERROR_NUMBER=3885,t.ER_COLUMN_CHANGE_SIZE=3886,t.ER_REGEXP_INVALID_CAPTURE_GROUP_NAME=3887,t.ER_DA_SSL_LIBRARY_ERROR=3888,t.ER_SECONDARY_ENGINE=3889,t.ER_SECONDARY_ENGINE_DDL=3890,t.ER_INCORRECT_CURRENT_PASSWORD=3891,t.ER_MISSING_CURRENT_PASSWORD=3892,t.ER_CURRENT_PASSWORD_NOT_REQUIRED=3893,t.ER_PASSWORD_CANNOT_BE_RETAINED_ON_PLUGIN_CHANGE=3894,t.ER_CURRENT_PASSWORD_CANNOT_BE_RETAINED=3895,t.ER_PARTIAL_REVOKES_EXIST=3896,t.ER_CANNOT_GRANT_SYSTEM_PRIV_TO_MANDATORY_ROLE=3897,t.ER_XA_REPLICATION_FILTERS=3898,t.ER_UNSUPPORTED_SQL_MODE=3899,t.ER_REGEXP_INVALID_FLAG=3900,t.ER_PARTIAL_REVOKE_AND_DB_GRANT_BOTH_EXISTS=3901,t.ER_UNIT_NOT_FOUND=3902,t.ER_INVALID_JSON_VALUE_FOR_FUNC_INDEX=3903,t.ER_JSON_VALUE_OUT_OF_RANGE_FOR_FUNC_INDEX=3904,t.ER_EXCEEDED_MV_KEYS_NUM=3905,t.ER_EXCEEDED_MV_KEYS_SPACE=3906,t.ER_FUNCTIONAL_INDEX_DATA_IS_TOO_LONG=3907,t.ER_WRONG_MVI_VALUE=3908,t.ER_WARN_FUNC_INDEX_NOT_APPLICABLE=3909,t.ER_GRP_RPL_UDF_ERROR=3910,t.ER_UPDATE_GTID_PURGED_WITH_GR=3911,t.ER_GROUPING_ON_TIMESTAMP_IN_DST=3912,t.ER_TABLE_NAME_CAUSES_TOO_LONG_PATH=3913,t.ER_AUDIT_LOG_INSUFFICIENT_PRIVILEGE=3914,t.ER_AUDIT_LOG_PASSWORD_HAS_BEEN_COPIED=3915,t.ER_DA_GRP_RPL_STARTED_AUTO_REJOIN=3916,t.ER_SYSVAR_CHANGE_DURING_QUERY=3917,t.ER_GLOBSTAT_CHANGE_DURING_QUERY=3918,t.ER_GRP_RPL_MESSAGE_SERVICE_INIT_FAILURE=3919,t.ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORITHM_CLIENT=3920,t.ER_CHANGE_SOURCE_WRONG_COMPRESSION_LEVEL_CLIENT=3921,t.ER_WRONG_COMPRESSION_ALGORITHM_CLIENT=3922,t.ER_WRONG_COMPRESSION_LEVEL_CLIENT=3923,t.ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORITHM_LIST_CLIENT=3924,t.ER_CLIENT_PRIVILEGE_CHECKS_USER_CANNOT_BE_ANONYMOUS=3925,t.ER_CLIENT_PRIVILEGE_CHECKS_USER_DOES_NOT_EXIST=3926,t.ER_CLIENT_PRIVILEGE_CHECKS_USER_CORRUPT=3927,t.ER_CLIENT_PRIVILEGE_CHECKS_USER_NEEDS_RPL_APPLIER_PRIV=3928,t.ER_WARN_DA_PRIVILEGE_NOT_REGISTERED=3929,t.ER_CLIENT_KEYRING_UDF_KEY_INVALID=3930,t.ER_CLIENT_KEYRING_UDF_KEY_TYPE_INVALID=3931,t.ER_CLIENT_KEYRING_UDF_KEY_TOO_LONG=3932,t.ER_CLIENT_KEYRING_UDF_KEY_TYPE_TOO_LONG=3933,t.ER_JSON_SCHEMA_VALIDATION_ERROR_WITH_DETAILED_REPORT=3934,t.ER_DA_UDF_INVALID_CHARSET_SPECIFIED=3935,t.ER_DA_UDF_INVALID_CHARSET=3936,t.ER_DA_UDF_INVALID_COLLATION=3937,t.ER_DA_UDF_INVALID_EXTENSION_ARGUMENT_TYPE=3938,t.ER_MULTIPLE_CONSTRAINTS_WITH_SAME_NAME=3939,t.ER_CONSTRAINT_NOT_FOUND=3940,t.ER_ALTER_CONSTRAINT_ENFORCEMENT_NOT_SUPPORTED=3941,t.ER_TABLE_VALUE_CONSTRUCTOR_MUST_HAVE_COLUMNS=3942,t.ER_TABLE_VALUE_CONSTRUCTOR_CANNOT_HAVE_DEFAULT=3943,t.ER_CLIENT_QUERY_FAILURE_INVALID_NON_ROW_FORMAT=3944,t.ER_REQUIRE_ROW_FORMAT_INVALID_VALUE=3945,t.ER_FAILED_TO_DETERMINE_IF_ROLE_IS_MANDATORY=3946,t.ER_FAILED_TO_FETCH_MANDATORY_ROLE_LIST=3947,t.ER_CLIENT_LOCAL_FILES_DISABLED=3948,t.ER_IMP_INCOMPATIBLE_CFG_VERSION=3949,t.ER_DA_OOM=3950,t.ER_DA_UDF_INVALID_ARGUMENT_TO_SET_CHARSET=3951,t.ER_DA_UDF_INVALID_RETURN_TYPE_TO_SET_CHARSET=3952,t.ER_MULTIPLE_INTO_CLAUSES=3953,t.ER_MISPLACED_INTO=3954,t.ER_USER_ACCESS_DENIED_FOR_USER_ACCOUNT_BLOCKED_BY_PASSWORD_LOCK=3955,t.ER_WARN_DEPRECATED_YEAR_UNSIGNED=3956,t.ER_CLONE_NETWORK_PACKET=3957,t.ER_SDI_OPERATION_FAILED_MISSING_RECORD=3958,t.ER_DEPENDENT_BY_CHECK_CONSTRAINT=3959,t.ER_GRP_OPERATION_NOT_ALLOWED_GR_MUST_STOP=3960,t.ER_WARN_DEPRECATED_JSON_TABLE_ON_ERROR_ON_EMPTY=3961,t.ER_WARN_DEPRECATED_INNER_INTO=3962,t.ER_WARN_DEPRECATED_VALUES_FUNCTION_ALWAYS_NULL=3963,t.ER_WARN_DEPRECATED_SQL_CALC_FOUND_ROWS=3964,t.ER_WARN_DEPRECATED_FOUND_ROWS=3965,t.ER_MISSING_JSON_VALUE=3966,t.ER_MULTIPLE_JSON_VALUES=3967,t.ER_HOSTNAME_TOO_LONG=3968,t.ER_WARN_CLIENT_DEPRECATED_PARTITION_PREFIX_KEY=3969,t.ER_GROUP_REPLICATION_USER_EMPTY_MSG=3970,t.ER_GROUP_REPLICATION_USER_MANDATORY_MSG=3971,t.ER_GROUP_REPLICATION_PASSWORD_LENGTH=3972,t.ER_SUBQUERY_TRANSFORM_REJECTED=3973,t.ER_DA_GRP_RPL_RECOVERY_ENDPOINT_FORMAT=3974,t.ER_DA_GRP_RPL_RECOVERY_ENDPOINT_INVALID=3975,t.ER_WRONG_VALUE_FOR_VAR_PLUS_ACTIONABLE_PART=3976,t.ER_STATEMENT_NOT_ALLOWED_AFTER_START_TRANSACTION=3977,t.ER_FOREIGN_KEY_WITH_ATOMIC_CREATE_SELECT=3978,t.ER_NOT_ALLOWED_WITH_START_TRANSACTION=3979,t.ER_INVALID_JSON_ATTRIBUTE=3980,t.ER_ENGINE_ATTRIBUTE_NOT_SUPPORTED=3981,t.ER_INVALID_USER_ATTRIBUTE_JSON=3982,t.ER_INNODB_REDO_DISABLED=3983,t.ER_INNODB_REDO_ARCHIVING_ENABLED=3984,t.ER_MDL_OUT_OF_RESOURCES=3985,t.ER_IMPLICIT_COMPARISON_FOR_JSON=3986,t.ER_FUNCTION_DOES_NOT_SUPPORT_CHARACTER_SET=3987,t.ER_IMPOSSIBLE_STRING_CONVERSION=3988,t.ER_SCHEMA_READ_ONLY=3989,t.ER_RPL_ASYNC_RECONNECT_GTID_MODE_OFF=3990,t.ER_RPL_ASYNC_RECONNECT_AUTO_POSITION_OFF=3991,t.ER_DISABLE_GTID_MODE_REQUIRES_ASYNC_RECONNECT_OFF=3992,t.ER_DISABLE_AUTO_POSITION_REQUIRES_ASYNC_RECONNECT_OFF=3993,t.ER_INVALID_PARAMETER_USE=3994,t.ER_CHARACTER_SET_MISMATCH=3995,t.ER_WARN_VAR_VALUE_CHANGE_NOT_SUPPORTED=3996,t.ER_INVALID_TIME_ZONE_INTERVAL=3997,t.ER_INVALID_CAST=3998,t.ER_HYPERGRAPH_NOT_SUPPORTED_YET=3999,t.ER_WARN_HYPERGRAPH_EXPERIMENTAL=4e3,t.ER_DA_NO_ERROR_LOG_PARSER_CONFIGURED=4001,t.ER_DA_ERROR_LOG_TABLE_DISABLED=4002,t.ER_DA_ERROR_LOG_MULTIPLE_FILTERS=4003,t.ER_DA_CANT_OPEN_ERROR_LOG=4004,t.ER_USER_REFERENCED_AS_DEFINER=4005,t.ER_CANNOT_USER_REFERENCED_AS_DEFINER=4006,t.ER_REGEX_NUMBER_TOO_BIG=4007,t.ER_SPVAR_NONINTEGER_TYPE=4008,t.WARN_UNSUPPORTED_ACL_TABLES_READ=4009,t.ER_BINLOG_UNSAFE_ACL_TABLE_READ_IN_DML_DDL=4010,t.ER_STOP_REPLICA_MONITOR_IO_THREAD_TIMEOUT=4011,t.ER_STARTING_REPLICA_MONITOR_IO_THREAD=4012,t.ER_CANT_USE_ANONYMOUS_TO_GTID_WITH_GTID_MODE_NOT_ON=4013,t.ER_CANT_COMBINE_ANONYMOUS_TO_GTID_AND_AUTOPOSITION=4014,t.ER_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS_REQUIRES_GTID_MODE_ON=4015,t.ER_SQL_REPLICA_SKIP_COUNTER_USED_WITH_GTID_MODE_ON=4016,t.ER_USING_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS_AS_LOCAL_OR_UUID=4017,t.ER_CANT_SET_ANONYMOUS_TO_GTID_AND_WAIT_UNTIL_SQL_THD_AFTER_GTIDS=4018,t.ER_CANT_SET_SQL_AFTER_OR_BEFORE_GTIDS_WITH_ANONYMOUS_TO_GTID=4019,t.ER_ANONYMOUS_TO_GTID_UUID_SAME_AS_GROUP_NAME=4020,t.ER_CANT_USE_SAME_UUID_AS_GROUP_NAME=4021,t.ER_GRP_RPL_RECOVERY_CHANNEL_STILL_RUNNING=4022,t.ER_INNODB_INVALID_AUTOEXTEND_SIZE_VALUE=4023,t.ER_INNODB_INCOMPATIBLE_WITH_TABLESPACE=4024,t.ER_INNODB_AUTOEXTEND_SIZE_OUT_OF_RANGE=4025,t.ER_CANNOT_USE_AUTOEXTEND_SIZE_CLAUSE=4026,t.ER_ROLE_GRANTED_TO_ITSELF=4027,t.ER_TABLE_MUST_HAVE_A_VISIBLE_COLUMN=4028,t.ER_INNODB_COMPRESSION_FAILURE=4029,t.ER_WARN_ASYNC_CONN_FAILOVER_NETWORK_NAMESPACE=4030,t.ER_CLIENT_INTERACTION_TIMEOUT=4031,t.ER_INVALID_CAST_TO_GEOMETRY=4032,t.ER_INVALID_CAST_POLYGON_RING_DIRECTION=4033,t.ER_GIS_DIFFERENT_SRIDS_AGGREGATION=4034,t.ER_RELOAD_KEYRING_FAILURE=4035,t.ER_SDI_GET_KEYS_INVALID_TABLESPACE=4036,t.ER_CHANGE_RPL_SRC_WRONG_COMPRESSION_ALGORITHM_SIZE=4037,t.ER_WARN_DEPRECATED_TLS_VERSION_FOR_CHANNEL_CLI=4038,t.ER_CANT_USE_SAME_UUID_AS_VIEW_CHANGE_UUID=4039,t.ER_ANONYMOUS_TO_GTID_UUID_SAME_AS_VIEW_CHANGE_UUID=4040,t.ER_GRP_RPL_VIEW_CHANGE_UUID_FAIL_GET_VARIABLE=4041,t.ER_WARN_ADUIT_LOG_MAX_SIZE_AND_PRUNE_SECONDS=4042,t.ER_WARN_ADUIT_LOG_MAX_SIZE_CLOSE_TO_ROTATE_ON_SIZE=4043,t.ER_KERBEROS_CREATE_USER=4044,t.ER_INSTALL_PLUGIN_CONFLICT_CLIENT=4045,t.ER_DA_ERROR_LOG_COMPONENT_FLUSH_FAILED=4046,t.ER_WARN_SQL_AFTER_MTS_GAPS_GAP_NOT_CALCULATED=4047,t.ER_INVALID_ASSIGNMENT_TARGET=4048,t.ER_OPERATION_NOT_ALLOWED_ON_GR_SECONDARY=4049,t.ER_GRP_RPL_FAILOVER_CHANNEL_STATUS_PROPAGATION=4050,t.ER_WARN_AUDIT_LOG_FORMAT_UNIX_TIMESTAMP_ONLY_WHEN_JSON=4051,t.ER_INVALID_MFA_PLUGIN_SPECIFIED=4052,t.ER_IDENTIFIED_BY_UNSUPPORTED=4053,t.ER_INVALID_PLUGIN_FOR_REGISTRATION=4054,t.ER_PLUGIN_REQUIRES_REGISTRATION=4055,t.ER_MFA_METHOD_EXISTS=4056,t.ER_MFA_METHOD_NOT_EXISTS=4057,t.ER_AUTHENTICATION_POLICY_MISMATCH=4058,t.ER_PLUGIN_REGISTRATION_DONE=4059,t.ER_INVALID_USER_FOR_REGISTRATION=4060,t.ER_USER_REGISTRATION_FAILED=4061,t.ER_MFA_METHODS_INVALID_ORDER=4062,t.ER_MFA_METHODS_IDENTICAL=4063,t.ER_INVALID_MFA_OPERATIONS_FOR_PASSWORDLESS_USER=4064,t.ER_CHANGE_REPLICATION_SOURCE_NO_OPTIONS_FOR_GTID_ONLY=4065,t.ER_CHANGE_REP_SOURCE_CANT_DISABLE_REQ_ROW_FORMAT_WITH_GTID_ONLY=4066,t.ER_CHANGE_REP_SOURCE_CANT_DISABLE_AUTO_POSITION_WITH_GTID_ONLY=4067,t.ER_CHANGE_REP_SOURCE_CANT_DISABLE_GTID_ONLY_WITHOUT_POSITIONS=4068,t.ER_CHANGE_REP_SOURCE_CANT_DISABLE_AUTO_POS_WITHOUT_POSITIONS=4069,t.ER_CHANGE_REP_SOURCE_GR_CHANNEL_WITH_GTID_MODE_NOT_ON=4070,t.ER_CANT_USE_GTID_ONLY_WITH_GTID_MODE_NOT_ON=4071,t.ER_WARN_C_DISABLE_GTID_ONLY_WITH_SOURCE_AUTO_POS_INVALID_POS=4072,t.ER_DA_SSL_FIPS_MODE_ERROR=4073,t.ER_VALUE_OUT_OF_RANGE=4074,t.ER_FULLTEXT_WITH_ROLLUP=4075,t.ER_REGEXP_MISSING_RESOURCE=4076,t.ER_WARN_REGEXP_USING_DEFAULT=4077,t.ER_REGEXP_MISSING_FILE=4078,t.ER_WARN_DEPRECATED_COLLATION=4079,t.ER_CONCURRENT_PROCEDURE_USAGE=4080,t.ER_DA_GLOBAL_CONN_LIMIT=4081,t.ER_DA_CONN_LIMIT=4082,t.ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE_INSTANT=4083,t.ER_WARN_SF_UDF_NAME_COLLISION=4084,t.ER_CANNOT_PURGE_BINLOG_WITH_BACKUP_LOCK=4085,t.ER_TOO_MANY_WINDOWS=4086,t.ER_MYSQLBACKUP_CLIENT_MSG=4087,t.ER_COMMENT_CONTAINS_INVALID_STRING=4088,t.ER_DEFINITION_CONTAINS_INVALID_STRING=4089,t.ER_CANT_EXECUTE_COMMAND_WITH_ASSIGNED_GTID_NEXT=4090,t.ER_XA_TEMP_TABLE=4091,t.ER_INNODB_MAX_ROW_VERSION=4092,t.ER_INNODB_INSTANT_ADD_NOT_SUPPORTED_MAX_SIZE=4093,t.ER_OPERATION_NOT_ALLOWED_WHILE_PRIMARY_CHANGE_IS_RUNNING=4094,t.ER_WARN_DEPRECATED_DATETIME_DELIMITER=4095,t.ER_WARN_DEPRECATED_SUPERFLUOUS_DELIMITER=4096,t.ER_CANNOT_PERSIST_SENSITIVE_VARIABLES=4097,t.ER_WARN_CANNOT_SECURELY_PERSIST_SENSITIVE_VARIABLES=4098,t.ER_WARN_TRG_ALREADY_EXISTS=4099,t.ER_IF_NOT_EXISTS_UNSUPPORTED_TRG_EXISTS_ON_DIFFERENT_TABLE=4100,t.ER_IF_NOT_EXISTS_UNSUPPORTED_UDF_NATIVE_FCT_NAME_COLLISION=4101,t.ER_SET_PASSWORD_AUTH_PLUGIN_ERROR=4102,t.ER_REDUCED_DBLWR_FILE_CORRUPTED=4103,t.ER_REDUCED_DBLWR_PAGE_FOUND=4104,t.ER_SRS_INVALID_LATITUDE_OF_ORIGIN=4105,t.ER_SRS_INVALID_LONGITUDE_OF_ORIGIN=4106,t.ER_SRS_UNUSED_PROJ_PARAMETER_PRESENT=4107,t.ER_GIPK_COLUMN_EXISTS=4108,t.ER_GIPK_FAILED_AUTOINC_COLUMN_EXISTS=4109,t.ER_GIPK_COLUMN_ALTER_NOT_ALLOWED=4110,t.ER_DROP_PK_COLUMN_TO_DROP_GIPK=4111,t.ER_CREATE_SELECT_WITH_GIPK_DISALLOWED_IN_SBR=4112,t.ER_DA_EXPIRE_LOGS_DAYS_IGNORED=4113,t.ER_CTE_RECURSIVE_NOT_UNION=4114,t.ER_COMMAND_BACKEND_FAILED_TO_FETCH_SECURITY_CTX=4115,t.ER_COMMAND_SERVICE_BACKEND_FAILED=4116,t.ER_CLIENT_FILE_PRIVILEGE_FOR_REPLICATION_CHECKS=4117,t.ER_GROUP_REPLICATION_FORCE_MEMBERS_COMMAND_FAILURE=4118,t.ER_WARN_DEPRECATED_IDENT=4119,t.ER_INTERSECT_ALL_MAX_DUPLICATES_EXCEEDED=4120,t.ER_TP_QUERY_THRS_PER_GRP_EXCEEDS_TXN_THR_LIMIT=4121,t.ER_BAD_TIMESTAMP_FORMAT=4122,t.ER_SHAPE_PRIDICTION_UDF=4123,t.ER_SRS_INVALID_HEIGHT=4124,t.ER_SRS_INVALID_SCALING=4125,t.ER_SRS_INVALID_ZONE_WIDTH=4126,t.ER_SRS_INVALID_LATITUDE_POLAR_STERE_VAR_A=4127,t.ER_WARN_DEPRECATED_CLIENT_NO_SCHEMA_OPTION=4128,t.ER_TABLE_NOT_EMPTY=4129,t.ER_TABLE_NO_PRIMARY_KEY=4130,t.ER_TABLE_IN_SHARED_TABLESPACE=4131,t.ER_INDEX_OTHER_THAN_PK=4132,t.ER_LOAD_BULK_DATA_UNSORTED=4133,t.ER_BULK_EXECUTOR_ERROR=4134,t.ER_BULK_READER_LIBCURL_INIT_FAILED=4135,t.ER_BULK_READER_LIBCURL_ERROR=4136,t.ER_BULK_READER_SERVER_ERROR=4137,t.ER_BULK_READER_COMMUNICATION_ERROR=4138,t.ER_BULK_LOAD_DATA_FAILED=4139,t.ER_BULK_LOADER_COLUMN_TOO_BIG_FOR_LEFTOVER_BUFFER=4140,t.ER_BULK_LOADER_COMPONENT_ERROR=4141,t.ER_BULK_LOADER_FILE_CONTAINS_LESS_LINES_THAN_IGNORE_CLAUSE=4142,t.ER_BULK_PARSER_MISSING_ENCLOSED_BY=4143,t.ER_BULK_PARSER_ROW_BUFFER_MAX_TOTAL_COLS_EXCEEDED=4144,t.ER_BULK_PARSER_COPY_BUFFER_SIZE_EXCEEDED=4145,t.ER_BULK_PARSER_UNEXPECTED_END_OF_INPUT=4146,t.ER_BULK_PARSER_UNEXPECTED_ROW_TERMINATOR=4147,t.ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_ENDING_ENCLOSED_BY=4148,t.ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_NULL_ESCAPE=4149,t.ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_COLUMN_TERMINATOR=4150,t.ER_BULK_PARSER_INCOMPLETE_ESCAPE_SEQUENCE=4151,t.ER_LOAD_BULK_DATA_FAILED=4152,t.ER_LOAD_BULK_DATA_WRONG_VALUE_FOR_FIELD=4153,t.ER_LOAD_BULK_DATA_WARN_NULL_TO_NOTNULL=4154,t.ER_REQUIRE_TABLE_PRIMARY_KEY_CHECK_GENERATE_WITH_GR=4155,t.ER_CANT_CHANGE_SYS_VAR_IN_READ_ONLY_MODE=4156,t.ER_INNODB_INSTANT_ADD_DROP_NOT_SUPPORTED_MAX_SIZE=4157,t.ER_INNODB_INSTANT_ADD_NOT_SUPPORTED_MAX_FIELDS=4158,t.ER_CANT_SET_PERSISTED=4159,t.ER_INSTALL_COMPONENT_SET_NULL_VALUE=4160,t.ER_INSTALL_COMPONENT_SET_UNUSED_VALUE=4161,t.ER_WARN_DEPRECATED_USER_DEFINED_COLLATIONS=4162,t[1]="EE_CANTCREATEFILE",t[2]="EE_READ",t[3]="EE_WRITE",t[4]="EE_BADCLOSE",t[5]="EE_OUTOFMEMORY",t[6]="EE_DELETE",t[7]="EE_LINK",t[9]="EE_EOFERR",t[10]="EE_CANTLOCK",t[11]="EE_CANTUNLOCK",t[12]="EE_DIR",t[13]="EE_STAT",t[14]="EE_CANT_CHSIZE",t[15]="EE_CANT_OPEN_STREAM",t[16]="EE_GETWD",t[17]="EE_SETWD",t[18]="EE_LINK_WARNING",t[19]="EE_OPEN_WARNING",t[20]="EE_DISK_FULL",t[21]="EE_CANT_MKDIR",t[22]="EE_UNKNOWN_CHARSET",t[23]="EE_OUT_OF_FILERESOURCES",t[24]="EE_CANT_READLINK",t[25]="EE_CANT_SYMLINK",t[26]="EE_REALPATH",t[27]="EE_SYNC",t[28]="EE_UNKNOWN_COLLATION",t[29]="EE_FILENOTFOUND",t[30]="EE_FILE_NOT_CLOSED",t[31]="EE_CHANGE_OWNERSHIP",t[32]="EE_CHANGE_PERMISSIONS",t[33]="EE_CANT_SEEK",t[34]="EE_CAPACITY_EXCEEDED",t[35]="EE_DISK_FULL_WITH_RETRY_MSG",t[36]="EE_FAILED_TO_CREATE_TIMER",t[37]="EE_FAILED_TO_DELETE_TIMER",t[38]="EE_FAILED_TO_CREATE_TIMER_QUEUE",t[39]="EE_FAILED_TO_START_TIMER_NOTIFY_THREAD",t[40]="EE_FAILED_TO_CREATE_TIMER_NOTIFY_THREAD_INTERRUPT_EVENT",t[41]="EE_EXITING_TIMER_NOTIFY_THREAD",t[42]="EE_WIN_LIBRARY_LOAD_FAILED",t[43]="EE_WIN_RUN_TIME_ERROR_CHECK",t[44]="EE_FAILED_TO_DETERMINE_LARGE_PAGE_SIZE",t[45]="EE_FAILED_TO_KILL_ALL_THREADS",t[46]="EE_FAILED_TO_CREATE_IO_COMPLETION_PORT",t[47]="EE_FAILED_TO_OPEN_DEFAULTS_FILE",t[48]="EE_FAILED_TO_HANDLE_DEFAULTS_FILE",t[49]="EE_WRONG_DIRECTIVE_IN_CONFIG_FILE",t[50]="EE_SKIPPING_DIRECTIVE_DUE_TO_MAX_INCLUDE_RECURSION",t[51]="EE_INCORRECT_GRP_DEFINITION_IN_CONFIG_FILE",t[52]="EE_OPTION_WITHOUT_GRP_IN_CONFIG_FILE",t[53]="EE_CONFIG_FILE_PERMISSION_ERROR",t[54]="EE_IGNORE_WORLD_WRITABLE_CONFIG_FILE",t[55]="EE_USING_DISABLED_OPTION",t[56]="EE_USING_DISABLED_SHORT_OPTION",t[57]="EE_USING_PASSWORD_ON_CLI_IS_INSECURE",t[58]="EE_UNKNOWN_SUFFIX_FOR_VARIABLE",t[59]="EE_SSL_ERROR_FROM_FILE",t[60]="EE_SSL_ERROR",t[61]="EE_NET_SEND_ERROR_IN_BOOTSTRAP",t[62]="EE_PACKETS_OUT_OF_ORDER",t[63]="EE_UNKNOWN_PROTOCOL_OPTION",t[64]="EE_FAILED_TO_LOCATE_SERVER_PUBLIC_KEY",t[65]="EE_PUBLIC_KEY_NOT_IN_PEM_FORMAT",t[66]="EE_DEBUG_INFO",t[67]="EE_UNKNOWN_VARIABLE",t[68]="EE_UNKNOWN_OPTION",t[69]="EE_UNKNOWN_SHORT_OPTION",t[70]="EE_OPTION_WITHOUT_ARGUMENT",t[71]="EE_OPTION_REQUIRES_ARGUMENT",t[72]="EE_SHORT_OPTION_REQUIRES_ARGUMENT",t[73]="EE_OPTION_IGNORED_DUE_TO_INVALID_VALUE",t[74]="EE_OPTION_WITH_EMPTY_VALUE",t[75]="EE_FAILED_TO_ASSIGN_MAX_VALUE_TO_OPTION",t[76]="EE_INCORRECT_BOOLEAN_VALUE_FOR_OPTION",t[77]="EE_FAILED_TO_SET_OPTION_VALUE",t[78]="EE_INCORRECT_INT_VALUE_FOR_OPTION",t[79]="EE_INCORRECT_UINT_VALUE_FOR_OPTION",t[80]="EE_ADJUSTED_SIGNED_VALUE_FOR_OPTION",t[81]="EE_ADJUSTED_UNSIGNED_VALUE_FOR_OPTION",t[82]="EE_ADJUSTED_ULONGLONG_VALUE_FOR_OPTION",t[83]="EE_ADJUSTED_DOUBLE_VALUE_FOR_OPTION",t[84]="EE_INVALID_DECIMAL_VALUE_FOR_OPTION",t[85]="EE_COLLATION_PARSER_ERROR",t[86]="EE_FAILED_TO_RESET_BEFORE_PRIMARY_IGNORABLE_CHAR",t[87]="EE_FAILED_TO_RESET_BEFORE_TERTIARY_IGNORABLE_CHAR",t[88]="EE_SHIFT_CHAR_OUT_OF_RANGE",t[89]="EE_RESET_CHAR_OUT_OF_RANGE",t[90]="EE_UNKNOWN_LDML_TAG",t[91]="EE_FAILED_TO_RESET_BEFORE_SECONDARY_IGNORABLE_CHAR",t[92]="EE_FAILED_PROCESSING_DIRECTIVE",t[93]="EE_PTHREAD_KILL_FAILED",t[120]="HA_ERR_KEY_NOT_FOUND",t[121]="HA_ERR_FOUND_DUPP_KEY",t[122]="HA_ERR_INTERNAL_ERROR",t[123]="HA_ERR_RECORD_CHANGED",t[124]="HA_ERR_WRONG_INDEX",t[125]="HA_ERR_ROLLED_BACK",t[126]="HA_ERR_CRASHED",t[127]="HA_ERR_WRONG_IN_RECORD",t[128]="HA_ERR_OUT_OF_MEM",t[130]="HA_ERR_NOT_A_TABLE",t[131]="HA_ERR_WRONG_COMMAND",t[132]="HA_ERR_OLD_FILE",t[133]="HA_ERR_NO_ACTIVE_RECORD",t[134]="HA_ERR_RECORD_DELETED",t[135]="HA_ERR_RECORD_FILE_FULL",t[136]="HA_ERR_INDEX_FILE_FULL",t[137]="HA_ERR_END_OF_FILE",t[138]="HA_ERR_UNSUPPORTED",t[139]="HA_ERR_TOO_BIG_ROW",t[140]="HA_WRONG_CREATE_OPTION",t[141]="HA_ERR_FOUND_DUPP_UNIQUE",t[142]="HA_ERR_UNKNOWN_CHARSET",t[143]="HA_ERR_WRONG_MRG_TABLE_DEF",t[144]="HA_ERR_CRASHED_ON_REPAIR",t[145]="HA_ERR_CRASHED_ON_USAGE",t[146]="HA_ERR_LOCK_WAIT_TIMEOUT",t[147]="HA_ERR_LOCK_TABLE_FULL",t[148]="HA_ERR_READ_ONLY_TRANSACTION",t[149]="HA_ERR_LOCK_DEADLOCK",t[150]="HA_ERR_CANNOT_ADD_FOREIGN",t[151]="HA_ERR_NO_REFERENCED_ROW",t[152]="HA_ERR_ROW_IS_REFERENCED",t[153]="HA_ERR_NO_SAVEPOINT",t[154]="HA_ERR_NON_UNIQUE_BLOCK_SIZE",t[155]="HA_ERR_NO_SUCH_TABLE",t[156]="HA_ERR_TABLE_EXIST",t[157]="HA_ERR_NO_CONNECTION",t[158]="HA_ERR_NULL_IN_SPATIAL",t[159]="HA_ERR_TABLE_DEF_CHANGED",t[160]="HA_ERR_NO_PARTITION_FOUND",t[161]="HA_ERR_RBR_LOGGING_FAILED",t[162]="HA_ERR_DROP_INDEX_FK",t[163]="HA_ERR_FOREIGN_DUPLICATE_KEY",t[164]="HA_ERR_TABLE_NEEDS_UPGRADE",t[165]="HA_ERR_TABLE_READONLY",t[166]="HA_ERR_AUTOINC_READ_FAILED",t[167]="HA_ERR_AUTOINC_ERANGE",t[168]="HA_ERR_GENERIC",t[169]="HA_ERR_RECORD_IS_THE_SAME",t[170]="HA_ERR_LOGGING_IMPOSSIBLE",t[171]="HA_ERR_CORRUPT_EVENT",t[172]="HA_ERR_NEW_FILE",t[173]="HA_ERR_ROWS_EVENT_APPLY",t[174]="HA_ERR_INITIALIZATION",t[175]="HA_ERR_FILE_TOO_SHORT",t[176]="HA_ERR_WRONG_CRC",t[177]="HA_ERR_TOO_MANY_CONCURRENT_TRXS",t[178]="HA_ERR_NOT_IN_LOCK_PARTITIONS",t[179]="HA_ERR_INDEX_COL_TOO_LONG",t[180]="HA_ERR_INDEX_CORRUPT",t[181]="HA_ERR_UNDO_REC_TOO_BIG",t[182]="HA_FTS_INVALID_DOCID",t[183]="HA_ERR_TABLE_IN_FK_CHECK",t[184]="HA_ERR_TABLESPACE_EXISTS",t[185]="HA_ERR_TOO_MANY_FIELDS",t[186]="HA_ERR_ROW_IN_WRONG_PARTITION",t[187]="HA_ERR_INNODB_READ_ONLY",t[188]="HA_ERR_FTS_EXCEED_RESULT_CACHE_LIMIT",t[189]="HA_ERR_TEMP_FILE_WRITE_FAILURE",t[190]="HA_ERR_INNODB_FORCED_RECOVERY",t[191]="HA_ERR_FTS_TOO_MANY_WORDS_IN_PHRASE",t[192]="HA_ERR_FK_DEPTH_EXCEEDED",t[193]="HA_MISSING_CREATE_OPTION",t[194]="HA_ERR_SE_OUT_OF_MEMORY",t[195]="HA_ERR_TABLE_CORRUPT",t[196]="HA_ERR_QUERY_INTERRUPTED",t[197]="HA_ERR_TABLESPACE_MISSING",t[198]="HA_ERR_TABLESPACE_IS_NOT_EMPTY",t[199]="HA_ERR_WRONG_FILE_NAME",t[200]="HA_ERR_NOT_ALLOWED_COMMAND",t[201]="HA_ERR_COMPUTE_FAILED",t[202]="HA_ERR_ROW_FORMAT_CHANGED",t[203]="HA_ERR_NO_WAIT_LOCK",t[204]="HA_ERR_DISK_FULL_NOWAIT",t[205]="HA_ERR_NO_SESSION_TEMP",t[206]="HA_ERR_WRONG_TABLE_NAME",t[207]="HA_ERR_TOO_LONG_PATH",t[208]="HA_ERR_SAMPLING_INIT_FAILED",t[209]="HA_ERR_FTS_TOO_MANY_NESTED_EXP",t[1e3]="ER_HASHCHK",t[1001]="ER_NISAMCHK",t[1002]="ER_NO",t[1003]="ER_YES",t[1004]="ER_CANT_CREATE_FILE",t[1005]="ER_CANT_CREATE_TABLE",t[1006]="ER_CANT_CREATE_DB",t[1007]="ER_DB_CREATE_EXISTS",t[1008]="ER_DB_DROP_EXISTS",t[1009]="ER_DB_DROP_DELETE",t[1010]="ER_DB_DROP_RMDIR",t[1011]="ER_CANT_DELETE_FILE",t[1012]="ER_CANT_FIND_SYSTEM_REC",t[1013]="ER_CANT_GET_STAT",t[1014]="ER_CANT_GET_WD",t[1015]="ER_CANT_LOCK",t[1016]="ER_CANT_OPEN_FILE",t[1017]="ER_FILE_NOT_FOUND",t[1018]="ER_CANT_READ_DIR",t[1019]="ER_CANT_SET_WD",t[1020]="ER_CHECKREAD",t[1021]="ER_DISK_FULL",t[1022]="ER_DUP_KEY",t[1023]="ER_ERROR_ON_CLOSE",t[1024]="ER_ERROR_ON_READ",t[1025]="ER_ERROR_ON_RENAME",t[1026]="ER_ERROR_ON_WRITE",t[1027]="ER_FILE_USED",t[1028]="ER_FILSORT_ABORT",t[1029]="ER_FORM_NOT_FOUND",t[1030]="ER_GET_ERRNO",t[1031]="ER_ILLEGAL_HA",t[1032]="ER_KEY_NOT_FOUND",t[1033]="ER_NOT_FORM_FILE",t[1034]="ER_NOT_KEYFILE",t[1035]="ER_OLD_KEYFILE",t[1036]="ER_OPEN_AS_READONLY",t[1037]="ER_OUTOFMEMORY",t[1038]="ER_OUT_OF_SORTMEMORY",t[1039]="ER_UNEXPECTED_EOF",t[1040]="ER_CON_COUNT_ERROR",t[1041]="ER_OUT_OF_RESOURCES",t[1042]="ER_BAD_HOST_ERROR",t[1043]="ER_HANDSHAKE_ERROR",t[1044]="ER_DBACCESS_DENIED_ERROR",t[1045]="ER_ACCESS_DENIED_ERROR",t[1046]="ER_NO_DB_ERROR",t[1047]="ER_UNKNOWN_COM_ERROR",t[1048]="ER_BAD_NULL_ERROR",t[1049]="ER_BAD_DB_ERROR",t[1050]="ER_TABLE_EXISTS_ERROR",t[1051]="ER_BAD_TABLE_ERROR",t[1052]="ER_NON_UNIQ_ERROR",t[1053]="ER_SERVER_SHUTDOWN",t[1054]="ER_BAD_FIELD_ERROR",t[1055]="ER_WRONG_FIELD_WITH_GROUP",t[1056]="ER_WRONG_GROUP_FIELD",t[1057]="ER_WRONG_SUM_SELECT",t[1058]="ER_WRONG_VALUE_COUNT",t[1059]="ER_TOO_LONG_IDENT",t[1060]="ER_DUP_FIELDNAME",t[1061]="ER_DUP_KEYNAME",t[1062]="ER_DUP_ENTRY",t[1063]="ER_WRONG_FIELD_SPEC",t[1064]="ER_PARSE_ERROR",t[1065]="ER_EMPTY_QUERY",t[1066]="ER_NONUNIQ_TABLE",t[1067]="ER_INVALID_DEFAULT",t[1068]="ER_MULTIPLE_PRI_KEY",t[1069]="ER_TOO_MANY_KEYS",t[1070]="ER_TOO_MANY_KEY_PARTS",t[1071]="ER_TOO_LONG_KEY",t[1072]="ER_KEY_COLUMN_DOES_NOT_EXITS",t[1073]="ER_BLOB_USED_AS_KEY",t[1074]="ER_TOO_BIG_FIELDLENGTH",t[1075]="ER_WRONG_AUTO_KEY",t[1076]="ER_READY",t[1077]="ER_NORMAL_SHUTDOWN",t[1078]="ER_GOT_SIGNAL",t[1079]="ER_SHUTDOWN_COMPLETE",t[1080]="ER_FORCING_CLOSE",t[1081]="ER_IPSOCK_ERROR",t[1082]="ER_NO_SUCH_INDEX",t[1083]="ER_WRONG_FIELD_TERMINATORS",t[1084]="ER_BLOBS_AND_NO_TERMINATED",t[1085]="ER_TEXTFILE_NOT_READABLE",t[1086]="ER_FILE_EXISTS_ERROR",t[1087]="ER_LOAD_INFO",t[1088]="ER_ALTER_INFO",t[1089]="ER_WRONG_SUB_KEY",t[1090]="ER_CANT_REMOVE_ALL_FIELDS",t[1091]="ER_CANT_DROP_FIELD_OR_KEY",t[1092]="ER_INSERT_INFO",t[1093]="ER_UPDATE_TABLE_USED",t[1094]="ER_NO_SUCH_THREAD",t[1095]="ER_KILL_DENIED_ERROR",t[1096]="ER_NO_TABLES_USED",t[1097]="ER_TOO_BIG_SET",t[1098]="ER_NO_UNIQUE_LOGFILE",t[1099]="ER_TABLE_NOT_LOCKED_FOR_WRITE",t[1100]="ER_TABLE_NOT_LOCKED",t[1101]="ER_BLOB_CANT_HAVE_DEFAULT",t[1102]="ER_WRONG_DB_NAME",t[1103]="ER_WRONG_TABLE_NAME",t[1104]="ER_TOO_BIG_SELECT",t[1105]="ER_UNKNOWN_ERROR",t[1106]="ER_UNKNOWN_PROCEDURE",t[1107]="ER_WRONG_PARAMCOUNT_TO_PROCEDURE",t[1108]="ER_WRONG_PARAMETERS_TO_PROCEDURE",t[1109]="ER_UNKNOWN_TABLE",t[1110]="ER_FIELD_SPECIFIED_TWICE",t[1111]="ER_INVALID_GROUP_FUNC_USE",t[1112]="ER_UNSUPPORTED_EXTENSION",t[1113]="ER_TABLE_MUST_HAVE_COLUMNS",t[1114]="ER_RECORD_FILE_FULL",t[1115]="ER_UNKNOWN_CHARACTER_SET",t[1116]="ER_TOO_MANY_TABLES",t[1117]="ER_TOO_MANY_FIELDS",t[1118]="ER_TOO_BIG_ROWSIZE",t[1119]="ER_STACK_OVERRUN",t[1120]="ER_WRONG_OUTER_JOIN",t[1121]="ER_NULL_COLUMN_IN_INDEX",t[1122]="ER_CANT_FIND_UDF",t[1123]="ER_CANT_INITIALIZE_UDF",t[1124]="ER_UDF_NO_PATHS",t[1125]="ER_UDF_EXISTS",t[1126]="ER_CANT_OPEN_LIBRARY",t[1127]="ER_CANT_FIND_DL_ENTRY",t[1128]="ER_FUNCTION_NOT_DEFINED",t[1129]="ER_HOST_IS_BLOCKED",t[1130]="ER_HOST_NOT_PRIVILEGED",t[1131]="ER_PASSWORD_ANONYMOUS_USER",t[1132]="ER_PASSWORD_NOT_ALLOWED",t[1133]="ER_PASSWORD_NO_MATCH",t[1134]="ER_UPDATE_INFO",t[1135]="ER_CANT_CREATE_THREAD",t[1136]="ER_WRONG_VALUE_COUNT_ON_ROW",t[1137]="ER_CANT_REOPEN_TABLE",t[1138]="ER_INVALID_USE_OF_NULL",t[1139]="ER_REGEXP_ERROR",t[1140]="ER_MIX_OF_GROUP_FUNC_AND_FIELDS",t[1141]="ER_NONEXISTING_GRANT",t[1142]="ER_TABLEACCESS_DENIED_ERROR",t[1143]="ER_COLUMNACCESS_DENIED_ERROR",t[1144]="ER_ILLEGAL_GRANT_FOR_TABLE",t[1145]="ER_GRANT_WRONG_HOST_OR_USER",t[1146]="ER_NO_SUCH_TABLE",t[1147]="ER_NONEXISTING_TABLE_GRANT",t[1148]="ER_NOT_ALLOWED_COMMAND",t[1149]="ER_SYNTAX_ERROR",t[1150]="ER_UNUSED1",t[1151]="ER_UNUSED2",t[1152]="ER_ABORTING_CONNECTION",t[1153]="ER_NET_PACKET_TOO_LARGE",t[1154]="ER_NET_READ_ERROR_FROM_PIPE",t[1155]="ER_NET_FCNTL_ERROR",t[1156]="ER_NET_PACKETS_OUT_OF_ORDER",t[1157]="ER_NET_UNCOMPRESS_ERROR",t[1158]="ER_NET_READ_ERROR",t[1159]="ER_NET_READ_INTERRUPTED",t[1160]="ER_NET_ERROR_ON_WRITE",t[1161]="ER_NET_WRITE_INTERRUPTED",t[1162]="ER_TOO_LONG_STRING",t[1163]="ER_TABLE_CANT_HANDLE_BLOB",t[1164]="ER_TABLE_CANT_HANDLE_AUTO_INCREMENT",t[1165]="ER_UNUSED3",t[1166]="ER_WRONG_COLUMN_NAME",t[1167]="ER_WRONG_KEY_COLUMN",t[1168]="ER_WRONG_MRG_TABLE",t[1169]="ER_DUP_UNIQUE",t[1170]="ER_BLOB_KEY_WITHOUT_LENGTH",t[1171]="ER_PRIMARY_CANT_HAVE_NULL",t[1172]="ER_TOO_MANY_ROWS",t[1173]="ER_REQUIRES_PRIMARY_KEY",t[1174]="ER_NO_RAID_COMPILED",t[1175]="ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE",t[1176]="ER_KEY_DOES_NOT_EXITS",t[1177]="ER_CHECK_NO_SUCH_TABLE",t[1178]="ER_CHECK_NOT_IMPLEMENTED",t[1179]="ER_CANT_DO_THIS_DURING_AN_TRANSACTION",t[1180]="ER_ERROR_DURING_COMMIT",t[1181]="ER_ERROR_DURING_ROLLBACK",t[1182]="ER_ERROR_DURING_FLUSH_LOGS",t[1183]="ER_ERROR_DURING_CHECKPOINT",t[1184]="ER_NEW_ABORTING_CONNECTION",t[1185]="ER_DUMP_NOT_IMPLEMENTED",t[1186]="ER_FLUSH_MASTER_BINLOG_CLOSED",t[1187]="ER_INDEX_REBUILD",t[1188]="ER_SOURCE",t[1189]="ER_SOURCE_NET_READ",t[1190]="ER_SOURCE_NET_WRITE",t[1191]="ER_FT_MATCHING_KEY_NOT_FOUND",t[1192]="ER_LOCK_OR_ACTIVE_TRANSACTION",t[1193]="ER_UNKNOWN_SYSTEM_VARIABLE",t[1194]="ER_CRASHED_ON_USAGE",t[1195]="ER_CRASHED_ON_REPAIR",t[1196]="ER_WARNING_NOT_COMPLETE_ROLLBACK",t[1197]="ER_TRANS_CACHE_FULL",t[1198]="ER_SLAVE_MUST_STOP",t[1199]="ER_REPLICA_NOT_RUNNING",t[1200]="ER_BAD_REPLICA",t[1201]="ER_CONNECTION_METADATA",t[1202]="ER_REPLICA_THREAD",t[1203]="ER_TOO_MANY_USER_CONNECTIONS",t[1204]="ER_SET_CONSTANTS_ONLY",t[1205]="ER_LOCK_WAIT_TIMEOUT",t[1206]="ER_LOCK_TABLE_FULL",t[1207]="ER_READ_ONLY_TRANSACTION",t[1208]="ER_DROP_DB_WITH_READ_LOCK",t[1209]="ER_CREATE_DB_WITH_READ_LOCK",t[1210]="ER_WRONG_ARGUMENTS",t[1211]="ER_NO_PERMISSION_TO_CREATE_USER",t[1212]="ER_UNION_TABLES_IN_DIFFERENT_DIR",t[1213]="ER_LOCK_DEADLOCK",t[1214]="ER_TABLE_CANT_HANDLE_FT",t[1215]="ER_CANNOT_ADD_FOREIGN",t[1216]="ER_NO_REFERENCED_ROW",t[1217]="ER_ROW_IS_REFERENCED",t[1218]="ER_CONNECT_TO_SOURCE",t[1219]="ER_QUERY_ON_MASTER",t[1220]="ER_ERROR_WHEN_EXECUTING_COMMAND",t[1221]="ER_WRONG_USAGE",t[1222]="ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT",t[1223]="ER_CANT_UPDATE_WITH_READLOCK",t[1224]="ER_MIXING_NOT_ALLOWED",t[1225]="ER_DUP_ARGUMENT",t[1226]="ER_USER_LIMIT_REACHED",t[1227]="ER_SPECIFIC_ACCESS_DENIED_ERROR",t[1228]="ER_LOCAL_VARIABLE",t[1229]="ER_GLOBAL_VARIABLE",t[1230]="ER_NO_DEFAULT",t[1231]="ER_WRONG_VALUE_FOR_VAR",t[1232]="ER_WRONG_TYPE_FOR_VAR",t[1233]="ER_VAR_CANT_BE_READ",t[1234]="ER_CANT_USE_OPTION_HERE",t[1235]="ER_NOT_SUPPORTED_YET",t[1236]="ER_SOURCE_FATAL_ERROR_READING_BINLOG",t[1237]="ER_REPLICA_IGNORED_TABLE",t[1238]="ER_INCORRECT_GLOBAL_LOCAL_VAR",t[1239]="ER_WRONG_FK_DEF",t[1240]="ER_KEY_REF_DO_NOT_MATCH_TABLE_REF",t[1241]="ER_OPERAND_COLUMNS",t[1242]="ER_SUBQUERY_NO_1_ROW",t[1243]="ER_UNKNOWN_STMT_HANDLER",t[1244]="ER_CORRUPT_HELP_DB",t[1245]="ER_CYCLIC_REFERENCE",t[1246]="ER_AUTO_CONVERT",t[1247]="ER_ILLEGAL_REFERENCE";t[1248]="ER_DERIVED_MUST_HAVE_ALIAS",t[1249]="ER_SELECT_REDUCED",t[1250]="ER_TABLENAME_NOT_ALLOWED_HERE",t[1251]="ER_NOT_SUPPORTED_AUTH_MODE",t[1252]="ER_SPATIAL_CANT_HAVE_NULL",t[1253]="ER_COLLATION_CHARSET_MISMATCH",t[1254]="ER_SLAVE_WAS_RUNNING",t[1255]="ER_SLAVE_WAS_NOT_RUNNING",t[1256]="ER_TOO_BIG_FOR_UNCOMPRESS",t[1257]="ER_ZLIB_Z_MEM_ERROR",t[1258]="ER_ZLIB_Z_BUF_ERROR",t[1259]="ER_ZLIB_Z_DATA_ERROR",t[1260]="ER_CUT_VALUE_GROUP_CONCAT",t[1261]="ER_WARN_TOO_FEW_RECORDS",t[1262]="ER_WARN_TOO_MANY_RECORDS",t[1263]="ER_WARN_NULL_TO_NOTNULL",t[1264]="ER_WARN_DATA_OUT_OF_RANGE",t[1265]="WARN_DATA_TRUNCATED",t[1266]="ER_WARN_USING_OTHER_HANDLER",t[1267]="ER_CANT_AGGREGATE_2COLLATIONS",t[1268]="ER_DROP_USER",t[1269]="ER_REVOKE_GRANTS",t[1270]="ER_CANT_AGGREGATE_3COLLATIONS",t[1271]="ER_CANT_AGGREGATE_NCOLLATIONS",t[1272]="ER_VARIABLE_IS_NOT_STRUCT",t[1273]="ER_UNKNOWN_COLLATION",t[1274]="ER_REPLICA_IGNORED_SSL_PARAMS",t[1275]="ER_SERVER_IS_IN_SECURE_AUTH_MODE",t[1276]="ER_WARN_FIELD_RESOLVED",t[1277]="ER_BAD_REPLICA_UNTIL_COND",t[1278]="ER_MISSING_SKIP_REPLICA",t[1279]="ER_UNTIL_COND_IGNORED",t[1280]="ER_WRONG_NAME_FOR_INDEX",t[1281]="ER_WRONG_NAME_FOR_CATALOG",t[1282]="ER_WARN_QC_RESIZE",t[1283]="ER_BAD_FT_COLUMN",t[1284]="ER_UNKNOWN_KEY_CACHE",t[1285]="ER_WARN_HOSTNAME_WONT_WORK",t[1286]="ER_UNKNOWN_STORAGE_ENGINE",t[1287]="ER_WARN_DEPRECATED_SYNTAX",t[1288]="ER_NON_UPDATABLE_TABLE",t[1289]="ER_FEATURE_DISABLED",t[1290]="ER_OPTION_PREVENTS_STATEMENT",t[1291]="ER_DUPLICATED_VALUE_IN_TYPE",t[1292]="ER_TRUNCATED_WRONG_VALUE",t[1293]="ER_TOO_MUCH_AUTO_TIMESTAMP_COLS",t[1294]="ER_INVALID_ON_UPDATE",t[1295]="ER_UNSUPPORTED_PS",t[1296]="ER_GET_ERRMSG",t[1297]="ER_GET_TEMPORARY_ERRMSG",t[1298]="ER_UNKNOWN_TIME_ZONE",t[1299]="ER_WARN_INVALID_TIMESTAMP",t[1300]="ER_INVALID_CHARACTER_STRING",t[1301]="ER_WARN_ALLOWED_PACKET_OVERFLOWED",t[1302]="ER_CONFLICTING_DECLARATIONS",t[1303]="ER_SP_NO_RECURSIVE_CREATE",t[1304]="ER_SP_ALREADY_EXISTS",t[1305]="ER_SP_DOES_NOT_EXIST",t[1306]="ER_SP_DROP_FAILED",t[1307]="ER_SP_STORE_FAILED",t[1308]="ER_SP_LILABEL_MISMATCH",t[1309]="ER_SP_LABEL_REDEFINE",t[1310]="ER_SP_LABEL_MISMATCH",t[1311]="ER_SP_UNINIT_VAR",t[1312]="ER_SP_BADSELECT",t[1313]="ER_SP_BADRETURN",t[1314]="ER_SP_BADSTATEMENT",t[1315]="ER_UPDATE_LOG_DEPRECATED_IGNORED",t[1316]="ER_UPDATE_LOG_DEPRECATED_TRANSLATED",t[1317]="ER_QUERY_INTERRUPTED",t[1318]="ER_SP_WRONG_NO_OF_ARGS",t[1319]="ER_SP_COND_MISMATCH",t[1320]="ER_SP_NORETURN",t[1321]="ER_SP_NORETURNEND",t[1322]="ER_SP_BAD_CURSOR_QUERY",t[1323]="ER_SP_BAD_CURSOR_SELECT",t[1324]="ER_SP_CURSOR_MISMATCH",t[1325]="ER_SP_CURSOR_ALREADY_OPEN",t[1326]="ER_SP_CURSOR_NOT_OPEN",t[1327]="ER_SP_UNDECLARED_VAR",t[1328]="ER_SP_WRONG_NO_OF_FETCH_ARGS",t[1329]="ER_SP_FETCH_NO_DATA",t[1330]="ER_SP_DUP_PARAM",t[1331]="ER_SP_DUP_VAR",t[1332]="ER_SP_DUP_COND",t[1333]="ER_SP_DUP_CURS",t[1334]="ER_SP_CANT_ALTER",t[1335]="ER_SP_SUBSELECT_NYI",t[1336]="ER_STMT_NOT_ALLOWED_IN_SF_OR_TRG",t[1337]="ER_SP_VARCOND_AFTER_CURSHNDLR",t[1338]="ER_SP_CURSOR_AFTER_HANDLER",t[1339]="ER_SP_CASE_NOT_FOUND",t[1340]="ER_FPARSER_TOO_BIG_FILE",t[1341]="ER_FPARSER_BAD_HEADER",t[1342]="ER_FPARSER_EOF_IN_COMMENT",t[1343]="ER_FPARSER_ERROR_IN_PARAMETER",t[1344]="ER_FPARSER_EOF_IN_UNKNOWN_PARAMETER",t[1345]="ER_VIEW_NO_EXPLAIN",t[1346]="ER_FRM_UNKNOWN_TYPE",t[1347]="ER_WRONG_OBJECT",t[1348]="ER_NONUPDATEABLE_COLUMN",t[1349]="ER_VIEW_SELECT_DERIVED",t[1350]="ER_VIEW_SELECT_CLAUSE",t[1351]="ER_VIEW_SELECT_VARIABLE",t[1352]="ER_VIEW_SELECT_TMPTABLE",t[1353]="ER_VIEW_WRONG_LIST",t[1354]="ER_WARN_VIEW_MERGE",t[1355]="ER_WARN_VIEW_WITHOUT_KEY",t[1356]="ER_VIEW_INVALID",t[1357]="ER_SP_NO_DROP_SP",t[1358]="ER_SP_GOTO_IN_HNDLR",t[1359]="ER_TRG_ALREADY_EXISTS",t[1360]="ER_TRG_DOES_NOT_EXIST",t[1361]="ER_TRG_ON_VIEW_OR_TEMP_TABLE",t[1362]="ER_TRG_CANT_CHANGE_ROW",t[1363]="ER_TRG_NO_SUCH_ROW_IN_TRG",t[1364]="ER_NO_DEFAULT_FOR_FIELD",t[1365]="ER_DIVISION_BY_ZERO",t[1366]="ER_TRUNCATED_WRONG_VALUE_FOR_FIELD",t[1367]="ER_ILLEGAL_VALUE_FOR_TYPE",t[1368]="ER_VIEW_NONUPD_CHECK",t[1369]="ER_VIEW_CHECK_FAILED",t[1370]="ER_PROCACCESS_DENIED_ERROR",t[1371]="ER_RELAY_LOG_FAIL",t[1372]="ER_PASSWD_LENGTH",t[1373]="ER_UNKNOWN_TARGET_BINLOG",t[1374]="ER_IO_ERR_LOG_INDEX_READ",t[1375]="ER_BINLOG_PURGE_PROHIBITED",t[1376]="ER_FSEEK_FAIL",t[1377]="ER_BINLOG_PURGE_FATAL_ERR",t[1378]="ER_LOG_IN_USE",t[1379]="ER_LOG_PURGE_UNKNOWN_ERR",t[1380]="ER_RELAY_LOG_INIT",t[1381]="ER_NO_BINARY_LOGGING",t[1382]="ER_RESERVED_SYNTAX",t[1383]="ER_WSAS_FAILED",t[1384]="ER_DIFF_GROUPS_PROC",t[1385]="ER_NO_GROUP_FOR_PROC",t[1386]="ER_ORDER_WITH_PROC",t[1387]="ER_LOGGING_PROHIBIT_CHANGING_OF",t[1388]="ER_NO_FILE_MAPPING",t[1389]="ER_WRONG_MAGIC",t[1390]="ER_PS_MANY_PARAM",t[1391]="ER_KEY_PART_0",t[1392]="ER_VIEW_CHECKSUM",t[1393]="ER_VIEW_MULTIUPDATE",t[1394]="ER_VIEW_NO_INSERT_FIELD_LIST",t[1395]="ER_VIEW_DELETE_MERGE_VIEW",t[1396]="ER_CANNOT_USER",t[1397]="ER_XAER_NOTA",t[1398]="ER_XAER_INVAL",t[1399]="ER_XAER_RMFAIL",t[1400]="ER_XAER_OUTSIDE",t[1401]="ER_XAER_RMERR",t[1402]="ER_XA_RBROLLBACK",t[1403]="ER_NONEXISTING_PROC_GRANT",t[1404]="ER_PROC_AUTO_GRANT_FAIL",t[1405]="ER_PROC_AUTO_REVOKE_FAIL",t[1406]="ER_DATA_TOO_LONG",t[1407]="ER_SP_BAD_SQLSTATE",t[1408]="ER_STARTUP",t[1409]="ER_LOAD_FROM_FIXED_SIZE_ROWS_TO_VAR",t[1410]="ER_CANT_CREATE_USER_WITH_GRANT",t[1411]="ER_WRONG_VALUE_FOR_TYPE",t[1412]="ER_TABLE_DEF_CHANGED",t[1413]="ER_SP_DUP_HANDLER",t[1414]="ER_SP_NOT_VAR_ARG",t[1415]="ER_SP_NO_RETSET",t[1416]="ER_CANT_CREATE_GEOMETRY_OBJECT",t[1417]="ER_FAILED_ROUTINE_BREAK_BINLOG",t[1418]="ER_BINLOG_UNSAFE_ROUTINE",t[1419]="ER_BINLOG_CREATE_ROUTINE_NEED_SUPER",t[1420]="ER_EXEC_STMT_WITH_OPEN_CURSOR",t[1421]="ER_STMT_HAS_NO_OPEN_CURSOR",t[1422]="ER_COMMIT_NOT_ALLOWED_IN_SF_OR_TRG",t[1423]="ER_NO_DEFAULT_FOR_VIEW_FIELD",t[1424]="ER_SP_NO_RECURSION",t[1425]="ER_TOO_BIG_SCALE",t[1426]="ER_TOO_BIG_PRECISION",t[1427]="ER_M_BIGGER_THAN_D",t[1428]="ER_WRONG_LOCK_OF_SYSTEM_TABLE",t[1429]="ER_CONNECT_TO_FOREIGN_DATA_SOURCE",t[1430]="ER_QUERY_ON_FOREIGN_DATA_SOURCE",t[1431]="ER_FOREIGN_DATA_SOURCE_DOESNT_EXIST",t[1432]="ER_FOREIGN_DATA_STRING_INVALID_CANT_CREATE",t[1433]="ER_FOREIGN_DATA_STRING_INVALID",t[1434]="ER_CANT_CREATE_FEDERATED_TABLE",t[1435]="ER_TRG_IN_WRONG_SCHEMA",t[1436]="ER_STACK_OVERRUN_NEED_MORE",t[1437]="ER_TOO_LONG_BODY",t[1438]="ER_WARN_CANT_DROP_DEFAULT_KEYCACHE",t[1439]="ER_TOO_BIG_DISPLAYWIDTH",t[1440]="ER_XAER_DUPID",t[1441]="ER_DATETIME_FUNCTION_OVERFLOW",t[1442]="ER_CANT_UPDATE_USED_TABLE_IN_SF_OR_TRG",t[1443]="ER_VIEW_PREVENT_UPDATE",t[1444]="ER_PS_NO_RECURSION",t[1445]="ER_SP_CANT_SET_AUTOCOMMIT",t[1446]="ER_MALFORMED_DEFINER",t[1447]="ER_VIEW_FRM_NO_USER",t[1448]="ER_VIEW_OTHER_USER",t[1449]="ER_NO_SUCH_USER",t[1450]="ER_FORBID_SCHEMA_CHANGE",t[1451]="ER_ROW_IS_REFERENCED_2",t[1452]="ER_NO_REFERENCED_ROW_2",t[1453]="ER_SP_BAD_VAR_SHADOW",t[1454]="ER_TRG_NO_DEFINER",t[1455]="ER_OLD_FILE_FORMAT",t[1456]="ER_SP_RECURSION_LIMIT",t[1457]="ER_SP_PROC_TABLE_CORRUPT",t[1458]="ER_SP_WRONG_NAME",t[1459]="ER_TABLE_NEEDS_UPGRADE",t[1460]="ER_SP_NO_AGGREGATE",t[1461]="ER_MAX_PREPARED_STMT_COUNT_REACHED",t[1462]="ER_VIEW_RECURSIVE",t[1463]="ER_NON_GROUPING_FIELD_USED",t[1464]="ER_TABLE_CANT_HANDLE_SPKEYS",t[1465]="ER_NO_TRIGGERS_ON_SYSTEM_SCHEMA",t[1466]="ER_REMOVED_SPACES",t[1467]="ER_AUTOINC_READ_FAILED",t[1468]="ER_USERNAME",t[1469]="ER_HOSTNAME",t[1470]="ER_WRONG_STRING_LENGTH",t[1471]="ER_NON_INSERTABLE_TABLE",t[1472]="ER_ADMIN_WRONG_MRG_TABLE",t[1473]="ER_TOO_HIGH_LEVEL_OF_NESTING_FOR_SELECT",t[1474]="ER_NAME_BECOMES_EMPTY",t[1475]="ER_AMBIGUOUS_FIELD_TERM",t[1476]="ER_FOREIGN_SERVER_EXISTS",t[1477]="ER_FOREIGN_SERVER_DOESNT_EXIST",t[1478]="ER_ILLEGAL_HA_CREATE_OPTION",t[1479]="ER_PARTITION_REQUIRES_VALUES_ERROR",t[1480]="ER_PARTITION_WRONG_VALUES_ERROR",t[1481]="ER_PARTITION_MAXVALUE_ERROR",t[1482]="ER_PARTITION_SUBPARTITION_ERROR",t[1483]="ER_PARTITION_SUBPART_MIX_ERROR",t[1484]="ER_PARTITION_WRONG_NO_PART_ERROR",t[1485]="ER_PARTITION_WRONG_NO_SUBPART_ERROR",t[1486]="ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR",t[1487]="ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR",t[1488]="ER_FIELD_NOT_FOUND_PART_ERROR",t[1489]="ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR",t[1490]="ER_INCONSISTENT_PARTITION_INFO_ERROR",t[1491]="ER_PARTITION_FUNC_NOT_ALLOWED_ERROR",t[1492]="ER_PARTITIONS_MUST_BE_DEFINED_ERROR",t[1493]="ER_RANGE_NOT_INCREASING_ERROR",t[1494]="ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR",t[1495]="ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR",t[1496]="ER_PARTITION_ENTRY_ERROR",t[1497]="ER_MIX_HANDLER_ERROR",t[1498]="ER_PARTITION_NOT_DEFINED_ERROR",t[1499]="ER_TOO_MANY_PARTITIONS_ERROR",t[1500]="ER_SUBPARTITION_ERROR",t[1501]="ER_CANT_CREATE_HANDLER_FILE",t[1502]="ER_BLOB_FIELD_IN_PART_FUNC_ERROR",t[1503]="ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF",t[1504]="ER_NO_PARTS_ERROR",t[1505]="ER_PARTITION_MGMT_ON_NONPARTITIONED",t[1506]="ER_FOREIGN_KEY_ON_PARTITIONED",t[1507]="ER_DROP_PARTITION_NON_EXISTENT",t[1508]="ER_DROP_LAST_PARTITION",t[1509]="ER_COALESCE_ONLY_ON_HASH_PARTITION",t[1510]="ER_REORG_HASH_ONLY_ON_SAME_NO",t[1511]="ER_REORG_NO_PARAM_ERROR",t[1512]="ER_ONLY_ON_RANGE_LIST_PARTITION",t[1513]="ER_ADD_PARTITION_SUBPART_ERROR",t[1514]="ER_ADD_PARTITION_NO_NEW_PARTITION",t[1515]="ER_COALESCE_PARTITION_NO_PARTITION",t[1516]="ER_REORG_PARTITION_NOT_EXIST",t[1517]="ER_SAME_NAME_PARTITION",t[1518]="ER_NO_BINLOG_ERROR",t[1519]="ER_CONSECUTIVE_REORG_PARTITIONS",t[1520]="ER_REORG_OUTSIDE_RANGE",t[1521]="ER_PARTITION_FUNCTION_FAILURE",t[1522]="ER_PART_STATE_ERROR",t[1523]="ER_LIMITED_PART_RANGE",t[1524]="ER_PLUGIN_IS_NOT_LOADED",t[1525]="ER_WRONG_VALUE",t[1526]="ER_NO_PARTITION_FOR_GIVEN_VALUE",t[1527]="ER_FILEGROUP_OPTION_ONLY_ONCE",t[1528]="ER_CREATE_FILEGROUP_FAILED",t[1529]="ER_DROP_FILEGROUP_FAILED",t[1530]="ER_TABLESPACE_AUTO_EXTEND_ERROR",t[1531]="ER_WRONG_SIZE_NUMBER",t[1532]="ER_SIZE_OVERFLOW_ERROR",t[1533]="ER_ALTER_FILEGROUP_FAILED",t[1534]="ER_BINLOG_ROW_LOGGING_FAILED",t[1535]="ER_BINLOG_ROW_WRONG_TABLE_DEF",t[1536]="ER_BINLOG_ROW_RBR_TO_SBR",t[1537]="ER_EVENT_ALREADY_EXISTS",t[1538]="ER_EVENT_STORE_FAILED",t[1539]="ER_EVENT_DOES_NOT_EXIST",t[1540]="ER_EVENT_CANT_ALTER",t[1541]="ER_EVENT_DROP_FAILED",t[1542]="ER_EVENT_INTERVAL_NOT_POSITIVE_OR_TOO_BIG",t[1543]="ER_EVENT_ENDS_BEFORE_STARTS",t[1544]="ER_EVENT_EXEC_TIME_IN_THE_PAST",t[1545]="ER_EVENT_OPEN_TABLE_FAILED",t[1546]="ER_EVENT_NEITHER_M_EXPR_NOR_M_AT",t[1547]="ER_COL_COUNT_DOESNT_MATCH_CORRUPTED",t[1548]="ER_CANNOT_LOAD_FROM_TABLE",t[1549]="ER_EVENT_CANNOT_DELETE",t[1550]="ER_EVENT_COMPILE_ERROR",t[1551]="ER_EVENT_SAME_NAME",t[1552]="ER_EVENT_DATA_TOO_LONG",t[1553]="ER_DROP_INDEX_FK",t[1554]="ER_WARN_DEPRECATED_SYNTAX_WITH_VER",t[1555]="ER_CANT_WRITE_LOCK_LOG_TABLE",t[1556]="ER_CANT_LOCK_LOG_TABLE",t[1557]="ER_FOREIGN_DUPLICATE_KEY",t[1558]="ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE",t[1559]="ER_TEMP_TABLE_PREVENTS_SWITCH_OUT_OF_RBR",t[1560]="ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_FORMAT",t[1561]="ER_NDB_CANT_SWITCH_BINLOG_FORMAT",t[1562]="ER_PARTITION_NO_TEMPORARY",t[1563]="ER_PARTITION_CONST_DOMAIN_ERROR",t[1564]="ER_PARTITION_FUNCTION_IS_NOT_ALLOWED",t[1565]="ER_DDL_LOG_ERROR",t[1566]="ER_NULL_IN_VALUES_LESS_THAN",t[1567]="ER_WRONG_PARTITION_NAME",t[1568]="ER_CANT_CHANGE_TX_CHARACTERISTICS",t[1569]="ER_DUP_ENTRY_AUTOINCREMENT_CASE",t[1570]="ER_EVENT_MODIFY_QUEUE_ERROR",t[1571]="ER_EVENT_SET_VAR_ERROR",t[1572]="ER_PARTITION_MERGE_ERROR",t[1573]="ER_CANT_ACTIVATE_LOG",t[1574]="ER_RBR_NOT_AVAILABLE",t[1575]="ER_BASE64_DECODE_ERROR",t[1576]="ER_EVENT_RECURSION_FORBIDDEN",t[1577]="ER_EVENTS_DB_ERROR",t[1578]="ER_ONLY_INTEGERS_ALLOWED",t[1579]="ER_UNSUPORTED_LOG_ENGINE",t[1580]="ER_BAD_LOG_STATEMENT",t[1581]="ER_CANT_RENAME_LOG_TABLE",t[1582]="ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT",t[1583]="ER_WRONG_PARAMETERS_TO_NATIVE_FCT",t[1584]="ER_WRONG_PARAMETERS_TO_STORED_FCT",t[1585]="ER_NATIVE_FCT_NAME_COLLISION",t[1586]="ER_DUP_ENTRY_WITH_KEY_NAME",t[1587]="ER_BINLOG_PURGE_EMFILE",t[1588]="ER_EVENT_CANNOT_CREATE_IN_THE_PAST",t[1589]="ER_EVENT_CANNOT_ALTER_IN_THE_PAST",t[1590]="ER_SLAVE_INCIDENT",t[1591]="ER_NO_PARTITION_FOR_GIVEN_VALUE_SILENT",t[1592]="ER_BINLOG_UNSAFE_STATEMENT",t[1593]="ER_BINLOG_FATAL_ERROR",t[1594]="ER_SLAVE_RELAY_LOG_READ_FAILURE",t[1595]="ER_SLAVE_RELAY_LOG_WRITE_FAILURE",t[1596]="ER_SLAVE_CREATE_EVENT_FAILURE",t[1597]="ER_SLAVE_MASTER_COM_FAILURE",t[1598]="ER_BINLOG_LOGGING_IMPOSSIBLE",t[1599]="ER_VIEW_NO_CREATION_CTX",t[1600]="ER_VIEW_INVALID_CREATION_CTX",t[1601]="ER_SR_INVALID_CREATION_CTX",t[1602]="ER_TRG_CORRUPTED_FILE",t[1603]="ER_TRG_NO_CREATION_CTX",t[1604]="ER_TRG_INVALID_CREATION_CTX",t[1605]="ER_EVENT_INVALID_CREATION_CTX",t[1606]="ER_TRG_CANT_OPEN_TABLE",t[1607]="ER_CANT_CREATE_SROUTINE",t[1608]="ER_NEVER_USED",t[1609]="ER_NO_FORMAT_DESCRIPTION_EVENT_BEFORE_BINLOG_STATEMENT",t[1610]="ER_REPLICA_CORRUPT_EVENT",t[1611]="ER_LOAD_DATA_INVALID_COLUMN",t[1612]="ER_LOG_PURGE_NO_FILE",t[1613]="ER_XA_RBTIMEOUT",t[1614]="ER_XA_RBDEADLOCK",t[1615]="ER_NEED_REPREPARE",t[1616]="ER_DELAYED_NOT_SUPPORTED",t[1617]="WARN_NO_CONNECTION_METADATA",t[1618]="WARN_OPTION_IGNORED",t[1619]="ER_PLUGIN_DELETE_BUILTIN",t[1620]="WARN_PLUGIN_BUSY",t[1621]="ER_VARIABLE_IS_READONLY",t[1622]="ER_WARN_ENGINE_TRANSACTION_ROLLBACK",t[1623]="ER_SLAVE_HEARTBEAT_FAILURE",t[1624]="ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE",t[1625]="ER_NDB_REPLICATION_SCHEMA_ERROR",t[1626]="ER_CONFLICT_FN_PARSE_ERROR",t[1627]="ER_EXCEPTIONS_WRITE_ERROR",t[1628]="ER_TOO_LONG_TABLE_COMMENT",t[1629]="ER_TOO_LONG_FIELD_COMMENT",t[1630]="ER_FUNC_INEXISTENT_NAME_COLLISION",t[1631]="ER_DATABASE_NAME",t[1632]="ER_TABLE_NAME",t[1633]="ER_PARTITION_NAME",t[1634]="ER_SUBPARTITION_NAME",t[1635]="ER_TEMPORARY_NAME",t[1636]="ER_RENAMED_NAME",t[1637]="ER_TOO_MANY_CONCURRENT_TRXS",t[1638]="WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED",t[1639]="ER_DEBUG_SYNC_TIMEOUT",t[1640]="ER_DEBUG_SYNC_HIT_LIMIT",t[1641]="ER_DUP_SIGNAL_SET",t[1642]="ER_SIGNAL_WARN",t[1643]="ER_SIGNAL_NOT_FOUND",t[1644]="ER_SIGNAL_EXCEPTION",t[1645]="ER_RESIGNAL_WITHOUT_ACTIVE_HANDLER",t[1646]="ER_SIGNAL_BAD_CONDITION_TYPE",t[1647]="WARN_COND_ITEM_TRUNCATED",t[1648]="ER_COND_ITEM_TOO_LONG",t[1649]="ER_UNKNOWN_LOCALE",t[1650]="ER_REPLICA_IGNORE_SERVER_IDS",t[1651]="ER_QUERY_CACHE_DISABLED",t[1652]="ER_SAME_NAME_PARTITION_FIELD",t[1653]="ER_PARTITION_COLUMN_LIST_ERROR",t[1654]="ER_WRONG_TYPE_COLUMN_VALUE_ERROR",t[1655]="ER_TOO_MANY_PARTITION_FUNC_FIELDS_ERROR",t[1656]="ER_MAXVALUE_IN_VALUES_IN",t[1657]="ER_TOO_MANY_VALUES_ERROR",t[1658]="ER_ROW_SINGLE_PARTITION_FIELD_ERROR",t[1659]="ER_FIELD_TYPE_NOT_ALLOWED_AS_PARTITION_FIELD",t[1660]="ER_PARTITION_FIELDS_TOO_LONG",t[1661]="ER_BINLOG_ROW_ENGINE_AND_STMT_ENGINE",t[1662]="ER_BINLOG_ROW_MODE_AND_STMT_ENGINE",t[1663]="ER_BINLOG_UNSAFE_AND_STMT_ENGINE",t[1664]="ER_BINLOG_ROW_INJECTION_AND_STMT_ENGINE",t[1665]="ER_BINLOG_STMT_MODE_AND_ROW_ENGINE",t[1666]="ER_BINLOG_ROW_INJECTION_AND_STMT_MODE",t[1667]="ER_BINLOG_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE",t[1668]="ER_BINLOG_UNSAFE_LIMIT",t[1669]="ER_UNUSED4",t[1670]="ER_BINLOG_UNSAFE_SYSTEM_TABLE",t[1671]="ER_BINLOG_UNSAFE_AUTOINC_COLUMNS",t[1672]="ER_BINLOG_UNSAFE_UDF",t[1673]="ER_BINLOG_UNSAFE_SYSTEM_VARIABLE",t[1674]="ER_BINLOG_UNSAFE_SYSTEM_FUNCTION",t[1675]="ER_BINLOG_UNSAFE_NONTRANS_AFTER_TRANS",t[1676]="ER_MESSAGE_AND_STATEMENT",t[1677]="ER_SLAVE_CONVERSION_FAILED",t[1678]="ER_REPLICA_CANT_CREATE_CONVERSION",t[1679]="ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_FORMAT",t[1680]="ER_PATH_LENGTH",t[1681]="ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT",t[1682]="ER_WRONG_NATIVE_TABLE_STRUCTURE",t[1683]="ER_WRONG_PERFSCHEMA_USAGE",t[1684]="ER_WARN_I_S_SKIPPED_TABLE",t[1685]="ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_BINLOG_DIRECT",t[1686]="ER_STORED_FUNCTION_PREVENTS_SWITCH_BINLOG_DIRECT",t[1687]="ER_SPATIAL_MUST_HAVE_GEOM_COL",t[1688]="ER_TOO_LONG_INDEX_COMMENT",t[1689]="ER_LOCK_ABORTED",t[1690]="ER_DATA_OUT_OF_RANGE",t[1691]="ER_WRONG_SPVAR_TYPE_IN_LIMIT",t[1692]="ER_BINLOG_UNSAFE_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE",t[1693]="ER_BINLOG_UNSAFE_MIXED_STATEMENT",t[1694]="ER_INSIDE_TRANSACTION_PREVENTS_SWITCH_SQL_LOG_BIN",t[1695]="ER_STORED_FUNCTION_PREVENTS_SWITCH_SQL_LOG_BIN",t[1696]="ER_FAILED_READ_FROM_PAR_FILE",t[1697]="ER_VALUES_IS_NOT_INT_TYPE_ERROR",t[1698]="ER_ACCESS_DENIED_NO_PASSWORD_ERROR",t[1699]="ER_SET_PASSWORD_AUTH_PLUGIN",t[1700]="ER_GRANT_PLUGIN_USER_EXISTS",t[1701]="ER_TRUNCATE_ILLEGAL_FK",t[1702]="ER_PLUGIN_IS_PERMANENT",t[1703]="ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE_MIN",t[1704]="ER_REPLICA_HEARTBEAT_VALUE_OUT_OF_RANGE_MAX",t[1705]="ER_STMT_CACHE_FULL",t[1706]="ER_MULTI_UPDATE_KEY_CONFLICT",t[1707]="ER_TABLE_NEEDS_REBUILD",t[1708]="WARN_OPTION_BELOW_LIMIT",t[1709]="ER_INDEX_COLUMN_TOO_LONG",t[1710]="ER_ERROR_IN_TRIGGER_BODY",t[1711]="ER_ERROR_IN_UNKNOWN_TRIGGER_BODY",t[1712]="ER_INDEX_CORRUPT",t[1713]="ER_UNDO_RECORD_TOO_BIG",t[1714]="ER_BINLOG_UNSAFE_INSERT_IGNORE_SELECT",t[1715]="ER_BINLOG_UNSAFE_INSERT_SELECT_UPDATE",t[1716]="ER_BINLOG_UNSAFE_REPLACE_SELECT",t[1717]="ER_BINLOG_UNSAFE_CREATE_IGNORE_SELECT",t[1718]="ER_BINLOG_UNSAFE_CREATE_REPLACE_SELECT",t[1719]="ER_BINLOG_UNSAFE_UPDATE_IGNORE",t[1720]="ER_PLUGIN_NO_UNINSTALL",t[1721]="ER_PLUGIN_NO_INSTALL",t[1722]="ER_BINLOG_UNSAFE_WRITE_AUTOINC_SELECT",t[1723]="ER_BINLOG_UNSAFE_CREATE_SELECT_AUTOINC",t[1724]="ER_BINLOG_UNSAFE_INSERT_TWO_KEYS",t[1725]="ER_TABLE_IN_FK_CHECK",t[1726]="ER_UNSUPPORTED_ENGINE",t[1727]="ER_BINLOG_UNSAFE_AUTOINC_NOT_FIRST",t[1728]="ER_CANNOT_LOAD_FROM_TABLE_V2",t[1729]="ER_SOURCE_DELAY_VALUE_OUT_OF_RANGE",t[1730]="ER_ONLY_FD_AND_RBR_EVENTS_ALLOWED_IN_BINLOG_STATEMENT",t[1731]="ER_PARTITION_EXCHANGE_DIFFERENT_OPTION",t[1732]="ER_PARTITION_EXCHANGE_PART_TABLE",t[1733]="ER_PARTITION_EXCHANGE_TEMP_TABLE",t[1734]="ER_PARTITION_INSTEAD_OF_SUBPARTITION",t[1735]="ER_UNKNOWN_PARTITION",t[1736]="ER_TABLES_DIFFERENT_METADATA",t[1737]="ER_ROW_DOES_NOT_MATCH_PARTITION",t[1738]="ER_BINLOG_CACHE_SIZE_GREATER_THAN_MAX",t[1739]="ER_WARN_INDEX_NOT_APPLICABLE",t[1740]="ER_PARTITION_EXCHANGE_FOREIGN_KEY",t[1741]="ER_NO_SUCH_KEY_VALUE",t[1742]="ER_RPL_INFO_DATA_TOO_LONG",t[1743]="ER_NETWORK_READ_EVENT_CHECKSUM_FAILURE",t[1744]="ER_BINLOG_READ_EVENT_CHECKSUM_FAILURE",t[1745]="ER_BINLOG_STMT_CACHE_SIZE_GREATER_THAN_MAX",t[1746]="ER_CANT_UPDATE_TABLE_IN_CREATE_TABLE_SELECT",t[1747]="ER_PARTITION_CLAUSE_ON_NONPARTITIONED",t[1748]="ER_ROW_DOES_NOT_MATCH_GIVEN_PARTITION_SET",t[1749]="ER_NO_SUCH_PARTITION",t[1750]="ER_CHANGE_RPL_INFO_REPOSITORY_FAILURE",t[1751]="ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_CREATED_TEMP_TABLE",t[1752]="ER_WARNING_NOT_COMPLETE_ROLLBACK_WITH_DROPPED_TEMP_TABLE",t[1753]="ER_MTA_FEATURE_IS_NOT_SUPPORTED",t[1754]="ER_MTA_UPDATED_DBS_GREATER_MAX",t[1755]="ER_MTA_CANT_PARALLEL",t[1756]="ER_MTA_INCONSISTENT_DATA",t[1757]="ER_FULLTEXT_NOT_SUPPORTED_WITH_PARTITIONING",t[1758]="ER_DA_INVALID_CONDITION_NUMBER",t[1759]="ER_INSECURE_PLAIN_TEXT",t[1760]="ER_INSECURE_CHANGE_SOURCE",t[1761]="ER_FOREIGN_DUPLICATE_KEY_WITH_CHILD_INFO",t[1762]="ER_FOREIGN_DUPLICATE_KEY_WITHOUT_CHILD_INFO",t[1763]="ER_SQLTHREAD_WITH_SECURE_REPLICA",t[1764]="ER_TABLE_HAS_NO_FT",t[1765]="ER_VARIABLE_NOT_SETTABLE_IN_SF_OR_TRIGGER",t[1766]="ER_VARIABLE_NOT_SETTABLE_IN_TRANSACTION",t[1767]="ER_GTID_NEXT_IS_NOT_IN_GTID_NEXT_LIST",t[1768]="ER_CANT_CHANGE_GTID_NEXT_IN_TRANSACTION",t[1769]="ER_SET_STATEMENT_CANNOT_INVOKE_FUNCTION",t[1770]="ER_GTID_NEXT_CANT_BE_AUTOMATIC_IF_GTID_NEXT_LIST_IS_NON_NULL",t[1771]="ER_SKIPPING_LOGGED_TRANSACTION",t[1772]="ER_MALFORMED_GTID_SET_SPECIFICATION",t[1773]="ER_MALFORMED_GTID_SET_ENCODING",t[1774]="ER_MALFORMED_GTID_SPECIFICATION",t[1775]="ER_GNO_EXHAUSTED",t[1776]="ER_BAD_REPLICA_AUTO_POSITION",t[1777]="ER_AUTO_POSITION_REQUIRES_GTID_MODE_NOT_OFF",t[1778]="ER_CANT_DO_IMPLICIT_COMMIT_IN_TRX_WHEN_GTID_NEXT_IS_SET",t[1779]="ER_GTID_MODE_ON_REQUIRES_ENFORCE_GTID_CONSISTENCY_ON",t[1780]="ER_GTID_MODE_REQUIRES_BINLOG",t[1781]="ER_CANT_SET_GTID_NEXT_TO_GTID_WHEN_GTID_MODE_IS_OFF",t[1782]="ER_CANT_SET_GTID_NEXT_TO_ANONYMOUS_WHEN_GTID_MODE_IS_ON",t[1783]="ER_CANT_SET_GTID_NEXT_LIST_TO_NON_NULL_WHEN_GTID_MODE_IS_OFF",t[1784]="ER_FOUND_GTID_EVENT_WHEN_GTID_MODE_IS_OFF",t[1785]="ER_GTID_UNSAFE_NON_TRANSACTIONAL_TABLE",t[1786]="ER_GTID_UNSAFE_CREATE_SELECT",t[1787]="ER_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE_IN_TRANSACTION",t[1788]="ER_GTID_MODE_CAN_ONLY_CHANGE_ONE_STEP_AT_A_TIME",t[1789]="ER_SOURCE_HAS_PURGED_REQUIRED_GTIDS",t[1790]="ER_CANT_SET_GTID_NEXT_WHEN_OWNING_GTID",t[1791]="ER_UNKNOWN_EXPLAIN_FORMAT",t[1792]="ER_CANT_EXECUTE_IN_READ_ONLY_TRANSACTION",t[1793]="ER_TOO_LONG_TABLE_PARTITION_COMMENT",t[1794]="ER_REPLICA_CONFIGURATION",t[1795]="ER_INNODB_FT_LIMIT",t[1796]="ER_INNODB_NO_FT_TEMP_TABLE",t[1797]="ER_INNODB_FT_WRONG_DOCID_COLUMN",t[1798]="ER_INNODB_FT_WRONG_DOCID_INDEX",t[1799]="ER_INNODB_ONLINE_LOG_TOO_BIG",t[1800]="ER_UNKNOWN_ALTER_ALGORITHM",t[1801]="ER_UNKNOWN_ALTER_LOCK",t[1802]="ER_MTA_CHANGE_SOURCE_CANT_RUN_WITH_GAPS",t[1803]="ER_MTA_RECOVERY_FAILURE",t[1804]="ER_MTA_RESET_WORKERS",t[1805]="ER_COL_COUNT_DOESNT_MATCH_CORRUPTED_V2",t[1806]="ER_REPLICA_SILENT_RETRY_TRANSACTION",t[1807]="ER_DISCARD_FK_CHECKS_RUNNING",t[1808]="ER_TABLE_SCHEMA_MISMATCH",t[1809]="ER_TABLE_IN_SYSTEM_TABLESPACE",t[1810]="ER_IO_READ_ERROR",t[1811]="ER_IO_WRITE_ERROR",t[1812]="ER_TABLESPACE_MISSING",t[1813]="ER_TABLESPACE_EXISTS",t[1814]="ER_TABLESPACE_DISCARDED",t[1815]="ER_INTERNAL_ERROR",t[1816]="ER_INNODB_IMPORT_ERROR",t[1817]="ER_INNODB_INDEX_CORRUPT",t[1818]="ER_INVALID_YEAR_COLUMN_LENGTH",t[1819]="ER_NOT_VALID_PASSWORD",t[1820]="ER_MUST_CHANGE_PASSWORD",t[1821]="ER_FK_NO_INDEX_CHILD",t[1822]="ER_FK_NO_INDEX_PARENT",t[1823]="ER_FK_FAIL_ADD_SYSTEM",t[1824]="ER_FK_CANNOT_OPEN_PARENT",t[1825]="ER_FK_INCORRECT_OPTION",t[1826]="ER_FK_DUP_NAME",t[1827]="ER_PASSWORD_FORMAT",t[1828]="ER_FK_COLUMN_CANNOT_DROP",t[1829]="ER_FK_COLUMN_CANNOT_DROP_CHILD",t[1830]="ER_FK_COLUMN_NOT_NULL",t[1831]="ER_DUP_INDEX",t[1832]="ER_FK_COLUMN_CANNOT_CHANGE",t[1833]="ER_FK_COLUMN_CANNOT_CHANGE_CHILD",t[1834]="ER_UNUSED5",t[1835]="ER_MALFORMED_PACKET",t[1836]="ER_READ_ONLY_MODE",t[1837]="ER_GTID_NEXT_TYPE_UNDEFINED_GTID",t[1838]="ER_VARIABLE_NOT_SETTABLE_IN_SP",t[1839]="ER_CANT_SET_GTID_PURGED_WHEN_GTID_MODE_IS_OFF",t[1840]="ER_CANT_SET_GTID_PURGED_WHEN_GTID_EXECUTED_IS_NOT_EMPTY",t[1841]="ER_CANT_SET_GTID_PURGED_WHEN_OWNED_GTIDS_IS_NOT_EMPTY",t[1842]="ER_GTID_PURGED_WAS_CHANGED",t[1843]="ER_GTID_EXECUTED_WAS_CHANGED",t[1844]="ER_BINLOG_STMT_MODE_AND_NO_REPL_TABLES",t[1845]="ER_ALTER_OPERATION_NOT_SUPPORTED",t[1846]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON",t[1847]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COPY",t[1848]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_PARTITION",t[1849]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_RENAME",t[1850]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE",t[1851]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FK_CHECK",t[1852]="ER_UNUSED6",t[1853]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOPK",t[1854]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_AUTOINC",t[1855]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_HIDDEN_FTS",t[1856]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_CHANGE_FTS",t[1857]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_FTS",t[1858]="ER_SQL_REPLICA_SKIP_COUNTER_NOT_SETTABLE_IN_GTID_MODE",t[1859]="ER_DUP_UNKNOWN_IN_INDEX",t[1860]="ER_IDENT_CAUSES_TOO_LONG_PATH",t[1861]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_NOT_NULL",t[1862]="ER_MUST_CHANGE_PASSWORD_LOGIN",t[1863]="ER_ROW_IN_WRONG_PARTITION",t[1864]="ER_MTA_EVENT_BIGGER_PENDING_JOBS_SIZE_MAX",t[1865]="ER_INNODB_NO_FT_USES_PARSER",t[1866]="ER_BINLOG_LOGICAL_CORRUPTION",t[1867]="ER_WARN_PURGE_LOG_IN_USE",t[1868]="ER_WARN_PURGE_LOG_IS_ACTIVE",t[1869]="ER_AUTO_INCREMENT_CONFLICT",t[1870]="WARN_ON_BLOCKHOLE_IN_RBR",t[1871]="ER_REPLICA_CM_INIT_REPOSITORY",t[1872]="ER_REPLICA_AM_INIT_REPOSITORY",t[1873]="ER_ACCESS_DENIED_CHANGE_USER_ERROR",t[1874]="ER_INNODB_READ_ONLY",t[1875]="ER_STOP_REPLICA_SQL_THREAD_TIMEOUT",t[1876]="ER_STOP_REPLICA_IO_THREAD_TIMEOUT",t[1877]="ER_TABLE_CORRUPT",t[1878]="ER_TEMP_FILE_WRITE_FAILURE",t[1879]="ER_INNODB_FT_AUX_NOT_HEX_ID",t[1880]="ER_OLD_TEMPORALS_UPGRADED",t[1881]="ER_INNODB_FORCED_RECOVERY",t[1882]="ER_AES_INVALID_IV",t[1883]="ER_PLUGIN_CANNOT_BE_UNINSTALLED",t[1884]="ER_GTID_UNSAFE_BINLOG_SPLITTABLE_STATEMENT_AND_ASSIGNED_GTID",t[1885]="ER_REPLICA_HAS_MORE_GTIDS_THAN_SOURCE",t[1886]="ER_MISSING_KEY",t[1887]="WARN_NAMED_PIPE_ACCESS_EVERYONE",t[3e3]="ER_FILE_CORRUPT",t[3001]="ER_ERROR_ON_SOURCE",t[3002]="ER_INCONSISTENT_ERROR",t[3003]="ER_STORAGE_ENGINE_NOT_LOADED",t[3004]="ER_GET_STACKED_DA_WITHOUT_ACTIVE_HANDLER",t[3005]="ER_WARN_LEGACY_SYNTAX_CONVERTED",t[3006]="ER_BINLOG_UNSAFE_FULLTEXT_PLUGIN",t[3007]="ER_CANNOT_DISCARD_TEMPORARY_TABLE",t[3008]="ER_FK_DEPTH_EXCEEDED",t[3009]="ER_COL_COUNT_DOESNT_MATCH_PLEASE_UPDATE_V2",t[3010]="ER_WARN_TRIGGER_DOESNT_HAVE_CREATED",t[3011]="ER_REFERENCED_TRG_DOES_NOT_EXIST",t[3012]="ER_EXPLAIN_NOT_SUPPORTED",t[3013]="ER_INVALID_FIELD_SIZE",t[3014]="ER_MISSING_HA_CREATE_OPTION",t[3015]="ER_ENGINE_OUT_OF_MEMORY",t[3016]="ER_PASSWORD_EXPIRE_ANONYMOUS_USER",t[3017]="ER_REPLICA_SQL_THREAD_MUST_STOP",t[3018]="ER_NO_FT_MATERIALIZED_SUBQUERY",t[3019]="ER_INNODB_UNDO_LOG_FULL",t[3020]="ER_INVALID_ARGUMENT_FOR_LOGARITHM",t[3021]="ER_REPLICA_CHANNEL_IO_THREAD_MUST_STOP",t[3022]="ER_WARN_OPEN_TEMP_TABLES_MUST_BE_ZERO",t[3023]="ER_WARN_ONLY_SOURCE_LOG_FILE_NO_POS",t[3024]="ER_QUERY_TIMEOUT",t[3025]="ER_NON_RO_SELECT_DISABLE_TIMER",t[3026]="ER_DUP_LIST_ENTRY",t[3027]="ER_SQL_MODE_NO_EFFECT",t[3028]="ER_AGGREGATE_ORDER_FOR_UNION",t[3029]="ER_AGGREGATE_ORDER_NON_AGG_QUERY",t[3030]="ER_REPLICA_WORKER_STOPPED_PREVIOUS_THD_ERROR",t[3031]="ER_DONT_SUPPORT_REPLICA_PRESERVE_COMMIT_ORDER",t[3032]="ER_SERVER_OFFLINE_MODE",t[3033]="ER_GIS_DIFFERENT_SRIDS",t[3034]="ER_GIS_UNSUPPORTED_ARGUMENT",t[3035]="ER_GIS_UNKNOWN_ERROR",t[3036]="ER_GIS_UNKNOWN_EXCEPTION",t[3037]="ER_GIS_INVALID_DATA",t[3038]="ER_BOOST_GEOMETRY_EMPTY_INPUT_EXCEPTION",t[3039]="ER_BOOST_GEOMETRY_CENTROID_EXCEPTION",t[3040]="ER_BOOST_GEOMETRY_OVERLAY_INVALID_INPUT_EXCEPTION",t[3041]="ER_BOOST_GEOMETRY_TURN_INFO_EXCEPTION",t[3042]="ER_BOOST_GEOMETRY_SELF_INTERSECTION_POINT_EXCEPTION",t[3043]="ER_BOOST_GEOMETRY_UNKNOWN_EXCEPTION",t[3044]="ER_STD_BAD_ALLOC_ERROR",t[3045]="ER_STD_DOMAIN_ERROR",t[3046]="ER_STD_LENGTH_ERROR",t[3047]="ER_STD_INVALID_ARGUMENT",t[3048]="ER_STD_OUT_OF_RANGE_ERROR",t[3049]="ER_STD_OVERFLOW_ERROR",t[3050]="ER_STD_RANGE_ERROR",t[3051]="ER_STD_UNDERFLOW_ERROR",t[3052]="ER_STD_LOGIC_ERROR",t[3053]="ER_STD_RUNTIME_ERROR",t[3054]="ER_STD_UNKNOWN_EXCEPTION",t[3055]="ER_GIS_DATA_WRONG_ENDIANESS",t[3056]="ER_CHANGE_SOURCE_PASSWORD_LENGTH",t[3057]="ER_USER_LOCK_WRONG_NAME",t[3058]="ER_USER_LOCK_DEADLOCK",t[3059]="ER_REPLACE_INACCESSIBLE_ROWS",t[3060]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_GIS",t[3061]="ER_ILLEGAL_USER_VAR",t[3062]="ER_GTID_MODE_OFF",t[3063]="ER_UNSUPPORTED_BY_REPLICATION_THREAD",t[3064]="ER_INCORRECT_TYPE",t[3065]="ER_FIELD_IN_ORDER_NOT_SELECT",t[3066]="ER_AGGREGATE_IN_ORDER_NOT_SELECT",t[3067]="ER_INVALID_RPL_WILD_TABLE_FILTER_PATTERN",t[3068]="ER_NET_OK_PACKET_TOO_LARGE",t[3069]="ER_INVALID_JSON_DATA",t[3070]="ER_INVALID_GEOJSON_MISSING_MEMBER",t[3071]="ER_INVALID_GEOJSON_WRONG_TYPE",t[3072]="ER_INVALID_GEOJSON_UNSPECIFIED",t[3073]="ER_DIMENSION_UNSUPPORTED",t[3074]="ER_REPLICA_CHANNEL_DOES_NOT_EXIST",t[3075]="ER_SLAVE_MULTIPLE_CHANNELS_HOST_PORT",t[3076]="ER_REPLICA_CHANNEL_NAME_INVALID_OR_TOO_LONG",t[3077]="ER_REPLICA_NEW_CHANNEL_WRONG_REPOSITORY",t[3078]="ER_SLAVE_CHANNEL_DELETE",t[3079]="ER_REPLICA_MULTIPLE_CHANNELS_CMD",t[3080]="ER_REPLICA_MAX_CHANNELS_EXCEEDED",t[3081]="ER_REPLICA_CHANNEL_MUST_STOP",t[3082]="ER_REPLICA_CHANNEL_NOT_RUNNING",t[3083]="ER_REPLICA_CHANNEL_WAS_RUNNING",t[3084]="ER_REPLICA_CHANNEL_WAS_NOT_RUNNING",t[3085]="ER_REPLICA_CHANNEL_SQL_THREAD_MUST_STOP",t[3086]="ER_REPLICA_CHANNEL_SQL_SKIP_COUNTER",t[3087]="ER_WRONG_FIELD_WITH_GROUP_V2",t[3088]="ER_MIX_OF_GROUP_FUNC_AND_FIELDS_V2",t[3089]="ER_WARN_DEPRECATED_SYSVAR_UPDATE",t[3090]="ER_WARN_DEPRECATED_SQLMODE",t[3091]="ER_CANNOT_LOG_PARTIAL_DROP_DATABASE_WITH_GTID",t[3092]="ER_GROUP_REPLICATION_CONFIGURATION",t[3093]="ER_GROUP_REPLICATION_RUNNING",t[3094]="ER_GROUP_REPLICATION_APPLIER_INIT_ERROR",t[3095]="ER_GROUP_REPLICATION_STOP_APPLIER_THREAD_TIMEOUT",t[3096]="ER_GROUP_REPLICATION_COMMUNICATION_LAYER_SESSION_ERROR",t[3097]="ER_GROUP_REPLICATION_COMMUNICATION_LAYER_JOIN_ERROR",t[3098]="ER_BEFORE_DML_VALIDATION_ERROR",t[3099]="ER_PREVENTS_VARIABLE_WITHOUT_RBR",t[3100]="ER_RUN_HOOK_ERROR",t[3101]="ER_TRANSACTION_ROLLBACK_DURING_COMMIT",t[3102]="ER_GENERATED_COLUMN_FUNCTION_IS_NOT_ALLOWED",t[3103]="ER_UNSUPPORTED_ALTER_INPLACE_ON_VIRTUAL_COLUMN",t[3104]="ER_WRONG_FK_OPTION_FOR_GENERATED_COLUMN",t[3105]="ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN",t[3106]="ER_UNSUPPORTED_ACTION_ON_GENERATED_COLUMN",t[3107]="ER_GENERATED_COLUMN_NON_PRIOR",t[3108]="ER_DEPENDENT_BY_GENERATED_COLUMN",t[3109]="ER_GENERATED_COLUMN_REF_AUTO_INC",t[3110]="ER_FEATURE_NOT_AVAILABLE",t[3111]="ER_CANT_SET_GTID_MODE",t[3112]="ER_CANT_USE_AUTO_POSITION_WITH_GTID_MODE_OFF",t[3113]="ER_CANT_REPLICATE_ANONYMOUS_WITH_AUTO_POSITION",t[3114]="ER_CANT_REPLICATE_ANONYMOUS_WITH_GTID_MODE_ON",t[3115]="ER_CANT_REPLICATE_GTID_WITH_GTID_MODE_OFF",t[3116]="ER_CANT_ENFORCE_GTID_CONSISTENCY_WITH_ONGOING_GTID_VIOLATING_TX",t[3117]="ER_ENFORCE_GTID_CONSISTENCY_WARN_WITH_ONGOING_GTID_VIOLATING_TX",t[3118]="ER_ACCOUNT_HAS_BEEN_LOCKED",t[3119]="ER_WRONG_TABLESPACE_NAME",t[3120]="ER_TABLESPACE_IS_NOT_EMPTY",t[3121]="ER_WRONG_FILE_NAME",t[3122]="ER_BOOST_GEOMETRY_INCONSISTENT_TURNS_EXCEPTION",t[3123]="ER_WARN_OPTIMIZER_HINT_SYNTAX_ERROR",t[3124]="ER_WARN_BAD_MAX_EXECUTION_TIME",t[3125]="ER_WARN_UNSUPPORTED_MAX_EXECUTION_TIME",t[3126]="ER_WARN_CONFLICTING_HINT",t[3127]="ER_WARN_UNKNOWN_QB_NAME",t[3128]="ER_UNRESOLVED_HINT_NAME",t[3129]="ER_WARN_ON_MODIFYING_GTID_EXECUTED_TABLE",t[3130]="ER_PLUGGABLE_PROTOCOL_COMMAND_NOT_SUPPORTED",t[3131]="ER_LOCKING_SERVICE_WRONG_NAME",t[3132]="ER_LOCKING_SERVICE_DEADLOCK",t[3133]="ER_LOCKING_SERVICE_TIMEOUT",t[3134]="ER_GIS_MAX_POINTS_IN_GEOMETRY_OVERFLOWED",t[3135]="ER_SQL_MODE_MERGED",t[3136]="ER_VTOKEN_PLUGIN_TOKEN_MISMATCH",t[3137]="ER_VTOKEN_PLUGIN_TOKEN_NOT_FOUND",t[3138]="ER_CANT_SET_VARIABLE_WHEN_OWNING_GTID",t[3139]="ER_REPLICA_CHANNEL_OPERATION_NOT_ALLOWED",t[3140]="ER_INVALID_JSON_TEXT",t[3141]="ER_INVALID_JSON_TEXT_IN_PARAM",t[3142]="ER_INVALID_JSON_BINARY_DATA",t[3143]="ER_INVALID_JSON_PATH",t[3144]="ER_INVALID_JSON_CHARSET",t[3145]="ER_INVALID_JSON_CHARSET_IN_FUNCTION",t[3146]="ER_INVALID_TYPE_FOR_JSON",t[3147]="ER_INVALID_CAST_TO_JSON",t[3148]="ER_INVALID_JSON_PATH_CHARSET",t[3149]="ER_INVALID_JSON_PATH_WILDCARD",t[3150]="ER_JSON_VALUE_TOO_BIG",t[3151]="ER_JSON_KEY_TOO_BIG",t[3152]="ER_JSON_USED_AS_KEY",t[3153]="ER_JSON_VACUOUS_PATH",t[3154]="ER_JSON_BAD_ONE_OR_ALL_ARG",t[3155]="ER_NUMERIC_JSON_VALUE_OUT_OF_RANGE",t[3156]="ER_INVALID_JSON_VALUE_FOR_CAST",t[3157]="ER_JSON_DOCUMENT_TOO_DEEP",t[3158]="ER_JSON_DOCUMENT_NULL_KEY",t[3159]="ER_SECURE_TRANSPORT_REQUIRED";t[3160]="ER_NO_SECURE_TRANSPORTS_CONFIGURED",t[3161]="ER_DISABLED_STORAGE_ENGINE",t[3162]="ER_USER_DOES_NOT_EXIST",t[3163]="ER_USER_ALREADY_EXISTS",t[3164]="ER_AUDIT_API_ABORT",t[3165]="ER_INVALID_JSON_PATH_ARRAY_CELL",t[3166]="ER_BUFPOOL_RESIZE_INPROGRESS",t[3167]="ER_FEATURE_DISABLED_SEE_DOC",t[3168]="ER_SERVER_ISNT_AVAILABLE",t[3169]="ER_SESSION_WAS_KILLED",t[3170]="ER_CAPACITY_EXCEEDED",t[3171]="ER_CAPACITY_EXCEEDED_IN_RANGE_OPTIMIZER",t[3172]="ER_TABLE_NEEDS_UPG_PART",t[3173]="ER_CANT_WAIT_FOR_EXECUTED_GTID_SET_WHILE_OWNING_A_GTID",t[3174]="ER_CANNOT_ADD_FOREIGN_BASE_COL_VIRTUAL",t[3175]="ER_CANNOT_CREATE_VIRTUAL_INDEX_CONSTRAINT",t[3176]="ER_ERROR_ON_MODIFYING_GTID_EXECUTED_TABLE",t[3177]="ER_LOCK_REFUSED_BY_ENGINE",t[3178]="ER_UNSUPPORTED_ALTER_ONLINE_ON_VIRTUAL_COLUMN",t[3179]="ER_MASTER_KEY_ROTATION_NOT_SUPPORTED_BY_SE",t[3180]="ER_MASTER_KEY_ROTATION_ERROR_BY_SE",t[3181]="ER_MASTER_KEY_ROTATION_BINLOG_FAILED",t[3182]="ER_MASTER_KEY_ROTATION_SE_UNAVAILABLE",t[3183]="ER_TABLESPACE_CANNOT_ENCRYPT",t[3184]="ER_INVALID_ENCRYPTION_OPTION",t[3185]="ER_CANNOT_FIND_KEY_IN_KEYRING",t[3186]="ER_CAPACITY_EXCEEDED_IN_PARSER",t[3187]="ER_UNSUPPORTED_ALTER_ENCRYPTION_INPLACE",t[3188]="ER_KEYRING_UDF_KEYRING_SERVICE_ERROR",t[3189]="ER_USER_COLUMN_OLD_LENGTH",t[3190]="ER_CANT_RESET_SOURCE",t[3191]="ER_GROUP_REPLICATION_MAX_GROUP_SIZE",t[3192]="ER_CANNOT_ADD_FOREIGN_BASE_COL_STORED",t[3193]="ER_TABLE_REFERENCED",t[3194]="ER_PARTITION_ENGINE_DEPRECATED_FOR_TABLE",t[3195]="ER_WARN_USING_GEOMFROMWKB_TO_SET_SRID_ZERO",t[3196]="ER_WARN_USING_GEOMFROMWKB_TO_SET_SRID",t[3197]="ER_XA_RETRY",t[3198]="ER_KEYRING_AWS_UDF_AWS_KMS_ERROR",t[3199]="ER_BINLOG_UNSAFE_XA",t[3200]="ER_UDF_ERROR",t[3201]="ER_KEYRING_MIGRATION_FAILURE",t[3202]="ER_KEYRING_ACCESS_DENIED_ERROR",t[3203]="ER_KEYRING_MIGRATION_STATUS",t[3204]="ER_PLUGIN_FAILED_TO_OPEN_TABLES",t[3205]="ER_PLUGIN_FAILED_TO_OPEN_TABLE",t[3206]="ER_AUDIT_LOG_NO_KEYRING_PLUGIN_INSTALLED",t[3207]="ER_AUDIT_LOG_ENCRYPTION_PASSWORD_HAS_NOT_BEEN_SET",t[3208]="ER_AUDIT_LOG_COULD_NOT_CREATE_AES_KEY",t[3209]="ER_AUDIT_LOG_ENCRYPTION_PASSWORD_CANNOT_BE_FETCHED",t[3210]="ER_AUDIT_LOG_JSON_FILTERING_NOT_ENABLED",t[3211]="ER_AUDIT_LOG_UDF_INSUFFICIENT_PRIVILEGE",t[3212]="ER_AUDIT_LOG_SUPER_PRIVILEGE_REQUIRED",t[3213]="ER_COULD_NOT_REINITIALIZE_AUDIT_LOG_FILTERS",t[3214]="ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_TYPE",t[3215]="ER_AUDIT_LOG_UDF_INVALID_ARGUMENT_COUNT",t[3216]="ER_AUDIT_LOG_HAS_NOT_BEEN_INSTALLED",t[3217]="ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_ARG_TYPE",t[3218]="ER_AUDIT_LOG_UDF_READ_INVALID_MAX_ARRAY_LENGTH_ARG_VALUE",t[3219]="ER_AUDIT_LOG_JSON_FILTER_PARSING_ERROR",t[3220]="ER_AUDIT_LOG_JSON_FILTER_NAME_CANNOT_BE_EMPTY",t[3221]="ER_AUDIT_LOG_JSON_USER_NAME_CANNOT_BE_EMPTY",t[3222]="ER_AUDIT_LOG_JSON_FILTER_DOES_NOT_EXISTS",t[3223]="ER_AUDIT_LOG_USER_FIRST_CHARACTER_MUST_BE_ALPHANUMERIC",t[3224]="ER_AUDIT_LOG_USER_NAME_INVALID_CHARACTER",t[3225]="ER_AUDIT_LOG_HOST_NAME_INVALID_CHARACTER",t[3226]="WARN_DEPRECATED_MAXDB_SQL_MODE_FOR_TIMESTAMP",t[3227]="ER_XA_REPLICATION_FILTERS",t[3228]="ER_CANT_OPEN_ERROR_LOG",t[3229]="ER_GROUPING_ON_TIMESTAMP_IN_DST",t[3230]="ER_CANT_START_SERVER_NAMED_PIPE",t[3231]="ER_WRITE_SET_EXCEEDS_LIMIT",t[3232]="ER_DEPRECATED_TLS_VERSION_SESSION_57",t[3233]="ER_WARN_DEPRECATED_TLS_VERSION_57",t[3234]="ER_WARN_WRONG_NATIVE_TABLE_STRUCTURE",t[3235]="ER_AES_INVALID_KDF_NAME",t[3236]="ER_AES_INVALID_KDF_ITERATIONS",t[3237]="WARN_AES_KEY_SIZE",t[3238]="ER_AES_INVALID_KDF_OPTION_SIZE",t[3500]="ER_UNSUPPORT_COMPRESSED_TEMPORARY_TABLE",t[3501]="ER_ACL_OPERATION_FAILED",t[3502]="ER_UNSUPPORTED_INDEX_ALGORITHM",t[3503]="ER_NO_SUCH_DB",t[3504]="ER_TOO_BIG_ENUM",t[3505]="ER_TOO_LONG_SET_ENUM_VALUE",t[3506]="ER_INVALID_DD_OBJECT",t[3507]="ER_UPDATING_DD_TABLE",t[3508]="ER_INVALID_DD_OBJECT_ID",t[3509]="ER_INVALID_DD_OBJECT_NAME",t[3510]="ER_TABLESPACE_MISSING_WITH_NAME",t[3511]="ER_TOO_LONG_ROUTINE_COMMENT",t[3512]="ER_SP_LOAD_FAILED",t[3513]="ER_INVALID_BITWISE_OPERANDS_SIZE",t[3514]="ER_INVALID_BITWISE_AGGREGATE_OPERANDS_SIZE",t[3515]="ER_WARN_UNSUPPORTED_HINT",t[3516]="ER_UNEXPECTED_GEOMETRY_TYPE",t[3517]="ER_SRS_PARSE_ERROR",t[3518]="ER_SRS_PROJ_PARAMETER_MISSING",t[3519]="ER_WARN_SRS_NOT_FOUND",t[3520]="ER_SRS_NOT_CARTESIAN",t[3521]="ER_SRS_NOT_CARTESIAN_UNDEFINED",t[3522]="ER_PK_INDEX_CANT_BE_INVISIBLE",t[3523]="ER_UNKNOWN_AUTHID",t[3524]="ER_FAILED_ROLE_GRANT",t[3525]="ER_OPEN_ROLE_TABLES",t[3526]="ER_FAILED_DEFAULT_ROLES",t[3527]="ER_COMPONENTS_NO_SCHEME",t[3528]="ER_COMPONENTS_NO_SCHEME_SERVICE",t[3529]="ER_COMPONENTS_CANT_LOAD",t[3530]="ER_ROLE_NOT_GRANTED",t[3531]="ER_FAILED_REVOKE_ROLE",t[3532]="ER_RENAME_ROLE",t[3533]="ER_COMPONENTS_CANT_ACQUIRE_SERVICE_IMPLEMENTATION",t[3534]="ER_COMPONENTS_CANT_SATISFY_DEPENDENCY",t[3535]="ER_COMPONENTS_LOAD_CANT_REGISTER_SERVICE_IMPLEMENTATION",t[3536]="ER_COMPONENTS_LOAD_CANT_INITIALIZE",t[3537]="ER_COMPONENTS_UNLOAD_NOT_LOADED",t[3538]="ER_COMPONENTS_UNLOAD_CANT_DEINITIALIZE",t[3539]="ER_COMPONENTS_CANT_RELEASE_SERVICE",t[3540]="ER_COMPONENTS_UNLOAD_CANT_UNREGISTER_SERVICE",t[3541]="ER_COMPONENTS_CANT_UNLOAD",t[3542]="ER_WARN_UNLOAD_THE_NOT_PERSISTED",t[3543]="ER_COMPONENT_TABLE_INCORRECT",t[3544]="ER_COMPONENT_MANIPULATE_ROW_FAILED",t[3545]="ER_COMPONENTS_UNLOAD_DUPLICATE_IN_GROUP",t[3546]="ER_CANT_SET_GTID_PURGED_DUE_SETS_CONSTRAINTS",t[3547]="ER_CANNOT_LOCK_USER_MANAGEMENT_CACHES",t[3548]="ER_SRS_NOT_FOUND",t[3549]="ER_VARIABLE_NOT_PERSISTED",t[3550]="ER_IS_QUERY_INVALID_CLAUSE",t[3551]="ER_UNABLE_TO_STORE_STATISTICS",t[3552]="ER_NO_SYSTEM_SCHEMA_ACCESS",t[3553]="ER_NO_SYSTEM_TABLESPACE_ACCESS",t[3554]="ER_NO_SYSTEM_TABLE_ACCESS",t[3555]="ER_NO_SYSTEM_TABLE_ACCESS_FOR_DICTIONARY_TABLE",t[3556]="ER_NO_SYSTEM_TABLE_ACCESS_FOR_SYSTEM_TABLE",t[3557]="ER_NO_SYSTEM_TABLE_ACCESS_FOR_TABLE",t[3558]="ER_INVALID_OPTION_KEY",t[3559]="ER_INVALID_OPTION_VALUE",t[3560]="ER_INVALID_OPTION_KEY_VALUE_PAIR",t[3561]="ER_INVALID_OPTION_START_CHARACTER",t[3562]="ER_INVALID_OPTION_END_CHARACTER",t[3563]="ER_INVALID_OPTION_CHARACTERS",t[3564]="ER_DUPLICATE_OPTION_KEY",t[3565]="ER_WARN_SRS_NOT_FOUND_AXIS_ORDER",t[3566]="ER_NO_ACCESS_TO_NATIVE_FCT",t[3567]="ER_RESET_SOURCE_TO_VALUE_OUT_OF_RANGE",t[3568]="ER_UNRESOLVED_TABLE_LOCK",t[3569]="ER_DUPLICATE_TABLE_LOCK",t[3570]="ER_BINLOG_UNSAFE_SKIP_LOCKED",t[3571]="ER_BINLOG_UNSAFE_NOWAIT",t[3572]="ER_LOCK_NOWAIT",t[3573]="ER_CTE_RECURSIVE_REQUIRES_UNION",t[3574]="ER_CTE_RECURSIVE_REQUIRES_NONRECURSIVE_FIRST",t[3575]="ER_CTE_RECURSIVE_FORBIDS_AGGREGATION",t[3576]="ER_CTE_RECURSIVE_FORBIDDEN_JOIN_ORDER",t[3577]="ER_CTE_RECURSIVE_REQUIRES_SINGLE_REFERENCE",t[3578]="ER_SWITCH_TMP_ENGINE",t[3579]="ER_WINDOW_NO_SUCH_WINDOW",t[3580]="ER_WINDOW_CIRCULARITY_IN_WINDOW_GRAPH",t[3581]="ER_WINDOW_NO_CHILD_PARTITIONING",t[3582]="ER_WINDOW_NO_INHERIT_FRAME",t[3583]="ER_WINDOW_NO_REDEFINE_ORDER_BY",t[3584]="ER_WINDOW_FRAME_START_ILLEGAL",t[3585]="ER_WINDOW_FRAME_END_ILLEGAL",t[3586]="ER_WINDOW_FRAME_ILLEGAL",t[3587]="ER_WINDOW_RANGE_FRAME_ORDER_TYPE",t[3588]="ER_WINDOW_RANGE_FRAME_TEMPORAL_TYPE",t[3589]="ER_WINDOW_RANGE_FRAME_NUMERIC_TYPE",t[3590]="ER_WINDOW_RANGE_BOUND_NOT_CONSTANT",t[3591]="ER_WINDOW_DUPLICATE_NAME",t[3592]="ER_WINDOW_ILLEGAL_ORDER_BY",t[3593]="ER_WINDOW_INVALID_WINDOW_FUNC_USE",t[3594]="ER_WINDOW_INVALID_WINDOW_FUNC_ALIAS_USE",t[3595]="ER_WINDOW_NESTED_WINDOW_FUNC_USE_IN_WINDOW_SPEC",t[3596]="ER_WINDOW_ROWS_INTERVAL_USE",t[3597]="ER_WINDOW_NO_GROUP_ORDER",t[3598]="ER_WINDOW_EXPLAIN_JSON",t[3599]="ER_WINDOW_FUNCTION_IGNORES_FRAME",t[3600]="ER_WL9236_NOW",t[3601]="ER_INVALID_NO_OF_ARGS",t[3602]="ER_FIELD_IN_GROUPING_NOT_GROUP_BY",t[3603]="ER_TOO_LONG_TABLESPACE_COMMENT",t[3604]="ER_ENGINE_CANT_DROP_TABLE",t[3605]="ER_ENGINE_CANT_DROP_MISSING_TABLE",t[3606]="ER_TABLESPACE_DUP_FILENAME",t[3607]="ER_DB_DROP_RMDIR2",t[3608]="ER_IMP_NO_FILES_MATCHED",t[3609]="ER_IMP_SCHEMA_DOES_NOT_EXIST",t[3610]="ER_IMP_TABLE_ALREADY_EXISTS",t[3611]="ER_IMP_INCOMPATIBLE_MYSQLD_VERSION",t[3612]="ER_IMP_INCOMPATIBLE_DD_VERSION",t[3613]="ER_IMP_INCOMPATIBLE_SDI_VERSION",t[3614]="ER_WARN_INVALID_HINT",t[3615]="ER_VAR_DOES_NOT_EXIST",t[3616]="ER_LONGITUDE_OUT_OF_RANGE",t[3617]="ER_LATITUDE_OUT_OF_RANGE",t[3618]="ER_NOT_IMPLEMENTED_FOR_GEOGRAPHIC_SRS",t[3619]="ER_ILLEGAL_PRIVILEGE_LEVEL",t[3620]="ER_NO_SYSTEM_VIEW_ACCESS",t[3621]="ER_COMPONENT_FILTER_FLABBERGASTED",t[3622]="ER_PART_EXPR_TOO_LONG",t[3623]="ER_UDF_DROP_DYNAMICALLY_REGISTERED",t[3624]="ER_UNABLE_TO_STORE_COLUMN_STATISTICS",t[3625]="ER_UNABLE_TO_UPDATE_COLUMN_STATISTICS",t[3626]="ER_UNABLE_TO_DROP_COLUMN_STATISTICS",t[3627]="ER_UNABLE_TO_BUILD_HISTOGRAM",t[3628]="ER_MANDATORY_ROLE",t[3629]="ER_MISSING_TABLESPACE_FILE",t[3630]="ER_PERSIST_ONLY_ACCESS_DENIED_ERROR",t[3631]="ER_CMD_NEED_SUPER",t[3632]="ER_PATH_IN_DATADIR",t[3633]="ER_CLONE_DDL_IN_PROGRESS",t[3634]="ER_CLONE_TOO_MANY_CONCURRENT_CLONES",t[3635]="ER_APPLIER_LOG_EVENT_VALIDATION_ERROR",t[3636]="ER_CTE_MAX_RECURSION_DEPTH",t[3637]="ER_NOT_HINT_UPDATABLE_VARIABLE",t[3638]="ER_CREDENTIALS_CONTRADICT_TO_HISTORY",t[3639]="ER_WARNING_PASSWORD_HISTORY_CLAUSES_VOID",t[3640]="ER_CLIENT_DOES_NOT_SUPPORT",t[3641]="ER_I_S_SKIPPED_TABLESPACE",t[3642]="ER_TABLESPACE_ENGINE_MISMATCH",t[3643]="ER_WRONG_SRID_FOR_COLUMN",t[3644]="ER_CANNOT_ALTER_SRID_DUE_TO_INDEX",t[3645]="ER_WARN_BINLOG_PARTIAL_UPDATES_DISABLED",t[3646]="ER_WARN_BINLOG_V1_ROW_EVENTS_DISABLED",t[3647]="ER_WARN_BINLOG_PARTIAL_UPDATES_SUGGESTS_PARTIAL_IMAGES",t[3648]="ER_COULD_NOT_APPLY_JSON_DIFF",t[3649]="ER_CORRUPTED_JSON_DIFF",t[3650]="ER_RESOURCE_GROUP_EXISTS",t[3651]="ER_RESOURCE_GROUP_NOT_EXISTS",t[3652]="ER_INVALID_VCPU_ID",t[3653]="ER_INVALID_VCPU_RANGE",t[3654]="ER_INVALID_THREAD_PRIORITY",t[3655]="ER_DISALLOWED_OPERATION",t[3656]="ER_RESOURCE_GROUP_BUSY",t[3657]="ER_RESOURCE_GROUP_DISABLED",t[3658]="ER_FEATURE_UNSUPPORTED",t[3659]="ER_ATTRIBUTE_IGNORED",t[3660]="ER_INVALID_THREAD_ID",t[3661]="ER_RESOURCE_GROUP_BIND_FAILED",t[3662]="ER_INVALID_USE_OF_FORCE_OPTION",t[3663]="ER_GROUP_REPLICATION_COMMAND_FAILURE",t[3664]="ER_SDI_OPERATION_FAILED",t[3665]="ER_MISSING_JSON_TABLE_VALUE",t[3666]="ER_WRONG_JSON_TABLE_VALUE",t[3667]="ER_TF_MUST_HAVE_ALIAS",t[3668]="ER_TF_FORBIDDEN_JOIN_TYPE",t[3669]="ER_JT_VALUE_OUT_OF_RANGE",t[3670]="ER_JT_MAX_NESTED_PATH",t[3671]="ER_PASSWORD_EXPIRATION_NOT_SUPPORTED_BY_AUTH_METHOD",t[3672]="ER_INVALID_GEOJSON_CRS_NOT_TOP_LEVEL",t[3673]="ER_BAD_NULL_ERROR_NOT_IGNORED",t[3674]="WARN_USELESS_SPATIAL_INDEX",t[3675]="ER_DISK_FULL_NOWAIT",t[3676]="ER_PARSE_ERROR_IN_DIGEST_FN",t[3677]="ER_UNDISCLOSED_PARSE_ERROR_IN_DIGEST_FN",t[3678]="ER_SCHEMA_DIR_EXISTS",t[3679]="ER_SCHEMA_DIR_MISSING",t[3680]="ER_SCHEMA_DIR_CREATE_FAILED",t[3681]="ER_SCHEMA_DIR_UNKNOWN",t[3682]="ER_ONLY_IMPLEMENTED_FOR_SRID_0_AND_4326",t[3683]="ER_BINLOG_EXPIRE_LOG_DAYS_AND_SECS_USED_TOGETHER",t[3684]="ER_REGEXP_BUFFER_OVERFLOW",t[3685]="ER_REGEXP_ILLEGAL_ARGUMENT",t[3686]="ER_REGEXP_INDEX_OUTOFBOUNDS_ERROR",t[3687]="ER_REGEXP_INTERNAL_ERROR",t[3688]="ER_REGEXP_RULE_SYNTAX",t[3689]="ER_REGEXP_BAD_ESCAPE_SEQUENCE",t[3690]="ER_REGEXP_UNIMPLEMENTED",t[3691]="ER_REGEXP_MISMATCHED_PAREN",t[3692]="ER_REGEXP_BAD_INTERVAL",t[3693]="ER_REGEXP_MAX_LT_MIN",t[3694]="ER_REGEXP_INVALID_BACK_REF",t[3695]="ER_REGEXP_LOOK_BEHIND_LIMIT",t[3696]="ER_REGEXP_MISSING_CLOSE_BRACKET",t[3697]="ER_REGEXP_INVALID_RANGE",t[3698]="ER_REGEXP_STACK_OVERFLOW",t[3699]="ER_REGEXP_TIME_OUT",t[3700]="ER_REGEXP_PATTERN_TOO_BIG",t[3701]="ER_CANT_SET_ERROR_LOG_SERVICE",t[3702]="ER_EMPTY_PIPELINE_FOR_ERROR_LOG_SERVICE",t[3703]="ER_COMPONENT_FILTER_DIAGNOSTICS",t[3704]="ER_NOT_IMPLEMENTED_FOR_CARTESIAN_SRS",t[3705]="ER_NOT_IMPLEMENTED_FOR_PROJECTED_SRS",t[3706]="ER_NONPOSITIVE_RADIUS",t[3707]="ER_RESTART_SERVER_FAILED",t[3708]="ER_SRS_MISSING_MANDATORY_ATTRIBUTE",t[3709]="ER_SRS_MULTIPLE_ATTRIBUTE_DEFINITIONS",t[3710]="ER_SRS_NAME_CANT_BE_EMPTY_OR_WHITESPACE",t[3711]="ER_SRS_ORGANIZATION_CANT_BE_EMPTY_OR_WHITESPACE",t[3712]="ER_SRS_ID_ALREADY_EXISTS",t[3713]="ER_WARN_SRS_ID_ALREADY_EXISTS",t[3714]="ER_CANT_MODIFY_SRID_0",t[3715]="ER_WARN_RESERVED_SRID_RANGE",t[3716]="ER_CANT_MODIFY_SRS_USED_BY_COLUMN",t[3717]="ER_SRS_INVALID_CHARACTER_IN_ATTRIBUTE",t[3718]="ER_SRS_ATTRIBUTE_STRING_TOO_LONG",t[3719]="ER_DEPRECATED_UTF8_ALIAS",t[3720]="ER_DEPRECATED_NATIONAL",t[3721]="ER_INVALID_DEFAULT_UTF8MB4_COLLATION",t[3722]="ER_UNABLE_TO_COLLECT_LOG_STATUS",t[3723]="ER_RESERVED_TABLESPACE_NAME",t[3724]="ER_UNABLE_TO_SET_OPTION",t[3725]="ER_REPLICA_POSSIBLY_DIVERGED_AFTER_DDL",t[3726]="ER_SRS_NOT_GEOGRAPHIC",t[3727]="ER_POLYGON_TOO_LARGE",t[3728]="ER_SPATIAL_UNIQUE_INDEX",t[3729]="ER_INDEX_TYPE_NOT_SUPPORTED_FOR_SPATIAL_INDEX",t[3730]="ER_FK_CANNOT_DROP_PARENT",t[3731]="ER_GEOMETRY_PARAM_LONGITUDE_OUT_OF_RANGE",t[3732]="ER_GEOMETRY_PARAM_LATITUDE_OUT_OF_RANGE",t[3733]="ER_FK_CANNOT_USE_VIRTUAL_COLUMN",t[3734]="ER_FK_NO_COLUMN_PARENT",t[3735]="ER_CANT_SET_ERROR_SUPPRESSION_LIST",t[3736]="ER_SRS_GEOGCS_INVALID_AXES",t[3737]="ER_SRS_INVALID_SEMI_MAJOR_AXIS",t[3738]="ER_SRS_INVALID_INVERSE_FLATTENING",t[3739]="ER_SRS_INVALID_ANGULAR_UNIT",t[3740]="ER_SRS_INVALID_PRIME_MERIDIAN",t[3741]="ER_TRANSFORM_SOURCE_SRS_NOT_SUPPORTED",t[3742]="ER_TRANSFORM_TARGET_SRS_NOT_SUPPORTED",t[3743]="ER_TRANSFORM_SOURCE_SRS_MISSING_TOWGS84",t[3744]="ER_TRANSFORM_TARGET_SRS_MISSING_TOWGS84",t[3745]="ER_TEMP_TABLE_PREVENTS_SWITCH_SESSION_BINLOG_FORMAT",t[3746]="ER_TEMP_TABLE_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT",t[3747]="ER_RUNNING_APPLIER_PREVENTS_SWITCH_GLOBAL_BINLOG_FORMAT",t[3748]="ER_CLIENT_GTID_UNSAFE_CREATE_DROP_TEMP_TABLE_IN_TRX_IN_SBR",t[3749]="ER_XA_CANT_CREATE_MDL_BACKUP",t[3750]="ER_TABLE_WITHOUT_PK",t[3751]="ER_WARN_DATA_TRUNCATED_FUNCTIONAL_INDEX",t[3752]="ER_WARN_DATA_OUT_OF_RANGE_FUNCTIONAL_INDEX",t[3753]="ER_FUNCTIONAL_INDEX_ON_JSON_OR_GEOMETRY_FUNCTION",t[3754]="ER_FUNCTIONAL_INDEX_REF_AUTO_INCREMENT",t[3755]="ER_CANNOT_DROP_COLUMN_FUNCTIONAL_INDEX",t[3756]="ER_FUNCTIONAL_INDEX_PRIMARY_KEY",t[3757]="ER_FUNCTIONAL_INDEX_ON_LOB",t[3758]="ER_FUNCTIONAL_INDEX_FUNCTION_IS_NOT_ALLOWED",t[3759]="ER_FULLTEXT_FUNCTIONAL_INDEX",t[3760]="ER_SPATIAL_FUNCTIONAL_INDEX",t[3761]="ER_WRONG_KEY_COLUMN_FUNCTIONAL_INDEX",t[3762]="ER_FUNCTIONAL_INDEX_ON_FIELD",t[3763]="ER_GENERATED_COLUMN_NAMED_FUNCTION_IS_NOT_ALLOWED",t[3764]="ER_GENERATED_COLUMN_ROW_VALUE",t[3765]="ER_GENERATED_COLUMN_VARIABLES",t[3766]="ER_DEPENDENT_BY_DEFAULT_GENERATED_VALUE",t[3767]="ER_DEFAULT_VAL_GENERATED_NON_PRIOR",t[3768]="ER_DEFAULT_VAL_GENERATED_REF_AUTO_INC",t[3769]="ER_DEFAULT_VAL_GENERATED_FUNCTION_IS_NOT_ALLOWED",t[3770]="ER_DEFAULT_VAL_GENERATED_NAMED_FUNCTION_IS_NOT_ALLOWED",t[3771]="ER_DEFAULT_VAL_GENERATED_ROW_VALUE",t[3772]="ER_DEFAULT_VAL_GENERATED_VARIABLES",t[3773]="ER_DEFAULT_AS_VAL_GENERATED",t[3774]="ER_UNSUPPORTED_ACTION_ON_DEFAULT_VAL_GENERATED",t[3775]="ER_GTID_UNSAFE_ALTER_ADD_COL_WITH_DEFAULT_EXPRESSION",t[3776]="ER_FK_CANNOT_CHANGE_ENGINE",t[3777]="ER_WARN_DEPRECATED_USER_SET_EXPR",t[3778]="ER_WARN_DEPRECATED_UTF8MB3_COLLATION",t[3779]="ER_WARN_DEPRECATED_NESTED_COMMENT_SYNTAX",t[3780]="ER_FK_INCOMPATIBLE_COLUMNS",t[3781]="ER_GR_HOLD_WAIT_TIMEOUT",t[3782]="ER_GR_HOLD_KILLED",t[3783]="ER_GR_HOLD_MEMBER_STATUS_ERROR",t[3784]="ER_RPL_ENCRYPTION_FAILED_TO_FETCH_KEY",t[3785]="ER_RPL_ENCRYPTION_KEY_NOT_FOUND",t[3786]="ER_RPL_ENCRYPTION_KEYRING_INVALID_KEY",t[3787]="ER_RPL_ENCRYPTION_HEADER_ERROR",t[3788]="ER_RPL_ENCRYPTION_FAILED_TO_ROTATE_LOGS",t[3789]="ER_RPL_ENCRYPTION_KEY_EXISTS_UNEXPECTED",t[3790]="ER_RPL_ENCRYPTION_FAILED_TO_GENERATE_KEY",t[3791]="ER_RPL_ENCRYPTION_FAILED_TO_STORE_KEY",t[3792]="ER_RPL_ENCRYPTION_FAILED_TO_REMOVE_KEY",t[3793]="ER_RPL_ENCRYPTION_UNABLE_TO_CHANGE_OPTION",t[3794]="ER_RPL_ENCRYPTION_MASTER_KEY_RECOVERY_FAILED",t[3795]="ER_SLOW_LOG_MODE_IGNORED_WHEN_NOT_LOGGING_TO_FILE",t[3796]="ER_GRP_TRX_CONSISTENCY_NOT_ALLOWED",t[3797]="ER_GRP_TRX_CONSISTENCY_BEFORE",t[3798]="ER_GRP_TRX_CONSISTENCY_AFTER_ON_TRX_BEGIN",t[3799]="ER_GRP_TRX_CONSISTENCY_BEGIN_NOT_ALLOWED",t[3800]="ER_FUNCTIONAL_INDEX_ROW_VALUE_IS_NOT_ALLOWED",t[3801]="ER_RPL_ENCRYPTION_FAILED_TO_ENCRYPT",t[3802]="ER_PAGE_TRACKING_NOT_STARTED",t[3803]="ER_PAGE_TRACKING_RANGE_NOT_TRACKED",t[3804]="ER_PAGE_TRACKING_CANNOT_PURGE",t[3805]="ER_RPL_ENCRYPTION_CANNOT_ROTATE_BINLOG_MASTER_KEY",t[3806]="ER_BINLOG_MASTER_KEY_RECOVERY_OUT_OF_COMBINATION",t[3807]="ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_OPERATE_KEY",t[3808]="ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_ROTATE_LOGS",t[3809]="ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_REENCRYPT_LOG",t[3810]="ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_UNUSED_KEYS",t[3811]="ER_BINLOG_MASTER_KEY_ROTATION_FAIL_TO_CLEANUP_AUX_KEY",t[3812]="ER_NON_BOOLEAN_EXPR_FOR_CHECK_CONSTRAINT",t[3813]="ER_COLUMN_CHECK_CONSTRAINT_REFERENCES_OTHER_COLUMN",t[3814]="ER_CHECK_CONSTRAINT_NAMED_FUNCTION_IS_NOT_ALLOWED",t[3815]="ER_CHECK_CONSTRAINT_FUNCTION_IS_NOT_ALLOWED",t[3816]="ER_CHECK_CONSTRAINT_VARIABLES",t[3817]="ER_CHECK_CONSTRAINT_ROW_VALUE",t[3818]="ER_CHECK_CONSTRAINT_REFERS_AUTO_INCREMENT_COLUMN",t[3819]="ER_CHECK_CONSTRAINT_VIOLATED",t[3820]="ER_CHECK_CONSTRAINT_REFERS_UNKNOWN_COLUMN",t[3821]="ER_CHECK_CONSTRAINT_NOT_FOUND",t[3822]="ER_CHECK_CONSTRAINT_DUP_NAME",t[3823]="ER_CHECK_CONSTRAINT_CLAUSE_USING_FK_REFER_ACTION_COLUMN",t[3824]="WARN_UNENCRYPTED_TABLE_IN_ENCRYPTED_DB",t[3825]="ER_INVALID_ENCRYPTION_REQUEST",t[3826]="ER_CANNOT_SET_TABLE_ENCRYPTION",t[3827]="ER_CANNOT_SET_DATABASE_ENCRYPTION",t[3828]="ER_CANNOT_SET_TABLESPACE_ENCRYPTION",t[3829]="ER_TABLESPACE_CANNOT_BE_ENCRYPTED",t[3830]="ER_TABLESPACE_CANNOT_BE_DECRYPTED",t[3831]="ER_TABLESPACE_TYPE_UNKNOWN",t[3832]="ER_TARGET_TABLESPACE_UNENCRYPTED",t[3833]="ER_CANNOT_USE_ENCRYPTION_CLAUSE",t[3834]="ER_INVALID_MULTIPLE_CLAUSES",t[3835]="ER_UNSUPPORTED_USE_OF_GRANT_AS",t[3836]="ER_UKNOWN_AUTH_ID_OR_ACCESS_DENIED_FOR_GRANT_AS",t[3837]="ER_DEPENDENT_BY_FUNCTIONAL_INDEX",t[3838]="ER_PLUGIN_NOT_EARLY",t[3839]="ER_INNODB_REDO_LOG_ARCHIVE_START_SUBDIR_PATH",t[3840]="ER_INNODB_REDO_LOG_ARCHIVE_START_TIMEOUT",t[3841]="ER_INNODB_REDO_LOG_ARCHIVE_DIRS_INVALID",t[3842]="ER_INNODB_REDO_LOG_ARCHIVE_LABEL_NOT_FOUND",t[3843]="ER_INNODB_REDO_LOG_ARCHIVE_DIR_EMPTY",t[3844]="ER_INNODB_REDO_LOG_ARCHIVE_NO_SUCH_DIR",t[3845]="ER_INNODB_REDO_LOG_ARCHIVE_DIR_CLASH",t[3846]="ER_INNODB_REDO_LOG_ARCHIVE_DIR_PERMISSIONS",t[3847]="ER_INNODB_REDO_LOG_ARCHIVE_FILE_CREATE",t[3848]="ER_INNODB_REDO_LOG_ARCHIVE_ACTIVE",t[3849]="ER_INNODB_REDO_LOG_ARCHIVE_INACTIVE",t[3850]="ER_INNODB_REDO_LOG_ARCHIVE_FAILED",t[3851]="ER_INNODB_REDO_LOG_ARCHIVE_SESSION",t[3852]="ER_STD_REGEX_ERROR",t[3853]="ER_INVALID_JSON_TYPE",t[3854]="ER_CANNOT_CONVERT_STRING",t[3855]="ER_DEPENDENT_BY_PARTITION_FUNC",t[3856]="ER_WARN_DEPRECATED_FLOAT_AUTO_INCREMENT",t[3857]="ER_RPL_CANT_STOP_REPLICA_WHILE_LOCKED_BACKUP",t[3858]="ER_WARN_DEPRECATED_FLOAT_DIGITS",t[3859]="ER_WARN_DEPRECATED_FLOAT_UNSIGNED",t[3860]="ER_WARN_DEPRECATED_INTEGER_DISPLAY_WIDTH",t[3861]="ER_WARN_DEPRECATED_ZEROFILL",t[3862]="ER_CLONE_DONOR",t[3863]="ER_CLONE_PROTOCOL",t[3864]="ER_CLONE_DONOR_VERSION",t[3865]="ER_CLONE_OS",t[3866]="ER_CLONE_PLATFORM",t[3867]="ER_CLONE_CHARSET",t[3868]="ER_CLONE_CONFIG",t[3869]="ER_CLONE_SYS_CONFIG",t[3870]="ER_CLONE_PLUGIN_MATCH",t[3871]="ER_CLONE_LOOPBACK",t[3872]="ER_CLONE_ENCRYPTION",t[3873]="ER_CLONE_DISK_SPACE",t[3874]="ER_CLONE_IN_PROGRESS",t[3875]="ER_CLONE_DISALLOWED",t[3876]="ER_CANNOT_GRANT_ROLES_TO_ANONYMOUS_USER",t[3877]="ER_SECONDARY_ENGINE_PLUGIN",t[3878]="ER_SECOND_PASSWORD_CANNOT_BE_EMPTY",t[3879]="ER_DB_ACCESS_DENIED",t[3880]="ER_DA_AUTH_ID_WITH_SYSTEM_USER_PRIV_IN_MANDATORY_ROLES",t[3881]="ER_DA_RPL_GTID_TABLE_CANNOT_OPEN",t[3882]="ER_GEOMETRY_IN_UNKNOWN_LENGTH_UNIT",t[3883]="ER_DA_PLUGIN_INSTALL_ERROR",t[3884]="ER_NO_SESSION_TEMP",t[3885]="ER_DA_UNKNOWN_ERROR_NUMBER",t[3886]="ER_COLUMN_CHANGE_SIZE",t[3887]="ER_REGEXP_INVALID_CAPTURE_GROUP_NAME",t[3888]="ER_DA_SSL_LIBRARY_ERROR",t[3889]="ER_SECONDARY_ENGINE",t[3890]="ER_SECONDARY_ENGINE_DDL",t[3891]="ER_INCORRECT_CURRENT_PASSWORD",t[3892]="ER_MISSING_CURRENT_PASSWORD",t[3893]="ER_CURRENT_PASSWORD_NOT_REQUIRED",t[3894]="ER_PASSWORD_CANNOT_BE_RETAINED_ON_PLUGIN_CHANGE",t[3895]="ER_CURRENT_PASSWORD_CANNOT_BE_RETAINED",t[3896]="ER_PARTIAL_REVOKES_EXIST",t[3897]="ER_CANNOT_GRANT_SYSTEM_PRIV_TO_MANDATORY_ROLE",t[3898]="ER_XA_REPLICATION_FILTERS",t[3899]="ER_UNSUPPORTED_SQL_MODE",t[3900]="ER_REGEXP_INVALID_FLAG",t[3901]="ER_PARTIAL_REVOKE_AND_DB_GRANT_BOTH_EXISTS",t[3902]="ER_UNIT_NOT_FOUND",t[3903]="ER_INVALID_JSON_VALUE_FOR_FUNC_INDEX",t[3904]="ER_JSON_VALUE_OUT_OF_RANGE_FOR_FUNC_INDEX",t[3905]="ER_EXCEEDED_MV_KEYS_NUM",t[3906]="ER_EXCEEDED_MV_KEYS_SPACE",t[3907]="ER_FUNCTIONAL_INDEX_DATA_IS_TOO_LONG",t[3908]="ER_WRONG_MVI_VALUE",t[3909]="ER_WARN_FUNC_INDEX_NOT_APPLICABLE",t[3910]="ER_GRP_RPL_UDF_ERROR",t[3911]="ER_UPDATE_GTID_PURGED_WITH_GR",t[3912]="ER_GROUPING_ON_TIMESTAMP_IN_DST",t[3913]="ER_TABLE_NAME_CAUSES_TOO_LONG_PATH",t[3914]="ER_AUDIT_LOG_INSUFFICIENT_PRIVILEGE",t[3915]="ER_AUDIT_LOG_PASSWORD_HAS_BEEN_COPIED",t[3916]="ER_DA_GRP_RPL_STARTED_AUTO_REJOIN",t[3917]="ER_SYSVAR_CHANGE_DURING_QUERY",t[3918]="ER_GLOBSTAT_CHANGE_DURING_QUERY",t[3919]="ER_GRP_RPL_MESSAGE_SERVICE_INIT_FAILURE",t[3920]="ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORITHM_CLIENT",t[3921]="ER_CHANGE_SOURCE_WRONG_COMPRESSION_LEVEL_CLIENT",t[3922]="ER_WRONG_COMPRESSION_ALGORITHM_CLIENT",t[3923]="ER_WRONG_COMPRESSION_LEVEL_CLIENT",t[3924]="ER_CHANGE_SOURCE_WRONG_COMPRESSION_ALGORITHM_LIST_CLIENT",t[3925]="ER_CLIENT_PRIVILEGE_CHECKS_USER_CANNOT_BE_ANONYMOUS",t[3926]="ER_CLIENT_PRIVILEGE_CHECKS_USER_DOES_NOT_EXIST",t[3927]="ER_CLIENT_PRIVILEGE_CHECKS_USER_CORRUPT",t[3928]="ER_CLIENT_PRIVILEGE_CHECKS_USER_NEEDS_RPL_APPLIER_PRIV",t[3929]="ER_WARN_DA_PRIVILEGE_NOT_REGISTERED",t[3930]="ER_CLIENT_KEYRING_UDF_KEY_INVALID",t[3931]="ER_CLIENT_KEYRING_UDF_KEY_TYPE_INVALID",t[3932]="ER_CLIENT_KEYRING_UDF_KEY_TOO_LONG",t[3933]="ER_CLIENT_KEYRING_UDF_KEY_TYPE_TOO_LONG",t[3934]="ER_JSON_SCHEMA_VALIDATION_ERROR_WITH_DETAILED_REPORT",t[3935]="ER_DA_UDF_INVALID_CHARSET_SPECIFIED",t[3936]="ER_DA_UDF_INVALID_CHARSET",t[3937]="ER_DA_UDF_INVALID_COLLATION",t[3938]="ER_DA_UDF_INVALID_EXTENSION_ARGUMENT_TYPE",t[3939]="ER_MULTIPLE_CONSTRAINTS_WITH_SAME_NAME",t[3940]="ER_CONSTRAINT_NOT_FOUND",t[3941]="ER_ALTER_CONSTRAINT_ENFORCEMENT_NOT_SUPPORTED",t[3942]="ER_TABLE_VALUE_CONSTRUCTOR_MUST_HAVE_COLUMNS",t[3943]="ER_TABLE_VALUE_CONSTRUCTOR_CANNOT_HAVE_DEFAULT",t[3944]="ER_CLIENT_QUERY_FAILURE_INVALID_NON_ROW_FORMAT",t[3945]="ER_REQUIRE_ROW_FORMAT_INVALID_VALUE",t[3946]="ER_FAILED_TO_DETERMINE_IF_ROLE_IS_MANDATORY",t[3947]="ER_FAILED_TO_FETCH_MANDATORY_ROLE_LIST",t[3948]="ER_CLIENT_LOCAL_FILES_DISABLED",t[3949]="ER_IMP_INCOMPATIBLE_CFG_VERSION",t[3950]="ER_DA_OOM",t[3951]="ER_DA_UDF_INVALID_ARGUMENT_TO_SET_CHARSET",t[3952]="ER_DA_UDF_INVALID_RETURN_TYPE_TO_SET_CHARSET",t[3953]="ER_MULTIPLE_INTO_CLAUSES",t[3954]="ER_MISPLACED_INTO",t[3955]="ER_USER_ACCESS_DENIED_FOR_USER_ACCOUNT_BLOCKED_BY_PASSWORD_LOCK",t[3956]="ER_WARN_DEPRECATED_YEAR_UNSIGNED",t[3957]="ER_CLONE_NETWORK_PACKET",t[3958]="ER_SDI_OPERATION_FAILED_MISSING_RECORD",t[3959]="ER_DEPENDENT_BY_CHECK_CONSTRAINT",t[3960]="ER_GRP_OPERATION_NOT_ALLOWED_GR_MUST_STOP",t[3961]="ER_WARN_DEPRECATED_JSON_TABLE_ON_ERROR_ON_EMPTY",t[3962]="ER_WARN_DEPRECATED_INNER_INTO",t[3963]="ER_WARN_DEPRECATED_VALUES_FUNCTION_ALWAYS_NULL",t[3964]="ER_WARN_DEPRECATED_SQL_CALC_FOUND_ROWS",t[3965]="ER_WARN_DEPRECATED_FOUND_ROWS",t[3966]="ER_MISSING_JSON_VALUE",t[3967]="ER_MULTIPLE_JSON_VALUES",t[3968]="ER_HOSTNAME_TOO_LONG",t[3969]="ER_WARN_CLIENT_DEPRECATED_PARTITION_PREFIX_KEY",t[3970]="ER_GROUP_REPLICATION_USER_EMPTY_MSG",t[3971]="ER_GROUP_REPLICATION_USER_MANDATORY_MSG",t[3972]="ER_GROUP_REPLICATION_PASSWORD_LENGTH",t[3973]="ER_SUBQUERY_TRANSFORM_REJECTED",t[3974]="ER_DA_GRP_RPL_RECOVERY_ENDPOINT_FORMAT",t[3975]="ER_DA_GRP_RPL_RECOVERY_ENDPOINT_INVALID",t[3976]="ER_WRONG_VALUE_FOR_VAR_PLUS_ACTIONABLE_PART",t[3977]="ER_STATEMENT_NOT_ALLOWED_AFTER_START_TRANSACTION",t[3978]="ER_FOREIGN_KEY_WITH_ATOMIC_CREATE_SELECT",t[3979]="ER_NOT_ALLOWED_WITH_START_TRANSACTION",t[3980]="ER_INVALID_JSON_ATTRIBUTE",t[3981]="ER_ENGINE_ATTRIBUTE_NOT_SUPPORTED",t[3982]="ER_INVALID_USER_ATTRIBUTE_JSON",t[3983]="ER_INNODB_REDO_DISABLED",t[3984]="ER_INNODB_REDO_ARCHIVING_ENABLED",t[3985]="ER_MDL_OUT_OF_RESOURCES",t[3986]="ER_IMPLICIT_COMPARISON_FOR_JSON",t[3987]="ER_FUNCTION_DOES_NOT_SUPPORT_CHARACTER_SET",t[3988]="ER_IMPOSSIBLE_STRING_CONVERSION",t[3989]="ER_SCHEMA_READ_ONLY",t[3990]="ER_RPL_ASYNC_RECONNECT_GTID_MODE_OFF",t[3991]="ER_RPL_ASYNC_RECONNECT_AUTO_POSITION_OFF",t[3992]="ER_DISABLE_GTID_MODE_REQUIRES_ASYNC_RECONNECT_OFF",t[3993]="ER_DISABLE_AUTO_POSITION_REQUIRES_ASYNC_RECONNECT_OFF",t[3994]="ER_INVALID_PARAMETER_USE",t[3995]="ER_CHARACTER_SET_MISMATCH",t[3996]="ER_WARN_VAR_VALUE_CHANGE_NOT_SUPPORTED",t[3997]="ER_INVALID_TIME_ZONE_INTERVAL",t[3998]="ER_INVALID_CAST",t[3999]="ER_HYPERGRAPH_NOT_SUPPORTED_YET",t[4e3]="ER_WARN_HYPERGRAPH_EXPERIMENTAL",t[4001]="ER_DA_NO_ERROR_LOG_PARSER_CONFIGURED",t[4002]="ER_DA_ERROR_LOG_TABLE_DISABLED",t[4003]="ER_DA_ERROR_LOG_MULTIPLE_FILTERS",t[4004]="ER_DA_CANT_OPEN_ERROR_LOG",t[4005]="ER_USER_REFERENCED_AS_DEFINER",t[4006]="ER_CANNOT_USER_REFERENCED_AS_DEFINER",t[4007]="ER_REGEX_NUMBER_TOO_BIG",t[4008]="ER_SPVAR_NONINTEGER_TYPE",t[4009]="WARN_UNSUPPORTED_ACL_TABLES_READ",t[4010]="ER_BINLOG_UNSAFE_ACL_TABLE_READ_IN_DML_DDL",t[4011]="ER_STOP_REPLICA_MONITOR_IO_THREAD_TIMEOUT",t[4012]="ER_STARTING_REPLICA_MONITOR_IO_THREAD",t[4013]="ER_CANT_USE_ANONYMOUS_TO_GTID_WITH_GTID_MODE_NOT_ON",t[4014]="ER_CANT_COMBINE_ANONYMOUS_TO_GTID_AND_AUTOPOSITION",t[4015]="ER_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS_REQUIRES_GTID_MODE_ON",t[4016]="ER_SQL_REPLICA_SKIP_COUNTER_USED_WITH_GTID_MODE_ON",t[4017]="ER_USING_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS_AS_LOCAL_OR_UUID",t[4018]="ER_CANT_SET_ANONYMOUS_TO_GTID_AND_WAIT_UNTIL_SQL_THD_AFTER_GTIDS",t[4019]="ER_CANT_SET_SQL_AFTER_OR_BEFORE_GTIDS_WITH_ANONYMOUS_TO_GTID",t[4020]="ER_ANONYMOUS_TO_GTID_UUID_SAME_AS_GROUP_NAME",t[4021]="ER_CANT_USE_SAME_UUID_AS_GROUP_NAME",t[4022]="ER_GRP_RPL_RECOVERY_CHANNEL_STILL_RUNNING",t[4023]="ER_INNODB_INVALID_AUTOEXTEND_SIZE_VALUE",t[4024]="ER_INNODB_INCOMPATIBLE_WITH_TABLESPACE",t[4025]="ER_INNODB_AUTOEXTEND_SIZE_OUT_OF_RANGE",t[4026]="ER_CANNOT_USE_AUTOEXTEND_SIZE_CLAUSE",t[4027]="ER_ROLE_GRANTED_TO_ITSELF",t[4028]="ER_TABLE_MUST_HAVE_A_VISIBLE_COLUMN",t[4029]="ER_INNODB_COMPRESSION_FAILURE",t[4030]="ER_WARN_ASYNC_CONN_FAILOVER_NETWORK_NAMESPACE",t[4031]="ER_CLIENT_INTERACTION_TIMEOUT",t[4032]="ER_INVALID_CAST_TO_GEOMETRY",t[4033]="ER_INVALID_CAST_POLYGON_RING_DIRECTION",t[4034]="ER_GIS_DIFFERENT_SRIDS_AGGREGATION",t[4035]="ER_RELOAD_KEYRING_FAILURE",t[4036]="ER_SDI_GET_KEYS_INVALID_TABLESPACE",t[4037]="ER_CHANGE_RPL_SRC_WRONG_COMPRESSION_ALGORITHM_SIZE",t[4038]="ER_WARN_DEPRECATED_TLS_VERSION_FOR_CHANNEL_CLI",t[4039]="ER_CANT_USE_SAME_UUID_AS_VIEW_CHANGE_UUID",t[4040]="ER_ANONYMOUS_TO_GTID_UUID_SAME_AS_VIEW_CHANGE_UUID",t[4041]="ER_GRP_RPL_VIEW_CHANGE_UUID_FAIL_GET_VARIABLE",t[4042]="ER_WARN_ADUIT_LOG_MAX_SIZE_AND_PRUNE_SECONDS",t[4043]="ER_WARN_ADUIT_LOG_MAX_SIZE_CLOSE_TO_ROTATE_ON_SIZE",t[4044]="ER_KERBEROS_CREATE_USER",t[4045]="ER_INSTALL_PLUGIN_CONFLICT_CLIENT",t[4046]="ER_DA_ERROR_LOG_COMPONENT_FLUSH_FAILED",t[4047]="ER_WARN_SQL_AFTER_MTS_GAPS_GAP_NOT_CALCULATED",t[4048]="ER_INVALID_ASSIGNMENT_TARGET",t[4049]="ER_OPERATION_NOT_ALLOWED_ON_GR_SECONDARY",t[4050]="ER_GRP_RPL_FAILOVER_CHANNEL_STATUS_PROPAGATION",t[4051]="ER_WARN_AUDIT_LOG_FORMAT_UNIX_TIMESTAMP_ONLY_WHEN_JSON",t[4052]="ER_INVALID_MFA_PLUGIN_SPECIFIED",t[4053]="ER_IDENTIFIED_BY_UNSUPPORTED",t[4054]="ER_INVALID_PLUGIN_FOR_REGISTRATION",t[4055]="ER_PLUGIN_REQUIRES_REGISTRATION",t[4056]="ER_MFA_METHOD_EXISTS",t[4057]="ER_MFA_METHOD_NOT_EXISTS",t[4058]="ER_AUTHENTICATION_POLICY_MISMATCH",t[4059]="ER_PLUGIN_REGISTRATION_DONE",t[4060]="ER_INVALID_USER_FOR_REGISTRATION",t[4061]="ER_USER_REGISTRATION_FAILED",t[4062]="ER_MFA_METHODS_INVALID_ORDER",t[4063]="ER_MFA_METHODS_IDENTICAL",t[4064]="ER_INVALID_MFA_OPERATIONS_FOR_PASSWORDLESS_USER",t[4065]="ER_CHANGE_REPLICATION_SOURCE_NO_OPTIONS_FOR_GTID_ONLY",t[4066]="ER_CHANGE_REP_SOURCE_CANT_DISABLE_REQ_ROW_FORMAT_WITH_GTID_ONLY",t[4067]="ER_CHANGE_REP_SOURCE_CANT_DISABLE_AUTO_POSITION_WITH_GTID_ONLY",t[4068]="ER_CHANGE_REP_SOURCE_CANT_DISABLE_GTID_ONLY_WITHOUT_POSITIONS",t[4069]="ER_CHANGE_REP_SOURCE_CANT_DISABLE_AUTO_POS_WITHOUT_POSITIONS",t[4070]="ER_CHANGE_REP_SOURCE_GR_CHANNEL_WITH_GTID_MODE_NOT_ON",t[4071]="ER_CANT_USE_GTID_ONLY_WITH_GTID_MODE_NOT_ON",t[4072]="ER_WARN_C_DISABLE_GTID_ONLY_WITH_SOURCE_AUTO_POS_INVALID_POS",t[4073]="ER_DA_SSL_FIPS_MODE_ERROR",t[4074]="ER_VALUE_OUT_OF_RANGE",t[4075]="ER_FULLTEXT_WITH_ROLLUP",t[4076]="ER_REGEXP_MISSING_RESOURCE",t[4077]="ER_WARN_REGEXP_USING_DEFAULT",t[4078]="ER_REGEXP_MISSING_FILE",t[4079]="ER_WARN_DEPRECATED_COLLATION",t[4080]="ER_CONCURRENT_PROCEDURE_USAGE",t[4081]="ER_DA_GLOBAL_CONN_LIMIT",t[4082]="ER_DA_CONN_LIMIT",t[4083]="ER_ALTER_OPERATION_NOT_SUPPORTED_REASON_COLUMN_TYPE_INSTANT",t[4084]="ER_WARN_SF_UDF_NAME_COLLISION",t[4085]="ER_CANNOT_PURGE_BINLOG_WITH_BACKUP_LOCK",t[4086]="ER_TOO_MANY_WINDOWS",t[4087]="ER_MYSQLBACKUP_CLIENT_MSG",t[4088]="ER_COMMENT_CONTAINS_INVALID_STRING",t[4089]="ER_DEFINITION_CONTAINS_INVALID_STRING",t[4090]="ER_CANT_EXECUTE_COMMAND_WITH_ASSIGNED_GTID_NEXT",t[4091]="ER_XA_TEMP_TABLE",t[4092]="ER_INNODB_MAX_ROW_VERSION",t[4093]="ER_INNODB_INSTANT_ADD_NOT_SUPPORTED_MAX_SIZE",t[4094]="ER_OPERATION_NOT_ALLOWED_WHILE_PRIMARY_CHANGE_IS_RUNNING",t[4095]="ER_WARN_DEPRECATED_DATETIME_DELIMITER",t[4096]="ER_WARN_DEPRECATED_SUPERFLUOUS_DELIMITER",t[4097]="ER_CANNOT_PERSIST_SENSITIVE_VARIABLES",t[4098]="ER_WARN_CANNOT_SECURELY_PERSIST_SENSITIVE_VARIABLES",t[4099]="ER_WARN_TRG_ALREADY_EXISTS",t[4100]="ER_IF_NOT_EXISTS_UNSUPPORTED_TRG_EXISTS_ON_DIFFERENT_TABLE",t[4101]="ER_IF_NOT_EXISTS_UNSUPPORTED_UDF_NATIVE_FCT_NAME_COLLISION",t[4102]="ER_SET_PASSWORD_AUTH_PLUGIN_ERROR",t[4103]="ER_REDUCED_DBLWR_FILE_CORRUPTED",t[4104]="ER_REDUCED_DBLWR_PAGE_FOUND",t[4105]="ER_SRS_INVALID_LATITUDE_OF_ORIGIN",t[4106]="ER_SRS_INVALID_LONGITUDE_OF_ORIGIN",t[4107]="ER_SRS_UNUSED_PROJ_PARAMETER_PRESENT",t[4108]="ER_GIPK_COLUMN_EXISTS",t[4109]="ER_GIPK_FAILED_AUTOINC_COLUMN_EXISTS",t[4110]="ER_GIPK_COLUMN_ALTER_NOT_ALLOWED",t[4111]="ER_DROP_PK_COLUMN_TO_DROP_GIPK",t[4112]="ER_CREATE_SELECT_WITH_GIPK_DISALLOWED_IN_SBR",t[4113]="ER_DA_EXPIRE_LOGS_DAYS_IGNORED",t[4114]="ER_CTE_RECURSIVE_NOT_UNION",t[4115]="ER_COMMAND_BACKEND_FAILED_TO_FETCH_SECURITY_CTX",t[4116]="ER_COMMAND_SERVICE_BACKEND_FAILED",t[4117]="ER_CLIENT_FILE_PRIVILEGE_FOR_REPLICATION_CHECKS",t[4118]="ER_GROUP_REPLICATION_FORCE_MEMBERS_COMMAND_FAILURE",t[4119]="ER_WARN_DEPRECATED_IDENT",t[4120]="ER_INTERSECT_ALL_MAX_DUPLICATES_EXCEEDED",t[4121]="ER_TP_QUERY_THRS_PER_GRP_EXCEEDS_TXN_THR_LIMIT",t[4122]="ER_BAD_TIMESTAMP_FORMAT",t[4123]="ER_SHAPE_PRIDICTION_UDF",t[4124]="ER_SRS_INVALID_HEIGHT",t[4125]="ER_SRS_INVALID_SCALING",t[4126]="ER_SRS_INVALID_ZONE_WIDTH",t[4127]="ER_SRS_INVALID_LATITUDE_POLAR_STERE_VAR_A",t[4128]="ER_WARN_DEPRECATED_CLIENT_NO_SCHEMA_OPTION",t[4129]="ER_TABLE_NOT_EMPTY",t[4130]="ER_TABLE_NO_PRIMARY_KEY",t[4131]="ER_TABLE_IN_SHARED_TABLESPACE",t[4132]="ER_INDEX_OTHER_THAN_PK",t[4133]="ER_LOAD_BULK_DATA_UNSORTED",t[4134]="ER_BULK_EXECUTOR_ERROR",t[4135]="ER_BULK_READER_LIBCURL_INIT_FAILED",t[4136]="ER_BULK_READER_LIBCURL_ERROR",t[4137]="ER_BULK_READER_SERVER_ERROR",t[4138]="ER_BULK_READER_COMMUNICATION_ERROR",t[4139]="ER_BULK_LOAD_DATA_FAILED",t[4140]="ER_BULK_LOADER_COLUMN_TOO_BIG_FOR_LEFTOVER_BUFFER",t[4141]="ER_BULK_LOADER_COMPONENT_ERROR",t[4142]="ER_BULK_LOADER_FILE_CONTAINS_LESS_LINES_THAN_IGNORE_CLAUSE",t[4143]="ER_BULK_PARSER_MISSING_ENCLOSED_BY",t[4144]="ER_BULK_PARSER_ROW_BUFFER_MAX_TOTAL_COLS_EXCEEDED",t[4145]="ER_BULK_PARSER_COPY_BUFFER_SIZE_EXCEEDED",t[4146]="ER_BULK_PARSER_UNEXPECTED_END_OF_INPUT",t[4147]="ER_BULK_PARSER_UNEXPECTED_ROW_TERMINATOR",t[4148]="ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_ENDING_ENCLOSED_BY",t[4149]="ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_NULL_ESCAPE",t[4150]="ER_BULK_PARSER_UNEXPECTED_CHAR_AFTER_COLUMN_TERMINATOR",t[4151]="ER_BULK_PARSER_INCOMPLETE_ESCAPE_SEQUENCE",t[4152]="ER_LOAD_BULK_DATA_FAILED",t[4153]="ER_LOAD_BULK_DATA_WRONG_VALUE_FOR_FIELD",t[4154]="ER_LOAD_BULK_DATA_WARN_NULL_TO_NOTNULL",t[4155]="ER_REQUIRE_TABLE_PRIMARY_KEY_CHECK_GENERATE_WITH_GR",t[4156]="ER_CANT_CHANGE_SYS_VAR_IN_READ_ONLY_MODE",t[4157]="ER_INNODB_INSTANT_ADD_DROP_NOT_SUPPORTED_MAX_SIZE",t[4158]="ER_INNODB_INSTANT_ADD_NOT_SUPPORTED_MAX_FIELDS",t[4159]="ER_CANT_SET_PERSISTED",t[4160]="ER_INSTALL_COMPONENT_SET_NULL_VALUE",t[4161]="ER_INSTALL_COMPONENT_SET_UNUSED_VALUE",t[4162]="ER_WARN_DEPRECATED_USER_DEFINED_COLLATIONS"},63167:(e,t)=>{"use strict";t.NOT_NULL=1,t.PRI_KEY=2,t.UNIQUE_KEY=4,t.MULTIPLE_KEY=8,t.BLOB=16,t.UNSIGNED=32,t.ZEROFILL=64,t.BINARY=128,t.ENUM=256,t.AUTO_INCREMENT=512,t.TIMESTAMP=1024,t.SET=2048,t.NO_DEFAULT_VALUE=4096,t.ON_UPDATE_NOW=8192,t.NUM=32768},87033:(e,t)=>{"use strict";t.SERVER_STATUS_IN_TRANS=1,t.SERVER_STATUS_AUTOCOMMIT=2,t.SERVER_MORE_RESULTS_EXISTS=8,t.SERVER_QUERY_NO_GOOD_INDEX_USED=16,t.SERVER_QUERY_NO_INDEX_USED=32,t.SERVER_STATUS_CURSOR_EXISTS=64,t.SERVER_STATUS_LAST_ROW_SENT=128,t.SERVER_STATUS_DB_DROPPED=256,t.SERVER_STATUS_NO_BACKSLASH_ESCAPES=512,t.SERVER_STATUS_METADATA_CHANGED=1024,t.SERVER_QUERY_WAS_SLOW=2048,t.SERVER_PS_OUT_PARAMS=4096,t.SERVER_STATUS_IN_TRANS_READONLY=8192,t.SERVER_SESSION_STATE_CHANGED=16384},95831:(e,t)=>{"use strict";t.SYSTEM_VARIABLES=0,t.SCHEMA=1,t.STATE_CHANGE=2,t.STATE_GTIDS=3,t.TRANSACTION_CHARACTERISTICS=4,t.TRANSACTION_STATE=5,t.FIRST_KEY=t.SYSTEM_VARIABLES,t.LAST_KEY=t.TRANSACTION_STATE},21534:(e,t)=>{"use strict";t["Amazon RDS"]={ca:["-----BEGIN CERTIFICATE-----\nMIIEEjCCAvqgAwIBAgIJAM2ZN/+nPi27MA0GCSqGSIb3DQEBCwUAMIGVMQswCQYD\nVQQGEwJVUzEQMA4GA1UEBwwHU2VhdHRsZTETMBEGA1UECAwKV2FzaGluZ3RvbjEi\nMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1h\nem9uIFJEUzEmMCQGA1UEAwwdQW1hem9uIFJEUyBhZi1zb3V0aC0xIFJvb3QgQ0Ew\nHhcNMTkxMDI4MTgwNTU4WhcNMjQxMDI2MTgwNTU4WjCBlTELMAkGA1UEBhMCVVMx\nEDAOBgNVBAcMB1NlYXR0bGUxEzARBgNVBAgMCldhc2hpbmd0b24xIjAgBgNVBAoM\nGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMx\nJjAkBgNVBAMMHUFtYXpvbiBSRFMgYWYtc291dGgtMSBSb290IENBMIIBIjANBgkq\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwR2351uPMZaJk2gMGT+1sk8HE9MQh2rc\n/sCnbxGn2p1c7Oi9aBbd/GiFijeJb2BXvHU+TOq3d3Jjqepq8tapXVt4ojbTJNyC\nJ5E7r7KjTktKdLxtBE1MK25aY+IRJjtdU6vG3KiPKUT1naO3xs3yt0F76WVuFivd\n9OHv2a+KHvPkRUWIxpmAHuMY9SIIMmEZtVE7YZGx5ah0iO4JzItHcbVR0y0PBH55\narpFBddpIVHCacp1FUPxSEWkOpI7q0AaU4xfX0fe1BV5HZYRKpBOIp1TtZWvJD+X\njGUtL1BEsT5vN5g9MkqdtYrC+3SNpAk4VtpvJrdjraI/hhvfeXNnAwIDAQABo2Mw\nYTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUEEi/\nWWMcBJsoGXg+EZwkQ0MscZQwHwYDVR0jBBgwFoAUEEi/WWMcBJsoGXg+EZwkQ0Ms\ncZQwDQYJKoZIhvcNAQELBQADggEBAGDZ5js5Pc/gC58LJrwMPXFhJDBS8QuDm23C\nFFUdlqucskwOS3907ErK1ZkmVJCIqFLArHqskFXMAkRZ2PNR7RjWLqBs+0znG5yH\nhRKb4DXzhUFQ18UBRcvT6V6zN97HTRsEEaNhM/7k8YLe7P8vfNZ28VIoJIGGgv9D\nwQBBvkxQ71oOmAG0AwaGD0ORGUfbYry9Dz4a4IcUsZyRWRMADixgrFv6VuETp26s\n/+z+iqNaGWlELBKh3iQCT6Y/1UnkPLO42bxrCSyOvshdkYN58Q2gMTE1SVTqyo8G\nLw8lLAz9bnvUSgHzB3jRrSx6ggF/WRMRYlR++y6LXP4SAsSAaC0=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEEjCCAvqgAwIBAgIJAJYM4LxvTZA6MA0GCSqGSIb3DQEBCwUAMIGVMQswCQYD\nVQQGEwJVUzEQMA4GA1UEBwwHU2VhdHRsZTETMBEGA1UECAwKV2FzaGluZ3RvbjEi\nMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1h\nem9uIFJEUzEmMCQGA1UEAwwdQW1hem9uIFJEUyBldS1zb3V0aC0xIFJvb3QgQ0Ew\nHhcNMTkxMDMwMjAyMDM2WhcNMjQxMDI4MjAyMDM2WjCBlTELMAkGA1UEBhMCVVMx\nEDAOBgNVBAcMB1NlYXR0bGUxEzARBgNVBAgMCldhc2hpbmd0b24xIjAgBgNVBAoM\nGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMx\nJjAkBgNVBAMMHUFtYXpvbiBSRFMgZXUtc291dGgtMSBSb290IENBMIIBIjANBgkq\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqM921jXCXeqpRNCS9CBPOe5N7gMaEt+D\ns5uR3riZbqzRlHGiF1jZihkXfHAIQewDwy+Yz+Oec1aEZCQMhUHxZJPusuX0cJfj\nb+UluFqHIijL2TfXJ3D0PVLLoNTQJZ8+GAPECyojAaNuoHbdVqxhOcznMsXIXVFq\nyVLKDGvyKkJjai/iSPDrQMXufg3kWt0ISjNLvsG5IFXgP4gttsM8i0yvRd4QcHoo\nDjvH7V3cS+CQqW5SnDrGnHToB0RLskE1ET+oNOfeN9PWOxQprMOX/zmJhnJQlTqD\nQP7jcf7SddxrKFjuziFiouskJJyNDsMjt1Lf60+oHZhed2ogTeifGwIDAQABo2Mw\nYTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUFBAF\ncgJe/BBuZiGeZ8STfpkgRYQwHwYDVR0jBBgwFoAUFBAFcgJe/BBuZiGeZ8STfpkg\nRYQwDQYJKoZIhvcNAQELBQADggEBAKAYUtlvDuX2UpZW9i1QgsjFuy/ErbW0dLHU\ne/IcFtju2z6RLZ+uF+5A8Kme7IKG1hgt8s+w9TRVQS/7ukQzoK3TaN6XKXRosjtc\no9Rm4gYWM8bmglzY1TPNaiI4HC7546hSwJhubjN0bXCuj/0sHD6w2DkiGuwKNAef\nyTu5vZhPkeNyXLykxkzz7bNp2/PtMBnzIp+WpS7uUDmWyScGPohKMq5PqvL59z+L\nZI3CYeMZrJ5VpXUg3fNNIz/83N3G0sk7wr0ohs/kHTP7xPOYB0zD7Ku4HA0Q9Swf\nWX0qr6UQgTPMjfYDLffI7aEId0gxKw1eGYc6Cq5JAZ3ipi/cBFc=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEEjCCAvqgAwIBAgIJANew34ehz5l8MA0GCSqGSIb3DQEBCwUAMIGVMQswCQYD\nVQQGEwJVUzEQMA4GA1UEBwwHU2VhdHRsZTETMBEGA1UECAwKV2FzaGluZ3RvbjEi\nMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1h\nem9uIFJEUzEmMCQGA1UEAwwdQW1hem9uIFJEUyBtZS1zb3V0aC0xIFJvb3QgQ0Ew\nHhcNMTkwNTEwMjE0ODI3WhcNMjQwNTA4MjE0ODI3WjCBlTELMAkGA1UEBhMCVVMx\nEDAOBgNVBAcMB1NlYXR0bGUxEzARBgNVBAgMCldhc2hpbmd0b24xIjAgBgNVBAoM\nGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMx\nJjAkBgNVBAMMHUFtYXpvbiBSRFMgbWUtc291dGgtMSBSb290IENBMIIBIjANBgkq\nhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp7BYV88MukcY+rq0r79+C8UzkT30fEfT\naPXbx1d6M7uheGN4FMaoYmL+JE1NZPaMRIPTHhFtLSdPccInvenRDIatcXX+jgOk\nUA6lnHQ98pwN0pfDUyz/Vph4jBR9LcVkBbe0zdoKKp+HGbMPRU0N2yNrog9gM5O8\ngkU/3O2csJ/OFQNnj4c2NQloGMUpEmedwJMOyQQfcUyt9CvZDfIPNnheUS29jGSw\nERpJe/AENu8Pxyc72jaXQuD+FEi2Ck6lBkSlWYQFhTottAeGvVFNCzKszCntrtqd\nrdYUwurYsLTXDHv9nW2hfDUQa0mhXf9gNDOBIVAZugR9NqNRNyYLHQIDAQABo2Mw\nYTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU54cf\nDjgwBx4ycBH8+/r8WXdaiqYwHwYDVR0jBBgwFoAU54cfDjgwBx4ycBH8+/r8WXda\niqYwDQYJKoZIhvcNAQELBQADggEBAIIMTSPx/dR7jlcxggr+O6OyY49Rlap2laKA\neC/XI4ySP3vQkIFlP822U9Kh8a9s46eR0uiwV4AGLabcu0iKYfXjPkIprVCqeXV7\nny9oDtrbflyj7NcGdZLvuzSwgl9SYTJp7PVCZtZutsPYlbJrBPHwFABvAkMvRtDB\nhitIg4AESDGPoCl94sYHpfDfjpUDMSrAMDUyO6DyBdZH5ryRMAs3lGtsmkkNUrso\naTW6R05681Z0mvkRdb+cdXtKOSuDZPoe2wJJIaz3IlNQNSrB5TImMYgmt6iAsFhv\n3vfTSTKrZDNTJn4ybG6pq1zWExoXsktZPylJly6R3RBwV6nwqBM=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEBjCCAu6gAwIBAgIJAMc0ZzaSUK51MA0GCSqGSIb3DQEBCwUAMIGPMQswCQYD\nVQQGEwJVUzEQMA4GA1UEBwwHU2VhdHRsZTETMBEGA1UECAwKV2FzaGluZ3RvbjEi\nMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1h\nem9uIFJEUzEgMB4GA1UEAwwXQW1hem9uIFJEUyBSb290IDIwMTkgQ0EwHhcNMTkw\nODIyMTcwODUwWhcNMjQwODIyMTcwODUwWjCBjzELMAkGA1UEBhMCVVMxEDAOBgNV\nBAcMB1NlYXR0bGUxEzARBgNVBAgMCldhc2hpbmd0b24xIjAgBgNVBAoMGUFtYXpv\nbiBXZWIgU2VydmljZXMsIEluYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxIDAeBgNV\nBAMMF0FtYXpvbiBSRFMgUm9vdCAyMDE5IENBMIIBIjANBgkqhkiG9w0BAQEFAAOC\nAQ8AMIIBCgKCAQEArXnF/E6/Qh+ku3hQTSKPMhQQlCpoWvnIthzX6MK3p5a0eXKZ\noWIjYcNNG6UwJjp4fUXl6glp53Jobn+tWNX88dNH2n8DVbppSwScVE2LpuL+94vY\n0EYE/XxN7svKea8YvlrqkUBKyxLxTjh+U/KrGOaHxz9v0l6ZNlDbuaZw3qIWdD/I\n6aNbGeRUVtpM6P+bWIoxVl/caQylQS6CEYUk+CpVyJSkopwJlzXT07tMoDL5WgX9\nO08KVgDNz9qP/IGtAcRduRcNioH3E9v981QO1zt/Gpb2f8NqAjUUCUZzOnij6mx9\nMcZ+9cWX88CRzR0vQODWuZscgI08NvM69Fn2SQIDAQABo2MwYTAOBgNVHQ8BAf8E\nBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUc19g2LzLA5j0Kxc0LjZa\npmD/vB8wHwYDVR0jBBgwFoAUc19g2LzLA5j0Kxc0LjZapmD/vB8wDQYJKoZIhvcN\nAQELBQADggEBAHAG7WTmyjzPRIM85rVj+fWHsLIvqpw6DObIjMWokpliCeMINZFV\nynfgBKsf1ExwbvJNzYFXW6dihnguDG9VMPpi2up/ctQTN8tm9nDKOy08uNZoofMc\nNUZxKCEkVKZv+IL4oHoeayt8egtv3ujJM6V14AstMQ6SwvwvA93EP/Ug2e4WAXHu\ncbI1NAbUgVDqp+DRdfvZkgYKryjTWd/0+1fS8X1bBZVWzl7eirNVnHbSH2ZDpNuY\n0SBd8dj5F6ld3t58ydZbrTHze7JJOd8ijySAp4/kiu9UfZWuTPABzDa/DSdz9Dk/\nzPW4CXXvhLmE02TA9/HeCw3KEHIwicNuEfw=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEEDCCAvigAwIBAgIJAKFMXyltvuRdMA0GCSqGSIb3DQEBCwUAMIGUMQswCQYD\nVQQGEwJVUzEQMA4GA1UEBwwHU2VhdHRsZTETMBEGA1UECAwKV2FzaGluZ3RvbjEi\nMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1h\nem9uIFJEUzElMCMGA1UEAwwcQW1hem9uIFJEUyBCZXRhIFJvb3QgMjAxOSBDQTAe\nFw0xOTA4MTkxNzM4MjZaFw0yNDA4MTkxNzM4MjZaMIGUMQswCQYDVQQGEwJVUzEQ\nMA4GA1UEBwwHU2VhdHRsZTETMBEGA1UECAwKV2FzaGluZ3RvbjEiMCAGA1UECgwZ\nQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEl\nMCMGA1UEAwwcQW1hem9uIFJEUyBCZXRhIFJvb3QgMjAxOSBDQTCCASIwDQYJKoZI\nhvcNAQEBBQADggEPADCCAQoCggEBAMkZdnIH9ndatGAcFo+DppGJ1HUt4x+zeO+0\nZZ29m0sfGetVulmTlv2d5b66e+QXZFWpcPQMouSxxYTW08TbrQiZngKr40JNXftA\natvzBqIImD4II0ZX5UEVj2h98qe/ypW5xaDN7fEa5e8FkYB1TEemPaWIbNXqchcL\ntV7IJPr3Cd7Z5gZJlmujIVDPpMuSiNaal9/6nT9oqN+JSM1fx5SzrU5ssg1Vp1vv\n5Xab64uOg7wCJRB9R2GC9XD04odX6VcxUAGrZo6LR64ZSifupo3l+R5sVOc5i8NH\nskdboTzU9H7+oSdqoAyhIU717PcqeDum23DYlPE2nGBWckE+eT8CAwEAAaNjMGEw\nDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFK2hDBWl\nsbHzt/EHd0QYOooqcFPhMB8GA1UdIwQYMBaAFK2hDBWlsbHzt/EHd0QYOooqcFPh\nMA0GCSqGSIb3DQEBCwUAA4IBAQAO/718k8EnOqJDx6wweUscGTGL/QdKXUzTVRAx\nJUsjNUv49mH2HQVEW7oxszfH6cPCaupNAddMhQc4C/af6GHX8HnqfPDk27/yBQI+\nyBBvIanGgxv9c9wBbmcIaCEWJcsLp3HzXSYHmjiqkViXwCpYfkoV3Ns2m8bp+KCO\ny9XmcCKRaXkt237qmoxoh2sGmBHk2UlQtOsMC0aUQ4d7teAJG0q6pbyZEiPyKZY1\nXR/UVxMJL0Q4iVpcRS1kaNCMfqS2smbLJeNdsan8pkw1dvPhcaVTb7CvjhJtjztF\nYfDzAI5794qMlWxwilKMmUvDlPPOTen8NNHkLwWvyFCH7Doh\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEFjCCAv6gAwIBAgIJAMzYZJ+R9NBVMA0GCSqGSIb3DQEBCwUAMIGXMQswCQYD\nVQQGEwJVUzEQMA4GA1UEBwwHU2VhdHRsZTETMBEGA1UECAwKV2FzaGluZ3RvbjEi\nMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1h\nem9uIFJEUzEoMCYGA1UEAwwfQW1hem9uIFJEUyBQcmV2aWV3IFJvb3QgMjAxOSBD\nQTAeFw0xOTA4MjEyMjI5NDlaFw0yNDA4MjEyMjI5NDlaMIGXMQswCQYDVQQGEwJV\nUzEQMA4GA1UEBwwHU2VhdHRsZTETMBEGA1UECAwKV2FzaGluZ3RvbjEiMCAGA1UE\nCgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJE\nUzEoMCYGA1UEAwwfQW1hem9uIFJEUyBQcmV2aWV3IFJvb3QgMjAxOSBDQTCCASIw\nDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM7kkS6vjgKKQTPynC2NjdN5aPPV\nO71G0JJS/2ARVBVJd93JLiGovVJilfWYfwZCs4gTRSSjrUD4D4HyqCd6A+eEEtJq\nM0DEC7i0dC+9WNTsPszuB206Jy2IUmxZMIKJAA1NHSbIMjB+b6/JhbSUi7nKdbR/\nbrj83bF+RoSA+ogrgX7mQbxhmFcoZN9OGaJgYKsKWUt5Wqv627KkGodUK8mDepgD\nS3ZfoRQRx3iceETpcmHJvaIge6+vyDX3d9Z22jmvQ4AKv3py2CmU2UwuhOltFDwB\n0ddtb39vgwrJxaGfiMRHpEP1DfNLWHAnA69/pgZPwIggidS+iBPUhgucMp8CAwEA\nAaNjMGEwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE\nFGnTGpQuQ2H/DZlXMQijZEhjs7TdMB8GA1UdIwQYMBaAFGnTGpQuQ2H/DZlXMQij\nZEhjs7TdMA0GCSqGSIb3DQEBCwUAA4IBAQC3xz1vQvcXAfpcZlngiRWeqU8zQAMQ\nLZPCFNv7PVk4pmqX+ZiIRo4f9Zy7TrOVcboCnqmP/b/mNq0gVF4O+88jwXJZD+f8\n/RnABMZcnGU+vK0YmxsAtYU6TIb1uhRFmbF8K80HHbj9vSjBGIQdPCbvmR2zY6VJ\nBYM+w9U9hp6H4DVMLKXPc1bFlKA5OBTgUtgkDibWJKFOEPW3UOYwp9uq6pFoN0AO\nxMTldqWFsOF3bJIlvOY0c/1EFZXu3Ns6/oCP//Ap9vumldYMUZWmbK+gK33FPOXV\n8BQ6jNC29icv7lLDpRPwjibJBXX+peDR5UK4FdYcswWEB1Tix5X8dYu6\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECTCCAvGgAwIBAgICEAAwDQYJKoZIhvcNAQELBQAwgZUxCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSYwJAYDVQQDDB1BbWF6b24gUkRTIGFmLXNvdXRoLTEgUm9vdCBDQTAeFw0xOTEw\nMjgxODA2NTNaFw0yNDEwMjgxODA2NTNaMIGQMQswCQYDVQQGEwJVUzETMBEGA1UE\nCAwKV2FzaGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9u\nIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEhMB8GA1UE\nAwwYQW1hem9uIFJEUyBhZi1zb3V0aC0xIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC\nAQ8AMIIBCgKCAQEAvtV1OqmFa8zCVQSKOvPUJERLVFtd4rZmDpImc5rIoeBk7w/P\n9lcKUJjO8R/w1a2lJXx3oQ81tiY0Piw6TpT62YWVRMWrOw8+Vxq1dNaDSFp9I8d0\nUHillSSbOk6FOrPDp+R6AwbGFqUDebbN5LFFoDKbhNmH1BVS0a6YNKpGigLRqhka\ncClPslWtPqtjbaP3Jbxl26zWzLo7OtZl98dR225pq8aApNBwmtgA7Gh60HK/cX0t\n32W94n8D+GKSg6R4MKredVFqRTi9hCCNUu0sxYPoELuM+mHiqB5NPjtm92EzCWs+\n+vgWhMc6GxG+82QSWx1Vj8sgLqtE/vLrWddf5QIDAQABo2YwZDAOBgNVHQ8BAf8E\nBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUuLB4gYVJrSKJj/Gz\npqc6yeA+RcAwHwYDVR0jBBgwFoAUEEi/WWMcBJsoGXg+EZwkQ0MscZQwDQYJKoZI\nhvcNAQELBQADggEBABauYOZxUhe9/RhzGJ8MsWCz8eKcyDVd4FCnY6Qh+9wcmYNT\nLtnD88LACtJKb/b81qYzcB0Em6+zVJ3Z9jznfr6buItE6es9wAoja22Xgv44BTHL\nrimbgMwpTt3uEMXDffaS0Ww6YWb3pSE0XYI2ISMWz+xRERRf+QqktSaL39zuiaW5\ntfZMre+YhohRa/F0ZQl3RCd6yFcLx4UoSPqQsUl97WhYzwAxZZfwvLJXOc4ATt3u\nVlCUylNDkaZztDJc/yN5XQoK9W5nOt2cLu513MGYKbuarQr8f+gYU8S+qOyuSRSP\nNRITzwCRVnsJE+2JmcRInn/NcanB7uOGqTvJ9+c=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECTCCAvGgAwIBAgICEAAwDQYJKoZIhvcNAQELBQAwgZUxCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSYwJAYDVQQDDB1BbWF6b24gUkRTIGV1LXNvdXRoLTEgUm9vdCBDQTAeFw0xOTEw\nMzAyMDIxMzBaFw0yNDEwMzAyMDIxMzBaMIGQMQswCQYDVQQGEwJVUzETMBEGA1UE\nCAwKV2FzaGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9u\nIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEhMB8GA1UE\nAwwYQW1hem9uIFJEUyBldS1zb3V0aC0xIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC\nAQ8AMIIBCgKCAQEAtEyjYcajx6xImJn8Vz1zjdmL4ANPgQXwF7+tF7xccmNAZETb\nbzb3I9i5fZlmrRaVznX+9biXVaGxYzIUIR3huQ3Q283KsDYnVuGa3mk690vhvJbB\nQIPgKa5mVwJppnuJm78KqaSpi0vxyCPe3h8h6LLFawVyWrYNZ4okli1/U582eef8\nRzJp/Ear3KgHOLIiCdPDF0rjOdCG1MOlDLixVnPn9IYOciqO+VivXBg+jtfc5J+L\nAaPm0/Yx4uELt1tkbWkm4BvTU/gBOODnYziITZM0l6Fgwvbwgq5duAtKW+h031lC\n37rEvrclqcp4wrsUYcLAWX79ZyKIlRxcAdvEhQIDAQABo2YwZDAOBgNVHQ8BAf8E\nBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQU7zPyc0azQxnBCe7D\nb9KAadH1QSEwHwYDVR0jBBgwFoAUFBAFcgJe/BBuZiGeZ8STfpkgRYQwDQYJKoZI\nhvcNAQELBQADggEBAFGaNiYxg7yC/xauXPlaqLCtwbm2dKyK9nIFbF/7be8mk7Q3\nMOA0of1vGHPLVQLr6bJJpD9MAbUcm4cPAwWaxwcNpxOjYOFDaq10PCK4eRAxZWwF\nNJRIRmGsl8NEsMNTMCy8X+Kyw5EzH4vWFl5Uf2bGKOeFg0zt43jWQVOX6C+aL3Cd\npRS5MhmYpxMG8irrNOxf4NVFE2zpJOCm3bn0STLhkDcV/ww4zMzObTJhiIb5wSWn\nEXKKWhUXuRt7A2y1KJtXpTbSRHQxE++69Go1tWhXtRiULCJtf7wF2Ksm0RR/AdXT\n1uR1vKyH5KBJPX3ppYkQDukoHTFR0CpB+G84NLo=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECTCCAvGgAwIBAgICEAAwDQYJKoZIhvcNAQELBQAwgZUxCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSYwJAYDVQQDDB1BbWF6b24gUkRTIG1lLXNvdXRoLTEgUm9vdCBDQTAeFw0xOTA1\nMTAyMTU4NDNaFw0yNTA2MDExMjAwMDBaMIGQMQswCQYDVQQGEwJVUzETMBEGA1UE\nCAwKV2FzaGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9u\nIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEhMB8GA1UE\nAwwYQW1hem9uIFJEUyBtZS1zb3V0aC0xIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC\nAQ8AMIIBCgKCAQEAudOYPZH+ihJAo6hNYMB5izPVBe3TYhnZm8+X3IoaaYiKtsp1\nJJhkTT0CEejYIQ58Fh4QrMUyWvU8qsdK3diNyQRoYLbctsBPgxBR1u07eUJDv38/\nC1JlqgHmMnMi4y68Iy7ymv50QgAMuaBqgEBRI1R6Lfbyrb2YvH5txjJyTVMwuCfd\nYPAtZVouRz0JxmnfsHyxjE+So56uOKTDuw++Ho4HhZ7Qveej7XB8b+PIPuroknd3\nFQB5RVbXRvt5ZcVD4F2fbEdBniF7FAF4dEiofVCQGQ2nynT7dZdEIPfPdH3n7ZmE\nlAOmwHQ6G83OsiHRBLnbp+QZRgOsjkHJxT20bQIDAQABo2YwZDAOBgNVHQ8BAf8E\nBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUOEVDM7VomRH4HVdA\nQvIMNq2tXOcwHwYDVR0jBBgwFoAU54cfDjgwBx4ycBH8+/r8WXdaiqYwDQYJKoZI\nhvcNAQELBQADggEBAHhvMssj+Th8IpNePU6RH0BiL6o9c437R3Q4IEJeFdYL+nZz\nPW/rELDPvLRUNMfKM+KzduLZ+l29HahxefejYPXtvXBlq/E/9czFDD4fWXg+zVou\nuDXhyrV4kNmP4S0eqsAP/jQHPOZAMFA4yVwO9hlqmePhyDnszCh9c1PfJSBh49+b\n4w7i/L3VBOMt8j3EKYvqz0gVfpeqhJwL4Hey8UbVfJRFJMJzfNHpePqtDRAY7yjV\nPYquRaV2ab/E+/7VFkWMM4tazYz/qsYA2jSH+4xDHvYk8LnsbcrF9iuidQmEc5sb\nFgcWaSKG4DJjcI5k7AJLWcXyTDt21Ci43LE+I9Q=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECDCCAvCgAwIBAgICVIYwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MDQxNzEz\nMDRaFw0yNDA4MjIxNzA4NTBaMIGVMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEmMCQGA1UEAwwdQW1h\nem9uIFJEUyBhcC1zb3V0aC0xIDIwMTkgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IB\nDwAwggEKAoIBAQDUYOz1hGL42yUCrcsMSOoU8AeD/3KgZ4q7gP+vAz1WnY9K/kim\neWN/2Qqzlo3+mxSFQFyD4MyV3+CnCPnBl9Sh1G/F6kThNiJ7dEWSWBQGAB6HMDbC\nBaAsmUc1UIz8sLTL3fO+S9wYhA63Wun0Fbm/Rn2yk/4WnJAaMZcEtYf6e0KNa0LM\np/kN/70/8cD3iz3dDR8zOZFpHoCtf0ek80QqTich0A9n3JLxR6g6tpwoYviVg89e\nqCjQ4axxOkWWeusLeTJCcY6CkVyFvDAKvcUl1ytM5AiaUkXblE7zDFXRM4qMMRdt\nlPm8d3pFxh0fRYk8bIKnpmtOpz3RIctDrZZxAgMBAAGjZjBkMA4GA1UdDwEB/wQE\nAwIBBjASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBT99wKJftD3jb4sHoHG\ni3uGlH6W6TAfBgNVHSMEGDAWgBRzX2DYvMsDmPQrFzQuNlqmYP+8HzANBgkqhkiG\n9w0BAQsFAAOCAQEAZ17hhr3dII3hUfuHQ1hPWGrpJOX/G9dLzkprEIcCidkmRYl+\nhu1Pe3caRMh/17+qsoEErmnVq5jNY9X1GZL04IZH8YbHc7iRHw3HcWAdhN8633+K\njYEB2LbJ3vluCGnCejq9djDb6alOugdLMJzxOkHDhMZ6/gYbECOot+ph1tQuZXzD\ntZ7prRsrcuPBChHlPjmGy8M9z8u+kF196iNSUGC4lM8vLkHM7ycc1/ZOwRq9aaTe\niOghbQQyAEe03MWCyDGtSmDfr0qEk+CHN+6hPiaL8qKt4s+V9P7DeK4iW08ny8Ox\nAVS7u0OK/5+jKMAMrKwpYrBydOjTUTHScocyNw==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEBzCCAu+gAwIBAgICQ2QwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MDUxODQ2\nMjlaFw0yNDA4MjIxNzA4NTBaMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzElMCMGA1UEAwwcQW1h\nem9uIFJEUyBzYS1lYXN0LTEgMjAxOSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP\nADCCAQoCggEBAMMvR+ReRnOzqJzoaPipNTt1Z2VA968jlN1+SYKUrYM3No+Vpz0H\nM6Tn0oYB66ByVsXiGc28ulsqX1HbHsxqDPwvQTKvO7SrmDokoAkjJgLocOLUAeld\n5AwvUjxGRP6yY90NV7X786MpnYb2Il9DIIaV9HjCmPt+rjy2CZjS0UjPjCKNfB8J\nbFjgW6GGscjeyGb/zFwcom5p4j0rLydbNaOr9wOyQrtt3ZQWLYGY9Zees/b8pmcc\nJt+7jstZ2UMV32OO/kIsJ4rMUn2r/uxccPwAc1IDeRSSxOrnFKhW3Cu69iB3bHp7\nJbawY12g7zshE4I14sHjv3QoXASoXjx4xgMCAwEAAaNmMGQwDgYDVR0PAQH/BAQD\nAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI1Fc/Ql2jx+oJPgBVYq\nccgP0pQ8MB8GA1UdIwQYMBaAFHNfYNi8ywOY9CsXNC42WqZg/7wfMA0GCSqGSIb3\nDQEBCwUAA4IBAQB4VVVabVp70myuYuZ3vltQIWqSUMhkaTzehMgGcHjMf9iLoZ/I\n93KiFUSGnek5cRePyS9wcpp0fcBT3FvkjpUdCjVtdttJgZFhBxgTd8y26ImdDDMR\n4+BUuhI5msvjL08f+Vkkpu1GQcGmyFVPFOy/UY8iefu+QyUuiBUnUuEDd49Hw0Fn\n/kIPII6Vj82a2mWV/Q8e+rgN8dIRksRjKI03DEoP8lhPlsOkhdwU6Uz9Vu6NOB2Q\nLs1kbcxAc7cFSyRVJEhh12Sz9d0q/CQSTFsVJKOjSNQBQfVnLz1GwO/IieUEAr4C\njkTntH0r1LX5b/GwN4R887LvjAEdTbg1his7\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECDCCAvCgAwIBAgIDAIkHMA0GCSqGSIb3DQEBCwUAMIGPMQswCQYDVQQGEwJV\nUzEQMA4GA1UEBwwHU2VhdHRsZTETMBEGA1UECAwKV2FzaGluZ3RvbjEiMCAGA1UE\nCgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJE\nUzEgMB4GA1UEAwwXQW1hem9uIFJEUyBSb290IDIwMTkgQ0EwHhcNMTkwOTA2MTc0\nMDIxWhcNMjQwODIyMTcwODUwWjCBlDELMAkGA1UEBhMCVVMxEzARBgNVBAgMCldh\nc2hpbmd0b24xEDAOBgNVBAcMB1NlYXR0bGUxIjAgBgNVBAoMGUFtYXpvbiBXZWIg\nU2VydmljZXMsIEluYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxJTAjBgNVBAMMHEFt\nYXpvbiBSRFMgdXMtd2VzdC0xIDIwMTkgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IB\nDwAwggEKAoIBAQDD2yzbbAl77OofTghDMEf624OvU0eS9O+lsdO0QlbfUfWa1Kd6\n0WkgjkLZGfSRxEHMCnrv4UPBSK/Qwn6FTjkDLgemhqBtAnplN4VsoDL+BkRX4Wwq\n/dSQJE2b+0hm9w9UMVGFDEq1TMotGGTD2B71eh9HEKzKhGzqiNeGsiX4VV+LJzdH\nuM23eGisNqmd4iJV0zcAZ+Gbh2zK6fqTOCvXtm7Idccv8vZZnyk1FiWl3NR4WAgK\nAkvWTIoFU3Mt7dIXKKClVmvssG8WHCkd3Xcb4FHy/G756UZcq67gMMTX/9fOFM/v\nl5C0+CHl33Yig1vIDZd+fXV1KZD84dEJfEvHAgMBAAGjZjBkMA4GA1UdDwEB/wQE\nAwIBBjASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBR+ap20kO/6A7pPxo3+\nT3CfqZpQWjAfBgNVHSMEGDAWgBRzX2DYvMsDmPQrFzQuNlqmYP+8HzANBgkqhkiG\n9w0BAQsFAAOCAQEAHCJky2tPjPttlDM/RIqExupBkNrnSYnOK4kr9xJ3sl8UF2DA\nPAnYsjXp3rfcjN/k/FVOhxwzi3cXJF/2Tjj39Bm/OEfYTOJDNYtBwB0VVH4ffa/6\ntZl87jaIkrxJcreeeHqYMnIxeN0b/kliyA+a5L2Yb0VPjt9INq34QDc1v74FNZ17\n4z8nr1nzg4xsOWu0Dbjo966lm4nOYIGBRGOKEkHZRZ4mEiMgr3YLkv8gSmeitx57\nZ6dVemNtUic/LVo5Iqw4n3TBS0iF2C1Q1xT/s3h+0SXZlfOWttzSluDvoMv5PvCd\npFjNn+aXLAALoihL1MJSsxydtsLjOBro5eK0Vw==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEDDCCAvSgAwIBAgICOFAwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTAxNzQ2\nMjFaFw0yNDA4MjIxNzA4NTBaMIGZMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEqMCgGA1UEAwwhQW1h\nem9uIFJEUyBhcC1ub3J0aGVhc3QtMiAyMDE5IENBMIIBIjANBgkqhkiG9w0BAQEF\nAAOCAQ8AMIIBCgKCAQEAzU72e6XbaJbi4HjJoRNjKxzUEuChKQIt7k3CWzNnmjc5\n8I1MjCpa2W1iw1BYVysXSNSsLOtUsfvBZxi/1uyMn5ZCaf9aeoA9UsSkFSZBjOCN\nDpKPCmfV1zcEOvJz26+1m8WDg+8Oa60QV0ou2AU1tYcw98fOQjcAES0JXXB80P2s\n3UfkNcnDz+l4k7j4SllhFPhH6BQ4lD2NiFAP4HwoG6FeJUn45EPjzrydxjq6v5Fc\ncQ8rGuHADVXotDbEhaYhNjIrsPL+puhjWfhJjheEw8c4whRZNp6gJ/b6WEes/ZhZ\nh32DwsDsZw0BfRDUMgUn8TdecNexHUw8vQWeC181hwIDAQABo2YwZDAOBgNVHQ8B\nAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUwW9bWgkWkr0U\nlrOsq2kvIdrECDgwHwYDVR0jBBgwFoAUc19g2LzLA5j0Kxc0LjZapmD/vB8wDQYJ\nKoZIhvcNAQELBQADggEBAEugF0Gj7HVhX0ehPZoGRYRt3PBuI2YjfrrJRTZ9X5wc\n9T8oHmw07mHmNy1qqWvooNJg09bDGfB0k5goC2emDiIiGfc/kvMLI7u+eQOoMKj6\nmkfCncyRN3ty08Po45vTLBFZGUvtQmjM6yKewc4sXiASSBmQUpsMbiHRCL72M5qV\nobcJOjGcIdDTmV1BHdWT+XcjynsGjUqOvQWWhhLPrn4jWe6Xuxll75qlrpn3IrIx\nCRBv/5r7qbcQJPOgwQsyK4kv9Ly8g7YT1/vYBlR3cRsYQjccw5ceWUj2DrMVWhJ4\nprf+E3Aa4vYmLLOUUvKnDQ1k3RGNu56V0tonsQbfsaM=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECjCCAvKgAwIBAgICEzUwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTAyMDUy\nMjVaFw0yNDA4MjIxNzA4NTBaMIGXMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEoMCYGA1UEAwwfQW1h\nem9uIFJEUyBjYS1jZW50cmFsLTEgMjAxOSBDQTCCASIwDQYJKoZIhvcNAQEBBQAD\nggEPADCCAQoCggEBAOxHqdcPSA2uBjsCP4DLSlqSoPuQ/X1kkJLusVRKiQE2zayB\nviuCBt4VB9Qsh2rW3iYGM+usDjltGnI1iUWA5KHcvHszSMkWAOYWLiMNKTlg6LCp\nXnE89tvj5dIH6U8WlDvXLdjB/h30gW9JEX7S8supsBSci2GxEzb5mRdKaDuuF/0O\nqvz4YE04pua3iZ9QwmMFuTAOYzD1M72aOpj+7Ac+YLMM61qOtU+AU6MndnQkKoQi\nqmUN2A9IFaqHFzRlSdXwKCKUA4otzmz+/N3vFwjb5F4DSsbsrMfjeHMo6o/nb6Nh\nYDb0VJxxPee6TxSuN7CQJ2FxMlFUezcoXqwqXD0CAwEAAaNmMGQwDgYDVR0PAQH/\nBAQDAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFDGGpon9WfIpsggE\nCxHq8hZ7E2ESMB8GA1UdIwQYMBaAFHNfYNi8ywOY9CsXNC42WqZg/7wfMA0GCSqG\nSIb3DQEBCwUAA4IBAQAvpeQYEGZvoTVLgV9rd2+StPYykMsmFjWQcyn3dBTZRXC2\nlKq7QhQczMAOhEaaN29ZprjQzsA2X/UauKzLR2Uyqc2qOeO9/YOl0H3qauo8C/W9\nr8xqPbOCDLEXlOQ19fidXyyEPHEq5WFp8j+fTh+s8WOx2M7IuC0ANEetIZURYhSp\nxl9XOPRCJxOhj7JdelhpweX0BJDNHeUFi0ClnFOws8oKQ7sQEv66d5ddxqqZ3NVv\nRbCvCtEutQMOUMIuaygDlMn1anSM8N7Wndx8G6+Uy67AnhjGx7jw/0YPPxopEj6x\nJXP8j0sJbcT9K/9/fPVLNT25RvQ/93T2+IQL4Ca2\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEBzCCAu+gAwIBAgICYpgwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTExNzMx\nNDhaFw0yNDA4MjIxNzA4NTBaMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzElMCMGA1UEAwwcQW1h\nem9uIFJEUyBldS13ZXN0LTEgMjAxOSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP\nADCCAQoCggEBAMk3YdSZ64iAYp6MyyKtYJtNzv7zFSnnNf6vv0FB4VnfITTMmOyZ\nLXqKAT2ahZ00hXi34ewqJElgU6eUZT/QlzdIu359TEZyLVPwURflL6SWgdG01Q5X\nO++7fSGcBRyIeuQWs9FJNIIqK8daF6qw0Rl5TXfu7P9dBc3zkgDXZm2DHmxGDD69\n7liQUiXzoE1q2Z9cA8+jirDioJxN9av8hQt12pskLQumhlArsMIhjhHRgF03HOh5\ntvi+RCfihVOxELyIRTRpTNiIwAqfZxxTWFTgfn+gijTmd0/1DseAe82aYic8JbuS\nEMbrDduAWsqrnJ4GPzxHKLXX0JasCUcWyMECAwEAAaNmMGQwDgYDVR0PAQH/BAQD\nAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFPLtsq1NrwJXO13C9eHt\nsLY11AGwMB8GA1UdIwQYMBaAFHNfYNi8ywOY9CsXNC42WqZg/7wfMA0GCSqGSIb3\nDQEBCwUAA4IBAQAnWBKj5xV1A1mYd0kIgDdkjCwQkiKF5bjIbGkT3YEFFbXoJlSP\n0lZZ/hDaOHI8wbLT44SzOvPEEmWF9EE7SJzkvSdQrUAWR9FwDLaU427ALI3ngNHy\nlGJ2hse1fvSRNbmg8Sc9GBv8oqNIBPVuw+AJzHTacZ1OkyLZrz1c1QvwvwN2a+Jd\nvH0V0YIhv66llKcYDMUQJAQi4+8nbRxXWv6Gq3pvrFoorzsnkr42V3JpbhnYiK+9\nnRKd4uWl62KRZjGkfMbmsqZpj2fdSWMY1UGyN1k+kDmCSWYdrTRDP0xjtIocwg+A\nJ116n4hV/5mbA0BaPiS2krtv17YAeHABZcvz\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECjCCAvKgAwIBAgICV2YwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTExOTM2\nMjBaFw0yNDA4MjIxNzA4NTBaMIGXMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEoMCYGA1UEAwwfQW1h\nem9uIFJEUyBldS1jZW50cmFsLTEgMjAxOSBDQTCCASIwDQYJKoZIhvcNAQEBBQAD\nggEPADCCAQoCggEBAMEx54X2pHVv86APA0RWqxxRNmdkhAyp2R1cFWumKQRofoFv\nn+SPXdkpIINpMuEIGJANozdiEz7SPsrAf8WHyD93j/ZxrdQftRcIGH41xasetKGl\nI67uans8d+pgJgBKGb/Z+B5m+UsIuEVekpvgpwKtmmaLFC/NCGuSsJoFsRqoa6Gh\nm34W6yJoY87UatddCqLY4IIXaBFsgK9Q/wYzYLbnWM6ZZvhJ52VMtdhcdzeTHNW0\n5LGuXJOF7Ahb4JkEhoo6TS2c0NxB4l4MBfBPgti+O7WjR3FfZHpt18A6Zkq6A2u6\nD/oTSL6c9/3sAaFTFgMyL3wHb2YlW0BPiljZIqECAwEAAaNmMGQwDgYDVR0PAQH/\nBAQDAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFOcAToAc6skWffJa\nTnreaswAfrbcMB8GA1UdIwQYMBaAFHNfYNi8ywOY9CsXNC42WqZg/7wfMA0GCSqG\nSIb3DQEBCwUAA4IBAQA1d0Whc1QtspK496mFWfFEQNegLh0a9GWYlJm+Htcj5Nxt\nDAIGXb+8xrtOZFHmYP7VLCT5Zd2C+XytqseK/+s07iAr0/EPF+O2qcyQWMN5KhgE\ncXw2SwuP9FPV3i+YAm11PBVeenrmzuk9NrdHQ7TxU4v7VGhcsd2C++0EisrmquWH\nmgIfmVDGxphwoES52cY6t3fbnXmTkvENvR+h3rj+fUiSz0aSo+XZUGHPgvuEKM/W\nCBD9Smc9CBoBgvy7BgHRgRUmwtABZHFUIEjHI5rIr7ZvYn+6A0O6sogRfvVYtWFc\nqpyrW1YX8mD0VlJ8fGKM3G+aCOsiiPKDV/Uafrm+\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECDCCAvCgAwIBAgICGAcwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTIxODE5\nNDRaFw0yNDA4MjIxNzA4NTBaMIGVMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEmMCQGA1UEAwwdQW1h\nem9uIFJEUyBldS1ub3J0aC0xIDIwMTkgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IB\nDwAwggEKAoIBAQCiIYnhe4UNBbdBb/nQxl5giM0XoVHWNrYV5nB0YukA98+TPn9v\nAoj1RGYmtryjhrf01Kuv8SWO+Eom95L3zquoTFcE2gmxCfk7bp6qJJ3eHOJB+QUO\nXsNRh76fwDzEF1yTeZWH49oeL2xO13EAx4PbZuZpZBttBM5zAxgZkqu4uWQczFEs\nJXfla7z2fvWmGcTagX10O5C18XaFroV0ubvSyIi75ue9ykg/nlFAeB7O0Wxae88e\nuhiBEFAuLYdqWnsg3459NfV8Yi1GnaitTym6VI3tHKIFiUvkSiy0DAlAGV2iiyJE\nq+DsVEO4/hSINJEtII4TMtysOsYPpINqeEzRAgMBAAGjZjBkMA4GA1UdDwEB/wQE\nAwIBBjASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBRR0UpnbQyjnHChgmOc\nhnlc0PogzTAfBgNVHSMEGDAWgBRzX2DYvMsDmPQrFzQuNlqmYP+8HzANBgkqhkiG\n9w0BAQsFAAOCAQEAKJD4xVzSf4zSGTBJrmamo86jl1NHQxXUApAZuBZEc8tqC6TI\nT5CeoSr9CMuVC8grYyBjXblC4OsM5NMvmsrXl/u5C9dEwtBFjo8mm53rOOIm1fxl\nI1oYB/9mtO9ANWjkykuLzWeBlqDT/i7ckaKwalhLODsRDO73vRhYNjsIUGloNsKe\npxw3dzHwAZx4upSdEVG4RGCZ1D0LJ4Gw40OfD69hfkDfRVVxKGrbEzqxXRvovmDc\ntKLdYZO/6REoca36v4BlgIs1CbUXJGLSXUwtg7YXGLSVBJ/U0+22iGJmBSNcoyUN\ncjPFD9JQEhDDIYYKSGzIYpvslvGc4T5ISXFiuQ==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEBzCCAu+gAwIBAgICZIEwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTIyMTMy\nMzJaFw0yNDA4MjIxNzA4NTBaMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzElMCMGA1UEAwwcQW1h\nem9uIFJEUyBldS13ZXN0LTIgMjAxOSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP\nADCCAQoCggEBALGiwqjiF7xIjT0Sx7zB3764K2T2a1DHnAxEOr+/EIftWKxWzT3u\nPFwS2eEZcnKqSdRQ+vRzonLBeNLO4z8aLjQnNbkizZMBuXGm4BqRm1Kgq3nlLDQn\n7YqdijOq54SpShvR/8zsO4sgMDMmHIYAJJOJqBdaus2smRt0NobIKc0liy7759KB\n6kmQ47Gg+kfIwxrQA5zlvPLeQImxSoPi9LdbRoKvu7Iot7SOa+jGhVBh3VdqndJX\n7tm/saj4NE375csmMETFLAOXjat7zViMRwVorX4V6AzEg1vkzxXpA9N7qywWIT5Y\nfYaq5M8i6vvLg0CzrH9fHORtnkdjdu1y+0MCAwEAAaNmMGQwDgYDVR0PAQH/BAQD\nAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFFOhOx1yt3Z7mvGB9jBv\n2ymdZwiOMB8GA1UdIwQYMBaAFHNfYNi8ywOY9CsXNC42WqZg/7wfMA0GCSqGSIb3\nDQEBCwUAA4IBAQBehqY36UGDvPVU9+vtaYGr38dBbp+LzkjZzHwKT1XJSSUc2wqM\nhnCIQKilonrTIvP1vmkQi8qHPvDRtBZKqvz/AErW/ZwQdZzqYNFd+BmOXaeZWV0Q\noHtDzXmcwtP8aUQpxN0e1xkWb1E80qoy+0uuRqb/50b/R4Q5qqSfJhkn6z8nwB10\n7RjLtJPrK8igxdpr3tGUzfAOyiPrIDncY7UJaL84GFp7WWAkH0WG3H8Y8DRcRXOU\nmqDxDLUP3rNuow3jnGxiUY+gGX5OqaZg4f4P6QzOSmeQYs6nLpH0PiN00+oS1BbD\nbpWdZEttILPI+vAYkU4QuBKKDjJL6HbSd+cn\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECDCCAvCgAwIBAgIDAIVCMA0GCSqGSIb3DQEBCwUAMIGPMQswCQYDVQQGEwJV\nUzEQMA4GA1UEBwwHU2VhdHRsZTETMBEGA1UECAwKV2FzaGluZ3RvbjEiMCAGA1UE\nCgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJE\nUzEgMB4GA1UEAwwXQW1hem9uIFJEUyBSb290IDIwMTkgQ0EwHhcNMTkwOTEzMTcw\nNjQxWhcNMjQwODIyMTcwODUwWjCBlDELMAkGA1UEBhMCVVMxEzARBgNVBAgMCldh\nc2hpbmd0b24xEDAOBgNVBAcMB1NlYXR0bGUxIjAgBgNVBAoMGUFtYXpvbiBXZWIg\nU2VydmljZXMsIEluYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxJTAjBgNVBAMMHEFt\nYXpvbiBSRFMgdXMtZWFzdC0yIDIwMTkgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IB\nDwAwggEKAoIBAQDE+T2xYjUbxOp+pv+gRA3FO24+1zCWgXTDF1DHrh1lsPg5k7ht\n2KPYzNc+Vg4E+jgPiW0BQnA6jStX5EqVh8BU60zELlxMNvpg4KumniMCZ3krtMUC\nau1NF9rM7HBh+O+DYMBLK5eSIVt6lZosOb7bCi3V6wMLA8YqWSWqabkxwN4w0vXI\n8lu5uXXFRemHnlNf+yA/4YtN4uaAyd0ami9+klwdkZfkrDOaiy59haOeBGL8EB/c\ndbJJlguHH5CpCscs3RKtOOjEonXnKXldxarFdkMzi+aIIjQ8GyUOSAXHtQHb3gZ4\nnS6Ey0CMlwkB8vUObZU9fnjKJcL5QCQqOfwvAgMBAAGjZjBkMA4GA1UdDwEB/wQE\nAwIBBjASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBQUPuRHohPxx4VjykmH\n6usGrLL1ETAfBgNVHSMEGDAWgBRzX2DYvMsDmPQrFzQuNlqmYP+8HzANBgkqhkiG\n9w0BAQsFAAOCAQEAUdR9Vb3y33Yj6X6KGtuthZ08SwjImVQPtknzpajNE5jOJAh8\nquvQnU9nlnMO85fVDU1Dz3lLHGJ/YG1pt1Cqq2QQ200JcWCvBRgdvH6MjHoDQpqZ\nHvQ3vLgOGqCLNQKFuet9BdpsHzsctKvCVaeBqbGpeCtt3Hh/26tgx0rorPLw90A2\nV8QSkZJjlcKkLa58N5CMM8Xz8KLWg3MZeT4DmlUXVCukqK2RGuP2L+aME8dOxqNv\nOnOz1zrL5mR2iJoDpk8+VE/eBDmJX40IJk6jBjWoxAO/RXq+vBozuF5YHN1ujE92\ntO8HItgTp37XT8bJBAiAnt5mxw+NLSqtxk2QdQ==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEDDCCAvSgAwIBAgICY4kwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTMyMDEx\nNDJaFw0yNDA4MjIxNzA4NTBaMIGZMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEqMCgGA1UEAwwhQW1h\nem9uIFJEUyBhcC1zb3V0aGVhc3QtMSAyMDE5IENBMIIBIjANBgkqhkiG9w0BAQEF\nAAOCAQ8AMIIBCgKCAQEAr5u9OuLL/OF/fBNUX2kINJLzFl4DnmrhnLuSeSnBPgbb\nqddjf5EFFJBfv7IYiIWEFPDbDG5hoBwgMup5bZDbas+ZTJTotnnxVJTQ6wlhTmns\neHECcg2pqGIKGrxZfbQhlj08/4nNAPvyYCTS0bEcmQ1emuDPyvJBYDDLDU6AbCB5\n6Z7YKFQPTiCBblvvNzchjLWF9IpkqiTsPHiEt21sAdABxj9ityStV3ja/W9BfgxH\nwzABSTAQT6FbDwmQMo7dcFOPRX+hewQSic2Rn1XYjmNYzgEHisdUsH7eeXREAcTw\n61TRvaLH8AiOWBnTEJXPAe6wYfrcSd1pD0MXpoB62wIDAQABo2YwZDAOBgNVHQ8B\nAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUytwMiomQOgX5\nIchd+2lDWRUhkikwHwYDVR0jBBgwFoAUc19g2LzLA5j0Kxc0LjZapmD/vB8wDQYJ\nKoZIhvcNAQELBQADggEBACf6lRDpfCD7BFRqiWM45hqIzffIaysmVfr+Jr+fBTjP\nuYe/ba1omSrNGG23bOcT9LJ8hkQJ9d+FxUwYyICQNWOy6ejicm4z0C3VhphbTPqj\nyjpt9nG56IAcV8BcRJh4o/2IfLNzC/dVuYJV8wj7XzwlvjysenwdrJCoLadkTr1h\neIdG6Le07sB9IxrGJL9e04afk37h7c8ESGSE4E+oS4JQEi3ATq8ne1B9DQ9SasXi\nIRmhNAaISDzOPdyLXi9N9V9Lwe/DHcja7hgLGYx3UqfjhLhOKwp8HtoZORixAmOI\nHfILgNmwyugAbuZoCazSKKBhQ0wgO0WZ66ZKTMG8Oho=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEBzCCAu+gAwIBAgICUYkwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTYxODIx\nMTVaFw0yNDA4MjIxNzA4NTBaMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzElMCMGA1UEAwwcQW1h\nem9uIFJEUyB1cy13ZXN0LTIgMjAxOSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP\nADCCAQoCggEBANCEZBZyu6yJQFZBJmSUZfSZd3Ui2gitczMKC4FLr0QzkbxY+cLa\nuVONIOrPt4Rwi+3h/UdnUg917xao3S53XDf1TDMFEYp4U8EFPXqCn/GXBIWlU86P\nPvBN+gzw3nS+aco7WXb+woTouvFVkk8FGU7J532llW8o/9ydQyDIMtdIkKTuMfho\nOiNHSaNc+QXQ32TgvM9A/6q7ksUoNXGCP8hDOkSZ/YOLiI5TcdLh/aWj00ziL5bj\npvytiMZkilnc9dLY9QhRNr0vGqL0xjmWdoEXz9/OwjmCihHqJq+20MJPsvFm7D6a\n2NKybR9U+ddrjb8/iyLOjURUZnj5O+2+OPcCAwEAAaNmMGQwDgYDVR0PAQH/BAQD\nAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFEBxMBdv81xuzqcK5TVu\npHj+Aor8MB8GA1UdIwQYMBaAFHNfYNi8ywOY9CsXNC42WqZg/7wfMA0GCSqGSIb3\nDQEBCwUAA4IBAQBZkfiVqGoJjBI37aTlLOSjLcjI75L5wBrwO39q+B4cwcmpj58P\n3sivv+jhYfAGEbQnGRzjuFoyPzWnZ1DesRExX+wrmHsLLQbF2kVjLZhEJMHF9eB7\nGZlTPdTzHErcnuXkwA/OqyXMpj9aghcQFuhCNguEfnROY9sAoK2PTfnTz9NJHL+Q\nUpDLEJEUfc0GZMVWYhahc0x38ZnSY2SKacIPECQrTI0KpqZv/P+ijCEcMD9xmYEb\njL4en+XKS1uJpw5fIU5Sj0MxhdGstH6S84iAE5J3GM3XHklGSFwwqPYvuTXvANH6\nuboynxRgSae59jIlAK6Jrr6GWMwQRbgcaAlW\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEDDCCAvSgAwIBAgICEkYwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTYxOTUz\nNDdaFw0yNDA4MjIxNzA4NTBaMIGZMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEqMCgGA1UEAwwhQW1h\nem9uIFJEUyBhcC1zb3V0aGVhc3QtMiAyMDE5IENBMIIBIjANBgkqhkiG9w0BAQEF\nAAOCAQ8AMIIBCgKCAQEAufodI2Flker8q7PXZG0P0vmFSlhQDw907A6eJuF/WeMo\nGHnll3b4S6nC3oRS3nGeRMHbyU2KKXDwXNb3Mheu+ox+n5eb/BJ17eoj9HbQR1cd\ngEkIciiAltf8gpMMQH4anP7TD+HNFlZnP7ii3geEJB2GGXSxgSWvUzH4etL67Zmn\nTpGDWQMB0T8lK2ziLCMF4XAC/8xDELN/buHCNuhDpxpPebhct0T+f6Arzsiswt2j\n7OeNeLLZwIZvVwAKF7zUFjC6m7/VmTQC8nidVY559D6l0UhhU0Co/txgq3HVsMOH\nPbxmQUwJEKAzQXoIi+4uZzHFZrvov/nDTNJUhC6DqwIDAQABo2YwZDAOBgNVHQ8B\nAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUwaZpaCme+EiV\nM5gcjeHZSTgOn4owHwYDVR0jBBgwFoAUc19g2LzLA5j0Kxc0LjZapmD/vB8wDQYJ\nKoZIhvcNAQELBQADggEBAAR6a2meCZuXO2TF9bGqKGtZmaah4pH2ETcEVUjkvXVz\nsl+ZKbYjrun+VkcMGGKLUjS812e7eDF726ptoku9/PZZIxlJB0isC/0OyixI8N4M\nNsEyvp52XN9QundTjkl362bomPnHAApeU0mRbMDRR2JdT70u6yAzGLGsUwMkoNnw\n1VR4XKhXHYGWo7KMvFrZ1KcjWhubxLHxZWXRulPVtGmyWg/MvE6KF+2XMLhojhUL\n+9jB3Fpn53s6KMx5tVq1x8PukHmowcZuAF8k+W4gk8Y68wIwynrdZrKRyRv6CVtR\nFZ8DeJgoNZT3y/GT254VqMxxfuy2Ccb/RInd16tEvVk=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEDDCCAvSgAwIBAgICOYIwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTcyMDA1\nMjlaFw0yNDA4MjIxNzA4NTBaMIGZMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEqMCgGA1UEAwwhQW1h\nem9uIFJEUyBhcC1ub3J0aGVhc3QtMyAyMDE5IENBMIIBIjANBgkqhkiG9w0BAQEF\nAAOCAQ8AMIIBCgKCAQEA4dMak8W+XW8y/2F6nRiytFiA4XLwePadqWebGtlIgyCS\nkbug8Jv5w7nlMkuxOxoUeD4WhI6A9EkAn3r0REM/2f0aYnd2KPxeqS2MrtdxxHw1\nxoOxk2x0piNSlOz6yog1idsKR5Wurf94fvM9FdTrMYPPrDabbGqiBMsZZmoHLvA3\nZ+57HEV2tU0Ei3vWeGIqnNjIekS+E06KhASxrkNU5vi611UsnYZlSi0VtJsH4UGV\nLhnHl53aZL0YFO5mn/fzuNG/51qgk/6EFMMhaWInXX49Dia9FnnuWXwVwi6uX1Wn\n7kjoHi5VtmC8ZlGEHroxX2DxEr6bhJTEpcLMnoQMqwIDAQABo2YwZDAOBgNVHQ8B\nAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUsUI5Cb3SWB8+\ngv1YLN/ABPMdxSAwHwYDVR0jBBgwFoAUc19g2LzLA5j0Kxc0LjZapmD/vB8wDQYJ\nKoZIhvcNAQELBQADggEBAJAF3E9PM1uzVL8YNdzb6fwJrxxqI2shvaMVmC1mXS+w\nG0zh4v2hBZOf91l1EO0rwFD7+fxoI6hzQfMxIczh875T6vUXePKVOCOKI5wCrDad\nzQbVqbFbdhsBjF4aUilOdtw2qjjs9JwPuB0VXN4/jY7m21oKEOcnpe36+7OiSPjN\nxngYewCXKrSRqoj3mw+0w/+exYj3Wsush7uFssX18av78G+ehKPIVDXptOCP/N7W\n8iKVNeQ2QGTnu2fzWsGUSvMGyM7yqT+h1ILaT//yQS8er511aHMLc142bD4D9VSy\nDgactwPDTShK/PXqhvNey9v/sKXm4XatZvwcc8KYlW4=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEDDCCAvSgAwIBAgICcEUwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTgxNjU2\nMjBaFw0yNDA4MjIxNzA4NTBaMIGZMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzEqMCgGA1UEAwwhQW1h\nem9uIFJEUyBhcC1ub3J0aGVhc3QtMSAyMDE5IENBMIIBIjANBgkqhkiG9w0BAQEF\nAAOCAQ8AMIIBCgKCAQEAndtkldmHtk4TVQAyqhAvtEHSMb6pLhyKrIFved1WO3S7\n+I+bWwv9b2W/ljJxLq9kdT43bhvzonNtI4a1LAohS6bqyirmk8sFfsWT3akb+4Sx\n1sjc8Ovc9eqIWJCrUiSvv7+cS7ZTA9AgM1PxvHcsqrcUXiK3Jd/Dax9jdZE1e15s\nBEhb2OEPE+tClFZ+soj8h8Pl2Clo5OAppEzYI4LmFKtp1X/BOf62k4jviXuCSst3\nUnRJzE/CXtjmN6oZySVWSe0rQYuyqRl6//9nK40cfGKyxVnimB8XrrcxUN743Vud\nQQVU0Esm8OVTX013mXWQXJHP2c0aKkog8LOga0vobQIDAQABo2YwZDAOBgNVHQ8B\nAf8EBAMCAQYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQULmoOS1mFSjj+\nsnUPx4DgS3SkLFYwHwYDVR0jBBgwFoAUc19g2LzLA5j0Kxc0LjZapmD/vB8wDQYJ\nKoZIhvcNAQELBQADggEBAAkVL2P1M2/G9GM3DANVAqYOwmX0Xk58YBHQu6iiQg4j\nb4Ky/qsZIsgT7YBsZA4AOcPKQFgGTWhe9pvhmXqoN3RYltN8Vn7TbUm/ZVDoMsrM\ngwv0+TKxW1/u7s8cXYfHPiTzVSJuOogHx99kBW6b2f99GbP7O1Sv3sLq4j6lVvBX\nFiacf5LAWC925nvlTzLlBgIc3O9xDtFeAGtZcEtxZJ4fnGXiqEnN4539+nqzIyYq\nnvlgCzyvcfRAxwltrJHuuRu6Maw5AGcd2Y0saMhqOVq9KYKFKuD/927BTrbd2JVf\n2sGWyuPZPCk3gq+5pCjbD0c6DkhcMGI6WwxvM5V/zSM=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEBzCCAu+gAwIBAgICJDQwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTgxNzAz\nMTVaFw0yNDA4MjIxNzA4NTBaMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzElMCMGA1UEAwwcQW1h\nem9uIFJEUyBldS13ZXN0LTMgMjAxOSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP\nADCCAQoCggEBAL9bL7KE0n02DLVtlZ2PL+g/BuHpMYFq2JnE2RgompGurDIZdjmh\n1pxfL3nT+QIVMubuAOy8InRfkRxfpxyjKYdfLJTPJG+jDVL+wDcPpACFVqoV7Prg\npVYEV0lc5aoYw4bSeYFhdzgim6F8iyjoPnObjll9mo4XsHzSoqJLCd0QC+VG9Fw2\nq+GDRZrLRmVM2oNGDRbGpGIFg77aRxRapFZa8SnUgs2AqzuzKiprVH5i0S0M6dWr\ni+kk5epmTtkiDHceX+dP/0R1NcnkCPoQ9TglyXyPdUdTPPRfKCq12dftqll+u4mV\nARdN6WFjovxax8EAP2OAUTi1afY+1JFMj+sCAwEAAaNmMGQwDgYDVR0PAQH/BAQD\nAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFLfhrbrO5exkCVgxW0x3\nY2mAi8lNMB8GA1UdIwQYMBaAFHNfYNi8ywOY9CsXNC42WqZg/7wfMA0GCSqGSIb3\nDQEBCwUAA4IBAQAigQ5VBNGyw+OZFXwxeJEAUYaXVoP/qrhTOJ6mCE2DXUVEoJeV\nSxScy/TlFA9tJXqmit8JH8VQ/xDL4ubBfeMFAIAo4WzNWDVoeVMqphVEcDWBHsI1\nAETWzfsapRS9yQekOMmxg63d/nV8xewIl8aNVTHdHYXMqhhik47VrmaVEok1UQb3\nO971RadLXIEbVd9tjY5bMEHm89JsZDnDEw1hQXBb67Elu64OOxoKaHBgUH8AZn/2\nzFsL1ynNUjOhCSAA15pgd1vjwc0YsBbAEBPcHBWYBEyME6NLNarjOzBl4FMtATSF\nwWCKRGkvqN8oxYhwR2jf2rR5Mu4DWkK5Q8Ep\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEBzCCAu+gAwIBAgICJVUwDQYJKoZIhvcNAQELBQAwgY8xCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSAwHgYDVQQDDBdBbWF6b24gUkRTIFJvb3QgMjAxOSBDQTAeFw0xOTA5MTkxODE2\nNTNaFw0yNDA4MjIxNzA4NTBaMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECAwKV2Fz\naGluZ3RvbjEQMA4GA1UEBwwHU2VhdHRsZTEiMCAGA1UECgwZQW1hem9uIFdlYiBT\nZXJ2aWNlcywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzElMCMGA1UEAwwcQW1h\nem9uIFJEUyB1cy1lYXN0LTEgMjAxOSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEP\nADCCAQoCggEBAM3i/k2u6cqbMdcISGRvh+m+L0yaSIoOXjtpNEoIftAipTUYoMhL\nInXGlQBVA4shkekxp1N7HXe1Y/iMaPEyb3n+16pf3vdjKl7kaSkIhjdUz3oVUEYt\ni8Z/XeJJ9H2aEGuiZh3kHixQcZczn8cg3dA9aeeyLSEnTkl/npzLf//669Ammyhs\nXcAo58yvT0D4E0D/EEHf2N7HRX7j/TlyWvw/39SW0usiCrHPKDLxByLojxLdHzso\nQIp/S04m+eWn6rmD+uUiRteN1hI5ncQiA3wo4G37mHnUEKo6TtTUh+sd/ku6a8HK\nglMBcgqudDI90s1OpuIAWmuWpY//8xEG2YECAwEAAaNmMGQwDgYDVR0PAQH/BAQD\nAgEGMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFPqhoWZcrVY9mU7tuemR\nRBnQIj1jMB8GA1UdIwQYMBaAFHNfYNi8ywOY9CsXNC42WqZg/7wfMA0GCSqGSIb3\nDQEBCwUAA4IBAQB6zOLZ+YINEs72heHIWlPZ8c6WY8MDU+Be5w1M+BK2kpcVhCUK\nPJO4nMXpgamEX8DIiaO7emsunwJzMSvavSPRnxXXTKIc0i/g1EbiDjnYX9d85DkC\nE1LaAUCmCZBVi9fIe0H2r9whIh4uLWZA41oMnJx/MOmo3XyMfQoWcqaSFlMqfZM4\n0rNoB/tdHLNuV4eIdaw2mlHxdWDtF4oH+HFm+2cVBUVC1jXKrFv/euRVtsTT+A6i\nh2XBHKxQ1Y4HgAn0jACP2QSPEmuoQEIa57bEKEcZsBR8SDY6ZdTd2HLRIApcCOSF\nMRM8CKLeF658I0XgF8D5EsYoKPsA+74Z+jDH\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEETCCAvmgAwIBAgICEAAwDQYJKoZIhvcNAQELBQAwgZQxCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSUwIwYDVQQDDBxBbWF6b24gUkRTIEJldGEgUm9vdCAyMDE5IENBMB4XDTE5MDgy\nMDE3MTAwN1oXDTI0MDgxOTE3MzgyNlowgZkxCzAJBgNVBAYTAlVTMRMwEQYDVQQI\nDApXYXNoaW5ndG9uMRAwDgYDVQQHDAdTZWF0dGxlMSIwIAYDVQQKDBlBbWF6b24g\nV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMSowKAYDVQQD\nDCFBbWF6b24gUkRTIEJldGEgdXMtZWFzdC0xIDIwMTkgQ0EwggEiMA0GCSqGSIb3\nDQEBAQUAA4IBDwAwggEKAoIBAQDTNCOlotQcLP8TP82U2+nk0bExVuuMVOgFeVMx\nvbUHZQeIj9ikjk+jm6eTDnnkhoZcmJiJgRy+5Jt69QcRbb3y3SAU7VoHgtraVbxF\nQDh7JEHI9tqEEVOA5OvRrDRcyeEYBoTDgh76ROco2lR+/9uCvGtHVrMCtG7BP7ZB\nsSVNAr1IIRZZqKLv2skKT/7mzZR2ivcw9UeBBTUf8xsfiYVBvMGoEsXEycjYdf6w\nWV+7XS7teNOc9UgsFNN+9AhIBc1jvee5E//72/4F8pAttAg/+mmPUyIKtekNJ4gj\nOAR2VAzGx1ybzWPwIgOudZFHXFduxvq4f1hIRPH0KbQ/gkRrAgMBAAGjZjBkMA4G\nA1UdDwEB/wQEAwIBBjASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBTkvpCD\n6C43rar9TtJoXr7q8dkrrjAfBgNVHSMEGDAWgBStoQwVpbGx87fxB3dEGDqKKnBT\n4TANBgkqhkiG9w0BAQsFAAOCAQEAJd9fOSkwB3uVdsS+puj6gCER8jqmhd3g/J5V\nZjk9cKS8H0e8pq/tMxeJ8kpurPAzUk5RkCspGt2l0BSwmf3ahr8aJRviMX6AuW3/\ng8aKplTvq/WMNGKLXONa3Sq8591J+ce8gtOX/1rDKmFI4wQ/gUzOSYiT991m7QKS\nFr6HMgFuz7RNJbb3Fy5cnurh8eYWA7mMv7laiLwTNsaro5qsqErD5uXuot6o9beT\na+GiKinEur35tNxAr47ax4IRubuIzyfCrezjfKc5raVV2NURJDyKP0m0CCaffAxE\nqn2dNfYc3v1D8ypg3XjHlOzRo32RB04o8ALHMD9LSwsYDLpMag==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEFzCCAv+gAwIBAgICFSUwDQYJKoZIhvcNAQELBQAwgZcxCzAJBgNVBAYTAlVT\nMRAwDgYDVQQHDAdTZWF0dGxlMRMwEQYDVQQIDApXYXNoaW5ndG9uMSIwIAYDVQQK\nDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRT\nMSgwJgYDVQQDDB9BbWF6b24gUkRTIFByZXZpZXcgUm9vdCAyMDE5IENBMB4XDTE5\nMDgyMTIyMzk0N1oXDTI0MDgyMTIyMjk0OVowgZwxCzAJBgNVBAYTAlVTMRMwEQYD\nVQQIDApXYXNoaW5ndG9uMRAwDgYDVQQHDAdTZWF0dGxlMSIwIAYDVQQKDBlBbWF6\nb24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMS0wKwYD\nVQQDDCRBbWF6b24gUkRTIFByZXZpZXcgdXMtZWFzdC0yIDIwMTkgQ0EwggEiMA0G\nCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD0dB/U7qRnSf05wOi7m10Pa2uPMTJv\nr6U/3Y17a5prq5Zr4++CnSUYarG51YuIf355dKs+7Lpzs782PIwCmLpzAHKWzix6\npOaTQ+WZ0+vUMTxyqgqWbsBgSCyP7pVBiyqnmLC/L4az9XnscrbAX4pNaoJxsuQe\nmzBo6yofjQaAzCX69DuqxFkVTRQnVy7LCFkVaZtjNAftnAHJjVgQw7lIhdGZp9q9\nIafRt2gteihYfpn+EAQ/t/E4MnhrYs4CPLfS7BaYXBycEKC5Muj1l4GijNNQ0Efo\nxG8LSZz7SNgUvfVwiNTaqfLP3AtEAWiqxyMyh3VO+1HpCjT7uNBFtmF3AgMBAAGj\nZjBkMA4GA1UdDwEB/wQEAwIBBjASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQW\nBBQtinkdrj+0B2+qdXngV2tgHnPIujAfBgNVHSMEGDAWgBRp0xqULkNh/w2ZVzEI\no2RIY7O03TANBgkqhkiG9w0BAQsFAAOCAQEAtJdqbCxDeMc8VN1/RzCabw9BIL/z\n73Auh8eFTww/sup26yn8NWUkfbckeDYr1BrXa+rPyLfHpg06kwR8rBKyrs5mHwJx\nbvOzXD/5WTdgreB+2Fb7mXNvWhenYuji1MF+q1R2DXV3I05zWHteKX6Dajmx+Uuq\nYq78oaCBSV48hMxWlp8fm40ANCL1+gzQ122xweMFN09FmNYFhwuW+Ao+Vv90ZfQG\nPYwTvN4n/gegw2TYcifGZC2PNX74q3DH03DXe5fvNgRW5plgz/7f+9mS+YHd5qa9\ntYTPUvoRbi169ou6jicsMKUKPORHWhiTpSCWR1FMMIbsAcsyrvtIsuaGCQ==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID/jCCAuagAwIBAgIQdOCSuA9psBpQd8EI368/0DANBgkqhkiG9w0BAQsFADCB\nlzELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdB\nbWF6b24gUkRTIHNhLWVhc3QtMSBSb290IENBIFJTQTIwNDggRzExEDAOBgNVBAcM\nB1NlYXR0bGUwIBcNMjEwNTE5MTgwNjI2WhgPMjA2MTA1MTkxOTA2MjZaMIGXMQsw\nCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjET\nMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpv\nbiBSRFMgc2EtZWFzdC0xIFJvb3QgQ0EgUlNBMjA0OCBHMTEQMA4GA1UEBwwHU2Vh\ndHRsZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN6ftL6w8v3dB2yW\nLjCxSP1D7ZsOTeLZOSCz1Zv0Gkd0XLhil5MdHOHBvwH/DrXqFU2oGzCRuAy+aZis\nDardJU6ChyIQIciXCO37f0K23edhtpXuruTLLwUwzeEPdcnLPCX+sWEn9Y5FPnVm\npCd6J8edH2IfSGoa9LdErkpuESXdidLym/w0tWG/O2By4TabkNSmpdrCL00cqI+c\nprA8Bx1jX8/9sY0gpAovtuFaRN+Ivg3PAnWuhqiSYyQ5nC2qDparOWuDiOhpY56E\nEgmTvjwqMMjNtExfYx6Rv2Ndu50TriiNKEZBzEtkekwXInTupmYTvc7U83P/959V\nUiQ+WSMCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU4uYHdH0+\nbUeh81Eq2l5/RJbW+vswDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4IB\nAQBhxcExJ+w74bvDknrPZDRgTeMLYgbVJjx2ExH7/Ac5FZZWcpUpFwWMIJJxtewI\nAnhryzM3tQYYd4CG9O+Iu0+h/VVfW7e4O3joWVkxNMb820kQSEwvZfA78aItGwOY\nWSaFNVRyloVicZRNJSyb1UL9EiJ9ldhxm4LTT0ax+4ontI7zTx6n6h8Sr6r/UOvX\nd9T5aUUENWeo6M9jGupHNn3BobtL7BZm2oS8wX8IVYj4tl0q5T89zDi2x0MxbsIV\n5ZjwqBQ5JWKv7ASGPb+z286RjPA9R2knF4lJVZrYuNV90rHvI/ECyt/JrDqeljGL\nBLl1W/UsvZo6ldLIpoMbbrb5\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEBDCCAuygAwIBAgIQUfVbqapkLYpUqcLajpTJWzANBgkqhkiG9w0BAQsFADCB\nmjELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTMwMQYDVQQDDCpB\nbWF6b24gUkRTIG1lLWNlbnRyYWwtMSBSb290IENBIFJTQTIwNDggRzExEDAOBgNV\nBAcMB1NlYXR0bGUwIBcNMjIwNTA2MjMyMDA5WhgPMjA2MjA1MDcwMDIwMDlaMIGa\nMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5j\nLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMzAxBgNVBAMMKkFt\nYXpvbiBSRFMgbWUtY2VudHJhbC0xIFJvb3QgQ0EgUlNBMjA0OCBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJIeovu3\newI9FVitXMQzvkh34aQ6WyI4NO3YepfJaePiv3cnyFGYHN2S1cR3UQcLWgypP5va\nj6bfroqwGbCbZZcb+6cyOB4ceKO9Ws1UkcaGHnNDcy5gXR7aCW2OGTUfinUuhd2d\n5bOGgV7JsPbpw0bwJ156+MwfOK40OLCWVbzy8B1kITs4RUPNa/ZJnvIbiMu9rdj4\n8y7GSFJLnKCjlOFUkNI5LcaYvI1+ybuNgphT3nuu5ZirvTswGakGUT/Q0J3dxP0J\npDfg5Sj/2G4gXiaM0LppVOoU5yEwVewhQ250l0eQAqSrwPqAkdTg9ng360zqCFPE\nJPPcgI1tdGUgneECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU\n/2AJVxWdZxc8eJgdpbwpW7b0f7IwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB\nCwUAA4IBAQBYm63jTu2qYKJ94gKnqc+oUgqmb1mTXmgmp/lXDbxonjszJDOXFbri\n3CCO7xB2sg9bd5YWY8sGKHaWmENj3FZpCmoefbUx++8D7Mny95Cz8R32rNcwsPTl\nebpd9A/Oaw5ug6M0x/cNr0qzF8Wk9Dx+nFEimp8RYQdKvLDfNFZHjPa1itnTiD8M\nTorAqj+VwnUGHOYBsT/0NY12tnwXdD+ATWfpEHdOXV+kTMqFFwDyhfgRVNpTc+os\nygr8SwhnSCpJPB/EYl2S7r+tgAbJOkuwUvGT4pTqrzDQEhwE7swgepnHC87zhf6l\nqN6mVpSnQKQLm6Ob5TeCEFgcyElsF5bH\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrjCCAjSgAwIBAgIRAOxu0I1QuMAhIeszB3fJIlkwCgYIKoZIzj0EAwMwgZYx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEvMC0GA1UEAwwmQW1h\nem9uIFJEUyB1cy13ZXN0LTIgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjEwNTI0MjIwNjU5WhgPMjEyMTA1MjQyMzA2NTlaMIGWMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExLzAtBgNVBAMMJkFtYXpvbiBS\nRFMgdXMtd2VzdC0yIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQHDAdTZWF0dGxl\nMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEz4bylRcGqqDWdP7gQIIoTHdBK6FNtKH1\n4SkEIXRXkYDmRvL9Bci1MuGrwuvrka5TDj4b7e+csY0llEzHpKfq6nJPFljoYYP9\nuqHFkv77nOpJJ633KOr8IxmeHW5RXgrZo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0G\nA1UdDgQWBBQQikVz8wmjd9eDFRXzBIU8OseiGzAOBgNVHQ8BAf8EBAMCAYYwCgYI\nKoZIzj0EAwMDaAAwZQIwf06Mcrpw1O0EBLBBrp84m37NYtOkE/0Z0O+C7D41wnXi\nEQdn6PXUVgdD23Gj82SrAjEAklhKs+liO1PtN15yeZR1Io98nFve+lLptaLakZcH\n+hfFuUtCqMbaI8CdvJlKnPqT\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGCTCCA/GgAwIBAgIRALyWMTyCebLZOGcZZQmkmfcwDQYJKoZIhvcNAQEMBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1ub3J0aGVhc3QtMyBSb290IENBIFJTQTQwOTYgRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjEwNTI0MjAyODAzWhgPMjEyMTA1MjQyMTI4MDNa\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgYXAtbm9ydGhlYXN0LTMgUm9vdCBDQSBSU0E0MDk2IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA\nwGFiyDyCrGqgdn4fXG12cxKAAfVvhMea1mw5h9CVRoavkPqhzQpAitSOuMB9DeiP\nwQyqcsiGl/cTEau4L+AUBG8b9v26RlY48exUYBXj8CieYntOT9iNw5WtdYJa3kF/\nJxgI+HDMzE9cmHDs5DOO3S0uwZVyra/xE1ymfSlpOeUIOTpHRJv97CBUEpaZMUW5\nSr6GruuOwFVpO5FX3A/jQlcS+UN4GjSRgDUJuqg6RRQldEZGCVCCmodbByvI2fGm\nreGpsPJD54KkmAX08nOR8e5hkGoHxq0m2DLD4SrOFmt65vG47qnuwplWJjtk9B3Z\n9wDoopwZLBOtlkPIkUllWm1P8EuHC1IKOA+wSP6XdT7cy8S77wgyHzR0ynxv7q/l\nvlZtH30wnNqFI0y9FeogD0TGMCHcnGqfBSicJXPy9T4fU6f0r1HwqKwPp2GArwe7\ndnqLTj2D7M9MyVtFjEs6gfGWXmu1y5uDrf+CszurE8Cycoma+OfjjuVQgWOCy7Nd\njJswPxAroTzVfpgoxXza4ShUY10woZu0/J+HmNmqK7lh4NS75q1tz75in8uTZDkV\nbe7GK+SEusTrRgcf3tlgPjSTWG3veNzFDF2Vn1GLJXmuZfhdlVQDBNXW4MNREExS\ndG57kJjICpT+r8X+si+5j51gRzkSnMYs7VHulpxfcwECAwEAAaNCMEAwDwYDVR0T\nAQH/BAUwAwEB/zAdBgNVHQ4EFgQU4JWOpDBmUBuWKvGPZelw87ezhL8wDgYDVR0P\nAQH/BAQDAgGGMA0GCSqGSIb3DQEBDAUAA4ICAQBRNLMql7itvXSEFQRAnyOjivHz\nl5IlWVQjAbOUr6ogZcwvK6YpxNAFW5zQr8F+fdkiypLz1kk5irx9TIpff0BWC9hQ\n/odMPO8Gxn8+COlSvc+dLsF2Dax3Hvz0zLeKMo+cYisJOzpdR/eKd0/AmFdkvQoM\nAOK9n0yYvVJU2IrSgeJBiiCarpKSeAktEVQ4rvyacQGr+QAPkkjRwm+5LHZKK43W\nnNnggRli9N/27qYtc5bgr3AaQEhEXMI4RxPRXCLsod0ehMGWyRRK728a+6PMMJAJ\nWHOU0x7LCEMPP/bvpLj3BdvSGqNor4ZtyXEbwREry1uzsgODeRRns5acPwTM6ff+\nCmxO2NZ0OktIUSYRmf6H/ZFlZrIhV8uWaIwEJDz71qvj7buhQ+RFDZ9CNL64C0X6\nmf0zJGEpddjANHaaVky+F4gYMtEy2K2Lcm4JGTdyIzUoIe+atzCnRp0QeIcuWtF+\ns8AjDYCVFNypcMmqbRmNpITSnOoCHSRuVkY3gutVoYyMLbp8Jm9SJnCIlEWTA6Rm\nwADOMGZJVn5/XRTRuetVOB3KlQDjs9OO01XN5NzGSZO2KT9ngAUfh9Eqhf1iRWSP\nnZlRbQ2NRCuY/oJ5N59mLGxnNJSE7giEKEBRhTQ/XEPIUYAUPD5fca0arKRJwbol\nl9Se1Hsq0ZU5f+OZKQ==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGATCCA+mgAwIBAgIRAK7vlRrGVEePJpW1VHMXdlIwDQYJKoZIhvcNAQEMBQAw\ngZgxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwo\nQW1hem9uIFJEUyBhZi1zb3V0aC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTAgFw0yMTA1MTkxOTI4NDNaGA8yMTIxMDUxOTIwMjg0M1owgZgx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwoQW1h\nem9uIFJEUyBhZi1zb3V0aC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UEBwwH\nU2VhdHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMZiHOQC6x4o\neC7vVOMCGiN5EuLqPYHdceFPm4h5k/ZejXTf7kryk6aoKZKsDIYihkaZwXVS7Y/y\n7Ig1F1ABi2jD+CYprj7WxXbhpysmN+CKG7YC3uE4jSvfvUnpzionkQbjJsRJcrPO\ncZJM4FVaVp3mlHHtvnM+K3T+ni4a38nAd8xrv1na4+B8ZzZwWZXarfg8lJoGskSn\nou+3rbGQ0r+XlUP03zWujHoNlVK85qUIQvDfTB7n3O4s1XNGvkfv3GNBhYRWJYlB\n4p8T+PFN8wG+UOByp1gV7BD64RnpuZ8V3dRAlO6YVAmINyG5UGrPzkIbLtErUNHO\n4iSp4UqYvztDqJWWHR/rA84ef+I9RVwwZ8FQbjKq96OTnPrsr63A5mXTC9dXKtbw\nXNJPQY//FEdyM3K8sqM0IdCzxCA1MXZ8+QapWVjwyTjUwFvL69HYky9H8eAER59K\n5I7u/CWWeCy2R1SYUBINc3xxLr0CGGukcWPEZW2aPo5ibW5kepU1P/pzdMTaTfao\nF42jSFXbc7gplLcSqUgWwzBnn35HLTbiZOFBPKf6vRRu8aRX9atgHw/EjCebi2xP\nxIYr5Ub8u0QVHIqcnF1/hVzO/Xz0chj3E6VF/yTXnsakm+W1aM2QkZbFGpga+LMy\nmFCtdPrELjea2CfxgibaJX1Q4rdEpc8DAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB\nAf8wHQYDVR0OBBYEFDSaycEyuspo/NOuzlzblui8KotFMA4GA1UdDwEB/wQEAwIB\nhjANBgkqhkiG9w0BAQwFAAOCAgEAbosemjeTRsL9o4v0KadBUNS3V7gdAH+X4vH2\nEe1Jc91VOGLdd/s1L9UX6bhe37b9WjUD69ur657wDW0RzxMYgQdZ27SUl0tEgGGp\ncCmVs1ky3zEN+Hwnhkz+OTmIg1ufq0W2hJgJiluAx2r1ib1GB+YI3Mo3rXSaBYUk\nbgQuujYPctf0PA153RkeICE5GI3OaJ7u6j0caYEixBS3PDHt2MJWexITvXGwHWwc\nCcrC05RIrTUNOJaetQw8smVKYOfRImEzLLPZ5kf/H3Cbj8BNAFNsa10wgvlPuGOW\nXLXqzNXzrG4V3sjQU5YtisDMagwYaN3a6bBf1wFwFIHQoAPIgt8q5zaQ9WI+SBns\nIl6rd4zfvjq/BPmt0uI7rVg/cgbaEg/JDL2neuM9CJAzmKxYxLQuHSX2i3Fy4Y1B\ncnxnRQETCRZNPGd00ADyxPKVoYBC45/t+yVusArFt+2SVLEGiFBr23eG2CEZu+HS\nnDEgIfQ4V3YOTUNa86wvbAss1gbbnT/v1XCnNGClEWCWNCSRjwV2ZmQ/IVTmNHPo\n7axTTBBJbKJbKzFndCnuxnDXyytdYRgFU7Ly3sa27WS2KFyFEDebLFRHQEfoYqCu\nIupSqBSbXsR3U10OTjc9z6EPo1nuV6bdz+gEDthmxKa1NI+Qb1kvyliXQHL2lfhr\n5zT5+Bs=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIF/zCCA+egAwIBAgIRAOLV6zZcL4IV2xmEneN1GwswDQYJKoZIhvcNAQEMBQAw\ngZcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEwMC4GA1UEAwwn\nQW1hem9uIFJEUyB1cy13ZXN0LTEgUm9vdCBDQSBSU0E0MDk2IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUxOTE5MDg1OFoYDzIxMjEwNTE5MjAwODU4WjCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIHVzLXdlc3QtMSBSb290IENBIFJTQTQwOTYgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC7koAKGXXlLixN\nfVjhuqvz0WxDeTQfhthPK60ekRpftkfE5QtnYGzeovaUAiS58MYVzqnnTACDwcJs\nIGTFE6Wd7sB6r8eI/3CwI1pyJfxepubiQNVAQG0zJETOVkoYKe/5KnteKtnEER3X\ntCBRdV/rfbxEDG9ZAsYfMl6zzhEWKF88G6xhs2+VZpDqwJNNALvQuzmTx8BNbl5W\nRUWGq9CQ9GK9GPF570YPCuURW7kl35skofudE9bhURNz51pNoNtk2Z3aEeRx3ouT\nifFJlzh+xGJRHqBG7nt5NhX8xbg+vw4xHCeq1aAe6aVFJ3Uf9E2HzLB4SfIT9bRp\nP7c9c0ySGt+3n+KLSHFf/iQ3E4nft75JdPjeSt0dnyChi1sEKDi0tnWGiXaIg+J+\nr1ZtcHiyYpCB7l29QYMAdD0TjfDwwPayLmq//c20cPmnSzw271VwqjUT0jYdrNAm\ngV+JfW9t4ixtE3xF2jaUh/NzL3bAmN5v8+9k/aqPXlU1BgE3uPwMCjrfn7V0I7I1\nWLpHyd9jF3U/Ysci6H6i8YKgaPiOfySimQiDu1idmPld659qerutUSemQWmPD3bE\ndcjZolmzS9U0Ujq/jDF1YayN3G3xvry1qWkTci0qMRMu2dZu30Herugh9vsdTYkf\n00EqngPbqtIVLDrDjEQLqPcb8QvWFQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/\nMB0GA1UdDgQWBBQBqg8Za/L0YMHURGExHfvPyfLbOTAOBgNVHQ8BAf8EBAMCAYYw\nDQYJKoZIhvcNAQEMBQADggIBACAGPMa1QL7P/FIO7jEtMelJ0hQlQepKnGtbKz4r\nXq1bUX1jnLvnAieR9KZmeQVuKi3g3CDU6b0mDgygS+FL1KDDcGRCSPh238Ou8KcG\nHIxtt3CMwMHMa9gmdcMlR5fJF9vhR0C56KM2zvyelUY51B/HJqHwGvWuexryXUKa\nwq1/iK2/d9mNeOcjDvEIj0RCMI8dFQCJv3PRCTC36XS36Tzr6F47TcTw1c3mgKcs\nxpcwt7ezrXMUunzHS4qWAA5OGdzhYlcv+P5GW7iAA7TDNrBF+3W4a/6s9v2nQAnX\nUvXd9ul0ob71377UhZbJ6SOMY56+I9cJOOfF5QvaL83Sz29Ij1EKYw/s8TYdVqAq\n+dCyQZBkMSnDFLVe3J1KH2SUSfm3O98jdPORQrUlORQVYCHPls19l2F6lCmU7ICK\nhRt8EVSpXm4sAIA7zcnR2nU00UH8YmMQLnx5ok9YGhuh3Ehk6QlTQLJux6LYLskd\n9YHOLGW/t6knVtV78DgPqDeEx/Wu/5A8R0q7HunpWxr8LCPBK6hksZnOoUhhb8IP\nvl46Ve5Tv/FlkyYr1RTVjETmg7lb16a8J0At14iLtpZWmwmuv4agss/1iBVMXfFk\n+ZGtx5vytWU5XJmsfKA51KLsMQnhrLxb3X3zC+JRCyJoyc8++F3YEcRi2pkRYE3q\nHing\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECTCCAvGgAwIBAgIRANxgyBbnxgTEOpDul2ZnC0UwDQYJKoZIhvcNAQELBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1zb3V0aGVhc3QtMyBSb290IENBIFJTQTIwNDggRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjEwNjEwMTgxOTA3WhgPMjA2MTA2MTAxOTE5MDda\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgYXAtc291dGhlYXN0LTMgUm9vdCBDQSBSU0EyMDQ4IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nxnwSDAChrMkfk5TA4Dk8hKzStDlSlONzmd3fTG0Wqr5+x3EmFT6Ksiu/WIwEl9J2\nK98UI7vYyuZfCxUKb1iMPeBdVGqk0zb92GpURd+Iz/+K1ps9ZLeGBkzR8mBmAi1S\nOfpwKiTBzIv6E8twhEn4IUpHsdcuX/2Y78uESpJyM8O5CpkG0JaV9FNEbDkJeBUQ\nAo2qqNcH4R0Qcr5pyeqA9Zto1RswgL06BQMI9dTpfwSP5VvkvcNUaLl7Zv5WzLQE\nJzORWePvdPzzvWEkY/3FPjxBypuYwssKaERW0fkPDmPtykktP9W/oJolKUFI6pXp\ny+Y6p6/AVdnQD2zZjW5FhQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud\nDgQWBBT+jEKs96LC+/X4BZkUYUkzPfXdqTAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZI\nhvcNAQELBQADggEBAIGQqgqcQ6XSGkmNebzR6DhadTbfDmbYeN5N0Vuzv+Tdmufb\ntMGjdjnYMg4B+IVnTKQb+Ox3pL9gbX6KglGK8HupobmIRtwKVth+gYYz3m0SL/Nk\nhaWPYzOm0x3tJm8jSdufJcEob4/ATce9JwseLl76pSWdl5A4lLjnhPPKudUDfH+1\nBLNUi3lxpp6GkC8aWUPtupnhZuXddolTLOuA3GwTZySI44NfaFRm+o83N1jp+EwD\n6e94M4cTRzjUv6J3MZmSbdtQP/Tk1uz2K4bQZGP0PZC3bVpqiesdE/xr+wbu8uHr\ncM1JXH0AmXf1yIkTgyWzmvt0k1/vgcw5ixAqvvE=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEATCCAumgAwIBAgIRAMhw98EQU18mIji+unM2YH8wDQYJKoZIhvcNAQELBQAw\ngZgxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwo\nQW1hem9uIFJEUyBhcC1zb3V0aC0yIFJvb3QgQ0EgUlNBMjA0OCBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTAgFw0yMjA2MDYyMTQyMjJaGA8yMDYyMDYwNjIyNDIyMlowgZgx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwoQW1h\nem9uIFJEUyBhcC1zb3V0aC0yIFJvb3QgQ0EgUlNBMjA0OCBHMTEQMA4GA1UEBwwH\nU2VhdHRsZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIeeRoLfTm+7\nvqm7ZlFSx+1/CGYHyYrOOryM4/Z3dqYVHFMgWTR7V3ziO8RZ6yUanrRcWVX3PZbF\nAfX0KFE8OgLsXEZIX8odSrq86+/Th5eZOchB2fDBsUB7GuN2rvFBbM8lTI9ivVOU\nlbuTnYyb55nOXN7TpmH2bK+z5c1y9RVC5iQsNAl6IJNvSN8VCqXh31eK5MlKB4DT\n+Y3OivCrSGsjM+UR59uZmwuFB1h+icE+U0p9Ct3Mjq3MzSX5tQb6ElTNGlfmyGpW\nKh7GQ5XU1KaKNZXoJ37H53woNSlq56bpVrKI4uv7ATpdpFubOnSLtpsKlpLdR3sy\nWs245200pC8CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUp0ki\n6+eWvsnBjQhMxwMW5pwn7DgwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUA\nA4IBAQB2V8lv0aqbYQpj/bmVv/83QfE4vOxKCJAHv7DQ35cJsTyBdF+8pBczzi3t\n3VNL5IUgW6WkyuUOWnE0eqAFOUVj0yTS1jSAtfl3vOOzGJZmWBbqm9BKEdu1D8O6\nsB8bnomwiab2tNDHPmUslpdDqdabbkWwNWzLJ97oGFZ7KNODMEPXWKWNxg33iHfS\n/nlmnrTVI3XgaNK9qLZiUrxu9Yz5gxi/1K+sG9/Dajd32ZxjRwDipOLiZbiXQrsd\nqzIMY4GcWf3g1gHL5mCTfk7dG22h/rhPyGV0svaDnsb+hOt6sv1McMN6Y3Ou0mtM\n/UaAXojREmJmTSCNvs2aBny3/2sy\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrjCCAjSgAwIBAgIRAMnRxsKLYscJV8Qv5pWbL7swCgYIKoZIzj0EAwMwgZYx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEvMC0GA1UEAwwmQW1h\nem9uIFJEUyBzYS1lYXN0LTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjEwNTE5MTgxNjAxWhgPMjEyMTA1MTkxOTE2MDFaMIGWMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExLzAtBgNVBAMMJkFtYXpvbiBS\nRFMgc2EtZWFzdC0xIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQHDAdTZWF0dGxl\nMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEjFOCZgTNVKxLKhUxffiDEvTLFhrmIqdO\ndKqVdgDoELEzIHWDdC+19aDPitbCYtBVHl65ITu/9pn6mMUl5hhUNtfZuc6A+Iw1\nsBe0v0qI3y9Q9HdQYrGgeHDh8M5P7E2ho0IwQDAPBgNVHRMBAf8EBTADAQH/MB0G\nA1UdDgQWBBS5L7/8M0TzoBZk39Ps7BkfTB4yJTAOBgNVHQ8BAf8EBAMCAYYwCgYI\nKoZIzj0EAwMDaAAwZQIwI43O0NtWKTgnVv9z0LO5UMZYgSve7GvGTwqktZYCMObE\nrUI4QerXM9D6JwLy09mqAjEAypfkdLyVWtaElVDUyHFkihAS1I1oUxaaDrynLNQK\nOu/Ay+ns+J+GyvyDUjBpVVW1\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIF/jCCA+agAwIBAgIQR71Z8lTO5Sj+as2jB7IWXzANBgkqhkiG9w0BAQwFADCB\nlzELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdB\nbWF6b24gUkRTIHVzLXdlc3QtMiBSb290IENBIFJTQTQwOTYgRzExEDAOBgNVBAcM\nB1NlYXR0bGUwIBcNMjEwNTI0MjIwMzIwWhgPMjEyMTA1MjQyMzAzMjBaMIGXMQsw\nCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjET\nMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpv\nbiBSRFMgdXMtd2VzdC0yIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UEBwwHU2Vh\ndHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAM977bHIs1WJijrS\nXQMfUOhmlJjr2v0K0UjPl52sE1TJ76H8umo1yR4T7Whkd9IwBHNGKXCJtJmMr9zp\nfB38eLTu+5ydUAXdFuZpRMKBWwPVe37AdJRKqn5beS8HQjd3JXAgGKUNNuE92iqF\nqi2fIqFMpnJXWo0FIW6s2Dl2zkORd7tH0DygcRi7lgVxCsw1BJQhFJon3y+IV8/F\nbnbUXSNSDUnDW2EhvWSD8L+t4eiXYsozhDAzhBvojpxhPH9OB7vqFYw5qxFx+G0t\nlSLX5iWi1jzzc3XyGnB6WInZDVbvnvJ4BGZ+dTRpOCvsoMIn9bz4EQTvu243c7aU\nHbS/kvnCASNt+zk7C6lbmaq0AGNztwNj85Opn2enFciWZVnnJ/4OeefUWQxD0EPp\nSjEd9Cn2IHzkBZrHCg+lWZJQBKbUVS0lLIMSsLQQ6WvR38jY7D2nxM1A93xWxwpt\nZtQnYRCVXH6zt2OwDAFePInWwxUjR5t/wu3XxPgpSfrmTi3WYtr1wFypAJ811e/P\nyBtswWUQ6BNJQvy+KnOEeGfOwmtdDFYR+GOCfvCihzrKJrxOtHIieehR5Iw3cbXG\nsm4pDzfMUVvDDz6C2M6PRlJhhClbatHCjik9hxFYEsAlqtVVK9pxaz9i8hOqSFQq\nkJSQsgWw+oM/B2CyjcSqkSQEu8RLAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8w\nHQYDVR0OBBYEFPmrdxpRRgu3IcaB5BTqlprcKdTsMA4GA1UdDwEB/wQEAwIBhjAN\nBgkqhkiG9w0BAQwFAAOCAgEAVdlxWjPvVKky3kn8ZizeM4D+EsLw9dWLau2UD/ls\nzwDCFoT6euagVeCknrn+YEl7g20CRYT9iaonGoMUPuMR/cdtPL1W/Rf40PSrGf9q\nQuxavWiHLEXOQTCtCaVZMokkvjuuLNDXyZnstgECuiZECTwhexUF4oiuhyGk9o01\nQMaiz4HX4lgk0ozALUvEzaNd9gWEwD2qe+rq9cQMTVq3IArUkvTIftZUaVUMzr0O\ned1+zAsNa9nJhURJ/6anJPJjbQgb5qA1asFcp9UaMT1ku36U3gnR1T/BdgG2jX3X\nUm0UcaGNVPrH1ukInWW743pxWQb7/2sumEEMVh+jWbB18SAyLI4WIh4lkurdifzS\nIuTFp8TEx+MouISFhz/vJDWZ84tqoLVjkEcP6oDypq9lFoEzHDJv3V1CYcIgOusT\nk1jm9P7BXdTG7TYzUaTb9USb6bkqkD9EwJAOSs7DI94aE6rsSws2yAHavjAMfuMZ\nsDAZvkqS2Qg2Z2+CI6wUZn7mzkJXbZoqRjDvChDXEB1mIhzVXhiNW/CR5WKVDvlj\n9v1sdGByh2pbxcLQtVaq/5coM4ANgphoNz3pOYUPWHS+JUrIivBZ+JobjXcxr3SN\n9iDzcu5/FVVNbq7+KN/nvPMngT+gduEN5m+EBjm8GukJymFG0m6BENRA0QSDqZ7k\nzDY=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECTCCAvGgAwIBAgIRAK5EYG3iHserxMqgg+0EFjgwDQYJKoZIhvcNAQELBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1ub3J0aGVhc3QtMyBSb290IENBIFJTQTIwNDggRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjEwNTI0MjAyMzE2WhgPMjA2MTA1MjQyMTIzMTZa\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgYXAtbm9ydGhlYXN0LTMgUm9vdCBDQSBSU0EyMDQ4IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\ns1L6TtB84LGraLHVC+rGPhLBW2P0oN/91Rq3AnYwqDOuTom7agANwEjvLq7dSRG/\nsIfZsSV/ABTgArZ5sCmLjHFZAo8Kd45yA9byx20RcYtAG8IZl+q1Cri+s0XefzyO\nU6mlfXZkVe6lzjlfXBkrlE/+5ifVbJK4dqOS1t9cWIpgKqv5fbE6Qbq4LVT+5/WM\nVd2BOljuBMGMzdZubqFKFq4mzTuIYfnBm7SmHlZfTdfBYPP1ScNuhpjuzw4n3NCR\nEdU6dQv04Q6th4r7eiOCwbWI9LkmVbvBe3ylhH63lApC7MiiPYLlB13xBubVHVhV\nq1NHoNTi+zA3MN9HWicRxQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud\nDgQWBBSuxoqm0/wjNiZLvqv+JlQwsDvTPDAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZI\nhvcNAQELBQADggEBAFfTK/j5kv90uIbM8VaFdVbr/6weKTwehafT0pAk1bfLVX+7\nuf8oHgYiyKTTl0DFQicXejghXTeyzwoEkWSR8c6XkhD5vYG3oESqmt/RGvvoxz11\nrHHy7yHYu7RIUc3VQG60c4qxXv/1mWySGwVwJrnuyNT9KZXPevu3jVaWOVHEILaK\nHvzQ2YEcWBPmde/zEseO2QeeGF8FL45Q1d66wqIP4nNUd2pCjeTS5SpB0MMx7yi9\nki1OH1pv8tOuIdimtZ7wkdB8+JSZoaJ81b8sRrydRwJyvB88rftuI3YB4WwGuONT\nZezUPsmaoK69B0RChB0ofDpAaviF9V3xOWvVZfo=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGDzCCA/egAwIBAgIRAI0sMNG2XhaBMRN3zD7ZyoEwDQYJKoZIhvcNAQEMBQAw\ngZ8xCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE4MDYGA1UEAwwv\nQW1hem9uIFJEUyBQcmV2aWV3IHVzLWVhc3QtMiBSb290IENBIFJTQTQwOTYgRzEx\nEDAOBgNVBAcMB1NlYXR0bGUwIBcNMjEwNTE4MjA1NzUwWhgPMjEyMTA1MTgyMTU3\nNTBaMIGfMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNl\ncywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExODA2BgNV\nBAMML0FtYXpvbiBSRFMgUHJldmlldyB1cy1lYXN0LTIgUm9vdCBDQSBSU0E0MDk2\nIEcxMRAwDgYDVQQHDAdTZWF0dGxlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC\nCgKCAgEAh/otSiCu4Uw3hu7OJm0PKgLsLRqBmUS6jihcrkxfN2SHmp2zuRflkweU\nBhMkebzL+xnNvC8okzbgPWtUxSmDnIRhE8J7bvSKFlqs/tmEdiI/LMqe/YIKcdsI\n20UYmvyLIjtDaJIh598SHHlF9P8DB5jD8snJfhxWY+9AZRN+YVTltgQAAgayxkWp\nM1BbvxpOnz4CC00rE0eqkguXIUSuobb1vKqdKIenlYBNxm2AmtgvQfpsBIQ0SB+8\n8Zip8Ef5rtjSw5J3s2Rq0aYvZPfCVIsKYepIboVwXtD7E9J31UkB5onLBQlaHaA6\nXlH4srsMmrew5d2XejQGy/lGZ1nVWNsKO0x/Az2QzY5Kjd6AlXZ8kq6H68hscA5i\nOMbNlXzeEQsZH0YkId3+UsEns35AAjZv4qfFoLOu8vDotWhgVNT5DfdbIWZW3ZL8\nqbmra3JnCHuaTwXMnc25QeKgVq7/rG00YB69tCIDwcf1P+tFJWxvaGtV0g2NthtB\na+Xo09eC0L53gfZZ3hZw1pa3SIF5dIZ6RFRUQ+lFOux3Q/I3u+rYstYw7Zxc4Zeo\nY8JiedpQXEAnbw2ECHix/L6mVWgiWCiDzBnNLLdbmXjJRnafNSndSfFtHCnY1SiP\naCrNpzwZIJejoV1zDlWAMO+gyS28EqzuIq3WJK/TFE7acHkdKIcCAwEAAaNCMEAw\nDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUrmV1YASnuudfmqAZP4sKGTvScaEw\nDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBDAUAA4ICAQBGpEKeQoPvE85tN/25\nqHFkys9oHDl93DZ62EnOqAUKLd6v0JpCyEiop4nlrJe+4KrBYVBPyKOJDcIqE2Sp\n3cvgJXLhY4i46VM3Qxe8yuYF1ElqBpg3jJVj/sCQnYz9dwoAMWIJFaDWOvmU2E7M\nMRaKx+sPXFkIjiDA6Bv0m+VHef7aedSYIY7IDltEQHuXoqNacGrYo3I50R+fZs88\n/mB3e/V7967e99D6565yf9Lcjw4oQf2Hy7kl/6P9AuMz0LODnGITwh2TKk/Zo3RU\nVgq25RDrT4xJK6nFHyjUF6+4cOBxVpimmFw/VP1zaXT8DN5r4HyJ9p4YuSK8ha5N\n2pJc/exvU8Nv2+vS/efcDZWyuEdZ7eh1IJWQZlOZKIAONfRDRTpeQHJ3zzv3QVYy\nt78pYp/eWBHyVIfEE8p2lFKD4279WYe+Uvdb8c4Jm4TJwqkSJV8ifID7Ub80Lsir\nlPAU3OCVTBeVRFPXT2zpC4PB4W6KBSuj6OOcEu2y/HgWcoi7Cnjvp0vFTUhDFdus\nWz3ucmJjfVsrkEO6avDKu4SwdbVHsk30TVAwPd6srIdi9U6MOeOQSOSE4EsrrS7l\nSVmu2QIDUVFpm8QAHYplkyWIyGkupyl3ashH9mokQhixIU/Pzir0byePxHLHrwLu\n1axqeKpI0F5SBUPsaVNYY2uNFg==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECDCCAvCgAwIBAgIQCREfzzVyDTMcNME+gWnTCTANBgkqhkiG9w0BAQsFADCB\nnDELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTUwMwYDVQQDDCxB\nbWF6b24gUkRTIGFwLXNvdXRoZWFzdC0yIFJvb3QgQ0EgUlNBMjA0OCBHMTEQMA4G\nA1UEBwwHU2VhdHRsZTAgFw0yMTA1MjQyMDQyMzNaGA8yMDYxMDUyNDIxNDIzM1ow\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1zb3V0aGVhc3QtMiBSb290IENBIFJTQTIwNDggRzExEDAO\nBgNVBAcMB1NlYXR0bGUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDL\n1MT6br3L/4Pq87DPXtcjlXN3cnbNk2YqRAZHJayStTz8VtsFcGPJOpk14geRVeVk\ne9uKFHRbcyr/RM4owrJTj5X4qcEuATYZbo6ou/rW2kYzuWFZpFp7lqm0vasV4Z9F\nfChlhwkNks0UbM3G+psCSMNSoF19ERunj7w2c4E62LwujkeYLvKGNepjnaH10TJL\n2krpERd+ZQ4jIpObtRcMH++bTrvklc+ei8W9lqrVOJL+89v2piN3Ecdd389uphst\nqQdb1BBVXbhUrtuGHgVf7zKqN1SkCoktoWxVuOprVWhSvr7akaWeq0UmlvbEsujU\nvADqxGMcJFyCzxx3CkJjAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O\nBBYEFFk8UJmlhoxFT3PP12PvhvazHjT4MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG\n9w0BAQsFAAOCAQEAfFtr2lGoWVXmWAsIo2NYre7kzL8Xb9Tx7desKxCCz5HOOvIr\n8JMB1YK6A7IOvQsLJQ/f1UnKRh3X3mJZjKIywfrMSh0FiDf+rjcEzXxw2dGtUem4\nA+WMvIA3jwxnJ90OQj5rQ8bg3iPtE6eojzo9vWQGw/Vu48Dtw1DJo9210Lq/6hze\nhPhNkFh8fMXNT7Q1Wz/TJqJElyAQGNOXhyGpHKeb0jHMMhsy5UNoW5hLeMS5ffao\nTBFWEJ1gVfxIU9QRxSh+62m46JIg+dwDlWv8Aww14KgepspRbMqDuaM2cinoejv6\nt3dyOyHHrsOyv3ffZUKtQhQbQr+sUcL89lARsg==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID/zCCAuegAwIBAgIRAIJLTMpzGNxqHZ4t+c1MlCIwDQYJKoZIhvcNAQELBQAw\ngZcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEwMC4GA1UEAwwn\nQW1hem9uIFJEUyBhcC1lYXN0LTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyNTIxMzAzM1oYDzIwNjEwNTI1MjIzMDMzWjCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIGFwLWVhc3QtMSBSb290IENBIFJTQTIwNDggRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDtdHut0ZhJ9Nn2\nMpVafFcwHdoEzx06okmmhjJsNy4l9QYVeh0UUoek0SufRNMRF4d5ibzpgZol0Y92\n/qKWNe0jNxhEj6sXyHsHPeYtNBPuDMzThfbvsLK8z7pBP7vVyGPGuppqW/6m4ZBB\nlcc9fsf7xpZ689iSgoyjiT6J5wlVgmCx8hFYc/uvcRtfd8jAHvheug7QJ3zZmIye\nV4htOW+fRVWnBjf40Q+7uTv790UAqs0Zboj4Yil+hER0ibG62y1g71XcCyvcVpto\n2/XW7Y9NCgMNqQ7fGN3wR1gjtSYPd7DO32LTzYhutyvfbpAZjsAHnoObmoljcgXI\nQjfBcCFpAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFJI3aWLg\nCS5xqU5WYVaeT5s8lpO0MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOC\nAQEAUwATpJOcGVOs3hZAgJwznWOoTzOVJKfrqBum7lvkVH1vBwxBl9CahaKj3ZOt\nYYp2qJzhDUWludL164DL4ZjS6eRedLRviyy5cRy0581l1MxPWTThs27z+lCC14RL\nPJZNVYYdl7Jy9Q5NsQ0RBINUKYlRY6OqGDySWyuMPgno2GPbE8aynMdKP+f6G/uE\nYHOf08gFDqTsbyfa70ztgVEJaRooVf5JJq4UQtpDvVswW2reT96qi6tXPKHN5qp3\n3wI0I1Mp4ePmiBKku2dwYzPfrJK/pQlvu0Gu5lKOQ65QdotwLAAoaFqrf9za1yYs\nINUkHLWIxDds+4OHNYcerGp5Dw==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGCTCCA/GgAwIBAgIRAIO6ldra1KZvNWJ0TA1ihXEwDQYJKoZIhvcNAQEMBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1zb3V0aGVhc3QtMSBSb290IENBIFJTQTQwOTYgRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjEwNTIxMjE0NTA1WhgPMjEyMTA1MjEyMjQ1MDVa\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgYXAtc291dGhlYXN0LTEgUm9vdCBDQSBSU0E0MDk2IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA\nsDN52Si9pFSyZ1ruh3xAN0nVqEs960o2IK5CPu/ZfshFmzAwnx/MM8EHt/jMeZtj\nSM58LADAsNDL01ELpFZATjgZQ6xNAyXRXE7RiTRUvNkK7O3o2qAGbLnJq/UqF7Sw\nLRnB8V6hYOv+2EjVnohtGCn9SUFGZtYDjWXsLd4ML4Zpxv0a5LK7oEC7AHzbUR7R\njsjkrXqSv7GE7bvhSOhMkmgxgj1F3J0b0jdQdtyyj109aO0ATUmIvf+Bzadg5AI2\nA9UA+TUcGeebhpHu8AP1Hf56XIlzPpaQv3ZJ4vzoLaVNUC7XKzAl1dlvCl7Klg/C\n84qmbD/tjZ6GHtzpLKgg7kQEV7mRoXq8X4wDX2AFPPQl2fv+Kbe+JODqm5ZjGegm\nuskABBi8IFv1hYx9jEulZPxC6uD/09W2+niFm3pirnlWS83BwVDTUBzF+CooUIMT\njhWkIIZGDDgMJTzouBHfoSJtS1KpUZi99m2WyVs21MNKHeWAbs+zmI6TO5iiMC+T\nuB8spaOiHFO1573Fmeer4sy3YA6qVoqVl6jjTQqOdy3frAMbCkwH22/crV8YA+08\nhLeHXrMK+6XUvU+EtHAM3VzcrLbuYJUI2XJbzTj5g0Eb8I8JWsHvWHR5K7Z7gceR\n78AzxQmoGEfV6KABNWKsgoCQnfb1BidDJIe3BsI0A6UCAwEAAaNCMEAwDwYDVR0T\nAQH/BAUwAwEB/zAdBgNVHQ4EFgQUABp0MlB14MSHgAcuNSOhs3MOlUcwDgYDVR0P\nAQH/BAQDAgGGMA0GCSqGSIb3DQEBDAUAA4ICAQCv4CIOBSQi/QR9NxdRgVAG/pAh\ntFJhV7OWb/wqwsNKFDtg6tTxwaahdCfWpGWId15OUe7G9LoPiKiwM9C92n0ZeHRz\n4ewbrQVo7Eu1JI1wf0rnZJISL72hVYKmlvaWaacHhWxvsbKLrB7vt6Cknxa+S993\nKf8i2Psw8j5886gaxhiUtzMTBwoDWak8ZaK7m3Y6C6hXQk08+3pnIornVSFJ9dlS\nPAqt5UPwWmrEfF+0uIDORlT+cvrAwgSp7nUF1q8iasledycZ/BxFgQqzNwnkBDwQ\nZ/aM52ArGsTzfMhkZRz9HIEhz1/0mJw8gZtDVQroD8778h8zsx2SrIz7eWQ6uWsD\nQEeSWXpcheiUtEfzkDImjr2DLbwbA23c9LoexUD10nwohhoiQQg77LmvBVxeu7WU\nE63JqaYUlOLOzEmNJp85zekIgR8UTkO7Gc+5BD7P4noYscI7pPOL5rP7YLg15ZFi\nega+G53NTckRXz4metsd8XFWloDjZJJq4FfD60VuxgXzoMNT9wpFTNSH42PR2s9L\nI1vcl3w8yNccs9se2utM2nLsItZ3J0m/+QSRiw9hbrTYTcM9sXki0DtH2kyIOwYf\nlOrGJDiYOIrXSQK36H0gQ+8omlrUTvUj4msvkXuQjlfgx6sgp2duOAfnGxE7uHnc\nUhnJzzoe6M+LfGHkVQ==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICuDCCAj2gAwIBAgIQSAG6j2WHtWUUuLGJTPb1nTAKBggqhkjOPQQDAzCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIGFwLW5vcnRoZWFzdC0yIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyMDE2MzgyNloYDzIxMjEwNTIwMTczODI2WjCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIGFwLW5vcnRoZWFzdC0yIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE2eqwU4FOzW8RV1W381Bd\nolhDOrqoMqzWli21oDUt7y8OnXM/lmAuOS6sr8Nt61BLVbONdbr+jgCYw75KabrK\nZGg3siqvMOgabIKkKuXO14wtrGyGDt7dnKXg5ERGYOZlo0IwQDAPBgNVHRMBAf8E\nBTADAQH/MB0GA1UdDgQWBBS1Acp2WYxOcblv5ikZ3ZIbRCCW+zAOBgNVHQ8BAf8E\nBAMCAYYwCgYIKoZIzj0EAwMDaQAwZgIxAJL84J08PBprxmsAKPTotBuVI3MyW1r8\nxQ0i8lgCQUf8GcmYjQ0jI4oZyv+TuYJAcwIxAP9Xpzq0Docxb+4N1qVhpiOfWt1O\nFnemFiy9m1l+wv6p3riQMPV7mBVpklmijkIv3Q==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECTCCAvGgAwIBAgIRALZLcqCVIJ25maDPE3sbPCIwDQYJKoZIhvcNAQELBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1zb3V0aGVhc3QtMSBSb290IENBIFJTQTIwNDggRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjEwNTIxMjEzOTM5WhgPMjA2MTA1MjEyMjM5Mzla\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgYXAtc291dGhlYXN0LTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nypKc+6FfGx6Gl6fQ78WYS29QoKgQiur58oxR3zltWeg5fqh9Z85K5S3UbRSTqWWu\nXcfnkz0/FS07qHX+nWAGU27JiQb4YYqhjZNOAq8q0+ptFHJ6V7lyOqXBq5xOzO8f\n+0DlbJSsy7GEtJp7d7QCM3M5KVY9dENVZUKeJwa8PC5StvwPx4jcLeZRJC2rAVDG\nSW7NAInbATvr9ssSh03JqjXb+HDyywiqoQ7EVLtmtXWimX+0b3/2vhqcH5jgcKC9\nIGFydrjPbv4kwMrKnm6XlPZ9L0/3FMzanXPGd64LQVy51SI4d5Xymn0Mw2kMX8s6\nNf05OsWcDzJ1n6/Q1qHSxQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud\nDgQWBBRmaIc8eNwGP7i6P7AJrNQuK6OpFzAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZI\nhvcNAQELBQADggEBAIBeHfGwz3S2zwIUIpqEEI5/sMySDeS+3nJR+woWAHeO0C8i\nBJdDh+kzzkP0JkWpr/4NWz84/IdYo1lqASd1Kopz9aT1+iROXaWr43CtbzjXb7/X\nZv7eZZFC8/lS5SROq42pPWl4ekbR0w8XGQElmHYcWS41LBfKeHCUwv83ATF0XQ6I\n4t+9YSqZHzj4vvedrvcRInzmwWJaal9s7Z6GuwTGmnMsN3LkhZ+/GD6oW3pU/Pyh\nEtWqffjsLhfcdCs3gG8x9BbkcJPH5aPAVkPn4wc8wuXg6xxb9YGsQuY930GWTYRf\nschbgjsuqznW4HHakq4WNhs1UdTSTKkRdZz7FUQ=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEDzCCAvegAwIBAgIRAM2zAbhyckaqRim63b+Tib8wDQYJKoZIhvcNAQELBQAw\ngZ8xCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE4MDYGA1UEAwwv\nQW1hem9uIFJEUyBQcmV2aWV3IHVzLWVhc3QtMiBSb290IENBIFJTQTIwNDggRzEx\nEDAOBgNVBAcMB1NlYXR0bGUwIBcNMjEwNTE4MjA0OTQ1WhgPMjA2MTA1MTgyMTQ5\nNDVaMIGfMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNl\ncywgSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExODA2BgNV\nBAMML0FtYXpvbiBSRFMgUHJldmlldyB1cy1lYXN0LTIgUm9vdCBDQSBSU0EyMDQ4\nIEcxMRAwDgYDVQQHDAdTZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEA1ybjQMH1MkbvfKsWJaCTXeCSN1SG5UYid+Twe+TjuSqaXWonyp4WRR5z\ntlkqq+L2MWUeQQAX3S17ivo/t84mpZ3Rla0cx39SJtP3BiA2BwfUKRjhPwOjmk7j\n3zrcJjV5k1vSeLNOfFFSlwyDiVyLAE61lO6onBx+cRjelu0egMGq6WyFVidTdCmT\nQ9Zw3W6LTrnPvPmEyjHy2yCHzH3E50KSd/5k4MliV4QTujnxYexI2eR8F8YQC4m3\nDYjXt/MicbqA366SOoJA50JbgpuVv62+LSBu56FpzY12wubmDZsdn4lsfYKiWxUy\nuc83a2fRXsJZ1d3whxrl20VFtLFHFQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/\nMB0GA1UdDgQWBBRC0ytKmDYbfz0Bz0Psd4lRQV3aNTAOBgNVHQ8BAf8EBAMCAYYw\nDQYJKoZIhvcNAQELBQADggEBAGv8qZu4uaeoF6zsbumauz6ea6tdcWt+hGFuwGrb\ntRbI85ucAmVSX06x59DJClsb4MPhL1XmqO3RxVMIVVfRwRHWOsZQPnXm8OYQ2sny\nrYuFln1COOz1U/KflZjgJmxbn8x4lYiTPZRLarG0V/OsCmnLkQLPtEl/spMu8Un7\nr3K8SkbWN80gg17Q8EV5mnFwycUx9xsTAaFItuG0en9bGsMgMmy+ZsDmTRbL+lcX\nFq8r4LT4QjrFz0shrzCwuuM4GmcYtBSxlacl+HxYEtAs5k10tmzRf6OYlY33tGf6\n1tkYvKryxDPF/EDgGp/LiBwx6ixYMBfISoYASt4V/ylAlHA=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICtTCCAjqgAwIBAgIRAK9BSZU6nIe6jqfODmuVctYwCgYIKoZIzj0EAwMwgZkx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEyMDAGA1UEAwwpQW1h\nem9uIFJEUyBjYS1jZW50cmFsLTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcM\nB1NlYXR0bGUwIBcNMjEwNTIxMjIxMzA5WhgPMjEyMTA1MjEyMzEzMDlaMIGZMQsw\nCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjET\nMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMjAwBgNVBAMMKUFtYXpv\nbiBSRFMgY2EtY2VudHJhbC0xIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQHDAdT\nZWF0dGxlMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEUkEERcgxneT5H+P+fERcbGmf\nbVx+M7rNWtgWUr6w+OBENebQA9ozTkeSg4c4M+qdYSObFqjxITdYxT1z/nHz1gyx\nOKAhLjWu+nkbRefqy3RwXaWT680uUaAP6ccnkZOMo0IwQDAPBgNVHRMBAf8EBTAD\nAQH/MB0GA1UdDgQWBBSN6fxlg0s5Wny08uRBYZcQ3TUoyzAOBgNVHQ8BAf8EBAMC\nAYYwCgYIKoZIzj0EAwMDaQAwZgIxAORaz+MBVoFBTmZ93j2G2vYTwA6T5hWzBWrx\nCrI54pKn5g6At56DBrkjrwZF5T1enAIxAJe/LZ9xpDkAdxDgGJFN8gZYLRWc0NRy\nRb4hihy5vj9L+w9uKc9VfEBIFuhT7Z3ljg==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEADCCAuigAwIBAgIQB/57HSuaqUkLaasdjxUdPjANBgkqhkiG9w0BAQsFADCB\nmDELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChB\nbWF6b24gUkRTIGFwLXNvdXRoLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUxOTE3NDAzNFoYDzIwNjEwNTE5MTg0MDM0WjCBmDEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChBbWF6\nb24gUkRTIGFwLXNvdXRoLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQHDAdT\nZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtbkaoVsUS76o\nTgLFmcnaB8cswBk1M3Bf4IVRcwWT3a1HeJSnaJUqWHCJ+u3ip/zGVOYl0gN1MgBb\nMuQRIJiB95zGVcIa6HZtx00VezDTr3jgGWRHmRjNVCCHGmxOZWvJjsIE1xavT/1j\nQYV/ph4EZEIZ/qPq7e3rHohJaHDe23Z7QM9kbyqp2hANG2JtU/iUhCxqgqUHNozV\nZd0l5K6KnltZQoBhhekKgyiHqdTrH8fWajYl5seD71bs0Axowb+Oh0rwmrws3Db2\nDh+oc2PwREnjHeca9/1C6J2vhY+V0LGaJmnnIuOANrslx2+bgMlyhf9j0Bv8AwSi\ndSWsobOhNQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBQb7vJT\nVciLN72yJGhaRKLn6Krn2TAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQAD\nggEBAAxEj8N9GslReAQnNOBpGl8SLgCMTejQ6AW/bapQvzxrZrfVOZOYwp/5oV0f\n9S1jcGysDM+DrmfUJNzWxq2Y586R94WtpH4UpJDGqZp+FuOVJL313te4609kopzO\nlDdmd+8z61+0Au93wB1rMiEfnIMkOEyt7D2eTFJfJRKNmnPrd8RjimRDlFgcLWJA\n3E8wca67Lz/G0eAeLhRHIXv429y8RRXDtKNNz0wA2RwURWIxyPjn1fHjA9SPDkeW\nE1Bq7gZj+tBnrqz+ra3yjZ2blss6Ds3/uRY6NYqseFTZWmQWT7FolZEnT9vMUitW\nI0VynUbShVpGf6946e0vgaaKw20=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID/jCCAuagAwIBAgIQGyUVTaVjYJvWhroVEiHPpDANBgkqhkiG9w0BAQsFADCB\nlzELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdB\nbWF6b24gUkRTIHVzLXdlc3QtMSBSb290IENBIFJTQTIwNDggRzExEDAOBgNVBAcM\nB1NlYXR0bGUwIBcNMjEwNTE5MTkwNDA2WhgPMjA2MTA1MTkyMDA0MDZaMIGXMQsw\nCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjET\nMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpv\nbiBSRFMgdXMtd2VzdC0xIFJvb3QgQ0EgUlNBMjA0OCBHMTEQMA4GA1UEBwwHU2Vh\ndHRsZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANhyXpJ0t4nigRDZ\nEwNtFOem1rM1k8k5XmziHKDvDk831p7QsX9ZOxl/BT59Pu/P+6W6SvasIyKls1sW\nFJIjFF+6xRQcpoE5L5evMgN/JXahpKGeQJPOX9UEXVW5B8yi+/dyUitFT7YK5LZA\nMqWBN/LtHVPa8UmE88RCDLiKkqiv229tmwZtWT7nlMTTCqiAHMFcryZHx0pf9VPh\nx/iPV8p2gBJnuPwcz7z1kRKNmJ8/cWaY+9w4q7AYlAMaq/rzEqDaN2XXevdpsYAK\nTMMj2kji4x1oZO50+VPNfBl5ZgJc92qz1ocF95SAwMfOUsP8AIRZkf0CILJYlgzk\n/6u6qZECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUm5jfcS9o\n+LwL517HpB6hG+PmpBswDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4IB\nAQAcQ6lsqxi63MtpGk9XK8mCxGRLCad51+MF6gcNz6i6PAqhPOoKCoFqdj4cEQTF\nF8dCfa3pvfJhxV6RIh+t5FCk/y6bWT8Ls/fYKVo6FhHj57bcemWsw/Z0XnROdVfK\nYqbc7zvjCPmwPHEqYBhjU34NcY4UF9yPmlLOL8uO1JKXa3CAR0htIoW4Pbmo6sA4\n6P0co/clW+3zzsQ92yUCjYmRNeSbdXbPfz3K/RtFfZ8jMtriRGuO7KNxp8MqrUho\nHK8O0mlSUxGXBZMNicfo7qY8FD21GIPH9w5fp5oiAl7lqFzt3E3sCLD3IiVJmxbf\nfUwpGd1XZBBSdIxysRLM6j48\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrTCCAjOgAwIBAgIQU+PAILXGkpoTcpF200VD/jAKBggqhkjOPQQDAzCBljEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMS8wLQYDVQQDDCZBbWF6\nb24gUkRTIGFwLWVhc3QtMSBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UEBwwHU2Vh\ndHRsZTAgFw0yMTA1MjUyMTQ1MTFaGA8yMTIxMDUyNTIyNDUxMVowgZYxCzAJBgNV\nBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYD\nVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEvMC0GA1UEAwwmQW1hem9uIFJE\nUyBhcC1lYXN0LTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1NlYXR0bGUw\ndjAQBgcqhkjOPQIBBgUrgQQAIgNiAAT3tFKE8Kw1sGQAvNLlLhd8OcGhlc7MiW/s\nNXm3pOiCT4vZpawKvHBzD76Kcv+ZZzHRxQEmG1/muDzZGlKR32h8AAj+NNO2Wy3d\nCKTtYMiVF6Z2zjtuSkZQdjuQbe4eQ7qjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD\nVR0OBBYEFAiSQOp16Vv0Ohpvqcbd2j5RmhYNMA4GA1UdDwEB/wQEAwIBhjAKBggq\nhkjOPQQDAwNoADBlAjBVsi+5Ape0kOhMt/WFkANkslD4qXA5uqhrfAtH29Xzz2NV\ntR7akiA771OaIGB/6xsCMQCZt2egCtbX7J0WkuZ2KivTh66jecJr5DHvAP4X2xtS\nF/5pS+AUhcKTEGjI9jDH3ew=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICuDCCAj2gAwIBAgIQT5mGlavQzFHsB7hV6Mmy6TAKBggqhkjOPQQDAzCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIGFwLXNvdXRoZWFzdC0yIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyNDIwNTAxNVoYDzIxMjEwNTI0MjE1MDE1WjCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIGFwLXNvdXRoZWFzdC0yIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEcm4BBBjYK7clwm0HJRWS\nflt3iYwoJbIXiXn9c1y3E+Vb7bmuyKhS4eO8mwO4GefUcXObRfoHY2TZLhMJLVBQ\n7MN2xDc0RtZNj07BbGD3VAIFRTDX0mH9UNYd0JQM3t/Oo0IwQDAPBgNVHRMBAf8E\nBTADAQH/MB0GA1UdDgQWBBRrd5ITedfAwrGo4FA9UaDaGFK3rjAOBgNVHQ8BAf8E\nBAMCAYYwCgYIKoZIzj0EAwMDaQAwZgIxAPBNqmVv1IIA3EZyQ6XuVf4gj79/DMO8\nbkicNS1EcBpUqbSuU4Zwt2BYc8c/t7KVOQIxAOHoWkoKZPiKyCxfMtJpCZySUG+n\nsXgB/LOyWE5BJcXUfm+T1ckeNoWeUUMOLmnJjg==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECTCCAvGgAwIBAgIRAJcDeinvdNrDQBeJ8+t38WQwDQYJKoZIhvcNAQELBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1zb3V0aGVhc3QtNCBSb290IENBIFJTQTIwNDggRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjIwNTI1MTY0OTE2WhgPMjA2MjA1MjUxNzQ5MTZa\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgYXAtc291dGhlYXN0LTQgUm9vdCBDQSBSU0EyMDQ4IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nk8DBNkr9tMoIM0NHoFiO7cQfSX0cOMhEuk/CHt0fFx95IBytx7GHCnNzpM27O5z6\nx6iRhfNnx+B6CrGyCzOjxvPizneY+h+9zfvNz9jj7L1I2uYMuiNyOKR6FkHR46CT\n1CiArfVLLPaTqgD/rQjS0GL2sLHS/0dmYipzynnZcs613XT0rAWdYDYgxDq7r/Yi\nXge5AkWQFkMUq3nOYDLCyGGfQqWKkwv6lZUHLCDKf+Y0Uvsrj8YGCI1O8mF0qPCQ\nlmlfaDvbuBu1AV+aabmkvyFj3b8KRIlNLEtQ4N8KGYR2Jdb82S4YUGIOAt4wuuFt\n1B7AUDLk3V/u+HTWiwfoLQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud\nDgQWBBSNpcjz6ArWBtAA+Gz6kyyZxrrgdDAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZI\nhvcNAQELBQADggEBAGJEd7UgOzHYIcQRSF7nSYyjLROyalaIV9AX4WXW/Cqlul1c\nMblP5etDZm7A/thliZIWAuyqv2bNicmS3xKvNy6/QYi1YgxZyy/qwJ3NdFl067W0\nt8nGo29B+EVK94IPjzFHWShuoktIgp+dmpijB7wkTIk8SmIoe9yuY4+hzgqk+bo4\nms2SOXSN1DoQ75Xv+YmztbnZM8MuWhL1T7hA4AMorzTQLJ9Pof8SpSdMHeDsHp0R\n01jogNFkwy25nw7cL62nufSuH2fPYGWXyNDg+y42wKsKWYXLRgUQuDVEJ2OmTFMB\nT0Vf7VuNijfIA9hkN2d3K53m/9z5WjGPSdOjGhg=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID/jCCAuagAwIBAgIQRiwspKyrO0xoxDgSkqLZczANBgkqhkiG9w0BAQsFADCB\nlzELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdB\nbWF6b24gUkRTIHVzLXdlc3QtMiBSb290IENBIFJTQTIwNDggRzExEDAOBgNVBAcM\nB1NlYXR0bGUwIBcNMjEwNTI0MjE1OTAwWhgPMjA2MTA1MjQyMjU5MDBaMIGXMQsw\nCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjET\nMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpv\nbiBSRFMgdXMtd2VzdC0yIFJvb3QgQ0EgUlNBMjA0OCBHMTEQMA4GA1UEBwwHU2Vh\ndHRsZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL53Jk3GsKiu+4bx\njDfsevWbwPCNJ3H08Zp7GWhvI3Tgi39opfHYv2ku2BKFjK8N2L6RvNPSR8yplv5j\nY0tK0U+XVNl8o0ibhqRDhbTuh6KL8CFINWYzAajuxFS+CF0U6c1Q3tXLBdALxA7l\nFlXJ71QrP06W31kRe7kvgrvO7qWU3/OzUf9qYw4LSiR1/VkvvRCTqcVNw09clw/M\nJbw6FSgweN65M9j7zPbjGAXSHkXyxH1Erin2fa+B9PE4ZDgX9cp2C1DHewYJQL/g\nSepwwcudVNRN1ibKH7kpMrgPnaNIVNx5sXVsTjk6q2ZqYw3SVHegltJpLy/cZReP\nmlivF2kCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUmTcQd6o1\nCuS65MjBrMwQ9JJjmBwwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4IB\nAQAKSDSIzl956wVddPThf2VAzI8syw9ngSwsEHZvxVGHBvu5gg618rDyguVCYX9L\n4Kw/xJrk6S3qxOS2ZDyBcOpsrBskgahDFIunzoRP3a18ARQVq55LVgfwSDQiunch\nBd05cnFGLoiLkR5rrkgYaP2ftn3gRBRaf0y0S3JXZ2XB3sMZxGxavYq9mfiEcwB0\nLMTMQ1NYzahIeG6Jm3LqRqR8HkzP/Ztq4dT2AtSLvFebbNMiWqeqT7OcYp94HTYT\nzqrtaVdUg9bwyAUCDgy0GV9RHDIdNAOInU/4LEETovrtuBU7Z1q4tcHXvN6Hd1H8\ngMb0mCG5I393qW5hFsA/diFb\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECTCCAvGgAwIBAgIRAPQAvihfjBg/JDbj6U64K98wDQYJKoZIhvcNAQELBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1ub3J0aGVhc3QtMiBSb290IENBIFJTQTIwNDggRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjEwNTIwMTYyODQxWhgPMjA2MTA1MjAxNzI4NDFa\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgYXAtbm9ydGhlYXN0LTIgUm9vdCBDQSBSU0EyMDQ4IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\nvJ9lgyksCxkBlY40qOzI1TCj/Q0FVGuPL/Z1Mw2YN0l+41BDv0FHApjTUkIKOeIP\nnwDwpXTa3NjYbk3cOZ/fpH2rYJ++Fte6PNDGPgKppVCUh6x3jiVZ1L7wOgnTdK1Q\nTrw8440IDS5eLykRHvz8OmwvYDl0iIrt832V0QyOlHTGt6ZJ/aTQKl12Fy3QBLv7\nstClPzvHTrgWqVU6uidSYoDtzHbU7Vda7YH0wD9IUoMBf7Tu0rqcE4uH47s2XYkc\nSdLEoOg/Ngs7Y9B1y1GCyj3Ux7hnyvCoRTw014QyNB7dTatFMDvYlrRDGG14KeiU\nUL7Vo/+EejWI31eXNLw84wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud\nDgQWBBQkgTWFsNg6wA3HbbihDQ4vpt1E2zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZI\nhvcNAQELBQADggEBAGz1Asiw7hn5WYUj8RpOCzpE0h/oBZcnxP8wulzZ5Xd0YxWO\n0jYUcUk3tTQy1QvoY+Q5aCjg6vFv+oFBAxkib/SmZzp4xLisZIGlzpJQuAgRkwWA\n6BVMgRS+AaOMQ6wKPgz1x4v6T0cIELZEPq3piGxvvqkcLZKdCaeC3wCS6sxuafzZ\n4qA3zMwWuLOzRftgX2hQto7d/2YkRXga7jSvQl3id/EI+xrYoH6zIWgjdU1AUaNq\nNGT7DIo47vVMfnd9HFZNhREsd4GJE83I+JhTqIxiKPNxrKgESzyADmNPt0gXDnHo\ntbV1pMZz5HpJtjnP/qVZhEK5oB0tqlKPv9yx074=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICuTCCAj6gAwIBAgIRAKp1Rn3aL/g/6oiHVIXtCq8wCgYIKoZIzj0EAwMwgZsx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE0MDIGA1UEAwwrQW1h\nem9uIFJEUyBhcC1ub3J0aGVhc3QtMyBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTAgFw0yMTA1MjQyMDMyMTdaGA8yMTIxMDUyNDIxMzIxN1owgZsx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE0MDIGA1UEAwwrQW1h\nem9uIFJEUyBhcC1ub3J0aGVhc3QtMyBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTB2MBAGByqGSM49AgEGBSuBBAAiA2IABGTYWPILeBJXfcL3Dz4z\nEWMUq78xB1HpjBwHoTURYfcMd5r96BTVG6yaUBWnAVCMeeD6yTG9a1eVGNhG14Hk\nZAEjgLiNB7RRbEG5JZ/XV7W/vODh09WCst2y9SLKsdgeAaNCMEAwDwYDVR0TAQH/\nBAUwAwEB/zAdBgNVHQ4EFgQUoE0qZHmDCDB+Bnm8GUa/evpfPwgwDgYDVR0PAQH/\nBAQDAgGGMAoGCCqGSM49BAMDA2kAMGYCMQCnil5MMwhY3qoXv0xvcKZGxGPaBV15\n0CCssCKn0oVtdJQfJQ3Jrf3RSaEyijXIJsoCMQC35iJi4cWoNX3N/qfgnHohW52O\nB5dg0DYMqy5cNZ40+UcAanRMyqNQ6P7fy3umGco=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICtzCCAj2gAwIBAgIQPXnDTPegvJrI98qz8WxrMjAKBggqhkjOPQQDAzCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIEJldGEgdXMtZWFzdC0xIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUxODIxNDAxMloYDzIxMjEwNTE4MjI0MDEyWjCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIEJldGEgdXMtZWFzdC0xIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEI0sR7gwutK5AB46hM761\ngcLTGBIYlURSEoM1jcBwy56CL+3CJKZwLLyJ7qoOKfWbu5GsVLUTWS8MV6Nw33cx\n2KQD2svb694wi+Px2f4n9+XHkEFQw8BbiodDD7RZA70fo0IwQDAPBgNVHRMBAf8E\nBTADAQH/MB0GA1UdDgQWBBTQSioOvnVLEMXwNSDg+zgln/vAkjAOBgNVHQ8BAf8E\nBAMCAYYwCgYIKoZIzj0EAwMDaAAwZQIxAMwu1hqm5Bc98uE/E0B5iMYbBQ4kpMxO\ntP8FTfz5UR37HUn26nXE0puj6S/Ffj4oJgIwXI7s2c26tFQeqzq6u3lrNJHp5jC9\nUxlo/hEJOLoDj5jnpxo8dMAtCNoQPaHdfL0P\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrjCCAjWgAwIBAgIQGKVv+5VuzEZEBzJ+bVfx2zAKBggqhkjOPQQDAzCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIGFwLXNvdXRoLTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjEwNTE5MTc1MDU5WhgPMjEyMTA1MTkxODUwNTlaMIGXMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpvbiBS\nRFMgYXAtc291dGgtMSBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UEBwwHU2VhdHRs\nZTB2MBAGByqGSM49AgEGBSuBBAAiA2IABMqdLJ0tZF/DGFZTKZDrGRJZID8ivC2I\nJRCYTWweZKCKSCAzoiuGGHzJhr5RlLHQf/QgmFcgXsdmO2n3CggzhA4tOD9Ip7Lk\nP05eHd2UPInyPCHRgmGjGb0Z+RdQ6zkitKNCMEAwDwYDVR0TAQH/BAUwAwEB/zAd\nBgNVHQ4EFgQUC1yhRgVqU5bR8cGzOUCIxRpl4EYwDgYDVR0PAQH/BAQDAgGGMAoG\nCCqGSM49BAMDA2cAMGQCMG0c/zLGECRPzGKJvYCkpFTCUvdP4J74YP0v/dPvKojL\nt/BrR1Tg4xlfhaib7hPc7wIwFvgqHes20CubQnZmswbTKLUrgSUW4/lcKFpouFd2\nt2/ewfi/0VhkeUW+IiHhOMdU\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGCTCCA/GgAwIBAgIRAOXxJuyXVkbfhZCkS/dOpfEwDQYJKoZIhvcNAQEMBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1ub3J0aGVhc3QtMSBSb290IENBIFJTQTQwOTYgRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjEwNTI1MjE1OTEwWhgPMjEyMTA1MjUyMjU5MTBa\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgYXAtbm9ydGhlYXN0LTEgUm9vdCBDQSBSU0E0MDk2IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA\nxiP4RDYm4tIS12hGgn1csfO8onQDmK5SZDswUpl0HIKXOUVVWkHNlINkVxbdqpqH\nFhbyZmNN6F/EWopotMDKe1B+NLrjNQf4zefv2vyKvPHJXhxoKmfyuTd5Wk8k1F7I\nlNwLQzznB+ElhrLIDJl9Ro8t31YBBNFRGAGEnxyACFGcdkjlsa52UwfYrwreEg2l\ngW5AzqHgjFfj9QRLydeU/n4bHm0F1adMsV7P3rVwilcUlqsENDwXnWyPEyv3sw6F\nwNemLEs1129mB77fwvySb+lLNGsnzr8w4wdioZ74co+T9z2ca+eUiP+EQccVw1Is\nD4Fh57IjPa6Wuc4mwiUYKkKY63+38aCfEWb0Qoi+zW+mE9nek6MOQ914cN12u5LX\ndBoYopphRO5YmubSN4xcBy405nIdSdbrAVWwxXnVVyjqjknmNeqQsPZaxAhdoKhV\nAqxNr8AUAdOAO6Sz3MslmcLlDXFihrEEOeUbpg/m1mSUUHGbu966ajTG1FuEHHwS\n7WB52yxoJo/tHvt9nAWnh3uH5BHmS8zn6s6CGweWKbX5yICnZ1QFR1e4pogxX39v\nXD6YcNOO+Vn+HY4nXmjgSYVC7l+eeP8eduMg1xJujzjrbmrXU+d+cBObgdTOAlpa\nJFHaGwYw1osAwPCo9cZ2f04yitBfj9aPFia8ASKldakCAwEAAaNCMEAwDwYDVR0T\nAQH/BAUwAwEB/zAdBgNVHQ4EFgQUqKS+ltlior0SyZKYAkJ/efv55towDgYDVR0P\nAQH/BAQDAgGGMA0GCSqGSIb3DQEBDAUAA4ICAQAdElvp8bW4B+Cv+1WSN87dg6TN\nwGyIjJ14/QYURgyrZiYpUmZpj+/pJmprSWXu4KNyqHftmaidu7cdjL5nCAvAfnY5\n/6eDDbX4j8Gt9fb/6H9y0O0dn3mUPSEKG0crR+JRFAtPhn/2FNvst2P82yguWLv0\npHjHVUVcq+HqDMtUIJsTPYjSh9Iy77Q6TOZKln9dyDOWJpCSkiUWQtMAKbCSlvzd\nzTs/ahqpT+zLfGR1SR+T3snZHgQnbnemmz/XtlKl52NxccARwfcEEKaCRQyGq/pR\n0PVZasyJS9JY4JfQs4YOdeOt4UMZ8BmW1+BQWGSkkb0QIRl8CszoKofucAlqdPcO\nIT/ZaMVhI580LFGWiQIizWFskX6lqbCyHqJB3LDl8gJISB5vNTHOHpvpMOMs5PYt\ncRl5Mrksx5MKMqG7y5R734nMlZxQIHjL5FOoOxTBp9KeWIL/Ib89T2QDaLw1SQ+w\nihqWBJ4ZdrIMWYpP3WqM+MXWk7WAem+xsFJdR+MDgOOuobVQTy5dGBlPks/6gpjm\nrO9TjfQ36ppJ3b7LdKUPeRfnYmlR5RU4oyYJ//uLbClI443RZAgxaCXX/nyc12lr\neVLUMNF2abLX4/VF63m2/Z9ACgMRfqGshPssn1NN33OonrotQoj4S3N9ZrjvzKt8\niHcaqd60QKpfiH2A3A==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICuDCCAj2gAwIBAgIQPaVGRuu86nh/ylZVCLB0MzAKBggqhkjOPQQDAzCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIGFwLW5vcnRoZWFzdC0xIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyNTIyMDMxNloYDzIxMjEwNTI1MjMwMzE2WjCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIGFwLW5vcnRoZWFzdC0xIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEexNURoB9KE93MEtEAlJG\nobz4LS/pD2hc8Gczix1WhVvpJ8bN5zCDXaKdnDMCebetyRQsmQ2LYlfmCwpZwSDu\n0zowB11Pt3I5Avu2EEcuKTlKIDMBeZ1WWuOd3Tf7MEAMo0IwQDAPBgNVHRMBAf8E\nBTADAQH/MB0GA1UdDgQWBBSaYbZPBvFLikSAjpa8mRJvyArMxzAOBgNVHQ8BAf8E\nBAMCAYYwCgYIKoZIzj0EAwMDaQAwZgIxAOEJkuh3Zjb7Ih/zuNRd1RBqmIYcnyw0\nnwUZczKXry+9XebYj3VQxSRNadrarPWVqgIxAMg1dyGoDAYjY/L/9YElyMnvHltO\nPwpJShmqHvCLc/mXMgjjYb/akK7yGthvW6j/uQ==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGCDCCA/CgAwIBAgIQChu3v5W1Doil3v6pgRIcVzANBgkqhkiG9w0BAQwFADCB\nnDELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTUwMwYDVQQDDCxB\nbWF6b24gUkRTIEJldGEgdXMtZWFzdC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4G\nA1UEBwwHU2VhdHRsZTAgFw0yMTA1MTgyMTM0MTVaGA8yMTIxMDUxODIyMzQxNVow\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBCZXRhIHVzLWVhc3QtMSBSb290IENBIFJTQTQwOTYgRzExEDAO\nBgNVBAcMB1NlYXR0bGUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC1\nFUGQ5tf3OwpDR6hGBxhUcrkwKZhaXP+1St1lSOQvjG8wXT3RkKzRGMvb7Ee0kzqI\nmzKKe4ASIhtV3UUWdlNmP0EA3XKnif6N79MismTeGkDj75Yzp5A6tSvqByCgxIjK\nJqpJrch3Dszoyn8+XhwDxMZtkUa5nQVdJgPzJ6ltsQ8E4SWLyLtTu0S63jJDkqYY\nS7cQblk7y7fel+Vn+LS5dGTdRRhMvSzEnb6mkVBaVzRyVX90FNUED06e8q+gU8Ob\nhtvQlf9/kRzHwRAdls2YBhH40ZeyhpUC7vdtPwlmIyvW5CZ/QiG0yglixnL6xahL\npbmTuTSA/Oqz4UGQZv2WzHe1lD2gRHhtFX2poQZeNQX8wO9IcUhrH5XurW/G9Xwl\nSat9CMPERQn4KC3HSkat4ir2xaEUrjfg6c4XsGyh2Pk/LZ0gLKum0dyWYpWP4JmM\nRQNjrInXPbMhzQObozCyFT7jYegS/3cppdyy+K1K7434wzQGLU1gYXDKFnXwkX8R\nbRKgx2pHNbH5lUddjnNt75+e8m83ygSq/ZNBUz2Ur6W2s0pl6aBjwaDES4VfWYlI\njokcmrGvJNDfQWygb1k00eF2bzNeNCHwgWsuo3HSxVgc/WGsbcGrTlDKfz+g3ich\nbXUeUidPhRiv5UQIVCLIHpHuin3bj9lQO/0t6p+tAQIDAQABo0IwQDAPBgNVHRMB\nAf8EBTADAQH/MB0GA1UdDgQWBBSFmMBgm5IsRv3hLrvDPIhcPweXYTAOBgNVHQ8B\nAf8EBAMCAYYwDQYJKoZIhvcNAQEMBQADggIBAAa2EuozymOsQDJlEi7TqnyA2OhT\nGXPfYqCyMJVkfrqNgcnsNpCAiNEiZbb+8sIPXnT8Ay8hrwJYEObJ5b7MHXpLuyft\nz0Pu1oFLKnQxKjNxrIsCvaB4CRRdYjm1q7EqGhMGv76se9stOxkOqO9it31w/LoU\nENDk7GLsSqsV1OzYLhaH8t+MaNP6rZTSNuPrHwbV3CtBFl2TAZ7iKgKOhdFz1Hh9\nPez0lG+oKi4mHZ7ajov6PD0W7njn5KqzCAkJR6OYmlNVPjir+c/vUtEs0j+owsMl\ng7KE5g4ZpTRShyh5BjCFRK2tv0tkqafzNtxrKC5XNpEkqqVTCnLcKG+OplIEadtr\nC7UWf4HyhCiR+xIyxFyR05p3uY/QQU/5uza7GlK0J+U1sBUytx7BZ+Fo8KQfPPqV\nCqDCaYUksoJcnJE/KeoksyqNQys7sDGJhkd0NeUGDrFLKHSLhIwAMbEWnqGxvhli\nE7sP2E5rI/I9Y9zTbLIiI8pfeZlFF8DBdoP/Hzg8pqsiE/yiXSFTKByDwKzGwNqz\nF0VoFdIZcIbLdDbzlQitgGpJtvEL7HseB0WH7B2PMMD8KPJlYvPveO3/6OLzCsav\n+CAkvk47NQViKMsUTKOA0JDCW+u981YRozxa3K081snhSiSe83zIPBz1ikldXxO9\n6YYLNPRrj3mi9T/f\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrjCCAjSgAwIBAgIRAMkvdFnVDb0mWWFiXqnKH68wCgYIKoZIzj0EAwMwgZYx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEvMC0GA1UEAwwmQW1h\nem9uIFJEUyB1cy13ZXN0LTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjEwNTE5MTkxMzI0WhgPMjEyMTA1MTkyMDEzMjRaMIGWMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExLzAtBgNVBAMMJkFtYXpvbiBS\nRFMgdXMtd2VzdC0xIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQHDAdTZWF0dGxl\nMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEy86DB+9th/0A5VcWqMSWDxIUblWTt/R0\nao6Z2l3vf2YDF2wt1A2NIOGpfQ5+WAOJO/IQmnV9LhYo+kacB8sOnXdQa6biZZkR\nIyouUfikVQAKWEJnh1Cuo5YMM4E2sUt5o0IwQDAPBgNVHRMBAf8EBTADAQH/MB0G\nA1UdDgQWBBQ8u3OnecANmG8OoT7KLWDuFzZwBTAOBgNVHQ8BAf8EBAMCAYYwCgYI\nKoZIzj0EAwMDaAAwZQIwQ817qkb7mWJFnieRAN+m9W3E0FLVKaV3zC5aYJUk2fcZ\nTaUx3oLp3jPLGvY5+wgeAjEA6wAicAki4ZiDfxvAIuYiIe1OS/7H5RA++R8BH6qG\niRzUBM/FItFpnkus7u/eTkvo\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrzCCAjWgAwIBAgIQS/+Ryfgb/IOVEa1pWoe8oTAKBggqhkjOPQQDAzCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIGFwLXNvdXRoLTIgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjIwNjA2MjE1NDQyWhgPMjEyMjA2MDYyMjU0NDJaMIGXMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpvbiBS\nRFMgYXAtc291dGgtMiBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UEBwwHU2VhdHRs\nZTB2MBAGByqGSM49AgEGBSuBBAAiA2IABDsX6fhdUWBQpYTdseBD/P3s96Dtw2Iw\nOrXKNToCnmX5nMkUGdRn9qKNiz1pw3EPzaPxShbYwQ7LYP09ENK/JN4QQjxMihxC\njLFxS85nhBQQQGRCWikDAe38mD8fSvREQKNCMEAwDwYDVR0TAQH/BAUwAwEB/zAd\nBgNVHQ4EFgQUIh1xZiseQYFjPYKJmGbruAgRH+AwDgYDVR0PAQH/BAQDAgGGMAoG\nCCqGSM49BAMDA2gAMGUCMFudS4zLy+UUGrtgNLtRMcu/DZ9BUzV4NdHxo0bkG44O\nthnjl4+wTKI6VbyAbj2rkgIxAOHps8NMITU5DpyiMnKTxV8ubb/WGHrLl0BjB8Lw\nETVJk5DNuZvsIIcm7ykk6iL4Tw==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGBDCCA+ygAwIBAgIQDcEmNIAVrDpUw5cH5ynutDANBgkqhkiG9w0BAQwFADCB\nmjELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTMwMQYDVQQDDCpB\nbWF6b24gUkRTIG1lLWNlbnRyYWwtMSBSb290IENBIFJTQTQwOTYgRzExEDAOBgNV\nBAcMB1NlYXR0bGUwIBcNMjIwNTA3MDA0MDIzWhgPMjEyMjA1MDcwMTQwMjNaMIGa\nMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5j\nLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMzAxBgNVBAMMKkFt\nYXpvbiBSRFMgbWUtY2VudHJhbC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKvADk8t\nFl9bFlU5sajLPPDSOUpPAkKs6iPlz+27o1GJC88THcOvf3x0nVAcu9WYe9Qaas+4\nj4a0vv51agqyODRD/SNi2HnqW7DbtLPAm6KBHe4twl28ItB/JD5g7u1oPAHFoXMS\ncH1CZEAs5RtlZGzJhcBXLFsHNv/7+SCLyZ7+2XFh9OrtgU4wMzkHoRNndhfwV5bu\n17bPTwuH+VxH37zXf1mQ/KjhuJos0C9dL0FpjYBAuyZTAWhZKs8dpSe4DI544z4w\ngkwUB4bC2nA1TBzsywEAHyNuZ/xRjNpWvx0ToWAA2iFJqC3VO3iKcnBplMvaUuMt\njwzVSNBnKcoabXCZL2XDLt4YTZR8FSwz05IvsmwcPB7uNTBXq3T9sjejW8QQK3vT\ntzyfLq4jKmQE7PoS6cqYm+hEPm2hDaC/WP9bp3FdEJxZlPH26fq1b7BWYWhQ9pBA\nNv9zTnzdR1xohTyOJBUFQ81ybEzabqXqVXUIANqIOaNcTB09/sLJ7+zuMhp3mwBu\nLtjfJv8PLuT1r63bU3seROhKA98b5KfzjvbvPSg3vws78JQyoYGbqNyDfyjVjg3U\nv//AdVuPie6PNtdrW3upZY4Qti5IjP9e3kimaJ+KAtTgMRG56W0WxD3SP7+YGGbG\nKhntDOkKsN39hLpn9UOafTIqFu7kIaueEy/NAgMBAAGjQjBAMA8GA1UdEwEB/wQF\nMAMBAf8wHQYDVR0OBBYEFHAems86dTwdZbLe8AaPy3kfIUVoMA4GA1UdDwEB/wQE\nAwIBhjANBgkqhkiG9w0BAQwFAAOCAgEAOBHpp0ICx81kmeoBcZTrMdJs2gnhcd85\nFoSCjXx9H5XE5rmN/lQcxxOgj8hr3uPuLdLHu+i6THAyzjrl2NA1FWiqpfeECGmy\n0jm7iZsYORgGQYp/VKnDrwnKNSqlZvOuRr0kfUexwFlr34Y4VmupvEOK/RdGsd3S\n+3hiemcHse9ST/sJLHx962AWMkN86UHPscJEe4+eT3f2Wyzg6La8ARwdWZSNS+WH\nZfybrncMmuiXuUdHv9XspPsqhKgtHhcYeXOGUtrwQPLe3+VJZ0LVxhlTWr9951GZ\nGfmWwTV/9VsyKVaCFIXeQ6L+gjcKyEzYF8wpMtQlSc7FFqwgC4bKxvMBSaRy88Nr\nlV2+tJD/fr8zGUeBK44Emon0HKDBWGX+/Hq1ZIv0Da0S+j6LbA4fusWxtGfuGha+\nluhHgVInCpALIOamiBEdGhILkoTtx7JrYppt3/Raqg9gUNCOOYlCvGhqX7DXeEfL\nDGabooiY2FNWot6h04JE9nqGj5QqT8D6t/TL1nzxhRPzbcSDIHUd/b5R+a0bAA+7\nYTU6JqzEVCWKEIEynYmqikgLMGB/OzWsgyEL6822QW6hJAQ78XpbNeCzrICF4+GC\n7KShLnwuWoWpAb26268lvOEvCTFM47VC6jNQl97md+2SA9Ma81C9wflid2M83Wle\ncuLMVcQZceE=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEADCCAuigAwIBAgIQAhAteLRCvizAElaWORFU2zANBgkqhkiG9w0BAQsFADCB\nmDELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChB\nbWF6b24gUkRTIG1lLXNvdXRoLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyMDE3MDkxNloYDzIwNjEwNTIwMTgwOTE2WjCBmDEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChBbWF6\nb24gUkRTIG1lLXNvdXRoLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQHDAdT\nZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+qg7JAcOVKjh\nN83SACnBFZPyB63EusfDr/0V9ZdL8lKcmZX9sv/CqoBo3N0EvBqHQqUUX6JvFb7F\nXrMUZ740kr28gSRALfXTFgNODjXeDsCtEkKRTkac/UM8xXHn+hR7UFRPHS3e0GzI\niLiwQWDkr0Op74W8aM0CfaVKvh2bp4BI1jJbdDnQ9OKXpOxNHGUf0ZGb7TkNPkgI\nb2CBAc8J5o3H9lfw4uiyvl6Fz5JoP+A+zPELAioYBXDrbE7wJeqQDJrETWqR9VEK\nBXURCkVnHeaJy123MpAX2ozf4pqk0V0LOEOZRS29I+USF5DcWr7QIXR/w2I8ws1Q\n7ys+qbE+kQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBQFJ16n\n1EcCMOIhoZs/F9sR+Jy++zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQAD\nggEBAOc5nXbT3XTDEZsxX2iD15YrQvmL5m13B3ImZWpx/pqmObsgx3/dg75rF2nQ\nqS+Vl+f/HLh516pj2BPP/yWCq12TRYigGav8UH0qdT3CAClYy2o+zAzUJHm84oiB\nud+6pFVGkbqpsY+QMpJUbZWu52KViBpJMYsUEy+9cnPSFRVuRAHjYynSiLk2ZEjb\nWkdc4x0nOZR5tP0FgrX0Ve2KcjFwVQJVZLgOUqmFYQ/G0TIIGTNh9tcmR7yp+xJR\nA2tbPV2Z6m9Yxx4E8lLEPNuoeouJ/GR4CkMEmF8cLwM310t174o3lKKUXJ4Vs2HO\nWj2uN6R9oI+jGLMSswTzCNV1vgc=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICuDCCAj6gAwIBAgIRAOocLeZWjYkG/EbHmscuy8gwCgYIKoZIzj0EAwMwgZsx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE0MDIGA1UEAwwrQW1h\nem9uIFJEUyBhcC1zb3V0aGVhc3QtMSBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTAgFw0yMTA1MjEyMTUwMDFaGA8yMTIxMDUyMTIyNTAwMVowgZsx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE0MDIGA1UEAwwrQW1h\nem9uIFJEUyBhcC1zb3V0aGVhc3QtMSBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTB2MBAGByqGSM49AgEGBSuBBAAiA2IABCEr3jq1KtRncnZfK5cq\nbtY0nW6ZG3FMbh7XwBIR6Ca0f8llGZ4vJEC1pXgiM/4Dh045B9ZIzNrR54rYOIfa\n2NcYZ7mk06DjIQML64hbAxbQzOAuNzLPx268MrlL2uW2XaNCMEAwDwYDVR0TAQH/\nBAUwAwEB/zAdBgNVHQ4EFgQUln75pChychwN4RfHl+tOinMrfVowDgYDVR0PAQH/\nBAQDAgGGMAoGCCqGSM49BAMDA2gAMGUCMGiyPINRU1mwZ4Crw01vpuPvxZxb2IOr\nyX3RNlOIu4We1H+5dQk5tIvH8KGYFbWEpAIxAO9NZ6/j9osMhLgZ0yj0WVjb+uZx\nYlZR9fyFisY/jNfX7QhSk+nrc3SFLRUNtpXrng==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEBTCCAu2gAwIBAgIRAKiaRZatN8eiz9p0s0lu0rQwDQYJKoZIhvcNAQELBQAw\ngZoxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEzMDEGA1UEAwwq\nQW1hem9uIFJEUyBjYS1jZW50cmFsLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYD\nVQQHDAdTZWF0dGxlMCAXDTIxMDUyMTIyMDIzNVoYDzIwNjEwNTIxMjMwMjM1WjCB\nmjELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTMwMQYDVQQDDCpB\nbWF6b24gUkRTIGNhLWNlbnRyYWwtMSBSb290IENBIFJTQTIwNDggRzExEDAOBgNV\nBAcMB1NlYXR0bGUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCygVMf\nqB865IR9qYRBRFHn4eAqGJOCFx+UbraQZmjr/mnRqSkY+nhbM7Pn/DWOrRnxoh+w\nq5F9ZxdZ5D5T1v6kljVwxyfFgHItyyyIL0YS7e2h7cRRscCM+75kMedAP7icb4YN\nLfWBqfKHbHIOqvvQK8T6+Emu/QlG2B5LvuErrop9K0KinhITekpVIO4HCN61cuOe\nCADBKF/5uUJHwS9pWw3uUbpGUwsLBuhJzCY/OpJlDqC8Y9aToi2Ivl5u3/Q/sKjr\n6AZb9lx4q3J2z7tJDrm5MHYwV74elGSXoeoG8nODUqjgklIWAPrt6lQ3WJpO2kug\n8RhCdSbWkcXHfX95AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE\nFOIxhqTPkKVqKBZvMWtKewKWDvDBMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0B\nAQsFAAOCAQEAqoItII89lOl4TKvg0I1EinxafZLXIheLcdGCxpjRxlZ9QMQUN3yb\ny/8uFKBL0otbQgJEoGhxm4h0tp54g28M6TN1U0332dwkjYxUNwvzrMaV5Na55I2Z\n1hq4GB3NMXW+PvdtsgVOZbEN+zOyOZ5MvJHEQVkT3YRnf6avsdntltcRzHJ16pJc\nY8rR7yWwPXh1lPaPkxddrCtwayyGxNbNmRybjR48uHRhwu7v2WuAMdChL8H8bp89\nTQLMrMHgSbZfee9hKhO4Zebelf1/cslRSrhkG0ESq6G5MUINj6lMg2g6F0F7Xz2v\nncD/vuRN5P+vT8th/oZ0Q2Gc68Pun0cn/g==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID/zCCAuegAwIBAgIRAJYlnmkGRj4ju/2jBQsnXJYwDQYJKoZIhvcNAQELBQAw\ngZcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEwMC4GA1UEAwwn\nQW1hem9uIFJEUyB1cy1lYXN0LTIgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyMTIzMDQ0NFoYDzIwNjEwNTIyMDAwNDQ0WjCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIHVzLWVhc3QtMiBSb290IENBIFJTQTIwNDggRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC74V3eigv+pCj5\nnqDBqplY0Jp16pTeNB06IKbzb4MOTvNde6QjsZxrE1xUmprT8LxQqN9tI3aDYEYk\nb9v4F99WtQVgCv3Y34tYKX9NwWQgwS1vQwnIR8zOFBYqsAsHEkeJuSqAB12AYUSd\nZv2RVFjiFmYJho2X30IrSLQfS/IE3KV7fCyMMm154+/K1Z2IJlcissydEAwgsUHw\nedrE6CxJVkkJ3EvIgG4ugK/suxd8eEMztaQYJwSdN8TdfT59LFuSPl7zmF3fIBdJ\n//WexcQmGabaJ7Xnx+6o2HTfkP8Zzzzaq8fvjAcvA7gyFH5EP26G2ZqMG+0y4pTx\nSPVTrQEXAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFIWWuNEF\nsUMOC82XlfJeqazzrkPDMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOC\nAQEAgClmxcJaQTGpEZmjElL8G2Zc8lGc+ylGjiNlSIw8X25/bcLRptbDA90nuP+q\nzXAMhEf0ccbdpwxG/P5a8JipmHgqQLHfpkvaXx+0CuP++3k+chAJ3Gk5XtY587jX\n+MJfrPgjFt7vmMaKmynndf+NaIJAYczjhJj6xjPWmGrjM3MlTa9XesmelMwP3jep\nbApIWAvCYVjGndbK9byyMq1nyj0TUzB8oJZQooaR3MMjHTmADuVBylWzkRMxbKPl\n4Nlsk4Ef1JvIWBCzsMt+X17nuKfEatRfp3c9tbpGlAE/DSP0W2/Lnayxr4RpE9ds\nICF35uSis/7ZlsftODUe8wtpkQ==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIF/zCCA+egAwIBAgIRAPvvd+MCcp8E36lHziv0xhMwDQYJKoZIhvcNAQEMBQAw\ngZcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEwMC4GA1UEAwwn\nQW1hem9uIFJEUyB1cy1lYXN0LTIgUm9vdCBDQSBSU0E0MDk2IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyMTIzMTEwNloYDzIxMjEwNTIyMDAxMTA2WjCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIHVzLWVhc3QtMiBSb290IENBIFJTQTQwOTYgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDbvwekKIKGcV/s\nlDU96a71ZdN2pTYkev1X2e2/ICb765fw/i1jP9MwCzs8/xHBEQBJSxdfO4hPeNx3\nENi0zbM+TrMKliS1kFVe1trTTEaHYjF8BMK9yTY0VgSpWiGxGwg4tshezIA5lpu8\nsF6XMRxosCEVCxD/44CFqGZTzZaREIvvFPDTXKJ6yOYnuEkhH3OcoOajHN2GEMMQ\nShuyRFDQvYkqOC/Q5icqFbKg7eGwfl4PmimdV7gOVsxSlw2s/0EeeIILXtHx22z3\n8QBhX25Lrq2rMuaGcD3IOMBeBo2d//YuEtd9J+LGXL9AeOXHAwpvInywJKAtXTMq\nWsy3LjhuANFrzMlzjR2YdjkGVzeQVx3dKUzJ2//Qf7IXPSPaEGmcgbxuatxjnvfT\nH85oeKr3udKnXm0Kh7CLXeqJB5ITsvxI+Qq2iXtYCc+goHNR01QJwtGDSzuIMj3K\nf+YMrqBXZgYBwU2J/kCNTH31nfw96WTbOfNGwLwmVRDgguzFa+QzmQsJW4FTDMwc\n7cIjwdElQQVA+Gqa67uWmyDKAnoTkudmgAP+OTBkhnmc6NJuZDcy6f/iWUdl0X0u\n/tsfgXXR6ZovnHonM13ANiN7VmEVqFlEMa0VVmc09m+2FYjjlk8F9sC7Rc4wt214\n7u5YvCiCsFZwx44baP5viyRZgkJVpQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/\nMB0GA1UdDgQWBBQgCZCsc34nVTRbWsniXBPjnUTQ2DAOBgNVHQ8BAf8EBAMCAYYw\nDQYJKoZIhvcNAQEMBQADggIBAAQas3x1G6OpsIvQeMS9BbiHG3+kU9P/ba6Rrg+E\nlUz8TmL04Bcd+I+R0IyMBww4NznT+K60cFdk+1iSmT8Q55bpqRekyhcdWda1Qu0r\nJiTi7zz+3w2v66akofOnGevDpo/ilXGvCUJiLOBnHIF0izUqzvfczaMZGJT6xzKq\nPcEVRyAN1IHHf5KnGzUlVFv9SGy47xJ9I1vTk24JU0LWkSLzMMoxiUudVmHSqJtN\nu0h+n/x3Q6XguZi1/C1KOntH56ewRh8n5AF7c+9LJJSRM9wunb0Dzl7BEy21Xe9q\n03xRYjf5wn8eDELB8FZPa1PrNKXIOLYM9egdctbKEcpSsse060+tkyBrl507+SJT\n04lvJ4tcKjZFqxn+bUkDQvXYj0D3WK+iJ7a8kZJPRvz8BDHfIqancY8Tgw+69SUn\nWqIb+HNZqFuRs16WFSzlMksqzXv6wcDSyI7aZOmCGGEcYW9NHk8EuOnOQ+1UMT9C\nQb1GJcipjRzry3M4KN/t5vN3hIetB+/PhmgTO4gKhBETTEyPC3HC1QbdVfRndB6e\nU/NF2U/t8U2GvD26TTFLK4pScW7gyw4FQyXWs8g8FS8f+R2yWajhtS9++VDJQKom\nfAUISoCH+PlPRJpu/nHd1Zrddeiiis53rBaLbXu2J1Q3VqjWOmtj0HjxJJxWnYmz\nPqj2\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGATCCA+mgAwIBAgIRAI/U4z6+GF8/znpHM8Dq8G0wDQYJKoZIhvcNAQEMBQAw\ngZgxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwo\nQW1hem9uIFJEUyBhcC1zb3V0aC0yIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTAgFw0yMjA2MDYyMTQ4MThaGA8yMTIyMDYwNjIyNDgxOFowgZgx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwoQW1h\nem9uIFJEUyBhcC1zb3V0aC0yIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UEBwwH\nU2VhdHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK5WqMvyq888\n3uuOtEj1FcP6iZhqO5kJurdJF59Otp2WCg+zv6I+QwaAspEWHQsKD405XfFsTGKV\nSKTCwoMxwBniuChSmyhlagQGKSnRY9+znOWq0v7hgmJRwp6FqclTbubmr+K6lzPy\nhs86mEp68O5TcOTYWUlPZDqfKwfNTbtCl5YDRr8Gxb5buHmkp6gUSgDkRsXiZ5VV\nb3GBmXRqbnwo5ZRNAzQeM6ylXCn4jKs310lQGUrFbrJqlyxUdfxzqdlaIRn2X+HY\nxRSYbHox3LVNPpJxYSBRvpQVFSy9xbX8d1v6OM8+xluB31cbLBtm08KqPFuqx+cO\nI2H5F0CYqYzhyOSKJsiOEJT6/uH4ewryskZzncx9ae62SC+bB5n3aJLmOSTkKLFY\nYS5IsmDT2m3iMgzsJNUKVoCx2zihAzgBanFFBsG+Xmoq0aKseZUI6vd2qpd5tUST\n/wS1sNk0Ph7teWB2ACgbFE6etnJ6stwjHFZOj/iTYhlnR2zDRU8akunFdGb6CB4/\nhMxGJxaqXSJeGtHm7FpadlUTf+2ESbYcVW+ui/F8sdBJseQdKZf3VdZZMgM0bcaX\nNE47cauDTy72WdU9YJX/YXKYMLDE0iFHTnGpfVGsuWGPYhlwZ3dFIO07mWnCRM6X\nu5JXRB1oy5n5HRluMsmpSN/R92MeBxKFAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB\nAf8wHQYDVR0OBBYEFNtH0F0xfijSLHEyIkRGD9gW6NazMA4GA1UdDwEB/wQEAwIB\nhjANBgkqhkiG9w0BAQwFAAOCAgEACo+5jFeY3ygxoDDzL3xpfe5M0U1WxdKk+az4\n/OfjZvkoma7WfChi3IIMtwtKLYC2/seKWA4KjlB3rlTsCVNPnK6D+gAnybcfTKk/\nIRSPk92zagwQkSUWtAk80HpVfWJzpkSU16ejiajhedzOBRtg6BwsbSqLCDXb8hXr\neXWC1S9ZceGc+LcKRHewGWPu31JDhHE9bNcl9BFSAS0lYVZqxIRWxivZ+45j5uQv\nwPrC8ggqsdU3K8quV6dblUQzzA8gKbXJpCzXZihkPrYpQHTH0szvXvgebh+CNUAG\nrUxm8+yTS0NFI3U+RLbcLFVzSvjMOnEwCX0SPj5XZRYYXs5ajtQCoZhTUkkwpDV8\nRxXk8qGKiXwUxDO8GRvmvM82IOiXz5w2jy/h7b7soyIgdYiUydMq4Ja4ogB/xPZa\ngf4y0o+bremO15HFf1MkaU2UxPK5FFVUds05pKvpSIaQWbF5lw4LHHj4ZtVup7zF\nCLjPWs4Hs/oUkxLMqQDw0FBwlqa4uot8ItT8uq5BFpz196ZZ+4WXw5PVzfSxZibI\nC/nwcj0AS6qharXOs8yPnPFLPSZ7BbmWzFDgo3tpglRqo3LbSPsiZR+sLeivqydr\n0w4RK1btRda5Ws88uZMmW7+2aufposMKcbAdrApDEAVzHijbB/nolS5nsnFPHZoA\nKDPtFEk=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICtzCCAj2gAwIBAgIQVZ5Y/KqjR4XLou8MCD5pOjAKBggqhkjOPQQDAzCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIGFwLXNvdXRoZWFzdC00IFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIyMDUyNTE2NTgzM1oYDzIxMjIwNTI1MTc1ODMzWjCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIGFwLXNvdXRoZWFzdC00IFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEbo473OmpD5vkckdJajXg\nbrhmNFyoSa0WCY1njuZC2zMFp3zP6rX4I1r3imrYnJd9pFH/aSiV/r6L5ACE5RPx\n4qdg5SQ7JJUaZc3DWsTOiOed7BCZSzM+KTYK/2QzDMApo0IwQDAPBgNVHRMBAf8E\nBTADAQH/MB0GA1UdDgQWBBTmogc06+1knsej1ltKUOdWFvwgsjAOBgNVHQ8BAf8E\nBAMCAYYwCgYIKoZIzj0EAwMDaAAwZQIxAIs7TlLMbGTWNXpGiKf9DxaM07d/iDHe\nF/Vv/wyWSTGdobxBL6iArQNVXz0Gr4dvPAIwd0rsoa6R0x5mtvhdRPtM37FYrbHJ\npbV+OMusQqcSLseunLBoCHenvJW0QOCQ8EDY\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICvTCCAkOgAwIBAgIQCIY7E/bFvFN2lK9Kckb0dTAKBggqhkjOPQQDAzCBnjEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTcwNQYDVQQDDC5BbWF6\nb24gUkRTIFByZXZpZXcgdXMtZWFzdC0yIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYD\nVQQHDAdTZWF0dGxlMCAXDTIxMDUxODIxMDUxMFoYDzIxMjEwNTE4MjIwNTEwWjCB\nnjELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTcwNQYDVQQDDC5B\nbWF6b24gUkRTIFByZXZpZXcgdXMtZWFzdC0yIFJvb3QgQ0EgRUNDMzg0IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEMI0hzf1JCEOI\nEue4+DmcNnSs2i2UaJxHMrNGGfU7b42a7vwP53F7045ffHPBGP4jb9q02/bStZzd\nVHqfcgqkSRI7beBKjD2mfz82hF/wJSITTgCLs+NRpS6zKMFOFHUNo0IwQDAPBgNV\nHRMBAf8EBTADAQH/MB0GA1UdDgQWBBS8uF/6hk5mPLH4qaWv9NVZaMmyTjAOBgNV\nHQ8BAf8EBAMCAYYwCgYIKoZIzj0EAwMDaAAwZQIxAO7Pu9wzLyM0X7Q08uLIL+vL\nqaxe3UFuzFTWjM16MLJHbzLf1i9IDFKz+Q4hXCSiJwIwClMBsqT49BPUxVsJnjGr\nEbyEk6aOOVfY1p2yQL649zh3M4h8okLnwf+bYIb1YpeU\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEADCCAuigAwIBAgIQY+JhwFEQTe36qyRlUlF8ozANBgkqhkiG9w0BAQsFADCB\nmDELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChB\nbWF6b24gUkRTIGFmLXNvdXRoLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUxOTE5MjQxNloYDzIwNjEwNTE5MjAyNDE2WjCBmDEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChBbWF6\nb24gUkRTIGFmLXNvdXRoLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQHDAdT\nZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnIye77j6ev40\n8wRPyN2OdKFSUfI9jB20Or2RLO+RDoL43+USXdrze0Wv4HMRLqaen9BcmCfaKMp0\nE4SFo47bXK/O17r6G8eyq1sqnHE+v288mWtYH9lAlSamNFRF6YwA7zncmE/iKL8J\n0vePHMHP/B6svw8LULZCk+nZk3tgxQn2+r0B4FOz+RmpkoVddfqqUPMbKUxhM2wf\nfO7F6bJaUXDNMBPhCn/3ayKCjYr49ErmnpYV2ZVs1i34S+LFq39J7kyv6zAgbHv9\n+/MtRMoRB1CjpqW0jIOZkHBdYcd1o9p1zFn591Do1wPkmMsWdjIYj+6e7UXcHvOB\n2+ScIRAcnwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBQGtq2W\nYSyMMxpdQ3IZvcGE+nyZqTAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQAD\nggEBAEgoP3ixJsKSD5FN8dQ01RNHERl/IFbA7TRXfwC+L1yFocKnQh4Mp/msPRSV\n+OeHIvemPW/wtZDJzLTOFJ6eTolGekHK1GRTQ6ZqsWiU2fmiOP8ks4oSpI+tQ9Lw\nVrfZqTiEcS5wEIqyfUAZZfKDo7W1xp+dQWzfczSBuZJZwI5iaha7+ILM0r8Ckden\nTVTapc5pLSoO15v0ziRuQ2bT3V3nwu/U0MRK44z+VWOJdSiKxdnOYDs8hFNnKhfe\nklbTZF7kW7WbiNYB43OaAQBJ6BALZsIskEaqfeZT8FD71uN928TcEQyBDXdZpRN+\niGQZDGhht0r0URGMDSs9waJtTfA=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIF/jCCA+agAwIBAgIQXY/dmS+72lZPranO2JM9jjANBgkqhkiG9w0BAQwFADCB\nlzELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdB\nbWF6b24gUkRTIGFwLWVhc3QtMSBSb290IENBIFJTQTQwOTYgRzExEDAOBgNVBAcM\nB1NlYXR0bGUwIBcNMjEwNTI1MjEzNDUxWhgPMjEyMTA1MjUyMjM0NTFaMIGXMQsw\nCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjET\nMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpv\nbiBSRFMgYXAtZWFzdC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UEBwwHU2Vh\ndHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMyW9kBJjD/hx8e8\nb5E1sF42bp8TXsz1htSYE3Tl3T1Aq379DfEhB+xa/ASDZxt7/vwa81BkNo4M6HYq\nokYIXeE7cu5SnSgjWXqcERhgPevtAwgmhdE3yREe8oz2DyOi2qKKZqah+1gpPaIQ\nfK0uAqoeQlyHosye3KZZKkDHBatjBsQ5kf8lhuf7wVulEZVRHY2bP2X7N98PfbpL\nQdH7mWXzDtJJ0LiwFwds47BrkgK1pkHx2p1mTo+HMkfX0P6Fq1atkVC2RHHtbB/X\niYyH7paaHBzviFrhr679zNqwXIOKlbf74w3mS11P76rFn9rS1BAH2Qm6eY5S/Fxe\nHEKXm4kjPN63Zy0p3yE5EjPt54yPkvumOnT+RqDGJ2HCI9k8Ehcbve0ogfdRKNqQ\nVHWYTy8V33ndQRHZlx/CuU1yN61TH4WSoMly1+q1ihTX9sApmlQ14B2pJi/9DnKW\ncwECrPy1jAowC2UJ45RtC8UC05CbP9yrIy/7Noj8gQDiDOepm+6w1g6aNlWoiuQS\nkyI6nzz1983GcnOHya73ga7otXo0Qfg9jPghlYiMomrgshlSLDHZG0Ib/3hb8cnR\n1OcN9FpzNmVK2Ll1SmTMLrIhuCkyNYX9O/bOknbcf706XeESxGduSkHEjIw/k1+2\nAtteoq5dT6cwjnJ9hyhiueVlVkiDAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8w\nHQYDVR0OBBYEFLUI+DD7RJs+0nRnjcwIVWzzYSsFMA4GA1UdDwEB/wQEAwIBhjAN\nBgkqhkiG9w0BAQwFAAOCAgEAb1mcCHv4qMQetLGTBH9IxsB2YUUhr5dda0D2BcHr\nUtDbfd0VQs4tux6h/6iKwHPx0Ew8fuuYj99WknG0ffgJfNc5/fMspxR/pc1jpdyU\n5zMQ+B9wi0lOZPO9uH7/pr+d2odcNEy8zAwqdv/ihsTwLmGP54is9fVbsgzNW1cm\nHKAVL2t/Ope+3QnRiRilKCN1lzhav4HHdLlN401TcWRWKbEuxF/FgxSO2Hmx86pj\ne726lweCTMmnq/cTsPOVY0WMjs0or3eHDVlyLgVeV5ldyN+ptg3Oit60T05SRa58\nAJPTaVKIcGQ/gKkKZConpu7GDofT67P/ox0YNY57LRbhsx9r5UY4ROgz7WMQ1yoS\nY+19xizm+mBm2PyjMUbfwZUyCxsdKMwVdOq5/UmTmdms+TR8+m1uBHPOTQ2vKR0s\nPd/THSzPuu+d3dbzRyDSLQbHFFneG760CUlD/ZmzFlQjJ89/HmAmz8IyENq+Sjhx\nJgzy+FjVZb8aRUoYLlnffpUpej1n87Ynlr1GrvC4GsRpNpOHlwuf6WD4W0qUTsC/\nC9JO+fBzUj/aWlJzNcLEW6pte1SB+EdkR2sZvWH+F88TxemeDrV0jKJw5R89CDf8\nZQNfkxJYjhns+YeV0moYjqQdc7tq4i04uggEQEtVzEhRLU5PE83nlh/K2NZZm8Kj\ndIA=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID/zCCAuegAwIBAgIRAPVSMfFitmM5PhmbaOFoGfUwDQYJKoZIhvcNAQELBQAw\ngZcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEwMC4GA1UEAwwn\nQW1hem9uIFJEUyB1cy1lYXN0LTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyNTIyMzQ1N1oYDzIwNjEwNTI1MjMzNDU3WjCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIHVzLWVhc3QtMSBSb290IENBIFJTQTIwNDggRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDu9H7TBeGoDzMr\ndxN6H8COntJX4IR6dbyhnj5qMD4xl/IWvp50lt0VpmMd+z2PNZzx8RazeGC5IniV\n5nrLg0AKWRQ2A/lGGXbUrGXCSe09brMQCxWBSIYe1WZZ1iU1IJ/6Bp4D2YEHpXrW\nbPkOq5x3YPcsoitgm1Xh8ygz6vb7PsvJvPbvRMnkDg5IqEThapPjmKb8ZJWyEFEE\nQRrkCIRueB1EqQtJw0fvP4PKDlCJAKBEs/y049FoOqYpT3pRy0WKqPhWve+hScMd\n6obq8kxTFy1IHACjHc51nrGII5Bt76/MpTWhnJIJrCnq1/Uc3Qs8IVeb+sLaFC8K\nDI69Sw6bAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFE7PCopt\nlyOgtXX0Y1lObBUxuKaCMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOC\nAQEAFj+bX8gLmMNefr5jRJfHjrL3iuZCjf7YEZgn89pS4z8408mjj9z6Q5D1H7yS\njNETVV8QaJip1qyhh5gRzRaArgGAYvi2/r0zPsy+Tgf7v1KGL5Lh8NT8iCEGGXwF\ng3Ir+Nl3e+9XUp0eyyzBIjHtjLBm6yy8rGk9p6OtFDQnKF5OxwbAgip42CD75r/q\np421maEDDvvRFR4D+99JZxgAYDBGqRRceUoe16qDzbMvlz0A9paCZFclxeftAxv6\nQlR5rItMz/XdzpBJUpYhdzM0gCzAzdQuVO5tjJxmXhkSMcDP+8Q+Uv6FA9k2VpUV\nE/O5jgpqUJJ2Hc/5rs9VkAPXeA==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrzCCAjWgAwIBAgIQW0yuFCle3uj4vWiGU0SaGzAKBggqhkjOPQQDAzCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIGFmLXNvdXRoLTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjEwNTE5MTkzNTE2WhgPMjEyMTA1MTkyMDM1MTZaMIGXMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpvbiBS\nRFMgYWYtc291dGgtMSBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UEBwwHU2VhdHRs\nZTB2MBAGByqGSM49AgEGBSuBBAAiA2IABDPiKNZSaXs3Un/J/v+LTsFDANHpi7en\noL2qh0u0DoqNzEBTbBjvO23bLN3k599zh6CY3HKW0r2k1yaIdbWqt4upMCRCcUFi\nI4iedAmubgzh56wJdoMZztjXZRwDthTkJKNCMEAwDwYDVR0TAQH/BAUwAwEB/zAd\nBgNVHQ4EFgQUWbYkcrvVSnAWPR5PJhIzppcAnZIwDgYDVR0PAQH/BAQDAgGGMAoG\nCCqGSM49BAMDA2gAMGUCMCESGqpat93CjrSEjE7z+Hbvz0psZTHwqaxuiH64GKUm\nmYynIiwpKHyBrzjKBmeDoQIxANGrjIo6/b8Jl6sdIZQI18V0pAyLfLiZjlHVOnhM\nMOTVgr82ZuPoEHTX78MxeMnYlw==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECTCCAvGgAwIBAgIRAIbsx8XOl0sgTNiCN4O+18QwDQYJKoZIhvcNAQELBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1ub3J0aGVhc3QtMSBSb290IENBIFJTQTIwNDggRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjEwNTI1MjE1NDU4WhgPMjA2MTA1MjUyMjU0NTha\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgYXAtbm9ydGhlYXN0LTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\ntROxwXWCgn5R9gI/2Ivjzaxc0g95ysBjoJsnhPdJEHQb7w3y2kWrVWU3Y9fOitgb\nCEsnEC3PrhRnzNVW0fPsK6kbvOeCmjvY30rdbxbc8h+bjXfGmIOgAkmoULEr6Hc7\nG1Q/+tvv4lEwIs7bEaf+abSZxRJbZ0MBxhbHn7UHHDiMZYvzK+SV1MGCxx7JVhrm\nxWu3GC1zZCsGDhB9YqY9eR6PmjbqA5wy8vqbC57dZZa1QVtWIQn3JaRXn+faIzHx\nnLMN5CEWihsdmHBXhnRboXprE/OS4MFv1UrQF/XM/h5RBeCywpHePpC+Oe1T3LNC\niP8KzRFrjC1MX/WXJnmOVQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud\nDgQWBBS33XbXAUMs1znyZo4B0+B3D68WFTAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZI\nhvcNAQELBQADggEBADuadd2EmlpueY2VlrIIPC30QkoA1EOSoCmZgN6124apkoY1\nHiV4r+QNPljN4WP8gmcARnNkS7ZeR4fvWi8xPh5AxQCpiaBMw4gcbTMCuKDV68Pw\nP2dZCTMspvR3CDfM35oXCufdtFnxyU6PAyINUqF/wyTHguO3owRFPz64+sk3r2pT\nWHmJjG9E7V+KOh0s6REgD17Gqn6C5ijLchSrPUHB0wOIkeLJZndHxN/76h7+zhMt\nfFeNxPWHY2MfpcaLjz4UREzZPSB2U9k+y3pW1omCIcl6MQU9itGx/LpQE+H3ZeX2\nM2bdYd5L+ow+bdbGtsVKOuN+R9Dm17YpswF+vyQ=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGATCCA+mgAwIBAgIRAKlQ+3JX9yHXyjP/Ja6kZhkwDQYJKoZIhvcNAQEMBQAw\ngZgxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwo\nQW1hem9uIFJEUyBhcC1zb3V0aC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTAgFw0yMTA1MTkxNzQ1MjBaGA8yMTIxMDUxOTE4NDUyMFowgZgx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwoQW1h\nem9uIFJEUyBhcC1zb3V0aC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UEBwwH\nU2VhdHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKtahBrpUjQ6\nH2mni05BAKU6Z5USPZeSKmBBJN3YgD17rJ93ikJxSgzJ+CupGy5rvYQ0xznJyiV0\n91QeQN4P+G2MjGQR0RGeUuZcfcZitJro7iAg3UBvw8WIGkcDUg+MGVpRv/B7ry88\n7E4OxKb8CPNoa+a9j6ABjOaaxaI22Bb7j3OJ+JyMICs6CU2bgkJaj3VUV9FCNUOc\nh9PxD4jzT9yyGYm/sK9BAT1WOTPG8XQUkpcFqy/IerZDfiQkf1koiSd4s5VhBkUn\naQHOdri/stldT7a+HJFVyz2AXDGPDj+UBMOuLq0K6GAT6ThpkXCb2RIf4mdTy7ox\nN5BaJ+ih+Ro3ZwPkok60egnt/RN98jgbm+WstgjJWuLqSNInnMUgkuqjyBWwePqX\nKib+wdpyx/LOzhKPEFpeMIvHQ3A0sjlulIjnh+j+itezD+dp0UNxMERlW4Bn/IlS\nsYQVNfYutWkRPRLErXOZXtlxxkI98JWQtLjvGzQr+jywxTiw644FSLWdhKa6DtfU\n2JWBHqQPJicMElfZpmfaHZjtXuCZNdZQXWg7onZYohe281ZrdFPOqC4rUq7gYamL\nT+ZB+2P+YCPOLJ60bj/XSvcB7mesAdg8P0DNddPhHUFWx2dFqOs1HxIVB4FZVA9U\nPpbv4a484yxjTgG7zFZNqXHKTqze6rBBAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB\nAf8wHQYDVR0OBBYEFCEAqjighncv/UnWzBjqu1Ka2Yb4MA4GA1UdDwEB/wQEAwIB\nhjANBgkqhkiG9w0BAQwFAAOCAgEAYyvumblckIXlohzi3QiShkZhqFzZultbFIu9\nGhA5CDar1IFMhJ9vJpO9nUK/camKs1VQRs8ZsBbXa0GFUM2p8y2cgUfLwFULAiC/\nsWETyW5lcX/xc4Pyf6dONhqFJt/ovVBxNZtcmMEWv/1D6Tf0nLeEb0P2i/pnSRR4\nOq99LVFjossXtyvtaq06OSiUUZ1zLPvV6AQINg8dWeBOWRcQYhYcEcC2wQ06KShZ\n0ahuu7ar5Gym3vuLK6nH+eQrkUievVomN/LpASrYhK32joQ5ypIJej3sICIgJUEP\nUoeswJ+Z16f3ECoL1OSnq4A0riiLj1ZGmVHNhM6m/gotKaHNMxsK9zsbqmuU6IT/\nP6cR0S+vdigQG8ZNFf5vEyVNXhl8KcaJn6lMD/gMB2rY0qpaeTg4gPfU5wcg8S4Y\nC9V//tw3hv0f2n+8kGNmqZrylOQDQWSSo8j8M2SRSXiwOHDoTASd1fyBEIqBAwzn\nLvXVg8wQd1WlmM3b0Vrsbzltyh6y4SuKSkmgufYYvC07NknQO5vqvZcNoYbLNea3\n76NkFaMHUekSbwVejZgG5HGwbaYBgNdJEdpbWlA3X4yGRVxknQSUyt4dZRnw/HrX\nk8x6/wvtw7wht0/DOqz1li7baSsMazqxx+jDdSr1h9xML416Q4loFCLgqQhil8Jq\nEm4Hy3A=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGBTCCA+2gAwIBAgIRAJfKe4Zh4aWNt3bv6ZjQwogwDQYJKoZIhvcNAQEMBQAw\ngZoxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEzMDEGA1UEAwwq\nQW1hem9uIFJEUyBjYS1jZW50cmFsLTEgUm9vdCBDQSBSU0E0MDk2IEcxMRAwDgYD\nVQQHDAdTZWF0dGxlMCAXDTIxMDUyMTIyMDg1M1oYDzIxMjEwNTIxMjMwODUzWjCB\nmjELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTMwMQYDVQQDDCpB\nbWF6b24gUkRTIGNhLWNlbnRyYWwtMSBSb290IENBIFJTQTQwOTYgRzExEDAOBgNV\nBAcMB1NlYXR0bGUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCpgUH6\nCrzd8cOw9prAh2rkQqAOx2vtuI7xX4tmBG4I/um28eBjyVmgwQ1fpq0Zg2nCKS54\nNn0pCmT7f3h6Bvopxn0J45AzXEtajFqXf92NQ3iPth95GVfAJSD7gk2LWMhpmID9\nJGQyoGuDPg+hYyr292X6d0madzEktVVGO4mKTF989qEg+tY8+oN0U2fRTrqa2tZp\niYsmg350ynNopvntsJAfpCO/srwpsqHHLNFZ9jvhTU8uW90wgaKO9i31j/mHggCE\n+CAOaJCM3g+L8DPl/2QKsb6UkBgaaIwKyRgKSj1IlgrK+OdCBCOgM9jjId4Tqo2j\nZIrrPBGl6fbn1+etZX+2/tf6tegz+yV0HHQRAcKCpaH8AXF44bny9andslBoNjGx\nH6R/3ib4FhPrnBMElzZ5i4+eM/cuPC2huZMBXb/jKgRC/QN1Wm3/nah5FWq+yn+N\ntiAF10Ga0BYzVhHDEwZzN7gn38bcY5yi/CjDUNpY0OzEe2+dpaBKPlXTaFfn9Nba\nCBmXPRF0lLGGtPeTAgjcju+NEcVa82Ht1pqxyu2sDtbu3J5bxp4RKtj+ShwN8nut\nTkf5Ea9rSmHEY13fzgibZlQhXaiFSKA2ASUwgJP19Putm0XKlBCNSGCoECemewxL\n+7Y8FszS4Uu4eaIwvXVqUEE2yf+4ex0hqQ1acQIDAQABo0IwQDAPBgNVHRMBAf8E\nBTADAQH/MB0GA1UdDgQWBBSeUnXIRxNbYsZLtKomIz4Y1nOZEzAOBgNVHQ8BAf8E\nBAMCAYYwDQYJKoZIhvcNAQEMBQADggIBAIpRvxVS0dzoosBh/qw65ghPUGSbP2D4\ndm6oYCv5g/zJr4fR7NzEbHOXX5aOQnHbQL4M/7veuOCLNPOW1uXwywMg6gY+dbKe\nYtPVA1as8G9sUyadeXyGh2uXGsziMFXyaESwiAXZyiYyKChS3+g26/7jwECFo5vC\nXGhWpIO7Hp35Yglp8AnwnEAo/PnuXgyt2nvyTSrxlEYa0jus6GZEZd77pa82U1JH\nqFhIgmKPWWdvELA3+ra1nKnvpWM/xX0pnMznMej5B3RT3Y+k61+kWghJE81Ix78T\n+tG4jSotgbaL53BhtQWBD1yzbbilqsGE1/DXPXzHVf9yD73fwh2tGWSaVInKYinr\na4tcrB3KDN/PFq0/w5/21lpZjVFyu/eiPj6DmWDuHW73XnRwZpHo/2OFkei5R7cT\nrn/YdDD6c1dYtSw5YNnS6hdCQ3sOiB/xbPRN9VWJa6se79uZ9NLz6RMOr73DNnb2\nbhIR9Gf7XAA5lYKqQk+A+stoKbIT0F65RnkxrXi/6vSiXfCh/bV6B41cf7MY/6YW\nehserSdjhQamv35rTFdM+foJwUKz1QN9n9KZhPxeRmwqPitAV79PloksOnX25ElN\nSlyxdndIoA1wia1HRd26EFm2pqfZ2vtD2EjU3wD42CXX4H8fKVDna30nNFSYF0yn\njGKc3k6UNxpg\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIF/jCCA+agAwIBAgIQaRHaEqqacXN20e8zZJtmDDANBgkqhkiG9w0BAQwFADCB\nlzELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdB\nbWF6b24gUkRTIHVzLWVhc3QtMSBSb290IENBIFJTQTQwOTYgRzExEDAOBgNVBAcM\nB1NlYXR0bGUwIBcNMjEwNTI1MjIzODM1WhgPMjEyMTA1MjUyMzM4MzVaMIGXMQsw\nCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjET\nMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpv\nbiBSRFMgdXMtZWFzdC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UEBwwHU2Vh\ndHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAInfBCaHuvj6Rb5c\nL5Wmn1jv2PHtEGMHm+7Z8dYosdwouG8VG2A+BCYCZfij9lIGszrTXkY4O7vnXgru\nJUNdxh0Q3M83p4X+bg+gODUs3jf+Z3Oeq7nTOk/2UYvQLcxP4FEXILxDInbQFcIx\nyen1ESHggGrjEodgn6nbKQNRfIhjhW+TKYaewfsVWH7EF2pfj+cjbJ6njjgZ0/M9\nVZifJFBgat6XUTOf3jwHwkCBh7T6rDpgy19A61laImJCQhdTnHKvzTpxcxiLRh69\nZObypR7W04OAUmFS88V7IotlPmCL8xf7kwxG+gQfvx31+A9IDMsiTqJ1Cc4fYEKg\nbL+Vo+2Ii4W2esCTGVYmHm73drznfeKwL+kmIC/Bq+DrZ+veTqKFYwSkpHRyJCEe\nU4Zym6POqQ/4LBSKwDUhWLJIlq99bjKX+hNTJykB+Lbcx0ScOP4IAZQoxmDxGWxN\nS+lQj+Cx2pwU3S/7+OxlRndZAX/FKgk7xSMkg88HykUZaZ/ozIiqJqSnGpgXCtED\noQ4OJw5ozAr+/wudOawaMwUWQl5asD8fuy/hl5S1nv9XxIc842QJOtJFxhyeMIXt\nLVECVw/dPekhMjS3Zo3wwRgYbnKG7YXXT5WMxJEnHu8+cYpMiRClzq2BEP6/MtI2\nAZQQUFu2yFjRGL2OZA6IYjxnXYiRAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8w\nHQYDVR0OBBYEFADCcQCPX2HmkqQcmuHfiQ2jjqnrMA4GA1UdDwEB/wQEAwIBhjAN\nBgkqhkiG9w0BAQwFAAOCAgEASXkGQ2eUmudIKPeOIF7RBryCoPmMOsqP0+1qxF8l\npGkwmrgNDGpmd9s0ArfIVBTc1jmpgB3oiRW9c6n2OmwBKL4UPuQ8O3KwSP0iD2sZ\nKMXoMEyphCEzW1I2GRvYDugL3Z9MWrnHkoaoH2l8YyTYvszTvdgxBPpM2x4pSkp+\n76d4/eRpJ5mVuQ93nC+YG0wXCxSq63hX4kyZgPxgCdAA+qgFfKIGyNqUIqWgeyTP\nn5OgKaboYk2141Rf2hGMD3/hsGm0rrJh7g3C0ZirPws3eeJfulvAOIy2IZzqHUSY\njkFzraz6LEH3IlArT3jUPvWKqvh2lJWnnp56aqxBR7qHH5voD49UpJWY1K0BjGnS\nOHcurpp0Yt/BIs4VZeWdCZwI7JaSeDcPMaMDBvND3Ia5Fga0thgYQTG6dE+N5fgF\nz+hRaujXO2nb0LmddVyvE8prYlWRMuYFv+Co8hcMdJ0lEZlfVNu0jbm9/GmwAZ+l\n9umeYO9yz/uC7edC8XJBglMAKUmVK9wNtOckUWAcCfnPWYLbYa/PqtXBYcxrso5j\niaS/A7iEW51uteHBGrViCy1afGG+hiUWwFlesli+Rq4dNstX3h6h2baWABaAxEVJ\ny1RnTQSz6mROT1VmZSgSVO37rgIyY0Hf0872ogcTS+FfvXgBxCxsNWEbiQ/XXva4\n0Ws=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICtDCCAjqgAwIBAgIRAMyaTlVLN0ndGp4ffwKAfoMwCgYIKoZIzj0EAwMwgZkx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEyMDAGA1UEAwwpQW1h\nem9uIFJEUyBtZS1jZW50cmFsLTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcM\nB1NlYXR0bGUwIBcNMjIwNTA3MDA0NDM3WhgPMjEyMjA1MDcwMTQ0MzdaMIGZMQsw\nCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjET\nMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMjAwBgNVBAMMKUFtYXpv\nbiBSRFMgbWUtY2VudHJhbC0xIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQHDAdT\nZWF0dGxlMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE19nCV1nsI6CohSor13+B25cr\nzg+IHdi9Y3L7ziQnHWI6yjBazvnKD+oC71aRRlR8b5YXsYGUQxWzPLHN7EGPcSGv\nbzA9SLG1KQYCJaQ0m9Eg/iGrwKWOgylbhVw0bCxoo0IwQDAPBgNVHRMBAf8EBTAD\nAQH/MB0GA1UdDgQWBBS4KsknsJXM9+QPEkBdZxUPaLr11zAOBgNVHQ8BAf8EBAMC\nAYYwCgYIKoZIzj0EAwMDaAAwZQIxAJaRgrYIEfXQMZQQDxMTYS0azpyWSseQooXo\nL3nYq4OHGBgYyQ9gVjvRYWU85PXbfgIwdi82DtANQFkCu+j+BU0JBY/uRKPEeYzo\nJG92igKIcXPqCoxIJ7lJbbzmuf73gQu5\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGATCCA+mgAwIBAgIRAJwCobx0Os8F7ihbJngxrR8wDQYJKoZIhvcNAQEMBQAw\ngZgxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwo\nQW1hem9uIFJEUyBtZS1zb3V0aC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTAgFw0yMTA1MjAxNzE1MzNaGA8yMTIxMDUyMDE4MTUzM1owgZgx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwoQW1h\nem9uIFJEUyBtZS1zb3V0aC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UEBwwH\nU2VhdHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANukKwlm+ZaI\nY5MkWGbEVLApEyLmlrHLEg8PfiiEa9ts7jssQcin3bzEPdTqGr5jo91ONoZ3ccWq\nxJgg1W3bLu5CAO2CqIOXTXHRyCO/u0Ch1FGgWB8xETPSi3UHt/Vn1ltdO6DYdbDU\nmYgwzYrvLBdRCwxsb9o+BuYQHVFzUYonqk/y9ujz3gotzFq7r55UwDTA1ita3vb4\neDKjIb4b1M4Wr81M23WHonpje+9qkkrAkdQcHrkgvSCV046xsq/6NctzwCUUNsgF\n7Q1a8ut5qJEYpz5ta8vI1rqFqAMBqCbFjRYlmAoTTpFPOmzAVxV+YoqTrW5A16su\n/2SXlMYfJ/n/ad/QfBNPPAAQMpyOr2RCL/YiL/PFZPs7NxYjnZHNWxMLSPgFyI+/\nt2klnn5jR76KJK2qimmaXedB90EtFsMRUU1e4NxH9gDuyrihKPJ3aVnZ35mSipvR\n/1KB8t8gtFXp/VQaz2sg8+uxPMKB81O37fL4zz6Mg5K8+aq3ejBiyHucpFGnsnVB\n3kQWeD36ONkybngmgWoyPceuSWm1hQ0Z7VRAQX+KlxxSaHmSaIk1XxZu9h9riQHx\nfMuev6KXjRn/CjCoUTn+7eFrt0dT5GryQEIZP+nA0oq0LKxogigHNZlwAT4flrqb\nJUfZJrqgoce5HjZSXl10APbtPjJi0fW9AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB\nAf8wHQYDVR0OBBYEFEfV+LztI29OVDRm0tqClP3NrmEWMA4GA1UdDwEB/wQEAwIB\nhjANBgkqhkiG9w0BAQwFAAOCAgEAvSNe+0wuk53KhWlRlRf2x/97H2Q76X3anzF0\n5fOSVm022ldALzXMzqOfdnoKIhAu2oVKiHHKs7mMas+T6TL+Mkphx0CYEVxFE3PG\n061q3CqJU+wMm9W9xsB79oB2XG47r1fIEywZZ3GaRsatAbjcNOT8uBaATPQAfJFN\nzjFe4XyN+rA4cFrYNvfHTeu5ftrYmvks7JlRaJgEGWsz+qXux7uvaEEVPqEumd2H\nuYeaRNOZ2V23R009X5lbgBFx9tq5VDTnKhQiTQ2SeT0rc1W3Dz5ik6SbQQNP3nSR\n0Ywy7r/sZ3fcDyfFiqnrVY4Ympfvb4YW2PZ6OsQJbzH6xjdnTG2HtzEU30ngxdp1\nWUEF4zt6rjJCp7QBUqXgdlHvJqYu6949qtWjEPiFN9uSsRV2i1YDjJqN52dLjAPn\nAipJKo8x1PHTwUzuITqnB9BdP+5TlTl8biJfkEf/+08eWDTLlDHr2VrZLOLompTh\nbS5OrhDmqA2Q+O+EWrTIhMflwwlCpR9QYM/Xwvlbad9H0FUHbJsCVNaru3wGOgWo\ntt3dNSK9Lqnv/Ej9K9v6CRr36in4ylJKivhJ5B9E7ABHg7EpBJ1xi7O5eNDkNoJG\n+pFyphJq3AkBR2U4ni2tUaTAtSW2tks7IaiDV+UMtqZyGabT5ISQfWLLtLHSWn2F\nTspdjbg=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIECTCCAvGgAwIBAgIRAJZFh4s9aZGzKaTMLrSb4acwDQYJKoZIhvcNAQELBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBCZXRhIHVzLWVhc3QtMSBSb290IENBIFJTQTIwNDggRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjEwNTE4MjEyODQxWhgPMjA2MTA1MTgyMjI4NDFa\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgQmV0YSB1cy1lYXN0LTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA\n17i2yoU6diep+WrqxIn2CrDEO2NdJVwWTSckx4WMZlLpkQDoymSmkNHjq9ADIApD\nA31Cx+843apL7wub8QkFZD0Tk7/ThdHWJOzcAM3ov98QBPQfOC1W5zYIIRP2F+vQ\nTRETHQnLcW3rLv0NMk5oQvIKpJoC9ett6aeVrzu+4cU4DZVWYlJUoC/ljWzCluau\n8blfW0Vwin6OB7s0HCG5/wijQWJBU5SrP/KAIPeQi1GqG5efbqAXDr/ple0Ipwyo\nXjjl73LenGUgqpANlC9EAT4i7FkJcllLPeK3NcOHjuUG0AccLv1lGsHAxZLgjk/x\nz9ZcnVV9UFWZiyJTKxeKPwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud\nDgQWBBRWyMuZUo4gxCR3Luf9/bd2AqZ7CjAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZI\nhvcNAQELBQADggEBAIqN2DlIKlvDFPO0QUZQVFbsi/tLdYM98/vvzBpttlTGVMyD\ngJuQeHVz+MnhGIwoCGOlGU3OOUoIlLAut0+WG74qYczn43oA2gbMd7HoD7oL/IGg\nnjorBwJVcuuLv2G//SqM3nxGcLRtkRnQ+lvqPxMz9+0fKFUn6QcIDuF0QSfthLs2\nWSiGEPKO9c9RSXdRQ4pXA7c3hXng8P4A2ZmdciPne5Nu4I4qLDGZYRrRLRkNTrOi\nTyS6r2HNGUfgF7eOSeKt3NWL+mNChcYj71/Vycf5edeczpUgfnWy9WbPrK1svKyl\naAs2xg+X6O8qB+Mnj2dNBzm+lZIS3sIlm+nO9sg=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrjCCAjSgAwIBAgIRAPAlEk8VJPmEzVRRaWvTh2AwCgYIKoZIzj0EAwMwgZYx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEvMC0GA1UEAwwmQW1h\nem9uIFJEUyB1cy1lYXN0LTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjEwNTI1MjI0MTU1WhgPMjEyMTA1MjUyMzQxNTVaMIGWMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExLzAtBgNVBAMMJkFtYXpvbiBS\nRFMgdXMtZWFzdC0xIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQHDAdTZWF0dGxl\nMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEx5xjrup8II4HOJw15NTnS3H5yMrQGlbj\nEDA5MMGnE9DmHp5dACIxmPXPMe/99nO7wNdl7G71OYPCgEvWm0FhdvVUeTb3LVnV\nBnaXt32Ek7/oxGk1T+Df03C+W0vmuJ+wo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0G\nA1UdDgQWBBTGXmqBWN/1tkSea4pNw0oHrjk2UDAOBgNVHQ8BAf8EBAMCAYYwCgYI\nKoZIzj0EAwMDaAAwZQIxAIqqZWCSrIkZ7zsv/FygtAusW6yvlL935YAWYPVXU30m\njkMFLM+/RJ9GMvnO8jHfCgIwB+whlkcItzE9CRQ6CsMo/d5cEHDUu/QW6jSIh9BR\nOGh9pTYPVkUbBiKPA7lVVhre\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIF/zCCA+egAwIBAgIRAJGY9kZITwfSRaAS/bSBOw8wDQYJKoZIhvcNAQEMBQAw\ngZcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEwMC4GA1UEAwwn\nQW1hem9uIFJEUyBzYS1lYXN0LTEgUm9vdCBDQSBSU0E0MDk2IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUxOTE4MTEyMFoYDzIxMjEwNTE5MTkxMTIwWjCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIHNhLWVhc3QtMSBSb290IENBIFJTQTQwOTYgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDe2vlDp6Eo4WQi\nWi32YJOgdXHhxTFrLjB9SRy22DYoMaWfginJIwJcSR8yse8ZDQuoNhERB9LRggAE\neng23mhrfvtL1yQkMlZfBu4vG1nOb22XiPFzk7X2wqz/WigdYNBCqa1kK3jrLqPx\nYUy7jk2oZle4GLVRTNGuMfcid6S2hs3UCdXfkJuM2z2wc3WUlvHoVNk37v2/jzR/\nhSCHZv5YHAtzL/kLb/e64QkqxKll5QmKhyI6d7vt6Lr1C0zb+DmwxUoJhseAS0hI\ndRk5DklMb4Aqpj6KN0ss0HAYqYERGRIQM7KKA4+hxDMUkJmt8KqWKZkAlCZgflzl\nm8NZ31o2cvBzf6g+VFHx+6iVrSkohVQydkCxx7NJ743iPKsh8BytSM4qU7xx4OnD\nH2yNXcypu+D5bZnVZr4Pywq0w0WqbTM2bpYthG9IC4JeVUvZ2mDc01lqOlbMeyfT\nog5BRPLDXdZK8lapo7se2teh64cIfXtCmM2lDSwm1wnH2iSK+AWZVIM3iE45WSGc\nvZ+drHfVgjJJ5u1YrMCWNL5C2utFbyF9Obw9ZAwm61MSbPQL9JwznhNlCh7F2ANW\nZHWQPNcOAJqzE4uVcJB1ZeVl28ORYY1668lx+s9yYeMXk3QQdj4xmdnvoBFggqRB\nZR6Z0D7ZohADXe024RzEo1TukrQgKQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/\nMB0GA1UdDgQWBBT7Vs4Y5uG/9aXnYGNMEs6ycPUT3jAOBgNVHQ8BAf8EBAMCAYYw\nDQYJKoZIhvcNAQEMBQADggIBACN4Htp2PvGcQA0/sAS+qUVWWJoAXSsu8Pgc6Gar\n7tKVlNJ/4W/a6pUV2Xo/Tz3msg4yiE8sMESp2k+USosD5n9Alai5s5qpWDQjrqrh\n76AGyF2nzve4kIN19GArYhm4Mz/EKEG1QHYvBDGgXi3kNvL/a2Zbybp+3LevG+q7\nxtx4Sz9yIyMzuT/6Y7ijtiMZ9XbuxGf5wab8UtwT3Xq1UradJy0KCkzRJAz/Wy/X\nHbTkEvKSaYKExH6sLo0jqdIjV/d2Io31gt4e0Ly1ER2wPyFa+pc/swu7HCzrN+iz\nA2ZM4+KX9nBvFyfkHLix4rALg+WTYJa/dIsObXkdZ3z8qPf5A9PXlULiaa1mcP4+\nrokw74IyLEYooQ8iSOjxumXhnkTS69MAdGzXYE5gnHokABtGD+BB5qLhtLt4fqAp\n8AyHpQWMyV42M9SJLzQ+iOz7kAgJOBOaVtJI3FV/iAg/eqWVm3yLuUTWDxSHrKuL\nN19+pSjF6TNvUSFXwEa2LJkfDqIOCE32iOuy85QY//3NsgrSQF6UkSPa95eJrSGI\n3hTRYYh3Up2GhBGl1KUy7/o0k3KRZTk4s38fylY8bZ3TakUOH5iIGoHyFVVcp361\nPyy25SzFSmNalWoQd9wZVc/Cps2ldxhcttM+WLkFNzprd0VJa8qTz8vYtHP0ouDN\nnWS0\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGCTCCA/GgAwIBAgIRAOY7gfcBZgR2tqfBzMbFQCUwDQYJKoZIhvcNAQEMBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1zb3V0aGVhc3QtNCBSb290IENBIFJTQTQwOTYgRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjIwNTI1MTY1NDU5WhgPMjEyMjA1MjUxNzU0NTla\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgYXAtc291dGhlYXN0LTQgUm9vdCBDQSBSU0E0MDk2IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA\nlfxER43FuLRdL08bddF0YhbCP+XXKj1A/TFMXmd2My8XDei8rPXFYyyjMig9+xZw\nuAsIxLwz8uiA26CKA8bCZKg5VG2kTeOJAfvBJaLv1CZefs3Z4Uf1Sjvm6MF2yqEj\nGoORfyfL9HiZFTDuF/hcjWoKYCfMuG6M/wO8IbdICrX3n+BiYQJu/pFO660Mg3h/\n8YBBWYDbHoCiH/vkqqJugQ5BM3OI5nsElW51P1icEEqti4AZ7JmtSv9t7fIFBVyR\noaEyOgpp0sm193F/cDJQdssvjoOnaubsSYm1ep3awZAUyGN/X8MBrPY95d0hLhfH\nEhc5Icyg+hsosBljlAyksmt4hFQ9iBnWIz/ZTfGMck+6p3HVL9RDgvluez+rWv59\n8q7omUGsiPApy5PDdwI/Wt/KtC34/2sjslIJfvgifdAtkRPkhff1WEwER00ADrN9\neGGInaCpJfb1Rq8cV2n00jxg7DcEd65VR3dmIRb0bL+jWK62ni/WdEyomAOMfmGj\naWf78S/4rasHllWJ+QwnaUYY3u6N8Cgio0/ep4i34FxMXqMV3V0/qXdfhyabi/LM\nwCxNo1Dwt+s6OtPJbwO92JL+829QAxydfmaMTeHBsgMPkG7RwAekeuatKGHNsc2Z\nx2Q4C2wVvOGAhcHwxfM8JfZs3nDSZJndtVVnFlUY0UECAwEAAaNCMEAwDwYDVR0T\nAQH/BAUwAwEB/zAdBgNVHQ4EFgQUpnG7mWazy6k97/tb5iduRB3RXgQwDgYDVR0P\nAQH/BAQDAgGGMA0GCSqGSIb3DQEBDAUAA4ICAQCDLqq1Wwa9Tkuv7vxBnIeVvvFF\necTn+P+wJxl9Qa2ortzqTHZsBDyJO62d04AgBwiDXkJ9a+bthgG0H1J7Xee8xqv1\nxyX2yKj24ygHjspLotKP4eDMdDi5TYq+gdkbPmm9Q69B1+W6e049JVGXvWG8/7kU\nigxeuCYwtCCdUPRLf6D8y+1XMGgVv3/DSOHWvTg3MJ1wJ3n3+eve3rjGdRYWZeJu\nk21HLSZYzVrCtUsh2YAeLnUbSxVuT2Xr4JehYe9zW5HEQ8Je/OUfnCy9vzoN/ITw\nosAH+EBJQey7RxEDqMwCaRefH0yeHFcnOll0OXg/urnQmwbEYzQ1uutJaBPsjU0J\nQf06sMxI7GiB5nPE+CnI2sM6A9AW9kvwexGXpNJiLxF8dvPQthpOKGcYu6BFvRmt\n6ctfXd9b7JJoVqMWuf5cCY6ihpk1e9JTlAqu4Eb/7JNyGiGCR40iSLvV28un9wiE\nplrdYxwcNYq851BEu3r3AyYWw/UW1AKJ5tM+/Gtok+AphMC9ywT66o/Kfu44mOWm\nL3nSLSWEcgfUVgrikpnyGbUnGtgCmHiMlUtNVexcE7OtCIZoVAlCGKNu7tyuJf10\nQlk8oIIzfSIlcbHpOYoN79FkLoDNc2er4Gd+7w1oPQmdAB0jBJnA6t0OUBPKdDdE\nUfff2jrbfbzECn1ELg==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGCDCCA/CgAwIBAgIQIuO1A8LOnmc7zZ/vMm3TrDANBgkqhkiG9w0BAQwFADCB\nnDELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTUwMwYDVQQDDCxB\nbWF6b24gUkRTIGFwLXNvdXRoZWFzdC0yIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4G\nA1UEBwwHU2VhdHRsZTAgFw0yMTA1MjQyMDQ2MThaGA8yMTIxMDUyNDIxNDYxOFow\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1zb3V0aGVhc3QtMiBSb290IENBIFJTQTQwOTYgRzExEDAO\nBgNVBAcMB1NlYXR0bGUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDq\nqRHKbG8ZK6/GkGm2cenznEF06yHwI1gD5sdsHjTgekDZ2Dl9RwtDmUH2zFuIQwGj\nSeC7E2iKwrJRA5wYzL9/Vk8NOILEKQOP8OIKUHbc7q8rEtjs401KcU6pFBBEdO9G\nCTiRhogq+8mhC13AM/UriZJbKhwgM2UaDOzAneGMhQAGjH8z83NsNcPxpYVE7tqM\nsch5yLtIJLkJRusrmQQTeHUev16YNqyUa+LuFclFL0FzFCimkcxUhXlbfEKXbssS\nyPzjiv8wokGyo7+gA0SueceMO2UjfGfute3HlXZDcNvBbkSY+ver41jPydyRD6Qq\noEkh0tyIbPoa3oU74kwipJtz6KBEA3u3iq61OUR0ENhR2NeP7CSKrC24SnQJZ/92\nqxusrbyV/0w+U4m62ug/o4hWNK1lUcc2AqiBOvCSJ7qpdteTFxcEIzDwYfERDx6a\nd9+3IPvzMb0ZCxBIIUFMxLTF7yAxI9s6KZBBXSZ6tDcCCYIgEysEPRWMRAcG+ye/\nfZVn9Vnzsj4/2wchC2eQrYpb1QvG4eMXA4M5tFHKi+/8cOPiUzJRgwS222J8YuDj\nyEBval874OzXk8H8Mj0JXJ/jH66WuxcBbh5K7Rp5oJn7yju9yqX6qubY8gVeMZ1i\nu4oXCopefDqa35JplQNUXbWwSebi0qJ4EK0V8F9Q+QIDAQABo0IwQDAPBgNVHRMB\nAf8EBTADAQH/MB0GA1UdDgQWBBT4ysqCxaPe7y+g1KUIAenqu8PAgzAOBgNVHQ8B\nAf8EBAMCAYYwDQYJKoZIhvcNAQEMBQADggIBALU8WN35KAjPZEX65tobtCDQFkIO\nuJjv0alD7qLB0i9eY80C+kD87HKqdMDJv50a5fZdqOta8BrHutgFtDm+xo5F/1M3\nu5/Vva5lV4xy5DqPajcF4Mw52czYBmeiLRTnyPJsU93EQIC2Bp4Egvb6LI4cMOgm\n4pY2hL8DojOC5PXt4B1/7c1DNcJX3CMzHDm4SMwiv2MAxSuC/cbHXcWMk+qXdrVx\n+ayLUSh8acaAOy3KLs1MVExJ6j9iFIGsDVsO4vr4ZNsYQiyHjp+L8ops6YVBO5AT\nk/pI+axHIVsO5qiD4cFWvkGqmZ0gsVtgGUchZaacboyFsVmo6QPrl28l6LwxkIEv\nGGJYvIBW8sfqtGRspjfX5TlNy5IgW/VOwGBdHHsvg/xpRo31PR3HOFw7uPBi7cAr\nFiZRLJut7af98EB2UvovZnOh7uIEGPeecQWeOTQfJeWet2FqTzFYd0NUMgqPuJx1\nvLKferP+ajAZLJvVnW1J7Vccx/pm0rMiUJEf0LRb/6XFxx7T2RGjJTi0EzXODTYI\ngnLfBBjnolQqw+emf4pJ4pAtly0Gq1KoxTG2QN+wTd4lsCMjnelklFDjejwnl7Uy\nvtxzRBAu/hi/AqDkDFf94m6j+edIrjbi9/JDFtQ9EDlyeqPgw0qwi2fwtJyMD45V\nfejbXelUSJSzDIdY\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGCTCCA/GgAwIBAgIRAN7Y9G9i4I+ZaslPobE7VL4wDQYJKoZIhvcNAQEMBQAw\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1ub3J0aGVhc3QtMiBSb290IENBIFJTQTQwOTYgRzExEDAO\nBgNVBAcMB1NlYXR0bGUwIBcNMjEwNTIwMTYzMzIzWhgPMjEyMTA1MjAxNzMzMjNa\nMIGcMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywg\nSW5jLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExNTAzBgNVBAMM\nLEFtYXpvbiBSRFMgYXAtbm9ydGhlYXN0LTIgUm9vdCBDQSBSU0E0MDk2IEcxMRAw\nDgYDVQQHDAdTZWF0dGxlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA\n4BEPCiIfiK66Q/qa8k+eqf1Q3qsa6Xuu/fPkpuStXVBShhtXd3eqrM0iT4Xxs420\nVa0vSB3oZ7l86P9zYfa60n6PzRxdYFckYX330aI7L/oFIdaodB/C9szvROI0oLG+\n6RwmIF2zcprH0cTby8MiM7G3v9ykpq27g4WhDC1if2j8giOQL3oHpUaByekZNIHF\ndIllsI3RkXmR3xmmxoOxJM1B9MZi7e1CvuVtTGOnSGpNCQiqofehTGwxCN2wFSK8\nxysaWlw48G0VzZs7cbxoXMH9QbMpb4tpk0d+T8JfAPu6uWO9UwCLWWydf0CkmA/+\nD50/xd1t33X9P4FEaPSg5lYbHXzSLWn7oLbrN2UqMLaQrkoEBg/VGvzmfN0mbflw\n+T87bJ/VEOVNlG+gepyCTf89qIQVWOjuYMox4sK0PjzZGsYEuYiq1+OUT3vk/e5K\nag1fCcq2Isy4/iwB2xcXrsQ6ljwdk1fc+EmOnjGKrhuOHJY3S+RFv4ToQBsVyYhC\nXGaC3EkqIX0xaCpDimxYhFjWhpDXAjG/zJ+hRLDAMCMhl/LPGRk/D1kzSbPmdjpl\nlEMK5695PeBvEBTQdBQdOiYgOU3vWU6tzwwHfiM2/wgvess/q0FDAHfJhppbgbb9\n3vgsIUcsvoC5o29JvMsUxsDRvsAfEmMSDGkJoA/X6GECAwEAAaNCMEAwDwYDVR0T\nAQH/BAUwAwEB/zAdBgNVHQ4EFgQUgEWm1mZCbGD6ytbwk2UU1aLaOUUwDgYDVR0P\nAQH/BAQDAgGGMA0GCSqGSIb3DQEBDAUAA4ICAQBb4+ABTGBGwxK1U/q4g8JDqTQM\n1Wh8Oz8yAk4XtPJMAmCctxbd81cRnSnePWw/hxViLVtkZ/GsemvXfqAQyOn1coN7\nQeYSw+ZOlu0j2jEJVynmgsR7nIRqE7QkCyZAU+d2FTJUfmee+IiBiGyFGgxz9n7A\nJhBZ/eahBbiuoOik/APW2JWLh0xp0W0GznfJ8lAlaQTyDa8iDXmVtbJg9P9qzkvl\nFgPXQttzEOyooF8Pb2LCZO4kUz+1sbU7tHdr2YE+SXxt6D3SBv+Yf0FlvyWLiqVk\nGDEOlPPTDSjAWgKnqST8UJ0RDcZK/v1ixs7ayqQJU0GUQm1I7LGTErWXHMnCuHKe\nUKYuiSZwmTcJ06NgdhcCnGZgPq13ryMDqxPeltQc3n5eO7f1cL9ERYLDLOzm6A9P\noQ3MfcVOsbHgGHZWaPSeNrQRN9xefqBXH0ZPasgcH9WJdsLlEjVUXoultaHOKx3b\nUCCb+d3EfqF6pRT488ippOL6bk7zNubwhRa/+y4wjZtwe3kAX78ACJVcjPobH9jZ\nErySads5zdQeaoee5wRKdp3TOfvuCe4bwLRdhOLCHWzEcXzY3g/6+ppLvNom8o+h\nBh5X26G6KSfr9tqhQ3O9IcbARjnuPbvtJnoPY0gz3EHHGPhy0RNW8i2gl3nUp0ah\nPtjwbKW0hYAhIttT0Q==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICtzCCAj2gAwIBAgIQQRBQTs6Y3H1DDbpHGta3lzAKBggqhkjOPQQDAzCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIGFwLXNvdXRoZWFzdC0zIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDYxMTAwMTI0M1oYDzIxMjEwNjExMDExMjQzWjCBmzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTQwMgYDVQQDDCtBbWF6\nb24gUkRTIGFwLXNvdXRoZWFzdC0zIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEs0942Xj4m/gKA+WA6F5h\nAHYuek9eGpzTRoLJddM4rEV1T3eSueytMVKOSlS3Ub9IhyQrH2D8EHsLYk9ktnGR\npATk0kCYTqFbB7onNo070lmMJmGT/Q7NgwC8cySChFxbo0IwQDAPBgNVHRMBAf8E\nBTADAQH/MB0GA1UdDgQWBBQ20iKBKiNkcbIZRu0y1uoF1yJTEzAOBgNVHQ8BAf8E\nBAMCAYYwCgYIKoZIzj0EAwMDaAAwZQIwYv0wTSrpQTaPaarfLN8Xcqrqu3hzl07n\nFrESIoRw6Cx77ZscFi2/MV6AFyjCV/TlAjEAhpwJ3tpzPXpThRML8DMJYZ3YgMh3\nCMuLqhPpla3cL0PhybrD27hJWl29C4el6aMO\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrDCCAjOgAwIBAgIQGcztRyV40pyMKbNeSN+vXTAKBggqhkjOPQQDAzCBljEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMS8wLQYDVQQDDCZBbWF6\nb24gUkRTIHVzLWVhc3QtMiBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UEBwwHU2Vh\ndHRsZTAgFw0yMTA1MjEyMzE1NTZaGA8yMTIxMDUyMjAwMTU1NlowgZYxCzAJBgNV\nBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYD\nVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEvMC0GA1UEAwwmQW1hem9uIFJE\nUyB1cy1lYXN0LTIgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1NlYXR0bGUw\ndjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQfDcv+GGRESD9wT+I5YIPRsD3L+/jsiIis\nTr7t9RSbFl+gYpO7ZbDXvNbV5UGOC5lMJo/SnqFRTC6vL06NF7qOHfig3XO8QnQz\n6T5uhhrhnX2RSY3/10d2kTyHq3ZZg3+jQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD\nVR0OBBYEFLDyD3PRyNXpvKHPYYxjHXWOgfPnMA4GA1UdDwEB/wQEAwIBhjAKBggq\nhkjOPQQDAwNnADBkAjB20HQp6YL7CqYD82KaLGzgw305aUKw2aMrdkBR29J183jY\n6Ocj9+Wcif9xnRMS+7oCMAvrt03rbh4SU9BohpRUcQ2Pjkh7RoY0jDR4Xq4qzjNr\n5UFr3BXpFvACxXF51BksGQ==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrjCCAjWgAwIBAgIQeKbS5zvtqDvRtwr5H48cAjAKBggqhkjOPQQDAzCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIG1lLXNvdXRoLTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjEwNTIwMTcxOTU1WhgPMjEyMTA1MjAxODE5NTVaMIGXMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpvbiBS\nRFMgbWUtc291dGgtMSBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UEBwwHU2VhdHRs\nZTB2MBAGByqGSM49AgEGBSuBBAAiA2IABEKjgUaAPmUlRMEQdBC7BScAGosJ1zRV\nLDd38qTBjzgmwBfQJ5ZfGIvyEK5unB09MB4e/3qqK5I/L6Qn5Px/n5g4dq0c7MQZ\nu7G9GBYm90U3WRJBf7lQrPStXaRnS4A/O6NCMEAwDwYDVR0TAQH/BAUwAwEB/zAd\nBgNVHQ4EFgQUNKcAbGEIn03/vkwd8g6jNyiRdD4wDgYDVR0PAQH/BAQDAgGGMAoG\nCCqGSM49BAMDA2cAMGQCMHIeTrjenCSYuGC6txuBt/0ZwnM/ciO9kHGWVCoK8QLs\njGghb5/YSFGZbmQ6qpGlSAIwVOQgdFfTpEfe5i+Vs9frLJ4QKAfc27cTNYzRIM0I\nE+AJgK4C4+DiyyMzOpiCfmvq\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGCDCCA/CgAwIBAgIQSFkEUzu9FYgC5dW+5lnTgjANBgkqhkiG9w0BAQwFADCB\nnDELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTUwMwYDVQQDDCxB\nbWF6b24gUkRTIGFwLXNvdXRoZWFzdC0zIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4G\nA1UEBwwHU2VhdHRsZTAgFw0yMTA2MTEwMDA4MzZaGA8yMTIxMDYxMTAxMDgzNlow\ngZwxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTE1MDMGA1UEAwws\nQW1hem9uIFJEUyBhcC1zb3V0aGVhc3QtMyBSb290IENBIFJTQTQwOTYgRzExEDAO\nBgNVBAcMB1NlYXR0bGUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDx\nmy5Qmd8zdwaI/KOKV9Xar9oNbhJP5ED0JCiigkuvCkg5qM36klszE8JhsUj40xpp\nvQw9wkYW4y+C8twBpzKGBvakqMnoaVUV7lOCKx0RofrnNwkZCboTBB4X/GCZ3fIl\nYTybS7Ehi1UuiaZspIT5A2jidoA8HiBPk+mTg1UUkoWS9h+MEAPa8L4DY6fGf4pO\nJ1Gk2cdePuNzzIrpm2yPto+I8MRROwZ3ha7ooyymOXKtz2c7jEHHJ314boCXAv9G\ncdo27WiebewZkHHH7Zx9iTIVuuk2abyVSzvLVeGv7Nuy4lmSqa5clWYqWsGXxvZ2\n0fZC5Gd+BDUMW1eSpW7QDTk3top6x/coNoWuLSfXiC5ZrJkIKimSp9iguULgpK7G\nabMMN4PR+O+vhcB8E879hcwmS2yd3IwcPTl3QXxufqeSV58/h2ibkqb/W4Bvggf6\n5JMHQPlPHOqMCVFIHP1IffIo+Of7clb30g9FD2j3F4qgV3OLwEDNg/zuO1DiAvH1\nL+OnmGHkfbtYz+AVApkAZrxMWwoYrwpauyBusvSzwRE24vLTd2i80ZDH422QBLXG\nrN7Zas8rwIiBKacJLYtBYETw8mfsNt8gb72aIQX6cZOsphqp6hUtKaiMTVgGazl7\ntBXqbB+sIv3S9X6bM4cZJKkMJOXbnyCCLZFYv8TurwIDAQABo0IwQDAPBgNVHRMB\nAf8EBTADAQH/MB0GA1UdDgQWBBTOVtaS1b/lz6yJDvNk65vEastbQTAOBgNVHQ8B\nAf8EBAMCAYYwDQYJKoZIhvcNAQEMBQADggIBABEONg+TmMZM/PrYGNAfB4S41zp1\n3CVjslZswh/pC4kgXSf8cPJiUOzMwUevuFQj7tCqxQtJEygJM2IFg4ViInIah2kh\nxlRakEGGw2dEVlxZAmmLWxlL1s1lN1565t5kgVwM0GVfwYM2xEvUaby6KDVJIkD3\naM6sFDBshvVA70qOggM6kU6mwTbivOROzfoIQDnVaT+LQjHqY/T+ok6IN0YXXCWl\nFavai8RDjzLDFwXSRvgIK+1c49vlFFY4W9Efp7Z9tPSZU1TvWUcKdAtV8P2fPHAS\nvAZ+g9JuNfeawhEibjXkwg6Z/yFUueQCQOs9TRXYogzp5CMMkfdNJF8byKYqHscs\nUosIcETnHwqwban99u35sWcoDZPr6aBIrz7LGKTJrL8Nis8qHqnqQBXu/fsQEN8u\nzJ2LBi8sievnzd0qI0kaWmg8GzZmYH1JCt1GXSqOFkI8FMy2bahP7TUQR1LBUKQ3\nhrOSqldkhN+cSAOnvbQcFzLr+iEYEk34+NhcMIFVE+51KJ1n6+zISOinr6mI3ckX\n6p2tmiCD4Shk2Xx/VTY/KGvQWKFcQApWezBSvDNlGe0yV71LtLf3dr1pr4ofo7cE\nrYucCJ40bfxEU/fmzYdBF32xP7AOD9U0FbOR3Mcthc6Z6w20WFC+zru8FGY08gPf\nWT1QcNdw7ntUJP/w\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrzCCAjWgAwIBAgIQARky6+5PNFRkFVOp3Ob1CTAKBggqhkjOPQQDAzCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIGV1LXNvdXRoLTIgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjIwNTIzMTg0MTI4WhgPMjEyMjA1MjMxOTQxMjdaMIGXMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpvbiBS\nRFMgZXUtc291dGgtMiBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UEBwwHU2VhdHRs\nZTB2MBAGByqGSM49AgEGBSuBBAAiA2IABNVGL5oF7cfIBxKyWd2PVK/S5yQfaJY3\nQFHWvEdt6951n9JhiiPrHzfVHsxZp1CBjILRMzjgRbYWmc8qRoLkgGE7htGdwudJ\nFa/WuKzO574Prv4iZXUnVGTboC7JdvKbh6NCMEAwDwYDVR0TAQH/BAUwAwEB/zAd\nBgNVHQ4EFgQUgDeIIEKynwUbNXApdIPnmRWieZwwDgYDVR0PAQH/BAQDAgGGMAoG\nCCqGSM49BAMDA2gAMGUCMEOOJfucrST+FxuqJkMZyCM3gWGZaB+/w6+XUAJC6hFM\nuSTY0F44/bERkA4XhH+YGAIxAIpJQBakCA1/mXjsTnQ+0El9ty+LODp8ibkn031c\n8DKDS7pR9UK7ZYdR6zFg3ZCjQw==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrjCCAjOgAwIBAgIQJvkWUcYLbnxtuwnyjMmntDAKBggqhkjOPQQDAzCBljEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMS8wLQYDVQQDDCZBbWF6\nb24gUkRTIGV1LXdlc3QtMyBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UEBwwHU2Vh\ndHRsZTAgFw0yMTA1MjUyMjI2MTJaGA8yMTIxMDUyNTIzMjYxMlowgZYxCzAJBgNV\nBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMwEQYD\nVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEvMC0GA1UEAwwmQW1hem9uIFJE\nUyBldS13ZXN0LTMgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1NlYXR0bGUw\ndjAQBgcqhkjOPQIBBgUrgQQAIgNiAARENn8uHCyjn1dFax4OeXxvbV861qsXFD9G\nDshumTmFzWWHN/69WN/AOsxy9XN5S7Cgad4gQgeYYYgZ5taw+tFo/jQvCLY//uR5\nuihcLuLJ78opvRPvD9kbWZ6oXfBtFkWjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD\nVR0OBBYEFKiK3LpoF+gDnqPldGSwChBPCYciMA4GA1UdDwEB/wQEAwIBhjAKBggq\nhkjOPQQDAwNpADBmAjEA+7qfvRlnvF1Aosyp9HzxxCbN7VKu+QXXPhLEBWa5oeWW\nUOcifunf/IVLC4/FGCsLAjEAte1AYp+iJyOHDB8UYkhBE/1sxnFaTiEPbvQBU0wZ\nSuwWVLhu2wWDuSW+K7tTuL8p\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID/zCCAuegAwIBAgIRAKeDpqX5WFCGNo94M4v69sUwDQYJKoZIhvcNAQELBQAw\ngZcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEwMC4GA1UEAwwn\nQW1hem9uIFJEUyBldS13ZXN0LTMgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyNTIyMTgzM1oYDzIwNjEwNTI1MjMxODMzWjCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIGV1LXdlc3QtMyBSb290IENBIFJTQTIwNDggRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCcKOTEMTfzvs4H\nWtJR8gI7GXN6xesulWtZPv21oT+fLGwJ+9Bv8ADCGDDrDxfeH/HxJmzG9hgVAzVn\n4g97Bn7q07tGZM5pVi96/aNp11velZT7spOJKfJDZTlGns6DPdHmx48whpdO+dOb\n6+eR0VwCIv+Vl1fWXgoACXYCoKjhxJs+R+fwY//0JJ1YG8yjZ+ghLCJmvlkOJmE1\nTCPUyIENaEONd6T+FHGLVYRRxC2cPO65Jc4yQjsXvvQypoGgx7FwD5voNJnFMdyY\n754JGPOOe/SZdepN7Tz7UEq8kn7NQSbhmCsgA/Hkjkchz96qN/YJ+H/okiQUTNB0\neG9ogiVFAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFjayw9Y\nMjbxfF14XAhMM2VPl0PfMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOC\nAQEAAtmx6d9+9CWlMoU0JCirtp4dSS41bBfb9Oor6GQ8WIr2LdfZLL6uES/ubJPE\n1Sh5Vu/Zon5/MbqLMVrfniv3UpQIof37jKXsjZJFE1JVD/qQfRzG8AlBkYgHNEiS\nVtD4lFxERmaCkY1tjKB4Dbd5hfhdrDy29618ZjbSP7NwAfnwb96jobCmMKgxVGiH\nUqsLSiEBZ33b2hI7PJ6iTJnYBWGuiDnsWzKRmheA4nxwbmcQSfjbrNwa93w3caL2\nv/4u54Kcasvcu3yFsUwJygt8z43jsGAemNZsS7GWESxVVlW93MJRn6M+MMakkl9L\ntWaXdHZ+KUV7LhfYLb0ajvb40w==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEBDCCAuygAwIBAgIQJ5oxPEjefCsaESSwrxk68DANBgkqhkiG9w0BAQsFADCB\nmjELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTMwMQYDVQQDDCpB\nbWF6b24gUkRTIGV1LWNlbnRyYWwtMiBSb290IENBIFJTQTIwNDggRzExEDAOBgNV\nBAcMB1NlYXR0bGUwIBcNMjIwNjA2MjExNzA1WhgPMjA2MjA2MDYyMjE3MDVaMIGa\nMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5j\nLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMzAxBgNVBAMMKkFt\nYXpvbiBSRFMgZXUtY2VudHJhbC0yIFJvb3QgQ0EgUlNBMjA0OCBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALTQt5eX\ng+VP3BjO9VBkWJhE0GfLrU/QIk32I6WvrnejayTrlup9H1z4QWlXF7GNJrqScRMY\nKhJHlcP05aPsx1lYco6pdFOf42ybXyWHHJdShj4A5glU81GTT+VrXGzHSarLmtua\neozkQgPpDsSlPt0RefyTyel7r3Cq+5K/4vyjCTcIqbfgaGwTU36ffjM1LaPCuE4O\nnINMeD6YuImt2hU/mFl20FZ+IZQUIFZZU7pxGLqTRz/PWcH8tDDxnkYg7tNuXOeN\nJbTpXrw7St50/E9ZQ0llGS+MxJD8jGRAa/oL4G/cwnV8P2OEPVVkgN9xDDQeieo0\n3xkzolkDkmeKOnUCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU\nbwu8635iQGQMRanekesORM8Hkm4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB\nCwUAA4IBAQAgN6LE9mUgjsj6xGCX1afYE69fnmCjjb0rC6eEe1mb/QZNcyw4XBIW\n6+zTXo4mjZ4ffoxb//R0/+vdTE7IvaLgfAZgFsLKJCtYDDstXZj8ujQnGR9Pig3R\nW+LpNacvOOSJSawNQq0Xrlcu55AU4buyD5VjcICnfF1dqBMnGTnh27m/scd/ZMx/\nkapHZ/fMoK2mAgSX/NvUKF3UkhT85vSSM2BTtET33DzCPDQTZQYxFBa4rFRmFi4c\nBLlmIReiCGyh3eJhuUUuYAbK6wLaRyPsyEcIOLMQmZe1+gAFm1+1/q5Ke9ugBmjf\nPbTWjsi/lfZ5CdVAhc5lmZj/l5aKqwaS\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrjCCAjSgAwIBAgIRAKKPTYKln9L4NTx9dpZGUjowCgYIKoZIzj0EAwMwgZYx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEvMC0GA1UEAwwmQW1h\nem9uIFJEUyBldS13ZXN0LTIgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjEwNTIxMjI1NTIxWhgPMjEyMTA1MjEyMzU1MjFaMIGWMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExLzAtBgNVBAMMJkFtYXpvbiBS\nRFMgZXUtd2VzdC0yIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQHDAdTZWF0dGxl\nMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE/owTReDvaRqdmbtTzXbyRmEpKCETNj6O\nhZMKH0F8oU9Tmn8RU7kQQj6xUKEyjLPrFBN7c+26TvrVO1KmJAvbc8bVliiJZMbc\nC0yV5PtJTalvlMZA1NnciZuhxaxrzlK1o0IwQDAPBgNVHRMBAf8EBTADAQH/MB0G\nA1UdDgQWBBT4i5HaoHtrs7Mi8auLhMbKM1XevDAOBgNVHQ8BAf8EBAMCAYYwCgYI\nKoZIzj0EAwMDaAAwZQIxAK9A+8/lFdX4XJKgfP+ZLy5ySXC2E0Spoy12Gv2GdUEZ\np1G7c1KbWVlyb1d6subzkQIwKyH0Naf/3usWfftkmq8SzagicKz5cGcEUaULq4tO\nGzA/AMpr63IDBAqkZbMDTCmH\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrzCCAjWgAwIBAgIQTgIvwTDuNWQo0Oe1sOPQEzAKBggqhkjOPQQDAzCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIGV1LW5vcnRoLTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjEwNTI0MjEwNjM4WhgPMjEyMTA1MjQyMjA2MzhaMIGXMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpvbiBS\nRFMgZXUtbm9ydGgtMSBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UEBwwHU2VhdHRs\nZTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJuzXLU8q6WwSKXBvx8BbdIi3mPhb7Xo\nrNJBfuMW1XRj5BcKH1ZoGaDGw+BIIwyBJg8qNmCK8kqIb4cH8/Hbo3Y+xBJyoXq/\ncuk8aPrxiNoRsKWwiDHCsVxaK9L7GhHHAqNCMEAwDwYDVR0TAQH/BAUwAwEB/zAd\nBgNVHQ4EFgQUYgcsdU4fm5xtuqLNppkfTHM2QMYwDgYDVR0PAQH/BAQDAgGGMAoG\nCCqGSM49BAMDA2gAMGUCMQDz/Rm89+QJOWJecYAmYcBWCcETASyoK1kbr4vw7Hsg\n7Ew3LpLeq4IRmTyuiTMl0gMCMAa0QSjfAnxBKGhAnYxcNJSntUyyMpaXzur43ec0\n3D8npJghwC4DuICtKEkQiI5cSg==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGATCCA+mgAwIBAgIRAORIGqQXLTcbbYT2upIsSnQwDQYJKoZIhvcNAQEMBQAw\ngZgxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwo\nQW1hem9uIFJEUyBldS1zb3V0aC0yIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTAgFw0yMjA1MjMxODM0MjJaGA8yMTIyMDUyMzE5MzQyMlowgZgx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwoQW1h\nem9uIFJEUyBldS1zb3V0aC0yIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UEBwwH\nU2VhdHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAPKukwsW2s/h\n1k+Hf65pOP0knVBnOnMQyT1mopp2XHGdXznj9xS49S30jYoUnWccyXgD983A1bzu\nw4fuJRHg4MFdz/NWTgXvy+zy0Roe83OPIJjUmXnnzwUHQcBa9vl6XUO65iQ3pbSi\nfQfNDFXD8cvuXbkezeADoy+iFAlzhXTzV9MD44GTuo9Z3qAXNGHQCrgRSCL7uRYt\nt1nfwboCbsVRnElopn2cTigyVXE62HzBUmAw1GTbAZeFAqCn5giBWYAfHwTUldRL\n6eEa6atfsS2oPNus4ZENa1iQxXq7ft+pMdNt0qKXTCZiiCZjmLkY0V9kWwHTRRF8\nr+75oSL//3di43QnuSCgjwMRIeWNtMud5jf3eQzSBci+9njb6DrrSUbx7blP0srg\n94/C/fYOp/0/EHH34w99Th14VVuGWgDgKahT9/COychLOubXUT6vD1As47S9KxTv\nyYleVKwJnF9cVjepODN72fNlEf74BwzgSIhUmhksmZSeJBabrjSUj3pdyo/iRZN/\nCiYz9YPQ29eXHPQjBZVIUqWbOVfdwsx0/Xu5T1e7yyXByQ3/oDulahtcoKPAFQ3J\nee6NJK655MdS7pM9hJnU2Rzu3qZ/GkM6YK7xTlMXVouPUZov/VbiaCKbqYDs8Dg+\nUKdeNXAT6+BMleGQzly1X7vjhgeA8ugVAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB\nAf8wHQYDVR0OBBYEFJdaPwpCf78UolFTEn6GO85/QwUIMA4GA1UdDwEB/wQEAwIB\nhjANBgkqhkiG9w0BAQwFAAOCAgEAWkxHIT3mers5YnZRSVjmpxCLivGj1jMB9VYC\niKqTAeIvD0940L0YaZgivQll5pue8UUcQ6M2uCdVVAsNJdmQ5XHIYiGOknYPtxzO\naO+bnZp7VIZw/vJ49hvH6RreA2bbxYMZO/ossYdcWsWbOKHFrRmAw0AhtK/my51g\nobV7eQg+WmlE5Iqc75ycUsoZdc3NimkjBi7LQoNP1HMvlLHlF71UZhQDdq+/WdV7\n0zmg+epkki1LjgMmuPyb+xWuYkFKT1/faX+Xs62hIm5BY+aI4if4RuQ+J//0pOSs\nUajrjTo+jLGB8A96jAe8HaFQenbwMjlaHRDAF0wvbkYrMr5a6EbneAB37V05QD0Y\nRh4L4RrSs9DX2hbSmS6iLDuPEjanHKzglF5ePEvnItbRvGGkynqDVlwF+Bqfnw8l\n0i8Hr1f1/LP1c075UjkvsHlUnGgPbLqA0rDdcxF8Fdlv1BunUjX0pVlz10Ha5M6P\nAdyWUOneOfaA5G7jjv7i9qg3r99JNs1/Lmyg/tV++gnWTAsSPFSSEte81kmPhlK3\n2UtAO47nOdTtk+q4VIRAwY1MaOR7wTFZPfer1mWs4RhKNu/odp8urEY87iIzbMWT\nQYO/4I6BGj9rEWNGncvR5XTowwIthMCj2KWKM3Z/JxvjVFylSf+s+FFfO1bNIm6h\nu3UBpZI=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICtDCCAjmgAwIBAgIQenQbcP/Zbj9JxvZ+jXbRnTAKBggqhkjOPQQDAzCBmTEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTIwMAYDVQQDDClBbWF6\nb24gUkRTIGV1LWNlbnRyYWwtMSBSb290IENBIEVDQzM4NCBHMTEQMA4GA1UEBwwH\nU2VhdHRsZTAgFw0yMTA1MjEyMjMzMjRaGA8yMTIxMDUyMTIzMzMyNFowgZkxCzAJ\nBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMuMRMw\nEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEyMDAGA1UEAwwpQW1hem9u\nIFJEUyBldS1jZW50cmFsLTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATlBHiEM9LoEb1Hdnd5j2VpCDOU\n5nGuFoBD8ROUCkFLFh5mHrHfPXwBc63heW9WrP3qnDEm+UZEUvW7ROvtWCTPZdLz\nZ4XaqgAlSqeE2VfUyZOZzBSgUUJk7OlznXfkCMOjQjBAMA8GA1UdEwEB/wQFMAMB\nAf8wHQYDVR0OBBYEFDT/ThjQZl42Nv/4Z/7JYaPNMly2MA4GA1UdDwEB/wQEAwIB\nhjAKBggqhkjOPQQDAwNpADBmAjEAnZWmSgpEbmq+oiCa13l5aGmxSlfp9h12Orvw\nDq/W5cENJz891QD0ufOsic5oGq1JAjEAp5kSJj0MxJBTHQze1Aa9gG4sjHBxXn98\n4MP1VGsQuhfndNHQb4V0Au7OWnOeiobq\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID/zCCAuegAwIBAgIRAMgnyikWz46xY6yRgiYwZ3swDQYJKoZIhvcNAQELBQAw\ngZcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEwMC4GA1UEAwwn\nQW1hem9uIFJEUyBldS13ZXN0LTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyMDE2NDkxMloYDzIwNjEwNTIwMTc0OTEyWjCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIGV1LXdlc3QtMSBSb290IENBIFJTQTIwNDggRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCi8JYOc9cYSgZH\ngYPxLk6Xcc7HqzamvsnjYU98Dcb98y6iDqS46Ra2Ne02MITtU5MDL+qjxb8WGDZV\nRUA9ZS69tkTO3gldW8QdiSh3J6hVNJQW81F0M7ZWgV0gB3n76WCmfT4IWos0AXHM\n5v7M/M4tqVmCPViQnZb2kdVlM3/Xc9GInfSMCgNfwHPTXl+PXX+xCdNBePaP/A5C\n5S0oK3HiXaKGQAy3K7VnaQaYdiv32XUatlM4K2WS4AMKt+2cw3hTCjlmqKRHvYFQ\nveWCXAuc+U5PQDJ9SuxB1buFJZhT4VP3JagOuZbh5NWpIbOTxlAJOb5pGEDuJTKi\n1gQQQVEFAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNXm+N87\nOFxK9Af/bjSxDCiulGUzMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOC\nAQEAkqIbkgZ45spvrgRQ6n9VKzDLvNg+WciLtmVrqyohwwJbj4pYvWwnKQCkVc7c\nhUOSBmlSBa5REAPbH5o8bdt00FPRrD6BdXLXhaECKgjsHe1WW08nsequRKD8xVmc\n8bEX6sw/utBeBV3mB+3Zv7ejYAbDFM4vnRsWtO+XqgReOgrl+cwdA6SNQT9oW3e5\nrSQ+VaXgJtl9NhkiIysq9BeYigxqS/A13pHQp0COMwS8nz+kBPHhJTsajHCDc8F4\nHfLi6cgs9G0gaRhT8FCH66OdGSqn196sE7Y3bPFFFs/3U+vxvmQgoZC6jegQXAg5\nPrxd+VNXtNI/azitTysQPumH7A==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEBTCCAu2gAwIBAgIRAO8bekN7rUReuNPG8pSTKtEwDQYJKoZIhvcNAQELBQAw\ngZoxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEzMDEGA1UEAwwq\nQW1hem9uIFJEUyBldS1jZW50cmFsLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYD\nVQQHDAdTZWF0dGxlMCAXDTIxMDUyMTIyMjM0N1oYDzIwNjEwNTIxMjMyMzQ3WjCB\nmjELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTMwMQYDVQQDDCpB\nbWF6b24gUkRTIGV1LWNlbnRyYWwtMSBSb290IENBIFJTQTIwNDggRzExEDAOBgNV\nBAcMB1NlYXR0bGUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCTTYds\nTray+Q9VA5j5jTh5TunHKFQzn68ZbOzdqaoi/Rq4ohfC0xdLrxCpfqn2TGDHN6Zi\n2qGK1tWJZEd1H0trhzd9d1CtGK+3cjabUmz/TjSW/qBar7e9MA67/iJ74Gc+Ww43\nA0xPNIWcL4aLrHaLm7sHgAO2UCKsrBUpxErOAACERScVYwPAfu79xeFcX7DmcX+e\nlIqY16pQAvK2RIzrekSYfLFxwFq2hnlgKHaVgZ3keKP+nmXcXmRSHQYUUr72oYNZ\nHcNYl2+gxCc9ccPEHM7xncVEKmb5cWEWvVoaysgQ+osi5f5aQdzgC2X2g2daKbyA\nXL/z5FM9GHpS5BJjAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE\nFBDAiJ7Py9/A9etNa/ebOnx5l5MGMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0B\nAQsFAAOCAQEALMh/+81fFPdJV/RrJUeoUvFCGMp8iaANu97NpeJyKitNOv7RoeVP\nWjivS0KcCqZaDBs+p6IZ0sLI5ZH098LDzzytcfZg0PsGqUAb8a0MiU/LfgDCI9Ee\njsOiwaFB8k0tfUJK32NPcIoQYApTMT2e26lPzYORSkfuntme2PTHUnuC7ikiQrZk\nP+SZjWgRuMcp09JfRXyAYWIuix4Gy0eZ4rpRuaTK6mjAb1/LYoNK/iZ/gTeIqrNt\nl70OWRsWW8jEmSyNTIubGK/gGGyfuZGSyqoRX6OKHESkP6SSulbIZHyJ5VZkgtXo\n2XvyRyJ7w5pFyoofrL3Wv0UF8yt/GDszmg==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIF/zCCA+egAwIBAgIRAMDk/F+rrhdn42SfE+ghPC8wDQYJKoZIhvcNAQEMBQAw\ngZcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEwMC4GA1UEAwwn\nQW1hem9uIFJEUyBldS13ZXN0LTIgUm9vdCBDQSBSU0E0MDk2IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyMTIyNTEyMloYDzIxMjEwNTIxMjM1MTIyWjCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIGV1LXdlc3QtMiBSb290IENBIFJTQTQwOTYgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2twMALVg9vRVu\nVNqsr6N8thmp3Dy8jEGTsm3GCQ+C5P2YcGlD/T/5icfWW84uF7Sx3ezcGlvsqFMf\nUkj9sQyqtz7qfFFugyy7pa/eH9f48kWFHLbQYm9GEgbYBIrWMp1cy3vyxuMCwQN4\nDCncqU+yNpy0CprQJEha3PzY+3yJOjDQtc3zr99lyECCFJTDUucxHzyQvX89eL74\nuh8la0lKH3v9wPpnEoftbrwmm5jHNFdzj7uXUHUJ41N7af7z7QUfghIRhlBDiKtx\n5lYZemPCXajTc3ryDKUZC/b+B6ViXZmAeMdmQoPE0jwyEp/uaUcdp+FlUQwCfsBk\nayPFEApTWgPiku2isjdeTVmEgL8bJTDUZ6FYFR7ZHcYAsDzcwHgIu3GGEMVRS3Uf\nILmioiyly9vcK4Sa01ondARmsi/I0s7pWpKflaekyv5boJKD/xqwz9lGejmJHelf\n8Od2TyqJScMpB7Q8c2ROxBwqwB72jMCEvYigB+Wnbb8RipliqNflIGx938FRCzKL\nUQUBmNAznR/yRRL0wHf9UAE/8v9a09uZABeiznzOFAl/frHpgdAbC00LkFlnwwgX\ng8YfEFlkp4fLx5B7LtoO6uVNFVimLxtwirpyKoj3G4M/kvSTux8bTw0heBCmWmKR\n57MS6k7ODzbv+Kpeht2hqVZCNFMxoQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/\nMB0GA1UdDgQWBBRuMnDhJjoj7DcKALj+HbxEqj3r6jAOBgNVHQ8BAf8EBAMCAYYw\nDQYJKoZIhvcNAQEMBQADggIBALSnXfx72C3ldhBP5kY4Mo2DDaGQ8FGpTOOiD95d\n0rf7I9LrsBGVqu/Nir+kqqP80PB70+Jy9fHFFigXwcPBX3MpKGxK8Cel7kVf8t1B\n4YD6A6bqlzP+OUL0uGWfZpdpDxwMDI2Flt4NEldHgXWPjvN1VblEKs0+kPnKowyg\njhRMgBbD/y+8yg0fIcjXUDTAw/+INcp21gWaMukKQr/8HswqC1yoqW9in2ijQkpK\n2RB9vcQ0/gXR0oJUbZQx0jn0OH8Agt7yfMAnJAdnHO4M3gjvlJLzIC5/4aGrRXZl\nJoZKfJ2fZRnrFMi0nhAYDeInoS+Rwx+QzaBk6fX5VPyCj8foZ0nmqvuYoydzD8W5\nmMlycgxFqS+DUmO+liWllQC4/MnVBlHGB1Cu3wTj5kgOvNs/k+FW3GXGzD3+rpv0\nQTLuwSbMr+MbEThxrSZRSXTCQzKfehyC+WZejgLb+8ylLJUA10e62o7H9PvCrwj+\nZDVmN7qj6amzvndCP98sZfX7CFZPLfcBd4wVIjHsFjSNEwWHOiFyLPPG7cdolGKA\nlOFvonvo4A1uRc13/zFeP0Xi5n5OZ2go8aOOeGYdI2vB2sgH9R2IASH/jHmr0gvY\n0dfBCcfXNgrS0toq0LX/y+5KkKOxh52vEYsJLdhqrveuZhQnsFEm/mFwjRXkyO7c\n2jpC\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGADCCA+igAwIBAgIQYe0HgSuFFP9ivYM2vONTrTANBgkqhkiG9w0BAQwFADCB\nmDELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChB\nbWF6b24gUkRTIGV1LXNvdXRoLTEgUm9vdCBDQSBSU0E0MDk2IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUxOTE4MzMyMVoYDzIxMjEwNTE5MTkzMzIxWjCBmDEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChBbWF6\nb24gUkRTIGV1LXNvdXRoLTEgUm9vdCBDQSBSU0E0MDk2IEcxMRAwDgYDVQQHDAdT\nZWF0dGxlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAuO7QPKfPMTo2\nPOQWvzDLwi5f++X98hGjORI1zkN9kotCYH5pAzSBwBPoMNaIfedgmsIxGHj2fq5G\n4oXagNhNuGP79Zl6uKW5H7S74W7aWM8C0s8zuxMOI4GZy5h2IfQk3m/3AzZEX5w8\nUtNPkzo2feDVOkerHT+j+vjXgAxZ4wHnuMDcRT+K4r9EXlAH6X9b/RO0JlfEwmNz\nxlqqGxocq9qRC66N6W0HF2fNEAKP84n8H80xcZBOBthQORRi8HSmKcPdmrvwCuPz\nM+L+j18q6RAVaA0ABbD0jMWcTf0UvjUfBStn5mvu/wGlLjmmRkZsppUTRukfwqXK\nyltUsTq0tOIgCIpne5zA4v+MebbR5JBnsvd4gdh5BI01QH470yB7BkUefZ9bobOm\nOseAAVXcYFJKe4DAA6uLDrqOfFSxV+CzVvEp3IhLRaik4G5MwI/h2c/jEYDqkg2J\nHMflxc2gcSMdk7E5ByLz5f6QrFfSDFk02ZJTs4ssbbUEYohht9znPMQEaWVqATWE\n3n0VspqZyoBNkH/agE5GiGZ/k/QyeqzMNj+c9kr43Upu8DpLrz8v2uAp5xNj3YVg\nihaeD6GW8+PQoEjZ3mrCmH7uGLmHxh7Am59LfEyNrDn+8Rq95WvkmbyHSVxZnBmo\nh/6O3Jk+0/QhIXZ2hryMflPcYWeRGH0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB\n/zAdBgNVHQ4EFgQU2eFK7+R3x/me8roIBNxBrplkM6EwDgYDVR0PAQH/BAQDAgGG\nMA0GCSqGSIb3DQEBDAUAA4ICAQB5gWFe5s7ObQFj1fTO9L6gYgtFhnwdmxU0q8Ke\nHWCrdFmyXdC39qdAFOwM5/7fa9zKmiMrZvy9HNvCXEp4Z7z9mHhBmuqPZQx0qPgU\nuLdP8wGRuWryzp3g2oqkX9t31Z0JnkbIdp7kfRT6ME4I4VQsaY5Y3mh+hIHOUvcy\np+98i3UuEIcwJnVAV9wTTzrWusZl9iaQ1nSYbmkX9bBssJ2GmtW+T+VS/1hJ/Q4f\nAlE3dOQkLFoPPb3YRWBHr2n1LPIqMVwDNAuWavRA2dSfaLl+kzbn/dua7HTQU5D4\nb2Fu2vLhGirwRJe+V7zdef+tI7sngXqjgObyOeG5O2BY3s+um6D4fS0Th3QchMO7\n0+GwcIgSgcjIjlrt6/xJwJLE8cRkUUieYKq1C4McpZWTF30WnzOPUzRzLHkcNzNA\n0A7sKMK6QoYWo5Rmo8zewUxUqzc9oQSrYADP7PEwGncLtFe+dlRFx+PA1a+lcIgo\n1ZGfXigYtQ3VKkcknyYlJ+hN4eCMBHtD81xDy9iP2MLE41JhLnoB2rVEtewO5diF\n7o95Mwl84VMkLhhHPeGKSKzEbBtYYBifHNct+Bst8dru8UumTltgfX6urH3DN+/8\nJF+5h3U8oR2LL5y76cyeb+GWDXXy9zoQe2QvTyTy88LwZq1JzujYi2k8QiLLhFIf\nFEv9Bg==\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICsDCCAjagAwIBAgIRAMgApnfGYPpK/fD0dbN2U4YwCgYIKoZIzj0EAwMwgZcx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEwMC4GA1UEAwwnQW1h\nem9uIFJEUyBldS1zb3V0aC0xIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQHDAdT\nZWF0dGxlMCAXDTIxMDUxOTE4MzgxMVoYDzIxMjEwNTE5MTkzODExWjCBlzELMAkG\nA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4xEzAR\nBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6b24g\nUkRTIGV1LXNvdXRoLTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1NlYXR0\nbGUwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQfEWl6d4qSuIoECdZPp+39LaKsfsX7\nTHs3/RrtT0+h/jl3bjZ7Qc68k16x+HGcHbaayHfqD0LPdzH/kKtNSfQKqemdxDQh\nZ4pwkixJu8T1VpXZ5zzCvBXCl75UqgEFS92jQjBAMA8GA1UdEwEB/wQFMAMBAf8w\nHQYDVR0OBBYEFFPrSNtWS5JU+Tvi6ABV231XbjbEMA4GA1UdDwEB/wQEAwIBhjAK\nBggqhkjOPQQDAwNoADBlAjEA+a7hF1IrNkBd2N/l7IQYAQw8chnRZDzh4wiGsZsC\n6A83maaKFWUKIb3qZYXFSi02AjAbp3wxH3myAmF8WekDHhKcC2zDvyOiKLkg9Y6v\nZVmyMR043dscQbcsVoacOYv198c=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICtDCCAjqgAwIBAgIRAPhVkIsQ51JFhD2kjFK5uAkwCgYIKoZIzj0EAwMwgZkx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEyMDAGA1UEAwwpQW1h\nem9uIFJEUyBldS1jZW50cmFsLTIgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcM\nB1NlYXR0bGUwIBcNMjIwNjA2MjEyOTE3WhgPMjEyMjA2MDYyMjI5MTdaMIGZMQsw\nCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjET\nMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMjAwBgNVBAMMKUFtYXpv\nbiBSRFMgZXUtY2VudHJhbC0yIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQHDAdT\nZWF0dGxlMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEA5xnIEBtG5b2nmbj49UEwQza\nyX0844fXjccYzZ8xCDUe9dS2XOUi0aZlGblgSe/3lwjg8fMcKXLObGGQfgIx1+5h\nAIBjORis/dlyN5q/yH4U5sjS8tcR0GDGVHrsRUZCo0IwQDAPBgNVHRMBAf8EBTAD\nAQH/MB0GA1UdDgQWBBRK+lSGutXf4DkTjR3WNfv4+KeNFTAOBgNVHQ8BAf8EBAMC\nAYYwCgYIKoZIzj0EAwMDaAAwZQIxAJ4NxQ1Gerqr70ZrnUqc62Vl8NNqTzInamCG\nKce3FTsMWbS9qkgrjZkO9QqOcGIw/gIwSLrwUT+PKr9+H9eHyGvpq9/3AIYSnFkb\nCf3dyWPiLKoAtLFwjzB/CkJlsAS1c8dS\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIF/jCCA+agAwIBAgIQGZH12Q7x41qIh9vDu9ikTjANBgkqhkiG9w0BAQwFADCB\nlzELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdB\nbWF6b24gUkRTIGV1LXdlc3QtMyBSb290IENBIFJTQTQwOTYgRzExEDAOBgNVBAcM\nB1NlYXR0bGUwIBcNMjEwNTI1MjIyMjMzWhgPMjEyMTA1MjUyMzIyMzNaMIGXMQsw\nCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjET\nMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpv\nbiBSRFMgZXUtd2VzdC0zIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UEBwwHU2Vh\ndHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMqE47sHXWzdpuqj\nJHb+6jM9tDbQLDFnYjDWpq4VpLPZhb7xPNh9gnYYTPKG4avG421EblAHqzy9D2pN\n1z90yKbIfUb/Sy2MhQbmZomsObhONEra06fJ0Dydyjswf1iYRp2kwpx5AgkVoNo7\n3dlws73zFjD7ImKvUx2C7B75bhnw2pJWkFnGcswl8fZt9B5Yt95sFOKEz2MSJE91\nkZlHtya19OUxZ/cSGci4MlOySzqzbGwUqGxEIDlY8I39VMwXaYQ8uXUN4G780VcL\nu46FeyRGxZGz2n3hMc805WAA1V5uir87vuirTvoSVREET97HVRGVVNJJ/FM6GXr1\nVKtptybbo81nefYJg9KBysxAa2Ao2x2ry/2ZxwhS6VZ6v1+90bpZA1BIYFEDXXn/\ndW07HSCFnYSlgPtSc+Muh15mdr94LspYeDqNIierK9i4tB6ep7llJAnq0BU91fM2\nJPeqyoTtc3m06QhLf68ccSxO4l8Hmq9kLSHO7UXgtdjfRVaffngopTNk8qK7bIb7\nLrgkqhiQw/PRCZjUdyXL153/fUcsj9nFNe25gM4vcFYwH6c5trd2tUl31NTi1MfG\nMgp3d2dqxQBIYANkEjtBDMy3SqQLIo9EymqmVP8xx2A/gCBgaxvMAsI6FSWRoC7+\nhqJ8XH4mFnXSHKtYMe6WPY+/XZgtAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8w\nHQYDVR0OBBYEFIkXqTnllT/VJnI2NqipA4XV8rh1MA4GA1UdDwEB/wQEAwIBhjAN\nBgkqhkiG9w0BAQwFAAOCAgEAKjSle8eenGeHgT8pltWCw/HzWyQruVKhfYIBfKJd\nMhV4EnH5BK7LxBIvpXGsFUrb0ThzSw0fn0zoA9jBs3i/Sj6KyeZ9qUF6b8ycDXd+\nwHonmJiQ7nk7UuMefaYAfs06vosgl1rI7eBHC0itexIQmKh0aX+821l4GEgEoSMf\nloMFTLXv2w36fPHHCsZ67ODldgcZbKNnpCTX0YrCwEYO3Pz/L398btiRcWGrewrK\njdxAAyietra8DRno1Zl87685tfqc6HsL9v8rVw58clAo9XAQvT+fmSOFw/PogRZ7\nOMHUat3gu/uQ1M5S64nkLLFsKu7jzudBuoNmcJysPlzIbqJ7vYc82OUGe9ucF3wi\n3tbKQ983hdJiTExVRBLX/fYjPsGbG3JtPTv89eg2tjWHlPhCDMMxyRKl6isu2RTq\n6VT489Z2zQrC33MYF8ZqO1NKjtyMAMIZwxVu4cGLkVsqFmEV2ScDHa5RadDyD3Ok\nm+mqybhvEVm5tPgY6p0ILPMN3yvJsMSPSvuBXhO/X5ppNnpw9gnxpwbjQKNhkFaG\nM5pkADZ14uRguOLM4VthSwUSEAr5VQYCFZhEwK+UOyJAGiB/nJz6IxL5XBNUXmRM\nHl8Xvz4riq48LMQbjcVQj0XvH941yPh+P8xOi00SGaQRaWp55Vyr4YKGbV0mEDz1\nr1o=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIF/zCCA+egAwIBAgIRAKwYju1QWxUZpn6D1gOtwgQwDQYJKoZIhvcNAQEMBQAw\ngZcxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEwMC4GA1UEAwwn\nQW1hem9uIFJEUyBldS13ZXN0LTEgUm9vdCBDQSBSU0E0MDk2IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyMDE2NTM1NFoYDzIxMjEwNTIwMTc1MzU0WjCBlzEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdBbWF6\nb24gUkRTIGV1LXdlc3QtMSBSb290IENBIFJTQTQwOTYgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCKdBP1U4lqWWkc\nCb25/BKRTsvNVnISiKocva8GAzJyKfcGRa85gmgu41U+Hz6+39K+XkRfM0YS4BvQ\nF1XxWT0bNyypuvwCvmYShSTjN1TY0ltncDddahTajE/4MdSOZb/c98u0yt03cH+G\nhVwRyT50h0v/UEol50VfwcVAEZEgcQQYhf1IFUFlIvKpmDOqLuFakOnc7c9akK+i\nivST+JO1tgowbnNkn2iLlSSgUWgb1gjaOsNfysagv1RXdlyPw3EyfwkFifAQvF2P\nQ0ayYZfYS640cccv7efM1MSVyFHR9PrrDsF/zr2S2sGPbeHr7R/HwLl+S5J/l9N9\ny0rk6IHAWV4dEkOvgpnuJKURwA48iu1Hhi9e4moNS6eqoK2KmY3VFpuiyWcA73nH\nGSmyaH+YuMrF7Fnuu7GEHZL/o6+F5cL3mj2SJJhL7sz0ryf5Cs5R4yN9BIEj/f49\nwh84pM6nexoI0Q4wiSFCxWiBpjSmOK6h7z6+2utaB5p20XDZHhxAlmlx4vMuWtjh\nXckgRFxc+ZpVMU3cAHUpVEoO49e/+qKEpPzp8Xg4cToKw2+AfTk3cmyyXQfGwXMQ\nZUHNZ3w9ILMWihGCM2aGUsLcGDRennvNmnmin/SENsOQ8Ku0/a3teEzwV9cmmdYz\n5iYs1YtgPvKFobY6+T2RXXh+A5kprwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/\nMB0GA1UdDgQWBBSyUrsQVnKmA8z6/2Ech0rCvqpNmTAOBgNVHQ8BAf8EBAMCAYYw\nDQYJKoZIhvcNAQEMBQADggIBAFlj3IFmgiFz5lvTzFTRizhVofhTJsGr14Yfkuc7\nUrXPuXOwJomd4uot2d/VIeGJpfnuS84qGdmQyGewGTJ9inatHsGZgHl9NHNWRwKZ\nlTKTbBiq7aqgtUSFa06v202wpzU+1kadxJJePrbABxiXVfOmIW/a1a4hPNcT3syH\nFIEg1+CGsp71UNjBuwg3JTKWna0sLSKcxLOSOvX1fzxK5djzVpEsvQMB4PSAzXca\nvENgg2ErTwgTA+4s6rRtiBF9pAusN1QVuBahYP3ftrY6f3ycS4K65GnqscyfvKt5\nYgjtEKO3ZeeX8NpubMbzC+0Z6tVKfPFk/9TXuJtwvVeqow0YMrLLyRiYvK7EzJ97\nrrkxoKnHYQSZ+rH2tZ5SE392/rfk1PJL0cdHnkpDkUDO+8cKsFjjYKAQSNC52sKX\n74AVh6wMwxYwVZZJf2/2XxkjMWWhKNejsZhUkTISSmiLs+qPe3L67IM7GyKm9/m6\nR3r8x6NGjhTsKH64iYJg7AeKeax4b2e4hBb6GXFftyOs7unpEOIVkJJgM6gh3mwn\nR7v4gwFbLKADKt1vHuerSZMiTuNTGhSfCeDM53XI/mjZl2HeuCKP1mCDLlaO+gZR\nQ/G+E0sBKgEX4xTkAc3kgkuQGfExdGtnN2U2ehF80lBHB8+2y2E+xWWXih/ZyIcW\nwOx+\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGBDCCA+ygAwIBAgIQM4C8g5iFRucSWdC8EdqHeDANBgkqhkiG9w0BAQwFADCB\nmjELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTMwMQYDVQQDDCpB\nbWF6b24gUkRTIGV1LWNlbnRyYWwtMSBSb290IENBIFJTQTQwOTYgRzExEDAOBgNV\nBAcMB1NlYXR0bGUwIBcNMjEwNTIxMjIyODI2WhgPMjEyMTA1MjEyMzI4MjZaMIGa\nMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5j\nLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMzAxBgNVBAMMKkFt\nYXpvbiBSRFMgZXUtY2VudHJhbC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANeTsD/u\n6saPiY4Sg0GlJlMXMBltnrcGAEkwq34OKQ0bCXqcoNJ2rcAMmuFC5x9Ho1Y3YzB7\nNO2GpIh6bZaO76GzSv4cnimcv9n/sQSYXsGbPD+bAtnN/RvNW1avt4C0q0/ghgF1\nVFS8JihIrgPYIArAmDtGNEdl5PUrdi9y6QGggbRfidMDdxlRdZBe1C18ZdgERSEv\nUgSTPRlVczONG5qcQkUGCH83MMqL5MKQiby/Br5ZyPq6rxQMwRnQ7tROuElzyYzL\n7d6kke+PNzG1mYy4cbYdjebwANCtZ2qYRSUHAQsOgybRcSoarv2xqcjO9cEsDiRU\nl97ToadGYa4VVERuTaNZxQwrld4mvzpyKuirqZltOqg0eoy8VUsaRPL3dc5aChR0\ndSrBgRYmSAClcR2/2ZCWpXemikwgt031Dsc0A/+TmVurrsqszwbr0e5xqMow9LzO\nMI/JtLd0VFtoOkL/7GG2tN8a+7gnLFxpv+AQ0DH5n4k/BY/IyS+H1erqSJhOTQ11\nvDOFTM5YplB9hWV9fp5PRs54ILlHTlZLpWGs3I2BrJwzRtg/rOlvsosqcge9ryai\nAKm2j+JBg5wJ19R8oxRy8cfrNTftZePpISaLTyV2B16w/GsSjqixjTQe9LRN2DHk\ncC+HPqYyzW2a3pUVyTGHhW6a7YsPBs9yzt6hAgMBAAGjQjBAMA8GA1UdEwEB/wQF\nMAMBAf8wHQYDVR0OBBYEFIqA8QkOs2cSirOpCuKuOh9VDfJfMA4GA1UdDwEB/wQE\nAwIBhjANBgkqhkiG9w0BAQwFAAOCAgEAOUI90mEIsa+vNJku0iUwdBMnHiO4gm7E\n5JloP7JG0xUr7d0hypDorMM3zVDAL+aZRHsq8n934Cywj7qEp1304UF6538ByGdz\ntkfacJsUSYfdlNJE9KbA4T+U+7SNhj9jvePpVjdQbhgzxITE9f8CxY/eM40yluJJ\nPhbaWvOiRagzo74wttlcDerzLT6Y/JrVpWhnB7IY8HvzK+BwAdaCsBUPC3HF+kth\nCIqLq7J3YArTToejWZAp5OOI6DLPM1MEudyoejL02w0jq0CChmZ5i55ElEMnapRX\n7GQTARHmjgAOqa95FjbHEZzRPqZ72AtZAWKFcYFNk+grXSeWiDgPFOsq6mDg8DDB\n0kfbYwKLFFCC9YFmYzR2YrWw2NxAScccUc2chOWAoSNHiqBbHR8ofrlJSWrtmKqd\nYRCXzn8wqXnTS3NNHNccqJ6dN+iMr9NGnytw8zwwSchiev53Fpc1mGrJ7BKTWH0t\nZrA6m32wzpMymtKozlOPYoE5mtZEzrzHEXfa44Rns7XIHxVQSXVWyBHLtIsZOrvW\nU5F41rQaFEpEeUQ7sQvqUoISfTUVRNDn6GK6YaccEhCji14APLFIvhRQUDyYMIiM\n4vll0F/xgVRHTgDVQ8b8sxdhSYlqB4Wc2Ym41YRz+X2yPqk3typEZBpc4P5Tt1/N\n89cEIGdbjsA=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEADCCAuigAwIBAgIQYjbPSg4+RNRD3zNxO1fuKDANBgkqhkiG9w0BAQsFADCB\nmDELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChB\nbWF6b24gUkRTIGV1LW5vcnRoLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUyNDIwNTkyMVoYDzIwNjEwNTI0MjE1OTIxWjCBmDEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChBbWF6\nb24gUkRTIGV1LW5vcnRoLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQHDAdT\nZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA179eQHxcV0YL\nXMkqEmhSBazHhnRVd8yICbMq82PitE3BZcnv1Z5Zs/oOgNmMkOKae4tCXO/41JCX\nwAgbs/eWWi+nnCfpQ/FqbLPg0h3dqzAgeszQyNl9IzTzX4Nd7JFRBVJXPIIKzlRf\n+GmFsAhi3rYgDgO27pz3ciahVSN+CuACIRYnA0K0s9lhYdddmrW/SYeWyoB7jPa2\nLmWpAs7bDOgS4LlP2H3eFepBPgNufRytSQUVA8f58lsE5w25vNiUSnrdlvDrIU5n\nQwzc7NIZCx4qJpRbSKWrUtbyJriWfAkGU7i0IoainHLn0eHp9bWkwb9D+C/tMk1X\nERZw2PDGkwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSFmR7s\ndAblusFN+xhf1ae0KUqhWTAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQAD\nggEBAHsXOpjPMyH9lDhPM61zYdja1ebcMVgfUvsDvt+w0xKMKPhBzYDMs/cFOi1N\nQ8LV79VNNfI2NuvFmGygcvTIR+4h0pqqZ+wjWl3Kk5jVxCrbHg3RBX02QLumKd/i\nkwGcEtTUvTssn3SM8bgM0/1BDXgImZPC567ciLvWDo0s/Fe9dJJC3E0G7d/4s09n\nOMdextcxFuWBZrBm/KK3QF0ByA8MG3//VXaGO9OIeeOJCpWn1G1PjT1UklYhkg61\nEbsTiZVA2DLd1BGzfU4o4M5mo68l0msse/ndR1nEY6IywwpgIFue7+rEleDh6b9d\nPYkG1rHVw2I0XDG4o17aOn5E94I=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEADCCAuigAwIBAgIQC6W4HFghUkkgyQw14a6JljANBgkqhkiG9w0BAQsFADCB\nmDELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChB\nbWF6b24gUkRTIGV1LXNvdXRoLTIgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIyMDUyMzE4MTYzMloYDzIwNjIwNTIzMTkxNjMyWjCBmDEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChBbWF6\nb24gUkRTIGV1LXNvdXRoLTIgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQHDAdT\nZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiM/t4FV2R9Nx\nUQG203UY83jInTa/6TMq0SPyg617FqYZxvz2kkx09x3dmxepUg9ttGMlPgjsRZM5\nLCFEi1FWk+hxHzt7vAdhHES5tdjwds3aIkgNEillmRDVrUsbrDwufLaa+MMDO2E1\nwQ/JYFXw16WBCCi2g1EtyQ2Xp+tZDX5IWOTnvhZpW8vVDptZ2AcJ5rMhfOYO3OsK\n5EF0GGA5ldzuezP+BkrBYGJ4wVKGxeaq9+5AT8iVZrypjwRkD7Y5CurywK3+aBwm\ns9Q5Nd8t45JCOUzYp92rFKsCriD86n/JnEvgDfdP6Hvtm0/DkwXK40Wz2q0Zrd0k\nmjP054NRPwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRR7yqd\nSfKcX2Q8GzhcVucReIpewTAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQAD\nggEBAEszBRDwXcZyNm07VcFwI1Im94oKwKccuKYeJEsizTBsVon8VpEiMwDs+yGu\n3p8kBhvkLwWybkD/vv6McH7T5b9jDX2DoOudqYnnaYeypsPH/00Vh3LvKagqzQza\norWLx+0tLo8xW4BtU+Wrn3JId8LvAhxyYXTn9bm+EwPcStp8xGLwu53OPD1RXYuy\nuu+3ps/2piP7GVfou7H6PRaqbFHNfiGg6Y+WA0HGHiJzn8uLmrRJ5YRdIOOG9/xi\nqTmAZloUNM7VNuurcMM2hWF494tQpsQ6ysg2qPjbBqzlGoOt3GfBTOZmqmwmqtam\nK7juWM/mdMQAJ3SMlE5wI8nVdx4=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIICrjCCAjSgAwIBAgIRAL9SdzVPcpq7GOpvdGoM80IwCgYIKoZIzj0EAwMwgZYx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTEvMC0GA1UEAwwmQW1h\nem9uIFJEUyBldS13ZXN0LTEgUm9vdCBDQSBFQ0MzODQgRzExEDAOBgNVBAcMB1Nl\nYXR0bGUwIBcNMjEwNTIwMTY1ODA3WhgPMjEyMTA1MjAxNzU4MDdaMIGWMQswCQYD\nVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjETMBEG\nA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExLzAtBgNVBAMMJkFtYXpvbiBS\nRFMgZXUtd2VzdC0xIFJvb3QgQ0EgRUNDMzg0IEcxMRAwDgYDVQQHDAdTZWF0dGxl\nMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEJWDgXebvwjR+Ce+hxKOLbnsfN5W5dOlP\nZn8kwWnD+SLkU81Eac/BDJsXGrMk6jFD1vg16PEkoSevsuYWlC8xR6FmT6F6pmeh\nfsMGOyJpfK4fyoEPhKeQoT23lFIc5Orjo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0G\nA1UdDgQWBBSVNAN1CHAz0eZ77qz2adeqjm31TzAOBgNVHQ8BAf8EBAMCAYYwCgYI\nKoZIzj0EAwMDaAAwZQIxAMlQeHbcjor49jqmcJ9gRLWdEWpXG8thIf6zfYQ/OEAg\nd7GDh4fR/OUk0VfjsBUN/gIwZB0bGdXvK38s6AAE/9IT051cz/wMe9GIrX1MnL1T\n1F5OqnXJdiwfZRRTHsRQ/L00\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGBDCCA+ygAwIBAgIQalr16vDfX4Rsr+gfQ4iVFDANBgkqhkiG9w0BAQwFADCB\nmjELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTMwMQYDVQQDDCpB\nbWF6b24gUkRTIGV1LWNlbnRyYWwtMiBSb290IENBIFJTQTQwOTYgRzExEDAOBgNV\nBAcMB1NlYXR0bGUwIBcNMjIwNjA2MjEyNTIzWhgPMjEyMjA2MDYyMjI1MjNaMIGa\nMQswCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5j\nLjETMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMzAxBgNVBAMMKkFt\nYXpvbiBSRFMgZXUtY2VudHJhbC0yIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANbHbFg7\n2VhZor1YNtez0VlNFaobS3PwOMcEn45BE3y7HONnElIIWXGQa0811M8V2FnyqnE8\nZ5aO1EuvijvWf/3D8DPZkdmAkIfh5hlZYY6Aatr65kEOckwIAm7ZZzrwFogYuaFC\nz/q0CW+8gxNK+98H/zeFx+IxiVoPPPX6UlrLvn+R6XYNERyHMLNgoZbbS5gGHk43\nKhENVv3AWCCcCc85O4rVd+DGb2vMVt6IzXdTQt6Kih28+RGph+WDwYmf+3txTYr8\nxMcCBt1+whyCPlMbC+Yn/ivtCO4LRf0MPZDRQrqTTrFf0h/V0BGEUmMGwuKgmzf5\nKl9ILdWv6S956ioZin2WgAxhcn7+z//sN++zkqLreSf90Vgv+A7xPRqIpTdJ/nWG\nJaAOUofBfsDsk4X4SUFE7xJa1FZAiu2lqB/E+y7jnWOvFRalzxVJ2Y+D/ZfUfrnK\n4pfKtyD1C6ni1celrZrAwLrJ3PoXPSg4aJKh8+CHex477SRsGj8KP19FG8r0P5AG\n8lS1V+enFCNvT5KqEBpDZ/Y5SQAhAYFUX+zH4/n4ql0l/emS+x23kSRrF+yMkB9q\nlhC/fMk6Pi3tICBjrDQ8XAxv56hfud9w6+/ljYB2uQ1iUYtlE3JdIiuE+3ws26O8\ni7PLMD9zQmo+sVi12pLHfBHQ6RRHtdVRXbXRAgMBAAGjQjBAMA8GA1UdEwEB/wQF\nMAMBAf8wHQYDVR0OBBYEFBFot08ipEL9ZUXCG4lagmF53C0/MA4GA1UdDwEB/wQE\nAwIBhjANBgkqhkiG9w0BAQwFAAOCAgEAi2mcZi6cpaeqJ10xzMY0F3L2eOKYnlEQ\nh6QyhmNKCUF05q5u+cok5KtznzqMwy7TFOZtbVHl8uUX+xvgq/MQCxqFAnuStBXm\ngr2dg1h509ZwvTdk7TDxGdftvPCfnPNJBFbMSq4CZtNcOFBg9Rj8c3Yj+Qvwd56V\nzWs65BUkDNJrXmxdvhJZjUkMa9vi/oFN+M84xXeZTaC5YDYNZZeW9706QqDbAVES\n5ulvKLavB8waLI/lhRBK5/k0YykCMl0A8Togt8D1QsQ0eWWbIM8/HYJMPVFhJ8Wj\nvT1p/YVeDA3Bo1iKDOttgC5vILf5Rw1ZEeDxjf/r8A7VS13D3OLjBmc31zxRTs3n\nXvHKP9MieQHn9GE44tEYPjK3/yC6BDFzCBlvccYHmqGb+jvDEXEBXKzimdC9mcDl\nf4BBQWGJBH5jkbU9p6iti19L/zHhz7qU6UJWbxY40w92L9jS9Utljh4A0LCTjlnR\nNQUgjnGC6K+jkw8hj0LTC5Ip87oqoT9w7Av5EJ3VJ4hcnmNMXJJ1DkWYdnytcGpO\nDMVITQzzDZRwhbitCVPHagTN2wdi9TEuYE33J0VmFeTc6FSI50wP2aOAZ0Q1/8Aj\nbxeM5jS25eaHc2CQAuhrc/7GLnxOcPwdWQb2XWT8eHudhMnoRikVv/KSK3mf6om4\n1YfpdH2jp30=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIID/jCCAuagAwIBAgIQTDc+UgTRtYO7ZGTQ8UWKDDANBgkqhkiG9w0BAQsFADCB\nlzELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTAwLgYDVQQDDCdB\nbWF6b24gUkRTIGV1LXdlc3QtMiBSb290IENBIFJTQTIwNDggRzExEDAOBgNVBAcM\nB1NlYXR0bGUwIBcNMjEwNTIxMjI0NjI0WhgPMjA2MTA1MjEyMzQ2MjRaMIGXMQsw\nCQYDVQQGEwJVUzEiMCAGA1UECgwZQW1hem9uIFdlYiBTZXJ2aWNlcywgSW5jLjET\nMBEGA1UECwwKQW1hem9uIFJEUzELMAkGA1UECAwCV0ExMDAuBgNVBAMMJ0FtYXpv\nbiBSRFMgZXUtd2VzdC0yIFJvb3QgQ0EgUlNBMjA0OCBHMTEQMA4GA1UEBwwHU2Vh\ndHRsZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM1oGtthQ1YiVIC2\ni4u4swMAGxAjc/BZp0yq0eP5ZQFaxnxs7zFAPabEWsrjeDzrRhdVO0h7zskrertP\ngblGhfD20JfjvCHdP1RUhy/nzG+T+hn6Takan/GIgs8grlBMRHMgBYHW7tklhjaH\n3F7LujhceAHhhgp6IOrpb6YTaTTaJbF3GTmkqxSJ3l1LtEoWz8Al/nL/Ftzxrtez\nVs6ebpvd7sw37sxmXBWX2OlvUrPCTmladw9OrllGXtCFw4YyLe3zozBlZ3cHzQ0q\nlINhpRcajTMfZrsiGCkQtoJT+AqVJPS2sHjqsEH8yiySW9Jbq4zyMbM1yqQ2vnnx\nMJgoYMcCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUaQG88UnV\nJPTI+Pcti1P+q3H7pGYwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4IB\nAQBAkgr75V0sEJimC6QRiTVWEuj2Khy7unjSfudbM6zumhXEU2/sUaVLiYy6cA/x\n3v0laDle6T07x9g64j5YastE/4jbzrGgIINFlY0JnaYmR3KZEjgi1s1fkRRf3llL\nPJm9u4Q1mbwAMQK/ZjLuuRcL3uRIHJek18nRqT5h43GB26qXyvJqeYYpYfIjL9+/\nYiZAbSRRZG+Li23cmPWrbA1CJY121SB+WybCbysbOXzhD3Sl2KSZRwSw4p2HrFtV\n1Prk0dOBtZxCG9luf87ultuDZpfS0w6oNBAMXocgswk24ylcADkkFxBWW+7BETn1\nEpK+t1Lm37mU4sxtuha00XAi\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIEADCCAuigAwIBAgIQcY44/8NUvBwr6LlHfRy7KjANBgkqhkiG9w0BAQsFADCB\nmDELMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIElu\nYy4xEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChB\nbWF6b24gUkRTIGV1LXNvdXRoLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQH\nDAdTZWF0dGxlMCAXDTIxMDUxOTE4MjcxOFoYDzIwNjEwNTE5MTkyNzE4WjCBmDEL\nMAkGA1UEBhMCVVMxIjAgBgNVBAoMGUFtYXpvbiBXZWIgU2VydmljZXMsIEluYy4x\nEzARBgNVBAsMCkFtYXpvbiBSRFMxCzAJBgNVBAgMAldBMTEwLwYDVQQDDChBbWF6\nb24gUkRTIGV1LXNvdXRoLTEgUm9vdCBDQSBSU0EyMDQ4IEcxMRAwDgYDVQQHDAdT\nZWF0dGxlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0UaBeC+Usalu\nEtXnV7+PnH+gi7/71tI/jkKVGKuhD2JDVvqLVoqbMHRh3+wGMvqKCjbHPcC2XMWv\n566fpAj4UZ9CLB5fVzss+QVNTl+FH2XhEzigopp+872ajsNzcZxrMkifxGb4i0U+\nt0Zi+UrbL5tsfP2JonKR1crOrbS6/DlzHBjIiJazGOQcMsJjNuTOItLbMohLpraA\n/nApa3kOvI7Ufool1/34MG0+wL3UUA4YkZ6oBJVxjZvvs6tI7Lzz/SnhK2widGdc\nsnbLqBpHNIZQSorVoiwcFaRBGYX/uzYkiw44Yfa4cK2V/B5zgu1Fbr0gbI2am4eh\nyVYyg4jPawIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBS9gM1m\nIIjyh9O5H/7Vj0R/akI7UzAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQAD\nggEBAF0Sm9HC2AUyedBVnwgkVXMibnYChOzz7T+0Y+fOLXYAEXex2s8oqGeZdGYX\nJHkjBn7JXu7LM+TpTbPbFFDoc1sgMguD/ls+8XsqAl1CssW+amryIL+jfcfbgQ+P\nICwEUD9hGdjBgJ5WcuS+qqxHsEIlFNci3HxcxfBa9VsWs5TjI7Vsl4meL5lf7ZyL\nwDV7dHRuU+cImqG1MIvPRIlvPnT7EghrCYi2VCPhP2pM/UvShuwVnkz4MJ29ebIk\nWR9kpblFxFdE92D5UUvMCjC2kmtgzNiErvTcwIvOO9YCbBHzRB1fFiWrXUHhJWq9\nIkaxR5icb/IpAV0A1lYZEWMVsfQ=\n-----END CERTIFICATE-----\n","-----BEGIN CERTIFICATE-----\nMIIGATCCA+mgAwIBAgIRAMa0TPL+QgbWfUPpYXQkf8wwDQYJKoZIhvcNAQEMBQAw\ngZgxCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJ\nbmMuMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwo\nQW1hem9uIFJEUyBldS1ub3J0aC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UE\nBwwHU2VhdHRsZTAgFw0yMTA1MjQyMTAzMjBaGA8yMTIxMDUyNDIyMDMyMFowgZgx\nCzAJBgNVBAYTAlVTMSIwIAYDVQQKDBlBbWF6b24gV2ViIFNlcnZpY2VzLCBJbmMu\nMRMwEQYDVQQLDApBbWF6b24gUkRTMQswCQYDVQQIDAJXQTExMC8GA1UEAwwoQW1h\nem9uIFJEUyBldS1ub3J0aC0xIFJvb3QgQ0EgUlNBNDA5NiBHMTEQMA4GA1UEBwwH\nU2VhdHRsZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANhS9LJVJyWp\n6Rudy9t47y6kzvgnFYDrvJVtgEK0vFn5ifdlHE7xqMz4LZqWBFTnS+3oidwVRqo7\ntqsuuElsouStO8m315/YUzKZEPmkw8h5ufWt/lg3NTCoUZNkB4p4skr7TspyMUwE\nVdlKQuWTCOLtofwmWT+BnFF3To6xTh3XPlT3ssancw27Gob8kJegD7E0TSMVsecP\nB8je65+3b8CGwcD3QB3kCTGLy87tXuS2+07pncHvjMRMBdDQQQqhXWsRSeUNg0IP\nxdHTWcuwMldYPWK5zus9M4dCNBDlmZjKdcZZVUOKeBBAm7Uo7CbJCk8r/Fvfr6mw\nnXXDtuWhqn/WhJiI/y0QU27M+Hy5CQMxBwFsfAjJkByBpdXmyYxUgTmMpLf43p7H\noWfH1xN0cT0OQEVmAQjMakauow4AQLNkilV+X6uAAu3STQVFRSrpvMen9Xx3EPC3\nG9flHueTa71bU65Xe8ZmEmFhGeFYHY0GrNPAFhq9RThPRY0IPyCZe0Th8uGejkek\njQjm0FHPOqs5jc8CD8eJs4jSEFt9lasFLVDcAhx0FkacLKQjGHvKAnnbRwhN/dF3\nxt4oL8Z4JGPCLau056gKnYaEyviN7PgO+IFIVOVIdKEBu2ASGE8/+QJB5bcHefNj\n04hEkDW0UYJbSfPpVbGAR0gFI/QpycKnAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB\nAf8wHQYDVR0OBBYEFFMXvvjoaGGUcul8GA3FT05DLbZcMA4GA1UdDwEB/wQEAwIB\nhjANBgkqhkiG9w0BAQwFAAOCAgEAQLwFhd2JKn4K/6salLyIA4mP58qbA/9BTB/r\nD9l0bEwDlVPSdY7R3gZCe6v7SWLfA9RjE5tdWDrQMi5IU6W2OVrVsZS/yGJfwnwe\na/9iUAYprA5QYKDg37h12XhVsDKlYCekHdC+qa5WwB1SL3YUprDLPWeaIQdg+Uh2\n+LxvpZGoxoEbca0fc7flwq9ke/3sXt/3V4wJDyY6AL2YNdjFzC+FtYjHHx8rYxHs\naesP7yunuN17KcfOZBBnSFRrx96k+Xm95VReTEEpwiBqAECqEpMbd+R0mFAayMb1\ncE77GaK5yeC2f67NLYGpkpIoPbO9p9rzoXLE5GpSizMjimnz6QCbXPFAFBDfSzim\nu6azp40kEUO6kWd7rBhqRwLc43D3TtNWQYxMve5mTRG4Od+eMKwYZmQz89BQCeqm\naZiJP9y9uwJw4p/A5V3lYHTDQqzmbOyhGUk6OdpdE8HXs/1ep1xTT20QDYOx3Ekt\nr4mmNYfH/8v9nHNRlYJOqFhmoh1i85IUl5IHhg6OT5ZTTwsGTSxvgQQXrmmHVrgZ\nrZIqyBKllCgVeB9sMEsntn4bGLig7CS/N1y2mYdW/745yCLZv2gj0NXhPqgEIdVV\nf9DhFD4ohE1C63XP0kOQee+LYg/MY5vH8swpCSWxQgX5icv5jVDz8YTdCKgUc5u8\nrM2p0kk=\n-----END CERTIFICATE-----\n"]}},61850:e=>{"use strict";e.exports={0:"DECIMAL",1:"TINY",2:"SHORT",3:"LONG",4:"FLOAT",5:"DOUBLE",6:"NULL",7:"TIMESTAMP",8:"LONGLONG",9:"INT24",10:"DATE",11:"TIME",12:"DATETIME",13:"YEAR",14:"NEWDATE",15:"VARCHAR",16:"BIT",245:"JSON",246:"NEWDECIMAL",247:"ENUM",248:"SET",249:"TINY_BLOB",250:"MEDIUM_BLOB",251:"LONG_BLOB",252:"BLOB",253:"VAR_STRING",254:"STRING",255:"GEOMETRY"},e.exports.DECIMAL=0,e.exports.TINY=1,e.exports.SHORT=2,e.exports.LONG=3,e.exports.FLOAT=4,e.exports.DOUBLE=5,e.exports.NULL=6,e.exports.TIMESTAMP=7,e.exports.LONGLONG=8,e.exports.INT24=9,e.exports.DATE=10,e.exports.TIME=11,e.exports.DATETIME=12,e.exports.YEAR=13,e.exports.NEWDATE=14,e.exports.VARCHAR=15,e.exports.BIT=16,e.exports.JSON=245,e.exports.NEWDECIMAL=246,e.exports.ENUM=247,e.exports.SET=248,e.exports.TINY_BLOB=249,e.exports.MEDIUM_BLOB=250,e.exports.LONG_BLOB=251,e.exports.BLOB=252,e.exports.VAR_STRING=253,e.exports.STRING=254,e.exports.GEOMETRY=255},12392:(e,t,n)=>{"use strict";function r(e){return JSON.stringify({[e]:1}).slice(1,-3)}let o;t.srcEscape=r;let i=!1;try{const e="";o=n(7556)(`cardinal${e}`).highlight}catch(e){o=e=>(i||(console.log("For nicer debug output consider install cardinal@^2.0.0"),i=!0),e)}t.printDebugWithCode=function(e,t){console.log(`\n\n${e}:\n`),console.log(`${o(t)}\n`)},t.typeMatch=function(e,t,n){return Array.isArray(t)?t.some((t=>e===n[t])):!!t};const s=new Set(["__defineGetter__","__defineSetter__","__lookupGetter__","__lookupSetter__","__proto__"]);t.privateObjectProps=s,t.fieldEscape=e=>{if(s.has(e))throw new Error(`The field name (${e}) can't be the same as an object's private property.`);return r(e)}},21355:(e,t,n)=>{"use strict";const r=n(59719),o=16777215;function i(e,t){const n=e[t],r=e[t+1],o=e[t+2];return r+o===0?n:n+(r<<8)+(o<<16)}class s{constructor(e,t){void 0===t&&(t=4),this.buffer=[],this.bufferLength=0,this.packetHeaderLength=t,this.headerLen=0,this.length=0,this.largePacketParts=[],this.firstPacketSequenceId=0,this.onPacket=e,this.execute=s.prototype.executeStart,this._flushLargePacket=7===t?this._flushLargePacket7:this._flushLargePacket4}_flushLargePacket4(){const e=this.largePacketParts.length;this.largePacketParts.unshift(Buffer.from([0,0,0,0]));const t=Buffer.concat(this.largePacketParts),n=new r(this.firstPacketSequenceId,t,0,t.length);this.largePacketParts.length=0,n.numPackets=e,this.onPacket(n)}_flushLargePacket7(){const e=this.largePacketParts.length;this.largePacketParts.unshift(Buffer.from([0,0,0,0,0,0,0]));const t=Buffer.concat(this.largePacketParts);this.largePacketParts.length=0;const n=new r(this.firstPacketSequenceId,t,0,t.length);n.numPackets=e,this.onPacket(n)}executeStart(e){let t=0;const n=e.length;for(;n-t>=3;){if(this.length=i(e,t),!(n-t>=this.length+this.packetHeaderLength))return this.buffer=[e.slice(t+3,n)],this.bufferLength=n-t-3,void(this.execute=s.prototype.executePayload);{const n=e[t+3];this.length0&&(this.headerLen=n-t,this.length=e[t],2===this.headerLen?(this.length=e[t]+(e[t+1]<<8),this.execute=s.prototype.executeHeader3):this.execute=s.prototype.executeHeader2)}executePayload(e){let t=0;const n=e.length,i=this.length-this.bufferLength+this.packetHeaderLength-3;if(n-t>=i){const a=Buffer.allocUnsafe(this.length+this.packetHeaderLength);let u=3;for(let e=0;e0)return this.execute(e.slice(t,n))}else this.buffer.push(e),this.bufferLength+=e.length;return null}executeHeader2(e){return this.length+=e[0]<<8,e.length>1?(this.length+=e[1]<<16,this.execute=s.prototype.executePayload,this.executePayload(e.slice(2))):(this.execute=s.prototype.executeHeader3,null)}executeHeader3(e){return this.length+=e[0]<<16,this.execute=s.prototype.executePayload,this.executePayload(e.slice(1))}}e.exports=s},4495:(e,t,n)=>{"use strict";const r=n(59719);class o{constructor(e){this.pluginName=e.pluginName,this.pluginData=e.pluginData}toPacket(e){const t=6+this.pluginName.length+this.pluginData.length,n=Buffer.allocUnsafe(t),o=new r(0,n,0,t);return o.offset=4,o.writeInt8(2),o.writeNullTerminatedString(this.pluginName,e),o.writeBuffer(this.pluginData),o}static fromPacket(e,t){e.readInt8();const n=e.readNullTerminatedString(t),r=e.readBuffer();return new o({pluginName:n,pluginData:r})}}e.exports=o},79430:(e,t,n)=>{"use strict";const r=n(59719);class o{constructor(e){this.pluginName=e.pluginName,this.pluginData=e.pluginData}toPacket(){const e=6+this.pluginName.length+this.pluginData.length,t=Buffer.allocUnsafe(e),n=new r(0,t,0,e);return n.offset=4,n.writeInt8(254),n.writeNullTerminatedString(this.pluginName,"cesu8"),n.writeBuffer(this.pluginData),n}static fromPacket(e){e.readInt8();const t=e.readNullTerminatedString("cesu8"),n=e.readBuffer();return new o({pluginName:t,pluginData:n})}}e.exports=o},45071:(e,t,n)=>{"use strict";const r=n(59719);class o{constructor(e){this.data=e}toPacket(){const e=5+this.data.length,t=Buffer.allocUnsafe(e),n=new r(0,t,0,e);return n.offset=4,n.writeInt8(1),n.writeBuffer(this.data),n}static fromPacket(e){e.readInt8();const t=e.readBuffer();return new o(t)}static verifyMarker(e){return 1===e.peekByte()}}e.exports=o},26536:(e,t,n)=>{"use strict";const r=n(59719);class o{constructor(e){Buffer.isBuffer(e)||(e=Buffer.from(e)),this.data=e}toPacket(){const e=4+this.data.length,t=Buffer.allocUnsafe(e),n=new r(0,t,0,e);return n.offset=4,n.writeBuffer(this.data),n}static fromPacket(e){const t=e.readBuffer();return new o(t)}}e.exports=o},52805:(e,t,n)=>{"use strict";const r=n(61850),o=n(59719),i=new Array(256);class s{constructor(e){this.columns=e||[]}static toPacket(e,t){let n=0;e.forEach((e=>{null!=e?n+=o.lengthCodedStringLength(e.toString(10),t):++n})),n+=2;const i=Buffer.allocUnsafe(n+4),s=new o(0,i,0,n+4);s.offset=4,s.writeInt8(0);let a=0,u=1;return e.forEach((e=>{e.type===r.NULL&&(a+=u),u*=2,256===u&&(s.writeInt8(a),a=0,u=1)})),1!==u&&s.writeInt8(a),e.forEach((e=>{null!==e?void 0!==e?s.writeLengthCodedString(e.toString(10),t):s.writeInt8(0):s.writeNull()})),s}static fromPacket(e,t){const n=new Array(e.length);t.readInt8();const r=Math.floor((e.length+7+2)/8);t.skip(r);for(let r=0;r{"use strict";const r=n(59719),o=n(90633);e.exports=class{constructor(e){this.binlogPos=e.binlogPos||0,this.serverId=e.serverId||0,this.flags=e.flags||0,this.filename=e.filename||""}toPacket(){const e=15+Buffer.byteLength(this.filename,"utf8"),t=Buffer.allocUnsafe(e),n=new r(0,t,0,e);return n.offset=4,n.writeInt8(o.BINLOG_DUMP),n.writeInt32(this.binlogPos),n.writeInt16(this.flags),n.writeInt32(this.serverId),n.writeString(this.filename),n}}},68904:e=>{"use strict";e.exports=function(e){const t={};let n,r,o,i=0;for(;i{"use strict";const r=n(90633),o=n(18388),i=n(59719),s=n(58045),a=n(89238);e.exports=class{constructor(e){let t;this.flags=e.flags,this.user=e.user||"",this.database=e.database||"",this.password=e.password||"",this.passwordSha1=e.passwordSha1,this.authPluginData1=e.authPluginData1,this.authPluginData2=e.authPluginData2,this.connectAttributes=e.connectAttrinutes||{},t=this.passwordSha1?s.calculateTokenFromPasswordSha(this.passwordSha1,this.authPluginData1,this.authPluginData2):s.calculateToken(this.password,this.authPluginData1,this.authPluginData2),this.authToken=t,this.charsetNumber=e.charsetNumber}serializeToBuffer(e){const t=e=>this.flags&o[e],n=new i(0,e,0,e.length);n.offset=4;const s=a[this.charsetNumber];if(n.writeInt8(r.CHANGE_USER),n.writeNullTerminatedString(this.user,s),t("SECURE_CONNECTION")?(n.writeInt8(this.authToken.length),n.writeBuffer(this.authToken)):(n.writeBuffer(this.authToken),n.writeInt8(0)),n.writeNullTerminatedString(this.database,s),n.writeInt16(this.charsetNumber),t("PLUGIN_AUTH")&&n.writeNullTerminatedString("mysql_native_password","latin1"),t("CONNECT_ATTRS")){const e=this.connectAttributes,t=Object.keys(e);let r=0;for(let n=0;n{"use strict";const r=n(59719),o=n(90633);e.exports=class{constructor(e){this.id=e}toPacket(){const e=new r(0,Buffer.allocUnsafe(9),0,9);return e.offset=4,e.writeInt8(o.STMT_CLOSE),e.writeInt32(this.id),e}}},4837:(e,t,n)=>{"use strict";const r=n(59719),o=n(96609),i=n(89238),s=["catalog","schema","table","orgTable","name","orgName"];class a{constructor(e,t){this._buf=e.buffer,this._clientEncoding=t,this._catalogLength=e.readLengthCodedNumber(),this._catalogStart=e.offset,e.offset+=this._catalogLength,this._schemaLength=e.readLengthCodedNumber(),this._schemaStart=e.offset,e.offset+=this._schemaLength,this._tableLength=e.readLengthCodedNumber(),this._tableStart=e.offset,e.offset+=this._tableLength,this._orgTableLength=e.readLengthCodedNumber(),this._orgTableStart=e.offset,e.offset+=this._orgTableLength;const n=e.readLengthCodedNumber(),r=e.offset;e.offset+=n,this._orgNameLength=e.readLengthCodedNumber(),this._orgNameStart=e.offset,e.offset+=this._orgNameLength,e.skip(1),this.characterSet=e.readInt16(),this.encoding=i[this.characterSet],this.name=o.decode(this._buf,"binary"===this.encoding?this._clientEncoding:this.encoding,r,r+n),this.columnLength=e.readInt32(),this.columnType=e.readInt8(),this.type=this.columnType,this.flags=e.readInt16(),this.decimals=e.readInt8()}inspect(){return{catalog:this.catalog,schema:this.schema,name:this.name,orgName:this.orgName,table:this.table,orgTable:this.orgTable,characterSet:this.characterSet,encoding:this.encoding,columnLength:this.columnLength,type:this.columnType,flags:this.flags,decimals:this.decimals}}[Symbol.for("nodejs.util.inspect.custom")](e,t,r){const o=n(61850),i=[];for(const e in o)i[o[e]]=e;const s=n(63167),a=[],u=this.flags;for(const e in s)u&s[e]&&("PRI_KEY"===e?a.push("PRIMARY KEY"):"NOT_NULL"===e?a.push("NOT NULL"):"BINARY"===e||"MULTIPLE_KEY"===e||"NO_DEFAULT_VALUE"===e||"BLOB"===e||"UNSIGNED"===e||"TIMESTAMP"===e||("ON_UPDATE_NOW"===e?a.push("ON UPDATE CURRENT_TIMESTAMP"):a.push(e)));if(e>1)return r({...this.inspect(),typeName:i[this.columnType],flags:a});const c=this.flags&s.UNSIGNED;let l=i[this.columnType];return l="BLOB"===l?4294967295===this.columnLength?"LONGTEXT":67108860===this.columnLength?"MEDIUMTEXT":262140===this.columnLength?"TEXT":1020===this.columnLength?"TINYTEXT":`BLOB(${this.columnLength})`:"VAR_STRING"===l?`VARCHAR(${Math.ceil(this.columnLength/4)})`:"TINY"===l?3===this.columnLength&&c||4===this.columnLength&&!c?"TINYINT":`TINYINT(${this.columnLength})`:"LONGLONG"===l?20===this.columnLength?"BIGINT":`BIGINT(${this.columnLength})`:"SHORT"===l?c&&5===this.columnLength?"SMALLINT":c||6!==this.columnLength?`SMALLINT(${this.columnLength})`:"SMALLINT":"LONG"===l?c&&10===this.columnLength?"INT":c||11!==this.columnLength?`INT(${this.columnLength})`:"INT":"INT24"===l?c&&8===this.columnLength?"MEDIUMINT":c||9!==this.columnLength?`MEDIUMINT(${this.columnLength})`:"MEDIUMINT":"DOUBLE"===l?22===this.columnLength&&31===this.decimals?"DOUBLE":`DOUBLE(${this.columnLength},${this.decimals})`:"FLOAT"===l?12===this.columnLength&&31===this.decimals?"FLOAT":`FLOAT(${this.columnLength},${this.decimals})`:"NEWDECIMAL"===l?11===this.columnLength&&0===this.decimals?"DECIMAL":0===this.decimals?c?`DECIMAL(${this.columnLength})`:`DECIMAL(${this.columnLength-1})`:`DECIMAL(${this.columnLength-2},${this.decimals})`:`${i[this.columnType]}(${this.columnLength})`,c&&(l+=" UNSIGNED"),`\`${this.name}\` ${[l,...a].join(" ")}`}static toPacket(e,t){let n=17;s.forEach((t=>{n+=r.lengthCodedStringLength(e[t],i[e.characterSet])}));const o=Buffer.allocUnsafe(n),a=new r(t,o,0,n);return a.offset=4,s.forEach((function(t){a.writeLengthCodedString(e[t],i[e.characterSet])})),a.writeInt8(12),a.writeInt16(e.characterSet),a.writeInt32(e.columnLength),a.writeInt8(e.columnType),a.writeInt16(e.flags),a.writeInt8(e.decimals),a.writeInt16(0),a}get db(){return this.schema}}const u=function(e){Object.defineProperty(a.prototype,e,{get:function(){const t=this[`_${e}Start`],n=t+this[`_${e}Length`],r=o.decode(this._buf,"binary"===this.encoding?this._clientEncoding:this.encoding,t,n);return Object.defineProperty(this,e,{value:r,writable:!1,configurable:!1,enumerable:!1}),r}})};u("catalog"),u("schema"),u("table"),u("orgTable"),u("orgName"),e.exports=a},44172:(e,t,n)=>{"use strict";const r=n(18541),o=n(90633),i=n(61850),s=n(59719),a=n(89238);e.exports=class{constructor(e,t,n,r){this.id=e,this.parameters=t,this.encoding=a[n],this.timezone=r}static fromPacket(e,t){const n=e.readInt32(),r=e.readInt8(),o=e.readInt32();let s=e.offset;for(;s0&&(t+=Math.floor((this.parameters.length+7)/8),t+=1,t+=2*this.parameters.length,e=this.parameters.map((e=>function(e,t,n){let r,o=i.VAR_STRING,a=function(e){return s.prototype.writeLengthCodedString.call(this,e,t)};if(null!==e)switch(typeof e){case"undefined":throw new TypeError("Bind parameters must not contain undefined");case"number":o=i.DOUBLE,r=8,a=s.prototype.writeDouble;break;case"boolean":e|=0,o=i.TINY,r=1,a=s.prototype.writeInt8;break;case"object":"[object Date]"===Object.prototype.toString.call(e)?(o=i.DATETIME,r=12,a=function(e){return s.prototype.writeDate.call(this,e,n)}):function(e){return Array.isArray(e)||e.constructor===Object||"function"==typeof e.toJSON&&!Buffer.isBuffer(e)}(e)?(e=JSON.stringify(e),o=i.JSON):Buffer.isBuffer(e)&&(r=s.lengthCodedNumberLength(e.length)+e.length,a=s.prototype.writeLengthCodedBuffer);break;default:e=e.toString()}else e="",o=i.NULL;return r||(r=s.lengthCodedStringLength(e,t)),{value:e,type:o,length:r,writer:a}}(e,this.encoding,this.timezone))),t+=e.reduce(((e,t)=>e+t.length),0));const n=Buffer.allocUnsafe(t),a=new s(0,n,0,t);if(a.offset=4,a.writeInt8(o.STMT_EXECUTE),a.writeInt32(this.id),a.writeInt8(r.NO_CURSOR),a.writeInt32(1),e){let t=0,n=1;e.forEach((e=>{e.type===i.NULL&&(t+=n),n*=2,256===n&&(a.writeInt8(t),t=0,n=1)})),1!==n&&a.writeInt8(t),a.writeInt8(1),e.forEach((e=>{a.writeInt8(e.type),a.writeInt8(0)})),e.forEach((e=>{e.type!==i.NULL&&e.writer.call(a,e.value)}))}return a}}},66394:(e,t,n)=>{"use strict";const r=n(59719),o=n(18388);class i{constructor(e){this.protocolVersion=e.protocolVersion,this.serverVersion=e.serverVersion,this.capabilityFlags=e.capabilityFlags,this.connectionId=e.connectionId,this.authPluginData1=e.authPluginData1,this.authPluginData2=e.authPluginData2,this.characterSet=e.characterSet,this.statusFlags=e.statusFlags,this.autPluginName=e.autPluginName}setScrambleData(e){n(76982).randomBytes(20,((t,n)=>{t?e(t):(this.authPluginData1=n.slice(0,8),this.authPluginData2=n.slice(8,20),e())}))}toPacket(e){const t=68+Buffer.byteLength(this.serverVersion,"utf8"),n=Buffer.alloc(t+4,0),o=new r(e,n,0,t+4);o.offset=4,o.writeInt8(this.protocolVersion),o.writeString(this.serverVersion,"cesu8"),o.writeInt8(0),o.writeInt32(this.connectionId),o.writeBuffer(this.authPluginData1),o.writeInt8(0);const i=Buffer.allocUnsafe(4);return i.writeUInt32LE(this.capabilityFlags,0),o.writeBuffer(i.slice(0,2)),o.writeInt8(this.characterSet),o.writeInt16(this.statusFlags),o.writeBuffer(i.slice(2,4)),o.writeInt8(21),o.skip(10),o.writeBuffer(this.authPluginData2),o.writeInt8(0),o.writeString("mysql_native_password","latin1"),o.writeInt8(0),o}static fromPacket(e){const t={};t.protocolVersion=e.readInt8(),t.serverVersion=e.readNullTerminatedString("cesu8"),t.connectionId=e.readInt32(),t.authPluginData1=e.readBuffer(8),e.skip(1);const n=Buffer.allocUnsafe(4);if(n[0]=e.readInt8(),n[1]=e.readInt8(),e.haveMoreData()?(t.characterSet=e.readInt8(),t.statusFlags=e.readInt16(),n[2]=e.readInt8(),n[3]=e.readInt8(),t.capabilityFlags=n.readUInt32LE(0),t.capabilityFlags&o.PLUGIN_AUTH?t.authPluginDataLength=e.readInt8():(t.authPluginDataLength=0,e.skip(1)),e.skip(10)):t.capabilityFlags=n.readUInt16LE(0),t.capabilityFlags&o.SECURE_CONNECTION){const n=t.authPluginDataLength;if(0===n)t.authPluginDataLength=20,t.authPluginData2=e.readBuffer(12),e.skip(1);else{const r=Math.max(13,n-8);t.authPluginData2=e.readBuffer(r)}}return t.capabilityFlags&o.PLUGIN_AUTH&&(t.autPluginName=e.readNullTerminatedString("ascii")),new i(t)}}e.exports=i},80446:(e,t,n)=>{"use strict";const r=n(18388),o=n(89238),i=n(59719),s=n(58045);e.exports=class{constructor(e){let t;this.user=e.user||"",this.database=e.database||"",this.password=e.password||"",this.passwordSha1=e.passwordSha1,this.authPluginData1=e.authPluginData1,this.authPluginData2=e.authPluginData2,this.compress=e.compress,this.clientFlags=e.flags,t=this.passwordSha1?s.calculateTokenFromPasswordSha(this.passwordSha1,this.authPluginData1,this.authPluginData2):s.calculateToken(this.password,this.authPluginData1,this.authPluginData2),this.authToken=t,this.charsetNumber=e.charsetNumber,this.encoding=o[e.charsetNumber],this.connectAttributes=e.connectAttributes}serializeResponse(e){const t=e=>this.clientFlags&r[e],n=new i(0,e,0,e.length);n.offset=4,n.writeInt32(this.clientFlags),n.writeInt32(0),n.writeInt8(this.charsetNumber),n.skip(23);const o=this.encoding;let s;if(n.writeNullTerminatedString(this.user,o),t("PLUGIN_AUTH_LENENC_CLIENT_DATA")?(n.writeLengthCodedNumber(this.authToken.length),n.writeBuffer(this.authToken)):t("SECURE_CONNECTION")?(n.writeInt8(this.authToken.length),n.writeBuffer(this.authToken)):(n.writeBuffer(this.authToken),n.writeInt8(0)),t("CONNECT_WITH_DB")&&n.writeNullTerminatedString(this.database,o),t("PLUGIN_AUTH")&&n.writeNullTerminatedString("mysql_native_password","latin1"),t("CONNECT_ATTRS")){const e=this.connectAttributes||{},t=Object.keys(e);let r=0;for(s=0;s{"use strict";const r=n(932),o={AuthNextFactor:n(4495),AuthSwitchRequest:n(79430),AuthSwitchRequestMoreData:n(45071),AuthSwitchResponse:n(26536),BinaryRow:n(52805),BinlogDump:n(83323),ChangeUser:n(90877),CloseStatement:n(11925),ColumnDefinition:n(4837),Execute:n(44172),Handshake:n(66394),HandshakeResponse:n(80446),PrepareStatement:n(67842),PreparedStatementHeader:n(15102),Query:n(82403),RegisterSlave:n(5154),ResultSetHeader:n(11238),SSLRequest:n(48339),TextRow:n(80467)};Object.entries(o).forEach((([t,n])=>{if(e.exports[t]=n,r.env.NODE_DEBUG&&n.prototype.toPacket){const e=n.prototype.toPacket;n.prototype.toPacket=function(){const n=e.call(this);return n._name=t,n}}}));const i=n(59719);t.Packet=i,t.OK=class{static toPacket(e,t){const n=(e=e||{}).affectedRows||0,r=e.insertId||0,o=e.serverStatus||0,s=e.warningCount||0,a=e.message||"";let u=9+i.lengthCodedNumberLength(n);u+=i.lengthCodedNumberLength(r);const c=Buffer.allocUnsafe(u),l=new i(0,c,0,u);return l.offset=4,l.writeInt8(0),l.writeLengthCodedNumber(n),l.writeLengthCodedNumber(r),l.writeInt16(o),l.writeInt16(s),l.writeString(a,t),l._name="OK",l}},t.EOF=class{static toPacket(e,t){void 0===e&&(e=0),void 0===t&&(t=0);const n=new i(0,Buffer.allocUnsafe(9),0,9);return n.offset=4,n.writeInt8(254),n.writeInt16(e),n.writeInt16(t),n._name="EOF",n}};class s{static toPacket(e,t){const n=13+Buffer.byteLength(e.message,"utf8"),r=new i(0,Buffer.allocUnsafe(n),0,n);return r.offset=4,r.writeInt8(255),r.writeInt16(e.code),r.writeString("#_____",t),r.writeString(e.message,t),r._name="Error",r}static fromPacket(e){e.readInt8();const t=e.readInt16();e.readString(1,"ascii"),e.readString(5,"ascii");const n=e.readNullTerminatedString("utf8"),r=new s;return r.message=n,r.code=t,r}}t.Error=s},59719:(e,t,n)=>{"use strict";const r=n(9556),o=n(20181).Buffer,i=n(35017),s=n(96609),a=new Date(NaN);function u(e,t){const n=t.toString();return n.length>=e?n:("000000000000"+n).slice(-e)}const c="-".charCodeAt(0),l="+".charCodeAt(0),h=".".charCodeAt(0),f="e".charCodeAt(0),p="E".charCodeAt(0);class d{constructor(e,t,n,r){this.sequenceId=e,this.numPackets=1,this.buffer=t,this.start=n,this.offset=n+4,this.end=r}reset(){this.offset=this.start+4}length(){return this.end-this.start}slice(){return this.buffer.slice(this.start,this.end)}dump(){console.log([this.buffer.asciiSlice(this.start,this.end)],this.buffer.slice(this.start,this.end),this.length(),this.sequenceId)}haveMoreData(){return this.end>this.offset}skip(e){this.offset+=e}readInt8(){return this.buffer[this.offset++]}readInt16(){return this.offset+=2,this.buffer.readUInt16LE(this.offset-2)}readInt24(){return this.readInt16()+(this.readInt8()<<16)}readInt32(){return this.offset+=4,this.buffer.readUInt32LE(this.offset-4)}readSInt8(){return this.buffer.readInt8(this.offset++)}readSInt16(){return this.offset+=2,this.buffer.readInt16LE(this.offset-2)}readSInt32(){return this.offset+=4,this.buffer.readInt32LE(this.offset-4)}readInt64JSNumber(){const e=this.readInt32(),t=this.readInt32();return new i(e,t,!0).toNumber()}readSInt64JSNumber(){const e=this.readInt32(),t=this.readInt32();return 2147483648&t?new i(e,t,!1).toNumber():e+4294967296*t}readInt64String(){const e=this.readInt32(),t=this.readInt32();return new i(e,t,!0).toString()}readSInt64String(){const e=this.readInt32(),t=this.readInt32();return new i(e,t,!1).toString()}readInt64(){const e=this.readInt32(),t=this.readInt32();let n=new i(e,t,!0);const r=n.toNumber(),o=n.toString();return n=r.toString()===o?r:o,n}readSInt64(){const e=this.readInt32(),t=this.readInt32();let n=new i(e,t,!1);const r=n.toNumber(),o=n.toString();return n=r.toString()===o?r:o,n}isEOF(){return 254===this.buffer[this.offset]&&this.length()<13}eofStatusFlags(){return this.buffer.readInt16LE(this.offset+3)}eofWarningCount(){return this.buffer.readInt16LE(this.offset+1)}readLengthCodedNumber(e,t){const n=this.buffer[this.offset++];return n<251?n:this.readLengthCodedNumberExt(n,e,t)}readLengthCodedNumberSigned(e){return this.readLengthCodedNumber(e,!0)}readLengthCodedNumberExt(e,t,n){let r,o,s;if(251===e)return null;if(252===e)return this.readInt8()+(this.readInt8()<<8);if(253===e)return this.readInt8()+(this.readInt8()<<8)+(this.readInt8()<<16);if(254===e){if(r=this.readInt32(),o=this.readInt32(),0===o)return r;if(o<2097152)return 4294967296*o+r;s=new i(r,o,!n);const e=s.toNumber(),a=s.toString();return s=e.toString()===a?e:a,t?a:s}throw console.trace(),new Error(`Should not reach here: ${e}`)}readFloat(){const e=this.buffer.readFloatLE(this.offset);return this.offset+=4,e}readDouble(){const e=this.buffer.readDoubleLE(this.offset);return this.offset+=8,e}readBuffer(e){return void 0===e&&(e=this.end-this.offset),this.offset+=e,this.buffer.slice(this.offset-e,this.offset)}readDateTime(e){if(!e||"Z"===e||"local"===e){const t=this.readInt8();if(251===t)return null;let n=0,r=0,o=0,i=0,s=0,u=0,c=0;return t>3&&(n=this.readInt16(),r=this.readInt8(),o=this.readInt8()),t>6&&(i=this.readInt8(),s=this.readInt8(),u=this.readInt8()),t>10&&(c=this.readInt32()/1e3),n+r+o+i+s+u+c===0?a:"Z"===e?new Date(Date.UTC(n,r-1,o,i,s,u,c)):new Date(n,r-1,o,i,s,u,c)}let t=this.readDateTimeString(6,"T");return 10===t.length&&(t+="T00:00:00"),new Date(t+e)}readDateTimeString(e,t){const n=this.readInt8();let r,o=0,i=0,s=0,a=0,c=0,l=0,h=0;return n>3&&(o=this.readInt16(),i=this.readInt8(),s=this.readInt8(),r=[u(4,o),u(2,i),u(2,s)].join("-")),n>6&&(a=this.readInt8(),c=this.readInt8(),l=this.readInt8(),r+=`${t||" "}${[u(2,a),u(2,c),u(2,l)].join(":")}`),n>10&&(h=this.readInt32(),r+=".",e&&(h=u(6,h),h.length>e&&(h=h.substring(0,e))),r+=h),r}readTimeString(e){const t=this.readInt8();if(0===t)return"00:00:00";const n=this.readInt8()?-1:1;let r=0,o=0,i=0,s=0,a=0;return t>6&&(r=this.readInt32(),o=this.readInt8(),i=this.readInt8(),s=this.readInt8()),t>10&&(a=this.readInt32()),e?(o+=24*r,i+=60*o,s+=60*i,a+=1e3*s,a*=n,a):(-1===n?"-":"")+[u(2,24*r+o),u(2,i),u(2,s)].join(":")+(a?`.${a}`.replace(/0+$/,""):"")}readLengthCodedString(e){const t=this.readLengthCodedNumber();return null===t?null:(this.offset+=t,s.decode(this.buffer,e,this.offset-t,this.offset))}readLengthCodedBuffer(){const e=this.readLengthCodedNumber();return null===e?null:this.readBuffer(e)}readNullTerminatedString(e){const t=this.offset;let n=this.offset;for(;this.buffer[n];)n+=1;return this.offset=n+1,s.decode(this.buffer,e,t,n)}readString(e,t){return"string"==typeof e&&void 0===t&&(t=e,e=void 0),void 0===e&&(e=this.end-this.offset),this.offset+=e,s.decode(this.buffer,t,this.offset-e,this.offset)}parseInt(e,t){if(null===e)return null;if(e>=14&&!t){const t=this.buffer.toString("ascii",this.offset,this.offset+e);return this.offset+=e,Number(t)}let n=0;const r=this.offset,o=this.offset+e;let i,s=1;if(0===e)return 0;this.buffer[this.offset]===c&&(this.offset++,s=-1);const a=o-this.offset;if(t){if(a>=15)return i=this.readString(o-this.offset,"binary"),n=parseInt(i,10),n.toString()===i?s*n:-1===s?`-${i}`:i;if(a>16)return i=this.readString(o-this.offset),-1===s?`-${i}`:i}for(this.buffer[this.offset]===l&&this.offset++;this.offset0;i--)r=l?e.readDoubleLE(t):e.readDoubleBE(t),t+=8,o=l?e.readDoubleLE(t):e.readDoubleBE(t),t+=8,c.push({x:r,y:o});break;case 3:const h=l?e.readUInt32LE(t):e.readUInt32BE(t);for(t+=4,c=[],i=h;i>0;i--){for(a=l?e.readUInt32LE(t):e.readUInt32BE(t),t+=4,u=[],s=a;s>0;s--)r=l?e.readDoubleLE(t):e.readDoubleBE(t),t+=8,o=l?e.readDoubleLE(t):e.readDoubleBE(t),t+=8,u.push({x:r,y:o});c.push(u)}break;case 4:case 5:case 6:case 7:const f=l?e.readUInt32LE(t):e.readUInt32BE(t);for(t+=4,c=[],i=f;i>0;i--)c.push(n())}return c}():null}parseDate(e){const t=this.readLengthCodedNumber();if(null===t)return null;if(10!==t)return new Date(NaN);const n=this.parseInt(4);this.offset++;const r=this.parseInt(2);this.offset++;const o=this.parseInt(2);return e&&"local"!==e?"Z"===e?new Date(Date.UTC(n,r-1,o)):new Date(`${u(4,n)}-${u(2,r)}-${u(2,o)}T00:00:00${e}`):new Date(n,r-1,o)}parseDateTime(e){const t=this.readLengthCodedString("binary");return null===t?null:e&&"local"!==e?new Date(`${t}${e}`):new Date(t)}parseFloat(e){if(null===e)return null;let t=0;const n=this.offset+e;let r=1,o=!1,i=0;if(0===e)return 0;for(this.buffer[this.offset]===c&&(this.offset++,r=-1),this.buffer[this.offset]===l&&this.offset++;this.offset>8)}writeInt16(e){this.buffer.writeUInt16LE(e,this.offset),this.offset+=2}writeInt8(e){this.buffer.writeUInt8(e,this.offset),this.offset++}writeDouble(e){this.buffer.writeDoubleLE(e,this.offset),this.offset+=8}writeBuffer(e){e.copy(this.buffer,this.offset),this.offset+=e.length}writeNull(){this.buffer[this.offset]=251,this.offset++}writeNullTerminatedString(e,t){const n=s.encode(e,t);this.buffer.length&&n.copy(this.buffer,this.offset),this.offset+=n.length,this.writeInt8(0)}writeString(e,t){if(null===e)return void this.writeInt8(251);if(0===e.length)return;const n=s.encode(e,t);this.buffer.length&&n.copy(this.buffer,this.offset),this.offset+=n.length}writeLengthCodedString(e,t){const n=s.encode(e,t);this.writeLengthCodedNumber(n.length),this.buffer.length&&n.copy(this.buffer,this.offset),this.offset+=n.length}writeLengthCodedBuffer(e){this.writeLengthCodedNumber(e.length),e.copy(this.buffer,this.offset),this.offset+=e.length}writeLengthCodedNumber(e){return e<251?this.writeInt8(e):e<65535?(this.writeInt8(252),this.writeInt16(e)):e<16777215?(this.writeInt8(253),this.writeInt24(e)):null===e?this.writeInt8(251):(this.writeInt8(254),this.buffer.writeUInt32LE(e,this.offset),this.offset+=4,this.buffer.writeUInt32LE(e>>32,this.offset),this.offset+=4,this.offset)}writeDate(e,t){if(this.buffer.writeUInt8(11,this.offset),t&&"local"!==t){if("Z"!==t){const n=("-"===t[0]?-1:1)*(60*parseInt(t.substring(1,3),10)+parseInt(t.substring(4),10));0!==n&&(e=new Date(e.getTime()+6e4*n))}this.buffer.writeUInt16LE(e.getUTCFullYear(),this.offset+1),this.buffer.writeUInt8(e.getUTCMonth()+1,this.offset+3),this.buffer.writeUInt8(e.getUTCDate(),this.offset+4),this.buffer.writeUInt8(e.getUTCHours(),this.offset+5),this.buffer.writeUInt8(e.getUTCMinutes(),this.offset+6),this.buffer.writeUInt8(e.getUTCSeconds(),this.offset+7),this.buffer.writeUInt32LE(1e3*e.getUTCMilliseconds(),this.offset+8)}else this.buffer.writeUInt16LE(e.getFullYear(),this.offset+1),this.buffer.writeUInt8(e.getMonth()+1,this.offset+3),this.buffer.writeUInt8(e.getDate(),this.offset+4),this.buffer.writeUInt8(e.getHours(),this.offset+5),this.buffer.writeUInt8(e.getMinutes(),this.offset+6),this.buffer.writeUInt8(e.getSeconds(),this.offset+7),this.buffer.writeUInt32LE(1e3*e.getMilliseconds(),this.offset+8);this.offset+=12}writeHeader(e){const t=this.offset;this.offset=0,this.writeInt24(this.buffer.length-4),this.writeInt8(e),this.offset=t}clone(){return new d(this.sequenceId,this.buffer,this.start,this.end)}type(){return this.isEOF()?"EOF":this.isError()?"Error":0===this.buffer[this.offset]?"maybeOK":""}static lengthCodedNumberLength(e){return e<251?1:e<65535?3:e<16777215?5:9}static lengthCodedStringLength(e,t){const n=s.encode(e,t).length;return d.lengthCodedNumberLength(n)+n}static MockBuffer(){const e=function(){},t=Buffer.alloc(0);for(const n in o.prototype)"function"==typeof t[n]&&(t[n]=e);return t}}e.exports=d},67842:(e,t,n)=>{"use strict";const r=n(59719),o=n(90633),i=n(96609),s=n(89238);e.exports=class{constructor(e,t){this.query=e,this.charsetNumber=t,this.encoding=s[t]}toPacket(){const e=i.encode(this.query,this.encoding),t=5+e.length,n=Buffer.allocUnsafe(t),s=new r(0,n,0,t);return s.offset=4,s.writeInt8(o.STMT_PREPARE),s.writeBuffer(e),s}}},15102:e=>{"use strict";e.exports=class{constructor(e){e.skip(1),this.id=e.readInt32(),this.fieldCount=e.readInt16(),this.parameterCount=e.readInt16(),e.skip(1),this.warningCount=e.readInt16()}}},82403:(e,t,n)=>{"use strict";const r=n(59719),o=n(90633),i=n(96609),s=n(89238);e.exports=class{constructor(e,t){this.query=e,this.charsetNumber=t,this.encoding=s[t]}toPacket(){const e=i.encode(this.query,this.encoding),t=5+e.length,n=Buffer.allocUnsafe(t),s=new r(0,n,0,t);return s.offset=4,s.writeInt8(o.QUERY),s.writeBuffer(e),s}}},5154:(e,t,n)=>{"use strict";const r=n(59719),o=n(90633);e.exports=class{constructor(e){this.serverId=e.serverId||0,this.slaveHostname=e.slaveHostname||"",this.slaveUser=e.slaveUser||"",this.slavePassword=e.slavePassword||"",this.slavePort=e.slavePort||0,this.replicationRank=e.replicationRank||0,this.masterId=e.masterId||0}toPacket(){const e=15+Buffer.byteLength(this.slaveHostname,"utf8")+Buffer.byteLength(this.slaveUser,"utf8")+Buffer.byteLength(this.slavePassword,"utf8")+3+4,t=Buffer.allocUnsafe(e),n=new r(0,t,0,e);return n.offset=4,n.writeInt8(o.REGISTER_SLAVE),n.writeInt32(this.serverId),n.writeInt8(Buffer.byteLength(this.slaveHostname,"utf8")),n.writeString(this.slaveHostname),n.writeInt8(Buffer.byteLength(this.slaveUser,"utf8")),n.writeString(this.slaveUser),n.writeInt8(Buffer.byteLength(this.slavePassword,"utf8")),n.writeString(this.slavePassword),n.writeInt16(this.slavePort),n.writeInt32(this.replicationRank),n.writeInt32(this.masterId),n}}},11238:(e,t,n)=>{"use strict";const r=n(59719),o=n(18388),i=n(87033),s=n(16397),a=n(95831);e.exports=class{constructor(e,t){const n=t.config.bigNumberStrings,r=t.serverEncoding,u=t._handshakePacket.capabilityFlags,c=function(e){return u&o[e]};if(0!==e.buffer[e.offset])return this.fieldCount=e.readLengthCodedNumber(),void(null===this.fieldCount&&(this.infileName=e.readString(void 0,r)));this.fieldCount=e.readInt8(),this.affectedRows=e.readLengthCodedNumber(n),this.insertId=e.readLengthCodedNumberSigned(n),this.info="",c("PROTOCOL_41")?(this.serverStatus=e.readInt16(),this.warningStatus=e.readInt16()):c("TRANSACTIONS")&&(this.serverStatus=e.readInt16());let l=null;if(c("SESSION_TRACK")&&e.offset0&&(l={systemVariables:{},schema:null,gtids:[],trackStateChange:null});e.offset{"use strict";const r=n(18388),o=n(59719);e.exports=class{constructor(e,t){this.clientFlags=e|r.SSL,this.charset=t}toPacket(){const e=Buffer.allocUnsafe(36),t=new o(0,e,0,36);return e.fill(0),t.offset=4,t.writeInt32(this.clientFlags),t.writeInt32(0),t.writeInt8(this.charset),t}}},80467:(e,t,n)=>{"use strict";const r=n(59719);class o{constructor(e){this.columns=e||[]}static fromPacket(e){const t=[];for(;e.haveMoreData();)t.push(e.readLengthCodedString());return new o(t)}static toPacket(e,t){let n=0;e.forEach((e=>{null!=e?n+=r.lengthCodedStringLength(e.toString(10),t):++n}));const o=Buffer.allocUnsafe(n+4),i=new r(0,o,0,n+4);return i.offset=4,e.forEach((e=>{null!==e?void 0!==e?i.writeLengthCodedString(e.toString(10),t):i.writeInt8(0):i.writeNull()})),i}}e.exports=o},34363:(e,t,n)=>{"use strict";const r=n(63167),o=n(44782),i=n(61850),s=n(12392),a=n(14065),u=n(77074),c=[];for(const e in i)c[i[e]]=e;function l(e,t,n,a){const u=Boolean(n.supportBigNumbers||t.supportBigNumbers),c=Boolean(n.bigNumberStrings||t.bigNumberStrings),l=n.timezone||t.timezone,h=n.dateStrings||t.dateStrings,f=e.flags&r.UNSIGNED;switch(e.columnType){case i.TINY:return f?"packet.readInt8();":"packet.readSInt8();";case i.SHORT:return f?"packet.readInt16();":"packet.readSInt16();";case i.LONG:case i.INT24:return f?"packet.readInt32();":"packet.readSInt32();";case i.YEAR:return"packet.readInt16()";case i.FLOAT:return"packet.readFloat();";case i.DOUBLE:return"packet.readDouble();";case i.NULL:return"null;";case i.DATE:case i.DATETIME:case i.TIMESTAMP:case i.NEWDATE:return s.typeMatch(e.columnType,h,i)?`packet.readDateTimeString(${parseInt(e.decimals,10)});`:`packet.readDateTime(${s.srcEscape(l)});`;case i.TIME:return"packet.readTimeString()";case i.DECIMAL:case i.NEWDECIMAL:return t.decimalNumbers?"packet.parseLengthCodedFloat();":'packet.readLengthCodedString("ascii");';case i.GEOMETRY:return"packet.parseGeometryValue();";case i.JSON:return t.jsonStrings?'packet.readLengthCodedString("utf8")':'JSON.parse(packet.readLengthCodedString("utf8"));';case i.LONGLONG:return u?c?f?"packet.readInt64String();":"packet.readSInt64String();":f?"packet.readInt64();":"packet.readSInt64();":f?"packet.readInt64JSNumber();":"packet.readSInt64JSNumber();";default:return e.characterSet===o.BINARY?"packet.readLengthCodedBuffer();":`packet.readLengthCodedString(fields[${a}].encoding)`}}function h(e,t,n){const r=a(),o=Math.floor((e.length+7+2)/8);r("(function(){"),r("return class BinaryRow {"),r("constructor() {"),r("}"),r("next(packet, fields, options) {"),t.rowsAsArray?r(`const result = new Array(${e.length});`):r("const result = {};"),"function"==typeof n.typeCast&&"function"!=typeof t.typeCast&&(t.typeCast=n.typeCast),r("packet.readInt8();");for(let e=0;e{"use strict";const r=n(95987).default;let o=new r({max:15e3});function i(e,t,n,r){const o=[e,typeof n.nestTables,n.nestTables,Boolean(n.rowsAsArray),Boolean(n.supportBigNumbers||r.supportBigNumbers),Boolean(n.bigNumberStrings||r.bigNumberStrings),typeof n.typeCast,n.timezone||r.timezone,Boolean(n.decimalNumbers),n.dateStrings];for(let e=0;e{"use strict";const r=n(95249),o=new(0,n(95987).default)({max:500});t.decode=function(e,t,n,i,s){if(Buffer.isEncoding(t))return e.toString(t,n,i);let a;if(s){const e={encoding:t,options:s},n=JSON.stringify(e);a=o.get(n),a||(a=r.getDecoder(e.encoding,e.options),o.set(n,a))}else a=o.get(t),a||(a=r.getDecoder(t),o.set(t,a));const u=a.write(e.slice(n,i)),c=a.end();return c?u+c:u},t.encode=function(e,t,n){if(Buffer.isEncoding(t))return Buffer.from(e,t);const o=r.getEncoder(t,n||{}),i=o.write(e),s=o.end();return s&&s.length>0?Buffer.concat([i,s]):i}},88305:(e,t,n)=>{"use strict";const r=n(61850),o=n(44782),i=n(12392),s=n(14065),a=n(77074),u=[];for(const e in r)u[r[e]]=e;function c(e,t,n,s,a){const u=Boolean(a.supportBigNumbers||s.supportBigNumbers),c=Boolean(a.bigNumberStrings||s.bigNumberStrings),l=a.timezone||s.timezone,h=a.dateStrings||s.dateStrings;switch(e){case r.TINY:case r.SHORT:case r.LONG:case r.INT24:case r.YEAR:return"packet.parseLengthCodedIntNoBigCheck()";case r.LONGLONG:return u&&c?"packet.parseLengthCodedIntString()":`packet.parseLengthCodedInt(${u})`;case r.FLOAT:case r.DOUBLE:return"packet.parseLengthCodedFloat()";case r.NULL:return"packet.readLengthCodedNumber()";case r.DECIMAL:case r.NEWDECIMAL:return s.decimalNumbers?"packet.parseLengthCodedFloat()":'packet.readLengthCodedString("ascii")';case r.DATE:return i.typeMatch(e,h,r)?'packet.readLengthCodedString("ascii")':`packet.parseDate(${i.srcEscape(l)})`;case r.DATETIME:case r.TIMESTAMP:return i.typeMatch(e,h,r)?'packet.readLengthCodedString("ascii")':`packet.parseDateTime(${i.srcEscape(l)})`;case r.TIME:return'packet.readLengthCodedString("ascii")';case r.GEOMETRY:return"packet.parseGeometryValue()";case r.JSON:return s.jsonStrings?'packet.readLengthCodedString("utf8")':'JSON.parse(packet.readLengthCodedString("utf8"))';default:return t===o.BINARY?"packet.readLengthCodedBuffer()":`packet.readLengthCodedString(${n})`}}function l(e,t,n){"function"==typeof n.typeCast&&"function"!=typeof t.typeCast&&(t.typeCast=n.typeCast);const o=s();o("(function () {")("return class TextRow {"),o("constructor(fields) {"),"function"==typeof t.typeCast&&(o("const _this = this;"),o("for(let i=0; i{"use strict";const r=n(932),o=n(97333),i=n(24434).EventEmitter,s=n(27062),a=n(22153),u=n(69277);function c(e,t){const n=e.length;for(let r=0;re(new Error("Pool is closed."))));let t;return this._freeConnections.length>0?(t=this._freeConnections.pop(),this.emit("acquire",t),r.nextTick((()=>e(null,t)))):0===this.config.connectionLimit||this._allConnections.lengththis._closed?e(new Error("Pool is closed.")):n?e(n):(this.emit("connection",t),this.emit("acquire",t),e(null,t))))):this.config.waitForConnections?this.config.queueLimit&&this._connectionQueue.length>=this.config.queueLimit?e(new Error("Queue limit reached.")):(this.emit("enqueue"),this._connectionQueue.push(e)):r.nextTick((()=>e(new Error("No connections available."))))}releaseConnection(e){let t;e._pool?this._connectionQueue.length?(t=this._connectionQueue.shift(),r.nextTick(t.bind(null,null,e))):(this._freeConnections.push(e),this.emit("release",e)):this._connectionQueue.length&&(t=this._connectionQueue.shift(),r.nextTick(this.getConnection.bind(this,t)))}end(e){this._closed=!0,clearTimeout(this._removeIdleTimeoutConnectionsTimer),"function"!=typeof e&&(e=function(e){if(e)throw e});let t,n=!1,r=0;const o=function(t){if(!n)return t||++r>=this._allConnections.length?(n=!0,void e(t)):void 0}.bind(this);if(0!==this._allConnections.length)for(let e=0;e{if(e)"function"==typeof r.onResult?r.onResult(e):r.emit("error",e);else try{t.query(r).once("end",(()=>{t.release()}))}catch(e){throw t.release(),e}})),r}execute(e,t,n){"function"==typeof t&&(n=t,t=[]),this.getConnection(((r,o)=>{if(r)return n(r);try{o.execute(e,t,n).once("end",(()=>{o.release()}))}catch(e){return o.release(),n(e)}}))}_removeConnection(e){c(this._allConnections,e),c(this._freeConnections,e),this.releaseConnection(e)}_removeIdleTimeoutConnections(){this._removeIdleTimeoutConnectionsTimer&&clearTimeout(this._removeIdleTimeoutConnectionsTimer),this._removeIdleTimeoutConnectionsTimer=setTimeout((()=>{try{for(;this._freeConnections.length>this.config.maxIdle&&Date.now()-this._freeConnections.get(0).lastActiveTime>this.config.idleTimeout;)this._freeConnections.get(0).destroy()}finally{this._removeIdleTimeoutConnections()}}),1e3)}format(e,t){return o.format(e,t,this.config.connectionConfig.stringifyObjects,this.config.connectionConfig.timezone)}escape(e){return o.escape(e,this.config.connectionConfig.stringifyObjects,this.config.connectionConfig.timezone)}escapeId(e){return o.escapeId(e,!1)}}},70322:(e,t,n)=>{"use strict";const r=n(932),o=n(83531),i=n(78296),s=n(69277),a=n(24434).EventEmitter,u={RR(){let e=0;return t=>t[e++%t.length]},RANDOM:()=>e=>e[Math.floor(Math.random()*e.length)],ORDER:()=>e=>e[0]};class c{constructor(e,t,n){this._cluster=e,this._pattern=t,this._selector=u[n]()}getConnection(e){const t=this._getClusterNode();return null===t?e(new Error("Pool does Not exists.")):this._cluster._getConnection(t,((t,n)=>t?e(t):"retry"===n?this.getConnection(e):e(null,n)))}query(e,t,n){const r=s.createQuery(e,t,n,{});return this.getConnection(((e,t)=>{if(e)"function"==typeof r.onResult?r.onResult(e):r.emit("error",e);else try{t.query(r).once("end",(()=>{t.release()}))}catch(e){throw t.release(),e}})),r}execute(e,t,n){"function"==typeof t&&(n=t,t=[]),this.getConnection(((r,o)=>{if(r)return n(r);try{o.execute(e,t,n).once("end",(()=>{o.release()}))}catch(e){throw o.release(),e}}))}_getClusterNode(){const e=this._cluster._findNodeIds(this._pattern);if(0===e.length)return null;const t=1===e.length?e[0]:this._selector(e);return this._cluster._getNode(t)}}e.exports=class extends a{constructor(e){super(),e=e||{},this._canRetry=void 0===e.canRetry||e.canRetry,this._removeNodeErrorCount=e.removeNodeErrorCount||5,this._defaultSelector=e.defaultSelector||"RR",this._closed=!1,this._lastId=0,this._nodes={},this._serviceableNodeIds=[],this._namespaces={},this._findCaches={}}of(e,t){e=e||"*",t=(t=t||this._defaultSelector).toUpperCase(),"undefined"===!u[t]&&(t=this._defaultSelector);const n=e+t;return void 0===this._namespaces[n]&&(this._namespaces[n]=new c(this,e,t)),this._namespaces[n]}add(e,t){"object"==typeof e&&(t=e,e="CLUSTER::"+ ++this._lastId),void 0===this._nodes[e]&&(this._nodes[e]={id:e,errorCount:0,pool:new o({config:new i(t)})},this._serviceableNodeIds.push(e),this._clearFindCaches())}getConnection(e,t,n){let r;"function"==typeof e?(n=e,r=this.of()):("function"==typeof t&&(n=t,t=this._defaultSelector),r=this.of(e,t)),r.getConnection(n)}end(e){const t=void 0!==e?e:e=>{if(e)throw e};if(this._closed)return void r.nextTick(t);this._closed=!0;let n=!1,o=0;const i=e=>{if(!n&&(e||--o<=0))return n=!0,t(e)};for(const e in this._nodes)o++,this._nodes[e].pool.end(i);0===o&&r.nextTick(i)}_findNodeIds(e){if(void 0!==this._findCaches[e])return this._findCaches[e];let t;if("*"===e)t=this._serviceableNodeIds;else if(-1!==this._serviceableNodeIds.indexOf(e))t=[e];else{const n=e.substring(e.length-1,0);t=this._serviceableNodeIds.filter((e=>e.startsWith(n)))}return this._findCaches[e]=t,t}_getNode(e){return this._nodes[e]||null}_increaseErrorCount(e){if(++e.errorCount>=this._removeNodeErrorCount){const t=this._serviceableNodeIds.indexOf(e.id);-1!==t&&(this._serviceableNodeIds.splice(t,1),delete this._nodes[e.id],this._clearFindCaches(),e.pool.end(),this.emit("remove",e.id))}}_decreaseErrorCount(e){e.errorCount>0&&--e.errorCount}_getConnection(e,t){e.pool.getConnection(((n,r)=>n?(this._increaseErrorCount(e),this._canRetry?(this.emit("warn",n),console.warn(`[Error] PoolCluster : ${n}`),t(null,"retry")):t(n)):(this._decreaseErrorCount(e),r._clusterId=e.id,t(null,r))))}_clearFindCaches(){this._findCaches={}}}},78296:(e,t,n)=>{"use strict";const r=n(36206);e.exports=class{constructor(e){"string"==typeof e&&(e=r.parseUrl(e)),this.connectionConfig=new r(e),this.waitForConnections=void 0===e.waitForConnections||Boolean(e.waitForConnections),this.connectionLimit=isNaN(e.connectionLimit)?10:Number(e.connectionLimit),this.maxIdle=isNaN(e.maxIdle)?this.connectionLimit:Number(e.maxIdle),this.idleTimeout=isNaN(e.idleTimeout)?6e4:Number(e.idleTimeout),this.queueLimit=isNaN(e.queueLimit)?0:Number(e.queueLimit)}}},27062:(e,t,n)=>{"use strict";const r=n(97333).Connection;class o extends r{constructor(e,t){super(t),this._pool=e,this.lastActiveTime=Date.now(),this.once("end",(()=>{this._removeFromPool()})),this.once("error",(()=>{this._removeFromPool()}))}release(){this._pool&&!this._pool._closed&&(this.lastActiveTime=Date.now(),this._pool.releaseConnection(this))}promise(e){return new(0,n(56396).PromisePoolConnection)(this,e)}end(){const e=new Error("Calling conn.end() to release a pooled connection is deprecated. In next version calling conn.end() will be restored to default conn.end() behavior. Use conn.release() instead.");this.emit("warn",e),console.warn(e.message),this.release()}destroy(){this._removeFromPool(),super.destroy()}_removeFromPool(){if(!this._pool||this._pool._closed)return;const e=this._pool;this._pool=null,e._removeConnection(this)}}o.statementKey=r.statementKey,e.exports=o,o.prototype._realEnd=r.prototype.end},34562:(e,t,n)=>{"use strict";const r=n(69278),o=n(24434).EventEmitter,i=n(69277),s=n(36206);e.exports=class extends o{constructor(){super(),this.connections=[],this._server=r.createServer(this._handleConnection.bind(this))}_handleConnection(e){const t=new s({stream:e,isServer:!0}),n=new i({config:t});this.emit("connection",n)}listen(e){return this._port=e,this._server.listen.apply(this._server,arguments),this}close(e){this._server.close(e)}}},7556:e=>{function t(e){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}t.keys=()=>[],t.resolve=t,t.id=7556,e.exports=t},56396:(e,t,n)=>{"use strict";const r=n(97333),o=n(24434).EventEmitter,i=n(77074);function s(e,t,n){return function(r,o,i){r?(n.message=r.message,n.code=r.code,n.errno=r.errno,n.sql=r.sql,n.sqlState=r.sqlState,n.sqlMessage=r.sqlMessage,t(n)):e([o,i])}}function a(e,t,n){const r={};t.on("newListener",(o=>{n.indexOf(o)>=0&&!t.listenerCount(o)&&e.on(o,r[o]=function(){const e=[].slice.call(arguments);e.unshift(o),t.emit.apply(t,e)})})).on("removeListener",(o=>{n.indexOf(o)>=0&&!t.listenerCount(o)&&(e.removeListener(o,r[o]),delete r[o])}))}class u{constructor(e,t){this.statement=e,this.Promise=t}execute(e){const t=this.statement,n=new Error;return new this.Promise(((r,o)=>{const i=s(r,o,n);e?t.execute(e,i):t.execute(i)}))}close(){return new this.Promise((e=>{this.statement.close(),e()}))}}class c extends o{constructor(e,t){super(),this.connection=e,this.Promise=t||Promise,a(e,this,["error","drain","connect","end","enqueue"])}release(){this.connection.release()}query(e,t){const n=this.connection,r=new Error;if("function"==typeof t)throw new Error("Callback function is not available with promise clients.");return new this.Promise(((o,i)=>{const a=s(o,i,r);void 0!==t?n.query(e,t,a):n.query(e,a)}))}execute(e,t){const n=this.connection,r=new Error;if("function"==typeof t)throw new Error("Callback function is not available with promise clients.");return new this.Promise(((o,i)=>{const a=s(o,i,r);void 0!==t?n.execute(e,t,a):n.execute(e,a)}))}end(){return new this.Promise((e=>{this.connection.end(e)}))}beginTransaction(){const e=this.connection,t=new Error;return new this.Promise(((n,r)=>{const o=s(n,r,t);e.beginTransaction(o)}))}commit(){const e=this.connection,t=new Error;return new this.Promise(((n,r)=>{const o=s(n,r,t);e.commit(o)}))}rollback(){const e=this.connection,t=new Error;return new this.Promise(((n,r)=>{const o=s(n,r,t);e.rollback(o)}))}ping(){const e=this.connection,t=new Error;return new this.Promise(((n,r)=>{e.ping((e=>{e?(t.message=e.message,t.code=e.code,t.errno=e.errno,t.sqlState=e.sqlState,t.sqlMessage=e.sqlMessage,r(t)):n(!0)}))}))}connect(){const e=this.connection,t=new Error;return new this.Promise(((n,r)=>{e.connect(((e,o)=>{e?(t.message=e.message,t.code=e.code,t.errno=e.errno,t.sqlState=e.sqlState,t.sqlMessage=e.sqlMessage,r(t)):n(o)}))}))}prepare(e){const t=this.connection,n=this.Promise,r=new Error;return new this.Promise(((o,i)=>{t.prepare(e,((e,t)=>{if(e)r.message=e.message,r.code=e.code,r.errno=e.errno,r.sqlState=e.sqlState,r.sqlMessage=e.sqlMessage,i(r);else{const e=new u(t,n);o(e)}}))}))}changeUser(e){const t=this.connection,n=new Error;return new this.Promise(((r,o)=>{t.changeUser(e,(e=>{e?(n.message=e.message,n.code=e.code,n.errno=e.errno,n.sqlState=e.sqlState,n.sqlMessage=e.sqlMessage,o(n)):r()}))}))}get config(){return this.connection.config}get threadId(){return this.connection.threadId}}!function(e){for(let t=0;e&&t{e.getConnection(((e,r)=>{e?n(e):t(new l(r,this.Promise))}))}))}releaseConnection(e){e instanceof l&&e.release()}query(e,t){const n=this.pool,r=new Error;if("function"==typeof t)throw new Error("Callback function is not available with promise clients.");return new this.Promise(((o,i)=>{const a=s(o,i,r);void 0!==t?n.query(e,t,a):n.query(e,a)}))}execute(e,t){const n=this.pool,r=new Error;if("function"==typeof t)throw new Error("Callback function is not available with promise clients.");return new this.Promise(((o,i)=>{const a=s(o,i,r);t?n.execute(e,t,a):n.execute(e,a)}))}end(){const e=this.pool,t=new Error;return new this.Promise(((n,r)=>{e.end((e=>{e?(t.message=e.message,t.code=e.code,t.errno=e.errno,t.sqlState=e.sqlState,t.sqlMessage=e.sqlMessage,r(t)):n()}))}))}}!function(e){for(let t=0;e&&t{e.getConnection(((e,r)=>{e?n(e):t(new l(r,this.Promise))}))}))}query(e,t){const n=this.poolCluster,r=new Error;if("function"==typeof t)throw new Error("Callback function is not available with promise clients.");return new this.Promise(((o,i)=>{const a=s(o,i,r);n.query(e,t,a)}))}execute(e,t){const n=this.poolCluster,r=new Error;if("function"==typeof t)throw new Error("Callback function is not available with promise clients.");return new this.Promise(((o,i)=>{const a=s(o,i,r);n.execute(e,t,a)}))}of(e,t){return new f(this.poolCluster.of(e,t),this.Promise)}end(){const e=this.poolCluster,t=new Error;return new this.Promise(((n,r)=>{e.end((e=>{e?(t.message=e.message,t.code=e.code,t.errno=e.errno,t.sqlState=e.sqlState,t.sqlMessage=e.sqlMessage,r(t)):n()}))}))}}!function(e){for(let t=0;e&&t{t.once("connect",(()=>{e(new c(t,o))})),t.once("error",(e=>{n.message=e.message,n.code=e.code,n.errno=e.errno,n.sqlState=e.sqlState,r(n)}))}))},t.createPool=function(e){const t=r.createPool(e),n=e.Promise||Promise;if(!n)throw new Error("no Promise implementation available.Use promise-enabled node version or pass userland Promise implementation as parameter, for example: { Promise: require('bluebird') }");return new h(t,n)},t.createPoolCluster=function(e){const t=r.createPoolCluster(e),n=e&&e.Promise||Promise;if(!n)throw new Error("no Promise implementation available.Use promise-enabled node version or pass userland Promise implementation as parameter, for example: { Promise: require('bluebird') }");return new f(t,n)},t.escape=r.escape,t.escapeId=r.escapeId,t.format=r.format,t.raw=r.raw,t.PromisePool=h,t.PromiseConnection=c,t.PromisePoolConnection=l,t.__defineGetter__("Types",(()=>n(61850))),t.__defineGetter__("Charsets",(()=>n(44782))),t.__defineGetter__("CharsetToEncoding",(()=>n(89238))),t.setMaxParserCache=function(e){i.setMaxCache(e)},t.clearParserCache=function(){i.clearCache()}},33579:(e,t,n)=>{"use strict";const r=/(?:\?)|(?::(\d+|(?:[a-zA-Z][a-zA-Z0-9_]*)))/g;function o(e){let t,n=r.exec(e),o=0,i=0;const s=[];let a,u=!1,c=!1;const l=[];let h,f=0,p=0;if(n){do{for(h=o,t=n.index;ht[e]))]}},43615:(e,t,n)=>{"use strict";const r=n(2203).Duplex,o=Symbol("Callback"),i=Symbol("Other");class s extends r{constructor(e){super(e),this[o]=null,this[i]=null}_read(){const e=this[o];e&&(this[o]=null,e())}_write(e,t,n){this[i][o]=n,this[i].push(e)}_final(e){this[i].on("end",e),this[i].push(null)}}e.exports=class{constructor(e){this.socket1=new s(e),this.socket2=new s(e),this.socket1[i]=this.socket2,this.socket2[i]=this.socket1}}},64985:(e,t,n)=>{const{EventEmitter:r}=n(24434);class o{constructor(){this.eventEmitter=new r,this.onabort=null,this.aborted=!1,this.reason=void 0}toString(){return"[object AbortSignal]"}get[Symbol.toStringTag](){return"AbortSignal"}removeEventListener(e,t){this.eventEmitter.removeListener(e,t)}addEventListener(e,t){this.eventEmitter.on(e,t)}dispatchEvent(e){const t={type:e,target:this},n=`on${e}`;"function"==typeof this[n]&&this[n](t),this.eventEmitter.emit(e,t)}throwIfAborted(){if(this.aborted)throw this.reason}static abort(e){const t=new i;return t.abort(),t.signal}static timeout(e){const t=new i;return setTimeout((()=>t.abort(new Error("TimeoutError"))),e),t.signal}}class i{constructor(){this.signal=new o}abort(e){this.signal.aborted||(this.signal.aborted=!0,this.signal.reason=e||new Error("AbortError"),this.signal.dispatchEvent("abort"))}toString(){return"[object AbortController]"}get[Symbol.toStringTag](){return"AbortController"}}e.exports={AbortController:i,AbortSignal:o}},8992:(e,t)=>{t.N=function(e){return{EncodeType:e||"entity",isEmpty:function(e){return!e||null===e||0==e.length||/^\s+$/.test(e)},arr1:new Array(" ","¡","¢","£","¤","¥","¦","§","¨","©","ª","«","¬","­","®","¯","°","±","²","³","´","µ","¶","·","¸","¹","º","»","¼","½","¾","¿","À","Á","Â","Ã","Ä","Å","&Aelig;","Ç","È","É","Ê","Ë","Ì","Í","Î","Ï","Ð","Ñ","Ò","Ó","Ô","Õ","Ö","×","Ø","Ù","Ú","Û","Ü","Ý","Þ","ß","à","á","â","ã","ä","å","æ","ç","è","é","ê","ë","ì","í","î","ï","ð","ñ","ò","ó","ô","õ","ö","÷","Ø","ù","ú","û","ü","ý","þ","ÿ",""","&","<",">","œ","œ","š","š","ÿ","ˆ","˜"," "," "," ","‌","‍","‎","‏","–","—","‘","’","‚","“","”","„","†","†","‰","‹","›","€","ƒ","α","β","γ","δ","ε","ζ","η","θ","ι","κ","λ","μ","ν","ξ","ο","π","ρ","σ","τ","υ","φ","χ","ψ","ω","α","β","γ","δ","ε","ζ","η","θ","ι","κ","λ","μ","ν","ξ","ο","π","ρ","ς","σ","τ","υ","φ","χ","ψ","ω","ϑ","ϒ","ϖ","•","…","′","′","‾","⁄","℘","ℑ","ℜ","™","ℵ","←","↑","→","↓","↔","↵","←","↑","→","↓","↔","∀","∂","∃","∅","∇","∈","∉","∋","∏","∑","−","∗","√","∝","∞","∠","∧","∨","∩","∪","∫","∴","∼","≅","≈","≠","≡","≤","≥","⊂","⊃","⊄","⊆","⊇","⊕","⊗","⊥","⋅","⌈","⌉","⌊","⌋","⟨","⟩","◊","♠","♣","♥","♦"),arr2:new Array(" ","¡","¢","£","¤","¥","¦","§","¨","©","ª","«","¬","­","®","¯","°","±","²","³","´","µ","¶","·","¸","¹","º","»","¼","½","¾","¿","À","Á","Â","Ã","Ä","Å","Æ","Ç","È","É","Ê","Ë","Ì","Í","Î","Ï","Ð","Ñ","Ò","Ó","Ô","Õ","Ö","×","Ø","Ù","Ú","Û","Ü","Ý","Þ","ß","à","á","â","ã","ä","å","æ","ç","è","é","ê","ë","ì","í","î","ï","ð","ñ","ò","ó","ô","õ","ö","÷","ø","ù","ú","û","ü","ý","þ","ÿ",""","&","<",">","Œ","œ","Š","š","Ÿ","ˆ","˜"," "," "," ","‌","‍","‎","‏","–","—","‘","’","‚","“","”","„","†","‡","‰","‹","›","€","ƒ","Α","Β","Γ","Δ","Ε","Ζ","Η","Θ","Ι","Κ","Λ","Μ","Ν","Ξ","Ο","Π","Ρ","Σ","Τ","Υ","Φ","Χ","Ψ","Ω","α","β","γ","δ","ε","ζ","η","θ","ι","κ","λ","μ","ν","ξ","ο","π","ρ","ς","σ","τ","υ","φ","χ","ψ","ω","ϑ","ϒ","ϖ","•","…","′","″","‾","⁄","℘","ℑ","ℜ","™","ℵ","←","↑","→","↓","↔","↵","⇐","⇑","⇒","⇓","⇔","∀","∂","∃","∅","∇","∈","∉","∋","∏","∑","−","∗","√","∝","∞","∠","∧","∨","∩","∪","∫","∴","∼","≅","≈","≠","≡","≤","≥","⊂","⊃","⊄","⊆","⊇","⊕","⊗","⊥","⋅","⌈","⌉","⌊","⌋","〈","〉","◊","♠","♣","♥","♦"),HTML2Numerical:function(e){return this.swapArrayVals(e,this.arr1,this.arr2)},NumericalToHTML:function(e){return this.swapArrayVals(e,this.arr2,this.arr1)},numEncode:function(e){if(this.isEmpty(e))return e;for(var t="",n=0;n"~")&&(r="&#"+r.charCodeAt()+";"),t+=r}return t},htmlDecode:function(e){var t,n,r,o=e;if(this.isEmpty(o))return o;if(null!=(t=(o=this.HTML2Numerical(o)).match(/&#[0-9]{1,5};/g)))for(var i=0;i=-32768&&n<=65535?o.replace(r,String.fromCharCode(n)):o.replace(r,"");return o},htmlEncode:function(e,t){return this.isEmpty(e)||((t=t||!1)&&(e="numerical"==this.EncodeType?e.replace(/&/g,"&"):e.replace(/&/g,"&")),e=this.XSSEncode(e,!1),"numerical"!=this.EncodeType&&t||(e=this.HTML2Numerical(e)),e=this.numEncode(e),t||(e=e.replace(/&#/g,"##AMPHASH##"),e=(e="numerical"==this.EncodeType?e.replace(/&/g,"&"):e.replace(/&/g,"&")).replace(/##AMPHASH##/g,"&#")),e=e.replace(/&#\d*([^\d;]|$)/g,"$1"),t||(e=this.correctEncoding(e)),"entity"==this.EncodeType&&(e=this.NumericalToHTML(e))),e},XSSEncode:function(e,t){return this.isEmpty(e)?e:e=(t=t||!0)?(e=(e=(e=e.replace(/\'/g,"'")).replace(/\"/g,""")).replace(//g,">"):(e=(e=(e=e.replace(/\'/g,"'")).replace(/\"/g,""")).replace(//g,">")},hasEncoded:function(e){return!!/&#[0-9]{1,5};/g.test(e)||!!/&[A-Z]{2,6};/gi.test(e)},stripUnicode:function(e){return e.replace(/[^\x20-\x7E]/g,"")},correctEncoding:function(e){return e.replace(/(&)(amp;)+/,"$1")},swapArrayVals:function(e,t,n){if(this.isEmpty(e))return e;var r;if(t&&n&&t.length==n.length)for(var o=0,i=t.length;o{var r="function"==typeof Map&&Map.prototype,o=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,i=r&&o&&"function"==typeof o.get?o.get:null,s=r&&Map.prototype.forEach,a="function"==typeof Set&&Set.prototype,u=Object.getOwnPropertyDescriptor&&a?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,c=a&&u&&"function"==typeof u.get?u.get:null,l=a&&Set.prototype.forEach,h="function"==typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,f="function"==typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,p="function"==typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,d=Boolean.prototype.valueOf,E=Object.prototype.toString,m=Function.prototype.toString,_=String.prototype.match,g=String.prototype.slice,y=String.prototype.replace,A=String.prototype.toUpperCase,v=String.prototype.toLowerCase,b=RegExp.prototype.test,T=Array.prototype.concat,w=Array.prototype.join,O=Array.prototype.slice,R=Math.floor,S="function"==typeof BigInt?BigInt.prototype.valueOf:null,I=Object.getOwnPropertySymbols,N="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?Symbol.prototype.toString:null,C="function"==typeof Symbol&&"object"==typeof Symbol.iterator,D="function"==typeof Symbol&&Symbol.toStringTag&&(Symbol.toStringTag,1)?Symbol.toStringTag:null,L=Object.prototype.propertyIsEnumerable,M=("function"==typeof Reflect?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(e){return e.__proto__}:null);function x(e,t){if(e===1/0||e===-1/0||e!=e||e&&e>-1e3&&e<1e3||b.call(/e/,t))return t;var n=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if("number"==typeof e){var r=e<0?-R(-e):R(e);if(r!==e){var o=String(r),i=g.call(t,o.length+1);return y.call(o,n,"$&_")+"."+y.call(y.call(i,/([0-9]{3})/g,"$&_"),/_$/,"")}}return y.call(t,n,"$&_")}var B=n(38093),P=B.custom,F=V(P)?P:null;function U(e,t,n){var r="double"===(n.quoteStyle||t)?'"':"'";return r+e+r}function k(e){return y.call(String(e),/"/g,""")}function j(e){return!("[object Array]"!==Q(e)||D&&"object"==typeof e&&D in e)}function G(e){return!("[object RegExp]"!==Q(e)||D&&"object"==typeof e&&D in e)}function V(e){if(C)return e&&"object"==typeof e&&e instanceof Symbol;if("symbol"==typeof e)return!0;if(!e||"object"!=typeof e||!N)return!1;try{return N.call(e),!0}catch(e){}return!1}e.exports=function e(t,n,r,o){var a=n||{};if(H(a,"quoteStyle")&&"single"!==a.quoteStyle&&"double"!==a.quoteStyle)throw new TypeError('option "quoteStyle" must be "single" or "double"');if(H(a,"maxStringLength")&&("number"==typeof a.maxStringLength?a.maxStringLength<0&&a.maxStringLength!==1/0:null!==a.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var u=!H(a,"customInspect")||a.customInspect;if("boolean"!=typeof u&&"symbol"!==u)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(H(a,"indent")&&null!==a.indent&&"\t"!==a.indent&&!(parseInt(a.indent,10)===a.indent&&a.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(H(a,"numericSeparator")&&"boolean"!=typeof a.numericSeparator)throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var E=a.numericSeparator;if(void 0===t)return"undefined";if(null===t)return"null";if("boolean"==typeof t)return t?"true":"false";if("string"==typeof t)return z(t,a);if("number"==typeof t){if(0===t)return 1/0/t>0?"0":"-0";var A=String(t);return E?x(t,A):A}if("bigint"==typeof t){var b=String(t)+"n";return E?x(t,b):b}var R=void 0===a.depth?5:a.depth;if(void 0===r&&(r=0),r>=R&&R>0&&"object"==typeof t)return j(t)?"[Array]":"[Object]";var I,P=function(e,t){var n;if("\t"===e.indent)n="\t";else{if(!("number"==typeof e.indent&&e.indent>0))return null;n=w.call(Array(e.indent+1)," ")}return{base:n,prev:w.call(Array(t+1),n)}}(a,r);if(void 0===o)o=[];else if(W(o,t)>=0)return"[Circular]";function Y(t,n,i){if(n&&(o=O.call(o)).push(n),i){var s={depth:a.depth};return H(a,"quoteStyle")&&(s.quoteStyle=a.quoteStyle),e(t,s,r+1,o)}return e(t,a,r+1,o)}if("function"==typeof t&&!G(t)){var q=function(e){if(e.name)return e.name;var t=_.call(m.call(e),/^function\s*([\w$]+)/);return t?t[1]:null}(t),ee=Z(t,Y);return"[Function"+(q?": "+q:" (anonymous)")+"]"+(ee.length>0?" { "+w.call(ee,", ")+" }":"")}if(V(t)){var te=C?y.call(String(t),/^(Symbol\(.*\))_[^)]*$/,"$1"):N.call(t);return"object"!=typeof t||C?te:K(te)}if((I=t)&&"object"==typeof I&&("undefined"!=typeof HTMLElement&&I instanceof HTMLElement||"string"==typeof I.nodeName&&"function"==typeof I.getAttribute)){for(var ne="<"+v.call(String(t.nodeName)),re=t.attributes||[],oe=0;oe"}if(j(t)){if(0===t.length)return"[]";var ie=Z(t,Y);return P&&!function(e){for(var t=0;t=0)return!1;return!0}(ie)?"["+$(ie,P)+"]":"[ "+w.call(ie,", ")+" ]"}if(function(e){return!("[object Error]"!==Q(e)||D&&"object"==typeof e&&D in e)}(t)){var se=Z(t,Y);return"cause"in Error.prototype||!("cause"in t)||L.call(t,"cause")?0===se.length?"["+String(t)+"]":"{ ["+String(t)+"] "+w.call(se,", ")+" }":"{ ["+String(t)+"] "+w.call(T.call("[cause]: "+Y(t.cause),se),", ")+" }"}if("object"==typeof t&&u){if(F&&"function"==typeof t[F]&&B)return B(t,{depth:R-r});if("symbol"!==u&&"function"==typeof t.inspect)return t.inspect()}if(function(e){if(!i||!e||"object"!=typeof e)return!1;try{i.call(e);try{c.call(e)}catch(e){return!0}return e instanceof Map}catch(e){}return!1}(t)){var ae=[];return s&&s.call(t,(function(e,n){ae.push(Y(n,t,!0)+" => "+Y(e,t))})),J("Map",i.call(t),ae,P)}if(function(e){if(!c||!e||"object"!=typeof e)return!1;try{c.call(e);try{i.call(e)}catch(e){return!0}return e instanceof Set}catch(e){}return!1}(t)){var ue=[];return l&&l.call(t,(function(e){ue.push(Y(e,t))})),J("Set",c.call(t),ue,P)}if(function(e){if(!h||!e||"object"!=typeof e)return!1;try{h.call(e,h);try{f.call(e,f)}catch(e){return!0}return e instanceof WeakMap}catch(e){}return!1}(t))return X("WeakMap");if(function(e){if(!f||!e||"object"!=typeof e)return!1;try{f.call(e,f);try{h.call(e,h)}catch(e){return!0}return e instanceof WeakSet}catch(e){}return!1}(t))return X("WeakSet");if(function(e){if(!p||!e||"object"!=typeof e)return!1;try{return p.call(e),!0}catch(e){}return!1}(t))return X("WeakRef");if(function(e){return!("[object Number]"!==Q(e)||D&&"object"==typeof e&&D in e)}(t))return K(Y(Number(t)));if(function(e){if(!e||"object"!=typeof e||!S)return!1;try{return S.call(e),!0}catch(e){}return!1}(t))return K(Y(S.call(t)));if(function(e){return!("[object Boolean]"!==Q(e)||D&&"object"==typeof e&&D in e)}(t))return K(d.call(t));if(function(e){return!("[object String]"!==Q(e)||D&&"object"==typeof e&&D in e)}(t))return K(Y(String(t)));if("undefined"!=typeof window&&t===window)return"{ [object Window] }";if(t===global)return"{ [object globalThis] }";if(!function(e){return!("[object Date]"!==Q(e)||D&&"object"==typeof e&&D in e)}(t)&&!G(t)){var ce=Z(t,Y),le=M?M(t)===Object.prototype:t instanceof Object||t.constructor===Object,he=t instanceof Object?"":"null prototype",fe=!le&&D&&Object(t)===t&&D in t?g.call(Q(t),8,-1):he?"Object":"",pe=(le||"function"!=typeof t.constructor?"":t.constructor.name?t.constructor.name+" ":"")+(fe||he?"["+w.call(T.call([],fe||[],he||[]),": ")+"] ":"");return 0===ce.length?pe+"{}":P?pe+"{"+$(ce,P)+"}":pe+"{ "+w.call(ce,", ")+" }"}return String(t)};var Y=Object.prototype.hasOwnProperty||function(e){return e in this};function H(e,t){return Y.call(e,t)}function Q(e){return E.call(e)}function W(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0,r=e.length;nt.maxStringLength){var n=e.length-t.maxStringLength,r="... "+n+" more character"+(n>1?"s":"");return z(g.call(e,0,t.maxStringLength),t)+r}return U(y.call(y.call(e,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,q),"single",t)}function q(e){var t=e.charCodeAt(0),n={8:"b",9:"t",10:"n",12:"f",13:"r"}[t];return n?"\\"+n:"\\x"+(t<16?"0":"")+A.call(t.toString(16))}function K(e){return"Object("+e+")"}function X(e){return e+" { ? }"}function J(e,t,n,r){return e+" ("+t+") {"+(r?$(n,r):w.call(n,", "))+"}"}function $(e,t){if(0===e.length)return"";var n="\n"+t.prev+t.base;return n+w.call(e,","+n)+"\n"+t.prev}function Z(e,t){var n=j(e),r=[];if(n){r.length=e.length;for(var o=0;o{e.exports=n(39023).inspect},28875:(e,t,n)=>{"use strict";var r;if(!Object.keys){var o=Object.prototype.hasOwnProperty,i=Object.prototype.toString,s=n(1093),a=Object.prototype.propertyIsEnumerable,u=!a.call({toString:null},"toString"),c=a.call((function(){}),"prototype"),l=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],h=function(e){var t=e.constructor;return t&&t.prototype===e},f={$applicationCache:!0,$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$onmozfullscreenchange:!0,$onmozfullscreenerror:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},p=function(){if("undefined"==typeof window)return!1;for(var e in window)try{if(!f["$"+e]&&o.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{h(window[e])}catch(e){return!0}}catch(e){return!0}return!1}();r=function(e){var t=null!==e&&"object"==typeof e,n="[object Function]"===i.call(e),r=s(e),a=t&&"[object String]"===i.call(e),f=[];if(!t&&!n&&!r)throw new TypeError("Object.keys called on a non-object");var d=c&&n;if(a&&e.length>0&&!o.call(e,0))for(var E=0;E0)for(var m=0;m{"use strict";var r=Array.prototype.slice,o=n(1093),i=Object.keys,s=i?function(e){return i(e)}:n(28875),a=Object.keys;s.shim=function(){if(Object.keys){var e=function(){var e=Object.keys(arguments);return e&&e.length===arguments.length}(1,2);e||(Object.keys=function(e){return o(e)?a(r.call(e)):a(e)})}else Object.keys=s;return Object.keys||s},e.exports=s},1093:e=>{"use strict";var t=Object.prototype.toString;e.exports=function(e){var n=t.call(e),r="[object Arguments]"===n;return r||(r="[object Array]"!==n&&null!==e&&"object"==typeof e&&"number"==typeof e.length&&e.length>=0&&"[object Function]"===t.call(e.callee)),r}},50721:(e,t,n)=>{const r=n(16928),o=n(35317),{promises:i,constants:s}=n(79896),a=n(9870),u=n(54796),c=n(49795),l=r.join(__dirname,"xdg-open"),{platform:h,arch:f}=process;let p;const d=(()=>{const e="/mnt/";let t;return async function(){if(t)return t;const n="/etc/wsl.conf";let r=!1;try{await i.access(n,s.F_OK),r=!0}catch{}if(!r)return e;const o=await i.readFile(n,{encoding:"utf8"}),a=/(?.*)/g.exec(o);return a?(t=a.groups.mountPoint.trim(),t=t.endsWith("/")?t:`${t}/`,t):e}})(),E=async(e,t)=>{let n;for(const r of e)try{return await t(r)}catch(e){n=e}throw n},m=async e=>{if(e={wait:!1,background:!1,newInstance:!1,allowNonzeroExitCode:!1,...e},Array.isArray(e.app))return E(e.app,(t=>m({...e,app:t})));let t,{name:n,arguments:r=[]}=e.app||{};if(r=[...r],Array.isArray(n))return E(n,(t=>m({...e,app:{name:t,arguments:r}})));const c=[],f={};if("darwin"===h)t="open",e.wait&&c.push("--wait-apps"),e.background&&c.push("--background"),e.newInstance&&c.push("--new"),n&&c.push("-a",n);else if("win32"===h||a&&(void 0===p&&(p=(()=>{try{return i.statSync("/run/.containerenv"),!0}catch{return!1}})()||u()),!p)&&!n){const o=await d();t=a?`${o}c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe`:`${process.env.SYSTEMROOT}\\System32\\WindowsPowerShell\\v1.0\\powershell`,c.push("-NoProfile","-NonInteractive","–ExecutionPolicy","Bypass","-EncodedCommand"),a||(f.windowsVerbatimArguments=!0);const i=["Start"];e.wait&&i.push("-Wait"),n?(i.push(`"\`"${n}\`""`,"-ArgumentList"),e.target&&r.unshift(e.target)):e.target&&i.push(`"${e.target}"`),r.length>0&&(r=r.map((e=>`"\`"${e}\`""`)),i.push(r.join(","))),e.target=Buffer.from(i.join(" "),"utf16le").toString("base64")}else{if(n)t=n;else{const e="/"===__dirname;let n=!1;try{await i.access(l,s.X_OK),n=!0}catch{}t=process.versions.electron||"android"===h||e||!n?"xdg-open":l}r.length>0&&c.push(...r),e.wait||(f.stdio="ignore",f.detached=!0)}e.target&&c.push(e.target),"darwin"===h&&r.length>0&&c.push("--args",...r);const _=o.spawn(t,c,f);return e.wait?new Promise(((t,n)=>{_.once("error",n),_.once("close",(r=>{!e.allowNonzeroExitCode&&r>0?n(new Error(`Exited with code ${r}`)):t(_)}))})):(_.unref(),_)},_=(e,t)=>{if("string"!=typeof e)throw new TypeError("Expected a `target`");return m({...t,target:e})};function g(e){if("string"==typeof e||Array.isArray(e))return e;const{[f]:t}=e;if(!t)throw new Error(`${f} is not supported`);return t}function y({[h]:e},{wsl:t}){if(t&&a)return g(t);if(!e)throw new Error(`${h} is not supported`);return g(e)}const A={};c(A,"chrome",(()=>y({darwin:"google chrome",win32:"chrome",linux:["google-chrome","google-chrome-stable","chromium"]},{wsl:{ia32:"/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe",x64:["/mnt/c/Program Files/Google/Chrome/Application/chrome.exe","/mnt/c/Program Files (x86)/Google/Chrome/Application/chrome.exe"]}}))),c(A,"firefox",(()=>y({darwin:"firefox",win32:"C:\\Program Files\\Mozilla Firefox\\firefox.exe",linux:"firefox"},{wsl:"/mnt/c/Program Files/Mozilla Firefox/firefox.exe"}))),c(A,"edge",(()=>y({darwin:"microsoft edge",win32:"msedge",linux:["microsoft-edge","microsoft-edge-dev"]},{wsl:"/mnt/c/Program Files (x86)/Microsoft/Edge/Application/msedge.exe"}))),_.apps=A,_.openApp=(e,t)=>{if("string"!=typeof e)throw new TypeError("Expected a `name`");const{arguments:n=[]}=t||{};if(null!=n&&!Array.isArray(n))throw new TypeError("Expected `appArguments` as Array type");return m({...t,app:{name:e,arguments:n}})},e.exports=_},48379:(e,t,n)=>{"use strict";n.r(t),n.d(t,{decode:()=>_,default:()=>v,encode:()=>g,toASCII:()=>A,toUnicode:()=>y,ucs2decode:()=>p,ucs2encode:()=>d});const r=2147483647,o=36,i=/^xn--/,s=/[^\0-\x7F]/,a=/[\x2E\u3002\uFF0E\uFF61]/g,u={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},c=Math.floor,l=String.fromCharCode;function h(e){throw new RangeError(u[e])}function f(e,t){const n=e.split("@");let r="";n.length>1&&(r=n[0]+"@",e=n[1]);const o=function(e,t){const n=[];let r=e.length;for(;r--;)n[r]=t(e[r]);return n}((e=e.replace(a,".")).split("."),t).join(".");return r+o}function p(e){const t=[];let n=0;const r=e.length;for(;n=55296&&o<=56319&&nString.fromCodePoint(...e),E=function(e,t){return e+22+75*(e<26)-((0!=t)<<5)},m=function(e,t,n){let r=0;for(e=n?c(e/700):e>>1,e+=c(e/t);e>455;r+=o)e=c(e/35);return c(r+36*e/(e+38))},_=function(e){const t=[],n=e.length;let i=0,s=128,a=72,u=e.lastIndexOf("-");u<0&&(u=0);for(let n=0;n=128&&h("not-basic"),t.push(e.charCodeAt(n));for(let f=u>0?u+1:0;f=n&&h("invalid-input");const u=(l=e.charCodeAt(f++))>=48&&l<58?l-48+26:l>=65&&l<91?l-65:l>=97&&l<123?l-97:o;u>=o&&h("invalid-input"),u>c((r-i)/t)&&h("overflow"),i+=u*t;const p=s<=a?1:s>=a+26?26:s-a;if(uc(r/d)&&h("overflow"),t*=d}const p=t.length+1;a=m(i-u,p,0==u),c(i/p)>r-s&&h("overflow"),s+=c(i/p),i%=p,t.splice(i++,0,s)}var l;return String.fromCodePoint(...t)},g=function(e){const t=[],n=(e=p(e)).length;let i=128,s=0,a=72;for(const n of e)n<128&&t.push(l(n));const u=t.length;let f=u;for(u&&t.push("-");f=i&&tc((r-s)/p)&&h("overflow"),s+=(n-i)*p,i=n;for(const n of e)if(nr&&h("overflow"),n===i){let e=s;for(let n=o;;n+=o){const r=n<=a?1:n>=a+26?26:n-a;if(e{"use strict";e.exports=n(89844)()},89844:e=>{"use strict";function t(e){return e instanceof Buffer?Buffer.from(e):new e.constructor(e.buffer.slice(),e.byteOffset,e.length)}e.exports=function(e){if((e=e||{}).circles)return function(e){const n=[],r=[],o=new Map;if(o.set(Date,(e=>new Date(e))),o.set(Map,((e,t)=>new Map(s(Array.from(e),t)))),o.set(Set,((e,t)=>new Set(s(Array.from(e),t)))),e.constructorHandlers)for(const t of e.constructorHandlers)o.set(t[0],t[1]);let i=null;return e.proto?function e(a){if("object"!=typeof a||null===a)return a;if(Array.isArray(a))return s(a,e);if(a.constructor!==Object&&(i=o.get(a.constructor)))return i(a,e);const u={};n.push(a),r.push(u);for(const s in a){const c=a[s];if("object"!=typeof c||null===c)u[s]=c;else if(c.constructor!==Object&&(i=o.get(c.constructor)))u[s]=i(c,e);else if(ArrayBuffer.isView(c))u[s]=t(c);else{const t=n.indexOf(c);u[s]=-1!==t?r[t]:e(c)}}return n.pop(),r.pop(),u}:function e(a){if("object"!=typeof a||null===a)return a;if(Array.isArray(a))return s(a,e);if(a.constructor!==Object&&(i=o.get(a.constructor)))return i(a,e);const u={};n.push(a),r.push(u);for(const s in a){if(!1===Object.hasOwnProperty.call(a,s))continue;const c=a[s];if("object"!=typeof c||null===c)u[s]=c;else if(c.constructor!==Object&&(i=o.get(c.constructor)))u[s]=i(c,e);else if(ArrayBuffer.isView(c))u[s]=t(c);else{const t=n.indexOf(c);u[s]=-1!==t?r[t]:e(c)}}return n.pop(),r.pop(),u};function s(e,s){const a=Object.keys(e),u=new Array(a.length);for(let c=0;cnew Date(e))),n.set(Map,((e,t)=>new Map(o(Array.from(e),t)))),n.set(Set,((e,t)=>new Set(o(Array.from(e),t)))),e.constructorHandlers)for(const t of e.constructorHandlers)n.set(t[0],t[1]);let r=null;return e.proto?function e(i){if("object"!=typeof i||null===i)return i;if(Array.isArray(i))return o(i,e);if(i.constructor!==Object&&(r=n.get(i.constructor)))return r(i,e);const s={};for(const o in i){const a=i[o];"object"!=typeof a||null===a?s[o]=a:a.constructor!==Object&&(r=n.get(a.constructor))?s[o]=r(a,e):ArrayBuffer.isView(a)?s[o]=t(a):s[o]=e(a)}return s}:function e(i){if("object"!=typeof i||null===i)return i;if(Array.isArray(i))return o(i,e);if(i.constructor!==Object&&(r=n.get(i.constructor)))return r(i,e);const s={};for(const o in i){if(!1===Object.hasOwnProperty.call(i,o))continue;const a=i[o];"object"!=typeof a||null===a?s[o]=a:a.constructor!==Object&&(r=n.get(a.constructor))?s[o]=r(a,e):ArrayBuffer.isView(a)?s[o]=t(a):s[o]=e(a)}return s};function o(e,o){const i=Object.keys(e),s=new Array(i.length);for(let a=0;a{var r=n(20181),o=r.Buffer;function i(e,t){for(var n in e)t[n]=e[n]}function s(e,t,n){return o(e,t,n)}o.from&&o.alloc&&o.allocUnsafe&&o.allocUnsafeSlow?e.exports=r:(i(r,t),t.Buffer=s),i(o,s),s.from=function(e,t,n){if("number"==typeof e)throw new TypeError("Argument must not be a number");return o(e,t,n)},s.alloc=function(e,t,n){if("number"!=typeof e)throw new TypeError("Argument must be a number");var r=o(e);return void 0!==t?"string"==typeof n?r.fill(t,n):r.fill(t):r.fill(0),r},s.allocUnsafe=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return o(e)},s.allocUnsafeSlow=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return r.SlowBuffer(e)}},54774:(e,t,n)=>{"use strict";var r,o=n(20181),i=o.Buffer,s={};for(r in o)o.hasOwnProperty(r)&&"SlowBuffer"!==r&&"Buffer"!==r&&(s[r]=o[r]);var a=s.Buffer={};for(r in i)i.hasOwnProperty(r)&&"allocUnsafe"!==r&&"allocUnsafeSlow"!==r&&(a[r]=i[r]);if(s.Buffer.prototype=i.prototype,a.from&&a.from!==Uint8Array.from||(a.from=function(e,t,n){if("number"==typeof e)throw new TypeError('The "value" argument must not be of type number. Received type '+typeof e);if(e&&void 0===e.length)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);return i(e,t,n)}),a.alloc||(a.alloc=function(e,t,n){if("number"!=typeof e)throw new TypeError('The "size" argument must be of type number. Received type '+typeof e);if(e<0||e>=2*(1<<30))throw new RangeError('The value "'+e+'" is invalid for option "size"');var r=i(e);return t&&0!==t.length?"string"==typeof n?r.fill(t,n):r.fill(t):r.fill(0),r}),!s.kStringMaxLength)try{s.kStringMaxLength=process.binding("buffer").kStringMaxLength}catch(e){}s.constants||(s.constants={MAX_LENGTH:s.kMaxLength},s.kStringMaxLength&&(s.constants.MAX_STRING_LENGTH=s.kStringMaxLength)),e.exports=s},25438:(e,t,n)=>{e.exports=n(14623)},14623:(e,t,n)=>{var r=n(24434).EventEmitter,o=n(39023),i="drained",s=function(e){r.call(this),this.timeout=e&&e>0?e:3e3,this.status=a.STATUS_IDLE,this.curId=0,this.queue=[]};o.inherits(s,r),s.prototype.push=function(e,t,n){if(this.status!==a.STATUS_IDLE&&this.status!==a.STATUS_BUSY)return!1;if("function"!=typeof e)throw new Error("fn should be a function.");if(this.queue.push({fn:e,ontimeout:t,timeout:n}),this.status===a.STATUS_IDLE){this.status=a.STATUS_BUSY;var r=this;process.nextTick((function(){r._next(r.curId)}))}return!0},s.prototype.close=function(e){this.status!==a.STATUS_IDLE&&this.status!==a.STATUS_BUSY||(e?(this.status=a.STATUS_DRAINED,this.timerId&&(clearTimeout(this.timerId),this.timerId=void 0),this.emit(i)):(this.status=a.STATUS_CLOSED,this.emit("closed")))},s.prototype._next=function(e){if(e===this.curId&&(this.status===a.STATUS_BUSY||this.status===a.STATUS_CLOSED)){this.timerId&&(clearTimeout(this.timerId),this.timerId=void 0);var t=this.queue.shift();if(t){var n=this;t.id=++this.curId;var r=t.timeout>0?t.timeout:this.timeout;r=r>0?r:3e3,this.timerId=setTimeout((function(){process.nextTick((function(){n._next(t.id)})),n.emit("timeout",t),t.ontimeout&&t.ontimeout()}),r);try{t.fn({done:function(){var e=t.id===n.curId;return process.nextTick((function(){n._next(t.id)})),e}})}catch(e){n.emit("error",e,t),process.nextTick((function(){n._next(t.id)}))}}else this.status===a.STATUS_BUSY?(this.status=a.STATUS_IDLE,this.curId++):(this.status=a.STATUS_DRAINED,this.emit(i))}};var a=e.exports;a.STATUS_IDLE=0,a.STATUS_BUSY=1,a.STATUS_CLOSED=2,a.STATUS_DRAINED=3,a.createQueue=function(e){return new s(e)}},96897:(e,t,n)=>{"use strict";var r=n(70453),o=n(30041),i=n(30592)(),s=n(75795),a=n(69675),u=r("%Math.floor%");e.exports=function(e,t){if("function"!=typeof e)throw new a("`fn` is not a function");if("number"!=typeof t||t<0||t>4294967295||u(t)!==t)throw new a("`length` must be a positive 32-bit integer");var n=arguments.length>2&&!!arguments[2],r=!0,c=!0;if("length"in e&&s){var l=s(e,"length");l&&!l.configurable&&(r=!1),l&&!l.writable&&(c=!1)}return(r||c||!n)&&(i?o(e,"length",t,!0,!0):o(e,"length",t)),e}},43206:(e,t,n)=>{"use strict";var r=n(30041),o=n(30592)(),i=n(74462).functionsHaveConfigurableNames(),s=n(69675);e.exports=function(e,t){if("function"!=typeof e)throw new s("`fn` is not a function");return arguments.length>2&&!!arguments[2]&&!i||(o?r(e,"name",t,!0,!0):r(e,"name",t)),e}},920:(e,t,n)=>{"use strict";var r=n(70453),o=n(38075),i=n(58859),s=n(69675),a=r("%WeakMap%",!0),u=r("%Map%",!0),c=o("WeakMap.prototype.get",!0),l=o("WeakMap.prototype.set",!0),h=o("WeakMap.prototype.has",!0),f=o("Map.prototype.get",!0),p=o("Map.prototype.set",!0),d=o("Map.prototype.has",!0),E=function(e,t){for(var n,r=e;null!==(n=r.next);r=n)if(n.key===t)return r.next=n.next,n.next=e.next,e.next=n,n};e.exports=function(){var e,t,n,r={assert:function(e){if(!r.has(e))throw new s("Side channel does not contain "+i(e))},get:function(r){if(a&&r&&("object"==typeof r||"function"==typeof r)){if(e)return c(e,r)}else if(u){if(t)return f(t,r)}else if(n)return function(e,t){var n=E(e,t);return n&&n.value}(n,r)},has:function(r){if(a&&r&&("object"==typeof r||"function"==typeof r)){if(e)return h(e,r)}else if(u){if(t)return d(t,r)}else if(n)return function(e,t){return!!E(e,t)}(n,r);return!1},set:function(r,o){a&&r&&("object"==typeof r||"function"==typeof r)?(e||(e=new a),l(e,r,o)):u?(t||(t=new u),p(t,r,o)):(n||(n={key:{},next:null}),function(e,t,n){var r=E(e,t);r?r.value=n:e.next={key:t,next:e.next,value:n}}(n,r,o))}};return r}},37575:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(11725);class o{constructor(e){if(this.length=0,this._encoding="utf8",this._writeOffset=0,this._readOffset=0,o.isSmartBufferOptions(e))if(e.encoding&&(r.checkEncoding(e.encoding),this._encoding=e.encoding),e.size){if(!(r.isFiniteInteger(e.size)&&e.size>0))throw new Error(r.ERRORS.INVALID_SMARTBUFFER_SIZE);this._buff=Buffer.allocUnsafe(e.size)}else if(e.buff){if(!Buffer.isBuffer(e.buff))throw new Error(r.ERRORS.INVALID_SMARTBUFFER_BUFFER);this._buff=e.buff,this.length=e.buff.length}else this._buff=Buffer.allocUnsafe(4096);else{if(void 0!==e)throw new Error(r.ERRORS.INVALID_SMARTBUFFER_OBJECT);this._buff=Buffer.allocUnsafe(4096)}}static fromSize(e,t){return new this({size:e,encoding:t})}static fromBuffer(e,t){return new this({buff:e,encoding:t})}static fromOptions(e){return new this(e)}static isSmartBufferOptions(e){const t=e;return t&&(void 0!==t.encoding||void 0!==t.size||void 0!==t.buff)}readInt8(e){return this._readNumberValue(Buffer.prototype.readInt8,1,e)}readInt16BE(e){return this._readNumberValue(Buffer.prototype.readInt16BE,2,e)}readInt16LE(e){return this._readNumberValue(Buffer.prototype.readInt16LE,2,e)}readInt32BE(e){return this._readNumberValue(Buffer.prototype.readInt32BE,4,e)}readInt32LE(e){return this._readNumberValue(Buffer.prototype.readInt32LE,4,e)}readBigInt64BE(e){return r.bigIntAndBufferInt64Check("readBigInt64BE"),this._readNumberValue(Buffer.prototype.readBigInt64BE,8,e)}readBigInt64LE(e){return r.bigIntAndBufferInt64Check("readBigInt64LE"),this._readNumberValue(Buffer.prototype.readBigInt64LE,8,e)}writeInt8(e,t){return this._writeNumberValue(Buffer.prototype.writeInt8,1,e,t),this}insertInt8(e,t){return this._insertNumberValue(Buffer.prototype.writeInt8,1,e,t)}writeInt16BE(e,t){return this._writeNumberValue(Buffer.prototype.writeInt16BE,2,e,t)}insertInt16BE(e,t){return this._insertNumberValue(Buffer.prototype.writeInt16BE,2,e,t)}writeInt16LE(e,t){return this._writeNumberValue(Buffer.prototype.writeInt16LE,2,e,t)}insertInt16LE(e,t){return this._insertNumberValue(Buffer.prototype.writeInt16LE,2,e,t)}writeInt32BE(e,t){return this._writeNumberValue(Buffer.prototype.writeInt32BE,4,e,t)}insertInt32BE(e,t){return this._insertNumberValue(Buffer.prototype.writeInt32BE,4,e,t)}writeInt32LE(e,t){return this._writeNumberValue(Buffer.prototype.writeInt32LE,4,e,t)}insertInt32LE(e,t){return this._insertNumberValue(Buffer.prototype.writeInt32LE,4,e,t)}writeBigInt64BE(e,t){return r.bigIntAndBufferInt64Check("writeBigInt64BE"),this._writeNumberValue(Buffer.prototype.writeBigInt64BE,8,e,t)}insertBigInt64BE(e,t){return r.bigIntAndBufferInt64Check("writeBigInt64BE"),this._insertNumberValue(Buffer.prototype.writeBigInt64BE,8,e,t)}writeBigInt64LE(e,t){return r.bigIntAndBufferInt64Check("writeBigInt64LE"),this._writeNumberValue(Buffer.prototype.writeBigInt64LE,8,e,t)}insertBigInt64LE(e,t){return r.bigIntAndBufferInt64Check("writeBigInt64LE"),this._insertNumberValue(Buffer.prototype.writeBigInt64LE,8,e,t)}readUInt8(e){return this._readNumberValue(Buffer.prototype.readUInt8,1,e)}readUInt16BE(e){return this._readNumberValue(Buffer.prototype.readUInt16BE,2,e)}readUInt16LE(e){return this._readNumberValue(Buffer.prototype.readUInt16LE,2,e)}readUInt32BE(e){return this._readNumberValue(Buffer.prototype.readUInt32BE,4,e)}readUInt32LE(e){return this._readNumberValue(Buffer.prototype.readUInt32LE,4,e)}readBigUInt64BE(e){return r.bigIntAndBufferInt64Check("readBigUInt64BE"),this._readNumberValue(Buffer.prototype.readBigUInt64BE,8,e)}readBigUInt64LE(e){return r.bigIntAndBufferInt64Check("readBigUInt64LE"),this._readNumberValue(Buffer.prototype.readBigUInt64LE,8,e)}writeUInt8(e,t){return this._writeNumberValue(Buffer.prototype.writeUInt8,1,e,t)}insertUInt8(e,t){return this._insertNumberValue(Buffer.prototype.writeUInt8,1,e,t)}writeUInt16BE(e,t){return this._writeNumberValue(Buffer.prototype.writeUInt16BE,2,e,t)}insertUInt16BE(e,t){return this._insertNumberValue(Buffer.prototype.writeUInt16BE,2,e,t)}writeUInt16LE(e,t){return this._writeNumberValue(Buffer.prototype.writeUInt16LE,2,e,t)}insertUInt16LE(e,t){return this._insertNumberValue(Buffer.prototype.writeUInt16LE,2,e,t)}writeUInt32BE(e,t){return this._writeNumberValue(Buffer.prototype.writeUInt32BE,4,e,t)}insertUInt32BE(e,t){return this._insertNumberValue(Buffer.prototype.writeUInt32BE,4,e,t)}writeUInt32LE(e,t){return this._writeNumberValue(Buffer.prototype.writeUInt32LE,4,e,t)}insertUInt32LE(e,t){return this._insertNumberValue(Buffer.prototype.writeUInt32LE,4,e,t)}writeBigUInt64BE(e,t){return r.bigIntAndBufferInt64Check("writeBigUInt64BE"),this._writeNumberValue(Buffer.prototype.writeBigUInt64BE,8,e,t)}insertBigUInt64BE(e,t){return r.bigIntAndBufferInt64Check("writeBigUInt64BE"),this._insertNumberValue(Buffer.prototype.writeBigUInt64BE,8,e,t)}writeBigUInt64LE(e,t){return r.bigIntAndBufferInt64Check("writeBigUInt64LE"),this._writeNumberValue(Buffer.prototype.writeBigUInt64LE,8,e,t)}insertBigUInt64LE(e,t){return r.bigIntAndBufferInt64Check("writeBigUInt64LE"),this._insertNumberValue(Buffer.prototype.writeBigUInt64LE,8,e,t)}readFloatBE(e){return this._readNumberValue(Buffer.prototype.readFloatBE,4,e)}readFloatLE(e){return this._readNumberValue(Buffer.prototype.readFloatLE,4,e)}writeFloatBE(e,t){return this._writeNumberValue(Buffer.prototype.writeFloatBE,4,e,t)}insertFloatBE(e,t){return this._insertNumberValue(Buffer.prototype.writeFloatBE,4,e,t)}writeFloatLE(e,t){return this._writeNumberValue(Buffer.prototype.writeFloatLE,4,e,t)}insertFloatLE(e,t){return this._insertNumberValue(Buffer.prototype.writeFloatLE,4,e,t)}readDoubleBE(e){return this._readNumberValue(Buffer.prototype.readDoubleBE,8,e)}readDoubleLE(e){return this._readNumberValue(Buffer.prototype.readDoubleLE,8,e)}writeDoubleBE(e,t){return this._writeNumberValue(Buffer.prototype.writeDoubleBE,8,e,t)}insertDoubleBE(e,t){return this._insertNumberValue(Buffer.prototype.writeDoubleBE,8,e,t)}writeDoubleLE(e,t){return this._writeNumberValue(Buffer.prototype.writeDoubleLE,8,e,t)}insertDoubleLE(e,t){return this._insertNumberValue(Buffer.prototype.writeDoubleLE,8,e,t)}readString(e,t){let n;"number"==typeof e?(r.checkLengthValue(e),n=Math.min(e,this.length-this._readOffset)):(t=e,n=this.length-this._readOffset),void 0!==t&&r.checkEncoding(t);const o=this._buff.slice(this._readOffset,this._readOffset+n).toString(t||this._encoding);return this._readOffset+=n,o}insertString(e,t,n){return r.checkOffsetValue(t),this._handleString(e,!0,t,n)}writeString(e,t,n){return this._handleString(e,!1,t,n)}readStringNT(e){void 0!==e&&r.checkEncoding(e);let t=this.length;for(let e=this._readOffset;ethis.length)throw new Error(r.ERRORS.INVALID_READ_BEYOND_BOUNDS)}ensureInsertable(e,t){r.checkOffsetValue(t),this._ensureCapacity(this.length+e),tthis.length?this.length=t+e:this.length+=e}_ensureWriteable(e,t){const n="number"==typeof t?t:this._writeOffset;this._ensureCapacity(n+e),n+e>this.length&&(this.length=n+e)}_ensureCapacity(e){const t=this._buff.length;if(e>t){let n=this._buff,r=3*t/2+1;r{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(20181),o={INVALID_ENCODING:"Invalid encoding provided. Please specify a valid encoding the internal Node.js Buffer supports.",INVALID_SMARTBUFFER_SIZE:"Invalid size provided. Size must be a valid integer greater than zero.",INVALID_SMARTBUFFER_BUFFER:"Invalid Buffer provided in SmartBufferOptions.",INVALID_SMARTBUFFER_OBJECT:"Invalid SmartBufferOptions object supplied to SmartBuffer constructor or factory methods.",INVALID_OFFSET:"An invalid offset value was provided.",INVALID_OFFSET_NON_NUMBER:"An invalid offset value was provided. A numeric value is required.",INVALID_LENGTH:"An invalid length value was provided.",INVALID_LENGTH_NON_NUMBER:"An invalid length value was provived. A numeric value is required.",INVALID_TARGET_OFFSET:"Target offset is beyond the bounds of the internal SmartBuffer data.",INVALID_TARGET_LENGTH:"Specified length value moves cursor beyong the bounds of the internal SmartBuffer data.",INVALID_READ_BEYOND_BOUNDS:"Attempted to read beyond the bounds of the managed data.",INVALID_WRITE_BEYOND_BOUNDS:"Attempted to write beyond the bounds of the managed data."};function i(e){return"number"==typeof e&&isFinite(e)&&function(e){return"number"==typeof e&&isFinite(e)&&Math.floor(e)===e}(e)}function s(e,t){if("number"!=typeof e)throw new Error(t?o.INVALID_OFFSET_NON_NUMBER:o.INVALID_LENGTH_NON_NUMBER);if(!i(e)||e<0)throw new Error(t?o.INVALID_OFFSET:o.INVALID_LENGTH)}t.ERRORS=o,t.checkEncoding=function(e){if(!r.Buffer.isEncoding(e))throw new Error(o.INVALID_ENCODING)},t.isFiniteInteger=i,t.checkLengthValue=function(e){s(e,!1)},t.checkOffsetValue=function(e){s(e,!0)},t.checkTargetOffset=function(e,t){if(e<0||e>t.length)throw new Error(o.INVALID_TARGET_OFFSET)},t.bigIntAndBufferInt64Check=function(e){if("undefined"==typeof BigInt)throw new Error("Platform does not support JS BigInt type.");if(void 0===r.Buffer.prototype[e])throw new Error(`Platform does not support Buffer.prototype.${e}.`)}},87631:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))((function(o,i){function s(e){try{u(r.next(e))}catch(e){i(e)}}function a(e){try{u(r.throw(e))}catch(e){i(e)}}function u(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(s,a)}u((r=r.apply(e,t||[])).next())}))};Object.defineProperty(t,"__esModule",{value:!0}),t.SocksClientError=t.SocksClient=void 0;const o=n(24434),i=n(69278),s=n(37575),a=n(5438),u=n(17130),c=n(87736),l=n(13763);Object.defineProperty(t,"SocksClientError",{enumerable:!0,get:function(){return l.SocksClientError}});const h=n(49424);class f extends o.EventEmitter{constructor(e){super(),this.options=Object.assign({},e),(0,u.validateSocksClientOptions)(e),this.setState(a.SocksClientState.Created)}static createConnection(e,t){return new Promise(((n,r)=>{try{(0,u.validateSocksClientOptions)(e,["connect"])}catch(e){return"function"==typeof t?(t(e),n(e)):r(e)}const o=new f(e);o.connect(e.existing_socket),o.once("established",(e=>{o.removeAllListeners(),"function"==typeof t?(t(null,e),n(e)):n(e)})),o.once("error",(e=>{o.removeAllListeners(),"function"==typeof t?(t(e),n(e)):r(e)}))}))}static createConnectionChain(e,t){return new Promise(((n,o)=>r(this,void 0,void 0,(function*(){try{(0,u.validateSocksClientChainOptions)(e)}catch(e){return"function"==typeof t?(t(e),n(e)):o(e)}e.randomizeChain&&(0,l.shuffleArray)(e.proxies);try{let r;for(let t=0;tthis.onDataReceivedHandler(e),this.onClose=()=>this.onCloseHandler(),this.onError=e=>this.onErrorHandler(e),this.onConnect=()=>this.onConnectHandler();const t=setTimeout((()=>this.onEstablishedTimeout()),this.options.timeout||a.DEFAULT_TIMEOUT);t.unref&&"function"==typeof t.unref&&t.unref(),this.socket=e||new i.Socket,this.socket.once("close",this.onClose),this.socket.once("error",this.onError),this.socket.once("connect",this.onConnect),this.socket.on("data",this.onDataReceived),this.setState(a.SocksClientState.Connecting),this.receiveBuffer=new c.ReceiveBuffer,e?this.socket.emit("connect"):(this.socket.connect(this.getSocketOptions()),void 0!==this.options.set_tcp_nodelay&&null!==this.options.set_tcp_nodelay&&this.socket.setNoDelay(!!this.options.set_tcp_nodelay)),this.prependOnceListener("established",(e=>{setImmediate((()=>{if(this.receiveBuffer.length>0){const t=this.receiveBuffer.get(this.receiveBuffer.length);e.socket.emit("data",t)}e.socket.resume()}))}))}getSocketOptions(){return Object.assign(Object.assign({},this.options.socket_options),{host:this.options.proxy.host||this.options.proxy.ipaddress,port:this.options.proxy.port})}onEstablishedTimeout(){this.state!==a.SocksClientState.Established&&this.state!==a.SocksClientState.BoundWaitingForConnection&&this.closeSocket(a.ERRORS.ProxyConnectionTimedOut)}onConnectHandler(){this.setState(a.SocksClientState.Connected),4===this.options.proxy.type?this.sendSocks4InitialHandshake():this.sendSocks5InitialHandshake(),this.setState(a.SocksClientState.SentInitialHandshake)}onDataReceivedHandler(e){this.receiveBuffer.append(e),this.processData()}processData(){for(;this.state!==a.SocksClientState.Established&&this.state!==a.SocksClientState.Error&&this.receiveBuffer.length>=this.nextRequiredPacketBufferSize;)if(this.state===a.SocksClientState.SentInitialHandshake)4===this.options.proxy.type?this.handleSocks4FinalHandshakeResponse():this.handleInitialSocks5HandshakeResponse();else if(this.state===a.SocksClientState.SentAuthentication)this.handleInitialSocks5AuthenticationHandshakeResponse();else if(this.state===a.SocksClientState.SentFinalHandshake)this.handleSocks5FinalHandshakeResponse();else{if(this.state!==a.SocksClientState.BoundWaitingForConnection){this.closeSocket(a.ERRORS.InternalError);break}4===this.options.proxy.type?this.handleSocks4IncomingConnectionResponse():this.handleSocks5IncomingConnectionResponse()}}onCloseHandler(){this.closeSocket(a.ERRORS.SocketClosed)}onErrorHandler(e){this.closeSocket(e.message)}removeInternalSocketHandlers(){this.socket.pause(),this.socket.removeListener("data",this.onDataReceived),this.socket.removeListener("close",this.onClose),this.socket.removeListener("error",this.onError),this.socket.removeListener("connect",this.onConnect)}closeSocket(e){this.state!==a.SocksClientState.Error&&(this.setState(a.SocksClientState.Error),this.socket.destroy(),this.removeInternalSocketHandlers(),this.emit("error",new l.SocksClientError(e,this.options)))}sendSocks4InitialHandshake(){const e=this.options.proxy.userId||"",t=new s.SmartBuffer;t.writeUInt8(4),t.writeUInt8(a.SocksCommand[this.options.command]),t.writeUInt16BE(this.options.destination.port),i.isIPv4(this.options.destination.host)?(t.writeBuffer((0,u.ipToBuffer)(this.options.destination.host)),t.writeStringNT(e)):(t.writeUInt8(0),t.writeUInt8(0),t.writeUInt8(0),t.writeUInt8(1),t.writeStringNT(e),t.writeStringNT(this.options.destination.host)),this.nextRequiredPacketBufferSize=a.SOCKS_INCOMING_PACKET_SIZES.Socks4Response,this.socket.write(t.toBuffer())}handleSocks4FinalHandshakeResponse(){const e=this.receiveBuffer.get(8);if(e[1]!==a.Socks4Response.Granted)this.closeSocket(`${a.ERRORS.Socks4ProxyRejectedConnection} - (${a.Socks4Response[e[1]]})`);else if(a.SocksCommand[this.options.command]===a.SocksCommand.bind){const t=s.SmartBuffer.fromBuffer(e);t.readOffset=2;const n={port:t.readUInt16BE(),host:(0,u.int32ToIpv4)(t.readUInt32BE())};"0.0.0.0"===n.host&&(n.host=this.options.proxy.ipaddress),this.setState(a.SocksClientState.BoundWaitingForConnection),this.emit("bound",{remoteHost:n,socket:this.socket})}else this.setState(a.SocksClientState.Established),this.removeInternalSocketHandlers(),this.emit("established",{socket:this.socket})}handleSocks4IncomingConnectionResponse(){const e=this.receiveBuffer.get(8);if(e[1]!==a.Socks4Response.Granted)this.closeSocket(`${a.ERRORS.Socks4ProxyRejectedIncomingBoundConnection} - (${a.Socks4Response[e[1]]})`);else{const t=s.SmartBuffer.fromBuffer(e);t.readOffset=2;const n={port:t.readUInt16BE(),host:(0,u.int32ToIpv4)(t.readUInt32BE())};this.setState(a.SocksClientState.Established),this.removeInternalSocketHandlers(),this.emit("established",{remoteHost:n,socket:this.socket})}}sendSocks5InitialHandshake(){const e=new s.SmartBuffer,t=[a.Socks5Auth.NoAuth];(this.options.proxy.userId||this.options.proxy.password)&&t.push(a.Socks5Auth.UserPass),void 0!==this.options.proxy.custom_auth_method&&t.push(this.options.proxy.custom_auth_method),e.writeUInt8(5),e.writeUInt8(t.length);for(const n of t)e.writeUInt8(n);this.nextRequiredPacketBufferSize=a.SOCKS_INCOMING_PACKET_SIZES.Socks5InitialHandshakeResponse,this.socket.write(e.toBuffer()),this.setState(a.SocksClientState.SentInitialHandshake)}handleInitialSocks5HandshakeResponse(){const e=this.receiveBuffer.get(2);5!==e[0]?this.closeSocket(a.ERRORS.InvalidSocks5IntiailHandshakeSocksVersion):e[1]===a.SOCKS5_NO_ACCEPTABLE_AUTH?this.closeSocket(a.ERRORS.InvalidSocks5InitialHandshakeNoAcceptedAuthType):e[1]===a.Socks5Auth.NoAuth?(this.socks5ChosenAuthType=a.Socks5Auth.NoAuth,this.sendSocks5CommandRequest()):e[1]===a.Socks5Auth.UserPass?(this.socks5ChosenAuthType=a.Socks5Auth.UserPass,this.sendSocks5UserPassAuthentication()):e[1]===this.options.proxy.custom_auth_method?(this.socks5ChosenAuthType=this.options.proxy.custom_auth_method,this.sendSocks5CustomAuthentication()):this.closeSocket(a.ERRORS.InvalidSocks5InitialHandshakeUnknownAuthType)}sendSocks5UserPassAuthentication(){const e=this.options.proxy.userId||"",t=this.options.proxy.password||"",n=new s.SmartBuffer;n.writeUInt8(1),n.writeUInt8(Buffer.byteLength(e)),n.writeString(e),n.writeUInt8(Buffer.byteLength(t)),n.writeString(t),this.nextRequiredPacketBufferSize=a.SOCKS_INCOMING_PACKET_SIZES.Socks5UserPassAuthenticationResponse,this.socket.write(n.toBuffer()),this.setState(a.SocksClientState.SentAuthentication)}sendSocks5CustomAuthentication(){return r(this,void 0,void 0,(function*(){this.nextRequiredPacketBufferSize=this.options.proxy.custom_auth_response_size,this.socket.write(yield this.options.proxy.custom_auth_request_handler()),this.setState(a.SocksClientState.SentAuthentication)}))}handleSocks5CustomAuthHandshakeResponse(e){return r(this,void 0,void 0,(function*(){return yield this.options.proxy.custom_auth_response_handler(e)}))}handleSocks5AuthenticationNoAuthHandshakeResponse(e){return r(this,void 0,void 0,(function*(){return 0===e[1]}))}handleSocks5AuthenticationUserPassHandshakeResponse(e){return r(this,void 0,void 0,(function*(){return 0===e[1]}))}handleInitialSocks5AuthenticationHandshakeResponse(){return r(this,void 0,void 0,(function*(){this.setState(a.SocksClientState.ReceivedAuthenticationResponse);let e=!1;this.socks5ChosenAuthType===a.Socks5Auth.NoAuth?e=yield this.handleSocks5AuthenticationNoAuthHandshakeResponse(this.receiveBuffer.get(2)):this.socks5ChosenAuthType===a.Socks5Auth.UserPass?e=yield this.handleSocks5AuthenticationUserPassHandshakeResponse(this.receiveBuffer.get(2)):this.socks5ChosenAuthType===this.options.proxy.custom_auth_method&&(e=yield this.handleSocks5CustomAuthHandshakeResponse(this.receiveBuffer.get(this.options.proxy.custom_auth_response_size))),e?this.sendSocks5CommandRequest():this.closeSocket(a.ERRORS.Socks5AuthenticationFailed)}))}sendSocks5CommandRequest(){const e=new s.SmartBuffer;e.writeUInt8(5),e.writeUInt8(a.SocksCommand[this.options.command]),e.writeUInt8(0),i.isIPv4(this.options.destination.host)?(e.writeUInt8(a.Socks5HostType.IPv4),e.writeBuffer((0,u.ipToBuffer)(this.options.destination.host))):i.isIPv6(this.options.destination.host)?(e.writeUInt8(a.Socks5HostType.IPv6),e.writeBuffer((0,u.ipToBuffer)(this.options.destination.host))):(e.writeUInt8(a.Socks5HostType.Hostname),e.writeUInt8(this.options.destination.host.length),e.writeString(this.options.destination.host)),e.writeUInt16BE(this.options.destination.port),this.nextRequiredPacketBufferSize=a.SOCKS_INCOMING_PACKET_SIZES.Socks5ResponseHeader,this.socket.write(e.toBuffer()),this.setState(a.SocksClientState.SentFinalHandshake)}handleSocks5FinalHandshakeResponse(){const e=this.receiveBuffer.peek(5);if(5!==e[0]||e[1]!==a.Socks5Response.Granted)this.closeSocket(`${a.ERRORS.InvalidSocks5FinalHandshakeRejected} - ${a.Socks5Response[e[1]]}`);else{const t=e[3];let n,r;if(t===a.Socks5HostType.IPv4){const e=a.SOCKS_INCOMING_PACKET_SIZES.Socks5ResponseIPv4;if(this.receiveBuffer.length{"use strict";var n,r,o,i,s,a;Object.defineProperty(t,"__esModule",{value:!0}),t.SOCKS5_NO_ACCEPTABLE_AUTH=t.SOCKS5_CUSTOM_AUTH_END=t.SOCKS5_CUSTOM_AUTH_START=t.SOCKS_INCOMING_PACKET_SIZES=t.SocksClientState=t.Socks5Response=t.Socks5HostType=t.Socks5Auth=t.Socks4Response=t.SocksCommand=t.ERRORS=t.DEFAULT_TIMEOUT=void 0,t.DEFAULT_TIMEOUT=3e4,t.ERRORS={InvalidSocksCommand:"An invalid SOCKS command was provided. Valid options are connect, bind, and associate.",InvalidSocksCommandForOperation:"An invalid SOCKS command was provided. Only a subset of commands are supported for this operation.",InvalidSocksCommandChain:"An invalid SOCKS command was provided. Chaining currently only supports the connect command.",InvalidSocksClientOptionsDestination:"An invalid destination host was provided.",InvalidSocksClientOptionsExistingSocket:"An invalid existing socket was provided. This should be an instance of stream.Duplex.",InvalidSocksClientOptionsProxy:"Invalid SOCKS proxy details were provided.",InvalidSocksClientOptionsTimeout:"An invalid timeout value was provided. Please enter a value above 0 (in ms).",InvalidSocksClientOptionsProxiesLength:"At least two socks proxies must be provided for chaining.",InvalidSocksClientOptionsCustomAuthRange:"Custom auth must be a value between 0x80 and 0xFE.",InvalidSocksClientOptionsCustomAuthOptions:"When a custom_auth_method is provided, custom_auth_request_handler, custom_auth_response_size, and custom_auth_response_handler must also be provided and valid.",NegotiationError:"Negotiation error",SocketClosed:"Socket closed",ProxyConnectionTimedOut:"Proxy connection timed out",InternalError:"SocksClient internal error (this should not happen)",InvalidSocks4HandshakeResponse:"Received invalid Socks4 handshake response",Socks4ProxyRejectedConnection:"Socks4 Proxy rejected connection",InvalidSocks4IncomingConnectionResponse:"Socks4 invalid incoming connection response",Socks4ProxyRejectedIncomingBoundConnection:"Socks4 Proxy rejected incoming bound connection",InvalidSocks5InitialHandshakeResponse:"Received invalid Socks5 initial handshake response",InvalidSocks5IntiailHandshakeSocksVersion:"Received invalid Socks5 initial handshake (invalid socks version)",InvalidSocks5InitialHandshakeNoAcceptedAuthType:"Received invalid Socks5 initial handshake (no accepted authentication type)",InvalidSocks5InitialHandshakeUnknownAuthType:"Received invalid Socks5 initial handshake (unknown authentication type)",Socks5AuthenticationFailed:"Socks5 Authentication failed",InvalidSocks5FinalHandshake:"Received invalid Socks5 final handshake response",InvalidSocks5FinalHandshakeRejected:"Socks5 proxy rejected connection",InvalidSocks5IncomingConnectionResponse:"Received invalid Socks5 incoming connection response",Socks5ProxyRejectedIncomingBoundConnection:"Socks5 Proxy rejected incoming bound connection"},t.SOCKS_INCOMING_PACKET_SIZES={Socks5InitialHandshakeResponse:2,Socks5UserPassAuthenticationResponse:2,Socks5ResponseHeader:5,Socks5ResponseIPv4:10,Socks5ResponseIPv6:22,Socks5ResponseHostname:e=>e+7,Socks4Response:8},function(e){e[e.connect=1]="connect",e[e.bind=2]="bind",e[e.associate=3]="associate"}(n||(t.SocksCommand=n={})),function(e){e[e.Granted=90]="Granted",e[e.Failed=91]="Failed",e[e.Rejected=92]="Rejected",e[e.RejectedIdent=93]="RejectedIdent"}(r||(t.Socks4Response=r={})),function(e){e[e.NoAuth=0]="NoAuth",e[e.GSSApi=1]="GSSApi",e[e.UserPass=2]="UserPass"}(o||(t.Socks5Auth=o={})),t.SOCKS5_CUSTOM_AUTH_START=128,t.SOCKS5_CUSTOM_AUTH_END=254,t.SOCKS5_NO_ACCEPTABLE_AUTH=255,function(e){e[e.Granted=0]="Granted",e[e.Failure=1]="Failure",e[e.NotAllowed=2]="NotAllowed",e[e.NetworkUnreachable=3]="NetworkUnreachable",e[e.HostUnreachable=4]="HostUnreachable",e[e.ConnectionRefused=5]="ConnectionRefused",e[e.TTLExpired=6]="TTLExpired",e[e.CommandNotSupported=7]="CommandNotSupported",e[e.AddressNotSupported=8]="AddressNotSupported"}(i||(t.Socks5Response=i={})),function(e){e[e.IPv4=1]="IPv4",e[e.Hostname=3]="Hostname",e[e.IPv6=4]="IPv6"}(s||(t.Socks5HostType=s={})),function(e){e[e.Created=0]="Created",e[e.Connecting=1]="Connecting",e[e.Connected=2]="Connected",e[e.SentInitialHandshake=3]="SentInitialHandshake",e[e.ReceivedInitialHandshakeResponse=4]="ReceivedInitialHandshakeResponse",e[e.SentAuthentication=5]="SentAuthentication",e[e.ReceivedAuthenticationResponse=6]="ReceivedAuthenticationResponse",e[e.SentFinalHandshake=7]="SentFinalHandshake",e[e.ReceivedFinalResponse=8]="ReceivedFinalResponse",e[e.BoundWaitingForConnection=9]="BoundWaitingForConnection",e[e.Established=10]="Established",e[e.Disconnected=11]="Disconnected",e[e.Error=99]="Error"}(a||(t.SocksClientState=a={}))},17130:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ipToBuffer=t.int32ToIpv4=t.ipv4ToInt32=t.validateSocksClientChainOptions=t.validateSocksClientOptions=void 0;const r=n(13763),o=n(5438),i=n(2203),s=n(49424),a=n(69278);function u(e,t){if(void 0!==e.custom_auth_method){if(e.custom_auth_methodo.SOCKS5_CUSTOM_AUTH_END)throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsCustomAuthRange,t);if(void 0===e.custom_auth_request_handler||"function"!=typeof e.custom_auth_request_handler)throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsCustomAuthOptions,t);if(void 0===e.custom_auth_response_size)throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsCustomAuthOptions,t);if(void 0===e.custom_auth_response_handler||"function"!=typeof e.custom_auth_response_handler)throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsCustomAuthOptions,t)}}function c(e){return e&&"string"==typeof e.host&&"number"==typeof e.port&&e.port>=0&&e.port<=65535}function l(e){return e&&("string"==typeof e.host||"string"==typeof e.ipaddress)&&"number"==typeof e.port&&e.port>=0&&e.port<=65535&&(4===e.type||5===e.type)}function h(e){return"number"==typeof e&&e>0}t.validateSocksClientOptions=function(e,t=["connect","bind","associate"]){if(!o.SocksCommand[e.command])throw new r.SocksClientError(o.ERRORS.InvalidSocksCommand,e);if(-1===t.indexOf(e.command))throw new r.SocksClientError(o.ERRORS.InvalidSocksCommandForOperation,e);if(!c(e.destination))throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsDestination,e);if(!l(e.proxy))throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsProxy,e);if(u(e.proxy,e),e.timeout&&!h(e.timeout))throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsTimeout,e);if(e.existing_socket&&!(e.existing_socket instanceof i.Duplex))throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsExistingSocket,e)},t.validateSocksClientChainOptions=function(e){if("connect"!==e.command)throw new r.SocksClientError(o.ERRORS.InvalidSocksCommandChain,e);if(!c(e.destination))throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsDestination,e);if(!(e.proxies&&Array.isArray(e.proxies)&&e.proxies.length>=2))throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsProxiesLength,e);if(e.proxies.forEach((t=>{if(!l(t))throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsProxy,e);u(t,e)})),e.timeout&&!h(e.timeout))throw new r.SocksClientError(o.ERRORS.InvalidSocksClientOptionsTimeout,e)},t.ipv4ToInt32=function(e){return new s.Address4(e).toArray().reduce(((e,t)=>(e<<8)+t),0)},t.int32ToIpv4=function(e){return[e>>>24&255,e>>>16&255,e>>>8&255,255&e].join(".")},t.ipToBuffer=function(e){if(a.isIPv4(e)){const t=new s.Address4(e);return Buffer.from(t.toArray())}if(a.isIPv6(e)){const t=new s.Address6(e);return Buffer.from(t.canonicalForm().split(":").map((e=>e.padStart(4,"0"))).join(""),"hex")}throw new Error("Invalid IP address format")}},87736:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ReceiveBuffer=void 0,t.ReceiveBuffer=class{constructor(e=4096){this.buffer=Buffer.allocUnsafe(e),this.offset=0,this.originalSize=e}get length(){return this.offset}append(e){if(!Buffer.isBuffer(e))throw new Error("Attempted to append a non-buffer instance to ReceiveBuffer.");if(this.offset+e.length>=this.buffer.length){const t=this.buffer;this.buffer=Buffer.allocUnsafe(Math.max(this.buffer.length+this.originalSize,this.buffer.length+e.length)),t.copy(this.buffer)}return e.copy(this.buffer,this.offset),this.offset+=e.length}peek(e){if(e>this.offset)throw new Error("Attempted to read beyond the bounds of the managed internal data.");return this.buffer.slice(0,e)}get(e){if(e>this.offset)throw new Error("Attempted to read beyond the bounds of the managed internal data.");const t=Buffer.allocUnsafe(e);return this.buffer.slice(0,e).copy(t),this.buffer.copyWithin(0,e,e+this.offset-e),this.offset-=e,t}}},13763:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.shuffleArray=t.SocksClientError=void 0;class n extends Error{constructor(e,t){super(e),this.options=t}}t.SocksClientError=n,t.shuffleArray=function(e){for(let t=e.length-1;t>0;t--){const n=Math.floor(Math.random()*(t+1));[e[t],e[n]]=[e[n],e[t]]}}},65861:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(87631),t)},18165:(e,t,n)=>{var r=n(44832);function o(e){if(!(this instanceof o))return new o(e);if(e||(e={}),Buffer.isBuffer(e)&&(e={buffer:e}),this.pageOffset=e.pageOffset||0,this.pageSize=e.pageSize||1024,this.pages=e.pages||r(this.pageSize),this.byteLength=this.pages.length*this.pageSize,this.length=8*this.byteLength,(t=this.pageSize)&t-1)throw new Error("The page size should be a power of two");var t;if(this._trackUpdates=!!e.trackUpdates,this._pageMask=this.pageSize-1,e.buffer){for(var n=0;n>t)},o.prototype.getByte=function(e){var t=e&this._pageMask,n=(e-t)/this.pageSize,r=this.pages.get(n,!0);return r?r.buffer[t+this.pageOffset]:0},o.prototype.set=function(e,t){var n=7&e,r=(e-n)/8,o=this.getByte(r);return this.setByte(r,t?o|128>>n:o&(255^128>>n))},o.prototype.toBuffer=function(){for(var e=function(e){if(Buffer.alloc)return Buffer.alloc(e);var t=new Buffer(e);return t.fill(0),t}(this.pages.length*this.pageSize),t=0;t=this.byteLength&&(this.byteLength=e+1,this.length=8*this.byteLength),this._trackUpdates&&this.pages.updated(o),!0)}},51699:(e,t,n)=>{e.exports=n(76725)("node_sqlite3.node")},58203:(e,t,n)=>{const r=n(16928),o=n(51699),i=n(24434).EventEmitter;function s(e){return function(t){let n;const r=Array.prototype.slice.call(arguments,1);if("function"==typeof r[r.length-1]){const e=r[r.length-1];n=function(t){t&&e(t)}}const o=new c(this,t,n);return e.call(this,o,r)}}function a(e,t){for(const n in t.prototype)e.prototype[n]=t.prototype[n]}e.exports=o,o.cached={Database:function(e,t,n){if(""===e||":memory:"===e)return new u(e,t,n);let i;if(e=r.resolve(e),o.cached.objects[e]){i=o.cached.objects[e];const a="number"==typeof t?n:t;if("function"==typeof a){function s(){a.call(i,null)}i.open?process.nextTick(s):i.once("open",s)}}else i=o.cached.objects[e]=new u(e,t,n);return i},objects:{}};const u=o.Database,c=o.Statement,l=o.Backup;a(u,i),a(c,i),a(l,i),u.prototype.prepare=s((function(e,t){return t.length?e.bind.apply(e,t):e})),u.prototype.run=s((function(e,t){return e.run.apply(e,t).finalize(),this})),u.prototype.get=s((function(e,t){return e.get.apply(e,t).finalize(),this})),u.prototype.all=s((function(e,t){return e.all.apply(e,t).finalize(),this})),u.prototype.each=s((function(e,t){return e.each.apply(e,t).finalize(),this})),u.prototype.map=s((function(e,t){return e.map.apply(e,t).finalize(),this})),u.prototype.backup=function(){let e;return e=arguments.length<=2?new l(this,arguments[0],"main","main",!0,arguments[1]):new l(this,arguments[0],arguments[1],arguments[2],arguments[3],arguments[4]),e.retryErrors=[o.BUSY,o.LOCKED],e},c.prototype.map=function(){const e=Array.prototype.slice.call(arguments),t=e.pop();return e.push((function(e,n){if(e)return t(e);const r={};if(n.length){const e=Object.keys(n[0]),t=e[0];if(e.length>2)for(let e=0;e=0&&this.configure(e,!0),t},u.prototype.removeListener=function(e){const t=i.prototype.removeListener.apply(this,arguments);return f.indexOf(e)>=0&&!this._events[e]&&this.configure(e,!1),t},u.prototype.removeAllListeners=function(e){const t=i.prototype.removeAllListeners.apply(this,arguments);return f.indexOf(e)>=0&&this.configure(e,!1),t},o.verbose=function(){if(!h){const e=n(5671);["prepare","get","run","all","each","map","close","exec"].forEach((function(t){e.extendTrace(u.prototype,t)})),["bind","get","run","all","each","map","reset","finalize"].forEach((function(t){e.extendTrace(c.prototype,t)})),h=!0}return o}},5671:(e,t,n)=>{const r=n(39023);function o(e){return e.stack.split("\n").filter((function(e){return e.indexOf(__filename)<0}))}t.extendTrace=function(e,t,n){const i=e[t];e[t]=function(){const s=new Error,a=e.constructor.name+"#"+t+"("+Array.prototype.slice.call(arguments).map((function(e){return r.inspect(e,!1,0)})).join(", ")+")";void 0===n&&(n=-1),n<0&&(n+=arguments.length);const u=arguments[n];return"function"==typeof arguments[n]&&(arguments[n]=function(){const e=arguments[0];return e&&e.stack&&!e.__augmented&&(e.stack=o(e).join("\n"),e.stack+="\n--\x3e in "+a,e.stack+="\n"+o(s).slice(1).join("\n"),e.__augmented=!0),u.apply(this,arguments)}),i.apply(this,arguments)}}},61526:(e,t,n)=>{e.exports=n(88319)},88319:(e,t)=>{var n=t,r=/`/g,o=/\./g,i=/[\0\b\t\n\r\x1a\"\'\\]/g,s={"\0":"\\0","\b":"\\b","\t":"\\t","\n":"\\n","\r":"\\r","":"\\Z",'"':'\\"',"'":"\\'","\\":"\\\\"};function a(e){for(var t,n=i.lastIndex=0,r="";t=i.exec(e);)r+=e.slice(n,t.index)+s[t[0]],n=i.lastIndex;return 0===n?"'"+e+"'":n2)){var h=2===l?n.escapeId(t[c]):n.escape(t[c],r,o);u+=e.slice(s,i.index)+h,s=a.lastIndex,c++}}return 0===s?e:s{"use strict";const r=n(65692);e.exports=(e,t)=>{t=void 0===t?1/0:t;const n=new Map;let o=!1,i=!0;return e instanceof r.Server?e.on("secureConnection",s):e.on("connection",s),e.on("request",(function(e,t){n.set(e.socket,n.get(e.socket)+1),t.once("finish",(()=>{const t=n.get(e.socket)-1;n.set(e.socket,t),o&&0===t&&e.socket.end()}))})),e.stop=function(r){setImmediate((()=>{o=!0,t<1/0&&setTimeout(u,t).unref(),e.close((e=>{r&&r(e,i)})),n.forEach(a)}))},e._pendingSockets=n,e;function s(e){n.set(e,0),e.once("close",(()=>n.delete(e)))}function a(e,t){0===e&&t.end()}function u(){i=!1,n.forEach(((e,t)=>t.end())),setImmediate((()=>{n.forEach(((e,t)=>t.destroy()))}))}}},70249:e=>{"use strict";function t(e,t,n,r,o){for(let i=0;i-e._lookbehindSize?e._cb(!0,f,0,e._lookbehindSize+a,!1):e._cb(!0,void 0,0,0,!0),e._bufPos=a+s;a+=h[o]}for(;a<0&&!r(e,n,a,o-a);)++a;if(a<0){const t=e._lookbehindSize+a;return t>0&&e._cb(!1,f,0,t,!1),e._lookbehindSize-=t,f.copy(f,0,t,e._lookbehindSize),f.set(n,e._lookbehindSize),e._lookbehindSize+=o,e._bufPos=o,o}e._cb(!1,f,0,e._lookbehindSize,!1),e._lookbehindSize=0}a+=e._bufPos;const p=i[0];for(;a<=l;){const r=n[a+u];if(r===c&&n[a]===p&&t(i,0,n,a,u))return++e.matches,a>0?e._cb(!0,n,e._bufPos,a,!0):e._cb(!0,void 0,0,0,!0),e._bufPos=a+s;a+=h[r]}for(;a0&&e._cb(!1,n,e._bufPos,a1)for(let t=0;t{const t=/^[-+]?0x[a-fA-F0-9]+$/,n=/^([\-\+])?(0*)(\.[0-9]+([eE]\-?[0-9]+)?|[0-9]+(\.[0-9]+([eE]\-?[0-9]+)?)?)$/;!Number.parseInt&&window.parseInt&&(Number.parseInt=window.parseInt),!Number.parseFloat&&window.parseFloat&&(Number.parseFloat=window.parseFloat);const r={hex:!0,leadingZeros:!0,decimalPoint:".",eNotation:!0};e.exports=function(e,o={}){if(o=Object.assign({},r,o),!e||"string"!=typeof e)return e;let i=e.trim();if(void 0!==o.skipLike&&o.skipLike.test(i))return e;if(o.hex&&t.test(i))return Number.parseInt(i,16);{const t=n.exec(i);if(t){const n=t[1],r=t[2];let a=(s=t[3])&&-1!==s.indexOf(".")?("."===(s=s.replace(/0+$/,""))?s="0":"."===s[0]?s="0"+s:"."===s[s.length-1]&&(s=s.substr(0,s.length-1)),s):s;const u=t[4]||t[6];if(!o.leadingZeros&&r.length>0&&n&&"."!==i[2])return e;if(!o.leadingZeros&&r.length>0&&!n&&"."!==i[1])return e;{const t=Number(i),s=""+t;return-1!==s.search(/[eE]/)||u?o.eNotation?t:e:-1!==i.indexOf(".")?"0"===s&&""===a||s===a||n&&s==="-"+a?t:e:r?a===s||n+a===s?t:e:i===s||i===n+s?t:e}}return e}var s}},27687:(e,t,n)=>{"use strict";const r=n(70857),o=n(52018),i=n(25884),{env:s}=process;let a;function u(e){return 0!==e&&{level:e,hasBasic:!0,has256:e>=2,has16m:e>=3}}function c(e,t){if(0===a)return 0;if(i("color=16m")||i("color=full")||i("color=truecolor"))return 3;if(i("color=256"))return 2;if(e&&!t&&void 0===a)return 0;const n=a||0;if("dumb"===s.TERM)return n;if("win32"===process.platform){const e=r.release().split(".");return Number(e[0])>=10&&Number(e[2])>=10586?Number(e[2])>=14931?3:2:1}if("CI"in s)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI","GITHUB_ACTIONS","BUILDKITE"].some((e=>e in s))||"codeship"===s.CI_NAME?1:n;if("TEAMCITY_VERSION"in s)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(s.TEAMCITY_VERSION)?1:0;if("truecolor"===s.COLORTERM)return 3;if("TERM_PROGRAM"in s){const e=parseInt((s.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(s.TERM_PROGRAM){case"iTerm.app":return e>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(s.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(s.TERM)||"COLORTERM"in s?1:n}i("no-color")||i("no-colors")||i("color=false")||i("color=never")?a=0:(i("color")||i("colors")||i("color=true")||i("color=always"))&&(a=1),"FORCE_COLOR"in s&&(a="true"===s.FORCE_COLOR?1:"false"===s.FORCE_COLOR?0:0===s.FORCE_COLOR.length?1:Math.min(parseInt(s.FORCE_COLOR,10),3)),e.exports={supportsColor:function(e){return u(c(e,e&&e.isTTY))},stdout:u(c(!0,o.isatty(1))),stderr:u(c(!0,o.isatty(2)))}},71683:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(81324),o=n(24826);t.PendingOperation=class{constructor(e){var t,n;this.timeoutMillis=e,this.deferred=o.defer(),this.possibleTimeoutCause=null,this.isRejected=!1,this.promise=(t=this.deferred.promise,n=e,new Promise(((e,o)=>{const i=setTimeout((()=>o(new r.TimeoutError)),n);t.then((t=>{clearTimeout(i),e(t)})).catch((e=>{clearTimeout(i),o(e)}))}))).catch((e=>(e instanceof r.TimeoutError&&(e=this.possibleTimeoutCause?new r.TimeoutError(this.possibleTimeoutCause.message):new r.TimeoutError("operation timed out for an unknown reason")),this.isRejected=!0,Promise.reject(e))))}abort(){this.reject(new Error("aborted"))}reject(e){this.deferred.reject(e)}resolve(e){this.deferred.resolve(e)}}},53541:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(71683),o=n(183),i=n(24826),s=n(24434),a=n(53557);function u(e,t){const n=e.indexOf(t);return-1!==n&&(e.splice(n,1),!0)}t.Pool=class{constructor(e){if(this.destroyed=!1,this.emitter=new s.EventEmitter,!(e=e||{}).create)throw new Error("Tarn: opt.create function most be provided");if(!e.destroy)throw new Error("Tarn: opt.destroy function most be provided");if("number"!=typeof e.min||e.min<0||e.min!==Math.round(e.min))throw new Error("Tarn: opt.min must be an integer >= 0");if("number"!=typeof e.max||e.max<=0||e.max!==Math.round(e.max))throw new Error("Tarn: opt.max must be an integer > 0");if(e.min>e.max)throw new Error("Tarn: opt.max is smaller than opt.min");if(!i.checkOptionalTime(e.acquireTimeoutMillis))throw new Error("Tarn: invalid opt.acquireTimeoutMillis "+JSON.stringify(e.acquireTimeoutMillis));if(!i.checkOptionalTime(e.createTimeoutMillis))throw new Error("Tarn: invalid opt.createTimeoutMillis "+JSON.stringify(e.createTimeoutMillis));if(!i.checkOptionalTime(e.destroyTimeoutMillis))throw new Error("Tarn: invalid opt.destroyTimeoutMillis "+JSON.stringify(e.destroyTimeoutMillis));if(!i.checkOptionalTime(e.idleTimeoutMillis))throw new Error("Tarn: invalid opt.idleTimeoutMillis "+JSON.stringify(e.idleTimeoutMillis));if(!i.checkOptionalTime(e.reapIntervalMillis))throw new Error("Tarn: invalid opt.reapIntervalMillis "+JSON.stringify(e.reapIntervalMillis));if(!i.checkOptionalTime(e.createRetryIntervalMillis))throw new Error("Tarn: invalid opt.createRetryIntervalMillis "+JSON.stringify(e.createRetryIntervalMillis));const t={create:!0,validate:!0,destroy:!0,log:!0,min:!0,max:!0,acquireTimeoutMillis:!0,createTimeoutMillis:!0,destroyTimeoutMillis:!0,idleTimeoutMillis:!0,reapIntervalMillis:!0,createRetryIntervalMillis:!0,propagateCreateError:!0};for(const n of Object.keys(e))if(!t[n])throw new Error(`Tarn: unsupported option opt.${n}`);this.creator=e.create,this.destroyer=e.destroy,this.validate="function"==typeof e.validate?e.validate:()=>!0,this.log=e.log||(()=>{}),this.acquireTimeoutMillis=e.acquireTimeoutMillis||3e4,this.createTimeoutMillis=e.createTimeoutMillis||3e4,this.destroyTimeoutMillis=e.destroyTimeoutMillis||5e3,this.idleTimeoutMillis=e.idleTimeoutMillis||3e4,this.reapIntervalMillis=e.reapIntervalMillis||1e3,this.createRetryIntervalMillis=e.createRetryIntervalMillis||200,this.propagateCreateError=!!e.propagateCreateError,this.min=e.min,this.max=e.max,this.used=[],this.free=[],this.pendingCreates=[],this.pendingAcquires=[],this.pendingDestroys=[],this.pendingValidations=[],this.destroyed=!1,this.interval=null,this.eventId=1}numUsed(){return this.used.length}numFree(){return this.free.length}numPendingAcquires(){return this.pendingAcquires.length}numPendingValidations(){return this.pendingValidations.length}numPendingCreates(){return this.pendingCreates.length}acquire(){const e=this.eventId++;this._executeEventHandlers("acquireRequest",e);const t=new r.PendingOperation(this.acquireTimeoutMillis);return this.pendingAcquires.push(t),t.promise=t.promise.then((t=>(this._executeEventHandlers("acquireSuccess",e,t),t))).catch((n=>(this._executeEventHandlers("acquireFail",e,n),u(this.pendingAcquires,t),Promise.reject(n)))),this._tryAcquireOrCreate(),t}release(e){this._executeEventHandlers("release",e);for(let t=0,n=this.used.length;te+t))}check(){const e=i.now(),t=[],n=this.min-this.used.length,r=this.free.length-n;let o=0;this.free.forEach((n=>{i.duration(e,n.timestamp)>=this.idleTimeoutMillis&&oi.reflect(e.promise)))).then((()=>new Promise(((e,t)=>{if(0===this.numPendingValidations())return void e();const n=setInterval((()=>{0===this.numPendingValidations()&&(a.clearInterval(n),e())}),100)})))).then((()=>Promise.all(this.used.map((e=>i.reflect(e.promise)))))).then((()=>Promise.all(this.pendingAcquires.map((e=>(e.abort(),i.reflect(e.promise))))))).then((()=>Promise.all(this.free.map((e=>i.reflect(this._destroy(e.resource))))))).then((()=>Promise.all(this.pendingDestroys.map((e=>e.promise))))).then((()=>{this.free=[],this.pendingAcquires=[]}))).then((t=>(this._executeEventHandlers("poolDestroySuccess",e),this.emitter.removeAllListeners(),t)))}on(e,t){this.emitter.on(e,t)}removeListener(e,t){this.emitter.removeListener(e,t)}removeAllListeners(e){this.emitter.removeAllListeners(e)}_tryAcquireOrCreate(){this.destroyed||(this._hasFreeResources()?this._doAcquire():this._shouldCreateMoreResources()&&this._doCreate())}_hasFreeResources(){return this.free.length>0}_doAcquire(){for(;this._canAcquire();){const e=this.pendingAcquires.shift(),t=this.free.pop();if(void 0===t||void 0===e){const e="this.free was empty while trying to acquire resource";throw this.log(`Tarn: ${e}`,"warn"),new Error(`Internal error, should never happen. ${e}`)}this.pendingValidations.push(e),this.used.push(t);const n=new r.PendingOperation(this.acquireTimeoutMillis);e.promise.catch((e=>{n.abort()})),n.promise.catch((e=>(this.log("Tarn: resource validator threw an exception "+e.stack,"warn"),!1))).then((n=>{try{n&&!e.isRejected?(this._startReaping(),e.resolve(t.resource)):(u(this.used,t),n?this.free.push(t):(this._destroy(t.resource),setTimeout((()=>{this._tryAcquireOrCreate()}),0)),e.isRejected||this.pendingAcquires.unshift(e))}finally{u(this.pendingValidations,e)}})),this._validateResource(t.resource).then((e=>{n.resolve(e)})).catch((e=>{n.reject(e)}))}}_canAcquire(){return this.free.length>0&&this.pendingAcquires.length>0}_validateResource(e){try{return Promise.resolve(this.validate(e))}catch(e){return Promise.reject(e)}}_shouldCreateMoreResources(){return this.used.length+this.pendingCreates.length(this._tryAcquireOrCreate(),null))).catch((t=>{this.propagateCreateError&&0!==this.pendingAcquires.length&&this.pendingAcquires[0].reject(t),e.forEach((e=>{e.possibleTimeoutCause=t})),i.delay(this.createRetryIntervalMillis).then((()=>this._tryAcquireOrCreate()))}))}_create(){const e=this.eventId++;this._executeEventHandlers("createRequest",e);const t=new r.PendingOperation(this.createTimeoutMillis);var n;return t.promise=t.promise.catch((n=>{throw u(this.pendingCreates,t)&&this._executeEventHandlers("createFail",e,n),n})),this.pendingCreates.push(t),(n=this.creator,new Promise(((e,t)=>{const r=(n,r)=>{n?t(n):e(r)};i.tryPromise((()=>n(r))).then((t=>{t&&e(t)})).catch((e=>{t(e)}))}))).then((n=>t.isRejected?(this.destroyer(n),null):(u(this.pendingCreates,t),this.free.push(new o.Resource(n)),t.resolve(n),this._executeEventHandlers("createSuccess",e,n),null))).catch((n=>(t.isRejected||(u(this.pendingCreates,t)&&this._executeEventHandlers("createFail",e,n),t.reject(n)),null))),t}_destroy(e){const t=this.eventId++;this._executeEventHandlers("destroyRequest",t,e);const n=new r.PendingOperation(this.destroyTimeoutMillis);return Promise.resolve().then((()=>this.destroyer(e))).then((()=>{n.resolve(e)})).catch((e=>{n.reject(e)})),this.pendingDestroys.push(n),n.promise.then((n=>(this._executeEventHandlers("destroySuccess",t,e),n))).catch((n=>this._logDestroyerError(t,e,n))).then((e=>{const t=this.pendingDestroys.findIndex((e=>e===n));return this.pendingDestroys.splice(t,1),e}))}_logDestroyerError(e,t,n){this._executeEventHandlers("destroyFail",e,t,n),this.log("Tarn: resource destroyer threw an exception "+n.stack,"warn")}_startReaping(){this.interval||(this._executeEventHandlers("startReaping"),this.interval=setInterval((()=>this.check()),this.reapIntervalMillis))}_stopReaping(){null!==this.interval&&(this._executeEventHandlers("stopReaping"),a.clearInterval(this.interval)),this.interval=null}_executeEventHandlers(e,...t){this.emitter.listeners(e).forEach((n=>{try{n(...t)}catch(t){this.log(`Tarn: event handler "${e}" threw an exception ${t.stack}`,"warn")}}))}}},50920:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.PromiseInspection=class{constructor(e){this._value=e.value,this._error=e.error}value(){return this._value}reason(){return this._error}isRejected(){return!!this._error}isFulfilled(){return!!this._value}}},183:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(24826);class o{constructor(e){this.resource=e,this.resource=e,this.timestamp=r.now(),this.deferred=r.defer()}get promise(){return this.deferred.promise}resolve(){return this.deferred.resolve(void 0),new o(this.resource)}}t.Resource=o},81324:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});class n extends Error{}t.TimeoutError=n},75972:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(53541);t.Pool=r.Pool;const o=n(81324);t.TimeoutError=o.TimeoutError,e.exports={Pool:r.Pool,TimeoutError:o.TimeoutError}},24826:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(50920);function o(e){return"number"==typeof e&&e===Math.round(e)&&e>0}t.defer=function(){let e=null,t=null;return{promise:new Promise(((n,r)=>{e=n,t=r})),resolve:e,reject:t}},t.now=function(){return Date.now()},t.duration=function(e,t){return Math.abs(t-e)},t.checkOptionalTime=function(e){return void 0===e||o(e)},t.checkRequiredTime=o,t.delay=function(e){return new Promise((t=>setTimeout(t,e)))},t.reflect=function(e){return e.then((e=>new r.PromiseInspection({value:e}))).catch((e=>new r.PromiseInspection({error:e})))},t.tryPromise=function(e){try{const t=e();return Promise.resolve(t)}catch(e){return Promise.reject(e)}}},4542:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.writeToTrackingBuffer=function(e,t,o){e.writeUInt32LE(0),e.writeUInt32LE(r),e.writeUInt16LE(n.TXN_DESCRIPTOR),e.writeBuffer(t),e.writeUInt32LE(o);const i=e.data;return i.writeUInt32LE(i.length,0),e};const n={QUERY_NOTIFICATIONS:1,TXN_DESCRIPTOR:2,TRACE_ACTIVITY:3},r=18},12734:(e,t)=>{"use strict";let n,r,o,i;Object.defineProperty(t,"__esModule",{value:!0}),t.SQLServerStatementColumnEncryptionSetting=t.SQLServerEncryptionType=t.DescribeParameterEncryptionResultSet2=t.DescribeParameterEncryptionResultSet1=void 0,t.SQLServerEncryptionType=n,function(e){e[e.Deterministic=1]="Deterministic",e[e.Randomized=2]="Randomized",e[e.PlainText=0]="PlainText"}(n||(t.SQLServerEncryptionType=n={})),t.DescribeParameterEncryptionResultSet1=r,function(e){e[e.KeyOrdinal=0]="KeyOrdinal",e[e.DbId=1]="DbId",e[e.KeyId=2]="KeyId",e[e.KeyVersion=3]="KeyVersion",e[e.KeyMdVersion=4]="KeyMdVersion",e[e.EncryptedKey=5]="EncryptedKey",e[e.ProviderName=6]="ProviderName",e[e.KeyPath=7]="KeyPath",e[e.KeyEncryptionAlgorithm=8]="KeyEncryptionAlgorithm"}(r||(t.DescribeParameterEncryptionResultSet1=r={})),t.DescribeParameterEncryptionResultSet2=o,function(e){e[e.ParameterOrdinal=0]="ParameterOrdinal",e[e.ParameterName=1]="ParameterName",e[e.ColumnEncryptionAlgorithm=2]="ColumnEncryptionAlgorithm",e[e.ColumnEncrytionType=3]="ColumnEncrytionType",e[e.ColumnEncryptionKeyOrdinal=4]="ColumnEncryptionKeyOrdinal",e[e.NormalizationRuleVersion=5]="NormalizationRuleVersion"}(o||(t.DescribeParameterEncryptionResultSet2=o={})),t.SQLServerStatementColumnEncryptionSetting=i,function(e){e[e.UseConnectionSetting=0]="UseConnectionSetting",e[e.Enabled=1]="Enabled",e[e.ResultSetOnly=2]="ResultSetOnly",e[e.Disabled=3]="Disabled"}(i||(t.SQLServerStatementColumnEncryptionSetting=i={}))},52806:(e,t)=>{"use strict";let n;Object.defineProperty(t,"__esModule",{value:!0}),t.BulkLoadPayload=void 0,n=Symbol.asyncIterator,t.BulkLoadPayload=class{constructor(e){this.bulkLoad=void 0,this.iterator=void 0,this.bulkLoad=e,this.iterator=this.bulkLoad.rowToPacketTransform[Symbol.asyncIterator]()}[n](){return this.iterator}toString(e=""){return e+"BulkLoad"}}},36605:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=n(24434),i=(r=n(84424))&&r.__esModule?r:{default:r},s=n(2203),a=n(85629);const u=Buffer.from([a.TYPE.ROW]),c=Buffer.from([16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]),l=Buffer.from([0]);class h extends s.Transform{constructor(e){super({writableObjectMode:!0}),this.columnMetadataWritten=void 0,this.bulkLoad=void 0,this.mainOptions=void 0,this.columns=void 0,this.bulkLoad=e,this.mainOptions=e.options,this.columns=e.columns,this.columnMetadataWritten=!1}_transform(e,t,n){this.columnMetadataWritten||(this.push(this.bulkLoad.getColMetaData()),this.columnMetadataWritten=!0),this.push(u);for(let t=0;t0?` WITH (${e.join(",")})`:""}getBulkInsertSql(){let e="insert bulk "+this.table+"(";for(let t=0,n=this.columns.length;t="7_2"&&(r|=32768),e.writeUInt16LE(r),e.writeBuffer(n.type.generateTypeInfo(n,this.options)),n.type.hasTableName&&e.writeUsVarchar(this.table,"ucs2"),e.writeBVarchar(n.name,"ucs2")}return e.data}setTimeout(e){this.timeout=e}createDoneToken(){const e=new i.default(this.options.tdsVersion<"7_2"?9:13);e.writeUInt8(a.TYPE.DONE);return e.writeUInt16LE(0),e.writeUInt16LE(0),e.writeUInt32LE(0),this.options.tdsVersion>="7_2"&&e.writeUInt32LE(0),e.data}cancel(){this.canceled||(this.canceled=!0,this.emit("cancel"))}}var p=f;t.default=p,e.exports=f},20553:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.codepageBySortId=t.codepageByLanguageId=t.Flags=t.Collation=void 0;const n={1025:"CP1256",1028:"CP950",1029:"CP1250",1030:"CP1252",1032:"CP1253",1033:"CP1252",1034:"CP1252",1035:"CP1252",1036:"CP1252",1037:"CP1255",1038:"CP1250",1039:"CP1252",1041:"CP932",1042:"CP949",1044:"CP1252",1045:"CP1250",1047:"CP1252",1048:"CP1250",1049:"CP1251",1050:"CP1250",1051:"CP1250",1052:"CP1250",1054:"CP874",1055:"CP1254",1056:"CP1256",1058:"CP1251",1060:"CP1250",1061:"CP1257",1062:"CP1257",1063:"CP1257",1065:"CP1256",1066:"CP1258",1068:"CP1254",1070:"CP1252",1071:"CP1251",1083:"CP1252",1087:"CP1251",1090:"CP1250",1091:"CP1254",1092:"CP1251",1106:"CP1252",1122:"CP1252",1133:"CP1251",1146:"CP1252",1148:"CP1252",1150:"CP1252",1152:"CP1256",1155:"CP1252",1157:"CP1251",1164:"CP1256",2052:"CP936",2074:"CP1250",2092:"CP1251",2107:"CP1252",2143:"CP1252",3076:"CP950",3082:"CP1252",3098:"CP1251",5124:"CP950",5146:"CP1250",8218:"CP1251",1031:"CP1252",1079:"CP1252"};t.codepageByLanguageId=n;const r={30:"CP437",31:"CP437",32:"CP437",33:"CP437",34:"CP437",40:"CP850",41:"CP850",42:"CP850",43:"CP850",44:"CP850",49:"CP850",51:"CP1252",52:"CP1252",53:"CP1252",54:"CP1252",55:"CP850",56:"CP850",57:"CP850",58:"CP850",59:"CP850",60:"CP850",61:"CP850",80:"CP1250",81:"CP1250",82:"CP1250",83:"CP1250",84:"CP1250",85:"CP1250",86:"CP1250",87:"CP1250",88:"CP1250",89:"CP1250",90:"CP1250",91:"CP1250",92:"CP1250",93:"CP1250",94:"CP1250",95:"CP1250",96:"CP1250",104:"CP1251",105:"CP1251",106:"CP1251",107:"CP1251",108:"CP1251",112:"CP1253",113:"CP1253",114:"CP1253",120:"CP1253",121:"CP1253",122:"CP1253",124:"CP1253",128:"CP1254",129:"CP1254",130:"CP1254",136:"CP1255",137:"CP1255",138:"CP1255",144:"CP1256",145:"CP1256",146:"CP1256",152:"CP1257",153:"CP1257",154:"CP1257",155:"CP1257",156:"CP1257",157:"CP1257",158:"CP1257",159:"CP1257",160:"CP1257",183:"CP1252",184:"CP1252",185:"CP1252",186:"CP1252"};t.codepageBySortId=r;const o={IGNORE_CASE:1,IGNORE_ACCENT:2,IGNORE_KANA:4,IGNORE_WIDTH:8,BINARY:16,BINARY2:32,UTF8:64};t.Flags=o,t.Collation=class{static fromBuffer(e,t=0){let n=(15&e[t+2])<<16;n|=e[t+1]<<8,n|=e[t+0];let r=(15&e[t+3])<<4;return r|=(240&e[t+2])>>>4,new this(n,r,(240&e[t+3])>>>4,e[t+4])}constructor(e,t,i,s){if(this.lcid=void 0,this.flags=void 0,this.version=void 0,this.sortId=void 0,this.codepage=void 0,this.buffer=void 0,this.buffer=void 0,this.lcid=e,this.flags=t,this.version=i,this.sortId=s,this.flags&o.UTF8)this.codepage="utf-8";else if(this.sortId)this.codepage=r[this.sortId];else{const e=65535&this.lcid;this.codepage=n[e]}}toBuffer(){return this.buffer||(this.buffer=Buffer.alloc(5),this.buffer[0]=255&this.lcid,this.buffer[1]=this.lcid>>>8&255,this.buffer[2]=this.lcid>>>16&15|(15&this.flags)<<4,this.buffer[3]=(240&this.flags)>>>4|(15&this.version)<<4,this.buffer[4]=255&this.sortId),this.buffer}}},70352:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=F(n(76982)),o=F(n(70857)),i=F(n(72250)),s=F(n(49140)),a=n(2203),u=n(66285),c=F(n(36605)),l=F(n(54213)),h=n(24434),f=n(1434),p=n(98306),d=n(57484),E=F(n(61357)),m=F(n(29577)),_=F(n(55834)),g=F(n(16267)),y=F(n(17839)),A=F(n(1487)),v=F(n(51802)),b=n(13548),T=n(65974),w=n(58167),O=n(37057),R=n(38625),S=n(4209),I=F(n(49381)),N=n(13761),C=n(64985),D=n(98597),L=n(52806),M=F(n(41424)),x=n(97689),B=n(87016),P=n(85920);function F(e){return e&&e.__esModule?e:{default:e}}class U extends h.EventEmitter{constructor(e){if(super(),this.fedAuthRequired=void 0,this.config=void 0,this.secureContextOptions=void 0,this.inTransaction=void 0,this.transactionDescriptors=void 0,this.transactionDepth=void 0,this.isSqlBatch=void 0,this.curTransientRetryCount=void 0,this.transientErrorLookup=void 0,this.closed=void 0,this.loginError=void 0,this.debug=void 0,this.ntlmpacket=void 0,this.ntlmpacketBuffer=void 0,this.routingData=void 0,this.messageIo=void 0,this.state=void 0,this.resetConnectionOnNextRequest=void 0,this.request=void 0,this.procReturnStatusValue=void 0,this.socket=void 0,this.messageBuffer=void 0,this.connectTimer=void 0,this.cancelTimer=void 0,this.requestTimer=void 0,this.retryTimer=void 0,this._cancelAfterRequestSent=void 0,this.databaseCollation=void 0,"object"!=typeof e||null===e)throw new TypeError('The "config" argument is required and must be of type Object.');if("string"!=typeof e.server)throw new TypeError('The "config.server" property is required and must be of type string.');let t;if(this.fedAuthRequired=!1,void 0!==e.authentication){if("object"!=typeof e.authentication||null===e.authentication)throw new TypeError('The "config.authentication" property must be of type Object.');const n=e.authentication.type,r=void 0===e.authentication.options?{}:e.authentication.options;if("string"!=typeof n)throw new TypeError('The "config.authentication.type" property must be of type string.');if("default"!==n&&"ntlm"!==n&&"azure-active-directory-password"!==n&&"azure-active-directory-access-token"!==n&&"azure-active-directory-msi-vm"!==n&&"azure-active-directory-msi-app-service"!==n&&"azure-active-directory-service-principal-secret"!==n&&"azure-active-directory-default"!==n)throw new TypeError('The "type" property must one of "default", "ntlm", "azure-active-directory-password", "azure-active-directory-access-token", "azure-active-directory-default", "azure-active-directory-msi-vm" or "azure-active-directory-msi-app-service" or "azure-active-directory-service-principal-secret".');if("object"!=typeof r||null===r)throw new TypeError('The "config.authentication.options" property must be of type object.');if("ntlm"===n){if("string"!=typeof r.domain)throw new TypeError('The "config.authentication.options.domain" property must be of type string.');if(void 0!==r.userName&&"string"!=typeof r.userName)throw new TypeError('The "config.authentication.options.userName" property must be of type string.');if(void 0!==r.password&&"string"!=typeof r.password)throw new TypeError('The "config.authentication.options.password" property must be of type string.');t={type:"ntlm",options:{userName:r.userName,password:r.password,domain:r.domain&&r.domain.toUpperCase()}}}else if("azure-active-directory-password"===n){if("string"!=typeof r.clientId)throw new TypeError('The "config.authentication.options.clientId" property must be of type string.');if(void 0!==r.userName&&"string"!=typeof r.userName)throw new TypeError('The "config.authentication.options.userName" property must be of type string.');if(void 0!==r.password&&"string"!=typeof r.password)throw new TypeError('The "config.authentication.options.password" property must be of type string.');if(void 0!==r.tenantId&&"string"!=typeof r.tenantId)throw new TypeError('The "config.authentication.options.tenantId" property must be of type string.');t={type:"azure-active-directory-password",options:{userName:r.userName,password:r.password,tenantId:r.tenantId,clientId:r.clientId}}}else if("azure-active-directory-access-token"===n){if("string"!=typeof r.token)throw new TypeError('The "config.authentication.options.token" property must be of type string.');t={type:"azure-active-directory-access-token",options:{token:r.token}}}else if("azure-active-directory-msi-vm"===n){if(void 0!==r.clientId&&"string"!=typeof r.clientId)throw new TypeError('The "config.authentication.options.clientId" property must be of type string.');t={type:"azure-active-directory-msi-vm",options:{clientId:r.clientId}}}else if("azure-active-directory-default"===n){if(void 0!==r.clientId&&"string"!=typeof r.clientId)throw new TypeError('The "config.authentication.options.clientId" property must be of type string.');t={type:"azure-active-directory-default",options:{clientId:r.clientId}}}else if("azure-active-directory-msi-app-service"===n){if(void 0!==r.clientId&&"string"!=typeof r.clientId)throw new TypeError('The "config.authentication.options.clientId" property must be of type string.');t={type:"azure-active-directory-msi-app-service",options:{clientId:r.clientId}}}else if("azure-active-directory-service-principal-secret"===n){if("string"!=typeof r.clientId)throw new TypeError('The "config.authentication.options.clientId" property must be of type string.');if("string"!=typeof r.clientSecret)throw new TypeError('The "config.authentication.options.clientSecret" property must be of type string.');if("string"!=typeof r.tenantId)throw new TypeError('The "config.authentication.options.tenantId" property must be of type string.');t={type:"azure-active-directory-service-principal-secret",options:{clientId:r.clientId,clientSecret:r.clientSecret,tenantId:r.tenantId}}}else{if(void 0!==r.userName&&"string"!=typeof r.userName)throw new TypeError('The "config.authentication.options.userName" property must be of type string.');if(void 0!==r.password&&"string"!=typeof r.password)throw new TypeError('The "config.authentication.options.password" property must be of type string.');t={type:"default",options:{userName:r.userName,password:r.password}}}}else t={type:"default",options:{userName:void 0,password:void 0}};if(this.config={server:e.server,authentication:t,options:{abortTransactionOnError:!1,appName:void 0,camelCaseColumns:!1,cancelTimeout:5e3,columnEncryptionKeyCacheTTL:72e5,columnEncryptionSetting:!1,columnNameReplacer:void 0,connectionRetryInterval:500,connectTimeout:15e3,connectionIsolationLevel:T.ISOLATION_LEVEL.READ_COMMITTED,cryptoCredentialsDetails:{},database:void 0,datefirst:7,dateFormat:"mdy",debug:{data:!1,packet:!1,payload:!1,token:!1},enableAnsiNull:!0,enableAnsiNullDefault:!0,enableAnsiPadding:!0,enableAnsiWarnings:!0,enableArithAbort:!0,enableConcatNullYieldsNull:!0,enableCursorCloseOnCommit:null,enableImplicitTransactions:!1,enableNumericRoundabort:!1,enableQuotedIdentifier:!0,encrypt:!0,fallbackToDefaultDb:!1,encryptionKeyStoreProviders:void 0,instanceName:void 0,isolationLevel:T.ISOLATION_LEVEL.READ_COMMITTED,language:"us_english",localAddress:void 0,maxRetriesOnTransientErrors:3,multiSubnetFailover:!1,packetSize:4096,port:1433,readOnlyIntent:!1,requestTimeout:15e3,rowCollectionOnDone:!1,rowCollectionOnRequestCompletion:!1,serverName:void 0,serverSupportsColumnEncryption:!1,tdsVersion:"7_4",textsize:2147483647,trustedServerNameAE:void 0,trustServerCertificate:!1,useColumnNames:!1,useUTC:!0,workstationId:void 0,lowerCaseGuids:!1}},e.options){if(e.options.port&&e.options.instanceName)throw new Error("Port and instanceName are mutually exclusive, but "+e.options.port+" and "+e.options.instanceName+" provided");if(void 0!==e.options.abortTransactionOnError){if("boolean"!=typeof e.options.abortTransactionOnError&&null!==e.options.abortTransactionOnError)throw new TypeError('The "config.options.abortTransactionOnError" property must be of type string or null.');this.config.options.abortTransactionOnError=e.options.abortTransactionOnError}if(void 0!==e.options.appName){if("string"!=typeof e.options.appName)throw new TypeError('The "config.options.appName" property must be of type string.');this.config.options.appName=e.options.appName}if(void 0!==e.options.camelCaseColumns){if("boolean"!=typeof e.options.camelCaseColumns)throw new TypeError('The "config.options.camelCaseColumns" property must be of type boolean.');this.config.options.camelCaseColumns=e.options.camelCaseColumns}if(void 0!==e.options.cancelTimeout){if("number"!=typeof e.options.cancelTimeout)throw new TypeError('The "config.options.cancelTimeout" property must be of type number.');this.config.options.cancelTimeout=e.options.cancelTimeout}if(e.options.columnNameReplacer){if("function"!=typeof e.options.columnNameReplacer)throw new TypeError('The "config.options.cancelTimeout" property must be of type function.');this.config.options.columnNameReplacer=e.options.columnNameReplacer}if(void 0!==e.options.connectionIsolationLevel&&((0,T.assertValidIsolationLevel)(e.options.connectionIsolationLevel,"config.options.connectionIsolationLevel"),this.config.options.connectionIsolationLevel=e.options.connectionIsolationLevel),void 0!==e.options.connectTimeout){if("number"!=typeof e.options.connectTimeout)throw new TypeError('The "config.options.connectTimeout" property must be of type number.');this.config.options.connectTimeout=e.options.connectTimeout}if(void 0!==e.options.cryptoCredentialsDetails){if("object"!=typeof e.options.cryptoCredentialsDetails||null===e.options.cryptoCredentialsDetails)throw new TypeError('The "config.options.cryptoCredentialsDetails" property must be of type Object.');this.config.options.cryptoCredentialsDetails=e.options.cryptoCredentialsDetails}if(void 0!==e.options.database){if("string"!=typeof e.options.database)throw new TypeError('The "config.options.database" property must be of type string.');this.config.options.database=e.options.database}if(void 0!==e.options.datefirst){if("number"!=typeof e.options.datefirst&&null!==e.options.datefirst)throw new TypeError('The "config.options.datefirst" property must be of type number.');if(null!==e.options.datefirst&&(e.options.datefirst<1||e.options.datefirst>7))throw new RangeError('The "config.options.datefirst" property must be >= 1 and <= 7');this.config.options.datefirst=e.options.datefirst}if(void 0!==e.options.dateFormat){if("string"!=typeof e.options.dateFormat&&null!==e.options.dateFormat)throw new TypeError('The "config.options.dateFormat" property must be of type string or null.');this.config.options.dateFormat=e.options.dateFormat}if(e.options.debug){if(void 0!==e.options.debug.data){if("boolean"!=typeof e.options.debug.data)throw new TypeError('The "config.options.debug.data" property must be of type boolean.');this.config.options.debug.data=e.options.debug.data}if(void 0!==e.options.debug.packet){if("boolean"!=typeof e.options.debug.packet)throw new TypeError('The "config.options.debug.packet" property must be of type boolean.');this.config.options.debug.packet=e.options.debug.packet}if(void 0!==e.options.debug.payload){if("boolean"!=typeof e.options.debug.payload)throw new TypeError('The "config.options.debug.payload" property must be of type boolean.');this.config.options.debug.payload=e.options.debug.payload}if(void 0!==e.options.debug.token){if("boolean"!=typeof e.options.debug.token)throw new TypeError('The "config.options.debug.token" property must be of type boolean.');this.config.options.debug.token=e.options.debug.token}}if(void 0!==e.options.enableAnsiNull){if("boolean"!=typeof e.options.enableAnsiNull&&null!==e.options.enableAnsiNull)throw new TypeError('The "config.options.enableAnsiNull" property must be of type boolean or null.');this.config.options.enableAnsiNull=e.options.enableAnsiNull}if(void 0!==e.options.enableAnsiNullDefault){if("boolean"!=typeof e.options.enableAnsiNullDefault&&null!==e.options.enableAnsiNullDefault)throw new TypeError('The "config.options.enableAnsiNullDefault" property must be of type boolean or null.');this.config.options.enableAnsiNullDefault=e.options.enableAnsiNullDefault}if(void 0!==e.options.enableAnsiPadding){if("boolean"!=typeof e.options.enableAnsiPadding&&null!==e.options.enableAnsiPadding)throw new TypeError('The "config.options.enableAnsiPadding" property must be of type boolean or null.');this.config.options.enableAnsiPadding=e.options.enableAnsiPadding}if(void 0!==e.options.enableAnsiWarnings){if("boolean"!=typeof e.options.enableAnsiWarnings&&null!==e.options.enableAnsiWarnings)throw new TypeError('The "config.options.enableAnsiWarnings" property must be of type boolean or null.');this.config.options.enableAnsiWarnings=e.options.enableAnsiWarnings}if(void 0!==e.options.enableArithAbort){if("boolean"!=typeof e.options.enableArithAbort&&null!==e.options.enableArithAbort)throw new TypeError('The "config.options.enableArithAbort" property must be of type boolean or null.');this.config.options.enableArithAbort=e.options.enableArithAbort}if(void 0!==e.options.enableConcatNullYieldsNull){if("boolean"!=typeof e.options.enableConcatNullYieldsNull&&null!==e.options.enableConcatNullYieldsNull)throw new TypeError('The "config.options.enableConcatNullYieldsNull" property must be of type boolean or null.');this.config.options.enableConcatNullYieldsNull=e.options.enableConcatNullYieldsNull}if(void 0!==e.options.enableCursorCloseOnCommit){if("boolean"!=typeof e.options.enableCursorCloseOnCommit&&null!==e.options.enableCursorCloseOnCommit)throw new TypeError('The "config.options.enableCursorCloseOnCommit" property must be of type boolean or null.');this.config.options.enableCursorCloseOnCommit=e.options.enableCursorCloseOnCommit}if(void 0!==e.options.enableImplicitTransactions){if("boolean"!=typeof e.options.enableImplicitTransactions&&null!==e.options.enableImplicitTransactions)throw new TypeError('The "config.options.enableImplicitTransactions" property must be of type boolean or null.');this.config.options.enableImplicitTransactions=e.options.enableImplicitTransactions}if(void 0!==e.options.enableNumericRoundabort){if("boolean"!=typeof e.options.enableNumericRoundabort&&null!==e.options.enableNumericRoundabort)throw new TypeError('The "config.options.enableNumericRoundabort" property must be of type boolean or null.');this.config.options.enableNumericRoundabort=e.options.enableNumericRoundabort}if(void 0!==e.options.enableQuotedIdentifier){if("boolean"!=typeof e.options.enableQuotedIdentifier&&null!==e.options.enableQuotedIdentifier)throw new TypeError('The "config.options.enableQuotedIdentifier" property must be of type boolean or null.');this.config.options.enableQuotedIdentifier=e.options.enableQuotedIdentifier}if(void 0!==e.options.encrypt){if("boolean"!=typeof e.options.encrypt)throw new TypeError('The "config.options.encrypt" property must be of type boolean.');this.config.options.encrypt=e.options.encrypt}if(void 0!==e.options.fallbackToDefaultDb){if("boolean"!=typeof e.options.fallbackToDefaultDb)throw new TypeError('The "config.options.fallbackToDefaultDb" property must be of type boolean.');this.config.options.fallbackToDefaultDb=e.options.fallbackToDefaultDb}if(void 0!==e.options.instanceName){if("string"!=typeof e.options.instanceName)throw new TypeError('The "config.options.instanceName" property must be of type string.');this.config.options.instanceName=e.options.instanceName,this.config.options.port=void 0}if(void 0!==e.options.isolationLevel&&((0,T.assertValidIsolationLevel)(e.options.isolationLevel,"config.options.isolationLevel"),this.config.options.isolationLevel=e.options.isolationLevel),void 0!==e.options.language){if("string"!=typeof e.options.language&&null!==e.options.language)throw new TypeError('The "config.options.language" property must be of type string or null.');this.config.options.language=e.options.language}if(void 0!==e.options.localAddress){if("string"!=typeof e.options.localAddress)throw new TypeError('The "config.options.localAddress" property must be of type string.');this.config.options.localAddress=e.options.localAddress}if(void 0!==e.options.multiSubnetFailover){if("boolean"!=typeof e.options.multiSubnetFailover)throw new TypeError('The "config.options.multiSubnetFailover" property must be of type boolean.');this.config.options.multiSubnetFailover=e.options.multiSubnetFailover}if(void 0!==e.options.packetSize){if("number"!=typeof e.options.packetSize)throw new TypeError('The "config.options.packetSize" property must be of type number.');this.config.options.packetSize=e.options.packetSize}if(void 0!==e.options.port){if("number"!=typeof e.options.port)throw new TypeError('The "config.options.port" property must be of type number.');if(e.options.port<=0||e.options.port>=65536)throw new RangeError('The "config.options.port" property must be > 0 and < 65536');this.config.options.port=e.options.port,this.config.options.instanceName=void 0}if(void 0!==e.options.readOnlyIntent){if("boolean"!=typeof e.options.readOnlyIntent)throw new TypeError('The "config.options.readOnlyIntent" property must be of type boolean.');this.config.options.readOnlyIntent=e.options.readOnlyIntent}if(void 0!==e.options.requestTimeout){if("number"!=typeof e.options.requestTimeout)throw new TypeError('The "config.options.requestTimeout" property must be of type number.');this.config.options.requestTimeout=e.options.requestTimeout}if(void 0!==e.options.maxRetriesOnTransientErrors){if("number"!=typeof e.options.maxRetriesOnTransientErrors)throw new TypeError('The "config.options.maxRetriesOnTransientErrors" property must be of type number.');if(e.options.maxRetriesOnTransientErrors<0)throw new TypeError('The "config.options.maxRetriesOnTransientErrors" property must be equal or greater than 0.');this.config.options.maxRetriesOnTransientErrors=e.options.maxRetriesOnTransientErrors}if(void 0!==e.options.connectionRetryInterval){if("number"!=typeof e.options.connectionRetryInterval)throw new TypeError('The "config.options.connectionRetryInterval" property must be of type number.');if(e.options.connectionRetryInterval<=0)throw new TypeError('The "config.options.connectionRetryInterval" property must be greater than 0.');this.config.options.connectionRetryInterval=e.options.connectionRetryInterval}if(void 0!==e.options.rowCollectionOnDone){if("boolean"!=typeof e.options.rowCollectionOnDone)throw new TypeError('The "config.options.rowCollectionOnDone" property must be of type boolean.');this.config.options.rowCollectionOnDone=e.options.rowCollectionOnDone}if(void 0!==e.options.rowCollectionOnRequestCompletion){if("boolean"!=typeof e.options.rowCollectionOnRequestCompletion)throw new TypeError('The "config.options.rowCollectionOnRequestCompletion" property must be of type boolean.');this.config.options.rowCollectionOnRequestCompletion=e.options.rowCollectionOnRequestCompletion}if(void 0!==e.options.tdsVersion){if("string"!=typeof e.options.tdsVersion)throw new TypeError('The "config.options.tdsVersion" property must be of type string.');this.config.options.tdsVersion=e.options.tdsVersion}if(void 0!==e.options.textsize){if("number"!=typeof e.options.textsize&&null!==e.options.textsize)throw new TypeError('The "config.options.textsize" property must be of type number or null.');if(e.options.textsize>2147483647)throw new TypeError('The "config.options.textsize" can\'t be greater than 2147483647.');if(e.options.textsize<-1)throw new TypeError('The "config.options.textsize" can\'t be smaller than -1.');this.config.options.textsize=0|e.options.textsize}if(void 0!==e.options.trustServerCertificate){if("boolean"!=typeof e.options.trustServerCertificate)throw new TypeError('The "config.options.trustServerCertificate" property must be of type boolean.');this.config.options.trustServerCertificate=e.options.trustServerCertificate}if(void 0!==e.options.useColumnNames){if("boolean"!=typeof e.options.useColumnNames)throw new TypeError('The "config.options.useColumnNames" property must be of type boolean.');this.config.options.useColumnNames=e.options.useColumnNames}if(void 0!==e.options.useUTC){if("boolean"!=typeof e.options.useUTC)throw new TypeError('The "config.options.useUTC" property must be of type boolean.');this.config.options.useUTC=e.options.useUTC}if(void 0!==e.options.workstationId){if("string"!=typeof e.options.workstationId)throw new TypeError('The "config.options.workstationId" property must be of type string.');this.config.options.workstationId=e.options.workstationId}if(void 0!==e.options.lowerCaseGuids){if("boolean"!=typeof e.options.lowerCaseGuids)throw new TypeError('The "config.options.lowerCaseGuids" property must be of type boolean.');this.config.options.lowerCaseGuids=e.options.lowerCaseGuids}}this.secureContextOptions=this.config.options.cryptoCredentialsDetails,void 0===this.secureContextOptions.secureOptions&&(this.secureContextOptions=Object.create(this.secureContextOptions,{secureOptions:{value:s.default.SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS}})),this.debug=this.createDebug(),this.inTransaction=!1,this.transactionDescriptors=[Buffer.from([0,0,0,0,0,0,0,0])],this.transactionDepth=0,this.isSqlBatch=!1,this.closed=!1,this.messageBuffer=Buffer.alloc(0),this.curTransientRetryCount=0,this.transientErrorLookup=new p.TransientErrorLookup,this.state=this.STATE.INITIALIZED,this._cancelAfterRequestSent=()=>{this.messageIo.sendMessage(d.TYPE.ATTENTION),this.createCancelTimer()}}connect(e){if(this.state!==this.STATE.INITIALIZED)throw new w.ConnectionError("`.connect` can not be called on a Connection in `"+this.state.name+"` state.");if(e){const t=t=>{this.removeListener("error",n),e(t)},n=n=>{this.removeListener("connect",t),e(n)};this.once("connect",t),this.once("error",n)}this.transitionTo(this.STATE.CONNECTING)}on(e,t){return super.on(e,t)}emit(e,...t){return super.emit(e,...t)}close(){this.transitionTo(this.STATE.FINAL)}initialiseConnection(){const e=this.createConnectTimer();return this.config.options.port?this.connectOnPort(this.config.options.port,this.config.options.multiSubnetFailover,e):(0,f.instanceLookup)({server:this.config.server,instanceName:this.config.options.instanceName,timeout:this.config.options.connectTimeout,signal:e}).then((t=>{process.nextTick((()=>{this.connectOnPort(t,this.config.options.multiSubnetFailover,e)}))}),(e=>{this.clearConnectTimer(),"AbortError"!==e.name&&process.nextTick((()=>{this.emit("connect",new w.ConnectionError(e.message,"EINSTLOOKUP"))}))}))}cleanupConnection(e){if(!this.closed){this.clearConnectTimer(),this.clearRequestTimer(),this.clearRetryTimer(),this.closeConnection(),1===e?this.emit("rerouting"):2!==e&&process.nextTick((()=>{this.emit("end")}));const t=this.request;if(t){const e=new w.RequestError("Connection closed before request completed.","ECLOSE");t.callback(e),this.request=void 0}this.closed=!0,this.loginError=void 0}}createDebug(){const e=new l.default(this.config.options.debug);return e.on("debug",(e=>{this.emit("debug",e)})),e}createTokenStreamParser(e,t){return new b.Parser(e,this.debug,t,this.config.options)}connectOnPort(e,t,n){const r={host:this.routingData?this.routingData.server:this.config.server,port:this.routingData?this.routingData.port:e,localAddress:this.config.options.localAddress};(t?O.connectInParallel:O.connectInSequence)(r,i.default.lookup,n).then((e=>{process.nextTick((()=>{e.on("error",(e=>{this.socketError(e)})),e.on("close",(()=>{this.socketClose()})),e.on("end",(()=>{this.socketEnd()})),e.setKeepAlive(!0,3e4),this.messageIo=new v.default(e,this.config.options.packetSize,this.debug),this.messageIo.on("secure",(e=>{this.emit("secure",e)})),this.socket=e,this.closed=!1,this.debug.log("connected to "+this.config.server+":"+this.config.options.port),this.sendPreLogin(),this.transitionTo(this.STATE.SENT_PRELOGIN)}))}),(e=>{this.clearConnectTimer(),"AbortError"!==e.name&&process.nextTick((()=>{this.socketError(e)}))}))}closeConnection(){this.socket&&this.socket.destroy()}createConnectTimer(){const e=new C.AbortController;return this.connectTimer=setTimeout((()=>{e.abort(),this.connectTimeout()}),this.config.options.connectTimeout),e.signal}createCancelTimer(){this.clearCancelTimer();const e=this.config.options.cancelTimeout;e>0&&(this.cancelTimer=setTimeout((()=>{this.cancelTimeout()}),e))}createRequestTimer(){this.clearRequestTimer();const e=this.request,t=void 0!==e.timeout?e.timeout:this.config.options.requestTimeout;t&&(this.requestTimer=setTimeout((()=>{this.requestTimeout()}),t))}createRetryTimer(){this.clearRetryTimer(),this.retryTimer=setTimeout((()=>{this.retryTimeout()}),this.config.options.connectionRetryInterval)}connectTimeout(){const e=`Failed to connect to ${this.config.server}${this.config.options.port?`:${this.config.options.port}`:`\\${this.config.options.instanceName}`} in ${this.config.options.connectTimeout}ms`;this.debug.log(e),this.emit("connect",new w.ConnectionError(e,"ETIMEOUT")),this.connectTimer=void 0,this.dispatchEvent("connectTimeout")}cancelTimeout(){const e=`Failed to cancel request in ${this.config.options.cancelTimeout}ms`;this.debug.log(e),this.dispatchEvent("socketError",new w.ConnectionError(e,"ETIMEOUT"))}requestTimeout(){this.requestTimer=void 0;const e=this.request;e.cancel();const t="Timeout: Request failed to complete in "+(void 0!==e.timeout?e.timeout:this.config.options.requestTimeout)+"ms";e.error=new w.RequestError(t,"ETIMEOUT")}retryTimeout(){this.retryTimer=void 0,this.emit("retry"),this.transitionTo(this.STATE.CONNECTING)}clearConnectTimer(){this.connectTimer&&(clearTimeout(this.connectTimer),this.connectTimer=void 0)}clearCancelTimer(){this.cancelTimer&&(clearTimeout(this.cancelTimer),this.cancelTimer=void 0)}clearRequestTimer(){this.requestTimer&&(clearTimeout(this.requestTimer),this.requestTimer=void 0)}clearRetryTimer(){this.retryTimer&&(clearTimeout(this.retryTimer),this.retryTimer=void 0)}transitionTo(e){this.state!==e?(this.state&&this.state.exit&&this.state.exit.call(this,e),this.debug.log("State change: "+(this.state?this.state.name:"undefined")+" -> "+e.name),this.state=e,this.state.enter&&this.state.enter.apply(this)):this.debug.log("State is already "+e.name)}getEventHandler(e){const t=this.state.events[e];if(!t)throw new Error(`No event '${e}' in state '${this.state.name}'`);return t}dispatchEvent(e,...t){const n=this.state.events[e];n?n.apply(this,t):(this.emit("error",new Error(`No event '${e}' in state '${this.state.name}'`)),this.close())}socketError(e){if(this.state===this.STATE.CONNECTING||this.state===this.STATE.SENT_TLSSSLNEGOTIATION){const t=`Failed to connect to ${this.config.server}:${this.config.options.port} - ${e.message}`;this.debug.log(t),this.emit("connect",new w.ConnectionError(t,"ESOCKET"))}else{const t=`Connection lost - ${e.message}`;this.debug.log(t),this.emit("error",new w.ConnectionError(t,"ESOCKET"))}this.dispatchEvent("socketError",e)}socketEnd(){if(this.debug.log("socket ended"),this.state!==this.STATE.FINAL){const e=new Error("socket hang up");e.code="ECONNRESET",this.socketError(e)}}socketClose(){if(this.debug.log("connection to "+this.config.server+":"+this.config.options.port+" closed"),this.state===this.STATE.REROUTING)this.debug.log("Rerouting to "+this.routingData.server+":"+this.routingData.port),this.dispatchEvent("reconnect");else if(this.state===this.STATE.TRANSIENT_FAILURE_RETRY){const e=this.routingData?this.routingData.server:this.config.server,t=this.routingData?this.routingData.port:this.config.options.port;this.debug.log("Retry after transient failure connecting to "+e+":"+t),this.dispatchEvent("retry")}else this.transitionTo(this.STATE.FINAL)}sendPreLogin(){const[,e,t,n]=/^(\d+)\.(\d+)\.(\d+)/.exec(x.version)??["0.0.0","0","0","0"],r=new E.default({encrypt:this.config.options.encrypt,version:{major:Number(e),minor:Number(t),build:Number(n),subbuild:0}});this.messageIo.sendMessage(d.TYPE.PRELOGIN,r.data),this.debug.payload((function(){return r.toString(" ")}))}sendLogin7Packet(){const e=new m.default({tdsVersion:S.versions[this.config.options.tdsVersion],packetSize:this.config.options.packetSize,clientProgVer:0,clientPid:process.pid,connectionId:0,clientTimeZone:(new Date).getTimezoneOffset(),clientLcid:1033}),{authentication:t}=this.config;switch(t.type){case"azure-active-directory-password":e.fedAuth={type:"ADAL",echo:this.fedAuthRequired,workflow:"default"};break;case"azure-active-directory-access-token":e.fedAuth={type:"SECURITYTOKEN",echo:this.fedAuthRequired,fedAuthToken:t.options.token};break;case"azure-active-directory-msi-vm":case"azure-active-directory-default":case"azure-active-directory-msi-app-service":case"azure-active-directory-service-principal-secret":e.fedAuth={type:"ADAL",echo:this.fedAuthRequired,workflow:"integrated"};break;case"ntlm":e.sspi=(0,N.createNTLMRequest)({domain:t.options.domain});break;default:e.userName=t.options.userName,e.password=t.options.password}e.hostname=this.config.options.workstationId||o.default.hostname(),e.serverName=this.routingData?this.routingData.server:this.config.server,e.appName=this.config.options.appName||"Tedious",e.libraryName=R.name,e.language=this.config.options.language,e.database=this.config.options.database,e.clientId=Buffer.from([1,2,3,4,5,6]),e.readOnlyIntent=this.config.options.readOnlyIntent,e.initDbFatal=!this.config.options.fallbackToDefaultDb,this.routingData=void 0,this.messageIo.sendMessage(d.TYPE.LOGIN7,e.toBuffer()),this.debug.payload((function(){return e.toString(" ")}))}sendFedAuthTokenMessage(e){const t=Buffer.byteLength(e,"ucs2"),n=Buffer.alloc(8+t);let r=0;r=n.writeUInt32LE(t+4,r),r=n.writeUInt32LE(t,r),n.write(e,r,"ucs2"),this.messageIo.sendMessage(d.TYPE.FEDAUTH_TOKEN,n),this.transitionTo(this.STATE.SENT_LOGIN7_WITH_STANDARD_LOGIN)}sendInitialSql(){const e=new A.default(this.getInitialSql(),this.currentTransactionDescriptor(),this.config.options),t=new I.default({type:d.TYPE.SQL_BATCH});this.messageIo.outgoingMessageStream.write(t),a.Readable.from(e).pipe(t)}getInitialSql(){const e=[];return!0===this.config.options.enableAnsiNull?e.push("set ansi_nulls on"):!1===this.config.options.enableAnsiNull&&e.push("set ansi_nulls off"),!0===this.config.options.enableAnsiNullDefault?e.push("set ansi_null_dflt_on on"):!1===this.config.options.enableAnsiNullDefault&&e.push("set ansi_null_dflt_on off"),!0===this.config.options.enableAnsiPadding?e.push("set ansi_padding on"):!1===this.config.options.enableAnsiPadding&&e.push("set ansi_padding off"),!0===this.config.options.enableAnsiWarnings?e.push("set ansi_warnings on"):!1===this.config.options.enableAnsiWarnings&&e.push("set ansi_warnings off"),!0===this.config.options.enableArithAbort?e.push("set arithabort on"):!1===this.config.options.enableArithAbort&&e.push("set arithabort off"),!0===this.config.options.enableConcatNullYieldsNull?e.push("set concat_null_yields_null on"):!1===this.config.options.enableConcatNullYieldsNull&&e.push("set concat_null_yields_null off"),!0===this.config.options.enableCursorCloseOnCommit?e.push("set cursor_close_on_commit on"):!1===this.config.options.enableCursorCloseOnCommit&&e.push("set cursor_close_on_commit off"),null!==this.config.options.datefirst&&e.push(`set datefirst ${this.config.options.datefirst}`),null!==this.config.options.dateFormat&&e.push(`set dateformat ${this.config.options.dateFormat}`),!0===this.config.options.enableImplicitTransactions?e.push("set implicit_transactions on"):!1===this.config.options.enableImplicitTransactions&&e.push("set implicit_transactions off"),null!==this.config.options.language&&e.push(`set language ${this.config.options.language}`),!0===this.config.options.enableNumericRoundabort?e.push("set numeric_roundabort on"):!1===this.config.options.enableNumericRoundabort&&e.push("set numeric_roundabort off"),!0===this.config.options.enableQuotedIdentifier?e.push("set quoted_identifier on"):!1===this.config.options.enableQuotedIdentifier&&e.push("set quoted_identifier off"),null!==this.config.options.textsize&&e.push(`set textsize ${this.config.options.textsize}`),null!==this.config.options.connectionIsolationLevel&&e.push(`set transaction isolation level ${this.getIsolationLevelText(this.config.options.connectionIsolationLevel)}`),!0===this.config.options.abortTransactionOnError?e.push("set xact_abort on"):!1===this.config.options.abortTransactionOnError&&e.push("set xact_abort off"),e.join("\n")}processedInitialSql(){this.clearConnectTimer(),this.emit("connect")}execSqlBatch(e){this.makeRequest(e,d.TYPE.SQL_BATCH,new A.default(e.sqlTextOrProcedure,this.currentTransactionDescriptor(),this.config.options))}execSql(e){try{e.validateParameters(this.databaseCollation)}catch(t){return e.error=t,void process.nextTick((()=>{this.debug.log(t.message),e.callback(t)}))}const t=[];t.push({type:D.TYPES.NVarChar,name:"statement",value:e.sqlTextOrProcedure,output:!1,length:void 0,precision:void 0,scale:void 0}),e.parameters.length&&(t.push({type:D.TYPES.NVarChar,name:"params",value:e.makeParamsParameter(e.parameters),output:!1,length:void 0,precision:void 0,scale:void 0}),t.push(...e.parameters)),this.makeRequest(e,d.TYPE.RPC_REQUEST,new y.default("sp_executesql",t,this.currentTransactionDescriptor(),this.config.options,this.databaseCollation))}newBulkLoad(e,t,n){let r;if(void 0===n?(n=t,r={}):r=t,"object"!=typeof r)throw new TypeError('"options" argument must be an object');return new c.default(e,this.databaseCollation,this.config.options,r,n)}execBulkLoad(e,t){if(e.executionStarted=!0,t){if(e.streamingMode)throw new Error("Connection.execBulkLoad can't be called with a BulkLoad that was put in streaming mode.");if(e.firstRowWritten)throw new Error("Connection.execBulkLoad can't be called with a BulkLoad that already has rows written to it.");const n=a.Readable.from(t);n.on("error",(t=>{e.rowToPacketTransform.destroy(t)})),e.rowToPacketTransform.on("error",(e=>{n.destroy(e)})),n.pipe(e.rowToPacketTransform)}else e.streamingMode||e.rowToPacketTransform.end();const n=()=>{o.cancel()},r=new L.BulkLoadPayload(e),o=new g.default(e.getBulkInsertSql(),(t=>{if(e.removeListener("cancel",n),t)return"UNKNOWN"===t.code&&(t.message+=" This is likely because the schema of the BulkLoad does not match the schema of the table you are attempting to insert into."),e.error=t,void e.callback(t);this.makeRequest(e,d.TYPE.BULK_LOAD,r)}));e.once("cancel",n),this.execSqlBatch(o)}prepare(e){const t=[];t.push({type:D.TYPES.Int,name:"handle",value:void 0,output:!0,length:void 0,precision:void 0,scale:void 0}),t.push({type:D.TYPES.NVarChar,name:"params",value:e.parameters.length?e.makeParamsParameter(e.parameters):null,output:!1,length:void 0,precision:void 0,scale:void 0}),t.push({type:D.TYPES.NVarChar,name:"stmt",value:e.sqlTextOrProcedure,output:!1,length:void 0,precision:void 0,scale:void 0}),e.preparing=!0,e.on("returnValue",((t,n)=>{"handle"===t?e.handle=n:e.error=new w.RequestError(`Tedious > Unexpected output parameter ${t} from sp_prepare`)})),this.makeRequest(e,d.TYPE.RPC_REQUEST,new y.default("sp_prepare",t,this.currentTransactionDescriptor(),this.config.options,this.databaseCollation))}unprepare(e){const t=[];t.push({type:D.TYPES.Int,name:"handle",value:e.handle,output:!1,length:void 0,precision:void 0,scale:void 0}),this.makeRequest(e,d.TYPE.RPC_REQUEST,new y.default("sp_unprepare",t,this.currentTransactionDescriptor(),this.config.options,this.databaseCollation))}execute(e,t){const n=[];n.push({type:D.TYPES.Int,name:"handle",value:e.handle,output:!1,length:void 0,precision:void 0,scale:void 0});try{for(let r=0,o=e.parameters.length;r{this.debug.log(t.message),e.callback(t)}))}this.makeRequest(e,d.TYPE.RPC_REQUEST,new y.default("sp_execute",n,this.currentTransactionDescriptor(),this.config.options,this.databaseCollation))}callProcedure(e){try{e.validateParameters(this.databaseCollation)}catch(t){return e.error=t,void process.nextTick((()=>{this.debug.log(t.message),e.callback(t)}))}this.makeRequest(e,d.TYPE.RPC_REQUEST,new y.default(e.sqlTextOrProcedure,e.parameters,this.currentTransactionDescriptor(),this.config.options,this.databaseCollation))}beginTransaction(e,t="",n=this.config.options.isolationLevel){(0,T.assertValidIsolationLevel)(n,"isolationLevel");const r=new T.Transaction(t,n);if(this.config.options.tdsVersion<"7_2")return this.execSqlBatch(new g.default("SET TRANSACTION ISOLATION LEVEL "+r.isolationLevelToTSQL()+";BEGIN TRAN "+r.name,(t=>{this.transactionDepth++,1===this.transactionDepth&&(this.inTransaction=!0),e(t)})));const o=new g.default(void 0,(t=>e(t,this.currentTransactionDescriptor())));return this.makeRequest(o,d.TYPE.TRANSACTION_MANAGER,r.beginPayload(this.currentTransactionDescriptor()))}commitTransaction(e,t=""){const n=new T.Transaction(t);if(this.config.options.tdsVersion<"7_2")return this.execSqlBatch(new g.default("COMMIT TRAN "+n.name,(t=>{this.transactionDepth--,0===this.transactionDepth&&(this.inTransaction=!1),e(t)})));const r=new g.default(void 0,e);return this.makeRequest(r,d.TYPE.TRANSACTION_MANAGER,n.commitPayload(this.currentTransactionDescriptor()))}rollbackTransaction(e,t=""){const n=new T.Transaction(t);if(this.config.options.tdsVersion<"7_2")return this.execSqlBatch(new g.default("ROLLBACK TRAN "+n.name,(t=>{this.transactionDepth--,0===this.transactionDepth&&(this.inTransaction=!1),e(t)})));const r=new g.default(void 0,e);return this.makeRequest(r,d.TYPE.TRANSACTION_MANAGER,n.rollbackPayload(this.currentTransactionDescriptor()))}saveTransaction(e,t){const n=new T.Transaction(t);if(this.config.options.tdsVersion<"7_2")return this.execSqlBatch(new g.default("SAVE TRAN "+n.name,(t=>{this.transactionDepth++,e(t)})));const r=new g.default(void 0,e);return this.makeRequest(r,d.TYPE.TRANSACTION_MANAGER,n.savePayload(this.currentTransactionDescriptor()))}transaction(e,t){if("function"!=typeof e)throw new TypeError("`cb` must be a function");const n=this.inTransaction,o="_tedious_"+r.default.randomBytes(10).toString("hex"),i=(e,t,...r)=>{e?this.inTransaction&&this.state===this.STATE.LOGGED_IN?this.rollbackTransaction((n=>{t(n||e,...r)}),o):t(e,...r):n?(this.config.options.tdsVersion<"7_2"&&this.transactionDepth--,t(null,...r)):this.commitTransaction((e=>{t(e,...r)}),o)};return n?this.saveTransaction((n=>n?e(n):t?this.execSqlBatch(new g.default("SET transaction isolation level "+this.getIsolationLevelText(t),(t=>e(t,i)))):e(null,i)),o):this.beginTransaction((t=>t?e(t):e(null,i)),o,t)}makeRequest(e,t,n){if(this.state!==this.STATE.LOGGED_IN){const t="Requests can only be made in the "+this.STATE.LOGGED_IN.name+" state, not the "+this.state.name+" state";this.debug.log(t),e.callback(new w.RequestError(t,"EINVALIDSTATE"))}else if(e.canceled)process.nextTick((()=>{e.callback(new w.RequestError("Canceled.","ECANCEL"))}));else{t===d.TYPE.SQL_BATCH?this.isSqlBatch=!0:this.isSqlBatch=!1,this.request=e,e.connection=this,e.rowCount=0,e.rows=[],e.rst=[];const r=()=>{i.unpipe(o),i.destroy(new w.RequestError("Canceled.","ECANCEL")),o.ignore=!0,o.end(),e instanceof g.default&&e.paused&&e.resume()};e.once("cancel",r),this.createRequestTimer();const o=new I.default({type:t,resetConnection:this.resetConnectionOnNextRequest});this.messageIo.outgoingMessageStream.write(o),this.transitionTo(this.STATE.SENT_CLIENT_REQUEST),o.once("finish",(()=>{e.removeListener("cancel",r),e.once("cancel",this._cancelAfterRequestSent),this.resetConnectionOnNextRequest=!1,this.debug.payload((function(){return n.toString(" ")}))}));const i=a.Readable.from(n);i.once("error",(t=>{i.unpipe(o),e.error??(e.error=t),o.ignore=!0,o.end()})),i.pipe(o)}}cancel(){return!!this.request&&!this.request.canceled&&(this.request.cancel(),!0)}reset(e){const t=new g.default(this.getInitialSql(),(t=>{this.config.options.tdsVersion<"7_2"&&(this.inTransaction=!1),e(t)}));this.resetConnectionOnNextRequest=!0,this.execSqlBatch(t)}currentTransactionDescriptor(){return this.transactionDescriptors[this.transactionDescriptors.length-1]}getIsolationLevelText(e){switch(e){case T.ISOLATION_LEVEL.READ_UNCOMMITTED:return"read uncommitted";case T.ISOLATION_LEVEL.REPEATABLE_READ:return"repeatable read";case T.ISOLATION_LEVEL.SERIALIZABLE:return"serializable";case T.ISOLATION_LEVEL.SNAPSHOT:return"snapshot";default:return"read committed"}}}function k(e){return e instanceof M.default&&(e=e.errors[0]),e instanceof w.ConnectionError&&!!e.isTransient}var j=U;t.default=j,e.exports=U,U.prototype.STATE={INITIALIZED:{name:"Initialized",events:{}},CONNECTING:{name:"Connecting",enter:function(){this.initialiseConnection()},events:{socketError:function(){this.transitionTo(this.STATE.FINAL)},connectTimeout:function(){this.transitionTo(this.STATE.FINAL)}}},SENT_PRELOGIN:{name:"SentPrelogin",enter:function(){(async()=>{let e,t=Buffer.alloc(0);try{e=await this.messageIo.readMessage()}catch(e){return this.socketError(e)}for await(const n of e)t=Buffer.concat([t,n]);const n=new E.default(t);if(this.debug.payload((function(){return n.toString(" ")})),1===n.fedAuthRequired&&(this.fedAuthRequired=!0),"ON"===n.encryptionString||"REQ"===n.encryptionString){if(!this.config.options.encrypt)return this.emit("connect",new w.ConnectionError("Server requires encryption, set 'encrypt' config option to true.","EENCRYPT")),this.close();try{var r;this.transitionTo(this.STATE.SENT_TLSSSLNEGOTIATION),await this.messageIo.startTls(this.secureContextOptions,(null===(r=this.routingData)||void 0===r?void 0:r.server)??this.config.server,this.config.options.trustServerCertificate)}catch(e){return this.socketError(e)}}this.sendLogin7Packet();const{authentication:o}=this.config;switch(o.type){case"azure-active-directory-password":case"azure-active-directory-msi-vm":case"azure-active-directory-msi-app-service":case"azure-active-directory-service-principal-secret":case"azure-active-directory-default":this.transitionTo(this.STATE.SENT_LOGIN7_WITH_FEDAUTH);break;case"ntlm":this.transitionTo(this.STATE.SENT_LOGIN7_WITH_NTLM);break;default:this.transitionTo(this.STATE.SENT_LOGIN7_WITH_STANDARD_LOGIN)}})().catch((e=>{process.nextTick((()=>{throw e}))}))},events:{socketError:function(){this.transitionTo(this.STATE.FINAL)},connectTimeout:function(){this.transitionTo(this.STATE.FINAL)}}},REROUTING:{name:"ReRouting",enter:function(){this.cleanupConnection(1)},events:{message:function(){},socketError:function(){this.transitionTo(this.STATE.FINAL)},connectTimeout:function(){this.transitionTo(this.STATE.FINAL)},reconnect:function(){this.transitionTo(this.STATE.CONNECTING)}}},TRANSIENT_FAILURE_RETRY:{name:"TRANSIENT_FAILURE_RETRY",enter:function(){this.curTransientRetryCount++,this.cleanupConnection(2)},events:{message:function(){},socketError:function(){this.transitionTo(this.STATE.FINAL)},connectTimeout:function(){this.transitionTo(this.STATE.FINAL)},retry:function(){this.createRetryTimer()}}},SENT_TLSSSLNEGOTIATION:{name:"SentTLSSSLNegotiation",events:{socketError:function(){this.transitionTo(this.STATE.FINAL)},connectTimeout:function(){this.transitionTo(this.STATE.FINAL)}}},SENT_LOGIN7_WITH_STANDARD_LOGIN:{name:"SentLogin7WithStandardLogin",enter:function(){(async()=>{let e;try{e=await this.messageIo.readMessage()}catch(e){return this.socketError(e)}const t=new P.Login7TokenHandler(this),n=this.createTokenStreamParser(e,t);await(0,h.once)(n,"end"),t.loginAckReceived?t.routingData?(this.routingData=t.routingData,this.transitionTo(this.STATE.REROUTING)):this.transitionTo(this.STATE.LOGGED_IN_SENDING_INITIAL_SQL):this.loginError?k(this.loginError)?(this.debug.log("Initiating retry on transient error"),this.transitionTo(this.STATE.TRANSIENT_FAILURE_RETRY)):(this.emit("connect",this.loginError),this.transitionTo(this.STATE.FINAL)):(this.emit("connect",new w.ConnectionError("Login failed.","ELOGIN")),this.transitionTo(this.STATE.FINAL))})().catch((e=>{process.nextTick((()=>{throw e}))}))},events:{socketError:function(){this.transitionTo(this.STATE.FINAL)},connectTimeout:function(){this.transitionTo(this.STATE.FINAL)}}},SENT_LOGIN7_WITH_NTLM:{name:"SentLogin7WithNTLMLogin",enter:function(){(async()=>{for(;;){let e;try{e=await this.messageIo.readMessage()}catch(e){return this.socketError(e)}const t=new P.Login7TokenHandler(this),n=this.createTokenStreamParser(e,t);if(await(0,h.once)(n,"end"),t.loginAckReceived)return t.routingData?(this.routingData=t.routingData,this.transitionTo(this.STATE.REROUTING)):this.transitionTo(this.STATE.LOGGED_IN_SENDING_INITIAL_SQL);if(!this.ntlmpacket)return this.loginError?k(this.loginError)?(this.debug.log("Initiating retry on transient error"),this.transitionTo(this.STATE.TRANSIENT_FAILURE_RETRY)):(this.emit("connect",this.loginError),this.transitionTo(this.STATE.FINAL)):(this.emit("connect",new w.ConnectionError("Login failed.","ELOGIN")),this.transitionTo(this.STATE.FINAL));{const e=this.config.authentication,t=new _.default({domain:e.options.domain,userName:e.options.userName,password:e.options.password,ntlmpacket:this.ntlmpacket});this.messageIo.sendMessage(d.TYPE.NTLMAUTH_PKT,t.data),this.debug.payload((function(){return t.toString(" ")})),this.ntlmpacket=void 0}}})().catch((e=>{process.nextTick((()=>{throw e}))}))},events:{socketError:function(){this.transitionTo(this.STATE.FINAL)},connectTimeout:function(){this.transitionTo(this.STATE.FINAL)}}},SENT_LOGIN7_WITH_FEDAUTH:{name:"SentLogin7Withfedauth",enter:function(){(async()=>{let e;try{e=await this.messageIo.readMessage()}catch(e){return this.socketError(e)}const t=new P.Login7TokenHandler(this),n=this.createTokenStreamParser(e,t);if(await(0,h.once)(n,"end"),t.loginAckReceived)return void(t.routingData?(this.routingData=t.routingData,this.transitionTo(this.STATE.REROUTING)):this.transitionTo(this.STATE.LOGGED_IN_SENDING_INITIAL_SQL));const r=t.fedAuthInfoToken;if(r&&r.stsurl&&r.spn){const e=this.config.authentication,t=new B.URL("/.default",r.spn).toString();let n,o;switch(e.type){case"azure-active-directory-password":n=new u.UsernamePasswordCredential(e.options.tenantId??"common",e.options.clientId,e.options.userName,e.options.password);break;case"azure-active-directory-msi-vm":case"azure-active-directory-msi-app-service":const t=e.options.clientId?[e.options.clientId,{}]:[{}];n=new u.ManagedIdentityCredential(...t);break;case"azure-active-directory-default":const r=e.options.clientId?{managedIdentityClientId:e.options.clientId}:{};n=new u.DefaultAzureCredential(r);break;case"azure-active-directory-service-principal-secret":n=new u.ClientSecretCredential(e.options.tenantId,e.options.clientId,e.options.clientSecret)}try{o=await n.getToken(t)}catch(e){return this.loginError=new M.default([new w.ConnectionError("Security token could not be authenticated or authorized.","EFEDAUTH"),e]),this.emit("connect",this.loginError),void this.transitionTo(this.STATE.FINAL)}const i=o.token;this.sendFedAuthTokenMessage(i)}else this.loginError?k(this.loginError)?(this.debug.log("Initiating retry on transient error"),this.transitionTo(this.STATE.TRANSIENT_FAILURE_RETRY)):(this.emit("connect",this.loginError),this.transitionTo(this.STATE.FINAL)):(this.emit("connect",new w.ConnectionError("Login failed.","ELOGIN")),this.transitionTo(this.STATE.FINAL))})().catch((e=>{process.nextTick((()=>{throw e}))}))},events:{socketError:function(){this.transitionTo(this.STATE.FINAL)},connectTimeout:function(){this.transitionTo(this.STATE.FINAL)}}},LOGGED_IN_SENDING_INITIAL_SQL:{name:"LoggedInSendingInitialSql",enter:function(){(async()=>{let e;this.sendInitialSql();try{e=await this.messageIo.readMessage()}catch(e){return this.socketError(e)}const t=this.createTokenStreamParser(e,new P.InitialSqlTokenHandler(this));await(0,h.once)(t,"end"),this.transitionTo(this.STATE.LOGGED_IN),this.processedInitialSql()})().catch((e=>{process.nextTick((()=>{throw e}))}))},events:{socketError:function(){this.transitionTo(this.STATE.FINAL)},connectTimeout:function(){this.transitionTo(this.STATE.FINAL)}}},LOGGED_IN:{name:"LoggedIn",events:{socketError:function(){this.transitionTo(this.STATE.FINAL)}}},SENT_CLIENT_REQUEST:{name:"SentClientRequest",enter:function(){(async()=>{var e,t,n;let r;try{r=await this.messageIo.readMessage()}catch(e){return this.socketError(e)}this.clearRequestTimer();const o=this.createTokenStreamParser(r,new P.RequestTokenHandler(this,this.request));if(null!==(e=this.request)&&void 0!==e&&e.canceled&&this.cancelTimer)return this.transitionTo(this.STATE.SENT_ATTENTION);const i=()=>{o.resume()},s=()=>{var e;o.pause(),null===(e=this.request)||void 0===e||e.once("resume",i)};null===(t=this.request)||void 0===t||t.on("pause",s),this.request instanceof g.default&&this.request.paused&&s();const a=()=>{var e,t;o.removeListener("end",u),this.request instanceof g.default&&this.request.paused&&this.request.resume(),null===(e=this.request)||void 0===e||e.removeListener("pause",s),null===(t=this.request)||void 0===t||t.removeListener("resume",i),this.transitionTo(this.STATE.SENT_ATTENTION)},u=()=>{var e,t,n,r;null===(e=this.request)||void 0===e||e.removeListener("cancel",this._cancelAfterRequestSent),null===(t=this.request)||void 0===t||t.removeListener("cancel",a),null===(n=this.request)||void 0===n||n.removeListener("pause",s),null===(r=this.request)||void 0===r||r.removeListener("resume",i),this.transitionTo(this.STATE.LOGGED_IN);const o=this.request;this.request=void 0,this.config.options.tdsVersion<"7_2"&&o.error&&this.isSqlBatch&&(this.inTransaction=!1),o.callback(o.error,o.rowCount,o.rows)};o.once("end",u),null===(n=this.request)||void 0===n||n.once("cancel",a)})()},exit:function(e){this.clearRequestTimer()},events:{socketError:function(e){const t=this.request;this.request=void 0,this.transitionTo(this.STATE.FINAL),t.callback(e)}}},SENT_ATTENTION:{name:"SentAttention",enter:function(){(async()=>{let e;try{e=await this.messageIo.readMessage()}catch(e){return this.socketError(e)}const t=new P.AttentionTokenHandler(this,this.request),n=this.createTokenStreamParser(e,t);if(await(0,h.once)(n,"end"),t.attentionReceived){this.clearCancelTimer();const e=this.request;this.request=void 0,this.transitionTo(this.STATE.LOGGED_IN),e.error&&e.error instanceof w.RequestError&&"ETIMEOUT"===e.error.code?e.callback(e.error):e.callback(new w.RequestError("Canceled.","ECANCEL"))}})().catch((e=>{process.nextTick((()=>{throw e}))}))},events:{socketError:function(e){const t=this.request;this.request=void 0,this.transitionTo(this.STATE.FINAL),t.callback(e)}}},FINAL:{name:"Final",enter:function(){this.cleanupConnection(0)},events:{connectTimeout:function(){},message:function(){},socketError:function(){}}}}},37057:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.connectInParallel=async function(e,t,n){if(n.aborted)throw new i.default;const o=await c(e.host,t,n);return await new Promise(((t,a)=>{const u=new Array(o.length),c=[];function l(e){c.push(e),this.removeListener("error",l),this.removeListener("connect",h),this.destroy(),c.length===o.length&&(n.removeEventListener("abort",f),a(new s.default(c,"Could not connect (parallel)")))}function h(){n.removeEventListener("abort",f);for(let e=0;e{for(let e=0;e{const a=r.default.connect({...e,host:t.address,family:t.family}),u=()=>{a.removeListener("error",c),a.removeListener("connect",l),a.destroy(),s(new i.default)},c=e=>{n.removeEventListener("abort",u),a.removeListener("error",c),a.removeListener("connect",l),a.destroy(),s(e)},l=()=>{n.removeEventListener("abort",u),a.removeListener("error",c),a.removeListener("connect",l),o(a)};n.addEventListener("abort",u,{once:!0}),a.on("error",c),a.on("connect",l)}))}catch(e){if(e instanceof Error&&"AbortError"===e.name)throw e;o.push(e);continue}throw new s.default(o,"Could not connect (sequence)")},t.lookupAllAddresses=c;var r=u(n(69278)),o=function(e,t){if(e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var n=a(t);if(n&&n.has(e))return n.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if("default"!==i&&Object.prototype.hasOwnProperty.call(e,i)){var s=o?Object.getOwnPropertyDescriptor(e,i):null;s&&(s.get||s.set)?Object.defineProperty(r,i,s):r[i]=e[i]}return r.default=e,n&&n.set(e,r),r}(n(24876)),i=u(n(49181)),s=u(n(41424));function a(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(a=function(e){return e?n:t})(e)}function u(e){return e&&e.__esModule?e:{default:e}}async function c(e,t,n){if(n.aborted)throw new i.default;return r.default.isIPv6(e)?[{address:e,family:6}]:r.default.isIPv4(e)?[{address:e,family:4}]:await new Promise(((r,s)=>{const a=()=>{s(new i.default)};n.addEventListener("abort",a),t(o.toASCII(e),{all:!0},((e,t)=>{n.removeEventListener("abort",a),e?s(e):r(t)}))}))}},98597:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.typeByName=t.TYPES=t.TYPE=void 0;var r=V(n(28546)),o=V(n(75248)),i=V(n(34820)),s=V(n(58139)),a=V(n(3582)),u=V(n(33873)),c=V(n(55831)),l=V(n(12383)),h=V(n(65914)),f=V(n(94225)),p=V(n(49e3)),d=V(n(56980)),E=V(n(93666)),m=V(n(47696)),_=V(n(28242)),g=V(n(52168)),y=V(n(27143)),A=V(n(92514)),v=V(n(15918)),b=V(n(34144)),T=V(n(84836)),w=V(n(57136)),O=V(n(94871)),R=V(n(56509)),S=V(n(18846)),I=V(n(80595)),N=V(n(54150)),C=V(n(54042)),D=V(n(8055)),L=V(n(67776)),M=V(n(12685)),x=V(n(68742)),B=V(n(21846)),P=V(n(10367)),F=V(n(61370)),U=V(n(74161)),k=V(n(28688)),j=V(n(96129)),G=V(n(86591));function V(e){return e&&e.__esModule?e:{default:e}}const Y={[r.default.id]:r.default,[o.default.id]:o.default,[i.default.id]:i.default,[s.default.id]:s.default,[a.default.id]:a.default,[u.default.id]:u.default,[c.default.id]:c.default,[l.default.id]:l.default,[h.default.id]:h.default,[f.default.id]:f.default,[p.default.id]:p.default,[d.default.id]:d.default,[E.default.id]:E.default,[m.default.id]:m.default,[_.default.id]:_.default,[g.default.id]:g.default,[y.default.id]:y.default,[A.default.id]:A.default,[v.default.id]:v.default,[b.default.id]:b.default,[T.default.id]:T.default,[w.default.id]:w.default,[O.default.id]:O.default,[R.default.id]:R.default,[S.default.id]:S.default,[I.default.id]:I.default,[N.default.id]:N.default,[C.default.id]:C.default,[D.default.id]:D.default,[L.default.id]:L.default,[M.default.id]:M.default,[x.default.id]:x.default,[B.default.id]:B.default,[P.default.id]:P.default,[F.default.id]:F.default,[U.default.id]:U.default,[k.default.id]:k.default,[j.default.id]:j.default,[G.default.id]:G.default};t.TYPE=Y;const H={TinyInt:o.default,Bit:i.default,SmallInt:s.default,Int:a.default,SmallDateTime:u.default,Real:c.default,Money:l.default,DateTime:h.default,Float:f.default,Decimal:p.default,Numeric:d.default,SmallMoney:E.default,BigInt:m.default,Image:_.default,Text:g.default,UniqueIdentifier:y.default,NText:v.default,VarBinary:I.default,VarChar:N.default,Binary:C.default,Char:D.default,NVarChar:L.default,NChar:M.default,Xml:x.default,Time:B.default,Date:P.default,DateTime2:F.default,DateTimeOffset:U.default,UDT:k.default,TVP:j.default,Variant:G.default};t.TYPES=H;const Q=H;t.typeByName=Q},47696:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=i(n(92514)),o=i(n(84424));function i(e){return e&&e.__esModule?e:{default:e}}const s=Buffer.from([8]),a=Buffer.from([0]),u={id:127,type:"INT8",name:"BigInt",declaration:function(){return"bigint"},generateTypeInfo:()=>Buffer.from([r.default.id,8]),generateParameterLength:(e,t)=>null==e.value?a:s,*generateParameterData(e,t){if(null==e.value)return;const n=new o.default(8);n.writeInt64LE(Number(e.value)),yield n.data},validate:function(e){if(null==e)return null;if("number"!=typeof e&&(e=Number(e)),isNaN(e))throw new TypeError("Invalid number.");if(eNumber.MAX_SAFE_INTEGER)throw new TypeError(`Value must be between ${Number.MIN_SAFE_INTEGER} and ${Number.MAX_SAFE_INTEGER}, inclusive. For smaller or bigger numbers, use VarChar type.`);return e}};var c=u;t.default=c,e.exports=u},54042:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n=Buffer.from([255,255]),r={id:173,type:"BIGBinary",name:"Binary",maximumLength:8e3,declaration:function(e){const t=e.value;let n;return n=e.length?e.length:null!=t?t.length||1:null!==t||e.output?this.maximumLength:1,"binary("+n+")"},resolveLength:function(e){const t=e.value;return null!=t?t.length:this.maximumLength},generateTypeInfo(e){const t=Buffer.alloc(3);return t.writeUInt8(this.id,0),t.writeUInt16LE(e.length,1),t},generateParameterLength(e,t){if(null==e.value)return n;const r=Buffer.alloc(2);return r.writeUInt16LE(e.length,0),r},*generateParameterData(e,t){null!=e.value&&(yield e.value.slice(0,void 0!==e.length?Math.min(e.length,this.maximumLength):this.maximumLength))},validate:function(e){if(null==e)return null;if(!Buffer.isBuffer(e))throw new TypeError("Invalid buffer.");return e}};var o=r;t.default=o,e.exports=r},34820:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(34144))&&r.__esModule?r:{default:r};const i=Buffer.from([1]),s=Buffer.from([0]),a={id:50,type:"BIT",name:"Bit",declaration:function(){return"bit"},generateTypeInfo:()=>Buffer.from([o.default.id,1]),generateParameterLength:(e,t)=>null==e.value?s:i,*generateParameterData(e,t){null!=e.value&&(yield e.value?Buffer.from([1]):Buffer.from([0]))},validate:function(e){return null==e?null:!!e}};var u=a;t.default=u,e.exports=a},34144:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n={id:104,type:"BITN",name:"BitN",declaration(){throw new Error("not implemented")},generateTypeInfo(){throw new Error("not implemented")},generateParameterLength(){throw new Error("not implemented")},*generateParameterData(){throw new Error("not implemented")},validate(){throw new Error("not implemented")}};var r=n;t.default=r,e.exports=n},8055:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(95249))&&r.__esModule?r:{default:r};const i=Buffer.from([255,255]),s={id:175,type:"BIGCHAR",name:"Char",maximumLength:8e3,declaration:function(e){const t=e.value;let n;return n=e.length?e.length:null!=t?t.length||1:null!==t||e.output?this.maximumLength:1,n{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(87891);const o=global.Date,i=r.LocalDate.ofYearDay(1,1),s=Buffer.from([0]),a=Buffer.from([3]),u={id:40,type:"DATEN",name:"Date",declaration:function(){return"date"},generateTypeInfo:function(){return Buffer.from([this.id])},generateParameterLength:(e,t)=>null==e.value?s:a,*generateParameterData(e,t){if(null==e.value)return;const n=e.value;let o;o=t.useUTC?r.LocalDate.of(n.getUTCFullYear(),n.getUTCMonth()+1,n.getUTCDate()):r.LocalDate.of(n.getFullYear(),n.getMonth()+1,n.getDate());const s=i.until(o,r.ChronoUnit.DAYS),a=Buffer.alloc(3);a.writeUIntLE(s,0,3),yield a},validate:function(e){if(null==e)return null;if(e instanceof o||(e=new o(o.parse(e))),isNaN(e))throw new TypeError("Invalid date.");return e}};var c=u;t.default=c,e.exports=u},65914:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(18846))&&r.__esModule?r:{default:r},i=n(87891);const s=i.LocalDate.ofYearDay(1900,1),a=Buffer.from([0]),u=Buffer.from([8]),c={id:61,type:"DATETIME",name:"DateTime",declaration:function(){return"datetime"},generateTypeInfo:()=>Buffer.from([o.default.id,8]),generateParameterLength:(e,t)=>null==e.value?a:u,generateParameterData:function*(e,t){if(null==e.value)return;const n=e.value;let r;r=t.useUTC?i.LocalDate.of(n.getUTCFullYear(),n.getUTCMonth()+1,n.getUTCDate()):i.LocalDate.of(n.getFullYear(),n.getMonth()+1,n.getDate());let o,a,u=s.until(r,i.ChronoUnit.DAYS);if(t.useUTC){let e=60*n.getUTCHours()*60;e+=60*n.getUTCMinutes(),e+=n.getUTCSeconds(),o=1e3*e+n.getUTCMilliseconds()}else{let e=60*n.getHours()*60;e+=60*n.getMinutes(),e+=n.getSeconds(),o=1e3*e+n.getMilliseconds()}a=o/(3+1/3),a=Math.round(a),2592e4===a&&(u+=1,a=0);const c=Buffer.alloc(8);c.writeInt32LE(u,0),c.writeUInt32LE(a,4),yield c},validate:function(e){if(null==e)return null;if(e instanceof Date||(e=new Date(Date.parse(e))),isNaN(e))throw new TypeError("Invalid date.");return e}};var l=c;t.default=l,e.exports=c},61370:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=n(87891),i=(r=n(84424))&&r.__esModule?r:{default:r};const s=o.LocalDate.ofYearDay(1,1),a=Buffer.from([0]),u={id:42,type:"DATETIME2N",name:"DateTime2",declaration:function(e){return"datetime2("+this.resolveScale(e)+")"},resolveScale:function(e){return null!=e.scale?e.scale:null===e.value?0:7},generateTypeInfo(e,t){return Buffer.from([this.id,e.scale])},generateParameterLength(e,t){if(null==e.value)return a;switch(e.scale){case 0:case 1:case 2:return Buffer.from([6]);case 3:case 4:return Buffer.from([7]);case 5:case 6:case 7:return Buffer.from([8]);default:throw new Error("invalid scale")}},*generateParameterData(e,t){if(null==e.value)return;const n=e.value;let r=e.scale;const a=new i.default(16);let u,c;switch(u=t.useUTC?1e3*(60*(60*n.getUTCHours()+n.getUTCMinutes())+n.getUTCSeconds())+n.getUTCMilliseconds():1e3*(60*(60*n.getHours()+n.getMinutes())+n.getSeconds())+n.getMilliseconds(),u*=Math.pow(10,r-3),u+=(null!=n.nanosecondDelta?n.nanosecondDelta:0)*Math.pow(10,r),u=Math.round(u),r){case 0:case 1:case 2:a.writeUInt24LE(u);break;case 3:case 4:a.writeUInt32LE(u);break;case 5:case 6:case 7:a.writeUInt40LE(u)}c=t.useUTC?o.LocalDate.of(n.getUTCFullYear(),n.getUTCMonth()+1,n.getUTCDate()):o.LocalDate.of(n.getFullYear(),n.getMonth()+1,n.getDate());const l=s.until(c,o.ChronoUnit.DAYS);a.writeUInt24LE(l),yield a.data},validate:function(e){if(null==e)return null;if(e instanceof Date||(e=new Date(Date.parse(e))),isNaN(e))throw new TypeError("Invalid date.");return e}};var c=u;t.default=c,e.exports=u},18846:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n={id:111,type:"DATETIMN",name:"DateTimeN",declaration(){throw new Error("not implemented")},generateTypeInfo(){throw new Error("not implemented")},generateParameterLength(){throw new Error("not implemented")},generateParameterData(){throw new Error("not implemented")},validate(){throw new Error("not implemented")}};var r=n;t.default=r,e.exports=n},74161:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=n(87891),i=(r=n(84424))&&r.__esModule?r:{default:r};const s=o.LocalDate.ofYearDay(1,1),a=Buffer.from([0]),u={id:43,type:"DATETIMEOFFSETN",name:"DateTimeOffset",declaration:function(e){return"datetimeoffset("+this.resolveScale(e)+")"},resolveScale:function(e){return null!=e.scale?e.scale:null===e.value?0:7},generateTypeInfo(e){return Buffer.from([this.id,e.scale])},generateParameterLength(e,t){if(null==e.value)return a;switch(e.scale){case 0:case 1:case 2:return Buffer.from([8]);case 3:case 4:return Buffer.from([9]);case 5:case 6:case 7:return Buffer.from([10]);default:throw new Error("invalid scale")}},*generateParameterData(e,t){if(null==e.value)return;const n=e.value;let r=e.scale;const a=new i.default(16);let u;switch(u=1e3*(60*(60*n.getUTCHours()+n.getUTCMinutes())+n.getUTCSeconds())+n.getMilliseconds(),u*=Math.pow(10,r-3),u+=(null!=n.nanosecondDelta?n.nanosecondDelta:0)*Math.pow(10,r),u=Math.round(u),r){case 0:case 1:case 2:a.writeUInt24LE(u);break;case 3:case 4:a.writeUInt32LE(u);break;case 5:case 6:case 7:a.writeUInt40LE(u)}const c=o.LocalDate.of(n.getUTCFullYear(),n.getUTCMonth()+1,n.getUTCDate()),l=s.until(c,o.ChronoUnit.DAYS);a.writeUInt24LE(l);const h=-n.getTimezoneOffset();a.writeInt16LE(h),yield a.data},validate:function(e){if(null==e)return null;if(e instanceof Date||(e=new Date(Date.parse(e))),isNaN(e))throw new TypeError("Invalid date.");return e}};var c=u;t.default=c,e.exports=u},49e3:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=i(n(84836)),o=i(n(84424));function i(e){return e&&e.__esModule?e:{default:e}}const s=Buffer.from([0]),a={id:55,type:"DECIMAL",name:"Decimal",declaration:function(e){return"decimal("+this.resolvePrecision(e)+", "+this.resolveScale(e)+")"},resolvePrecision:function(e){return null!=e.precision?e.precision:null===e.value?1:18},resolveScale:function(e){return null!=e.scale?e.scale:0},generateTypeInfo(e,t){let n;return n=e.precision<=9?5:e.precision<=19?9:e.precision<=28?13:17,Buffer.from([r.default.id,n,e.precision,e.scale])},generateParameterLength(e,t){if(null==e.value)return s;const n=e.precision;return n<=9?Buffer.from([5]):n<=19?Buffer.from([9]):n<=28?Buffer.from([13]):Buffer.from([17])},*generateParameterData(e,t){if(null==e.value)return;const n=e.value<0?0:1,r=Math.round(Math.abs(e.value*Math.pow(10,e.scale))),i=e.precision;if(i<=9){const e=Buffer.alloc(5);e.writeUInt8(n,0),e.writeUInt32LE(r,1),yield e}else if(i<=19){const e=new o.default(9);e.writeUInt8(n),e.writeUInt64LE(r),yield e.data}else if(i<=28){const e=new o.default(13);e.writeUInt8(n),e.writeUInt64LE(r),e.writeUInt32LE(0),yield e.data}else{const e=new o.default(17);e.writeUInt8(n),e.writeUInt64LE(r),e.writeUInt32LE(0),e.writeUInt32LE(0),yield e.data}},validate:function(e){if(null==e)return null;if(e=parseFloat(e),isNaN(e))throw new TypeError("Invalid number.");return e}};var u=a;t.default=u,e.exports=a},84836:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n={id:106,type:"DECIMALN",name:"DecimalN",declaration(){throw new Error("not implemented")},generateTypeInfo(){throw new Error("not implemented")},generateParameterLength(){throw new Error("not implemented")},generateParameterData(){throw new Error("not implemented")},validate(){throw new Error("not implemented")}};var r=n;t.default=r,e.exports=n},94225:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(94871))&&r.__esModule?r:{default:r};const i=Buffer.from([0]),s={id:62,type:"FLT8",name:"Float",declaration:function(){return"float"},generateTypeInfo:()=>Buffer.from([o.default.id,8]),generateParameterLength:(e,t)=>null==e.value?i:Buffer.from([8]),*generateParameterData(e,t){if(null==e.value)return;const n=Buffer.alloc(8);n.writeDoubleLE(parseFloat(e.value),0),yield n},validate:function(e){if(null==e)return null;if(e=parseFloat(e),isNaN(e))throw new TypeError("Invalid number.");return e}};var a=s;t.default=a,e.exports=s},94871:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n={id:109,type:"FLTN",name:"FloatN",declaration(){throw new Error("not implemented")},generateTypeInfo(){throw new Error("not implemented")},generateParameterLength(){throw new Error("not implemented")},generateParameterData(){throw new Error("not implemented")},validate(){throw new Error("not implemented")}};var r=n;t.default=r,e.exports=n},28242:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n=Buffer.from([255,255,255,255]),r={id:34,type:"IMAGE",name:"Image",hasTableName:!0,declaration:function(){return"image"},resolveLength:function(e){return null!=e.value?e.value.length:-1},generateTypeInfo(e){const t=Buffer.alloc(5);return t.writeUInt8(this.id,0),t.writeInt32LE(e.length,1),t},generateParameterLength(e,t){if(null==e.value)return n;const r=Buffer.alloc(4);return r.writeInt32LE(e.value.length,0),r},*generateParameterData(e,t){null!=e.value&&(yield e.value)},validate:function(e){if(null==e)return null;if(!Buffer.isBuffer(e))throw new TypeError("Invalid buffer.");return e}};var o=r;t.default=o,e.exports=r},3582:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(92514))&&r.__esModule?r:{default:r};const i=Buffer.from([0]),s=Buffer.from([4]),a={id:56,type:"INT4",name:"Int",declaration:function(){return"int"},generateTypeInfo:()=>Buffer.from([o.default.id,4]),generateParameterLength:(e,t)=>null==e.value?i:s,*generateParameterData(e,t){if(null==e.value)return;const n=Buffer.alloc(4);n.writeInt32LE(Number(e.value),0),yield n},validate:function(e){if(null==e)return null;if("number"!=typeof e&&(e=Number(e)),isNaN(e))throw new TypeError("Invalid number.");if(e<-2147483648||e>2147483647)throw new TypeError("Value must be between -2147483648 and 2147483647, inclusive.");return 0|e}};var u=a;t.default=u,e.exports=a},92514:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n={id:38,type:"INTN",name:"IntN",declaration(){throw new Error("not implemented")},generateTypeInfo(){throw new Error("not implemented")},generateParameterLength(){throw new Error("not implemented")},generateParameterData(){throw new Error("not implemented")},validate(){throw new Error("not implemented")}};var r=n;t.default=r,e.exports=n},12383:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(56509))&&r.__esModule?r:{default:r};const i=1/4294967296,s=Buffer.from([0]),a=Buffer.from([8]),u={id:60,type:"MONEY",name:"Money",declaration:function(){return"money"},generateTypeInfo:function(){return Buffer.from([o.default.id,8])},generateParameterLength:(e,t)=>null==e.value?s:a,*generateParameterData(e,t){if(null==e.value)return;const n=1e4*e.value,r=Buffer.alloc(8);r.writeInt32LE(Math.floor(n*i),0),r.writeInt32LE(-1&n,4),yield r},validate:function(e){if(null==e)return null;if(e=parseFloat(e),isNaN(e))throw new TypeError("Invalid number.");return e}};var c=u;t.default=c,e.exports=u},56509:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n={id:110,type:"MONEYN",name:"MoneyN",declaration(){throw new Error("not implemented")},generateTypeInfo(){throw new Error("not implemented")},generateParameterLength(){throw new Error("not implemented")},generateParameterData(){throw new Error("not implemented")},validate(){throw new Error("not implemented")}};var r=n;t.default=r,e.exports=n},12685:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n=Buffer.from([255,255]),r={id:239,type:"NCHAR",name:"NChar",maximumLength:4e3,declaration:function(e){const t=e.value;let n;return n=e.length?e.length:null!=e.value?t.toString().length||1:null!==e.value||e.output?this.maximumLength:1,n{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n=Buffer.from([255,255,255,255]),r={id:99,type:"NTEXT",name:"NText",hasTableName:!0,declaration:function(){return"ntext"},resolveLength:function(e){const t=e.value;return null!=t?t.length:-1},generateTypeInfo(e,t){const n=Buffer.alloc(10);return n.writeUInt8(this.id,0),n.writeInt32LE(e.length,1),e.collation&&e.collation.toBuffer().copy(n,5,0,5),n},generateParameterLength(e,t){if(null==e.value)return n;const r=Buffer.alloc(4);return r.writeInt32LE(Buffer.byteLength(e.value,"ucs2"),0),r},generateParameterData:function*(e,t){null!=e.value&&(yield Buffer.from(e.value.toString(),"ucs2"))},validate:function(e){if(null==e)return null;if("string"!=typeof e)throw new TypeError("Invalid string.");return e}};var o=r;t.default=o,e.exports=r},28546:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n={id:31,type:"NULL",name:"Null",declaration(){throw new Error("not implemented")},generateTypeInfo(){throw new Error("not implemented")},generateParameterLength(){throw new Error("not implemented")},generateParameterData(){throw new Error("not implemented")},validate(){throw new Error("not implemented")}};var r=n;t.default=r,e.exports=n},56980:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=i(n(57136)),o=i(n(84424));function i(e){return e&&e.__esModule?e:{default:e}}const s=Buffer.from([0]),a={id:63,type:"NUMERIC",name:"Numeric",declaration:function(e){return"numeric("+this.resolvePrecision(e)+", "+this.resolveScale(e)+")"},resolvePrecision:function(e){return null!=e.precision?e.precision:null===e.value?1:18},resolveScale:function(e){return null!=e.scale?e.scale:0},generateTypeInfo(e){let t;return t=e.precision<=9?5:e.precision<=19?9:e.precision<=28?13:17,Buffer.from([r.default.id,t,e.precision,e.scale])},generateParameterLength(e,t){if(null==e.value)return s;const n=e.precision;return n<=9?Buffer.from([5]):n<=19?Buffer.from([9]):n<=28?Buffer.from([13]):Buffer.from([17])},*generateParameterData(e,t){if(null==e.value)return;const n=e.value<0?0:1,r=Math.round(Math.abs(e.value*Math.pow(10,e.scale)));if(e.precision<=9){const e=Buffer.alloc(5);e.writeUInt8(n,0),e.writeUInt32LE(r,1),yield e}else if(e.precision<=19){const e=new o.default(10);e.writeUInt8(n),e.writeUInt64LE(r),yield e.data}else if(e.precision<=28){const e=new o.default(14);e.writeUInt8(n),e.writeUInt64LE(r),e.writeUInt32LE(0),yield e.data}else{const e=new o.default(18);e.writeUInt8(n),e.writeUInt64LE(r),e.writeUInt32LE(0),e.writeUInt32LE(0),yield e.data}},validate:function(e){if(null==e)return null;if(e=parseFloat(e),isNaN(e))throw new TypeError("Invalid number.");return e}};var u=a;t.default=u,e.exports=a},57136:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n={id:108,type:"NUMERICN",name:"NumericN",declaration(){throw new Error("not implemented")},generateTypeInfo(){throw new Error("not implemented")},generateParameterLength(){throw new Error("not implemented")},generateParameterData(){throw new Error("not implemented")},validate(){throw new Error("not implemented")}};var r=n;t.default=r,e.exports=n},67776:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n=Buffer.from([254,255,255,255,255,255,255,255]),r=Buffer.from([0,0,0,0]),o=Buffer.from([255,255]),i=Buffer.from([255,255,255,255,255,255,255,255]),s={id:231,type:"NVARCHAR",name:"NVarChar",maximumLength:4e3,declaration:function(e){const t=e.value;let n;return n=e.length?e.length:null!=t?t.toString().length||1:null!==t||e.output?this.maximumLength:1,n<=this.maximumLength?"nvarchar("+n+")":"nvarchar(max)"},resolveLength:function(e){const t=e.value;return null!=e.length?e.length:null!=t?Buffer.isBuffer(t)?t.length/2||1:t.toString().length||1:this.maximumLength},generateTypeInfo(e){const t=Buffer.alloc(8);return t.writeUInt8(this.id,0),e.length<=this.maximumLength?t.writeUInt16LE(2*e.length,1):t.writeUInt16LE(65535,1),e.collation&&e.collation.toBuffer().copy(t,3,0,5),t},generateParameterLength(e,t){if(null==e.value)return e.length<=this.maximumLength?o:i;let r=e.value;if(e.length<=this.maximumLength){let e;r instanceof Buffer?e=r.length:(r=r.toString(),e=Buffer.byteLength(r,"ucs2"));const t=Buffer.alloc(2);return t.writeUInt16LE(e,0),t}return n},*generateParameterData(e,t){if(null==e.value)return;let n=e.value;if(e.length<=this.maximumLength)n instanceof Buffer?yield n:(n=n.toString(),yield Buffer.from(n,"ucs2"));else{if(n instanceof Buffer){const e=n.length;if(e>0){const t=Buffer.alloc(4);t.writeUInt32LE(e,0),yield t,yield n}}else{n=n.toString();const e=Buffer.byteLength(n,"ucs2");if(e>0){const t=Buffer.alloc(4);t.writeUInt32LE(e,0),yield t,yield Buffer.from(n,"ucs2")}}yield r}},validate:function(e){if(null==e)return null;if("string"!=typeof e)throw new TypeError("Invalid string.");return e}};var a=s;t.default=a,e.exports=s},55831:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(94871))&&r.__esModule?r:{default:r};const i=Buffer.from([0]),s=Buffer.from([4]),a={id:59,type:"FLT4",name:"Real",declaration:function(){return"real"},generateTypeInfo:()=>Buffer.from([o.default.id,4]),generateParameterLength:(e,t)=>null==e.value?i:s,*generateParameterData(e,t){if(null==e.value)return;const n=Buffer.alloc(4);n.writeFloatLE(parseFloat(e.value),0),yield n},validate:function(e){if(null==e)return null;if(e=parseFloat(e),isNaN(e))throw new TypeError("Invalid number.");return e}};var u=a;t.default=u,e.exports=a},33873:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(18846))&&r.__esModule?r:{default:r};const i=new Date(1900,0,1),s=new Date(Date.UTC(1900,0,1)),a=Buffer.from([4]),u=Buffer.from([0]),c={id:58,type:"DATETIM4",name:"SmallDateTime",declaration:function(){return"smalldatetime"},generateTypeInfo:()=>Buffer.from([o.default.id,4]),generateParameterLength:(e,t)=>null==e.value?u:a,generateParameterData:function*(e,t){if(null==e.value)return;const n=Buffer.alloc(4);let r,o,a;t.useUTC?(r=Math.floor((e.value.getTime()-s.getTime())/864e5),a=60*e.value.getUTCHours()+e.value.getUTCMinutes()):(o=60*-(e.value.getTimezoneOffset()-i.getTimezoneOffset())*1e3,r=Math.floor((e.value.getTime()-i.getTime()+o)/864e5),a=60*e.value.getHours()+e.value.getMinutes()),n.writeUInt16LE(r,0),n.writeUInt16LE(a,2),yield n},validate:function(e){if(null==e)return null;if(e instanceof Date||(e=new Date(Date.parse(e))),isNaN(e))throw new TypeError("Invalid date.");return e}};var l=c;t.default=l,e.exports=c},58139:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(92514))&&r.__esModule?r:{default:r};const i=Buffer.from([2]),s=Buffer.from([0]),a={id:52,type:"INT2",name:"SmallInt",declaration:function(){return"smallint"},generateTypeInfo:()=>Buffer.from([o.default.id,2]),generateParameterLength:(e,t)=>null==e.value?s:i,*generateParameterData(e,t){if(null==e.value)return;const n=Buffer.alloc(2);n.writeInt16LE(Number(e.value),0),yield n},validate:function(e){if(null==e)return null;if("number"!=typeof e&&(e=Number(e)),isNaN(e))throw new TypeError("Invalid number.");if(e<-32768||e>32767)throw new TypeError("Value must be between -32768 and 32767, inclusive.");return 0|e}};var u=a;t.default=u,e.exports=a},93666:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(56509))&&r.__esModule?r:{default:r};const i=Buffer.from([4]),s=Buffer.from([0]),a={id:122,type:"MONEY4",name:"SmallMoney",declaration:function(){return"smallmoney"},generateTypeInfo:function(){return Buffer.from([o.default.id,4])},generateParameterLength:(e,t)=>null==e.value?s:i,*generateParameterData(e,t){if(null==e.value)return;const n=Buffer.alloc(4);n.writeInt32LE(1e4*e.value,0),yield n},validate:function(e){if(null==e)return null;if(e=parseFloat(e),isNaN(e))throw new TypeError("Invalid number.");if(e<-214748.3648||e>214748.3647)throw new TypeError("Value must be between -214748.3648 and 214748.3647.");return e}};var u=a;t.default=u,e.exports=a},86591:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n={id:98,type:"SSVARIANTTYPE",name:"Variant",declaration:function(){return"sql_variant"},generateTypeInfo(){throw new Error("not implemented")},generateParameterLength(){throw new Error("not implemented")},generateParameterData(){throw new Error("not implemented")},validate(){throw new Error("not implemented")}};var r=n;t.default=r,e.exports=n},52168:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(95249))&&r.__esModule?r:{default:r};const i=Buffer.from([255,255,255,255]),s={id:35,type:"TEXT",name:"Text",hasTableName:!0,declaration:function(){return"text"},resolveLength:function(e){const t=e.value;return null!=t?t.length:-1},generateTypeInfo(e,t){const n=Buffer.alloc(10);return n.writeUInt8(this.id,0),n.writeInt32LE(e.length,1),e.collation&&e.collation.toBuffer().copy(n,5,0,5),n},generateParameterLength(e,t){const n=e.value;if(null==n)return i;const r=Buffer.alloc(4);return r.writeInt32LE(n.length,0),r},generateParameterData:function*(e,t){const n=e.value;null!=n&&(yield n)},validate:function(e,t){if(null==e)return null;if("string"!=typeof e)throw new TypeError("Invalid string.");if(!t)throw new Error("No collation was set by the server for the current connection.");if(!t.codepage)throw new Error("The collation set by the server has no associated encoding.");return o.default.encode(e,t.codepage)}};var a=s;t.default=a,e.exports=s},21846:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(84424))&&r.__esModule?r:{default:r};const i=Buffer.from([0]),s={id:41,type:"TIMEN",name:"Time",declaration:function(e){return"time("+this.resolveScale(e)+")"},resolveScale:function(e){return null!=e.scale?e.scale:null===e.value?0:7},generateTypeInfo(e){return Buffer.from([this.id,e.scale])},generateParameterLength(e,t){if(null==e.value)return i;switch(e.scale){case 0:case 1:case 2:return Buffer.from([3]);case 3:case 4:return Buffer.from([4]);case 5:case 6:case 7:return Buffer.from([5]);default:throw new Error("invalid scale")}},*generateParameterData(e,t){if(null==e.value)return;const n=new o.default(16),r=e.value;let i;switch(i=t.useUTC?1e3*(60*(60*r.getUTCHours()+r.getUTCMinutes())+r.getUTCSeconds())+r.getUTCMilliseconds():1e3*(60*(60*r.getHours()+r.getMinutes())+r.getSeconds())+r.getMilliseconds(),i*=Math.pow(10,e.scale-3),i+=(null!=e.value.nanosecondDelta?e.value.nanosecondDelta:0)*Math.pow(10,e.scale),i=Math.round(i),e.scale){case 0:case 1:case 2:n.writeUInt24LE(i);break;case 3:case 4:n.writeUInt32LE(i);break;case 5:case 6:case 7:n.writeUInt40LE(i)}yield n.data},validate:function(e){if(null==e)return null;if(e instanceof Date||(e=new Date(Date.parse(e))),isNaN(e))throw new TypeError("Invalid time.");return e}};var a=s;t.default=a,e.exports=s},75248:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(92514))&&r.__esModule?r:{default:r};const i=Buffer.from([1]),s=Buffer.from([0]),a={id:48,type:"INT1",name:"TinyInt",declaration:function(){return"tinyint"},generateTypeInfo:()=>Buffer.from([o.default.id,1]),generateParameterLength:(e,t)=>null==e.value?s:i,*generateParameterData(e,t){if(null==e.value)return;const n=Buffer.alloc(1);n.writeUInt8(Number(e.value),0),yield n},validate:function(e){if(null==e)return null;if("number"!=typeof e&&(e=Number(e)),isNaN(e))throw new TypeError("Invalid number.");if(e<0||e>255)throw new TypeError("Value must be between 0 and 255, inclusive.");return 0|e}};var u=a;t.default=u,e.exports=a},96129:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(84424))&&r.__esModule?r:{default:r};const i=Buffer.from([1]),s=Buffer.from([0]),a=Buffer.from([255,255]),u={id:243,type:"TVPTYPE",name:"TVP",declaration:function(e){return e.value.name+" readonly"},generateTypeInfo(e){var t,n;const r=(null===(t=e.value)||void 0===t?void 0:t.schema)??"",i=(null===(n=e.value)||void 0===n?void 0:n.name)??"",s=2+Buffer.byteLength("","ucs2")+1+Buffer.byteLength(r,"ucs2")+1+Buffer.byteLength(i,"ucs2"),a=new o.default(s,"ucs2");return a.writeUInt8(this.id),a.writeBVarchar(""),a.writeBVarchar(r),a.writeBVarchar(i),a.data},generateParameterLength(e,t){if(null==e.value)return a;const{columns:n}=e.value,r=Buffer.alloc(2);return r.writeUInt16LE(n.length,0),r},*generateParameterData(e,t){if(null==e.value)return yield s,void(yield s);const{columns:n,rows:r}=e.value;for(let e=0,t=n.length;e{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n={id:240,type:"UDTTYPE",name:"UDT",declaration(){throw new Error("not implemented")},generateTypeInfo(){throw new Error("not implemented")},generateParameterLength(){throw new Error("not implemented")},generateParameterData(){throw new Error("not implemented")},validate(){throw new Error("not implemented")}};var r=n;t.default=r,e.exports=n},27143:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(91641);const o=Buffer.from([0]),i=Buffer.from([16]),s={id:36,type:"GUIDN",name:"UniqueIdentifier",declaration:function(){return"uniqueidentifier"},resolveLength:function(){return 16},generateTypeInfo(){return Buffer.from([this.id,16])},generateParameterLength:(e,t)=>null==e.value?o:i,generateParameterData:function*(e,t){null!=e.value&&(yield Buffer.from((0,r.guidToArray)(e.value)))},validate:function(e){if(null==e)return null;if("string"!=typeof e)throw new TypeError("Invalid string.");if(!/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(e))throw new TypeError("Invalid GUID.");return e}};var a=s;t.default=a,e.exports=s},80595:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n=Buffer.from([254,255,255,255,255,255,255,255]),r=Buffer.from([0,0,0,0]),o=Buffer.from([255,255]),i=Buffer.from([255,255,255,255,255,255,255,255]),s={id:165,type:"BIGVARBIN",name:"VarBinary",maximumLength:8e3,declaration:function(e){const t=e.value;let n;return n=e.length?e.length:null!=t?t.length||1:null!==t||e.output?this.maximumLength:1,n<=this.maximumLength?"varbinary("+n+")":"varbinary(max)"},resolveLength:function(e){const t=e.value;return null!=e.length?e.length:null!=t?t.length:this.maximumLength},generateTypeInfo:function(e){const t=Buffer.alloc(3);return t.writeUInt8(this.id,0),e.length<=this.maximumLength?t.writeUInt16LE(e.length,1):t.writeUInt16LE(65535,1),t},generateParameterLength(e,t){if(null==e.value)return e.length<=this.maximumLength?o:i;let r=e.value;Buffer.isBuffer(r)||(r=r.toString());const s=Buffer.byteLength(r,"ucs2");if(e.length<=this.maximumLength){const e=Buffer.alloc(2);return e.writeUInt16LE(s,0),e}return n},*generateParameterData(e,t){if(null==e.value)return;let n=e.value;if(e.length<=this.maximumLength)Buffer.isBuffer(n)?yield n:yield Buffer.from(n.toString(),"ucs2");else{Buffer.isBuffer(n)||(n=n.toString());const e=Buffer.byteLength(n,"ucs2");if(e>0){const t=Buffer.alloc(4);t.writeUInt32LE(e,0),yield t,Buffer.isBuffer(n)?yield n:yield Buffer.from(n,"ucs2")}yield r}},validate:function(e){if(null==e)return null;if(!Buffer.isBuffer(e))throw new TypeError("Invalid buffer.");return e}};var a=s;t.default=a,e.exports=s},54150:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(95249))&&r.__esModule?r:{default:r};const i=Buffer.from([254,255,255,255,255,255,255,255]),s=Buffer.from([0,0,0,0]),a=Buffer.from([255,255]),u=Buffer.from([255,255,255,255,255,255,255,255]),c={id:167,type:"BIGVARCHR",name:"VarChar",maximumLength:8e3,declaration:function(e){const t=e.value;let n;return n=e.length?e.length:null!=t?t.length||1:null!==t||e.output?this.maximumLength:1,n<=this.maximumLength?"varchar("+n+")":"varchar(max)"},resolveLength:function(e){const t=e.value;return null!=e.length?e.length:null!=t?t.length||1:this.maximumLength},generateTypeInfo(e){const t=Buffer.alloc(8);return t.writeUInt8(this.id,0),e.length<=this.maximumLength?t.writeUInt16LE(e.length,1):t.writeUInt16LE(65535,1),e.collation&&e.collation.toBuffer().copy(t,3,0,5),t},generateParameterLength(e,t){const n=e.value;if(null==n)return e.length<=this.maximumLength?a:u;if(e.length<=this.maximumLength){const e=Buffer.alloc(2);return e.writeUInt16LE(n.length,0),e}return i},*generateParameterData(e,t){const n=e.value;if(null!=n)if(e.length<=this.maximumLength)yield n;else{if(n.length>0){const e=Buffer.alloc(4);e.writeUInt32LE(n.length,0),yield e,yield n}yield s}},validate:function(e,t){if(null==e)return null;if("string"!=typeof e)throw new TypeError("Invalid string.");if(!t)throw new Error("No collation was set by the server for the current connection.");if(!t.codepage)throw new Error("The collation set by the server has no associated encoding.");return o.default.encode(e,t.codepage)}};var l=c;t.default=l,e.exports=c},68742:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n={id:241,type:"XML",name:"Xml",declaration(){throw new Error("not implemented")},generateTypeInfo(){throw new Error("not implemented")},generateParameterLength(){throw new Error("not implemented")},generateParameterData(){throw new Error("not implemented")},validate(){throw new Error("not implemented")}};var r=n;t.default=r,e.exports=n},54213:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(24434),o=function(e,t){if(e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var n=i(t);if(n&&n.has(e))return n.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var s in e)if("default"!==s&&Object.prototype.hasOwnProperty.call(e,s)){var a=o?Object.getOwnPropertyDescriptor(e,s):null;a&&(a.get||a.set)?Object.defineProperty(r,s,a):r[s]=e[s]}return r.default=e,n&&n.set(e,r),r}(n(39023));function i(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(i=function(e){return e?n:t})(e)}class s extends r.EventEmitter{constructor({data:e=!1,payload:t=!1,packet:n=!1,token:r=!1}={}){super(),this.options=void 0,this.indent=void 0,this.options={data:e,payload:t,packet:n,token:r},this.indent=" "}packet(e,t){this.haveListeners()&&this.options.packet&&(this.log(""),this.log(e),this.log(t.headerToString(this.indent)))}data(e){this.haveListeners()&&this.options.data&&this.log(e.dataToString(this.indent))}payload(e){this.haveListeners()&&this.options.payload&&this.log(e())}token(e){this.haveListeners()&&this.options.token&&this.log(o.inspect(e,{showHidden:!1,depth:5,colors:!0}))}haveListeners(){return this.listeners("debug").length>0}log(e){this.emit("debug",e)}}var a=s;t.default=a,e.exports=s},58167:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.RequestError=t.ConnectionError=void 0;class n extends Error{constructor(e,t){super(e),this.code=void 0,this.isTransient=void 0,this.code=t}}t.ConnectionError=n;class r extends Error{constructor(e,t){super(e),this.code=void 0,this.number=void 0,this.state=void 0,this.class=void 0,this.serverName=void 0,this.procName=void 0,this.lineNumber=void 0,this.code=t}}t.RequestError=r},49181:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;class n extends Error{constructor(){super("The operation was aborted"),this.code=void 0,this.code="ABORT_ERR",this.name="AbortError"}}t.default=n},75580:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;class n extends Error{constructor(){super("The operation was aborted due to timeout"),this.code=void 0,this.code="TIMEOUT_ERR",this.name="TimeoutError"}}t.default=n},91641:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.bufferToLowerCaseGuid=function(e){return r[e[3]]+r[e[2]]+r[e[1]]+r[e[0]]+"-"+r[e[5]]+r[e[4]]+"-"+r[e[7]]+r[e[6]]+"-"+r[e[8]]+r[e[9]]+"-"+r[e[10]]+r[e[11]]+r[e[12]]+r[e[13]]+r[e[14]]+r[e[15]]},t.bufferToUpperCaseGuid=function(e){return n[e[3]]+n[e[2]]+n[e[1]]+n[e[0]]+"-"+n[e[5]]+n[e[4]]+"-"+n[e[7]]+n[e[6]]+"-"+n[e[8]]+n[e[9]]+"-"+n[e[10]]+n[e[11]]+n[e[12]]+n[e[13]]+n[e[14]]+n[e[15]]},t.guidToArray=function(e){return[o[e.charCodeAt(6)][e.charCodeAt(7)],o[e.charCodeAt(4)][e.charCodeAt(5)],o[e.charCodeAt(2)][e.charCodeAt(3)],o[e.charCodeAt(0)][e.charCodeAt(1)],o[e.charCodeAt(11)][e.charCodeAt(12)],o[e.charCodeAt(9)][e.charCodeAt(10)],o[e.charCodeAt(16)][e.charCodeAt(17)],o[e.charCodeAt(14)][e.charCodeAt(15)],o[e.charCodeAt(19)][e.charCodeAt(20)],o[e.charCodeAt(21)][e.charCodeAt(22)],o[e.charCodeAt(24)][e.charCodeAt(25)],o[e.charCodeAt(26)][e.charCodeAt(27)],o[e.charCodeAt(28)][e.charCodeAt(29)],o[e.charCodeAt(30)][e.charCodeAt(31)],o[e.charCodeAt(32)][e.charCodeAt(33)],o[e.charCodeAt(34)][e.charCodeAt(35)]]};const n=["00","01","02","03","04","05","06","07","08","09","0A","0B","0C","0D","0E","0F","10","11","12","13","14","15","16","17","18","19","1A","1B","1C","1D","1E","1F","20","21","22","23","24","25","26","27","28","29","2A","2B","2C","2D","2E","2F","30","31","32","33","34","35","36","37","38","39","3A","3B","3C","3D","3E","3F","40","41","42","43","44","45","46","47","48","49","4A","4B","4C","4D","4E","4F","50","51","52","53","54","55","56","57","58","59","5A","5B","5C","5D","5E","5F","60","61","62","63","64","65","66","67","68","69","6A","6B","6C","6D","6E","6F","70","71","72","73","74","75","76","77","78","79","7A","7B","7C","7D","7E","7F","80","81","82","83","84","85","86","87","88","89","8A","8B","8C","8D","8E","8F","90","91","92","93","94","95","96","97","98","99","9A","9B","9C","9D","9E","9F","A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","AA","AB","AC","AD","AE","AF","B0","B1","B2","B3","B4","B5","B6","B7","B8","B9","BA","BB","BC","BD","BE","BF","C0","C1","C2","C3","C4","C5","C6","C7","C8","C9","CA","CB","CC","CD","CE","CF","D0","D1","D2","D3","D4","D5","D6","D7","D8","D9","DA","DB","DC","DD","DE","DF","E0","E1","E2","E3","E4","E5","E6","E7","E8","E9","EA","EB","EC","ED","EE","EF","F0","F1","F2","F3","F4","F5","F6","F7","F8","F9","FA","FB","FC","FD","FE","FF"],r=["00","01","02","03","04","05","06","07","08","09","0a","0b","0c","0d","0e","0f","10","11","12","13","14","15","16","17","18","19","1a","1b","1c","1d","1e","1f","20","21","22","23","24","25","26","27","28","29","2a","2b","2c","2d","2e","2f","30","31","32","33","34","35","36","37","38","39","3a","3b","3c","3d","3e","3f","40","41","42","43","44","45","46","47","48","49","4a","4b","4c","4d","4e","4f","50","51","52","53","54","55","56","57","58","59","5a","5b","5c","5d","5e","5f","60","61","62","63","64","65","66","67","68","69","6a","6b","6c","6d","6e","6f","70","71","72","73","74","75","76","77","78","79","7a","7b","7c","7d","7e","7f","80","81","82","83","84","85","86","87","88","89","8a","8b","8c","8d","8e","8f","90","91","92","93","94","95","96","97","98","99","9a","9b","9c","9d","9e","9f","a0","a1","a2","a3","a4","a5","a6","a7","a8","a9","aa","ab","ac","ad","ae","af","b0","b1","b2","b3","b4","b5","b6","b7","b8","b9","ba","bb","bc","bd","be","bf","c0","c1","c2","c3","c4","c5","c6","c7","c8","c9","ca","cb","cc","cd","ce","cf","d0","d1","d2","d3","d4","d5","d6","d7","d8","d9","da","db","dc","dd","de","df","e0","e1","e2","e3","e4","e5","e6","e7","e8","e9","ea","eb","ec","ed","ee","ef","f0","f1","f2","f3","f4","f5","f6","f7","f8","f9","fa","fb","fc","fd","fe","ff"],o={},i=["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f","A","B","C","D","E","F"].map((e=>e.charCodeAt(0)));for(let e=0;e{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=u(n(10612)),o=n(2203),i=u(n(49381)),s=n(57484),a=n(58167);function u(e){return e&&e.__esModule?e:{default:e}}class c extends o.Transform{constructor(e){super({readableObjectMode:!0}),this.debug=void 0,this.bl=void 0,this.currentMessage=void 0,this.debug=e,this.currentMessage=void 0,this.bl=new r.default}pause(){return super.pause(),this.currentMessage&&this.currentMessage.pause(),this}resume(){return super.resume(),this.currentMessage&&this.currentMessage.resume(),this}processBufferedData(e){for(;this.bl.length>=s.HEADER_LENGTH;){const t=this.bl.readUInt16BE(2);if(t=t))break;{const n=this.bl.slice(0,t);this.bl.consume(t);const r=new s.Packet(n);this.debug.packet("Received",r),this.debug.data(r);let o=this.currentMessage;if(void 0===o&&(this.currentMessage=o=new i.default({type:r.type(),resetConnection:!1}),this.push(o)),r.isLast())return o.once("end",(()=>{this.currentMessage=void 0,this.processBufferedData(e)})),void o.end(r.data());if(!o.write(r.data()))return void o.once("drain",(()=>{this.processBufferedData(e)}))}}e()}_transform(e,t,n){this.bl.append(e),this.processBufferedData(n)}}var l=c;t.default=l,e.exports=c},1434:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.instanceLookup=async function(e){const t=e.server;if("string"!=typeof t)throw new TypeError('Invalid arguments: "server" must be a string');const n=e.instanceName;if("string"!=typeof n)throw new TypeError('Invalid arguments: "instanceName" must be a string');const a=void 0===e.timeout?c:e.timeout;if("number"!=typeof a)throw new TypeError('Invalid arguments: "timeout" must be a number');const p=void 0===e.retries?l:e.retries;if("number"!=typeof p)throw new TypeError('Invalid arguments: "retries" must be a number');if(void 0!==e.lookup&&"function"!=typeof e.lookup)throw new TypeError('Invalid arguments: "lookup" must be a function');const d=e.lookup??r.default.lookup;if(void 0!==e.port&&"number"!=typeof e.port)throw new TypeError('Invalid arguments: "port" must be a number');const E=e.port??u,m=e.signal;if(m.aborted)throw new o.default;let _;for(let t=0;t<=p;t++)try{_=await(0,s.withTimeout)(a,(async t=>{const n=Buffer.from([2]);return await(0,i.sendMessage)(e.server,E,d,t,n)}),m)}catch(e){if(!m.aborted&&e instanceof Error&&"TimeoutError"===e.name)continue;throw e}if(!_)throw new Error("Failed to get response from SQL Server Browser on "+t);const g=f(_.toString("ascii",h),n);if(!g)throw new Error("Port for "+n+" not found in "+e.server);return g},t.parseBrowserResponse=f;var r=a(n(72250)),o=a(n(49181)),i=n(40721),s=n(14928);function a(e){return e&&e.__esModule?e:{default:e}}const u=1434,c=2e3,l=3,h=3;function f(e,t){let n;const r=e.split(";;");for(let e=0,o=r.length;e{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.name=void 0,t.name="Tedious"},29577:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(43795),o=n(4209);class i{constructor({tdsVersion:e,packetSize:t,clientProgVer:n,clientPid:r,connectionId:o,clientTimeZone:i,clientLcid:s}){this.tdsVersion=void 0,this.packetSize=void 0,this.clientProgVer=void 0,this.clientPid=void 0,this.connectionId=void 0,this.clientTimeZone=void 0,this.clientLcid=void 0,this.readOnlyIntent=void 0,this.initDbFatal=void 0,this.userName=void 0,this.password=void 0,this.serverName=void 0,this.appName=void 0,this.hostname=void 0,this.libraryName=void 0,this.language=void 0,this.database=void 0,this.clientId=void 0,this.sspi=void 0,this.attachDbFile=void 0,this.changePassword=void 0,this.fedAuth=void 0,this.tdsVersion=e,this.packetSize=t,this.clientProgVer=n,this.clientPid=r,this.connectionId=o,this.clientTimeZone=i,this.clientLcid=s,this.readOnlyIntent=!1,this.initDbFatal=!1,this.fedAuth=void 0,this.userName=void 0,this.password=void 0,this.serverName=void 0,this.appName=void 0,this.hostname=void 0,this.libraryName=void 0,this.language=void 0,this.database=void 0,this.clientId=void 0,this.sspi=void 0,this.attachDbFile=void 0,this.changePassword=void 0}toBuffer(){const e=Buffer.alloc(94),t=[e];let n=0,r=e.length;if(n=e.writeUInt32LE(0,n),n=e.writeUInt32LE(this.tdsVersion,n),n=e.writeUInt32LE(this.packetSize,n),n=e.writeUInt32LE(this.clientProgVer,n),n=e.writeUInt32LE(this.clientPid,n),n=e.writeUInt32LE(this.connectionId,n),n=e.writeUInt8(this.buildOptionFlags1(),n),n=e.writeUInt8(this.buildOptionFlags2(),n),n=e.writeUInt8(this.buildTypeFlags(),n),n=e.writeUInt8(this.buildOptionFlags3(),n),n=e.writeInt32LE(this.clientTimeZone,n),n=e.writeUInt32LE(this.clientLcid,n),n=e.writeUInt16LE(r,n),this.hostname){const o=Buffer.from(this.hostname,"ucs2");n=e.writeUInt16LE(o.length/2,n),r+=o.length,t.push(o)}else n=e.writeUInt16LE(r,n);if(n=e.writeUInt16LE(r,n),this.userName){const o=Buffer.from(this.userName,"ucs2");n=e.writeUInt16LE(o.length/2,n),r+=o.length,t.push(o)}else n=e.writeUInt16LE(0,n);if(n=e.writeUInt16LE(r,n),this.password){const o=Buffer.from(this.password,"ucs2");n=e.writeUInt16LE(o.length/2,n),r+=o.length,t.push(this.scramblePassword(o))}else n=e.writeUInt16LE(0,n);if(n=e.writeUInt16LE(r,n),this.appName){const o=Buffer.from(this.appName,"ucs2");n=e.writeUInt16LE(o.length/2,n),r+=o.length,t.push(o)}else n=e.writeUInt16LE(0,n);if(n=e.writeUInt16LE(r,n),this.serverName){const o=Buffer.from(this.serverName,"ucs2");n=e.writeUInt16LE(o.length/2,n),r+=o.length,t.push(o)}else n=e.writeUInt16LE(0,n);n=e.writeUInt16LE(r,n);const o=this.buildFeatureExt();n=e.writeUInt16LE(4,n);const i=Buffer.alloc(4);if(i.writeUInt32LE(r+=4,0),r+=o.length,t.push(i,o),n=e.writeUInt16LE(r,n),this.libraryName){const o=Buffer.from(this.libraryName,"ucs2");n=e.writeUInt16LE(o.length/2,n),r+=o.length,t.push(o)}else n=e.writeUInt16LE(0,n);if(n=e.writeUInt16LE(r,n),this.language){const o=Buffer.from(this.language,"ucs2");n=e.writeUInt16LE(o.length/2,n),r+=o.length,t.push(o)}else n=e.writeUInt16LE(0,n);if(n=e.writeUInt16LE(r,n),this.database){const o=Buffer.from(this.database,"ucs2");n=e.writeUInt16LE(o.length/2,n),r+=o.length,t.push(o)}else n=e.writeUInt16LE(0,n);if(this.clientId&&this.clientId.copy(e,n,0,6),n+=6,n=e.writeUInt16LE(r,n),this.sspi?(n=this.sspi.length>65535?e.writeUInt16LE(65535,n):e.writeUInt16LE(this.sspi.length,n),t.push(this.sspi)):n=e.writeUInt16LE(0,n),n=e.writeUInt16LE(r,n),this.attachDbFile){const o=Buffer.from(this.attachDbFile,"ucs2");n=e.writeUInt16LE(o.length/2,n),r+=o.length,t.push(o)}else n=e.writeUInt16LE(0,n);if(n=e.writeUInt16LE(r,n),this.changePassword){const o=Buffer.from(this.changePassword,"ucs2");n=e.writeUInt16LE(o.length/2,n),r+=o.length,t.push(o)}else n=e.writeUInt16LE(0,n);this.sspi&&this.sspi.length>65535?e.writeUInt32LE(this.sspi.length,n):e.writeUInt32LE(0,n);const s=Buffer.concat(t);return s.writeUInt32LE(s.length,0),s}buildOptionFlags1(){let e=176;return this.initDbFatal?e|=64:e|=0,e}buildFeatureExt(){const e=[],t=this.fedAuth;if(t)switch(t.type){case"ADAL":const n=Buffer.alloc(7);n.writeUInt8(2,0),n.writeUInt32LE(2,1),n.writeUInt8(4|(t.echo?1:0),5),n.writeUInt8("integrated"===t.workflow?2:1,6),e.push(n);break;case"SECURITYTOKEN":const r=Buffer.from(t.fedAuthToken,"ucs2"),o=Buffer.alloc(10);let i=0;i=o.writeUInt8(2,i),i=o.writeUInt32LE(r.length+4+1,i),i=o.writeUInt8(2|(t.echo?1:0),i),o.writeInt32LE(r.length,i),e.push(o),e.push(r)}if(this.tdsVersion>=o.versions["7_4"]){const t=10,n=1,r=Buffer.alloc(6);r.writeUInt8(t,0),r.writeUInt32LE(1,1),r.writeUInt8(n,5),e.push(r)}return e.push(Buffer.from([255])),Buffer.concat(e)}buildOptionFlags2(){let e=0;return this.sspi?e|=128:e|=0,e}buildTypeFlags(){let e=0;return this.readOnlyIntent?e|=32:e|=0,e}buildOptionFlags3(){return 24}scramblePassword(e){for(let t=0,n=e.length;t>4,n^=165,e[t]=n}return e}toString(e=""){return e+"Login7 - "+(0,r.sprintf)("TDS:0x%08X, PacketSize:0x%08X, ClientProgVer:0x%08X, ClientPID:0x%08X, ConnectionID:0x%08X",this.tdsVersion,this.packetSize,this.clientProgVer,this.clientPid,this.connectionId)+"\n"+e+" "+(0,r.sprintf)("Flags1:0x%02X, Flags2:0x%02X, TypeFlags:0x%02X, Flags3:0x%02X, ClientTimezone:%d, ClientLCID:0x%08X",this.buildOptionFlags1(),this.buildOptionFlags2(),this.buildTypeFlags(),this.buildOptionFlags3(),this.clientTimeZone,this.clientLcid)+"\n"+e+" "+(0,r.sprintf)("Hostname:'%s', Username:'%s', Password:'%s', AppName:'%s', ServerName:'%s', LibraryName:'%s'",this.hostname,this.userName,this.password,this.appName,this.serverName,this.libraryName)+"\n"+e+" "+(0,r.sprintf)("Language:'%s', Database:'%s', SSPI:'%s', AttachDbFile:'%s', ChangePassword:'%s'",this.language,this.database,this.sspi,this.attachDbFile,this.changePassword)}}var s=i;t.default=s,e.exports=i},51802:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=h(n(43615)),o=function(e,t){if(e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var n=l(t);if(n&&n.has(e))return n.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if("default"!==i&&Object.prototype.hasOwnProperty.call(e,i)){var s=o?Object.getOwnPropertyDescriptor(e,i):null;s&&(s.get||s.set)?Object.defineProperty(r,i,s):r[i]=e[i]}return r.default=e,n&&n.set(e,r),r}(n(64756)),i=n(24434),s=h(n(49381)),a=n(57484),u=h(n(54091)),c=h(n(9105));function l(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(l=function(e){return e?n:t})(e)}function h(e){return e&&e.__esModule?e:{default:e}}class f extends i.EventEmitter{constructor(e,t,n){super(),this.socket=void 0,this.debug=void 0,this.tlsNegotiationComplete=void 0,this.incomingMessageStream=void 0,this.outgoingMessageStream=void 0,this.securePair=void 0,this.incomingMessageIterator=void 0,this.socket=e,this.debug=n,this.tlsNegotiationComplete=!1,this.incomingMessageStream=new u.default(this.debug),this.incomingMessageIterator=this.incomingMessageStream[Symbol.asyncIterator](),this.outgoingMessageStream=new c.default(this.debug,{packetSize:t}),this.socket.pipe(this.incomingMessageStream),this.outgoingMessageStream.pipe(this.socket)}packetSize(...e){if(e.length>0){const t=e[0];this.debug.log("Packet size changed from "+this.outgoingMessageStream.packetSize+" to "+t),this.outgoingMessageStream.packetSize=t}return this.securePair&&this.securePair.cleartext.setMaxSendFragment(this.outgoingMessageStream.packetSize),this.outgoingMessageStream.packetSize}startTls(e,t,n){e.maxVersion&&["TLSv1.2","TLSv1.1","TLSv1"].includes(e.maxVersion)||(e.maxVersion="TLSv1.2");const i=o.createSecureContext(e);return new Promise(((e,u)=>{const c=new r.default,l=this.securePair={cleartext:o.connect({socket:c.socket1,servername:t,secureContext:i,rejectUnauthorized:!n}),encrypted:c.socket2},h=()=>{l.encrypted.removeListener("readable",p),l.cleartext.removeListener("error",f),l.cleartext.removeListener("secureConnect",h),l.cleartext.once("error",(e=>{this.socket.destroy(e)}));const t=l.cleartext.getCipher();t&&this.debug.log("TLS negotiated ("+t.name+", "+t.version+")"),this.emit("secure",l.cleartext),l.cleartext.setMaxSendFragment(this.outgoingMessageStream.packetSize),this.outgoingMessageStream.unpipe(this.socket),this.socket.unpipe(this.incomingMessageStream),this.socket.pipe(l.encrypted),l.encrypted.pipe(this.socket),l.cleartext.pipe(this.incomingMessageStream),this.outgoingMessageStream.pipe(l.cleartext),this.tlsNegotiationComplete=!0,e()},f=e=>{l.encrypted.removeListener("readable",p),l.cleartext.removeListener("error",f),l.cleartext.removeListener("secureConnect",h),l.cleartext.destroy(),l.encrypted.destroy(),u(e)},p=()=>{const e=new s.default({type:a.TYPE.PRELOGIN,resetConnection:!1});let t;for(;t=l.encrypted.read();)e.write(t);this.outgoingMessageStream.write(e),e.end(),this.readMessage().then((async e=>{l.encrypted.once("readable",p);for await(const t of e)l.encrypted.write(t)})).catch(f)};l.cleartext.once("error",f),l.cleartext.once("secureConnect",h),l.encrypted.once("readable",p)}))}sendMessage(e,t,n){const r=new s.default({type:e,resetConnection:n});return r.end(t),this.outgoingMessageStream.write(r),r}async readMessage(){const e=await this.incomingMessageIterator.next();if(e.done)throw new Error("unexpected end of message stream");return e.value}}var p=f;t.default=p,e.exports=f},49381:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(2203);class o extends r.PassThrough{constructor({type:e,resetConnection:t=!1}){super(),this.type=void 0,this.resetConnection=void 0,this.ignore=void 0,this.type=e,this.resetConnection=t,this.ignore=!1}}var i=o;t.default=i,e.exports=o},12657:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,t.readCollation=s;var r=n(20553),o=n(98597),i=n(43795);function s(e,t){e.readBuffer(5,(e=>{t(r.Collation.fromBuffer(e))}))}function a(e,t,n){(t.tdsVersion<"7_2"?e.readUInt16LE:e.readUInt32LE).call(e,(t=>{e.readUInt16LE((r=>{e.readUInt8((a=>{const u=o.TYPE[a];if(!u)throw new Error((0,i.sprintf)("Unrecognised data type 0x%02X",a));switch(u.name){case"Null":case"TinyInt":case"SmallInt":case"Int":case"BigInt":case"Real":case"Float":case"SmallMoney":case"Money":case"Bit":case"SmallDateTime":case"DateTime":case"Date":return n({userType:t,flags:r,type:u,collation:void 0,precision:void 0,scale:void 0,dataLength:void 0,schema:void 0,udtInfo:void 0});case"IntN":case"FloatN":case"MoneyN":case"BitN":case"UniqueIdentifier":case"DateTimeN":return e.readUInt8((e=>{n({userType:t,flags:r,type:u,collation:void 0,precision:void 0,scale:void 0,dataLength:e,schema:void 0,udtInfo:void 0})}));case"Variant":case"Image":return e.readUInt32LE((e=>{n({userType:t,flags:r,type:u,collation:void 0,precision:void 0,scale:void 0,dataLength:e,schema:void 0,udtInfo:void 0})}));case"VarChar":case"Char":case"NVarChar":case"NChar":return e.readUInt16LE((o=>{s(e,(e=>{n({userType:t,flags:r,type:u,collation:e,precision:void 0,scale:void 0,dataLength:o,schema:void 0,udtInfo:void 0})}))}));case"Text":case"NText":return e.readUInt32LE((o=>{s(e,(e=>{n({userType:t,flags:r,type:u,collation:e,precision:void 0,scale:void 0,dataLength:o,schema:void 0,udtInfo:void 0})}))}));case"VarBinary":case"Binary":return e.readUInt16LE((e=>{n({userType:t,flags:r,type:u,collation:void 0,precision:void 0,scale:void 0,dataLength:e,schema:void 0,udtInfo:void 0})}));case"Xml":return function(e,t){e.readUInt8((n=>{1===n?e.readBVarChar((n=>{e.readBVarChar((r=>{e.readUsVarChar((e=>{t({dbname:n,owningSchema:r,xmlSchemaCollection:e})}))}))})):t(void 0)}))}(e,(e=>{n({userType:t,flags:r,type:u,collation:void 0,precision:void 0,scale:void 0,dataLength:void 0,schema:e,udtInfo:void 0})}));case"Time":case"DateTime2":case"DateTimeOffset":return e.readUInt8((e=>{n({userType:t,flags:r,type:u,collation:void 0,precision:void 0,scale:e,dataLength:void 0,schema:void 0,udtInfo:void 0})}));case"NumericN":case"DecimalN":return e.readUInt8((o=>{e.readUInt8((i=>{e.readUInt8((e=>{n({userType:t,flags:r,type:u,collation:void 0,precision:i,scale:e,dataLength:o,schema:void 0,udtInfo:void 0})}))}))}));case"UDT":return function(e,t){e.readUInt16LE((n=>{e.readBVarChar((r=>{e.readBVarChar((o=>{e.readBVarChar((i=>{e.readUsVarChar((e=>{t({maxByteSize:n,dbname:r,owningSchema:o,typeName:i,assemblyName:e})}))}))}))}))}))}(e,(e=>{n({userType:t,flags:r,type:u,collation:void 0,precision:void 0,scale:void 0,dataLength:void 0,schema:void 0,udtInfo:e})}));default:throw new Error((0,i.sprintf)("Unrecognised type %s",u.name))}}))}))}))}var u=a;t.default=u,e.exports=a,e.exports.readCollation=s},55834:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=a(n(84424)),o=function(e,t){if(e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var n=s(t);if(n&&n.has(e))return n.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if("default"!==i&&Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}return r.default=e,n&&n.set(e,r),r}(n(76982)),i=a(n(9702));function s(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(s=function(e){return e?n:t})(e)}function a(e){return e&&e.__esModule?e:{default:e}}class u{constructor(e){this.data=void 0,this.data=this.createResponse(e)}toString(e=""){return e+"NTLM Auth"}createResponse(e){const t=this.createClientNonce(),n=e.domain,o=e.userName,i=e.password,s=e.ntlmpacket,a=s.target,u=s.nonce,c=64+2*n.length+2*o.length+24+16+8+8+8+4+a.length+4,l=new r.default(c);l.position=0,l.writeString("NTLMSSP\0","utf8"),l.writeUInt32LE(3);const h=64+2*n.length,f=h+2*o.length,p=f+24;l.writeUInt16LE(24),l.writeUInt16LE(24),l.writeUInt32LE(f),l.writeUInt16LE(16),l.writeUInt16LE(16),l.writeUInt32LE(p),l.writeUInt16LE(2*n.length),l.writeUInt16LE(2*n.length),l.writeUInt32LE(64),l.writeUInt16LE(2*o.length),l.writeUInt16LE(2*o.length),l.writeUInt32LE(h),l.writeUInt16LE(0),l.writeUInt16LE(0),l.writeUInt32LE(64),l.writeUInt16LE(0),l.writeUInt16LE(0),l.writeUInt32LE(64),l.writeUInt16LE(33281),l.writeUInt16LE(8),l.writeString(n,"ucs2"),l.writeString(o,"ucs2");const d=this.lmv2Response(n,o,i,u,t);l.copyFrom(d);const E=(new Date).getTime(),m=this.ntlmv2Response(n,o,i,u,a,t,E);l.copyFrom(m),l.writeUInt32LE(257),l.writeUInt32LE(0);const _=this.createTimestamp(E);return l.copyFrom(_),l.copyFrom(t),l.writeUInt32LE(0),l.copyFrom(a),l.writeUInt32LE(0),l.data}createClientNonce(){const e=Buffer.alloc(8,0);let t=0;for(;t<8;)e.writeUInt8(Math.ceil(255*Math.random()),t),t++;return e}ntlmv2Response(e,t,n,r,o,i,s){const a=this.createTimestamp(s),u=this.ntv2Hash(e,t,n),c=40+o.length,l=Buffer.alloc(c,0);return r.copy(l,0,0,8),l.writeUInt32LE(257,8),l.writeUInt32LE(0,12),a.copy(l,16,0,8),i.copy(l,24,0,8),l.writeUInt32LE(0,32),o.copy(l,36,0,o.length),l.writeUInt32LE(0,36+o.length),this.hmacMD5(l,u)}createTimestamp(e){const t=(BigInt(e)+BigInt(11644473600))*BigInt(1e7),n=Number(t&BigInt(4294967295)),r=Number(t>>BigInt(32)&BigInt(4294967295)),o=Buffer.alloc(8);return o.writeUInt32LE(n,0),o.writeUInt32LE(r,4),o}lmv2Response(e,t,n,r,o){const i=this.ntv2Hash(e,t,n),s=Buffer.alloc(r.length+o.length,0);r.copy(s),o.copy(s,r.length,0,o.length);const a=this.hmacMD5(s,i),u=Buffer.alloc(a.length+o.length,0);return a.copy(u),o.copy(u,a.length,0,o.length),u}ntv2Hash(e,t,n){const r=this.ntHash(n),o=Buffer.from(t.toUpperCase()+e.toUpperCase(),"ucs2");return this.hmacMD5(o,r)}ntHash(e){const t=Buffer.from(e,"ucs2");return Buffer.from(i.default.arrayBuffer(t))}hmacMD5(e,t){return o.createHmac("MD5",t).update(e).digest()}}var c=u;t.default=c,e.exports=u},13761:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createNTLMRequest=function(e){const t=escape(e.domain.toUpperCase()),r=e.workstation?escape(e.workstation.toUpperCase()):"";let o=n.NTLM_NegotiateUnicode+n.NTLM_NegotiateOEM+n.NTLM_RequestTarget+n.NTLM_NegotiateNTLM+n.NTLM_NegotiateOemDomainSupplied+n.NTLM_NegotiateOemWorkstationSupplied+n.NTLM_NegotiateAlwaysSign+n.NTLM_NegotiateVersion+n.NTLM_NegotiateExtendedSecurity+n.NTLM_Negotiate128+n.NTLM_Negotiate56;""===r&&(o-=n.NTLM_NegotiateOemWorkstationSupplied);const i=Buffer.alloc(40),s=[i];let a=0;return a+=i.write("NTLMSSP",a,7,"ascii"),a=i.writeUInt8(0,a),a=i.writeUInt32LE(1,a),a=i.writeUInt32LE(o,a),a=i.writeUInt16LE(t.length,a),a=i.writeUInt16LE(t.length,a),a=i.writeUInt32LE(i.length+r.length,a),a=i.writeUInt16LE(r.length,a),a=i.writeUInt16LE(r.length,a),a=i.writeUInt32LE(i.length,a),a=i.writeUInt8(5,a),a=i.writeUInt8(0,a),a=i.writeUInt16LE(2195,a),a=i.writeUInt8(0,a),a=i.writeUInt8(0,a),a=i.writeUInt8(0,a),i.writeUInt8(15,a),s.push(Buffer.from(r,"ascii")),s.push(Buffer.from(t,"ascii")),Buffer.concat(s)};const n={NTLM_NegotiateUnicode:1,NTLM_NegotiateOEM:2,NTLM_RequestTarget:4,NTLM_Unknown9:8,NTLM_NegotiateSign:16,NTLM_NegotiateSeal:32,NTLM_NegotiateDatagram:64,NTLM_NegotiateLanManagerKey:128,NTLM_Unknown8:256,NTLM_NegotiateNTLM:512,NTLM_NegotiateNTOnly:1024,NTLM_Anonymous:2048,NTLM_NegotiateOemDomainSupplied:4096,NTLM_NegotiateOemWorkstationSupplied:8192,NTLM_Unknown6:16384,NTLM_NegotiateAlwaysSign:32768,NTLM_TargetTypeDomain:65536,NTLM_TargetTypeServer:131072,NTLM_TargetTypeShare:262144,NTLM_NegotiateExtendedSecurity:524288,NTLM_NegotiateIdentify:1048576,NTLM_Unknown5:2097152,NTLM_RequestNonNTSessionKey:4194304,NTLM_NegotiateTargetInfo:8388608,NTLM_Unknown4:16777216,NTLM_NegotiateVersion:33554432,NTLM_Unknown3:67108864,NTLM_Unknown2:134217728,NTLM_Unknown1:268435456,NTLM_Negotiate128:536870912,NTLM_NegotiateKeyExchange:1073741824,NTLM_Negotiate56:2147483648}},9105:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(10612))&&r.__esModule?r:{default:r},i=n(2203),s=n(57484);class a extends i.Duplex{constructor(e,{packetSize:t}){super({writableObjectMode:!0}),this.packetSize=void 0,this.debug=void 0,this.bl=void 0,this.currentMessage=void 0,this.packetSize=t,this.debug=e,this.bl=new o.default,this.on("finish",(()=>{this.push(null)}))}_write(e,t,n){const r=this.packetSize-s.HEADER_LENGTH;let o=0;this.currentMessage=e,this.currentMessage.on("data",(t=>{if(!e.ignore)for(this.bl.append(t);this.bl.length>r;){const t=this.bl.slice(0,r);this.bl.consume(r);const n=new s.Packet(e.type);n.packetId(o+=1),n.resetConnection(e.resetConnection),n.addData(t),this.debug.packet("Sent",n),this.debug.data(n),!1===this.push(n.buffer)&&e.pause()}})),this.currentMessage.on("end",(()=>{const t=this.bl.slice();this.bl.consume(t.length);const r=new s.Packet(e.type);r.packetId(o+=1),r.resetConnection(e.resetConnection),r.last(!0),r.ignore(e.ignore),r.addData(t),this.debug.packet("Sent",r),this.debug.data(r),this.push(r.buffer),this.currentMessage=void 0,n()}))}_read(e){this.currentMessage&&this.currentMessage.resume()}}var u=a;t.default=u,e.exports=a},57484:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TYPE=t.Packet=t.OFFSET=t.HEADER_LENGTH=void 0,t.isPacketComplete=function(e){return!(e.length=e.readUInt16BE(u.Length)},t.packetLength=function(e){return e.readUInt16BE(u.Length)};var r=n(43795);const o=8;t.HEADER_LENGTH=o;const i={SQL_BATCH:1,RPC_REQUEST:3,TABULAR_RESULT:4,ATTENTION:6,BULK_LOAD:7,TRANSACTION_MANAGER:14,LOGIN7:16,NTLMAUTH_PKT:17,PRELOGIN:18,FEDAUTH_TOKEN:8};t.TYPE=i;const s={};for(const e in i)s[i[e]]=e;const a={NORMAL:0,EOM:1,IGNORE:2,RESETCONNECTION:8,RESETCONNECTIONSKIPTRAN:16},u={Type:0,Status:1,Length:2,SPID:4,PacketID:6,Window:7};t.OFFSET=u,t.Packet=class{constructor(e){if(this.buffer=void 0,e instanceof Buffer)this.buffer=e;else{const t=e;this.buffer=Buffer.alloc(o,0),this.buffer.writeUInt8(t,u.Type),this.buffer.writeUInt8(a.NORMAL,u.Status),this.buffer.writeUInt16BE(0,u.SPID),this.buffer.writeUInt8(1,u.PacketID),this.buffer.writeUInt8(0,u.Window),this.setLength()}}setLength(){this.buffer.writeUInt16BE(this.buffer.length,u.Length)}length(){return this.buffer.readUInt16BE(u.Length)}resetConnection(e){let t=this.buffer.readUInt8(u.Status);e?t|=a.RESETCONNECTION:t&=255-a.RESETCONNECTION,this.buffer.writeUInt8(t,u.Status)}last(e){let t=this.buffer.readUInt8(u.Status);return arguments.length>0&&(e?t|=a.EOM:t&=255-a.EOM,this.buffer.writeUInt8(t,u.Status)),this.isLast()}ignore(e){let t=this.buffer.readUInt8(u.Status);e?t|=a.IGNORE:t&=255-a.IGNORE,this.buffer.writeUInt8(t,u.Status)}isLast(){return!!(this.buffer.readUInt8(u.Status)&a.EOM)}packetId(e){return e&&this.buffer.writeUInt8(e%256,u.PacketID),this.buffer.readUInt8(u.PacketID)}addData(e){return this.buffer=Buffer.concat([this.buffer,e]),this.setLength(),this}data(){return this.buffer.slice(o)}type(){return this.buffer.readUInt8(u.Type)}statusAsString(){const e=this.buffer.readUInt8(u.Status),t=[];for(const n in a)e&a[n]?t.push(n):t.push(void 0);return t.join(" ").trim()}headerToString(e=""){return e+(0,r.sprintf)("type:0x%02X(%s), status:0x%02X(%s), length:0x%04X, spid:0x%04X, packetId:0x%02X, window:0x%02X",this.buffer.readUInt8(u.Type),s[this.buffer.readUInt8(u.Type)],this.buffer.readUInt8(u.Status),this.statusAsString(),this.buffer.readUInt16BE(u.Length),this.buffer.readUInt16BE(u.SPID),this.buffer.readUInt8(u.PacketID),this.buffer.readUInt8(u.Window))}dataToString(e=""){const t=this.data();let n="",o="";for(let i=0;i126?(o+=".",(i+1)%8==0&&(i+1)%32!=0&&(o+=" ")):o+=String.fromCharCode(t[i]),null!=t[i]&&(n+=(0,r.sprintf)("%02X",t[i])),(i+1)%4==0&&(i+1)%32!=0&&(n+=" "),(i+1)%32==0&&(n+=" "+o,o="",i{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=n(43795),i=(r=n(84424))&&r.__esModule?r:{default:r};const s=20,a={OFF:0,ON:1,NOT_SUP:2,REQ:3},u={};for(const e in a)u[a[e]]=e;const c={OFF:0,ON:1},l={};for(const e in c)l[c[e]]=e;class h{constructor(e={encrypt:!1,version:{major:0,minor:0,build:0,subbuild:0}}){this.data=void 0,this.options=void 0,this.version=void 0,this.encryption=void 0,this.encryptionString=void 0,this.instance=void 0,this.threadId=void 0,this.mars=void 0,this.marsString=void 0,this.fedAuthRequired=void 0,e instanceof Buffer?(this.data=e,this.options={encrypt:!1,version:{major:0,minor:0,build:0,subbuild:0}}):(this.options=e,this.createOptions()),this.extractOptions()}createOptions(){const e=[this.createVersionOption(),this.createEncryptionOption(),this.createInstanceOption(),this.createThreadIdOption(),this.createMarsOption(),this.createFedAuthOption()];let t=0;for(let n=0,r=e.length;n0&&this.extractThreadId(t);break;case 4:this.extractMars(t);break;case 6:this.extractFedAuth(t)}e+=5,t+=n}}extractVersion(e){this.version={major:this.data.readUInt8(e+0),minor:this.data.readUInt8(e+1),build:this.data.readUInt16BE(e+2),subbuild:this.data.readUInt16BE(e+4)}}extractEncryption(e){this.encryption=this.data.readUInt8(e),this.encryptionString=u[this.encryption]}extractInstance(e){this.instance=this.data.readUInt8(e)}extractThreadId(e){this.threadId=this.data.readUInt32BE(e)}extractMars(e){this.mars=this.data.readUInt8(e),this.marsString=l[this.mars]}extractFedAuth(e){this.fedAuthRequired=this.data.readUInt8(e)}toString(e=""){return e+"PreLogin - "+(0,o.sprintf)("version:%d.%d.%d.%d, encryption:0x%02X(%s), instopt:0x%02X, threadId:0x%08X, mars:0x%02X(%s)",this.version.major,this.version.minor,this.version.build,this.version.subbuild,this.encryption?this.encryption:0,this.encryptionString?this.encryptionString:"",this.instance?this.instance:0,this.threadId?this.threadId:0,this.mars?this.mars:0,this.marsString?this.marsString:"")}}var f=h;t.default=f,e.exports=h},16267:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(24434),o=n(58167),i=n(12734);class s extends r.EventEmitter{on(e,t){return super.on(e,t)}emit(e,...t){return super.emit(e,...t)}constructor(e,t,n){super(),this.sqlTextOrProcedure=void 0,this.parameters=void 0,this.parametersByName=void 0,this.preparing=void 0,this.canceled=void 0,this.paused=void 0,this.userCallback=void 0,this.handle=void 0,this.error=void 0,this.connection=void 0,this.timeout=void 0,this.rows=void 0,this.rst=void 0,this.rowCount=void 0,this.callback=void 0,this.shouldHonorAE=void 0,this.statementColumnEncryptionSetting=void 0,this.cryptoMetadataLoaded=void 0,this.sqlTextOrProcedure=e,this.parameters=[],this.parametersByName={},this.preparing=!1,this.handle=void 0,this.canceled=!1,this.paused=!1,this.error=void 0,this.connection=void 0,this.timeout=void 0,this.userCallback=t,this.statementColumnEncryptionSetting=n&&n.statementColumnEncryptionSetting||i.SQLServerStatementColumnEncryptionSetting.UseConnectionSetting,this.cryptoMetadataLoaded=!1,this.callback=function(e,t,n){this.preparing?(this.preparing=!1,e?this.emit("error",e):this.emit("prepared")):(this.userCallback(e,t,n),this.emit("requestCompleted"))}}addParameter(e,t,n,r){const{output:o=!1,length:i,precision:s,scale:a}=r??{},u={type:t,name:e,value:n,output:o,length:i,precision:s,scale:a};this.parameters.push(u),this.parametersByName[e]=u}addOutputParameter(e,t,n,r){this.addParameter(e,t,n,{...r,output:!0})}makeParamsParameter(e){let t="";for(let n=0,r=e.length;n0&&(t+=", "),t+="@"+r.name+" ",t+=r.type.declaration(r),r.output&&(t+=" OUTPUT")}return t}validateParameters(e){for(let t=0,n=this.parameters.length;t{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(84424))&&r.__esModule?r:{default:r},i=n(4542);let s;s=Symbol.iterator;class a{constructor(e,t,n,r,o){this.procedure=void 0,this.parameters=void 0,this.options=void 0,this.txnDescriptor=void 0,this.collation=void 0,this.procedure=e,this.parameters=t,this.options=r,this.txnDescriptor=n,this.collation=o}[s](){return this.generateData()}*generateData(){const e=new o.default(500);if(this.options.tdsVersion>="7_2"){const t=1;(0,i.writeToTrackingBuffer)(e,this.txnDescriptor,t)}"string"==typeof this.procedure?e.writeUsVarchar(this.procedure):(e.writeUShort(65535),e.writeUShort(this.procedure)),e.writeUInt16LE(0),yield e.data;const t=this.parameters.length;for(let e=0;e{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.sendInParallel=c,t.sendMessage=async function(e,t,n,r,a){if(r.aborted)throw new s.default;let u;return u=o.default.isIP(e)?[{address:e,family:o.default.isIPv6(e)?6:4}]:await new Promise(((t,o)=>{const a=()=>{o(new s.default)};r.addEventListener("abort",a),n(i.toASCII(e),{all:!0},((e,n)=>{r.removeEventListener("abort",a),e?o(e):t(n)}))})),await c(u,t,a,r)};var r=u(n(7194)),o=u(n(69278)),i=function(e,t){if(e&&e.__esModule)return e;if(null===e||"object"!=typeof e&&"function"!=typeof e)return{default:e};var n=a(t);if(n&&n.has(e))return n.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if("default"!==i&&Object.prototype.hasOwnProperty.call(e,i)){var s=o?Object.getOwnPropertyDescriptor(e,i):null;s&&(s.get||s.set)?Object.defineProperty(r,i,s):r[i]=e[i]}return r.default=e,n&&n.set(e,r),r}(n(24876)),s=u(n(49181));function a(e){if("function"!=typeof WeakMap)return null;var t=new WeakMap,n=new WeakMap;return(a=function(e){return e?n:t})(e)}function u(e){return e&&e.__esModule?e:{default:e}}async function c(e,t,n,o){if(o.aborted)throw new s.default;return await new Promise(((i,a)=>{const u=[];let c=0;const l=t=>{c++,c===e.length&&(o.removeEventListener("abort",f),p(),a(t))},h=e=>{o.removeEventListener("abort",f),p(),i(e)},f=()=>{p(),a(new s.default)},p=()=>{for(const e of u)e.removeListener("error",l),e.removeListener("message",h),e.close()};o.addEventListener("abort",f,{once:!0});for(let o=0;o{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(84424))&&r.__esModule?r:{default:r},i=n(4542);let s;s=Symbol.iterator;class a{constructor(e,t,n){this.sqlText=void 0,this.txnDescriptor=void 0,this.options=void 0,this.sqlText=e,this.txnDescriptor=t,this.options=n}*[s](){if(this.options.tdsVersion>="7_2"){const e=new o.default(18,"ucs2"),t=1;(0,i.writeToTrackingBuffer)(e,this.txnDescriptor,t),yield e.data}yield Buffer.from(this.sqlText,"ucs2")}toString(e=""){return e+"SQL Batch - "+this.sqlText}}var u=a;t.default=u,e.exports=a},4209:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.versionsByValue=t.versions=void 0;const n={"7_1":1895825409,"7_2":1913192450,"7_3_A":1930035203,"7_3_B":1930100739,"7_4":1946157060};t.versions=n;const r={};t.versionsByValue=r;for(const e in n)r[n[e]]=e},63019:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"BulkLoad",{enumerable:!0,get:function(){return r.default}}),Object.defineProperty(t,"Connection",{enumerable:!0,get:function(){return o.default}}),Object.defineProperty(t,"ConnectionError",{enumerable:!0,get:function(){return a.ConnectionError}}),Object.defineProperty(t,"ISOLATION_LEVEL",{enumerable:!0,get:function(){return c.ISOLATION_LEVEL}}),Object.defineProperty(t,"Request",{enumerable:!0,get:function(){return i.default}}),Object.defineProperty(t,"RequestError",{enumerable:!0,get:function(){return a.RequestError}}),Object.defineProperty(t,"TDS_VERSION",{enumerable:!0,get:function(){return l.versions}}),Object.defineProperty(t,"TYPES",{enumerable:!0,get:function(){return u.TYPES}}),t.connect=function(e,t){const n=new o.default(e);return n.connect(t),n},t.library=void 0;var r=h(n(36605)),o=h(n(70352)),i=h(n(16267)),s=n(38625),a=n(58167),u=n(98597),c=n(65974),l=n(4209);function h(e){return e&&e.__esModule?e:{default:e}}const f={name:s.name};t.library=f},67871:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=(r=n(12657))&&r.__esModule?r:{default:r},i=n(85629);function s(e,t,n,r){(0,o.default)(e,t,(o=>{!function(e,t,n,r){n.type.hasTableName?t.tdsVersion>="7_2"?e.readUInt8((t=>{const n=[];let o=0;!function r(i){if(t===o)return i();e.readUsVarChar((e=>{n.push(e),o++,r(i)}))}((()=>{r(n)}))})):e.readUsVarChar(r):r(void 0)}(e,t,o,(i=>{!function(e,t,n,r,o){e.readBVarChar((e=>{t.columnNameReplacer?o(t.columnNameReplacer(e,n,r)):t.camelCaseColumns?o(e.replace(/^[A-Z]/,(function(e){return e.toLowerCase()}))):o(e)}))}(e,t,n,o,(e=>{r({userType:o.userType,flags:o.flags,type:o.type,collation:o.collation,precision:o.precision,scale:o.scale,udtInfo:o.udtInfo,dataLength:o.dataLength,schema:o.schema,colName:e,tableName:i})}))}))}))}async function a(e){for(;e.buffer.length-e.position<2;)await e.streamBuffer.waitForChunk();const t=e.buffer.readUInt16LE(e.position);e.position+=2;const n=[];for(let r=0;r{t=e}));e.suspended;)await e.streamBuffer.waitForChunk(),e.suspended=!1,(0,e.next)();n.push(t)}return new i.ColMetadataToken(n)}var u=a;t.default=u,e.exports=a},95784:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.doneInProcParser=function(e,t,n){i(e,t,(e=>{n(new r.DoneInProcToken(e))}))},t.doneParser=function(e,t,n){i(e,t,(e=>{n(new r.DoneToken(e))}))},t.doneProcParser=function(e,t,n){i(e,t,(e=>{n(new r.DoneProcToken(e))}))};var r=n(85629);const o={MORE:1,ERROR:2,INXACT:4,COUNT:16,ATTN:32,SRVERROR:256};function i(e,t,n){e.readUInt16LE((r=>{const i=!!(r&o.MORE),s=!!(r&o.ERROR),a=!!(r&o.COUNT),u=!!(r&o.ATTN),c=!!(r&o.SRVERROR);e.readUInt16LE((r=>{const o=e=>{n({more:i,sqlError:s,attention:u,serverError:c,rowCount:a?e:void 0,curCmd:r})};t.tdsVersion<"7_2"?e.readUInt32LE(o):e.readBigUInt64LE((e=>{o(Number(e))}))}))}))}},27318:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(20553),o=n(85629);const i={1:{name:"DATABASE",event:"databaseChange"},2:{name:"LANGUAGE",event:"languageChange"},3:{name:"CHARSET",event:"charsetChange"},4:{name:"PACKET_SIZE",event:"packetSizeChange"},7:{name:"SQL_COLLATION",event:"sqlCollationChange"},8:{name:"BEGIN_TXN",event:"beginTransaction"},9:{name:"COMMIT_TXN",event:"commitTransaction"},10:{name:"ROLLBACK_TXN",event:"rollbackTransaction"},13:{name:"DATABASE_MIRRORING_PARTNER",event:"partnerNode"},17:{name:"TXN_ENDED"},18:{name:"RESET_CONNECTION",event:"resetConnection"},20:{name:"ROUTING_CHANGE",event:"routingChange"}};function s(e,t,n){e.readUInt16LE((t=>{e.readUInt8((s=>{const a=i[s];if(!a)return console.error("Tedious > Unsupported ENVCHANGE type "+s),e.readBuffer(t-1,(()=>{n(void 0)}));!function(e,t,n,i){switch(n.name){case"DATABASE":case"LANGUAGE":case"CHARSET":case"PACKET_SIZE":case"DATABASE_MIRRORING_PARTNER":return e.readBVarChar((t=>{e.readBVarChar((e=>{switch(n.name){case"PACKET_SIZE":return i(new o.PacketSizeEnvChangeToken(parseInt(t),parseInt(e)));case"DATABASE":return i(new o.DatabaseEnvChangeToken(t,e));case"LANGUAGE":return i(new o.LanguageEnvChangeToken(t,e));case"CHARSET":return i(new o.CharsetEnvChangeToken(t,e));case"DATABASE_MIRRORING_PARTNER":return i(new o.DatabaseMirroringPartnerEnvChangeToken(t,e))}}))}));case"SQL_COLLATION":case"BEGIN_TXN":case"COMMIT_TXN":case"ROLLBACK_TXN":case"RESET_CONNECTION":return e.readBVarByte((t=>{e.readBVarByte((e=>{switch(n.name){case"SQL_COLLATION":{const n=t.length?r.Collation.fromBuffer(t):void 0,s=e.length?r.Collation.fromBuffer(e):void 0;return i(new o.CollationChangeToken(n,s))}case"BEGIN_TXN":return i(new o.BeginTransactionEnvChangeToken(t,e));case"COMMIT_TXN":return i(new o.CommitTransactionEnvChangeToken(t,e));case"ROLLBACK_TXN":return i(new o.RollbackTransactionEnvChangeToken(t,e));case"RESET_CONNECTION":return i(new o.ResetConnectionEnvChangeToken(t,e))}}))}));case"ROUTING_CHANGE":return e.readUInt16LE((t=>{e.readBuffer(t,(t=>{const n=t.readUInt8(0);if(0!==n)throw new Error("Unknown protocol byte in routing change event");const r=t.readUInt16LE(1),s=t.readUInt16LE(3),a={protocol:n,port:r,server:t.toString("ucs2",5,5+2*s)};e.readUInt16LE((t=>{e.readBuffer(t,(e=>{i(new o.RoutingEnvChangeToken(a,e))}))}))}))}));default:console.error("Tedious > Unsupported ENVCHANGE type "+n.name),e.readBuffer(t-1,(()=>{i(void 0)}))}}(e,t,a,(e=>{n(e)}))}))}))}var a=s;t.default=a,e.exports=s},70586:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(85629);function o(e,t,n){let o,i;!function t(){e.readUInt8((s=>{if(255===s)return n(new r.FeatureExtAckToken(o,i));e.readUInt32LE((n=>{e.readBuffer(n,(e=>{switch(s){case 2:o=e;break;case 10:i=!!e[0]}t()}))}))}))}()}var i=o;t.default=i,e.exports=o},32072:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(85629);function o(e,t,n){e.readUInt32LE((t=>{e.readBuffer(t,(e=>{let t,o,i=0;const s=e.readUInt32LE(i);i+=4;for(let n=0;n{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.UnexpectedTokenError=t.TokenHandler=t.RequestTokenHandler=t.Login7TokenHandler=t.InitialSqlTokenHandler=t.AttentionTokenHandler=void 0;var r=s(n(16267)),o=n(58167),i=s(n(41424));function s(e){return e&&e.__esModule?e:{default:e}}class a extends Error{constructor(e,t){super("Unexpected token `"+t.name+"` in `"+e.constructor.name+"`")}}t.UnexpectedTokenError=a;class u{onInfoMessage(e){throw new a(this,e)}onErrorMessage(e){throw new a(this,e)}onSSPI(e){throw new a(this,e)}onDatabaseChange(e){throw new a(this,e)}onLanguageChange(e){throw new a(this,e)}onCharsetChange(e){throw new a(this,e)}onSqlCollationChange(e){throw new a(this,e)}onRoutingChange(e){throw new a(this,e)}onPacketSizeChange(e){throw new a(this,e)}onResetConnection(e){throw new a(this,e)}onBeginTransaction(e){throw new a(this,e)}onCommitTransaction(e){throw new a(this,e)}onRollbackTransaction(e){throw new a(this,e)}onFedAuthInfo(e){throw new a(this,e)}onFeatureExtAck(e){throw new a(this,e)}onLoginAck(e){throw new a(this,e)}onColMetadata(e){throw new a(this,e)}onOrder(e){throw new a(this,e)}onRow(e){throw new a(this,e)}onReturnStatus(e){throw new a(this,e)}onReturnValue(e){throw new a(this,e)}onDoneProc(e){throw new a(this,e)}onDoneInProc(e){throw new a(this,e)}onDone(e){throw new a(this,e)}onDatabaseMirroringPartner(e){throw new a(this,e)}}t.TokenHandler=u,t.InitialSqlTokenHandler=class extends u{constructor(e){super(),this.connection=void 0,this.connection=e}onInfoMessage(e){this.connection.emit("infoMessage",e)}onErrorMessage(e){this.connection.emit("errorMessage",e)}onDatabaseChange(e){this.connection.emit("databaseChange",e.newValue)}onLanguageChange(e){this.connection.emit("languageChange",e.newValue)}onCharsetChange(e){this.connection.emit("charsetChange",e.newValue)}onSqlCollationChange(e){this.connection.databaseCollation=e.newValue}onPacketSizeChange(e){this.connection.messageIo.packetSize(e.newValue)}onBeginTransaction(e){this.connection.transactionDescriptors.push(e.newValue),this.connection.inTransaction=!0}onCommitTransaction(e){this.connection.transactionDescriptors.length=1,this.connection.inTransaction=!1}onRollbackTransaction(e){this.connection.transactionDescriptors.length=1,this.connection.inTransaction=!1,this.connection.emit("rollbackTransaction")}onColMetadata(e){this.connection.emit("error",new Error("Received 'columnMetadata' when no sqlRequest is in progress")),this.connection.close()}onOrder(e){this.connection.emit("error",new Error("Received 'order' when no sqlRequest is in progress")),this.connection.close()}onRow(e){this.connection.emit("error",new Error("Received 'row' when no sqlRequest is in progress")),this.connection.close()}onReturnStatus(e){}onReturnValue(e){}onDoneProc(e){}onDoneInProc(e){}onDone(e){}onResetConnection(e){this.connection.emit("resetConnection")}},t.Login7TokenHandler=class extends u{constructor(e){super(),this.connection=void 0,this.fedAuthInfoToken=void 0,this.routingData=void 0,this.loginAckReceived=!1,this.connection=e}onInfoMessage(e){this.connection.emit("infoMessage",e)}onErrorMessage(e){this.connection.emit("errorMessage",e);const t=new o.ConnectionError(e.message,"ELOGIN");this.connection.transientErrorLookup.isTransientError(e.number)&&this.connection.curTransientRetryCount!==this.connection.config.options.maxRetriesOnTransientErrors&&(t.isTransient=!0),this.connection.loginError=t}onSSPI(e){e.ntlmpacket&&(this.connection.ntlmpacket=e.ntlmpacket,this.connection.ntlmpacketBuffer=e.ntlmpacketBuffer)}onDatabaseChange(e){this.connection.emit("databaseChange",e.newValue)}onLanguageChange(e){this.connection.emit("languageChange",e.newValue)}onCharsetChange(e){this.connection.emit("charsetChange",e.newValue)}onSqlCollationChange(e){this.connection.databaseCollation=e.newValue}onFedAuthInfo(e){this.fedAuthInfoToken=e}onFeatureExtAck(e){const{authentication:t}=this.connection.config;"azure-active-directory-password"===t.type||"azure-active-directory-access-token"===t.type||"azure-active-directory-msi-vm"===t.type||"azure-active-directory-msi-app-service"===t.type||"azure-active-directory-service-principal-secret"===t.type||"azure-active-directory-default"===t.type?void 0===e.fedAuth?this.connection.loginError=new o.ConnectionError("Did not receive Active Directory authentication acknowledgement"):0!==e.fedAuth.length&&(this.connection.loginError=new o.ConnectionError(`Active Directory authentication acknowledgment for ${t.type} authentication method includes extra data`)):void 0===e.fedAuth&&void 0===e.utf8Support?this.connection.loginError=new o.ConnectionError("Received acknowledgement for unknown feature"):e.fedAuth&&(this.connection.loginError=new o.ConnectionError("Did not request Active Directory authentication, but received the acknowledgment"))}onLoginAck(e){e.tdsVersion?e.interface?(this.connection.config.options.tdsVersion=e.tdsVersion,this.loginAckReceived=!0):this.connection.loginError=new o.ConnectionError("Server responded with unsupported interface.","EINTERFACENOTSUPP"):this.connection.loginError=new o.ConnectionError("Server responded with unknown TDS version.","ETDS")}onRoutingChange(e){const[t]=e.newValue.server.split("\\");this.routingData={server:t,port:e.newValue.port}}onDoneInProc(e){}onDone(e){}onPacketSizeChange(e){this.connection.messageIo.packetSize(e.newValue)}onDatabaseMirroringPartner(e){}},t.RequestTokenHandler=class extends u{constructor(e,t){super(),this.connection=void 0,this.request=void 0,this.errors=void 0,this.connection=e,this.request=t,this.errors=[]}onInfoMessage(e){this.connection.emit("infoMessage",e)}onErrorMessage(e){if(this.connection.emit("errorMessage",e),!this.request.canceled){const t=new o.RequestError(e.message,"EREQUEST");t.number=e.number,t.state=e.state,t.class=e.class,t.serverName=e.serverName,t.procName=e.procName,t.lineNumber=e.lineNumber,this.errors.push(t),this.request.error=t,this.request instanceof r.default&&this.errors.length>1&&(this.request.error=new i.default(this.errors))}}onDatabaseChange(e){this.connection.emit("databaseChange",e.newValue)}onLanguageChange(e){this.connection.emit("languageChange",e.newValue)}onCharsetChange(e){this.connection.emit("charsetChange",e.newValue)}onSqlCollationChange(e){this.connection.databaseCollation=e.newValue}onPacketSizeChange(e){this.connection.messageIo.packetSize(e.newValue)}onBeginTransaction(e){this.connection.transactionDescriptors.push(e.newValue),this.connection.inTransaction=!0}onCommitTransaction(e){this.connection.transactionDescriptors.length=1,this.connection.inTransaction=!1}onRollbackTransaction(e){this.connection.transactionDescriptors.length=1,this.connection.inTransaction=!1,this.connection.emit("rollbackTransaction")}onColMetadata(e){if(!this.request.canceled)if(this.connection.config.options.useColumnNames){const t=Object.create(null);for(let n=0,r=e.columns.length;n{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.errorParser=function(e,t,n){o(e,t,(e=>{n(new r.ErrorMessageToken(e))}))},t.infoParser=function(e,t,n){o(e,t,(e=>{n(new r.InfoMessageToken(e))}))};var r=n(85629);function o(e,t,n){e.readUInt16LE((()=>{e.readUInt32LE((r=>{e.readUInt8((o=>{e.readUInt8((i=>{e.readUsVarChar((s=>{e.readBVarChar((a=>{e.readBVarChar((u=>{(t.tdsVersion<"7_2"?e.readUInt16LE:e.readUInt32LE).call(e,(e=>{n({number:r,state:o,class:i,message:s,serverName:a,procName:u,lineNumber:e})}))}))}))}))}))}))}))}))}},60926:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(85629),o=n(4209);const i={0:"SQL_DFLT",1:"SQL_TSQL"};function s(e,t,n){e.readUInt16LE((()=>{e.readUInt8((t=>{const s=i[t];e.readUInt32BE((t=>{const i=o.versionsByValue[t];e.readBVarChar((t=>{e.readUInt8((o=>{e.readUInt8((a=>{e.readUInt8((u=>{e.readUInt8((e=>{n(new r.LoginAckToken({interface:s,tdsVersion:i,progName:t,progVersion:{major:o,minor:a,buildNumHi:u,buildNumLow:e}}))}))}))}))}))}))}))}))}))}var a=s;t.default=a,e.exports=s},60437:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=n(85629),i=(r=n(71271))&&r.__esModule?r:{default:r};function s(e,t,n,r){r(null)}async function a(e){const t=e.colMetadata,n=Math.ceil(t.length/8),r=[],a=[];for(;e.buffer.length-e.position{u=e}));e.suspended;)await e.streamBuffer.waitForChunk(),e.suspended=!1,(0,e.next)();r.push({value:u,metadata:o})}if(e.options.useColumnNames){const e={};return r.forEach((t=>{const n=t.metadata.colName;null==e[n]&&(e[n]=t)})),new o.NBCRowToken(e)}return new o.NBCRowToken(r)}var u=a;t.default=u,e.exports=a},3750:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(85629);function o(e,t,n){e.readUInt16LE((t=>{const o=t/2,i=[];let s=0;!function t(n){if(s===o)return n();e.readUInt16LE((e=>{i.push(e),s++,t(n)}))}((()=>{n(new r.OrderToken(i))}))}))}var i=o;t.default=i,e.exports=o},70248:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(85629);function o(e,t,n){e.readInt32LE((e=>{n(new r.ReturnStatusToken(e))}))}var i=o;t.default=i,e.exports=o},18583:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(85629),o=s(n(12657)),i=s(n(71271));function s(e){return e&&e.__esModule?e:{default:e}}function a(e,t,n){e.readUInt16LE((s=>{e.readBVarChar((a=>{"@"===a.charAt(0)&&(a=a.slice(1)),e.readUInt8((()=>{(0,o.default)(e,t,(o=>{(0,i.default)(e,o,t,(e=>{n(new r.ReturnValueToken({paramOrdinal:s,paramName:a,metadata:o,value:e}))}))}))}))}))}))}var u=a;t.default=u,e.exports=a},88122:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=n(85629),i=(r=n(71271))&&r.__esModule?r:{default:r};async function s(e){const t=e.colMetadata,n=t.length,r=[];for(let o=0;o{s=e}));e.suspended;)await e.streamBuffer.waitForChunk(),e.suspended=!1,(0,e.next)();r.push({value:s,metadata:n})}if(e.options.useColumnNames){const e=Object.create(null);return r.forEach((t=>{const n=t.metadata.colName;null==e[n]&&(e[n]=t)})),new o.RowToken(e)}return new o.RowToken(r)}var a=s;t.default=a,e.exports=s},72147:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(85629);function o(e,t,n){e.readUsVarByte((e=>{n(new r.SSPIToken(function(e){const t={};return t.magic=e.slice(0,8).toString("utf8"),t.type=e.readInt32LE(8),t.domainLen=e.readInt16LE(12),t.domainMax=e.readInt16LE(14),t.domainOffset=e.readInt32LE(16),t.flags=e.readInt32LE(20),t.nonce=e.slice(24,32),t.zeroes=e.slice(32,40),t.targetLen=e.readInt16LE(40),t.targetMax=e.readInt16LE(42),t.targetOffset=e.readInt32LE(44),t.oddData=e.slice(48,56),t.domain=e.slice(56,56+t.domainLen).toString("ucs2"),t.target=e.slice(56+t.domainLen,56+t.domainLen+t.targetLen),t}(e),e))}))}var i=o;t.default=i,e.exports=o},28972:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r=n(85629),o=_(n(67871)),i=n(95784),s=_(n(27318)),a=n(33592),u=_(n(32072)),c=_(n(70586)),l=_(n(60926)),h=_(n(3750)),f=_(n(70248)),p=_(n(18583)),d=_(n(88122)),E=_(n(60437)),m=_(n(72147));function _(e){return e&&e.__esModule?e:{default:e}}const g={[r.TYPE.DONE]:i.doneParser,[r.TYPE.DONEINPROC]:i.doneInProcParser,[r.TYPE.DONEPROC]:i.doneProcParser,[r.TYPE.ENVCHANGE]:s.default,[r.TYPE.ERROR]:a.errorParser,[r.TYPE.FEDAUTHINFO]:u.default,[r.TYPE.FEATUREEXTACK]:c.default,[r.TYPE.INFO]:a.infoParser,[r.TYPE.LOGINACK]:l.default,[r.TYPE.ORDER]:h.default,[r.TYPE.RETURNSTATUS]:f.default,[r.TYPE.RETURNVALUE]:p.default,[r.TYPE.SSPI]:m.default};class y{constructor(e){this.iterator=void 0,this.buffer=void 0,this.position=void 0,this.iterator=(e[Symbol.asyncIterator]||e[Symbol.iterator]).call(e),this.buffer=Buffer.alloc(0),this.position=0}async waitForChunk(){const e=await this.iterator.next();if(e.done)throw new Error("unexpected end of data");this.position===this.buffer.length?this.buffer=e.value:this.buffer=Buffer.concat([this.buffer.slice(this.position),e.value]),this.position=0}}class A{static async*parseTokens(e,t,n,i=[]){let s;const a=e=>{s=e},u=new y(e),c=new A(u,t,n);for(c.colMetadata=i;;){try{await u.waitForChunk()}catch(e){if(u.position===u.buffer.length)return;throw e}for(c.suspended&&(c.suspended=!1,(0,c.next)(),!c.suspended&&s&&(s instanceof r.ColMetadataToken&&(c.colMetadata=s.columns),yield s));!c.suspended&&c.position+1<=c.buffer.length;){const e=c.buffer.readUInt8(c.position);if(c.position+=1,e===r.TYPE.COLMETADATA){const e=await(0,o.default)(c);c.colMetadata=e.columns,yield e}else if(e===r.TYPE.ROW)yield(0,d.default)(c);else if(e===r.TYPE.NBCROW)yield(0,E.default)(c);else{if(!g[e])throw new Error("Unknown type: "+e);g[e](c,c.options,a),!c.suspended&&s&&(s instanceof r.ColMetadataToken&&(c.colMetadata=s.columns),yield s)}}}}constructor(e,t,n){this.debug=void 0,this.colMetadata=void 0,this.options=void 0,this.suspended=void 0,this.next=void 0,this.streamBuffer=void 0,this.debug=t,this.colMetadata=[],this.options=n,this.streamBuffer=e,this.suspended=!1,this.next=void 0}get buffer(){return this.streamBuffer.buffer}get position(){return this.streamBuffer.position}set position(e){this.streamBuffer.position=e}suspend(e){this.suspended=!0,this.next=e}awaitData(e,t){this.position+e<=this.buffer.length?t():this.suspend((()=>{this.awaitData(e,t)}))}readInt8(e){this.awaitData(1,(()=>{const t=this.buffer.readInt8(this.position);this.position+=1,e(t)}))}readUInt8(e){this.awaitData(1,(()=>{const t=this.buffer.readUInt8(this.position);this.position+=1,e(t)}))}readInt16LE(e){this.awaitData(2,(()=>{const t=this.buffer.readInt16LE(this.position);this.position+=2,e(t)}))}readInt16BE(e){this.awaitData(2,(()=>{const t=this.buffer.readInt16BE(this.position);this.position+=2,e(t)}))}readUInt16LE(e){this.awaitData(2,(()=>{const t=this.buffer.readUInt16LE(this.position);this.position+=2,e(t)}))}readUInt16BE(e){this.awaitData(2,(()=>{const t=this.buffer.readUInt16BE(this.position);this.position+=2,e(t)}))}readInt32LE(e){this.awaitData(4,(()=>{const t=this.buffer.readInt32LE(this.position);this.position+=4,e(t)}))}readInt32BE(e){this.awaitData(4,(()=>{const t=this.buffer.readInt32BE(this.position);this.position+=4,e(t)}))}readUInt32LE(e){this.awaitData(4,(()=>{const t=this.buffer.readUInt32LE(this.position);this.position+=4,e(t)}))}readUInt32BE(e){this.awaitData(4,(()=>{const t=this.buffer.readUInt32BE(this.position);this.position+=4,e(t)}))}readBigInt64LE(e){this.awaitData(8,(()=>{const t=this.buffer.readBigInt64LE(this.position);this.position+=8,e(t)}))}readInt64LE(e){this.awaitData(8,(()=>{const t=Math.pow(2,32)*this.buffer.readInt32LE(this.position+4)+(128&~this.buffer[this.position+4]?-1:1)*this.buffer.readUInt32LE(this.position);this.position+=8,e(t)}))}readInt64BE(e){this.awaitData(8,(()=>{const t=Math.pow(2,32)*this.buffer.readInt32BE(this.position)+(128&~this.buffer[this.position]?-1:1)*this.buffer.readUInt32BE(this.position+4);this.position+=8,e(t)}))}readBigUInt64LE(e){this.awaitData(8,(()=>{const t=this.buffer.readBigUInt64LE(this.position);this.position+=8,e(t)}))}readUInt64LE(e){this.awaitData(8,(()=>{const t=Math.pow(2,32)*this.buffer.readUInt32LE(this.position+4)+this.buffer.readUInt32LE(this.position);this.position+=8,e(t)}))}readUInt64BE(e){this.awaitData(8,(()=>{const t=Math.pow(2,32)*this.buffer.readUInt32BE(this.position)+this.buffer.readUInt32BE(this.position+4);this.position+=8,e(t)}))}readFloatLE(e){this.awaitData(4,(()=>{const t=this.buffer.readFloatLE(this.position);this.position+=4,e(t)}))}readFloatBE(e){this.awaitData(4,(()=>{const t=this.buffer.readFloatBE(this.position);this.position+=4,e(t)}))}readDoubleLE(e){this.awaitData(8,(()=>{const t=this.buffer.readDoubleLE(this.position);this.position+=8,e(t)}))}readDoubleBE(e){this.awaitData(8,(()=>{const t=this.buffer.readDoubleBE(this.position);this.position+=8,e(t)}))}readUInt24LE(e){this.awaitData(3,(()=>{const t=this.buffer.readUInt16LE(this.position),n=this.buffer.readUInt8(this.position+2);this.position+=3,e(t|n<<16)}))}readUInt40LE(e){this.awaitData(5,(()=>{const t=this.buffer.readUInt32LE(this.position),n=this.buffer.readUInt8(this.position+4);this.position+=5,e(4294967296*n+t)}))}readUNumeric64LE(e){this.awaitData(8,(()=>{const t=this.buffer.readUInt32LE(this.position),n=this.buffer.readUInt32LE(this.position+4);this.position+=8,e(4294967296*n+t)}))}readUNumeric96LE(e){this.awaitData(12,(()=>{const t=this.buffer.readUInt32LE(this.position),n=this.buffer.readUInt32LE(this.position+4),r=this.buffer.readUInt32LE(this.position+8);this.position+=12,e(t+4294967296*n+0x10000000000000000*r)}))}readUNumeric128LE(e){this.awaitData(16,(()=>{const t=this.buffer.readUInt32LE(this.position),n=this.buffer.readUInt32LE(this.position+4),r=this.buffer.readUInt32LE(this.position+8),o=this.buffer.readUInt32LE(this.position+12);this.position+=16,e(t+4294967296*n+0x10000000000000000*r+7922816251426434e13*o)}))}readBuffer(e,t){this.awaitData(e,(()=>{const n=this.buffer.slice(this.position,this.position+e);this.position+=e,t(n)}))}readBVarChar(e){this.readUInt8((t=>{this.readBuffer(2*t,(t=>{e(t.toString("ucs2"))}))}))}readUsVarChar(e){this.readUInt16LE((t=>{this.readBuffer(2*t,(t=>{e(t.toString("ucs2"))}))}))}readBVarByte(e){this.readUInt8((t=>{this.readBuffer(t,e)}))}readUsVarByte(e){this.readUInt16LE((t=>{this.readBuffer(t,e)}))}}var v=A;t.default=v,e.exports=A},13548:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Parser=void 0;var r,o=n(24434),i=(r=n(28972))&&r.__esModule?r:{default:r},s=n(2203);class a extends o.EventEmitter{constructor(e,t,n,r){super(),this.debug=void 0,this.options=void 0,this.parser=void 0,this.debug=t,this.options=r,this.parser=s.Readable.from(i.default.parseTokens(e,this.debug,this.options)),this.parser.on("data",(e=>{n[e.handlerName](e)})),this.parser.on("drain",(()=>{this.emit("drain")})),this.parser.on("end",(()=>{this.emit("end")}))}pause(){return this.parser.pause()}resume(){return this.parser.resume()}}t.Parser=a},85629:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Token=t.TYPE=t.SSPIToken=t.RowToken=t.RoutingEnvChangeToken=t.RollbackTransactionEnvChangeToken=t.ReturnValueToken=t.ReturnStatusToken=t.ResetConnectionEnvChangeToken=t.PacketSizeEnvChangeToken=t.OrderToken=t.NBCRowToken=t.LoginAckToken=t.LanguageEnvChangeToken=t.InfoMessageToken=t.FedAuthInfoToken=t.FeatureExtAckToken=t.ErrorMessageToken=t.DoneToken=t.DoneProcToken=t.DoneInProcToken=t.DatabaseMirroringPartnerEnvChangeToken=t.DatabaseEnvChangeToken=t.CommitTransactionEnvChangeToken=t.CollationChangeToken=t.ColMetadataToken=t.CharsetEnvChangeToken=t.BeginTransactionEnvChangeToken=void 0,t.TYPE={ALTMETADATA:136,ALTROW:211,COLMETADATA:129,COLINFO:165,DONE:253,DONEPROC:254,DONEINPROC:255,ENVCHANGE:227,ERROR:170,FEATUREEXTACK:174,FEDAUTHINFO:238,INFO:171,LOGINACK:173,NBCROW:210,OFFSET:120,ORDER:169,RETURNSTATUS:121,RETURNVALUE:172,ROW:209,SSPI:237,TABNAME:164};class n{constructor(e,t){this.name=void 0,this.handlerName=void 0,this.name=e,this.handlerName=t}}t.Token=n,t.ColMetadataToken=class extends n{constructor(e){super("COLMETADATA","onColMetadata"),this.columns=void 0,this.columns=e}},t.DoneToken=class extends n{constructor({more:e,sqlError:t,attention:n,serverError:r,rowCount:o,curCmd:i}){super("DONE","onDone"),this.more=void 0,this.sqlError=void 0,this.attention=void 0,this.serverError=void 0,this.rowCount=void 0,this.curCmd=void 0,this.more=e,this.sqlError=t,this.attention=n,this.serverError=r,this.rowCount=o,this.curCmd=i}},t.DoneInProcToken=class extends n{constructor({more:e,sqlError:t,attention:n,serverError:r,rowCount:o,curCmd:i}){super("DONEINPROC","onDoneInProc"),this.more=void 0,this.sqlError=void 0,this.attention=void 0,this.serverError=void 0,this.rowCount=void 0,this.curCmd=void 0,this.more=e,this.sqlError=t,this.attention=n,this.serverError=r,this.rowCount=o,this.curCmd=i}},t.DoneProcToken=class extends n{constructor({more:e,sqlError:t,attention:n,serverError:r,rowCount:o,curCmd:i}){super("DONEPROC","onDoneProc"),this.more=void 0,this.sqlError=void 0,this.attention=void 0,this.serverError=void 0,this.rowCount=void 0,this.curCmd=void 0,this.more=e,this.sqlError=t,this.attention=n,this.serverError=r,this.rowCount=o,this.curCmd=i}},t.DatabaseEnvChangeToken=class extends n{constructor(e,t){super("ENVCHANGE","onDatabaseChange"),this.type=void 0,this.newValue=void 0,this.oldValue=void 0,this.type="DATABASE",this.newValue=e,this.oldValue=t}},t.LanguageEnvChangeToken=class extends n{constructor(e,t){super("ENVCHANGE","onLanguageChange"),this.type=void 0,this.newValue=void 0,this.oldValue=void 0,this.type="LANGUAGE",this.newValue=e,this.oldValue=t}},t.CharsetEnvChangeToken=class extends n{constructor(e,t){super("ENVCHANGE","onCharsetChange"),this.type=void 0,this.newValue=void 0,this.oldValue=void 0,this.type="CHARSET",this.newValue=e,this.oldValue=t}},t.PacketSizeEnvChangeToken=class extends n{constructor(e,t){super("ENVCHANGE","onPacketSizeChange"),this.type=void 0,this.newValue=void 0,this.oldValue=void 0,this.type="PACKET_SIZE",this.newValue=e,this.oldValue=t}},t.BeginTransactionEnvChangeToken=class extends n{constructor(e,t){super("ENVCHANGE","onBeginTransaction"),this.type=void 0,this.newValue=void 0,this.oldValue=void 0,this.type="BEGIN_TXN",this.newValue=e,this.oldValue=t}},t.CommitTransactionEnvChangeToken=class extends n{constructor(e,t){super("ENVCHANGE","onCommitTransaction"),this.type=void 0,this.newValue=void 0,this.oldValue=void 0,this.type="COMMIT_TXN",this.newValue=e,this.oldValue=t}},t.RollbackTransactionEnvChangeToken=class extends n{constructor(e,t){super("ENVCHANGE","onRollbackTransaction"),this.type=void 0,this.oldValue=void 0,this.newValue=void 0,this.type="ROLLBACK_TXN",this.newValue=e,this.oldValue=t}},t.DatabaseMirroringPartnerEnvChangeToken=class extends n{constructor(e,t){super("ENVCHANGE","onDatabaseMirroringPartner"),this.type=void 0,this.oldValue=void 0,this.newValue=void 0,this.type="DATABASE_MIRRORING_PARTNER",this.newValue=e,this.oldValue=t}},t.ResetConnectionEnvChangeToken=class extends n{constructor(e,t){super("ENVCHANGE","onResetConnection"),this.type=void 0,this.oldValue=void 0,this.newValue=void 0,this.type="RESET_CONNECTION",this.newValue=e,this.oldValue=t}},t.CollationChangeToken=class extends n{constructor(e,t){super("ENVCHANGE","onSqlCollationChange"),this.type=void 0,this.oldValue=void 0,this.newValue=void 0,this.type="SQL_COLLATION",this.newValue=e,this.oldValue=t}},t.RoutingEnvChangeToken=class extends n{constructor(e,t){super("ENVCHANGE","onRoutingChange"),this.type=void 0,this.newValue=void 0,this.oldValue=void 0,this.type="ROUTING_CHANGE",this.newValue=e,this.oldValue=t}},t.FeatureExtAckToken=class extends n{constructor(e,t){super("FEATUREEXTACK","onFeatureExtAck"),this.fedAuth=void 0,this.utf8Support=void 0,this.fedAuth=e,this.utf8Support=t}},t.FedAuthInfoToken=class extends n{constructor(e,t){super("FEDAUTHINFO","onFedAuthInfo"),this.spn=void 0,this.stsurl=void 0,this.spn=e,this.stsurl=t}},t.InfoMessageToken=class extends n{constructor({number:e,state:t,class:n,message:r,serverName:o,procName:i,lineNumber:s}){super("INFO","onInfoMessage"),this.number=void 0,this.state=void 0,this.class=void 0,this.message=void 0,this.serverName=void 0,this.procName=void 0,this.lineNumber=void 0,this.number=e,this.state=t,this.class=n,this.message=r,this.serverName=o,this.procName=i,this.lineNumber=s}},t.ErrorMessageToken=class extends n{constructor({number:e,state:t,class:n,message:r,serverName:o,procName:i,lineNumber:s}){super("ERROR","onErrorMessage"),this.number=void 0,this.state=void 0,this.class=void 0,this.message=void 0,this.serverName=void 0,this.procName=void 0,this.lineNumber=void 0,this.number=e,this.state=t,this.class=n,this.message=r,this.serverName=o,this.procName=i,this.lineNumber=s}},t.LoginAckToken=class extends n{constructor({interface:e,tdsVersion:t,progName:n,progVersion:r}){super("LOGINACK","onLoginAck"),this.interface=void 0,this.tdsVersion=void 0,this.progName=void 0,this.progVersion=void 0,this.interface=e,this.tdsVersion=t,this.progName=n,this.progVersion=r}},t.NBCRowToken=class extends n{constructor(e){super("NBCROW","onRow"),this.columns=void 0,this.columns=e}},t.OrderToken=class extends n{constructor(e){super("ORDER","onOrder"),this.orderColumns=void 0,this.orderColumns=e}},t.ReturnStatusToken=class extends n{constructor(e){super("RETURNSTATUS","onReturnStatus"),this.value=void 0,this.value=e}},t.ReturnValueToken=class extends n{constructor({paramOrdinal:e,paramName:t,metadata:n,value:r}){super("RETURNVALUE","onReturnValue"),this.paramOrdinal=void 0,this.paramName=void 0,this.metadata=void 0,this.value=void 0,this.paramOrdinal=e,this.paramName=t,this.metadata=n,this.value=r}},t.RowToken=class extends n{constructor(e){super("ROW","onRow"),this.columns=void 0,this.columns=e}},t.SSPIToken=class extends n{constructor(e,t){super("SSPICHALLENGE","onSSPI"),this.ntlmpacket=void 0,this.ntlmpacketBuffer=void 0,this.ntlmpacket=e,this.ntlmpacketBuffer=t}}},84424:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;const n=1/4294967296,r=Buffer.from([254,255,255,255,255,255,255,255]),o=Buffer.alloc(0);class i{constructor(e,t,n){this.initialSize=void 0,this.encoding=void 0,this.doubleSizeGrowth=void 0,this.buffer=void 0,this.compositeBuffer=void 0,this.position=void 0,this.initialSize=e,this.encoding=t||"ucs2",this.doubleSizeGrowth=n||!1,this.buffer=Buffer.alloc(this.initialSize,0),this.compositeBuffer=o,this.position=0}get data(){return this.newBuffer(0),this.compositeBuffer}copyFrom(e){const t=e.length;this.makeRoomFor(t),e.copy(this.buffer,this.position),this.position+=t}makeRoomFor(e){if(this.buffer.length-this.position>>16&255,this.buffer[this.position+1]=e>>>8&255,this.buffer[this.position]=255&e,this.position+=3}writeUInt32LE(e){this.makeRoomFor(4),this.buffer.writeUInt32LE(e,this.position),this.position+=4}writeBigInt64LE(e){this.makeRoomFor(8),this.buffer.writeBigInt64LE(e,this.position),this.position+=8}writeInt64LE(e){this.writeBigInt64LE(BigInt(e))}writeUInt64LE(e){this.writeBigUInt64LE(BigInt(e))}writeBigUInt64LE(e){this.makeRoomFor(8),this.buffer.writeBigUInt64LE(e,this.position),this.position+=8}writeUInt32BE(e){this.makeRoomFor(4),this.buffer.writeUInt32BE(e,this.position),this.position+=4}writeUInt40LE(e){this.writeInt32LE(-1&e),this.writeUInt8(Math.floor(e*n))}writeInt8(e){this.makeRoomFor(1),this.buffer.writeInt8(e,this.position),this.position+=1}writeInt16LE(e){this.makeRoomFor(2),this.buffer.writeInt16LE(e,this.position),this.position+=2}writeInt16BE(e){this.makeRoomFor(2),this.buffer.writeInt16BE(e,this.position),this.position+=2}writeInt32LE(e){this.makeRoomFor(4),this.buffer.writeInt32LE(e,this.position),this.position+=4}writeInt32BE(e){this.makeRoomFor(4),this.buffer.writeInt32BE(e,this.position),this.position+=4}writeFloatLE(e){this.makeRoomFor(4),this.buffer.writeFloatLE(e,this.position),this.position+=4}writeDoubleLE(e){this.makeRoomFor(8),this.buffer.writeDoubleLE(e,this.position),this.position+=8}writeString(e,t){null==t&&(t=this.encoding);const n=Buffer.byteLength(e,t);this.makeRoomFor(n),this.buffer.write(e,this.position,t),this.position+=n}writeBVarchar(e,t){this.writeUInt8(e.length),this.writeString(e,t)}writeUsVarchar(e,t){this.writeUInt16LE(e.length),this.writeString(e,t)}writeUsVarbyte(e,t){let n;null==t&&(t=this.encoding),e instanceof Buffer?n=e.length:(e=e.toString(),n=Buffer.byteLength(e,t)),this.writeUInt16LE(n),e instanceof Buffer?this.writeBuffer(e):(this.makeRoomFor(n),this.buffer.write(e,this.position,t),this.position+=n)}writePLPBody(e,t){let n;null==t&&(t=this.encoding),e instanceof Buffer?n=e.length:(e=e.toString(),n=Buffer.byteLength(e,t)),this.writeBuffer(r),n>0&&(this.writeUInt32LE(n),e instanceof Buffer?this.writeBuffer(e):(this.makeRoomFor(n),this.buffer.write(e,this.position,t),this.position+=n)),this.writeUInt32LE(0)}writeBuffer(e){const t=e.length;this.makeRoomFor(t),e.copy(this.buffer,this.position),this.position+=t}writeMoney(e){this.writeInt32LE(Math.floor(e*n)),this.writeInt32LE(-1&e)}}var s=i;t.default=s,e.exports=i},65974:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Transaction=t.OPERATION_TYPE=t.ISOLATION_LEVEL=void 0,t.assertValidIsolationLevel=function(e,t){if("number"!=typeof e)throw new TypeError(`The "${t}" ${t.includes(".")?"property":"argument"} must be of type number. Received type ${typeof e} (${e})`);if(!Number.isInteger(e))throw new RangeError(`The value of "${t}" is out of range. It must be an integer. Received: ${e}`);if(!(e>=0&&e<=5))throw new RangeError(`The value of "${t}" is out of range. It must be >= 0 && <= 5. Received: ${e}`)},t.isolationLevelByValue=void 0;var r,o=(r=n(84424))&&r.__esModule?r:{default:r},i=n(4542);const s={TM_GET_DTC_ADDRESS:0,TM_PROPAGATE_XACT:1,TM_BEGIN_XACT:5,TM_PROMOTE_XACT:6,TM_COMMIT_XACT:7,TM_ROLLBACK_XACT:8,TM_SAVE_XACT:9};t.OPERATION_TYPE=s;const a={NO_CHANGE:0,READ_UNCOMMITTED:1,READ_COMMITTED:2,REPEATABLE_READ:3,SERIALIZABLE:4,SNAPSHOT:5};t.ISOLATION_LEVEL=a;const u={};t.isolationLevelByValue=u;for(const e in a)u[a[e]]=e;t.Transaction=class{constructor(e,t=a.NO_CHANGE){this.name=void 0,this.isolationLevel=void 0,this.outstandingRequestCount=void 0,this.name=e,this.isolationLevel=t,this.outstandingRequestCount=1}beginPayload(e){const t=new o.default(100,"ucs2");return(0,i.writeToTrackingBuffer)(t,e,this.outstandingRequestCount),t.writeUShort(s.TM_BEGIN_XACT),t.writeUInt8(this.isolationLevel),t.writeUInt8(2*this.name.length),t.writeString(this.name,"ucs2"),{*[Symbol.iterator](){yield t.data},toString:()=>"Begin Transaction: name="+this.name+", isolationLevel="+u[this.isolationLevel]}}commitPayload(e){const t=new o.default(100,"ascii");return(0,i.writeToTrackingBuffer)(t,e,this.outstandingRequestCount),t.writeUShort(s.TM_COMMIT_XACT),t.writeUInt8(2*this.name.length),t.writeString(this.name,"ucs2"),t.writeUInt8(0),{*[Symbol.iterator](){yield t.data},toString:()=>"Commit Transaction: name="+this.name}}rollbackPayload(e){const t=new o.default(100,"ascii");return(0,i.writeToTrackingBuffer)(t,e,this.outstandingRequestCount),t.writeUShort(s.TM_ROLLBACK_XACT),t.writeUInt8(2*this.name.length),t.writeString(this.name,"ucs2"),t.writeUInt8(0),{*[Symbol.iterator](){yield t.data},toString:()=>"Rollback Transaction: name="+this.name}}savePayload(e){const t=new o.default(100,"ascii");return(0,i.writeToTrackingBuffer)(t,e,this.outstandingRequestCount),t.writeUShort(s.TM_SAVE_XACT),t.writeUInt8(2*this.name.length),t.writeString(this.name,"ucs2"),{*[Symbol.iterator](){yield t.data},toString:()=>"Save Transaction: name="+this.name}}isolationLevelToTSQL(){switch(this.isolationLevel){case a.READ_UNCOMMITTED:return"READ UNCOMMITTED";case a.READ_COMMITTED:return"READ COMMITTED";case a.REPEATABLE_READ:return"REPEATABLE READ";case a.SERIALIZABLE:return"SERIALIZABLE";case a.SNAPSHOT:return"SNAPSHOT"}return""}}},98306:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TransientErrorLookup=void 0,t.TransientErrorLookup=class{isTransientError(e){return-1!==[4060,10928,10929,40197,40501,40613].indexOf(e)}}},14928:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.withTimeout=async function(e,t,n){const r=new o.AbortController,s=()=>{r.abort()},a=setTimeout(s,e);null==n||n.addEventListener("abort",s,{once:!0});try{return await t(r.signal)}catch(e){if(e instanceof Error&&"AbortError"===e.name&&(!n||!n.aborted))throw new i.default;throw e}finally{null==n||n.removeEventListener("abort",s),clearTimeout(a)}};var r,o=n(64985),i=(r=n(75580))&&r.__esModule?r:{default:r}},71271:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,o=n(12657),i=n(98597),s=(r=n(95249))&&r.__esModule?r:{default:r},a=n(43795),u=n(91641);const c=65535,l=65535,h=3+1/3,f=1e4,p=Buffer.from([255,255,255,255,255,255,255,255]),d=Buffer.from([254,255,255,255,255,255,255,255]),E="utf8";function m(e,t){e.readUInt8(t)}function _(e,t){e.readInt16LE(t)}function g(e,t){e.readInt32LE(t)}function y(e,t){e.readBigInt64LE((e=>{t(e.toString())}))}function A(e,t){e.readFloatLE(t)}function v(e,t){e.readDoubleLE(t)}function b(e,t){e.readInt32LE((e=>{t(e/f)}))}function T(e,t){e.readInt32LE((n=>{e.readUInt32LE((e=>{t((e+4294967296*n)/f)}))}))}function w(e,t){e.readUInt8((e=>{t(!!e)}))}function O(e,t,n,r){const u=t.type;switch(u.name){case"Null":return r(null);case"TinyInt":return m(e,r);case"SmallInt":return _(e,r);case"Int":return g(e,r);case"BigInt":return y(e,r);case"IntN":return e.readUInt8((t=>{switch(t){case 0:return r(null);case 1:return m(e,r);case 2:return _(e,r);case 4:return g(e,r);case 8:return y(e,r);default:throw new Error("Unsupported dataLength "+t+" for IntN")}}));case"Real":return A(e,r);case"Float":return v(e,r);case"FloatN":return e.readUInt8((t=>{switch(t){case 0:return r(null);case 4:return A(e,r);case 8:return v(e,r);default:throw new Error("Unsupported dataLength "+t+" for FloatN")}}));case"SmallMoney":return b(e,r);case"Money":return T(e,r);case"MoneyN":return e.readUInt8((t=>{switch(t){case 0:return r(null);case 4:return b(e,r);case 8:return T(e,r);default:throw new Error("Unsupported dataLength "+t+" for MoneyN")}}));case"Bit":return w(e,r);case"BitN":return e.readUInt8((t=>{switch(t){case 0:return r(null);case 1:return w(e,r);default:throw new Error("Unsupported dataLength "+t+" for BitN")}}));case"VarChar":case"Char":const h=t.collation.codepage;return t.dataLength===l?function(e,t,n){null==t&&(t=E),M(e,(e=>{n(e?s.default.decode(e,t):null)}))}(e,h,r):e.readUInt16LE((t=>{if(t===c)return r(null);N(e,t,h,r)}));case"NVarChar":case"NChar":return t.dataLength===l?L(e,r):e.readUInt16LE((t=>{if(t===c)return r(null);C(e,t,r)}));case"VarBinary":case"Binary":return t.dataLength===l?D(e,r):e.readUInt16LE((t=>{if(t===c)return r(null);I(e,t,r)}));case"Text":return e.readUInt8((n=>{if(0===n)return r(null);e.readBuffer(n,(n=>{e.readBuffer(8,(n=>{e.readUInt32LE((n=>{N(e,n,t.collation.codepage,r)}))}))}))}));case"NText":return e.readUInt8((t=>{if(0===t)return r(null);e.readBuffer(t,(t=>{e.readBuffer(8,(t=>{e.readUInt32LE((t=>{C(e,t,r)}))}))}))}));case"Image":return e.readUInt8((t=>{if(0===t)return r(null);e.readBuffer(t,(t=>{e.readBuffer(8,(t=>{e.readUInt32LE((t=>{I(e,t,r)}))}))}))}));case"Xml":return L(e,r);case"SmallDateTime":return x(e,n.useUTC,r);case"DateTime":return B(e,n.useUTC,r);case"DateTimeN":return e.readUInt8((t=>{switch(t){case 0:return r(null);case 4:return x(e,n.useUTC,r);case 8:return B(e,n.useUTC,r);default:throw new Error("Unsupported dataLength "+t+" for DateTimeN")}}));case"Time":return e.readUInt8((o=>0===o?r(null):P(e,o,t.scale,n.useUTC,r)));case"Date":return e.readUInt8((t=>0===t?r(null):F(e,n.useUTC,r)));case"DateTime2":return e.readUInt8((o=>0===o?r(null):U(e,o,t.scale,n.useUTC,r)));case"DateTimeOffset":return e.readUInt8((n=>0===n?r(null):k(e,n,t.scale,r)));case"NumericN":case"DecimalN":return e.readUInt8((n=>0===n?r(null):S(e,n,t.precision,t.scale,r)));case"UniqueIdentifier":return e.readUInt8((t=>{switch(t){case 0:return r(null);case 16:return R(e,n,r);default:throw new Error((0,a.sprintf)("Unsupported guid size %d",t-1))}}));case"UDT":return D(e,r);case"Variant":return e.readUInt32LE((t=>{if(0===t)return r(null);!function(e,t,n,r){e.readUInt8((s=>{const a=i.TYPE[s];return e.readUInt8((i=>{switch(n=n-i-2,a.name){case"UniqueIdentifier":return R(e,t,r);case"Bit":return w(e,r);case"TinyInt":return m(e,r);case"SmallInt":return _(e,r);case"Int":return g(e,r);case"BigInt":return y(e,r);case"SmallDateTime":return x(e,t.useUTC,r);case"DateTime":return B(e,t.useUTC,r);case"Real":return A(e,r);case"Float":return v(e,r);case"SmallMoney":return b(e,r);case"Money":return T(e,r);case"Date":return F(e,t.useUTC,r);case"Time":return e.readUInt8((o=>P(e,n,o,t.useUTC,r)));case"DateTime2":return e.readUInt8((o=>U(e,n,o,t.useUTC,r)));case"DateTimeOffset":return e.readUInt8((t=>k(e,n,t,r)));case"VarBinary":case"Binary":return e.readUInt16LE((t=>{I(e,n,r)}));case"NumericN":case"DecimalN":return e.readUInt8((t=>{e.readUInt8((t=>{S(e,n,0,t,r)}))}));case"VarChar":case"Char":return e.readUInt16LE((t=>{(0,o.readCollation)(e,(t=>{N(e,n,t.codepage,r)}))}));case"NVarChar":case"NChar":return e.readUInt16LE((t=>{(0,o.readCollation)(e,(t=>{C(e,n,r)}))}));default:throw new Error("Invalid type!")}}))}))}(e,n,t,r)}));default:throw new Error((0,a.sprintf)("Unrecognised type %s",u.name))}}function R(e,t,n){e.readBuffer(16,(e=>{n(t.lowerCaseGuids?(0,u.bufferToLowerCaseGuid)(e):(0,u.bufferToUpperCaseGuid)(e))}))}function S(e,t,n,r,o){e.readUInt8((n=>{let i;if(n=1===n?1:-1,5===t)i=e.readUInt32LE;else if(9===t)i=e.readUNumeric64LE;else if(13===t)i=e.readUNumeric96LE;else{if(17!==t)throw new Error((0,a.sprintf)("Unsupported numeric dataLength %d",t));i=e.readUNumeric128LE}i.call(e,(e=>{o(e*n/Math.pow(10,r))}))}))}function I(e,t,n){return e.readBuffer(t,n)}function N(e,t,n,r){return null==n&&(n=E),e.readBuffer(t,(e=>{r(s.default.decode(e,n))}))}function C(e,t,n){e.readBuffer(t,(e=>{n(e.toString("ucs2"))}))}function D(e,t){return M(e,t)}function L(e,t){M(e,(e=>{t(e?e.toString("ucs2"):null)}))}function M(e,t){e.readBuffer(8,(n=>{if(n.equals(p))return t(null);if(n.equals(d))return function(e,t){const n=[];let r=0;!function t(o){e.readUInt32LE((i=>{if(!i)return o();e.readBuffer(i,(e=>{n.push(e),r+=i,t(o)}))}))}((()=>{t(Buffer.concat(n,r))}))}(e,t);{const r=n.readUInt32LE(0),o=n.readUInt32LE(4);return o>=2<<21&&console.warn("Read UInt64LE > 53 bits : high="+o+", low="+r),function(e,t,n){const r=Buffer.alloc(t,0);let o=0;!function t(n){e.readUInt32LE((i=>{if(!i)return n();e.readBuffer(i,(e=>{e.copy(r,o),o+=i,t(n)}))}))}((()=>{if(o!==t)throw new Error("Partially Length-prefixed Bytes unmatched lengths : expected "+t+", but got "+o+" bytes");n(r)}))}(e,r+4294967296*o,t)}}))}function x(e,t,n){e.readUInt16LE((r=>{e.readUInt16LE((e=>{let o;o=t?new Date(Date.UTC(1900,0,1+r,0,e)):new Date(1900,0,1+r,0,e),n(o)}))}))}function B(e,t,n){e.readInt32LE((r=>{e.readUInt32LE((e=>{const o=Math.round(e*h);let i;i=t?new Date(Date.UTC(1900,0,1+r,0,0,0,o)):new Date(1900,0,1+r,0,0,0,o),n(i)}))}))}function P(e,t,n,r,o){let i;switch(t){case 3:i=e.readUInt24LE;break;case 4:i=e.readUInt32LE;break;case 5:i=e.readUInt40LE}i.call(e,(e=>{if(n<7)for(let t=n;t<7;t++)e*=10;let t;t=r?new Date(Date.UTC(1970,0,1,0,0,0,e/1e4)):new Date(1970,0,1,0,0,0,e/1e4),Object.defineProperty(t,"nanosecondsDelta",{enumerable:!1,value:e%1e4/Math.pow(10,7)}),o(t)}))}function F(e,t,n){e.readUInt24LE((e=>{n(t?new Date(Date.UTC(2e3,0,e-730118)):new Date(2e3,0,e-730118))}))}function U(e,t,n,r,o){P(e,t-3,n,r,(t=>{e.readUInt24LE((e=>{let n;n=r?new Date(Date.UTC(2e3,0,e-730118,0,0,0,+t)):new Date(2e3,0,e-730118,t.getHours(),t.getMinutes(),t.getSeconds(),t.getMilliseconds()),Object.defineProperty(n,"nanosecondsDelta",{enumerable:!1,value:t.nanosecondsDelta}),o(n)}))}))}function k(e,t,n,r){P(e,t-5,n,!0,(t=>{e.readUInt24LE((n=>{e.readInt16LE((()=>{const e=new Date(Date.UTC(2e3,0,n-730118,0,0,0,+t));Object.defineProperty(e,"nanosecondsDelta",{enumerable:!1,value:t.nanosecondsDelta}),r(e)}))}))}))}var j=O;t.default=j,e.exports=O},36188:(e,t,n)=>{"use strict";const{Buffer:r}=n(20181),o=Symbol.for("BufferList");function i(e){if(!(this instanceof i))return new i(e);i._init.call(this,e)}i._init=function(e){Object.defineProperty(this,o,{value:!0}),this._bufs=[],this.length=0,e&&this.append(e)},i.prototype._new=function(e){return new i(e)},i.prototype._offset=function(e){if(0===e)return[0,0];let t=0;for(let n=0;nthis.length||e<0)return;const t=this._offset(e);return this._bufs[t[0]][t[1]]},i.prototype.slice=function(e,t){return"number"==typeof e&&e<0&&(e+=this.length),"number"==typeof t&&t<0&&(t+=this.length),this.copy(null,0,e,t)},i.prototype.copy=function(e,t,n,o){if(("number"!=typeof n||n<0)&&(n=0),("number"!=typeof o||o>this.length)&&(o=this.length),n>=this.length)return e||r.alloc(0);if(o<=0)return e||r.alloc(0);const i=!!e,s=this._offset(n),a=o-n;let u=a,c=i&&t||0,l=s[1];if(0===n&&o===this.length){if(!i)return 1===this._bufs.length?this._bufs[0]:r.concat(this._bufs,this.length);for(let t=0;tn)){this._bufs[t].copy(e,c,l,l+u),c+=n;break}this._bufs[t].copy(e,c,l),c+=n,u-=n,l&&(l=0)}return e.length>c?e.slice(0,c):e},i.prototype.shallowSlice=function(e,t){if(e=e||0,t="number"!=typeof t?this.length:t,e<0&&(e+=this.length),t<0&&(t+=this.length),e===t)return this._new();const n=this._offset(e),r=this._offset(t),o=this._bufs.slice(n[0],r[0]+1);return 0===r[1]?o.pop():o[o.length-1]=o[o.length-1].slice(0,r[1]),0!==n[1]&&(o[0]=o[0].slice(n[1])),this._new(o)},i.prototype.toString=function(e,t,n){return this.slice(t,n).toString(e)},i.prototype.consume=function(e){if(e=Math.trunc(e),Number.isNaN(e)||e<=0)return this;for(;this._bufs.length;){if(!(e>=this._bufs[0].length)){this._bufs[0]=this._bufs[0].slice(e),this.length-=e;break}e-=this._bufs[0].length,this.length-=this._bufs[0].length,this._bufs.shift()}return this},i.prototype.duplicate=function(){const e=this._new();for(let t=0;tthis.length?this.length:t;const o=this._offset(t);let i=o[0],s=o[1];for(;i=e.length){const n=t.indexOf(e,s);if(-1!==n)return this._reverseOffset([i,n]);s=t.length-e.length+1}else{const t=this._reverseOffset([i,s]);if(this._match(t,e))return t;s++}s=0}return-1},i.prototype._match=function(e,t){if(this.length-e{"use strict";const r=n(28721).Duplex,o=n(72017),i=n(36188);function s(e){if(!(this instanceof s))return new s(e);if("function"==typeof e){this._callback=e;const t=function(e){this._callback&&(this._callback(e),this._callback=null)}.bind(this);this.on("pipe",(function(e){e.on("error",t)})),this.on("unpipe",(function(e){e.removeListener("error",t)})),e=null}i._init.call(this,e),r.call(this)}o(s,r),Object.assign(s.prototype,i.prototype),s.prototype._new=function(e){return new s(e)},s.prototype._write=function(e,t,n){this._appendBuffer(e),"function"==typeof n&&n()},s.prototype._read=function(e){if(!this.length)return this.push(null);e=Math.min(e,this.length),this.push(this.slice(0,e)),this.consume(e)},s.prototype.end=function(e){r.prototype.end.call(this,e),this._callback&&(this._callback(null,this.slice()),this._callback=null)},s.prototype._destroy=function(e,t){this._bufs.length=0,this.length=0,t(e)},s.prototype._isBufferList=function(e){return e instanceof s||e instanceof i||s.isBufferList(e)},s.isBufferList=i.isBufferList,e.exports=s,e.exports.BufferListStream=s,e.exports.BufferList=i},2766:e=>{"use strict";const t={};function n(e,n,r){r||(r=Error);class o extends r{constructor(e,t,r){super(function(e,t,r){return"string"==typeof n?n:n(e,t,r)}(e,t,r))}}o.prototype.name=r.name,o.prototype.code=e,t[e]=o}function r(e,t){if(Array.isArray(e)){const n=e.length;return e=e.map((e=>String(e))),n>2?`one of ${t} ${e.slice(0,n-1).join(", ")}, or `+e[n-1]:2===n?`one of ${t} ${e[0]} or ${e[1]}`:`of ${t} ${e[0]}`}return`of ${t} ${String(e)}`}n("ERR_INVALID_OPT_VALUE",(function(e,t){return'The value "'+t+'" is invalid for option "'+e+'"'}),TypeError),n("ERR_INVALID_ARG_TYPE",(function(e,t,n){let o;var i;let s;if("string"==typeof t&&(i="not ",t.substr(0,4)===i)?(o="must not be",t=t.replace(/^not /,"")):o="must be",function(e,t,n){return(void 0===n||n>e.length)&&(n=e.length),e.substring(n-9,n)===t}(e," argument"))s=`The ${e} ${o} ${r(t,"type")}`;else{s=`The "${e}" ${"number"!=typeof u&&(u=0),u+1>(a=e).length||-1===a.indexOf(".",u)?"argument":"property"} ${o} ${r(t,"type")}`}var a,u;return s+=". Received type "+typeof n,s}),TypeError),n("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),n("ERR_METHOD_NOT_IMPLEMENTED",(function(e){return"The "+e+" method is not implemented"})),n("ERR_STREAM_PREMATURE_CLOSE","Premature close"),n("ERR_STREAM_DESTROYED",(function(e){return"Cannot call "+e+" after a stream was destroyed"})),n("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),n("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),n("ERR_STREAM_WRITE_AFTER_END","write after end"),n("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),n("ERR_UNKNOWN_ENCODING",(function(e){return"Unknown encoding: "+e}),TypeError),n("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),e.exports.F=t},49165:(e,t,n)=>{"use strict";var r=Object.keys||function(e){var t=[];for(var n in e)t.push(n);return t};e.exports=c;var o=n(77507),i=n(14711);n(72017)(c,o);for(var s=r(i.prototype),a=0;a{"use strict";e.exports=o;var r=n(23251);function o(e){if(!(this instanceof o))return new o(e);r.call(this,e)}n(72017)(o,r),o.prototype._transform=function(e,t,n){n(null,e)}},77507:(e,t,n)=>{"use strict";var r;e.exports=w,w.ReadableState=T,n(24434).EventEmitter;var o,i=function(e,t){return e.listeners(t).length},s=n(51821),a=n(20181).Buffer,u=("undefined"!=typeof global?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){},c=n(39023);o=c&&c.debuglog?c.debuglog("stream"):function(){};var l,h,f,p=n(10686),d=n(48787),E=n(16316).getHighWaterMark,m=n(2766).F,_=m.ERR_INVALID_ARG_TYPE,g=m.ERR_STREAM_PUSH_AFTER_EOF,y=m.ERR_METHOD_NOT_IMPLEMENTED,A=m.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;n(72017)(w,s);var v=d.errorOrDestroy,b=["error","close","destroy","pause","resume"];function T(e,t,o){r=r||n(49165),e=e||{},"boolean"!=typeof o&&(o=t instanceof r),this.objectMode=!!e.objectMode,o&&(this.objectMode=this.objectMode||!!e.readableObjectMode),this.highWaterMark=E(this,e,"readableHighWaterMark",o),this.buffer=new p,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==e.emitClose,this.autoDestroy=!!e.autoDestroy,this.destroyed=!1,this.defaultEncoding=e.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,e.encoding&&(l||(l=n(63924).I),this.decoder=new l(e.encoding),this.encoding=e.encoding)}function w(e){if(r=r||n(49165),!(this instanceof w))return new w(e);var t=this instanceof r;this._readableState=new T(e,this,t),this.readable=!0,e&&("function"==typeof e.read&&(this._read=e.read),"function"==typeof e.destroy&&(this._destroy=e.destroy)),s.call(this)}function O(e,t,n,r,i){o("readableAddChunk",t);var s,c=e._readableState;if(null===t)c.reading=!1,function(e,t){if(o("onEofChunk"),!t.ended){if(t.decoder){var n=t.decoder.end();n&&n.length&&(t.buffer.push(n),t.length+=t.objectMode?1:n.length)}t.ended=!0,t.sync?N(e):(t.needReadable=!1,t.emittedReadable||(t.emittedReadable=!0,C(e)))}}(e,c);else if(i||(s=function(e,t){var n,r;return r=t,a.isBuffer(r)||r instanceof u||"string"==typeof t||void 0===t||e.objectMode||(n=new _("chunk",["string","Buffer","Uint8Array"],t)),n}(c,t)),s)v(e,s);else if(c.objectMode||t&&t.length>0)if("string"==typeof t||c.objectMode||Object.getPrototypeOf(t)===a.prototype||(t=function(e){return a.from(e)}(t)),r)c.endEmitted?v(e,new A):R(e,c,t,!0);else if(c.ended)v(e,new g);else{if(c.destroyed)return!1;c.reading=!1,c.decoder&&!n?(t=c.decoder.write(t),c.objectMode||0!==t.length?R(e,c,t,!1):D(e,c)):R(e,c,t,!1)}else r||(c.reading=!1,D(e,c));return!c.ended&&(c.lengtht.highWaterMark&&(t.highWaterMark=function(e){return e>=S?e=S:(e--,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e++),e}(e)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function N(e){var t=e._readableState;o("emitReadable",t.needReadable,t.emittedReadable),t.needReadable=!1,t.emittedReadable||(o("emitReadable",t.flowing),t.emittedReadable=!0,process.nextTick(C,e))}function C(e){var t=e._readableState;o("emitReadable_",t.destroyed,t.length,t.ended),t.destroyed||!t.length&&!t.ended||(e.emit("readable"),t.emittedReadable=!1),t.needReadable=!t.flowing&&!t.ended&&t.length<=t.highWaterMark,P(e)}function D(e,t){t.readingMore||(t.readingMore=!0,process.nextTick(L,e,t))}function L(e,t){for(;!t.reading&&!t.ended&&(t.length0,t.resumeScheduled&&!t.paused?t.flowing=!0:e.listenerCount("data")>0&&e.resume()}function x(e){o("readable nexttick read 0"),e.read(0)}function B(e,t){o("resume",t.reading),t.reading||e.read(0),t.resumeScheduled=!1,e.emit("resume"),P(e),t.flowing&&!t.reading&&e.read(0)}function P(e){var t=e._readableState;for(o("flow",t.flowing);t.flowing&&null!==e.read(););}function F(e,t){return 0===t.length?null:(t.objectMode?n=t.buffer.shift():!e||e>=t.length?(n=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.first():t.buffer.concat(t.length),t.buffer.clear()):n=t.buffer.consume(e,t.decoder),n);var n}function U(e){var t=e._readableState;o("endReadable",t.endEmitted),t.endEmitted||(t.ended=!0,process.nextTick(k,t,e))}function k(e,t){if(o("endReadableNT",e.endEmitted,e.length),!e.endEmitted&&0===e.length&&(e.endEmitted=!0,t.readable=!1,t.emit("end"),e.autoDestroy)){var n=t._writableState;(!n||n.autoDestroy&&n.finished)&&t.destroy()}}function j(e,t){for(var n=0,r=e.length;n=t.highWaterMark:t.length>0)||t.ended))return o("read: emitReadable",t.length,t.ended),0===t.length&&t.ended?U(this):N(this),null;if(0===(e=I(e,t))&&t.ended)return 0===t.length&&U(this),null;var r,i=t.needReadable;return o("need readable",i),(0===t.length||t.length-e0?F(e,t):null)?(t.needReadable=t.length<=t.highWaterMark,e=0):(t.length-=e,t.awaitDrain=0),0===t.length&&(t.ended||(t.needReadable=!0),n!==e&&t.ended&&U(this)),null!==r&&this.emit("data",r),r},w.prototype._read=function(e){v(this,new y("_read()"))},w.prototype.pipe=function(e,t){var n=this,r=this._readableState;switch(r.pipesCount){case 0:r.pipes=e;break;case 1:r.pipes=[r.pipes,e];break;default:r.pipes.push(e)}r.pipesCount+=1,o("pipe count=%d opts=%j",r.pipesCount,t);var s=t&&!1===t.end||e===process.stdout||e===process.stderr?d:a;function a(){o("onend"),e.end()}r.endEmitted?process.nextTick(s):n.once("end",s),e.on("unpipe",(function t(i,s){o("onunpipe"),i===n&&s&&!1===s.hasUnpiped&&(s.hasUnpiped=!0,o("cleanup"),e.removeListener("close",f),e.removeListener("finish",p),e.removeListener("drain",u),e.removeListener("error",h),e.removeListener("unpipe",t),n.removeListener("end",a),n.removeListener("end",d),n.removeListener("data",l),c=!0,!r.awaitDrain||e._writableState&&!e._writableState.needDrain||u())}));var u=function(e){return function(){var t=e._readableState;o("pipeOnDrain",t.awaitDrain),t.awaitDrain&&t.awaitDrain--,0===t.awaitDrain&&i(e,"data")&&(t.flowing=!0,P(e))}}(n);e.on("drain",u);var c=!1;function l(t){o("ondata");var i=e.write(t);o("dest.write",i),!1===i&&((1===r.pipesCount&&r.pipes===e||r.pipesCount>1&&-1!==j(r.pipes,e))&&!c&&(o("false write response, pause",r.awaitDrain),r.awaitDrain++),n.pause())}function h(t){o("onerror",t),d(),e.removeListener("error",h),0===i(e,"error")&&v(e,t)}function f(){e.removeListener("finish",p),d()}function p(){o("onfinish"),e.removeListener("close",f),d()}function d(){o("unpipe"),n.unpipe(e)}return n.on("data",l),function(e,t,n){if("function"==typeof e.prependListener)return e.prependListener(t,n);e._events&&e._events[t]?Array.isArray(e._events[t])?e._events[t].unshift(n):e._events[t]=[n,e._events[t]]:e.on(t,n)}(e,"error",h),e.once("close",f),e.once("finish",p),e.emit("pipe",n),r.flowing||(o("pipe resume"),n.resume()),e},w.prototype.unpipe=function(e){var t=this._readableState,n={hasUnpiped:!1};if(0===t.pipesCount)return this;if(1===t.pipesCount)return e&&e!==t.pipes||(e||(e=t.pipes),t.pipes=null,t.pipesCount=0,t.flowing=!1,e&&e.emit("unpipe",this,n)),this;if(!e){var r=t.pipes,o=t.pipesCount;t.pipes=null,t.pipesCount=0,t.flowing=!1;for(var i=0;i0,!1!==r.flowing&&this.resume()):"readable"===e&&(r.endEmitted||r.readableListening||(r.readableListening=r.needReadable=!0,r.flowing=!1,r.emittedReadable=!1,o("on readable",r.length,r.reading),r.length?N(this):r.reading||process.nextTick(x,this))),n},w.prototype.addListener=w.prototype.on,w.prototype.removeListener=function(e,t){var n=s.prototype.removeListener.call(this,e,t);return"readable"===e&&process.nextTick(M,this),n},w.prototype.removeAllListeners=function(e){var t=s.prototype.removeAllListeners.apply(this,arguments);return"readable"!==e&&void 0!==e||process.nextTick(M,this),t},w.prototype.resume=function(){var e=this._readableState;return e.flowing||(o("resume"),e.flowing=!e.readableListening,function(e,t){t.resumeScheduled||(t.resumeScheduled=!0,process.nextTick(B,e,t))}(this,e)),e.paused=!1,this},w.prototype.pause=function(){return o("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(o("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},w.prototype.wrap=function(e){var t=this,n=this._readableState,r=!1;for(var i in e.on("end",(function(){if(o("wrapped end"),n.decoder&&!n.ended){var e=n.decoder.end();e&&e.length&&t.push(e)}t.push(null)})),e.on("data",(function(i){o("wrapped data"),n.decoder&&(i=n.decoder.write(i)),n.objectMode&&null==i||(n.objectMode||i&&i.length)&&(t.push(i)||(r=!0,e.pause()))})),e)void 0===this[i]&&"function"==typeof e[i]&&(this[i]=function(t){return function(){return e[t].apply(e,arguments)}}(i));for(var s=0;s{"use strict";e.exports=l;var r=n(2766).F,o=r.ERR_METHOD_NOT_IMPLEMENTED,i=r.ERR_MULTIPLE_CALLBACK,s=r.ERR_TRANSFORM_ALREADY_TRANSFORMING,a=r.ERR_TRANSFORM_WITH_LENGTH_0,u=n(49165);function c(e,t){var n=this._transformState;n.transforming=!1;var r=n.writecb;if(null===r)return this.emit("error",new i);n.writechunk=null,n.writecb=null,null!=t&&this.push(t),r(e);var o=this._readableState;o.reading=!1,(o.needReadable||o.length{"use strict";function r(e){var t=this;this.next=null,this.entry=null,this.finish=function(){!function(e,t,n){var r=e.entry;for(e.entry=null;r;){var o=r.callback;t.pendingcb--,o(undefined),r=r.next}t.corkedRequestsFree.next=e}(t,e)}}var o;e.exports=w,w.WritableState=T;var i,s={deprecate:n(27983)},a=n(51821),u=n(20181).Buffer,c=("undefined"!=typeof global?global:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){},l=n(48787),h=n(16316).getHighWaterMark,f=n(2766).F,p=f.ERR_INVALID_ARG_TYPE,d=f.ERR_METHOD_NOT_IMPLEMENTED,E=f.ERR_MULTIPLE_CALLBACK,m=f.ERR_STREAM_CANNOT_PIPE,_=f.ERR_STREAM_DESTROYED,g=f.ERR_STREAM_NULL_VALUES,y=f.ERR_STREAM_WRITE_AFTER_END,A=f.ERR_UNKNOWN_ENCODING,v=l.errorOrDestroy;function b(){}function T(e,t,i){o=o||n(49165),e=e||{},"boolean"!=typeof i&&(i=t instanceof o),this.objectMode=!!e.objectMode,i&&(this.objectMode=this.objectMode||!!e.writableObjectMode),this.highWaterMark=h(this,e,"writableHighWaterMark",i),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var s=!1===e.decodeStrings;this.decodeStrings=!s,this.defaultEncoding=e.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(e){!function(e,t){var n=e._writableState,r=n.sync,o=n.writecb;if("function"!=typeof o)throw new E;if(function(e){e.writing=!1,e.writecb=null,e.length-=e.writelen,e.writelen=0}(n),t)!function(e,t,n,r,o){--t.pendingcb,n?(process.nextTick(o,r),process.nextTick(C,e,t),e._writableState.errorEmitted=!0,v(e,r)):(o(r),e._writableState.errorEmitted=!0,v(e,r),C(e,t))}(e,n,r,t,o);else{var i=I(n)||e.destroyed;i||n.corked||n.bufferProcessing||!n.bufferedRequest||S(e,n),r?process.nextTick(R,e,n,i,o):R(e,n,i,o)}}(t,e)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==e.emitClose,this.autoDestroy=!!e.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new r(this)}function w(e){var t=this instanceof(o=o||n(49165));if(!t&&!i.call(w,this))return new w(e);this._writableState=new T(e,this,t),this.writable=!0,e&&("function"==typeof e.write&&(this._write=e.write),"function"==typeof e.writev&&(this._writev=e.writev),"function"==typeof e.destroy&&(this._destroy=e.destroy),"function"==typeof e.final&&(this._final=e.final)),a.call(this)}function O(e,t,n,r,o,i,s){t.writelen=r,t.writecb=s,t.writing=!0,t.sync=!0,t.destroyed?t.onwrite(new _("write")):n?e._writev(o,t.onwrite):e._write(o,i,t.onwrite),t.sync=!1}function R(e,t,n,r){n||function(e,t){0===t.length&&t.needDrain&&(t.needDrain=!1,e.emit("drain"))}(e,t),t.pendingcb--,r(),C(e,t)}function S(e,t){t.bufferProcessing=!0;var n=t.bufferedRequest;if(e._writev&&n&&n.next){var o=t.bufferedRequestCount,i=new Array(o),s=t.corkedRequestsFree;s.entry=n;for(var a=0,u=!0;n;)i[a]=n,n.isBuf||(u=!1),n=n.next,a+=1;i.allBuffers=u,O(e,t,!0,t.length,i,"",s.finish),t.pendingcb++,t.lastBufferedRequest=null,s.next?(t.corkedRequestsFree=s.next,s.next=null):t.corkedRequestsFree=new r(t),t.bufferedRequestCount=0}else{for(;n;){var c=n.chunk,l=n.encoding,h=n.callback;if(O(e,t,!1,t.objectMode?1:c.length,c,l,h),n=n.next,t.bufferedRequestCount--,t.writing)break}null===n&&(t.lastBufferedRequest=null)}t.bufferedRequest=n,t.bufferProcessing=!1}function I(e){return e.ending&&0===e.length&&null===e.bufferedRequest&&!e.finished&&!e.writing}function N(e,t){e._final((function(n){t.pendingcb--,n&&v(e,n),t.prefinished=!0,e.emit("prefinish"),C(e,t)}))}function C(e,t){var n=I(t);if(n&&(function(e,t){t.prefinished||t.finalCalled||("function"!=typeof e._final||t.destroyed?(t.prefinished=!0,e.emit("prefinish")):(t.pendingcb++,t.finalCalled=!0,process.nextTick(N,e,t)))}(e,t),0===t.pendingcb&&(t.finished=!0,e.emit("finish"),t.autoDestroy))){var r=e._readableState;(!r||r.autoDestroy&&r.endEmitted)&&e.destroy()}return n}n(72017)(w,a),T.prototype.getBuffer=function(){for(var e=this.bufferedRequest,t=[];e;)t.push(e),e=e.next;return t},function(){try{Object.defineProperty(T.prototype,"buffer",{get:s.deprecate((function(){return this.getBuffer()}),"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(e){}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(i=Function.prototype[Symbol.hasInstance],Object.defineProperty(w,Symbol.hasInstance,{value:function(e){return!!i.call(this,e)||this===w&&e&&e._writableState instanceof T}})):i=function(e){return e instanceof this},w.prototype.pipe=function(){v(this,new m)},w.prototype.write=function(e,t,n){var r,o=this._writableState,i=!1,s=!o.objectMode&&(r=e,u.isBuffer(r)||r instanceof c);return s&&!u.isBuffer(e)&&(e=function(e){return u.from(e)}(e)),"function"==typeof t&&(n=t,t=null),s?t="buffer":t||(t=o.defaultEncoding),"function"!=typeof n&&(n=b),o.ending?function(e,t){var n=new y;v(e,n),process.nextTick(t,n)}(this,n):(s||function(e,t,n,r){var o;return null===n?o=new g:"string"==typeof n||t.objectMode||(o=new p("chunk",["string","Buffer"],n)),!o||(v(e,o),process.nextTick(r,o),!1)}(this,o,e,n))&&(o.pendingcb++,i=function(e,t,n,r,o,i){if(!n){var s=function(e,t,n){return e.objectMode||!1===e.decodeStrings||"string"!=typeof t||(t=u.from(t,n)),t}(t,r,o);r!==s&&(n=!0,o="buffer",r=s)}var a=t.objectMode?1:r.length;t.length+=a;var c=t.length-1))throw new A(e);return this._writableState.defaultEncoding=e,this},Object.defineProperty(w.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(w.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),w.prototype._write=function(e,t,n){n(new d("_write()"))},w.prototype._writev=null,w.prototype.end=function(e,t,n){var r=this._writableState;return"function"==typeof e?(n=e,e=null,t=null):"function"==typeof t&&(n=t,t=null),null!=e&&this.write(e,t),r.corked&&(r.corked=1,this.uncork()),r.ending||function(e,t,n){t.ending=!0,C(e,t),n&&(t.finished?process.nextTick(n):e.once("finish",n)),t.ended=!0,e.writable=!1}(this,r,n),this},Object.defineProperty(w.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(w.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}}),w.prototype.destroy=l.destroy,w.prototype._undestroy=l.undestroy,w.prototype._destroy=function(e,t){t(e)}},74994:(e,t,n)=>{"use strict";var r;function o(e,t,n){return(t=function(e){var t=function(e,t){if("object"!=typeof e||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,"string");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==typeof t?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var i=n(24329),s=Symbol("lastResolve"),a=Symbol("lastReject"),u=Symbol("error"),c=Symbol("ended"),l=Symbol("lastPromise"),h=Symbol("handlePromise"),f=Symbol("stream");function p(e,t){return{value:e,done:t}}function d(e){var t=e[s];if(null!==t){var n=e[f].read();null!==n&&(e[l]=null,e[s]=null,e[a]=null,t(p(n,!1)))}}function E(e){process.nextTick(d,e)}var m=Object.getPrototypeOf((function(){})),_=Object.setPrototypeOf((o(r={get stream(){return this[f]},next:function(){var e=this,t=this[u];if(null!==t)return Promise.reject(t);if(this[c])return Promise.resolve(p(void 0,!0));if(this[f].destroyed)return new Promise((function(t,n){process.nextTick((function(){e[u]?n(e[u]):t(p(void 0,!0))}))}));var n,r=this[l];if(r)n=new Promise(function(e,t){return function(n,r){e.then((function(){t[c]?n(p(void 0,!0)):t[h](n,r)}),r)}}(r,this));else{var o=this[f].read();if(null!==o)return Promise.resolve(p(o,!1));n=new Promise(this[h])}return this[l]=n,n}},Symbol.asyncIterator,(function(){return this})),o(r,"return",(function(){var e=this;return new Promise((function(t,n){e[f].destroy(null,(function(e){e?n(e):t(p(void 0,!0))}))}))})),r),m);e.exports=function(e){var t,n=Object.create(_,(o(t={},f,{value:e,writable:!0}),o(t,s,{value:null,writable:!0}),o(t,a,{value:null,writable:!0}),o(t,u,{value:null,writable:!0}),o(t,c,{value:e._readableState.endEmitted,writable:!0}),o(t,h,{value:function(e,t){var r=n[f].read();r?(n[l]=null,n[s]=null,n[a]=null,e(p(r,!1))):(n[s]=e,n[a]=t)},writable:!0}),t));return n[l]=null,i(e,(function(e){if(e&&"ERR_STREAM_PREMATURE_CLOSE"!==e.code){var t=n[a];return null!==t&&(n[l]=null,n[s]=null,n[a]=null,t(e)),void(n[u]=e)}var r=n[s];null!==r&&(n[l]=null,n[s]=null,n[a]=null,r(p(void 0,!0))),n[c]=!0})),e.on("readable",E.bind(null,n)),n}},10686:(e,t,n)=>{"use strict";function r(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function o(e){for(var t=1;t0?this.tail.next=t:this.head=t,this.tail=t,++this.length}},{key:"unshift",value:function(e){var t={data:e,next:this.head};0===this.length&&(this.tail=t),this.head=t,++this.length}},{key:"shift",value:function(){if(0!==this.length){var e=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,e}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(e){if(0===this.length)return"";for(var t=this.head,n=""+t.data;t=t.next;)n+=e+t.data;return n}},{key:"concat",value:function(e){if(0===this.length)return u.alloc(0);for(var t,n,r,o=u.allocUnsafe(e>>>0),i=this.head,s=0;i;)t=i.data,n=o,r=s,u.prototype.copy.call(t,n,r),s+=i.data.length,i=i.next;return o}},{key:"consume",value:function(e,t){var n;return eo.length?o.length:e;if(i===o.length?r+=o:r+=o.slice(0,e),0==(e-=i)){i===o.length?(++n,t.next?this.head=t.next:this.head=this.tail=null):(this.head=t,t.data=o.slice(i));break}++n}return this.length-=n,r}},{key:"_getBuffer",value:function(e){var t=u.allocUnsafe(e),n=this.head,r=1;for(n.data.copy(t),e-=n.data.length;n=n.next;){var o=n.data,i=e>o.length?o.length:e;if(o.copy(t,t.length-e,0,i),0==(e-=i)){i===o.length?(++r,n.next?this.head=n.next:this.head=this.tail=null):(this.head=n,n.data=o.slice(i));break}++r}return this.length-=r,t}},{key:l,value:function(e,t){return c(this,o(o({},t),{},{depth:0,customInspect:!1}))}}])&&s(t.prototype,n),Object.defineProperty(t,"prototype",{writable:!1}),e}()},48787:e=>{"use strict";function t(e,t){r(e,t),n(e)}function n(e){e._writableState&&!e._writableState.emitClose||e._readableState&&!e._readableState.emitClose||e.emit("close")}function r(e,t){e.emit("error",t)}e.exports={destroy:function(e,o){var i=this,s=this._readableState&&this._readableState.destroyed,a=this._writableState&&this._writableState.destroyed;return s||a?(o?o(e):e&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(r,this,e)):process.nextTick(r,this,e)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(e||null,(function(e){!o&&e?i._writableState?i._writableState.errorEmitted?process.nextTick(n,i):(i._writableState.errorEmitted=!0,process.nextTick(t,i,e)):process.nextTick(t,i,e):o?(process.nextTick(n,i),o(e)):process.nextTick(n,i)})),this)},undestroy:function(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function(e,t){var n=e._readableState,r=e._writableState;n&&n.autoDestroy||r&&r.autoDestroy?e.destroy(t):e.emit("error",t)}}},24329:(e,t,n)=>{"use strict";var r=n(2766).F.ERR_STREAM_PREMATURE_CLOSE;function o(){}e.exports=function e(t,n,i){if("function"==typeof n)return e(t,null,n);n||(n={}),i=function(e){var t=!1;return function(){if(!t){t=!0;for(var n=arguments.length,r=new Array(n),o=0;o{"use strict";function r(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function i(e,t,n){return(t=function(e){var t=function(e,t){if("object"!=typeof e||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,"string");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==typeof t?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var s=n(2766).F.ERR_INVALID_ARG_TYPE;e.exports=function(e,t,n){var a;if(t&&"function"==typeof t.next)a=t;else if(t&&t[Symbol.asyncIterator])a=t[Symbol.asyncIterator]();else{if(!t||!t[Symbol.iterator])throw new s("iterable",["Iterable"],t);a=t[Symbol.iterator]()}var u=new e(function(e){for(var t=1;t{"use strict";var r,o=n(2766).F,i=o.ERR_MISSING_ARGS,s=o.ERR_STREAM_DESTROYED;function a(e){if(e)throw e}function u(e){e()}function c(e,t){return e.pipe(t)}e.exports=function(){for(var e=arguments.length,t=new Array(e),o=0;o0,(function(e){l||(l=e),e&&f.forEach(u),i||(f.forEach(u),h(l))}))}));return t.reduce(c)}},16316:(e,t,n)=>{"use strict";var r=n(2766).F.ERR_INVALID_OPT_VALUE;e.exports={getHighWaterMark:function(e,t,n,o){var i=function(e,t,n){return null!=e.highWaterMark?e.highWaterMark:t?e[n]:null}(t,o,n);if(null!=i){if(!isFinite(i)||Math.floor(i)!==i||i<0)throw new r(o?n:"highWaterMark",i);return Math.floor(i)}return e.objectMode?16:16384}}},51821:(e,t,n)=>{e.exports=n(2203)},28721:(e,t,n)=>{var r=n(2203);"disable"===process.env.READABLE_STREAM&&r?(e.exports=r.Readable,Object.assign(e.exports,r),e.exports.Stream=r):((t=e.exports=n(77507)).Stream=r||t,t.Readable=t,t.Writable=n(14711),t.Duplex=n(49165),t.Transform=n(23251),t.PassThrough=n(43337),t.finished=n(24329),t.pipeline=n(87115))},25648:(e,t,n)=>{var r=n(20181),o=r.Buffer;function i(e,t){for(var n in e)t[n]=e[n]}function s(e,t,n){return o(e,t,n)}o.from&&o.alloc&&o.allocUnsafe&&o.allocUnsafeSlow?e.exports=r:(i(r,t),t.Buffer=s),s.prototype=Object.create(o.prototype),i(o,s),s.from=function(e,t,n){if("number"==typeof e)throw new TypeError("Argument must not be a number");return o(e,t,n)},s.alloc=function(e,t,n){if("number"!=typeof e)throw new TypeError("Argument must be a number");var r=o(e);return void 0!==t?"string"==typeof n?r.fill(t,n):r.fill(t):r.fill(0),r},s.allocUnsafe=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return o(e)},s.allocUnsafeSlow=function(e){if("number"!=typeof e)throw new TypeError("Argument must be a number");return r.SlowBuffer(e)}},43795:(e,t,n)=>{var r;!function(){"use strict";var o={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function i(e){return function(e,t){var n,r,s,a,u,c,l,h,f,p=1,d=e.length,E="";for(r=0;r=0),a.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,a.width?parseInt(a.width):0);break;case"e":n=a.precision?parseFloat(n).toExponential(a.precision):parseFloat(n).toExponential();break;case"f":n=a.precision?parseFloat(n).toFixed(a.precision):parseFloat(n);break;case"g":n=a.precision?String(Number(n.toPrecision(a.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=a.precision?n.substring(0,a.precision):n;break;case"t":n=String(!!n),n=a.precision?n.substring(0,a.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=a.precision?n.substring(0,a.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=a.precision?n.substring(0,a.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}o.json.test(a.type)?E+=n:(!o.number.test(a.type)||h&&!a.sign?f="":(f=h?"+":"-",n=n.toString().replace(o.sign,"")),c=a.pad_char?"0"===a.pad_char?"0":a.pad_char.charAt(1):" ",l=a.width-(f+n).length,u=a.width&&l>0?c.repeat(l):"",E+=a.align?f+n+u:"0"===c?f+u+n:u+f+n)}return E}(function(e){if(a[e])return a[e];for(var t,n=e,r=[],i=0;n;){if(null!==(t=o.text.exec(n)))r.push(t[0]);else if(null!==(t=o.modulo.exec(n)))r.push("%");else{if(null===(t=o.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){i|=1;var s=[],u=t[2],c=[];if(null===(c=o.key.exec(u)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(s.push(c[1]);""!==(u=u.substring(c[0].length));)if(null!==(c=o.key_access.exec(u)))s.push(c[1]);else{if(null===(c=o.index_access.exec(u)))throw new SyntaxError("[sprintf] failed to parse named argument key");s.push(c[1])}t[2]=s}else i|=2;if(3===i)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");r.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return a[e]=r}(e),arguments)}function s(e,t){return i.apply(null,[e].concat(t||[]))}var a=Object.create(null);t.sprintf=i,t.vsprintf=s,"undefined"!=typeof window&&(window.sprintf=i,window.vsprintf=s,void 0===(r=function(){return{sprintf:i,vsprintf:s}}.call(t,n,t,e))||(e.exports=r))}()},63924:(e,t,n)=>{"use strict";var r=n(25648).Buffer,o=r.isEncoding||function(e){switch((e=""+e)&&e.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function i(e){var t;switch(this.encoding=function(e){var t=function(e){if(!e)return"utf8";for(var t;;)switch(e){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return e;default:if(t)return;e=(""+e).toLowerCase(),t=!0}}(e);if("string"!=typeof t&&(r.isEncoding===o||!o(e)))throw new Error("Unknown encoding: "+e);return t||e}(e),this.encoding){case"utf16le":this.text=u,this.end=c,t=4;break;case"utf8":this.fillLast=a,t=4;break;case"base64":this.text=l,this.end=h,t=3;break;default:return this.write=f,void(this.end=p)}this.lastNeed=0,this.lastTotal=0,this.lastChar=r.allocUnsafe(t)}function s(e){return e<=127?0:e>>5==6?2:e>>4==14?3:e>>3==30?4:e>>6==2?-1:-2}function a(e){var t=this.lastTotal-this.lastNeed,n=function(e,t,n){if(128!=(192&t[0]))return e.lastNeed=0,"�";if(e.lastNeed>1&&t.length>1){if(128!=(192&t[1]))return e.lastNeed=1,"�";if(e.lastNeed>2&&t.length>2&&128!=(192&t[2]))return e.lastNeed=2,"�"}}(this,e);return void 0!==n?n:this.lastNeed<=e.length?(e.copy(this.lastChar,t,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(e.copy(this.lastChar,t,0,e.length),void(this.lastNeed-=e.length))}function u(e,t){if((e.length-t)%2==0){var n=e.toString("utf16le",t);if(n){var r=n.charCodeAt(n.length-1);if(r>=55296&&r<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1],n.slice(0,-1)}return n}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=e[e.length-1],e.toString("utf16le",t,e.length-1)}function c(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,n)}return t}function l(e,t){var n=(e.length-t)%3;return 0===n?e.toString("base64",t):(this.lastNeed=3-n,this.lastTotal=3,1===n?this.lastChar[0]=e[e.length-1]:(this.lastChar[0]=e[e.length-2],this.lastChar[1]=e[e.length-1]),e.toString("base64",t,e.length-n))}function h(e){var t=e&&e.length?this.write(e):"";return this.lastNeed?t+this.lastChar.toString("base64",0,3-this.lastNeed):t}function f(e){return e.toString(this.encoding)}function p(e){return e&&e.length?this.write(e):""}t.I=i,i.prototype.write=function(e){if(0===e.length)return"";var t,n;if(this.lastNeed){if(void 0===(t=this.fillLast(e)))return"";n=this.lastNeed,this.lastNeed=0}else n=0;return n=0?(o>0&&(e.lastNeed=o-1),o):--r=0?(o>0&&(e.lastNeed=o-2),o):--r=0?(o>0&&(2===o?o=0:e.lastNeed=o-3),o):0}(this,e,t);if(!this.lastNeed)return e.toString("utf8",t);this.lastTotal=n;var r=e.length-(n-this.lastNeed);return e.copy(this.lastChar,0,r),e.toString("utf8",t,r)},i.prototype.fillLast=function(e){if(this.lastNeed<=e.length)return e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);e.copy(this.lastChar,this.lastTotal-this.lastNeed,0,e.length),this.lastNeed-=e.length}},36673:(e,t,n)=>{"use strict";const r=n(48379),o=n(80378),i=n(92472),{STATUS_MAPPING:s}=n(18445);function a(e,{useSTD3ASCIIRules:t}){let n=0,r=i.length-1;for(;n<=r;){const o=Math.floor((n+r)/2),a=i[o],u=Array.isArray(a[0])?a[0][0]:a[0],c=Array.isArray(a[0])?a[0][1]:a[0];if(u<=e&&c>=e)return!t||a[1]!==s.disallowed_STD3_valid&&a[1]!==s.disallowed_STD3_mapped?a[1]===s.disallowed_STD3_valid?[s.valid,...a.slice(2)]:a[1]===s.disallowed_STD3_mapped?[s.mapped,...a.slice(2)]:a.slice(1):[s.disallowed,...a.slice(2)];u>e?r=o-1:n=o+1}return null}function u(e,{checkHyphens:t,checkBidi:n,checkJoiners:r,processingOption:i,useSTD3ASCIIRules:u}){if(e.normalize("NFC")!==e)return!1;const c=Array.from(e);if(t&&("-"===c[2]&&"-"===c[3]||e.startsWith("-")||e.endsWith("-")))return!1;if(e.includes(".")||c.length>0&&o.combiningMarks.test(c[0]))return!1;for(const e of c){const[t]=a(e.codePointAt(0),{useSTD3ASCIIRules:u});if("transitional"===i&&t!==s.valid||"nontransitional"===i&&t!==s.valid&&t!==s.deviation)return!1}if(r){let e=0;for(const[t,n]of c.entries())if("‌"===n||"‍"===n){if(t>0){if(o.combiningClassVirama.test(c[t-1]))continue;if("‌"===n){const n=c.indexOf("‌",t+1),r=n<0?c.slice(e):c.slice(e,n);if(o.validZWNJ.test(r.join(""))){e=t+1;continue}}}return!1}}if(n&&c.length>0){let t;if(o.bidiS1LTR.test(c[0]))t=!1;else{if(!o.bidiS1RTL.test(c[0]))return!1;t=!0}if(t){if(!o.bidiS2.test(e)||!o.bidiS3.test(e)||o.bidiS4EN.test(e)&&o.bidiS4AN.test(e))return!1}else if(!o.bidiS5.test(e)||!o.bidiS6.test(e))return!1}return!0}function c(e,t){const{processingOption:n}=t;let{string:i,error:c}=function(e,{useSTD3ASCIIRules:t,processingOption:n}){let r=!1,o="";for(const i of e){const[e,u]=a(i.codePointAt(0),{useSTD3ASCIIRules:t});switch(e){case s.disallowed:r=!0,o+=i;break;case s.ignored:break;case s.mapped:o+=u;break;case s.deviation:o+="transitional"===n?u:i;break;case s.valid:o+=i}}return{string:o,error:r}}(e,t);i=i.normalize("NFC");const l=i.split("."),h=function(e){const t=e.map((e=>{if(e.startsWith("xn--"))try{return r.decode(e.substring(4))}catch(e){return""}return e})).join(".");return o.bidiDomain.test(t)}(l);for(const[e,o]of l.entries()){let i=o,s=n;if(i.startsWith("xn--")){try{i=r.decode(i.substring(4)),l[e]=i}catch(e){c=!0;continue}s="nontransitional"}c||(u(i,{...t,processingOption:s,checkBidi:t.checkBidi&&h})||(c=!0))}return{string:l.join("."),error:c}}e.exports={toASCII:function(e,{checkHyphens:t=!1,checkBidi:n=!1,checkJoiners:o=!1,useSTD3ASCIIRules:i=!1,processingOption:s="nontransitional",verifyDNSLength:a=!1}={}){if("transitional"!==s&&"nontransitional"!==s)throw new RangeError("processingOption must be either transitional or nontransitional");const u=c(e,{processingOption:s,checkHyphens:t,checkBidi:n,checkJoiners:o,useSTD3ASCIIRules:i});let l=u.string.split(".");if(l=l.map((e=>{if(/[^\x00-\x7F]/u.test(e))try{return`xn--${r.encode(e)}`}catch(e){u.error=!0}return e})),a){const e=l.join(".").length;(e>253||0===e)&&(u.error=!0);for(let e=0;e63||0===l[e].length){u.error=!0;break}}return u.error?null:l.join(".")},toUnicode:function(e,{checkHyphens:t=!1,checkBidi:n=!1,checkJoiners:r=!1,useSTD3ASCIIRules:o=!1,processingOption:i="nontransitional"}={}){const s=c(e,{processingOption:i,checkHyphens:t,checkBidi:n,checkJoiners:r,useSTD3ASCIIRules:o});return{domain:s.string,error:s.error}}}},80378:e=>{"use strict";e.exports={combiningMarks:/[\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09FE\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B62\u0B63\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0C00-\u0C04\u0C3C\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0CF3\u0D00-\u0D03\u0D3B\u0D3C\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D81-\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0F18\u0F19\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F\u109A-\u109D\u135D-\u135F\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u192B\u1930-\u193B\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B04\u1B34-\u1B44\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BE6-\u1BF3\u1C24-\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF4\u1CF7-\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA82C\uA880\uA881\uA8B4-\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9E5\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10EFD}-\u{10EFF}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11000}-\u{11002}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11082}\u{110B0}-\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{11134}\u{11145}\u{11146}\u{11173}\u{11180}-\u{11182}\u{111B3}-\u{111C0}\u{111C9}-\u{111CC}\u{111CE}\u{111CF}\u{1122C}-\u{11237}\u{1123E}\u{11241}\u{112DF}-\u{112EA}\u{11300}-\u{11303}\u{1133B}\u{1133C}\u{1133E}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11357}\u{11362}\u{11363}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11435}-\u{11446}\u{1145E}\u{114B0}-\u{114C3}\u{115AF}-\u{115B5}\u{115B8}-\u{115C0}\u{115DC}\u{115DD}\u{11630}-\u{11640}\u{116AB}-\u{116B7}\u{1171D}-\u{1172B}\u{1182C}-\u{1183A}\u{11930}-\u{11935}\u{11937}\u{11938}\u{1193B}-\u{1193E}\u{11940}\u{11942}\u{11943}\u{119D1}-\u{119D7}\u{119DA}-\u{119E0}\u{119E4}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A39}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A5B}\u{11A8A}-\u{11A99}\u{11C2F}-\u{11C36}\u{11C38}-\u{11C3F}\u{11C92}-\u{11CA7}\u{11CA9}-\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D8A}-\u{11D8E}\u{11D90}\u{11D91}\u{11D93}-\u{11D97}\u{11EF3}-\u{11EF6}\u{11F00}\u{11F01}\u{11F03}\u{11F34}-\u{11F3A}\u{11F3E}-\u{11F42}\u{13440}\u{13447}-\u{13455}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F51}-\u{16F87}\u{16F8F}-\u{16F92}\u{16FE4}\u{16FF0}\u{16FF1}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D165}-\u{1D169}\u{1D16D}-\u{1D172}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E08F}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E4EC}-\u{1E4EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]/u,combiningClassVirama:/[\u094D\u09CD\u0A4D\u0ACD\u0B4D\u0BCD\u0C4D\u0CCD\u0D3B\u0D3C\u0D4D\u0DCA\u0E3A\u0EBA\u0F84\u1039\u103A\u1714\u1734\u17D2\u1A60\u1B44\u1BAA\u1BAB\u1BF2\u1BF3\u2D7F\uA806\uA8C4\uA953\uA9C0\uAAF6\uABED\u{10A3F}\u{11046}\u{1107F}\u{110B9}\u{11133}\u{11134}\u{111C0}\u{11235}\u{112EA}\u{1134D}\u{11442}\u{114C2}\u{115BF}\u{1163F}\u{116B6}\u{1172B}\u{11839}\u{119E0}\u{11A34}\u{11A47}\u{11A99}\u{11C3F}\u{11D44}\u{11D45}\u{11D97}]/u,validZWNJ:/[\u0620\u0626\u0628\u062A-\u062E\u0633-\u063F\u0641-\u0647\u0649\u064A\u066E\u066F\u0678-\u0687\u069A-\u06BF\u06C1\u06C2\u06CC\u06CE\u06D0\u06D1\u06FA-\u06FC\u06FF\u0712-\u0714\u071A-\u071D\u071F-\u0727\u0729\u072B\u072D\u072E\u074E-\u0758\u075C-\u076A\u076D-\u0770\u0772\u0775-\u0777\u077A-\u077F\u07CA-\u07EA\u0841-\u0845\u0848\u084A-\u0853\u0855\u0860\u0862-\u0865\u0868\u08A0-\u08A9\u08AF\u08B0\u08B3\u08B4\u08B6-\u08B8\u08BA-\u08BD\u1807\u1820-\u1878\u1887-\u18A8\u18AA\uA840-\uA872\u{10AC0}-\u{10AC4}\u{10ACD}\u{10AD3}-\u{10ADC}\u{10ADE}-\u{10AE0}\u{10AEB}-\u{10AEE}\u{10B80}\u{10B82}\u{10B86}-\u{10B88}\u{10B8A}\u{10B8B}\u{10B8D}\u{10B90}\u{10BAD}\u{10BAE}\u{10D00}-\u{10D21}\u{10D23}\u{10F30}-\u{10F32}\u{10F34}-\u{10F44}\u{10F51}-\u{10F53}\u{1E900}-\u{1E943}][\xAD\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u061C\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u070F\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08D3-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CBF\u0CC6\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ABE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DF9\u1DFB-\u1DFF\u200B\u200E\u200F\u202A-\u202E\u2060-\u2064\u206A-\u206F\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFEFF\uFFF9-\uFFFB\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10F46}-\u{10F50}\u{11001}\u{11038}-\u{11046}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C3F}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{13430}-\u{13438}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94B}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*\u200C[\xAD\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u061C\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u070F\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u08D3-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CBF\u0CC6\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ABE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DF9\u1DFB-\u1DFF\u200B\u200E\u200F\u202A-\u202E\u2060-\u2064\u206A-\u206F\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFEFF\uFFF9-\uFFFB\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10F46}-\u{10F50}\u{11001}\u{11038}-\u{11046}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C3F}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{13430}-\u{13438}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E130}-\u{1E136}\u{1E2EC}-\u{1E2EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94B}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*[\u0620\u0622-\u063F\u0641-\u064A\u066E\u066F\u0671-\u0673\u0675-\u06D3\u06D5\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u077F\u07CA-\u07EA\u0840-\u0855\u0860\u0862-\u0865\u0867-\u086A\u08A0-\u08AC\u08AE-\u08B4\u08B6-\u08BD\u1807\u1820-\u1878\u1887-\u18A8\u18AA\uA840-\uA871\u{10AC0}-\u{10AC5}\u{10AC7}\u{10AC9}\u{10ACA}\u{10ACE}-\u{10AD6}\u{10AD8}-\u{10AE1}\u{10AE4}\u{10AEB}-\u{10AEF}\u{10B80}-\u{10B91}\u{10BA9}-\u{10BAE}\u{10D01}-\u{10D23}\u{10F30}-\u{10F44}\u{10F51}-\u{10F54}\u{1E900}-\u{1E943}]/u,bidiDomain:/[\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0600-\u0605\u0608\u060B\u060D\u061B-\u064A\u0660-\u0669\u066B-\u066F\u0671-\u06D5\u06DD\u06E5\u06E6\u06EE\u06EF\u06FA-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u08A0-\u08C9\u08E2\u200F\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}]/u,bidiS1LTR:/[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02B8\u02BB-\u02C1\u02D0\u02D1\u02E0-\u02E4\u02EE\u0370-\u0373\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0482\u048A-\u052F\u0531-\u0556\u0559-\u0589\u0903-\u0939\u093B\u093D-\u0940\u0949-\u094C\u094E-\u0950\u0958-\u0961\u0964-\u0980\u0982\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD-\u09C0\u09C7\u09C8\u09CB\u09CC\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09FA\u09FC\u09FD\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3E-\u0A40\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A76\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD-\u0AC0\u0AC9\u0ACB\u0ACC\u0AD0\u0AE0\u0AE1\u0AE6-\u0AF0\u0AF9\u0B02\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B3E\u0B40\u0B47\u0B48\u0B4B\u0B4C\u0B57\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE\u0BBF\u0BC1\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCC\u0BD0\u0BD7\u0BE6-\u0BF2\u0C01-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C41-\u0C44\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C77\u0C7F\u0C80\u0C82-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD-\u0CC4\u0CC6-\u0CC8\u0CCA\u0CCB\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1-\u0CF3\u0D02-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D40\u0D46-\u0D48\u0D4A-\u0D4C\u0D4E\u0D4F\u0D54-\u0D61\u0D66-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCF-\u0DD1\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E4F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F17\u0F1A-\u0F34\u0F36\u0F38\u0F3E-\u0F47\u0F49-\u0F6C\u0F7F\u0F85\u0F88-\u0F8C\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE-\u0FDA\u1000-\u102C\u1031\u1038\u103B\u103C\u103F-\u1057\u105A-\u105D\u1061-\u1070\u1075-\u1081\u1083\u1084\u1087-\u108C\u108E-\u109C\u109E-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1360-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u167F\u1681-\u169A\u16A0-\u16F8\u1700-\u1711\u1715\u171F-\u1731\u1734-\u1736\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17B6\u17BE-\u17C5\u17C7\u17C8\u17D4-\u17DA\u17DC\u17E0-\u17E9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1923-\u1926\u1929-\u192B\u1930\u1931\u1933-\u1938\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A19\u1A1A\u1A1E-\u1A55\u1A57\u1A61\u1A63\u1A64\u1A6D-\u1A72\u1A80-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1B04-\u1B33\u1B35\u1B3B\u1B3D-\u1B41\u1B43-\u1B4C\u1B50-\u1B6A\u1B74-\u1B7E\u1B82-\u1BA1\u1BA6\u1BA7\u1BAA\u1BAE-\u1BE5\u1BE7\u1BEA-\u1BEC\u1BEE\u1BF2\u1BF3\u1BFC-\u1C2B\u1C34\u1C35\u1C3B-\u1C49\u1C4D-\u1C88\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD3\u1CE1\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5-\u1CF7\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200E\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u214F\u2160-\u2188\u2336-\u237A\u2395\u249C-\u24E9\u26AC\u2800-\u28FF\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u302E\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31BF\u31F0-\u321C\u3220-\u324F\u3260-\u327B\u327F-\u32B0\u32C0-\u32CB\u32D0-\u3376\u337B-\u33DD\u33E0-\u33FE\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA60C\uA610-\uA62B\uA640-\uA66E\uA680-\uA69D\uA6A0-\uA6EF\uA6F2-\uA6F7\uA722-\uA787\uA789-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA824\uA827\uA830-\uA837\uA840-\uA873\uA880-\uA8C3\uA8CE-\uA8D9\uA8F2-\uA8FE\uA900-\uA925\uA92E-\uA946\uA952\uA953\uA95F-\uA97C\uA983-\uA9B2\uA9B4\uA9B5\uA9BA\uA9BB\uA9BE-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA2F\uAA30\uAA33\uAA34\uAA40-\uAA42\uAA44-\uAA4B\uAA4D\uAA50-\uAA59\uAA5C-\uAA7B\uAA7D-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAAEB\uAAEE-\uAAF5\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB69\uAB70-\uABE4\uABE6\uABE7\uABE9-\uABEC\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1013F}\u{1018D}\u{1018E}\u{101D0}-\u{101FC}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{11000}\u{11002}-\u{11037}\u{11047}-\u{1104D}\u{11066}-\u{1106F}\u{11071}\u{11072}\u{11075}\u{11082}-\u{110B2}\u{110B7}\u{110B8}\u{110BB}-\u{110C1}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11103}-\u{11126}\u{1112C}\u{11136}-\u{11147}\u{11150}-\u{11172}\u{11174}-\u{11176}\u{11182}-\u{111B5}\u{111BF}-\u{111C8}\u{111CD}\u{111CE}\u{111D0}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{1122E}\u{11232}\u{11233}\u{11235}\u{11238}-\u{1123D}\u{1123F}\u{11240}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112DE}\u{112E0}-\u{112E2}\u{112F0}-\u{112F9}\u{11302}\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}-\u{1133F}\u{11341}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11400}-\u{11437}\u{11440}\u{11441}\u{11445}\u{11447}-\u{1145B}\u{1145D}\u{1145F}-\u{11461}\u{11480}-\u{114B2}\u{114B9}\u{114BB}-\u{114BE}\u{114C1}\u{114C4}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B1}\u{115B8}-\u{115BB}\u{115BE}\u{115C1}-\u{115DB}\u{11600}-\u{11632}\u{1163B}\u{1163C}\u{1163E}\u{11641}-\u{11644}\u{11650}-\u{11659}\u{11680}-\u{116AA}\u{116AC}\u{116AE}\u{116AF}\u{116B6}\u{116B8}\u{116B9}\u{116C0}-\u{116C9}\u{11700}-\u{1171A}\u{11720}\u{11721}\u{11726}\u{11730}-\u{11746}\u{11800}-\u{1182E}\u{11838}\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193D}\u{1193F}-\u{11942}\u{11944}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D3}\u{119DC}-\u{119DF}\u{119E1}-\u{119E4}\u{11A00}\u{11A07}\u{11A08}\u{11A0B}-\u{11A32}\u{11A39}\u{11A3A}\u{11A3F}-\u{11A46}\u{11A50}\u{11A57}\u{11A58}\u{11A5C}-\u{11A89}\u{11A97}\u{11A9A}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11B00}-\u{11B09}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2F}\u{11C3E}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11CA9}\u{11CB1}\u{11CB4}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D93}\u{11D94}\u{11D96}\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF2}\u{11EF5}-\u{11EF8}\u{11F02}-\u{11F10}\u{11F12}-\u{11F35}\u{11F3E}\u{11F3F}\u{11F41}\u{11F43}-\u{11F59}\u{11FB0}\u{11FC0}-\u{11FD4}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{1343F}\u{13441}-\u{13446}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF5}\u{16B00}-\u{16B2F}\u{16B37}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F50}-\u{16F87}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B132}\u{1B150}-\u{1B152}\u{1B155}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}\u{1BC9F}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D166}\u{1D16A}-\u{1D172}\u{1D183}\u{1D184}\u{1D18C}-\u{1D1A9}\u{1D1AE}-\u{1D1E8}\u{1D2C0}-\u{1D2D3}\u{1D2E0}-\u{1D2F3}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6DA}\u{1D6DC}-\u{1D714}\u{1D716}-\u{1D74E}\u{1D750}-\u{1D788}\u{1D78A}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1D800}-\u{1D9FF}\u{1DA37}-\u{1DA3A}\u{1DA6D}-\u{1DA74}\u{1DA76}-\u{1DA83}\u{1DA85}-\u{1DA8B}\u{1DF00}-\u{1DF1E}\u{1DF25}-\u{1DF2A}\u{1E030}-\u{1E06D}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E2F0}-\u{1E2F9}\u{1E4D0}-\u{1E4EB}\u{1E4F0}-\u{1E4F9}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1F110}-\u{1F12E}\u{1F130}-\u{1F169}\u{1F170}-\u{1F1AC}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B739}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{31350}-\u{323AF}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}]/u,bidiS1RTL:/[\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0608\u060B\u060D\u061B-\u064A\u066D-\u066F\u0671-\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u08A0-\u08C9\u200F\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}]/u,bidiS2:/^[\0-\x08\x0E-\x1B!-@\[-`\{-\x84\x86-\xA9\xAB-\xB4\xB6-\xB9\xBB-\xBF\xD7\xF7\u02B9\u02BA\u02C2-\u02CF\u02D2-\u02DF\u02E5-\u02ED\u02EF-\u036F\u0374\u0375\u037E\u0384\u0385\u0387\u03F6\u0483-\u0489\u058A\u058D-\u058F\u0591-\u05C7\u05D0-\u05EA\u05EF-\u05F4\u0600-\u070D\u070F-\u074A\u074D-\u07B1\u07C0-\u07FA\u07FD-\u082D\u0830-\u083E\u0840-\u085B\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u0898-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09F2\u09F3\u09FB\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AF1\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0BF3-\u0BFA\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C78-\u0C7E\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E3F\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0F18\u0F19\u0F35\u0F37\u0F39-\u0F3D\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1390-\u1399\u1400\u169B\u169C\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DB\u17DD\u17F0-\u17F9\u1800-\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1940\u1944\u1945\u19DE-\u19FF\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u1FBD\u1FBF-\u1FC1\u1FCD-\u1FCF\u1FDD-\u1FDF\u1FED-\u1FEF\u1FFD\u1FFE\u200B-\u200D\u200F-\u2027\u202F-\u205E\u2060-\u2064\u206A-\u2070\u2074-\u207E\u2080-\u208E\u20A0-\u20C0\u20D0-\u20F0\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u2150-\u215F\u2189-\u218B\u2190-\u2335\u237B-\u2394\u2396-\u2426\u2440-\u244A\u2460-\u249B\u24EA-\u26AB\u26AD-\u27FF\u2900-\u2B73\u2B76-\u2B95\u2B97-\u2BFF\u2CE5-\u2CEA\u2CEF-\u2CF1\u2CF9-\u2CFF\u2D7F\u2DE0-\u2E5D\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3001-\u3004\u3008-\u3020\u302A-\u302D\u3030\u3036\u3037\u303D-\u303F\u3099-\u309C\u30A0\u30FB\u31C0-\u31E3\u321D\u321E\u3250-\u325F\u327C-\u327E\u32B1-\u32BF\u32CC-\u32CF\u3377-\u337A\u33DE\u33DF\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA60D-\uA60F\uA66F-\uA67F\uA69E\uA69F\uA6F0\uA6F1\uA700-\uA721\uA788\uA802\uA806\uA80B\uA825\uA826\uA828-\uA82C\uA838\uA839\uA874-\uA877\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uAB6A\uAB6B\uABE5\uABE8\uABED\uFB1D-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD8F\uFD92-\uFDC7\uFDCF\uFDF0-\uFE19\uFE20-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFE70-\uFE74\uFE76-\uFEFC\uFEFF\uFF01-\uFF20\uFF3B-\uFF40\uFF5B-\uFF65\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFF9-\uFFFD\u{10101}\u{10140}-\u{1018C}\u{10190}-\u{1019C}\u{101A0}\u{101FD}\u{102E0}-\u{102FB}\u{10376}-\u{1037A}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{1091F}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A38}-\u{10A3A}\u{10A3F}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE6}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B39}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D27}\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAB}-\u{10EAD}\u{10EB0}\u{10EB1}\u{10EFD}-\u{10F27}\u{10F30}-\u{10F59}\u{10F70}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{11001}\u{11038}-\u{11046}\u{11052}-\u{11065}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{11241}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{11660}-\u{1166C}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{11F00}\u{11F01}\u{11F36}-\u{11F3A}\u{11F40}\u{11F42}\u{11FD5}-\u{11FF1}\u{13440}\u{13447}-\u{13455}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE2}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1BCA0}-\u{1BCA3}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D173}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D1E9}\u{1D1EA}\u{1D200}-\u{1D245}\u{1D300}-\u{1D356}\u{1D6DB}\u{1D715}\u{1D74F}\u{1D789}\u{1D7C3}\u{1D7CE}-\u{1D7FF}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E08F}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E2FF}\u{1E4EC}-\u{1E4EF}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8D6}\u{1E900}-\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{1EEF0}\u{1EEF1}\u{1F000}-\u{1F02B}\u{1F030}-\u{1F093}\u{1F0A0}-\u{1F0AE}\u{1F0B1}-\u{1F0BF}\u{1F0C1}-\u{1F0CF}\u{1F0D1}-\u{1F0F5}\u{1F100}-\u{1F10F}\u{1F12F}\u{1F16A}-\u{1F16F}\u{1F1AD}\u{1F260}-\u{1F265}\u{1F300}-\u{1F6D7}\u{1F6DC}-\u{1F6EC}\u{1F6F0}-\u{1F6FC}\u{1F700}-\u{1F776}\u{1F77B}-\u{1F7D9}\u{1F7E0}-\u{1F7EB}\u{1F7F0}\u{1F800}-\u{1F80B}\u{1F810}-\u{1F847}\u{1F850}-\u{1F859}\u{1F860}-\u{1F887}\u{1F890}-\u{1F8AD}\u{1F8B0}\u{1F8B1}\u{1F900}-\u{1FA53}\u{1FA60}-\u{1FA6D}\u{1FA70}-\u{1FA7C}\u{1FA80}-\u{1FA88}\u{1FA90}-\u{1FABD}\u{1FABF}-\u{1FAC5}\u{1FACE}-\u{1FADB}\u{1FAE0}-\u{1FAE8}\u{1FAF0}-\u{1FAF8}\u{1FB00}-\u{1FB92}\u{1FB94}-\u{1FBCA}\u{1FBF0}-\u{1FBF9}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}]*$/u,bidiS3:/[0-9\xB2\xB3\xB9\u05BE\u05C0\u05C3\u05C6\u05D0-\u05EA\u05EF-\u05F4\u0600-\u0605\u0608\u060B\u060D\u061B-\u064A\u0660-\u0669\u066B-\u066F\u0671-\u06D5\u06DD\u06E5\u06E6\u06EE-\u070D\u070F\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u07FE-\u0815\u081A\u0824\u0828\u0830-\u083E\u0840-\u0858\u085E\u0860-\u086A\u0870-\u088E\u0890\u0891\u08A0-\u08C9\u08E2\u200F\u2070\u2074-\u2079\u2080-\u2089\u2488-\u249B\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBC2\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFC\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\u{102E1}-\u{102FB}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10857}-\u{1089E}\u{108A7}-\u{108AF}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{108FB}-\u{1091B}\u{10920}-\u{10939}\u{1093F}\u{10980}-\u{109B7}\u{109BC}-\u{109CF}\u{109D2}-\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A40}-\u{10A48}\u{10A50}-\u{10A58}\u{10A60}-\u{10A9F}\u{10AC0}-\u{10AE4}\u{10AEB}-\u{10AF6}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B58}-\u{10B72}\u{10B78}-\u{10B91}\u{10B99}-\u{10B9C}\u{10BA9}-\u{10BAF}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10CFA}-\u{10D23}\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}\u{10E80}-\u{10EA9}\u{10EAD}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F27}\u{10F30}-\u{10F45}\u{10F51}-\u{10F59}\u{10F70}-\u{10F81}\u{10F86}-\u{10F89}\u{10FB0}-\u{10FCB}\u{10FE0}-\u{10FF6}\u{1D7CE}-\u{1D7FF}\u{1E800}-\u{1E8C4}\u{1E8C7}-\u{1E8CF}\u{1E900}-\u{1E943}\u{1E94B}\u{1E950}-\u{1E959}\u{1E95E}\u{1E95F}\u{1EC71}-\u{1ECB4}\u{1ED01}-\u{1ED3D}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{1F100}-\u{1F10A}\u{1FBF0}-\u{1FBF9}][\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA82C\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10EFD}-\u{10EFF}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11001}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{11241}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{11F00}\u{11F01}\u{11F36}-\u{11F3A}\u{11F40}\u{11F42}\u{13440}\u{13447}-\u{13455}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E08F}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E4EC}-\u{1E4EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]*$/u,bidiS4EN:/[0-9\xB2\xB3\xB9\u06F0-\u06F9\u2070\u2074-\u2079\u2080-\u2089\u2488-\u249B\uFF10-\uFF19\u{102E1}-\u{102FB}\u{1D7CE}-\u{1D7FF}\u{1F100}-\u{1F10A}\u{1FBF0}-\u{1FBF9}]/u,bidiS4AN:/[\u0600-\u0605\u0660-\u0669\u066B\u066C\u06DD\u0890\u0891\u08E2\u{10D30}-\u{10D39}\u{10E60}-\u{10E7E}]/u,bidiS5:/^[\0-\x08\x0E-\x1B!-\x84\x86-\u0377\u037A-\u037F\u0384-\u038A\u038C\u038E-\u03A1\u03A3-\u052F\u0531-\u0556\u0559-\u058A\u058D-\u058F\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0606\u0607\u0609\u060A\u060C\u060E-\u061A\u064B-\u065F\u066A\u0670\u06D6-\u06DC\u06DE-\u06E4\u06E7-\u06ED\u06F0-\u06F9\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07F6-\u07F9\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09FE\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A76\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AF1\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B77\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BFA\u0C00-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3C-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C5D\u0C60-\u0C63\u0C66-\u0C6F\u0C77-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1-\u0CF3\u0D00-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4F\u0D54-\u0D63\u0D66-\u0D7F\u0D81-\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E3A\u0E3F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECE\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F47\u0F49-\u0F6C\u0F71-\u0F97\u0F99-\u0FBC\u0FBE-\u0FCC\u0FCE-\u0FDA\u1000-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u137C\u1380-\u1399\u13A0-\u13F5\u13F8-\u13FD\u1400-\u167F\u1681-\u169C\u16A0-\u16F8\u1700-\u1715\u171F-\u1736\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17DD\u17E0-\u17E9\u17F0-\u17F9\u1800-\u1819\u1820-\u1878\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1940\u1944-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u19DE-\u1A1B\u1A1E-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1AB0-\u1ACE\u1B00-\u1B4C\u1B50-\u1B7E\u1B80-\u1BF3\u1BFC-\u1C37\u1C3B-\u1C49\u1C4D-\u1C88\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD0-\u1CFA\u1D00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FC4\u1FC6-\u1FD3\u1FD6-\u1FDB\u1FDD-\u1FEF\u1FF2-\u1FF4\u1FF6-\u1FFE\u200B-\u200E\u2010-\u2027\u202F-\u205E\u2060-\u2064\u206A-\u2071\u2074-\u208E\u2090-\u209C\u20A0-\u20C0\u20D0-\u20F0\u2100-\u218B\u2190-\u2426\u2440-\u244A\u2460-\u2B73\u2B76-\u2B95\u2B97-\u2CF3\u2CF9-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2E5D\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3001-\u303F\u3041-\u3096\u3099-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31E3\u31F0-\u321E\u3220-\uA48C\uA490-\uA4C6\uA4D0-\uA62B\uA640-\uA6F7\uA700-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA82C\uA830-\uA839\uA840-\uA877\uA880-\uA8C5\uA8CE-\uA8D9\uA8E0-\uA953\uA95F-\uA97C\uA980-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA5C-\uAAC2\uAADB-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB6B\uAB70-\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1E\uFB29\uFD3E-\uFD4F\uFDCF\uFDFD-\uFE19\uFE20-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFEFF\uFF01-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\uFFE0-\uFFE6\uFFE8-\uFFEE\uFFF9-\uFFFD\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}-\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1018E}\u{10190}-\u{1019C}\u{101A0}\u{101D0}-\u{101FD}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{102E0}-\u{102FB}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{1037A}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{1091F}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10B39}-\u{10B3F}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10EFD}-\u{10EFF}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11000}-\u{1104D}\u{11052}-\u{11075}\u{1107F}-\u{110C2}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11100}-\u{11134}\u{11136}-\u{11147}\u{11150}-\u{11176}\u{11180}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{11241}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112EA}\u{112F0}-\u{112F9}\u{11300}-\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133B}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11400}-\u{1145B}\u{1145D}-\u{11461}\u{11480}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B5}\u{115B8}-\u{115DD}\u{11600}-\u{11644}\u{11650}-\u{11659}\u{11660}-\u{1166C}\u{11680}-\u{116B9}\u{116C0}-\u{116C9}\u{11700}-\u{1171A}\u{1171D}-\u{1172B}\u{11730}-\u{11746}\u{11800}-\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193B}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D7}\u{119DA}-\u{119E4}\u{11A00}-\u{11A47}\u{11A50}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11B00}-\u{11B09}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C36}\u{11C38}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11C92}-\u{11CA7}\u{11CA9}-\u{11CB6}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D47}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D90}\u{11D91}\u{11D93}-\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF8}\u{11F00}-\u{11F10}\u{11F12}-\u{11F3A}\u{11F3E}-\u{11F59}\u{11FB0}\u{11FC0}-\u{11FF1}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{13455}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF0}-\u{16AF5}\u{16B00}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F4F}-\u{16F87}\u{16F8F}-\u{16F9F}\u{16FE0}-\u{16FE4}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B132}\u{1B150}-\u{1B152}\u{1B155}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}-\u{1BCA3}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D1EA}\u{1D200}-\u{1D245}\u{1D2C0}-\u{1D2D3}\u{1D2E0}-\u{1D2F3}\u{1D300}-\u{1D356}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D7CB}\u{1D7CE}-\u{1DA8B}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1DF00}-\u{1DF1E}\u{1DF25}-\u{1DF2A}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E030}-\u{1E06D}\u{1E08F}\u{1E100}-\u{1E12C}\u{1E130}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AE}\u{1E2C0}-\u{1E2F9}\u{1E2FF}\u{1E4D0}-\u{1E4F9}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{1EEF0}\u{1EEF1}\u{1F000}-\u{1F02B}\u{1F030}-\u{1F093}\u{1F0A0}-\u{1F0AE}\u{1F0B1}-\u{1F0BF}\u{1F0C1}-\u{1F0CF}\u{1F0D1}-\u{1F0F5}\u{1F100}-\u{1F1AD}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{1F260}-\u{1F265}\u{1F300}-\u{1F6D7}\u{1F6DC}-\u{1F6EC}\u{1F6F0}-\u{1F6FC}\u{1F700}-\u{1F776}\u{1F77B}-\u{1F7D9}\u{1F7E0}-\u{1F7EB}\u{1F7F0}\u{1F800}-\u{1F80B}\u{1F810}-\u{1F847}\u{1F850}-\u{1F859}\u{1F860}-\u{1F887}\u{1F890}-\u{1F8AD}\u{1F8B0}\u{1F8B1}\u{1F900}-\u{1FA53}\u{1FA60}-\u{1FA6D}\u{1FA70}-\u{1FA7C}\u{1FA80}-\u{1FA88}\u{1FA90}-\u{1FABD}\u{1FABF}-\u{1FAC5}\u{1FACE}-\u{1FADB}\u{1FAE0}-\u{1FAE8}\u{1FAF0}-\u{1FAF8}\u{1FB00}-\u{1FB92}\u{1FB94}-\u{1FBCA}\u{1FBF0}-\u{1FBF9}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B739}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{31350}-\u{323AF}\u{E0001}\u{E0020}-\u{E007F}\u{E0100}-\u{E01EF}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}]*$/u,bidiS6:/[0-9A-Za-z\xAA\xB2\xB3\xB5\xB9\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02B8\u02BB-\u02C1\u02D0\u02D1\u02E0-\u02E4\u02EE\u0370-\u0373\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0482\u048A-\u052F\u0531-\u0556\u0559-\u0589\u06F0-\u06F9\u0903-\u0939\u093B\u093D-\u0940\u0949-\u094C\u094E-\u0950\u0958-\u0961\u0964-\u0980\u0982\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD-\u09C0\u09C7\u09C8\u09CB\u09CC\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09FA\u09FC\u09FD\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3E-\u0A40\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A76\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD-\u0AC0\u0AC9\u0ACB\u0ACC\u0AD0\u0AE0\u0AE1\u0AE6-\u0AF0\u0AF9\u0B02\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B3E\u0B40\u0B47\u0B48\u0B4B\u0B4C\u0B57\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE\u0BBF\u0BC1\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCC\u0BD0\u0BD7\u0BE6-\u0BF2\u0C01-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C41-\u0C44\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C77\u0C7F\u0C80\u0C82-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD-\u0CC4\u0CC6-\u0CC8\u0CCA\u0CCB\u0CD5\u0CD6\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1-\u0CF3\u0D02-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D40\u0D46-\u0D48\u0D4A-\u0D4C\u0D4E\u0D4F\u0D54-\u0D61\u0D66-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCF-\u0DD1\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2-\u0DF4\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E4F-\u0E5B\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00-\u0F17\u0F1A-\u0F34\u0F36\u0F38\u0F3E-\u0F47\u0F49-\u0F6C\u0F7F\u0F85\u0F88-\u0F8C\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE-\u0FDA\u1000-\u102C\u1031\u1038\u103B\u103C\u103F-\u1057\u105A-\u105D\u1061-\u1070\u1075-\u1081\u1083\u1084\u1087-\u108C\u108E-\u109C\u109E-\u10C5\u10C7\u10CD\u10D0-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1360-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u167F\u1681-\u169A\u16A0-\u16F8\u1700-\u1711\u1715\u171F-\u1731\u1734-\u1736\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17B6\u17BE-\u17C5\u17C7\u17C8\u17D4-\u17DA\u17DC\u17E0-\u17E9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1923-\u1926\u1929-\u192B\u1930\u1931\u1933-\u1938\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A19\u1A1A\u1A1E-\u1A55\u1A57\u1A61\u1A63\u1A64\u1A6D-\u1A72\u1A80-\u1A89\u1A90-\u1A99\u1AA0-\u1AAD\u1B04-\u1B33\u1B35\u1B3B\u1B3D-\u1B41\u1B43-\u1B4C\u1B50-\u1B6A\u1B74-\u1B7E\u1B82-\u1BA1\u1BA6\u1BA7\u1BAA\u1BAE-\u1BE5\u1BE7\u1BEA-\u1BEC\u1BEE\u1BF2\u1BF3\u1BFC-\u1C2B\u1C34\u1C35\u1C3B-\u1C49\u1C4D-\u1C88\u1C90-\u1CBA\u1CBD-\u1CC7\u1CD3\u1CE1\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5-\u1CF7\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200E\u2070\u2071\u2074-\u2079\u207F-\u2089\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u214F\u2160-\u2188\u2336-\u237A\u2395\u2488-\u24E9\u26AC\u2800-\u28FF\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D70\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u302E\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3190-\u31BF\u31F0-\u321C\u3220-\u324F\u3260-\u327B\u327F-\u32B0\u32C0-\u32CB\u32D0-\u3376\u337B-\u33DD\u33E0-\u33FE\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA60C\uA610-\uA62B\uA640-\uA66E\uA680-\uA69D\uA6A0-\uA6EF\uA6F2-\uA6F7\uA722-\uA787\uA789-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA824\uA827\uA830-\uA837\uA840-\uA873\uA880-\uA8C3\uA8CE-\uA8D9\uA8F2-\uA8FE\uA900-\uA925\uA92E-\uA946\uA952\uA953\uA95F-\uA97C\uA983-\uA9B2\uA9B4\uA9B5\uA9BA\uA9BB\uA9BE-\uA9CD\uA9CF-\uA9D9\uA9DE-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA2F\uAA30\uAA33\uAA34\uAA40-\uAA42\uAA44-\uAA4B\uAA4D\uAA50-\uAA59\uAA5C-\uAA7B\uAA7D-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAAEB\uAAEE-\uAAF5\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB69\uAB70-\uABE4\uABE6\uABE7\uABE9-\uABEC\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uD800-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10100}\u{10102}\u{10107}-\u{10133}\u{10137}-\u{1013F}\u{1018D}\u{1018E}\u{101D0}-\u{101FC}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{102E1}-\u{102FB}\u{10300}-\u{10323}\u{1032D}-\u{1034A}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{1039F}-\u{103C3}\u{103C8}-\u{103D5}\u{10400}-\u{1049D}\u{104A0}-\u{104A9}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{1056F}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{11000}\u{11002}-\u{11037}\u{11047}-\u{1104D}\u{11066}-\u{1106F}\u{11071}\u{11072}\u{11075}\u{11082}-\u{110B2}\u{110B7}\u{110B8}\u{110BB}-\u{110C1}\u{110CD}\u{110D0}-\u{110E8}\u{110F0}-\u{110F9}\u{11103}-\u{11126}\u{1112C}\u{11136}-\u{11147}\u{11150}-\u{11172}\u{11174}-\u{11176}\u{11182}-\u{111B5}\u{111BF}-\u{111C8}\u{111CD}\u{111CE}\u{111D0}-\u{111DF}\u{111E1}-\u{111F4}\u{11200}-\u{11211}\u{11213}-\u{1122E}\u{11232}\u{11233}\u{11235}\u{11238}-\u{1123D}\u{1123F}\u{11240}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A9}\u{112B0}-\u{112DE}\u{112E0}-\u{112E2}\u{112F0}-\u{112F9}\u{11302}\u{11303}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}-\u{1133F}\u{11341}-\u{11344}\u{11347}\u{11348}\u{1134B}-\u{1134D}\u{11350}\u{11357}\u{1135D}-\u{11363}\u{11400}-\u{11437}\u{11440}\u{11441}\u{11445}\u{11447}-\u{1145B}\u{1145D}\u{1145F}-\u{11461}\u{11480}-\u{114B2}\u{114B9}\u{114BB}-\u{114BE}\u{114C1}\u{114C4}-\u{114C7}\u{114D0}-\u{114D9}\u{11580}-\u{115B1}\u{115B8}-\u{115BB}\u{115BE}\u{115C1}-\u{115DB}\u{11600}-\u{11632}\u{1163B}\u{1163C}\u{1163E}\u{11641}-\u{11644}\u{11650}-\u{11659}\u{11680}-\u{116AA}\u{116AC}\u{116AE}\u{116AF}\u{116B6}\u{116B8}\u{116B9}\u{116C0}-\u{116C9}\u{11700}-\u{1171A}\u{11720}\u{11721}\u{11726}\u{11730}-\u{11746}\u{11800}-\u{1182E}\u{11838}\u{1183B}\u{118A0}-\u{118F2}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{11935}\u{11937}\u{11938}\u{1193D}\u{1193F}-\u{11942}\u{11944}-\u{11946}\u{11950}-\u{11959}\u{119A0}-\u{119A7}\u{119AA}-\u{119D3}\u{119DC}-\u{119DF}\u{119E1}-\u{119E4}\u{11A00}\u{11A07}\u{11A08}\u{11A0B}-\u{11A32}\u{11A39}\u{11A3A}\u{11A3F}-\u{11A46}\u{11A50}\u{11A57}\u{11A58}\u{11A5C}-\u{11A89}\u{11A97}\u{11A9A}-\u{11AA2}\u{11AB0}-\u{11AF8}\u{11B00}-\u{11B09}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2F}\u{11C3E}-\u{11C45}\u{11C50}-\u{11C6C}\u{11C70}-\u{11C8F}\u{11CA9}\u{11CB1}\u{11CB4}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D50}-\u{11D59}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D8E}\u{11D93}\u{11D94}\u{11D96}\u{11D98}\u{11DA0}-\u{11DA9}\u{11EE0}-\u{11EF2}\u{11EF5}-\u{11EF8}\u{11F02}-\u{11F10}\u{11F12}-\u{11F35}\u{11F3E}\u{11F3F}\u{11F41}\u{11F43}-\u{11F59}\u{11FB0}\u{11FC0}-\u{11FD4}\u{11FFF}-\u{12399}\u{12400}-\u{1246E}\u{12470}-\u{12474}\u{12480}-\u{12543}\u{12F90}-\u{12FF2}\u{13000}-\u{1343F}\u{13441}-\u{13446}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A60}-\u{16A69}\u{16A6E}-\u{16ABE}\u{16AC0}-\u{16AC9}\u{16AD0}-\u{16AED}\u{16AF5}\u{16B00}-\u{16B2F}\u{16B37}-\u{16B45}\u{16B50}-\u{16B59}\u{16B5B}-\u{16B61}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E9A}\u{16F00}-\u{16F4A}\u{16F50}-\u{16F87}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{16FF0}\u{16FF1}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B132}\u{1B150}-\u{1B152}\u{1B155}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1BC9C}\u{1BC9F}\u{1CF50}-\u{1CFC3}\u{1D000}-\u{1D0F5}\u{1D100}-\u{1D126}\u{1D129}-\u{1D166}\u{1D16A}-\u{1D172}\u{1D183}\u{1D184}\u{1D18C}-\u{1D1A9}\u{1D1AE}-\u{1D1E8}\u{1D2C0}-\u{1D2D3}\u{1D2E0}-\u{1D2F3}\u{1D360}-\u{1D378}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6DA}\u{1D6DC}-\u{1D714}\u{1D716}-\u{1D74E}\u{1D750}-\u{1D788}\u{1D78A}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1D7CE}-\u{1D9FF}\u{1DA37}-\u{1DA3A}\u{1DA6D}-\u{1DA74}\u{1DA76}-\u{1DA83}\u{1DA85}-\u{1DA8B}\u{1DF00}-\u{1DF1E}\u{1DF25}-\u{1DF2A}\u{1E030}-\u{1E06D}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E140}-\u{1E149}\u{1E14E}\u{1E14F}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E2F0}-\u{1E2F9}\u{1E4D0}-\u{1E4EB}\u{1E4F0}-\u{1E4F9}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1F100}-\u{1F10A}\u{1F110}-\u{1F12E}\u{1F130}-\u{1F169}\u{1F170}-\u{1F1AC}\u{1F1E6}-\u{1F202}\u{1F210}-\u{1F23B}\u{1F240}-\u{1F248}\u{1F250}\u{1F251}\u{1FBF0}-\u{1FBF9}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B739}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{31350}-\u{323AF}\u{F0000}-\u{FFFFD}\u{100000}-\u{10FFFD}][\u0300-\u036F\u0483-\u0489\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u065F\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0711\u0730-\u074A\u07A6-\u07B0\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0898-\u089F\u08CA-\u08E1\u08E3-\u0902\u093A\u093C\u0941-\u0948\u094D\u0951-\u0957\u0962\u0963\u0981\u09BC\u09C1-\u09C4\u09CD\u09E2\u09E3\u09FE\u0A01\u0A02\u0A3C\u0A41\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A70\u0A71\u0A75\u0A81\u0A82\u0ABC\u0AC1-\u0AC5\u0AC7\u0AC8\u0ACD\u0AE2\u0AE3\u0AFA-\u0AFF\u0B01\u0B3C\u0B3F\u0B41-\u0B44\u0B4D\u0B55\u0B56\u0B62\u0B63\u0B82\u0BC0\u0BCD\u0C00\u0C04\u0C3C\u0C3E-\u0C40\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C81\u0CBC\u0CCC\u0CCD\u0CE2\u0CE3\u0D00\u0D01\u0D3B\u0D3C\u0D41-\u0D44\u0D4D\u0D62\u0D63\u0D81\u0DCA\u0DD2-\u0DD4\u0DD6\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0F18\u0F19\u0F35\u0F37\u0F39\u0F71-\u0F7E\u0F80-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102D-\u1030\u1032-\u1037\u1039\u103A\u103D\u103E\u1058\u1059\u105E-\u1060\u1071-\u1074\u1082\u1085\u1086\u108D\u109D\u135D-\u135F\u1712-\u1714\u1732\u1733\u1752\u1753\u1772\u1773\u17B4\u17B5\u17B7-\u17BD\u17C6\u17C9-\u17D3\u17DD\u180B-\u180D\u180F\u1885\u1886\u18A9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193B\u1A17\u1A18\u1A1B\u1A56\u1A58-\u1A5E\u1A60\u1A62\u1A65-\u1A6C\u1A73-\u1A7C\u1A7F\u1AB0-\u1ACE\u1B00-\u1B03\u1B34\u1B36-\u1B3A\u1B3C\u1B42\u1B6B-\u1B73\u1B80\u1B81\u1BA2-\u1BA5\u1BA8\u1BA9\u1BAB-\u1BAD\u1BE6\u1BE8\u1BE9\u1BED\u1BEF-\u1BF1\u1C2C-\u1C33\u1C36\u1C37\u1CD0-\u1CD2\u1CD4-\u1CE0\u1CE2-\u1CE8\u1CED\u1CF4\u1CF8\u1CF9\u1DC0-\u1DFF\u20D0-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302D\u3099\u309A\uA66F-\uA672\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA825\uA826\uA82C\uA8C4\uA8C5\uA8E0-\uA8F1\uA8FF\uA926-\uA92D\uA947-\uA951\uA980-\uA982\uA9B3\uA9B6-\uA9B9\uA9BC\uA9BD\uA9E5\uAA29-\uAA2E\uAA31\uAA32\uAA35\uAA36\uAA43\uAA4C\uAA7C\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEC\uAAED\uAAF6\uABE5\uABE8\uABED\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\u{101FD}\u{102E0}\u{10376}-\u{1037A}\u{10A01}-\u{10A03}\u{10A05}\u{10A06}\u{10A0C}-\u{10A0F}\u{10A38}-\u{10A3A}\u{10A3F}\u{10AE5}\u{10AE6}\u{10D24}-\u{10D27}\u{10EAB}\u{10EAC}\u{10EFD}-\u{10EFF}\u{10F46}-\u{10F50}\u{10F82}-\u{10F85}\u{11001}\u{11038}-\u{11046}\u{11070}\u{11073}\u{11074}\u{1107F}-\u{11081}\u{110B3}-\u{110B6}\u{110B9}\u{110BA}\u{110C2}\u{11100}-\u{11102}\u{11127}-\u{1112B}\u{1112D}-\u{11134}\u{11173}\u{11180}\u{11181}\u{111B6}-\u{111BE}\u{111C9}-\u{111CC}\u{111CF}\u{1122F}-\u{11231}\u{11234}\u{11236}\u{11237}\u{1123E}\u{11241}\u{112DF}\u{112E3}-\u{112EA}\u{11300}\u{11301}\u{1133B}\u{1133C}\u{11340}\u{11366}-\u{1136C}\u{11370}-\u{11374}\u{11438}-\u{1143F}\u{11442}-\u{11444}\u{11446}\u{1145E}\u{114B3}-\u{114B8}\u{114BA}\u{114BF}\u{114C0}\u{114C2}\u{114C3}\u{115B2}-\u{115B5}\u{115BC}\u{115BD}\u{115BF}\u{115C0}\u{115DC}\u{115DD}\u{11633}-\u{1163A}\u{1163D}\u{1163F}\u{11640}\u{116AB}\u{116AD}\u{116B0}-\u{116B5}\u{116B7}\u{1171D}-\u{1171F}\u{11722}-\u{11725}\u{11727}-\u{1172B}\u{1182F}-\u{11837}\u{11839}\u{1183A}\u{1193B}\u{1193C}\u{1193E}\u{11943}\u{119D4}-\u{119D7}\u{119DA}\u{119DB}\u{119E0}\u{11A01}-\u{11A06}\u{11A09}\u{11A0A}\u{11A33}-\u{11A38}\u{11A3B}-\u{11A3E}\u{11A47}\u{11A51}-\u{11A56}\u{11A59}-\u{11A5B}\u{11A8A}-\u{11A96}\u{11A98}\u{11A99}\u{11C30}-\u{11C36}\u{11C38}-\u{11C3D}\u{11C92}-\u{11CA7}\u{11CAA}-\u{11CB0}\u{11CB2}\u{11CB3}\u{11CB5}\u{11CB6}\u{11D31}-\u{11D36}\u{11D3A}\u{11D3C}\u{11D3D}\u{11D3F}-\u{11D45}\u{11D47}\u{11D90}\u{11D91}\u{11D95}\u{11D97}\u{11EF3}\u{11EF4}\u{11F00}\u{11F01}\u{11F36}-\u{11F3A}\u{11F40}\u{11F42}\u{13440}\u{13447}-\u{13455}\u{16AF0}-\u{16AF4}\u{16B30}-\u{16B36}\u{16F4F}\u{16F8F}-\u{16F92}\u{16FE4}\u{1BC9D}\u{1BC9E}\u{1CF00}-\u{1CF2D}\u{1CF30}-\u{1CF46}\u{1D167}-\u{1D169}\u{1D17B}-\u{1D182}\u{1D185}-\u{1D18B}\u{1D1AA}-\u{1D1AD}\u{1D242}-\u{1D244}\u{1DA00}-\u{1DA36}\u{1DA3B}-\u{1DA6C}\u{1DA75}\u{1DA84}\u{1DA9B}-\u{1DA9F}\u{1DAA1}-\u{1DAAF}\u{1E000}-\u{1E006}\u{1E008}-\u{1E018}\u{1E01B}-\u{1E021}\u{1E023}\u{1E024}\u{1E026}-\u{1E02A}\u{1E08F}\u{1E130}-\u{1E136}\u{1E2AE}\u{1E2EC}-\u{1E2EF}\u{1E4EC}-\u{1E4EF}\u{1E8D0}-\u{1E8D6}\u{1E944}-\u{1E94A}\u{E0100}-\u{E01EF}]*$/u}},18445:e=>{"use strict";e.exports.STATUS_MAPPING={mapped:1,valid:2,disallowed:3,disallowed_STD3_valid:4,disallowed_STD3_mapped:5,deviation:6,ignored:7}},27983:(e,t,n)=>{e.exports=n(39023).deprecate},85616:(e,t)=>{"use strict";function n(e,t,n){return n.globals&&(e=n.globals[e.name]),new e(`${n.context?n.context:"Value"} ${t}.`)}function r(e,t){if("bigint"==typeof e)throw n(TypeError,"is a BigInt which cannot be converted to a number",t);return t.globals?t.globals.Number(e):Number(e)}function o(e){return a(e>0&&e%1==.5&&!(1&e)||e<0&&e%1==-.5&&!(1&~e)?Math.floor(e):Math.round(e))}function i(e){return a(Math.trunc(e))}function s(e){return e<0?-1:1}function a(e){return 0===e?0:e}function u(e,{unsigned:t}){let u,c;t?(u=0,c=2**e-1):(u=-(2**(e-1)),c=2**(e-1)-1);const l=2**e,h=2**(e-1);return(e,f={})=>{let p=r(e,f);if(p=a(p),f.enforceRange){if(!Number.isFinite(p))throw n(TypeError,"is not a finite number",f);if(p=i(p),pc)throw n(TypeError,`is outside the accepted range of ${u} to ${c}, inclusive`,f);return p}return!Number.isNaN(p)&&f.clamp?(p=Math.min(Math.max(p,u),c),p=o(p),p):Number.isFinite(p)&&0!==p?(p=i(p),p>=u&&p<=c?p:(p=function(e,t){const n=e%t;return s(t)!==s(n)?n+t:n}(p,l),!t&&p>=h?p-l:p)):0}}function c(e,{unsigned:t}){const s=Number.MAX_SAFE_INTEGER,u=t?0:Number.MIN_SAFE_INTEGER,c=t?BigInt.asUintN:BigInt.asIntN;return(t,l={})=>{let h=r(t,l);if(h=a(h),l.enforceRange){if(!Number.isFinite(h))throw n(TypeError,"is not a finite number",l);if(h=i(h),hs)throw n(TypeError,`is outside the accepted range of ${u} to ${s}, inclusive`,l);return h}if(!Number.isNaN(h)&&l.clamp)return h=Math.min(Math.max(h,u),s),h=o(h),h;if(!Number.isFinite(h)||0===h)return 0;let f=BigInt(i(h));return f=c(e,f),Number(f)}}t.any=e=>e,t.undefined=()=>{},t.boolean=e=>Boolean(e),t.byte=u(8,{unsigned:!1}),t.octet=u(8,{unsigned:!0}),t.short=u(16,{unsigned:!1}),t["unsigned short"]=u(16,{unsigned:!0}),t.long=u(32,{unsigned:!1}),t["unsigned long"]=u(32,{unsigned:!0}),t["long long"]=c(64,{unsigned:!1}),t["unsigned long long"]=c(64,{unsigned:!0}),t.double=(e,t={})=>{const o=r(e,t);if(!Number.isFinite(o))throw n(TypeError,"is not a finite floating-point value",t);return o},t["unrestricted double"]=(e,t={})=>r(e,t),t.float=(e,t={})=>{const o=r(e,t);if(!Number.isFinite(o))throw n(TypeError,"is not a finite floating-point value",t);if(Object.is(o,-0))return o;const i=Math.fround(o);if(!Number.isFinite(i))throw n(TypeError,"is outside the range of a single-precision floating-point value",t);return i},t["unrestricted float"]=(e,t={})=>{const n=r(e,t);return isNaN(n)||Object.is(n,-0)?n:Math.fround(n)},t.DOMString=(e,t={})=>{if(t.treatNullAsEmptyString&&null===e)return"";if("symbol"==typeof e)throw n(TypeError,"is a symbol, which cannot be converted to a string",t);return(t.globals?t.globals.String:String)(e)},t.ByteString=(e,r={})=>{const o=t.DOMString(e,r);let i;for(let e=0;void 0!==(i=o.codePointAt(e));++e)if(i>255)throw n(TypeError,"is not a valid ByteString",r);return o},t.USVString=(e,n={})=>{const r=t.DOMString(e,n),o=r.length,i=[];for(let e=0;e57343)i.push(String.fromCodePoint(t));else if(56320<=t&&t<=57343)i.push(String.fromCodePoint(65533));else if(e===o-1)i.push(String.fromCodePoint(65533));else{const n=r.charCodeAt(e+1);if(56320<=n&&n<=57343){const r=1023&t,o=1023&n;i.push(String.fromCodePoint(65536+1024*r+o)),++e}else i.push(String.fromCodePoint(65533))}}return i.join("")},t.object=(e,t={})=>{if(null===e||"object"!=typeof e&&"function"!=typeof e)throw n(TypeError,"is not an object",t);return e};const l=Object.getOwnPropertyDescriptor(ArrayBuffer.prototype,"byteLength").get,h="function"==typeof SharedArrayBuffer?Object.getOwnPropertyDescriptor(SharedArrayBuffer.prototype,"byteLength").get:null;function f(e){try{return l.call(e),!0}catch{return!1}}function p(e){try{return h.call(e),!0}catch{return!1}}function d(e){try{return new Uint8Array(e),!1}catch{return!0}}t.ArrayBuffer=(e,t={})=>{if(!f(e)){if(t.allowShared&&!p(e))throw n(TypeError,"is not an ArrayBuffer or SharedArrayBuffer",t);throw n(TypeError,"is not an ArrayBuffer",t)}if(d(e))throw n(TypeError,"is a detached ArrayBuffer",t);return e};const E=Object.getOwnPropertyDescriptor(DataView.prototype,"byteLength").get;t.DataView=(e,t={})=>{try{E.call(e)}catch(e){throw n(TypeError,"is not a DataView",t)}if(!t.allowShared&&p(e.buffer))throw n(TypeError,"is backed by a SharedArrayBuffer, which is not allowed",t);if(d(e.buffer))throw n(TypeError,"is backed by a detached ArrayBuffer",t);return e};const m=Object.getOwnPropertyDescriptor(Object.getPrototypeOf(Uint8Array).prototype,Symbol.toStringTag).get;[Int8Array,Int16Array,Int32Array,Uint8Array,Uint16Array,Uint32Array,Uint8ClampedArray,Float32Array,Float64Array].forEach((e=>{const{name:r}=e,o=/^[AEIOU]/u.test(r)?"an":"a";t[r]=(e,t={})=>{if(!ArrayBuffer.isView(e)||m.call(e)!==r)throw n(TypeError,`is not ${o} ${r} object`,t);if(!t.allowShared&&p(e.buffer))throw n(TypeError,"is a view on a SharedArrayBuffer, which is not allowed",t);if(d(e.buffer))throw n(TypeError,"is a view on a detached ArrayBuffer",t);return e}})),t.ArrayBufferView=(e,t={})=>{if(!ArrayBuffer.isView(e))throw n(TypeError,"is not a view on an ArrayBuffer or SharedArrayBuffer",t);if(!t.allowShared&&p(e.buffer))throw n(TypeError,"is a view on a SharedArrayBuffer, which is not allowed",t);if(d(e.buffer))throw n(TypeError,"is a view on a detached ArrayBuffer",t);return e},t.BufferSource=(e,t={})=>{if(ArrayBuffer.isView(e)){if(!t.allowShared&&p(e.buffer))throw n(TypeError,"is a view on a SharedArrayBuffer, which is not allowed",t);if(d(e.buffer))throw n(TypeError,"is a view on a detached ArrayBuffer",t);return e}if(!t.allowShared&&!f(e))throw n(TypeError,"is not an ArrayBuffer or a view on one",t);if(t.allowShared&&!p(e)&&!f(e))throw n(TypeError,"is not an ArrayBuffer, SharedArrayBuffer, or a view on one",t);if(d(e))throw n(TypeError,"is a detached ArrayBuffer",t);return e},t.DOMTimeStamp=t["unsigned long long"]},75833:(e,t,n)=>{"use strict";const{URL:r,URLSearchParams:o}=n(3181),i=n(95484),s=n(41656),a={Array,Object,Promise,String,TypeError};r.install(a,["Window"]),o.install(a,["Window"]),t.URL=a.URL,t.URLSearchParams=a.URLSearchParams,t.parseURL=i.parseURL,t.basicURLParse=i.basicURLParse,t.serializeURL=i.serializeURL,t.serializePath=i.serializePath,t.serializeHost=i.serializeHost,t.serializeInteger=i.serializeInteger,t.serializeURLOrigin=i.serializeURLOrigin,t.setTheUsername=i.setTheUsername,t.setThePassword=i.setThePassword,t.cannotHaveAUsernamePasswordPort=i.cannotHaveAUsernamePasswordPort,t.hasAnOpaquePath=i.hasAnOpaquePath,t.percentDecodeString=s.percentDecodeString,t.percentDecodeBytes=s.percentDecodeBytes},44817:(e,t,n)=>{"use strict";const r=n(85616),o=n(46892);t.convert=(e,t,{context:n="The provided value"}={})=>{if("function"!=typeof t)throw new e.TypeError(n+" is not a function");function i(...i){const s=o.tryWrapperForImpl(this);let a;for(let e=0;e{for(let e=0;e{"use strict";const r=n(95484),o=n(85252),i=n(52682);t.implementation=class{constructor(e,t){const n=t[0],o=t[1];let s=null;if(void 0!==o&&(s=r.basicURLParse(o),null===s))throw new TypeError(`Invalid base URL: ${o}`);const a=r.basicURLParse(n,{baseURL:s});if(null===a)throw new TypeError(`Invalid URL: ${n}`);const u=null!==a.query?a.query:"";this._url=a,this._query=i.createImpl(e,[u],{doNotStripQMark:!0}),this._query._url=this}static canParse(e,t){let n=null;return(void 0===t||(n=r.basicURLParse(t),null!==n))&&null!==r.basicURLParse(e,{baseURL:n})}get href(){return r.serializeURL(this._url)}set href(e){const t=r.basicURLParse(e);if(null===t)throw new TypeError(`Invalid URL: ${e}`);this._url=t,this._query._list.splice(0);const{query:n}=t;null!==n&&(this._query._list=o.parseUrlencodedString(n))}get origin(){return r.serializeURLOrigin(this._url)}get protocol(){return`${this._url.scheme}:`}set protocol(e){r.basicURLParse(`${e}:`,{url:this._url,stateOverride:"scheme start"})}get username(){return this._url.username}set username(e){r.cannotHaveAUsernamePasswordPort(this._url)||r.setTheUsername(this._url,e)}get password(){return this._url.password}set password(e){r.cannotHaveAUsernamePasswordPort(this._url)||r.setThePassword(this._url,e)}get host(){const e=this._url;return null===e.host?"":null===e.port?r.serializeHost(e.host):`${r.serializeHost(e.host)}:${r.serializeInteger(e.port)}`}set host(e){r.hasAnOpaquePath(this._url)||r.basicURLParse(e,{url:this._url,stateOverride:"host"})}get hostname(){return null===this._url.host?"":r.serializeHost(this._url.host)}set hostname(e){r.hasAnOpaquePath(this._url)||r.basicURLParse(e,{url:this._url,stateOverride:"hostname"})}get port(){return null===this._url.port?"":r.serializeInteger(this._url.port)}set port(e){r.cannotHaveAUsernamePasswordPort(this._url)||(""===e?this._url.port=null:r.basicURLParse(e,{url:this._url,stateOverride:"port"}))}get pathname(){return r.serializePath(this._url)}set pathname(e){r.hasAnOpaquePath(this._url)||(this._url.path=[],r.basicURLParse(e,{url:this._url,stateOverride:"path start"}))}get search(){return null===this._url.query||""===this._url.query?"":`?${this._url.query}`}set search(e){const t=this._url;if(""===e)return t.query=null,this._query._list=[],void this._potentiallyStripTrailingSpacesFromAnOpaquePath();const n="?"===e[0]?e.substring(1):e;t.query="",r.basicURLParse(n,{url:t,stateOverride:"query"}),this._query._list=o.parseUrlencodedString(n)}get searchParams(){return this._query}get hash(){return null===this._url.fragment||""===this._url.fragment?"":`#${this._url.fragment}`}set hash(e){if(""===e)return this._url.fragment=null,void this._potentiallyStripTrailingSpacesFromAnOpaquePath();const t="#"===e[0]?e.substring(1):e;this._url.fragment="",r.basicURLParse(t,{url:this._url,stateOverride:"fragment"})}toJSON(){return this.href}_potentiallyStripTrailingSpacesFromAnOpaquePath(){r.hasAnOpaquePath(this._url)&&null===this._url.fragment&&null===this._url.query&&(this._url.path=this._url.path.replace(/\u0020+$/u,""))}}},76648:(e,t,n)=>{"use strict";const r=n(85616),o=n(46892),i=o.implSymbol,s=o.ctorRegistrySymbol;function a(e,t){let n;return void 0!==t&&(n=t.prototype),o.isObject(n)||(n=e[s].URL.prototype),Object.create(n)}t.is=e=>o.isObject(e)&&o.hasOwn(e,i)&&e[i]instanceof c.implementation,t.isImpl=e=>o.isObject(e)&&e instanceof c.implementation,t.convert=(e,n,{context:r="The provided value"}={})=>{if(t.is(n))return o.implForWrapper(n);throw new e.TypeError(`${r} is not of type 'URL'.`)},t.create=(e,n,r)=>{const o=a(e);return t.setup(o,e,n,r)},t.createImpl=(e,n,r)=>{const i=t.create(e,n,r);return o.implForWrapper(i)},t._internalSetup=(e,t)=>{},t.setup=(e,n,r=[],s={})=>(s.wrapper=e,t._internalSetup(e,n),Object.defineProperty(e,i,{value:new c.implementation(n,r,s),configurable:!0}),e[i][o.wrapperSymbol]=e,c.init&&c.init(e[i]),e),t.new=(e,n)=>{const r=a(e,n);return t._internalSetup(r,e),Object.defineProperty(r,i,{value:Object.create(c.implementation.prototype),configurable:!0}),r[i][o.wrapperSymbol]=r,c.init&&c.init(r[i]),r[i]};const u=new Set(["Window","Worker"]);t.install=(e,n)=>{if(!n.some((e=>u.has(e))))return;const s=o.initCtorRegistry(e);class a{constructor(n){if(arguments.length<1)throw new e.TypeError(`Failed to construct 'URL': 1 argument required, but only ${arguments.length} present.`);const o=[];{let t=arguments[0];t=r.USVString(t,{context:"Failed to construct 'URL': parameter 1",globals:e}),o.push(t)}{let t=arguments[1];void 0!==t&&(t=r.USVString(t,{context:"Failed to construct 'URL': parameter 2",globals:e})),o.push(t)}return t.setup(Object.create(new.target.prototype),e,o)}toJSON(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'toJSON' called on an object that is not a valid instance of URL.");return n[i].toJSON()}get href(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get href' called on an object that is not a valid instance of URL.");return n[i].href}set href(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'set href' called on an object that is not a valid instance of URL.");n=r.USVString(n,{context:"Failed to set the 'href' property on 'URL': The provided value",globals:e}),o[i].href=n}toString(){if(!t.is(this))throw new e.TypeError("'toString' called on an object that is not a valid instance of URL.");return this[i].href}get origin(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get origin' called on an object that is not a valid instance of URL.");return n[i].origin}get protocol(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get protocol' called on an object that is not a valid instance of URL.");return n[i].protocol}set protocol(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'set protocol' called on an object that is not a valid instance of URL.");n=r.USVString(n,{context:"Failed to set the 'protocol' property on 'URL': The provided value",globals:e}),o[i].protocol=n}get username(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get username' called on an object that is not a valid instance of URL.");return n[i].username}set username(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'set username' called on an object that is not a valid instance of URL.");n=r.USVString(n,{context:"Failed to set the 'username' property on 'URL': The provided value",globals:e}),o[i].username=n}get password(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get password' called on an object that is not a valid instance of URL.");return n[i].password}set password(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'set password' called on an object that is not a valid instance of URL.");n=r.USVString(n,{context:"Failed to set the 'password' property on 'URL': The provided value",globals:e}),o[i].password=n}get host(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get host' called on an object that is not a valid instance of URL.");return n[i].host}set host(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'set host' called on an object that is not a valid instance of URL.");n=r.USVString(n,{context:"Failed to set the 'host' property on 'URL': The provided value",globals:e}),o[i].host=n}get hostname(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get hostname' called on an object that is not a valid instance of URL.");return n[i].hostname}set hostname(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'set hostname' called on an object that is not a valid instance of URL.");n=r.USVString(n,{context:"Failed to set the 'hostname' property on 'URL': The provided value",globals:e}),o[i].hostname=n}get port(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get port' called on an object that is not a valid instance of URL.");return n[i].port}set port(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'set port' called on an object that is not a valid instance of URL.");n=r.USVString(n,{context:"Failed to set the 'port' property on 'URL': The provided value",globals:e}),o[i].port=n}get pathname(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get pathname' called on an object that is not a valid instance of URL.");return n[i].pathname}set pathname(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'set pathname' called on an object that is not a valid instance of URL.");n=r.USVString(n,{context:"Failed to set the 'pathname' property on 'URL': The provided value",globals:e}),o[i].pathname=n}get search(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get search' called on an object that is not a valid instance of URL.");return n[i].search}set search(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'set search' called on an object that is not a valid instance of URL.");n=r.USVString(n,{context:"Failed to set the 'search' property on 'URL': The provided value",globals:e}),o[i].search=n}get searchParams(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get searchParams' called on an object that is not a valid instance of URL.");return o.getSameObject(this,"searchParams",(()=>o.tryWrapperForImpl(n[i].searchParams)))}get hash(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'get hash' called on an object that is not a valid instance of URL.");return n[i].hash}set hash(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'set hash' called on an object that is not a valid instance of URL.");n=r.USVString(n,{context:"Failed to set the 'hash' property on 'URL': The provided value",globals:e}),o[i].hash=n}static canParse(t){if(arguments.length<1)throw new e.TypeError(`Failed to execute 'canParse' on 'URL': 1 argument required, but only ${arguments.length} present.`);const n=[];{let t=arguments[0];t=r.USVString(t,{context:"Failed to execute 'canParse' on 'URL': parameter 1",globals:e}),n.push(t)}{let t=arguments[1];void 0!==t&&(t=r.USVString(t,{context:"Failed to execute 'canParse' on 'URL': parameter 2",globals:e})),n.push(t)}return c.implementation.canParse(...n)}}Object.defineProperties(a.prototype,{toJSON:{enumerable:!0},href:{enumerable:!0},toString:{enumerable:!0},origin:{enumerable:!0},protocol:{enumerable:!0},username:{enumerable:!0},password:{enumerable:!0},host:{enumerable:!0},hostname:{enumerable:!0},port:{enumerable:!0},pathname:{enumerable:!0},search:{enumerable:!0},searchParams:{enumerable:!0},hash:{enumerable:!0},[Symbol.toStringTag]:{value:"URL",configurable:!0}}),Object.defineProperties(a,{canParse:{enumerable:!0}}),s.URL=a,Object.defineProperty(e,"URL",{configurable:!0,writable:!0,value:a}),n.includes("Window")&&Object.defineProperty(e,"webkitURL",{configurable:!0,writable:!0,value:a})};const c=n(67079)},68549:(e,t,n)=>{"use strict";const r=n(85252);t.implementation=class{constructor(e,t,{doNotStripQMark:n=!1}){let o=t[0];if(this._list=[],this._url=null,n||"string"!=typeof o||"?"!==o[0]||(o=o.slice(1)),Array.isArray(o))for(const e of o){if(2!==e.length)throw new TypeError("Failed to construct 'URLSearchParams': parameter 1 sequence's element does not contain exactly two elements.");this._list.push([e[0],e[1]])}else if("object"==typeof o&&null===Object.getPrototypeOf(o))for(const e of Object.keys(o)){const t=o[e];this._list.push([e,t])}else this._list=r.parseUrlencodedString(o)}_updateSteps(){if(null!==this._url){let e=r.serializeUrlencoded(this._list);""===e&&(e=null),this._url._url.query=e,null===e&&this._url._potentiallyStripTrailingSpacesFromAnOpaquePath()}}get size(){return this._list.length}append(e,t){this._list.push([e,t]),this._updateSteps()}delete(e,t){let n=0;for(;ne[0]t[0]?1:0)),this._updateSteps()}[Symbol.iterator](){return this._list[Symbol.iterator]()}toString(){return r.serializeUrlencoded(this._list)}}},52682:(e,t,n)=>{"use strict";const r=n(85616),o=n(46892),i=n(44817),s=o.newObjectInRealm,a=o.implSymbol,u=o.ctorRegistrySymbol,c="URLSearchParams";function l(e,t){let n;return void 0!==t&&(n=t.prototype),o.isObject(n)||(n=e[u].URLSearchParams.prototype),Object.create(n)}t.is=e=>o.isObject(e)&&o.hasOwn(e,a)&&e[a]instanceof f.implementation,t.isImpl=e=>o.isObject(e)&&e instanceof f.implementation,t.convert=(e,n,{context:r="The provided value"}={})=>{if(t.is(n))return o.implForWrapper(n);throw new e.TypeError(`${r} is not of type 'URLSearchParams'.`)},t.createDefaultIterator=(e,t,n)=>{const r=e[u]["URLSearchParams Iterator"],i=Object.create(r);return Object.defineProperty(i,o.iterInternalSymbol,{value:{target:t,kind:n,index:0},configurable:!0}),i},t.create=(e,n,r)=>{const o=l(e);return t.setup(o,e,n,r)},t.createImpl=(e,n,r)=>{const i=t.create(e,n,r);return o.implForWrapper(i)},t._internalSetup=(e,t)=>{},t.setup=(e,n,r=[],i={})=>(i.wrapper=e,t._internalSetup(e,n),Object.defineProperty(e,a,{value:new f.implementation(n,r,i),configurable:!0}),e[a][o.wrapperSymbol]=e,f.init&&f.init(e[a]),e),t.new=(e,n)=>{const r=l(e,n);return t._internalSetup(r,e),Object.defineProperty(r,a,{value:Object.create(f.implementation.prototype),configurable:!0}),r[a][o.wrapperSymbol]=r,f.init&&f.init(r[a]),r[a]};const h=new Set(["Window","Worker"]);t.install=(e,n)=>{if(!n.some((e=>h.has(e))))return;const u=o.initCtorRegistry(e);class l{constructor(){const n=[];{let t=arguments[0];if(void 0!==t)if(o.isObject(t))if(void 0!==t[Symbol.iterator]){if(!o.isObject(t))throw new e.TypeError("Failed to construct 'URLSearchParams': parameter 1 sequence is not an iterable object.");{const n=[],i=t;for(let t of i){if(!o.isObject(t))throw new e.TypeError("Failed to construct 'URLSearchParams': parameter 1 sequence's element is not an iterable object.");{const n=[],o=t;for(let t of o)t=r.USVString(t,{context:"Failed to construct 'URLSearchParams': parameter 1 sequence's element's element",globals:e}),n.push(t);t=n}n.push(t)}t=n}}else{if(!o.isObject(t))throw new e.TypeError("Failed to construct 'URLSearchParams': parameter 1 record is not an object.");{const n=Object.create(null);for(const o of Reflect.ownKeys(t)){const i=Object.getOwnPropertyDescriptor(t,o);if(i&&i.enumerable){let i=o;i=r.USVString(i,{context:"Failed to construct 'URLSearchParams': parameter 1 record's key",globals:e});let s=t[o];s=r.USVString(s,{context:"Failed to construct 'URLSearchParams': parameter 1 record's value",globals:e}),n[i]=s}}t=n}}else t=r.USVString(t,{context:"Failed to construct 'URLSearchParams': parameter 1",globals:e});else t="";n.push(t)}return t.setup(Object.create(new.target.prototype),e,n)}append(n,i){const s=null!=this?this:e;if(!t.is(s))throw new e.TypeError("'append' called on an object that is not a valid instance of URLSearchParams.");if(arguments.length<2)throw new e.TypeError(`Failed to execute 'append' on 'URLSearchParams': 2 arguments required, but only ${arguments.length} present.`);const u=[];{let t=arguments[0];t=r.USVString(t,{context:"Failed to execute 'append' on 'URLSearchParams': parameter 1",globals:e}),u.push(t)}{let t=arguments[1];t=r.USVString(t,{context:"Failed to execute 'append' on 'URLSearchParams': parameter 2",globals:e}),u.push(t)}return o.tryWrapperForImpl(s[a].append(...u))}delete(n){const i=null!=this?this:e;if(!t.is(i))throw new e.TypeError("'delete' called on an object that is not a valid instance of URLSearchParams.");if(arguments.length<1)throw new e.TypeError(`Failed to execute 'delete' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.`);const s=[];{let t=arguments[0];t=r.USVString(t,{context:"Failed to execute 'delete' on 'URLSearchParams': parameter 1",globals:e}),s.push(t)}{let t=arguments[1];void 0!==t&&(t=r.USVString(t,{context:"Failed to execute 'delete' on 'URLSearchParams': parameter 2",globals:e})),s.push(t)}return o.tryWrapperForImpl(i[a].delete(...s))}get(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'get' called on an object that is not a valid instance of URLSearchParams.");if(arguments.length<1)throw new e.TypeError(`Failed to execute 'get' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.`);const i=[];{let t=arguments[0];t=r.USVString(t,{context:"Failed to execute 'get' on 'URLSearchParams': parameter 1",globals:e}),i.push(t)}return o[a].get(...i)}getAll(n){const i=null!=this?this:e;if(!t.is(i))throw new e.TypeError("'getAll' called on an object that is not a valid instance of URLSearchParams.");if(arguments.length<1)throw new e.TypeError(`Failed to execute 'getAll' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.`);const s=[];{let t=arguments[0];t=r.USVString(t,{context:"Failed to execute 'getAll' on 'URLSearchParams': parameter 1",globals:e}),s.push(t)}return o.tryWrapperForImpl(i[a].getAll(...s))}has(n){const o=null!=this?this:e;if(!t.is(o))throw new e.TypeError("'has' called on an object that is not a valid instance of URLSearchParams.");if(arguments.length<1)throw new e.TypeError(`Failed to execute 'has' on 'URLSearchParams': 1 argument required, but only ${arguments.length} present.`);const i=[];{let t=arguments[0];t=r.USVString(t,{context:"Failed to execute 'has' on 'URLSearchParams': parameter 1",globals:e}),i.push(t)}{let t=arguments[1];void 0!==t&&(t=r.USVString(t,{context:"Failed to execute 'has' on 'URLSearchParams': parameter 2",globals:e})),i.push(t)}return o[a].has(...i)}set(n,i){const s=null!=this?this:e;if(!t.is(s))throw new e.TypeError("'set' called on an object that is not a valid instance of URLSearchParams.");if(arguments.length<2)throw new e.TypeError(`Failed to execute 'set' on 'URLSearchParams': 2 arguments required, but only ${arguments.length} present.`);const u=[];{let t=arguments[0];t=r.USVString(t,{context:"Failed to execute 'set' on 'URLSearchParams': parameter 1",globals:e}),u.push(t)}{let t=arguments[1];t=r.USVString(t,{context:"Failed to execute 'set' on 'URLSearchParams': parameter 2",globals:e}),u.push(t)}return o.tryWrapperForImpl(s[a].set(...u))}sort(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'sort' called on an object that is not a valid instance of URLSearchParams.");return o.tryWrapperForImpl(n[a].sort())}toString(){const n=null!=this?this:e;if(!t.is(n))throw new e.TypeError("'toString' called on an object that is not a valid instance of URLSearchParams.");return n[a].toString()}keys(){if(!t.is(this))throw new e.TypeError("'keys' called on an object that is not a valid instance of URLSearchParams.");return t.createDefaultIterator(e,this,"key")}values(){if(!t.is(this))throw new e.TypeError("'values' called on an object that is not a valid instance of URLSearchParams.");return t.createDefaultIterator(e,this,"value")}entries(){if(!t.is(this))throw new e.TypeError("'entries' called on an object that is not a valid instance of URLSearchParams.");return t.createDefaultIterator(e,this,"key+value")}forEach(n){if(!t.is(this))throw new e.TypeError("'forEach' called on an object that is not a valid instance of URLSearchParams.");if(arguments.length<1)throw new e.TypeError("Failed to execute 'forEach' on 'iterable': 1 argument required, but only 0 present.");n=i.convert(e,n,{context:"Failed to execute 'forEach' on 'iterable': The callback provided as parameter 1"});const r=arguments[1];let s=Array.from(this[a]),u=0;for(;u=u.length)return s(e,{value:void 0,done:!0});const c=u[i];return t.index=i+1,s(e,o.iteratorResult(c.map(o.tryWrapperForImpl),r))}}),Object.defineProperty(e,c,{configurable:!0,writable:!0,value:l})};const f=n(68549)},58408:e=>{"use strict";const t=new TextEncoder,n=new TextDecoder("utf-8",{ignoreBOM:!0});e.exports={utf8Encode:function(e){return t.encode(e)},utf8DecodeWithoutBOM:function(e){return n.decode(e)}}},47167:e=>{"use strict";function t(e){return e>=48&&e<=57}function n(e){return e>=65&&e<=90||e>=97&&e<=122}e.exports={isASCIIDigit:t,isASCIIAlpha:n,isASCIIAlphanumeric:function(e){return n(e)||t(e)},isASCIIHex:function(e){return t(e)||e>=65&&e<=70||e>=97&&e<=102}}},41656:(e,t,n)=>{"use strict";const{isASCIIHex:r}=n(47167),{utf8Encode:o}=n(58408);function i(e){return e.codePointAt(0)}function s(e){let t=e.toString(16).toUpperCase();return 1===t.length&&(t=`0${t}`),`%${t}`}function a(e){const t=new Uint8Array(e.byteLength);let n=0;for(let o=0;o126}const c=new Set([i(" "),i('"'),i("<"),i(">"),i("`")]),l=new Set([i(" "),i('"'),i("#"),i("<"),i(">")]);function h(e){return u(e)||l.has(e)}const f=new Set([i("?"),i("`"),i("{"),i("}")]);function p(e){return h(e)||f.has(e)}const d=new Set([i("/"),i(":"),i(";"),i("="),i("@"),i("["),i("\\"),i("]"),i("^"),i("|")]);function E(e){return p(e)||d.has(e)}const m=new Set([i("$"),i("%"),i("&"),i("+"),i(",")]),_=new Set([i("!"),i("'"),i("("),i(")"),i("~")]);function g(e,t){const n=o(e);let r="";for(const e of n)t(e)?r+=s(e):r+=String.fromCharCode(e);return r}e.exports={isC0ControlPercentEncode:u,isFragmentPercentEncode:function(e){return u(e)||c.has(e)},isQueryPercentEncode:h,isSpecialQueryPercentEncode:function(e){return h(e)||e===i("'")},isPathPercentEncode:p,isUserinfoPercentEncode:E,isURLEncodedPercentEncode:function(e){return function(e){return E(e)||m.has(e)}(e)||_.has(e)},percentDecodeString:function(e){return a(o(e))},percentDecodeBytes:a,utf8PercentEncodeString:function(e,t,n=!1){let r="";for(const o of e)r+=n&&" "===o?"+":g(o,t);return r},utf8PercentEncodeCodePoint:function(e,t){return g(String.fromCodePoint(e),t)}}},95484:(e,t,n)=>{"use strict";const r=n(36673),o=n(47167),{utf8DecodeWithoutBOM:i}=n(58408),{percentDecodeString:s,utf8PercentEncodeCodePoint:a,utf8PercentEncodeString:u,isC0ControlPercentEncode:c,isFragmentPercentEncode:l,isQueryPercentEncode:h,isSpecialQueryPercentEncode:f,isPathPercentEncode:p,isUserinfoPercentEncode:d}=n(41656);function E(e){return e.codePointAt(0)}const m={ftp:21,file:null,http:80,https:443,ws:80,wss:443},_=Symbol("failure");function g(e){return[...e].length}function y(e,t){const n=e[t];return isNaN(n)?void 0:String.fromCodePoint(n)}function A(e){return"."===e||"%2e"===e.toLowerCase()}function v(e){return 2===e.length&&o.isASCIIAlpha(e.codePointAt(0))&&(":"===e[1]||"|"===e[1])}function b(e){return-1!==e.search(/\u0000|\u0009|\u000A|\u000D|\u0020|#|\/|:|<|>|\?|@|\[|\\|\]|\^|\|/u)}function T(e){return void 0!==m[e]}function w(e){return T(e.scheme)}function O(e){return!T(e.scheme)}function R(e){return m[e]}function S(e){if(""===e)return _;let t=10;if(e.length>=2&&"0"===e.charAt(0)&&"x"===e.charAt(1).toLowerCase()?(e=e.substring(2),t=16):e.length>=2&&"0"===e.charAt(0)&&(e=e.substring(1),t=8),""===e)return 0;let n=/[^0-7]/u;return 10===t&&(n=/[^0-9]/u),16===t&&(n=/[^0-9A-Fa-f]/u),n.test(e)?_:parseInt(e,t)}function I(e,t=!1){if("["===e[0])return"]"!==e[e.length-1]?_:function(e){const t=[0,0,0,0,0,0,0,0];let n=0,r=null,i=0;if((e=Array.from(e,(e=>e.codePointAt(0))))[i]===E(":")){if(e[i+1]!==E(":"))return _;i+=2,++n,r=n}for(;i6)return _;let r=0;for(;void 0!==e[i];){let s=null;if(r>0){if(!(e[i]===E(".")&&r<4))return _;++i}if(!o.isASCIIDigit(e[i]))return _;for(;o.isASCIIDigit(e[i]);){const t=parseInt(y(e,i));if(null===s)s=t;else{if(0===s)return _;s=10*s+t}if(s>255)return _;++i}t[n]=256*t[n]+s,++r,2!==r&&4!==r||++n}if(4!==r)return _;break}if(e[i]===E(":")){if(++i,void 0===e[i])return _}else if(void 0!==e[i])return _;t[n]=s,++n}if(null!==r){let e=n-r;for(n=7;0!==n&&e>0;){const o=t[r+e-1];t[r+e-1]=t[n],t[n]=o,--n,--e}}else if(null===r&&8!==n)return _;return t}(e.substring(1,e.length-1));if(t)return function(e){return b(e)?_:u(e,c)}(e);const n=function(e,t=!1){const n=r.toASCII(e,{checkBidi:!0,checkHyphens:!1,checkJoiners:!0,useSTD3ASCIIRules:t,verifyDNSLength:t});return null===n||""===n?_:n}(i(s(e)));return n===_||b(a=n)||-1!==a.search(/[\u0000-\u001F]|%|\u007F/u)?_:function(e){const t=e.split(".");if(""===t[t.length-1]){if(1===t.length)return!1;t.pop()}const n=t[t.length-1];return S(n)!==_||!!/^[0-9]+$/u.test(n)}(n)?function(e){const t=e.split(".");if(""===t[t.length-1]&&t.length>1&&t.pop(),t.length>4)return _;const n=[];for(const e of t){const t=S(e);if(t===_)return _;n.push(t)}for(let e=0;e255)return _;if(n[n.length-1]>=256**(5-n.length))return _;let r=n.pop(),o=0;for(const e of n)r+=e*256**(3-o),++o;return r}(n):n;var a}function N(e){return"number"==typeof e?function(e){let t="",n=e;for(let e=1;e<=4;++e)t=String(n%256)+t,4!==e&&(t=`.${t}`),n=Math.floor(n/256);return t}(e):e instanceof Array?`[${function(e){let t="";const n=function(e){let t=null,n=1,r=null,o=0;for(let i=0;in&&(t=r,n=o),r=null,o=0):(null===r&&(r=i),++o);return o>n?r:t}(e);let r=!1;for(let o=0;o<=7;++o)r&&0===e[o]||(r&&(r=!1),n!==o?(t+=e[o].toString(16),7!==o&&(t+=":")):(t+=0===o?"::":":",r=!0));return t}(e)}]`:e}function C(e){const{path:t}=e;var n;0!==t.length&&("file"===e.scheme&&1===t.length&&(n=t[0],/^[A-Za-z]:$/u.test(n))||t.pop())}function D(e){return""!==e.username||""!==e.password}function L(e){return"string"==typeof e.path}function M(e,t,n,r,o){if(this.pointer=0,this.input=e,this.base=t||null,this.encodingOverride=n||"utf-8",this.stateOverride=o,this.url=r,this.failure=!1,this.parseError=!1,!this.url){this.url={scheme:"",username:"",password:"",host:null,port:null,path:[],query:null,fragment:null};const e=function(e){return e.replace(/^[\u0000-\u001F\u0020]+|[\u0000-\u001F\u0020]+$/gu,"")}(this.input);e!==this.input&&(this.parseError=!0),this.input=e}const i=function(e){return e.replace(/\u0009|\u000A|\u000D/gu,"")}(this.input);for(i!==this.input&&(this.parseError=!0),this.input=i,this.state=o||"scheme start",this.buffer="",this.atFlag=!1,this.arrFlag=!1,this.passwordTokenSeenFlag=!1,this.input=Array.from(this.input,(e=>e.codePointAt(0)));this.pointer<=this.input.length;++this.pointer){const e=this.input[this.pointer],t=isNaN(e)?void 0:String.fromCodePoint(e),n=this[`parse ${this.state}`](e,t);if(!n)break;if(n===_){this.failure=!0;break}}}M.prototype["parse scheme start"]=function(e,t){if(o.isASCIIAlpha(e))this.buffer+=t.toLowerCase(),this.state="scheme";else{if(this.stateOverride)return this.parseError=!0,_;this.state="no scheme",--this.pointer}return!0},M.prototype["parse scheme"]=function(e,t){if(o.isASCIIAlphanumeric(e)||e===E("+")||e===E("-")||e===E("."))this.buffer+=t.toLowerCase();else if(e===E(":")){if(this.stateOverride){if(w(this.url)&&!T(this.buffer))return!1;if(!w(this.url)&&T(this.buffer))return!1;if((D(this.url)||null!==this.url.port)&&"file"===this.buffer)return!1;if("file"===this.url.scheme&&""===this.url.host)return!1}if(this.url.scheme=this.buffer,this.stateOverride)return this.url.port===R(this.url.scheme)&&(this.url.port=null),!1;this.buffer="","file"===this.url.scheme?(this.input[this.pointer+1]===E("/")&&this.input[this.pointer+2]===E("/")||(this.parseError=!0),this.state="file"):w(this.url)&&null!==this.base&&this.base.scheme===this.url.scheme?this.state="special relative or authority":w(this.url)?this.state="special authority slashes":this.input[this.pointer+1]===E("/")?(this.state="path or authority",++this.pointer):(this.url.path="",this.state="opaque path")}else{if(this.stateOverride)return this.parseError=!0,_;this.buffer="",this.state="no scheme",this.pointer=-1}return!0},M.prototype["parse no scheme"]=function(e){return null===this.base||L(this.base)&&e!==E("#")?_:(L(this.base)&&e===E("#")?(this.url.scheme=this.base.scheme,this.url.path=this.base.path,this.url.query=this.base.query,this.url.fragment="",this.state="fragment"):"file"===this.base.scheme?(this.state="file",--this.pointer):(this.state="relative",--this.pointer),!0)},M.prototype["parse special relative or authority"]=function(e){return e===E("/")&&this.input[this.pointer+1]===E("/")?(this.state="special authority ignore slashes",++this.pointer):(this.parseError=!0,this.state="relative",--this.pointer),!0},M.prototype["parse path or authority"]=function(e){return e===E("/")?this.state="authority":(this.state="path",--this.pointer),!0},M.prototype["parse relative"]=function(e){return this.url.scheme=this.base.scheme,e===E("/")?this.state="relative slash":w(this.url)&&e===E("\\")?(this.parseError=!0,this.state="relative slash"):(this.url.username=this.base.username,this.url.password=this.base.password,this.url.host=this.base.host,this.url.port=this.base.port,this.url.path=this.base.path.slice(),this.url.query=this.base.query,e===E("?")?(this.url.query="",this.state="query"):e===E("#")?(this.url.fragment="",this.state="fragment"):isNaN(e)||(this.url.query=null,this.url.path.pop(),this.state="path",--this.pointer)),!0},M.prototype["parse relative slash"]=function(e){return!w(this.url)||e!==E("/")&&e!==E("\\")?e===E("/")?this.state="authority":(this.url.username=this.base.username,this.url.password=this.base.password,this.url.host=this.base.host,this.url.port=this.base.port,this.state="path",--this.pointer):(e===E("\\")&&(this.parseError=!0),this.state="special authority ignore slashes"),!0},M.prototype["parse special authority slashes"]=function(e){return e===E("/")&&this.input[this.pointer+1]===E("/")?(this.state="special authority ignore slashes",++this.pointer):(this.parseError=!0,this.state="special authority ignore slashes",--this.pointer),!0},M.prototype["parse special authority ignore slashes"]=function(e){return e!==E("/")&&e!==E("\\")?(this.state="authority",--this.pointer):this.parseError=!0,!0},M.prototype["parse authority"]=function(e,t){if(e===E("@")){this.parseError=!0,this.atFlag&&(this.buffer=`%40${this.buffer}`),this.atFlag=!0;const e=g(this.buffer);for(let t=0;t65535)return this.parseError=!0,_;this.url.port=e===R(this.url.scheme)?null:e,this.buffer=""}if(this.stateOverride)return!1;this.state="path start",--this.pointer}return!0};const x=new Set([E("/"),E("\\"),E("?"),E("#")]);function B(e,t){const n=e.length-t;return n>=2&&(r=e[t],i=e[t+1],o.isASCIIAlpha(r)&&(i===E(":")||i===E("|")))&&(2===n||x.has(e[t+2]));var r,i}function P(e){if(L(e))return e.path;let t="";for(const n of e.path)t+=`/${n}`;return t}M.prototype["parse file"]=function(e){return this.url.scheme="file",this.url.host="",e===E("/")||e===E("\\")?(e===E("\\")&&(this.parseError=!0),this.state="file slash"):null!==this.base&&"file"===this.base.scheme?(this.url.host=this.base.host,this.url.path=this.base.path.slice(),this.url.query=this.base.query,e===E("?")?(this.url.query="",this.state="query"):e===E("#")?(this.url.fragment="",this.state="fragment"):isNaN(e)||(this.url.query=null,B(this.input,this.pointer)?(this.parseError=!0,this.url.path=[]):C(this.url),this.state="path",--this.pointer)):(this.state="path",--this.pointer),!0},M.prototype["parse file slash"]=function(e){var t;return e===E("/")||e===E("\\")?(e===E("\\")&&(this.parseError=!0),this.state="file host"):(null!==this.base&&"file"===this.base.scheme&&(!B(this.input,this.pointer)&&2===(t=this.base.path[0]).length&&o.isASCIIAlpha(t.codePointAt(0))&&":"===t[1]&&this.url.path.push(this.base.path[0]),this.url.host=this.base.host),this.state="path",--this.pointer),!0},M.prototype["parse file host"]=function(e,t){if(isNaN(e)||e===E("/")||e===E("\\")||e===E("?")||e===E("#"))if(--this.pointer,!this.stateOverride&&v(this.buffer))this.parseError=!0,this.state="path";else if(""===this.buffer){if(this.url.host="",this.stateOverride)return!1;this.state="path start"}else{let e=I(this.buffer,O(this.url));if(e===_)return _;if("localhost"===e&&(e=""),this.url.host=e,this.stateOverride)return!1;this.buffer="",this.state="path start"}else this.buffer+=t;return!0},M.prototype["parse path start"]=function(e){return w(this.url)?(e===E("\\")&&(this.parseError=!0),this.state="path",e!==E("/")&&e!==E("\\")&&--this.pointer):this.stateOverride||e!==E("?")?this.stateOverride||e!==E("#")?void 0!==e?(this.state="path",e!==E("/")&&--this.pointer):this.stateOverride&&null===this.url.host&&this.url.path.push(""):(this.url.fragment="",this.state="fragment"):(this.url.query="",this.state="query"),!0},M.prototype["parse path"]=function(e){var t;return isNaN(e)||e===E("/")||w(this.url)&&e===E("\\")||!this.stateOverride&&(e===E("?")||e===E("#"))?(w(this.url)&&e===E("\\")&&(this.parseError=!0),".."===(t=(t=this.buffer).toLowerCase())||"%2e."===t||".%2e"===t||"%2e%2e"===t?(C(this.url),e===E("/")||w(this.url)&&e===E("\\")||this.url.path.push("")):!A(this.buffer)||e===E("/")||w(this.url)&&e===E("\\")?A(this.buffer)||("file"===this.url.scheme&&0===this.url.path.length&&v(this.buffer)&&(this.buffer=`${this.buffer[0]}:`),this.url.path.push(this.buffer)):this.url.path.push(""),this.buffer="",e===E("?")&&(this.url.query="",this.state="query"),e===E("#")&&(this.url.fragment="",this.state="fragment")):(e!==E("%")||o.isASCIIHex(this.input[this.pointer+1])&&o.isASCIIHex(this.input[this.pointer+2])||(this.parseError=!0),this.buffer+=a(e,p)),!0},M.prototype["parse opaque path"]=function(e){return e===E("?")?(this.url.query="",this.state="query"):e===E("#")?(this.url.fragment="",this.state="fragment"):(isNaN(e)||e===E("%")||(this.parseError=!0),e!==E("%")||o.isASCIIHex(this.input[this.pointer+1])&&o.isASCIIHex(this.input[this.pointer+2])||(this.parseError=!0),isNaN(e)||(this.url.path+=a(e,c))),!0},M.prototype["parse query"]=function(e,t){if(w(this.url)&&"ws"!==this.url.scheme&&"wss"!==this.url.scheme||(this.encodingOverride="utf-8"),!this.stateOverride&&e===E("#")||isNaN(e)){const t=w(this.url)?f:h;this.url.query+=u(this.buffer,t),this.buffer="",e===E("#")&&(this.url.fragment="",this.state="fragment")}else isNaN(e)||(e!==E("%")||o.isASCIIHex(this.input[this.pointer+1])&&o.isASCIIHex(this.input[this.pointer+2])||(this.parseError=!0),this.buffer+=t);return!0},M.prototype["parse fragment"]=function(e){return isNaN(e)||(e!==E("%")||o.isASCIIHex(this.input[this.pointer+1])&&o.isASCIIHex(this.input[this.pointer+2])||(this.parseError=!0),this.url.fragment+=a(e,l)),!0},e.exports.serializeURL=function(e,t){let n=`${e.scheme}:`;return null!==e.host&&(n+="//",""===e.username&&""===e.password||(n+=e.username,""!==e.password&&(n+=`:${e.password}`),n+="@"),n+=N(e.host),null!==e.port&&(n+=`:${e.port}`)),null===e.host&&!L(e)&&e.path.length>1&&""===e.path[0]&&(n+="/."),n+=P(e),null!==e.query&&(n+=`?${e.query}`),t||null===e.fragment||(n+=`#${e.fragment}`),n},e.exports.serializePath=P,e.exports.serializeURLOrigin=function(t){switch(t.scheme){case"blob":{const n=e.exports.parseURL(P(t));return null===n||"http"!==n.scheme&&"https"!==n.scheme?"null":e.exports.serializeURLOrigin(n)}case"ftp":case"http":case"https":case"ws":case"wss":return function(e){let t=`${e.scheme}://`;return t+=N(e.host),null!==e.port&&(t+=`:${e.port}`),t}({scheme:t.scheme,host:t.host,port:t.port});default:return"null"}},e.exports.basicURLParse=function(e,t){void 0===t&&(t={});const n=new M(e,t.baseURL,t.encodingOverride,t.url,t.stateOverride);return n.failure?null:n.url},e.exports.setTheUsername=function(e,t){e.username=u(t,d)},e.exports.setThePassword=function(e,t){e.password=u(t,d)},e.exports.serializeHost=N,e.exports.cannotHaveAUsernamePasswordPort=function(e){return null===e.host||""===e.host||"file"===e.scheme},e.exports.hasAnOpaquePath=L,e.exports.serializeInteger=function(e){return String(e)},e.exports.parseURL=function(t,n){return void 0===n&&(n={}),e.exports.basicURLParse(t,{baseURL:n.baseURL,encodingOverride:n.encodingOverride})}},85252:(e,t,n)=>{"use strict";const{utf8Encode:r,utf8DecodeWithoutBOM:o}=n(58408),{percentDecodeBytes:i,utf8PercentEncodeString:s,isURLEncodedPercentEncode:a}=n(41656);function u(e){return e.codePointAt(0)}function c(e,t,n){let r=e.indexOf(t);for(;r>=0;)e[r]=n,r=e.indexOf(t,r+1);return e}e.exports={parseUrlencodedString:function(e){return function(e){const t=function(e,t){const n=[];let r=0,o=e.indexOf(t);for(;o>=0;)n.push(e.slice(r,o)),r=o+1,o=e.indexOf(t,r);return r!==e.length&&n.push(e.slice(r)),n}(e,u("&")),n=[];for(const e of t){if(0===e.length)continue;let t,r;const s=e.indexOf(u("="));s>=0?(t=e.slice(0,s),r=e.slice(s+1)):(t=e,r=new Uint8Array(0)),t=c(t,43,32),r=c(r,43,32);const a=o(i(t)),l=o(i(r));n.push([a,l])}return n}(r(e))},serializeUrlencoded:function(e,t=void 0){let n="utf-8";void 0!==t&&(n=t);let r="";for(const[t,o]of e.entries()){const e=s(o[0],a,!0);let i=o[1];o.length>2&&void 0!==o[2]&&("hidden"===o[2]&&"_charset_"===e?i=n:"file"===o[2]&&(i=i.name)),i=s(i,a,!0),0!==t&&(r+="&"),r+=`${e}=${i}`}return r}}},46892:(e,t)=>{"use strict";const n=Function.prototype.call.bind(Object.prototype.hasOwnProperty),r=Symbol("wrapper"),o=Symbol("impl"),i=Symbol("SameObject caches"),s=Symbol.for("[webidl2js] constructor registry"),a=Object.getPrototypeOf(Object.getPrototypeOf((async function*(){})).prototype);function u(e){if(n(e,s))return e[s];const t=Object.create(null);t["%Object.prototype%"]=e.Object.prototype,t["%IteratorPrototype%"]=Object.getPrototypeOf(Object.getPrototypeOf((new e.Array)[Symbol.iterator]()));try{t["%AsyncIteratorPrototype%"]=Object.getPrototypeOf(Object.getPrototypeOf(e.eval("(async function* () {})").prototype))}catch{t["%AsyncIteratorPrototype%"]=a}return e[s]=t,t}function c(e){return e?e[r]:null}function l(e){return e?e[o]:null}const h=Symbol("internal"),f=Object.getOwnPropertyDescriptor(ArrayBuffer.prototype,"byteLength").get,p=Symbol("supports property index"),d=Symbol("supported property indices"),E=Symbol("supports property name"),m=Symbol("supported property names"),_=Symbol("indexed property get"),g=Symbol("indexed property set new"),y=Symbol("indexed property set existing"),A=Symbol("named property get"),v=Symbol("named property set new"),b=Symbol("named property set existing"),T=Symbol("named property delete"),w=Symbol("async iterator get the next iteration result"),O=Symbol("async iterator return steps"),R=Symbol("async iterator initialization steps"),S=Symbol("async iterator end of iteration");e.exports={isObject:function(e){return"object"==typeof e&&null!==e||"function"==typeof e},hasOwn:n,define:function(e,t){for(const n of Reflect.ownKeys(t)){const r=Reflect.getOwnPropertyDescriptor(t,n);if(r&&!Reflect.defineProperty(e,n,r))throw new TypeError(`Cannot redefine property: ${String(n)}`)}},newObjectInRealm:function(e,t){const n=u(e);return Object.defineProperties(Object.create(n["%Object.prototype%"]),Object.getOwnPropertyDescriptors(t))},wrapperSymbol:r,implSymbol:o,getSameObject:function(e,t,n){return e[i]||(e[i]=Object.create(null)),t in e[i]||(e[i][t]=n()),e[i][t]},ctorRegistrySymbol:s,initCtorRegistry:u,wrapperForImpl:c,implForWrapper:l,tryWrapperForImpl:function(e){return c(e)||e},tryImplForWrapper:function(e){return l(e)||e},iterInternalSymbol:h,isArrayBuffer:function(e){try{return f.call(e),!0}catch(e){return!1}},isArrayIndexPropName:function(e){if("string"!=typeof e)return!1;const t=e>>>0;return t!==2**32-1&&e===`${t}`},supportsPropertyIndex:p,supportedPropertyIndices:d,supportsPropertyName:E,supportedPropertyNames:m,indexedGet:_,indexedSetNew:g,indexedSetExisting:y,namedGet:A,namedSetNew:v,namedSetExisting:b,namedDelete:T,asyncIteratorNext:w,asyncIteratorReturn:O,asyncIteratorInit:R,asyncIteratorEOI:S,iteratorResult:function([e,t],n){let r;switch(n){case"key":r=e;break;case"value":r=t;break;case"key+value":r=[e,t]}return{value:r,done:!1}}}},3181:(e,t,n)=>{"use strict";const r=n(76648),o=n(52682);t.URL=r,t.URLSearchParams=o},56954:e=>{function t(e){return Promise.resolve().then((()=>{var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}))}t.keys=()=>[],t.resolve=t,t.id=56954,e.exports=t},42613:e=>{"use strict";e.exports=require("assert")},20181:e=>{"use strict";e.exports=require("buffer")},35317:e=>{"use strict";e.exports=require("child_process")},49140:e=>{"use strict";e.exports=require("constants")},76982:e=>{"use strict";e.exports=require("crypto")},7194:e=>{"use strict";e.exports=require("dgram")},72250:e=>{"use strict";e.exports=require("dns")},24434:e=>{"use strict";e.exports=require("events")},79896:e=>{"use strict";e.exports=require("fs")},91943:e=>{"use strict";e.exports=require("fs/promises")},58611:e=>{"use strict";e.exports=require("http")},65692:e=>{"use strict";e.exports=require("https")},69278:e=>{"use strict";e.exports=require("net")},70857:e=>{"use strict";e.exports=require("os")},16928:e=>{"use strict";e.exports=require("path")},932:e=>{"use strict";e.exports=require("process")},24876:e=>{"use strict";e.exports=require("punycode")},2203:e=>{"use strict";e.exports=require("stream")},35574:e=>{"use strict";e.exports=require("string_decoder")},53557:e=>{"use strict";e.exports=require("timers")},16460:e=>{"use strict";e.exports=require("timers/promises")},64756:e=>{"use strict";e.exports=require("tls")},52018:e=>{"use strict";e.exports=require("tty")},87016:e=>{"use strict";e.exports=require("url")},39023:e=>{"use strict";e.exports=require("util")},43106:e=>{"use strict";e.exports=require("zlib")},54430:(e,t)=>{"use strict";t.w=void 0,t.w={operationRequestMap:new WeakMap}},12583:(e,t)=>{"use strict";t.w=void 0,t.w={instrumenterImplementation:void 0}},83633:(e,t,n)=>{"use strict";function r(e){return["[object ArrayBuffer]","[object SharedArrayBuffer]"].includes(Object.prototype.toString.call(e))}function o(e){return"[object Uint8Array]"===Object.prototype.toString.call(e)}function i(e){return"[object RegExp]"===Object.prototype.toString.call(e)}function s(e){return"[object Map]"===Object.prototype.toString.call(e)}function a(e){return"[object Date]"===Object.prototype.toString.call(e)}function u(e,t){return JSON.stringify(e,((e,t)=>"bigint"==typeof t?{$numberLong:`${t}`}:s(t)?Object.fromEntries(t):t))}const c=6,l=2147483647,h=-2147483648,f=Math.pow(2,63)-1,p=-Math.pow(2,63),d=Math.pow(2,53),E=-Math.pow(2,53),m=1,_=2,g=3,y=4,A=5,v=6,b=7,T=8,w=9,O=10,R=11,S=12,I=13,N=14,C=15,D=16,L=17,M=18,x=19,B=255,P=127,F=0,U=4,k=Object.freeze({double:1,string:2,object:3,array:4,binData:5,undefined:6,objectId:7,bool:8,date:9,null:10,regex:11,dbPointer:12,javascript:13,symbol:14,javascriptWithScope:15,int:16,timestamp:17,long:18,decimal:19,minKey:-1,maxKey:127});class j extends Error{get bsonError(){return!0}get name(){return"BSONError"}constructor(e,t){super(e,t)}static isBSONError(e){return null!=e&&"object"==typeof e&&"bsonError"in e&&!0===e.bsonError&&"name"in e&&"message"in e&&"stack"in e}}class G extends j{get name(){return"BSONVersionError"}constructor(){super(`Unsupported BSON version, bson types must be from bson ${c}.x.x`)}}class V extends j{get name(){return"BSONRuntimeError"}constructor(e){super(e)}}class Y extends j{get name(){return"BSONOffsetError"}constructor(e,t,n){super(`${e}. offset: ${t}`,n),this.offset=t}}let H,Q;function W(e,t,n,r){if(r){H??=new TextDecoder("utf8",{fatal:!0});try{return H.decode(e.subarray(t,n))}catch(e){throw new j("Invalid UTF-8 string in BSON document",{cause:e})}}return Q??=new TextDecoder("utf8",{fatal:!1}),Q.decode(e.subarray(t,n))}function z(e,t,n){if(0===e.length)return"";const r=n-t;if(0===r)return"";if(r>20)return null;if(1===r&&e[t]<128)return String.fromCharCode(e[t]);if(2===r&&e[t]<128&&e[t+1]<128)return String.fromCharCode(e[t])+String.fromCharCode(e[t+1]);if(3===r&&e[t]<128&&e[t+1]<128&&e[t+2]<128)return String.fromCharCode(e[t])+String.fromCharCode(e[t+1])+String.fromCharCode(e[t+2]);const o=[];for(let r=t;r127)return null;o.push(t)}return String.fromCharCode(...o)}function q(e){return X.fromNumberArray(Array.from({length:e},(()=>Math.floor(256*Math.random()))))}const K=(()=>{try{return n(76982).randomBytes}catch{return q}})(),X={toLocalBufferType(e){if(Buffer.isBuffer(e))return e;if(ArrayBuffer.isView(e))return Buffer.from(e.buffer,e.byteOffset,e.byteLength);const t=e?.[Symbol.toStringTag]??Object.prototype.toString.call(e);if("ArrayBuffer"===t||"SharedArrayBuffer"===t||"[object ArrayBuffer]"===t||"[object SharedArrayBuffer]"===t)return Buffer.from(e);throw new j(`Cannot create Buffer from ${String(e)}`)},allocate:e=>Buffer.alloc(e),allocateUnsafe:e=>Buffer.allocUnsafe(e),equals:(e,t)=>X.toLocalBufferType(e).equals(t),fromNumberArray:e=>Buffer.from(e),fromBase64:e=>Buffer.from(e,"base64"),toBase64:e=>X.toLocalBufferType(e).toString("base64"),fromISO88591:e=>Buffer.from(e,"binary"),toISO88591:e=>X.toLocalBufferType(e).toString("binary"),fromHex:e=>Buffer.from(e,"hex"),toHex:e=>X.toLocalBufferType(e).toString("hex"),toUTF8(e,t,n,r){const o=n-t<=20?z(e,t,n):null;if(null!=o)return o;const i=X.toLocalBufferType(e).toString("utf8",t,n);if(r)for(let r=0;rBuffer.byteLength(e,"utf8"),encodeUTF8Into(e,t,n){const r=function(e,t,n){if(0===t.length)return 0;if(t.length>25)return null;if(e.length-n127)return null;e[o]=n}return t.length}(e,t,n);return null!=r?r:X.toLocalBufferType(e).write(t,n,void 0,"utf8")},randomBytes:K};function J(e){if(e<0)throw new RangeError(`The argument 'byteLength' is invalid. Received ${e}`);return ee.fromNumberArray(Array.from({length:e},(()=>Math.floor(256*Math.random()))))}const $=(()=>{const{crypto:e}=globalThis;if(null!=e&&"function"==typeof e.getRandomValues)return t=>e.getRandomValues(ee.allocate(t));if(function(){const{navigator:e}=globalThis;return"object"==typeof e&&"ReactNative"===e.product}()){const{console:e}=globalThis;e?.warn?.("BSON: For React Native please polyfill crypto.getRandomValues, e.g. using: https://www.npmjs.com/package/react-native-get-random-values.")}return J})(),Z=/(\d|[a-f])/i,ee={toLocalBufferType(e){const t=e?.[Symbol.toStringTag]??Object.prototype.toString.call(e);if("Uint8Array"===t)return e;if(ArrayBuffer.isView(e))return new Uint8Array(e.buffer.slice(e.byteOffset,e.byteOffset+e.byteLength));if("ArrayBuffer"===t||"SharedArrayBuffer"===t||"[object ArrayBuffer]"===t||"[object SharedArrayBuffer]"===t)return new Uint8Array(e);throw new j(`Cannot make a Uint8Array from ${String(e)}`)},allocate(e){if("number"!=typeof e)throw new TypeError(`The "size" argument must be of type number. Received ${String(e)}`);return new Uint8Array(e)},allocateUnsafe:e=>ee.allocate(e),equals(e,t){if(e.byteLength!==t.byteLength)return!1;for(let n=0;nUint8Array.from(e),fromBase64:e=>Uint8Array.from(atob(e),(e=>e.charCodeAt(0))),toBase64:e=>btoa(ee.toISO88591(e)),fromISO88591:e=>Uint8Array.from(e,(e=>255&e.charCodeAt(0))),toISO88591:e=>Array.from(Uint16Array.from(e),(e=>String.fromCharCode(e))).join(""),fromHex(e){const t=e.length%2==0?e:e.slice(0,e.length-1),n=[];for(let e=0;eArray.from(e,(e=>e.toString(16).padStart(2,"0"))).join(""),toUTF8(e,t,n,r){const o=n-t<=20?z(e,t,n):null;return null!=o?o:W(e,t,n,r)},utf8ByteLength:e=>(new TextEncoder).encode(e).byteLength,encodeUTF8Into(e,t,n){const r=(new TextEncoder).encode(t);return e.set(r,n),r.byteLength},randomBytes:$},te="function"==typeof Buffer&&!0!==Buffer.prototype?._isBuffer?X:ee;class ne{get[Symbol.for("@@mdb.bson.version")](){return c}[Symbol.for("nodejs.util.inspect.custom")](e,t,n){return this.inspect(e,t,n)}}class re extends ne{get _bsontype(){return"Binary"}constructor(e,t){if(super(),null!=e&&"string"==typeof e&&!ArrayBuffer.isView(e)&&!r(e)&&!Array.isArray(e))throw new j("Binary can only be constructed from Uint8Array or number[]");this.sub_type=t??re.BSON_BINARY_SUBTYPE_DEFAULT,null==e?(this.buffer=te.allocate(re.BUFFER_SIZE),this.position=0):(this.buffer=Array.isArray(e)?te.fromNumberArray(e):te.toLocalBufferType(e),this.position=this.buffer.byteLength)}put(e){if("string"==typeof e&&1!==e.length)throw new j("only accepts single character String");if("number"!=typeof e&&1!==e.length)throw new j("only accepts single character Uint8Array or Array");let t;if(t="string"==typeof e?e.charCodeAt(0):"number"==typeof e?e:e[0],t<0||t>255)throw new j("only accepts number in a valid unsigned byte range 0-255");if(this.buffer.byteLength>this.position)this.buffer[this.position++]=t;else{const e=te.allocate(re.BUFFER_SIZE+this.buffer.length);e.set(this.buffer,0),this.buffer=e,this.buffer[this.position++]=t}}write(e,t){if(t="number"==typeof t?t:this.position,this.buffer.byteLengththis.position?t+e.length:this.position;else if("string"==typeof e)throw new j("input cannot be string")}read(e,t){return t=t&&t>0?t:this.position,this.buffer.slice(e,e+t)}value(){return this.buffer.length===this.position?this.buffer:this.buffer.subarray(0,this.position)}length(){return this.position}toJSON(){return te.toBase64(this.buffer.subarray(0,this.position))}toString(e){return"hex"===e?te.toHex(this.buffer.subarray(0,this.position)):"base64"===e?te.toBase64(this.buffer.subarray(0,this.position)):te.toUTF8(this.buffer,0,this.position,!1)}toExtendedJSON(e){e=e||{};const t=te.toBase64(this.buffer),n=Number(this.sub_type).toString(16);return e.legacy?{$binary:t,$type:1===n.length?"0"+n:n}:{$binary:{base64:t,subType:1===n.length?"0"+n:n}}}toUUID(){if(this.sub_type===re.SUBTYPE_UUID)return new se(this.buffer.slice(0,this.position));throw new j(`Binary sub_type "${this.sub_type}" is not supported for converting to UUID. Only "${re.SUBTYPE_UUID}" is currently supported.`)}static createFromHexString(e,t){return new re(te.fromHex(e),t)}static createFromBase64(e,t){return new re(te.fromBase64(e),t)}static fromExtendedJSON(e,t){let n,r;if(t=t||{},"$binary"in e?t.legacy&&"string"==typeof e.$binary&&"$type"in e?(r=e.$type?parseInt(e.$type,16):0,n=te.fromBase64(e.$binary)):"string"!=typeof e.$binary&&(r=e.$binary.subType?parseInt(e.$binary.subType,16):0,n=te.fromBase64(e.$binary.base64)):"$uuid"in e&&(r=4,n=se.bytesFromString(e.$uuid)),!n)throw new j(`Unexpected Binary Extended JSON format ${JSON.stringify(e)}`);return r===U?new se(n):new re(n,r)}inspect(e,t,n){return n??=u,`Binary.createFromBase64(${n(te.toBase64(this.buffer.subarray(0,this.position)),t)}, ${n(this.sub_type,t)})`}}re.BSON_BINARY_SUBTYPE_DEFAULT=0,re.BUFFER_SIZE=256,re.SUBTYPE_DEFAULT=0,re.SUBTYPE_FUNCTION=1,re.SUBTYPE_BYTE_ARRAY=2,re.SUBTYPE_UUID_OLD=3,re.SUBTYPE_UUID=4,re.SUBTYPE_MD5=5,re.SUBTYPE_ENCRYPTED=6,re.SUBTYPE_COLUMN=7,re.SUBTYPE_SENSITIVE=8,re.SUBTYPE_USER_DEFINED=128;const oe=/^[0-9A-F]{32}$/i,ie=/^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$/i;class se extends re{constructor(e){let t;if(null==e)t=se.generate();else if(e instanceof se)t=te.toLocalBufferType(new Uint8Array(e.buffer));else if(ArrayBuffer.isView(e)&&16===e.byteLength)t=te.toLocalBufferType(e);else{if("string"!=typeof e)throw new j("Argument passed in UUID constructor must be a UUID, a 16 byte Buffer or a 32/36 character hex string (dashes excluded/included, format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx).");t=se.bytesFromString(e)}super(t,U)}get id(){return this.buffer}set id(e){this.buffer=e}toHexString(e=!0){return e?[te.toHex(this.buffer.subarray(0,4)),te.toHex(this.buffer.subarray(4,6)),te.toHex(this.buffer.subarray(6,8)),te.toHex(this.buffer.subarray(8,10)),te.toHex(this.buffer.subarray(10,16))].join("-"):te.toHex(this.buffer)}toString(e){return"hex"===e?te.toHex(this.id):"base64"===e?te.toBase64(this.id):this.toHexString()}toJSON(){return this.toHexString()}equals(e){if(!e)return!1;if(e instanceof se)return te.equals(e.id,this.id);try{return te.equals(new se(e).id,this.id)}catch{return!1}}toBinary(){return new re(this.id,re.SUBTYPE_UUID)}static generate(){const e=te.randomBytes(16);return e[6]=15&e[6]|64,e[8]=63&e[8]|128,e}static isValid(e){return!!e&&("string"==typeof e?se.isValidUUIDString(e):o(e)?16===e.byteLength:"Binary"===e._bsontype&&e.sub_type===this.SUBTYPE_UUID&&16===e.buffer.byteLength)}static createFromHexString(e){const t=se.bytesFromString(e);return new se(t)}static createFromBase64(e){return new se(te.fromBase64(e))}static bytesFromString(e){if(!se.isValidUUIDString(e))throw new j("UUID string representation must be 32 hex digits or canonical hyphenated representation");return te.fromHex(e.replace(/-/g,""))}static isValidUUIDString(e){return oe.test(e)||ie.test(e)}inspect(e,t,n){return n??=u,`new UUID(${n(this.toHexString(),t)})`}}class ae extends ne{get _bsontype(){return"Code"}constructor(e,t){super(),this.code=e.toString(),this.scope=t??null}toJSON(){return null!=this.scope?{code:this.code,scope:this.scope}:{code:this.code}}toExtendedJSON(){return this.scope?{$code:this.code,$scope:this.scope}:{$code:this.code}}static fromExtendedJSON(e){return new ae(e.$code,e.$scope)}inspect(e,t,n){n??=u;let r=n(this.code,t);const o=r.includes("\n");return null!=this.scope&&(r+=`,${o?"\n":" "}${n(this.scope,t)}`),`new Code(${o?"\n":""}${r}${o&&null===this.scope?"\n":""})`}}function ue(e){return null!=e&&"object"==typeof e&&"$id"in e&&null!=e.$id&&"$ref"in e&&"string"==typeof e.$ref&&(!("$db"in e)||"$db"in e&&"string"==typeof e.$db)}class ce extends ne{get _bsontype(){return"DBRef"}constructor(e,t,n,r){super();const o=e.split(".");2===o.length&&(n=o.shift(),e=o.shift()),this.collection=e,this.oid=t,this.db=n,this.fields=r||{}}get namespace(){return this.collection}set namespace(e){this.collection=e}toJSON(){const e=Object.assign({$ref:this.collection,$id:this.oid},this.fields);return null!=this.db&&(e.$db=this.db),e}toExtendedJSON(e){e=e||{};let t={$ref:this.collection,$id:this.oid};return e.legacy||(this.db&&(t.$db=this.db),t=Object.assign(t,this.fields)),t}static fromExtendedJSON(e){const t=Object.assign({},e);return delete t.$ref,delete t.$id,delete t.$db,new ce(e.$ref,e.$id,e.$db,t)}inspect(e,t,n){n??=u;const r=[n(this.namespace,t),n(this.oid,t),...this.db?[n(this.db,t)]:[],...Object.keys(this.fields).length>0?[n(this.fields,t)]:[]];return r[1]=n===u?`new ObjectId(${r[1]})`:r[1],`new DBRef(${r.join(", ")})`}}function le(e){if(""===e)return e;let t=0;const n="-"===e[t],r="+"===e[t];(r||n)&&(t+=1);let o=!1;for(;t>>=0)&&e<256)&&(r=me[e],r)?r:(n=ge.fromBits(e,(0|e)<0?-1:0,!0),o&&(me[e]=n),n):(o=-128<=(e|=0)&&e<128)&&(r=Ee[e],r)?r:(n=ge.fromBits(e,e<0?-1:0,!1),o&&(Ee[e]=n),n)}static fromNumber(e,t){if(isNaN(e))return t?ge.UZERO:ge.ZERO;if(t){if(e<0)return ge.UZERO;if(e>=pe)return ge.MAX_UNSIGNED_VALUE}else{if(e<=-de)return ge.MIN_VALUE;if(e+1>=de)return ge.MAX_VALUE}return e<0?ge.fromNumber(-e,t).neg():ge.fromBits(e%fe|0,e/fe|0,t)}static fromBigInt(e,t){return ge.fromString(e.toString(),t)}static _fromString(e,t,n){if(0===e.length)throw new j("empty string");if(n<2||360)throw new j("interior hyphen");if(0===r)return ge._fromString(e.substring(1),t,n).neg();const o=ge.fromNumber(Math.pow(n,8));let i=ge.ZERO;for(let t=0;t>>16,n=65535&this.high,r=this.low>>>16,o=65535&this.low,i=e.high>>>16,s=65535&e.high,a=e.low>>>16;let u=0,c=0,l=0,h=0;return h+=o+(65535&e.low),l+=h>>>16,h&=65535,l+=r+a,c+=l>>>16,l&=65535,c+=n+s,u+=c>>>16,c&=65535,u+=t+i,u&=65535,ge.fromBits(l<<16|h,u<<16|c,this.unsigned)}and(e){return ge.isLong(e)||(e=ge.fromValue(e)),ge.fromBits(this.low&e.low,this.high&e.high,this.unsigned)}compare(e){if(ge.isLong(e)||(e=ge.fromValue(e)),this.eq(e))return 0;const t=this.isNegative(),n=e.isNegative();return t&&!n?-1:!t&&n?1:this.unsigned?e.high>>>0>this.high>>>0||e.high===this.high&&e.low>>>0>this.low>>>0?-1:1:this.sub(e).isNegative()?-1:1}comp(e){return this.compare(e)}divide(e){if(ge.isLong(e)||(e=ge.fromValue(e)),e.isZero())throw new j("division by zero");if(he){if(!this.unsigned&&-2147483648===this.high&&-1===e.low&&-1===e.high)return this;const t=(this.unsigned?he.div_u:he.div_s)(this.low,this.high,e.low,e.high);return ge.fromBits(t,he.get_high(),this.unsigned)}if(this.isZero())return this.unsigned?ge.UZERO:ge.ZERO;let t,n,r;if(this.unsigned){if(e.unsigned||(e=e.toUnsigned()),e.gt(this))return ge.UZERO;if(e.gt(this.shru(1)))return ge.UONE;r=ge.UZERO}else{if(this.eq(ge.MIN_VALUE))return e.eq(ge.ONE)||e.eq(ge.NEG_ONE)?ge.MIN_VALUE:e.eq(ge.MIN_VALUE)?ge.ONE:(t=this.shr(1).div(e).shl(1),t.eq(ge.ZERO)?e.isNegative()?ge.ONE:ge.NEG_ONE:(n=this.sub(e.mul(t)),r=t.add(n.div(e)),r));if(e.eq(ge.MIN_VALUE))return this.unsigned?ge.UZERO:ge.ZERO;if(this.isNegative())return e.isNegative()?this.neg().div(e.neg()):this.neg().div(e).neg();if(e.isNegative())return this.div(e.neg()).neg();r=ge.ZERO}for(n=this;n.gte(e);){t=Math.max(1,Math.floor(n.toNumber()/e.toNumber()));const o=Math.ceil(Math.log(t)/Math.LN2),i=o<=48?1:Math.pow(2,o-48);let s=ge.fromNumber(t),a=s.mul(e);for(;a.isNegative()||a.gt(n);)t-=i,s=ge.fromNumber(t,this.unsigned),a=s.mul(e);s.isZero()&&(s=ge.ONE),r=r.add(s),n=n.sub(a)}return r}div(e){return this.divide(e)}equals(e){return ge.isLong(e)||(e=ge.fromValue(e)),(this.unsigned===e.unsigned||this.high>>>31!=1||e.high>>>31!=1)&&this.high===e.high&&this.low===e.low}eq(e){return this.equals(e)}getHighBits(){return this.high}getHighBitsUnsigned(){return this.high>>>0}getLowBits(){return this.low}getLowBitsUnsigned(){return this.low>>>0}getNumBitsAbs(){if(this.isNegative())return this.eq(ge.MIN_VALUE)?64:this.neg().getNumBitsAbs();const e=0!==this.high?this.high:this.low;let t;for(t=31;t>0&&!(e&1<0}gt(e){return this.greaterThan(e)}greaterThanOrEqual(e){return this.comp(e)>=0}gte(e){return this.greaterThanOrEqual(e)}ge(e){return this.greaterThanOrEqual(e)}isEven(){return!(1&this.low)}isNegative(){return!this.unsigned&&this.high<0}isOdd(){return!(1&~this.low)}isPositive(){return this.unsigned||this.high>=0}isZero(){return 0===this.high&&0===this.low}lessThan(e){return this.comp(e)<0}lt(e){return this.lessThan(e)}lessThanOrEqual(e){return this.comp(e)<=0}lte(e){return this.lessThanOrEqual(e)}modulo(e){if(ge.isLong(e)||(e=ge.fromValue(e)),he){const t=(this.unsigned?he.rem_u:he.rem_s)(this.low,this.high,e.low,e.high);return ge.fromBits(t,he.get_high(),this.unsigned)}return this.sub(this.div(e).mul(e))}mod(e){return this.modulo(e)}rem(e){return this.modulo(e)}multiply(e){if(this.isZero())return ge.ZERO;if(ge.isLong(e)||(e=ge.fromValue(e)),he){const t=he.mul(this.low,this.high,e.low,e.high);return ge.fromBits(t,he.get_high(),this.unsigned)}if(e.isZero())return ge.ZERO;if(this.eq(ge.MIN_VALUE))return e.isOdd()?ge.MIN_VALUE:ge.ZERO;if(e.eq(ge.MIN_VALUE))return this.isOdd()?ge.MIN_VALUE:ge.ZERO;if(this.isNegative())return e.isNegative()?this.neg().mul(e.neg()):this.neg().mul(e).neg();if(e.isNegative())return this.mul(e.neg()).neg();if(this.lt(ge.TWO_PWR_24)&&e.lt(ge.TWO_PWR_24))return ge.fromNumber(this.toNumber()*e.toNumber(),this.unsigned);const t=this.high>>>16,n=65535&this.high,r=this.low>>>16,o=65535&this.low,i=e.high>>>16,s=65535&e.high,a=e.low>>>16,u=65535&e.low;let c=0,l=0,h=0,f=0;return f+=o*u,h+=f>>>16,f&=65535,h+=r*u,l+=h>>>16,h&=65535,h+=o*a,l+=h>>>16,h&=65535,l+=n*u,c+=l>>>16,l&=65535,l+=r*a,c+=l>>>16,l&=65535,l+=o*s,c+=l>>>16,l&=65535,c+=t*u+n*a+r*s+o*i,c&=65535,ge.fromBits(h<<16|f,c<<16|l,this.unsigned)}mul(e){return this.multiply(e)}negate(){return!this.unsigned&&this.eq(ge.MIN_VALUE)?ge.MIN_VALUE:this.not().add(ge.ONE)}neg(){return this.negate()}not(){return ge.fromBits(~this.low,~this.high,this.unsigned)}notEquals(e){return!this.equals(e)}neq(e){return this.notEquals(e)}ne(e){return this.notEquals(e)}or(e){return ge.isLong(e)||(e=ge.fromValue(e)),ge.fromBits(this.low|e.low,this.high|e.high,this.unsigned)}shiftLeft(e){return ge.isLong(e)&&(e=e.toInt()),0==(e&=63)?this:e<32?ge.fromBits(this.low<>>32-e,this.unsigned):ge.fromBits(0,this.low<>>e|this.high<<32-e,this.high>>e,this.unsigned):ge.fromBits(this.high>>e-32,this.high>=0?0:-1,this.unsigned)}shr(e){return this.shiftRight(e)}shiftRightUnsigned(e){if(ge.isLong(e)&&(e=e.toInt()),0==(e&=63))return this;{const t=this.high;if(e<32){const n=this.low;return ge.fromBits(n>>>e|t<<32-e,t>>>e,this.unsigned)}return 32===e?ge.fromBits(t,0,this.unsigned):ge.fromBits(t>>>e-32,0,this.unsigned)}}shr_u(e){return this.shiftRightUnsigned(e)}shru(e){return this.shiftRightUnsigned(e)}subtract(e){return ge.isLong(e)||(e=ge.fromValue(e)),this.add(e.neg())}sub(e){return this.subtract(e)}toInt(){return this.unsigned?this.low>>>0:this.low}toNumber(){return this.unsigned?(this.high>>>0)*fe+(this.low>>>0):this.high*fe+(this.low>>>0)}toBigInt(){return BigInt(this.toString())}toBytes(e){return e?this.toBytesLE():this.toBytesBE()}toBytesLE(){const e=this.high,t=this.low;return[255&t,t>>>8&255,t>>>16&255,t>>>24,255&e,e>>>8&255,e>>>16&255,e>>>24]}toBytesBE(){const e=this.high,t=this.low;return[e>>>24,e>>>16&255,e>>>8&255,255&e,t>>>24,t>>>16&255,t>>>8&255,255&t]}toSigned(){return this.unsigned?ge.fromBits(this.low,this.high,!1):this}toString(e){if((e=e||10)<2||36>>0).toString(e);if(n=o,n.isZero())return i+r;for(;i.length<6;)i="0"+i;r=""+i+r}}toUnsigned(){return this.unsigned?this:ge.fromBits(this.low,this.high,!0)}xor(e){return ge.isLong(e)||(e=ge.fromValue(e)),ge.fromBits(this.low^e.low,this.high^e.high,this.unsigned)}eqz(){return this.isZero()}le(e){return this.lessThanOrEqual(e)}toExtendedJSON(e){return e&&e.relaxed?this.toNumber():{$numberLong:this.toString()}}static fromExtendedJSON(e,t){const{useBigInt64:n=!1,relaxed:r=!0}={...t};if(e.$numberLong.length>20)throw new j("$numberLong string is too long");if(!_e.test(e.$numberLong))throw new j(`$numberLong string "${e.$numberLong}" is in an invalid format`);if(n){const t=BigInt(e.$numberLong);return BigInt.asIntN(64,t)}const o=ge.fromString(e.$numberLong);return r?o.toNumber():o}inspect(e,t,n){return n??=u,`new Long(${n(this.toString(),t)}${this.unsigned?`, ${n(this.unsigned,t)}`:""})`}}ge.TWO_PWR_24=ge.fromInt(1<<24),ge.MAX_UNSIGNED_VALUE=ge.fromBits(-1,-1,!0),ge.ZERO=ge.fromInt(0),ge.UZERO=ge.fromInt(0,!0),ge.ONE=ge.fromInt(1),ge.UONE=ge.fromInt(1,!0),ge.NEG_ONE=ge.fromInt(-1),ge.MAX_VALUE=ge.fromBits(-1,2147483647,!1),ge.MIN_VALUE=ge.fromBits(0,-2147483648,!1);const ye=/^(\+|-)?(\d+|(\d*\.\d*))?(E|e)?([-+])?(\d+)?$/,Ae=/^(\+|-)?(Infinity|inf)$/i,ve=/^(\+|-)?NaN$/i,be=6111,Te=-6176,we=te.fromNumberArray([124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse()),Oe=te.fromNumberArray([248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse()),Re=te.fromNumberArray([120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0].reverse()),Se=/^([-+])?(\d+)?$/;function Ie(e){return!isNaN(parseInt(e,10))}function Ne(e){const t=ge.fromNumber(1e9);let n=ge.fromNumber(0);if(!(e.parts[0]||e.parts[1]||e.parts[2]||e.parts[3]))return{quotient:e,rem:n};for(let r=0;r<=3;r++)n=n.shiftLeft(32),n=n.add(new ge(e.parts[r],0)),e.parts[r]=n.div(t).low,n=n.modulo(t);return{quotient:e,rem:n}}function Ce(e,t){throw new j(`"${e}" is not a valid Decimal128 string - ${t}`)}class De extends ne{get _bsontype(){return"Decimal128"}constructor(e){if(super(),"string"==typeof e)this.bytes=De.fromString(e).bytes;else{if(!o(e))throw new j("Decimal128 must take a Buffer or string");if(16!==e.byteLength)throw new j("Decimal128 must take a Buffer of 16 bytes");this.bytes=e}}static fromString(e){return De._fromString(e,{allowRounding:!1})}static fromStringWithRounding(e){return De._fromString(e,{allowRounding:!0})}static _fromString(e,t){let n=!1,r=!1,o=!1,i=!1,s=0,a=0,u=0,c=0,l=0;const h=[0];let f=0,p=0,d=0,E=0,m=new ge(0,0),_=new ge(0,0),g=0,y=0;if(e.length>=7e3)throw new j(e+" not a valid Decimal128 string");const A=e.match(ye),v=e.match(Ae),b=e.match(ve);if(!A&&!v&&!b||0===e.length)throw new j(e+" not a valid Decimal128 string");if(A){const t=A[2],n=A[4],r=A[5],o=A[6];n&&void 0===o&&Ce(e,"missing exponent power"),n&&void 0===t&&Ce(e,"missing exponent base"),void 0===n&&(r||o)&&Ce(e,"missing e before exponent")}if("+"!==e[y]&&"-"!==e[y]||(r=!0,n="-"===e[y++]),!Ie(e[y])&&"."!==e[y]){if("i"===e[y]||"I"===e[y])return new De(n?Oe:Re);if("N"===e[y])return new De(we)}for(;Ie(e[y])||"."===e[y];)"."!==e[y]?(f<34&&("0"!==e[y]||i)&&(i||(l=a),i=!0,h[p++]=parseInt(e[y],10),f+=1),i&&(u+=1),o&&(c+=1),a+=1,y+=1):(o&&Ce(e,"contains multiple periods"),o=!0,y+=1);if(o&&!a)throw new j(e+" not a valid Decimal128 string");if("e"===e[y]||"E"===e[y]){const t=e.substr(++y).match(Se);if(!t||!t[2])return new De(we);E=parseInt(t[0],10),y+=t[0].length}if(e[y])return new De(we);if(f){if(d=f-1,s=u,1!==s)for(;"0"===e[l+s-1+Number(r)+Number(o)];)s-=1}else h[0]=0,u=1,f=1,s=0;for(E<=c&&c>E+16384?E=Te:E-=c;E>be;){if(d+=1,d>=34){if(0===s){E=be;break}Ce(e,"overflow")}E-=1}if(t.allowRounding){for(;E=5&&(s=1,5===i)){s=h[d]%2==1?1:0;for(let n=l+d+2;n=0&&++h[e]>9;e--)if(h[e]=0,0===e){if(!(E>>0,r=t.high>>>0;return n>>0>>0}(T.low,_)&&(T.high=T.high.add(ge.fromNumber(1))),g=E+6176;const w={low:ge.fromNumber(0),high:ge.fromNumber(0)};T.high.shiftRightUnsigned(49).and(ge.fromNumber(1)).equals(ge.fromNumber(1))?(w.high=w.high.or(ge.fromNumber(3).shiftLeft(61)),w.high=w.high.or(ge.fromNumber(g).and(ge.fromNumber(16383).shiftLeft(47))),w.high=w.high.or(T.high.and(ge.fromNumber(0x7fffffffffff)))):(w.high=w.high.or(ge.fromNumber(16383&g).shiftLeft(49)),w.high=w.high.or(T.high.and(ge.fromNumber(562949953421311)))),w.low=T.low,n&&(w.high=w.high.or(ge.fromString("9223372036854775808")));const O=te.allocateUnsafe(16);return y=0,O[y++]=255&w.low.low,O[y++]=w.low.low>>8&255,O[y++]=w.low.low>>16&255,O[y++]=w.low.low>>24&255,O[y++]=255&w.low.high,O[y++]=w.low.high>>8&255,O[y++]=w.low.high>>16&255,O[y++]=w.low.high>>24&255,O[y++]=255&w.high.low,O[y++]=w.high.low>>8&255,O[y++]=w.high.low>>16&255,O[y++]=w.high.low>>24&255,O[y++]=255&w.high.high,O[y++]=w.high.high>>8&255,O[y++]=w.high.high>>16&255,O[y++]=w.high.high>>24&255,new De(O)}toString(){let e,t=0;const n=new Array(36);for(let e=0;e>26&31;if(E>>3==3){if(30===E)return c.join("")+"Infinity";if(31===E)return"NaN";e=d>>15&16383,r=8+(d>>14&1)}else r=d>>14&7,e=d>>17&16383;const m=e-6176;if(u.parts[0]=(16383&d)+((15&r)<<14),u.parts[1]=p,u.parts[2]=f,u.parts[3]=h,0===u.parts[0]&&0===u.parts[1]&&0===u.parts[2]&&0===u.parts[3])a=!0;else for(i=3;i>=0;i--){let e=0;const t=Ne(u);if(u=t.quotient,e=t.rem.low,e)for(o=8;o>=0;o--)n[9*i+o]=e%10,e=Math.floor(e/10)}if(a)t=1,n[s]=0;else for(t=36;!n[s];)t-=1,s+=1;const _=t-1+m;if(_>=34||_<=-7||m>0){if(t>34)return c.push("0"),m>0?c.push(`E+${m}`):m<0&&c.push(`E${m}`),c.join("");c.push(`${n[s++]}`),t-=1,t&&c.push(".");for(let e=0;e0?c.push(`+${_}`):c.push(`${_}`)}else if(m>=0)for(let e=0;e0)for(let t=0;tn)throw new j(`Input: '${e}' is smaller than the minimum value for Int32`);if(!Number.isSafeInteger(n))throw new j(`Input: '${e}' is not a safe integer`);if(n.toString()!==t)throw new j(`Input: '${e}' is not a valid Int32 string`);return new Me(n)}valueOf(){return this.value}toString(e){return this.value.toString(e)}toJSON(){return this.value}toExtendedJSON(e){return e&&(e.relaxed||e.legacy)?this.value:{$numberInt:this.value.toString()}}static fromExtendedJSON(e,t){return t&&t.relaxed?parseInt(e.$numberInt,10):new Me(e.$numberInt)}inspect(e,t,n){return n??=u,`new Int32(${n(this.value,t)})`}}class xe extends ne{get _bsontype(){return"MaxKey"}toExtendedJSON(){return{$maxKey:1}}static fromExtendedJSON(){return new xe}inspect(){return"new MaxKey()"}}class Be extends ne{get _bsontype(){return"MinKey"}toExtendedJSON(){return{$minKey:1}}static fromExtendedJSON(){return new Be}inspect(){return"new MinKey()"}}const Pe=new Float64Array(1),Fe=new Uint8Array(Pe.buffer,0,8);Pe[0]=-1;const Ue=0===Fe[7],ke={getNonnegativeInt32LE(e,t){if(e[t+3]>127)throw new RangeError(`Size cannot be negative at offset: ${t}`);return e[t]|e[t+1]<<8|e[t+2]<<16|e[t+3]<<24},getInt32LE:(e,t)=>e[t]|e[t+1]<<8|e[t+2]<<16|e[t+3]<<24,getUint32LE:(e,t)=>e[t]+256*e[t+1]+65536*e[t+2]+16777216*e[t+3],getUint32BE:(e,t)=>e[t+3]+256*e[t+2]+65536*e[t+1]+16777216*e[t],getBigInt64LE(e,t){const n=ke.getUint32LE(e,t),r=ke.getUint32LE(e,t+4);return(BigInt(r)<(Fe[7]=e[t],Fe[6]=e[t+1],Fe[5]=e[t+2],Fe[4]=e[t+3],Fe[3]=e[t+4],Fe[2]=e[t+5],Fe[1]=e[t+6],Fe[0]=e[t+7],Pe[0]):(e,t)=>(Fe[0]=e[t],Fe[1]=e[t+1],Fe[2]=e[t+2],Fe[3]=e[t+3],Fe[4]=e[t+4],Fe[5]=e[t+5],Fe[6]=e[t+6],Fe[7]=e[t+7],Pe[0]),setInt32BE:(e,t,n)=>(e[t+3]=n,n>>>=8,e[t+2]=n,n>>>=8,e[t+1]=n,n>>>=8,e[t]=n,4),setInt32LE:(e,t,n)=>(e[t]=n,n>>>=8,e[t+1]=n,n>>>=8,e[t+2]=n,n>>>=8,e[t+3]=n,4),setBigInt64LE(e,t,n){const r=BigInt(4294967295);let o=Number(n&r);e[t]=o,o>>=8,e[t+1]=o,o>>=8,e[t+2]=o,o>>=8,e[t+3]=o;let i=Number(n>>BigInt(32)&r);return e[t+4]=i,i>>=8,e[t+5]=i,i>>=8,e[t+6]=i,i>>=8,e[t+7]=i,8},setFloat64LE:Ue?(e,t,n)=>(Pe[0]=n,e[t]=Fe[7],e[t+1]=Fe[6],e[t+2]=Fe[5],e[t+3]=Fe[4],e[t+4]=Fe[3],e[t+5]=Fe[2],e[t+6]=Fe[1],e[t+7]=Fe[0],8):(e,t,n)=>(Pe[0]=n,e[t]=Fe[0],e[t+1]=Fe[1],e[t+2]=Fe[2],e[t+3]=Fe[3],e[t+4]=Fe[4],e[t+5]=Fe[5],e[t+6]=Fe[6],e[t+7]=Fe[7],8)},je=new RegExp("^[0-9a-fA-F]{24}$");let Ge=null;class Ve extends ne{get _bsontype(){return"ObjectId"}constructor(e){let t;if(super(),"object"==typeof e&&e&&"id"in e){if("string"!=typeof e.id&&!ArrayBuffer.isView(e.id))throw new j("Argument passed in must have an id that is of type string or Buffer");t="toHexString"in e&&"function"==typeof e.toHexString?te.fromHex(e.toHexString()):e.id}else t=e;if(null==t||"number"==typeof t)this.buffer=Ve.generate("number"==typeof t?t:void 0);else if(ArrayBuffer.isView(t)&&12===t.byteLength)this.buffer=te.toLocalBufferType(t);else{if("string"!=typeof t)throw new j("Argument passed in does not match the accepted types");if(24!==t.length||!je.test(t))throw new j("input must be a 24 character hex string, 12 byte Uint8Array, or an integer");this.buffer=te.fromHex(t)}Ve.cacheHexString&&(this.__id=te.toHex(this.id))}get id(){return this.buffer}set id(e){this.buffer=e,Ve.cacheHexString&&(this.__id=te.toHex(e))}toHexString(){if(Ve.cacheHexString&&this.__id)return this.__id;const e=te.toHex(this.id);return Ve.cacheHexString&&!this.__id&&(this.__id=e),e}static getInc(){return Ve.index=(Ve.index+1)%16777215}static generate(e){"number"!=typeof e&&(e=Math.floor(Date.now()/1e3));const t=Ve.getInc(),n=te.allocateUnsafe(12);return ke.setInt32BE(n,0,e),null===Ge&&(Ge=te.randomBytes(5)),n[4]=Ge[0],n[5]=Ge[1],n[6]=Ge[2],n[7]=Ge[3],n[8]=Ge[4],n[11]=255&t,n[10]=t>>8&255,n[9]=t>>16&255,n}toString(e){return"base64"===e?te.toBase64(this.id):this.toHexString()}toJSON(){return this.toHexString()}static is(e){return null!=e&&"object"==typeof e&&"_bsontype"in e&&"ObjectId"===e._bsontype}equals(e){if(null==e)return!1;if(Ve.is(e))return this.buffer[11]===e.buffer[11]&&te.equals(this.buffer,e.buffer);if("string"==typeof e)return e.toLowerCase()===this.toHexString();if("object"==typeof e&&"function"==typeof e.toHexString){const t=e.toHexString(),n=this.toHexString();return"string"==typeof t&&t.toLowerCase()===n}return!1}getTimestamp(){const e=new Date,t=ke.getUint32BE(this.buffer,0);return e.setTime(1e3*Math.floor(t)),e}static createPk(){return new Ve}serializeInto(e,t){return e[t]=this.buffer[0],e[t+1]=this.buffer[1],e[t+2]=this.buffer[2],e[t+3]=this.buffer[3],e[t+4]=this.buffer[4],e[t+5]=this.buffer[5],e[t+6]=this.buffer[6],e[t+7]=this.buffer[7],e[t+8]=this.buffer[8],e[t+9]=this.buffer[9],e[t+10]=this.buffer[10],e[t+11]=this.buffer[11],12}static createFromTime(e){const t=te.allocate(12);for(let e=11;e>=4;e--)t[e]=0;return ke.setInt32BE(t,0,e),new Ve(t)}static createFromHexString(e){if(24!==e?.length)throw new j("hex string must be 24 characters");return new Ve(te.fromHex(e))}static createFromBase64(e){if(16!==e?.length)throw new j("base64 string must be 16 characters");return new Ve(te.fromBase64(e))}static isValid(e){if(null==e)return!1;try{return new Ve(e),!0}catch{return!1}}toExtendedJSON(){return this.toHexString?{$oid:this.toHexString()}:{$oid:this.toString("hex")}}static fromExtendedJSON(e){return new Ve(e.$oid)}inspect(e,t,n){return n??=u,`new ObjectId(${n(this.toHexString(),t)})`}}function Ye(e,t,n){let r=5;if(Array.isArray(e))for(let o=0;o=E&&t<=d&&t>=h&&t<=l?(null!=e?te.utf8ByteLength(e)+1:0)+5:(null!=e?te.utf8ByteLength(e)+1:0)+9;case"undefined":return o||!s?(null!=e?te.utf8ByteLength(e)+1:0)+1:0;case"boolean":return(null!=e?te.utf8ByteLength(e)+1:0)+2;case"object":if(null!=t&&"string"==typeof t._bsontype&&t[Symbol.for("@@mdb.bson.version")]!==c)throw new G;if(null==t||"MinKey"===t._bsontype||"MaxKey"===t._bsontype)return(null!=e?te.utf8ByteLength(e)+1:0)+1;if("ObjectId"===t._bsontype)return(null!=e?te.utf8ByteLength(e)+1:0)+13;if(t instanceof Date||a(t))return(null!=e?te.utf8ByteLength(e)+1:0)+9;if(ArrayBuffer.isView(t)||t instanceof ArrayBuffer||r(t))return(null!=e?te.utf8ByteLength(e)+1:0)+6+t.byteLength;if("Long"===t._bsontype||"Double"===t._bsontype||"Timestamp"===t._bsontype)return(null!=e?te.utf8ByteLength(e)+1:0)+9;if("Decimal128"===t._bsontype)return(null!=e?te.utf8ByteLength(e)+1:0)+17;if("Code"===t._bsontype)return null!=t.scope&&Object.keys(t.scope).length>0?(null!=e?te.utf8ByteLength(e)+1:0)+1+4+4+te.utf8ByteLength(t.code.toString())+1+Ye(t.scope,n,s):(null!=e?te.utf8ByteLength(e)+1:0)+1+4+te.utf8ByteLength(t.code.toString())+1;if("Binary"===t._bsontype){const n=t;return n.sub_type===re.SUBTYPE_BYTE_ARRAY?(null!=e?te.utf8ByteLength(e)+1:0)+(n.position+1+4+1+4):(null!=e?te.utf8ByteLength(e)+1:0)+(n.position+1+4+1)}if("Symbol"===t._bsontype)return(null!=e?te.utf8ByteLength(e)+1:0)+te.utf8ByteLength(t.value)+4+1+1;if("DBRef"===t._bsontype){const r=Object.assign({$ref:t.collection,$id:t.oid},t.fields);return null!=t.db&&(r.$db=t.db),(null!=e?te.utf8ByteLength(e)+1:0)+1+Ye(r,n,s)}return t instanceof RegExp||i(t)?(null!=e?te.utf8ByteLength(e)+1:0)+1+te.utf8ByteLength(t.source)+1+(t.global?1:0)+(t.ignoreCase?1:0)+(t.multiline?1:0)+1:"BSONRegExp"===t._bsontype?(null!=e?te.utf8ByteLength(e)+1:0)+1+te.utf8ByteLength(t.pattern)+1+te.utf8ByteLength(t.options)+1:(null!=e?te.utf8ByteLength(e)+1:0)+Ye(t,n,s)+1;case"function":if(n)return(null!=e?te.utf8ByteLength(e)+1:0)+1+4+te.utf8ByteLength(t.toString())+1}return 0}Ve.index=Math.floor(16777215*Math.random());class Qe extends ne{get _bsontype(){return"BSONRegExp"}constructor(e,t){if(super(),this.pattern=e,this.options=(t??"").split("").sort().join(""),-1!==this.pattern.indexOf("\0"))throw new j(`BSON Regex patterns cannot contain null bytes, found: ${JSON.stringify(this.pattern)}`);if(-1!==this.options.indexOf("\0"))throw new j(`BSON Regex options cannot contain null bytes, found: ${JSON.stringify(this.options)}`);for(let e=0;ee);return n??=u,`new BSONRegExp(${r(n(this.pattern),"regexp")}, ${r(n(this.options),"regexp")})`}}class We extends ne{get _bsontype(){return"BSONSymbol"}constructor(e){super(),this.value=e}valueOf(){return this.value}toString(){return this.value}toJSON(){return this.value}toExtendedJSON(){return{$symbol:this.value}}static fromExtendedJSON(e){return new We(e.$symbol)}inspect(e,t,n){return n??=u,`new BSONSymbol(${n(this.value,t)})`}}const ze=ge;class qe extends ze{get _bsontype(){return"Timestamp"}constructor(e){if(null==e)super(0,0,!0);else if("bigint"==typeof e)super(e,!0);else if(ge.isLong(e))super(e.low,e.high,!0);else{if("object"!=typeof e||!("t"in e)||!("i"in e))throw new j("A Timestamp can only be constructed with: bigint, Long, or { t: number; i: number }");{if("number"!=typeof e.t&&("object"!=typeof e.t||"Int32"!==e.t._bsontype))throw new j("Timestamp constructed from { t, i } must provide t as a number");if("number"!=typeof e.i&&("object"!=typeof e.i||"Int32"!==e.i._bsontype))throw new j("Timestamp constructed from { t, i } must provide i as a number");const t=Number(e.t),n=Number(e.i);if(t<0||Number.isNaN(t))throw new j("Timestamp constructed from { t, i } must provide a positive t");if(n<0||Number.isNaN(n))throw new j("Timestamp constructed from { t, i } must provide a positive i");if(t>4294967295)throw new j("Timestamp constructed from { t, i } must provide t equal or less than uint32 max");if(n>4294967295)throw new j("Timestamp constructed from { t, i } must provide i equal or less than uint32 max");super(n,t,!0)}}}toJSON(){return{$timestamp:this.toString()}}static fromInt(e){return new qe(ge.fromInt(e,!0))}static fromNumber(e){return new qe(ge.fromNumber(e,!0))}static fromBits(e,t){return new qe({i:e,t})}static fromString(e,t){return new qe(ge.fromString(e,!0,t))}toExtendedJSON(){return{$timestamp:{t:this.high>>>0,i:this.low>>>0}}}static fromExtendedJSON(e){const t=ge.isLong(e.$timestamp.i)?e.$timestamp.i.getLowBitsUnsigned():e.$timestamp.i,n=ge.isLong(e.$timestamp.t)?e.$timestamp.t.getLowBitsUnsigned():e.$timestamp.t;return new qe({t:n,i:t})}inspect(e,t,n){return n??=u,`new Timestamp({ t: ${n(this.high>>>0,t)}, i: ${n(this.low>>>0,t)} })`}}qe.MAX_VALUE=ge.MAX_UNSIGNED_VALUE;const Ke=ge.fromNumber(d),Xe=ge.fromNumber(E);function Je(e,t,n){const r=(t=null==t?{}:t)&&t.index?t.index:0,o=ke.getInt32LE(e,r);if(o<5)throw new j(`bson size must be >= 5, is ${o}`);if(t.allowObjectSmallerThanBufferSize&&e.length= bson size ${o}`);if(!t.allowObjectSmallerThanBufferSize&&e.length!==o)throw new j(`buffer length ${e.length} must === bson size ${o}`);if(o+r>e.byteLength)throw new j(`(bson size ${o} + options.index ${r} must be <= buffer length ${e.byteLength})`);if(0!==e[r+o-1])throw new j("One object, sized correctly, with a spot for an EOO, but the EOO isn't 0x00");return Ze(e,r,t,n)}const $e=/^\$ref$|^\$id$|^\$db$/;function Ze(e,t,n,r=!1){const o=null==n.fieldsAsRaw?null:n.fieldsAsRaw,i=null!=n.raw&&n.raw,s="boolean"==typeof n.bsonRegExp&&n.bsonRegExp,a=n.promoteBuffers??!1,u=n.promoteLongs??!0,c=n.promoteValues??!0,l=n.useBigInt64??!1;if(l&&!c)throw new j("Must either request bigint or Long for int64 deserialization");if(l&&!u)throw new j("Must either request bigint or Long for int64 deserialization");let h,f,p=!0;const d=(null==n.validation?{utf8:!0}:n.validation).utf8;if("boolean"==typeof d)h=d;else{p=!1;const e=Object.keys(d).map((function(e){return d[e]}));if(0===e.length)throw new j("UTF-8 validation setting cannot be empty");if("boolean"!=typeof e[0])throw new j("Invalid UTF-8 validation option, must specify boolean values");if(h=e[0],!e.every((e=>e===h)))throw new j("Invalid UTF-8 validation option - keys must be all true or all false")}if(!p){f=new Set;for(const e of Object.keys(d))f.add(e)}const E=t;if(e.length<5)throw new j("corrupt bson message < 5 bytes long");const F=ke.getInt32LE(e,t);if(t+=4,F<5||F>e.length)throw new j("corrupt bson message");const k=r?[]:{};let G=0,V=!r&&null;for(;;){const d=e[t++];if(0===d)break;let E=t;for(;0!==e[E]&&E=e.byteLength)throw new j("Bad BSON Document: illegal CString");const F=r?G++:te.toUTF8(e,t,E,!1);let Y,H=!0;if(H=p||f?.has(F)?h:!h,!1!==V&&"$"===F[0]&&(V=$e.test(F)),t=E+1,d===_){const n=ke.getInt32LE(e,t);if(t+=4,n<=0||n>e.length-t||0!==e[t+n-1])throw new j("bad string length in bson");Y=te.toUTF8(e,t,t+n-1,H),t+=n}else if(d===b){const n=te.allocateUnsafe(12);for(let r=0;r<12;r++)n[r]=e[t+r];Y=new Ve(n),t+=12}else if(d===D&&!1===c)Y=new Me(ke.getInt32LE(e,t)),t+=4;else if(d===D)Y=ke.getInt32LE(e,t),t+=4;else if(d===m)Y=ke.getFloat64LE(e,t),t+=8,!1===c&&(Y=new Le(Y));else if(d===w){const n=ke.getInt32LE(e,t),r=ke.getInt32LE(e,t+4);t+=8,Y=new Date(new ge(n,r).toNumber())}else if(d===T){if(0!==e[t]&&1!==e[t])throw new j("illegal boolean type value");Y=1===e[t++]}else if(d===g){const r=t,o=ke.getInt32LE(e,t);if(o<=0||o>e.length-t)throw new j("bad embedded document length in bson");if(i)Y=e.slice(t,t+o);else{let t=n;p||(t={...n,validation:{utf8:H}}),Y=Ze(e,r,t,!1)}t+=o}else if(d===y){const r=t,i=ke.getInt32LE(e,t);let s=n;const a=t+i;if(o&&o[F]&&(s={...n,raw:!0}),p||(s={...s,validation:{utf8:H}}),Y=Ze(e,r,s,!0),0!==e[(t+=i)-1])throw new j("invalid array terminator byte");if(t!==a)throw new j("corrupted array bson")}else if(d===v)Y=void 0;else if(d===O)Y=null;else if(d===M)if(l)Y=ke.getBigInt64LE(e,t),t+=8;else{const n=ke.getInt32LE(e,t),r=ke.getInt32LE(e,t+4);t+=8;const o=new ge(n,r);Y=u&&!0===c&&o.lessThanOrEqual(Ke)&&o.greaterThanOrEqual(Xe)?o.toNumber():o}else if(d===x){const n=te.allocateUnsafe(16);for(let r=0;r<16;r++)n[r]=e[t+r];t+=16,Y=new De(n)}else if(d===A){let n=ke.getInt32LE(e,t);t+=4;const r=n,o=e[t++];if(n<0)throw new j("Negative binary type element size found");if(n>e.byteLength)throw new j("Binary type size larger than document size");if(null!=e.slice){if(o===re.SUBTYPE_BYTE_ARRAY){if(n=ke.getInt32LE(e,t),t+=4,n<0)throw new j("Negative binary type element size found for subtype 0x02");if(n>r-4)throw new j("Binary type with subtype 0x02 contains too long binary size");if(nr-4)throw new j("Binary type with subtype 0x02 contains too long binary size");if(n=e.length)throw new j("Bad BSON Document: illegal CString");const n=te.toUTF8(e,t,E,!1);for(E=t=E+1;0!==e[E]&&E=e.length)throw new j("Bad BSON Document: illegal CString");const r=te.toUTF8(e,t,E,!1);t=E+1;const o=new Array(r.length);for(E=0;E=e.length)throw new j("Bad BSON Document: illegal CString");const n=te.toUTF8(e,t,E,!1);for(E=t=E+1;0!==e[E]&&E=e.length)throw new j("Bad BSON Document: illegal CString");const r=te.toUTF8(e,t,E,!1);t=E+1,Y=new Qe(n,r)}else if(d===N){const n=ke.getInt32LE(e,t);if(t+=4,n<=0||n>e.length-t||0!==e[t+n-1])throw new j("bad string length in bson");const r=te.toUTF8(e,t,t+n-1,H);Y=c?r:new We(r),t+=n}else if(d===L)Y=new qe({i:ke.getUint32LE(e,t),t:ke.getUint32LE(e,t+4)}),t+=8;else if(d===B)Y=new Be;else if(d===P)Y=new xe;else if(d===I){const n=ke.getInt32LE(e,t);if(t+=4,n<=0||n>e.length-t||0!==e[t+n-1])throw new j("bad string length in bson");const r=te.toUTF8(e,t,t+n-1,H);Y=new ae(r),t+=n}else if(d===C){const r=ke.getInt32LE(e,t);if(t+=4,r<13)throw new j("code_w_scope total size shorter minimum expected length");const o=ke.getInt32LE(e,t);if(t+=4,o<=0||o>e.length-t||0!==e[t+o-1])throw new j("bad string length in bson");const i=te.toUTF8(e,t,t+o-1,H),s=t+=o,a=ke.getInt32LE(e,t),u=Ze(e,s,n,!1);if(t+=a,r<8+a+o)throw new j("code_w_scope total size is too short, truncating scope");if(r>8+a+o)throw new j("code_w_scope total size is too long, clips outer document");Y=new ae(i,u)}else{if(d!==S)throw new j(`Detected unknown BSON type ${d.toString(16)} for fieldname "${F}"`);{const n=ke.getInt32LE(e,t);if(t+=4,n<=0||n>e.length-t||0!==e[t+n-1])throw new j("bad string length in bson");const r=te.toUTF8(e,t,t+n-1,H);t+=n;const o=te.allocateUnsafe(12);for(let n=0;n<12;n++)o[n]=e[t+n];const i=new Ve(o);t+=12,Y=new ce(r,i)}}"__proto__"===F?Object.defineProperty(k,F,{value:Y,writable:!0,enumerable:!0,configurable:!0}):k[F]=Y}if(F!==t-E){if(r)throw new j("corrupt array bson");throw new j("corrupt object bson")}if(!V)return k;if(ue(k)){const e=Object.assign({},k);return delete e.$ref,delete e.$id,delete e.$db,new ce(k.$ref,k.$id,k.$db,e)}return k}const et=/\x00/,tt=new Set(["$db","$ref","$id","$clusterTime"]);function nt(e,t,n,r){e[r++]=_,e[(r=r+te.encodeUTF8Into(e,t,r)+1)-1]=0;const o=te.encodeUTF8Into(e,n,r+4);return ke.setInt32LE(e,r,o+1),r=r+4+o,e[r++]=0,r}function rt(e,t,n,r){const o=!Object.is(n,-0)&&Number.isSafeInteger(n)&&n<=l&&n>=h?D:m;return e[r++]=o,r+=te.encodeUTF8Into(e,t,r),e[r++]=0,r+(o===D?ke.setInt32LE(e,r,n):ke.setFloat64LE(e,r,n))}function ot(e,t,n,r){return e[r++]=M,r+=te.encodeUTF8Into(e,t,r),e[r++]=0,r+ke.setBigInt64LE(e,r,n)}function it(e,t,n,r){return e[r++]=O,r+=te.encodeUTF8Into(e,t,r),e[r++]=0,r}function st(e,t,n,r){return e[r++]=T,r+=te.encodeUTF8Into(e,t,r),e[r++]=0,e[r++]=n?1:0,r}function at(e,t,n,r){e[r++]=w,r+=te.encodeUTF8Into(e,t,r),e[r++]=0;const o=ge.fromNumber(n.getTime()),i=o.getLowBits(),s=o.getHighBits();return(r+=ke.setInt32LE(e,r,i))+ke.setInt32LE(e,r,s)}function ut(e,t,n,r){if(e[r++]=R,r+=te.encodeUTF8Into(e,t,r),e[r++]=0,n.source&&null!=n.source.match(et))throw new j("value "+n.source+" must not contain null bytes");return r+=te.encodeUTF8Into(e,n.source,r),e[r++]=0,n.ignoreCase&&(e[r++]=105),n.global&&(e[r++]=115),n.multiline&&(e[r++]=109),e[r++]=0,r}function ct(e,t,n,r){if(e[r++]=R,r+=te.encodeUTF8Into(e,t,r),e[r++]=0,null!=n.pattern.match(et))throw new j("pattern "+n.pattern+" must not contain null bytes");r+=te.encodeUTF8Into(e,n.pattern,r),e[r++]=0;const o=n.options.split("").sort().join("");return r+=te.encodeUTF8Into(e,o,r),e[r++]=0,r}function lt(e,t,n,r){return null===n?e[r++]=O:"MinKey"===n._bsontype?e[r++]=B:e[r++]=P,r+=te.encodeUTF8Into(e,t,r),e[r++]=0,r}function ht(e,t,n,r){return e[r++]=b,r+=te.encodeUTF8Into(e,t,r),e[r++]=0,r+n.serializeInto(e,r)}function ft(e,t,n,r){e[r++]=A,r+=te.encodeUTF8Into(e,t,r),e[r++]=0;const o=n.length;if(r+=ke.setInt32LE(e,r,o),e[r++]=F,o<=16)for(let t=0;t=h,r=e<=f&&e>=p;if(t.relaxed||t.legacy)return e;if(Number.isInteger(e)&&!Object.is(e,-0)){if(n)return new Me(e);if(r)return t.useBigInt64?BigInt(e):ge.fromNumber(e)}return new Le(e)}if(null==e||"object"!=typeof e)return e;if(e.$undefined)return null;const n=Object.keys(e).filter((t=>t.startsWith("$")&&null!=e[t]));for(let r=0;re.startsWith("$")));let r=!0;if(n.forEach((e=>{-1===["$ref","$id","$db"].indexOf(e)&&(r=!1)})),r)return ce.fromExtendedJSON(t)}return e}function Rt(e){const t=e.toISOString();return 0!==e.getUTCMilliseconds()?t:t.slice(0,-5)+"Z"}function St(e,t){if(e instanceof Map||s(e)){const n=Object.create(null);for(const[t,r]of e){if("string"!=typeof t)throw new j("Can only serialize maps with string keys");n[t]=r}return St(n,t)}if(("object"==typeof e||"function"==typeof e)&&null!==e){const n=t.seenObjects.findIndex((t=>t.obj===e));if(-1!==n){const e=t.seenObjects.map((e=>e.propertyName)),r=e.slice(0,n).map((e=>`${e} -> `)).join(""),o=e[n],i=" -> "+e.slice(n+1,e.length-1).map((e=>`${e} -> `)).join(""),s=e[e.length-1],a=" ".repeat(r.length+o.length/2),u="-".repeat(i.length+(o.length+s.length)/2-1);throw new j(`Converting circular structure to EJSON:\n ${r}${o}${i}${s}\n ${a}\\${u}/`)}t.seenObjects[t.seenObjects.length-1].obj=e}if(Array.isArray(e))return function(e,t){return e.map(((e,n)=>{t.seenObjects.push({propertyName:`index ${n}`,obj:null});try{return St(e,t)}finally{t.seenObjects.pop()}}))}(e,t);if(void 0===e)return null;if(e instanceof Date||a(e)){const n=e.getTime(),r=n>-1&&n<2534023188e5;return t.legacy?t.relaxed&&r?{$date:e.getTime()}:{$date:Rt(e)}:t.relaxed&&r?{$date:Rt(e)}:{$date:{$numberLong:e.getTime().toString()}}}if(!("number"!=typeof e||t.relaxed&&isFinite(e))){if(Number.isInteger(e)&&!Object.is(e,-0)){if(e>=h&&e<=l)return{$numberInt:e.toString()};if(e>=p&&e<=f)return{$numberLong:e.toString()}}return{$numberDouble:Object.is(e,-0)?"-0.0":e.toString()}}if("bigint"==typeof e)return t.relaxed?Number(BigInt.asIntN(64,e)):{$numberLong:BigInt.asIntN(64,e).toString()};if(e instanceof RegExp||i(e)){let n=e.flags;if(void 0===n){const t=e.toString().match(/[gimuy]*$/);t&&(n=t[0])}return new Qe(e.source,n).toExtendedJSON(t)}return null!=e&&"object"==typeof e?function(e,t){if(null==e||"object"!=typeof e)throw new j("not an object instance");const n=e._bsontype;if(void 0===n){const n={};for(const r of Object.keys(e)){t.seenObjects.push({propertyName:r,obj:null});try{const o=St(e[r],t);"__proto__"===r?Object.defineProperty(n,r,{value:o,writable:!0,enumerable:!0,configurable:!0}):n[r]=o}finally{t.seenObjects.pop()}}return n}if(null!=e&&"object"==typeof e&&"string"==typeof e._bsontype&&e[Symbol.for("@@mdb.bson.version")]!==c)throw new G;if(function(e){return null!=e&&"object"==typeof e&&"_bsontype"in e&&"string"==typeof e._bsontype}(e)){let r=e;if("function"!=typeof r.toExtendedJSON){const t=It[e._bsontype];if(!t)throw new j("Unrecognized or invalid _bsontype: "+e._bsontype);r=t(r)}return"Code"===n&&r.scope?r=new ae(r.code,St(r.scope,t)):"DBRef"===n&&r.oid&&(r=new ce(St(r.collection,t),St(r.oid,t),St(r.db,t),St(r.fields,t))),r.toExtendedJSON(t)}throw new j("_bsontype must be a string, but was: "+typeof n)}(e,t):e}const It={Binary:e=>new re(e.value(),e.sub_type),Code:e=>new ae(e.code,e.scope),DBRef:e=>new ce(e.collection||e.namespace,e.oid,e.db,e.fields),Decimal128:e=>new De(e.bytes),Double:e=>new Le(e.value),Int32:e=>new Me(e.value),Long:e=>ge.fromBits(null!=e.low?e.low:e.low_,null!=e.low?e.high:e.high_,null!=e.low?e.unsigned:e.unsigned_),MaxKey:()=>new xe,MinKey:()=>new Be,ObjectId:e=>new Ve(e),BSONRegExp:e=>new Qe(e.pattern,e.options),BSONSymbol:e=>new We(e.value),Timestamp:e=>qe.fromBits(e.low,e.high)};function Nt(e,t){const n={useBigInt64:t?.useBigInt64??!1,relaxed:t?.relaxed??!0,legacy:t?.legacy??!1};return JSON.parse(e,((e,t)=>{if(-1!==e.indexOf("\0"))throw new j(`BSON Document field names cannot contain null bytes, found: ${JSON.stringify(e)}`);return Ot(t,n)}))}function Ct(e,t,n,r){null!=n&&"object"==typeof n&&(r=n,n=0),null==t||"object"!=typeof t||Array.isArray(t)||(r=t,t=void 0,n=0);const o=St(e,Object.assign({relaxed:!0,legacy:!1},r,{seenObjects:[{propertyName:"(root)",obj:null}]}));return JSON.stringify(o,t,n)}const Dt=Object.create(null);function Lt(e,t){try{return ke.getNonnegativeInt32LE(e,t)}catch(e){throw new Y("BSON size cannot be negative",t,{cause:e})}}function Mt(e,t){let n=t;for(;0!==e[n];n++);if(n===e.length-1)throw new Y("Null terminator not found",t);return n}Dt.parse=Nt,Dt.stringify=Ct,Dt.serialize=function(e,t){return t=t||{},JSON.parse(Ct(e,t))},Dt.deserialize=function(e,t){return t=t||{},Nt(JSON.stringify(e),t)},Object.freeze(Dt);const xt=Object.create(null);xt.parseToElements=function(e,t=0){if(t??=0,e.length<5)throw new Y(`Input must be at least 5 bytes, got ${e.length} bytes`,t);const n=Lt(e,t);if(n>e.length-t)throw new Y(`Parsed documentSize (${n} bytes) does not match input length (${e.length} bytes)`,t);if(0!==e[t+n-1])throw new Y("BSON documents must end in 0x00",t+n);const r=[];let o=t+4;for(;o<=n+t;){const i=e[o];if(o+=1,0===i){if(o-t!==n)throw new Y("Invalid 0x00 type byte",o);break}const s=o,a=Mt(e,o)-s;let u;if(o+=a+1,1===i||18===i||9===i||17===i)u=8;else if(16===i)u=4;else if(7===i)u=12;else if(19===i)u=16;else if(8===i)u=1;else if(10===i||6===i||127===i||255===i)u=0;else if(11===i)u=Mt(e,Mt(e,o)+1)+1-o;else if(3===i||4===i||15===i)u=Lt(e,o);else{if(2!==i&&5!==i&&12!==i&&13!==i&&14!==i)throw new Y(`Invalid 0x${i.toString(16).padStart(2,"0")} type byte`,o);u=Lt(e,o)+4,5===i&&(u+=1),12===i&&(u+=12)}if(u>n)throw new Y("value reports length larger than document",o);r.push([i,s,a,o,u]),o+=u}return r},xt.ByteUtils=te,xt.NumberUtils=ke,Object.freeze(xt);const Bt=17825792;let Pt=te.allocate(Bt);function Ft(e){Pt.length{"use strict";var r=n(69675),o=n(84769),i=n(79173),s=n(97856),a=n(25637),u=n(56654),c=n(58501);e.exports=function(e,t,n){if("Object"!==c(e))throw new r("Assertion failed: Type(O) is not Object");if(!a(t))throw new r("Assertion failed: IsPropertyKey(P) is not true");return o(s,u,i,e,t,{"[[Configurable]]":!0,"[[Enumerable]]":!1,"[[Value]]":n,"[[Writable]]":!0})}},79173:(e,t,n)=>{"use strict";var r=n(69675),o=n(55701),i=n(52997);e.exports=function(e){if(void 0!==e&&!o(e))throw new r("Assertion failed: `Desc` must be a Property Descriptor");return i(e)}},97856:(e,t,n)=>{"use strict";var r=n(69675),o=n(9957),i=n(55701);e.exports=function(e){if(void 0===e)return!1;if(!i(e))throw new r("Assertion failed: `Desc` must be a Property Descriptor");return!(!o(e,"[[Value]]")&&!o(e,"[[Writable]]"))}},25637:e=>{"use strict";e.exports=function(e){return"string"==typeof e||"symbol"==typeof e}},56654:(e,t,n)=>{"use strict";var r=n(78756);e.exports=function(e,t){return e===t?0!==e||1/e==1/t:r(e)&&r(t)}},58501:(e,t,n)=>{"use strict";var r=n(82439);e.exports=function(e){return"symbol"==typeof e?"Symbol":"bigint"==typeof e?"BigInt":r(e)}},71847:(e,t,n)=>{"use strict";var r=n(77312),o=n(11087),i=n(37050),s=n(69675);e.exports=function(e,t,n){if("string"!=typeof e)throw new s("Assertion failed: `S` must be a String");if(!o(t)||t<0||t>i)throw new s("Assertion failed: `length` must be an integer >= 0 and <= 2**53");if("boolean"!=typeof n)throw new s("Assertion failed: `unicode` must be a Boolean");return n?t+1>=e.length?t+1:t+r(e,t)["[[CodeUnitCount]]"]:t+1}},42650:(e,t,n)=>{"use strict";var r=n(70453),o=n(58068),i=n(69675),s=r("%Promise%",!0),a=n(38075),u=n(45354),c=n(77703),l=n(319),h=n(50025),f=n(47730),p=a("Promise.prototype.then",!0);e.exports=function(e){if("Object"!==f(e))throw new i("Assertion failed: Type(O) is not Object");if(arguments.length>1)throw new o("although AsyncFromSyncIteratorContinuation should take a second argument, it is not used in this implementation");if(!s)throw new o("This environment does not support Promises.");return new s((function(t){var n=c(e),r=l(e),o=h(s,r);t(p(o,(function(e){return u(e,n)})))}))}},48246:(e,t,n)=>{"use strict";var r=n(70453),o=n(38075),i=n(69675),s=n(10533),a=r("%Reflect.apply%",!0)||o("Function.prototype.apply");e.exports=function(e,t){var n=arguments.length>2?arguments[2]:[];if(!s(n))throw new i("Assertion failed: optional `argumentsList`, if provided, must be a List");return a(e,t,n)}},77312:(e,t,n)=>{"use strict";var r=n(69675),o=n(38075),i=n(42161),s=n(33703),a=n(23254),u=o("String.prototype.charAt"),c=o("String.prototype.charCodeAt");e.exports=function(e,t){if("string"!=typeof e)throw new r("Assertion failed: `string` must be a String");var n=e.length;if(t<0||t>=n)throw new r("Assertion failed: `position` must be >= 0, and < the length of `string`");var o=c(e,t),l=u(e,t),h=i(o),f=s(o);if(!h&&!f)return{"[[CodePoint]]":l,"[[CodeUnitCount]]":1,"[[IsUnpairedSurrogate]]":!1};if(f||t+1===n)return{"[[CodePoint]]":l,"[[CodeUnitCount]]":1,"[[IsUnpairedSurrogate]]":!0};var p=c(e,t+1);return s(p)?{"[[CodePoint]]":a(o,p),"[[CodeUnitCount]]":2,"[[IsUnpairedSurrogate]]":!1}:{"[[CodePoint]]":l,"[[CodeUnitCount]]":1,"[[IsUnpairedSurrogate]]":!0}}},5573:(e,t,n)=>{"use strict";var r=n(70453),o=n(58068),i=n(69675),s=r("%Promise%",!0),a=n(42650),u=n(48246),c=n(45354),l=n(60280),h=n(65149),f=n(67469),p=n(25383),d=n(47730),E=n(20063),m=n(83316),_=r("%AsyncFromSyncIteratorPrototype%",!0)||{next:function(e){if(!s)throw new o("This environment does not support Promises.");var t=this;E.assert(t,"[[SyncIteratorRecord]]");var n=arguments.length;return new s((function(r){var o,i=E.get(t,"[[SyncIteratorRecord]]");o=n>0?f(i,e):f(i),r(a(o))}))},return:function(){if(!s)throw new o("This environment does not support Promises.");var e=this;E.assert(e,"[[SyncIteratorRecord]]");var t=arguments.length>0,n=t?arguments[0]:void 0;return new s((function(r,o){var s=E.get(e,"[[SyncIteratorRecord]]")["[[Iterator]]"],l=h(s,"return");if(void 0!==l){var f;f=t?u(l,s,[n]):u(l,s),"Object"===d(f)?r(a(f)):u(o,void 0,[new i("Iterator `return` method returned a non-object value.")])}else{var p=c(n,!0);u(r,void 0,[p])}}))},throw:function(){if(!s)throw new o("This environment does not support Promises.");var e=this;E.assert(e,"[[SyncIteratorRecord]]");var t=arguments.length>0,n=t?arguments[0]:void 0;return new s((function(r,o){var s,c=E.get(e,"[[SyncIteratorRecord]]")["[[Iterator]]"],l=h(c,"throw");void 0!==l?(s=t?u(l,c,[n]):u(l,c),"Object"===d(s)?r(a(s)):u(o,void 0,[new i("Iterator `throw` method returned a non-object value.")])):u(o,void 0,[n])}))}};e.exports=function(e){if(!m(e))throw new i("Assertion failed: `syncIteratorRecord` must be an Iterator Record");var t=p(_);return E.set(t,"[[SyncIteratorRecord]]",e),{"[[Iterator]]":t,"[[NextMethod]]":l(t,"next"),"[[Done]]":!1}}},547:(e,t,n)=>{"use strict";var r=n(69675),o=n(53400),i=n(68798),s=n(47730);e.exports=function(e,t,n){if("Object"!==s(e))throw new r("Assertion failed: Type(O) is not Object");if(!o(t))throw new r("Assertion failed: IsPropertyKey(P) is not true");return i(e,t,{"[[Configurable]]":!0,"[[Enumerable]]":!0,"[[Value]]":n,"[[Writable]]":!0})}},87976:(e,t,n)=>{"use strict";var r=n(69675),o=n(547),i=n(53400),s=n(47730);e.exports=function(e,t,n){if("Object"!==s(e))throw new r("Assertion failed: Type(O) is not Object");if(!i(t))throw new r("Assertion failed: IsPropertyKey(P) is not true");if(!o(e,t,n))throw new r("unable to create data property")}},45354:(e,t,n)=>{"use strict";var r=n(69675);e.exports=function(e,t){if("boolean"!=typeof t)throw new r("Assertion failed: Type(done) is not Boolean");return{value:e,done:t}}},17030:(e,t,n)=>{"use strict";var r=n(69675),o=n(55701),i=n(52997);e.exports=function(e){if(void 0!==e&&!o(e))throw new r("Assertion failed: `Desc` must be a Property Descriptor");return i(e)}},60280:(e,t,n)=>{"use strict";var r=n(69675),o=n(58859),i=n(53400),s=n(47730);e.exports=function(e,t){if("Object"!==s(e))throw new r("Assertion failed: Type(O) is not Object");if(!i(t))throw new r("Assertion failed: IsPropertyKey(P) is not true, got "+o(t));return e[t]}},72034:(e,t,n)=>{"use strict";var r=n(70453),o=n(69675),i=r("%Symbol.asyncIterator%",!0),s=n(58859),a=n(64039)(),u=n(71847),c=n(5573),l=n(97579),h=n(65149),f=n(10533),p=n(24998);e.exports=function(e,t){if("SYNC"!==t&&"ASYNC"!==t)throw new o("Assertion failed: `kind` must be one of 'sync' or 'async', got "+s(t));var n;if("ASYNC"===t&&a&&i&&(n=h(e,i)),void 0===n){var r=p({AdvanceStringIndex:u,GetMethod:h,IsArray:f},e);if("ASYNC"===t){if(void 0===r)throw new o("iterator method is `undefined`");var d=l(e,r);return c(d)}n=r}if(void 0===n)throw new o("iterator method is `undefined`");return l(e,n)}},97579:(e,t,n)=>{"use strict";var r=n(69675),o=n(48246),i=n(60280),s=n(6966),a=n(47730);e.exports=function(e,t){if(!s(t))throw new r("method must be a function");var n=o(t,e);if("Object"!==a(n))throw new r("iterator must return an object");return{"[[Iterator]]":n,"[[NextMethod]]":i(n,"next"),"[[Done]]":!1}}},65149:(e,t,n)=>{"use strict";var r=n(69675),o=n(10844),i=n(6966),s=n(53400),a=n(58859);e.exports=function(e,t){if(!s(t))throw new r("Assertion failed: IsPropertyKey(P) is not true");var n=o(e,t);if(null!=n){if(!i(n))throw new r(a(t)+" is not a function: "+a(n));return n}}},10844:(e,t,n)=>{"use strict";var r=n(69675),o=n(58859),i=n(53400);e.exports=function(e,t){if(!i(t))throw new r("Assertion failed: IsPropertyKey(P) is not true, got "+o(t));return e[t]}},15520:(e,t,n)=>{"use strict";var r=n(69675),o=n(9957),i=n(55701);e.exports=function(e){if(void 0===e)return!1;if(!i(e))throw new r("Assertion failed: `Desc` must be a Property Descriptor");return!(!o(e,"[[Get]]")&&!o(e,"[[Set]]"))}},10533:(e,t,n)=>{"use strict";e.exports=n(21412)},6966:(e,t,n)=>{"use strict";e.exports=n(69600)},28131:(e,t,n)=>{"use strict";var r=n(69675),o=n(9957),i=n(55701);e.exports=function(e){if(void 0===e)return!1;if(!i(e))throw new r("Assertion failed: `Desc` must be a Property Descriptor");return!(!o(e,"[[Value]]")&&!o(e,"[[Writable]]"))}},52439:(e,t,n)=>{"use strict";var r=n(70453),o=r("%Object.preventExtensions%",!0),i=r("%Object.isExtensible%",!0),s=n(86600);e.exports=o?function(e){return!s(e)&&i(e)}:function(e){return!s(e)}},88608:(e,t,n)=>{"use strict";var r=n(69675),o=n(15520),i=n(28131),s=n(55701);e.exports=function(e){if(void 0===e)return!1;if(!s(e))throw new r("Assertion failed: `Desc` must be a Property Descriptor");return!o(e)&&!i(e)}},53400:e=>{"use strict";e.exports=function(e){return"string"==typeof e||"symbol"==typeof e}},77703:(e,t,n)=>{"use strict";var r=n(69675),o=n(60280),i=n(44323),s=n(47730);e.exports=function(e){if("Object"!==s(e))throw new r("Assertion failed: Type(iterResult) is not Object");return i(o(e,"done"))}},67469:(e,t,n)=>{"use strict";var r=n(69675),o=n(48246),i=n(47730),s=n(83316);e.exports=function(e){if(!s(e))throw new r("Assertion failed: `iteratorRecord` must be an Iterator Record");var t;if(t=arguments.length<2?o(e["[[NextMethod]]"],e["[[Iterator]]"]):o(e["[[NextMethod]]"],e["[[Iterator]]"],[arguments[1]]),"Object"!==i(t))throw new r("iterator next must return an object");return t}},14482:(e,t,n)=>{"use strict";var r=n(69675),o=n(77703),i=n(67469),s=n(83316);e.exports=function(e){if(!s(e))throw new r("Assertion failed: `iteratorRecord` must be an Iterator Record");var t=i(e);return!0!==o(t)&&t}},37461:(e,t,n)=>{"use strict";var r=n(69675),o=n(38075)("Array.prototype.push"),i=n(14482),s=n(319),a=n(83316);e.exports=function(e){if(!a(e))throw new r("Assertion failed: `iteratorRecord` must be an Iterator Record");for(var t=[],n=!0;n;)if(n=i(e)){var u=s(n);o(t,u)}return t}},319:(e,t,n)=>{"use strict";var r=n(69675),o=n(60280),i=n(47730);e.exports=function(e){if("Object"!==i(e))throw new r("Assertion failed: Type(iterResult) is not Object");return o(e,"value")}},68798:(e,t,n)=>{"use strict";var r=n(75795),o=n(58068),i=n(69675),s=n(55701),a=n(15520),u=n(52439),c=n(53400),l=n(60259),h=n(52875),f=n(47730),p=n(76751);e.exports=function(e,t,n){if("Object"!==f(e))throw new i("Assertion failed: O must be an Object");if(!c(t))throw new i("Assertion failed: P must be a Property Key");if(!s(n))throw new i("Assertion failed: Desc must be a Property Descriptor");if(!r){if(a(n))throw new o("This environment does not support accessor property descriptors.");var d=!(t in e)&&n["[[Writable]]"]&&n["[[Enumerable]]"]&&n["[[Configurable]]"]&&"[[Value]]"in n,E=t in e&&(!("[[Configurable]]"in n)||n["[[Configurable]]"])&&(!("[[Enumerable]]"in n)||n["[[Enumerable]]"])&&(!("[[Writable]]"in n)||n["[[Writable]]"])&&"[[Value]]"in n;if(d||E)return e[t]=n["[[Value]]"],h(e[t],n["[[Value]]"]);throw new o("This environment does not support defining non-writable, non-enumerable, or non-configurable properties")}var m=r(e,t),_=m&&l(m),g=u(e);return p(e,t,g,n,_)}},53519:(e,t,n)=>{"use strict";var r=n(69675),o=n(46763),i=n(47730);e.exports=function(e){if("Object"!==i(e))throw new r("Assertion failed: O must be an Object");if(!o)throw new r("This environment does not support fetching prototypes.");return o(e)}},25383:(e,t,n)=>{"use strict";var r=n(70453)("%Object.create%",!0),o=n(69675),i=n(58068),s=n(10533),a=n(47730),u=n(53795),c=n(20063),l=n(80024)();e.exports=function(e){if(null!==e&&"Object"!==a(e))throw new o("Assertion failed: `proto` must be null or an object");var t,n=arguments.length<2?[]:arguments[1];if(!s(n))throw new o("Assertion failed: `additionalInternalSlotsList` must be an Array");if(r)t=r(e);else if(l)t={__proto__:e};else{if(null===e)throw new i("native Object.create support is required to create null objects");var h=function(){};h.prototype=e,t=new h}return n.length>0&&u(n,(function(e){c.set(t,e,void 0)})),t}},74107:(e,t,n)=>{"use strict";var r=n(69675),o=n(70751),i=n(53519);e.exports=function(e,t){if("object"!=typeof t)throw new r("Assertion failed: V must be Object or Null");try{o(e,t)}catch(e){return!1}return i(e)===t}},50025:(e,t,n)=>{"use strict";var r=n(70453),o=n(10487),i=n(58068),s=r("%Promise.resolve%",!0),a=s&&o(s);e.exports=function(e,t){if(!a)throw new i("This environment does not support Promises.");return a(e,t)}},52875:(e,t,n)=>{"use strict";var r=n(78756);e.exports=function(e,t){return e===t?0!==e||1/e==1/t:r(e)&&r(t)}},44323:e=>{"use strict";e.exports=function(e){return!!e}},60259:(e,t,n)=>{"use strict";var r=n(9957),o=n(69675),i=n(47730),s=n(44323),a=n(6966);e.exports=function(e){if("Object"!==i(e))throw new o("ToPropertyDescriptor requires an object");var t={};if(r(e,"enumerable")&&(t["[[Enumerable]]"]=s(e.enumerable)),r(e,"configurable")&&(t["[[Configurable]]"]=s(e.configurable)),r(e,"value")&&(t["[[Value]]"]=e.value),r(e,"writable")&&(t["[[Writable]]"]=s(e.writable)),r(e,"get")){var n=e.get;if(void 0!==n&&!a(n))throw new o("getter must be a function");t["[[Get]]"]=n}if(r(e,"set")){var u=e.set;if(void 0!==u&&!a(u))throw new o("setter must be a function");t["[[Set]]"]=u}if((r(t,"[[Get]]")||r(t,"[[Set]]"))&&(r(t,"[[Value]]")||r(t,"[[Writable]]")))throw new o("Invalid property descriptor. Cannot both specify accessors and a value or writable attribute");return t}},47730:(e,t,n)=>{"use strict";var r=n(82439);e.exports=function(e){return"symbol"==typeof e?"Symbol":"bigint"==typeof e?"BigInt":r(e)}},23254:(e,t,n)=>{"use strict";var r=n(70453),o=n(69675),i=r("%String.fromCharCode%"),s=n(42161),a=n(33703);e.exports=function(e,t){if(!s(e)||!a(t))throw new o("Assertion failed: `lead` must be a leading surrogate char code, and `trail` must be a trailing surrogate char code");return i(e)+i(t)}},76751:(e,t,n)=>{"use strict";var r=n(69675),o=n(84769),i=n(98143),s=n(55701),a=n(17030),u=n(15520),c=n(28131),l=n(88608),h=n(53400),f=n(52875),p=n(47730);e.exports=function(e,t,n,d,E){var m,_,g=p(e);if("Undefined"!==g&&"Object"!==g)throw new r("Assertion failed: O must be undefined or an Object");if(!h(t))throw new r("Assertion failed: P must be a Property Key");if("boolean"!=typeof n)throw new r("Assertion failed: extensible must be a Boolean");if(!s(d))throw new r("Assertion failed: Desc must be a Property Descriptor");if(void 0!==E&&!s(E))throw new r("Assertion failed: current must be a Property Descriptor, or undefined");if(void 0===E)return!!n&&("Undefined"===g||(u(d)?o(c,f,a,e,t,d):o(c,f,a,e,t,{"[[Configurable]]":!!d["[[Configurable]]"],"[[Enumerable]]":!!d["[[Enumerable]]"],"[[Value]]":d["[[Value]]"],"[[Writable]]":!!d["[[Writable]]"]})));if(!i({IsAccessorDescriptor:u,IsDataDescriptor:c},E))throw new r("`current`, when present, must be a fully populated and valid Property Descriptor");if(!E["[[Configurable]]"]){if("[[Configurable]]"in d&&d["[[Configurable]]"])return!1;if("[[Enumerable]]"in d&&!f(d["[[Enumerable]]"],E["[[Enumerable]]"]))return!1;if(!l(d)&&!f(u(d),u(E)))return!1;if(u(E)){if("[[Get]]"in d&&!f(d["[[Get]]"],E["[[Get]]"]))return!1;if("[[Set]]"in d&&!f(d["[[Set]]"],E["[[Set]]"]))return!1}else if(!E["[[Writable]]"]){if("[[Writable]]"in d&&d["[[Writable]]"])return!1;if("[[Value]]"in d&&!f(d["[[Value]]"],E["[[Value]]"]))return!1}}return"Undefined"===g||(c(E)&&u(d)?(m=("[[Configurable]]"in d?d:E)["[[Configurable]]"],_=("[[Enumerable]]"in d?d:E)["[[Enumerable]]"],o(c,f,a,e,t,{"[[Configurable]]":!!m,"[[Enumerable]]":!!_,"[[Get]]":("[[Get]]"in d?d:E)["[[Get]]"],"[[Set]]":("[[Set]]"in d?d:E)["[[Set]]"]})):u(E)&&c(d)?(m=("[[Configurable]]"in d?d:E)["[[Configurable]]"],_=("[[Enumerable]]"in d?d:E)["[[Enumerable]]"],o(c,f,a,e,t,{"[[Configurable]]":!!m,"[[Enumerable]]":!!_,"[[Value]]":("[[Value]]"in d?d:E)["[[Value]]"],"[[Writable]]":!!("[[Writable]]"in d?d:E)["[[Writable]]"]})):o(c,f,a,e,t,d))}},82439:e=>{"use strict";e.exports=function(e){return null===e?"Null":void 0===e?"Undefined":"function"==typeof e||"object"==typeof e?"Object":"number"==typeof e?"Number":"boolean"==typeof e?"Boolean":"string"==typeof e?"String":void 0}},84769:(e,t,n)=>{"use strict";var r=n(30592),o=n(30655),i=r.hasArrayLengthDefineBug(),s=i&&n(21412),a=n(38075)("Object.prototype.propertyIsEnumerable");e.exports=function(e,t,n,r,u,c){if(!o){if(!e(c))return!1;if(!c["[[Configurable]]"]||!c["[[Writable]]"])return!1;if(u in r&&a(r,u)!==!!c["[[Enumerable]]"])return!1;var l=c["[[Value]]"];return r[u]=l,t(r[u],l)}return i&&"length"===u&&"[[Value]]"in c&&s(r)&&r.length!==c["[[Value]]"]?(r.length=c["[[Value]]"],r.length===c["[[Value]]"]):(o(r,u,n(c)),!0)}},21412:(e,t,n)=>{"use strict";var r=n(70453)("%Array%"),o=!r.isArray&&n(38075)("Object.prototype.toString");e.exports=r.isArray||function(e){return"[object Array]"===o(e)}},53795:e=>{"use strict";e.exports=function(e,t){for(var n=0;n{"use strict";e.exports=function(e){if(void 0===e)return e;var t={};return"[[Value]]"in e&&(t.value=e["[[Value]]"]),"[[Writable]]"in e&&(t.writable=!!e["[[Writable]]"]),"[[Get]]"in e&&(t.get=e["[[Get]]"]),"[[Set]]"in e&&(t.set=e["[[Set]]"]),"[[Enumerable]]"in e&&(t.enumerable=!!e["[[Enumerable]]"]),"[[Configurable]]"in e&&(t.configurable=!!e["[[Configurable]]"]),t}},24998:(e,t,n)=>{"use strict";var r=n(64039)(),o=n(70453),i=n(38075),s=n(4761),a=o("%Symbol.iterator%",!0),u=i("String.prototype.slice"),c=o("%String%");e.exports=function(e,t){var n;return r?n=e.GetMethod(t,a):e.IsArray(t)?n=function(){var e=-1,t=this;return{next:function(){return{done:(e+=1)>=t.length,value:t[e]}}}}:s(t)&&(n=function(){var n=0;return{next:function(){var r=e.AdvanceStringIndex(c(t),n,!0),o=u(t,n,r);return n=r,{done:r>t.length,value:o}}}}),n}},46763:(e,t,n)=>{"use strict";var r=n(70453)("%Object.getPrototypeOf%",!0),o=n(80024)();e.exports=r||(o?function(e){return e.__proto__}:null)},95046:(e,t,n)=>{"use strict";var r=n(78756);e.exports=function(e){return("number"==typeof e||"bigint"==typeof e)&&!r(e)&&e!==1/0&&e!==-1/0}},98143:(e,t,n)=>{"use strict";var r=n(55701);e.exports=function(e,t){return r(t)&&"object"==typeof t&&"[[Enumerable]]"in t&&"[[Configurable]]"in t&&(e.IsAccessorDescriptor(t)||e.IsDataDescriptor(t))}},11087:(e,t,n)=>{"use strict";var r=n(70453),o=r("%Math.abs%"),i=r("%Math.floor%"),s=n(78756),a=n(95046);e.exports=function(e){if("number"!=typeof e||s(e)||!a(e))return!1;var t=o(e);return i(t)===t}},42161:e=>{"use strict";e.exports=function(e){return"number"==typeof e&&e>=55296&&e<=56319}},78756:e=>{"use strict";e.exports=Number.isNaN||function(e){return e!=e}},86600:e=>{"use strict";e.exports=function(e){return null===e||"function"!=typeof e&&"object"!=typeof e}},33703:e=>{"use strict";e.exports=function(e){return"number"==typeof e&&e>=56320&&e<=57343}},37050:e=>{"use strict";e.exports=Number.MAX_SAFE_INTEGER||9007199254740991},83316:(e,t,n)=>{"use strict";var r=n(9957);e.exports=function(e){return!!e&&"object"==typeof e&&r(e,"[[Iterator]]")&&r(e,"[[NextMethod]]")&&"function"==typeof e["[[NextMethod]]"]&&r(e,"[[Done]]")&&"boolean"==typeof e["[[Done]]"]}},55701:(e,t,n)=>{"use strict";var r=n(69675),o=n(9957),i={__proto__:null,"[[Configurable]]":!0,"[[Enumerable]]":!0,"[[Get]]":!0,"[[Set]]":!0,"[[Value]]":!0,"[[Writable]]":!0};e.exports=function(e){if(!e||"object"!=typeof e)return!1;for(var t in e)if(o(e,t)&&!i[t])return!1;var n=o(e,"[[Value]]")||o(e,"[[Writable]]"),s=o(e,"[[Get]]")||o(e,"[[Set]]");if(n&&s)throw new r("Property Descriptors may not be both accessor and data descriptors");return!0}},70751:(e,t,n)=>{"use strict";var r=n(70453)("%Object.setPrototypeOf%",!0),o=n(80024)();e.exports=r||(o?function(e,t){return e.__proto__=t,e}:null)},35017:(e,t)=>{var n,r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var t=null;try{t=new WebAssembly.Instance(new WebAssembly.Module(new Uint8Array([0,97,115,109,1,0,0,0,1,13,2,96,0,1,127,96,4,127,127,127,127,1,127,3,7,6,0,1,1,1,1,1,6,6,1,127,1,65,0,11,7,50,6,3,109,117,108,0,1,5,100,105,118,95,115,0,2,5,100,105,118,95,117,0,3,5,114,101,109,95,115,0,4,5,114,101,109,95,117,0,5,8,103,101,116,95,104,105,103,104,0,0,10,191,1,6,4,0,35,0,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,126,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,127,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,128,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,129,34,4,66,32,135,167,36,0,32,4,167,11,36,1,1,126,32,0,173,32,1,173,66,32,134,132,32,2,173,32,3,173,66,32,134,132,130,34,4,66,32,135,167,36,0,32,4,167,11])),{}).exports}catch(e){}function n(e,t,n){this.low=0|e,this.high=0|t,this.unsigned=!!n}function r(e){return!0===(e&&e.__isLong__)}function o(e){var t=Math.clz32(e&-e);return e?31-t:t}n.prototype.__isLong__,Object.defineProperty(n.prototype,"__isLong__",{value:!0}),n.isLong=r;var i={},s={};function a(e,t){var n,r,o;return t?(o=0<=(e>>>=0)&&e<256)&&(r=s[e])?r:(n=c(e,0,!0),o&&(s[e]=n),n):(o=-128<=(e|=0)&&e<128)&&(r=i[e])?r:(n=c(e,e<0?-1:0,!1),o&&(i[e]=n),n)}function u(e,t){if(isNaN(e))return t?g:_;if(t){if(e<0)return g;if(e>=d)return T}else{if(e<=-E)return w;if(e+1>=E)return b}return e<0?u(-e,t).neg():c(e%p|0,e/p|0,t)}function c(e,t,r){return new n(e,t,r)}n.fromInt=a,n.fromNumber=u,n.fromBits=c;var l=Math.pow;function h(e,t,n){if(0===e.length)throw Error("empty string");if("number"==typeof t?(n=t,t=!1):t=!!t,"NaN"===e||"Infinity"===e||"+Infinity"===e||"-Infinity"===e)return t?g:_;if((n=n||10)<2||360)throw Error("interior hyphen");if(0===r)return h(e.substring(1),t,n).neg();for(var o=u(l(n,8)),i=_,s=0;s>>0:this.low},O.toNumber=function(){return this.unsigned?(this.high>>>0)*p+(this.low>>>0):this.high*p+(this.low>>>0)},O.toString=function(e){if((e=e||10)<2||36>>0).toString(e);if((i=a).isZero())return c+s;for(;c.length<6;)c="0"+c;s=""+c+s}},O.getHighBits=function(){return this.high},O.getHighBitsUnsigned=function(){return this.high>>>0},O.getLowBits=function(){return this.low},O.getLowBitsUnsigned=function(){return this.low>>>0},O.getNumBitsAbs=function(){if(this.isNegative())return this.eq(w)?64:this.neg().getNumBitsAbs();for(var e=0!=this.high?this.high:this.low,t=31;t>0&&!(e&1<=0},O.isOdd=function(){return!(1&~this.low)},O.isEven=function(){return!(1&this.low)},O.equals=function(e){return r(e)||(e=f(e)),(this.unsigned===e.unsigned||this.high>>>31!=1||e.high>>>31!=1)&&this.high===e.high&&this.low===e.low},O.eq=O.equals,O.notEquals=function(e){return!this.eq(e)},O.neq=O.notEquals,O.ne=O.notEquals,O.lessThan=function(e){return this.comp(e)<0},O.lt=O.lessThan,O.lessThanOrEqual=function(e){return this.comp(e)<=0},O.lte=O.lessThanOrEqual,O.le=O.lessThanOrEqual,O.greaterThan=function(e){return this.comp(e)>0},O.gt=O.greaterThan,O.greaterThanOrEqual=function(e){return this.comp(e)>=0},O.gte=O.greaterThanOrEqual,O.ge=O.greaterThanOrEqual,O.compare=function(e){if(r(e)||(e=f(e)),this.eq(e))return 0;var t=this.isNegative(),n=e.isNegative();return t&&!n?-1:!t&&n?1:this.unsigned?e.high>>>0>this.high>>>0||e.high===this.high&&e.low>>>0>this.low>>>0?-1:1:this.sub(e).isNegative()?-1:1},O.comp=O.compare,O.negate=function(){return!this.unsigned&&this.eq(w)?w:this.not().add(y)},O.neg=O.negate,O.add=function(e){r(e)||(e=f(e));var t=this.high>>>16,n=65535&this.high,o=this.low>>>16,i=65535&this.low,s=e.high>>>16,a=65535&e.high,u=e.low>>>16,l=0,h=0,p=0,d=0;return p+=(d+=i+(65535&e.low))>>>16,h+=(p+=o+u)>>>16,l+=(h+=n+a)>>>16,l+=t+s,c((p&=65535)<<16|(d&=65535),(l&=65535)<<16|(h&=65535),this.unsigned)},O.subtract=function(e){return r(e)||(e=f(e)),this.add(e.neg())},O.sub=O.subtract,O.multiply=function(e){if(this.isZero())return this;if(r(e)||(e=f(e)),t)return c(t.mul(this.low,this.high,e.low,e.high),t.get_high(),this.unsigned);if(e.isZero())return this.unsigned?g:_;if(this.eq(w))return e.isOdd()?w:_;if(e.eq(w))return this.isOdd()?w:_;if(this.isNegative())return e.isNegative()?this.neg().mul(e.neg()):this.neg().mul(e).neg();if(e.isNegative())return this.mul(e.neg()).neg();if(this.lt(m)&&e.lt(m))return u(this.toNumber()*e.toNumber(),this.unsigned);var n=this.high>>>16,o=65535&this.high,i=this.low>>>16,s=65535&this.low,a=e.high>>>16,l=65535&e.high,h=e.low>>>16,p=65535&e.low,d=0,E=0,y=0,A=0;return y+=(A+=s*p)>>>16,E+=(y+=i*p)>>>16,y&=65535,E+=(y+=s*h)>>>16,d+=(E+=o*p)>>>16,E&=65535,d+=(E+=i*h)>>>16,E&=65535,d+=(E+=s*l)>>>16,d+=n*p+o*h+i*l+s*a,c((y&=65535)<<16|(A&=65535),(d&=65535)<<16|(E&=65535),this.unsigned)},O.mul=O.multiply,O.divide=function(e){if(r(e)||(e=f(e)),e.isZero())throw Error("division by zero");var n,o,i;if(t)return this.unsigned||-2147483648!==this.high||-1!==e.low||-1!==e.high?c((this.unsigned?t.div_u:t.div_s)(this.low,this.high,e.low,e.high),t.get_high(),this.unsigned):this;if(this.isZero())return this.unsigned?g:_;if(this.unsigned){if(e.unsigned||(e=e.toUnsigned()),e.gt(this))return g;if(e.gt(this.shru(1)))return A;i=g}else{if(this.eq(w))return e.eq(y)||e.eq(v)?w:e.eq(w)?y:(n=this.shr(1).div(e).shl(1)).eq(_)?e.isNegative()?y:v:(o=this.sub(e.mul(n)),i=n.add(o.div(e)));if(e.eq(w))return this.unsigned?g:_;if(this.isNegative())return e.isNegative()?this.neg().div(e.neg()):this.neg().div(e).neg();if(e.isNegative())return this.div(e.neg()).neg();i=_}for(o=this;o.gte(e);){n=Math.max(1,Math.floor(o.toNumber()/e.toNumber()));for(var s=Math.ceil(Math.log(n)/Math.LN2),a=s<=48?1:l(2,s-48),h=u(n),p=h.mul(e);p.isNegative()||p.gt(o);)p=(h=u(n-=a,this.unsigned)).mul(e);h.isZero()&&(h=y),i=i.add(h),o=o.sub(p)}return i},O.div=O.divide,O.modulo=function(e){return r(e)||(e=f(e)),t?c((this.unsigned?t.rem_u:t.rem_s)(this.low,this.high,e.low,e.high),t.get_high(),this.unsigned):this.sub(this.div(e).mul(e))},O.mod=O.modulo,O.rem=O.modulo,O.not=function(){return c(~this.low,~this.high,this.unsigned)},O.countLeadingZeros=function(){return this.high?Math.clz32(this.high):Math.clz32(this.low)+32},O.clz=O.countLeadingZeros,O.countTrailingZeros=function(){return this.low?o(this.low):o(this.high)+32},O.ctz=O.countTrailingZeros,O.and=function(e){return r(e)||(e=f(e)),c(this.low&e.low,this.high&e.high,this.unsigned)},O.or=function(e){return r(e)||(e=f(e)),c(this.low|e.low,this.high|e.high,this.unsigned)},O.xor=function(e){return r(e)||(e=f(e)),c(this.low^e.low,this.high^e.high,this.unsigned)},O.shiftLeft=function(e){return r(e)&&(e=e.toInt()),0==(e&=63)?this:e<32?c(this.low<>>32-e,this.unsigned):c(0,this.low<>>e|this.high<<32-e,this.high>>e,this.unsigned):c(this.high>>e-32,this.high>=0?0:-1,this.unsigned)},O.shr=O.shiftRight,O.shiftRightUnsigned=function(e){return r(e)&&(e=e.toInt()),0==(e&=63)?this:e<32?c(this.low>>>e|this.high<<32-e,this.high>>>e,this.unsigned):c(32===e?this.high:this.high>>>e-32,0,this.unsigned)},O.shru=O.shiftRightUnsigned,O.shr_u=O.shiftRightUnsigned,O.rotateLeft=function(e){var t;return r(e)&&(e=e.toInt()),0==(e&=63)?this:32===e?c(this.high,this.low,this.unsigned):e<32?(t=32-e,c(this.low<>>t,this.high<>>t,this.unsigned)):(t=32-(e-=32),c(this.high<>>t,this.low<>>t,this.unsigned))},O.rotl=O.rotateLeft,O.rotateRight=function(e){var t;return r(e)&&(e=e.toInt()),0==(e&=63)?this:32===e?c(this.high,this.low,this.unsigned):e<32?(t=32-e,c(this.high<>>e,this.low<>>e,this.unsigned)):(t=32-(e-=32),c(this.low<>>e,this.high<>>e,this.unsigned))},O.rotr=O.rotateRight,O.toSigned=function(){return this.unsigned?c(this.low,this.high,!1):this},O.toUnsigned=function(){return this.unsigned?this:c(this.low,this.high,!0)},O.toBytes=function(e){return e?this.toBytesLE():this.toBytesBE()},O.toBytesLE=function(){var e=this.high,t=this.low;return[255&t,t>>>8&255,t>>>16&255,t>>>24,255&e,e>>>8&255,e>>>16&255,e>>>24]},O.toBytesBE=function(){var e=this.high,t=this.low;return[e>>>24,e>>>16&255,e>>>8&255,255&e,t>>>24,t>>>16&255,t>>>8&255,255&t]},n.fromBytes=function(e,t,r){return r?n.fromBytesLE(e,t):n.fromBytesBE(e,t)},n.fromBytesLE=function(e,t){return new n(e[0]|e[1]<<8|e[2]<<16|e[3]<<24,e[4]|e[5]<<8|e[6]<<16|e[7]<<24,t)},n.fromBytesBE=function(e,t){return new n(e[4]<<24|e[5]<<16|e[6]<<8|e[7],e[0]<<24|e[1]<<16|e[2]<<8|e[3],t)};var R=n;return e.default=R,"default"in e?e.default:e}({});void 0===(n=function(){return r}.apply(t,[]))||(e.exports=n)},95987:function(e,t,n){"use strict";const r=(this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}})(n(57532));e.exports=Object.assign(r.default,{default:r.default,LRUCache:r.default})},57532:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.LRUCache=void 0;const n="object"==typeof performance&&performance&&"function"==typeof performance.now?performance:Date,r=new Set,o=(Symbol("type"),e=>e&&e===Math.floor(e)&&e>0&&isFinite(e)),i=e=>o(e)?e<=Math.pow(2,8)?Uint8Array:e<=Math.pow(2,16)?Uint16Array:e<=Math.pow(2,32)?Uint32Array:e<=Number.MAX_SAFE_INTEGER?s:null:null;class s extends Array{constructor(e){super(e),this.fill(0)}}class a{heap;length;static#t=!1;static create(e){const t=i(e);if(!t)return[];a.#t=!0;const n=new a(e,t);return a.#t=!1,n}constructor(e,t){if(!a.#t)throw new TypeError("instantiate Stack using Stack.create(n)");this.heap=new t(e),this.length=0}push(e){this.heap[this.length++]=e}pop(){return this.heap[--this.length]}}class u{#n;#r;#o;#i;#s;ttl;ttlResolution;ttlAutopurge;updateAgeOnGet;updateAgeOnHas;allowStale;noDisposeOnSet;noUpdateTTL;maxEntrySize;sizeCalculation;noDeleteOnFetchRejection;noDeleteOnStaleGet;allowStaleOnFetchAbort;allowStaleOnFetchRejection;ignoreFetchAbort;#a;#u;#c;#l;#h;#f;#p;#d;#E;#m;#_;#g;#y;#A;#v;#b;#T;static unsafeExposeInternals(e){return{starts:e.#y,ttls:e.#A,sizes:e.#g,keyMap:e.#c,keyList:e.#l,valList:e.#h,next:e.#f,prev:e.#p,get head(){return e.#d},get tail(){return e.#E},free:e.#m,isBackgroundFetch:t=>e.#w(t),backgroundFetch:(t,n,r,o)=>e.#O(t,n,r,o),moveToTail:t=>e.#R(t),indexes:t=>e.#S(t),rindexes:t=>e.#I(t),isStale:t=>e.#N(t)}}get max(){return this.#n}get maxSize(){return this.#r}get calculatedSize(){return this.#u}get size(){return this.#a}get fetchMethod(){return this.#s}get dispose(){return this.#o}get disposeAfter(){return this.#i}constructor(e){const{max:t=0,ttl:n,ttlResolution:s=1,ttlAutopurge:c,updateAgeOnGet:l,updateAgeOnHas:h,allowStale:f,dispose:p,disposeAfter:d,noDisposeOnSet:E,noUpdateTTL:m,maxSize:_=0,maxEntrySize:g=0,sizeCalculation:y,fetchMethod:A,noDeleteOnFetchRejection:v,noDeleteOnStaleGet:b,allowStaleOnFetchRejection:T,allowStaleOnFetchAbort:w,ignoreFetchAbort:O}=e;if(0!==t&&!o(t))throw new TypeError("max option must be a nonnegative integer");const R=t?i(t):Array;if(!R)throw new Error("invalid max value: "+t);if(this.#n=t,this.#r=_,this.maxEntrySize=g||this.#r,this.sizeCalculation=y,this.sizeCalculation){if(!this.#r&&!this.maxEntrySize)throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if("function"!=typeof this.sizeCalculation)throw new TypeError("sizeCalculation set to non-function")}if(void 0!==A&&"function"!=typeof A)throw new TypeError("fetchMethod must be a function if specified");if(this.#s=A,this.#b=!!A,this.#c=new Map,this.#l=new Array(t).fill(void 0),this.#h=new Array(t).fill(void 0),this.#f=new R(t),this.#p=new R(t),this.#d=0,this.#E=0,this.#m=a.create(t),this.#a=0,this.#u=0,"function"==typeof p&&(this.#o=p),"function"==typeof d?(this.#i=d,this.#_=[]):(this.#i=void 0,this.#_=void 0),this.#v=!!this.#o,this.#T=!!this.#i,this.noDisposeOnSet=!!E,this.noUpdateTTL=!!m,this.noDeleteOnFetchRejection=!!v,this.allowStaleOnFetchRejection=!!T,this.allowStaleOnFetchAbort=!!w,this.ignoreFetchAbort=!!O,0!==this.maxEntrySize){if(0!==this.#r&&!o(this.#r))throw new TypeError("maxSize must be a positive integer if specified");if(!o(this.maxEntrySize))throw new TypeError("maxEntrySize must be a positive integer if specified");this.#C()}if(this.allowStale=!!f,this.noDeleteOnStaleGet=!!b,this.updateAgeOnGet=!!l,this.updateAgeOnHas=!!h,this.ttlResolution=o(s)||0===s?s:1,this.ttlAutopurge=!!c,this.ttl=n||0,this.ttl){if(!o(this.ttl))throw new TypeError("ttl must be a positive integer if specified");this.#D()}if(0===this.#n&&0===this.ttl&&0===this.#r)throw new TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!this.#n&&!this.#r){const e="LRU_CACHE_UNBOUNDED";(e=>!r.has(e))(e)&&(r.add(e),((e,t,n,r)=>{"object"==typeof process&&process&&"function"==typeof process.emitWarning?process.emitWarning(e,t,n,r):console.error(`[${n}] ${t}: ${e}`)})("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",e,u))}}getRemainingTTL(e){return this.#c.has(e)?1/0:0}#D(){const e=new s(this.#n),t=new s(this.#n);this.#A=e,this.#y=t,this.#L=(r,o,i=n.now())=>{if(t[r]=0!==o?i:0,e[r]=o,0!==o&&this.ttlAutopurge){const e=setTimeout((()=>{this.#N(r)&&this.delete(this.#l[r])}),o+1);e.unref&&e.unref()}},this.#M=r=>{t[r]=0!==e[r]?n.now():0},this.#x=(n,i)=>{if(e[i]){const s=e[i],a=t[i];n.ttl=s,n.start=a,n.now=r||o(),n.remainingTTL=n.now+s-a}};let r=0;const o=()=>{const e=n.now();if(this.ttlResolution>0){r=e;const t=setTimeout((()=>r=0),this.ttlResolution);t.unref&&t.unref()}return e};this.getRemainingTTL=n=>{const i=this.#c.get(n);return void 0===i?0:0===e[i]||0===t[i]?1/0:t[i]+e[i]-(r||o())},this.#N=n=>0!==e[n]&&0!==t[n]&&(r||o())-t[n]>e[n]}#M=()=>{};#x=()=>{};#L=()=>{};#N=()=>!1;#C(){const e=new s(this.#n);this.#u=0,this.#g=e,this.#B=t=>{this.#u-=e[t],e[t]=0},this.#P=(e,t,n,r)=>{if(this.#w(t))return 0;if(!o(n)){if(!r)throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");if("function"!=typeof r)throw new TypeError("sizeCalculation must be a function");if(n=r(t,e),!o(n))throw new TypeError("sizeCalculation return invalid (expect positive integer)")}return n},this.#F=(t,n,r)=>{if(e[t]=n,this.#r){const n=this.#r-e[t];for(;this.#u>n;)this.#U(!0)}this.#u+=e[t],r&&(r.entrySize=n,r.totalCalculatedSize=this.#u)}}#B=e=>{};#F=(e,t,n)=>{};#P=(e,t,n,r)=>{if(n||r)throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache");return 0};*#S({allowStale:e=this.allowStale}={}){if(this.#a)for(let t=this.#E;this.#k(t)&&(!e&&this.#N(t)||(yield t),t!==this.#d);)t=this.#p[t]}*#I({allowStale:e=this.allowStale}={}){if(this.#a)for(let t=this.#d;this.#k(t)&&(!e&&this.#N(t)||(yield t),t!==this.#E);)t=this.#f[t]}#k(e){return void 0!==e&&this.#c.get(this.#l[e])===e}*entries(){for(const e of this.#S())void 0===this.#h[e]||void 0===this.#l[e]||this.#w(this.#h[e])||(yield[this.#l[e],this.#h[e]])}*rentries(){for(const e of this.#I())void 0===this.#h[e]||void 0===this.#l[e]||this.#w(this.#h[e])||(yield[this.#l[e],this.#h[e]])}*keys(){for(const e of this.#S()){const t=this.#l[e];void 0===t||this.#w(this.#h[e])||(yield t)}}*rkeys(){for(const e of this.#I()){const t=this.#l[e];void 0===t||this.#w(this.#h[e])||(yield t)}}*values(){for(const e of this.#S())void 0===this.#h[e]||this.#w(this.#h[e])||(yield this.#h[e])}*rvalues(){for(const e of this.#I())void 0===this.#h[e]||this.#w(this.#h[e])||(yield this.#h[e])}[Symbol.iterator](){return this.entries()}find(e,t={}){for(const n of this.#S()){const r=this.#h[n],o=this.#w(r)?r.__staleWhileFetching:r;if(void 0!==o&&e(o,this.#l[n],this))return this.get(this.#l[n],t)}}forEach(e,t=this){for(const n of this.#S()){const r=this.#h[n],o=this.#w(r)?r.__staleWhileFetching:r;void 0!==o&&e.call(t,o,this.#l[n],this)}}rforEach(e,t=this){for(const n of this.#I()){const r=this.#h[n],o=this.#w(r)?r.__staleWhileFetching:r;void 0!==o&&e.call(t,o,this.#l[n],this)}}purgeStale(){let e=!1;for(const t of this.#I({allowStale:!0}))this.#N(t)&&(this.delete(this.#l[t]),e=!0);return e}dump(){const e=[];for(const t of this.#S({allowStale:!0})){const r=this.#l[t],o=this.#h[t],i=this.#w(o)?o.__staleWhileFetching:o;if(void 0===i||void 0===r)continue;const s={value:i};if(this.#A&&this.#y){s.ttl=this.#A[t];const e=n.now()-this.#y[t];s.start=Math.floor(Date.now()-e)}this.#g&&(s.size=this.#g[t]),e.unshift([r,s])}return e}load(e){this.clear();for(const[t,r]of e){if(r.start){const e=Date.now()-r.start;r.start=n.now()-e}this.set(t,r.value,r)}}set(e,t,n={}){const{ttl:r=this.ttl,start:o,noDisposeOnSet:i=this.noDisposeOnSet,sizeCalculation:s=this.sizeCalculation,status:a}=n;let{noUpdateTTL:u=this.noUpdateTTL}=n;const c=this.#P(e,t,n.size||0,s);if(this.maxEntrySize&&c>this.maxEntrySize)return a&&(a.set="miss",a.maxEntrySizeExceeded=!0),this.delete(e),this;let l=0===this.#a?void 0:this.#c.get(e);if(void 0===l)l=0===this.#a?this.#E:0!==this.#m.length?this.#m.pop():this.#a===this.#n?this.#U(!1):this.#a,this.#l[l]=e,this.#h[l]=t,this.#c.set(e,l),this.#f[this.#E]=l,this.#p[l]=this.#E,this.#E=l,this.#a++,this.#F(l,c,a),a&&(a.set="add"),u=!1;else{this.#R(l);const n=this.#h[l];if(t!==n){if(this.#b&&this.#w(n)?n.__abortController.abort(new Error("replaced")):i||(this.#v&&this.#o?.(n,e,"set"),this.#T&&this.#_?.push([n,e,"set"])),this.#B(l),this.#F(l,c,a),this.#h[l]=t,a){a.set="replace";const e=n&&this.#w(n)?n.__staleWhileFetching:n;void 0!==e&&(a.oldValue=e)}}else a&&(a.set="update")}if(0===r||this.#A||this.#D(),this.#A&&(u||this.#L(l,r,o),a&&this.#x(a,l)),!i&&this.#T&&this.#_){const e=this.#_;let t;for(;t=e?.shift();)this.#i?.(...t)}return this}pop(){try{for(;this.#a;){const e=this.#h[this.#d];if(this.#U(!0),this.#w(e)){if(e.__staleWhileFetching)return e.__staleWhileFetching}else if(void 0!==e)return e}}finally{if(this.#T&&this.#_){const e=this.#_;let t;for(;t=e?.shift();)this.#i?.(...t)}}}#U(e){const t=this.#d,n=this.#l[t],r=this.#h[t];return this.#b&&this.#w(r)?r.__abortController.abort(new Error("evicted")):(this.#v||this.#T)&&(this.#v&&this.#o?.(r,n,"evict"),this.#T&&this.#_?.push([r,n,"evict"])),this.#B(t),e&&(this.#l[t]=void 0,this.#h[t]=void 0,this.#m.push(t)),1===this.#a?(this.#d=this.#E=0,this.#m.length=0):this.#d=this.#f[t],this.#c.delete(n),this.#a--,t}has(e,t={}){const{updateAgeOnHas:n=this.updateAgeOnHas,status:r}=t,o=this.#c.get(e);if(void 0!==o){const e=this.#h[o];if(this.#w(e)&&void 0===e.__staleWhileFetching)return!1;if(!this.#N(o))return n&&this.#M(o),r&&(r.has="hit",this.#x(r,o)),!0;r&&(r.has="stale",this.#x(r,o))}else r&&(r.has="miss");return!1}peek(e,t={}){const{allowStale:n=this.allowStale}=t,r=this.#c.get(e);if(void 0!==r&&(n||!this.#N(r))){const e=this.#h[r];return this.#w(e)?e.__staleWhileFetching:e}}#O(e,t,n,r){const o=void 0===t?void 0:this.#h[t];if(this.#w(o))return o;const i=new AbortController,{signal:s}=n;s?.addEventListener("abort",(()=>i.abort(s.reason)),{signal:i.signal});const a={signal:i.signal,options:n,context:r},u=(r,o=!1)=>{const{aborted:s}=i.signal,u=n.ignoreFetchAbort&&void 0!==r;if(n.status&&(s&&!o?(n.status.fetchAborted=!0,n.status.fetchError=i.signal.reason,u&&(n.status.fetchAbortIgnored=!0)):n.status.fetchResolved=!0),s&&!u&&!o)return c(i.signal.reason);const h=l;return this.#h[t]===l&&(void 0===r?h.__staleWhileFetching?this.#h[t]=h.__staleWhileFetching:this.delete(e):(n.status&&(n.status.fetchUpdated=!0),this.set(e,r,a.options))),r},c=r=>{const{aborted:o}=i.signal,s=o&&n.allowStaleOnFetchAbort,a=s||n.allowStaleOnFetchRejection,u=a||n.noDeleteOnFetchRejection,c=l;if(this.#h[t]===l&&(u&&void 0!==c.__staleWhileFetching?s||(this.#h[t]=c.__staleWhileFetching):this.delete(e)),a)return n.status&&void 0!==c.__staleWhileFetching&&(n.status.returnedStale=!0),c.__staleWhileFetching;if(c.__returned===c)throw r};n.status&&(n.status.fetchDispatched=!0);const l=new Promise(((t,r)=>{const s=this.#s?.(e,o,a);s&&s instanceof Promise&&s.then((e=>t(e)),r),i.signal.addEventListener("abort",(()=>{n.ignoreFetchAbort&&!n.allowStaleOnFetchAbort||(t(),n.allowStaleOnFetchAbort&&(t=e=>u(e,!0)))}))})).then(u,(e=>(n.status&&(n.status.fetchRejected=!0,n.status.fetchError=e),c(e)))),h=Object.assign(l,{__abortController:i,__staleWhileFetching:o,__returned:void 0});return void 0===t?(this.set(e,h,{...a.options,status:void 0}),t=this.#c.get(e)):this.#h[t]=h,h}#w(e){if(!this.#b)return!1;const t=e;return!!t&&t instanceof Promise&&t.hasOwnProperty("__staleWhileFetching")&&t.__abortController instanceof AbortController}async fetch(e,t={}){const{allowStale:n=this.allowStale,updateAgeOnGet:r=this.updateAgeOnGet,noDeleteOnStaleGet:o=this.noDeleteOnStaleGet,ttl:i=this.ttl,noDisposeOnSet:s=this.noDisposeOnSet,size:a=0,sizeCalculation:u=this.sizeCalculation,noUpdateTTL:c=this.noUpdateTTL,noDeleteOnFetchRejection:l=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:h=this.allowStaleOnFetchRejection,ignoreFetchAbort:f=this.ignoreFetchAbort,allowStaleOnFetchAbort:p=this.allowStaleOnFetchAbort,context:d,forceRefresh:E=!1,status:m,signal:_}=t;if(!this.#b)return m&&(m.fetch="get"),this.get(e,{allowStale:n,updateAgeOnGet:r,noDeleteOnStaleGet:o,status:m});const g={allowStale:n,updateAgeOnGet:r,noDeleteOnStaleGet:o,ttl:i,noDisposeOnSet:s,size:a,sizeCalculation:u,noUpdateTTL:c,noDeleteOnFetchRejection:l,allowStaleOnFetchRejection:h,allowStaleOnFetchAbort:p,ignoreFetchAbort:f,status:m,signal:_};let y=this.#c.get(e);if(void 0===y){m&&(m.fetch="miss");const t=this.#O(e,y,g,d);return t.__returned=t}{const t=this.#h[y];if(this.#w(t)){const e=n&&void 0!==t.__staleWhileFetching;return m&&(m.fetch="inflight",e&&(m.returnedStale=!0)),e?t.__staleWhileFetching:t.__returned=t}const o=this.#N(y);if(!E&&!o)return m&&(m.fetch="hit"),this.#R(y),r&&this.#M(y),m&&this.#x(m,y),t;const i=this.#O(e,y,g,d),s=void 0!==i.__staleWhileFetching&&n;return m&&(m.fetch=o?"stale":"refresh",s&&o&&(m.returnedStale=!0)),s?i.__staleWhileFetching:i.__returned=i}}get(e,t={}){const{allowStale:n=this.allowStale,updateAgeOnGet:r=this.updateAgeOnGet,noDeleteOnStaleGet:o=this.noDeleteOnStaleGet,status:i}=t,s=this.#c.get(e);if(void 0!==s){const t=this.#h[s],a=this.#w(t);return i&&this.#x(i,s),this.#N(s)?(i&&(i.get="stale"),a?(i&&n&&void 0!==t.__staleWhileFetching&&(i.returnedStale=!0),n?t.__staleWhileFetching:void 0):(o||this.delete(e),i&&n&&(i.returnedStale=!0),n?t:void 0)):(i&&(i.get="hit"),a?t.__staleWhileFetching:(this.#R(s),r&&this.#M(s),t))}i&&(i.get="miss")}#j(e,t){this.#p[t]=e,this.#f[e]=t}#R(e){e!==this.#E&&(e===this.#d?this.#d=this.#f[e]:this.#j(this.#p[e],this.#f[e]),this.#j(this.#E,e),this.#E=e)}delete(e){let t=!1;if(0!==this.#a){const n=this.#c.get(e);if(void 0!==n)if(t=!0,1===this.#a)this.clear();else{this.#B(n);const t=this.#h[n];this.#w(t)?t.__abortController.abort(new Error("deleted")):(this.#v||this.#T)&&(this.#v&&this.#o?.(t,e,"delete"),this.#T&&this.#_?.push([t,e,"delete"])),this.#c.delete(e),this.#l[n]=void 0,this.#h[n]=void 0,n===this.#E?this.#E=this.#p[n]:n===this.#d?this.#d=this.#f[n]:(this.#f[this.#p[n]]=this.#f[n],this.#p[this.#f[n]]=this.#p[n]),this.#a--,this.#m.push(n)}}if(this.#T&&this.#_?.length){const e=this.#_;let t;for(;t=e?.shift();)this.#i?.(...t)}return t}clear(){for(const e of this.#I({allowStale:!0})){const t=this.#h[e];if(this.#w(t))t.__abortController.abort(new Error("deleted"));else{const n=this.#l[e];this.#v&&this.#o?.(t,n,"delete"),this.#T&&this.#_?.push([t,n,"delete"])}}if(this.#c.clear(),this.#h.fill(void 0),this.#l.fill(void 0),this.#A&&this.#y&&(this.#A.fill(0),this.#y.fill(0)),this.#g&&this.#g.fill(0),this.#d=0,this.#E=0,this.#m.length=0,this.#u=0,this.#a=0,this.#T&&this.#_){const e=this.#_;let t;for(;t=e?.shift();)this.#i?.(...t)}}}t.LRUCache=u,t.default=u},95150:e=>{const t="object"==typeof performance&&performance&&"function"==typeof performance.now?performance:Date,n="function"==typeof AbortController?AbortController:class{constructor(){this.signal=new i}abort(e=new Error("This operation was aborted")){this.signal.reason=this.signal.reason||e,this.signal.aborted=!0,this.signal.dispatchEvent({type:"abort",target:this.signal})}},r="function"==typeof AbortSignal,o="function"==typeof n.AbortSignal,i=r?AbortSignal:o?n.AbortController:class{constructor(){this.reason=void 0,this.aborted=!1,this._listeners=[]}dispatchEvent(e){"abort"===e.type&&(this.aborted=!0,this.onabort(e),this._listeners.forEach((t=>t(e)),this))}onabort(){}addEventListener(e,t){"abort"===e&&this._listeners.push(t)}removeEventListener(e,t){"abort"===e&&(this._listeners=this._listeners.filter((e=>e!==t)))}},s=new Set,a=(e,t)=>{const n=`LRU_CACHE_OPTION_${e}`;l(n)&&h(n,`${e} option`,`options.${t}`,m)},u=(e,t)=>{const n=`LRU_CACHE_METHOD_${e}`;if(l(n)){const{prototype:r}=m,{get:o}=Object.getOwnPropertyDescriptor(r,e);h(n,`${e} method`,`cache.${t}()`,o)}},c=(...e)=>{"object"==typeof process&&process&&"function"==typeof process.emitWarning?process.emitWarning(...e):console.error(...e)},l=e=>!s.has(e),h=(e,t,n,r)=>{s.add(e),c(`The ${t} is deprecated. Please use ${n} instead.`,"DeprecationWarning",e,r)},f=e=>e&&e===Math.floor(e)&&e>0&&isFinite(e),p=e=>f(e)?e<=Math.pow(2,8)?Uint8Array:e<=Math.pow(2,16)?Uint16Array:e<=Math.pow(2,32)?Uint32Array:e<=Number.MAX_SAFE_INTEGER?d:null:null;class d extends Array{constructor(e){super(e),this.fill(0)}}class E{constructor(e){if(0===e)return[];const t=p(e);this.heap=new t(e),this.length=0}push(e){this.heap[this.length++]=e}pop(){return this.heap[--this.length]}}class m{constructor(e={}){const{max:t=0,ttl:n,ttlResolution:r=1,ttlAutopurge:o,updateAgeOnGet:i,updateAgeOnHas:u,allowStale:h,dispose:d,disposeAfter:_,noDisposeOnSet:g,noUpdateTTL:y,maxSize:A=0,maxEntrySize:v=0,sizeCalculation:b,fetchMethod:T,fetchContext:w,noDeleteOnFetchRejection:O,noDeleteOnStaleGet:R,allowStaleOnFetchRejection:S,allowStaleOnFetchAbort:I,ignoreFetchAbort:N}=e,{length:C,maxAge:D,stale:L}=e instanceof m?{}:e;if(0!==t&&!f(t))throw new TypeError("max option must be a nonnegative integer");const M=t?p(t):Array;if(!M)throw new Error("invalid max value: "+t);if(this.max=t,this.maxSize=A,this.maxEntrySize=v||this.maxSize,this.sizeCalculation=b||C,this.sizeCalculation){if(!this.maxSize&&!this.maxEntrySize)throw new TypeError("cannot set sizeCalculation without setting maxSize or maxEntrySize");if("function"!=typeof this.sizeCalculation)throw new TypeError("sizeCalculation set to non-function")}if(this.fetchMethod=T||null,this.fetchMethod&&"function"!=typeof this.fetchMethod)throw new TypeError("fetchMethod must be a function if specified");if(this.fetchContext=w,!this.fetchMethod&&void 0!==w)throw new TypeError("cannot set fetchContext without fetchMethod");if(this.keyMap=new Map,this.keyList=new Array(t).fill(null),this.valList=new Array(t).fill(null),this.next=new M(t),this.prev=new M(t),this.head=0,this.tail=0,this.free=new E(t),this.initialFill=1,this.size=0,"function"==typeof d&&(this.dispose=d),"function"==typeof _?(this.disposeAfter=_,this.disposed=[]):(this.disposeAfter=null,this.disposed=null),this.noDisposeOnSet=!!g,this.noUpdateTTL=!!y,this.noDeleteOnFetchRejection=!!O,this.allowStaleOnFetchRejection=!!S,this.allowStaleOnFetchAbort=!!I,this.ignoreFetchAbort=!!N,0!==this.maxEntrySize){if(0!==this.maxSize&&!f(this.maxSize))throw new TypeError("maxSize must be a positive integer if specified");if(!f(this.maxEntrySize))throw new TypeError("maxEntrySize must be a positive integer if specified");this.initializeSizeTracking()}if(this.allowStale=!!h||!!L,this.noDeleteOnStaleGet=!!R,this.updateAgeOnGet=!!i,this.updateAgeOnHas=!!u,this.ttlResolution=f(r)||0===r?r:1,this.ttlAutopurge=!!o,this.ttl=n||D||0,this.ttl){if(!f(this.ttl))throw new TypeError("ttl must be a positive integer if specified");this.initializeTTLTracking()}if(0===this.max&&0===this.ttl&&0===this.maxSize)throw new TypeError("At least one of max, maxSize, or ttl is required");if(!this.ttlAutopurge&&!this.max&&!this.maxSize){const e="LRU_CACHE_UNBOUNDED";l(e)&&(s.add(e),c("TTL caching without ttlAutopurge, max, or maxSize can result in unbounded memory consumption.","UnboundedCacheWarning",e,m))}L&&a("stale","allowStale"),D&&a("maxAge","ttl"),C&&a("length","sizeCalculation")}getRemainingTTL(e){return this.has(e,{updateAgeOnHas:!1})?1/0:0}initializeTTLTracking(){this.ttls=new d(this.max),this.starts=new d(this.max),this.setItemTTL=(e,n,r=t.now())=>{if(this.starts[e]=0!==n?r:0,this.ttls[e]=n,0!==n&&this.ttlAutopurge){const t=setTimeout((()=>{this.isStale(e)&&this.delete(this.keyList[e])}),n+1);t.unref&&t.unref()}},this.updateItemAge=e=>{this.starts[e]=0!==this.ttls[e]?t.now():0},this.statusTTL=(t,r)=>{t&&(t.ttl=this.ttls[r],t.start=this.starts[r],t.now=e||n(),t.remainingTTL=t.now+t.ttl-t.start)};let e=0;const n=()=>{const n=t.now();if(this.ttlResolution>0){e=n;const t=setTimeout((()=>e=0),this.ttlResolution);t.unref&&t.unref()}return n};this.getRemainingTTL=t=>{const r=this.keyMap.get(t);return void 0===r?0:0===this.ttls[r]||0===this.starts[r]?1/0:this.starts[r]+this.ttls[r]-(e||n())},this.isStale=t=>0!==this.ttls[t]&&0!==this.starts[t]&&(e||n())-this.starts[t]>this.ttls[t]}updateItemAge(e){}statusTTL(e,t){}setItemTTL(e,t,n){}isStale(e){return!1}initializeSizeTracking(){this.calculatedSize=0,this.sizes=new d(this.max),this.removeItemSize=e=>{this.calculatedSize-=this.sizes[e],this.sizes[e]=0},this.requireSize=(e,t,n,r)=>{if(this.isBackgroundFetch(t))return 0;if(!f(n)){if(!r)throw new TypeError("invalid size value (must be positive integer). When maxSize or maxEntrySize is used, sizeCalculation or size must be set.");if("function"!=typeof r)throw new TypeError("sizeCalculation must be a function");if(n=r(t,e),!f(n))throw new TypeError("sizeCalculation return invalid (expect positive integer)")}return n},this.addItemSize=(e,t,n)=>{if(this.sizes[e]=t,this.maxSize){const t=this.maxSize-this.sizes[e];for(;this.calculatedSize>t;)this.evict(!0)}this.calculatedSize+=this.sizes[e],n&&(n.entrySize=t,n.totalCalculatedSize=this.calculatedSize)}}removeItemSize(e){}addItemSize(e,t){}requireSize(e,t,n,r){if(n||r)throw new TypeError("cannot set size without setting maxSize or maxEntrySize on cache")}*indexes({allowStale:e=this.allowStale}={}){if(this.size)for(let t=this.tail;this.isValidIndex(t)&&(!e&&this.isStale(t)||(yield t),t!==this.head);)t=this.prev[t]}*rindexes({allowStale:e=this.allowStale}={}){if(this.size)for(let t=this.head;this.isValidIndex(t)&&(!e&&this.isStale(t)||(yield t),t!==this.tail);)t=this.next[t]}isValidIndex(e){return void 0!==e&&this.keyMap.get(this.keyList[e])===e}*entries(){for(const e of this.indexes())void 0===this.valList[e]||void 0===this.keyList[e]||this.isBackgroundFetch(this.valList[e])||(yield[this.keyList[e],this.valList[e]])}*rentries(){for(const e of this.rindexes())void 0===this.valList[e]||void 0===this.keyList[e]||this.isBackgroundFetch(this.valList[e])||(yield[this.keyList[e],this.valList[e]])}*keys(){for(const e of this.indexes())void 0===this.keyList[e]||this.isBackgroundFetch(this.valList[e])||(yield this.keyList[e])}*rkeys(){for(const e of this.rindexes())void 0===this.keyList[e]||this.isBackgroundFetch(this.valList[e])||(yield this.keyList[e])}*values(){for(const e of this.indexes())void 0===this.valList[e]||this.isBackgroundFetch(this.valList[e])||(yield this.valList[e])}*rvalues(){for(const e of this.rindexes())void 0===this.valList[e]||this.isBackgroundFetch(this.valList[e])||(yield this.valList[e])}[Symbol.iterator](){return this.entries()}find(e,t){for(const n of this.indexes()){const r=this.valList[n],o=this.isBackgroundFetch(r)?r.__staleWhileFetching:r;if(void 0!==o&&e(o,this.keyList[n],this))return this.get(this.keyList[n],t)}}forEach(e,t=this){for(const n of this.indexes()){const r=this.valList[n],o=this.isBackgroundFetch(r)?r.__staleWhileFetching:r;void 0!==o&&e.call(t,o,this.keyList[n],this)}}rforEach(e,t=this){for(const n of this.rindexes()){const r=this.valList[n],o=this.isBackgroundFetch(r)?r.__staleWhileFetching:r;void 0!==o&&e.call(t,o,this.keyList[n],this)}}get prune(){return u("prune","purgeStale"),this.purgeStale}purgeStale(){let e=!1;for(const t of this.rindexes({allowStale:!0}))this.isStale(t)&&(this.delete(this.keyList[t]),e=!0);return e}dump(){const e=[];for(const n of this.indexes({allowStale:!0})){const r=this.keyList[n],o=this.valList[n],i=this.isBackgroundFetch(o)?o.__staleWhileFetching:o;if(void 0===i)continue;const s={value:i};if(this.ttls){s.ttl=this.ttls[n];const e=t.now()-this.starts[n];s.start=Math.floor(Date.now()-e)}this.sizes&&(s.size=this.sizes[n]),e.unshift([r,s])}return e}load(e){this.clear();for(const[n,r]of e){if(r.start){const e=Date.now()-r.start;r.start=t.now()-e}this.set(n,r.value,r)}}dispose(e,t,n){}set(e,t,{ttl:n=this.ttl,start:r,noDisposeOnSet:o=this.noDisposeOnSet,size:i=0,sizeCalculation:s=this.sizeCalculation,noUpdateTTL:a=this.noUpdateTTL,status:u}={}){if(i=this.requireSize(e,t,i,s),this.maxEntrySize&&i>this.maxEntrySize)return u&&(u.set="miss",u.maxEntrySizeExceeded=!0),this.delete(e),this;let c=0===this.size?void 0:this.keyMap.get(e);if(void 0===c)c=this.newIndex(),this.keyList[c]=e,this.valList[c]=t,this.keyMap.set(e,c),this.next[this.tail]=c,this.prev[c]=this.tail,this.tail=c,this.size++,this.addItemSize(c,i,u),u&&(u.set="add"),a=!1;else{this.moveToTail(c);const n=this.valList[c];if(t!==n){if(this.isBackgroundFetch(n)?n.__abortController.abort(new Error("replaced")):o||(this.dispose(n,e,"set"),this.disposeAfter&&this.disposed.push([n,e,"set"])),this.removeItemSize(c),this.valList[c]=t,this.addItemSize(c,i,u),u){u.set="replace";const e=n&&this.isBackgroundFetch(n)?n.__staleWhileFetching:n;void 0!==e&&(u.oldValue=e)}}else u&&(u.set="update")}if(0===n||0!==this.ttl||this.ttls||this.initializeTTLTracking(),a||this.setItemTTL(c,n,r),this.statusTTL(u,c),this.disposeAfter)for(;this.disposed.length;)this.disposeAfter(...this.disposed.shift());return this}newIndex(){return 0===this.size?this.tail:this.size===this.max&&0!==this.max?this.evict(!1):0!==this.free.length?this.free.pop():this.initialFill++}pop(){if(this.size){const e=this.valList[this.head];return this.evict(!0),e}}evict(e){const t=this.head,n=this.keyList[t],r=this.valList[t];return this.isBackgroundFetch(r)?r.__abortController.abort(new Error("evicted")):(this.dispose(r,n,"evict"),this.disposeAfter&&this.disposed.push([r,n,"evict"])),this.removeItemSize(t),e&&(this.keyList[t]=null,this.valList[t]=null,this.free.push(t)),this.head=this.next[t],this.keyMap.delete(n),this.size--,t}has(e,{updateAgeOnHas:t=this.updateAgeOnHas,status:n}={}){const r=this.keyMap.get(e);if(void 0!==r){if(!this.isStale(r))return t&&this.updateItemAge(r),n&&(n.has="hit"),this.statusTTL(n,r),!0;n&&(n.has="stale",this.statusTTL(n,r))}else n&&(n.has="miss");return!1}peek(e,{allowStale:t=this.allowStale}={}){const n=this.keyMap.get(e);if(void 0!==n&&(t||!this.isStale(n))){const e=this.valList[n];return this.isBackgroundFetch(e)?e.__staleWhileFetching:e}}backgroundFetch(e,t,r,o){const i=void 0===t?void 0:this.valList[t];if(this.isBackgroundFetch(i))return i;const s=new n;r.signal&&r.signal.addEventListener("abort",(()=>s.abort(r.signal.reason)));const a={signal:s.signal,options:r,context:o},u=(n,o=!1)=>{const{aborted:i}=s.signal,u=r.ignoreFetchAbort&&void 0!==n;return r.status&&(i&&!o?(r.status.fetchAborted=!0,r.status.fetchError=s.signal.reason,u&&(r.status.fetchAbortIgnored=!0)):r.status.fetchResolved=!0),!i||u||o?(this.valList[t]===l&&(void 0===n?l.__staleWhileFetching?this.valList[t]=l.__staleWhileFetching:this.delete(e):(r.status&&(r.status.fetchUpdated=!0),this.set(e,n,a.options))),n):c(s.signal.reason)},c=n=>{const{aborted:o}=s.signal,i=o&&r.allowStaleOnFetchAbort,a=i||r.allowStaleOnFetchRejection,u=a||r.noDeleteOnFetchRejection;if(this.valList[t]===l&&(u&&void 0!==l.__staleWhileFetching?i||(this.valList[t]=l.__staleWhileFetching):this.delete(e)),a)return r.status&&void 0!==l.__staleWhileFetching&&(r.status.returnedStale=!0),l.__staleWhileFetching;if(l.__returned===l)throw n};r.status&&(r.status.fetchDispatched=!0);const l=new Promise(((t,n)=>{this.fetchMethod(e,i,a).then((e=>t(e)),n),s.signal.addEventListener("abort",(()=>{r.ignoreFetchAbort&&!r.allowStaleOnFetchAbort||(t(),r.allowStaleOnFetchAbort&&(t=e=>u(e,!0)))}))})).then(u,(e=>(r.status&&(r.status.fetchRejected=!0,r.status.fetchError=e),c(e))));return l.__abortController=s,l.__staleWhileFetching=i,l.__returned=null,void 0===t?(this.set(e,l,{...a.options,status:void 0}),t=this.keyMap.get(e)):this.valList[t]=l,l}isBackgroundFetch(e){return e&&"object"==typeof e&&"function"==typeof e.then&&Object.prototype.hasOwnProperty.call(e,"__staleWhileFetching")&&Object.prototype.hasOwnProperty.call(e,"__returned")&&(e.__returned===e||null===e.__returned)}async fetch(e,{allowStale:t=this.allowStale,updateAgeOnGet:n=this.updateAgeOnGet,noDeleteOnStaleGet:r=this.noDeleteOnStaleGet,ttl:o=this.ttl,noDisposeOnSet:i=this.noDisposeOnSet,size:s=0,sizeCalculation:a=this.sizeCalculation,noUpdateTTL:u=this.noUpdateTTL,noDeleteOnFetchRejection:c=this.noDeleteOnFetchRejection,allowStaleOnFetchRejection:l=this.allowStaleOnFetchRejection,ignoreFetchAbort:h=this.ignoreFetchAbort,allowStaleOnFetchAbort:f=this.allowStaleOnFetchAbort,fetchContext:p=this.fetchContext,forceRefresh:d=!1,status:E,signal:m}={}){if(!this.fetchMethod)return E&&(E.fetch="get"),this.get(e,{allowStale:t,updateAgeOnGet:n,noDeleteOnStaleGet:r,status:E});const _={allowStale:t,updateAgeOnGet:n,noDeleteOnStaleGet:r,ttl:o,noDisposeOnSet:i,size:s,sizeCalculation:a,noUpdateTTL:u,noDeleteOnFetchRejection:c,allowStaleOnFetchRejection:l,allowStaleOnFetchAbort:f,ignoreFetchAbort:h,status:E,signal:m};let g=this.keyMap.get(e);if(void 0===g){E&&(E.fetch="miss");const t=this.backgroundFetch(e,g,_,p);return t.__returned=t}{const r=this.valList[g];if(this.isBackgroundFetch(r)){const e=t&&void 0!==r.__staleWhileFetching;return E&&(E.fetch="inflight",e&&(E.returnedStale=!0)),e?r.__staleWhileFetching:r.__returned=r}const o=this.isStale(g);if(!d&&!o)return E&&(E.fetch="hit"),this.moveToTail(g),n&&this.updateItemAge(g),this.statusTTL(E,g),r;const i=this.backgroundFetch(e,g,_,p),s=void 0!==i.__staleWhileFetching,a=s&&t;return E&&(E.fetch=s&&o?"stale":"refresh",a&&o&&(E.returnedStale=!0)),a?i.__staleWhileFetching:i.__returned=i}}get(e,{allowStale:t=this.allowStale,updateAgeOnGet:n=this.updateAgeOnGet,noDeleteOnStaleGet:r=this.noDeleteOnStaleGet,status:o}={}){const i=this.keyMap.get(e);if(void 0!==i){const s=this.valList[i],a=this.isBackgroundFetch(s);return this.statusTTL(o,i),this.isStale(i)?(o&&(o.get="stale"),a?(o&&(o.returnedStale=t&&void 0!==s.__staleWhileFetching),t?s.__staleWhileFetching:void 0):(r||this.delete(e),o&&(o.returnedStale=t),t?s:void 0)):(o&&(o.get="hit"),a?s.__staleWhileFetching:(this.moveToTail(i),n&&this.updateItemAge(i),s))}o&&(o.get="miss")}connect(e,t){this.prev[t]=e,this.next[e]=t}moveToTail(e){e!==this.tail&&(e===this.head?this.head=this.next[e]:this.connect(this.prev[e],this.next[e]),this.connect(this.tail,e),this.tail=e)}get del(){return u("del","delete"),this.delete}delete(e){let t=!1;if(0!==this.size){const n=this.keyMap.get(e);if(void 0!==n)if(t=!0,1===this.size)this.clear();else{this.removeItemSize(n);const t=this.valList[n];this.isBackgroundFetch(t)?t.__abortController.abort(new Error("deleted")):(this.dispose(t,e,"delete"),this.disposeAfter&&this.disposed.push([t,e,"delete"])),this.keyMap.delete(e),this.keyList[n]=null,this.valList[n]=null,n===this.tail?this.tail=this.prev[n]:n===this.head?this.head=this.next[n]:(this.next[this.prev[n]]=this.next[n],this.prev[this.next[n]]=this.prev[n]),this.size--,this.free.push(n)}}if(this.disposed)for(;this.disposed.length;)this.disposeAfter(...this.disposed.shift());return t}clear(){for(const e of this.rindexes({allowStale:!0})){const t=this.valList[e];if(this.isBackgroundFetch(t))t.__abortController.abort(new Error("deleted"));else{const n=this.keyList[e];this.dispose(t,n,"delete"),this.disposeAfter&&this.disposed.push([t,n,"delete"])}}if(this.keyMap.clear(),this.valList.fill(null),this.keyList.fill(null),this.ttls&&(this.ttls.fill(0),this.starts.fill(0)),this.sizes&&this.sizes.fill(0),this.head=0,this.tail=0,this.initialFill=1,this.free.length=0,this.calculatedSize=0,this.size=0,this.disposed)for(;this.disposed.length;)this.disposeAfter(...this.disposed.shift())}get reset(){return u("reset","clear"),this.clear}get length(){return((e,t)=>{const n=`LRU_CACHE_PROPERTY_${e}`;if(l(n)){const{prototype:t}=m,{get:r}=Object.getOwnPropertyDescriptor(t,e);h(n,`${e} property`,"cache.size",r)}})("length"),this.size}static get AbortController(){return n}static get AbortSignal(){return i}}e.exports=m},6872:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;ns});var s=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)},t=[{key:"toString",value:function(e){return(null!=e?e:"").toString()}},{key:"isNullOrEmpty",value:function(e){return null==e||0==e.length}},{key:"groupBy",value:function(e,t){return e.reduce((function(e,n){return(e[n[t]]=e[n[t]]||[]).push(n),e}),{})}},{key:"isNullOrUndefined",value:function(e){return null==e}}],null&&o(e.prototype,null),t&&o(e,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t}()},56477:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;na});var s=Symbol(),a=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.cancelled=!1},(t=[{key:"throwIfCancellationRequested",value:function(){if(this.isCancelled())throw"Cancelled!"}},{key:"isCancelled",value:function(){return!0===this.cancelled}},{key:s,value:function(){this.cancelled=!0}}])&&o(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t}()},7395:(__unused_webpack___webpack_module__,__webpack_exports__,__webpack_require__)=>{"use strict";__webpack_require__.d(__webpack_exports__,{A:()=>CommandBase});var _Models_ICommandResult_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(2147),_Context_IContext_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(87919),_Token_IToken_js__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(30227),_Models_ExceptionResult_js__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(60884),_Enums_RunTypes_js__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(76396),_Models_VoidResult_js__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(31969),_Token_TokenUtil_js__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(20226),_CommandElement_js__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(49823),_Models_StringResult_js__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(74986);function _typeof(e){return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},_typeof(e)}function _regeneratorRuntime(){_regeneratorRuntime=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==_typeof(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function asyncGeneratorStep(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function _asyncToGenerator(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){asyncGeneratorStep(i,r,o,s,a,"next",e)}function a(e){asyncGeneratorStep(i,r,o,s,a,"throw",e)}s(void 0)}))}}function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _defineProperties(e,t){for(var n=0;n=!])=(?!=)|<>/g,retVal=eval(value.replace(regex,(function(e){return"="===e?"==":"<>"===e?"!=":void 0})))):retVal=!0,_context3.next=10;break;case 8:_context3.prev=8,_context3.t0=_context3.catch(1);case 10:return _context3.abrupt("return",retVal);case 11:case"end":return _context3.stop()}}),_callee3,this,[[1,8]])})));function _getIfValueAsync(e){return _getIfValueAsync2.apply(this,arguments)}return _getIfValueAsync}()},{key:"_executeCommandAsync",value:(_executeCommandAsync2=_asyncToGenerator(_regeneratorRuntime().mark((function e(t){return _regeneratorRuntime().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",Promise.resolve(new _Models_ExceptionResult_js__WEBPACK_IMPORTED_MODULE_3__.A(new Error("executeCommandAsync not implemented"),t)));case 1:case"end":return e.stop()}}),e)}))),function(e){return _executeCommandAsync2.apply(this,arguments)})},{key:"createHtmlElementAsync",value:(_createHtmlElementAsync=_asyncToGenerator(_regeneratorRuntime().mark((function e(t){var n,r;return _regeneratorRuntime().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=new _CommandElement_js__WEBPACK_IMPORTED_MODULE_7__.A("basis"),e.next=3,Promise.all([n.addAttributeIfExistAsync("core",this.core,t),n.addAttributeIfExistAsync("name",this.name,t),n.addAttributeIfExistAsync("if",this.if,t),n.addAttributeIfExistAsync("renderto",this.renderTo,t),n.addAttributeIfExistAsync("rendertype",this.renderType,t)]);case 3:if(!this.runType){e.next=8;break}return e.next=6,this._getRunTypeValueAsync(t);case 6:(r=e.sent)!=_Enums_RunTypes_js__WEBPACK_IMPORTED_MODULE_4__.A.None&&n.addAttributeIfExist("run",r);case 8:if(!this.extraAttributes){e.next=11;break}return e.next=11,Promise.all(Object.entries(this.extraAttributes).map((function(e){return n.addAttributeIfExistAsync(e[0],e[1],t)})));case 11:return e.abrupt("return",n);case 12:case"end":return e.stop()}}),e,this)}))),function(e){return _createHtmlElementAsync.apply(this,arguments)})}]);var _createHtmlElementAsync,_executeCommandAsync2,_getRunTypeValueAsync2,_executeAsync}()},49823:(e,t,n)=>{"use strict";n.d(t,{A:()=>N});var r=n(6872);function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function i(e,t){for(var n=0;ne.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),D(n),_}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;D(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:M(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),_}},t}function A(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function v(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){A(i,r,o,s,a,"next",e)}function a(e){A(i,r,o,s,a,"throw",e)}s(void 0)}))}}function b(e,t){for(var n=0;n0&&this.childs.push(new E(e)),this}},{key:"addRawContentIfExistAsync",value:(s=v(y().mark((function e(t,n){return y().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!t.IsNotNull){e.next=6;break}return e.t0=this,e.next=4,t.getValueAsync(n);case 4:e.t1=e.sent,e.t0.addChildIfExist.call(e.t0,e.t1);case 6:return e.abrupt("return",this);case 7:case"end":return e.stop()}}),e,this)}))),function(e,t){return s.apply(this,arguments)})},{key:"addChild",value:function(e){return this.childs.push(e),this}},{key:"addAttributeIfExist",value:function(e,t){return null!=t&&(this.attributes[e]=t),this}},{key:"addAttributeIfExistAsync",value:(i=v(y().mark((function e(t,n,r){return y().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!n||!n.IsNotNull){e.next=4;break}return e.next=3,n.getValueAsync(r);case 3:this.attributes[t]=e.sent;case 4:return e.abrupt("return",this);case 5:case"end":return e.stop()}}),e,this)}))),function(e,t,n){return i.apply(this,arguments)})},{key:"getHtml",value:function(){try{var e,t,n=(e="<".concat(this.name," ")).concat.apply(e,_(Object.entries(this.attributes).map((function(e){return"".concat(e[0],"='").concat(r.A.toString(e[1]).replaceAll("'",'"'),"' ")}))).concat([">"]));return n=(t=n).concat.apply(t,_(this.childs.map((function(e){return e.getHtml()})))),n+="")}catch(e){console.error(e)}}}],o&&b(n.prototype,o),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i,s}(a)},11291:(e,t,n)=>{"use strict";n.d(t,{A:()=>y});var r=n(29200),o=n(19047),i=(n(45009),n(74986));function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function a(){a=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},u=i.iterator||"@@iterator",c=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag";function h(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{h({},"")}catch(e){h=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var i=t&&t.prototype instanceof y?t:y,s=Object.create(i.prototype),a=new L(r||[]);return o(s,"_invoke",{value:I(e,n,a)}),s}function p(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var d="suspendedStart",E="suspendedYield",m="executing",_="completed",g={};function y(){}function A(){}function v(){}var b={};h(b,u,(function(){return this}));var T=Object.getPrototypeOf,w=T&&T(T(M([])));w&&w!==n&&r.call(w,u)&&(b=w);var O=v.prototype=y.prototype=Object.create(b);function R(e){["next","throw","return"].forEach((function(t){h(e,t,(function(e){return this._invoke(t,e)}))}))}function S(e,t){function n(o,i,a,u){var c=p(e[o],e,i);if("throw"!==c.type){var l=c.arg,h=l.value;return h&&"object"==s(h)&&r.call(h,"__await")?t.resolve(h.__await).then((function(e){n("next",e,a,u)}),(function(e){n("throw",e,a,u)})):t.resolve(h).then((function(e){l.value=e,a(l)}),(function(e){return n("throw",e,a,u)}))}u(c.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function I(t,n,r){var o=d;return function(i,s){if(o===m)throw Error("Generator is already running");if(o===_){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=N(a,r);if(u){if(u===g)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===d)throw o=_,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=m;var c=p(t,n,r);if("normal"===c.type){if(o=r.done?_:E,c.arg===g)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=_,r.method="throw",r.arg=c.arg)}}}function N(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,N(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),g;var i=p(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,g;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,g):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,g)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function D(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function L(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function M(t){if(t||""===t){var n=t[u];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),D(n),g}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;D(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:M(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),g}},t}function u(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return c(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?c(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n1)for(var a=0,u=Object.keys(i);a'+t+"",o=""+n.map((function(e){return"".concat(e,"")})).join("")+"",s=e.map((function(e){var t=n.map((function(t){return"".concat(e[t],"")})).join("");return"".concat(t,"")})).join(""),a="".concat(r).concat(o).concat(s,"
");return new i.A(a)}},87919:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;na}),n(56477),n(7395),n(74986),n(23084);var a=function(){return e=function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),i(this,"isSecure",void 0),i(this,"domainId",void 0),i(this,"cancellation",void 0),i(this,"debugContext",void 0),this.domainId=t},(t=[{key:"tryGetSource",value:function(e){throw new Error("Method 'tryGetSource' not implemented.")}},{key:"waitToGetSourceAsync",value:function(e){throw new Error("Method 'waitToGetSourceAsync' not implemented.")}},{key:"checkConnectionAsync",value:function(e){throw new Error("Method 'checkConnectionAsync' not implemented.")}},{key:"loadDataAsync",value:function(e,t,n){throw new Error("Method 'loadDataAsync' not implemented.")}},{key:"addSource",value:function(e){throw new Error("Method 'addSource' not implemented.")}},{key:"getDefault",value:function(e,t){throw new Error("Method 'getDefault' not implemented.")}},{key:"createContext",value:function(e){throw new Error("Method 'createContext' not implemented.")}},{key:"loadPageAsync",value:function(e,t,n,r){throw new Error("Method 'loadPageAsync' not implemented.")}},{key:"addCookie",value:function(e,t,n,r){throw new Error("Method 'addCookie' not implemented.")}},{key:"createCommand",value:function(e){}}])&&o(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t}()},23084:(e,t,n)=>{"use strict";n(11291),n(21773),n(81901)},29200:(e,t,n)=>{"use strict";n.d(t,{A:()=>f}),n(45009);var r=n(74986);function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function i(){i=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,s=Object.defineProperty||function(e,t,n){e[t]=n.value},a="function"==typeof Symbol?Symbol:{},u=a.iterator||"@@iterator",c=a.asyncIterator||"@@asyncIterator",l=a.toStringTag||"@@toStringTag";function h(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{h({},"")}catch(e){h=function(e,t,n){return e[t]=n}}function f(e,t,n,r){var o=t&&t.prototype instanceof y?t:y,i=Object.create(o.prototype),a=new L(r||[]);return s(i,"_invoke",{value:I(e,n,a)}),i}function p(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=f;var d="suspendedStart",E="suspendedYield",m="executing",_="completed",g={};function y(){}function A(){}function v(){}var b={};h(b,u,(function(){return this}));var T=Object.getPrototypeOf,w=T&&T(T(M([])));w&&w!==n&&r.call(w,u)&&(b=w);var O=v.prototype=y.prototype=Object.create(b);function R(e){["next","throw","return"].forEach((function(t){h(e,t,(function(e){return this._invoke(t,e)}))}))}function S(e,t){function n(i,s,a,u){var c=p(e[i],e,s);if("throw"!==c.type){var l=c.arg,h=l.value;return h&&"object"==o(h)&&r.call(h,"__await")?t.resolve(h.__await).then((function(e){n("next",e,a,u)}),(function(e){n("throw",e,a,u)})):t.resolve(h).then((function(e){l.value=e,a(l)}),(function(e){return n("throw",e,a,u)}))}u(c.arg)}var i;s(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function I(t,n,r){var o=d;return function(i,s){if(o===m)throw Error("Generator is already running");if(o===_){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=N(a,r);if(u){if(u===g)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===d)throw o=_,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=m;var c=p(t,n,r);if("normal"===c.type){if(o=r.done?_:E,c.arg===g)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=_,r.method="throw",r.arg=c.arg)}}}function N(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,N(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),g;var i=p(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,g;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,g):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,g)}function C(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function D(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function L(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(C,this),this.reset(!0)}function M(t){if(t||""===t){var n=t[u];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var i=-1,s=function n(){for(;++i=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),D(n),g}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;D(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:M(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),g}},t}function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return a(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?a(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,u=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){u=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(u)throw i}}}}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n\n.cms-data-member{ direction:ltr; text-align:left; margin-top:20px;}\n.cms-data-member tr th\n{\n min-width:100px;\n background-color: #eee;\n height: 50px;\n border: 1px solid #bbb;\n vertical-align: middle;\n text-align:center\n}\n.cms-data-member tbody tr td\n{\n background-color: #fff;\n border: 1px solid #bbb;\n vertical-align: middle;\n padding:0px 5px 0px 5px !important\n}\n.cms-data-member tbody tr.information td\n{\n background-color: lightblue !important;\n}\n.cms-data-member tbody tr.error td\n{\n background-color: #fefe !important;\n}\n.cms-data-member tbody tr.warning td\n{\n background-color: lightyellow !important ;\n}\n\n"))},76396:(e,t,n)=>{"use strict";n.d(t,{A:()=>r});const r={AtServer:"atserver",AtClient:"atclient",None:"None"}},21773:(e,t,n)=>{"use strict";n.d(t,{A:()=>u}),n(11291);var r=n(19047);function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function i(e,t){for(var n=0;n{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nh}),n(87919);var h=function(e){function t(e,n){var r;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(r=i(this,t),"exception",void 0),c(r,"context",void 0),r.exception=e,r.context=n,r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,(r=[{key:"writeAsync",value:function(e,t){null==e||e.push(this.exception.message)}}])&&o(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r}(n(2147).A)},2147:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;ns}),n(56477);var s=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)},(t=[{key:"writeAsync",value:function(e,t){throw new Error("Method not implemented.")}}])&&o(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t}()},19047:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;na});var a=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.startTime=0,this.running=!1,this.elapsed=0}return t=e,r=[{key:"getTimestamp",value:function(){return Date.now()}},{key:"startNew",value:function(){var t=new e;return t.start(),t}}],(n=[{key:"start",value:function(){this.running||(this.startTime=Date.now()-this.elapsed,this.running=!0)}},{key:"stop",value:function(){this.running&&(this.elapsed=Date.now()-this.startTime,this.running=!1)}},{key:"reset",value:function(){this.elapsed=0,this.startTime=0,this.running=!1}},{key:"restart",value:function(){this.elapsed=0,this.startTime=Date.now(),this.running=!0}},{key:"elapsedMilliseconds",get:function(){return this.running?Date.now()-this.startTime:this.elapsed}}])&&o(t.prototype,n),r&&o(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,n,r}();i(a,"Frequency",1e3),i(a,"IsHighResolution",!1)},74986:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nl});var l=function(e){function t(e){var n,r,o,s;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),r=n=i(this,t),s=void 0,(o=c(o="_result"))in r?Object.defineProperty(r,o,{value:s,enumerable:!0,configurable:!0,writable:!0}):r[o]=s,n._result=e,n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,(r=[{key:"writeAsync",value:function(e,t){return null==e||e.push(this._result),Promise.resolve()}}])&&o(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r}(n(2147).A)},31969:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t,n){return t=s(t),function(e,t){if(t&&("object"==r(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(e,i()?Reflect.construct(t,n||[],s(e).constructor):t.apply(e,n))}function i(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(i=function(){return!!e})()}function s(e){return s=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},s(e)}function a(e,t){return a=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},a(e,t)}function u(e){var t=function(e,t){if("object"!=r(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var o=n.call(e,"string");if("object"!=r(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==r(t)?t:t+""}n.d(t,{A:()=>f});var c,l,h,f=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),o(this,t,arguments)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&a(e,t)}(t,e),n=t,Object.defineProperty(n,"prototype",{writable:!1}),n;var n}(n(2147).A);c=f,l="result",h=new f,(l=u(l))in c?Object.defineProperty(c,l,{value:h,enumerable:!0,configurable:!0,writable:!0}):c[l]=h},81901:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;ns}),n(21773);var s=function(){return e=function e(t,n,r){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)},(t=[{key:"complete",value:function(){this._stopwatch.stop(),console.log("Wait For ".concat(this.Title," ").concat(this._stopwatch.elapsedMilliseconds," ms")),this.Completed=!0}},{key:"failed",value:function(){this.completed||(this._stopwatch.stop(),console.log("Timeout In Wait For ".concat(this.Title," ").concat(this._stopwatch.elapsedMilliseconds," ms")))}}])&&o(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t}()},30227:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;ns}),n(87919);var s=function(){return e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)},(t=[{key:"getValueAsync",value:function(e){throw new Error("Method not implemented.")}},{key:"IsNotNull",get:function(){throw new Error("Method not implemented.")}}])&&o(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t}()},20226:(e,t,n)=>{"use strict";n.d(t,{A:()=>U});var r=n(30227);function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function i(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),D(n),g}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;D(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:M(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),g}},t}function p(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function d(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),D(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;D(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:M(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function w(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function O(e,t){for(var n=0;n1)try{n=c.data.map((function(e){var t=e[l];return"string"==typeof t?"'".concat(t,"'"):v.A.toString(t)})).join(",")}catch(e){}case 41:e.next=48;break;case 43:if(v.A.isNullOrEmpty(o.source)){e.next=48;break}return e.next=46,t.checkConnectionAsync(o.source);case 46:p=e.sent,n=p.toString();case 48:case"end":return e.stop()}}),e)})),i=0;case 3:if(!(i=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function M(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function x(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){M(i,r,o,s,a,"next",e)}function a(e){M(i,r,o,s,a,"throw",e)}s(void 0)}))}}function B(e){return B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},B(e)}function P(e,t){for(var n=0;n3&&void 0!==s[3]?s[3]:null,e.next=3,t.getValueAsync(r);case 3:if(e.t1=o=e.sent,e.t0=null!==e.t1,!e.t0){e.next=7;break}e.t0=void 0!==o;case 7:if(!e.t0){e.next=11;break}e.t2=o,e.next=12;break;case 11:e.t2=r.getDefault(n,i);case 12:return e.abrupt("return",e.t2);case 13:case"end":return e.stop()}}),e)}))),function(e,t,n){return o.apply(this,arguments)})},{key:"getValueOrDefaultAsync",value:(r=x(L().mark((function e(t,n){var r,o,i=arguments;return L().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return o=i.length>2&&void 0!==i[2]?i[2]:null,e.next=3,t.getValueAsync(n);case 3:if(e.t1=r=e.sent,e.t0=null!==e.t1,!e.t0){e.next=7;break}e.t0=void 0!==r;case 7:if(!e.t0){e.next=11;break}e.t2=r,e.next=12;break;case 11:e.t2=o;case 12:return e.abrupt("return",e.t2);case 13:case"end":return e.stop()}}),e)}))),function(e,t){return r.apply(this,arguments)})}],n&&P(t,n),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,n,r,o}()},27949:(e,t,n)=>{"use strict";function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}function o(e,t){for(var n=0;nh});var h=function(e){function t(e){var n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(n=i(this,t),"value",void 0),n.value=e,n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}(t,e),n=t,(r=[{key:"getValueAsync",value:function(e){return Promise.resolve(this.value)}},{key:"IsNotNull",get:function(){return this!==t.Null}}])&&o(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r}(n(30227).A);c(h,"Null",new h(null))},43267:e=>{"use strict";e.exports=JSON.parse('[["8740","䏰䰲䘃䖦䕸𧉧䵷䖳𧲱䳢𧳅㮕䜶䝄䱇䱀𤊿𣘗𧍒𦺋𧃒䱗𪍑䝏䗚䲅𧱬䴇䪤䚡𦬣爥𥩔𡩣𣸆𣽡晍囻"],["8767","綕夝𨮹㷴霴𧯯寛𡵞媤㘥𩺰嫑宷峼杮薓𩥅瑡璝㡵𡵓𣚞𦀡㻬"],["87a1","𥣞㫵竼龗𤅡𨤍𣇪𠪊𣉞䌊蒄龖鐯䤰蘓墖靊鈘秐稲晠権袝瑌篅枂稬剏遆㓦珄𥶹瓆鿇垳䤯呌䄱𣚎堘穲𧭥讏䚮𦺈䆁𥶙箮𢒼鿈𢓁𢓉𢓌鿉蔄𣖻䂴鿊䓡𪷿拁灮鿋"],["8840","㇀",4,"𠄌㇅𠃑𠃍㇆㇇𠃋𡿨㇈𠃊㇉㇊㇋㇌𠄎㇍㇎ĀÁǍÀĒÉĚÈŌÓǑÒ࿿Ê̄Ế࿿Ê̌ỀÊāáǎàɑēéěèīíǐìōóǒòūúǔùǖǘǚ"],["88a1","ǜü࿿ê̄ế࿿ê̌ềêɡ⏚⏛"],["8940","𪎩𡅅"],["8943","攊"],["8946","丽滝鵎釟"],["894c","𧜵撑会伨侨兖兴农凤务动医华发变团声处备夲头学实実岚庆总斉柾栄桥济炼电纤纬纺织经统缆缷艺苏药视设询车轧轮"],["89a1","琑糼緍楆竉刧"],["89ab","醌碸酞肼"],["89b0","贋胶𠧧"],["89b5","肟黇䳍鷉鸌䰾𩷶𧀎鸊𪄳㗁"],["89c1","溚舾甙"],["89c5","䤑马骏龙禇𨑬𡷊𠗐𢫦两亁亀亇亿仫伷㑌侽㹈倃傈㑽㒓㒥円夅凛凼刅争剹劐匧㗇厩㕑厰㕓参吣㕭㕲㚁咓咣咴咹哐哯唘唣唨㖘唿㖥㖿嗗㗅"],["8a40","𧶄唥"],["8a43","𠱂𠴕𥄫喐𢳆㧬𠍁蹆𤶸𩓥䁓𨂾睺𢰸㨴䟕𨅝𦧲𤷪擝𠵼𠾴𠳕𡃴撍蹾𠺖𠰋𠽤𢲩𨉖𤓓"],["8a64","𠵆𩩍𨃩䟴𤺧𢳂骲㩧𩗴㿭㔆𥋇𩟔𧣈𢵄鵮頕"],["8a76","䏙𦂥撴哣𢵌𢯊𡁷㧻𡁯"],["8aa1","𦛚𦜖𧦠擪𥁒𠱃蹨𢆡𨭌𠜱"],["8aac","䠋𠆩㿺塳𢶍"],["8ab2","𤗈𠓼𦂗𠽌𠶖啹䂻䎺"],["8abb","䪴𢩦𡂝膪飵𠶜捹㧾𢝵跀嚡摼㹃"],["8ac9","𪘁𠸉𢫏𢳉"],["8ace","𡃈𣧂㦒㨆𨊛㕸𥹉𢃇噒𠼱𢲲𩜠㒼氽𤸻"],["8adf","𧕴𢺋𢈈𪙛𨳍𠹺𠰴𦠜羓𡃏𢠃𢤹㗻𥇣𠺌𠾍𠺪㾓𠼰𠵇𡅏𠹌"],["8af6","𠺫𠮩𠵈𡃀𡄽㿹𢚖搲𠾭"],["8b40","𣏴𧘹𢯎𠵾𠵿𢱑𢱕㨘𠺘𡃇𠼮𪘲𦭐𨳒𨶙𨳊閪哌苄喹"],["8b55","𩻃鰦骶𧝞𢷮煀腭胬尜𦕲脴㞗卟𨂽醶𠻺𠸏𠹷𠻻㗝𤷫㘉𠳖嚯𢞵𡃉𠸐𠹸𡁸𡅈𨈇𡑕𠹹𤹐𢶤婔𡀝𡀞𡃵𡃶垜𠸑"],["8ba1","𧚔𨋍𠾵𠹻𥅾㜃𠾶𡆀𥋘𪊽𤧚𡠺𤅷𨉼墙剨㘚𥜽箲孨䠀䬬鼧䧧鰟鮍𥭴𣄽嗻㗲嚉丨夂𡯁屮靑𠂆乛亻㔾尣彑忄㣺扌攵歺氵氺灬爫丬犭𤣩罒礻糹罓𦉪㓁"],["8bde","𦍋耂肀𦘒𦥑卝衤见𧢲讠贝钅镸长门𨸏韦页风飞饣𩠐鱼鸟黄歯龜丷𠂇阝户钢"],["8c40","倻淾𩱳龦㷉袏𤅎灷峵䬠𥇍㕙𥴰愢𨨲辧釶熑朙玺𣊁𪄇㲋𡦀䬐磤琂冮𨜏䀉橣𪊺䈣蘏𠩯稪𩥇𨫪靕灍匤𢁾鏴盙𨧣龧矝亣俰傼丯众龨吴綋墒壐𡶶庒庙忂𢜒斋"],["8ca1","𣏹椙橃𣱣泿"],["8ca7","爀𤔅玌㻛𤨓嬕璹讃𥲤𥚕窓篬糃繬苸薗龩袐龪躹龫迏蕟駠鈡龬𨶹𡐿䁱䊢娚"],["8cc9","顨杫䉶圽"],["8cce","藖𤥻芿𧄍䲁𦵴嵻𦬕𦾾龭龮宖龯曧繛湗秊㶈䓃𣉖𢞖䎚䔶"],["8ce6","峕𣬚諹屸㴒𣕑嵸龲煗䕘𤃬𡸣䱷㥸㑊𠆤𦱁諌侴𠈹妿腬顖𩣺弻"],["8d40","𠮟"],["8d42","𢇁𨥭䄂䚻𩁹㼇龳𪆵䃸㟖䛷𦱆䅼𨚲𧏿䕭㣔𥒚䕡䔛䶉䱻䵶䗪㿈𤬏㙡䓞䒽䇭崾嵈嵖㷼㠏嶤嶹㠠㠸幂庽弥徃㤈㤔㤿㥍惗愽峥㦉憷憹懏㦸戬抐拥挘㧸嚱"],["8da1","㨃揢揻搇摚㩋擀崕嘡龟㪗斆㪽旿晓㫲暒㬢朖㭂枤栀㭘桊梄㭲㭱㭻椉楃牜楤榟榅㮼槖㯝橥橴橱檂㯬檙㯲檫檵櫔櫶殁毁毪汵沪㳋洂洆洦涁㳯涤涱渕渘温溆𨧀溻滢滚齿滨滩漤漴㵆𣽁澁澾㵪㵵熷岙㶊瀬㶑灐灔灯灿炉𠌥䏁㗱𠻘"],["8e40","𣻗垾𦻓焾𥟠㙎榢𨯩孴穉𥣡𩓙穥穽𥦬窻窰竂竃燑𦒍䇊竚竝竪䇯咲𥰁笋筕笩𥌎𥳾箢筯莜𥮴𦱿篐萡箒箸𥴠㶭𥱥蒒篺簆簵𥳁籄粃𤢂粦晽𤕸糉糇糦籴糳糵糎"],["8ea1","繧䔝𦹄絝𦻖璍綉綫焵綳緒𤁗𦀩緤㴓緵𡟹緥𨍭縝𦄡𦅚繮纒䌫鑬縧罀罁罇礶𦋐駡羗𦍑羣𡙡𠁨䕜𣝦䔃𨌺翺𦒉者耈耝耨耯𪂇𦳃耻耼聡𢜔䦉𦘦𣷣𦛨朥肧𨩈脇脚墰𢛶汿𦒘𤾸擧𡒊舘𡡞橓𤩥𤪕䑺舩𠬍𦩒𣵾俹𡓽蓢荢𦬊𤦧𣔰𡝳𣷸芪椛芳䇛"],["8f40","蕋苐茚𠸖𡞴㛁𣅽𣕚艻苢茘𣺋𦶣𦬅𦮗𣗎㶿茝嗬莅䔋𦶥莬菁菓㑾𦻔橗蕚㒖𦹂𢻯葘𥯤葱㷓䓤檧葊𣲵祘蒨𦮖𦹷𦹃蓞萏莑䒠蒓蓤𥲑䉀𥳀䕃蔴嫲𦺙䔧蕳䔖枿蘖"],["8fa1","𨘥𨘻藁𧂈蘂𡖂𧃍䕫䕪蘨㙈𡢢号𧎚虾蝱𪃸蟮𢰧螱蟚蠏噡虬桖䘏衅衆𧗠𣶹𧗤衞袜䙛袴袵揁装睷𧜏覇覊覦覩覧覼𨨥觧𧤤𧪽誜瞓釾誐𧩙竩𧬺𣾏䜓𧬸煼謌謟𥐰𥕥謿譌譍誩𤩺讐讛誯𡛟䘕衏貛𧵔𧶏貫㜥𧵓賖𧶘𧶽贒贃𡤐賛灜贑𤳉㻐起"],["9040","趩𨀂𡀔𤦊㭼𨆼𧄌竧躭躶軃鋔輙輭𨍥𨐒辥錃𪊟𠩐辳䤪𨧞𨔽𣶻廸𣉢迹𪀔𨚼𨔁𢌥㦀𦻗逷𨔼𧪾遡𨕬𨘋邨𨜓郄𨛦邮都酧㫰醩釄粬𨤳𡺉鈎沟鉁鉢𥖹銹𨫆𣲛𨬌𥗛"],["90a1","𠴱錬鍫𨫡𨯫炏嫃𨫢𨫥䥥鉄𨯬𨰹𨯿鍳鑛躼閅閦鐦閠濶䊹𢙺𨛘𡉼𣸮䧟氜陻隖䅬隣𦻕懚隶磵𨫠隽双䦡𦲸𠉴𦐐𩂯𩃥𤫑𡤕𣌊霱虂霶䨏䔽䖅𤫩灵孁霛靜𩇕靗孊𩇫靟鐥僐𣂷𣂼鞉鞟鞱鞾韀韒韠𥑬韮琜𩐳響韵𩐝𧥺䫑頴頳顋顦㬎𧅵㵑𠘰𤅜"],["9140","𥜆飊颷飈飇䫿𦴧𡛓喰飡飦飬鍸餹𤨩䭲𩡗𩤅駵騌騻騐驘𥜥㛄𩂱𩯕髠髢𩬅髴䰎鬔鬭𨘀倴鬴𦦨㣃𣁽魐魀𩴾婅𡡣鮎𤉋鰂鯿鰌𩹨鷔𩾷𪆒𪆫𪃡𪄣𪇟鵾鶃𪄴鸎梈"],["91a1","鷄𢅛𪆓𪈠𡤻𪈳鴹𪂹𪊴麐麕麞麢䴴麪麯𤍤黁㭠㧥㴝伲㞾𨰫鼂鼈䮖鐤𦶢鼗鼖鼹嚟嚊齅馸𩂋韲葿齢齩竜龎爖䮾𤥵𤦻煷𤧸𤍈𤩑玞𨯚𡣺禟𨥾𨸶鍩鏳𨩄鋬鎁鏋𨥬𤒹爗㻫睲穃烐𤑳𤏸煾𡟯炣𡢾𣖙㻇𡢅𥐯𡟸㜢𡛻𡠹㛡𡝴𡣑𥽋㜣𡛀坛𤨥𡏾𡊨"],["9240","𡏆𡒶蔃𣚦蔃葕𤦔𧅥𣸱𥕜𣻻𧁒䓴𣛮𩦝𦼦柹㜳㰕㷧塬𡤢栐䁗𣜿𤃡𤂋𤄏𦰡哋嚞𦚱嚒𠿟𠮨𠸍鏆𨬓鎜仸儫㠙𤐶亼𠑥𠍿佋侊𥙑婨𠆫𠏋㦙𠌊𠐔㐵伩𠋀𨺳𠉵諚𠈌亘"],["92a1","働儍侢伃𤨎𣺊佂倮偬傁俌俥偘僼兙兛兝兞湶𣖕𣸹𣺿浲𡢄𣺉冨凃𠗠䓝𠒣𠒒𠒑赺𨪜𠜎剙劤𠡳勡鍮䙺熌𤎌𠰠𤦬𡃤槑𠸝瑹㻞璙琔瑖玘䮎𤪼𤂍叐㖄爏𤃉喴𠍅响𠯆圝鉝雴鍦埝垍坿㘾壋媙𨩆𡛺𡝯𡜐娬妸銏婾嫏娒𥥆𡧳𡡡𤊕㛵洅瑃娡𥺃"],["9340","媁𨯗𠐓鏠璌𡌃焅䥲鐈𨧻鎽㞠尞岞幞幈𡦖𡥼𣫮廍孏𡤃𡤄㜁𡢠㛝𡛾㛓脪𨩇𡶺𣑲𨦨弌弎𡤧𡞫婫𡜻孄蘔𧗽衠恾𢡠𢘫忛㺸𢖯𢖾𩂈𦽳懀𠀾𠁆𢘛憙憘恵𢲛𢴇𤛔𩅍"],["93a1","摱𤙥𢭪㨩𢬢𣑐𩣪𢹸挷𪑛撶挱揑𤧣𢵧护𢲡搻敫楲㯴𣂎𣊭𤦉𣊫唍𣋠𡣙𩐿曎𣊉𣆳㫠䆐𥖄𨬢𥖏𡛼𥕛𥐥磮𣄃𡠪𣈴㑤𣈏𣆂𤋉暎𦴤晫䮓昰𧡰𡷫晣𣋒𣋡昞𥡲㣑𣠺𣞼㮙𣞢𣏾瓐㮖枏𤘪梶栞㯄檾㡣𣟕𤒇樳橒櫉欅𡤒攑梘橌㯗橺歗𣿀𣲚鎠鋲𨯪𨫋"],["9440","銉𨀞𨧜鑧涥漋𤧬浧𣽿㶏渄𤀼娽渊塇洤硂焻𤌚𤉶烱牐犇犔𤞏𤜥兹𤪤𠗫瑺𣻸𣙟𤩊𤤗𥿡㼆㺱𤫟𨰣𣼵悧㻳瓌琼鎇琷䒟𦷪䕑疃㽣𤳙𤴆㽘畕癳𪗆㬙瑨𨫌𤦫𤦎㫻"],["94a1","㷍𤩎㻿𤧅𤣳釺圲鍂𨫣𡡤僟𥈡𥇧睸𣈲眎眏睻𤚗𣞁㩞𤣰琸璛㺿𤪺𤫇䃈𤪖𦆮錇𥖁砞碍碈磒珐祙𧝁𥛣䄎禛蒖禥樭𣻺稺秴䅮𡛦䄲鈵秱𠵌𤦌𠊙𣶺𡝮㖗啫㕰㚪𠇔𠰍竢婙𢛵𥪯𥪜娍𠉛磰娪𥯆竾䇹籝籭䈑𥮳𥺼𥺦糍𤧹𡞰粎籼粮檲緜縇緓罎𦉡"],["9540","𦅜𧭈綗𥺂䉪𦭵𠤖柖𠁎𣗏埄𦐒𦏸𤥢翝笧𠠬𥫩𥵃笌𥸎駦虅驣樜𣐿㧢𤧷𦖭騟𦖠蒀𧄧𦳑䓪脷䐂胆脉腂𦞴飃𦩂艢艥𦩑葓𦶧蘐𧈛媆䅿𡡀嬫𡢡嫤𡣘蚠蜨𣶏蠭𧐢娂"],["95a1","衮佅袇袿裦襥襍𥚃襔𧞅𧞄𨯵𨯙𨮜𨧹㺭蒣䛵䛏㟲訽訜𩑈彍鈫𤊄旔焩烄𡡅鵭貟賩𧷜妚矃姰䍮㛔踪躧𤰉輰轊䋴汘澻𢌡䢛潹溋𡟚鯩㚵𤤯邻邗啱䤆醻鐄𨩋䁢𨫼鐧𨰝𨰻蓥訫閙閧閗閖𨴴瑅㻂𤣿𤩂𤏪㻧𣈥随𨻧𨹦𨹥㻌𤧭𤩸𣿮琒瑫㻼靁𩂰"],["9640","桇䨝𩂓𥟟靝鍨𨦉𨰦𨬯𦎾銺嬑譩䤼珹𤈛鞛靱餸𠼦巁𨯅𤪲頟𩓚鋶𩗗釥䓀𨭐𤩧𨭤飜𨩅㼀鈪䤥萔餻饍𧬆㷽馛䭯馪驜𨭥𥣈檏騡嫾騯𩣱䮐𩥈馼䮽䮗鍽塲𡌂堢𤦸"],["96a1","𡓨硄𢜟𣶸棅㵽鑘㤧慐𢞁𢥫愇鱏鱓鱻鰵鰐魿鯏𩸭鮟𪇵𪃾鴡䲮𤄄鸘䲰鴌𪆴𪃭𪃳𩤯鶥蒽𦸒𦿟𦮂藼䔳𦶤𦺄𦷰萠藮𦸀𣟗𦁤秢𣖜𣙀䤭𤧞㵢鏛銾鍈𠊿碹鉷鑍俤㑀遤𥕝砽硔碶硋𡝗𣇉𤥁㚚佲濚濙瀞瀞吔𤆵垻壳垊鴖埗焴㒯𤆬燫𦱀𤾗嬨𡞵𨩉"],["9740","愌嫎娋䊼𤒈㜬䭻𨧼鎻鎸𡣖𠼝葲𦳀𡐓𤋺𢰦𤏁妔𣶷𦝁綨𦅛𦂤𤦹𤦋𨧺鋥珢㻩璴𨭣𡢟㻡𤪳櫘珳珻㻖𤨾𤪔𡟙𤩦𠎧𡐤𤧥瑈𤤖炥𤥶銄珦鍟𠓾錱𨫎𨨖鎆𨯧𥗕䤵𨪂煫"],["97a1","𤥃𠳿嚤𠘚𠯫𠲸唂秄𡟺緾𡛂𤩐𡡒䔮鐁㜊𨫀𤦭妰𡢿𡢃𧒄媡㛢𣵛㚰鉟婹𨪁𡡢鍴㳍𠪴䪖㦊僴㵩㵌𡎜煵䋻𨈘渏𩃤䓫浗𧹏灧沯㳖𣿭𣸭渂漌㵯𠏵畑㚼㓈䚀㻚䡱姄鉮䤾轁𨰜𦯀堒埈㛖𡑒烾𤍢𤩱𢿣𡊰𢎽梹楧𡎘𣓥𧯴𣛟𨪃𣟖𣏺𤲟樚𣚭𦲷萾䓟䓎"],["9840","𦴦𦵑𦲂𦿞漗𧄉茽𡜺菭𦲀𧁓𡟛妉媂𡞳婡婱𡤅𤇼㜭姯𡜼㛇熎鎐暚𤊥婮娫𤊓樫𣻹𧜶𤑛𤋊焝𤉙𨧡侰𦴨峂𤓎𧹍𤎽樌𤉖𡌄炦焳𤏩㶥泟勇𤩏繥姫崯㷳彜𤩝𡟟綤萦"],["98a1","咅𣫺𣌀𠈔坾𠣕𠘙㿥𡾞𪊶瀃𩅛嵰玏糓𨩙𩐠俈翧狍猐𧫴猸猹𥛶獁獈㺩𧬘遬燵𤣲珡臶㻊県㻑沢国琙琞琟㻢㻰㻴㻺瓓㼎㽓畂畭畲疍㽼痈痜㿀癍㿗癴㿜発𤽜熈嘣覀塩䀝睃䀹条䁅㗛瞘䁪䁯属瞾矋売砘点砜䂨砹硇硑硦葈𥔵礳栃礲䄃"],["9940","䄉禑禙辻稆込䅧窑䆲窼艹䇄竏竛䇏両筢筬筻簒簛䉠䉺类粜䊌粸䊔糭输烀𠳏総緔緐緽羮羴犟䎗耠耥笹耮耱联㷌垴炠肷胩䏭脌猪脎脒畠脔䐁㬹腖腙腚"],["99a1","䐓堺腼膄䐥膓䐭膥埯臁臤艔䒏芦艶苊苘苿䒰荗险榊萅烵葤惣蒈䔄蒾蓡蓸蔐蔸蕒䔻蕯蕰藠䕷虲蚒蚲蛯际螋䘆䘗袮裿褤襇覑𧥧訩訸誔誴豑賔賲贜䞘塟跃䟭仮踺嗘坔蹱嗵躰䠷軎転軤軭軲辷迁迊迌逳駄䢭飠鈓䤞鈨鉘鉫銱銮銿"],["9a40","鋣鋫鋳鋴鋽鍃鎄鎭䥅䥑麿鐗匁鐝鐭鐾䥪鑔鑹锭関䦧间阳䧥枠䨤靀䨵鞲韂噔䫤惨颹䬙飱塄餎餙冴餜餷饂饝饢䭰駅䮝騼鬏窃魩鮁鯝鯱鯴䱭鰠㝯𡯂鵉鰺"],["9aa1","黾噐鶓鶽鷀鷼银辶鹻麬麱麽黆铜黢黱黸竈齄𠂔𠊷𠎠椚铃妬𠓗塀铁㞹𠗕𠘕𠙶𡚺块煳𠫂𠫍𠮿呪吆𠯋咞𠯻𠰻𠱓𠱥𠱼惧𠲍噺𠲵𠳝𠳭𠵯𠶲𠷈楕鰯螥𠸄𠸎𠻗𠾐𠼭𠹳尠𠾼帋𡁜𡁏𡁶朞𡁻𡂈𡂖㙇𡂿𡃓𡄯𡄻卤蒭𡋣𡍵𡌶讁𡕷𡘙𡟃𡟇乸炻𡠭𡥪"],["9b40","𡨭𡩅𡰪𡱰𡲬𡻈拃𡻕𡼕熘桕𢁅槩㛈𢉼𢏗𢏺𢜪𢡱𢥏苽𢥧𢦓𢫕覥𢫨辠𢬎鞸𢬿顇骽𢱌"],["9b62","𢲈𢲷𥯨𢴈𢴒𢶷𢶕𢹂𢽴𢿌𣀳𣁦𣌟𣏞徱晈暿𧩹𣕧𣗳爁𤦺矗𣘚𣜖纇𠍆墵朎"],["9ba1","椘𣪧𧙗𥿢𣸑𣺹𧗾𢂚䣐䪸𤄙𨪚𤋮𤌍𤀻𤌴𤎖𤩅𠗊凒𠘑妟𡺨㮾𣳿𤐄𤓖垈𤙴㦛𤜯𨗨𩧉㝢𢇃譞𨭎駖𤠒𤣻𤨕爉𤫀𠱸奥𤺥𤾆𠝹軚𥀬劏圿煱𥊙𥐙𣽊𤪧喼𥑆𥑮𦭒釔㑳𥔿𧘲𥕞䜘𥕢𥕦𥟇𤤿𥡝偦㓻𣏌惞𥤃䝼𨥈𥪮𥮉𥰆𡶐垡煑澶𦄂𧰒遖𦆲𤾚譢𦐂𦑊"],["9c40","嵛𦯷輶𦒄𡤜諪𤧶𦒈𣿯𦔒䯀𦖿𦚵𢜛鑥𥟡憕娧晉侻嚹𤔡𦛼乪𤤴陖涏𦲽㘘襷𦞙𦡮𦐑𦡞營𦣇筂𩃀𠨑𦤦鄄𦤹穅鷰𦧺騦𦨭㙟𦑩𠀡禃𦨴𦭛崬𣔙菏𦮝䛐𦲤画补𦶮墶"],["9ca1","㜜𢖍𧁋𧇍㱔𧊀𧊅銁𢅺𧊋錰𧋦𤧐氹钟𧑐𠻸蠧裵𢤦𨑳𡞱溸𤨪𡠠㦤㚹尐秣䔿暶𩲭𩢤襃𧟌𧡘囖䃟𡘊㦡𣜯𨃨𡏅熭荦𧧝𩆨婧䲷𧂯𨦫𧧽𧨊𧬋𧵦𤅺筃祾𨀉澵𪋟樃𨌘厢𦸇鎿栶靝𨅯𨀣𦦵𡏭𣈯𨁈嶅𨰰𨂃圕頣𨥉嶫𤦈斾槕叒𤪥𣾁㰑朶𨂐𨃴𨄮𡾡𨅏"],["9d40","𨆉𨆯𨈚𨌆𨌯𨎊㗊𨑨𨚪䣺揦𨥖砈鉕𨦸䏲𨧧䏟𨧨𨭆𨯔姸𨰉輋𨿅𩃬筑𩄐𩄼㷷𩅞𤫊运犏嚋𩓧𩗩𩖰𩖸𩜲𩣑𩥉𩥪𩧃𩨨𩬎𩵚𩶛纟𩻸𩼣䲤镇𪊓熢𪋿䶑递𪗋䶜𠲜达嗁"],["9da1","辺𢒰边𤪓䔉繿潖檱仪㓤𨬬𧢝㜺躀𡟵𨀤𨭬𨮙𧨾𦚯㷫𧙕𣲷𥘵𥥖亚𥺁𦉘嚿𠹭踎孭𣺈𤲞揞拐𡟶𡡻攰嘭𥱊吚𥌑㷆𩶘䱽嘢嘞罉𥻘奵𣵀蝰东𠿪𠵉𣚺脗鵞贘瘻鱅癎瞹鍅吲腈苷嘥脲萘肽嗪祢噃吖𠺝㗎嘅嗱曱𨋢㘭甴嗰喺咗啲𠱁𠲖廐𥅈𠹶𢱢"],["9e40","𠺢麫絚嗞𡁵抝靭咔賍燶酶揼掹揾啩𢭃鱲𢺳冚㓟𠶧冧呍唞唓癦踭𦢊疱肶蠄螆裇膶萜𡃁䓬猄𤜆宐茋𦢓噻𢛴𧴯𤆣𧵳𦻐𧊶酰𡇙鈈𣳼𪚩𠺬𠻹牦𡲢䝎𤿂𧿹𠿫䃺"],["9ea1","鱝攟𢶠䣳𤟠𩵼𠿬𠸊恢𧖣𠿭"],["9ead","𦁈𡆇熣纎鵐业丄㕷嬍沲卧㚬㧜卽㚥𤘘墚𤭮舭呋垪𥪕𠥹"],["9ec5","㩒𢑥獴𩺬䴉鯭𣳾𩼰䱛𤾩𩖞𩿞葜𣶶𧊲𦞳𣜠挮紥𣻷𣸬㨪逈勌㹴㙺䗩𠒎癀嫰𠺶硺𧼮墧䂿噼鮋嵴癔𪐴麅䳡痹㟻愙𣃚𤏲"],["9ef5","噝𡊩垧𤥣𩸆刴𧂮㖭汊鵼"],["9f40","籖鬹埞𡝬屓擓𩓐𦌵𧅤蚭𠴨𦴢𤫢𠵱"],["9f4f","凾𡼏嶎霃𡷑麁遌笟鬂峑箣扨挵髿篏鬪籾鬮籂粆鰕篼鬉鼗鰛𤤾齚啳寃俽麘俲剠㸆勑坧偖妷帒韈鶫轜呩鞴饀鞺匬愰"],["9fa1","椬叚鰊鴂䰻陁榀傦畆𡝭駚剳"],["9fae","酙隁酜"],["9fb2","酑𨺗捿𦴣櫊嘑醎畺抅𠏼獏籰𥰡𣳽"],["9fc1","𤤙盖鮝个𠳔莾衂"],["9fc9","届槀僭坺刟巵从氱𠇲伹咜哚劚趂㗾弌㗳"],["9fdb","歒酼龥鮗頮颴骺麨麄煺笔"],["9fe7","毺蠘罸"],["9feb","嘠𪙊蹷齓"],["9ff0","跔蹏鸜踁抂𨍽踨蹵竓𤩷稾磘泪詧瘇"],["a040","𨩚鼦泎蟖痃𪊲硓咢贌狢獱謭猂瓱賫𤪻蘯徺袠䒷"],["a055","𡠻𦸅"],["a058","詾𢔛"],["a05b","惽癧髗鵄鍮鮏蟵"],["a063","蠏賷猬霡鮰㗖犲䰇籑饊𦅙慙䰄麖慽"],["a073","坟慯抦戹拎㩜懢厪𣏵捤栂㗒"],["a0a1","嵗𨯂迚𨸹"],["a0a6","僙𡵆礆匲阸𠼻䁥"],["a0ae","矾"],["a0b0","糂𥼚糚稭聦聣絍甅瓲覔舚朌聢𧒆聛瓰脃眤覉𦟌畓𦻑螩蟎臈螌詉貭譃眫瓸蓚㘵榲趦"],["a0d4","覩瑨涹蟁𤀑瓧㷛煶悤憜㳑煢恷"],["a0e2","罱𨬭牐惩䭾删㰘𣳇𥻗𧙖𥔱𡥄𡋾𩤃𦷜𧂭峁𦆭𨨏𣙷𠃮𦡆𤼎䕢嬟𦍌齐麦𦉫"],["a3c0","␀",31,"␡"],["c6a1","①",9,"⑴",9,"ⅰ",9,"丶丿亅亠冂冖冫勹匸卩厶夊宀巛⼳广廴彐彡攴无疒癶辵隶¨ˆヽヾゝゞ〃仝々〆〇ー[]✽ぁ",23],["c740","す",58,"ァアィイ"],["c7a1","ゥ",81,"А",5,"ЁЖ",4],["c840","Л",26,"ёж",25,"⇧↸↹㇏𠃌乚𠂊刂䒑"],["c8a1","龰冈龱𧘇"],["c8cd","¬¦'"㈱№℡゛゜⺀⺄⺆⺇⺈⺊⺌⺍⺕⺜⺝⺥⺧⺪⺬⺮⺶⺼⺾⻆⻊⻌⻍⻏⻖⻗⻞⻣"],["c8f5","ʃɐɛɔɵœøŋʊɪ"],["f9fe","■"],["fa40","𠕇鋛𠗟𣿅蕌䊵珯况㙉𤥂𨧤鍄𡧛苮𣳈砼杄拟𤤳𨦪𠊠𦮳𡌅侫𢓭倈𦴩𧪄𣘀𤪱𢔓倩𠍾徤𠎀𠍇滛𠐟偽儁㑺儎顬㝃萖𤦤𠒇兠𣎴兪𠯿𢃼𠋥𢔰𠖎𣈳𡦃宂蝽𠖳𣲙冲冸"],["faa1","鴴凉减凑㳜凓𤪦决凢卂凭菍椾𣜭彻刋刦刼劵剗劔効勅簕蕂勠蘍𦬓包𨫞啉滙𣾀𠥔𣿬匳卄𠯢泋𡜦栛珕恊㺪㣌𡛨燝䒢卭却𨚫卾卿𡖖𡘓矦厓𨪛厠厫厮玧𥝲㽙玜叁叅汉义埾叙㪫𠮏叠𣿫𢶣叶𠱷吓灹唫晗浛呭𦭓𠵴啝咏咤䞦𡜍𠻝㶴𠵍"],["fb40","𨦼𢚘啇䳭启琗喆喩嘅𡣗𤀺䕒𤐵暳𡂴嘷曍𣊊暤暭噍噏磱囱鞇叾圀囯园𨭦㘣𡉏坆𤆥汮炋坂㚱𦱾埦𡐖堃𡑔𤍣堦𤯵塜墪㕡壠壜𡈼壻寿坃𪅐𤉸鏓㖡够梦㛃湙"],["fba1","𡘾娤啓𡚒蔅姉𠵎𦲁𦴪𡟜姙𡟻𡞲𦶦浱𡠨𡛕姹𦹅媫婣㛦𤦩婷㜈媖瑥嫓𦾡𢕔㶅𡤑㜲𡚸広勐孶斈孼𧨎䀄䡝𠈄寕慠𡨴𥧌𠖥寳宝䴐尅𡭄尓珎尔𡲥𦬨屉䣝岅峩峯嶋𡷹𡸷崐崘嵆𡺤岺巗苼㠭𤤁𢁉𢅳芇㠶㯂帮檊幵幺𤒼𠳓厦亷廐厨𡝱帉廴𨒂"],["fc40","廹廻㢠廼栾鐛弍𠇁弢㫞䢮𡌺强𦢈𢏐彘𢑱彣鞽𦹮彲鍀𨨶徧嶶㵟𥉐𡽪𧃸𢙨釖𠊞𨨩怱暅𡡷㥣㷇㘹垐𢞴祱㹀悞悤悳𤦂𤦏𧩓璤僡媠慤萤慂慈𦻒憁凴𠙖憇宪𣾷"],["fca1","𢡟懓𨮝𩥝懐㤲𢦀𢣁怣慜攞掋𠄘担𡝰拕𢸍捬𤧟㨗搸揸𡎎𡟼撐澊𢸶頔𤂌𥜝擡擥鑻㩦携㩗敍漖𤨨𤨣斅敭敟𣁾斵𤥀䬷旑䃘𡠩无旣忟𣐀昘𣇷𣇸晄𣆤𣆥晋𠹵晧𥇦晳晴𡸽𣈱𨗴𣇈𥌓矅𢣷馤朂𤎜𤨡㬫槺𣟂杞杧杢𤇍𩃭柗䓩栢湐鈼栁𣏦𦶠桝"],["fd40","𣑯槡樋𨫟楳棃𣗍椁椀㴲㨁𣘼㮀枬楡𨩊䋼椶榘㮡𠏉荣傐槹𣙙𢄪橅𣜃檝㯳枱櫈𩆜㰍欝𠤣惞欵歴𢟍溵𣫛𠎵𡥘㝀吡𣭚毡𣻼毜氷𢒋𤣱𦭑汚舦汹𣶼䓅𣶽𤆤𤤌𤤀"],["fda1","𣳉㛥㳫𠴲鮃𣇹𢒑羏样𦴥𦶡𦷫涖浜湼漄𤥿𤂅𦹲蔳𦽴凇沜渝萮𨬡港𣸯瑓𣾂秌湏媑𣁋濸㜍澝𣸰滺𡒗𤀽䕕鏰潄潜㵎潴𩅰㴻澟𤅄濓𤂑𤅕𤀹𣿰𣾴𤄿凟𤅖𤅗𤅀𦇝灋灾炧炁烌烕烖烟䄄㷨熴熖𤉷焫煅媈煊煮岜𤍥煏鍢𤋁焬𤑚𤨧𤨢熺𨯨炽爎"],["fe40","鑂爕夑鑃爤鍁𥘅爮牀𤥴梽牕牗㹕𣁄栍漽犂猪猫𤠣𨠫䣭𨠄猨献珏玪𠰺𦨮珉瑉𤇢𡛧𤨤昣㛅𤦷𤦍𤧻珷琕椃𤨦琹𠗃㻗瑜𢢭瑠𨺲瑇珤瑶莹瑬㜰瑴鏱樬璂䥓𤪌"],["fea1","𤅟𤩹𨮏孆𨰃𡢞瓈𡦈甎瓩甞𨻙𡩋寗𨺬鎅畍畊畧畮𤾂㼄𤴓疎瑝疞疴瘂瘬癑癏癯癶𦏵皐臯㟸𦤑𦤎皡皥皷盌𦾟葢𥂝𥅽𡸜眞眦着撯𥈠睘𣊬瞯𨥤𨥨𡛁矴砉𡍶𤨒棊碯磇磓隥礮𥗠磗礴碱𧘌辸袄𨬫𦂃𢘜禆褀椂禀𥡗禝𧬹礼禩渪𧄦㺨秆𩄍秔"]]')},74488:e=>{"use strict";e.exports=JSON.parse('[["0","\\u0000",127,"€"],["8140","丂丄丅丆丏丒丗丟丠両丣並丩丮丯丱丳丵丷丼乀乁乂乄乆乊乑乕乗乚乛乢乣乤乥乧乨乪",5,"乲乴",9,"乿",6,"亇亊"],["8180","亐亖亗亙亜亝亞亣亪亯亰亱亴亶亷亸亹亼亽亾仈仌仏仐仒仚仛仜仠仢仦仧仩仭仮仯仱仴仸仹仺仼仾伀伂",6,"伋伌伒",4,"伜伝伡伣伨伩伬伭伮伱伳伵伷伹伻伾",4,"佄佅佇",5,"佒佔佖佡佢佦佨佪佫佭佮佱佲併佷佸佹佺佽侀侁侂侅來侇侊侌侎侐侒侓侕侖侘侙侚侜侞侟価侢"],["8240","侤侫侭侰",4,"侶",8,"俀俁係俆俇俈俉俋俌俍俒",4,"俙俛俠俢俤俥俧俫俬俰俲俴俵俶俷俹俻俼俽俿",11],["8280","個倎倐們倓倕倖倗倛倝倞倠倢倣値倧倫倯",10,"倻倽倿偀偁偂偄偅偆偉偊偋偍偐",4,"偖偗偘偙偛偝",7,"偦",5,"偭",8,"偸偹偺偼偽傁傂傃傄傆傇傉傊傋傌傎",20,"傤傦傪傫傭",4,"傳",6,"傼"],["8340","傽",17,"僐",5,"僗僘僙僛",10,"僨僩僪僫僯僰僱僲僴僶",4,"僼",9,"儈"],["8380","儉儊儌",5,"儓",13,"儢",28,"兂兇兊兌兎兏児兒兓兗兘兙兛兝",4,"兣兤兦內兩兪兯兲兺兾兿冃冄円冇冊冋冎冏冐冑冓冔冘冚冝冞冟冡冣冦",4,"冭冮冴冸冹冺冾冿凁凂凃凅凈凊凍凎凐凒",5],["8440","凘凙凚凜凞凟凢凣凥",5,"凬凮凱凲凴凷凾刄刅刉刋刌刏刐刓刔刕刜刞刟刡刢刣別刦刧刪刬刯刱刲刴刵刼刾剄",5,"剋剎剏剒剓剕剗剘"],["8480","剙剚剛剝剟剠剢剣剤剦剨剫剬剭剮剰剱剳",9,"剾劀劃",4,"劉",6,"劑劒劔",6,"劜劤劥劦劧劮劯劰労",9,"勀勁勂勄勅勆勈勊勌勍勎勏勑勓勔動勗務",5,"勠勡勢勣勥",10,"勱",7,"勻勼勽匁匂匃匄匇匉匊匋匌匎"],["8540","匑匒匓匔匘匛匜匞匟匢匤匥匧匨匩匫匬匭匯",9,"匼匽區卂卄卆卋卌卍卐協単卙卛卝卥卨卪卬卭卲卶卹卻卼卽卾厀厁厃厇厈厊厎厏"],["8580","厐",4,"厖厗厙厛厜厞厠厡厤厧厪厫厬厭厯",6,"厷厸厹厺厼厽厾叀參",4,"収叏叐叒叓叕叚叜叝叞叡叢叧叴叺叾叿吀吂吅吇吋吔吘吙吚吜吢吤吥吪吰吳吶吷吺吽吿呁呂呄呅呇呉呌呍呎呏呑呚呝",4,"呣呥呧呩",7,"呴呹呺呾呿咁咃咅咇咈咉咊咍咑咓咗咘咜咞咟咠咡"],["8640","咢咥咮咰咲咵咶咷咹咺咼咾哃哅哊哋哖哘哛哠",4,"哫哬哯哰哱哴",5,"哻哾唀唂唃唄唅唈唊",4,"唒唓唕",5,"唜唝唞唟唡唥唦"],["8680","唨唩唫唭唲唴唵唶唸唹唺唻唽啀啂啅啇啈啋",4,"啑啒啓啔啗",4,"啝啞啟啠啢啣啨啩啫啯",5,"啹啺啽啿喅喆喌喍喎喐喒喓喕喖喗喚喛喞喠",6,"喨",8,"喲喴営喸喺喼喿",4,"嗆嗇嗈嗊嗋嗎嗏嗐嗕嗗",4,"嗞嗠嗢嗧嗩嗭嗮嗰嗱嗴嗶嗸",4,"嗿嘂嘃嘄嘅"],["8740","嘆嘇嘊嘋嘍嘐",7,"嘙嘚嘜嘝嘠嘡嘢嘥嘦嘨嘩嘪嘫嘮嘯嘰嘳嘵嘷嘸嘺嘼嘽嘾噀",11,"噏",4,"噕噖噚噛噝",4],["8780","噣噥噦噧噭噮噯噰噲噳噴噵噷噸噹噺噽",7,"嚇",6,"嚐嚑嚒嚔",14,"嚤",10,"嚰",6,"嚸嚹嚺嚻嚽",12,"囋",8,"囕囖囘囙囜団囥",5,"囬囮囯囲図囶囷囸囻囼圀圁圂圅圇國",6],["8840","園",9,"圝圞圠圡圢圤圥圦圧圫圱圲圴",4,"圼圽圿坁坃坄坅坆坈坉坋坒",4,"坘坙坢坣坥坧坬坮坰坱坲坴坵坸坹坺坽坾坿垀"],["8880","垁垇垈垉垊垍",4,"垔",6,"垜垝垞垟垥垨垪垬垯垰垱垳垵垶垷垹",8,"埄",6,"埌埍埐埑埓埖埗埛埜埞埡埢埣埥",7,"埮埰埱埲埳埵埶執埻埼埾埿堁堃堄堅堈堉堊堌堎堏堐堒堓堔堖堗堘堚堛堜堝堟堢堣堥",4,"堫",4,"報堲堳場堶",7],["8940","堾",5,"塅",6,"塎塏塐塒塓塕塖塗塙",4,"塟",5,"塦",4,"塭",16,"塿墂墄墆墇墈墊墋墌"],["8980","墍",4,"墔",4,"墛墜墝墠",7,"墪",17,"墽墾墿壀壂壃壄壆",10,"壒壓壔壖",13,"壥",5,"壭壯壱売壴壵壷壸壺",7,"夃夅夆夈",4,"夎夐夑夒夓夗夘夛夝夞夠夡夢夣夦夨夬夰夲夳夵夶夻"],["8a40","夽夾夿奀奃奅奆奊奌奍奐奒奓奙奛",4,"奡奣奤奦",12,"奵奷奺奻奼奾奿妀妅妉妋妌妎妏妐妑妔妕妘妚妛妜妝妟妠妡妢妦"],["8a80","妧妬妭妰妱妳",5,"妺妼妽妿",6,"姇姈姉姌姍姎姏姕姖姙姛姞",4,"姤姦姧姩姪姫姭",11,"姺姼姽姾娀娂娊娋娍娎娏娐娒娔娕娖娗娙娚娛娝娞娡娢娤娦娧娨娪",6,"娳娵娷",4,"娽娾娿婁",4,"婇婈婋",9,"婖婗婘婙婛",5],["8b40","婡婣婤婥婦婨婩婫",8,"婸婹婻婼婽婾媀",17,"媓",6,"媜",13,"媫媬"],["8b80","媭",4,"媴媶媷媹",4,"媿嫀嫃",5,"嫊嫋嫍",4,"嫓嫕嫗嫙嫚嫛嫝嫞嫟嫢嫤嫥嫧嫨嫪嫬",4,"嫲",22,"嬊",11,"嬘",25,"嬳嬵嬶嬸",7,"孁",6],["8c40","孈",7,"孒孖孞孠孡孧孨孫孭孮孯孲孴孶孷學孹孻孼孾孿宂宆宊宍宎宐宑宒宔宖実宧宨宩宬宭宮宯宱宲宷宺宻宼寀寁寃寈寉寊寋寍寎寏"],["8c80","寑寔",8,"寠寢寣實寧審",4,"寯寱",6,"寽対尀専尃尅將專尋尌對導尐尒尓尗尙尛尞尟尠尡尣尦尨尩尪尫尭尮尯尰尲尳尵尶尷屃屄屆屇屌屍屒屓屔屖屗屘屚屛屜屝屟屢層屧",6,"屰屲",6,"屻屼屽屾岀岃",4,"岉岊岋岎岏岒岓岕岝",4,"岤",4],["8d40","岪岮岯岰岲岴岶岹岺岻岼岾峀峂峃峅",5,"峌",5,"峓",5,"峚",6,"峢峣峧峩峫峬峮峯峱",9,"峼",4],["8d80","崁崄崅崈",5,"崏",4,"崕崗崘崙崚崜崝崟",4,"崥崨崪崫崬崯",4,"崵",7,"崿",7,"嵈嵉嵍",10,"嵙嵚嵜嵞",10,"嵪嵭嵮嵰嵱嵲嵳嵵",12,"嶃",21,"嶚嶛嶜嶞嶟嶠"],["8e40","嶡",21,"嶸",12,"巆",6,"巎",12,"巜巟巠巣巤巪巬巭"],["8e80","巰巵巶巸",4,"巿帀帄帇帉帊帋帍帎帒帓帗帞",7,"帨",4,"帯帰帲",4,"帹帺帾帿幀幁幃幆",5,"幍",6,"幖",4,"幜幝幟幠幣",14,"幵幷幹幾庁庂広庅庈庉庌庍庎庒庘庛庝庡庢庣庤庨",4,"庮",4,"庴庺庻庼庽庿",6],["8f40","廆廇廈廋",5,"廔廕廗廘廙廚廜",11,"廩廫",8,"廵廸廹廻廼廽弅弆弇弉弌弍弎弐弒弔弖弙弚弜弝弞弡弢弣弤"],["8f80","弨弫弬弮弰弲",6,"弻弽弾弿彁",14,"彑彔彙彚彛彜彞彟彠彣彥彧彨彫彮彯彲彴彵彶彸彺彽彾彿徃徆徍徎徏徑従徔徖徚徛徝從徟徠徢",5,"復徫徬徯",5,"徶徸徹徺徻徾",4,"忇忈忊忋忎忓忔忕忚忛応忞忟忢忣忥忦忨忩忬忯忰忲忳忴忶忷忹忺忼怇"],["9040","怈怉怋怌怐怑怓怗怘怚怞怟怢怣怤怬怭怮怰",4,"怶",4,"怽怾恀恄",6,"恌恎恏恑恓恔恖恗恘恛恜恞恟恠恡恥恦恮恱恲恴恵恷恾悀"],["9080","悁悂悅悆悇悈悊悋悎悏悐悑悓悕悗悘悙悜悞悡悢悤悥悧悩悪悮悰悳悵悶悷悹悺悽",7,"惇惈惉惌",4,"惒惓惔惖惗惙惛惞惡",4,"惪惱惲惵惷惸惻",4,"愂愃愄愅愇愊愋愌愐",4,"愖愗愘愙愛愜愝愞愡愢愥愨愩愪愬",18,"慀",6],["9140","慇慉態慍慏慐慒慓慔慖",6,"慞慟慠慡慣慤慥慦慩",6,"慱慲慳慴慶慸",18,"憌憍憏",4,"憕"],["9180","憖",6,"憞",8,"憪憫憭",9,"憸",5,"憿懀懁懃",4,"應懌",4,"懓懕",16,"懧",13,"懶",8,"戀",5,"戇戉戓戔戙戜戝戞戠戣戦戧戨戩戫戭戯戰戱戲戵戶戸",4,"扂扄扅扆扊"],["9240","扏扐払扖扗扙扚扜",6,"扤扥扨扱扲扴扵扷扸扺扻扽抁抂抃抅抆抇抈抋",5,"抔抙抜抝択抣抦抧抩抪抭抮抯抰抲抳抴抶抷抸抺抾拀拁"],["9280","拃拋拏拑拕拝拞拠拡拤拪拫拰拲拵拸拹拺拻挀挃挄挅挆挊挋挌挍挏挐挒挓挔挕挗挘挙挜挦挧挩挬挭挮挰挱挳",5,"挻挼挾挿捀捁捄捇捈捊捑捒捓捔捖",7,"捠捤捥捦捨捪捫捬捯捰捲捳捴捵捸捹捼捽捾捿掁掃掄掅掆掋掍掑掓掔掕掗掙",6,"採掤掦掫掯掱掲掵掶掹掻掽掿揀"],["9340","揁揂揃揅揇揈揊揋揌揑揓揔揕揗",6,"揟揢揤",4,"揫揬揮揯揰揱揳揵揷揹揺揻揼揾搃搄搆",4,"損搎搑搒搕",5,"搝搟搢搣搤"],["9380","搥搧搨搩搫搮",5,"搵",4,"搻搼搾摀摂摃摉摋",6,"摓摕摖摗摙",4,"摟",7,"摨摪摫摬摮",9,"摻",6,"撃撆撈",8,"撓撔撗撘撚撛撜撝撟",4,"撥撦撧撨撪撫撯撱撲撳撴撶撹撻撽撾撿擁擃擄擆",6,"擏擑擓擔擕擖擙據"],["9440","擛擜擝擟擠擡擣擥擧",24,"攁",7,"攊",7,"攓",4,"攙",8],["9480","攢攣攤攦",4,"攬攭攰攱攲攳攷攺攼攽敀",4,"敆敇敊敋敍敎敐敒敓敔敗敘敚敜敟敠敡敤敥敧敨敩敪敭敮敯敱敳敵敶數",14,"斈斉斊斍斎斏斒斔斕斖斘斚斝斞斠斢斣斦斨斪斬斮斱",7,"斺斻斾斿旀旂旇旈旉旊旍旐旑旓旔旕旘",7,"旡旣旤旪旫"],["9540","旲旳旴旵旸旹旻",4,"昁昄昅昇昈昉昋昍昐昑昒昖昗昘昚昛昜昞昡昢昣昤昦昩昪昫昬昮昰昲昳昷",4,"昽昿晀時晄",6,"晍晎晐晑晘"],["9580","晙晛晜晝晞晠晢晣晥晧晩",4,"晱晲晳晵晸晹晻晼晽晿暀暁暃暅暆暈暉暊暋暍暎暏暐暒暓暔暕暘",4,"暞",8,"暩",4,"暯",4,"暵暶暷暸暺暻暼暽暿",25,"曚曞",7,"曧曨曪",5,"曱曵曶書曺曻曽朁朂會"],["9640","朄朅朆朇朌朎朏朑朒朓朖朘朙朚朜朞朠",5,"朧朩朮朰朲朳朶朷朸朹朻朼朾朿杁杄杅杇杊杋杍杒杔杕杗",4,"杝杢杣杤杦杧杫杬杮東杴杶"],["9680","杸杹杺杻杽枀枂枃枅枆枈枊枌枍枎枏枑枒枓枔枖枙枛枟枠枡枤枦枩枬枮枱枲枴枹",7,"柂柅",9,"柕柖柗柛柟柡柣柤柦柧柨柪柫柭柮柲柵",7,"柾栁栂栃栄栆栍栐栒栔栕栘",4,"栞栟栠栢",6,"栫",6,"栴栵栶栺栻栿桇桋桍桏桒桖",5],["9740","桜桝桞桟桪桬",7,"桵桸",8,"梂梄梇",7,"梐梑梒梔梕梖梘",9,"梣梤梥梩梪梫梬梮梱梲梴梶梷梸"],["9780","梹",6,"棁棃",5,"棊棌棎棏棐棑棓棔棖棗棙棛",4,"棡棢棤",9,"棯棲棳棴棶棷棸棻棽棾棿椀椂椃椄椆",4,"椌椏椑椓",11,"椡椢椣椥",7,"椮椯椱椲椳椵椶椷椸椺椻椼椾楀楁楃",16,"楕楖楘楙楛楜楟"],["9840","楡楢楤楥楧楨楩楪楬業楯楰楲",4,"楺楻楽楾楿榁榃榅榊榋榌榎",5,"榖榗榙榚榝",9,"榩榪榬榮榯榰榲榳榵榶榸榹榺榼榽"],["9880","榾榿槀槂",7,"構槍槏槑槒槓槕",5,"槜槝槞槡",11,"槮槯槰槱槳",9,"槾樀",9,"樋",11,"標",5,"樠樢",5,"権樫樬樭樮樰樲樳樴樶",6,"樿",4,"橅橆橈",7,"橑",6,"橚"],["9940","橜",4,"橢橣橤橦",10,"橲",6,"橺橻橽橾橿檁檂檃檅",8,"檏檒",4,"檘",7,"檡",5],["9980","檧檨檪檭",114,"欥欦欨",6],["9a40","欯欰欱欳欴欵欶欸欻欼欽欿歀歁歂歄歅歈歊歋歍",11,"歚",7,"歨歩歫",13,"歺歽歾歿殀殅殈"],["9a80","殌殎殏殐殑殔殕殗殘殙殜",4,"殢",7,"殫",7,"殶殸",6,"毀毃毄毆",4,"毌毎毐毑毘毚毜",4,"毢",7,"毬毭毮毰毱毲毴毶毷毸毺毻毼毾",6,"氈",4,"氎氒気氜氝氞氠氣氥氫氬氭氱氳氶氷氹氺氻氼氾氿汃汄汅汈汋",4,"汑汒汓汖汘"],["9b40","汙汚汢汣汥汦汧汫",4,"汱汳汵汷汸決汻汼汿沀沄沇沊沋沍沎沑沒沕沖沗沘沚沜沝沞沠沢沨沬沯沰沴沵沶沷沺泀況泂泃泆泇泈泋泍泎泏泑泒泘"],["9b80","泙泚泜泝泟泤泦泧泩泬泭泲泴泹泿洀洂洃洅洆洈洉洊洍洏洐洑洓洔洕洖洘洜洝洟",5,"洦洨洩洬洭洯洰洴洶洷洸洺洿浀浂浄浉浌浐浕浖浗浘浛浝浟浡浢浤浥浧浨浫浬浭浰浱浲浳浵浶浹浺浻浽",4,"涃涄涆涇涊涋涍涏涐涒涖",4,"涜涢涥涬涭涰涱涳涴涶涷涹",5,"淁淂淃淈淉淊"],["9c40","淍淎淏淐淒淓淔淕淗淚淛淜淟淢淣淥淧淨淩淪淭淯淰淲淴淵淶淸淺淽",7,"渆渇済渉渋渏渒渓渕渘渙減渜渞渟渢渦渧渨渪測渮渰渱渳渵"],["9c80","渶渷渹渻",7,"湅",7,"湏湐湑湒湕湗湙湚湜湝湞湠",10,"湬湭湯",14,"満溁溂溄溇溈溊",4,"溑",6,"溙溚溛溝溞溠溡溣溤溦溨溩溫溬溭溮溰溳溵溸溹溼溾溿滀滃滄滅滆滈滉滊滌滍滎滐滒滖滘滙滛滜滝滣滧滪",5],["9d40","滰滱滲滳滵滶滷滸滺",7,"漃漄漅漇漈漊",4,"漐漑漒漖",9,"漡漢漣漥漦漧漨漬漮漰漲漴漵漷",6,"漿潀潁潂"],["9d80","潃潄潅潈潉潊潌潎",9,"潙潚潛潝潟潠潡潣潤潥潧",5,"潯潰潱潳潵潶潷潹潻潽",6,"澅澆澇澊澋澏",12,"澝澞澟澠澢",4,"澨",10,"澴澵澷澸澺",5,"濁濃",5,"濊",6,"濓",10,"濟濢濣濤濥"],["9e40","濦",7,"濰",32,"瀒",7,"瀜",6,"瀤",6],["9e80","瀫",9,"瀶瀷瀸瀺",17,"灍灎灐",13,"灟",11,"灮灱灲灳灴灷灹灺灻災炁炂炃炄炆炇炈炋炌炍炏炐炑炓炗炘炚炛炞",12,"炰炲炴炵炶為炾炿烄烅烆烇烉烋",12,"烚"],["9f40","烜烝烞烠烡烢烣烥烪烮烰",6,"烸烺烻烼烾",10,"焋",4,"焑焒焔焗焛",10,"焧",7,"焲焳焴"],["9f80","焵焷",13,"煆煇煈煉煋煍煏",12,"煝煟",4,"煥煩",4,"煯煰煱煴煵煶煷煹煻煼煾",5,"熅",4,"熋熌熍熎熐熑熒熓熕熖熗熚",4,"熡",6,"熩熪熫熭",5,"熴熶熷熸熺",8,"燄",9,"燏",4],["a040","燖",9,"燡燢燣燤燦燨",5,"燯",9,"燺",11,"爇",19],["a080","爛爜爞",9,"爩爫爭爮爯爲爳爴爺爼爾牀",6,"牉牊牋牎牏牐牑牓牔牕牗牘牚牜牞牠牣牤牥牨牪牫牬牭牰牱牳牴牶牷牸牻牼牽犂犃犅",4,"犌犎犐犑犓",11,"犠",11,"犮犱犲犳犵犺",6,"狅狆狇狉狊狋狌狏狑狓狔狕狖狘狚狛"],["a1a1"," 、。·ˉˇ¨〃々—~‖…‘’“”〔〕〈",7,"〖〗【】±×÷∶∧∨∑∏∪∩∈∷√⊥∥∠⌒⊙∫∮≡≌≈∽∝≠≮≯≤≥∞∵∴♂♀°′″℃$¤¢£‰§№☆★○●◎◇◆□■△▲※→←↑↓〓"],["a2a1","ⅰ",9],["a2b1","⒈",19,"⑴",19,"①",9],["a2e5","㈠",9],["a2f1","Ⅰ",11],["a3a1","!"#¥%",88," ̄"],["a4a1","ぁ",82],["a5a1","ァ",85],["a6a1","Α",16,"Σ",6],["a6c1","α",16,"σ",6],["a6e0","︵︶︹︺︿﹀︽︾﹁﹂﹃﹄"],["a6ee","︻︼︷︸︱"],["a6f4","︳︴"],["a7a1","А",5,"ЁЖ",25],["a7d1","а",5,"ёж",25],["a840","ˊˋ˙–―‥‵℅℉↖↗↘↙∕∟∣≒≦≧⊿═",35,"▁",6],["a880","█",7,"▓▔▕▼▽◢◣◤◥☉⊕〒〝〞"],["a8a1","āáǎàēéěèīíǐìōóǒòūúǔùǖǘǚǜüêɑ"],["a8bd","ńň"],["a8c0","ɡ"],["a8c5","ㄅ",36],["a940","〡",8,"㊣㎎㎏㎜㎝㎞㎡㏄㏎㏑㏒㏕︰¬¦"],["a959","℡㈱"],["a95c","‐"],["a960","ー゛゜ヽヾ〆ゝゞ﹉",9,"﹔﹕﹖﹗﹙",8],["a980","﹢",4,"﹨﹩﹪﹫"],["a996","〇"],["a9a4","─",75],["aa40","狜狝狟狢",5,"狪狫狵狶狹狽狾狿猀猂猄",5,"猋猌猍猏猐猑猒猔猘猙猚猟猠猣猤猦猧猨猭猯猰猲猳猵猶猺猻猼猽獀",8],["aa80","獉獊獋獌獎獏獑獓獔獕獖獘",7,"獡",10,"獮獰獱"],["ab40","獲",11,"獿",4,"玅玆玈玊玌玍玏玐玒玓玔玕玗玘玙玚玜玝玞玠玡玣",5,"玪玬玭玱玴玵玶玸玹玼玽玾玿珁珃",4],["ab80","珋珌珎珒",6,"珚珛珜珝珟珡珢珣珤珦珨珪珫珬珮珯珰珱珳",4],["ac40","珸",10,"琄琇琈琋琌琍琎琑",8,"琜",5,"琣琤琧琩琫琭琯琱琲琷",4,"琽琾琿瑀瑂",11],["ac80","瑎",6,"瑖瑘瑝瑠",12,"瑮瑯瑱",4,"瑸瑹瑺"],["ad40","瑻瑼瑽瑿璂璄璅璆璈璉璊璌璍璏璑",10,"璝璟",7,"璪",15,"璻",12],["ad80","瓈",9,"瓓",8,"瓝瓟瓡瓥瓧",6,"瓰瓱瓲"],["ae40","瓳瓵瓸",6,"甀甁甂甃甅",7,"甎甐甒甔甕甖甗甛甝甞甠",4,"甦甧甪甮甴甶甹甼甽甿畁畂畃畄畆畇畉畊畍畐畑畒畓畕畖畗畘"],["ae80","畝",7,"畧畨畩畫",6,"畳畵當畷畺",4,"疀疁疂疄疅疇"],["af40","疈疉疊疌疍疎疐疓疕疘疛疜疞疢疦",4,"疭疶疷疺疻疿痀痁痆痋痌痎痏痐痑痓痗痙痚痜痝痟痠痡痥痩痬痭痮痯痲痳痵痶痷痸痺痻痽痾瘂瘄瘆瘇"],["af80","瘈瘉瘋瘍瘎瘏瘑瘒瘓瘔瘖瘚瘜瘝瘞瘡瘣瘧瘨瘬瘮瘯瘱瘲瘶瘷瘹瘺瘻瘽癁療癄"],["b040","癅",6,"癎",5,"癕癗",4,"癝癟癠癡癢癤",6,"癬癭癮癰",7,"癹発發癿皀皁皃皅皉皊皌皍皏皐皒皔皕皗皘皚皛"],["b080","皜",7,"皥",8,"皯皰皳皵",9,"盀盁盃啊阿埃挨哎唉哀皑癌蔼矮艾碍爱隘鞍氨安俺按暗岸胺案肮昂盎凹敖熬翱袄傲奥懊澳芭捌扒叭吧笆八疤巴拔跋靶把耙坝霸罢爸白柏百摆佰败拜稗斑班搬扳般颁板版扮拌伴瓣半办绊邦帮梆榜膀绑棒磅蚌镑傍谤苞胞包褒剥"],["b140","盄盇盉盋盌盓盕盙盚盜盝盞盠",4,"盦",7,"盰盳盵盶盷盺盻盽盿眀眂眃眅眆眊県眎",10,"眛眜眝眞眡眣眤眥眧眪眫"],["b180","眬眮眰",4,"眹眻眽眾眿睂睄睅睆睈",7,"睒",7,"睜薄雹保堡饱宝抱报暴豹鲍爆杯碑悲卑北辈背贝钡倍狈备惫焙被奔苯本笨崩绷甭泵蹦迸逼鼻比鄙笔彼碧蓖蔽毕毙毖币庇痹闭敝弊必辟壁臂避陛鞭边编贬扁便变卞辨辩辫遍标彪膘表鳖憋别瘪彬斌濒滨宾摈兵冰柄丙秉饼炳"],["b240","睝睞睟睠睤睧睩睪睭",11,"睺睻睼瞁瞂瞃瞆",5,"瞏瞐瞓",11,"瞡瞣瞤瞦瞨瞫瞭瞮瞯瞱瞲瞴瞶",4],["b280","瞼瞾矀",12,"矎",8,"矘矙矚矝",4,"矤病并玻菠播拨钵波博勃搏铂箔伯帛舶脖膊渤泊驳捕卜哺补埠不布步簿部怖擦猜裁材才财睬踩采彩菜蔡餐参蚕残惭惨灿苍舱仓沧藏操糙槽曹草厕策侧册测层蹭插叉茬茶查碴搽察岔差诧拆柴豺搀掺蝉馋谗缠铲产阐颤昌猖"],["b340","矦矨矪矯矰矱矲矴矵矷矹矺矻矼砃",5,"砊砋砎砏砐砓砕砙砛砞砠砡砢砤砨砪砫砮砯砱砲砳砵砶砽砿硁硂硃硄硆硈硉硊硋硍硏硑硓硔硘硙硚"],["b380","硛硜硞",11,"硯",7,"硸硹硺硻硽",6,"场尝常长偿肠厂敞畅唱倡超抄钞朝嘲潮巢吵炒车扯撤掣彻澈郴臣辰尘晨忱沉陈趁衬撑称城橙成呈乘程惩澄诚承逞骋秤吃痴持匙池迟弛驰耻齿侈尺赤翅斥炽充冲虫崇宠抽酬畴踌稠愁筹仇绸瞅丑臭初出橱厨躇锄雏滁除楚"],["b440","碄碅碆碈碊碋碏碐碒碔碕碖碙碝碞碠碢碤碦碨",7,"碵碶碷碸確碻碼碽碿磀磂磃磄磆磇磈磌磍磎磏磑磒磓磖磗磘磚",9],["b480","磤磥磦磧磩磪磫磭",4,"磳磵磶磸磹磻",5,"礂礃礄礆",6,"础储矗搐触处揣川穿椽传船喘串疮窗幢床闯创吹炊捶锤垂春椿醇唇淳纯蠢戳绰疵茨磁雌辞慈瓷词此刺赐次聪葱囱匆从丛凑粗醋簇促蹿篡窜摧崔催脆瘁粹淬翠村存寸磋撮搓措挫错搭达答瘩打大呆歹傣戴带殆代贷袋待逮"],["b540","礍",5,"礔",9,"礟",4,"礥",14,"礵",4,"礽礿祂祃祄祅祇祊",8,"祔祕祘祙祡祣"],["b580","祤祦祩祪祫祬祮祰",6,"祹祻",4,"禂禃禆禇禈禉禋禌禍禎禐禑禒怠耽担丹单郸掸胆旦氮但惮淡诞弹蛋当挡党荡档刀捣蹈倒岛祷导到稻悼道盗德得的蹬灯登等瞪凳邓堤低滴迪敌笛狄涤翟嫡抵底地蒂第帝弟递缔颠掂滇碘点典靛垫电佃甸店惦奠淀殿碉叼雕凋刁掉吊钓调跌爹碟蝶迭谍叠"],["b640","禓",6,"禛",11,"禨",10,"禴",4,"禼禿秂秄秅秇秈秊秌秎秏秐秓秔秖秗秙",5,"秠秡秢秥秨秪"],["b680","秬秮秱",6,"秹秺秼秾秿稁稄稅稇稈稉稊稌稏",4,"稕稖稘稙稛稜丁盯叮钉顶鼎锭定订丢东冬董懂动栋侗恫冻洞兜抖斗陡豆逗痘都督毒犊独读堵睹赌杜镀肚度渡妒端短锻段断缎堆兑队对墩吨蹲敦顿囤钝盾遁掇哆多夺垛躲朵跺舵剁惰堕蛾峨鹅俄额讹娥恶厄扼遏鄂饿恩而儿耳尔饵洱二"],["b740","稝稟稡稢稤",14,"稴稵稶稸稺稾穀",5,"穇",9,"穒",4,"穘",16],["b780","穩",6,"穱穲穳穵穻穼穽穾窂窅窇窉窊窋窌窎窏窐窓窔窙窚窛窞窡窢贰发罚筏伐乏阀法珐藩帆番翻樊矾钒繁凡烦反返范贩犯饭泛坊芳方肪房防妨仿访纺放菲非啡飞肥匪诽吠肺废沸费芬酚吩氛分纷坟焚汾粉奋份忿愤粪丰封枫蜂峰锋风疯烽逢冯缝讽奉凤佛否夫敷肤孵扶拂辐幅氟符伏俘服"],["b840","窣窤窧窩窪窫窮",4,"窴",10,"竀",10,"竌",9,"竗竘竚竛竜竝竡竢竤竧",5,"竮竰竱竲竳"],["b880","竴",4,"竻竼竾笀笁笂笅笇笉笌笍笎笐笒笓笖笗笘笚笜笝笟笡笢笣笧笩笭浮涪福袱弗甫抚辅俯釜斧脯腑府腐赴副覆赋复傅付阜父腹负富讣附妇缚咐噶嘎该改概钙盖溉干甘杆柑竿肝赶感秆敢赣冈刚钢缸肛纲岗港杠篙皋高膏羔糕搞镐稿告哥歌搁戈鸽胳疙割革葛格蛤阁隔铬个各给根跟耕更庚羹"],["b940","笯笰笲笴笵笶笷笹笻笽笿",5,"筆筈筊筍筎筓筕筗筙筜筞筟筡筣",10,"筯筰筳筴筶筸筺筼筽筿箁箂箃箄箆",6,"箎箏"],["b980","箑箒箓箖箘箙箚箛箞箟箠箣箤箥箮箯箰箲箳箵箶箷箹",7,"篂篃範埂耿梗工攻功恭龚供躬公宫弓巩汞拱贡共钩勾沟苟狗垢构购够辜菇咕箍估沽孤姑鼓古蛊骨谷股故顾固雇刮瓜剐寡挂褂乖拐怪棺关官冠观管馆罐惯灌贯光广逛瑰规圭硅归龟闺轨鬼诡癸桂柜跪贵刽辊滚棍锅郭国果裹过哈"],["ba40","篅篈築篊篋篍篎篏篐篒篔",4,"篛篜篞篟篠篢篣篤篧篨篩篫篬篭篯篰篲",4,"篸篹篺篻篽篿",7,"簈簉簊簍簎簐",5,"簗簘簙"],["ba80","簚",4,"簠",5,"簨簩簫",12,"簹",5,"籂骸孩海氦亥害骇酣憨邯韩含涵寒函喊罕翰撼捍旱憾悍焊汗汉夯杭航壕嚎豪毫郝好耗号浩呵喝荷菏核禾和何合盒貉阂河涸赫褐鹤贺嘿黑痕很狠恨哼亨横衡恒轰哄烘虹鸿洪宏弘红喉侯猴吼厚候后呼乎忽瑚壶葫胡蝴狐糊湖"],["bb40","籃",9,"籎",36,"籵",5,"籾",9],["bb80","粈粊",6,"粓粔粖粙粚粛粠粡粣粦粧粨粩粫粬粭粯粰粴",4,"粺粻弧虎唬护互沪户花哗华猾滑画划化话槐徊怀淮坏欢环桓还缓换患唤痪豢焕涣宦幻荒慌黄磺蝗簧皇凰惶煌晃幌恍谎灰挥辉徽恢蛔回毁悔慧卉惠晦贿秽会烩汇讳诲绘荤昏婚魂浑混豁活伙火获或惑霍货祸击圾基机畸稽积箕"],["bc40","粿糀糂糃糄糆糉糋糎",6,"糘糚糛糝糞糡",6,"糩",5,"糰",7,"糹糺糼",13,"紋",5],["bc80","紑",14,"紡紣紤紥紦紨紩紪紬紭紮細",6,"肌饥迹激讥鸡姬绩缉吉极棘辑籍集及急疾汲即嫉级挤几脊己蓟技冀季伎祭剂悸济寄寂计记既忌际妓继纪嘉枷夹佳家加荚颊贾甲钾假稼价架驾嫁歼监坚尖笺间煎兼肩艰奸缄茧检柬碱硷拣捡简俭剪减荐槛鉴践贱见键箭件"],["bd40","紷",54,"絯",7],["bd80","絸",32,"健舰剑饯渐溅涧建僵姜将浆江疆蒋桨奖讲匠酱降蕉椒礁焦胶交郊浇骄娇嚼搅铰矫侥脚狡角饺缴绞剿教酵轿较叫窖揭接皆秸街阶截劫节桔杰捷睫竭洁结解姐戒藉芥界借介疥诫届巾筋斤金今津襟紧锦仅谨进靳晋禁近烬浸"],["be40","継",12,"綧",6,"綯",42],["be80","線",32,"尽劲荆兢茎睛晶鲸京惊精粳经井警景颈静境敬镜径痉靖竟竞净炯窘揪究纠玖韭久灸九酒厩救旧臼舅咎就疚鞠拘狙疽居驹菊局咀矩举沮聚拒据巨具距踞锯俱句惧炬剧捐鹃娟倦眷卷绢撅攫抉掘倔爵觉决诀绝均菌钧军君峻"],["bf40","緻",62],["bf80","縺縼",4,"繂",4,"繈",21,"俊竣浚郡骏喀咖卡咯开揩楷凯慨刊堪勘坎砍看康慷糠扛抗亢炕考拷烤靠坷苛柯棵磕颗科壳咳可渴克刻客课肯啃垦恳坑吭空恐孔控抠口扣寇枯哭窟苦酷库裤夸垮挎跨胯块筷侩快宽款匡筐狂框矿眶旷况亏盔岿窥葵奎魁傀"],["c040","繞",35,"纃",23,"纜纝纞"],["c080","纮纴纻纼绖绤绬绹缊缐缞缷缹缻",6,"罃罆",9,"罒罓馈愧溃坤昆捆困括扩廓阔垃拉喇蜡腊辣啦莱来赖蓝婪栏拦篮阑兰澜谰揽览懒缆烂滥琅榔狼廊郎朗浪捞劳牢老佬姥酪烙涝勒乐雷镭蕾磊累儡垒擂肋类泪棱楞冷厘梨犁黎篱狸离漓理李里鲤礼莉荔吏栗丽厉励砾历利傈例俐"],["c140","罖罙罛罜罝罞罠罣",4,"罫罬罭罯罰罳罵罶罷罸罺罻罼罽罿羀羂",7,"羋羍羏",4,"羕",4,"羛羜羠羢羣羥羦羨",6,"羱"],["c180","羳",4,"羺羻羾翀翂翃翄翆翇翈翉翋翍翏",4,"翖翗翙",5,"翢翣痢立粒沥隶力璃哩俩联莲连镰廉怜涟帘敛脸链恋炼练粮凉梁粱良两辆量晾亮谅撩聊僚疗燎寥辽潦了撂镣廖料列裂烈劣猎琳林磷霖临邻鳞淋凛赁吝拎玲菱零龄铃伶羚凌灵陵岭领另令溜琉榴硫馏留刘瘤流柳六龙聋咙笼窿"],["c240","翤翧翨翪翫翬翭翯翲翴",6,"翽翾翿耂耇耈耉耊耎耏耑耓耚耛耝耞耟耡耣耤耫",5,"耲耴耹耺耼耾聀聁聄聅聇聈聉聎聏聐聑聓聕聖聗"],["c280","聙聛",13,"聫",5,"聲",11,"隆垄拢陇楼娄搂篓漏陋芦卢颅庐炉掳卤虏鲁麓碌露路赂鹿潞禄录陆戮驴吕铝侣旅履屡缕虑氯律率滤绿峦挛孪滦卵乱掠略抡轮伦仑沦纶论萝螺罗逻锣箩骡裸落洛骆络妈麻玛码蚂马骂嘛吗埋买麦卖迈脉瞒馒蛮满蔓曼慢漫"],["c340","聾肁肂肅肈肊肍",5,"肔肕肗肙肞肣肦肧肨肬肰肳肵肶肸肹肻胅胇",4,"胏",6,"胘胟胠胢胣胦胮胵胷胹胻胾胿脀脁脃脄脅脇脈脋"],["c380","脌脕脗脙脛脜脝脟",12,"脭脮脰脳脴脵脷脹",4,"脿谩芒茫盲氓忙莽猫茅锚毛矛铆卯茂冒帽貌贸么玫枚梅酶霉煤没眉媒镁每美昧寐妹媚门闷们萌蒙檬盟锰猛梦孟眯醚靡糜迷谜弥米秘觅泌蜜密幂棉眠绵冕免勉娩缅面苗描瞄藐秒渺庙妙蔑灭民抿皿敏悯闽明螟鸣铭名命谬摸"],["c440","腀",5,"腇腉腍腎腏腒腖腗腘腛",4,"腡腢腣腤腦腨腪腫腬腯腲腳腵腶腷腸膁膃",4,"膉膋膌膍膎膐膒",5,"膙膚膞",4,"膤膥"],["c480","膧膩膫",7,"膴",5,"膼膽膾膿臄臅臇臈臉臋臍",6,"摹蘑模膜磨摩魔抹末莫墨默沫漠寞陌谋牟某拇牡亩姆母墓暮幕募慕木目睦牧穆拿哪呐钠那娜纳氖乃奶耐奈南男难囊挠脑恼闹淖呢馁内嫩能妮霓倪泥尼拟你匿腻逆溺蔫拈年碾撵捻念娘酿鸟尿捏聂孽啮镊镍涅您柠狞凝宁"],["c540","臔",14,"臤臥臦臨臩臫臮",4,"臵",5,"臽臿舃與",4,"舎舏舑舓舕",5,"舝舠舤舥舦舧舩舮舲舺舼舽舿"],["c580","艀艁艂艃艅艆艈艊艌艍艎艐",7,"艙艛艜艝艞艠",7,"艩拧泞牛扭钮纽脓浓农弄奴努怒女暖虐疟挪懦糯诺哦欧鸥殴藕呕偶沤啪趴爬帕怕琶拍排牌徘湃派攀潘盘磐盼畔判叛乓庞旁耪胖抛咆刨炮袍跑泡呸胚培裴赔陪配佩沛喷盆砰抨烹澎彭蓬棚硼篷膨朋鹏捧碰坯砒霹批披劈琵毗"],["c640","艪艫艬艭艱艵艶艷艸艻艼芀芁芃芅芆芇芉芌芐芓芔芕芖芚芛芞芠芢芣芧芲芵芶芺芻芼芿苀苂苃苅苆苉苐苖苙苚苝苢苧苨苩苪苬苭苮苰苲苳苵苶苸"],["c680","苺苼",4,"茊茋茍茐茒茓茖茘茙茝",9,"茩茪茮茰茲茷茻茽啤脾疲皮匹痞僻屁譬篇偏片骗飘漂瓢票撇瞥拼频贫品聘乒坪苹萍平凭瓶评屏坡泼颇婆破魄迫粕剖扑铺仆莆葡菩蒲埔朴圃普浦谱曝瀑期欺栖戚妻七凄漆柒沏其棋奇歧畦崎脐齐旗祈祁骑起岂乞企启契砌器气迄弃汽泣讫掐"],["c740","茾茿荁荂荄荅荈荊",4,"荓荕",4,"荝荢荰",6,"荹荺荾",6,"莇莈莊莋莌莍莏莐莑莔莕莖莗莙莚莝莟莡",6,"莬莭莮"],["c780","莯莵莻莾莿菂菃菄菆菈菉菋菍菎菐菑菒菓菕菗菙菚菛菞菢菣菤菦菧菨菫菬菭恰洽牵扦钎铅千迁签仟谦乾黔钱钳前潜遣浅谴堑嵌欠歉枪呛腔羌墙蔷强抢橇锹敲悄桥瞧乔侨巧鞘撬翘峭俏窍切茄且怯窃钦侵亲秦琴勤芹擒禽寝沁青轻氢倾卿清擎晴氰情顷请庆琼穷秋丘邱球求囚酋泅趋区蛆曲躯屈驱渠"],["c840","菮華菳",4,"菺菻菼菾菿萀萂萅萇萈萉萊萐萒",5,"萙萚萛萞",5,"萩",7,"萲",5,"萹萺萻萾",7,"葇葈葉"],["c880","葊",6,"葒",4,"葘葝葞葟葠葢葤",4,"葪葮葯葰葲葴葷葹葻葼取娶龋趣去圈颧权醛泉全痊拳犬券劝缺炔瘸却鹊榷确雀裙群然燃冉染瓤壤攘嚷让饶扰绕惹热壬仁人忍韧任认刃妊纫扔仍日戎茸蓉荣融熔溶容绒冗揉柔肉茹蠕儒孺如辱乳汝入褥软阮蕊瑞锐闰润若弱撒洒萨腮鳃塞赛三叁"],["c940","葽",4,"蒃蒄蒅蒆蒊蒍蒏",7,"蒘蒚蒛蒝蒞蒟蒠蒢",12,"蒰蒱蒳蒵蒶蒷蒻蒼蒾蓀蓂蓃蓅蓆蓇蓈蓋蓌蓎蓏蓒蓔蓕蓗"],["c980","蓘",4,"蓞蓡蓢蓤蓧",4,"蓭蓮蓯蓱",10,"蓽蓾蔀蔁蔂伞散桑嗓丧搔骚扫嫂瑟色涩森僧莎砂杀刹沙纱傻啥煞筛晒珊苫杉山删煽衫闪陕擅赡膳善汕扇缮墒伤商赏晌上尚裳梢捎稍烧芍勺韶少哨邵绍奢赊蛇舌舍赦摄射慑涉社设砷申呻伸身深娠绅神沈审婶甚肾慎渗声生甥牲升绳"],["ca40","蔃",8,"蔍蔎蔏蔐蔒蔔蔕蔖蔘蔙蔛蔜蔝蔞蔠蔢",8,"蔭",9,"蔾",4,"蕄蕅蕆蕇蕋",10],["ca80","蕗蕘蕚蕛蕜蕝蕟",4,"蕥蕦蕧蕩",8,"蕳蕵蕶蕷蕸蕼蕽蕿薀薁省盛剩胜圣师失狮施湿诗尸虱十石拾时什食蚀实识史矢使屎驶始式示士世柿事拭誓逝势是嗜噬适仕侍释饰氏市恃室视试收手首守寿授售受瘦兽蔬枢梳殊抒输叔舒淑疏书赎孰熟薯暑曙署蜀黍鼠属术述树束戍竖墅庶数漱"],["cb40","薂薃薆薈",6,"薐",10,"薝",6,"薥薦薧薩薫薬薭薱",5,"薸薺",6,"藂",6,"藊",4,"藑藒"],["cb80","藔藖",5,"藝",6,"藥藦藧藨藪",14,"恕刷耍摔衰甩帅栓拴霜双爽谁水睡税吮瞬顺舜说硕朔烁斯撕嘶思私司丝死肆寺嗣四伺似饲巳松耸怂颂送宋讼诵搜艘擞嗽苏酥俗素速粟僳塑溯宿诉肃酸蒜算虽隋随绥髓碎岁穗遂隧祟孙损笋蓑梭唆缩琐索锁所塌他它她塔"],["cc40","藹藺藼藽藾蘀",4,"蘆",10,"蘒蘓蘔蘕蘗",15,"蘨蘪",13,"蘹蘺蘻蘽蘾蘿虀"],["cc80","虁",11,"虒虓處",4,"虛虜虝號虠虡虣",7,"獭挞蹋踏胎苔抬台泰酞太态汰坍摊贪瘫滩坛檀痰潭谭谈坦毯袒碳探叹炭汤塘搪堂棠膛唐糖倘躺淌趟烫掏涛滔绦萄桃逃淘陶讨套特藤腾疼誊梯剔踢锑提题蹄啼体替嚏惕涕剃屉天添填田甜恬舔腆挑条迢眺跳贴铁帖厅听烃"],["cd40","虭虯虰虲",6,"蚃",6,"蚎",4,"蚔蚖",5,"蚞",4,"蚥蚦蚫蚭蚮蚲蚳蚷蚸蚹蚻",4,"蛁蛂蛃蛅蛈蛌蛍蛒蛓蛕蛖蛗蛚蛜"],["cd80","蛝蛠蛡蛢蛣蛥蛦蛧蛨蛪蛫蛬蛯蛵蛶蛷蛺蛻蛼蛽蛿蜁蜄蜅蜆蜋蜌蜎蜏蜐蜑蜔蜖汀廷停亭庭挺艇通桐酮瞳同铜彤童桶捅筒统痛偷投头透凸秃突图徒途涂屠土吐兔湍团推颓腿蜕褪退吞屯臀拖托脱鸵陀驮驼椭妥拓唾挖哇蛙洼娃瓦袜歪外豌弯湾玩顽丸烷完碗挽晚皖惋宛婉万腕汪王亡枉网往旺望忘妄威"],["ce40","蜙蜛蜝蜟蜠蜤蜦蜧蜨蜪蜫蜬蜭蜯蜰蜲蜳蜵蜶蜸蜹蜺蜼蜽蝀",6,"蝊蝋蝍蝏蝐蝑蝒蝔蝕蝖蝘蝚",5,"蝡蝢蝦",7,"蝯蝱蝲蝳蝵"],["ce80","蝷蝸蝹蝺蝿螀螁螄螆螇螉螊螌螎",4,"螔螕螖螘",6,"螠",4,"巍微危韦违桅围唯惟为潍维苇萎委伟伪尾纬未蔚味畏胃喂魏位渭谓尉慰卫瘟温蚊文闻纹吻稳紊问嗡翁瓮挝蜗涡窝我斡卧握沃巫呜钨乌污诬屋无芜梧吾吴毋武五捂午舞伍侮坞戊雾晤物勿务悟误昔熙析西硒矽晰嘻吸锡牺"],["cf40","螥螦螧螩螪螮螰螱螲螴螶螷螸螹螻螼螾螿蟁",4,"蟇蟈蟉蟌",4,"蟔",6,"蟜蟝蟞蟟蟡蟢蟣蟤蟦蟧蟨蟩蟫蟬蟭蟯",9],["cf80","蟺蟻蟼蟽蟿蠀蠁蠂蠄",5,"蠋",7,"蠔蠗蠘蠙蠚蠜",4,"蠣稀息希悉膝夕惜熄烯溪汐犀檄袭席习媳喜铣洗系隙戏细瞎虾匣霞辖暇峡侠狭下厦夏吓掀锨先仙鲜纤咸贤衔舷闲涎弦嫌显险现献县腺馅羡宪陷限线相厢镶香箱襄湘乡翔祥详想响享项巷橡像向象萧硝霄削哮嚣销消宵淆晓"],["d040","蠤",13,"蠳",5,"蠺蠻蠽蠾蠿衁衂衃衆",5,"衎",5,"衕衖衘衚",6,"衦衧衪衭衯衱衳衴衵衶衸衹衺"],["d080","衻衼袀袃袆袇袉袊袌袎袏袐袑袓袔袕袗",4,"袝",4,"袣袥",5,"小孝校肖啸笑效楔些歇蝎鞋协挟携邪斜胁谐写械卸蟹懈泄泻谢屑薪芯锌欣辛新忻心信衅星腥猩惺兴刑型形邢行醒幸杏性姓兄凶胸匈汹雄熊休修羞朽嗅锈秀袖绣墟戌需虚嘘须徐许蓄酗叙旭序畜恤絮婿绪续轩喧宣悬旋玄"],["d140","袬袮袯袰袲",4,"袸袹袺袻袽袾袿裀裃裄裇裈裊裋裌裍裏裐裑裓裖裗裚",4,"裠裡裦裧裩",6,"裲裵裶裷裺裻製裿褀褁褃",5],["d180","褉褋",4,"褑褔",4,"褜",4,"褢褣褤褦褧褨褩褬褭褮褯褱褲褳褵褷选癣眩绚靴薛学穴雪血勋熏循旬询寻驯巡殉汛训讯逊迅压押鸦鸭呀丫芽牙蚜崖衙涯雅哑亚讶焉咽阉烟淹盐严研蜒岩延言颜阎炎沿奄掩眼衍演艳堰燕厌砚雁唁彦焰宴谚验殃央鸯秧杨扬佯疡羊洋阳氧仰痒养样漾邀腰妖瑶"],["d240","褸",8,"襂襃襅",24,"襠",5,"襧",19,"襼"],["d280","襽襾覀覂覄覅覇",26,"摇尧遥窑谣姚咬舀药要耀椰噎耶爷野冶也页掖业叶曳腋夜液一壹医揖铱依伊衣颐夷遗移仪胰疑沂宜姨彝椅蚁倚已乙矣以艺抑易邑屹亿役臆逸肄疫亦裔意毅忆义益溢诣议谊译异翼翌绎茵荫因殷音阴姻吟银淫寅饮尹引隐"],["d340","覢",30,"觃觍觓觔觕觗觘觙觛觝觟觠觡觢觤觧觨觩觪觬觭觮觰觱觲觴",6],["d380","觻",4,"訁",5,"計",21,"印英樱婴鹰应缨莹萤营荧蝇迎赢盈影颖硬映哟拥佣臃痈庸雍踊蛹咏泳涌永恿勇用幽优悠忧尤由邮铀犹油游酉有友右佑釉诱又幼迂淤于盂榆虞愚舆余俞逾鱼愉渝渔隅予娱雨与屿禹宇语羽玉域芋郁吁遇喻峪御愈欲狱育誉"],["d440","訞",31,"訿",8,"詉",21],["d480","詟",25,"詺",6,"浴寓裕预豫驭鸳渊冤元垣袁原援辕园员圆猿源缘远苑愿怨院曰约越跃钥岳粤月悦阅耘云郧匀陨允运蕴酝晕韵孕匝砸杂栽哉灾宰载再在咱攒暂赞赃脏葬遭糟凿藻枣早澡蚤躁噪造皂灶燥责择则泽贼怎增憎曾赠扎喳渣札轧"],["d540","誁",7,"誋",7,"誔",46],["d580","諃",32,"铡闸眨栅榨咋乍炸诈摘斋宅窄债寨瞻毡詹粘沾盏斩辗崭展蘸栈占战站湛绽樟章彰漳张掌涨杖丈帐账仗胀瘴障招昭找沼赵照罩兆肇召遮折哲蛰辙者锗蔗这浙珍斟真甄砧臻贞针侦枕疹诊震振镇阵蒸挣睁征狰争怔整拯正政"],["d640","諤",34,"謈",27],["d680","謤謥謧",30,"帧症郑证芝枝支吱蜘知肢脂汁之织职直植殖执值侄址指止趾只旨纸志挚掷至致置帜峙制智秩稚质炙痔滞治窒中盅忠钟衷终种肿重仲众舟周州洲诌粥轴肘帚咒皱宙昼骤珠株蛛朱猪诸诛逐竹烛煮拄瞩嘱主著柱助蛀贮铸筑"],["d740","譆",31,"譧",4,"譭",25],["d780","讇",24,"讬讱讻诇诐诪谉谞住注祝驻抓爪拽专砖转撰赚篆桩庄装妆撞壮状椎锥追赘坠缀谆准捉拙卓桌琢茁酌啄着灼浊兹咨资姿滋淄孜紫仔籽滓子自渍字鬃棕踪宗综总纵邹走奏揍租足卒族祖诅阻组钻纂嘴醉最罪尊遵昨左佐柞做作坐座"],["d840","谸",8,"豂豃豄豅豈豊豋豍",7,"豖豗豘豙豛",5,"豣",6,"豬",6,"豴豵豶豷豻",6,"貃貄貆貇"],["d880","貈貋貍",6,"貕貖貗貙",20,"亍丌兀丐廿卅丕亘丞鬲孬噩丨禺丿匕乇夭爻卮氐囟胤馗毓睾鼗丶亟鼐乜乩亓芈孛啬嘏仄厍厝厣厥厮靥赝匚叵匦匮匾赜卦卣刂刈刎刭刳刿剀剌剞剡剜蒯剽劂劁劐劓冂罔亻仃仉仂仨仡仫仞伛仳伢佤仵伥伧伉伫佞佧攸佚佝"],["d940","貮",62],["d980","賭",32,"佟佗伲伽佶佴侑侉侃侏佾佻侪佼侬侔俦俨俪俅俚俣俜俑俟俸倩偌俳倬倏倮倭俾倜倌倥倨偾偃偕偈偎偬偻傥傧傩傺僖儆僭僬僦僮儇儋仝氽佘佥俎龠汆籴兮巽黉馘冁夔勹匍訇匐凫夙兕亠兖亳衮袤亵脔裒禀嬴蠃羸冫冱冽冼"],["da40","贎",14,"贠赑赒赗赟赥赨赩赪赬赮赯赱赲赸",8,"趂趃趆趇趈趉趌",4,"趒趓趕",9,"趠趡"],["da80","趢趤",12,"趲趶趷趹趻趽跀跁跂跅跇跈跉跊跍跐跒跓跔凇冖冢冥讠讦讧讪讴讵讷诂诃诋诏诎诒诓诔诖诘诙诜诟诠诤诨诩诮诰诳诶诹诼诿谀谂谄谇谌谏谑谒谔谕谖谙谛谘谝谟谠谡谥谧谪谫谮谯谲谳谵谶卩卺阝阢阡阱阪阽阼陂陉陔陟陧陬陲陴隈隍隗隰邗邛邝邙邬邡邴邳邶邺"],["db40","跕跘跙跜跠跡跢跥跦跧跩跭跮跰跱跲跴跶跼跾",6,"踆踇踈踋踍踎踐踑踒踓踕",7,"踠踡踤",4,"踫踭踰踲踳踴踶踷踸踻踼踾"],["db80","踿蹃蹅蹆蹌",4,"蹓",5,"蹚",11,"蹧蹨蹪蹫蹮蹱邸邰郏郅邾郐郄郇郓郦郢郜郗郛郫郯郾鄄鄢鄞鄣鄱鄯鄹酃酆刍奂劢劬劭劾哿勐勖勰叟燮矍廴凵凼鬯厶弁畚巯坌垩垡塾墼壅壑圩圬圪圳圹圮圯坜圻坂坩垅坫垆坼坻坨坭坶坳垭垤垌垲埏垧垴垓垠埕埘埚埙埒垸埴埯埸埤埝"],["dc40","蹳蹵蹷",4,"蹽蹾躀躂躃躄躆躈",6,"躑躒躓躕",6,"躝躟",11,"躭躮躰躱躳",6,"躻",7],["dc80","軃",10,"軏",21,"堋堍埽埭堀堞堙塄堠塥塬墁墉墚墀馨鼙懿艹艽艿芏芊芨芄芎芑芗芙芫芸芾芰苈苊苣芘芷芮苋苌苁芩芴芡芪芟苄苎芤苡茉苷苤茏茇苜苴苒苘茌苻苓茑茚茆茔茕苠苕茜荑荛荜茈莒茼茴茱莛荞茯荏荇荃荟荀茗荠茭茺茳荦荥"],["dd40","軥",62],["dd80","輤",32,"荨茛荩荬荪荭荮莰荸莳莴莠莪莓莜莅荼莶莩荽莸荻莘莞莨莺莼菁萁菥菘堇萘萋菝菽菖萜萸萑萆菔菟萏萃菸菹菪菅菀萦菰菡葜葑葚葙葳蒇蒈葺蒉葸萼葆葩葶蒌蒎萱葭蓁蓍蓐蓦蒽蓓蓊蒿蒺蓠蒡蒹蒴蒗蓥蓣蔌甍蔸蓰蔹蔟蔺"],["de40","轅",32,"轪辀辌辒辝辠辡辢辤辥辦辧辪辬辭辮辯農辳辴辵辷辸辺辻込辿迀迃迆"],["de80","迉",4,"迏迒迖迗迚迠迡迣迧迬迯迱迲迴迵迶迺迻迼迾迿逇逈逌逎逓逕逘蕖蔻蓿蓼蕙蕈蕨蕤蕞蕺瞢蕃蕲蕻薤薨薇薏蕹薮薜薅薹薷薰藓藁藜藿蘧蘅蘩蘖蘼廾弈夼奁耷奕奚奘匏尢尥尬尴扌扪抟抻拊拚拗拮挢拶挹捋捃掭揶捱捺掎掴捭掬掊捩掮掼揲揸揠揿揄揞揎摒揆掾摅摁搋搛搠搌搦搡摞撄摭撖"],["df40","這逜連逤逥逧",5,"逰",4,"逷逹逺逽逿遀遃遅遆遈",4,"過達違遖遙遚遜",5,"遤遦遧適遪遫遬遯",4,"遶",6,"遾邁"],["df80","還邅邆邇邉邊邌",4,"邒邔邖邘邚邜邞邟邠邤邥邧邨邩邫邭邲邷邼邽邿郀摺撷撸撙撺擀擐擗擤擢攉攥攮弋忒甙弑卟叱叽叩叨叻吒吖吆呋呒呓呔呖呃吡呗呙吣吲咂咔呷呱呤咚咛咄呶呦咝哐咭哂咴哒咧咦哓哔呲咣哕咻咿哌哙哚哜咩咪咤哝哏哞唛哧唠哽唔哳唢唣唏唑唧唪啧喏喵啉啭啁啕唿啐唼"],["e040","郂郃郆郈郉郋郌郍郒郔郕郖郘郙郚郞郟郠郣郤郥郩郪郬郮郰郱郲郳郵郶郷郹郺郻郼郿鄀鄁鄃鄅",19,"鄚鄛鄜"],["e080","鄝鄟鄠鄡鄤",10,"鄰鄲",6,"鄺",8,"酄唷啖啵啶啷唳唰啜喋嗒喃喱喹喈喁喟啾嗖喑啻嗟喽喾喔喙嗪嗷嗉嘟嗑嗫嗬嗔嗦嗝嗄嗯嗥嗲嗳嗌嗍嗨嗵嗤辔嘞嘈嘌嘁嘤嘣嗾嘀嘧嘭噘嘹噗嘬噍噢噙噜噌噔嚆噤噱噫噻噼嚅嚓嚯囔囗囝囡囵囫囹囿圄圊圉圜帏帙帔帑帱帻帼"],["e140","酅酇酈酑酓酔酕酖酘酙酛酜酟酠酦酧酨酫酭酳酺酻酼醀",4,"醆醈醊醎醏醓",6,"醜",5,"醤",5,"醫醬醰醱醲醳醶醷醸醹醻"],["e180","醼",10,"釈釋釐釒",9,"針",8,"帷幄幔幛幞幡岌屺岍岐岖岈岘岙岑岚岜岵岢岽岬岫岱岣峁岷峄峒峤峋峥崂崃崧崦崮崤崞崆崛嵘崾崴崽嵬嵛嵯嵝嵫嵋嵊嵩嵴嶂嶙嶝豳嶷巅彳彷徂徇徉後徕徙徜徨徭徵徼衢彡犭犰犴犷犸狃狁狎狍狒狨狯狩狲狴狷猁狳猃狺"],["e240","釦",62],["e280","鈥",32,"狻猗猓猡猊猞猝猕猢猹猥猬猸猱獐獍獗獠獬獯獾舛夥飧夤夂饣饧",5,"饴饷饽馀馄馇馊馍馐馑馓馔馕庀庑庋庖庥庠庹庵庾庳赓廒廑廛廨廪膺忄忉忖忏怃忮怄忡忤忾怅怆忪忭忸怙怵怦怛怏怍怩怫怊怿怡恸恹恻恺恂"],["e340","鉆",45,"鉵",16],["e380","銆",7,"銏",24,"恪恽悖悚悭悝悃悒悌悛惬悻悱惝惘惆惚悴愠愦愕愣惴愀愎愫慊慵憬憔憧憷懔懵忝隳闩闫闱闳闵闶闼闾阃阄阆阈阊阋阌阍阏阒阕阖阗阙阚丬爿戕氵汔汜汊沣沅沐沔沌汨汩汴汶沆沩泐泔沭泷泸泱泗沲泠泖泺泫泮沱泓泯泾"],["e440","銨",5,"銯",24,"鋉",31],["e480","鋩",32,"洹洧洌浃浈洇洄洙洎洫浍洮洵洚浏浒浔洳涑浯涞涠浞涓涔浜浠浼浣渚淇淅淞渎涿淠渑淦淝淙渖涫渌涮渫湮湎湫溲湟溆湓湔渲渥湄滟溱溘滠漭滢溥溧溽溻溷滗溴滏溏滂溟潢潆潇漤漕滹漯漶潋潴漪漉漩澉澍澌潸潲潼潺濑"],["e540","錊",51,"錿",10],["e580","鍊",31,"鍫濉澧澹澶濂濡濮濞濠濯瀚瀣瀛瀹瀵灏灞宀宄宕宓宥宸甯骞搴寤寮褰寰蹇謇辶迓迕迥迮迤迩迦迳迨逅逄逋逦逑逍逖逡逵逶逭逯遄遑遒遐遨遘遢遛暹遴遽邂邈邃邋彐彗彖彘尻咫屐屙孱屣屦羼弪弩弭艴弼鬻屮妁妃妍妩妪妣"],["e640","鍬",34,"鎐",27],["e680","鎬",29,"鏋鏌鏍妗姊妫妞妤姒妲妯姗妾娅娆姝娈姣姘姹娌娉娲娴娑娣娓婀婧婊婕娼婢婵胬媪媛婷婺媾嫫媲嫒嫔媸嫠嫣嫱嫖嫦嫘嫜嬉嬗嬖嬲嬷孀尕尜孚孥孳孑孓孢驵驷驸驺驿驽骀骁骅骈骊骐骒骓骖骘骛骜骝骟骠骢骣骥骧纟纡纣纥纨纩"],["e740","鏎",7,"鏗",54],["e780","鐎",32,"纭纰纾绀绁绂绉绋绌绐绔绗绛绠绡绨绫绮绯绱绲缍绶绺绻绾缁缂缃缇缈缋缌缏缑缒缗缙缜缛缟缡",6,"缪缫缬缭缯",4,"缵幺畿巛甾邕玎玑玮玢玟珏珂珑玷玳珀珉珈珥珙顼琊珩珧珞玺珲琏琪瑛琦琥琨琰琮琬"],["e840","鐯",14,"鐿",43,"鑬鑭鑮鑯"],["e880","鑰",20,"钑钖钘铇铏铓铔铚铦铻锜锠琛琚瑁瑜瑗瑕瑙瑷瑭瑾璜璎璀璁璇璋璞璨璩璐璧瓒璺韪韫韬杌杓杞杈杩枥枇杪杳枘枧杵枨枞枭枋杷杼柰栉柘栊柩枰栌柙枵柚枳柝栀柃枸柢栎柁柽栲栳桠桡桎桢桄桤梃栝桕桦桁桧桀栾桊桉栩梵梏桴桷梓桫棂楮棼椟椠棹"],["e940","锧锳锽镃镈镋镕镚镠镮镴镵長",7,"門",42],["e980","閫",32,"椤棰椋椁楗棣椐楱椹楠楂楝榄楫榀榘楸椴槌榇榈槎榉楦楣楹榛榧榻榫榭槔榱槁槊槟榕槠榍槿樯槭樗樘橥槲橄樾檠橐橛樵檎橹樽樨橘橼檑檐檩檗檫猷獒殁殂殇殄殒殓殍殚殛殡殪轫轭轱轲轳轵轶轸轷轹轺轼轾辁辂辄辇辋"],["ea40","闌",27,"闬闿阇阓阘阛阞阠阣",6,"阫阬阭阯阰阷阸阹阺阾陁陃陊陎陏陑陒陓陖陗"],["ea80","陘陙陚陜陝陞陠陣陥陦陫陭",4,"陳陸",12,"隇隉隊辍辎辏辘辚軎戋戗戛戟戢戡戥戤戬臧瓯瓴瓿甏甑甓攴旮旯旰昊昙杲昃昕昀炅曷昝昴昱昶昵耆晟晔晁晏晖晡晗晷暄暌暧暝暾曛曜曦曩贲贳贶贻贽赀赅赆赈赉赇赍赕赙觇觊觋觌觎觏觐觑牮犟牝牦牯牾牿犄犋犍犏犒挈挲掰"],["eb40","隌階隑隒隓隕隖隚際隝",9,"隨",7,"隱隲隴隵隷隸隺隻隿雂雃雈雊雋雐雑雓雔雖",9,"雡",6,"雫"],["eb80","雬雭雮雰雱雲雴雵雸雺電雼雽雿霂霃霅霊霋霌霐霑霒霔霕霗",4,"霝霟霠搿擘耄毪毳毽毵毹氅氇氆氍氕氘氙氚氡氩氤氪氲攵敕敫牍牒牖爰虢刖肟肜肓肼朊肽肱肫肭肴肷胧胨胩胪胛胂胄胙胍胗朐胝胫胱胴胭脍脎胲胼朕脒豚脶脞脬脘脲腈腌腓腴腙腚腱腠腩腼腽腭腧塍媵膈膂膑滕膣膪臌朦臊膻"],["ec40","霡",8,"霫霬霮霯霱霳",4,"霺霻霼霽霿",18,"靔靕靗靘靚靜靝靟靣靤靦靧靨靪",7],["ec80","靲靵靷",4,"靽",7,"鞆",4,"鞌鞎鞏鞐鞓鞕鞖鞗鞙",4,"臁膦欤欷欹歃歆歙飑飒飓飕飙飚殳彀毂觳斐齑斓於旆旄旃旌旎旒旖炀炜炖炝炻烀炷炫炱烨烊焐焓焖焯焱煳煜煨煅煲煊煸煺熘熳熵熨熠燠燔燧燹爝爨灬焘煦熹戾戽扃扈扉礻祀祆祉祛祜祓祚祢祗祠祯祧祺禅禊禚禧禳忑忐"],["ed40","鞞鞟鞡鞢鞤",6,"鞬鞮鞰鞱鞳鞵",46],["ed80","韤韥韨韮",4,"韴韷",23,"怼恝恚恧恁恙恣悫愆愍慝憩憝懋懑戆肀聿沓泶淼矶矸砀砉砗砘砑斫砭砜砝砹砺砻砟砼砥砬砣砩硎硭硖硗砦硐硇硌硪碛碓碚碇碜碡碣碲碹碥磔磙磉磬磲礅磴礓礤礞礴龛黹黻黼盱眄眍盹眇眈眚眢眙眭眦眵眸睐睑睇睃睚睨"],["ee40","頏",62],["ee80","顎",32,"睢睥睿瞍睽瞀瞌瞑瞟瞠瞰瞵瞽町畀畎畋畈畛畲畹疃罘罡罟詈罨罴罱罹羁罾盍盥蠲钅钆钇钋钊钌钍钏钐钔钗钕钚钛钜钣钤钫钪钭钬钯钰钲钴钶",4,"钼钽钿铄铈",6,"铐铑铒铕铖铗铙铘铛铞铟铠铢铤铥铧铨铪"],["ef40","顯",5,"颋颎颒颕颙颣風",37,"飏飐飔飖飗飛飜飝飠",4],["ef80","飥飦飩",30,"铩铫铮铯铳铴铵铷铹铼铽铿锃锂锆锇锉锊锍锎锏锒",4,"锘锛锝锞锟锢锪锫锩锬锱锲锴锶锷锸锼锾锿镂锵镄镅镆镉镌镎镏镒镓镔镖镗镘镙镛镞镟镝镡镢镤",8,"镯镱镲镳锺矧矬雉秕秭秣秫稆嵇稃稂稞稔"],["f040","餈",4,"餎餏餑",28,"餯",26],["f080","饊",9,"饖",12,"饤饦饳饸饹饻饾馂馃馉稹稷穑黏馥穰皈皎皓皙皤瓞瓠甬鸠鸢鸨",4,"鸲鸱鸶鸸鸷鸹鸺鸾鹁鹂鹄鹆鹇鹈鹉鹋鹌鹎鹑鹕鹗鹚鹛鹜鹞鹣鹦",6,"鹱鹭鹳疒疔疖疠疝疬疣疳疴疸痄疱疰痃痂痖痍痣痨痦痤痫痧瘃痱痼痿瘐瘀瘅瘌瘗瘊瘥瘘瘕瘙"],["f140","馌馎馚",10,"馦馧馩",47],["f180","駙",32,"瘛瘼瘢瘠癀瘭瘰瘿瘵癃瘾瘳癍癞癔癜癖癫癯翊竦穸穹窀窆窈窕窦窠窬窨窭窳衤衩衲衽衿袂袢裆袷袼裉裢裎裣裥裱褚裼裨裾裰褡褙褓褛褊褴褫褶襁襦襻疋胥皲皴矜耒耔耖耜耠耢耥耦耧耩耨耱耋耵聃聆聍聒聩聱覃顸颀颃"],["f240","駺",62],["f280","騹",32,"颉颌颍颏颔颚颛颞颟颡颢颥颦虍虔虬虮虿虺虼虻蚨蚍蚋蚬蚝蚧蚣蚪蚓蚩蚶蛄蚵蛎蚰蚺蚱蚯蛉蛏蚴蛩蛱蛲蛭蛳蛐蜓蛞蛴蛟蛘蛑蜃蜇蛸蜈蜊蜍蜉蜣蜻蜞蜥蜮蜚蜾蝈蜴蜱蜩蜷蜿螂蜢蝽蝾蝻蝠蝰蝌蝮螋蝓蝣蝼蝤蝙蝥螓螯螨蟒"],["f340","驚",17,"驲骃骉骍骎骔骕骙骦骩",6,"骲骳骴骵骹骻骽骾骿髃髄髆",4,"髍髎髏髐髒體髕髖髗髙髚髛髜"],["f380","髝髞髠髢髣髤髥髧髨髩髪髬髮髰",8,"髺髼",6,"鬄鬅鬆蟆螈螅螭螗螃螫蟥螬螵螳蟋蟓螽蟑蟀蟊蟛蟪蟠蟮蠖蠓蟾蠊蠛蠡蠹蠼缶罂罄罅舐竺竽笈笃笄笕笊笫笏筇笸笪笙笮笱笠笥笤笳笾笞筘筚筅筵筌筝筠筮筻筢筲筱箐箦箧箸箬箝箨箅箪箜箢箫箴篑篁篌篝篚篥篦篪簌篾篼簏簖簋"],["f440","鬇鬉",5,"鬐鬑鬒鬔",10,"鬠鬡鬢鬤",10,"鬰鬱鬳",7,"鬽鬾鬿魀魆魊魋魌魎魐魒魓魕",5],["f480","魛",32,"簟簪簦簸籁籀臾舁舂舄臬衄舡舢舣舭舯舨舫舸舻舳舴舾艄艉艋艏艚艟艨衾袅袈裘裟襞羝羟羧羯羰羲籼敉粑粝粜粞粢粲粼粽糁糇糌糍糈糅糗糨艮暨羿翎翕翥翡翦翩翮翳糸絷綦綮繇纛麸麴赳趄趔趑趱赧赭豇豉酊酐酎酏酤"],["f540","魼",62],["f580","鮻",32,"酢酡酰酩酯酽酾酲酴酹醌醅醐醍醑醢醣醪醭醮醯醵醴醺豕鹾趸跫踅蹙蹩趵趿趼趺跄跖跗跚跞跎跏跛跆跬跷跸跣跹跻跤踉跽踔踝踟踬踮踣踯踺蹀踹踵踽踱蹉蹁蹂蹑蹒蹊蹰蹶蹼蹯蹴躅躏躔躐躜躞豸貂貊貅貘貔斛觖觞觚觜"],["f640","鯜",62],["f680","鰛",32,"觥觫觯訾謦靓雩雳雯霆霁霈霏霎霪霭霰霾龀龃龅",5,"龌黾鼋鼍隹隼隽雎雒瞿雠銎銮鋈錾鍪鏊鎏鐾鑫鱿鲂鲅鲆鲇鲈稣鲋鲎鲐鲑鲒鲔鲕鲚鲛鲞",5,"鲥",4,"鲫鲭鲮鲰",7,"鲺鲻鲼鲽鳄鳅鳆鳇鳊鳋"],["f740","鰼",62],["f780","鱻鱽鱾鲀鲃鲄鲉鲊鲌鲏鲓鲖鲗鲘鲙鲝鲪鲬鲯鲹鲾",4,"鳈鳉鳑鳒鳚鳛鳠鳡鳌",4,"鳓鳔鳕鳗鳘鳙鳜鳝鳟鳢靼鞅鞑鞒鞔鞯鞫鞣鞲鞴骱骰骷鹘骶骺骼髁髀髅髂髋髌髑魅魃魇魉魈魍魑飨餍餮饕饔髟髡髦髯髫髻髭髹鬈鬏鬓鬟鬣麽麾縻麂麇麈麋麒鏖麝麟黛黜黝黠黟黢黩黧黥黪黯鼢鼬鼯鼹鼷鼽鼾齄"],["f840","鳣",62],["f880","鴢",32],["f940","鵃",62],["f980","鶂",32],["fa40","鶣",62],["fa80","鷢",32],["fb40","鸃",27,"鸤鸧鸮鸰鸴鸻鸼鹀鹍鹐鹒鹓鹔鹖鹙鹝鹟鹠鹡鹢鹥鹮鹯鹲鹴",9,"麀"],["fb80","麁麃麄麅麆麉麊麌",5,"麔",8,"麞麠",5,"麧麨麩麪"],["fc40","麫",8,"麵麶麷麹麺麼麿",4,"黅黆黇黈黊黋黌黐黒黓黕黖黗黙黚點黡黣黤黦黨黫黬黭黮黰",8,"黺黽黿",6],["fc80","鼆",4,"鼌鼏鼑鼒鼔鼕鼖鼘鼚",5,"鼡鼣",8,"鼭鼮鼰鼱"],["fd40","鼲",4,"鼸鼺鼼鼿",4,"齅",10,"齒",38],["fd80","齹",5,"龁龂龍",11,"龜龝龞龡",4,"郎凉秊裏隣"],["fe40","兀嗀﨎﨏﨑﨓﨔礼﨟蘒﨡﨣﨤﨧﨨﨩"]]')},21166:e=>{"use strict";e.exports=JSON.parse('[["0","\\u0000",127],["8141","갂갃갅갆갋",4,"갘갞갟갡갢갣갥",6,"갮갲갳갴"],["8161","갵갶갷갺갻갽갾갿걁",9,"걌걎",5,"걕"],["8181","걖걗걙걚걛걝",18,"걲걳걵걶걹걻",4,"겂겇겈겍겎겏겑겒겓겕",6,"겞겢",5,"겫겭겮겱",6,"겺겾겿곀곂곃곅곆곇곉곊곋곍",7,"곖곘",7,"곢곣곥곦곩곫곭곮곲곴곷",4,"곾곿괁괂괃괅괇",4,"괎괐괒괓"],["8241","괔괕괖괗괙괚괛괝괞괟괡",7,"괪괫괮",5],["8261","괶괷괹괺괻괽",6,"굆굈굊",5,"굑굒굓굕굖굗"],["8281","굙",7,"굢굤",7,"굮굯굱굲굷굸굹굺굾궀궃",4,"궊궋궍궎궏궑",10,"궞",5,"궥",17,"궸",7,"귂귃귅귆귇귉",6,"귒귔",7,"귝귞귟귡귢귣귥",18],["8341","귺귻귽귾긂",5,"긊긌긎",5,"긕",7],["8361","긝",18,"긲긳긵긶긹긻긼"],["8381","긽긾긿깂깄깇깈깉깋깏깑깒깓깕깗",4,"깞깢깣깤깦깧깪깫깭깮깯깱",6,"깺깾",5,"꺆",5,"꺍",46,"꺿껁껂껃껅",6,"껎껒",5,"껚껛껝",8],["8441","껦껧껩껪껬껮",5,"껵껶껷껹껺껻껽",8],["8461","꼆꼉꼊꼋꼌꼎꼏꼑",18],["8481","꼤",7,"꼮꼯꼱꼳꼵",6,"꼾꽀꽄꽅꽆꽇꽊",5,"꽑",10,"꽞",5,"꽦",18,"꽺",5,"꾁꾂꾃꾅꾆꾇꾉",6,"꾒꾓꾔꾖",5,"꾝",26,"꾺꾻꾽꾾"],["8541","꾿꿁",5,"꿊꿌꿏",4,"꿕",6,"꿝",4],["8561","꿢",5,"꿪",5,"꿲꿳꿵꿶꿷꿹",6,"뀂뀃"],["8581","뀅",6,"뀍뀎뀏뀑뀒뀓뀕",6,"뀞",9,"뀩",26,"끆끇끉끋끍끏끐끑끒끖끘끚끛끜끞",29,"끾끿낁낂낃낅",6,"낎낐낒",5,"낛낝낞낣낤"],["8641","낥낦낧낪낰낲낶낷낹낺낻낽",6,"냆냊",5,"냒"],["8661","냓냕냖냗냙",6,"냡냢냣냤냦",10],["8681","냱",22,"넊넍넎넏넑넔넕넖넗넚넞",4,"넦넧넩넪넫넭",6,"넶넺",5,"녂녃녅녆녇녉",6,"녒녓녖녗녙녚녛녝녞녟녡",22,"녺녻녽녾녿놁놃",4,"놊놌놎놏놐놑놕놖놗놙놚놛놝"],["8741","놞",9,"놩",15],["8761","놹",18,"뇍뇎뇏뇑뇒뇓뇕"],["8781","뇖",5,"뇞뇠",7,"뇪뇫뇭뇮뇯뇱",7,"뇺뇼뇾",5,"눆눇눉눊눍",6,"눖눘눚",5,"눡",18,"눵",6,"눽",26,"뉙뉚뉛뉝뉞뉟뉡",6,"뉪",4],["8841","뉯",4,"뉶",5,"뉽",6,"늆늇늈늊",4],["8861","늏늒늓늕늖늗늛",4,"늢늤늧늨늩늫늭늮늯늱늲늳늵늶늷"],["8881","늸",15,"닊닋닍닎닏닑닓",4,"닚닜닞닟닠닡닣닧닩닪닰닱닲닶닼닽닾댂댃댅댆댇댉",6,"댒댖",5,"댝",54,"덗덙덚덝덠덡덢덣"],["8941","덦덨덪덬덭덯덲덳덵덶덷덹",6,"뎂뎆",5,"뎍"],["8961","뎎뎏뎑뎒뎓뎕",10,"뎢",5,"뎩뎪뎫뎭"],["8981","뎮",21,"돆돇돉돊돍돏돑돒돓돖돘돚돜돞돟돡돢돣돥돦돧돩",18,"돽",18,"됑",6,"됙됚됛됝됞됟됡",6,"됪됬",7,"됵",15],["8a41","둅",10,"둒둓둕둖둗둙",6,"둢둤둦"],["8a61","둧",4,"둭",18,"뒁뒂"],["8a81","뒃",4,"뒉",19,"뒞",5,"뒥뒦뒧뒩뒪뒫뒭",7,"뒶뒸뒺",5,"듁듂듃듅듆듇듉",6,"듑듒듓듔듖",5,"듞듟듡듢듥듧",4,"듮듰듲",5,"듹",26,"딖딗딙딚딝"],["8b41","딞",5,"딦딫",4,"딲딳딵딶딷딹",6,"땂땆"],["8b61","땇땈땉땊땎땏땑땒땓땕",6,"땞땢",8],["8b81","땫",52,"떢떣떥떦떧떩떬떭떮떯떲떶",4,"떾떿뗁뗂뗃뗅",6,"뗎뗒",5,"뗙",18,"뗭",18],["8c41","똀",15,"똒똓똕똖똗똙",4],["8c61","똞",6,"똦",5,"똭",6,"똵",5],["8c81","똻",12,"뙉",26,"뙥뙦뙧뙩",50,"뚞뚟뚡뚢뚣뚥",5,"뚭뚮뚯뚰뚲",16],["8d41","뛃",16,"뛕",8],["8d61","뛞",17,"뛱뛲뛳뛵뛶뛷뛹뛺"],["8d81","뛻",4,"뜂뜃뜄뜆",33,"뜪뜫뜭뜮뜱",6,"뜺뜼",7,"띅띆띇띉띊띋띍",6,"띖",9,"띡띢띣띥띦띧띩",6,"띲띴띶",5,"띾띿랁랂랃랅",6,"랎랓랔랕랚랛랝랞"],["8e41","랟랡",6,"랪랮",5,"랶랷랹",8],["8e61","럂",4,"럈럊",19],["8e81","럞",13,"럮럯럱럲럳럵",6,"럾렂",4,"렊렋렍렎렏렑",6,"렚렜렞",5,"렦렧렩렪렫렭",6,"렶렺",5,"롁롂롃롅",11,"롒롔",7,"롞롟롡롢롣롥",6,"롮롰롲",5,"롹롺롻롽",7],["8f41","뢅",7,"뢎",17],["8f61","뢠",7,"뢩",6,"뢱뢲뢳뢵뢶뢷뢹",4],["8f81","뢾뢿룂룄룆",5,"룍룎룏룑룒룓룕",7,"룞룠룢",5,"룪룫룭룮룯룱",6,"룺룼룾",5,"뤅",18,"뤙",6,"뤡",26,"뤾뤿륁륂륃륅",6,"륍륎륐륒",5],["9041","륚륛륝륞륟륡",6,"륪륬륮",5,"륶륷륹륺륻륽"],["9061","륾",5,"릆릈릋릌릏",15],["9081","릟",12,"릮릯릱릲릳릵",6,"릾맀맂",5,"맊맋맍맓",4,"맚맜맟맠맢맦맧맩맪맫맭",6,"맶맻",4,"먂",5,"먉",11,"먖",33,"먺먻먽먾먿멁멃멄멅멆"],["9141","멇멊멌멏멐멑멒멖멗멙멚멛멝",6,"멦멪",5],["9161","멲멳멵멶멷멹",9,"몆몈몉몊몋몍",5],["9181","몓",20,"몪몭몮몯몱몳",4,"몺몼몾",5,"뫅뫆뫇뫉",14,"뫚",33,"뫽뫾뫿묁묂묃묅",7,"묎묐묒",5,"묙묚묛묝묞묟묡",6],["9241","묨묪묬",7,"묷묹묺묿",4,"뭆뭈뭊뭋뭌뭎뭑뭒"],["9261","뭓뭕뭖뭗뭙",7,"뭢뭤",7,"뭭",4],["9281","뭲",21,"뮉뮊뮋뮍뮎뮏뮑",18,"뮥뮦뮧뮩뮪뮫뮭",6,"뮵뮶뮸",7,"믁믂믃믅믆믇믉",6,"믑믒믔",35,"믺믻믽믾밁"],["9341","밃",4,"밊밎밐밒밓밙밚밠밡밢밣밦밨밪밫밬밮밯밲밳밵"],["9361","밶밷밹",6,"뱂뱆뱇뱈뱊뱋뱎뱏뱑",8],["9381","뱚뱛뱜뱞",37,"벆벇벉벊벍벏",4,"벖벘벛",4,"벢벣벥벦벩",6,"벲벶",5,"벾벿볁볂볃볅",7,"볎볒볓볔볖볗볙볚볛볝",22,"볷볹볺볻볽"],["9441","볾",5,"봆봈봊",5,"봑봒봓봕",8],["9461","봞",5,"봥",6,"봭",12],["9481","봺",5,"뵁",6,"뵊뵋뵍뵎뵏뵑",6,"뵚",9,"뵥뵦뵧뵩",22,"붂붃붅붆붋",4,"붒붔붖붗붘붛붝",6,"붥",10,"붱",6,"붹",24],["9541","뷒뷓뷖뷗뷙뷚뷛뷝",11,"뷪",5,"뷱"],["9561","뷲뷳뷵뷶뷷뷹",6,"븁븂븄븆",5,"븎븏븑븒븓"],["9581","븕",6,"븞븠",35,"빆빇빉빊빋빍빏",4,"빖빘빜빝빞빟빢빣빥빦빧빩빫",4,"빲빶",4,"빾빿뺁뺂뺃뺅",6,"뺎뺒",5,"뺚",13,"뺩",14],["9641","뺸",23,"뻒뻓"],["9661","뻕뻖뻙",6,"뻡뻢뻦",5,"뻭",8],["9681","뻶",10,"뼂",5,"뼊",13,"뼚뼞",33,"뽂뽃뽅뽆뽇뽉",6,"뽒뽓뽔뽖",44],["9741","뾃",16,"뾕",8],["9761","뾞",17,"뾱",7],["9781","뾹",11,"뿆",5,"뿎뿏뿑뿒뿓뿕",6,"뿝뿞뿠뿢",89,"쀽쀾쀿"],["9841","쁀",16,"쁒",5,"쁙쁚쁛"],["9861","쁝쁞쁟쁡",6,"쁪",15],["9881","쁺",21,"삒삓삕삖삗삙",6,"삢삤삦",5,"삮삱삲삷",4,"삾샂샃샄샆샇샊샋샍샎샏샑",6,"샚샞",5,"샦샧샩샪샫샭",6,"샶샸샺",5,"섁섂섃섅섆섇섉",6,"섑섒섓섔섖",5,"섡섢섥섨섩섪섫섮"],["9941","섲섳섴섵섷섺섻섽섾섿셁",6,"셊셎",5,"셖셗"],["9961","셙셚셛셝",6,"셦셪",5,"셱셲셳셵셶셷셹셺셻"],["9981","셼",8,"솆",5,"솏솑솒솓솕솗",4,"솞솠솢솣솤솦솧솪솫솭솮솯솱",11,"솾",5,"쇅쇆쇇쇉쇊쇋쇍",6,"쇕쇖쇙",6,"쇡쇢쇣쇥쇦쇧쇩",6,"쇲쇴",7,"쇾쇿숁숂숃숅",6,"숎숐숒",5,"숚숛숝숞숡숢숣"],["9a41","숤숥숦숧숪숬숮숰숳숵",16],["9a61","쉆쉇쉉",6,"쉒쉓쉕쉖쉗쉙",6,"쉡쉢쉣쉤쉦"],["9a81","쉧",4,"쉮쉯쉱쉲쉳쉵",6,"쉾슀슂",5,"슊",5,"슑",6,"슙슚슜슞",5,"슦슧슩슪슫슮",5,"슶슸슺",33,"싞싟싡싢싥",5,"싮싰싲싳싴싵싷싺싽싾싿쌁",6,"쌊쌋쌎쌏"],["9b41","쌐쌑쌒쌖쌗쌙쌚쌛쌝",6,"쌦쌧쌪",8],["9b61","쌳",17,"썆",7],["9b81","썎",25,"썪썫썭썮썯썱썳",4,"썺썻썾",5,"쎅쎆쎇쎉쎊쎋쎍",50,"쏁",22,"쏚"],["9c41","쏛쏝쏞쏡쏣",4,"쏪쏫쏬쏮",5,"쏶쏷쏹",5],["9c61","쏿",8,"쐉",6,"쐑",9],["9c81","쐛",8,"쐥",6,"쐭쐮쐯쐱쐲쐳쐵",6,"쐾",9,"쑉",26,"쑦쑧쑩쑪쑫쑭",6,"쑶쑷쑸쑺",5,"쒁",18,"쒕",6,"쒝",12],["9d41","쒪",13,"쒹쒺쒻쒽",8],["9d61","쓆",25],["9d81","쓠",8,"쓪",5,"쓲쓳쓵쓶쓷쓹쓻쓼쓽쓾씂",9,"씍씎씏씑씒씓씕",6,"씝",10,"씪씫씭씮씯씱",6,"씺씼씾",5,"앆앇앋앏앐앑앒앖앚앛앜앟앢앣앥앦앧앩",6,"앲앶",5,"앾앿얁얂얃얅얆얈얉얊얋얎얐얒얓얔"],["9e41","얖얙얚얛얝얞얟얡",7,"얪",9,"얶"],["9e61","얷얺얿",4,"엋엍엏엒엓엕엖엗엙",6,"엢엤엦엧"],["9e81","엨엩엪엫엯엱엲엳엵엸엹엺엻옂옃옄옉옊옋옍옎옏옑",6,"옚옝",6,"옦옧옩옪옫옯옱옲옶옸옺옼옽옾옿왂왃왅왆왇왉",6,"왒왖",5,"왞왟왡",10,"왭왮왰왲",5,"왺왻왽왾왿욁",6,"욊욌욎",5,"욖욗욙욚욛욝",6,"욦"],["9f41","욨욪",5,"욲욳욵욶욷욻",4,"웂웄웆",5,"웎"],["9f61","웏웑웒웓웕",6,"웞웟웢",5,"웪웫웭웮웯웱웲"],["9f81","웳",4,"웺웻웼웾",5,"윆윇윉윊윋윍",6,"윖윘윚",5,"윢윣윥윦윧윩",6,"윲윴윶윸윹윺윻윾윿읁읂읃읅",4,"읋읎읐읙읚읛읝읞읟읡",6,"읩읪읬",7,"읶읷읹읺읻읿잀잁잂잆잋잌잍잏잒잓잕잙잛",4,"잢잧",4,"잮잯잱잲잳잵잶잷"],["a041","잸잹잺잻잾쟂",5,"쟊쟋쟍쟏쟑",6,"쟙쟚쟛쟜"],["a061","쟞",5,"쟥쟦쟧쟩쟪쟫쟭",13],["a081","쟻",4,"젂젃젅젆젇젉젋",4,"젒젔젗",4,"젞젟젡젢젣젥",6,"젮젰젲",5,"젹젺젻젽젾젿졁",6,"졊졋졎",5,"졕",26,"졲졳졵졶졷졹졻",4,"좂좄좈좉좊좎",5,"좕",7,"좞좠좢좣좤"],["a141","좥좦좧좩",18,"좾좿죀죁"],["a161","죂죃죅죆죇죉죊죋죍",6,"죖죘죚",5,"죢죣죥"],["a181","죦",14,"죶",5,"죾죿줁줂줃줇",4,"줎 、。·‥…¨〃­―∥\∼‘’“”〔〕〈",9,"±×÷≠≤≥∞∴°′″℃Å¢£¥♂♀∠⊥⌒∂∇≡≒§※☆★○●◎◇◆□■△▲▽▼→←↑↓↔〓≪≫√∽∝∵∫∬∈∋⊆⊇⊂⊃∪∩∧∨¬"],["a241","줐줒",5,"줙",18],["a261","줭",6,"줵",18],["a281","쥈",7,"쥒쥓쥕쥖쥗쥙",6,"쥢쥤",7,"쥭쥮쥯⇒⇔∀∃´~ˇ˘˝˚˙¸˛¡¿ː∮∑∏¤℉‰◁◀▷▶♤♠♡♥♧♣⊙◈▣◐◑▒▤▥▨▧▦▩♨☏☎☜☞¶†‡↕↗↙↖↘♭♩♪♬㉿㈜№㏇™㏂㏘℡€®"],["a341","쥱쥲쥳쥵",6,"쥽",10,"즊즋즍즎즏"],["a361","즑",6,"즚즜즞",16],["a381","즯",16,"짂짃짅짆짉짋",4,"짒짔짗짘짛!",58,"₩]",32," ̄"],["a441","짞짟짡짣짥짦짨짩짪짫짮짲",5,"짺짻짽짾짿쨁쨂쨃쨄"],["a461","쨅쨆쨇쨊쨎",5,"쨕쨖쨗쨙",12],["a481","쨦쨧쨨쨪",28,"ㄱ",93],["a541","쩇",4,"쩎쩏쩑쩒쩓쩕",6,"쩞쩢",5,"쩩쩪"],["a561","쩫",17,"쩾",5,"쪅쪆"],["a581","쪇",16,"쪙",14,"ⅰ",9],["a5b0","Ⅰ",9],["a5c1","Α",16,"Σ",6],["a5e1","α",16,"σ",6],["a641","쪨",19,"쪾쪿쫁쫂쫃쫅"],["a661","쫆",5,"쫎쫐쫒쫔쫕쫖쫗쫚",5,"쫡",6],["a681","쫨쫩쫪쫫쫭",6,"쫵",18,"쬉쬊─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂┒┑┚┙┖┕┎┍┞┟┡┢┦┧┩┪┭┮┱┲┵┶┹┺┽┾╀╁╃",7],["a741","쬋",4,"쬑쬒쬓쬕쬖쬗쬙",6,"쬢",7],["a761","쬪",22,"쭂쭃쭄"],["a781","쭅쭆쭇쭊쭋쭍쭎쭏쭑",6,"쭚쭛쭜쭞",5,"쭥",7,"㎕㎖㎗ℓ㎘㏄㎣㎤㎥㎦㎙",9,"㏊㎍㎎㎏㏏㎈㎉㏈㎧㎨㎰",9,"㎀",4,"㎺",5,"㎐",4,"Ω㏀㏁㎊㎋㎌㏖㏅㎭㎮㎯㏛㎩㎪㎫㎬㏝㏐㏓㏃㏉㏜㏆"],["a841","쭭",10,"쭺",14],["a861","쮉",18,"쮝",6],["a881","쮤",19,"쮹",11,"ÆÐªĦ"],["a8a6","IJ"],["a8a8","ĿŁØŒºÞŦŊ"],["a8b1","㉠",27,"ⓐ",25,"①",14,"½⅓⅔¼¾⅛⅜⅝⅞"],["a941","쯅",14,"쯕",10],["a961","쯠쯡쯢쯣쯥쯦쯨쯪",18],["a981","쯽",14,"찎찏찑찒찓찕",6,"찞찟찠찣찤æđðħıijĸŀłøœßþŧŋʼn㈀",27,"⒜",25,"⑴",14,"¹²³⁴ⁿ₁₂₃₄"],["aa41","찥찦찪찫찭찯찱",6,"찺찿",4,"챆챇챉챊챋챍챎"],["aa61","챏",4,"챖챚",5,"챡챢챣챥챧챩",6,"챱챲"],["aa81","챳챴챶",29,"ぁ",82],["ab41","첔첕첖첗첚첛첝첞첟첡",6,"첪첮",5,"첶첷첹"],["ab61","첺첻첽",6,"쳆쳈쳊",5,"쳑쳒쳓쳕",5],["ab81","쳛",8,"쳥",6,"쳭쳮쳯쳱",12,"ァ",85],["ac41","쳾쳿촀촂",5,"촊촋촍촎촏촑",6,"촚촜촞촟촠"],["ac61","촡촢촣촥촦촧촩촪촫촭",11,"촺",4],["ac81","촿",28,"쵝쵞쵟А",5,"ЁЖ",25],["acd1","а",5,"ёж",25],["ad41","쵡쵢쵣쵥",6,"쵮쵰쵲",5,"쵹",7],["ad61","춁",6,"춉",10,"춖춗춙춚춛춝춞춟"],["ad81","춠춡춢춣춦춨춪",5,"춱",18,"췅"],["ae41","췆",5,"췍췎췏췑",16],["ae61","췢",5,"췩췪췫췭췮췯췱",6,"췺췼췾",4],["ae81","츃츅츆츇츉츊츋츍",6,"츕츖츗츘츚",5,"츢츣츥츦츧츩츪츫"],["af41","츬츭츮츯츲츴츶",19],["af61","칊",13,"칚칛칝칞칢",5,"칪칬"],["af81","칮",5,"칶칷칹칺칻칽",6,"캆캈캊",5,"캒캓캕캖캗캙"],["b041","캚",5,"캢캦",5,"캮",12],["b061","캻",5,"컂",19],["b081","컖",13,"컦컧컩컪컭",6,"컶컺",5,"가각간갇갈갉갊감",7,"같",4,"갠갤갬갭갯갰갱갸갹갼걀걋걍걔걘걜거걱건걷걸걺검겁것겄겅겆겉겊겋게겐겔겜겝겟겠겡겨격겪견겯결겸겹겻겼경곁계곈곌곕곗고곡곤곧골곪곬곯곰곱곳공곶과곽관괄괆"],["b141","켂켃켅켆켇켉",6,"켒켔켖",5,"켝켞켟켡켢켣"],["b161","켥",6,"켮켲",5,"켹",11],["b181","콅",14,"콖콗콙콚콛콝",6,"콦콨콪콫콬괌괍괏광괘괜괠괩괬괭괴괵괸괼굄굅굇굉교굔굘굡굣구국군굳굴굵굶굻굼굽굿궁궂궈궉권궐궜궝궤궷귀귁귄귈귐귑귓규균귤그극근귿글긁금급긋긍긔기긱긴긷길긺김깁깃깅깆깊까깍깎깐깔깖깜깝깟깠깡깥깨깩깬깰깸"],["b241","콭콮콯콲콳콵콶콷콹",6,"쾁쾂쾃쾄쾆",5,"쾍"],["b261","쾎",18,"쾢",5,"쾩"],["b281","쾪",5,"쾱",18,"쿅",6,"깹깻깼깽꺄꺅꺌꺼꺽꺾껀껄껌껍껏껐껑께껙껜껨껫껭껴껸껼꼇꼈꼍꼐꼬꼭꼰꼲꼴꼼꼽꼿꽁꽂꽃꽈꽉꽐꽜꽝꽤꽥꽹꾀꾄꾈꾐꾑꾕꾜꾸꾹꾼꿀꿇꿈꿉꿋꿍꿎꿔꿜꿨꿩꿰꿱꿴꿸뀀뀁뀄뀌뀐뀔뀜뀝뀨끄끅끈끊끌끎끓끔끕끗끙"],["b341","쿌",19,"쿢쿣쿥쿦쿧쿩"],["b361","쿪",5,"쿲쿴쿶",5,"쿽쿾쿿퀁퀂퀃퀅",5],["b381","퀋",5,"퀒",5,"퀙",19,"끝끼끽낀낄낌낍낏낑나낙낚난낟날낡낢남납낫",4,"낱낳내낵낸낼냄냅냇냈냉냐냑냔냘냠냥너넉넋넌널넒넓넘넙넛넜넝넣네넥넨넬넴넵넷넸넹녀녁년녈념녑녔녕녘녜녠노녹논놀놂놈놉놋농높놓놔놘놜놨뇌뇐뇔뇜뇝"],["b441","퀮",5,"퀶퀷퀹퀺퀻퀽",6,"큆큈큊",5],["b461","큑큒큓큕큖큗큙",6,"큡",10,"큮큯"],["b481","큱큲큳큵",6,"큾큿킀킂",18,"뇟뇨뇩뇬뇰뇹뇻뇽누눅눈눋눌눔눕눗눙눠눴눼뉘뉜뉠뉨뉩뉴뉵뉼늄늅늉느늑는늘늙늚늠늡늣능늦늪늬늰늴니닉닌닐닒님닙닛닝닢다닥닦단닫",4,"닳담답닷",4,"닿대댁댄댈댐댑댓댔댕댜더덕덖던덛덜덞덟덤덥"],["b541","킕",14,"킦킧킩킪킫킭",5],["b561","킳킶킸킺",5,"탂탃탅탆탇탊",5,"탒탖",4],["b581","탛탞탟탡탢탣탥",6,"탮탲",5,"탹",11,"덧덩덫덮데덱덴델뎀뎁뎃뎄뎅뎌뎐뎔뎠뎡뎨뎬도독돈돋돌돎돐돔돕돗동돛돝돠돤돨돼됐되된될됨됩됫됴두둑둔둘둠둡둣둥둬뒀뒈뒝뒤뒨뒬뒵뒷뒹듀듄듈듐듕드득든듣들듦듬듭듯등듸디딕딘딛딜딤딥딧딨딩딪따딱딴딸"],["b641","턅",7,"턎",17],["b661","턠",15,"턲턳턵턶턷턹턻턼턽턾"],["b681","턿텂텆",5,"텎텏텑텒텓텕",6,"텞텠텢",5,"텩텪텫텭땀땁땃땄땅땋때땍땐땔땜땝땟땠땡떠떡떤떨떪떫떰떱떳떴떵떻떼떽뗀뗄뗌뗍뗏뗐뗑뗘뗬또똑똔똘똥똬똴뙈뙤뙨뚜뚝뚠뚤뚫뚬뚱뛔뛰뛴뛸뜀뜁뜅뜨뜩뜬뜯뜰뜸뜹뜻띄띈띌띔띕띠띤띨띰띱띳띵라락란랄람랍랏랐랑랒랖랗"],["b741","텮",13,"텽",6,"톅톆톇톉톊"],["b761","톋",20,"톢톣톥톦톧"],["b781","톩",6,"톲톴톶톷톸톹톻톽톾톿퇁",14,"래랙랜랠램랩랫랬랭랴략랸럇량러럭런럴럼럽럿렀렁렇레렉렌렐렘렙렛렝려력련렬렴렵렷렸령례롄롑롓로록론롤롬롭롯롱롸롼뢍뢨뢰뢴뢸룀룁룃룅료룐룔룝룟룡루룩룬룰룸룹룻룽뤄뤘뤠뤼뤽륀륄륌륏륑류륙륜률륨륩"],["b841","퇐",7,"퇙",17],["b861","퇫",8,"퇵퇶퇷퇹",13],["b881","툈툊",5,"툑",24,"륫륭르륵른를름릅릇릉릊릍릎리릭린릴림립릿링마막만많",4,"맘맙맛망맞맡맣매맥맨맬맴맵맷맸맹맺먀먁먈먕머먹먼멀멂멈멉멋멍멎멓메멕멘멜멤멥멧멨멩며멱면멸몃몄명몇몌모목몫몬몰몲몸몹못몽뫄뫈뫘뫙뫼"],["b941","툪툫툮툯툱툲툳툵",6,"툾퉀퉂",5,"퉉퉊퉋퉌"],["b961","퉍",14,"퉝",6,"퉥퉦퉧퉨"],["b981","퉩",22,"튂튃튅튆튇튉튊튋튌묀묄묍묏묑묘묜묠묩묫무묵묶문묻물묽묾뭄뭅뭇뭉뭍뭏뭐뭔뭘뭡뭣뭬뮈뮌뮐뮤뮨뮬뮴뮷므믄믈믐믓미믹민믿밀밂밈밉밋밌밍및밑바",4,"받",4,"밤밥밧방밭배백밴밸뱀뱁뱃뱄뱅뱉뱌뱍뱐뱝버벅번벋벌벎범법벗"],["ba41","튍튎튏튒튓튔튖",5,"튝튞튟튡튢튣튥",6,"튭"],["ba61","튮튯튰튲",5,"튺튻튽튾틁틃",4,"틊틌",5],["ba81","틒틓틕틖틗틙틚틛틝",6,"틦",9,"틲틳틵틶틷틹틺벙벚베벡벤벧벨벰벱벳벴벵벼벽변별볍볏볐병볕볘볜보복볶본볼봄봅봇봉봐봔봤봬뵀뵈뵉뵌뵐뵘뵙뵤뵨부북분붇불붉붊붐붑붓붕붙붚붜붤붰붸뷔뷕뷘뷜뷩뷰뷴뷸븀븃븅브븍븐블븜븝븟비빅빈빌빎빔빕빗빙빚빛빠빡빤"],["bb41","틻",4,"팂팄팆",5,"팏팑팒팓팕팗",4,"팞팢팣"],["bb61","팤팦팧팪팫팭팮팯팱",6,"팺팾",5,"퍆퍇퍈퍉"],["bb81","퍊",31,"빨빪빰빱빳빴빵빻빼빽뺀뺄뺌뺍뺏뺐뺑뺘뺙뺨뻐뻑뻔뻗뻘뻠뻣뻤뻥뻬뼁뼈뼉뼘뼙뼛뼜뼝뽀뽁뽄뽈뽐뽑뽕뾔뾰뿅뿌뿍뿐뿔뿜뿟뿡쀼쁑쁘쁜쁠쁨쁩삐삑삔삘삠삡삣삥사삭삯산삳살삵삶삼삽삿샀상샅새색샌샐샘샙샛샜생샤"],["bc41","퍪",17,"퍾퍿펁펂펃펅펆펇"],["bc61","펈펉펊펋펎펒",5,"펚펛펝펞펟펡",6,"펪펬펮"],["bc81","펯",4,"펵펶펷펹펺펻펽",6,"폆폇폊",5,"폑",5,"샥샨샬샴샵샷샹섀섄섈섐섕서",4,"섣설섦섧섬섭섯섰성섶세섹센셀셈셉셋셌셍셔셕션셜셤셥셧셨셩셰셴셸솅소속솎손솔솖솜솝솟송솥솨솩솬솰솽쇄쇈쇌쇔쇗쇘쇠쇤쇨쇰쇱쇳쇼쇽숀숄숌숍숏숑수숙순숟술숨숩숫숭"],["bd41","폗폙",7,"폢폤",7,"폮폯폱폲폳폵폶폷"],["bd61","폸폹폺폻폾퐀퐂",5,"퐉",13],["bd81","퐗",5,"퐞",25,"숯숱숲숴쉈쉐쉑쉔쉘쉠쉥쉬쉭쉰쉴쉼쉽쉿슁슈슉슐슘슛슝스슥슨슬슭슴습슷승시식신싣실싫심십싯싱싶싸싹싻싼쌀쌈쌉쌌쌍쌓쌔쌕쌘쌜쌤쌥쌨쌩썅써썩썬썰썲썸썹썼썽쎄쎈쎌쏀쏘쏙쏜쏟쏠쏢쏨쏩쏭쏴쏵쏸쐈쐐쐤쐬쐰"],["be41","퐸",7,"푁푂푃푅",14],["be61","푔",7,"푝푞푟푡푢푣푥",7,"푮푰푱푲"],["be81","푳",4,"푺푻푽푾풁풃",4,"풊풌풎",5,"풕",8,"쐴쐼쐽쑈쑤쑥쑨쑬쑴쑵쑹쒀쒔쒜쒸쒼쓩쓰쓱쓴쓸쓺쓿씀씁씌씐씔씜씨씩씬씰씸씹씻씽아악안앉않알앍앎앓암압앗았앙앝앞애액앤앨앰앱앳앴앵야약얀얄얇얌얍얏양얕얗얘얜얠얩어억언얹얻얼얽얾엄",6,"엌엎"],["bf41","풞",10,"풪",14],["bf61","풹",18,"퓍퓎퓏퓑퓒퓓퓕"],["bf81","퓖",5,"퓝퓞퓠",7,"퓩퓪퓫퓭퓮퓯퓱",6,"퓹퓺퓼에엑엔엘엠엡엣엥여역엮연열엶엷염",5,"옅옆옇예옌옐옘옙옛옜오옥온올옭옮옰옳옴옵옷옹옻와왁완왈왐왑왓왔왕왜왝왠왬왯왱외왹왼욀욈욉욋욍요욕욘욜욤욥욧용우욱운울욹욺움웁웃웅워웍원월웜웝웠웡웨"],["c041","퓾",5,"픅픆픇픉픊픋픍",6,"픖픘",5],["c061","픞",25],["c081","픸픹픺픻픾픿핁핂핃핅",6,"핎핐핒",5,"핚핛핝핞핟핡핢핣웩웬웰웸웹웽위윅윈윌윔윕윗윙유육윤율윰윱윳융윷으윽은을읊음읍읏응",7,"읜읠읨읫이익인일읽읾잃임입잇있잉잊잎자작잔잖잗잘잚잠잡잣잤장잦재잭잰잴잼잽잿쟀쟁쟈쟉쟌쟎쟐쟘쟝쟤쟨쟬저적전절젊"],["c141","핤핦핧핪핬핮",5,"핶핷핹핺핻핽",6,"햆햊햋"],["c161","햌햍햎햏햑",19,"햦햧"],["c181","햨",31,"점접젓정젖제젝젠젤젬젭젯젱져젼졀졈졉졌졍졔조족존졸졺좀좁좃종좆좇좋좌좍좔좝좟좡좨좼좽죄죈죌죔죕죗죙죠죡죤죵주죽준줄줅줆줌줍줏중줘줬줴쥐쥑쥔쥘쥠쥡쥣쥬쥰쥴쥼즈즉즌즐즘즙즛증지직진짇질짊짐집짓"],["c241","헊헋헍헎헏헑헓",4,"헚헜헞",5,"헦헧헩헪헫헭헮"],["c261","헯",4,"헶헸헺",5,"혂혃혅혆혇혉",6,"혒"],["c281","혖",5,"혝혞혟혡혢혣혥",7,"혮",9,"혺혻징짖짙짚짜짝짠짢짤짧짬짭짯짰짱째짹짼쨀쨈쨉쨋쨌쨍쨔쨘쨩쩌쩍쩐쩔쩜쩝쩟쩠쩡쩨쩽쪄쪘쪼쪽쫀쫄쫌쫍쫏쫑쫓쫘쫙쫠쫬쫴쬈쬐쬔쬘쬠쬡쭁쭈쭉쭌쭐쭘쭙쭝쭤쭸쭹쮜쮸쯔쯤쯧쯩찌찍찐찔찜찝찡찢찧차착찬찮찰참찹찻"],["c341","혽혾혿홁홂홃홄홆홇홊홌홎홏홐홒홓홖홗홙홚홛홝",4],["c361","홢",4,"홨홪",5,"홲홳홵",11],["c381","횁횂횄횆",5,"횎횏횑횒횓횕",7,"횞횠횢",5,"횩횪찼창찾채책챈챌챔챕챗챘챙챠챤챦챨챰챵처척천철첨첩첫첬청체첵첸첼쳄쳅쳇쳉쳐쳔쳤쳬쳰촁초촉촌촐촘촙촛총촤촨촬촹최쵠쵤쵬쵭쵯쵱쵸춈추축춘출춤춥춧충춰췄췌췐취췬췰췸췹췻췽츄츈츌츔츙츠측츤츨츰츱츳층"],["c441","횫횭횮횯횱",7,"횺횼",7,"훆훇훉훊훋"],["c461","훍훎훏훐훒훓훕훖훘훚",5,"훡훢훣훥훦훧훩",4],["c481","훮훯훱훲훳훴훶",5,"훾훿휁휂휃휅",11,"휒휓휔치칙친칟칠칡침칩칫칭카칵칸칼캄캅캇캉캐캑캔캘캠캡캣캤캥캬캭컁커컥컨컫컬컴컵컷컸컹케켁켄켈켐켑켓켕켜켠켤켬켭켯켰켱켸코콕콘콜콤콥콧콩콰콱콴콸쾀쾅쾌쾡쾨쾰쿄쿠쿡쿤쿨쿰쿱쿳쿵쿼퀀퀄퀑퀘퀭퀴퀵퀸퀼"],["c541","휕휖휗휚휛휝휞휟휡",6,"휪휬휮",5,"휶휷휹"],["c561","휺휻휽",6,"흅흆흈흊",5,"흒흓흕흚",4],["c581","흟흢흤흦흧흨흪흫흭흮흯흱흲흳흵",6,"흾흿힀힂",5,"힊힋큄큅큇큉큐큔큘큠크큭큰클큼큽킁키킥킨킬킴킵킷킹타탁탄탈탉탐탑탓탔탕태택탠탤탬탭탯탰탱탸턍터턱턴털턺텀텁텃텄텅테텍텐텔템텝텟텡텨텬텼톄톈토톡톤톨톰톱톳통톺톼퇀퇘퇴퇸툇툉툐투툭툰툴툼툽툿퉁퉈퉜"],["c641","힍힎힏힑",6,"힚힜힞",5],["c6a1","퉤튀튁튄튈튐튑튕튜튠튤튬튱트특튼튿틀틂틈틉틋틔틘틜틤틥티틱틴틸팀팁팃팅파팍팎판팔팖팜팝팟팠팡팥패팩팬팰팸팹팻팼팽퍄퍅퍼퍽펀펄펌펍펏펐펑페펙펜펠펨펩펫펭펴편펼폄폅폈평폐폘폡폣포폭폰폴폼폽폿퐁"],["c7a1","퐈퐝푀푄표푠푤푭푯푸푹푼푿풀풂품풉풋풍풔풩퓌퓐퓔퓜퓟퓨퓬퓰퓸퓻퓽프픈플픔픕픗피픽핀필핌핍핏핑하학한할핥함합핫항해핵핸핼햄햅햇했행햐향허헉헌헐헒험헙헛헝헤헥헨헬헴헵헷헹혀혁현혈혐협혓혔형혜혠"],["c8a1","혤혭호혹혼홀홅홈홉홋홍홑화확환활홧황홰홱홴횃횅회획횐횔횝횟횡효횬횰횹횻후훅훈훌훑훔훗훙훠훤훨훰훵훼훽휀휄휑휘휙휜휠휨휩휫휭휴휵휸휼흄흇흉흐흑흔흖흗흘흙흠흡흣흥흩희흰흴흼흽힁히힉힌힐힘힙힛힝"],["caa1","伽佳假價加可呵哥嘉嫁家暇架枷柯歌珂痂稼苛茄街袈訶賈跏軻迦駕刻却各恪慤殼珏脚覺角閣侃刊墾奸姦干幹懇揀杆柬桿澗癎看磵稈竿簡肝艮艱諫間乫喝曷渴碣竭葛褐蝎鞨勘坎堪嵌感憾戡敢柑橄減甘疳監瞰紺邯鑑鑒龕"],["cba1","匣岬甲胛鉀閘剛堈姜岡崗康强彊慷江畺疆糠絳綱羌腔舡薑襁講鋼降鱇介价個凱塏愷愾慨改槪漑疥皆盖箇芥蓋豈鎧開喀客坑更粳羹醵倨去居巨拒据據擧渠炬祛距踞車遽鉅鋸乾件健巾建愆楗腱虔蹇鍵騫乞傑杰桀儉劍劒檢"],["cca1","瞼鈐黔劫怯迲偈憩揭擊格檄激膈覡隔堅牽犬甄絹繭肩見譴遣鵑抉決潔結缺訣兼慊箝謙鉗鎌京俓倞傾儆勁勍卿坰境庚徑慶憬擎敬景暻更梗涇炅烱璟璥瓊痙硬磬竟競絅經耕耿脛莖警輕逕鏡頃頸驚鯨係啓堺契季屆悸戒桂械"],["cda1","棨溪界癸磎稽系繫繼計誡谿階鷄古叩告呱固姑孤尻庫拷攷故敲暠枯槁沽痼皐睾稿羔考股膏苦苽菰藁蠱袴誥賈辜錮雇顧高鼓哭斛曲梏穀谷鵠困坤崑昆梱棍滾琨袞鯤汨滑骨供公共功孔工恐恭拱控攻珙空蚣貢鞏串寡戈果瓜"],["cea1","科菓誇課跨過鍋顆廓槨藿郭串冠官寬慣棺款灌琯瓘管罐菅觀貫關館刮恝括适侊光匡壙廣曠洸炚狂珖筐胱鑛卦掛罫乖傀塊壞怪愧拐槐魁宏紘肱轟交僑咬喬嬌嶠巧攪敎校橋狡皎矯絞翹膠蕎蛟較轎郊餃驕鮫丘久九仇俱具勾"],["cfa1","區口句咎嘔坵垢寇嶇廐懼拘救枸柩構歐毆毬求溝灸狗玖球瞿矩究絿耉臼舅舊苟衢謳購軀逑邱鉤銶駒驅鳩鷗龜國局菊鞠鞫麴君窘群裙軍郡堀屈掘窟宮弓穹窮芎躬倦券勸卷圈拳捲權淃眷厥獗蕨蹶闕机櫃潰詭軌饋句晷歸貴"],["d0a1","鬼龜叫圭奎揆槻珪硅窺竅糾葵規赳逵閨勻均畇筠菌鈞龜橘克剋劇戟棘極隙僅劤勤懃斤根槿瑾筋芹菫覲謹近饉契今妗擒昑檎琴禁禽芩衾衿襟金錦伋及急扱汲級給亘兢矜肯企伎其冀嗜器圻基埼夔奇妓寄岐崎己幾忌技旗旣"],["d1a1","朞期杞棋棄機欺氣汽沂淇玘琦琪璂璣畸畿碁磯祁祇祈祺箕紀綺羈耆耭肌記譏豈起錡錤飢饑騎騏驥麒緊佶吉拮桔金喫儺喇奈娜懦懶拏拿癩",5,"那樂",4,"諾酪駱亂卵暖欄煖爛蘭難鸞捏捺南嵐枏楠湳濫男藍襤拉"],["d2a1","納臘蠟衲囊娘廊",4,"乃來內奈柰耐冷女年撚秊念恬拈捻寧寗努勞奴弩怒擄櫓爐瑙盧",5,"駑魯",10,"濃籠聾膿農惱牢磊腦賂雷尿壘",7,"嫩訥杻紐勒",5,"能菱陵尼泥匿溺多茶"],["d3a1","丹亶但單團壇彖斷旦檀段湍短端簞緞蛋袒鄲鍛撻澾獺疸達啖坍憺擔曇淡湛潭澹痰聃膽蕁覃談譚錟沓畓答踏遝唐堂塘幢戇撞棠當糖螳黨代垈坮大對岱帶待戴擡玳臺袋貸隊黛宅德悳倒刀到圖堵塗導屠島嶋度徒悼挑掉搗桃"],["d4a1","棹櫂淘渡滔濤燾盜睹禱稻萄覩賭跳蹈逃途道都鍍陶韜毒瀆牘犢獨督禿篤纛讀墩惇敦旽暾沌焞燉豚頓乭突仝冬凍動同憧東桐棟洞潼疼瞳童胴董銅兜斗杜枓痘竇荳讀豆逗頭屯臀芚遁遯鈍得嶝橙燈登等藤謄鄧騰喇懶拏癩羅"],["d5a1","蘿螺裸邏樂洛烙珞絡落諾酪駱丹亂卵欄欒瀾爛蘭鸞剌辣嵐擥攬欖濫籃纜藍襤覽拉臘蠟廊朗浪狼琅瑯螂郞來崍徠萊冷掠略亮倆兩凉梁樑粮粱糧良諒輛量侶儷勵呂廬慮戾旅櫚濾礪藜蠣閭驢驪麗黎力曆歷瀝礫轢靂憐戀攣漣"],["d6a1","煉璉練聯蓮輦連鍊冽列劣洌烈裂廉斂殮濂簾獵令伶囹寧岺嶺怜玲笭羚翎聆逞鈴零靈領齡例澧禮醴隷勞怒撈擄櫓潞瀘爐盧老蘆虜路輅露魯鷺鹵碌祿綠菉錄鹿麓論壟弄朧瀧瓏籠聾儡瀨牢磊賂賚賴雷了僚寮廖料燎療瞭聊蓼"],["d7a1","遼鬧龍壘婁屢樓淚漏瘻累縷蔞褸鏤陋劉旒柳榴流溜瀏琉瑠留瘤硫謬類六戮陸侖倫崙淪綸輪律慄栗率隆勒肋凜凌楞稜綾菱陵俚利厘吏唎履悧李梨浬犁狸理璃異痢籬罹羸莉裏裡里釐離鯉吝潾燐璘藺躪隣鱗麟林淋琳臨霖砬"],["d8a1","立笠粒摩瑪痲碼磨馬魔麻寞幕漠膜莫邈万卍娩巒彎慢挽晩曼滿漫灣瞞萬蔓蠻輓饅鰻唜抹末沫茉襪靺亡妄忘忙望網罔芒茫莽輞邙埋妹媒寐昧枚梅每煤罵買賣邁魅脈貊陌驀麥孟氓猛盲盟萌冪覓免冕勉棉沔眄眠綿緬面麵滅"],["d9a1","蔑冥名命明暝椧溟皿瞑茗蓂螟酩銘鳴袂侮冒募姆帽慕摸摹暮某模母毛牟牡瑁眸矛耗芼茅謀謨貌木沐牧目睦穆鶩歿沒夢朦蒙卯墓妙廟描昴杳渺猫竗苗錨務巫憮懋戊拇撫无楙武毋無珷畝繆舞茂蕪誣貿霧鵡墨默們刎吻問文"],["daa1","汶紊紋聞蚊門雯勿沕物味媚尾嵋彌微未梶楣渼湄眉米美薇謎迷靡黴岷悶愍憫敏旻旼民泯玟珉緡閔密蜜謐剝博拍搏撲朴樸泊珀璞箔粕縛膊舶薄迫雹駁伴半反叛拌搬攀斑槃泮潘班畔瘢盤盼磐磻礬絆般蟠返頒飯勃拔撥渤潑"],["dba1","發跋醱鉢髮魃倣傍坊妨尨幇彷房放方旁昉枋榜滂磅紡肪膀舫芳蒡蚌訪謗邦防龐倍俳北培徘拜排杯湃焙盃背胚裴裵褙賠輩配陪伯佰帛柏栢白百魄幡樊煩燔番磻繁蕃藩飜伐筏罰閥凡帆梵氾汎泛犯範范法琺僻劈壁擘檗璧癖"],["dca1","碧蘗闢霹便卞弁變辨辯邊別瞥鱉鼈丙倂兵屛幷昞昺柄棅炳甁病秉竝輧餠騈保堡報寶普步洑湺潽珤甫菩補褓譜輔伏僕匐卜宓復服福腹茯蔔複覆輹輻馥鰒本乶俸奉封峯峰捧棒烽熢琫縫蓬蜂逢鋒鳳不付俯傅剖副否咐埠夫婦"],["dda1","孚孵富府復扶敷斧浮溥父符簿缶腐腑膚艀芙莩訃負賦賻赴趺部釜阜附駙鳧北分吩噴墳奔奮忿憤扮昐汾焚盆粉糞紛芬賁雰不佛弗彿拂崩朋棚硼繃鵬丕備匕匪卑妃婢庇悲憊扉批斐枇榧比毖毗毘沸泌琵痺砒碑秕秘粃緋翡肥"],["dea1","脾臂菲蜚裨誹譬費鄙非飛鼻嚬嬪彬斌檳殯浜濱瀕牝玭貧賓頻憑氷聘騁乍事些仕伺似使俟僿史司唆嗣四士奢娑寫寺射巳師徙思捨斜斯柶査梭死沙泗渣瀉獅砂社祀祠私篩紗絲肆舍莎蓑蛇裟詐詞謝賜赦辭邪飼駟麝削數朔索"],["dfa1","傘刪山散汕珊産疝算蒜酸霰乷撒殺煞薩三參杉森渗芟蔘衫揷澁鈒颯上傷像償商喪嘗孀尙峠常床庠廂想桑橡湘爽牀狀相祥箱翔裳觴詳象賞霜塞璽賽嗇塞穡索色牲生甥省笙墅壻嶼序庶徐恕抒捿敍暑曙書栖棲犀瑞筮絮緖署"],["e0a1","胥舒薯西誓逝鋤黍鼠夕奭席惜昔晳析汐淅潟石碩蓆釋錫仙僊先善嬋宣扇敾旋渲煽琁瑄璇璿癬禪線繕羨腺膳船蘚蟬詵跣選銑鐥饍鮮卨屑楔泄洩渫舌薛褻設說雪齧剡暹殲纖蟾贍閃陝攝涉燮葉城姓宬性惺成星晟猩珹盛省筬"],["e1a1","聖聲腥誠醒世勢歲洗稅笹細說貰召嘯塑宵小少巢所掃搔昭梳沼消溯瀟炤燒甦疏疎瘙笑篠簫素紹蔬蕭蘇訴逍遡邵銷韶騷俗屬束涑粟續謖贖速孫巽損蓀遜飡率宋悚松淞訟誦送頌刷殺灑碎鎖衰釗修受嗽囚垂壽嫂守岫峀帥愁"],["e2a1","戍手授搜收數樹殊水洙漱燧狩獸琇璲瘦睡秀穗竪粹綏綬繡羞脩茱蒐蓚藪袖誰讐輸遂邃酬銖銹隋隧隨雖需須首髓鬚叔塾夙孰宿淑潚熟琡璹肅菽巡徇循恂旬栒楯橓殉洵淳珣盾瞬筍純脣舜荀蓴蕣詢諄醇錞順馴戌術述鉥崇崧"],["e3a1","嵩瑟膝蝨濕拾習褶襲丞乘僧勝升承昇繩蠅陞侍匙嘶始媤尸屎屍市弑恃施是時枾柴猜矢示翅蒔蓍視試詩諡豕豺埴寔式息拭植殖湜熄篒蝕識軾食飾伸侁信呻娠宸愼新晨燼申神紳腎臣莘薪藎蜃訊身辛辰迅失室實悉審尋心沁"],["e4a1","沈深瀋甚芯諶什十拾雙氏亞俄兒啞娥峨我牙芽莪蛾衙訝阿雅餓鴉鵝堊岳嶽幄惡愕握樂渥鄂鍔顎鰐齷安岸按晏案眼雁鞍顔鮟斡謁軋閼唵岩巖庵暗癌菴闇壓押狎鴨仰央怏昻殃秧鴦厓哀埃崖愛曖涯碍艾隘靄厄扼掖液縊腋額"],["e5a1","櫻罌鶯鸚也倻冶夜惹揶椰爺耶若野弱掠略約若葯蒻藥躍亮佯兩凉壤孃恙揚攘敭暘梁楊樣洋瀁煬痒瘍禳穰糧羊良襄諒讓釀陽量養圄御於漁瘀禦語馭魚齬億憶抑檍臆偃堰彦焉言諺孼蘖俺儼嚴奄掩淹嶪業円予余勵呂女如廬"],["e6a1","旅歟汝濾璵礖礪與艅茹輿轝閭餘驪麗黎亦力域役易曆歷疫繹譯轢逆驛嚥堧姸娟宴年延憐戀捐挻撚椽沇沿涎涓淵演漣烟然煙煉燃燕璉硏硯秊筵緣練縯聯衍軟輦蓮連鉛鍊鳶列劣咽悅涅烈熱裂說閱厭廉念捻染殮炎焰琰艶苒"],["e7a1","簾閻髥鹽曄獵燁葉令囹塋寧嶺嶸影怜映暎楹榮永泳渶潁濚瀛瀯煐營獰玲瑛瑩瓔盈穎纓羚聆英詠迎鈴鍈零霙靈領乂倪例刈叡曳汭濊猊睿穢芮藝蘂禮裔詣譽豫醴銳隸霓預五伍俉傲午吾吳嗚塢墺奧娛寤悟惡懊敖旿晤梧汚澳"],["e8a1","烏熬獒筽蜈誤鰲鼇屋沃獄玉鈺溫瑥瘟穩縕蘊兀壅擁瓮甕癰翁邕雍饔渦瓦窩窪臥蛙蝸訛婉完宛梡椀浣玩琓琬碗緩翫脘腕莞豌阮頑曰往旺枉汪王倭娃歪矮外嵬巍猥畏了僚僥凹堯夭妖姚寥寮尿嶢拗搖撓擾料曜樂橈燎燿瑤療"],["e9a1","窈窯繇繞耀腰蓼蟯要謠遙遼邀饒慾欲浴縟褥辱俑傭冗勇埇墉容庸慂榕涌湧溶熔瑢用甬聳茸蓉踊鎔鏞龍于佑偶優又友右宇寓尤愚憂旴牛玗瑀盂祐禑禹紆羽芋藕虞迂遇郵釪隅雨雩勖彧旭昱栯煜稶郁頊云暈橒殞澐熉耘芸蕓"],["eaa1","運隕雲韻蔚鬱亐熊雄元原員圓園垣媛嫄寃怨愿援沅洹湲源爰猿瑗苑袁轅遠阮院願鴛月越鉞位偉僞危圍委威尉慰暐渭爲瑋緯胃萎葦蔿蝟衛褘謂違韋魏乳侑儒兪劉唯喩孺宥幼幽庾悠惟愈愉揄攸有杻柔柚柳楡楢油洧流游溜"],["eba1","濡猶猷琉瑜由留癒硫紐維臾萸裕誘諛諭踰蹂遊逾遺酉釉鍮類六堉戮毓肉育陸倫允奫尹崙淪潤玧胤贇輪鈗閏律慄栗率聿戎瀜絨融隆垠恩慇殷誾銀隱乙吟淫蔭陰音飮揖泣邑凝應膺鷹依倚儀宜意懿擬椅毅疑矣義艤薏蟻衣誼"],["eca1","議醫二以伊利吏夷姨履已弛彛怡易李梨泥爾珥理異痍痢移罹而耳肄苡荑裏裡貽貳邇里離飴餌匿溺瀷益翊翌翼謚人仁刃印吝咽因姻寅引忍湮燐璘絪茵藺蚓認隣靭靷鱗麟一佚佾壹日溢逸鎰馹任壬妊姙恁林淋稔臨荏賃入卄"],["eda1","立笠粒仍剩孕芿仔刺咨姉姿子字孜恣慈滋炙煮玆瓷疵磁紫者自茨蔗藉諮資雌作勺嚼斫昨灼炸爵綽芍酌雀鵲孱棧殘潺盞岑暫潛箴簪蠶雜丈仗匠場墻壯奬將帳庄張掌暲杖樟檣欌漿牆狀獐璋章粧腸臟臧莊葬蔣薔藏裝贓醬長"],["eea1","障再哉在宰才材栽梓渽滓災縡裁財載齋齎爭箏諍錚佇低儲咀姐底抵杵楮樗沮渚狙猪疽箸紵苧菹著藷詛貯躇這邸雎齟勣吊嫡寂摘敵滴狄炙的積笛籍績翟荻謫賊赤跡蹟迪迹適鏑佃佺傳全典前剪塡塼奠專展廛悛戰栓殿氈澱"],["efa1","煎琠田甸畑癲筌箋箭篆纏詮輾轉鈿銓錢鐫電顚顫餞切截折浙癤竊節絶占岾店漸点粘霑鮎點接摺蝶丁井亭停偵呈姃定幀庭廷征情挺政整旌晶晸柾楨檉正汀淀淨渟湞瀞炡玎珽町睛碇禎程穽精綎艇訂諪貞鄭酊釘鉦鋌錠霆靖"],["f0a1","靜頂鼎制劑啼堤帝弟悌提梯濟祭第臍薺製諸蹄醍除際霽題齊俎兆凋助嘲弔彫措操早晁曺曹朝條棗槽漕潮照燥爪璪眺祖祚租稠窕粗糟組繰肇藻蚤詔調趙躁造遭釣阻雕鳥族簇足鏃存尊卒拙猝倧宗從悰慫棕淙琮種終綜縱腫"],["f1a1","踪踵鍾鐘佐坐左座挫罪主住侏做姝胄呪周嗾奏宙州廚晝朱柱株注洲湊澍炷珠疇籌紂紬綢舟蛛註誅走躊輳週酎酒鑄駐竹粥俊儁准埈寯峻晙樽浚準濬焌畯竣蠢逡遵雋駿茁中仲衆重卽櫛楫汁葺增憎曾拯烝甑症繒蒸證贈之只"],["f2a1","咫地址志持指摯支旨智枝枳止池沚漬知砥祉祗紙肢脂至芝芷蜘誌識贄趾遲直稙稷織職唇嗔塵振搢晉晋桭榛殄津溱珍瑨璡畛疹盡眞瞋秦縉縝臻蔯袗診賑軫辰進鎭陣陳震侄叱姪嫉帙桎瓆疾秩窒膣蛭質跌迭斟朕什執潗緝輯"],["f3a1","鏶集徵懲澄且侘借叉嗟嵯差次此磋箚茶蹉車遮捉搾着窄錯鑿齪撰澯燦璨瓚竄簒纂粲纘讚贊鑽餐饌刹察擦札紮僭參塹慘慙懺斬站讒讖倉倡創唱娼廠彰愴敞昌昶暢槍滄漲猖瘡窓脹艙菖蒼債埰寀寨彩採砦綵菜蔡采釵冊柵策"],["f4a1","責凄妻悽處倜刺剔尺慽戚拓擲斥滌瘠脊蹠陟隻仟千喘天川擅泉淺玔穿舛薦賤踐遷釧闡阡韆凸哲喆徹撤澈綴輟轍鐵僉尖沾添甛瞻簽籤詹諂堞妾帖捷牒疊睫諜貼輒廳晴淸聽菁請靑鯖切剃替涕滯締諦逮遞體初剿哨憔抄招梢"],["f5a1","椒楚樵炒焦硝礁礎秒稍肖艸苕草蕉貂超酢醋醮促囑燭矗蜀觸寸忖村邨叢塚寵悤憁摠總聰蔥銃撮催崔最墜抽推椎楸樞湫皺秋芻萩諏趨追鄒酋醜錐錘鎚雛騶鰍丑畜祝竺筑築縮蓄蹙蹴軸逐春椿瑃出朮黜充忠沖蟲衝衷悴膵萃"],["f6a1","贅取吹嘴娶就炊翠聚脆臭趣醉驟鷲側仄厠惻測層侈値嗤峙幟恥梔治淄熾痔痴癡稚穉緇緻置致蚩輜雉馳齒則勅飭親七柒漆侵寢枕沈浸琛砧針鍼蟄秤稱快他咤唾墮妥惰打拖朶楕舵陀馱駝倬卓啄坼度托拓擢晫柝濁濯琢琸託"],["f7a1","鐸呑嘆坦彈憚歎灘炭綻誕奪脫探眈耽貪塔搭榻宕帑湯糖蕩兌台太怠態殆汰泰笞胎苔跆邰颱宅擇澤撑攄兎吐土討慟桶洞痛筒統通堆槌腿褪退頹偸套妬投透鬪慝特闖坡婆巴把播擺杷波派爬琶破罷芭跛頗判坂板版瓣販辦鈑"],["f8a1","阪八叭捌佩唄悖敗沛浿牌狽稗覇貝彭澎烹膨愎便偏扁片篇編翩遍鞭騙貶坪平枰萍評吠嬖幣廢弊斃肺蔽閉陛佈包匍匏咆哺圃布怖抛抱捕暴泡浦疱砲胞脯苞葡蒲袍褒逋鋪飽鮑幅暴曝瀑爆輻俵剽彪慓杓標漂瓢票表豹飇飄驃"],["f9a1","品稟楓諷豊風馮彼披疲皮被避陂匹弼必泌珌畢疋筆苾馝乏逼下何厦夏廈昰河瑕荷蝦賀遐霞鰕壑學虐謔鶴寒恨悍旱汗漢澣瀚罕翰閑閒限韓割轄函含咸啣喊檻涵緘艦銜陷鹹合哈盒蛤閤闔陜亢伉姮嫦巷恒抗杭桁沆港缸肛航"],["faa1","行降項亥偕咳垓奚孩害懈楷海瀣蟹解該諧邂駭骸劾核倖幸杏荇行享向嚮珦鄕響餉饗香噓墟虛許憲櫶獻軒歇險驗奕爀赫革俔峴弦懸晛泫炫玄玹現眩睍絃絢縣舷衒見賢鉉顯孑穴血頁嫌俠協夾峽挾浹狹脅脇莢鋏頰亨兄刑型"],["fba1","形泂滎瀅灐炯熒珩瑩荊螢衡逈邢鎣馨兮彗惠慧暳蕙蹊醯鞋乎互呼壕壺好岵弧戶扈昊晧毫浩淏湖滸澔濠濩灝狐琥瑚瓠皓祜糊縞胡芦葫蒿虎號蝴護豪鎬頀顥惑或酷婚昏混渾琿魂忽惚笏哄弘汞泓洪烘紅虹訌鴻化和嬅樺火畵"],["fca1","禍禾花華話譁貨靴廓擴攫確碻穫丸喚奐宦幻患換歡晥桓渙煥環紈還驩鰥活滑猾豁闊凰幌徨恍惶愰慌晃晄榥況湟滉潢煌璜皇篁簧荒蝗遑隍黃匯回廻徊恢悔懷晦會檜淮澮灰獪繪膾茴蛔誨賄劃獲宖橫鐄哮嚆孝效斅曉梟涍淆"],["fda1","爻肴酵驍侯候厚后吼喉嗅帿後朽煦珝逅勛勳塤壎焄熏燻薰訓暈薨喧暄煊萱卉喙毁彙徽揮暉煇諱輝麾休携烋畦虧恤譎鷸兇凶匈洶胸黑昕欣炘痕吃屹紇訖欠欽歆吸恰洽翕興僖凞喜噫囍姬嬉希憙憘戱晞曦熙熹熺犧禧稀羲詰"]]')},72324:e=>{"use strict";e.exports=JSON.parse('[["0","\\u0000",127],["a140"," ,、。.‧;:?!︰…‥﹐﹑﹒·﹔﹕﹖﹗|–︱—︳╴︴﹏()︵︶{}︷︸〔〕︹︺【】︻︼《》︽︾〈〉︿﹀「」﹁﹂『』﹃﹄﹙﹚"],["a1a1","﹛﹜﹝﹞‘’“”〝〞‵′#&*※§〃○●△▲◎☆★◇◆□■▽▼㊣℅¯ ̄_ˍ﹉﹊﹍﹎﹋﹌﹟﹠﹡+-×÷±√<>=≦≧≠∞≒≡﹢",4,"~∩∪⊥∠∟⊿㏒㏑∫∮∵∴♀♂⊕⊙↑↓←→↖↗↙↘∥∣/"],["a240","\∕﹨$¥〒¢£%@℃℉﹩﹪﹫㏕㎜㎝㎞㏎㎡㎎㎏㏄°兙兛兞兝兡兣嗧瓩糎▁",7,"▏▎▍▌▋▊▉┼┴┬┤├▔─│▕┌┐└┘╭"],["a2a1","╮╰╯═╞╪╡◢◣◥◤╱╲╳0",9,"Ⅰ",9,"〡",8,"十卄卅A",25,"a",21],["a340","wxyzΑ",16,"Σ",6,"α",16,"σ",6,"ㄅ",10],["a3a1","ㄐ",25,"˙ˉˊˇˋ"],["a3e1","€"],["a440","一乙丁七乃九了二人儿入八几刀刁力匕十卜又三下丈上丫丸凡久么也乞于亡兀刃勺千叉口土士夕大女子孑孓寸小尢尸山川工己已巳巾干廾弋弓才"],["a4a1","丑丐不中丰丹之尹予云井互五亢仁什仃仆仇仍今介仄元允內六兮公冗凶分切刈勻勾勿化匹午升卅卞厄友及反壬天夫太夭孔少尤尺屯巴幻廿弔引心戈戶手扎支文斗斤方日曰月木欠止歹毋比毛氏水火爪父爻片牙牛犬王丙"],["a540","世丕且丘主乍乏乎以付仔仕他仗代令仙仞充兄冉冊冬凹出凸刊加功包匆北匝仟半卉卡占卯卮去可古右召叮叩叨叼司叵叫另只史叱台句叭叻四囚外"],["a5a1","央失奴奶孕它尼巨巧左市布平幼弁弘弗必戊打扔扒扑斥旦朮本未末札正母民氐永汁汀氾犯玄玉瓜瓦甘生用甩田由甲申疋白皮皿目矛矢石示禾穴立丞丟乒乓乩亙交亦亥仿伉伙伊伕伍伐休伏仲件任仰仳份企伋光兇兆先全"],["a640","共再冰列刑划刎刖劣匈匡匠印危吉吏同吊吐吁吋各向名合吃后吆吒因回囝圳地在圭圬圯圩夙多夷夸妄奸妃好她如妁字存宇守宅安寺尖屹州帆并年"],["a6a1","式弛忙忖戎戌戍成扣扛托收早旨旬旭曲曳有朽朴朱朵次此死氖汝汗汙江池汐汕污汛汍汎灰牟牝百竹米糸缶羊羽老考而耒耳聿肉肋肌臣自至臼舌舛舟艮色艾虫血行衣西阡串亨位住佇佗佞伴佛何估佐佑伽伺伸佃佔似但佣"],["a740","作你伯低伶余佝佈佚兌克免兵冶冷別判利刪刨劫助努劬匣即卵吝吭吞吾否呎吧呆呃吳呈呂君吩告吹吻吸吮吵吶吠吼呀吱含吟听囪困囤囫坊坑址坍"],["a7a1","均坎圾坐坏圻壯夾妝妒妨妞妣妙妖妍妤妓妊妥孝孜孚孛完宋宏尬局屁尿尾岐岑岔岌巫希序庇床廷弄弟彤形彷役忘忌志忍忱快忸忪戒我抄抗抖技扶抉扭把扼找批扳抒扯折扮投抓抑抆改攻攸旱更束李杏材村杜杖杞杉杆杠"],["a840","杓杗步每求汞沙沁沈沉沅沛汪決沐汰沌汨沖沒汽沃汲汾汴沆汶沍沔沘沂灶灼災灸牢牡牠狄狂玖甬甫男甸皂盯矣私秀禿究系罕肖肓肝肘肛肚育良芒"],["a8a1","芋芍見角言谷豆豕貝赤走足身車辛辰迂迆迅迄巡邑邢邪邦那酉釆里防阮阱阪阬並乖乳事些亞享京佯依侍佳使佬供例來侃佰併侈佩佻侖佾侏侑佺兔兒兕兩具其典冽函刻券刷刺到刮制剁劾劻卒協卓卑卦卷卸卹取叔受味呵"],["a940","咖呸咕咀呻呷咄咒咆呼咐呱呶和咚呢周咋命咎固垃坷坪坩坡坦坤坼夜奉奇奈奄奔妾妻委妹妮姑姆姐姍始姓姊妯妳姒姅孟孤季宗定官宜宙宛尚屈居"],["a9a1","屆岷岡岸岩岫岱岳帘帚帖帕帛帑幸庚店府底庖延弦弧弩往征彿彼忝忠忽念忿怏怔怯怵怖怪怕怡性怩怫怛或戕房戾所承拉拌拄抿拂抹拒招披拓拔拋拈抨抽押拐拙拇拍抵拚抱拘拖拗拆抬拎放斧於旺昔易昌昆昂明昀昏昕昊"],["aa40","昇服朋杭枋枕東果杳杷枇枝林杯杰板枉松析杵枚枓杼杪杲欣武歧歿氓氛泣注泳沱泌泥河沽沾沼波沫法泓沸泄油況沮泗泅泱沿治泡泛泊沬泯泜泖泠"],["aaa1","炕炎炒炊炙爬爭爸版牧物狀狎狙狗狐玩玨玟玫玥甽疝疙疚的盂盲直知矽社祀祁秉秈空穹竺糾罔羌羋者肺肥肢肱股肫肩肴肪肯臥臾舍芳芝芙芭芽芟芹花芬芥芯芸芣芰芾芷虎虱初表軋迎返近邵邸邱邶采金長門阜陀阿阻附"],["ab40","陂隹雨青非亟亭亮信侵侯便俠俑俏保促侶俘俟俊俗侮俐俄係俚俎俞侷兗冒冑冠剎剃削前剌剋則勇勉勃勁匍南卻厚叛咬哀咨哎哉咸咦咳哇哂咽咪品"],["aba1","哄哈咯咫咱咻咩咧咿囿垂型垠垣垢城垮垓奕契奏奎奐姜姘姿姣姨娃姥姪姚姦威姻孩宣宦室客宥封屎屏屍屋峙峒巷帝帥帟幽庠度建弈弭彥很待徊律徇後徉怒思怠急怎怨恍恰恨恢恆恃恬恫恪恤扁拜挖按拼拭持拮拽指拱拷"],["ac40","拯括拾拴挑挂政故斫施既春昭映昧是星昨昱昤曷柿染柱柔某柬架枯柵柩柯柄柑枴柚查枸柏柞柳枰柙柢柝柒歪殃殆段毒毗氟泉洋洲洪流津洌洱洞洗"],["aca1","活洽派洶洛泵洹洧洸洩洮洵洎洫炫為炳炬炯炭炸炮炤爰牲牯牴狩狠狡玷珊玻玲珍珀玳甚甭畏界畎畋疫疤疥疢疣癸皆皇皈盈盆盃盅省盹相眉看盾盼眇矜砂研砌砍祆祉祈祇禹禺科秒秋穿突竿竽籽紂紅紀紉紇約紆缸美羿耄"],["ad40","耐耍耑耶胖胥胚胃胄背胡胛胎胞胤胝致舢苧范茅苣苛苦茄若茂茉苒苗英茁苜苔苑苞苓苟苯茆虐虹虻虺衍衫要觔計訂訃貞負赴赳趴軍軌述迦迢迪迥"],["ada1","迭迫迤迨郊郎郁郃酋酊重閂限陋陌降面革韋韭音頁風飛食首香乘亳倌倍倣俯倦倥俸倩倖倆值借倚倒們俺倀倔倨俱倡個候倘俳修倭倪俾倫倉兼冤冥冢凍凌准凋剖剜剔剛剝匪卿原厝叟哨唐唁唷哼哥哲唆哺唔哩哭員唉哮哪"],["ae40","哦唧唇哽唏圃圄埂埔埋埃堉夏套奘奚娑娘娜娟娛娓姬娠娣娩娥娌娉孫屘宰害家宴宮宵容宸射屑展屐峭峽峻峪峨峰島崁峴差席師庫庭座弱徒徑徐恙"],["aea1","恣恥恐恕恭恩息悄悟悚悍悔悌悅悖扇拳挈拿捎挾振捕捂捆捏捉挺捐挽挪挫挨捍捌效敉料旁旅時晉晏晃晒晌晅晁書朔朕朗校核案框桓根桂桔栩梳栗桌桑栽柴桐桀格桃株桅栓栘桁殊殉殷氣氧氨氦氤泰浪涕消涇浦浸海浙涓"],["af40","浬涉浮浚浴浩涌涊浹涅浥涔烊烘烤烙烈烏爹特狼狹狽狸狷玆班琉珮珠珪珞畔畝畜畚留疾病症疲疳疽疼疹痂疸皋皰益盍盎眩真眠眨矩砰砧砸砝破砷"],["afa1","砥砭砠砟砲祕祐祠祟祖神祝祗祚秤秣秧租秦秩秘窄窈站笆笑粉紡紗紋紊素索純紐紕級紜納紙紛缺罟羔翅翁耆耘耕耙耗耽耿胱脂胰脅胭胴脆胸胳脈能脊胼胯臭臬舀舐航舫舨般芻茫荒荔荊茸荐草茵茴荏茲茹茶茗荀茱茨荃"],["b040","虔蚊蚪蚓蚤蚩蚌蚣蚜衰衷袁袂衽衹記訐討訌訕訊託訓訖訏訑豈豺豹財貢起躬軒軔軏辱送逆迷退迺迴逃追逅迸邕郡郝郢酒配酌釘針釗釜釙閃院陣陡"],["b0a1","陛陝除陘陞隻飢馬骨高鬥鬲鬼乾偺偽停假偃偌做偉健偶偎偕偵側偷偏倏偯偭兜冕凰剪副勒務勘動匐匏匙匿區匾參曼商啪啦啄啞啡啃啊唱啖問啕唯啤唸售啜唬啣唳啁啗圈國圉域堅堊堆埠埤基堂堵執培夠奢娶婁婉婦婪婀"],["b140","娼婢婚婆婊孰寇寅寄寂宿密尉專將屠屜屝崇崆崎崛崖崢崑崩崔崙崤崧崗巢常帶帳帷康庸庶庵庾張強彗彬彩彫得徙從徘御徠徜恿患悉悠您惋悴惦悽"],["b1a1","情悻悵惜悼惘惕惆惟悸惚惇戚戛扈掠控捲掖探接捷捧掘措捱掩掉掃掛捫推掄授掙採掬排掏掀捻捩捨捺敝敖救教敗啟敏敘敕敔斜斛斬族旋旌旎晝晚晤晨晦晞曹勗望梁梯梢梓梵桿桶梱梧梗械梃棄梭梆梅梔條梨梟梡梂欲殺"],["b240","毫毬氫涎涼淳淙液淡淌淤添淺清淇淋涯淑涮淞淹涸混淵淅淒渚涵淚淫淘淪深淮淨淆淄涪淬涿淦烹焉焊烽烯爽牽犁猜猛猖猓猙率琅琊球理現琍瓠瓶"],["b2a1","瓷甜產略畦畢異疏痔痕疵痊痍皎盔盒盛眷眾眼眶眸眺硫硃硎祥票祭移窒窕笠笨笛第符笙笞笮粒粗粕絆絃統紮紹紼絀細紳組累終紲紱缽羞羚翌翎習耜聊聆脯脖脣脫脩脰脤舂舵舷舶船莎莞莘荸莢莖莽莫莒莊莓莉莠荷荻荼"],["b340","莆莧處彪蛇蛀蚶蛄蚵蛆蛋蚱蚯蛉術袞袈被袒袖袍袋覓規訪訝訣訥許設訟訛訢豉豚販責貫貨貪貧赧赦趾趺軛軟這逍通逗連速逝逐逕逞造透逢逖逛途"],["b3a1","部郭都酗野釵釦釣釧釭釩閉陪陵陳陸陰陴陶陷陬雀雪雩章竟頂頃魚鳥鹵鹿麥麻傢傍傅備傑傀傖傘傚最凱割剴創剩勞勝勛博厥啻喀喧啼喊喝喘喂喜喪喔喇喋喃喳單喟唾喲喚喻喬喱啾喉喫喙圍堯堪場堤堰報堡堝堠壹壺奠"],["b440","婷媚婿媒媛媧孳孱寒富寓寐尊尋就嵌嵐崴嵇巽幅帽幀幃幾廊廁廂廄弼彭復循徨惑惡悲悶惠愜愣惺愕惰惻惴慨惱愎惶愉愀愒戟扉掣掌描揀揩揉揆揍"],["b4a1","插揣提握揖揭揮捶援揪換摒揚揹敞敦敢散斑斐斯普晰晴晶景暑智晾晷曾替期朝棺棕棠棘棗椅棟棵森棧棹棒棲棣棋棍植椒椎棉棚楮棻款欺欽殘殖殼毯氮氯氬港游湔渡渲湧湊渠渥渣減湛湘渤湖湮渭渦湯渴湍渺測湃渝渾滋"],["b540","溉渙湎湣湄湲湩湟焙焚焦焰無然煮焜牌犄犀猶猥猴猩琺琪琳琢琥琵琶琴琯琛琦琨甥甦畫番痢痛痣痙痘痞痠登發皖皓皴盜睏短硝硬硯稍稈程稅稀窘"],["b5a1","窗窖童竣等策筆筐筒答筍筋筏筑粟粥絞結絨絕紫絮絲絡給絢絰絳善翔翕耋聒肅腕腔腋腑腎脹腆脾腌腓腴舒舜菩萃菸萍菠菅萋菁華菱菴著萊菰萌菌菽菲菊萸萎萄菜萇菔菟虛蛟蛙蛭蛔蛛蛤蛐蛞街裁裂袱覃視註詠評詞証詁"],["b640","詔詛詐詆訴診訶詖象貂貯貼貳貽賁費賀貴買貶貿貸越超趁跎距跋跚跑跌跛跆軻軸軼辜逮逵週逸進逶鄂郵鄉郾酣酥量鈔鈕鈣鈉鈞鈍鈐鈇鈑閔閏開閑"],["b6a1","間閒閎隊階隋陽隅隆隍陲隄雁雅雄集雇雯雲韌項順須飧飪飯飩飲飭馮馭黃黍黑亂傭債傲傳僅傾催傷傻傯僇剿剷剽募勦勤勢勣匯嗟嗨嗓嗦嗎嗜嗇嗑嗣嗤嗯嗚嗡嗅嗆嗥嗉園圓塞塑塘塗塚塔填塌塭塊塢塒塋奧嫁嫉嫌媾媽媼"],["b740","媳嫂媲嵩嵯幌幹廉廈弒彙徬微愚意慈感想愛惹愁愈慎慌慄慍愾愴愧愍愆愷戡戢搓搾搞搪搭搽搬搏搜搔損搶搖搗搆敬斟新暗暉暇暈暖暄暘暍會榔業"],["b7a1","楚楷楠楔極椰概楊楨楫楞楓楹榆楝楣楛歇歲毀殿毓毽溢溯滓溶滂源溝滇滅溥溘溼溺溫滑準溜滄滔溪溧溴煎煙煩煤煉照煜煬煦煌煥煞煆煨煖爺牒猷獅猿猾瑯瑚瑕瑟瑞瑁琿瑙瑛瑜當畸瘀痰瘁痲痱痺痿痴痳盞盟睛睫睦睞督"],["b840","睹睪睬睜睥睨睢矮碎碰碗碘碌碉硼碑碓硿祺祿禁萬禽稜稚稠稔稟稞窟窠筷節筠筮筧粱粳粵經絹綑綁綏絛置罩罪署義羨群聖聘肆肄腱腰腸腥腮腳腫"],["b8a1","腹腺腦舅艇蒂葷落萱葵葦葫葉葬葛萼萵葡董葩葭葆虞虜號蛹蜓蜈蜇蜀蛾蛻蜂蜃蜆蜊衙裟裔裙補裘裝裡裊裕裒覜解詫該詳試詩詰誇詼詣誠話誅詭詢詮詬詹詻訾詨豢貊貉賊資賈賄貲賃賂賅跡跟跨路跳跺跪跤跦躲較載軾輊"],["b940","辟農運遊道遂達逼違遐遇遏過遍遑逾遁鄒鄗酬酪酩釉鈷鉗鈸鈽鉀鈾鉛鉋鉤鉑鈴鉉鉍鉅鈹鈿鉚閘隘隔隕雍雋雉雊雷電雹零靖靴靶預頑頓頊頒頌飼飴"],["b9a1","飽飾馳馱馴髡鳩麂鼎鼓鼠僧僮僥僖僭僚僕像僑僱僎僩兢凳劃劂匱厭嗾嘀嘛嘗嗽嘔嘆嘉嘍嘎嗷嘖嘟嘈嘐嗶團圖塵塾境墓墊塹墅塽壽夥夢夤奪奩嫡嫦嫩嫗嫖嫘嫣孵寞寧寡寥實寨寢寤察對屢嶄嶇幛幣幕幗幔廓廖弊彆彰徹慇"],["ba40","愿態慷慢慣慟慚慘慵截撇摘摔撤摸摟摺摑摧搴摭摻敲斡旗旖暢暨暝榜榨榕槁榮槓構榛榷榻榫榴槐槍榭槌榦槃榣歉歌氳漳演滾漓滴漩漾漠漬漏漂漢"],["baa1","滿滯漆漱漸漲漣漕漫漯澈漪滬漁滲滌滷熔熙煽熊熄熒爾犒犖獄獐瑤瑣瑪瑰瑭甄疑瘧瘍瘋瘉瘓盡監瞄睽睿睡磁碟碧碳碩碣禎福禍種稱窪窩竭端管箕箋筵算箝箔箏箸箇箄粹粽精綻綰綜綽綾綠緊綴網綱綺綢綿綵綸維緒緇綬"],["bb40","罰翠翡翟聞聚肇腐膀膏膈膊腿膂臧臺與舔舞艋蓉蒿蓆蓄蒙蒞蒲蒜蓋蒸蓀蓓蒐蒼蓑蓊蜿蜜蜻蜢蜥蜴蜘蝕蜷蜩裳褂裴裹裸製裨褚裯誦誌語誣認誡誓誤"],["bba1","說誥誨誘誑誚誧豪貍貌賓賑賒赫趙趕跼輔輒輕輓辣遠遘遜遣遙遞遢遝遛鄙鄘鄞酵酸酷酴鉸銀銅銘銖鉻銓銜銨鉼銑閡閨閩閣閥閤隙障際雌雒需靼鞅韶頗領颯颱餃餅餌餉駁骯骰髦魁魂鳴鳶鳳麼鼻齊億儀僻僵價儂儈儉儅凜"],["bc40","劇劈劉劍劊勰厲嘮嘻嘹嘲嘿嘴嘩噓噎噗噴嘶嘯嘰墀墟增墳墜墮墩墦奭嬉嫻嬋嫵嬌嬈寮寬審寫層履嶝嶔幢幟幡廢廚廟廝廣廠彈影德徵慶慧慮慝慕憂"],["bca1","慼慰慫慾憧憐憫憎憬憚憤憔憮戮摩摯摹撞撲撈撐撰撥撓撕撩撒撮播撫撚撬撙撢撳敵敷數暮暫暴暱樣樟槨樁樞標槽模樓樊槳樂樅槭樑歐歎殤毅毆漿潼澄潑潦潔澆潭潛潸潮澎潺潰潤澗潘滕潯潠潟熟熬熱熨牖犛獎獗瑩璋璃"],["bd40","瑾璀畿瘠瘩瘟瘤瘦瘡瘢皚皺盤瞎瞇瞌瞑瞋磋磅確磊碾磕碼磐稿稼穀稽稷稻窯窮箭箱範箴篆篇篁箠篌糊締練緯緻緘緬緝編緣線緞緩綞緙緲緹罵罷羯"],["bda1","翩耦膛膜膝膠膚膘蔗蔽蔚蓮蔬蔭蔓蔑蔣蔡蔔蓬蔥蓿蔆螂蝴蝶蝠蝦蝸蝨蝙蝗蝌蝓衛衝褐複褒褓褕褊誼諒談諄誕請諸課諉諂調誰論諍誶誹諛豌豎豬賠賞賦賤賬賭賢賣賜質賡赭趟趣踫踐踝踢踏踩踟踡踞躺輝輛輟輩輦輪輜輞"],["be40","輥適遮遨遭遷鄰鄭鄧鄱醇醉醋醃鋅銻銷鋪銬鋤鋁銳銼鋒鋇鋰銲閭閱霄霆震霉靠鞍鞋鞏頡頫頜颳養餓餒餘駝駐駟駛駑駕駒駙骷髮髯鬧魅魄魷魯鴆鴉"],["bea1","鴃麩麾黎墨齒儒儘儔儐儕冀冪凝劑劓勳噙噫噹噩噤噸噪器噥噱噯噬噢噶壁墾壇壅奮嬝嬴學寰導彊憲憑憩憊懍憶憾懊懈戰擅擁擋撻撼據擄擇擂操撿擒擔撾整曆曉暹曄曇暸樽樸樺橙橫橘樹橄橢橡橋橇樵機橈歙歷氅濂澱澡"],["bf40","濃澤濁澧澳激澹澶澦澠澴熾燉燐燒燈燕熹燎燙燜燃燄獨璜璣璘璟璞瓢甌甍瘴瘸瘺盧盥瞠瞞瞟瞥磨磚磬磧禦積穎穆穌穋窺篙簑築篤篛篡篩篦糕糖縊"],["bfa1","縑縈縛縣縞縝縉縐罹羲翰翱翮耨膳膩膨臻興艘艙蕊蕙蕈蕨蕩蕃蕉蕭蕪蕞螃螟螞螢融衡褪褲褥褫褡親覦諦諺諫諱謀諜諧諮諾謁謂諷諭諳諶諼豫豭貓賴蹄踱踴蹂踹踵輻輯輸輳辨辦遵遴選遲遼遺鄴醒錠錶鋸錳錯錢鋼錫錄錚"],["c040","錐錦錡錕錮錙閻隧隨險雕霎霑霖霍霓霏靛靜靦鞘頰頸頻頷頭頹頤餐館餞餛餡餚駭駢駱骸骼髻髭鬨鮑鴕鴣鴦鴨鴒鴛默黔龍龜優償儡儲勵嚎嚀嚐嚅嚇"],["c0a1","嚏壕壓壑壎嬰嬪嬤孺尷屨嶼嶺嶽嶸幫彌徽應懂懇懦懋戲戴擎擊擘擠擰擦擬擱擢擭斂斃曙曖檀檔檄檢檜櫛檣橾檗檐檠歜殮毚氈濘濱濟濠濛濤濫濯澀濬濡濩濕濮濰燧營燮燦燥燭燬燴燠爵牆獰獲璩環璦璨癆療癌盪瞳瞪瞰瞬"],["c140","瞧瞭矯磷磺磴磯礁禧禪穗窿簇簍篾篷簌篠糠糜糞糢糟糙糝縮績繆縷縲繃縫總縱繅繁縴縹繈縵縿縯罄翳翼聱聲聰聯聳臆臃膺臂臀膿膽臉膾臨舉艱薪"],["c1a1","薄蕾薜薑薔薯薛薇薨薊虧蟀蟑螳蟒蟆螫螻螺蟈蟋褻褶襄褸褽覬謎謗謙講謊謠謝謄謐豁谿豳賺賽購賸賻趨蹉蹋蹈蹊轄輾轂轅輿避遽還邁邂邀鄹醣醞醜鍍鎂錨鍵鍊鍥鍋錘鍾鍬鍛鍰鍚鍔闊闋闌闈闆隱隸雖霜霞鞠韓顆颶餵騁"],["c240","駿鮮鮫鮪鮭鴻鴿麋黏點黜黝黛鼾齋叢嚕嚮壙壘嬸彝懣戳擴擲擾攆擺擻擷斷曜朦檳檬櫃檻檸櫂檮檯歟歸殯瀉瀋濾瀆濺瀑瀏燻燼燾燸獷獵璧璿甕癖癘"],["c2a1","癒瞽瞿瞻瞼礎禮穡穢穠竄竅簫簧簪簞簣簡糧織繕繞繚繡繒繙罈翹翻職聶臍臏舊藏薩藍藐藉薰薺薹薦蟯蟬蟲蟠覆覲觴謨謹謬謫豐贅蹙蹣蹦蹤蹟蹕軀轉轍邇邃邈醫醬釐鎔鎊鎖鎢鎳鎮鎬鎰鎘鎚鎗闔闖闐闕離雜雙雛雞霤鞣鞦"],["c340","鞭韹額顏題顎顓颺餾餿餽餮馥騎髁鬃鬆魏魎魍鯊鯉鯽鯈鯀鵑鵝鵠黠鼕鼬儳嚥壞壟壢寵龐廬懲懷懶懵攀攏曠曝櫥櫝櫚櫓瀛瀟瀨瀚瀝瀕瀘爆爍牘犢獸"],["c3a1","獺璽瓊瓣疇疆癟癡矇礙禱穫穩簾簿簸簽簷籀繫繭繹繩繪羅繳羶羹羸臘藩藝藪藕藤藥藷蟻蠅蠍蟹蟾襠襟襖襞譁譜識證譚譎譏譆譙贈贊蹼蹲躇蹶蹬蹺蹴轔轎辭邊邋醱醮鏡鏑鏟鏃鏈鏜鏝鏖鏢鏍鏘鏤鏗鏨關隴難霪霧靡韜韻類"],["c440","願顛颼饅饉騖騙鬍鯨鯧鯖鯛鶉鵡鵲鵪鵬麒麗麓麴勸嚨嚷嚶嚴嚼壤孀孃孽寶巉懸懺攘攔攙曦朧櫬瀾瀰瀲爐獻瓏癢癥礦礪礬礫竇競籌籃籍糯糰辮繽繼"],["c4a1","纂罌耀臚艦藻藹蘑藺蘆蘋蘇蘊蠔蠕襤覺觸議譬警譯譟譫贏贍躉躁躅躂醴釋鐘鐃鏽闡霰飄饒饑馨騫騰騷騵鰓鰍鹹麵黨鼯齟齣齡儷儸囁囀囂夔屬巍懼懾攝攜斕曩櫻欄櫺殲灌爛犧瓖瓔癩矓籐纏續羼蘗蘭蘚蠣蠢蠡蠟襪襬覽譴"],["c540","護譽贓躊躍躋轟辯醺鐮鐳鐵鐺鐸鐲鐫闢霸霹露響顧顥饗驅驃驀騾髏魔魑鰭鰥鶯鶴鷂鶸麝黯鼙齜齦齧儼儻囈囊囉孿巔巒彎懿攤權歡灑灘玀瓤疊癮癬"],["c5a1","禳籠籟聾聽臟襲襯觼讀贖贗躑躓轡酈鑄鑑鑒霽霾韃韁顫饕驕驍髒鬚鱉鰱鰾鰻鷓鷗鼴齬齪龔囌巖戀攣攫攪曬欐瓚竊籤籣籥纓纖纔臢蘸蘿蠱變邐邏鑣鑠鑤靨顯饜驚驛驗髓體髑鱔鱗鱖鷥麟黴囑壩攬灞癱癲矗罐羈蠶蠹衢讓讒"],["c640","讖艷贛釀鑪靂靈靄韆顰驟鬢魘鱟鷹鷺鹼鹽鼇齷齲廳欖灣籬籮蠻觀躡釁鑲鑰顱饞髖鬣黌灤矚讚鑷韉驢驥纜讜躪釅鑽鑾鑼鱷鱸黷豔鑿鸚爨驪鬱鸛鸞籲"],["c940","乂乜凵匚厂万丌乇亍囗兀屮彳丏冇与丮亓仂仉仈冘勼卬厹圠夃夬尐巿旡殳毌气爿丱丼仨仜仩仡仝仚刌匜卌圢圣夗夯宁宄尒尻屴屳帄庀庂忉戉扐氕"],["c9a1","氶汃氿氻犮犰玊禸肊阞伎优伬仵伔仱伀价伈伝伂伅伢伓伄仴伒冱刓刉刐劦匢匟卍厊吇囡囟圮圪圴夼妀奼妅奻奾奷奿孖尕尥屼屺屻屾巟幵庄异弚彴忕忔忏扜扞扤扡扦扢扙扠扚扥旯旮朾朹朸朻机朿朼朳氘汆汒汜汏汊汔汋"],["ca40","汌灱牞犴犵玎甪癿穵网艸艼芀艽艿虍襾邙邗邘邛邔阢阤阠阣佖伻佢佉体佤伾佧佒佟佁佘伭伳伿佡冏冹刜刞刡劭劮匉卣卲厎厏吰吷吪呔呅吙吜吥吘"],["caa1","吽呏呁吨吤呇囮囧囥坁坅坌坉坋坒夆奀妦妘妠妗妎妢妐妏妧妡宎宒尨尪岍岏岈岋岉岒岊岆岓岕巠帊帎庋庉庌庈庍弅弝彸彶忒忑忐忭忨忮忳忡忤忣忺忯忷忻怀忴戺抃抌抎抏抔抇扱扻扺扰抁抈扷扽扲扴攷旰旴旳旲旵杅杇"],["cb40","杙杕杌杈杝杍杚杋毐氙氚汸汧汫沄沋沏汱汯汩沚汭沇沕沜汦汳汥汻沎灴灺牣犿犽狃狆狁犺狅玕玗玓玔玒町甹疔疕皁礽耴肕肙肐肒肜芐芏芅芎芑芓"],["cba1","芊芃芄豸迉辿邟邡邥邞邧邠阰阨阯阭丳侘佼侅佽侀侇佶佴侉侄佷佌侗佪侚佹侁佸侐侜侔侞侒侂侕佫佮冞冼冾刵刲刳剆刱劼匊匋匼厒厔咇呿咁咑咂咈呫呺呾呥呬呴呦咍呯呡呠咘呣呧呤囷囹坯坲坭坫坱坰坶垀坵坻坳坴坢"],["cc40","坨坽夌奅妵妺姏姎妲姌姁妶妼姃姖妱妽姀姈妴姇孢孥宓宕屄屇岮岤岠岵岯岨岬岟岣岭岢岪岧岝岥岶岰岦帗帔帙弨弢弣弤彔徂彾彽忞忥怭怦怙怲怋"],["cca1","怴怊怗怳怚怞怬怢怍怐怮怓怑怌怉怜戔戽抭抴拑抾抪抶拊抮抳抯抻抩抰抸攽斨斻昉旼昄昒昈旻昃昋昍昅旽昑昐曶朊枅杬枎枒杶杻枘枆构杴枍枌杺枟枑枙枃杽极杸杹枔欥殀歾毞氝沓泬泫泮泙沶泔沭泧沷泐泂沺泃泆泭泲"],["cd40","泒泝沴沊沝沀泞泀洰泍泇沰泹泏泩泑炔炘炅炓炆炄炑炖炂炚炃牪狖狋狘狉狜狒狔狚狌狑玤玡玭玦玢玠玬玝瓝瓨甿畀甾疌疘皯盳盱盰盵矸矼矹矻矺"],["cda1","矷祂礿秅穸穻竻籵糽耵肏肮肣肸肵肭舠芠苀芫芚芘芛芵芧芮芼芞芺芴芨芡芩苂芤苃芶芢虰虯虭虮豖迒迋迓迍迖迕迗邲邴邯邳邰阹阽阼阺陃俍俅俓侲俉俋俁俔俜俙侻侳俛俇俖侺俀侹俬剄剉勀勂匽卼厗厖厙厘咺咡咭咥哏"],["ce40","哃茍咷咮哖咶哅哆咠呰咼咢咾呲哞咰垵垞垟垤垌垗垝垛垔垘垏垙垥垚垕壴复奓姡姞姮娀姱姝姺姽姼姶姤姲姷姛姩姳姵姠姾姴姭宨屌峐峘峌峗峋峛"],["cea1","峞峚峉峇峊峖峓峔峏峈峆峎峟峸巹帡帢帣帠帤庰庤庢庛庣庥弇弮彖徆怷怹恔恲恞恅恓恇恉恛恌恀恂恟怤恄恘恦恮扂扃拏挍挋拵挎挃拫拹挏挌拸拶挀挓挔拺挕拻拰敁敃斪斿昶昡昲昵昜昦昢昳昫昺昝昴昹昮朏朐柁柲柈枺"],["cf40","柜枻柸柘柀枷柅柫柤柟枵柍枳柷柶柮柣柂枹柎柧柰枲柼柆柭柌枮柦柛柺柉柊柃柪柋欨殂殄殶毖毘毠氠氡洨洴洭洟洼洿洒洊泚洳洄洙洺洚洑洀洝浂"],["cfa1","洁洘洷洃洏浀洇洠洬洈洢洉洐炷炟炾炱炰炡炴炵炩牁牉牊牬牰牳牮狊狤狨狫狟狪狦狣玅珌珂珈珅玹玶玵玴珫玿珇玾珃珆玸珋瓬瓮甮畇畈疧疪癹盄眈眃眄眅眊盷盻盺矧矨砆砑砒砅砐砏砎砉砃砓祊祌祋祅祄秕种秏秖秎窀"],["d040","穾竑笀笁籺籸籹籿粀粁紃紈紁罘羑羍羾耇耎耏耔耷胘胇胠胑胈胂胐胅胣胙胜胊胕胉胏胗胦胍臿舡芔苙苾苹茇苨茀苕茺苫苖苴苬苡苲苵茌苻苶苰苪"],["d0a1","苤苠苺苳苭虷虴虼虳衁衎衧衪衩觓訄訇赲迣迡迮迠郱邽邿郕郅邾郇郋郈釔釓陔陏陑陓陊陎倞倅倇倓倢倰倛俵俴倳倷倬俶俷倗倜倠倧倵倯倱倎党冔冓凊凄凅凈凎剡剚剒剞剟剕剢勍匎厞唦哢唗唒哧哳哤唚哿唄唈哫唑唅哱"],["d140","唊哻哷哸哠唎唃唋圁圂埌堲埕埒垺埆垽垼垸垶垿埇埐垹埁夎奊娙娖娭娮娕娏娗娊娞娳孬宧宭宬尃屖屔峬峿峮峱峷崀峹帩帨庨庮庪庬弳弰彧恝恚恧"],["d1a1","恁悢悈悀悒悁悝悃悕悛悗悇悜悎戙扆拲挐捖挬捄捅挶捃揤挹捋捊挼挩捁挴捘捔捙挭捇挳捚捑挸捗捀捈敊敆旆旃旄旂晊晟晇晑朒朓栟栚桉栲栳栻桋桏栖栱栜栵栫栭栯桎桄栴栝栒栔栦栨栮桍栺栥栠欬欯欭欱欴歭肂殈毦毤"],["d240","毨毣毢毧氥浺浣浤浶洍浡涒浘浢浭浯涑涍淯浿涆浞浧浠涗浰浼浟涂涘洯浨涋浾涀涄洖涃浻浽浵涐烜烓烑烝烋缹烢烗烒烞烠烔烍烅烆烇烚烎烡牂牸"],["d2a1","牷牶猀狺狴狾狶狳狻猁珓珙珥珖玼珧珣珩珜珒珛珔珝珚珗珘珨瓞瓟瓴瓵甡畛畟疰痁疻痄痀疿疶疺皊盉眝眛眐眓眒眣眑眕眙眚眢眧砣砬砢砵砯砨砮砫砡砩砳砪砱祔祛祏祜祓祒祑秫秬秠秮秭秪秜秞秝窆窉窅窋窌窊窇竘笐"],["d340","笄笓笅笏笈笊笎笉笒粄粑粊粌粈粍粅紞紝紑紎紘紖紓紟紒紏紌罜罡罞罠罝罛羖羒翃翂翀耖耾耹胺胲胹胵脁胻脀舁舯舥茳茭荄茙荑茥荖茿荁茦茜茢"],["d3a1","荂荎茛茪茈茼荍茖茤茠茷茯茩荇荅荌荓茞茬荋茧荈虓虒蚢蚨蚖蚍蚑蚞蚇蚗蚆蚋蚚蚅蚥蚙蚡蚧蚕蚘蚎蚝蚐蚔衃衄衭衵衶衲袀衱衿衯袃衾衴衼訒豇豗豻貤貣赶赸趵趷趶軑軓迾迵适迿迻逄迼迶郖郠郙郚郣郟郥郘郛郗郜郤酐"],["d440","酎酏釕釢釚陜陟隼飣髟鬯乿偰偪偡偞偠偓偋偝偲偈偍偁偛偊偢倕偅偟偩偫偣偤偆偀偮偳偗偑凐剫剭剬剮勖勓匭厜啵啶唼啍啐唴唪啑啢唶唵唰啒啅"],["d4a1","唌唲啥啎唹啈唭唻啀啋圊圇埻堔埢埶埜埴堀埭埽堈埸堋埳埏堇埮埣埲埥埬埡堎埼堐埧堁堌埱埩埰堍堄奜婠婘婕婧婞娸娵婭婐婟婥婬婓婤婗婃婝婒婄婛婈媎娾婍娹婌婰婩婇婑婖婂婜孲孮寁寀屙崞崋崝崚崠崌崨崍崦崥崏"],["d540","崰崒崣崟崮帾帴庱庴庹庲庳弶弸徛徖徟悊悐悆悾悰悺惓惔惏惤惙惝惈悱惛悷惊悿惃惍惀挲捥掊掂捽掽掞掭掝掗掫掎捯掇掐据掯捵掜捭掮捼掤挻掟"],["d5a1","捸掅掁掑掍捰敓旍晥晡晛晙晜晢朘桹梇梐梜桭桮梮梫楖桯梣梬梩桵桴梲梏桷梒桼桫桲梪梀桱桾梛梖梋梠梉梤桸桻梑梌梊桽欶欳欷欸殑殏殍殎殌氪淀涫涴涳湴涬淩淢涷淶淔渀淈淠淟淖涾淥淜淝淛淴淊涽淭淰涺淕淂淏淉"],["d640","淐淲淓淽淗淍淣涻烺焍烷焗烴焌烰焄烳焐烼烿焆焓焀烸烶焋焂焎牾牻牼牿猝猗猇猑猘猊猈狿猏猞玈珶珸珵琄琁珽琇琀珺珼珿琌琋珴琈畤畣痎痒痏"],["d6a1","痋痌痑痐皏皉盓眹眯眭眱眲眴眳眽眥眻眵硈硒硉硍硊硌砦硅硐祤祧祩祪祣祫祡离秺秸秶秷窏窔窐笵筇笴笥笰笢笤笳笘笪笝笱笫笭笯笲笸笚笣粔粘粖粣紵紽紸紶紺絅紬紩絁絇紾紿絊紻紨罣羕羜羝羛翊翋翍翐翑翇翏翉耟"],["d740","耞耛聇聃聈脘脥脙脛脭脟脬脞脡脕脧脝脢舑舸舳舺舴舲艴莐莣莨莍荺荳莤荴莏莁莕莙荵莔莩荽莃莌莝莛莪莋荾莥莯莈莗莰荿莦莇莮荶莚虙虖蚿蚷"],["d7a1","蛂蛁蛅蚺蚰蛈蚹蚳蚸蛌蚴蚻蚼蛃蚽蚾衒袉袕袨袢袪袚袑袡袟袘袧袙袛袗袤袬袌袓袎覂觖觙觕訰訧訬訞谹谻豜豝豽貥赽赻赹趼跂趹趿跁軘軞軝軜軗軠軡逤逋逑逜逌逡郯郪郰郴郲郳郔郫郬郩酖酘酚酓酕釬釴釱釳釸釤釹釪"],["d840","釫釷釨釮镺閆閈陼陭陫陱陯隿靪頄飥馗傛傕傔傞傋傣傃傌傎傝偨傜傒傂傇兟凔匒匑厤厧喑喨喥喭啷噅喢喓喈喏喵喁喣喒喤啽喌喦啿喕喡喎圌堩堷"],["d8a1","堙堞堧堣堨埵塈堥堜堛堳堿堶堮堹堸堭堬堻奡媯媔媟婺媢媞婸媦婼媥媬媕媮娷媄媊媗媃媋媩婻婽媌媜媏媓媝寪寍寋寔寑寊寎尌尰崷嵃嵫嵁嵋崿崵嵑嵎嵕崳崺嵒崽崱嵙嵂崹嵉崸崼崲崶嵀嵅幄幁彘徦徥徫惉悹惌惢惎惄愔"],["d940","惲愊愖愅惵愓惸惼惾惁愃愘愝愐惿愄愋扊掔掱掰揎揥揨揯揃撝揳揊揠揶揕揲揵摡揟掾揝揜揄揘揓揂揇揌揋揈揰揗揙攲敧敪敤敜敨敥斌斝斞斮旐旒"],["d9a1","晼晬晻暀晱晹晪晲朁椌棓椄棜椪棬棪棱椏棖棷棫棤棶椓椐棳棡椇棌椈楰梴椑棯棆椔棸棐棽棼棨椋椊椗棎棈棝棞棦棴棑椆棔棩椕椥棇欹欻欿欼殔殗殙殕殽毰毲毳氰淼湆湇渟湉溈渼渽湅湢渫渿湁湝湳渜渳湋湀湑渻渃渮湞"],["da40","湨湜湡渱渨湠湱湫渹渢渰湓湥渧湸湤湷湕湹湒湦渵渶湚焠焞焯烻焮焱焣焥焢焲焟焨焺焛牋牚犈犉犆犅犋猒猋猰猢猱猳猧猲猭猦猣猵猌琮琬琰琫琖"],["daa1","琚琡琭琱琤琣琝琩琠琲瓻甯畯畬痧痚痡痦痝痟痤痗皕皒盚睆睇睄睍睅睊睎睋睌矞矬硠硤硥硜硭硱硪确硰硩硨硞硢祴祳祲祰稂稊稃稌稄窙竦竤筊笻筄筈筌筎筀筘筅粢粞粨粡絘絯絣絓絖絧絪絏絭絜絫絒絔絩絑絟絎缾缿罥"],["db40","罦羢羠羡翗聑聏聐胾胔腃腊腒腏腇脽腍脺臦臮臷臸臹舄舼舽舿艵茻菏菹萣菀菨萒菧菤菼菶萐菆菈菫菣莿萁菝菥菘菿菡菋菎菖菵菉萉萏菞萑萆菂菳"],["dba1","菕菺菇菑菪萓菃菬菮菄菻菗菢萛菛菾蛘蛢蛦蛓蛣蛚蛪蛝蛫蛜蛬蛩蛗蛨蛑衈衖衕袺裗袹袸裀袾袶袼袷袽袲褁裉覕覘覗觝觚觛詎詍訹詙詀詗詘詄詅詒詈詑詊詌詏豟貁貀貺貾貰貹貵趄趀趉跘跓跍跇跖跜跏跕跙跈跗跅軯軷軺"],["dc40","軹軦軮軥軵軧軨軶軫軱軬軴軩逭逴逯鄆鄬鄄郿郼鄈郹郻鄁鄀鄇鄅鄃酡酤酟酢酠鈁鈊鈥鈃鈚鈦鈏鈌鈀鈒釿釽鈆鈄鈧鈂鈜鈤鈙鈗鈅鈖镻閍閌閐隇陾隈"],["dca1","隉隃隀雂雈雃雱雰靬靰靮頇颩飫鳦黹亃亄亶傽傿僆傮僄僊傴僈僂傰僁傺傱僋僉傶傸凗剺剸剻剼嗃嗛嗌嗐嗋嗊嗝嗀嗔嗄嗩喿嗒喍嗏嗕嗢嗖嗈嗲嗍嗙嗂圔塓塨塤塏塍塉塯塕塎塝塙塥塛堽塣塱壼嫇嫄嫋媺媸媱媵媰媿嫈媻嫆"],["dd40","媷嫀嫊媴媶嫍媹媐寖寘寙尟尳嵱嵣嵊嵥嵲嵬嵞嵨嵧嵢巰幏幎幊幍幋廅廌廆廋廇彀徯徭惷慉慊愫慅愶愲愮慆愯慏愩慀戠酨戣戥戤揅揱揫搐搒搉搠搤"],["dda1","搳摃搟搕搘搹搷搢搣搌搦搰搨摁搵搯搊搚摀搥搧搋揧搛搮搡搎敯斒旓暆暌暕暐暋暊暙暔晸朠楦楟椸楎楢楱椿楅楪椹楂楗楙楺楈楉椵楬椳椽楥棰楸椴楩楀楯楄楶楘楁楴楌椻楋椷楜楏楑椲楒椯楻椼歆歅歃歂歈歁殛嗀毻毼"],["de40","毹毷毸溛滖滈溏滀溟溓溔溠溱溹滆滒溽滁溞滉溷溰滍溦滏溲溾滃滜滘溙溒溎溍溤溡溿溳滐滊溗溮溣煇煔煒煣煠煁煝煢煲煸煪煡煂煘煃煋煰煟煐煓"],["dea1","煄煍煚牏犍犌犑犐犎猼獂猻猺獀獊獉瑄瑊瑋瑒瑑瑗瑀瑏瑐瑎瑂瑆瑍瑔瓡瓿瓾瓽甝畹畷榃痯瘏瘃痷痾痼痹痸瘐痻痶痭痵痽皙皵盝睕睟睠睒睖睚睩睧睔睙睭矠碇碚碔碏碄碕碅碆碡碃硹碙碀碖硻祼禂祽祹稑稘稙稒稗稕稢稓"],["df40","稛稐窣窢窞竫筦筤筭筴筩筲筥筳筱筰筡筸筶筣粲粴粯綈綆綀綍絿綅絺綎絻綃絼綌綔綄絽綒罭罫罧罨罬羦羥羧翛翜耡腤腠腷腜腩腛腢腲朡腞腶腧腯"],["dfa1","腄腡舝艉艄艀艂艅蓱萿葖葶葹蒏蒍葥葑葀蒆葧萰葍葽葚葙葴葳葝蔇葞萷萺萴葺葃葸萲葅萩菙葋萯葂萭葟葰萹葎葌葒葯蓅蒎萻葇萶萳葨葾葄萫葠葔葮葐蜋蜄蛷蜌蛺蛖蛵蝍蛸蜎蜉蜁蛶蜍蜅裖裋裍裎裞裛裚裌裐覅覛觟觥觤"],["e040","觡觠觢觜触詶誆詿詡訿詷誂誄詵誃誁詴詺谼豋豊豥豤豦貆貄貅賌赨赩趑趌趎趏趍趓趔趐趒跰跠跬跱跮跐跩跣跢跧跲跫跴輆軿輁輀輅輇輈輂輋遒逿"],["e0a1","遄遉逽鄐鄍鄏鄑鄖鄔鄋鄎酮酯鉈鉒鈰鈺鉦鈳鉥鉞銃鈮鉊鉆鉭鉬鉏鉠鉧鉯鈶鉡鉰鈱鉔鉣鉐鉲鉎鉓鉌鉖鈲閟閜閞閛隒隓隑隗雎雺雽雸雵靳靷靸靲頏頍頎颬飶飹馯馲馰馵骭骫魛鳪鳭鳧麀黽僦僔僗僨僳僛僪僝僤僓僬僰僯僣僠"],["e140","凘劀劁勩勫匰厬嘧嘕嘌嘒嗼嘏嘜嘁嘓嘂嗺嘝嘄嗿嗹墉塼墐墘墆墁塿塴墋塺墇墑墎塶墂墈塻墔墏壾奫嫜嫮嫥嫕嫪嫚嫭嫫嫳嫢嫠嫛嫬嫞嫝嫙嫨嫟孷寠"],["e1a1","寣屣嶂嶀嵽嶆嵺嶁嵷嶊嶉嶈嵾嵼嶍嵹嵿幘幙幓廘廑廗廎廜廕廙廒廔彄彃彯徶愬愨慁慞慱慳慒慓慲慬憀慴慔慺慛慥愻慪慡慖戩戧戫搫摍摛摝摴摶摲摳摽摵摦撦摎撂摞摜摋摓摠摐摿搿摬摫摙摥摷敳斠暡暠暟朅朄朢榱榶槉"],["e240","榠槎榖榰榬榼榑榙榎榧榍榩榾榯榿槄榽榤槔榹槊榚槏榳榓榪榡榞槙榗榐槂榵榥槆歊歍歋殞殟殠毃毄毾滎滵滱漃漥滸漷滻漮漉潎漙漚漧漘漻漒滭漊"],["e2a1","漶潳滹滮漭潀漰漼漵滫漇漎潃漅滽滶漹漜滼漺漟漍漞漈漡熇熐熉熀熅熂熏煻熆熁熗牄牓犗犕犓獃獍獑獌瑢瑳瑱瑵瑲瑧瑮甀甂甃畽疐瘖瘈瘌瘕瘑瘊瘔皸瞁睼瞅瞂睮瞀睯睾瞃碲碪碴碭碨硾碫碞碥碠碬碢碤禘禊禋禖禕禔禓"],["e340","禗禈禒禐稫穊稰稯稨稦窨窫窬竮箈箜箊箑箐箖箍箌箛箎箅箘劄箙箤箂粻粿粼粺綧綷緂綣綪緁緀緅綝緎緄緆緋緌綯綹綖綼綟綦綮綩綡緉罳翢翣翥翞"],["e3a1","耤聝聜膉膆膃膇膍膌膋舕蒗蒤蒡蒟蒺蓎蓂蒬蒮蒫蒹蒴蓁蓍蒪蒚蒱蓐蒝蒧蒻蒢蒔蓇蓌蒛蒩蒯蒨蓖蒘蒶蓏蒠蓗蓔蓒蓛蒰蒑虡蜳蜣蜨蝫蝀蜮蜞蜡蜙蜛蝃蜬蝁蜾蝆蜠蜲蜪蜭蜼蜒蜺蜱蜵蝂蜦蜧蜸蜤蜚蜰蜑裷裧裱裲裺裾裮裼裶裻"],["e440","裰裬裫覝覡覟覞觩觫觨誫誙誋誒誏誖谽豨豩賕賏賗趖踉踂跿踍跽踊踃踇踆踅跾踀踄輐輑輎輍鄣鄜鄠鄢鄟鄝鄚鄤鄡鄛酺酲酹酳銥銤鉶銛鉺銠銔銪銍"],["e4a1","銦銚銫鉹銗鉿銣鋮銎銂銕銢鉽銈銡銊銆銌銙銧鉾銇銩銝銋鈭隞隡雿靘靽靺靾鞃鞀鞂靻鞄鞁靿韎韍頖颭颮餂餀餇馝馜駃馹馻馺駂馽駇骱髣髧鬾鬿魠魡魟鳱鳲鳵麧僿儃儰僸儆儇僶僾儋儌僽儊劋劌勱勯噈噂噌嘵噁噊噉噆噘"],["e540","噚噀嘳嘽嘬嘾嘸嘪嘺圚墫墝墱墠墣墯墬墥墡壿嫿嫴嫽嫷嫶嬃嫸嬂嫹嬁嬇嬅嬏屧嶙嶗嶟嶒嶢嶓嶕嶠嶜嶡嶚嶞幩幝幠幜緳廛廞廡彉徲憋憃慹憱憰憢憉"],["e5a1","憛憓憯憭憟憒憪憡憍慦憳戭摮摰撖撠撅撗撜撏撋撊撌撣撟摨撱撘敶敺敹敻斲斳暵暰暩暲暷暪暯樀樆樗槥槸樕槱槤樠槿槬槢樛樝槾樧槲槮樔槷槧橀樈槦槻樍槼槫樉樄樘樥樏槶樦樇槴樖歑殥殣殢殦氁氀毿氂潁漦潾澇濆澒"],["e640","澍澉澌潢潏澅潚澖潶潬澂潕潲潒潐潗澔澓潝漀潡潫潽潧澐潓澋潩潿澕潣潷潪潻熲熯熛熰熠熚熩熵熝熥熞熤熡熪熜熧熳犘犚獘獒獞獟獠獝獛獡獚獙"],["e6a1","獢璇璉璊璆璁瑽璅璈瑼瑹甈甇畾瘥瘞瘙瘝瘜瘣瘚瘨瘛皜皝皞皛瞍瞏瞉瞈磍碻磏磌磑磎磔磈磃磄磉禚禡禠禜禢禛歶稹窲窴窳箷篋箾箬篎箯箹篊箵糅糈糌糋緷緛緪緧緗緡縃緺緦緶緱緰緮緟罶羬羰羭翭翫翪翬翦翨聤聧膣膟"],["e740","膞膕膢膙膗舖艏艓艒艐艎艑蔤蔻蔏蔀蔩蔎蔉蔍蔟蔊蔧蔜蓻蔫蓺蔈蔌蓴蔪蓲蔕蓷蓫蓳蓼蔒蓪蓩蔖蓾蔨蔝蔮蔂蓽蔞蓶蔱蔦蓧蓨蓰蓯蓹蔘蔠蔰蔋蔙蔯虢"],["e7a1","蝖蝣蝤蝷蟡蝳蝘蝔蝛蝒蝡蝚蝑蝞蝭蝪蝐蝎蝟蝝蝯蝬蝺蝮蝜蝥蝏蝻蝵蝢蝧蝩衚褅褌褔褋褗褘褙褆褖褑褎褉覢覤覣觭觰觬諏諆誸諓諑諔諕誻諗誾諀諅諘諃誺誽諙谾豍貏賥賟賙賨賚賝賧趠趜趡趛踠踣踥踤踮踕踛踖踑踙踦踧"],["e840","踔踒踘踓踜踗踚輬輤輘輚輠輣輖輗遳遰遯遧遫鄯鄫鄩鄪鄲鄦鄮醅醆醊醁醂醄醀鋐鋃鋄鋀鋙銶鋏鋱鋟鋘鋩鋗鋝鋌鋯鋂鋨鋊鋈鋎鋦鋍鋕鋉鋠鋞鋧鋑鋓"],["e8a1","銵鋡鋆銴镼閬閫閮閰隤隢雓霅霈霂靚鞊鞎鞈韐韏頞頝頦頩頨頠頛頧颲餈飺餑餔餖餗餕駜駍駏駓駔駎駉駖駘駋駗駌骳髬髫髳髲髱魆魃魧魴魱魦魶魵魰魨魤魬鳼鳺鳽鳿鳷鴇鴀鳹鳻鴈鴅鴄麃黓鼏鼐儜儓儗儚儑凞匴叡噰噠噮"],["e940","噳噦噣噭噲噞噷圜圛壈墽壉墿墺壂墼壆嬗嬙嬛嬡嬔嬓嬐嬖嬨嬚嬠嬞寯嶬嶱嶩嶧嶵嶰嶮嶪嶨嶲嶭嶯嶴幧幨幦幯廩廧廦廨廥彋徼憝憨憖懅憴懆懁懌憺"],["e9a1","憿憸憌擗擖擐擏擉撽撉擃擛擳擙攳敿敼斢曈暾曀曊曋曏暽暻暺曌朣樴橦橉橧樲橨樾橝橭橶橛橑樨橚樻樿橁橪橤橐橏橔橯橩橠樼橞橖橕橍橎橆歕歔歖殧殪殫毈毇氄氃氆澭濋澣濇澼濎濈潞濄澽澞濊澨瀄澥澮澺澬澪濏澿澸"],["ea40","澢濉澫濍澯澲澰燅燂熿熸燖燀燁燋燔燊燇燏熽燘熼燆燚燛犝犞獩獦獧獬獥獫獪瑿璚璠璔璒璕璡甋疀瘯瘭瘱瘽瘳瘼瘵瘲瘰皻盦瞚瞝瞡瞜瞛瞢瞣瞕瞙"],["eaa1","瞗磝磩磥磪磞磣磛磡磢磭磟磠禤穄穈穇窶窸窵窱窷篞篣篧篝篕篥篚篨篹篔篪篢篜篫篘篟糒糔糗糐糑縒縡縗縌縟縠縓縎縜縕縚縢縋縏縖縍縔縥縤罃罻罼罺羱翯耪耩聬膱膦膮膹膵膫膰膬膴膲膷膧臲艕艖艗蕖蕅蕫蕍蕓蕡蕘"],["eb40","蕀蕆蕤蕁蕢蕄蕑蕇蕣蔾蕛蕱蕎蕮蕵蕕蕧蕠薌蕦蕝蕔蕥蕬虣虥虤螛螏螗螓螒螈螁螖螘蝹螇螣螅螐螑螝螄螔螜螚螉褞褦褰褭褮褧褱褢褩褣褯褬褟觱諠"],["eba1","諢諲諴諵諝謔諤諟諰諈諞諡諨諿諯諻貑貒貐賵賮賱賰賳赬赮趥趧踳踾踸蹀蹅踶踼踽蹁踰踿躽輶輮輵輲輹輷輴遶遹遻邆郺鄳鄵鄶醓醐醑醍醏錧錞錈錟錆錏鍺錸錼錛錣錒錁鍆錭錎錍鋋錝鋺錥錓鋹鋷錴錂錤鋿錩錹錵錪錔錌"],["ec40","錋鋾錉錀鋻錖閼闍閾閹閺閶閿閵閽隩雔霋霒霐鞙鞗鞔韰韸頵頯頲餤餟餧餩馞駮駬駥駤駰駣駪駩駧骹骿骴骻髶髺髹髷鬳鮀鮅鮇魼魾魻鮂鮓鮒鮐魺鮕"],["eca1","魽鮈鴥鴗鴠鴞鴔鴩鴝鴘鴢鴐鴙鴟麈麆麇麮麭黕黖黺鼒鼽儦儥儢儤儠儩勴嚓嚌嚍嚆嚄嚃噾嚂噿嚁壖壔壏壒嬭嬥嬲嬣嬬嬧嬦嬯嬮孻寱寲嶷幬幪徾徻懃憵憼懧懠懥懤懨懞擯擩擣擫擤擨斁斀斶旚曒檍檖檁檥檉檟檛檡檞檇檓檎"],["ed40","檕檃檨檤檑橿檦檚檅檌檒歛殭氉濌澩濴濔濣濜濭濧濦濞濲濝濢濨燡燱燨燲燤燰燢獳獮獯璗璲璫璐璪璭璱璥璯甐甑甒甏疄癃癈癉癇皤盩瞵瞫瞲瞷瞶"],["eda1","瞴瞱瞨矰磳磽礂磻磼磲礅磹磾礄禫禨穜穛穖穘穔穚窾竀竁簅簏篲簀篿篻簎篴簋篳簂簉簃簁篸篽簆篰篱簐簊糨縭縼繂縳顈縸縪繉繀繇縩繌縰縻縶繄縺罅罿罾罽翴翲耬膻臄臌臊臅臇膼臩艛艚艜薃薀薏薧薕薠薋薣蕻薤薚薞"],["ee40","蕷蕼薉薡蕺蕸蕗薎薖薆薍薙薝薁薢薂薈薅蕹蕶薘薐薟虨螾螪螭蟅螰螬螹螵螼螮蟉蟃蟂蟌螷螯蟄蟊螴螶螿螸螽蟞螲褵褳褼褾襁襒褷襂覭覯覮觲觳謞"],["eea1","謘謖謑謅謋謢謏謒謕謇謍謈謆謜謓謚豏豰豲豱豯貕貔賹赯蹎蹍蹓蹐蹌蹇轃轀邅遾鄸醚醢醛醙醟醡醝醠鎡鎃鎯鍤鍖鍇鍼鍘鍜鍶鍉鍐鍑鍠鍭鎏鍌鍪鍹鍗鍕鍒鍏鍱鍷鍻鍡鍞鍣鍧鎀鍎鍙闇闀闉闃闅閷隮隰隬霠霟霘霝霙鞚鞡鞜"],["ef40","鞞鞝韕韔韱顁顄顊顉顅顃餥餫餬餪餳餲餯餭餱餰馘馣馡騂駺駴駷駹駸駶駻駽駾駼騃骾髾髽鬁髼魈鮚鮨鮞鮛鮦鮡鮥鮤鮆鮢鮠鮯鴳鵁鵧鴶鴮鴯鴱鴸鴰"],["efa1","鵅鵂鵃鴾鴷鵀鴽翵鴭麊麉麍麰黈黚黻黿鼤鼣鼢齔龠儱儭儮嚘嚜嚗嚚嚝嚙奰嬼屩屪巀幭幮懘懟懭懮懱懪懰懫懖懩擿攄擽擸攁攃擼斔旛曚曛曘櫅檹檽櫡櫆檺檶檷櫇檴檭歞毉氋瀇瀌瀍瀁瀅瀔瀎濿瀀濻瀦濼濷瀊爁燿燹爃燽獶"],["f040","璸瓀璵瓁璾璶璻瓂甔甓癜癤癙癐癓癗癚皦皽盬矂瞺磿礌礓礔礉礐礒礑禭禬穟簜簩簙簠簟簭簝簦簨簢簥簰繜繐繖繣繘繢繟繑繠繗繓羵羳翷翸聵臑臒"],["f0a1","臐艟艞薴藆藀藃藂薳薵薽藇藄薿藋藎藈藅薱薶藒蘤薸薷薾虩蟧蟦蟢蟛蟫蟪蟥蟟蟳蟤蟔蟜蟓蟭蟘蟣螤蟗蟙蠁蟴蟨蟝襓襋襏襌襆襐襑襉謪謧謣謳謰謵譇謯謼謾謱謥謷謦謶謮謤謻謽謺豂豵貙貘貗賾贄贂贀蹜蹢蹠蹗蹖蹞蹥蹧"],["f140","蹛蹚蹡蹝蹩蹔轆轇轈轋鄨鄺鄻鄾醨醥醧醯醪鎵鎌鎒鎷鎛鎝鎉鎧鎎鎪鎞鎦鎕鎈鎙鎟鎍鎱鎑鎲鎤鎨鎴鎣鎥闒闓闑隳雗雚巂雟雘雝霣霢霥鞬鞮鞨鞫鞤鞪"],["f1a1","鞢鞥韗韙韖韘韺顐顑顒颸饁餼餺騏騋騉騍騄騑騊騅騇騆髀髜鬈鬄鬅鬩鬵魊魌魋鯇鯆鯃鮿鯁鮵鮸鯓鮶鯄鮹鮽鵜鵓鵏鵊鵛鵋鵙鵖鵌鵗鵒鵔鵟鵘鵚麎麌黟鼁鼀鼖鼥鼫鼪鼩鼨齌齕儴儵劖勷厴嚫嚭嚦嚧嚪嚬壚壝壛夒嬽嬾嬿巃幰"],["f240","徿懻攇攐攍攉攌攎斄旞旝曞櫧櫠櫌櫑櫙櫋櫟櫜櫐櫫櫏櫍櫞歠殰氌瀙瀧瀠瀖瀫瀡瀢瀣瀩瀗瀤瀜瀪爌爊爇爂爅犥犦犤犣犡瓋瓅璷瓃甖癠矉矊矄矱礝礛"],["f2a1","礡礜礗礞禰穧穨簳簼簹簬簻糬糪繶繵繸繰繷繯繺繲繴繨罋罊羃羆羷翽翾聸臗臕艤艡艣藫藱藭藙藡藨藚藗藬藲藸藘藟藣藜藑藰藦藯藞藢蠀蟺蠃蟶蟷蠉蠌蠋蠆蟼蠈蟿蠊蠂襢襚襛襗襡襜襘襝襙覈覷覶觶譐譈譊譀譓譖譔譋譕"],["f340","譑譂譒譗豃豷豶貚贆贇贉趬趪趭趫蹭蹸蹳蹪蹯蹻軂轒轑轏轐轓辴酀鄿醰醭鏞鏇鏏鏂鏚鏐鏹鏬鏌鏙鎩鏦鏊鏔鏮鏣鏕鏄鏎鏀鏒鏧镽闚闛雡霩霫霬霨霦"],["f3a1","鞳鞷鞶韝韞韟顜顙顝顗颿颽颻颾饈饇饃馦馧騚騕騥騝騤騛騢騠騧騣騞騜騔髂鬋鬊鬎鬌鬷鯪鯫鯠鯞鯤鯦鯢鯰鯔鯗鯬鯜鯙鯥鯕鯡鯚鵷鶁鶊鶄鶈鵱鶀鵸鶆鶋鶌鵽鵫鵴鵵鵰鵩鶅鵳鵻鶂鵯鵹鵿鶇鵨麔麑黀黼鼭齀齁齍齖齗齘匷嚲"],["f440","嚵嚳壣孅巆巇廮廯忀忁懹攗攖攕攓旟曨曣曤櫳櫰櫪櫨櫹櫱櫮櫯瀼瀵瀯瀷瀴瀱灂瀸瀿瀺瀹灀瀻瀳灁爓爔犨獽獼璺皫皪皾盭矌矎矏矍矲礥礣礧礨礤礩"],["f4a1","禲穮穬穭竷籉籈籊籇籅糮繻繾纁纀羺翿聹臛臙舋艨艩蘢藿蘁藾蘛蘀藶蘄蘉蘅蘌藽蠙蠐蠑蠗蠓蠖襣襦覹觷譠譪譝譨譣譥譧譭趮躆躈躄轙轖轗轕轘轚邍酃酁醷醵醲醳鐋鐓鏻鐠鐏鐔鏾鐕鐐鐨鐙鐍鏵鐀鏷鐇鐎鐖鐒鏺鐉鏸鐊鏿"],["f540","鏼鐌鏶鐑鐆闞闠闟霮霯鞹鞻韽韾顠顢顣顟飁飂饐饎饙饌饋饓騲騴騱騬騪騶騩騮騸騭髇髊髆鬐鬒鬑鰋鰈鯷鰅鰒鯸鱀鰇鰎鰆鰗鰔鰉鶟鶙鶤鶝鶒鶘鶐鶛"],["f5a1","鶠鶔鶜鶪鶗鶡鶚鶢鶨鶞鶣鶿鶩鶖鶦鶧麙麛麚黥黤黧黦鼰鼮齛齠齞齝齙龑儺儹劘劗囃嚽嚾孈孇巋巏廱懽攛欂櫼欃櫸欀灃灄灊灈灉灅灆爝爚爙獾甗癪矐礭礱礯籔籓糲纊纇纈纋纆纍罍羻耰臝蘘蘪蘦蘟蘣蘜蘙蘧蘮蘡蘠蘩蘞蘥"],["f640","蠩蠝蠛蠠蠤蠜蠫衊襭襩襮襫觺譹譸譅譺譻贐贔趯躎躌轞轛轝酆酄酅醹鐿鐻鐶鐩鐽鐼鐰鐹鐪鐷鐬鑀鐱闥闤闣霵霺鞿韡顤飉飆飀饘饖騹騽驆驄驂驁騺"],["f6a1","騿髍鬕鬗鬘鬖鬺魒鰫鰝鰜鰬鰣鰨鰩鰤鰡鶷鶶鶼鷁鷇鷊鷏鶾鷅鷃鶻鶵鷎鶹鶺鶬鷈鶱鶭鷌鶳鷍鶲鹺麜黫黮黭鼛鼘鼚鼱齎齥齤龒亹囆囅囋奱孋孌巕巑廲攡攠攦攢欋欈欉氍灕灖灗灒爞爟犩獿瓘瓕瓙瓗癭皭礵禴穰穱籗籜籙籛籚"],["f740","糴糱纑罏羇臞艫蘴蘵蘳蘬蘲蘶蠬蠨蠦蠪蠥襱覿覾觻譾讄讂讆讅譿贕躕躔躚躒躐躖躗轠轢酇鑌鑐鑊鑋鑏鑇鑅鑈鑉鑆霿韣顪顩飋饔饛驎驓驔驌驏驈驊"],["f7a1","驉驒驐髐鬙鬫鬻魖魕鱆鱈鰿鱄鰹鰳鱁鰼鰷鰴鰲鰽鰶鷛鷒鷞鷚鷋鷐鷜鷑鷟鷩鷙鷘鷖鷵鷕鷝麶黰鼵鼳鼲齂齫龕龢儽劙壨壧奲孍巘蠯彏戁戃戄攩攥斖曫欑欒欏毊灛灚爢玂玁玃癰矔籧籦纕艬蘺虀蘹蘼蘱蘻蘾蠰蠲蠮蠳襶襴襳觾"],["f840","讌讎讋讈豅贙躘轤轣醼鑢鑕鑝鑗鑞韄韅頀驖驙鬞鬟鬠鱒鱘鱐鱊鱍鱋鱕鱙鱌鱎鷻鷷鷯鷣鷫鷸鷤鷶鷡鷮鷦鷲鷰鷢鷬鷴鷳鷨鷭黂黐黲黳鼆鼜鼸鼷鼶齃齏"],["f8a1","齱齰齮齯囓囍孎屭攭曭曮欓灟灡灝灠爣瓛瓥矕礸禷禶籪纗羉艭虃蠸蠷蠵衋讔讕躞躟躠躝醾醽釂鑫鑨鑩雥靆靃靇韇韥驞髕魙鱣鱧鱦鱢鱞鱠鸂鷾鸇鸃鸆鸅鸀鸁鸉鷿鷽鸄麠鼞齆齴齵齶囔攮斸欘欙欗欚灢爦犪矘矙礹籩籫糶纚"],["f940","纘纛纙臠臡虆虇虈襹襺襼襻觿讘讙躥躤躣鑮鑭鑯鑱鑳靉顲饟鱨鱮鱭鸋鸍鸐鸏鸒鸑麡黵鼉齇齸齻齺齹圞灦籯蠼趲躦釃鑴鑸鑶鑵驠鱴鱳鱱鱵鸔鸓黶鼊"],["f9a1","龤灨灥糷虪蠾蠽蠿讞貜躩軉靋顳顴飌饡馫驤驦驧鬤鸕鸗齈戇欞爧虌躨钂钀钁驩驨鬮鸙爩虋讟钃鱹麷癵驫鱺鸝灩灪麤齾齉龘碁銹裏墻恒粧嫺╔╦╗╠╬╣╚╩╝╒╤╕╞╪╡╘╧╛╓╥╖╟╫╢╙╨╜║═╭╮╰╯▓"]]')},56406:e=>{"use strict";e.exports=JSON.parse('[["0","\\u0000",127],["8ea1","。",62],["a1a1"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇"],["a2a1","◆□■△▲▽▼※〒→←↑↓〓"],["a2ba","∈∋⊆⊇⊂⊃∪∩"],["a2ca","∧∨¬⇒⇔∀∃"],["a2dc","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"],["a2f2","ʼn♯♭♪†‡¶"],["a2fe","◯"],["a3b0","0",9],["a3c1","A",25],["a3e1","a",25],["a4a1","ぁ",82],["a5a1","ァ",85],["a6a1","Α",16,"Σ",6],["a6c1","α",16,"σ",6],["a7a1","А",5,"ЁЖ",25],["a7d1","а",5,"ёж",25],["a8a1","─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂"],["ada1","①",19,"Ⅰ",9],["adc0","㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡"],["addf","㍻〝〟№㏍℡㊤",4,"㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪"],["b0a1","亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭"],["b1a1","院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応"],["b2a1","押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改"],["b3a1","魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱"],["b4a1","粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄"],["b5a1","機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京"],["b6a1","供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈"],["b7a1","掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲"],["b8a1","検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向"],["b9a1","后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込"],["baa1","此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷"],["bba1","察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時"],["bca1","次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周"],["bda1","宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償"],["bea1","勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾"],["bfa1","拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾"],["c0a1","澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線"],["c1a1","繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎"],["c2a1","臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只"],["c3a1","叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵"],["c4a1","帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓"],["c5a1","邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到"],["c6a1","董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入"],["c7a1","如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦"],["c8a1","函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美"],["c9a1","鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服"],["caa1","福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋"],["cba1","法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満"],["cca1","漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒"],["cda1","諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃"],["cea1","痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯"],["cfa1","蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕"],["d0a1","弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲"],["d1a1","僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨"],["d2a1","辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨"],["d3a1","咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉"],["d4a1","圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩"],["d5a1","奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓"],["d6a1","屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏"],["d7a1","廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚"],["d8a1","悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛"],["d9a1","戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼"],["daa1","據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼"],["dba1","曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍"],["dca1","棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣"],["dda1","檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾"],["dea1","沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌"],["dfa1","漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼"],["e0a1","燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱"],["e1a1","瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰"],["e2a1","癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬"],["e3a1","磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐"],["e4a1","筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆"],["e5a1","紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺"],["e6a1","罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋"],["e7a1","隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙"],["e8a1","茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈"],["e9a1","蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙"],["eaa1","蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞"],["eba1","襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫"],["eca1","譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊"],["eda1","蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸"],["eea1","遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮"],["efa1","錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞"],["f0a1","陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰"],["f1a1","顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷"],["f2a1","髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈"],["f3a1","鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠"],["f4a1","堯槇遙瑤凜熙"],["f9a1","纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德"],["faa1","忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱"],["fba1","犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚"],["fca1","釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"],["fcf1","ⅰ",9,"¬¦'""],["8fa2af","˘ˇ¸˙˝¯˛˚~΄΅"],["8fa2c2","¡¦¿"],["8fa2eb","ºª©®™¤№"],["8fa6e1","ΆΈΉΊΪ"],["8fa6e7","Ό"],["8fa6e9","ΎΫ"],["8fa6ec","Ώ"],["8fa6f1","άέήίϊΐόςύϋΰώ"],["8fa7c2","Ђ",10,"ЎЏ"],["8fa7f2","ђ",10,"ўџ"],["8fa9a1","ÆĐ"],["8fa9a4","Ħ"],["8fa9a6","IJ"],["8fa9a8","ŁĿ"],["8fa9ab","ŊØŒ"],["8fa9af","ŦÞ"],["8fa9c1","æđðħıijĸłŀʼnŋøœßŧþ"],["8faaa1","ÁÀÄÂĂǍĀĄÅÃĆĈČÇĊĎÉÈËÊĚĖĒĘ"],["8faaba","ĜĞĢĠĤÍÌÏÎǏİĪĮĨĴĶĹĽĻŃŇŅÑÓÒÖÔǑŐŌÕŔŘŖŚŜŠŞŤŢÚÙÜÛŬǓŰŪŲŮŨǗǛǙǕŴÝŸŶŹŽŻ"],["8faba1","áàäâăǎāąåãćĉčçċďéèëêěėēęǵĝğ"],["8fabbd","ġĥíìïîǐ"],["8fabc5","īįĩĵķĺľļńňņñóòöôǒőōõŕřŗśŝšşťţúùüûŭǔűūųůũǘǜǚǖŵýÿŷźžż"],["8fb0a1","丂丄丅丌丒丟丣两丨丫丮丯丰丵乀乁乄乇乑乚乜乣乨乩乴乵乹乿亍亖亗亝亯亹仃仐仚仛仠仡仢仨仯仱仳仵份仾仿伀伂伃伈伋伌伒伕伖众伙伮伱你伳伵伷伹伻伾佀佂佈佉佋佌佒佔佖佘佟佣佪佬佮佱佷佸佹佺佽佾侁侂侄"],["8fb1a1","侅侉侊侌侎侐侒侓侔侗侙侚侞侟侲侷侹侻侼侽侾俀俁俅俆俈俉俋俌俍俏俒俜俠俢俰俲俼俽俿倀倁倄倇倊倌倎倐倓倗倘倛倜倝倞倢倧倮倰倲倳倵偀偁偂偅偆偊偌偎偑偒偓偗偙偟偠偢偣偦偧偪偭偰偱倻傁傃傄傆傊傎傏傐"],["8fb2a1","傒傓傔傖傛傜傞",4,"傪傯傰傹傺傽僀僃僄僇僌僎僐僓僔僘僜僝僟僢僤僦僨僩僯僱僶僺僾儃儆儇儈儋儌儍儎僲儐儗儙儛儜儝儞儣儧儨儬儭儯儱儳儴儵儸儹兂兊兏兓兕兗兘兟兤兦兾冃冄冋冎冘冝冡冣冭冸冺冼冾冿凂"],["8fb3a1","凈减凑凒凓凕凘凞凢凥凮凲凳凴凷刁刂刅划刓刕刖刘刢刨刱刲刵刼剅剉剕剗剘剚剜剟剠剡剦剮剷剸剹劀劂劅劊劌劓劕劖劗劘劚劜劤劥劦劧劯劰劶劷劸劺劻劽勀勄勆勈勌勏勑勔勖勛勜勡勥勨勩勪勬勰勱勴勶勷匀匃匊匋"],["8fb4a1","匌匑匓匘匛匜匞匟匥匧匨匩匫匬匭匰匲匵匼匽匾卂卌卋卙卛卡卣卥卬卭卲卹卾厃厇厈厎厓厔厙厝厡厤厪厫厯厲厴厵厷厸厺厽叀叅叏叒叓叕叚叝叞叠另叧叵吂吓吚吡吧吨吪启吱吴吵呃呄呇呍呏呞呢呤呦呧呩呫呭呮呴呿"],["8fb5a1","咁咃咅咈咉咍咑咕咖咜咟咡咦咧咩咪咭咮咱咷咹咺咻咿哆哊响哎哠哪哬哯哶哼哾哿唀唁唅唈唉唌唍唎唕唪唫唲唵唶唻唼唽啁啇啉啊啍啐啑啘啚啛啞啠啡啤啦啿喁喂喆喈喎喏喑喒喓喔喗喣喤喭喲喿嗁嗃嗆嗉嗋嗌嗎嗑嗒"],["8fb6a1","嗓嗗嗘嗛嗞嗢嗩嗶嗿嘅嘈嘊嘍",5,"嘙嘬嘰嘳嘵嘷嘹嘻嘼嘽嘿噀噁噃噄噆噉噋噍噏噔噞噠噡噢噣噦噩噭噯噱噲噵嚄嚅嚈嚋嚌嚕嚙嚚嚝嚞嚟嚦嚧嚨嚩嚫嚬嚭嚱嚳嚷嚾囅囉囊囋囏囐囌囍囙囜囝囟囡囤",4,"囱囫园"],["8fb7a1","囶囷圁圂圇圊圌圑圕圚圛圝圠圢圣圤圥圩圪圬圮圯圳圴圽圾圿坅坆坌坍坒坢坥坧坨坫坭",4,"坳坴坵坷坹坺坻坼坾垁垃垌垔垗垙垚垜垝垞垟垡垕垧垨垩垬垸垽埇埈埌埏埕埝埞埤埦埧埩埭埰埵埶埸埽埾埿堃堄堈堉埡"],["8fb8a1","堌堍堛堞堟堠堦堧堭堲堹堿塉塌塍塏塐塕塟塡塤塧塨塸塼塿墀墁墇墈墉墊墌墍墏墐墔墖墝墠墡墢墦墩墱墲壄墼壂壈壍壎壐壒壔壖壚壝壡壢壩壳夅夆夋夌夒夓夔虁夝夡夣夤夨夯夰夳夵夶夿奃奆奒奓奙奛奝奞奟奡奣奫奭"],["8fb9a1","奯奲奵奶她奻奼妋妌妎妒妕妗妟妤妧妭妮妯妰妳妷妺妼姁姃姄姈姊姍姒姝姞姟姣姤姧姮姯姱姲姴姷娀娄娌娍娎娒娓娞娣娤娧娨娪娭娰婄婅婇婈婌婐婕婞婣婥婧婭婷婺婻婾媋媐媓媖媙媜媞媟媠媢媧媬媱媲媳媵媸媺媻媿"],["8fbaa1","嫄嫆嫈嫏嫚嫜嫠嫥嫪嫮嫵嫶嫽嬀嬁嬈嬗嬴嬙嬛嬝嬡嬥嬭嬸孁孋孌孒孖孞孨孮孯孼孽孾孿宁宄宆宊宎宐宑宓宔宖宨宩宬宭宯宱宲宷宺宼寀寁寍寏寖",4,"寠寯寱寴寽尌尗尞尟尣尦尩尫尬尮尰尲尵尶屙屚屜屢屣屧屨屩"],["8fbba1","屭屰屴屵屺屻屼屽岇岈岊岏岒岝岟岠岢岣岦岪岲岴岵岺峉峋峒峝峗峮峱峲峴崁崆崍崒崫崣崤崦崧崱崴崹崽崿嵂嵃嵆嵈嵕嵑嵙嵊嵟嵠嵡嵢嵤嵪嵭嵰嵹嵺嵾嵿嶁嶃嶈嶊嶒嶓嶔嶕嶙嶛嶟嶠嶧嶫嶰嶴嶸嶹巃巇巋巐巎巘巙巠巤"],["8fbca1","巩巸巹帀帇帍帒帔帕帘帟帠帮帨帲帵帾幋幐幉幑幖幘幛幜幞幨幪",4,"幰庀庋庎庢庤庥庨庪庬庱庳庽庾庿廆廌廋廎廑廒廔廕廜廞廥廫异弆弇弈弎弙弜弝弡弢弣弤弨弫弬弮弰弴弶弻弽弿彀彄彅彇彍彐彔彘彛彠彣彤彧"],["8fbda1","彯彲彴彵彸彺彽彾徉徍徏徖徜徝徢徧徫徤徬徯徰徱徸忄忇忈忉忋忐",4,"忞忡忢忨忩忪忬忭忮忯忲忳忶忺忼怇怊怍怓怔怗怘怚怟怤怭怳怵恀恇恈恉恌恑恔恖恗恝恡恧恱恾恿悂悆悈悊悎悑悓悕悘悝悞悢悤悥您悰悱悷"],["8fbea1","悻悾惂惄惈惉惊惋惎惏惔惕惙惛惝惞惢惥惲惵惸惼惽愂愇愊愌愐",4,"愖愗愙愜愞愢愪愫愰愱愵愶愷愹慁慅慆慉慞慠慬慲慸慻慼慿憀憁憃憄憋憍憒憓憗憘憜憝憟憠憥憨憪憭憸憹憼懀懁懂懎懏懕懜懝懞懟懡懢懧懩懥"],["8fbfa1","懬懭懯戁戃戄戇戓戕戜戠戢戣戧戩戫戹戽扂扃扄扆扌扐扑扒扔扖扚扜扤扭扯扳扺扽抍抎抏抐抦抨抳抶抷抺抾抿拄拎拕拖拚拪拲拴拼拽挃挄挊挋挍挐挓挖挘挩挪挭挵挶挹挼捁捂捃捄捆捊捋捎捒捓捔捘捛捥捦捬捭捱捴捵"],["8fc0a1","捸捼捽捿掂掄掇掊掐掔掕掙掚掞掤掦掭掮掯掽揁揅揈揎揑揓揔揕揜揠揥揪揬揲揳揵揸揹搉搊搐搒搔搘搞搠搢搤搥搩搪搯搰搵搽搿摋摏摑摒摓摔摚摛摜摝摟摠摡摣摭摳摴摻摽撅撇撏撐撑撘撙撛撝撟撡撣撦撨撬撳撽撾撿"],["8fc1a1","擄擉擊擋擌擎擐擑擕擗擤擥擩擪擭擰擵擷擻擿攁攄攈攉攊攏攓攔攖攙攛攞攟攢攦攩攮攱攺攼攽敃敇敉敐敒敔敟敠敧敫敺敽斁斅斊斒斕斘斝斠斣斦斮斲斳斴斿旂旈旉旎旐旔旖旘旟旰旲旴旵旹旾旿昀昄昈昉昍昑昒昕昖昝"],["8fc2a1","昞昡昢昣昤昦昩昪昫昬昮昰昱昳昹昷晀晅晆晊晌晑晎晗晘晙晛晜晠晡曻晪晫晬晾晳晵晿晷晸晹晻暀晼暋暌暍暐暒暙暚暛暜暟暠暤暭暱暲暵暻暿曀曂曃曈曌曎曏曔曛曟曨曫曬曮曺朅朇朎朓朙朜朠朢朳朾杅杇杈杌杔杕杝"],["8fc3a1","杦杬杮杴杶杻极构枎枏枑枓枖枘枙枛枰枱枲枵枻枼枽柹柀柂柃柅柈柉柒柗柙柜柡柦柰柲柶柷桒栔栙栝栟栨栧栬栭栯栰栱栳栻栿桄桅桊桌桕桗桘桛桫桮",4,"桵桹桺桻桼梂梄梆梈梖梘梚梜梡梣梥梩梪梮梲梻棅棈棌棏"],["8fc4a1","棐棑棓棖棙棜棝棥棨棪棫棬棭棰棱棵棶棻棼棽椆椉椊椐椑椓椖椗椱椳椵椸椻楂楅楉楎楗楛楣楤楥楦楨楩楬楰楱楲楺楻楿榀榍榒榖榘榡榥榦榨榫榭榯榷榸榺榼槅槈槑槖槗槢槥槮槯槱槳槵槾樀樁樃樏樑樕樚樝樠樤樨樰樲"],["8fc5a1","樴樷樻樾樿橅橆橉橊橎橐橑橒橕橖橛橤橧橪橱橳橾檁檃檆檇檉檋檑檛檝檞檟檥檫檯檰檱檴檽檾檿櫆櫉櫈櫌櫐櫔櫕櫖櫜櫝櫤櫧櫬櫰櫱櫲櫼櫽欂欃欆欇欉欏欐欑欗欛欞欤欨欫欬欯欵欶欻欿歆歊歍歒歖歘歝歠歧歫歮歰歵歽"],["8fc6a1","歾殂殅殗殛殟殠殢殣殨殩殬殭殮殰殸殹殽殾毃毄毉毌毖毚毡毣毦毧毮毱毷毹毿氂氄氅氉氍氎氐氒氙氟氦氧氨氬氮氳氵氶氺氻氿汊汋汍汏汒汔汙汛汜汫汭汯汴汶汸汹汻沅沆沇沉沔沕沗沘沜沟沰沲沴泂泆泍泏泐泑泒泔泖"],["8fc7a1","泚泜泠泧泩泫泬泮泲泴洄洇洊洎洏洑洓洚洦洧洨汧洮洯洱洹洼洿浗浞浟浡浥浧浯浰浼涂涇涑涒涔涖涗涘涪涬涴涷涹涽涿淄淈淊淎淏淖淛淝淟淠淢淥淩淯淰淴淶淼渀渄渞渢渧渲渶渹渻渼湄湅湈湉湋湏湑湒湓湔湗湜湝湞"],["8fc8a1","湢湣湨湳湻湽溍溓溙溠溧溭溮溱溳溻溿滀滁滃滇滈滊滍滎滏滫滭滮滹滻滽漄漈漊漌漍漖漘漚漛漦漩漪漯漰漳漶漻漼漭潏潑潒潓潗潙潚潝潞潡潢潨潬潽潾澃澇澈澋澌澍澐澒澓澔澖澚澟澠澥澦澧澨澮澯澰澵澶澼濅濇濈濊"],["8fc9a1","濚濞濨濩濰濵濹濼濽瀀瀅瀆瀇瀍瀗瀠瀣瀯瀴瀷瀹瀼灃灄灈灉灊灋灔灕灝灞灎灤灥灬灮灵灶灾炁炅炆炔",4,"炛炤炫炰炱炴炷烊烑烓烔烕烖烘烜烤烺焃",4,"焋焌焏焞焠焫焭焯焰焱焸煁煅煆煇煊煋煐煒煗煚煜煞煠"],["8fcaa1","煨煹熀熅熇熌熒熚熛熠熢熯熰熲熳熺熿燀燁燄燋燌燓燖燙燚燜燸燾爀爇爈爉爓爗爚爝爟爤爫爯爴爸爹牁牂牃牅牎牏牐牓牕牖牚牜牞牠牣牨牫牮牯牱牷牸牻牼牿犄犉犍犎犓犛犨犭犮犱犴犾狁狇狉狌狕狖狘狟狥狳狴狺狻"],["8fcba1","狾猂猄猅猇猋猍猒猓猘猙猞猢猤猧猨猬猱猲猵猺猻猽獃獍獐獒獖獘獝獞獟獠獦獧獩獫獬獮獯獱獷獹獼玀玁玃玅玆玎玐玓玕玗玘玜玞玟玠玢玥玦玪玫玭玵玷玹玼玽玿珅珆珉珋珌珏珒珓珖珙珝珡珣珦珧珩珴珵珷珹珺珻珽"],["8fcca1","珿琀琁琄琇琊琑琚琛琤琦琨",9,"琹瑀瑃瑄瑆瑇瑋瑍瑑瑒瑗瑝瑢瑦瑧瑨瑫瑭瑮瑱瑲璀璁璅璆璇璉璏璐璑璒璘璙璚璜璟璠璡璣璦璨璩璪璫璮璯璱璲璵璹璻璿瓈瓉瓌瓐瓓瓘瓚瓛瓞瓟瓤瓨瓪瓫瓯瓴瓺瓻瓼瓿甆"],["8fcda1","甒甖甗甠甡甤甧甩甪甯甶甹甽甾甿畀畃畇畈畎畐畒畗畞畟畡畯畱畹",5,"疁疅疐疒疓疕疙疜疢疤疴疺疿痀痁痄痆痌痎痏痗痜痟痠痡痤痧痬痮痯痱痹瘀瘂瘃瘄瘇瘈瘊瘌瘏瘒瘓瘕瘖瘙瘛瘜瘝瘞瘣瘥瘦瘩瘭瘲瘳瘵瘸瘹"],["8fcea1","瘺瘼癊癀癁癃癄癅癉癋癕癙癟癤癥癭癮癯癱癴皁皅皌皍皕皛皜皝皟皠皢",6,"皪皭皽盁盅盉盋盌盎盔盙盠盦盨盬盰盱盶盹盼眀眆眊眎眒眔眕眗眙眚眜眢眨眭眮眯眴眵眶眹眽眾睂睅睆睊睍睎睏睒睖睗睜睞睟睠睢"],["8fcfa1","睤睧睪睬睰睲睳睴睺睽瞀瞄瞌瞍瞔瞕瞖瞚瞟瞢瞧瞪瞮瞯瞱瞵瞾矃矉矑矒矕矙矞矟矠矤矦矪矬矰矱矴矸矻砅砆砉砍砎砑砝砡砢砣砭砮砰砵砷硃硄硇硈硌硎硒硜硞硠硡硣硤硨硪确硺硾碊碏碔碘碡碝碞碟碤碨碬碭碰碱碲碳"],["8fd0a1","碻碽碿磇磈磉磌磎磒磓磕磖磤磛磟磠磡磦磪磲磳礀磶磷磺磻磿礆礌礐礚礜礞礟礠礥礧礩礭礱礴礵礻礽礿祄祅祆祊祋祏祑祔祘祛祜祧祩祫祲祹祻祼祾禋禌禑禓禔禕禖禘禛禜禡禨禩禫禯禱禴禸离秂秄秇秈秊秏秔秖秚秝秞"],["8fd1a1","秠秢秥秪秫秭秱秸秼稂稃稇稉稊稌稑稕稛稞稡稧稫稭稯稰稴稵稸稹稺穄穅穇穈穌穕穖穙穜穝穟穠穥穧穪穭穵穸穾窀窂窅窆窊窋窐窑窔窞窠窣窬窳窵窹窻窼竆竉竌竎竑竛竨竩竫竬竱竴竻竽竾笇笔笟笣笧笩笪笫笭笮笯笰"],["8fd2a1","笱笴笽笿筀筁筇筎筕筠筤筦筩筪筭筯筲筳筷箄箉箎箐箑箖箛箞箠箥箬箯箰箲箵箶箺箻箼箽篂篅篈篊篔篖篗篙篚篛篨篪篲篴篵篸篹篺篼篾簁簂簃簄簆簉簋簌簎簏簙簛簠簥簦簨簬簱簳簴簶簹簺籆籊籕籑籒籓籙",5],["8fd3a1","籡籣籧籩籭籮籰籲籹籼籽粆粇粏粔粞粠粦粰粶粷粺粻粼粿糄糇糈糉糍糏糓糔糕糗糙糚糝糦糩糫糵紃紇紈紉紏紑紒紓紖紝紞紣紦紪紭紱紼紽紾絀絁絇絈絍絑絓絗絙絚絜絝絥絧絪絰絸絺絻絿綁綂綃綅綆綈綋綌綍綑綖綗綝"],["8fd4a1","綞綦綧綪綳綶綷綹緂",4,"緌緍緎緗緙縀緢緥緦緪緫緭緱緵緶緹緺縈縐縑縕縗縜縝縠縧縨縬縭縯縳縶縿繄繅繇繎繐繒繘繟繡繢繥繫繮繯繳繸繾纁纆纇纊纍纑纕纘纚纝纞缼缻缽缾缿罃罄罇罏罒罓罛罜罝罡罣罤罥罦罭"],["8fd5a1","罱罽罾罿羀羋羍羏羐羑羖羗羜羡羢羦羪羭羴羼羿翀翃翈翎翏翛翟翣翥翨翬翮翯翲翺翽翾翿耇耈耊耍耎耏耑耓耔耖耝耞耟耠耤耦耬耮耰耴耵耷耹耺耼耾聀聄聠聤聦聭聱聵肁肈肎肜肞肦肧肫肸肹胈胍胏胒胔胕胗胘胠胭胮"],["8fd6a1","胰胲胳胶胹胺胾脃脋脖脗脘脜脞脠脤脧脬脰脵脺脼腅腇腊腌腒腗腠腡腧腨腩腭腯腷膁膐膄膅膆膋膎膖膘膛膞膢膮膲膴膻臋臃臅臊臎臏臕臗臛臝臞臡臤臫臬臰臱臲臵臶臸臹臽臿舀舃舏舓舔舙舚舝舡舢舨舲舴舺艃艄艅艆"],["8fd7a1","艋艎艏艑艖艜艠艣艧艭艴艻艽艿芀芁芃芄芇芉芊芎芑芔芖芘芚芛芠芡芣芤芧芨芩芪芮芰芲芴芷芺芼芾芿苆苐苕苚苠苢苤苨苪苭苯苶苷苽苾茀茁茇茈茊茋荔茛茝茞茟茡茢茬茭茮茰茳茷茺茼茽荂荃荄荇荍荎荑荕荖荗荰荸"],["8fd8a1","荽荿莀莂莄莆莍莒莔莕莘莙莛莜莝莦莧莩莬莾莿菀菇菉菏菐菑菔菝荓菨菪菶菸菹菼萁萆萊萏萑萕萙莭萯萹葅葇葈葊葍葏葑葒葖葘葙葚葜葠葤葥葧葪葰葳葴葶葸葼葽蒁蒅蒒蒓蒕蒞蒦蒨蒩蒪蒯蒱蒴蒺蒽蒾蓀蓂蓇蓈蓌蓏蓓"],["8fd9a1","蓜蓧蓪蓯蓰蓱蓲蓷蔲蓺蓻蓽蔂蔃蔇蔌蔎蔐蔜蔞蔢蔣蔤蔥蔧蔪蔫蔯蔳蔴蔶蔿蕆蕏",4,"蕖蕙蕜",6,"蕤蕫蕯蕹蕺蕻蕽蕿薁薅薆薉薋薌薏薓薘薝薟薠薢薥薧薴薶薷薸薼薽薾薿藂藇藊藋藎薭藘藚藟藠藦藨藭藳藶藼"],["8fdaa1","藿蘀蘄蘅蘍蘎蘐蘑蘒蘘蘙蘛蘞蘡蘧蘩蘶蘸蘺蘼蘽虀虂虆虒虓虖虗虘虙虝虠",4,"虩虬虯虵虶虷虺蚍蚑蚖蚘蚚蚜蚡蚦蚧蚨蚭蚱蚳蚴蚵蚷蚸蚹蚿蛀蛁蛃蛅蛑蛒蛕蛗蛚蛜蛠蛣蛥蛧蚈蛺蛼蛽蜄蜅蜇蜋蜎蜏蜐蜓蜔蜙蜞蜟蜡蜣"],["8fdba1","蜨蜮蜯蜱蜲蜹蜺蜼蜽蜾蝀蝃蝅蝍蝘蝝蝡蝤蝥蝯蝱蝲蝻螃",6,"螋螌螐螓螕螗螘螙螞螠螣螧螬螭螮螱螵螾螿蟁蟈蟉蟊蟎蟕蟖蟙蟚蟜蟟蟢蟣蟤蟪蟫蟭蟱蟳蟸蟺蟿蠁蠃蠆蠉蠊蠋蠐蠙蠒蠓蠔蠘蠚蠛蠜蠞蠟蠨蠭蠮蠰蠲蠵"],["8fdca1","蠺蠼衁衃衅衈衉衊衋衎衑衕衖衘衚衜衟衠衤衩衱衹衻袀袘袚袛袜袟袠袨袪袺袽袾裀裊",4,"裑裒裓裛裞裧裯裰裱裵裷褁褆褍褎褏褕褖褘褙褚褜褠褦褧褨褰褱褲褵褹褺褾襀襂襅襆襉襏襒襗襚襛襜襡襢襣襫襮襰襳襵襺"],["8fdda1","襻襼襽覉覍覐覔覕覛覜覟覠覥覰覴覵覶覷覼觔",4,"觥觩觫觭觱觳觶觹觽觿訄訅訇訏訑訒訔訕訞訠訢訤訦訫訬訯訵訷訽訾詀詃詅詇詉詍詎詓詖詗詘詜詝詡詥詧詵詶詷詹詺詻詾詿誀誃誆誋誏誐誒誖誗誙誟誧誩誮誯誳"],["8fdea1","誶誷誻誾諃諆諈諉諊諑諓諔諕諗諝諟諬諰諴諵諶諼諿謅謆謋謑謜謞謟謊謭謰謷謼譂",4,"譈譒譓譔譙譍譞譣譭譶譸譹譼譾讁讄讅讋讍讏讔讕讜讞讟谸谹谽谾豅豇豉豋豏豑豓豔豗豘豛豝豙豣豤豦豨豩豭豳豵豶豻豾貆"],["8fdfa1","貇貋貐貒貓貙貛貜貤貹貺賅賆賉賋賏賖賕賙賝賡賨賬賯賰賲賵賷賸賾賿贁贃贉贒贗贛赥赩赬赮赿趂趄趈趍趐趑趕趞趟趠趦趫趬趯趲趵趷趹趻跀跅跆跇跈跊跎跑跔跕跗跙跤跥跧跬跰趼跱跲跴跽踁踄踅踆踋踑踔踖踠踡踢"],["8fe0a1","踣踦踧踱踳踶踷踸踹踽蹀蹁蹋蹍蹎蹏蹔蹛蹜蹝蹞蹡蹢蹩蹬蹭蹯蹰蹱蹹蹺蹻躂躃躉躐躒躕躚躛躝躞躢躧躩躭躮躳躵躺躻軀軁軃軄軇軏軑軔軜軨軮軰軱軷軹軺軭輀輂輇輈輏輐輖輗輘輞輠輡輣輥輧輨輬輭輮輴輵輶輷輺轀轁"],["8fe1a1","轃轇轏轑",4,"轘轝轞轥辝辠辡辤辥辦辵辶辸达迀迁迆迊迋迍运迒迓迕迠迣迤迨迮迱迵迶迻迾适逄逈逌逘逛逨逩逯逪逬逭逳逴逷逿遃遄遌遛遝遢遦遧遬遰遴遹邅邈邋邌邎邐邕邗邘邙邛邠邡邢邥邰邲邳邴邶邽郌邾郃"],["8fe2a1","郄郅郇郈郕郗郘郙郜郝郟郥郒郶郫郯郰郴郾郿鄀鄄鄅鄆鄈鄍鄐鄔鄖鄗鄘鄚鄜鄞鄠鄥鄢鄣鄧鄩鄮鄯鄱鄴鄶鄷鄹鄺鄼鄽酃酇酈酏酓酗酙酚酛酡酤酧酭酴酹酺酻醁醃醅醆醊醎醑醓醔醕醘醞醡醦醨醬醭醮醰醱醲醳醶醻醼醽醿"],["8fe3a1","釂釃釅釓釔釗釙釚釞釤釥釩釪釬",5,"釷釹釻釽鈀鈁鈄鈅鈆鈇鈉鈊鈌鈐鈒鈓鈖鈘鈜鈝鈣鈤鈥鈦鈨鈮鈯鈰鈳鈵鈶鈸鈹鈺鈼鈾鉀鉂鉃鉆鉇鉊鉍鉎鉏鉑鉘鉙鉜鉝鉠鉡鉥鉧鉨鉩鉮鉯鉰鉵",4,"鉻鉼鉽鉿銈銉銊銍銎銒銗"],["8fe4a1","銙銟銠銤銥銧銨銫銯銲銶銸銺銻銼銽銿",4,"鋅鋆鋇鋈鋋鋌鋍鋎鋐鋓鋕鋗鋘鋙鋜鋝鋟鋠鋡鋣鋥鋧鋨鋬鋮鋰鋹鋻鋿錀錂錈錍錑錔錕錜錝錞錟錡錤錥錧錩錪錳錴錶錷鍇鍈鍉鍐鍑鍒鍕鍗鍘鍚鍞鍤鍥鍧鍩鍪鍭鍯鍰鍱鍳鍴鍶"],["8fe5a1","鍺鍽鍿鎀鎁鎂鎈鎊鎋鎍鎏鎒鎕鎘鎛鎞鎡鎣鎤鎦鎨鎫鎴鎵鎶鎺鎩鏁鏄鏅鏆鏇鏉",4,"鏓鏙鏜鏞鏟鏢鏦鏧鏹鏷鏸鏺鏻鏽鐁鐂鐄鐈鐉鐍鐎鐏鐕鐖鐗鐟鐮鐯鐱鐲鐳鐴鐻鐿鐽鑃鑅鑈鑊鑌鑕鑙鑜鑟鑡鑣鑨鑫鑭鑮鑯鑱鑲钄钃镸镹"],["8fe6a1","镾閄閈閌閍閎閝閞閟閡閦閩閫閬閴閶閺閽閿闆闈闉闋闐闑闒闓闙闚闝闞闟闠闤闦阝阞阢阤阥阦阬阱阳阷阸阹阺阼阽陁陒陔陖陗陘陡陮陴陻陼陾陿隁隂隃隄隉隑隖隚隝隟隤隥隦隩隮隯隳隺雊雒嶲雘雚雝雞雟雩雯雱雺霂"],["8fe7a1","霃霅霉霚霛霝霡霢霣霨霱霳靁靃靊靎靏靕靗靘靚靛靣靧靪靮靳靶靷靸靻靽靿鞀鞉鞕鞖鞗鞙鞚鞞鞟鞢鞬鞮鞱鞲鞵鞶鞸鞹鞺鞼鞾鞿韁韄韅韇韉韊韌韍韎韐韑韔韗韘韙韝韞韠韛韡韤韯韱韴韷韸韺頇頊頙頍頎頔頖頜頞頠頣頦"],["8fe8a1","頫頮頯頰頲頳頵頥頾顄顇顊顑顒顓顖顗顙顚顢顣顥顦顪顬颫颭颮颰颴颷颸颺颻颿飂飅飈飌飡飣飥飦飧飪飳飶餂餇餈餑餕餖餗餚餛餜餟餢餦餧餫餱",4,"餹餺餻餼饀饁饆饇饈饍饎饔饘饙饛饜饞饟饠馛馝馟馦馰馱馲馵"],["8fe9a1","馹馺馽馿駃駉駓駔駙駚駜駞駧駪駫駬駰駴駵駹駽駾騂騃騄騋騌騐騑騖騞騠騢騣騤騧騭騮騳騵騶騸驇驁驄驊驋驌驎驑驔驖驝骪骬骮骯骲骴骵骶骹骻骾骿髁髃髆髈髎髐髒髕髖髗髛髜髠髤髥髧髩髬髲髳髵髹髺髽髿",4],["8feaa1","鬄鬅鬈鬉鬋鬌鬍鬎鬐鬒鬖鬙鬛鬜鬠鬦鬫鬭鬳鬴鬵鬷鬹鬺鬽魈魋魌魕魖魗魛魞魡魣魥魦魨魪",4,"魳魵魷魸魹魿鮀鮄鮅鮆鮇鮉鮊鮋鮍鮏鮐鮔鮚鮝鮞鮦鮧鮩鮬鮰鮱鮲鮷鮸鮻鮼鮾鮿鯁鯇鯈鯎鯐鯗鯘鯝鯟鯥鯧鯪鯫鯯鯳鯷鯸"],["8feba1","鯹鯺鯽鯿鰀鰂鰋鰏鰑鰖鰘鰙鰚鰜鰞鰢鰣鰦",4,"鰱鰵鰶鰷鰽鱁鱃鱄鱅鱉鱊鱎鱏鱐鱓鱔鱖鱘鱛鱝鱞鱟鱣鱩鱪鱜鱫鱨鱮鱰鱲鱵鱷鱻鳦鳲鳷鳹鴋鴂鴑鴗鴘鴜鴝鴞鴯鴰鴲鴳鴴鴺鴼鵅鴽鵂鵃鵇鵊鵓鵔鵟鵣鵢鵥鵩鵪鵫鵰鵶鵷鵻"],["8feca1","鵼鵾鶃鶄鶆鶊鶍鶎鶒鶓鶕鶖鶗鶘鶡鶪鶬鶮鶱鶵鶹鶼鶿鷃鷇鷉鷊鷔鷕鷖鷗鷚鷞鷟鷠鷥鷧鷩鷫鷮鷰鷳鷴鷾鸊鸂鸇鸎鸐鸑鸒鸕鸖鸙鸜鸝鹺鹻鹼麀麂麃麄麅麇麎麏麖麘麛麞麤麨麬麮麯麰麳麴麵黆黈黋黕黟黤黧黬黭黮黰黱黲黵"],["8feda1","黸黿鼂鼃鼉鼏鼐鼑鼒鼔鼖鼗鼙鼚鼛鼟鼢鼦鼪鼫鼯鼱鼲鼴鼷鼹鼺鼼鼽鼿齁齃",4,"齓齕齖齗齘齚齝齞齨齩齭",4,"齳齵齺齽龏龐龑龒龔龖龗龞龡龢龣龥"]]')},99129:e=>{"use strict";e.exports=JSON.parse('{"uChars":[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],"gbChars":[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189000]}')},55914:e=>{"use strict";e.exports=JSON.parse('[["a140","",62],["a180","",32],["a240","",62],["a280","",32],["a2ab","",5],["a2e3","€"],["a2ef",""],["a2fd",""],["a340","",62],["a380","",31," "],["a440","",62],["a480","",32],["a4f4","",10],["a540","",62],["a580","",32],["a5f7","",7],["a640","",62],["a680","",32],["a6b9","",7],["a6d9","",6],["a6ec",""],["a6f3",""],["a6f6","",8],["a740","",62],["a780","",32],["a7c2","",14],["a7f2","",12],["a896","",10],["a8bc","ḿ"],["a8bf","ǹ"],["a8c1",""],["a8ea","",20],["a958",""],["a95b",""],["a95d",""],["a989","〾⿰",11],["a997","",12],["a9f0","",14],["aaa1","",93],["aba1","",93],["aca1","",93],["ada1","",93],["aea1","",93],["afa1","",93],["d7fa","",4],["f8a1","",93],["f9a1","",93],["faa1","",93],["fba1","",93],["fca1","",93],["fda1","",93],["fe50","⺁⺄㑳㑇⺈⺋㖞㘚㘎⺌⺗㥮㤘㧏㧟㩳㧐㭎㱮㳠⺧⺪䁖䅟⺮䌷⺳⺶⺷䎱䎬⺻䏝䓖䙡䙌"],["fe80","䜣䜩䝼䞍⻊䥇䥺䥽䦂䦃䦅䦆䦟䦛䦷䦶䲣䲟䲠䲡䱷䲢䴓",6,"䶮",93],["8135f437",""]]')},40679:e=>{"use strict";e.exports=JSON.parse('[["0","\\u0000",128],["a1","。",62],["8140"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×"],["8180","÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇◆□■△▲▽▼※〒→←↑↓〓"],["81b8","∈∋⊆⊇⊂⊃∪∩"],["81c8","∧∨¬⇒⇔∀∃"],["81da","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"],["81f0","ʼn♯♭♪†‡¶"],["81fc","◯"],["824f","0",9],["8260","A",25],["8281","a",25],["829f","ぁ",82],["8340","ァ",62],["8380","ム",22],["839f","Α",16,"Σ",6],["83bf","α",16,"σ",6],["8440","А",5,"ЁЖ",25],["8470","а",5,"ёж",7],["8480","о",17],["849f","─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂"],["8740","①",19,"Ⅰ",9],["875f","㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡"],["877e","㍻"],["8780","〝〟№㏍℡㊤",4,"㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪"],["889f","亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭"],["8940","院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円"],["8980","園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改"],["8a40","魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫"],["8a80","橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄"],["8b40","機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救"],["8b80","朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈"],["8c40","掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨"],["8c80","劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向"],["8d40","后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降"],["8d80","項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷"],["8e40","察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止"],["8e80","死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周"],["8f40","宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳"],["8f80","準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾"],["9040","拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨"],["9080","逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線"],["9140","繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻"],["9180","操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只"],["9240","叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄"],["9280","逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓"],["9340","邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬"],["9380","凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入"],["9440","如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅"],["9480","楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美"],["9540","鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷"],["9580","斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋"],["9640","法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆"],["9680","摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒"],["9740","諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲"],["9780","沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯"],["9840","蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕"],["989f","弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲"],["9940","僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭"],["9980","凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨"],["9a40","咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸"],["9a80","噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩"],["9b40","奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀"],["9b80","它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏"],["9c40","廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠"],["9c80","怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛"],["9d40","戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫"],["9d80","捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼"],["9e40","曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎"],["9e80","梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣"],["9f40","檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯"],["9f80","麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌"],["e040","漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝"],["e080","烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱"],["e140","瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿"],["e180","痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬"],["e240","磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰"],["e280","窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆"],["e340","紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷"],["e380","縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋"],["e440","隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤"],["e480","艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈"],["e540","蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬"],["e580","蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞"],["e640","襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧"],["e680","諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊"],["e740","蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜"],["e780","轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮"],["e840","錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙"],["e880","閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰"],["e940","顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃"],["e980","騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈"],["ea40","鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯"],["ea80","黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠堯槇遙瑤凜熙"],["ed40","纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏"],["ed80","塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱"],["ee40","犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙"],["ee80","蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"],["eeef","ⅰ",9,"¬¦'""],["f040","",62],["f080","",124],["f140","",62],["f180","",124],["f240","",62],["f280","",124],["f340","",62],["f380","",124],["f440","",62],["f480","",124],["f540","",62],["f580","",124],["f640","",62],["f680","",124],["f740","",62],["f780","",124],["f840","",62],["f880","",124],["f940",""],["fa40","ⅰ",9,"Ⅰ",9,"¬¦'"㈱№℡∵纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊"],["fa80","兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯"],["fb40","涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神"],["fb80","祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙"],["fc40","髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"]]')},81813:e=>{"use strict";e.exports=JSON.parse('{"application/1d-interleaved-parityfec":{"source":"iana"},"application/3gpdash-qoe-report+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/3gpp-ims+xml":{"source":"iana","compressible":true},"application/3gpphal+json":{"source":"iana","compressible":true},"application/3gpphalforms+json":{"source":"iana","compressible":true},"application/a2l":{"source":"iana"},"application/ace+cbor":{"source":"iana"},"application/activemessage":{"source":"iana"},"application/activity+json":{"source":"iana","compressible":true},"application/alto-costmap+json":{"source":"iana","compressible":true},"application/alto-costmapfilter+json":{"source":"iana","compressible":true},"application/alto-directory+json":{"source":"iana","compressible":true},"application/alto-endpointcost+json":{"source":"iana","compressible":true},"application/alto-endpointcostparams+json":{"source":"iana","compressible":true},"application/alto-endpointprop+json":{"source":"iana","compressible":true},"application/alto-endpointpropparams+json":{"source":"iana","compressible":true},"application/alto-error+json":{"source":"iana","compressible":true},"application/alto-networkmap+json":{"source":"iana","compressible":true},"application/alto-networkmapfilter+json":{"source":"iana","compressible":true},"application/alto-updatestreamcontrol+json":{"source":"iana","compressible":true},"application/alto-updatestreamparams+json":{"source":"iana","compressible":true},"application/aml":{"source":"iana"},"application/andrew-inset":{"source":"iana","extensions":["ez"]},"application/applefile":{"source":"iana"},"application/applixware":{"source":"apache","extensions":["aw"]},"application/at+jwt":{"source":"iana"},"application/atf":{"source":"iana"},"application/atfx":{"source":"iana"},"application/atom+xml":{"source":"iana","compressible":true,"extensions":["atom"]},"application/atomcat+xml":{"source":"iana","compressible":true,"extensions":["atomcat"]},"application/atomdeleted+xml":{"source":"iana","compressible":true,"extensions":["atomdeleted"]},"application/atomicmail":{"source":"iana"},"application/atomsvc+xml":{"source":"iana","compressible":true,"extensions":["atomsvc"]},"application/atsc-dwd+xml":{"source":"iana","compressible":true,"extensions":["dwd"]},"application/atsc-dynamic-event-message":{"source":"iana"},"application/atsc-held+xml":{"source":"iana","compressible":true,"extensions":["held"]},"application/atsc-rdt+json":{"source":"iana","compressible":true},"application/atsc-rsat+xml":{"source":"iana","compressible":true,"extensions":["rsat"]},"application/atxml":{"source":"iana"},"application/auth-policy+xml":{"source":"iana","compressible":true},"application/bacnet-xdd+zip":{"source":"iana","compressible":false},"application/batch-smtp":{"source":"iana"},"application/bdoc":{"compressible":false,"extensions":["bdoc"]},"application/beep+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/calendar+json":{"source":"iana","compressible":true},"application/calendar+xml":{"source":"iana","compressible":true,"extensions":["xcs"]},"application/call-completion":{"source":"iana"},"application/cals-1840":{"source":"iana"},"application/captive+json":{"source":"iana","compressible":true},"application/cbor":{"source":"iana"},"application/cbor-seq":{"source":"iana"},"application/cccex":{"source":"iana"},"application/ccmp+xml":{"source":"iana","compressible":true},"application/ccxml+xml":{"source":"iana","compressible":true,"extensions":["ccxml"]},"application/cdfx+xml":{"source":"iana","compressible":true,"extensions":["cdfx"]},"application/cdmi-capability":{"source":"iana","extensions":["cdmia"]},"application/cdmi-container":{"source":"iana","extensions":["cdmic"]},"application/cdmi-domain":{"source":"iana","extensions":["cdmid"]},"application/cdmi-object":{"source":"iana","extensions":["cdmio"]},"application/cdmi-queue":{"source":"iana","extensions":["cdmiq"]},"application/cdni":{"source":"iana"},"application/cea":{"source":"iana"},"application/cea-2018+xml":{"source":"iana","compressible":true},"application/cellml+xml":{"source":"iana","compressible":true},"application/cfw":{"source":"iana"},"application/city+json":{"source":"iana","compressible":true},"application/clr":{"source":"iana"},"application/clue+xml":{"source":"iana","compressible":true},"application/clue_info+xml":{"source":"iana","compressible":true},"application/cms":{"source":"iana"},"application/cnrp+xml":{"source":"iana","compressible":true},"application/coap-group+json":{"source":"iana","compressible":true},"application/coap-payload":{"source":"iana"},"application/commonground":{"source":"iana"},"application/conference-info+xml":{"source":"iana","compressible":true},"application/cose":{"source":"iana"},"application/cose-key":{"source":"iana"},"application/cose-key-set":{"source":"iana"},"application/cpl+xml":{"source":"iana","compressible":true,"extensions":["cpl"]},"application/csrattrs":{"source":"iana"},"application/csta+xml":{"source":"iana","compressible":true},"application/cstadata+xml":{"source":"iana","compressible":true},"application/csvm+json":{"source":"iana","compressible":true},"application/cu-seeme":{"source":"apache","extensions":["cu"]},"application/cwt":{"source":"iana"},"application/cybercash":{"source":"iana"},"application/dart":{"compressible":true},"application/dash+xml":{"source":"iana","compressible":true,"extensions":["mpd"]},"application/dash-patch+xml":{"source":"iana","compressible":true,"extensions":["mpp"]},"application/dashdelta":{"source":"iana"},"application/davmount+xml":{"source":"iana","compressible":true,"extensions":["davmount"]},"application/dca-rft":{"source":"iana"},"application/dcd":{"source":"iana"},"application/dec-dx":{"source":"iana"},"application/dialog-info+xml":{"source":"iana","compressible":true},"application/dicom":{"source":"iana"},"application/dicom+json":{"source":"iana","compressible":true},"application/dicom+xml":{"source":"iana","compressible":true},"application/dii":{"source":"iana"},"application/dit":{"source":"iana"},"application/dns":{"source":"iana"},"application/dns+json":{"source":"iana","compressible":true},"application/dns-message":{"source":"iana"},"application/docbook+xml":{"source":"apache","compressible":true,"extensions":["dbk"]},"application/dots+cbor":{"source":"iana"},"application/dskpp+xml":{"source":"iana","compressible":true},"application/dssc+der":{"source":"iana","extensions":["dssc"]},"application/dssc+xml":{"source":"iana","compressible":true,"extensions":["xdssc"]},"application/dvcs":{"source":"iana"},"application/ecmascript":{"source":"iana","compressible":true,"extensions":["es","ecma"]},"application/edi-consent":{"source":"iana"},"application/edi-x12":{"source":"iana","compressible":false},"application/edifact":{"source":"iana","compressible":false},"application/efi":{"source":"iana"},"application/elm+json":{"source":"iana","charset":"UTF-8","compressible":true},"application/elm+xml":{"source":"iana","compressible":true},"application/emergencycalldata.cap+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/emergencycalldata.comment+xml":{"source":"iana","compressible":true},"application/emergencycalldata.control+xml":{"source":"iana","compressible":true},"application/emergencycalldata.deviceinfo+xml":{"source":"iana","compressible":true},"application/emergencycalldata.ecall.msd":{"source":"iana"},"application/emergencycalldata.providerinfo+xml":{"source":"iana","compressible":true},"application/emergencycalldata.serviceinfo+xml":{"source":"iana","compressible":true},"application/emergencycalldata.subscriberinfo+xml":{"source":"iana","compressible":true},"application/emergencycalldata.veds+xml":{"source":"iana","compressible":true},"application/emma+xml":{"source":"iana","compressible":true,"extensions":["emma"]},"application/emotionml+xml":{"source":"iana","compressible":true,"extensions":["emotionml"]},"application/encaprtp":{"source":"iana"},"application/epp+xml":{"source":"iana","compressible":true},"application/epub+zip":{"source":"iana","compressible":false,"extensions":["epub"]},"application/eshop":{"source":"iana"},"application/exi":{"source":"iana","extensions":["exi"]},"application/expect-ct-report+json":{"source":"iana","compressible":true},"application/express":{"source":"iana","extensions":["exp"]},"application/fastinfoset":{"source":"iana"},"application/fastsoap":{"source":"iana"},"application/fdt+xml":{"source":"iana","compressible":true,"extensions":["fdt"]},"application/fhir+json":{"source":"iana","charset":"UTF-8","compressible":true},"application/fhir+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/fido.trusted-apps+json":{"compressible":true},"application/fits":{"source":"iana"},"application/flexfec":{"source":"iana"},"application/font-sfnt":{"source":"iana"},"application/font-tdpfr":{"source":"iana","extensions":["pfr"]},"application/font-woff":{"source":"iana","compressible":false},"application/framework-attributes+xml":{"source":"iana","compressible":true},"application/geo+json":{"source":"iana","compressible":true,"extensions":["geojson"]},"application/geo+json-seq":{"source":"iana"},"application/geopackage+sqlite3":{"source":"iana"},"application/geoxacml+xml":{"source":"iana","compressible":true},"application/gltf-buffer":{"source":"iana"},"application/gml+xml":{"source":"iana","compressible":true,"extensions":["gml"]},"application/gpx+xml":{"source":"apache","compressible":true,"extensions":["gpx"]},"application/gxf":{"source":"apache","extensions":["gxf"]},"application/gzip":{"source":"iana","compressible":false,"extensions":["gz"]},"application/h224":{"source":"iana"},"application/held+xml":{"source":"iana","compressible":true},"application/hjson":{"extensions":["hjson"]},"application/http":{"source":"iana"},"application/hyperstudio":{"source":"iana","extensions":["stk"]},"application/ibe-key-request+xml":{"source":"iana","compressible":true},"application/ibe-pkg-reply+xml":{"source":"iana","compressible":true},"application/ibe-pp-data":{"source":"iana"},"application/iges":{"source":"iana"},"application/im-iscomposing+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/index":{"source":"iana"},"application/index.cmd":{"source":"iana"},"application/index.obj":{"source":"iana"},"application/index.response":{"source":"iana"},"application/index.vnd":{"source":"iana"},"application/inkml+xml":{"source":"iana","compressible":true,"extensions":["ink","inkml"]},"application/iotp":{"source":"iana"},"application/ipfix":{"source":"iana","extensions":["ipfix"]},"application/ipp":{"source":"iana"},"application/isup":{"source":"iana"},"application/its+xml":{"source":"iana","compressible":true,"extensions":["its"]},"application/java-archive":{"source":"apache","compressible":false,"extensions":["jar","war","ear"]},"application/java-serialized-object":{"source":"apache","compressible":false,"extensions":["ser"]},"application/java-vm":{"source":"apache","compressible":false,"extensions":["class"]},"application/javascript":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["js","mjs"]},"application/jf2feed+json":{"source":"iana","compressible":true},"application/jose":{"source":"iana"},"application/jose+json":{"source":"iana","compressible":true},"application/jrd+json":{"source":"iana","compressible":true},"application/jscalendar+json":{"source":"iana","compressible":true},"application/json":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["json","map"]},"application/json-patch+json":{"source":"iana","compressible":true},"application/json-seq":{"source":"iana"},"application/json5":{"extensions":["json5"]},"application/jsonml+json":{"source":"apache","compressible":true,"extensions":["jsonml"]},"application/jwk+json":{"source":"iana","compressible":true},"application/jwk-set+json":{"source":"iana","compressible":true},"application/jwt":{"source":"iana"},"application/kpml-request+xml":{"source":"iana","compressible":true},"application/kpml-response+xml":{"source":"iana","compressible":true},"application/ld+json":{"source":"iana","compressible":true,"extensions":["jsonld"]},"application/lgr+xml":{"source":"iana","compressible":true,"extensions":["lgr"]},"application/link-format":{"source":"iana"},"application/load-control+xml":{"source":"iana","compressible":true},"application/lost+xml":{"source":"iana","compressible":true,"extensions":["lostxml"]},"application/lostsync+xml":{"source":"iana","compressible":true},"application/lpf+zip":{"source":"iana","compressible":false},"application/lxf":{"source":"iana"},"application/mac-binhex40":{"source":"iana","extensions":["hqx"]},"application/mac-compactpro":{"source":"apache","extensions":["cpt"]},"application/macwriteii":{"source":"iana"},"application/mads+xml":{"source":"iana","compressible":true,"extensions":["mads"]},"application/manifest+json":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["webmanifest"]},"application/marc":{"source":"iana","extensions":["mrc"]},"application/marcxml+xml":{"source":"iana","compressible":true,"extensions":["mrcx"]},"application/mathematica":{"source":"iana","extensions":["ma","nb","mb"]},"application/mathml+xml":{"source":"iana","compressible":true,"extensions":["mathml"]},"application/mathml-content+xml":{"source":"iana","compressible":true},"application/mathml-presentation+xml":{"source":"iana","compressible":true},"application/mbms-associated-procedure-description+xml":{"source":"iana","compressible":true},"application/mbms-deregister+xml":{"source":"iana","compressible":true},"application/mbms-envelope+xml":{"source":"iana","compressible":true},"application/mbms-msk+xml":{"source":"iana","compressible":true},"application/mbms-msk-response+xml":{"source":"iana","compressible":true},"application/mbms-protection-description+xml":{"source":"iana","compressible":true},"application/mbms-reception-report+xml":{"source":"iana","compressible":true},"application/mbms-register+xml":{"source":"iana","compressible":true},"application/mbms-register-response+xml":{"source":"iana","compressible":true},"application/mbms-schedule+xml":{"source":"iana","compressible":true},"application/mbms-user-service-description+xml":{"source":"iana","compressible":true},"application/mbox":{"source":"iana","extensions":["mbox"]},"application/media-policy-dataset+xml":{"source":"iana","compressible":true,"extensions":["mpf"]},"application/media_control+xml":{"source":"iana","compressible":true},"application/mediaservercontrol+xml":{"source":"iana","compressible":true,"extensions":["mscml"]},"application/merge-patch+json":{"source":"iana","compressible":true},"application/metalink+xml":{"source":"apache","compressible":true,"extensions":["metalink"]},"application/metalink4+xml":{"source":"iana","compressible":true,"extensions":["meta4"]},"application/mets+xml":{"source":"iana","compressible":true,"extensions":["mets"]},"application/mf4":{"source":"iana"},"application/mikey":{"source":"iana"},"application/mipc":{"source":"iana"},"application/missing-blocks+cbor-seq":{"source":"iana"},"application/mmt-aei+xml":{"source":"iana","compressible":true,"extensions":["maei"]},"application/mmt-usd+xml":{"source":"iana","compressible":true,"extensions":["musd"]},"application/mods+xml":{"source":"iana","compressible":true,"extensions":["mods"]},"application/moss-keys":{"source":"iana"},"application/moss-signature":{"source":"iana"},"application/mosskey-data":{"source":"iana"},"application/mosskey-request":{"source":"iana"},"application/mp21":{"source":"iana","extensions":["m21","mp21"]},"application/mp4":{"source":"iana","extensions":["mp4s","m4p"]},"application/mpeg4-generic":{"source":"iana"},"application/mpeg4-iod":{"source":"iana"},"application/mpeg4-iod-xmt":{"source":"iana"},"application/mrb-consumer+xml":{"source":"iana","compressible":true},"application/mrb-publish+xml":{"source":"iana","compressible":true},"application/msc-ivr+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/msc-mixer+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/msword":{"source":"iana","compressible":false,"extensions":["doc","dot"]},"application/mud+json":{"source":"iana","compressible":true},"application/multipart-core":{"source":"iana"},"application/mxf":{"source":"iana","extensions":["mxf"]},"application/n-quads":{"source":"iana","extensions":["nq"]},"application/n-triples":{"source":"iana","extensions":["nt"]},"application/nasdata":{"source":"iana"},"application/news-checkgroups":{"source":"iana","charset":"US-ASCII"},"application/news-groupinfo":{"source":"iana","charset":"US-ASCII"},"application/news-transmission":{"source":"iana"},"application/nlsml+xml":{"source":"iana","compressible":true},"application/node":{"source":"iana","extensions":["cjs"]},"application/nss":{"source":"iana"},"application/oauth-authz-req+jwt":{"source":"iana"},"application/oblivious-dns-message":{"source":"iana"},"application/ocsp-request":{"source":"iana"},"application/ocsp-response":{"source":"iana"},"application/octet-stream":{"source":"iana","compressible":false,"extensions":["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"]},"application/oda":{"source":"iana","extensions":["oda"]},"application/odm+xml":{"source":"iana","compressible":true},"application/odx":{"source":"iana"},"application/oebps-package+xml":{"source":"iana","compressible":true,"extensions":["opf"]},"application/ogg":{"source":"iana","compressible":false,"extensions":["ogx"]},"application/omdoc+xml":{"source":"apache","compressible":true,"extensions":["omdoc"]},"application/onenote":{"source":"apache","extensions":["onetoc","onetoc2","onetmp","onepkg"]},"application/opc-nodeset+xml":{"source":"iana","compressible":true},"application/oscore":{"source":"iana"},"application/oxps":{"source":"iana","extensions":["oxps"]},"application/p21":{"source":"iana"},"application/p21+zip":{"source":"iana","compressible":false},"application/p2p-overlay+xml":{"source":"iana","compressible":true,"extensions":["relo"]},"application/parityfec":{"source":"iana"},"application/passport":{"source":"iana"},"application/patch-ops-error+xml":{"source":"iana","compressible":true,"extensions":["xer"]},"application/pdf":{"source":"iana","compressible":false,"extensions":["pdf"]},"application/pdx":{"source":"iana"},"application/pem-certificate-chain":{"source":"iana"},"application/pgp-encrypted":{"source":"iana","compressible":false,"extensions":["pgp"]},"application/pgp-keys":{"source":"iana","extensions":["asc"]},"application/pgp-signature":{"source":"iana","extensions":["asc","sig"]},"application/pics-rules":{"source":"apache","extensions":["prf"]},"application/pidf+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/pidf-diff+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/pkcs10":{"source":"iana","extensions":["p10"]},"application/pkcs12":{"source":"iana"},"application/pkcs7-mime":{"source":"iana","extensions":["p7m","p7c"]},"application/pkcs7-signature":{"source":"iana","extensions":["p7s"]},"application/pkcs8":{"source":"iana","extensions":["p8"]},"application/pkcs8-encrypted":{"source":"iana"},"application/pkix-attr-cert":{"source":"iana","extensions":["ac"]},"application/pkix-cert":{"source":"iana","extensions":["cer"]},"application/pkix-crl":{"source":"iana","extensions":["crl"]},"application/pkix-pkipath":{"source":"iana","extensions":["pkipath"]},"application/pkixcmp":{"source":"iana","extensions":["pki"]},"application/pls+xml":{"source":"iana","compressible":true,"extensions":["pls"]},"application/poc-settings+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/postscript":{"source":"iana","compressible":true,"extensions":["ai","eps","ps"]},"application/ppsp-tracker+json":{"source":"iana","compressible":true},"application/problem+json":{"source":"iana","compressible":true},"application/problem+xml":{"source":"iana","compressible":true},"application/provenance+xml":{"source":"iana","compressible":true,"extensions":["provx"]},"application/prs.alvestrand.titrax-sheet":{"source":"iana"},"application/prs.cww":{"source":"iana","extensions":["cww"]},"application/prs.cyn":{"source":"iana","charset":"7-BIT"},"application/prs.hpub+zip":{"source":"iana","compressible":false},"application/prs.nprend":{"source":"iana"},"application/prs.plucker":{"source":"iana"},"application/prs.rdf-xml-crypt":{"source":"iana"},"application/prs.xsf+xml":{"source":"iana","compressible":true},"application/pskc+xml":{"source":"iana","compressible":true,"extensions":["pskcxml"]},"application/pvd+json":{"source":"iana","compressible":true},"application/qsig":{"source":"iana"},"application/raml+yaml":{"compressible":true,"extensions":["raml"]},"application/raptorfec":{"source":"iana"},"application/rdap+json":{"source":"iana","compressible":true},"application/rdf+xml":{"source":"iana","compressible":true,"extensions":["rdf","owl"]},"application/reginfo+xml":{"source":"iana","compressible":true,"extensions":["rif"]},"application/relax-ng-compact-syntax":{"source":"iana","extensions":["rnc"]},"application/remote-printing":{"source":"iana"},"application/reputon+json":{"source":"iana","compressible":true},"application/resource-lists+xml":{"source":"iana","compressible":true,"extensions":["rl"]},"application/resource-lists-diff+xml":{"source":"iana","compressible":true,"extensions":["rld"]},"application/rfc+xml":{"source":"iana","compressible":true},"application/riscos":{"source":"iana"},"application/rlmi+xml":{"source":"iana","compressible":true},"application/rls-services+xml":{"source":"iana","compressible":true,"extensions":["rs"]},"application/route-apd+xml":{"source":"iana","compressible":true,"extensions":["rapd"]},"application/route-s-tsid+xml":{"source":"iana","compressible":true,"extensions":["sls"]},"application/route-usd+xml":{"source":"iana","compressible":true,"extensions":["rusd"]},"application/rpki-ghostbusters":{"source":"iana","extensions":["gbr"]},"application/rpki-manifest":{"source":"iana","extensions":["mft"]},"application/rpki-publication":{"source":"iana"},"application/rpki-roa":{"source":"iana","extensions":["roa"]},"application/rpki-updown":{"source":"iana"},"application/rsd+xml":{"source":"apache","compressible":true,"extensions":["rsd"]},"application/rss+xml":{"source":"apache","compressible":true,"extensions":["rss"]},"application/rtf":{"source":"iana","compressible":true,"extensions":["rtf"]},"application/rtploopback":{"source":"iana"},"application/rtx":{"source":"iana"},"application/samlassertion+xml":{"source":"iana","compressible":true},"application/samlmetadata+xml":{"source":"iana","compressible":true},"application/sarif+json":{"source":"iana","compressible":true},"application/sarif-external-properties+json":{"source":"iana","compressible":true},"application/sbe":{"source":"iana"},"application/sbml+xml":{"source":"iana","compressible":true,"extensions":["sbml"]},"application/scaip+xml":{"source":"iana","compressible":true},"application/scim+json":{"source":"iana","compressible":true},"application/scvp-cv-request":{"source":"iana","extensions":["scq"]},"application/scvp-cv-response":{"source":"iana","extensions":["scs"]},"application/scvp-vp-request":{"source":"iana","extensions":["spq"]},"application/scvp-vp-response":{"source":"iana","extensions":["spp"]},"application/sdp":{"source":"iana","extensions":["sdp"]},"application/secevent+jwt":{"source":"iana"},"application/senml+cbor":{"source":"iana"},"application/senml+json":{"source":"iana","compressible":true},"application/senml+xml":{"source":"iana","compressible":true,"extensions":["senmlx"]},"application/senml-etch+cbor":{"source":"iana"},"application/senml-etch+json":{"source":"iana","compressible":true},"application/senml-exi":{"source":"iana"},"application/sensml+cbor":{"source":"iana"},"application/sensml+json":{"source":"iana","compressible":true},"application/sensml+xml":{"source":"iana","compressible":true,"extensions":["sensmlx"]},"application/sensml-exi":{"source":"iana"},"application/sep+xml":{"source":"iana","compressible":true},"application/sep-exi":{"source":"iana"},"application/session-info":{"source":"iana"},"application/set-payment":{"source":"iana"},"application/set-payment-initiation":{"source":"iana","extensions":["setpay"]},"application/set-registration":{"source":"iana"},"application/set-registration-initiation":{"source":"iana","extensions":["setreg"]},"application/sgml":{"source":"iana"},"application/sgml-open-catalog":{"source":"iana"},"application/shf+xml":{"source":"iana","compressible":true,"extensions":["shf"]},"application/sieve":{"source":"iana","extensions":["siv","sieve"]},"application/simple-filter+xml":{"source":"iana","compressible":true},"application/simple-message-summary":{"source":"iana"},"application/simplesymbolcontainer":{"source":"iana"},"application/sipc":{"source":"iana"},"application/slate":{"source":"iana"},"application/smil":{"source":"iana"},"application/smil+xml":{"source":"iana","compressible":true,"extensions":["smi","smil"]},"application/smpte336m":{"source":"iana"},"application/soap+fastinfoset":{"source":"iana"},"application/soap+xml":{"source":"iana","compressible":true},"application/sparql-query":{"source":"iana","extensions":["rq"]},"application/sparql-results+xml":{"source":"iana","compressible":true,"extensions":["srx"]},"application/spdx+json":{"source":"iana","compressible":true},"application/spirits-event+xml":{"source":"iana","compressible":true},"application/sql":{"source":"iana"},"application/srgs":{"source":"iana","extensions":["gram"]},"application/srgs+xml":{"source":"iana","compressible":true,"extensions":["grxml"]},"application/sru+xml":{"source":"iana","compressible":true,"extensions":["sru"]},"application/ssdl+xml":{"source":"apache","compressible":true,"extensions":["ssdl"]},"application/ssml+xml":{"source":"iana","compressible":true,"extensions":["ssml"]},"application/stix+json":{"source":"iana","compressible":true},"application/swid+xml":{"source":"iana","compressible":true,"extensions":["swidtag"]},"application/tamp-apex-update":{"source":"iana"},"application/tamp-apex-update-confirm":{"source":"iana"},"application/tamp-community-update":{"source":"iana"},"application/tamp-community-update-confirm":{"source":"iana"},"application/tamp-error":{"source":"iana"},"application/tamp-sequence-adjust":{"source":"iana"},"application/tamp-sequence-adjust-confirm":{"source":"iana"},"application/tamp-status-query":{"source":"iana"},"application/tamp-status-response":{"source":"iana"},"application/tamp-update":{"source":"iana"},"application/tamp-update-confirm":{"source":"iana"},"application/tar":{"compressible":true},"application/taxii+json":{"source":"iana","compressible":true},"application/td+json":{"source":"iana","compressible":true},"application/tei+xml":{"source":"iana","compressible":true,"extensions":["tei","teicorpus"]},"application/tetra_isi":{"source":"iana"},"application/thraud+xml":{"source":"iana","compressible":true,"extensions":["tfi"]},"application/timestamp-query":{"source":"iana"},"application/timestamp-reply":{"source":"iana"},"application/timestamped-data":{"source":"iana","extensions":["tsd"]},"application/tlsrpt+gzip":{"source":"iana"},"application/tlsrpt+json":{"source":"iana","compressible":true},"application/tnauthlist":{"source":"iana"},"application/token-introspection+jwt":{"source":"iana"},"application/toml":{"compressible":true,"extensions":["toml"]},"application/trickle-ice-sdpfrag":{"source":"iana"},"application/trig":{"source":"iana","extensions":["trig"]},"application/ttml+xml":{"source":"iana","compressible":true,"extensions":["ttml"]},"application/tve-trigger":{"source":"iana"},"application/tzif":{"source":"iana"},"application/tzif-leap":{"source":"iana"},"application/ubjson":{"compressible":false,"extensions":["ubj"]},"application/ulpfec":{"source":"iana"},"application/urc-grpsheet+xml":{"source":"iana","compressible":true},"application/urc-ressheet+xml":{"source":"iana","compressible":true,"extensions":["rsheet"]},"application/urc-targetdesc+xml":{"source":"iana","compressible":true,"extensions":["td"]},"application/urc-uisocketdesc+xml":{"source":"iana","compressible":true},"application/vcard+json":{"source":"iana","compressible":true},"application/vcard+xml":{"source":"iana","compressible":true},"application/vemmi":{"source":"iana"},"application/vividence.scriptfile":{"source":"apache"},"application/vnd.1000minds.decision-model+xml":{"source":"iana","compressible":true,"extensions":["1km"]},"application/vnd.3gpp-prose+xml":{"source":"iana","compressible":true},"application/vnd.3gpp-prose-pc3ch+xml":{"source":"iana","compressible":true},"application/vnd.3gpp-v2x-local-service-information":{"source":"iana"},"application/vnd.3gpp.5gnas":{"source":"iana"},"application/vnd.3gpp.access-transfer-events+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.bsf+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.gmop+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.gtpc":{"source":"iana"},"application/vnd.3gpp.interworking-data":{"source":"iana"},"application/vnd.3gpp.lpp":{"source":"iana"},"application/vnd.3gpp.mc-signalling-ear":{"source":"iana"},"application/vnd.3gpp.mcdata-affiliation-command+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcdata-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcdata-payload":{"source":"iana"},"application/vnd.3gpp.mcdata-service-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcdata-signalling":{"source":"iana"},"application/vnd.3gpp.mcdata-ue-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcdata-user-profile+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-affiliation-command+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-floor-request+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-location-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-mbms-usage-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-service-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-signed+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-ue-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-ue-init-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcptt-user-profile+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-affiliation-command+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-affiliation-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-location-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-mbms-usage-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-service-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-transmission-request+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-ue-config+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mcvideo-user-profile+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.mid-call+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.ngap":{"source":"iana"},"application/vnd.3gpp.pfcp":{"source":"iana"},"application/vnd.3gpp.pic-bw-large":{"source":"iana","extensions":["plb"]},"application/vnd.3gpp.pic-bw-small":{"source":"iana","extensions":["psb"]},"application/vnd.3gpp.pic-bw-var":{"source":"iana","extensions":["pvb"]},"application/vnd.3gpp.s1ap":{"source":"iana"},"application/vnd.3gpp.sms":{"source":"iana"},"application/vnd.3gpp.sms+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.srvcc-ext+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.srvcc-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.state-and-event-info+xml":{"source":"iana","compressible":true},"application/vnd.3gpp.ussd+xml":{"source":"iana","compressible":true},"application/vnd.3gpp2.bcmcsinfo+xml":{"source":"iana","compressible":true},"application/vnd.3gpp2.sms":{"source":"iana"},"application/vnd.3gpp2.tcap":{"source":"iana","extensions":["tcap"]},"application/vnd.3lightssoftware.imagescal":{"source":"iana"},"application/vnd.3m.post-it-notes":{"source":"iana","extensions":["pwn"]},"application/vnd.accpac.simply.aso":{"source":"iana","extensions":["aso"]},"application/vnd.accpac.simply.imp":{"source":"iana","extensions":["imp"]},"application/vnd.acucobol":{"source":"iana","extensions":["acu"]},"application/vnd.acucorp":{"source":"iana","extensions":["atc","acutc"]},"application/vnd.adobe.air-application-installer-package+zip":{"source":"apache","compressible":false,"extensions":["air"]},"application/vnd.adobe.flash.movie":{"source":"iana"},"application/vnd.adobe.formscentral.fcdt":{"source":"iana","extensions":["fcdt"]},"application/vnd.adobe.fxp":{"source":"iana","extensions":["fxp","fxpl"]},"application/vnd.adobe.partial-upload":{"source":"iana"},"application/vnd.adobe.xdp+xml":{"source":"iana","compressible":true,"extensions":["xdp"]},"application/vnd.adobe.xfdf":{"source":"iana","extensions":["xfdf"]},"application/vnd.aether.imp":{"source":"iana"},"application/vnd.afpc.afplinedata":{"source":"iana"},"application/vnd.afpc.afplinedata-pagedef":{"source":"iana"},"application/vnd.afpc.cmoca-cmresource":{"source":"iana"},"application/vnd.afpc.foca-charset":{"source":"iana"},"application/vnd.afpc.foca-codedfont":{"source":"iana"},"application/vnd.afpc.foca-codepage":{"source":"iana"},"application/vnd.afpc.modca":{"source":"iana"},"application/vnd.afpc.modca-cmtable":{"source":"iana"},"application/vnd.afpc.modca-formdef":{"source":"iana"},"application/vnd.afpc.modca-mediummap":{"source":"iana"},"application/vnd.afpc.modca-objectcontainer":{"source":"iana"},"application/vnd.afpc.modca-overlay":{"source":"iana"},"application/vnd.afpc.modca-pagesegment":{"source":"iana"},"application/vnd.age":{"source":"iana","extensions":["age"]},"application/vnd.ah-barcode":{"source":"iana"},"application/vnd.ahead.space":{"source":"iana","extensions":["ahead"]},"application/vnd.airzip.filesecure.azf":{"source":"iana","extensions":["azf"]},"application/vnd.airzip.filesecure.azs":{"source":"iana","extensions":["azs"]},"application/vnd.amadeus+json":{"source":"iana","compressible":true},"application/vnd.amazon.ebook":{"source":"apache","extensions":["azw"]},"application/vnd.amazon.mobi8-ebook":{"source":"iana"},"application/vnd.americandynamics.acc":{"source":"iana","extensions":["acc"]},"application/vnd.amiga.ami":{"source":"iana","extensions":["ami"]},"application/vnd.amundsen.maze+xml":{"source":"iana","compressible":true},"application/vnd.android.ota":{"source":"iana"},"application/vnd.android.package-archive":{"source":"apache","compressible":false,"extensions":["apk"]},"application/vnd.anki":{"source":"iana"},"application/vnd.anser-web-certificate-issue-initiation":{"source":"iana","extensions":["cii"]},"application/vnd.anser-web-funds-transfer-initiation":{"source":"apache","extensions":["fti"]},"application/vnd.antix.game-component":{"source":"iana","extensions":["atx"]},"application/vnd.apache.arrow.file":{"source":"iana"},"application/vnd.apache.arrow.stream":{"source":"iana"},"application/vnd.apache.thrift.binary":{"source":"iana"},"application/vnd.apache.thrift.compact":{"source":"iana"},"application/vnd.apache.thrift.json":{"source":"iana"},"application/vnd.api+json":{"source":"iana","compressible":true},"application/vnd.aplextor.warrp+json":{"source":"iana","compressible":true},"application/vnd.apothekende.reservation+json":{"source":"iana","compressible":true},"application/vnd.apple.installer+xml":{"source":"iana","compressible":true,"extensions":["mpkg"]},"application/vnd.apple.keynote":{"source":"iana","extensions":["key"]},"application/vnd.apple.mpegurl":{"source":"iana","extensions":["m3u8"]},"application/vnd.apple.numbers":{"source":"iana","extensions":["numbers"]},"application/vnd.apple.pages":{"source":"iana","extensions":["pages"]},"application/vnd.apple.pkpass":{"compressible":false,"extensions":["pkpass"]},"application/vnd.arastra.swi":{"source":"iana"},"application/vnd.aristanetworks.swi":{"source":"iana","extensions":["swi"]},"application/vnd.artisan+json":{"source":"iana","compressible":true},"application/vnd.artsquare":{"source":"iana"},"application/vnd.astraea-software.iota":{"source":"iana","extensions":["iota"]},"application/vnd.audiograph":{"source":"iana","extensions":["aep"]},"application/vnd.autopackage":{"source":"iana"},"application/vnd.avalon+json":{"source":"iana","compressible":true},"application/vnd.avistar+xml":{"source":"iana","compressible":true},"application/vnd.balsamiq.bmml+xml":{"source":"iana","compressible":true,"extensions":["bmml"]},"application/vnd.balsamiq.bmpr":{"source":"iana"},"application/vnd.banana-accounting":{"source":"iana"},"application/vnd.bbf.usp.error":{"source":"iana"},"application/vnd.bbf.usp.msg":{"source":"iana"},"application/vnd.bbf.usp.msg+json":{"source":"iana","compressible":true},"application/vnd.bekitzur-stech+json":{"source":"iana","compressible":true},"application/vnd.bint.med-content":{"source":"iana"},"application/vnd.biopax.rdf+xml":{"source":"iana","compressible":true},"application/vnd.blink-idb-value-wrapper":{"source":"iana"},"application/vnd.blueice.multipass":{"source":"iana","extensions":["mpm"]},"application/vnd.bluetooth.ep.oob":{"source":"iana"},"application/vnd.bluetooth.le.oob":{"source":"iana"},"application/vnd.bmi":{"source":"iana","extensions":["bmi"]},"application/vnd.bpf":{"source":"iana"},"application/vnd.bpf3":{"source":"iana"},"application/vnd.businessobjects":{"source":"iana","extensions":["rep"]},"application/vnd.byu.uapi+json":{"source":"iana","compressible":true},"application/vnd.cab-jscript":{"source":"iana"},"application/vnd.canon-cpdl":{"source":"iana"},"application/vnd.canon-lips":{"source":"iana"},"application/vnd.capasystems-pg+json":{"source":"iana","compressible":true},"application/vnd.cendio.thinlinc.clientconf":{"source":"iana"},"application/vnd.century-systems.tcp_stream":{"source":"iana"},"application/vnd.chemdraw+xml":{"source":"iana","compressible":true,"extensions":["cdxml"]},"application/vnd.chess-pgn":{"source":"iana"},"application/vnd.chipnuts.karaoke-mmd":{"source":"iana","extensions":["mmd"]},"application/vnd.ciedi":{"source":"iana"},"application/vnd.cinderella":{"source":"iana","extensions":["cdy"]},"application/vnd.cirpack.isdn-ext":{"source":"iana"},"application/vnd.citationstyles.style+xml":{"source":"iana","compressible":true,"extensions":["csl"]},"application/vnd.claymore":{"source":"iana","extensions":["cla"]},"application/vnd.cloanto.rp9":{"source":"iana","extensions":["rp9"]},"application/vnd.clonk.c4group":{"source":"iana","extensions":["c4g","c4d","c4f","c4p","c4u"]},"application/vnd.cluetrust.cartomobile-config":{"source":"iana","extensions":["c11amc"]},"application/vnd.cluetrust.cartomobile-config-pkg":{"source":"iana","extensions":["c11amz"]},"application/vnd.coffeescript":{"source":"iana"},"application/vnd.collabio.xodocuments.document":{"source":"iana"},"application/vnd.collabio.xodocuments.document-template":{"source":"iana"},"application/vnd.collabio.xodocuments.presentation":{"source":"iana"},"application/vnd.collabio.xodocuments.presentation-template":{"source":"iana"},"application/vnd.collabio.xodocuments.spreadsheet":{"source":"iana"},"application/vnd.collabio.xodocuments.spreadsheet-template":{"source":"iana"},"application/vnd.collection+json":{"source":"iana","compressible":true},"application/vnd.collection.doc+json":{"source":"iana","compressible":true},"application/vnd.collection.next+json":{"source":"iana","compressible":true},"application/vnd.comicbook+zip":{"source":"iana","compressible":false},"application/vnd.comicbook-rar":{"source":"iana"},"application/vnd.commerce-battelle":{"source":"iana"},"application/vnd.commonspace":{"source":"iana","extensions":["csp"]},"application/vnd.contact.cmsg":{"source":"iana","extensions":["cdbcmsg"]},"application/vnd.coreos.ignition+json":{"source":"iana","compressible":true},"application/vnd.cosmocaller":{"source":"iana","extensions":["cmc"]},"application/vnd.crick.clicker":{"source":"iana","extensions":["clkx"]},"application/vnd.crick.clicker.keyboard":{"source":"iana","extensions":["clkk"]},"application/vnd.crick.clicker.palette":{"source":"iana","extensions":["clkp"]},"application/vnd.crick.clicker.template":{"source":"iana","extensions":["clkt"]},"application/vnd.crick.clicker.wordbank":{"source":"iana","extensions":["clkw"]},"application/vnd.criticaltools.wbs+xml":{"source":"iana","compressible":true,"extensions":["wbs"]},"application/vnd.cryptii.pipe+json":{"source":"iana","compressible":true},"application/vnd.crypto-shade-file":{"source":"iana"},"application/vnd.cryptomator.encrypted":{"source":"iana"},"application/vnd.cryptomator.vault":{"source":"iana"},"application/vnd.ctc-posml":{"source":"iana","extensions":["pml"]},"application/vnd.ctct.ws+xml":{"source":"iana","compressible":true},"application/vnd.cups-pdf":{"source":"iana"},"application/vnd.cups-postscript":{"source":"iana"},"application/vnd.cups-ppd":{"source":"iana","extensions":["ppd"]},"application/vnd.cups-raster":{"source":"iana"},"application/vnd.cups-raw":{"source":"iana"},"application/vnd.curl":{"source":"iana"},"application/vnd.curl.car":{"source":"apache","extensions":["car"]},"application/vnd.curl.pcurl":{"source":"apache","extensions":["pcurl"]},"application/vnd.cyan.dean.root+xml":{"source":"iana","compressible":true},"application/vnd.cybank":{"source":"iana"},"application/vnd.cyclonedx+json":{"source":"iana","compressible":true},"application/vnd.cyclonedx+xml":{"source":"iana","compressible":true},"application/vnd.d2l.coursepackage1p0+zip":{"source":"iana","compressible":false},"application/vnd.d3m-dataset":{"source":"iana"},"application/vnd.d3m-problem":{"source":"iana"},"application/vnd.dart":{"source":"iana","compressible":true,"extensions":["dart"]},"application/vnd.data-vision.rdz":{"source":"iana","extensions":["rdz"]},"application/vnd.datapackage+json":{"source":"iana","compressible":true},"application/vnd.dataresource+json":{"source":"iana","compressible":true},"application/vnd.dbf":{"source":"iana","extensions":["dbf"]},"application/vnd.debian.binary-package":{"source":"iana"},"application/vnd.dece.data":{"source":"iana","extensions":["uvf","uvvf","uvd","uvvd"]},"application/vnd.dece.ttml+xml":{"source":"iana","compressible":true,"extensions":["uvt","uvvt"]},"application/vnd.dece.unspecified":{"source":"iana","extensions":["uvx","uvvx"]},"application/vnd.dece.zip":{"source":"iana","extensions":["uvz","uvvz"]},"application/vnd.denovo.fcselayout-link":{"source":"iana","extensions":["fe_launch"]},"application/vnd.desmume.movie":{"source":"iana"},"application/vnd.dir-bi.plate-dl-nosuffix":{"source":"iana"},"application/vnd.dm.delegation+xml":{"source":"iana","compressible":true},"application/vnd.dna":{"source":"iana","extensions":["dna"]},"application/vnd.document+json":{"source":"iana","compressible":true},"application/vnd.dolby.mlp":{"source":"apache","extensions":["mlp"]},"application/vnd.dolby.mobile.1":{"source":"iana"},"application/vnd.dolby.mobile.2":{"source":"iana"},"application/vnd.doremir.scorecloud-binary-document":{"source":"iana"},"application/vnd.dpgraph":{"source":"iana","extensions":["dpg"]},"application/vnd.dreamfactory":{"source":"iana","extensions":["dfac"]},"application/vnd.drive+json":{"source":"iana","compressible":true},"application/vnd.ds-keypoint":{"source":"apache","extensions":["kpxx"]},"application/vnd.dtg.local":{"source":"iana"},"application/vnd.dtg.local.flash":{"source":"iana"},"application/vnd.dtg.local.html":{"source":"iana"},"application/vnd.dvb.ait":{"source":"iana","extensions":["ait"]},"application/vnd.dvb.dvbisl+xml":{"source":"iana","compressible":true},"application/vnd.dvb.dvbj":{"source":"iana"},"application/vnd.dvb.esgcontainer":{"source":"iana"},"application/vnd.dvb.ipdcdftnotifaccess":{"source":"iana"},"application/vnd.dvb.ipdcesgaccess":{"source":"iana"},"application/vnd.dvb.ipdcesgaccess2":{"source":"iana"},"application/vnd.dvb.ipdcesgpdd":{"source":"iana"},"application/vnd.dvb.ipdcroaming":{"source":"iana"},"application/vnd.dvb.iptv.alfec-base":{"source":"iana"},"application/vnd.dvb.iptv.alfec-enhancement":{"source":"iana"},"application/vnd.dvb.notif-aggregate-root+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-container+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-generic+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-ia-msglist+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-ia-registration-request+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-ia-registration-response+xml":{"source":"iana","compressible":true},"application/vnd.dvb.notif-init+xml":{"source":"iana","compressible":true},"application/vnd.dvb.pfr":{"source":"iana"},"application/vnd.dvb.service":{"source":"iana","extensions":["svc"]},"application/vnd.dxr":{"source":"iana"},"application/vnd.dynageo":{"source":"iana","extensions":["geo"]},"application/vnd.dzr":{"source":"iana"},"application/vnd.easykaraoke.cdgdownload":{"source":"iana"},"application/vnd.ecdis-update":{"source":"iana"},"application/vnd.ecip.rlp":{"source":"iana"},"application/vnd.eclipse.ditto+json":{"source":"iana","compressible":true},"application/vnd.ecowin.chart":{"source":"iana","extensions":["mag"]},"application/vnd.ecowin.filerequest":{"source":"iana"},"application/vnd.ecowin.fileupdate":{"source":"iana"},"application/vnd.ecowin.series":{"source":"iana"},"application/vnd.ecowin.seriesrequest":{"source":"iana"},"application/vnd.ecowin.seriesupdate":{"source":"iana"},"application/vnd.efi.img":{"source":"iana"},"application/vnd.efi.iso":{"source":"iana"},"application/vnd.emclient.accessrequest+xml":{"source":"iana","compressible":true},"application/vnd.enliven":{"source":"iana","extensions":["nml"]},"application/vnd.enphase.envoy":{"source":"iana"},"application/vnd.eprints.data+xml":{"source":"iana","compressible":true},"application/vnd.epson.esf":{"source":"iana","extensions":["esf"]},"application/vnd.epson.msf":{"source":"iana","extensions":["msf"]},"application/vnd.epson.quickanime":{"source":"iana","extensions":["qam"]},"application/vnd.epson.salt":{"source":"iana","extensions":["slt"]},"application/vnd.epson.ssf":{"source":"iana","extensions":["ssf"]},"application/vnd.ericsson.quickcall":{"source":"iana"},"application/vnd.espass-espass+zip":{"source":"iana","compressible":false},"application/vnd.eszigno3+xml":{"source":"iana","compressible":true,"extensions":["es3","et3"]},"application/vnd.etsi.aoc+xml":{"source":"iana","compressible":true},"application/vnd.etsi.asic-e+zip":{"source":"iana","compressible":false},"application/vnd.etsi.asic-s+zip":{"source":"iana","compressible":false},"application/vnd.etsi.cug+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvcommand+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvdiscovery+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvprofile+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvsad-bc+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvsad-cod+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvsad-npvr+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvservice+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvsync+xml":{"source":"iana","compressible":true},"application/vnd.etsi.iptvueprofile+xml":{"source":"iana","compressible":true},"application/vnd.etsi.mcid+xml":{"source":"iana","compressible":true},"application/vnd.etsi.mheg5":{"source":"iana"},"application/vnd.etsi.overload-control-policy-dataset+xml":{"source":"iana","compressible":true},"application/vnd.etsi.pstn+xml":{"source":"iana","compressible":true},"application/vnd.etsi.sci+xml":{"source":"iana","compressible":true},"application/vnd.etsi.simservs+xml":{"source":"iana","compressible":true},"application/vnd.etsi.timestamp-token":{"source":"iana"},"application/vnd.etsi.tsl+xml":{"source":"iana","compressible":true},"application/vnd.etsi.tsl.der":{"source":"iana"},"application/vnd.eu.kasparian.car+json":{"source":"iana","compressible":true},"application/vnd.eudora.data":{"source":"iana"},"application/vnd.evolv.ecig.profile":{"source":"iana"},"application/vnd.evolv.ecig.settings":{"source":"iana"},"application/vnd.evolv.ecig.theme":{"source":"iana"},"application/vnd.exstream-empower+zip":{"source":"iana","compressible":false},"application/vnd.exstream-package":{"source":"iana"},"application/vnd.ezpix-album":{"source":"iana","extensions":["ez2"]},"application/vnd.ezpix-package":{"source":"iana","extensions":["ez3"]},"application/vnd.f-secure.mobile":{"source":"iana"},"application/vnd.familysearch.gedcom+zip":{"source":"iana","compressible":false},"application/vnd.fastcopy-disk-image":{"source":"iana"},"application/vnd.fdf":{"source":"iana","extensions":["fdf"]},"application/vnd.fdsn.mseed":{"source":"iana","extensions":["mseed"]},"application/vnd.fdsn.seed":{"source":"iana","extensions":["seed","dataless"]},"application/vnd.ffsns":{"source":"iana"},"application/vnd.ficlab.flb+zip":{"source":"iana","compressible":false},"application/vnd.filmit.zfc":{"source":"iana"},"application/vnd.fints":{"source":"iana"},"application/vnd.firemonkeys.cloudcell":{"source":"iana"},"application/vnd.flographit":{"source":"iana","extensions":["gph"]},"application/vnd.fluxtime.clip":{"source":"iana","extensions":["ftc"]},"application/vnd.font-fontforge-sfd":{"source":"iana"},"application/vnd.framemaker":{"source":"iana","extensions":["fm","frame","maker","book"]},"application/vnd.frogans.fnc":{"source":"iana","extensions":["fnc"]},"application/vnd.frogans.ltf":{"source":"iana","extensions":["ltf"]},"application/vnd.fsc.weblaunch":{"source":"iana","extensions":["fsc"]},"application/vnd.fujifilm.fb.docuworks":{"source":"iana"},"application/vnd.fujifilm.fb.docuworks.binder":{"source":"iana"},"application/vnd.fujifilm.fb.docuworks.container":{"source":"iana"},"application/vnd.fujifilm.fb.jfi+xml":{"source":"iana","compressible":true},"application/vnd.fujitsu.oasys":{"source":"iana","extensions":["oas"]},"application/vnd.fujitsu.oasys2":{"source":"iana","extensions":["oa2"]},"application/vnd.fujitsu.oasys3":{"source":"iana","extensions":["oa3"]},"application/vnd.fujitsu.oasysgp":{"source":"iana","extensions":["fg5"]},"application/vnd.fujitsu.oasysprs":{"source":"iana","extensions":["bh2"]},"application/vnd.fujixerox.art-ex":{"source":"iana"},"application/vnd.fujixerox.art4":{"source":"iana"},"application/vnd.fujixerox.ddd":{"source":"iana","extensions":["ddd"]},"application/vnd.fujixerox.docuworks":{"source":"iana","extensions":["xdw"]},"application/vnd.fujixerox.docuworks.binder":{"source":"iana","extensions":["xbd"]},"application/vnd.fujixerox.docuworks.container":{"source":"iana"},"application/vnd.fujixerox.hbpl":{"source":"iana"},"application/vnd.fut-misnet":{"source":"iana"},"application/vnd.futoin+cbor":{"source":"iana"},"application/vnd.futoin+json":{"source":"iana","compressible":true},"application/vnd.fuzzysheet":{"source":"iana","extensions":["fzs"]},"application/vnd.genomatix.tuxedo":{"source":"iana","extensions":["txd"]},"application/vnd.gentics.grd+json":{"source":"iana","compressible":true},"application/vnd.geo+json":{"source":"iana","compressible":true},"application/vnd.geocube+xml":{"source":"iana","compressible":true},"application/vnd.geogebra.file":{"source":"iana","extensions":["ggb"]},"application/vnd.geogebra.slides":{"source":"iana"},"application/vnd.geogebra.tool":{"source":"iana","extensions":["ggt"]},"application/vnd.geometry-explorer":{"source":"iana","extensions":["gex","gre"]},"application/vnd.geonext":{"source":"iana","extensions":["gxt"]},"application/vnd.geoplan":{"source":"iana","extensions":["g2w"]},"application/vnd.geospace":{"source":"iana","extensions":["g3w"]},"application/vnd.gerber":{"source":"iana"},"application/vnd.globalplatform.card-content-mgt":{"source":"iana"},"application/vnd.globalplatform.card-content-mgt-response":{"source":"iana"},"application/vnd.gmx":{"source":"iana","extensions":["gmx"]},"application/vnd.google-apps.document":{"compressible":false,"extensions":["gdoc"]},"application/vnd.google-apps.presentation":{"compressible":false,"extensions":["gslides"]},"application/vnd.google-apps.spreadsheet":{"compressible":false,"extensions":["gsheet"]},"application/vnd.google-earth.kml+xml":{"source":"iana","compressible":true,"extensions":["kml"]},"application/vnd.google-earth.kmz":{"source":"iana","compressible":false,"extensions":["kmz"]},"application/vnd.gov.sk.e-form+xml":{"source":"iana","compressible":true},"application/vnd.gov.sk.e-form+zip":{"source":"iana","compressible":false},"application/vnd.gov.sk.xmldatacontainer+xml":{"source":"iana","compressible":true},"application/vnd.grafeq":{"source":"iana","extensions":["gqf","gqs"]},"application/vnd.gridmp":{"source":"iana"},"application/vnd.groove-account":{"source":"iana","extensions":["gac"]},"application/vnd.groove-help":{"source":"iana","extensions":["ghf"]},"application/vnd.groove-identity-message":{"source":"iana","extensions":["gim"]},"application/vnd.groove-injector":{"source":"iana","extensions":["grv"]},"application/vnd.groove-tool-message":{"source":"iana","extensions":["gtm"]},"application/vnd.groove-tool-template":{"source":"iana","extensions":["tpl"]},"application/vnd.groove-vcard":{"source":"iana","extensions":["vcg"]},"application/vnd.hal+json":{"source":"iana","compressible":true},"application/vnd.hal+xml":{"source":"iana","compressible":true,"extensions":["hal"]},"application/vnd.handheld-entertainment+xml":{"source":"iana","compressible":true,"extensions":["zmm"]},"application/vnd.hbci":{"source":"iana","extensions":["hbci"]},"application/vnd.hc+json":{"source":"iana","compressible":true},"application/vnd.hcl-bireports":{"source":"iana"},"application/vnd.hdt":{"source":"iana"},"application/vnd.heroku+json":{"source":"iana","compressible":true},"application/vnd.hhe.lesson-player":{"source":"iana","extensions":["les"]},"application/vnd.hl7cda+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.hl7v2+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.hp-hpgl":{"source":"iana","extensions":["hpgl"]},"application/vnd.hp-hpid":{"source":"iana","extensions":["hpid"]},"application/vnd.hp-hps":{"source":"iana","extensions":["hps"]},"application/vnd.hp-jlyt":{"source":"iana","extensions":["jlt"]},"application/vnd.hp-pcl":{"source":"iana","extensions":["pcl"]},"application/vnd.hp-pclxl":{"source":"iana","extensions":["pclxl"]},"application/vnd.httphone":{"source":"iana"},"application/vnd.hydrostatix.sof-data":{"source":"iana","extensions":["sfd-hdstx"]},"application/vnd.hyper+json":{"source":"iana","compressible":true},"application/vnd.hyper-item+json":{"source":"iana","compressible":true},"application/vnd.hyperdrive+json":{"source":"iana","compressible":true},"application/vnd.hzn-3d-crossword":{"source":"iana"},"application/vnd.ibm.afplinedata":{"source":"iana"},"application/vnd.ibm.electronic-media":{"source":"iana"},"application/vnd.ibm.minipay":{"source":"iana","extensions":["mpy"]},"application/vnd.ibm.modcap":{"source":"iana","extensions":["afp","listafp","list3820"]},"application/vnd.ibm.rights-management":{"source":"iana","extensions":["irm"]},"application/vnd.ibm.secure-container":{"source":"iana","extensions":["sc"]},"application/vnd.iccprofile":{"source":"iana","extensions":["icc","icm"]},"application/vnd.ieee.1905":{"source":"iana"},"application/vnd.igloader":{"source":"iana","extensions":["igl"]},"application/vnd.imagemeter.folder+zip":{"source":"iana","compressible":false},"application/vnd.imagemeter.image+zip":{"source":"iana","compressible":false},"application/vnd.immervision-ivp":{"source":"iana","extensions":["ivp"]},"application/vnd.immervision-ivu":{"source":"iana","extensions":["ivu"]},"application/vnd.ims.imsccv1p1":{"source":"iana"},"application/vnd.ims.imsccv1p2":{"source":"iana"},"application/vnd.ims.imsccv1p3":{"source":"iana"},"application/vnd.ims.lis.v2.result+json":{"source":"iana","compressible":true},"application/vnd.ims.lti.v2.toolconsumerprofile+json":{"source":"iana","compressible":true},"application/vnd.ims.lti.v2.toolproxy+json":{"source":"iana","compressible":true},"application/vnd.ims.lti.v2.toolproxy.id+json":{"source":"iana","compressible":true},"application/vnd.ims.lti.v2.toolsettings+json":{"source":"iana","compressible":true},"application/vnd.ims.lti.v2.toolsettings.simple+json":{"source":"iana","compressible":true},"application/vnd.informedcontrol.rms+xml":{"source":"iana","compressible":true},"application/vnd.informix-visionary":{"source":"iana"},"application/vnd.infotech.project":{"source":"iana"},"application/vnd.infotech.project+xml":{"source":"iana","compressible":true},"application/vnd.innopath.wamp.notification":{"source":"iana"},"application/vnd.insors.igm":{"source":"iana","extensions":["igm"]},"application/vnd.intercon.formnet":{"source":"iana","extensions":["xpw","xpx"]},"application/vnd.intergeo":{"source":"iana","extensions":["i2g"]},"application/vnd.intertrust.digibox":{"source":"iana"},"application/vnd.intertrust.nncp":{"source":"iana"},"application/vnd.intu.qbo":{"source":"iana","extensions":["qbo"]},"application/vnd.intu.qfx":{"source":"iana","extensions":["qfx"]},"application/vnd.iptc.g2.catalogitem+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.conceptitem+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.knowledgeitem+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.newsitem+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.newsmessage+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.packageitem+xml":{"source":"iana","compressible":true},"application/vnd.iptc.g2.planningitem+xml":{"source":"iana","compressible":true},"application/vnd.ipunplugged.rcprofile":{"source":"iana","extensions":["rcprofile"]},"application/vnd.irepository.package+xml":{"source":"iana","compressible":true,"extensions":["irp"]},"application/vnd.is-xpr":{"source":"iana","extensions":["xpr"]},"application/vnd.isac.fcs":{"source":"iana","extensions":["fcs"]},"application/vnd.iso11783-10+zip":{"source":"iana","compressible":false},"application/vnd.jam":{"source":"iana","extensions":["jam"]},"application/vnd.japannet-directory-service":{"source":"iana"},"application/vnd.japannet-jpnstore-wakeup":{"source":"iana"},"application/vnd.japannet-payment-wakeup":{"source":"iana"},"application/vnd.japannet-registration":{"source":"iana"},"application/vnd.japannet-registration-wakeup":{"source":"iana"},"application/vnd.japannet-setstore-wakeup":{"source":"iana"},"application/vnd.japannet-verification":{"source":"iana"},"application/vnd.japannet-verification-wakeup":{"source":"iana"},"application/vnd.jcp.javame.midlet-rms":{"source":"iana","extensions":["rms"]},"application/vnd.jisp":{"source":"iana","extensions":["jisp"]},"application/vnd.joost.joda-archive":{"source":"iana","extensions":["joda"]},"application/vnd.jsk.isdn-ngn":{"source":"iana"},"application/vnd.kahootz":{"source":"iana","extensions":["ktz","ktr"]},"application/vnd.kde.karbon":{"source":"iana","extensions":["karbon"]},"application/vnd.kde.kchart":{"source":"iana","extensions":["chrt"]},"application/vnd.kde.kformula":{"source":"iana","extensions":["kfo"]},"application/vnd.kde.kivio":{"source":"iana","extensions":["flw"]},"application/vnd.kde.kontour":{"source":"iana","extensions":["kon"]},"application/vnd.kde.kpresenter":{"source":"iana","extensions":["kpr","kpt"]},"application/vnd.kde.kspread":{"source":"iana","extensions":["ksp"]},"application/vnd.kde.kword":{"source":"iana","extensions":["kwd","kwt"]},"application/vnd.kenameaapp":{"source":"iana","extensions":["htke"]},"application/vnd.kidspiration":{"source":"iana","extensions":["kia"]},"application/vnd.kinar":{"source":"iana","extensions":["kne","knp"]},"application/vnd.koan":{"source":"iana","extensions":["skp","skd","skt","skm"]},"application/vnd.kodak-descriptor":{"source":"iana","extensions":["sse"]},"application/vnd.las":{"source":"iana"},"application/vnd.las.las+json":{"source":"iana","compressible":true},"application/vnd.las.las+xml":{"source":"iana","compressible":true,"extensions":["lasxml"]},"application/vnd.laszip":{"source":"iana"},"application/vnd.leap+json":{"source":"iana","compressible":true},"application/vnd.liberty-request+xml":{"source":"iana","compressible":true},"application/vnd.llamagraphics.life-balance.desktop":{"source":"iana","extensions":["lbd"]},"application/vnd.llamagraphics.life-balance.exchange+xml":{"source":"iana","compressible":true,"extensions":["lbe"]},"application/vnd.logipipe.circuit+zip":{"source":"iana","compressible":false},"application/vnd.loom":{"source":"iana"},"application/vnd.lotus-1-2-3":{"source":"iana","extensions":["123"]},"application/vnd.lotus-approach":{"source":"iana","extensions":["apr"]},"application/vnd.lotus-freelance":{"source":"iana","extensions":["pre"]},"application/vnd.lotus-notes":{"source":"iana","extensions":["nsf"]},"application/vnd.lotus-organizer":{"source":"iana","extensions":["org"]},"application/vnd.lotus-screencam":{"source":"iana","extensions":["scm"]},"application/vnd.lotus-wordpro":{"source":"iana","extensions":["lwp"]},"application/vnd.macports.portpkg":{"source":"iana","extensions":["portpkg"]},"application/vnd.mapbox-vector-tile":{"source":"iana","extensions":["mvt"]},"application/vnd.marlin.drm.actiontoken+xml":{"source":"iana","compressible":true},"application/vnd.marlin.drm.conftoken+xml":{"source":"iana","compressible":true},"application/vnd.marlin.drm.license+xml":{"source":"iana","compressible":true},"application/vnd.marlin.drm.mdcf":{"source":"iana"},"application/vnd.mason+json":{"source":"iana","compressible":true},"application/vnd.maxar.archive.3tz+zip":{"source":"iana","compressible":false},"application/vnd.maxmind.maxmind-db":{"source":"iana"},"application/vnd.mcd":{"source":"iana","extensions":["mcd"]},"application/vnd.medcalcdata":{"source":"iana","extensions":["mc1"]},"application/vnd.mediastation.cdkey":{"source":"iana","extensions":["cdkey"]},"application/vnd.meridian-slingshot":{"source":"iana"},"application/vnd.mfer":{"source":"iana","extensions":["mwf"]},"application/vnd.mfmp":{"source":"iana","extensions":["mfm"]},"application/vnd.micro+json":{"source":"iana","compressible":true},"application/vnd.micrografx.flo":{"source":"iana","extensions":["flo"]},"application/vnd.micrografx.igx":{"source":"iana","extensions":["igx"]},"application/vnd.microsoft.portable-executable":{"source":"iana"},"application/vnd.microsoft.windows.thumbnail-cache":{"source":"iana"},"application/vnd.miele+json":{"source":"iana","compressible":true},"application/vnd.mif":{"source":"iana","extensions":["mif"]},"application/vnd.minisoft-hp3000-save":{"source":"iana"},"application/vnd.mitsubishi.misty-guard.trustweb":{"source":"iana"},"application/vnd.mobius.daf":{"source":"iana","extensions":["daf"]},"application/vnd.mobius.dis":{"source":"iana","extensions":["dis"]},"application/vnd.mobius.mbk":{"source":"iana","extensions":["mbk"]},"application/vnd.mobius.mqy":{"source":"iana","extensions":["mqy"]},"application/vnd.mobius.msl":{"source":"iana","extensions":["msl"]},"application/vnd.mobius.plc":{"source":"iana","extensions":["plc"]},"application/vnd.mobius.txf":{"source":"iana","extensions":["txf"]},"application/vnd.mophun.application":{"source":"iana","extensions":["mpn"]},"application/vnd.mophun.certificate":{"source":"iana","extensions":["mpc"]},"application/vnd.motorola.flexsuite":{"source":"iana"},"application/vnd.motorola.flexsuite.adsi":{"source":"iana"},"application/vnd.motorola.flexsuite.fis":{"source":"iana"},"application/vnd.motorola.flexsuite.gotap":{"source":"iana"},"application/vnd.motorola.flexsuite.kmr":{"source":"iana"},"application/vnd.motorola.flexsuite.ttc":{"source":"iana"},"application/vnd.motorola.flexsuite.wem":{"source":"iana"},"application/vnd.motorola.iprm":{"source":"iana"},"application/vnd.mozilla.xul+xml":{"source":"iana","compressible":true,"extensions":["xul"]},"application/vnd.ms-3mfdocument":{"source":"iana"},"application/vnd.ms-artgalry":{"source":"iana","extensions":["cil"]},"application/vnd.ms-asf":{"source":"iana"},"application/vnd.ms-cab-compressed":{"source":"iana","extensions":["cab"]},"application/vnd.ms-color.iccprofile":{"source":"apache"},"application/vnd.ms-excel":{"source":"iana","compressible":false,"extensions":["xls","xlm","xla","xlc","xlt","xlw"]},"application/vnd.ms-excel.addin.macroenabled.12":{"source":"iana","extensions":["xlam"]},"application/vnd.ms-excel.sheet.binary.macroenabled.12":{"source":"iana","extensions":["xlsb"]},"application/vnd.ms-excel.sheet.macroenabled.12":{"source":"iana","extensions":["xlsm"]},"application/vnd.ms-excel.template.macroenabled.12":{"source":"iana","extensions":["xltm"]},"application/vnd.ms-fontobject":{"source":"iana","compressible":true,"extensions":["eot"]},"application/vnd.ms-htmlhelp":{"source":"iana","extensions":["chm"]},"application/vnd.ms-ims":{"source":"iana","extensions":["ims"]},"application/vnd.ms-lrm":{"source":"iana","extensions":["lrm"]},"application/vnd.ms-office.activex+xml":{"source":"iana","compressible":true},"application/vnd.ms-officetheme":{"source":"iana","extensions":["thmx"]},"application/vnd.ms-opentype":{"source":"apache","compressible":true},"application/vnd.ms-outlook":{"compressible":false,"extensions":["msg"]},"application/vnd.ms-package.obfuscated-opentype":{"source":"apache"},"application/vnd.ms-pki.seccat":{"source":"apache","extensions":["cat"]},"application/vnd.ms-pki.stl":{"source":"apache","extensions":["stl"]},"application/vnd.ms-playready.initiator+xml":{"source":"iana","compressible":true},"application/vnd.ms-powerpoint":{"source":"iana","compressible":false,"extensions":["ppt","pps","pot"]},"application/vnd.ms-powerpoint.addin.macroenabled.12":{"source":"iana","extensions":["ppam"]},"application/vnd.ms-powerpoint.presentation.macroenabled.12":{"source":"iana","extensions":["pptm"]},"application/vnd.ms-powerpoint.slide.macroenabled.12":{"source":"iana","extensions":["sldm"]},"application/vnd.ms-powerpoint.slideshow.macroenabled.12":{"source":"iana","extensions":["ppsm"]},"application/vnd.ms-powerpoint.template.macroenabled.12":{"source":"iana","extensions":["potm"]},"application/vnd.ms-printdevicecapabilities+xml":{"source":"iana","compressible":true},"application/vnd.ms-printing.printticket+xml":{"source":"apache","compressible":true},"application/vnd.ms-printschematicket+xml":{"source":"iana","compressible":true},"application/vnd.ms-project":{"source":"iana","extensions":["mpp","mpt"]},"application/vnd.ms-tnef":{"source":"iana"},"application/vnd.ms-windows.devicepairing":{"source":"iana"},"application/vnd.ms-windows.nwprinting.oob":{"source":"iana"},"application/vnd.ms-windows.printerpairing":{"source":"iana"},"application/vnd.ms-windows.wsd.oob":{"source":"iana"},"application/vnd.ms-wmdrm.lic-chlg-req":{"source":"iana"},"application/vnd.ms-wmdrm.lic-resp":{"source":"iana"},"application/vnd.ms-wmdrm.meter-chlg-req":{"source":"iana"},"application/vnd.ms-wmdrm.meter-resp":{"source":"iana"},"application/vnd.ms-word.document.macroenabled.12":{"source":"iana","extensions":["docm"]},"application/vnd.ms-word.template.macroenabled.12":{"source":"iana","extensions":["dotm"]},"application/vnd.ms-works":{"source":"iana","extensions":["wps","wks","wcm","wdb"]},"application/vnd.ms-wpl":{"source":"iana","extensions":["wpl"]},"application/vnd.ms-xpsdocument":{"source":"iana","compressible":false,"extensions":["xps"]},"application/vnd.msa-disk-image":{"source":"iana"},"application/vnd.mseq":{"source":"iana","extensions":["mseq"]},"application/vnd.msign":{"source":"iana"},"application/vnd.multiad.creator":{"source":"iana"},"application/vnd.multiad.creator.cif":{"source":"iana"},"application/vnd.music-niff":{"source":"iana"},"application/vnd.musician":{"source":"iana","extensions":["mus"]},"application/vnd.muvee.style":{"source":"iana","extensions":["msty"]},"application/vnd.mynfc":{"source":"iana","extensions":["taglet"]},"application/vnd.nacamar.ybrid+json":{"source":"iana","compressible":true},"application/vnd.ncd.control":{"source":"iana"},"application/vnd.ncd.reference":{"source":"iana"},"application/vnd.nearst.inv+json":{"source":"iana","compressible":true},"application/vnd.nebumind.line":{"source":"iana"},"application/vnd.nervana":{"source":"iana"},"application/vnd.netfpx":{"source":"iana"},"application/vnd.neurolanguage.nlu":{"source":"iana","extensions":["nlu"]},"application/vnd.nimn":{"source":"iana"},"application/vnd.nintendo.nitro.rom":{"source":"iana"},"application/vnd.nintendo.snes.rom":{"source":"iana"},"application/vnd.nitf":{"source":"iana","extensions":["ntf","nitf"]},"application/vnd.noblenet-directory":{"source":"iana","extensions":["nnd"]},"application/vnd.noblenet-sealer":{"source":"iana","extensions":["nns"]},"application/vnd.noblenet-web":{"source":"iana","extensions":["nnw"]},"application/vnd.nokia.catalogs":{"source":"iana"},"application/vnd.nokia.conml+wbxml":{"source":"iana"},"application/vnd.nokia.conml+xml":{"source":"iana","compressible":true},"application/vnd.nokia.iptv.config+xml":{"source":"iana","compressible":true},"application/vnd.nokia.isds-radio-presets":{"source":"iana"},"application/vnd.nokia.landmark+wbxml":{"source":"iana"},"application/vnd.nokia.landmark+xml":{"source":"iana","compressible":true},"application/vnd.nokia.landmarkcollection+xml":{"source":"iana","compressible":true},"application/vnd.nokia.n-gage.ac+xml":{"source":"iana","compressible":true,"extensions":["ac"]},"application/vnd.nokia.n-gage.data":{"source":"iana","extensions":["ngdat"]},"application/vnd.nokia.n-gage.symbian.install":{"source":"iana","extensions":["n-gage"]},"application/vnd.nokia.ncd":{"source":"iana"},"application/vnd.nokia.pcd+wbxml":{"source":"iana"},"application/vnd.nokia.pcd+xml":{"source":"iana","compressible":true},"application/vnd.nokia.radio-preset":{"source":"iana","extensions":["rpst"]},"application/vnd.nokia.radio-presets":{"source":"iana","extensions":["rpss"]},"application/vnd.novadigm.edm":{"source":"iana","extensions":["edm"]},"application/vnd.novadigm.edx":{"source":"iana","extensions":["edx"]},"application/vnd.novadigm.ext":{"source":"iana","extensions":["ext"]},"application/vnd.ntt-local.content-share":{"source":"iana"},"application/vnd.ntt-local.file-transfer":{"source":"iana"},"application/vnd.ntt-local.ogw_remote-access":{"source":"iana"},"application/vnd.ntt-local.sip-ta_remote":{"source":"iana"},"application/vnd.ntt-local.sip-ta_tcp_stream":{"source":"iana"},"application/vnd.oasis.opendocument.chart":{"source":"iana","extensions":["odc"]},"application/vnd.oasis.opendocument.chart-template":{"source":"iana","extensions":["otc"]},"application/vnd.oasis.opendocument.database":{"source":"iana","extensions":["odb"]},"application/vnd.oasis.opendocument.formula":{"source":"iana","extensions":["odf"]},"application/vnd.oasis.opendocument.formula-template":{"source":"iana","extensions":["odft"]},"application/vnd.oasis.opendocument.graphics":{"source":"iana","compressible":false,"extensions":["odg"]},"application/vnd.oasis.opendocument.graphics-template":{"source":"iana","extensions":["otg"]},"application/vnd.oasis.opendocument.image":{"source":"iana","extensions":["odi"]},"application/vnd.oasis.opendocument.image-template":{"source":"iana","extensions":["oti"]},"application/vnd.oasis.opendocument.presentation":{"source":"iana","compressible":false,"extensions":["odp"]},"application/vnd.oasis.opendocument.presentation-template":{"source":"iana","extensions":["otp"]},"application/vnd.oasis.opendocument.spreadsheet":{"source":"iana","compressible":false,"extensions":["ods"]},"application/vnd.oasis.opendocument.spreadsheet-template":{"source":"iana","extensions":["ots"]},"application/vnd.oasis.opendocument.text":{"source":"iana","compressible":false,"extensions":["odt"]},"application/vnd.oasis.opendocument.text-master":{"source":"iana","extensions":["odm"]},"application/vnd.oasis.opendocument.text-template":{"source":"iana","extensions":["ott"]},"application/vnd.oasis.opendocument.text-web":{"source":"iana","extensions":["oth"]},"application/vnd.obn":{"source":"iana"},"application/vnd.ocf+cbor":{"source":"iana"},"application/vnd.oci.image.manifest.v1+json":{"source":"iana","compressible":true},"application/vnd.oftn.l10n+json":{"source":"iana","compressible":true},"application/vnd.oipf.contentaccessdownload+xml":{"source":"iana","compressible":true},"application/vnd.oipf.contentaccessstreaming+xml":{"source":"iana","compressible":true},"application/vnd.oipf.cspg-hexbinary":{"source":"iana"},"application/vnd.oipf.dae.svg+xml":{"source":"iana","compressible":true},"application/vnd.oipf.dae.xhtml+xml":{"source":"iana","compressible":true},"application/vnd.oipf.mippvcontrolmessage+xml":{"source":"iana","compressible":true},"application/vnd.oipf.pae.gem":{"source":"iana"},"application/vnd.oipf.spdiscovery+xml":{"source":"iana","compressible":true},"application/vnd.oipf.spdlist+xml":{"source":"iana","compressible":true},"application/vnd.oipf.ueprofile+xml":{"source":"iana","compressible":true},"application/vnd.oipf.userprofile+xml":{"source":"iana","compressible":true},"application/vnd.olpc-sugar":{"source":"iana","extensions":["xo"]},"application/vnd.oma-scws-config":{"source":"iana"},"application/vnd.oma-scws-http-request":{"source":"iana"},"application/vnd.oma-scws-http-response":{"source":"iana"},"application/vnd.oma.bcast.associated-procedure-parameter+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.drm-trigger+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.imd+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.ltkm":{"source":"iana"},"application/vnd.oma.bcast.notification+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.provisioningtrigger":{"source":"iana"},"application/vnd.oma.bcast.sgboot":{"source":"iana"},"application/vnd.oma.bcast.sgdd+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.sgdu":{"source":"iana"},"application/vnd.oma.bcast.simple-symbol-container":{"source":"iana"},"application/vnd.oma.bcast.smartcard-trigger+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.sprov+xml":{"source":"iana","compressible":true},"application/vnd.oma.bcast.stkm":{"source":"iana"},"application/vnd.oma.cab-address-book+xml":{"source":"iana","compressible":true},"application/vnd.oma.cab-feature-handler+xml":{"source":"iana","compressible":true},"application/vnd.oma.cab-pcc+xml":{"source":"iana","compressible":true},"application/vnd.oma.cab-subs-invite+xml":{"source":"iana","compressible":true},"application/vnd.oma.cab-user-prefs+xml":{"source":"iana","compressible":true},"application/vnd.oma.dcd":{"source":"iana"},"application/vnd.oma.dcdc":{"source":"iana"},"application/vnd.oma.dd2+xml":{"source":"iana","compressible":true,"extensions":["dd2"]},"application/vnd.oma.drm.risd+xml":{"source":"iana","compressible":true},"application/vnd.oma.group-usage-list+xml":{"source":"iana","compressible":true},"application/vnd.oma.lwm2m+cbor":{"source":"iana"},"application/vnd.oma.lwm2m+json":{"source":"iana","compressible":true},"application/vnd.oma.lwm2m+tlv":{"source":"iana"},"application/vnd.oma.pal+xml":{"source":"iana","compressible":true},"application/vnd.oma.poc.detailed-progress-report+xml":{"source":"iana","compressible":true},"application/vnd.oma.poc.final-report+xml":{"source":"iana","compressible":true},"application/vnd.oma.poc.groups+xml":{"source":"iana","compressible":true},"application/vnd.oma.poc.invocation-descriptor+xml":{"source":"iana","compressible":true},"application/vnd.oma.poc.optimized-progress-report+xml":{"source":"iana","compressible":true},"application/vnd.oma.push":{"source":"iana"},"application/vnd.oma.scidm.messages+xml":{"source":"iana","compressible":true},"application/vnd.oma.xcap-directory+xml":{"source":"iana","compressible":true},"application/vnd.omads-email+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.omads-file+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.omads-folder+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.omaloc-supl-init":{"source":"iana"},"application/vnd.onepager":{"source":"iana"},"application/vnd.onepagertamp":{"source":"iana"},"application/vnd.onepagertamx":{"source":"iana"},"application/vnd.onepagertat":{"source":"iana"},"application/vnd.onepagertatp":{"source":"iana"},"application/vnd.onepagertatx":{"source":"iana"},"application/vnd.openblox.game+xml":{"source":"iana","compressible":true,"extensions":["obgx"]},"application/vnd.openblox.game-binary":{"source":"iana"},"application/vnd.openeye.oeb":{"source":"iana"},"application/vnd.openofficeorg.extension":{"source":"apache","extensions":["oxt"]},"application/vnd.openstreetmap.data+xml":{"source":"iana","compressible":true,"extensions":["osm"]},"application/vnd.opentimestamps.ots":{"source":"iana"},"application/vnd.openxmlformats-officedocument.custom-properties+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.customxmlproperties+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawing+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.chart+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.extended-properties+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.comments+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.presentation":{"source":"iana","compressible":false,"extensions":["pptx"]},"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.presprops+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.slide":{"source":"iana","extensions":["sldx"]},"application/vnd.openxmlformats-officedocument.presentationml.slide+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.slideshow":{"source":"iana","extensions":["ppsx"]},"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.tags+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.template":{"source":"iana","extensions":["potx"]},"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{"source":"iana","compressible":false,"extensions":["xlsx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.template":{"source":"iana","extensions":["xltx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.theme+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.themeoverride+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.vmldrawing":{"source":"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.document":{"source":"iana","compressible":false,"extensions":["docx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.template":{"source":"iana","extensions":["dotx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-package.core-properties+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml":{"source":"iana","compressible":true},"application/vnd.openxmlformats-package.relationships+xml":{"source":"iana","compressible":true},"application/vnd.oracle.resource+json":{"source":"iana","compressible":true},"application/vnd.orange.indata":{"source":"iana"},"application/vnd.osa.netdeploy":{"source":"iana"},"application/vnd.osgeo.mapguide.package":{"source":"iana","extensions":["mgp"]},"application/vnd.osgi.bundle":{"source":"iana"},"application/vnd.osgi.dp":{"source":"iana","extensions":["dp"]},"application/vnd.osgi.subsystem":{"source":"iana","extensions":["esa"]},"application/vnd.otps.ct-kip+xml":{"source":"iana","compressible":true},"application/vnd.oxli.countgraph":{"source":"iana"},"application/vnd.pagerduty+json":{"source":"iana","compressible":true},"application/vnd.palm":{"source":"iana","extensions":["pdb","pqa","oprc"]},"application/vnd.panoply":{"source":"iana"},"application/vnd.paos.xml":{"source":"iana"},"application/vnd.patentdive":{"source":"iana"},"application/vnd.patientecommsdoc":{"source":"iana"},"application/vnd.pawaafile":{"source":"iana","extensions":["paw"]},"application/vnd.pcos":{"source":"iana"},"application/vnd.pg.format":{"source":"iana","extensions":["str"]},"application/vnd.pg.osasli":{"source":"iana","extensions":["ei6"]},"application/vnd.piaccess.application-licence":{"source":"iana"},"application/vnd.picsel":{"source":"iana","extensions":["efif"]},"application/vnd.pmi.widget":{"source":"iana","extensions":["wg"]},"application/vnd.poc.group-advertisement+xml":{"source":"iana","compressible":true},"application/vnd.pocketlearn":{"source":"iana","extensions":["plf"]},"application/vnd.powerbuilder6":{"source":"iana","extensions":["pbd"]},"application/vnd.powerbuilder6-s":{"source":"iana"},"application/vnd.powerbuilder7":{"source":"iana"},"application/vnd.powerbuilder7-s":{"source":"iana"},"application/vnd.powerbuilder75":{"source":"iana"},"application/vnd.powerbuilder75-s":{"source":"iana"},"application/vnd.preminet":{"source":"iana"},"application/vnd.previewsystems.box":{"source":"iana","extensions":["box"]},"application/vnd.proteus.magazine":{"source":"iana","extensions":["mgz"]},"application/vnd.psfs":{"source":"iana"},"application/vnd.publishare-delta-tree":{"source":"iana","extensions":["qps"]},"application/vnd.pvi.ptid1":{"source":"iana","extensions":["ptid"]},"application/vnd.pwg-multiplexed":{"source":"iana"},"application/vnd.pwg-xhtml-print+xml":{"source":"iana","compressible":true},"application/vnd.qualcomm.brew-app-res":{"source":"iana"},"application/vnd.quarantainenet":{"source":"iana"},"application/vnd.quark.quarkxpress":{"source":"iana","extensions":["qxd","qxt","qwd","qwt","qxl","qxb"]},"application/vnd.quobject-quoxdocument":{"source":"iana"},"application/vnd.radisys.moml+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-audit+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-audit-conf+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-audit-conn+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-audit-dialog+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-audit-stream+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-conf+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-base+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-fax-detect+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-fax-sendrecv+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-group+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-speech+xml":{"source":"iana","compressible":true},"application/vnd.radisys.msml-dialog-transform+xml":{"source":"iana","compressible":true},"application/vnd.rainstor.data":{"source":"iana"},"application/vnd.rapid":{"source":"iana"},"application/vnd.rar":{"source":"iana","extensions":["rar"]},"application/vnd.realvnc.bed":{"source":"iana","extensions":["bed"]},"application/vnd.recordare.musicxml":{"source":"iana","extensions":["mxl"]},"application/vnd.recordare.musicxml+xml":{"source":"iana","compressible":true,"extensions":["musicxml"]},"application/vnd.renlearn.rlprint":{"source":"iana"},"application/vnd.resilient.logic":{"source":"iana"},"application/vnd.restful+json":{"source":"iana","compressible":true},"application/vnd.rig.cryptonote":{"source":"iana","extensions":["cryptonote"]},"application/vnd.rim.cod":{"source":"apache","extensions":["cod"]},"application/vnd.rn-realmedia":{"source":"apache","extensions":["rm"]},"application/vnd.rn-realmedia-vbr":{"source":"apache","extensions":["rmvb"]},"application/vnd.route66.link66+xml":{"source":"iana","compressible":true,"extensions":["link66"]},"application/vnd.rs-274x":{"source":"iana"},"application/vnd.ruckus.download":{"source":"iana"},"application/vnd.s3sms":{"source":"iana"},"application/vnd.sailingtracker.track":{"source":"iana","extensions":["st"]},"application/vnd.sar":{"source":"iana"},"application/vnd.sbm.cid":{"source":"iana"},"application/vnd.sbm.mid2":{"source":"iana"},"application/vnd.scribus":{"source":"iana"},"application/vnd.sealed.3df":{"source":"iana"},"application/vnd.sealed.csf":{"source":"iana"},"application/vnd.sealed.doc":{"source":"iana"},"application/vnd.sealed.eml":{"source":"iana"},"application/vnd.sealed.mht":{"source":"iana"},"application/vnd.sealed.net":{"source":"iana"},"application/vnd.sealed.ppt":{"source":"iana"},"application/vnd.sealed.tiff":{"source":"iana"},"application/vnd.sealed.xls":{"source":"iana"},"application/vnd.sealedmedia.softseal.html":{"source":"iana"},"application/vnd.sealedmedia.softseal.pdf":{"source":"iana"},"application/vnd.seemail":{"source":"iana","extensions":["see"]},"application/vnd.seis+json":{"source":"iana","compressible":true},"application/vnd.sema":{"source":"iana","extensions":["sema"]},"application/vnd.semd":{"source":"iana","extensions":["semd"]},"application/vnd.semf":{"source":"iana","extensions":["semf"]},"application/vnd.shade-save-file":{"source":"iana"},"application/vnd.shana.informed.formdata":{"source":"iana","extensions":["ifm"]},"application/vnd.shana.informed.formtemplate":{"source":"iana","extensions":["itp"]},"application/vnd.shana.informed.interchange":{"source":"iana","extensions":["iif"]},"application/vnd.shana.informed.package":{"source":"iana","extensions":["ipk"]},"application/vnd.shootproof+json":{"source":"iana","compressible":true},"application/vnd.shopkick+json":{"source":"iana","compressible":true},"application/vnd.shp":{"source":"iana"},"application/vnd.shx":{"source":"iana"},"application/vnd.sigrok.session":{"source":"iana"},"application/vnd.simtech-mindmapper":{"source":"iana","extensions":["twd","twds"]},"application/vnd.siren+json":{"source":"iana","compressible":true},"application/vnd.smaf":{"source":"iana","extensions":["mmf"]},"application/vnd.smart.notebook":{"source":"iana"},"application/vnd.smart.teacher":{"source":"iana","extensions":["teacher"]},"application/vnd.snesdev-page-table":{"source":"iana"},"application/vnd.software602.filler.form+xml":{"source":"iana","compressible":true,"extensions":["fo"]},"application/vnd.software602.filler.form-xml-zip":{"source":"iana"},"application/vnd.solent.sdkm+xml":{"source":"iana","compressible":true,"extensions":["sdkm","sdkd"]},"application/vnd.spotfire.dxp":{"source":"iana","extensions":["dxp"]},"application/vnd.spotfire.sfs":{"source":"iana","extensions":["sfs"]},"application/vnd.sqlite3":{"source":"iana"},"application/vnd.sss-cod":{"source":"iana"},"application/vnd.sss-dtf":{"source":"iana"},"application/vnd.sss-ntf":{"source":"iana"},"application/vnd.stardivision.calc":{"source":"apache","extensions":["sdc"]},"application/vnd.stardivision.draw":{"source":"apache","extensions":["sda"]},"application/vnd.stardivision.impress":{"source":"apache","extensions":["sdd"]},"application/vnd.stardivision.math":{"source":"apache","extensions":["smf"]},"application/vnd.stardivision.writer":{"source":"apache","extensions":["sdw","vor"]},"application/vnd.stardivision.writer-global":{"source":"apache","extensions":["sgl"]},"application/vnd.stepmania.package":{"source":"iana","extensions":["smzip"]},"application/vnd.stepmania.stepchart":{"source":"iana","extensions":["sm"]},"application/vnd.street-stream":{"source":"iana"},"application/vnd.sun.wadl+xml":{"source":"iana","compressible":true,"extensions":["wadl"]},"application/vnd.sun.xml.calc":{"source":"apache","extensions":["sxc"]},"application/vnd.sun.xml.calc.template":{"source":"apache","extensions":["stc"]},"application/vnd.sun.xml.draw":{"source":"apache","extensions":["sxd"]},"application/vnd.sun.xml.draw.template":{"source":"apache","extensions":["std"]},"application/vnd.sun.xml.impress":{"source":"apache","extensions":["sxi"]},"application/vnd.sun.xml.impress.template":{"source":"apache","extensions":["sti"]},"application/vnd.sun.xml.math":{"source":"apache","extensions":["sxm"]},"application/vnd.sun.xml.writer":{"source":"apache","extensions":["sxw"]},"application/vnd.sun.xml.writer.global":{"source":"apache","extensions":["sxg"]},"application/vnd.sun.xml.writer.template":{"source":"apache","extensions":["stw"]},"application/vnd.sus-calendar":{"source":"iana","extensions":["sus","susp"]},"application/vnd.svd":{"source":"iana","extensions":["svd"]},"application/vnd.swiftview-ics":{"source":"iana"},"application/vnd.sycle+xml":{"source":"iana","compressible":true},"application/vnd.syft+json":{"source":"iana","compressible":true},"application/vnd.symbian.install":{"source":"apache","extensions":["sis","sisx"]},"application/vnd.syncml+xml":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["xsm"]},"application/vnd.syncml.dm+wbxml":{"source":"iana","charset":"UTF-8","extensions":["bdm"]},"application/vnd.syncml.dm+xml":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["xdm"]},"application/vnd.syncml.dm.notification":{"source":"iana"},"application/vnd.syncml.dmddf+wbxml":{"source":"iana"},"application/vnd.syncml.dmddf+xml":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["ddf"]},"application/vnd.syncml.dmtnds+wbxml":{"source":"iana"},"application/vnd.syncml.dmtnds+xml":{"source":"iana","charset":"UTF-8","compressible":true},"application/vnd.syncml.ds.notification":{"source":"iana"},"application/vnd.tableschema+json":{"source":"iana","compressible":true},"application/vnd.tao.intent-module-archive":{"source":"iana","extensions":["tao"]},"application/vnd.tcpdump.pcap":{"source":"iana","extensions":["pcap","cap","dmp"]},"application/vnd.think-cell.ppttc+json":{"source":"iana","compressible":true},"application/vnd.tmd.mediaflex.api+xml":{"source":"iana","compressible":true},"application/vnd.tml":{"source":"iana"},"application/vnd.tmobile-livetv":{"source":"iana","extensions":["tmo"]},"application/vnd.tri.onesource":{"source":"iana"},"application/vnd.trid.tpt":{"source":"iana","extensions":["tpt"]},"application/vnd.triscape.mxs":{"source":"iana","extensions":["mxs"]},"application/vnd.trueapp":{"source":"iana","extensions":["tra"]},"application/vnd.truedoc":{"source":"iana"},"application/vnd.ubisoft.webplayer":{"source":"iana"},"application/vnd.ufdl":{"source":"iana","extensions":["ufd","ufdl"]},"application/vnd.uiq.theme":{"source":"iana","extensions":["utz"]},"application/vnd.umajin":{"source":"iana","extensions":["umj"]},"application/vnd.unity":{"source":"iana","extensions":["unityweb"]},"application/vnd.uoml+xml":{"source":"iana","compressible":true,"extensions":["uoml"]},"application/vnd.uplanet.alert":{"source":"iana"},"application/vnd.uplanet.alert-wbxml":{"source":"iana"},"application/vnd.uplanet.bearer-choice":{"source":"iana"},"application/vnd.uplanet.bearer-choice-wbxml":{"source":"iana"},"application/vnd.uplanet.cacheop":{"source":"iana"},"application/vnd.uplanet.cacheop-wbxml":{"source":"iana"},"application/vnd.uplanet.channel":{"source":"iana"},"application/vnd.uplanet.channel-wbxml":{"source":"iana"},"application/vnd.uplanet.list":{"source":"iana"},"application/vnd.uplanet.list-wbxml":{"source":"iana"},"application/vnd.uplanet.listcmd":{"source":"iana"},"application/vnd.uplanet.listcmd-wbxml":{"source":"iana"},"application/vnd.uplanet.signal":{"source":"iana"},"application/vnd.uri-map":{"source":"iana"},"application/vnd.valve.source.material":{"source":"iana"},"application/vnd.vcx":{"source":"iana","extensions":["vcx"]},"application/vnd.vd-study":{"source":"iana"},"application/vnd.vectorworks":{"source":"iana"},"application/vnd.vel+json":{"source":"iana","compressible":true},"application/vnd.verimatrix.vcas":{"source":"iana"},"application/vnd.veritone.aion+json":{"source":"iana","compressible":true},"application/vnd.veryant.thin":{"source":"iana"},"application/vnd.ves.encrypted":{"source":"iana"},"application/vnd.vidsoft.vidconference":{"source":"iana"},"application/vnd.visio":{"source":"iana","extensions":["vsd","vst","vss","vsw"]},"application/vnd.visionary":{"source":"iana","extensions":["vis"]},"application/vnd.vividence.scriptfile":{"source":"iana"},"application/vnd.vsf":{"source":"iana","extensions":["vsf"]},"application/vnd.wap.sic":{"source":"iana"},"application/vnd.wap.slc":{"source":"iana"},"application/vnd.wap.wbxml":{"source":"iana","charset":"UTF-8","extensions":["wbxml"]},"application/vnd.wap.wmlc":{"source":"iana","extensions":["wmlc"]},"application/vnd.wap.wmlscriptc":{"source":"iana","extensions":["wmlsc"]},"application/vnd.webturbo":{"source":"iana","extensions":["wtb"]},"application/vnd.wfa.dpp":{"source":"iana"},"application/vnd.wfa.p2p":{"source":"iana"},"application/vnd.wfa.wsc":{"source":"iana"},"application/vnd.windows.devicepairing":{"source":"iana"},"application/vnd.wmc":{"source":"iana"},"application/vnd.wmf.bootstrap":{"source":"iana"},"application/vnd.wolfram.mathematica":{"source":"iana"},"application/vnd.wolfram.mathematica.package":{"source":"iana"},"application/vnd.wolfram.player":{"source":"iana","extensions":["nbp"]},"application/vnd.wordperfect":{"source":"iana","extensions":["wpd"]},"application/vnd.wqd":{"source":"iana","extensions":["wqd"]},"application/vnd.wrq-hp3000-labelled":{"source":"iana"},"application/vnd.wt.stf":{"source":"iana","extensions":["stf"]},"application/vnd.wv.csp+wbxml":{"source":"iana"},"application/vnd.wv.csp+xml":{"source":"iana","compressible":true},"application/vnd.wv.ssp+xml":{"source":"iana","compressible":true},"application/vnd.xacml+json":{"source":"iana","compressible":true},"application/vnd.xara":{"source":"iana","extensions":["xar"]},"application/vnd.xfdl":{"source":"iana","extensions":["xfdl"]},"application/vnd.xfdl.webform":{"source":"iana"},"application/vnd.xmi+xml":{"source":"iana","compressible":true},"application/vnd.xmpie.cpkg":{"source":"iana"},"application/vnd.xmpie.dpkg":{"source":"iana"},"application/vnd.xmpie.plan":{"source":"iana"},"application/vnd.xmpie.ppkg":{"source":"iana"},"application/vnd.xmpie.xlim":{"source":"iana"},"application/vnd.yamaha.hv-dic":{"source":"iana","extensions":["hvd"]},"application/vnd.yamaha.hv-script":{"source":"iana","extensions":["hvs"]},"application/vnd.yamaha.hv-voice":{"source":"iana","extensions":["hvp"]},"application/vnd.yamaha.openscoreformat":{"source":"iana","extensions":["osf"]},"application/vnd.yamaha.openscoreformat.osfpvg+xml":{"source":"iana","compressible":true,"extensions":["osfpvg"]},"application/vnd.yamaha.remote-setup":{"source":"iana"},"application/vnd.yamaha.smaf-audio":{"source":"iana","extensions":["saf"]},"application/vnd.yamaha.smaf-phrase":{"source":"iana","extensions":["spf"]},"application/vnd.yamaha.through-ngn":{"source":"iana"},"application/vnd.yamaha.tunnel-udpencap":{"source":"iana"},"application/vnd.yaoweme":{"source":"iana"},"application/vnd.yellowriver-custom-menu":{"source":"iana","extensions":["cmp"]},"application/vnd.youtube.yt":{"source":"iana"},"application/vnd.zul":{"source":"iana","extensions":["zir","zirz"]},"application/vnd.zzazz.deck+xml":{"source":"iana","compressible":true,"extensions":["zaz"]},"application/voicexml+xml":{"source":"iana","compressible":true,"extensions":["vxml"]},"application/voucher-cms+json":{"source":"iana","compressible":true},"application/vq-rtcpxr":{"source":"iana"},"application/wasm":{"source":"iana","compressible":true,"extensions":["wasm"]},"application/watcherinfo+xml":{"source":"iana","compressible":true,"extensions":["wif"]},"application/webpush-options+json":{"source":"iana","compressible":true},"application/whoispp-query":{"source":"iana"},"application/whoispp-response":{"source":"iana"},"application/widget":{"source":"iana","extensions":["wgt"]},"application/winhlp":{"source":"apache","extensions":["hlp"]},"application/wita":{"source":"iana"},"application/wordperfect5.1":{"source":"iana"},"application/wsdl+xml":{"source":"iana","compressible":true,"extensions":["wsdl"]},"application/wspolicy+xml":{"source":"iana","compressible":true,"extensions":["wspolicy"]},"application/x-7z-compressed":{"source":"apache","compressible":false,"extensions":["7z"]},"application/x-abiword":{"source":"apache","extensions":["abw"]},"application/x-ace-compressed":{"source":"apache","extensions":["ace"]},"application/x-amf":{"source":"apache"},"application/x-apple-diskimage":{"source":"apache","extensions":["dmg"]},"application/x-arj":{"compressible":false,"extensions":["arj"]},"application/x-authorware-bin":{"source":"apache","extensions":["aab","x32","u32","vox"]},"application/x-authorware-map":{"source":"apache","extensions":["aam"]},"application/x-authorware-seg":{"source":"apache","extensions":["aas"]},"application/x-bcpio":{"source":"apache","extensions":["bcpio"]},"application/x-bdoc":{"compressible":false,"extensions":["bdoc"]},"application/x-bittorrent":{"source":"apache","extensions":["torrent"]},"application/x-blorb":{"source":"apache","extensions":["blb","blorb"]},"application/x-bzip":{"source":"apache","compressible":false,"extensions":["bz"]},"application/x-bzip2":{"source":"apache","compressible":false,"extensions":["bz2","boz"]},"application/x-cbr":{"source":"apache","extensions":["cbr","cba","cbt","cbz","cb7"]},"application/x-cdlink":{"source":"apache","extensions":["vcd"]},"application/x-cfs-compressed":{"source":"apache","extensions":["cfs"]},"application/x-chat":{"source":"apache","extensions":["chat"]},"application/x-chess-pgn":{"source":"apache","extensions":["pgn"]},"application/x-chrome-extension":{"extensions":["crx"]},"application/x-cocoa":{"source":"nginx","extensions":["cco"]},"application/x-compress":{"source":"apache"},"application/x-conference":{"source":"apache","extensions":["nsc"]},"application/x-cpio":{"source":"apache","extensions":["cpio"]},"application/x-csh":{"source":"apache","extensions":["csh"]},"application/x-deb":{"compressible":false},"application/x-debian-package":{"source":"apache","extensions":["deb","udeb"]},"application/x-dgc-compressed":{"source":"apache","extensions":["dgc"]},"application/x-director":{"source":"apache","extensions":["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"]},"application/x-doom":{"source":"apache","extensions":["wad"]},"application/x-dtbncx+xml":{"source":"apache","compressible":true,"extensions":["ncx"]},"application/x-dtbook+xml":{"source":"apache","compressible":true,"extensions":["dtb"]},"application/x-dtbresource+xml":{"source":"apache","compressible":true,"extensions":["res"]},"application/x-dvi":{"source":"apache","compressible":false,"extensions":["dvi"]},"application/x-envoy":{"source":"apache","extensions":["evy"]},"application/x-eva":{"source":"apache","extensions":["eva"]},"application/x-font-bdf":{"source":"apache","extensions":["bdf"]},"application/x-font-dos":{"source":"apache"},"application/x-font-framemaker":{"source":"apache"},"application/x-font-ghostscript":{"source":"apache","extensions":["gsf"]},"application/x-font-libgrx":{"source":"apache"},"application/x-font-linux-psf":{"source":"apache","extensions":["psf"]},"application/x-font-pcf":{"source":"apache","extensions":["pcf"]},"application/x-font-snf":{"source":"apache","extensions":["snf"]},"application/x-font-speedo":{"source":"apache"},"application/x-font-sunos-news":{"source":"apache"},"application/x-font-type1":{"source":"apache","extensions":["pfa","pfb","pfm","afm"]},"application/x-font-vfont":{"source":"apache"},"application/x-freearc":{"source":"apache","extensions":["arc"]},"application/x-futuresplash":{"source":"apache","extensions":["spl"]},"application/x-gca-compressed":{"source":"apache","extensions":["gca"]},"application/x-glulx":{"source":"apache","extensions":["ulx"]},"application/x-gnumeric":{"source":"apache","extensions":["gnumeric"]},"application/x-gramps-xml":{"source":"apache","extensions":["gramps"]},"application/x-gtar":{"source":"apache","extensions":["gtar"]},"application/x-gzip":{"source":"apache"},"application/x-hdf":{"source":"apache","extensions":["hdf"]},"application/x-httpd-php":{"compressible":true,"extensions":["php"]},"application/x-install-instructions":{"source":"apache","extensions":["install"]},"application/x-iso9660-image":{"source":"apache","extensions":["iso"]},"application/x-iwork-keynote-sffkey":{"extensions":["key"]},"application/x-iwork-numbers-sffnumbers":{"extensions":["numbers"]},"application/x-iwork-pages-sffpages":{"extensions":["pages"]},"application/x-java-archive-diff":{"source":"nginx","extensions":["jardiff"]},"application/x-java-jnlp-file":{"source":"apache","compressible":false,"extensions":["jnlp"]},"application/x-javascript":{"compressible":true},"application/x-keepass2":{"extensions":["kdbx"]},"application/x-latex":{"source":"apache","compressible":false,"extensions":["latex"]},"application/x-lua-bytecode":{"extensions":["luac"]},"application/x-lzh-compressed":{"source":"apache","extensions":["lzh","lha"]},"application/x-makeself":{"source":"nginx","extensions":["run"]},"application/x-mie":{"source":"apache","extensions":["mie"]},"application/x-mobipocket-ebook":{"source":"apache","extensions":["prc","mobi"]},"application/x-mpegurl":{"compressible":false},"application/x-ms-application":{"source":"apache","extensions":["application"]},"application/x-ms-shortcut":{"source":"apache","extensions":["lnk"]},"application/x-ms-wmd":{"source":"apache","extensions":["wmd"]},"application/x-ms-wmz":{"source":"apache","extensions":["wmz"]},"application/x-ms-xbap":{"source":"apache","extensions":["xbap"]},"application/x-msaccess":{"source":"apache","extensions":["mdb"]},"application/x-msbinder":{"source":"apache","extensions":["obd"]},"application/x-mscardfile":{"source":"apache","extensions":["crd"]},"application/x-msclip":{"source":"apache","extensions":["clp"]},"application/x-msdos-program":{"extensions":["exe"]},"application/x-msdownload":{"source":"apache","extensions":["exe","dll","com","bat","msi"]},"application/x-msmediaview":{"source":"apache","extensions":["mvb","m13","m14"]},"application/x-msmetafile":{"source":"apache","extensions":["wmf","wmz","emf","emz"]},"application/x-msmoney":{"source":"apache","extensions":["mny"]},"application/x-mspublisher":{"source":"apache","extensions":["pub"]},"application/x-msschedule":{"source":"apache","extensions":["scd"]},"application/x-msterminal":{"source":"apache","extensions":["trm"]},"application/x-mswrite":{"source":"apache","extensions":["wri"]},"application/x-netcdf":{"source":"apache","extensions":["nc","cdf"]},"application/x-ns-proxy-autoconfig":{"compressible":true,"extensions":["pac"]},"application/x-nzb":{"source":"apache","extensions":["nzb"]},"application/x-perl":{"source":"nginx","extensions":["pl","pm"]},"application/x-pilot":{"source":"nginx","extensions":["prc","pdb"]},"application/x-pkcs12":{"source":"apache","compressible":false,"extensions":["p12","pfx"]},"application/x-pkcs7-certificates":{"source":"apache","extensions":["p7b","spc"]},"application/x-pkcs7-certreqresp":{"source":"apache","extensions":["p7r"]},"application/x-pki-message":{"source":"iana"},"application/x-rar-compressed":{"source":"apache","compressible":false,"extensions":["rar"]},"application/x-redhat-package-manager":{"source":"nginx","extensions":["rpm"]},"application/x-research-info-systems":{"source":"apache","extensions":["ris"]},"application/x-sea":{"source":"nginx","extensions":["sea"]},"application/x-sh":{"source":"apache","compressible":true,"extensions":["sh"]},"application/x-shar":{"source":"apache","extensions":["shar"]},"application/x-shockwave-flash":{"source":"apache","compressible":false,"extensions":["swf"]},"application/x-silverlight-app":{"source":"apache","extensions":["xap"]},"application/x-sql":{"source":"apache","extensions":["sql"]},"application/x-stuffit":{"source":"apache","compressible":false,"extensions":["sit"]},"application/x-stuffitx":{"source":"apache","extensions":["sitx"]},"application/x-subrip":{"source":"apache","extensions":["srt"]},"application/x-sv4cpio":{"source":"apache","extensions":["sv4cpio"]},"application/x-sv4crc":{"source":"apache","extensions":["sv4crc"]},"application/x-t3vm-image":{"source":"apache","extensions":["t3"]},"application/x-tads":{"source":"apache","extensions":["gam"]},"application/x-tar":{"source":"apache","compressible":true,"extensions":["tar"]},"application/x-tcl":{"source":"apache","extensions":["tcl","tk"]},"application/x-tex":{"source":"apache","extensions":["tex"]},"application/x-tex-tfm":{"source":"apache","extensions":["tfm"]},"application/x-texinfo":{"source":"apache","extensions":["texinfo","texi"]},"application/x-tgif":{"source":"apache","extensions":["obj"]},"application/x-ustar":{"source":"apache","extensions":["ustar"]},"application/x-virtualbox-hdd":{"compressible":true,"extensions":["hdd"]},"application/x-virtualbox-ova":{"compressible":true,"extensions":["ova"]},"application/x-virtualbox-ovf":{"compressible":true,"extensions":["ovf"]},"application/x-virtualbox-vbox":{"compressible":true,"extensions":["vbox"]},"application/x-virtualbox-vbox-extpack":{"compressible":false,"extensions":["vbox-extpack"]},"application/x-virtualbox-vdi":{"compressible":true,"extensions":["vdi"]},"application/x-virtualbox-vhd":{"compressible":true,"extensions":["vhd"]},"application/x-virtualbox-vmdk":{"compressible":true,"extensions":["vmdk"]},"application/x-wais-source":{"source":"apache","extensions":["src"]},"application/x-web-app-manifest+json":{"compressible":true,"extensions":["webapp"]},"application/x-www-form-urlencoded":{"source":"iana","compressible":true},"application/x-x509-ca-cert":{"source":"iana","extensions":["der","crt","pem"]},"application/x-x509-ca-ra-cert":{"source":"iana"},"application/x-x509-next-ca-cert":{"source":"iana"},"application/x-xfig":{"source":"apache","extensions":["fig"]},"application/x-xliff+xml":{"source":"apache","compressible":true,"extensions":["xlf"]},"application/x-xpinstall":{"source":"apache","compressible":false,"extensions":["xpi"]},"application/x-xz":{"source":"apache","extensions":["xz"]},"application/x-zmachine":{"source":"apache","extensions":["z1","z2","z3","z4","z5","z6","z7","z8"]},"application/x400-bp":{"source":"iana"},"application/xacml+xml":{"source":"iana","compressible":true},"application/xaml+xml":{"source":"apache","compressible":true,"extensions":["xaml"]},"application/xcap-att+xml":{"source":"iana","compressible":true,"extensions":["xav"]},"application/xcap-caps+xml":{"source":"iana","compressible":true,"extensions":["xca"]},"application/xcap-diff+xml":{"source":"iana","compressible":true,"extensions":["xdf"]},"application/xcap-el+xml":{"source":"iana","compressible":true,"extensions":["xel"]},"application/xcap-error+xml":{"source":"iana","compressible":true},"application/xcap-ns+xml":{"source":"iana","compressible":true,"extensions":["xns"]},"application/xcon-conference-info+xml":{"source":"iana","compressible":true},"application/xcon-conference-info-diff+xml":{"source":"iana","compressible":true},"application/xenc+xml":{"source":"iana","compressible":true,"extensions":["xenc"]},"application/xhtml+xml":{"source":"iana","compressible":true,"extensions":["xhtml","xht"]},"application/xhtml-voice+xml":{"source":"apache","compressible":true},"application/xliff+xml":{"source":"iana","compressible":true,"extensions":["xlf"]},"application/xml":{"source":"iana","compressible":true,"extensions":["xml","xsl","xsd","rng"]},"application/xml-dtd":{"source":"iana","compressible":true,"extensions":["dtd"]},"application/xml-external-parsed-entity":{"source":"iana"},"application/xml-patch+xml":{"source":"iana","compressible":true},"application/xmpp+xml":{"source":"iana","compressible":true},"application/xop+xml":{"source":"iana","compressible":true,"extensions":["xop"]},"application/xproc+xml":{"source":"apache","compressible":true,"extensions":["xpl"]},"application/xslt+xml":{"source":"iana","compressible":true,"extensions":["xsl","xslt"]},"application/xspf+xml":{"source":"apache","compressible":true,"extensions":["xspf"]},"application/xv+xml":{"source":"iana","compressible":true,"extensions":["mxml","xhvml","xvml","xvm"]},"application/yang":{"source":"iana","extensions":["yang"]},"application/yang-data+json":{"source":"iana","compressible":true},"application/yang-data+xml":{"source":"iana","compressible":true},"application/yang-patch+json":{"source":"iana","compressible":true},"application/yang-patch+xml":{"source":"iana","compressible":true},"application/yin+xml":{"source":"iana","compressible":true,"extensions":["yin"]},"application/zip":{"source":"iana","compressible":false,"extensions":["zip"]},"application/zlib":{"source":"iana"},"application/zstd":{"source":"iana"},"audio/1d-interleaved-parityfec":{"source":"iana"},"audio/32kadpcm":{"source":"iana"},"audio/3gpp":{"source":"iana","compressible":false,"extensions":["3gpp"]},"audio/3gpp2":{"source":"iana"},"audio/aac":{"source":"iana"},"audio/ac3":{"source":"iana"},"audio/adpcm":{"source":"apache","extensions":["adp"]},"audio/amr":{"source":"iana","extensions":["amr"]},"audio/amr-wb":{"source":"iana"},"audio/amr-wb+":{"source":"iana"},"audio/aptx":{"source":"iana"},"audio/asc":{"source":"iana"},"audio/atrac-advanced-lossless":{"source":"iana"},"audio/atrac-x":{"source":"iana"},"audio/atrac3":{"source":"iana"},"audio/basic":{"source":"iana","compressible":false,"extensions":["au","snd"]},"audio/bv16":{"source":"iana"},"audio/bv32":{"source":"iana"},"audio/clearmode":{"source":"iana"},"audio/cn":{"source":"iana"},"audio/dat12":{"source":"iana"},"audio/dls":{"source":"iana"},"audio/dsr-es201108":{"source":"iana"},"audio/dsr-es202050":{"source":"iana"},"audio/dsr-es202211":{"source":"iana"},"audio/dsr-es202212":{"source":"iana"},"audio/dv":{"source":"iana"},"audio/dvi4":{"source":"iana"},"audio/eac3":{"source":"iana"},"audio/encaprtp":{"source":"iana"},"audio/evrc":{"source":"iana"},"audio/evrc-qcp":{"source":"iana"},"audio/evrc0":{"source":"iana"},"audio/evrc1":{"source":"iana"},"audio/evrcb":{"source":"iana"},"audio/evrcb0":{"source":"iana"},"audio/evrcb1":{"source":"iana"},"audio/evrcnw":{"source":"iana"},"audio/evrcnw0":{"source":"iana"},"audio/evrcnw1":{"source":"iana"},"audio/evrcwb":{"source":"iana"},"audio/evrcwb0":{"source":"iana"},"audio/evrcwb1":{"source":"iana"},"audio/evs":{"source":"iana"},"audio/flexfec":{"source":"iana"},"audio/fwdred":{"source":"iana"},"audio/g711-0":{"source":"iana"},"audio/g719":{"source":"iana"},"audio/g722":{"source":"iana"},"audio/g7221":{"source":"iana"},"audio/g723":{"source":"iana"},"audio/g726-16":{"source":"iana"},"audio/g726-24":{"source":"iana"},"audio/g726-32":{"source":"iana"},"audio/g726-40":{"source":"iana"},"audio/g728":{"source":"iana"},"audio/g729":{"source":"iana"},"audio/g7291":{"source":"iana"},"audio/g729d":{"source":"iana"},"audio/g729e":{"source":"iana"},"audio/gsm":{"source":"iana"},"audio/gsm-efr":{"source":"iana"},"audio/gsm-hr-08":{"source":"iana"},"audio/ilbc":{"source":"iana"},"audio/ip-mr_v2.5":{"source":"iana"},"audio/isac":{"source":"apache"},"audio/l16":{"source":"iana"},"audio/l20":{"source":"iana"},"audio/l24":{"source":"iana","compressible":false},"audio/l8":{"source":"iana"},"audio/lpc":{"source":"iana"},"audio/melp":{"source":"iana"},"audio/melp1200":{"source":"iana"},"audio/melp2400":{"source":"iana"},"audio/melp600":{"source":"iana"},"audio/mhas":{"source":"iana"},"audio/midi":{"source":"apache","extensions":["mid","midi","kar","rmi"]},"audio/mobile-xmf":{"source":"iana","extensions":["mxmf"]},"audio/mp3":{"compressible":false,"extensions":["mp3"]},"audio/mp4":{"source":"iana","compressible":false,"extensions":["m4a","mp4a"]},"audio/mp4a-latm":{"source":"iana"},"audio/mpa":{"source":"iana"},"audio/mpa-robust":{"source":"iana"},"audio/mpeg":{"source":"iana","compressible":false,"extensions":["mpga","mp2","mp2a","mp3","m2a","m3a"]},"audio/mpeg4-generic":{"source":"iana"},"audio/musepack":{"source":"apache"},"audio/ogg":{"source":"iana","compressible":false,"extensions":["oga","ogg","spx","opus"]},"audio/opus":{"source":"iana"},"audio/parityfec":{"source":"iana"},"audio/pcma":{"source":"iana"},"audio/pcma-wb":{"source":"iana"},"audio/pcmu":{"source":"iana"},"audio/pcmu-wb":{"source":"iana"},"audio/prs.sid":{"source":"iana"},"audio/qcelp":{"source":"iana"},"audio/raptorfec":{"source":"iana"},"audio/red":{"source":"iana"},"audio/rtp-enc-aescm128":{"source":"iana"},"audio/rtp-midi":{"source":"iana"},"audio/rtploopback":{"source":"iana"},"audio/rtx":{"source":"iana"},"audio/s3m":{"source":"apache","extensions":["s3m"]},"audio/scip":{"source":"iana"},"audio/silk":{"source":"apache","extensions":["sil"]},"audio/smv":{"source":"iana"},"audio/smv-qcp":{"source":"iana"},"audio/smv0":{"source":"iana"},"audio/sofa":{"source":"iana"},"audio/sp-midi":{"source":"iana"},"audio/speex":{"source":"iana"},"audio/t140c":{"source":"iana"},"audio/t38":{"source":"iana"},"audio/telephone-event":{"source":"iana"},"audio/tetra_acelp":{"source":"iana"},"audio/tetra_acelp_bb":{"source":"iana"},"audio/tone":{"source":"iana"},"audio/tsvcis":{"source":"iana"},"audio/uemclip":{"source":"iana"},"audio/ulpfec":{"source":"iana"},"audio/usac":{"source":"iana"},"audio/vdvi":{"source":"iana"},"audio/vmr-wb":{"source":"iana"},"audio/vnd.3gpp.iufp":{"source":"iana"},"audio/vnd.4sb":{"source":"iana"},"audio/vnd.audiokoz":{"source":"iana"},"audio/vnd.celp":{"source":"iana"},"audio/vnd.cisco.nse":{"source":"iana"},"audio/vnd.cmles.radio-events":{"source":"iana"},"audio/vnd.cns.anp1":{"source":"iana"},"audio/vnd.cns.inf1":{"source":"iana"},"audio/vnd.dece.audio":{"source":"iana","extensions":["uva","uvva"]},"audio/vnd.digital-winds":{"source":"iana","extensions":["eol"]},"audio/vnd.dlna.adts":{"source":"iana"},"audio/vnd.dolby.heaac.1":{"source":"iana"},"audio/vnd.dolby.heaac.2":{"source":"iana"},"audio/vnd.dolby.mlp":{"source":"iana"},"audio/vnd.dolby.mps":{"source":"iana"},"audio/vnd.dolby.pl2":{"source":"iana"},"audio/vnd.dolby.pl2x":{"source":"iana"},"audio/vnd.dolby.pl2z":{"source":"iana"},"audio/vnd.dolby.pulse.1":{"source":"iana"},"audio/vnd.dra":{"source":"iana","extensions":["dra"]},"audio/vnd.dts":{"source":"iana","extensions":["dts"]},"audio/vnd.dts.hd":{"source":"iana","extensions":["dtshd"]},"audio/vnd.dts.uhd":{"source":"iana"},"audio/vnd.dvb.file":{"source":"iana"},"audio/vnd.everad.plj":{"source":"iana"},"audio/vnd.hns.audio":{"source":"iana"},"audio/vnd.lucent.voice":{"source":"iana","extensions":["lvp"]},"audio/vnd.ms-playready.media.pya":{"source":"iana","extensions":["pya"]},"audio/vnd.nokia.mobile-xmf":{"source":"iana"},"audio/vnd.nortel.vbk":{"source":"iana"},"audio/vnd.nuera.ecelp4800":{"source":"iana","extensions":["ecelp4800"]},"audio/vnd.nuera.ecelp7470":{"source":"iana","extensions":["ecelp7470"]},"audio/vnd.nuera.ecelp9600":{"source":"iana","extensions":["ecelp9600"]},"audio/vnd.octel.sbc":{"source":"iana"},"audio/vnd.presonus.multitrack":{"source":"iana"},"audio/vnd.qcelp":{"source":"iana"},"audio/vnd.rhetorex.32kadpcm":{"source":"iana"},"audio/vnd.rip":{"source":"iana","extensions":["rip"]},"audio/vnd.rn-realaudio":{"compressible":false},"audio/vnd.sealedmedia.softseal.mpeg":{"source":"iana"},"audio/vnd.vmx.cvsd":{"source":"iana"},"audio/vnd.wave":{"compressible":false},"audio/vorbis":{"source":"iana","compressible":false},"audio/vorbis-config":{"source":"iana"},"audio/wav":{"compressible":false,"extensions":["wav"]},"audio/wave":{"compressible":false,"extensions":["wav"]},"audio/webm":{"source":"apache","compressible":false,"extensions":["weba"]},"audio/x-aac":{"source":"apache","compressible":false,"extensions":["aac"]},"audio/x-aiff":{"source":"apache","extensions":["aif","aiff","aifc"]},"audio/x-caf":{"source":"apache","compressible":false,"extensions":["caf"]},"audio/x-flac":{"source":"apache","extensions":["flac"]},"audio/x-m4a":{"source":"nginx","extensions":["m4a"]},"audio/x-matroska":{"source":"apache","extensions":["mka"]},"audio/x-mpegurl":{"source":"apache","extensions":["m3u"]},"audio/x-ms-wax":{"source":"apache","extensions":["wax"]},"audio/x-ms-wma":{"source":"apache","extensions":["wma"]},"audio/x-pn-realaudio":{"source":"apache","extensions":["ram","ra"]},"audio/x-pn-realaudio-plugin":{"source":"apache","extensions":["rmp"]},"audio/x-realaudio":{"source":"nginx","extensions":["ra"]},"audio/x-tta":{"source":"apache"},"audio/x-wav":{"source":"apache","extensions":["wav"]},"audio/xm":{"source":"apache","extensions":["xm"]},"chemical/x-cdx":{"source":"apache","extensions":["cdx"]},"chemical/x-cif":{"source":"apache","extensions":["cif"]},"chemical/x-cmdf":{"source":"apache","extensions":["cmdf"]},"chemical/x-cml":{"source":"apache","extensions":["cml"]},"chemical/x-csml":{"source":"apache","extensions":["csml"]},"chemical/x-pdb":{"source":"apache"},"chemical/x-xyz":{"source":"apache","extensions":["xyz"]},"font/collection":{"source":"iana","extensions":["ttc"]},"font/otf":{"source":"iana","compressible":true,"extensions":["otf"]},"font/sfnt":{"source":"iana"},"font/ttf":{"source":"iana","compressible":true,"extensions":["ttf"]},"font/woff":{"source":"iana","extensions":["woff"]},"font/woff2":{"source":"iana","extensions":["woff2"]},"image/aces":{"source":"iana","extensions":["exr"]},"image/apng":{"compressible":false,"extensions":["apng"]},"image/avci":{"source":"iana","extensions":["avci"]},"image/avcs":{"source":"iana","extensions":["avcs"]},"image/avif":{"source":"iana","compressible":false,"extensions":["avif"]},"image/bmp":{"source":"iana","compressible":true,"extensions":["bmp"]},"image/cgm":{"source":"iana","extensions":["cgm"]},"image/dicom-rle":{"source":"iana","extensions":["drle"]},"image/emf":{"source":"iana","extensions":["emf"]},"image/fits":{"source":"iana","extensions":["fits"]},"image/g3fax":{"source":"iana","extensions":["g3"]},"image/gif":{"source":"iana","compressible":false,"extensions":["gif"]},"image/heic":{"source":"iana","extensions":["heic"]},"image/heic-sequence":{"source":"iana","extensions":["heics"]},"image/heif":{"source":"iana","extensions":["heif"]},"image/heif-sequence":{"source":"iana","extensions":["heifs"]},"image/hej2k":{"source":"iana","extensions":["hej2"]},"image/hsj2":{"source":"iana","extensions":["hsj2"]},"image/ief":{"source":"iana","extensions":["ief"]},"image/jls":{"source":"iana","extensions":["jls"]},"image/jp2":{"source":"iana","compressible":false,"extensions":["jp2","jpg2"]},"image/jpeg":{"source":"iana","compressible":false,"extensions":["jpeg","jpg","jpe"]},"image/jph":{"source":"iana","extensions":["jph"]},"image/jphc":{"source":"iana","extensions":["jhc"]},"image/jpm":{"source":"iana","compressible":false,"extensions":["jpm"]},"image/jpx":{"source":"iana","compressible":false,"extensions":["jpx","jpf"]},"image/jxr":{"source":"iana","extensions":["jxr"]},"image/jxra":{"source":"iana","extensions":["jxra"]},"image/jxrs":{"source":"iana","extensions":["jxrs"]},"image/jxs":{"source":"iana","extensions":["jxs"]},"image/jxsc":{"source":"iana","extensions":["jxsc"]},"image/jxsi":{"source":"iana","extensions":["jxsi"]},"image/jxss":{"source":"iana","extensions":["jxss"]},"image/ktx":{"source":"iana","extensions":["ktx"]},"image/ktx2":{"source":"iana","extensions":["ktx2"]},"image/naplps":{"source":"iana"},"image/pjpeg":{"compressible":false},"image/png":{"source":"iana","compressible":false,"extensions":["png"]},"image/prs.btif":{"source":"iana","extensions":["btif"]},"image/prs.pti":{"source":"iana","extensions":["pti"]},"image/pwg-raster":{"source":"iana"},"image/sgi":{"source":"apache","extensions":["sgi"]},"image/svg+xml":{"source":"iana","compressible":true,"extensions":["svg","svgz"]},"image/t38":{"source":"iana","extensions":["t38"]},"image/tiff":{"source":"iana","compressible":false,"extensions":["tif","tiff"]},"image/tiff-fx":{"source":"iana","extensions":["tfx"]},"image/vnd.adobe.photoshop":{"source":"iana","compressible":true,"extensions":["psd"]},"image/vnd.airzip.accelerator.azv":{"source":"iana","extensions":["azv"]},"image/vnd.cns.inf2":{"source":"iana"},"image/vnd.dece.graphic":{"source":"iana","extensions":["uvi","uvvi","uvg","uvvg"]},"image/vnd.djvu":{"source":"iana","extensions":["djvu","djv"]},"image/vnd.dvb.subtitle":{"source":"iana","extensions":["sub"]},"image/vnd.dwg":{"source":"iana","extensions":["dwg"]},"image/vnd.dxf":{"source":"iana","extensions":["dxf"]},"image/vnd.fastbidsheet":{"source":"iana","extensions":["fbs"]},"image/vnd.fpx":{"source":"iana","extensions":["fpx"]},"image/vnd.fst":{"source":"iana","extensions":["fst"]},"image/vnd.fujixerox.edmics-mmr":{"source":"iana","extensions":["mmr"]},"image/vnd.fujixerox.edmics-rlc":{"source":"iana","extensions":["rlc"]},"image/vnd.globalgraphics.pgb":{"source":"iana"},"image/vnd.microsoft.icon":{"source":"iana","compressible":true,"extensions":["ico"]},"image/vnd.mix":{"source":"iana"},"image/vnd.mozilla.apng":{"source":"iana"},"image/vnd.ms-dds":{"compressible":true,"extensions":["dds"]},"image/vnd.ms-modi":{"source":"iana","extensions":["mdi"]},"image/vnd.ms-photo":{"source":"apache","extensions":["wdp"]},"image/vnd.net-fpx":{"source":"iana","extensions":["npx"]},"image/vnd.pco.b16":{"source":"iana","extensions":["b16"]},"image/vnd.radiance":{"source":"iana"},"image/vnd.sealed.png":{"source":"iana"},"image/vnd.sealedmedia.softseal.gif":{"source":"iana"},"image/vnd.sealedmedia.softseal.jpg":{"source":"iana"},"image/vnd.svf":{"source":"iana"},"image/vnd.tencent.tap":{"source":"iana","extensions":["tap"]},"image/vnd.valve.source.texture":{"source":"iana","extensions":["vtf"]},"image/vnd.wap.wbmp":{"source":"iana","extensions":["wbmp"]},"image/vnd.xiff":{"source":"iana","extensions":["xif"]},"image/vnd.zbrush.pcx":{"source":"iana","extensions":["pcx"]},"image/webp":{"source":"apache","extensions":["webp"]},"image/wmf":{"source":"iana","extensions":["wmf"]},"image/x-3ds":{"source":"apache","extensions":["3ds"]},"image/x-cmu-raster":{"source":"apache","extensions":["ras"]},"image/x-cmx":{"source":"apache","extensions":["cmx"]},"image/x-freehand":{"source":"apache","extensions":["fh","fhc","fh4","fh5","fh7"]},"image/x-icon":{"source":"apache","compressible":true,"extensions":["ico"]},"image/x-jng":{"source":"nginx","extensions":["jng"]},"image/x-mrsid-image":{"source":"apache","extensions":["sid"]},"image/x-ms-bmp":{"source":"nginx","compressible":true,"extensions":["bmp"]},"image/x-pcx":{"source":"apache","extensions":["pcx"]},"image/x-pict":{"source":"apache","extensions":["pic","pct"]},"image/x-portable-anymap":{"source":"apache","extensions":["pnm"]},"image/x-portable-bitmap":{"source":"apache","extensions":["pbm"]},"image/x-portable-graymap":{"source":"apache","extensions":["pgm"]},"image/x-portable-pixmap":{"source":"apache","extensions":["ppm"]},"image/x-rgb":{"source":"apache","extensions":["rgb"]},"image/x-tga":{"source":"apache","extensions":["tga"]},"image/x-xbitmap":{"source":"apache","extensions":["xbm"]},"image/x-xcf":{"compressible":false},"image/x-xpixmap":{"source":"apache","extensions":["xpm"]},"image/x-xwindowdump":{"source":"apache","extensions":["xwd"]},"message/cpim":{"source":"iana"},"message/delivery-status":{"source":"iana"},"message/disposition-notification":{"source":"iana","extensions":["disposition-notification"]},"message/external-body":{"source":"iana"},"message/feedback-report":{"source":"iana"},"message/global":{"source":"iana","extensions":["u8msg"]},"message/global-delivery-status":{"source":"iana","extensions":["u8dsn"]},"message/global-disposition-notification":{"source":"iana","extensions":["u8mdn"]},"message/global-headers":{"source":"iana","extensions":["u8hdr"]},"message/http":{"source":"iana","compressible":false},"message/imdn+xml":{"source":"iana","compressible":true},"message/news":{"source":"iana"},"message/partial":{"source":"iana","compressible":false},"message/rfc822":{"source":"iana","compressible":true,"extensions":["eml","mime"]},"message/s-http":{"source":"iana"},"message/sip":{"source":"iana"},"message/sipfrag":{"source":"iana"},"message/tracking-status":{"source":"iana"},"message/vnd.si.simp":{"source":"iana"},"message/vnd.wfa.wsc":{"source":"iana","extensions":["wsc"]},"model/3mf":{"source":"iana","extensions":["3mf"]},"model/e57":{"source":"iana"},"model/gltf+json":{"source":"iana","compressible":true,"extensions":["gltf"]},"model/gltf-binary":{"source":"iana","compressible":true,"extensions":["glb"]},"model/iges":{"source":"iana","compressible":false,"extensions":["igs","iges"]},"model/mesh":{"source":"iana","compressible":false,"extensions":["msh","mesh","silo"]},"model/mtl":{"source":"iana","extensions":["mtl"]},"model/obj":{"source":"iana","extensions":["obj"]},"model/step":{"source":"iana"},"model/step+xml":{"source":"iana","compressible":true,"extensions":["stpx"]},"model/step+zip":{"source":"iana","compressible":false,"extensions":["stpz"]},"model/step-xml+zip":{"source":"iana","compressible":false,"extensions":["stpxz"]},"model/stl":{"source":"iana","extensions":["stl"]},"model/vnd.collada+xml":{"source":"iana","compressible":true,"extensions":["dae"]},"model/vnd.dwf":{"source":"iana","extensions":["dwf"]},"model/vnd.flatland.3dml":{"source":"iana"},"model/vnd.gdl":{"source":"iana","extensions":["gdl"]},"model/vnd.gs-gdl":{"source":"apache"},"model/vnd.gs.gdl":{"source":"iana"},"model/vnd.gtw":{"source":"iana","extensions":["gtw"]},"model/vnd.moml+xml":{"source":"iana","compressible":true},"model/vnd.mts":{"source":"iana","extensions":["mts"]},"model/vnd.opengex":{"source":"iana","extensions":["ogex"]},"model/vnd.parasolid.transmit.binary":{"source":"iana","extensions":["x_b"]},"model/vnd.parasolid.transmit.text":{"source":"iana","extensions":["x_t"]},"model/vnd.pytha.pyox":{"source":"iana"},"model/vnd.rosette.annotated-data-model":{"source":"iana"},"model/vnd.sap.vds":{"source":"iana","extensions":["vds"]},"model/vnd.usdz+zip":{"source":"iana","compressible":false,"extensions":["usdz"]},"model/vnd.valve.source.compiled-map":{"source":"iana","extensions":["bsp"]},"model/vnd.vtu":{"source":"iana","extensions":["vtu"]},"model/vrml":{"source":"iana","compressible":false,"extensions":["wrl","vrml"]},"model/x3d+binary":{"source":"apache","compressible":false,"extensions":["x3db","x3dbz"]},"model/x3d+fastinfoset":{"source":"iana","extensions":["x3db"]},"model/x3d+vrml":{"source":"apache","compressible":false,"extensions":["x3dv","x3dvz"]},"model/x3d+xml":{"source":"iana","compressible":true,"extensions":["x3d","x3dz"]},"model/x3d-vrml":{"source":"iana","extensions":["x3dv"]},"multipart/alternative":{"source":"iana","compressible":false},"multipart/appledouble":{"source":"iana"},"multipart/byteranges":{"source":"iana"},"multipart/digest":{"source":"iana"},"multipart/encrypted":{"source":"iana","compressible":false},"multipart/form-data":{"source":"iana","compressible":false},"multipart/header-set":{"source":"iana"},"multipart/mixed":{"source":"iana"},"multipart/multilingual":{"source":"iana"},"multipart/parallel":{"source":"iana"},"multipart/related":{"source":"iana","compressible":false},"multipart/report":{"source":"iana"},"multipart/signed":{"source":"iana","compressible":false},"multipart/vnd.bint.med-plus":{"source":"iana"},"multipart/voice-message":{"source":"iana"},"multipart/x-mixed-replace":{"source":"iana"},"text/1d-interleaved-parityfec":{"source":"iana"},"text/cache-manifest":{"source":"iana","compressible":true,"extensions":["appcache","manifest"]},"text/calendar":{"source":"iana","extensions":["ics","ifb"]},"text/calender":{"compressible":true},"text/cmd":{"compressible":true},"text/coffeescript":{"extensions":["coffee","litcoffee"]},"text/cql":{"source":"iana"},"text/cql-expression":{"source":"iana"},"text/cql-identifier":{"source":"iana"},"text/css":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["css"]},"text/csv":{"source":"iana","compressible":true,"extensions":["csv"]},"text/csv-schema":{"source":"iana"},"text/directory":{"source":"iana"},"text/dns":{"source":"iana"},"text/ecmascript":{"source":"iana"},"text/encaprtp":{"source":"iana"},"text/enriched":{"source":"iana"},"text/fhirpath":{"source":"iana"},"text/flexfec":{"source":"iana"},"text/fwdred":{"source":"iana"},"text/gff3":{"source":"iana"},"text/grammar-ref-list":{"source":"iana"},"text/html":{"source":"iana","compressible":true,"extensions":["html","htm","shtml"]},"text/jade":{"extensions":["jade"]},"text/javascript":{"source":"iana","compressible":true},"text/jcr-cnd":{"source":"iana"},"text/jsx":{"compressible":true,"extensions":["jsx"]},"text/less":{"compressible":true,"extensions":["less"]},"text/markdown":{"source":"iana","compressible":true,"extensions":["markdown","md"]},"text/mathml":{"source":"nginx","extensions":["mml"]},"text/mdx":{"compressible":true,"extensions":["mdx"]},"text/mizar":{"source":"iana"},"text/n3":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["n3"]},"text/parameters":{"source":"iana","charset":"UTF-8"},"text/parityfec":{"source":"iana"},"text/plain":{"source":"iana","compressible":true,"extensions":["txt","text","conf","def","list","log","in","ini"]},"text/provenance-notation":{"source":"iana","charset":"UTF-8"},"text/prs.fallenstein.rst":{"source":"iana"},"text/prs.lines.tag":{"source":"iana","extensions":["dsc"]},"text/prs.prop.logic":{"source":"iana"},"text/raptorfec":{"source":"iana"},"text/red":{"source":"iana"},"text/rfc822-headers":{"source":"iana"},"text/richtext":{"source":"iana","compressible":true,"extensions":["rtx"]},"text/rtf":{"source":"iana","compressible":true,"extensions":["rtf"]},"text/rtp-enc-aescm128":{"source":"iana"},"text/rtploopback":{"source":"iana"},"text/rtx":{"source":"iana"},"text/sgml":{"source":"iana","extensions":["sgml","sgm"]},"text/shaclc":{"source":"iana"},"text/shex":{"source":"iana","extensions":["shex"]},"text/slim":{"extensions":["slim","slm"]},"text/spdx":{"source":"iana","extensions":["spdx"]},"text/strings":{"source":"iana"},"text/stylus":{"extensions":["stylus","styl"]},"text/t140":{"source":"iana"},"text/tab-separated-values":{"source":"iana","compressible":true,"extensions":["tsv"]},"text/troff":{"source":"iana","extensions":["t","tr","roff","man","me","ms"]},"text/turtle":{"source":"iana","charset":"UTF-8","extensions":["ttl"]},"text/ulpfec":{"source":"iana"},"text/uri-list":{"source":"iana","compressible":true,"extensions":["uri","uris","urls"]},"text/vcard":{"source":"iana","compressible":true,"extensions":["vcard"]},"text/vnd.a":{"source":"iana"},"text/vnd.abc":{"source":"iana"},"text/vnd.ascii-art":{"source":"iana"},"text/vnd.curl":{"source":"iana","extensions":["curl"]},"text/vnd.curl.dcurl":{"source":"apache","extensions":["dcurl"]},"text/vnd.curl.mcurl":{"source":"apache","extensions":["mcurl"]},"text/vnd.curl.scurl":{"source":"apache","extensions":["scurl"]},"text/vnd.debian.copyright":{"source":"iana","charset":"UTF-8"},"text/vnd.dmclientscript":{"source":"iana"},"text/vnd.dvb.subtitle":{"source":"iana","extensions":["sub"]},"text/vnd.esmertec.theme-descriptor":{"source":"iana","charset":"UTF-8"},"text/vnd.familysearch.gedcom":{"source":"iana","extensions":["ged"]},"text/vnd.ficlab.flt":{"source":"iana"},"text/vnd.fly":{"source":"iana","extensions":["fly"]},"text/vnd.fmi.flexstor":{"source":"iana","extensions":["flx"]},"text/vnd.gml":{"source":"iana"},"text/vnd.graphviz":{"source":"iana","extensions":["gv"]},"text/vnd.hans":{"source":"iana"},"text/vnd.hgl":{"source":"iana"},"text/vnd.in3d.3dml":{"source":"iana","extensions":["3dml"]},"text/vnd.in3d.spot":{"source":"iana","extensions":["spot"]},"text/vnd.iptc.newsml":{"source":"iana"},"text/vnd.iptc.nitf":{"source":"iana"},"text/vnd.latex-z":{"source":"iana"},"text/vnd.motorola.reflex":{"source":"iana"},"text/vnd.ms-mediapackage":{"source":"iana"},"text/vnd.net2phone.commcenter.command":{"source":"iana"},"text/vnd.radisys.msml-basic-layout":{"source":"iana"},"text/vnd.senx.warpscript":{"source":"iana"},"text/vnd.si.uricatalogue":{"source":"iana"},"text/vnd.sosi":{"source":"iana"},"text/vnd.sun.j2me.app-descriptor":{"source":"iana","charset":"UTF-8","extensions":["jad"]},"text/vnd.trolltech.linguist":{"source":"iana","charset":"UTF-8"},"text/vnd.wap.si":{"source":"iana"},"text/vnd.wap.sl":{"source":"iana"},"text/vnd.wap.wml":{"source":"iana","extensions":["wml"]},"text/vnd.wap.wmlscript":{"source":"iana","extensions":["wmls"]},"text/vtt":{"source":"iana","charset":"UTF-8","compressible":true,"extensions":["vtt"]},"text/x-asm":{"source":"apache","extensions":["s","asm"]},"text/x-c":{"source":"apache","extensions":["c","cc","cxx","cpp","h","hh","dic"]},"text/x-component":{"source":"nginx","extensions":["htc"]},"text/x-fortran":{"source":"apache","extensions":["f","for","f77","f90"]},"text/x-gwt-rpc":{"compressible":true},"text/x-handlebars-template":{"extensions":["hbs"]},"text/x-java-source":{"source":"apache","extensions":["java"]},"text/x-jquery-tmpl":{"compressible":true},"text/x-lua":{"extensions":["lua"]},"text/x-markdown":{"compressible":true,"extensions":["mkd"]},"text/x-nfo":{"source":"apache","extensions":["nfo"]},"text/x-opml":{"source":"apache","extensions":["opml"]},"text/x-org":{"compressible":true,"extensions":["org"]},"text/x-pascal":{"source":"apache","extensions":["p","pas"]},"text/x-processing":{"compressible":true,"extensions":["pde"]},"text/x-sass":{"extensions":["sass"]},"text/x-scss":{"extensions":["scss"]},"text/x-setext":{"source":"apache","extensions":["etx"]},"text/x-sfv":{"source":"apache","extensions":["sfv"]},"text/x-suse-ymp":{"compressible":true,"extensions":["ymp"]},"text/x-uuencode":{"source":"apache","extensions":["uu"]},"text/x-vcalendar":{"source":"apache","extensions":["vcs"]},"text/x-vcard":{"source":"apache","extensions":["vcf"]},"text/xml":{"source":"iana","compressible":true,"extensions":["xml"]},"text/xml-external-parsed-entity":{"source":"iana"},"text/yaml":{"compressible":true,"extensions":["yaml","yml"]},"video/1d-interleaved-parityfec":{"source":"iana"},"video/3gpp":{"source":"iana","extensions":["3gp","3gpp"]},"video/3gpp-tt":{"source":"iana"},"video/3gpp2":{"source":"iana","extensions":["3g2"]},"video/av1":{"source":"iana"},"video/bmpeg":{"source":"iana"},"video/bt656":{"source":"iana"},"video/celb":{"source":"iana"},"video/dv":{"source":"iana"},"video/encaprtp":{"source":"iana"},"video/ffv1":{"source":"iana"},"video/flexfec":{"source":"iana"},"video/h261":{"source":"iana","extensions":["h261"]},"video/h263":{"source":"iana","extensions":["h263"]},"video/h263-1998":{"source":"iana"},"video/h263-2000":{"source":"iana"},"video/h264":{"source":"iana","extensions":["h264"]},"video/h264-rcdo":{"source":"iana"},"video/h264-svc":{"source":"iana"},"video/h265":{"source":"iana"},"video/iso.segment":{"source":"iana","extensions":["m4s"]},"video/jpeg":{"source":"iana","extensions":["jpgv"]},"video/jpeg2000":{"source":"iana"},"video/jpm":{"source":"apache","extensions":["jpm","jpgm"]},"video/jxsv":{"source":"iana"},"video/mj2":{"source":"iana","extensions":["mj2","mjp2"]},"video/mp1s":{"source":"iana"},"video/mp2p":{"source":"iana"},"video/mp2t":{"source":"iana","extensions":["ts"]},"video/mp4":{"source":"iana","compressible":false,"extensions":["mp4","mp4v","mpg4"]},"video/mp4v-es":{"source":"iana"},"video/mpeg":{"source":"iana","compressible":false,"extensions":["mpeg","mpg","mpe","m1v","m2v"]},"video/mpeg4-generic":{"source":"iana"},"video/mpv":{"source":"iana"},"video/nv":{"source":"iana"},"video/ogg":{"source":"iana","compressible":false,"extensions":["ogv"]},"video/parityfec":{"source":"iana"},"video/pointer":{"source":"iana"},"video/quicktime":{"source":"iana","compressible":false,"extensions":["qt","mov"]},"video/raptorfec":{"source":"iana"},"video/raw":{"source":"iana"},"video/rtp-enc-aescm128":{"source":"iana"},"video/rtploopback":{"source":"iana"},"video/rtx":{"source":"iana"},"video/scip":{"source":"iana"},"video/smpte291":{"source":"iana"},"video/smpte292m":{"source":"iana"},"video/ulpfec":{"source":"iana"},"video/vc1":{"source":"iana"},"video/vc2":{"source":"iana"},"video/vnd.cctv":{"source":"iana"},"video/vnd.dece.hd":{"source":"iana","extensions":["uvh","uvvh"]},"video/vnd.dece.mobile":{"source":"iana","extensions":["uvm","uvvm"]},"video/vnd.dece.mp4":{"source":"iana"},"video/vnd.dece.pd":{"source":"iana","extensions":["uvp","uvvp"]},"video/vnd.dece.sd":{"source":"iana","extensions":["uvs","uvvs"]},"video/vnd.dece.video":{"source":"iana","extensions":["uvv","uvvv"]},"video/vnd.directv.mpeg":{"source":"iana"},"video/vnd.directv.mpeg-tts":{"source":"iana"},"video/vnd.dlna.mpeg-tts":{"source":"iana"},"video/vnd.dvb.file":{"source":"iana","extensions":["dvb"]},"video/vnd.fvt":{"source":"iana","extensions":["fvt"]},"video/vnd.hns.video":{"source":"iana"},"video/vnd.iptvforum.1dparityfec-1010":{"source":"iana"},"video/vnd.iptvforum.1dparityfec-2005":{"source":"iana"},"video/vnd.iptvforum.2dparityfec-1010":{"source":"iana"},"video/vnd.iptvforum.2dparityfec-2005":{"source":"iana"},"video/vnd.iptvforum.ttsavc":{"source":"iana"},"video/vnd.iptvforum.ttsmpeg2":{"source":"iana"},"video/vnd.motorola.video":{"source":"iana"},"video/vnd.motorola.videop":{"source":"iana"},"video/vnd.mpegurl":{"source":"iana","extensions":["mxu","m4u"]},"video/vnd.ms-playready.media.pyv":{"source":"iana","extensions":["pyv"]},"video/vnd.nokia.interleaved-multimedia":{"source":"iana"},"video/vnd.nokia.mp4vr":{"source":"iana"},"video/vnd.nokia.videovoip":{"source":"iana"},"video/vnd.objectvideo":{"source":"iana"},"video/vnd.radgamettools.bink":{"source":"iana"},"video/vnd.radgamettools.smacker":{"source":"iana"},"video/vnd.sealed.mpeg1":{"source":"iana"},"video/vnd.sealed.mpeg4":{"source":"iana"},"video/vnd.sealed.swf":{"source":"iana"},"video/vnd.sealedmedia.softseal.mov":{"source":"iana"},"video/vnd.uvvu.mp4":{"source":"iana","extensions":["uvu","uvvu"]},"video/vnd.vivo":{"source":"iana","extensions":["viv"]},"video/vnd.youtube.yt":{"source":"iana"},"video/vp8":{"source":"iana"},"video/vp9":{"source":"iana"},"video/webm":{"source":"apache","compressible":false,"extensions":["webm"]},"video/x-f4v":{"source":"apache","extensions":["f4v"]},"video/x-fli":{"source":"apache","extensions":["fli"]},"video/x-flv":{"source":"apache","compressible":false,"extensions":["flv"]},"video/x-m4v":{"source":"apache","extensions":["m4v"]},"video/x-matroska":{"source":"apache","compressible":false,"extensions":["mkv","mk3d","mks"]},"video/x-mng":{"source":"apache","extensions":["mng"]},"video/x-ms-asf":{"source":"apache","extensions":["asf","asx"]},"video/x-ms-vob":{"source":"apache","extensions":["vob"]},"video/x-ms-wm":{"source":"apache","extensions":["wm"]},"video/x-ms-wmv":{"source":"apache","compressible":false,"extensions":["wmv"]},"video/x-ms-wmx":{"source":"apache","extensions":["wmx"]},"video/x-ms-wvx":{"source":"apache","extensions":["wvx"]},"video/x-msvideo":{"source":"apache","extensions":["avi"]},"video/x-sgi-movie":{"source":"apache","extensions":["movie"]},"video/x-smv":{"source":"apache","extensions":["smv"]},"x-conference/x-cooltalk":{"source":"apache","extensions":["ice"]},"x-shader/x-fragment":{"compressible":true},"x-shader/x-vertex":{"compressible":true}}')},78790:e=>{"use strict";e.exports={rE:"6.7.0"}},87466:e=>{"use strict";e.exports=JSON.parse('{"name":"mysql2","version":"3.10.1","description":"fast mysql driver. Implements core protocol, prepared statements, ssl and compression in native JS","main":"index.js","typings":"typings/mysql/index","scripts":{"lint":"npm run lint:docs && npm run lint:code","lint:code":"eslint index.js promise.js index.d.ts promise.d.ts \\"typings/**/*.ts\\" \\"lib/**/*.js\\" \\"test/**/*.{js,cjs,mjs,ts}\\" \\"benchmarks/**/*.js\\"","lint:docs":"eslint Contributing.md README.md","lint:typings":"npx prettier --check ./typings","lint:tests":"npx prettier --check ./test","test":"poku --debug --include=\\"test/esm,test/unit,test/integration\\"","test:bun":"poku --debug --platform=\\"bun\\" --include=\\"test/esm,test/unit,test/integration\\"","test:deno":"deno run --allow-read --allow-env --allow-run npm:poku --debug --platform=\\"deno\\" --deno-allow=\\"read,env,net,sys\\" --deno-cjs=\\".js,.cjs\\" --include=\\"test/esm,test/unit,test/integration\\"","test:tsc-build":"cd \\"test/tsc-build\\" && npx tsc -p \\"tsconfig.json\\"","coverage-test":"c8 npm run test","benchmark":"node ./benchmarks/benchmark.js","prettier":"prettier --single-quote --trailing-comma none --write \\"{lib,test}/**/*.js\\"","prettier:docs":"prettier --single-quote --trailing-comma none --write README.md","precommit":"lint-staged","eslint-check":"eslint --print-config .eslintrc | eslint-config-prettier-check","wait-port":"wait-on"},"lint-staged":{"*.js":["prettier --single-quote --trailing-comma none --write","git add"]},"repository":{"type":"git","url":"https://github.com/sidorares/node-mysql2"},"homepage":"https://sidorares.github.io/node-mysql2/docs","keywords":["mysql","client","server"],"files":["lib","typings/mysql","index.js","index.d.ts","promise.js","promise.d.ts"],"exports":{".":"./index.js","./package.json":"./package.json","./promise":"./promise.js","./promise.js":"./promise.js"},"engines":{"node":">= 8.0"},"author":"Andrey Sidorov ","license":"MIT","dependencies":{"denque":"^2.1.0","generate-function":"^2.3.1","iconv-lite":"^0.6.3","long":"^5.2.1","lru-cache":"^8.0.0","named-placeholders":"^1.1.3","seq-queue":"^0.0.5","sqlstring":"^2.3.2"},"devDependencies":{"@types/node":"^20.0.0","@typescript-eslint/eslint-plugin":"^5.42.1","@typescript-eslint/parser":"^5.42.1","assert-diff":"^3.0.2","benchmark":"^2.1.4","c8":"^10.1.1","error-stack-parser":"^2.0.3","eslint":"^8.27.0","eslint-config-prettier":"^9.0.0","eslint-plugin-async-await":"0.0.0","eslint-plugin-markdown":"^5.0.0","lint-staged":"^15.0.1","poku":"^1.14.0","portfinder":"^1.0.28","prettier":"^3.0.0","progress":"^2.0.3","typescript":"^5.0.2"}}')},97689:e=>{"use strict";e.exports=JSON.parse('{"author":"Mike D Pilsbury ","contributors":["Alex Robson","Arthur Schreiber","Bret Copeland (https://github.com/bretcope)","Bryan Ross (https://github.com/rossipedia)","Ciaran Jessup ","Cort Fritz ","lastonesky","Patrik Simek ","Phil Dodderidge ","Zach Aller"],"name":"tedious","description":"A TDS driver, for connecting to MS SQLServer databases.","keywords":["sql","database","mssql","sqlserver","sql-server","tds","msnodesql","azure"],"homepage":"https://github.com/tediousjs/tedious","bugs":"https://github.com/tediousjs/tedious/issues","license":"MIT","version":"15.1.3","main":"./lib/tedious.js","repository":{"type":"git","url":"https://github.com/tediousjs/tedious.git"},"engines":{"node":">=14"},"publishConfig":{"tag":"next"},"dependencies":{"@azure/identity":"^2.0.4","@azure/keyvault-keys":"^4.4.0","@js-joda/core":"^5.2.0","bl":"^5.0.0","es-aggregate-error":"^1.0.8","iconv-lite":"^0.6.3","js-md4":"^0.3.2","jsbi":"^4.3.0","native-duplexpair":"^1.0.0","node-abort-controller":"^3.0.1","punycode":"^2.1.0","sprintf-js":"^1.1.2"},"devDependencies":{"@babel/cli":"^7.17.10","@babel/core":"^7.17.10","@babel/node":"^7.17.10","@babel/plugin-proposal-class-properties":"^7.16.7","@babel/preset-env":"^7.17.10","@babel/preset-typescript":"^7.16.7","@babel/register":"^7.17.7","@commitlint/cli":"^16.2.4","@commitlint/config-conventional":"^16.2.4","@commitlint/travis-cli":"^16.2.4","@types/es-aggregate-error":"^1.0.2","@types/async":"^3.2.13","@types/bl":"^5.0.2","@types/chai":"^4.3.1","@types/depd":"^1.1.32","@types/lru-cache":"^5.1.0","@types/mocha":"^9.1.1","@types/node":"^12.20.50","@types/sprintf-js":"^1.1.2","@typescript-eslint/eslint-plugin":"^5.22.0","@typescript-eslint/parser":"^5.22.0","async":"^3.2.3","babel-plugin-istanbul":"^6.1.1","chai":"^4.3.6","codecov":"^3.8.3","eslint":"^7.32.0","mitm":"^1.7.2","mocha":"^9.2.2","nyc":"^15.1.0","rimraf":"^3.0.2","semantic-release":"^19.0.3","sinon":"^11.1.2","typedoc":"^0.22.15","typescript":"^4.6.4"},"scripts":{"docs":"typedoc","lint":"eslint src test --ext .js,.ts && tsc","test":"mocha test/unit test/unit/token test/unit/tracking-buffer","test-integration":"mocha test/integration/","test-all":"mocha test/unit/ test/unit/token/ test/unit/tracking-buffer test/integration/","build":"rimraf lib && babel src --out-dir lib --extensions .js,.ts","prepublish":"npm run build","semantic-release":"semantic-release"},"babel":{"sourceMaps":"both","ignore":["./src/**/*.d.ts"],"presets":[["@babel/preset-env",{"targets":{"node":14}}],["@babel/preset-typescript",{"allowDeclareFields":true}]],"plugins":[["@babel/transform-typescript",{"allowDeclareFields":true}],["@babel/plugin-proposal-class-properties",{"loose":true}],["@babel/plugin-proposal-private-methods",{"loose":true}],["@babel/plugin-proposal-private-property-in-object",{"loose":true}]]},"commitlint":{"extends":["@commitlint/config-conventional"],"rules":{"body-max-line-length":[1,"always",100],"footer-max-line-length":[1,"always",100],"header-max-length":[1,"always",100]}},"mocha":{"require":"test/setup.js","timeout":5000,"extension":["js","ts"]},"nyc":{"sourceMap":false,"instrument":false,"extension":[".ts"]}}')},92472:e=>{"use strict";e.exports=JSON.parse('[[[0,44],4],[[45,46],2],[47,4],[[48,57],2],[[58,64],4],[65,1,"a"],[66,1,"b"],[67,1,"c"],[68,1,"d"],[69,1,"e"],[70,1,"f"],[71,1,"g"],[72,1,"h"],[73,1,"i"],[74,1,"j"],[75,1,"k"],[76,1,"l"],[77,1,"m"],[78,1,"n"],[79,1,"o"],[80,1,"p"],[81,1,"q"],[82,1,"r"],[83,1,"s"],[84,1,"t"],[85,1,"u"],[86,1,"v"],[87,1,"w"],[88,1,"x"],[89,1,"y"],[90,1,"z"],[[91,96],4],[[97,122],2],[[123,127],4],[[128,159],3],[160,5," "],[[161,167],2],[168,5," ̈"],[169,2],[170,1,"a"],[[171,172],2],[173,7],[174,2],[175,5," ̄"],[[176,177],2],[178,1,"2"],[179,1,"3"],[180,5," ́"],[181,1,"μ"],[182,2],[183,2],[184,5," ̧"],[185,1,"1"],[186,1,"o"],[187,2],[188,1,"1⁄4"],[189,1,"1⁄2"],[190,1,"3⁄4"],[191,2],[192,1,"à"],[193,1,"á"],[194,1,"â"],[195,1,"ã"],[196,1,"ä"],[197,1,"å"],[198,1,"æ"],[199,1,"ç"],[200,1,"è"],[201,1,"é"],[202,1,"ê"],[203,1,"ë"],[204,1,"ì"],[205,1,"í"],[206,1,"î"],[207,1,"ï"],[208,1,"ð"],[209,1,"ñ"],[210,1,"ò"],[211,1,"ó"],[212,1,"ô"],[213,1,"õ"],[214,1,"ö"],[215,2],[216,1,"ø"],[217,1,"ù"],[218,1,"ú"],[219,1,"û"],[220,1,"ü"],[221,1,"ý"],[222,1,"þ"],[223,6,"ss"],[[224,246],2],[247,2],[[248,255],2],[256,1,"ā"],[257,2],[258,1,"ă"],[259,2],[260,1,"ą"],[261,2],[262,1,"ć"],[263,2],[264,1,"ĉ"],[265,2],[266,1,"ċ"],[267,2],[268,1,"č"],[269,2],[270,1,"ď"],[271,2],[272,1,"đ"],[273,2],[274,1,"ē"],[275,2],[276,1,"ĕ"],[277,2],[278,1,"ė"],[279,2],[280,1,"ę"],[281,2],[282,1,"ě"],[283,2],[284,1,"ĝ"],[285,2],[286,1,"ğ"],[287,2],[288,1,"ġ"],[289,2],[290,1,"ģ"],[291,2],[292,1,"ĥ"],[293,2],[294,1,"ħ"],[295,2],[296,1,"ĩ"],[297,2],[298,1,"ī"],[299,2],[300,1,"ĭ"],[301,2],[302,1,"į"],[303,2],[304,1,"i̇"],[305,2],[[306,307],1,"ij"],[308,1,"ĵ"],[309,2],[310,1,"ķ"],[[311,312],2],[313,1,"ĺ"],[314,2],[315,1,"ļ"],[316,2],[317,1,"ľ"],[318,2],[[319,320],1,"l·"],[321,1,"ł"],[322,2],[323,1,"ń"],[324,2],[325,1,"ņ"],[326,2],[327,1,"ň"],[328,2],[329,1,"ʼn"],[330,1,"ŋ"],[331,2],[332,1,"ō"],[333,2],[334,1,"ŏ"],[335,2],[336,1,"ő"],[337,2],[338,1,"œ"],[339,2],[340,1,"ŕ"],[341,2],[342,1,"ŗ"],[343,2],[344,1,"ř"],[345,2],[346,1,"ś"],[347,2],[348,1,"ŝ"],[349,2],[350,1,"ş"],[351,2],[352,1,"š"],[353,2],[354,1,"ţ"],[355,2],[356,1,"ť"],[357,2],[358,1,"ŧ"],[359,2],[360,1,"ũ"],[361,2],[362,1,"ū"],[363,2],[364,1,"ŭ"],[365,2],[366,1,"ů"],[367,2],[368,1,"ű"],[369,2],[370,1,"ų"],[371,2],[372,1,"ŵ"],[373,2],[374,1,"ŷ"],[375,2],[376,1,"ÿ"],[377,1,"ź"],[378,2],[379,1,"ż"],[380,2],[381,1,"ž"],[382,2],[383,1,"s"],[384,2],[385,1,"ɓ"],[386,1,"ƃ"],[387,2],[388,1,"ƅ"],[389,2],[390,1,"ɔ"],[391,1,"ƈ"],[392,2],[393,1,"ɖ"],[394,1,"ɗ"],[395,1,"ƌ"],[[396,397],2],[398,1,"ǝ"],[399,1,"ə"],[400,1,"ɛ"],[401,1,"ƒ"],[402,2],[403,1,"ɠ"],[404,1,"ɣ"],[405,2],[406,1,"ɩ"],[407,1,"ɨ"],[408,1,"ƙ"],[[409,411],2],[412,1,"ɯ"],[413,1,"ɲ"],[414,2],[415,1,"ɵ"],[416,1,"ơ"],[417,2],[418,1,"ƣ"],[419,2],[420,1,"ƥ"],[421,2],[422,1,"ʀ"],[423,1,"ƨ"],[424,2],[425,1,"ʃ"],[[426,427],2],[428,1,"ƭ"],[429,2],[430,1,"ʈ"],[431,1,"ư"],[432,2],[433,1,"ʊ"],[434,1,"ʋ"],[435,1,"ƴ"],[436,2],[437,1,"ƶ"],[438,2],[439,1,"ʒ"],[440,1,"ƹ"],[[441,443],2],[444,1,"ƽ"],[[445,451],2],[[452,454],1,"dž"],[[455,457],1,"lj"],[[458,460],1,"nj"],[461,1,"ǎ"],[462,2],[463,1,"ǐ"],[464,2],[465,1,"ǒ"],[466,2],[467,1,"ǔ"],[468,2],[469,1,"ǖ"],[470,2],[471,1,"ǘ"],[472,2],[473,1,"ǚ"],[474,2],[475,1,"ǜ"],[[476,477],2],[478,1,"ǟ"],[479,2],[480,1,"ǡ"],[481,2],[482,1,"ǣ"],[483,2],[484,1,"ǥ"],[485,2],[486,1,"ǧ"],[487,2],[488,1,"ǩ"],[489,2],[490,1,"ǫ"],[491,2],[492,1,"ǭ"],[493,2],[494,1,"ǯ"],[[495,496],2],[[497,499],1,"dz"],[500,1,"ǵ"],[501,2],[502,1,"ƕ"],[503,1,"ƿ"],[504,1,"ǹ"],[505,2],[506,1,"ǻ"],[507,2],[508,1,"ǽ"],[509,2],[510,1,"ǿ"],[511,2],[512,1,"ȁ"],[513,2],[514,1,"ȃ"],[515,2],[516,1,"ȅ"],[517,2],[518,1,"ȇ"],[519,2],[520,1,"ȉ"],[521,2],[522,1,"ȋ"],[523,2],[524,1,"ȍ"],[525,2],[526,1,"ȏ"],[527,2],[528,1,"ȑ"],[529,2],[530,1,"ȓ"],[531,2],[532,1,"ȕ"],[533,2],[534,1,"ȗ"],[535,2],[536,1,"ș"],[537,2],[538,1,"ț"],[539,2],[540,1,"ȝ"],[541,2],[542,1,"ȟ"],[543,2],[544,1,"ƞ"],[545,2],[546,1,"ȣ"],[547,2],[548,1,"ȥ"],[549,2],[550,1,"ȧ"],[551,2],[552,1,"ȩ"],[553,2],[554,1,"ȫ"],[555,2],[556,1,"ȭ"],[557,2],[558,1,"ȯ"],[559,2],[560,1,"ȱ"],[561,2],[562,1,"ȳ"],[563,2],[[564,566],2],[[567,569],2],[570,1,"ⱥ"],[571,1,"ȼ"],[572,2],[573,1,"ƚ"],[574,1,"ⱦ"],[[575,576],2],[577,1,"ɂ"],[578,2],[579,1,"ƀ"],[580,1,"ʉ"],[581,1,"ʌ"],[582,1,"ɇ"],[583,2],[584,1,"ɉ"],[585,2],[586,1,"ɋ"],[587,2],[588,1,"ɍ"],[589,2],[590,1,"ɏ"],[591,2],[[592,680],2],[[681,685],2],[[686,687],2],[688,1,"h"],[689,1,"ɦ"],[690,1,"j"],[691,1,"r"],[692,1,"ɹ"],[693,1,"ɻ"],[694,1,"ʁ"],[695,1,"w"],[696,1,"y"],[[697,705],2],[[706,709],2],[[710,721],2],[[722,727],2],[728,5," ̆"],[729,5," ̇"],[730,5," ̊"],[731,5," ̨"],[732,5," ̃"],[733,5," ̋"],[734,2],[735,2],[736,1,"ɣ"],[737,1,"l"],[738,1,"s"],[739,1,"x"],[740,1,"ʕ"],[[741,745],2],[[746,747],2],[748,2],[749,2],[750,2],[[751,767],2],[[768,831],2],[832,1,"̀"],[833,1,"́"],[834,2],[835,1,"̓"],[836,1,"̈́"],[837,1,"ι"],[[838,846],2],[847,7],[[848,855],2],[[856,860],2],[[861,863],2],[[864,865],2],[866,2],[[867,879],2],[880,1,"ͱ"],[881,2],[882,1,"ͳ"],[883,2],[884,1,"ʹ"],[885,2],[886,1,"ͷ"],[887,2],[[888,889],3],[890,5," ι"],[[891,893],2],[894,5,";"],[895,1,"ϳ"],[[896,899],3],[900,5," ́"],[901,5," ̈́"],[902,1,"ά"],[903,1,"·"],[904,1,"έ"],[905,1,"ή"],[906,1,"ί"],[907,3],[908,1,"ό"],[909,3],[910,1,"ύ"],[911,1,"ώ"],[912,2],[913,1,"α"],[914,1,"β"],[915,1,"γ"],[916,1,"δ"],[917,1,"ε"],[918,1,"ζ"],[919,1,"η"],[920,1,"θ"],[921,1,"ι"],[922,1,"κ"],[923,1,"λ"],[924,1,"μ"],[925,1,"ν"],[926,1,"ξ"],[927,1,"ο"],[928,1,"π"],[929,1,"ρ"],[930,3],[931,1,"σ"],[932,1,"τ"],[933,1,"υ"],[934,1,"φ"],[935,1,"χ"],[936,1,"ψ"],[937,1,"ω"],[938,1,"ϊ"],[939,1,"ϋ"],[[940,961],2],[962,6,"σ"],[[963,974],2],[975,1,"ϗ"],[976,1,"β"],[977,1,"θ"],[978,1,"υ"],[979,1,"ύ"],[980,1,"ϋ"],[981,1,"φ"],[982,1,"π"],[983,2],[984,1,"ϙ"],[985,2],[986,1,"ϛ"],[987,2],[988,1,"ϝ"],[989,2],[990,1,"ϟ"],[991,2],[992,1,"ϡ"],[993,2],[994,1,"ϣ"],[995,2],[996,1,"ϥ"],[997,2],[998,1,"ϧ"],[999,2],[1000,1,"ϩ"],[1001,2],[1002,1,"ϫ"],[1003,2],[1004,1,"ϭ"],[1005,2],[1006,1,"ϯ"],[1007,2],[1008,1,"κ"],[1009,1,"ρ"],[1010,1,"σ"],[1011,2],[1012,1,"θ"],[1013,1,"ε"],[1014,2],[1015,1,"ϸ"],[1016,2],[1017,1,"σ"],[1018,1,"ϻ"],[1019,2],[1020,2],[1021,1,"ͻ"],[1022,1,"ͼ"],[1023,1,"ͽ"],[1024,1,"ѐ"],[1025,1,"ё"],[1026,1,"ђ"],[1027,1,"ѓ"],[1028,1,"є"],[1029,1,"ѕ"],[1030,1,"і"],[1031,1,"ї"],[1032,1,"ј"],[1033,1,"љ"],[1034,1,"њ"],[1035,1,"ћ"],[1036,1,"ќ"],[1037,1,"ѝ"],[1038,1,"ў"],[1039,1,"џ"],[1040,1,"а"],[1041,1,"б"],[1042,1,"в"],[1043,1,"г"],[1044,1,"д"],[1045,1,"е"],[1046,1,"ж"],[1047,1,"з"],[1048,1,"и"],[1049,1,"й"],[1050,1,"к"],[1051,1,"л"],[1052,1,"м"],[1053,1,"н"],[1054,1,"о"],[1055,1,"п"],[1056,1,"р"],[1057,1,"с"],[1058,1,"т"],[1059,1,"у"],[1060,1,"ф"],[1061,1,"х"],[1062,1,"ц"],[1063,1,"ч"],[1064,1,"ш"],[1065,1,"щ"],[1066,1,"ъ"],[1067,1,"ы"],[1068,1,"ь"],[1069,1,"э"],[1070,1,"ю"],[1071,1,"я"],[[1072,1103],2],[1104,2],[[1105,1116],2],[1117,2],[[1118,1119],2],[1120,1,"ѡ"],[1121,2],[1122,1,"ѣ"],[1123,2],[1124,1,"ѥ"],[1125,2],[1126,1,"ѧ"],[1127,2],[1128,1,"ѩ"],[1129,2],[1130,1,"ѫ"],[1131,2],[1132,1,"ѭ"],[1133,2],[1134,1,"ѯ"],[1135,2],[1136,1,"ѱ"],[1137,2],[1138,1,"ѳ"],[1139,2],[1140,1,"ѵ"],[1141,2],[1142,1,"ѷ"],[1143,2],[1144,1,"ѹ"],[1145,2],[1146,1,"ѻ"],[1147,2],[1148,1,"ѽ"],[1149,2],[1150,1,"ѿ"],[1151,2],[1152,1,"ҁ"],[1153,2],[1154,2],[[1155,1158],2],[1159,2],[[1160,1161],2],[1162,1,"ҋ"],[1163,2],[1164,1,"ҍ"],[1165,2],[1166,1,"ҏ"],[1167,2],[1168,1,"ґ"],[1169,2],[1170,1,"ғ"],[1171,2],[1172,1,"ҕ"],[1173,2],[1174,1,"җ"],[1175,2],[1176,1,"ҙ"],[1177,2],[1178,1,"қ"],[1179,2],[1180,1,"ҝ"],[1181,2],[1182,1,"ҟ"],[1183,2],[1184,1,"ҡ"],[1185,2],[1186,1,"ң"],[1187,2],[1188,1,"ҥ"],[1189,2],[1190,1,"ҧ"],[1191,2],[1192,1,"ҩ"],[1193,2],[1194,1,"ҫ"],[1195,2],[1196,1,"ҭ"],[1197,2],[1198,1,"ү"],[1199,2],[1200,1,"ұ"],[1201,2],[1202,1,"ҳ"],[1203,2],[1204,1,"ҵ"],[1205,2],[1206,1,"ҷ"],[1207,2],[1208,1,"ҹ"],[1209,2],[1210,1,"һ"],[1211,2],[1212,1,"ҽ"],[1213,2],[1214,1,"ҿ"],[1215,2],[1216,3],[1217,1,"ӂ"],[1218,2],[1219,1,"ӄ"],[1220,2],[1221,1,"ӆ"],[1222,2],[1223,1,"ӈ"],[1224,2],[1225,1,"ӊ"],[1226,2],[1227,1,"ӌ"],[1228,2],[1229,1,"ӎ"],[1230,2],[1231,2],[1232,1,"ӑ"],[1233,2],[1234,1,"ӓ"],[1235,2],[1236,1,"ӕ"],[1237,2],[1238,1,"ӗ"],[1239,2],[1240,1,"ә"],[1241,2],[1242,1,"ӛ"],[1243,2],[1244,1,"ӝ"],[1245,2],[1246,1,"ӟ"],[1247,2],[1248,1,"ӡ"],[1249,2],[1250,1,"ӣ"],[1251,2],[1252,1,"ӥ"],[1253,2],[1254,1,"ӧ"],[1255,2],[1256,1,"ө"],[1257,2],[1258,1,"ӫ"],[1259,2],[1260,1,"ӭ"],[1261,2],[1262,1,"ӯ"],[1263,2],[1264,1,"ӱ"],[1265,2],[1266,1,"ӳ"],[1267,2],[1268,1,"ӵ"],[1269,2],[1270,1,"ӷ"],[1271,2],[1272,1,"ӹ"],[1273,2],[1274,1,"ӻ"],[1275,2],[1276,1,"ӽ"],[1277,2],[1278,1,"ӿ"],[1279,2],[1280,1,"ԁ"],[1281,2],[1282,1,"ԃ"],[1283,2],[1284,1,"ԅ"],[1285,2],[1286,1,"ԇ"],[1287,2],[1288,1,"ԉ"],[1289,2],[1290,1,"ԋ"],[1291,2],[1292,1,"ԍ"],[1293,2],[1294,1,"ԏ"],[1295,2],[1296,1,"ԑ"],[1297,2],[1298,1,"ԓ"],[1299,2],[1300,1,"ԕ"],[1301,2],[1302,1,"ԗ"],[1303,2],[1304,1,"ԙ"],[1305,2],[1306,1,"ԛ"],[1307,2],[1308,1,"ԝ"],[1309,2],[1310,1,"ԟ"],[1311,2],[1312,1,"ԡ"],[1313,2],[1314,1,"ԣ"],[1315,2],[1316,1,"ԥ"],[1317,2],[1318,1,"ԧ"],[1319,2],[1320,1,"ԩ"],[1321,2],[1322,1,"ԫ"],[1323,2],[1324,1,"ԭ"],[1325,2],[1326,1,"ԯ"],[1327,2],[1328,3],[1329,1,"ա"],[1330,1,"բ"],[1331,1,"գ"],[1332,1,"դ"],[1333,1,"ե"],[1334,1,"զ"],[1335,1,"է"],[1336,1,"ը"],[1337,1,"թ"],[1338,1,"ժ"],[1339,1,"ի"],[1340,1,"լ"],[1341,1,"խ"],[1342,1,"ծ"],[1343,1,"կ"],[1344,1,"հ"],[1345,1,"ձ"],[1346,1,"ղ"],[1347,1,"ճ"],[1348,1,"մ"],[1349,1,"յ"],[1350,1,"ն"],[1351,1,"շ"],[1352,1,"ո"],[1353,1,"չ"],[1354,1,"պ"],[1355,1,"ջ"],[1356,1,"ռ"],[1357,1,"ս"],[1358,1,"վ"],[1359,1,"տ"],[1360,1,"ր"],[1361,1,"ց"],[1362,1,"ւ"],[1363,1,"փ"],[1364,1,"ք"],[1365,1,"օ"],[1366,1,"ֆ"],[[1367,1368],3],[1369,2],[[1370,1375],2],[1376,2],[[1377,1414],2],[1415,1,"եւ"],[1416,2],[1417,2],[1418,2],[[1419,1420],3],[[1421,1422],2],[1423,2],[1424,3],[[1425,1441],2],[1442,2],[[1443,1455],2],[[1456,1465],2],[1466,2],[[1467,1469],2],[1470,2],[1471,2],[1472,2],[[1473,1474],2],[1475,2],[1476,2],[1477,2],[1478,2],[1479,2],[[1480,1487],3],[[1488,1514],2],[[1515,1518],3],[1519,2],[[1520,1524],2],[[1525,1535],3],[[1536,1539],3],[1540,3],[1541,3],[[1542,1546],2],[1547,2],[1548,2],[[1549,1551],2],[[1552,1557],2],[[1558,1562],2],[1563,2],[1564,3],[1565,2],[1566,2],[1567,2],[1568,2],[[1569,1594],2],[[1595,1599],2],[1600,2],[[1601,1618],2],[[1619,1621],2],[[1622,1624],2],[[1625,1630],2],[1631,2],[[1632,1641],2],[[1642,1645],2],[[1646,1647],2],[[1648,1652],2],[1653,1,"اٴ"],[1654,1,"وٴ"],[1655,1,"ۇٴ"],[1656,1,"يٴ"],[[1657,1719],2],[[1720,1721],2],[[1722,1726],2],[1727,2],[[1728,1742],2],[1743,2],[[1744,1747],2],[1748,2],[[1749,1756],2],[1757,3],[1758,2],[[1759,1768],2],[1769,2],[[1770,1773],2],[[1774,1775],2],[[1776,1785],2],[[1786,1790],2],[1791,2],[[1792,1805],2],[1806,3],[1807,3],[[1808,1836],2],[[1837,1839],2],[[1840,1866],2],[[1867,1868],3],[[1869,1871],2],[[1872,1901],2],[[1902,1919],2],[[1920,1968],2],[1969,2],[[1970,1983],3],[[1984,2037],2],[[2038,2042],2],[[2043,2044],3],[2045,2],[[2046,2047],2],[[2048,2093],2],[[2094,2095],3],[[2096,2110],2],[2111,3],[[2112,2139],2],[[2140,2141],3],[2142,2],[2143,3],[[2144,2154],2],[[2155,2159],3],[[2160,2183],2],[2184,2],[[2185,2190],2],[2191,3],[[2192,2193],3],[[2194,2199],3],[[2200,2207],2],[2208,2],[2209,2],[[2210,2220],2],[[2221,2226],2],[[2227,2228],2],[2229,2],[[2230,2237],2],[[2238,2247],2],[[2248,2258],2],[2259,2],[[2260,2273],2],[2274,3],[2275,2],[[2276,2302],2],[2303,2],[2304,2],[[2305,2307],2],[2308,2],[[2309,2361],2],[[2362,2363],2],[[2364,2381],2],[2382,2],[2383,2],[[2384,2388],2],[2389,2],[[2390,2391],2],[2392,1,"क़"],[2393,1,"ख़"],[2394,1,"ग़"],[2395,1,"ज़"],[2396,1,"ड़"],[2397,1,"ढ़"],[2398,1,"फ़"],[2399,1,"य़"],[[2400,2403],2],[[2404,2405],2],[[2406,2415],2],[2416,2],[[2417,2418],2],[[2419,2423],2],[2424,2],[[2425,2426],2],[[2427,2428],2],[2429,2],[[2430,2431],2],[2432,2],[[2433,2435],2],[2436,3],[[2437,2444],2],[[2445,2446],3],[[2447,2448],2],[[2449,2450],3],[[2451,2472],2],[2473,3],[[2474,2480],2],[2481,3],[2482,2],[[2483,2485],3],[[2486,2489],2],[[2490,2491],3],[2492,2],[2493,2],[[2494,2500],2],[[2501,2502],3],[[2503,2504],2],[[2505,2506],3],[[2507,2509],2],[2510,2],[[2511,2518],3],[2519,2],[[2520,2523],3],[2524,1,"ড়"],[2525,1,"ঢ়"],[2526,3],[2527,1,"য়"],[[2528,2531],2],[[2532,2533],3],[[2534,2545],2],[[2546,2554],2],[2555,2],[2556,2],[2557,2],[2558,2],[[2559,2560],3],[2561,2],[2562,2],[2563,2],[2564,3],[[2565,2570],2],[[2571,2574],3],[[2575,2576],2],[[2577,2578],3],[[2579,2600],2],[2601,3],[[2602,2608],2],[2609,3],[2610,2],[2611,1,"ਲ਼"],[2612,3],[2613,2],[2614,1,"ਸ਼"],[2615,3],[[2616,2617],2],[[2618,2619],3],[2620,2],[2621,3],[[2622,2626],2],[[2627,2630],3],[[2631,2632],2],[[2633,2634],3],[[2635,2637],2],[[2638,2640],3],[2641,2],[[2642,2648],3],[2649,1,"ਖ਼"],[2650,1,"ਗ਼"],[2651,1,"ਜ਼"],[2652,2],[2653,3],[2654,1,"ਫ਼"],[[2655,2661],3],[[2662,2676],2],[2677,2],[2678,2],[[2679,2688],3],[[2689,2691],2],[2692,3],[[2693,2699],2],[2700,2],[2701,2],[2702,3],[[2703,2705],2],[2706,3],[[2707,2728],2],[2729,3],[[2730,2736],2],[2737,3],[[2738,2739],2],[2740,3],[[2741,2745],2],[[2746,2747],3],[[2748,2757],2],[2758,3],[[2759,2761],2],[2762,3],[[2763,2765],2],[[2766,2767],3],[2768,2],[[2769,2783],3],[2784,2],[[2785,2787],2],[[2788,2789],3],[[2790,2799],2],[2800,2],[2801,2],[[2802,2808],3],[2809,2],[[2810,2815],2],[2816,3],[[2817,2819],2],[2820,3],[[2821,2828],2],[[2829,2830],3],[[2831,2832],2],[[2833,2834],3],[[2835,2856],2],[2857,3],[[2858,2864],2],[2865,3],[[2866,2867],2],[2868,3],[2869,2],[[2870,2873],2],[[2874,2875],3],[[2876,2883],2],[2884,2],[[2885,2886],3],[[2887,2888],2],[[2889,2890],3],[[2891,2893],2],[[2894,2900],3],[2901,2],[[2902,2903],2],[[2904,2907],3],[2908,1,"ଡ଼"],[2909,1,"ଢ଼"],[2910,3],[[2911,2913],2],[[2914,2915],2],[[2916,2917],3],[[2918,2927],2],[2928,2],[2929,2],[[2930,2935],2],[[2936,2945],3],[[2946,2947],2],[2948,3],[[2949,2954],2],[[2955,2957],3],[[2958,2960],2],[2961,3],[[2962,2965],2],[[2966,2968],3],[[2969,2970],2],[2971,3],[2972,2],[2973,3],[[2974,2975],2],[[2976,2978],3],[[2979,2980],2],[[2981,2983],3],[[2984,2986],2],[[2987,2989],3],[[2990,2997],2],[2998,2],[[2999,3001],2],[[3002,3005],3],[[3006,3010],2],[[3011,3013],3],[[3014,3016],2],[3017,3],[[3018,3021],2],[[3022,3023],3],[3024,2],[[3025,3030],3],[3031,2],[[3032,3045],3],[3046,2],[[3047,3055],2],[[3056,3058],2],[[3059,3066],2],[[3067,3071],3],[3072,2],[[3073,3075],2],[3076,2],[[3077,3084],2],[3085,3],[[3086,3088],2],[3089,3],[[3090,3112],2],[3113,3],[[3114,3123],2],[3124,2],[[3125,3129],2],[[3130,3131],3],[3132,2],[3133,2],[[3134,3140],2],[3141,3],[[3142,3144],2],[3145,3],[[3146,3149],2],[[3150,3156],3],[[3157,3158],2],[3159,3],[[3160,3161],2],[3162,2],[[3163,3164],3],[3165,2],[[3166,3167],3],[[3168,3169],2],[[3170,3171],2],[[3172,3173],3],[[3174,3183],2],[[3184,3190],3],[3191,2],[[3192,3199],2],[3200,2],[3201,2],[[3202,3203],2],[3204,2],[[3205,3212],2],[3213,3],[[3214,3216],2],[3217,3],[[3218,3240],2],[3241,3],[[3242,3251],2],[3252,3],[[3253,3257],2],[[3258,3259],3],[[3260,3261],2],[[3262,3268],2],[3269,3],[[3270,3272],2],[3273,3],[[3274,3277],2],[[3278,3284],3],[[3285,3286],2],[[3287,3292],3],[3293,2],[3294,2],[3295,3],[[3296,3297],2],[[3298,3299],2],[[3300,3301],3],[[3302,3311],2],[3312,3],[[3313,3314],2],[3315,2],[[3316,3327],3],[3328,2],[3329,2],[[3330,3331],2],[3332,2],[[3333,3340],2],[3341,3],[[3342,3344],2],[3345,3],[[3346,3368],2],[3369,2],[[3370,3385],2],[3386,2],[[3387,3388],2],[3389,2],[[3390,3395],2],[3396,2],[3397,3],[[3398,3400],2],[3401,3],[[3402,3405],2],[3406,2],[3407,2],[[3408,3411],3],[[3412,3414],2],[3415,2],[[3416,3422],2],[3423,2],[[3424,3425],2],[[3426,3427],2],[[3428,3429],3],[[3430,3439],2],[[3440,3445],2],[[3446,3448],2],[3449,2],[[3450,3455],2],[3456,3],[3457,2],[[3458,3459],2],[3460,3],[[3461,3478],2],[[3479,3481],3],[[3482,3505],2],[3506,3],[[3507,3515],2],[3516,3],[3517,2],[[3518,3519],3],[[3520,3526],2],[[3527,3529],3],[3530,2],[[3531,3534],3],[[3535,3540],2],[3541,3],[3542,2],[3543,3],[[3544,3551],2],[[3552,3557],3],[[3558,3567],2],[[3568,3569],3],[[3570,3571],2],[3572,2],[[3573,3584],3],[[3585,3634],2],[3635,1,"ํา"],[[3636,3642],2],[[3643,3646],3],[3647,2],[[3648,3662],2],[3663,2],[[3664,3673],2],[[3674,3675],2],[[3676,3712],3],[[3713,3714],2],[3715,3],[3716,2],[3717,3],[3718,2],[[3719,3720],2],[3721,2],[3722,2],[3723,3],[3724,2],[3725,2],[[3726,3731],2],[[3732,3735],2],[3736,2],[[3737,3743],2],[3744,2],[[3745,3747],2],[3748,3],[3749,2],[3750,3],[3751,2],[[3752,3753],2],[[3754,3755],2],[3756,2],[[3757,3762],2],[3763,1,"ໍາ"],[[3764,3769],2],[3770,2],[[3771,3773],2],[[3774,3775],3],[[3776,3780],2],[3781,3],[3782,2],[3783,3],[[3784,3789],2],[3790,2],[3791,3],[[3792,3801],2],[[3802,3803],3],[3804,1,"ຫນ"],[3805,1,"ຫມ"],[[3806,3807],2],[[3808,3839],3],[3840,2],[[3841,3850],2],[3851,2],[3852,1,"་"],[[3853,3863],2],[[3864,3865],2],[[3866,3871],2],[[3872,3881],2],[[3882,3892],2],[3893,2],[3894,2],[3895,2],[3896,2],[3897,2],[[3898,3901],2],[[3902,3906],2],[3907,1,"གྷ"],[[3908,3911],2],[3912,3],[[3913,3916],2],[3917,1,"ཌྷ"],[[3918,3921],2],[3922,1,"དྷ"],[[3923,3926],2],[3927,1,"བྷ"],[[3928,3931],2],[3932,1,"ཛྷ"],[[3933,3944],2],[3945,1,"ཀྵ"],[3946,2],[[3947,3948],2],[[3949,3952],3],[[3953,3954],2],[3955,1,"ཱི"],[3956,2],[3957,1,"ཱུ"],[3958,1,"ྲྀ"],[3959,1,"ྲཱྀ"],[3960,1,"ླྀ"],[3961,1,"ླཱྀ"],[[3962,3968],2],[3969,1,"ཱྀ"],[[3970,3972],2],[3973,2],[[3974,3979],2],[[3980,3983],2],[[3984,3986],2],[3987,1,"ྒྷ"],[[3988,3989],2],[3990,2],[3991,2],[3992,3],[[3993,3996],2],[3997,1,"ྜྷ"],[[3998,4001],2],[4002,1,"ྡྷ"],[[4003,4006],2],[4007,1,"ྦྷ"],[[4008,4011],2],[4012,1,"ྫྷ"],[4013,2],[[4014,4016],2],[[4017,4023],2],[4024,2],[4025,1,"ྐྵ"],[[4026,4028],2],[4029,3],[[4030,4037],2],[4038,2],[[4039,4044],2],[4045,3],[4046,2],[4047,2],[[4048,4049],2],[[4050,4052],2],[[4053,4056],2],[[4057,4058],2],[[4059,4095],3],[[4096,4129],2],[4130,2],[[4131,4135],2],[4136,2],[[4137,4138],2],[4139,2],[[4140,4146],2],[[4147,4149],2],[[4150,4153],2],[[4154,4159],2],[[4160,4169],2],[[4170,4175],2],[[4176,4185],2],[[4186,4249],2],[[4250,4253],2],[[4254,4255],2],[[4256,4293],3],[4294,3],[4295,1,"ⴧ"],[[4296,4300],3],[4301,1,"ⴭ"],[[4302,4303],3],[[4304,4342],2],[[4343,4344],2],[[4345,4346],2],[4347,2],[4348,1,"ნ"],[[4349,4351],2],[[4352,4441],2],[[4442,4446],2],[[4447,4448],3],[[4449,4514],2],[[4515,4519],2],[[4520,4601],2],[[4602,4607],2],[[4608,4614],2],[4615,2],[[4616,4678],2],[4679,2],[4680,2],[4681,3],[[4682,4685],2],[[4686,4687],3],[[4688,4694],2],[4695,3],[4696,2],[4697,3],[[4698,4701],2],[[4702,4703],3],[[4704,4742],2],[4743,2],[4744,2],[4745,3],[[4746,4749],2],[[4750,4751],3],[[4752,4782],2],[4783,2],[4784,2],[4785,3],[[4786,4789],2],[[4790,4791],3],[[4792,4798],2],[4799,3],[4800,2],[4801,3],[[4802,4805],2],[[4806,4807],3],[[4808,4814],2],[4815,2],[[4816,4822],2],[4823,3],[[4824,4846],2],[4847,2],[[4848,4878],2],[4879,2],[4880,2],[4881,3],[[4882,4885],2],[[4886,4887],3],[[4888,4894],2],[4895,2],[[4896,4934],2],[4935,2],[[4936,4954],2],[[4955,4956],3],[[4957,4958],2],[4959,2],[4960,2],[[4961,4988],2],[[4989,4991],3],[[4992,5007],2],[[5008,5017],2],[[5018,5023],3],[[5024,5108],2],[5109,2],[[5110,5111],3],[5112,1,"Ᏸ"],[5113,1,"Ᏹ"],[5114,1,"Ᏺ"],[5115,1,"Ᏻ"],[5116,1,"Ᏼ"],[5117,1,"Ᏽ"],[[5118,5119],3],[5120,2],[[5121,5740],2],[[5741,5742],2],[[5743,5750],2],[[5751,5759],2],[5760,3],[[5761,5786],2],[[5787,5788],2],[[5789,5791],3],[[5792,5866],2],[[5867,5872],2],[[5873,5880],2],[[5881,5887],3],[[5888,5900],2],[5901,2],[[5902,5908],2],[5909,2],[[5910,5918],3],[5919,2],[[5920,5940],2],[[5941,5942],2],[[5943,5951],3],[[5952,5971],2],[[5972,5983],3],[[5984,5996],2],[5997,3],[[5998,6000],2],[6001,3],[[6002,6003],2],[[6004,6015],3],[[6016,6067],2],[[6068,6069],3],[[6070,6099],2],[[6100,6102],2],[6103,2],[[6104,6107],2],[6108,2],[6109,2],[[6110,6111],3],[[6112,6121],2],[[6122,6127],3],[[6128,6137],2],[[6138,6143],3],[[6144,6149],2],[6150,3],[[6151,6154],2],[[6155,6157],7],[6158,3],[6159,7],[[6160,6169],2],[[6170,6175],3],[[6176,6263],2],[6264,2],[[6265,6271],3],[[6272,6313],2],[6314,2],[[6315,6319],3],[[6320,6389],2],[[6390,6399],3],[[6400,6428],2],[[6429,6430],2],[6431,3],[[6432,6443],2],[[6444,6447],3],[[6448,6459],2],[[6460,6463],3],[6464,2],[[6465,6467],3],[[6468,6469],2],[[6470,6509],2],[[6510,6511],3],[[6512,6516],2],[[6517,6527],3],[[6528,6569],2],[[6570,6571],2],[[6572,6575],3],[[6576,6601],2],[[6602,6607],3],[[6608,6617],2],[6618,2],[[6619,6621],3],[[6622,6623],2],[[6624,6655],2],[[6656,6683],2],[[6684,6685],3],[[6686,6687],2],[[6688,6750],2],[6751,3],[[6752,6780],2],[[6781,6782],3],[[6783,6793],2],[[6794,6799],3],[[6800,6809],2],[[6810,6815],3],[[6816,6822],2],[6823,2],[[6824,6829],2],[[6830,6831],3],[[6832,6845],2],[6846,2],[[6847,6848],2],[[6849,6862],2],[[6863,6911],3],[[6912,6987],2],[6988,2],[[6989,6991],3],[[6992,7001],2],[[7002,7018],2],[[7019,7027],2],[[7028,7036],2],[[7037,7038],2],[7039,3],[[7040,7082],2],[[7083,7085],2],[[7086,7097],2],[[7098,7103],2],[[7104,7155],2],[[7156,7163],3],[[7164,7167],2],[[7168,7223],2],[[7224,7226],3],[[7227,7231],2],[[7232,7241],2],[[7242,7244],3],[[7245,7293],2],[[7294,7295],2],[7296,1,"в"],[7297,1,"д"],[7298,1,"о"],[7299,1,"с"],[[7300,7301],1,"т"],[7302,1,"ъ"],[7303,1,"ѣ"],[7304,1,"ꙋ"],[[7305,7311],3],[7312,1,"ა"],[7313,1,"ბ"],[7314,1,"გ"],[7315,1,"დ"],[7316,1,"ე"],[7317,1,"ვ"],[7318,1,"ზ"],[7319,1,"თ"],[7320,1,"ი"],[7321,1,"კ"],[7322,1,"ლ"],[7323,1,"მ"],[7324,1,"ნ"],[7325,1,"ო"],[7326,1,"პ"],[7327,1,"ჟ"],[7328,1,"რ"],[7329,1,"ს"],[7330,1,"ტ"],[7331,1,"უ"],[7332,1,"ფ"],[7333,1,"ქ"],[7334,1,"ღ"],[7335,1,"ყ"],[7336,1,"შ"],[7337,1,"ჩ"],[7338,1,"ც"],[7339,1,"ძ"],[7340,1,"წ"],[7341,1,"ჭ"],[7342,1,"ხ"],[7343,1,"ჯ"],[7344,1,"ჰ"],[7345,1,"ჱ"],[7346,1,"ჲ"],[7347,1,"ჳ"],[7348,1,"ჴ"],[7349,1,"ჵ"],[7350,1,"ჶ"],[7351,1,"ჷ"],[7352,1,"ჸ"],[7353,1,"ჹ"],[7354,1,"ჺ"],[[7355,7356],3],[7357,1,"ჽ"],[7358,1,"ჾ"],[7359,1,"ჿ"],[[7360,7367],2],[[7368,7375],3],[[7376,7378],2],[7379,2],[[7380,7410],2],[[7411,7414],2],[7415,2],[[7416,7417],2],[7418,2],[[7419,7423],3],[[7424,7467],2],[7468,1,"a"],[7469,1,"æ"],[7470,1,"b"],[7471,2],[7472,1,"d"],[7473,1,"e"],[7474,1,"ǝ"],[7475,1,"g"],[7476,1,"h"],[7477,1,"i"],[7478,1,"j"],[7479,1,"k"],[7480,1,"l"],[7481,1,"m"],[7482,1,"n"],[7483,2],[7484,1,"o"],[7485,1,"ȣ"],[7486,1,"p"],[7487,1,"r"],[7488,1,"t"],[7489,1,"u"],[7490,1,"w"],[7491,1,"a"],[7492,1,"ɐ"],[7493,1,"ɑ"],[7494,1,"ᴂ"],[7495,1,"b"],[7496,1,"d"],[7497,1,"e"],[7498,1,"ə"],[7499,1,"ɛ"],[7500,1,"ɜ"],[7501,1,"g"],[7502,2],[7503,1,"k"],[7504,1,"m"],[7505,1,"ŋ"],[7506,1,"o"],[7507,1,"ɔ"],[7508,1,"ᴖ"],[7509,1,"ᴗ"],[7510,1,"p"],[7511,1,"t"],[7512,1,"u"],[7513,1,"ᴝ"],[7514,1,"ɯ"],[7515,1,"v"],[7516,1,"ᴥ"],[7517,1,"β"],[7518,1,"γ"],[7519,1,"δ"],[7520,1,"φ"],[7521,1,"χ"],[7522,1,"i"],[7523,1,"r"],[7524,1,"u"],[7525,1,"v"],[7526,1,"β"],[7527,1,"γ"],[7528,1,"ρ"],[7529,1,"φ"],[7530,1,"χ"],[7531,2],[[7532,7543],2],[7544,1,"н"],[[7545,7578],2],[7579,1,"ɒ"],[7580,1,"c"],[7581,1,"ɕ"],[7582,1,"ð"],[7583,1,"ɜ"],[7584,1,"f"],[7585,1,"ɟ"],[7586,1,"ɡ"],[7587,1,"ɥ"],[7588,1,"ɨ"],[7589,1,"ɩ"],[7590,1,"ɪ"],[7591,1,"ᵻ"],[7592,1,"ʝ"],[7593,1,"ɭ"],[7594,1,"ᶅ"],[7595,1,"ʟ"],[7596,1,"ɱ"],[7597,1,"ɰ"],[7598,1,"ɲ"],[7599,1,"ɳ"],[7600,1,"ɴ"],[7601,1,"ɵ"],[7602,1,"ɸ"],[7603,1,"ʂ"],[7604,1,"ʃ"],[7605,1,"ƫ"],[7606,1,"ʉ"],[7607,1,"ʊ"],[7608,1,"ᴜ"],[7609,1,"ʋ"],[7610,1,"ʌ"],[7611,1,"z"],[7612,1,"ʐ"],[7613,1,"ʑ"],[7614,1,"ʒ"],[7615,1,"θ"],[[7616,7619],2],[[7620,7626],2],[[7627,7654],2],[[7655,7669],2],[[7670,7673],2],[7674,2],[7675,2],[7676,2],[7677,2],[[7678,7679],2],[7680,1,"ḁ"],[7681,2],[7682,1,"ḃ"],[7683,2],[7684,1,"ḅ"],[7685,2],[7686,1,"ḇ"],[7687,2],[7688,1,"ḉ"],[7689,2],[7690,1,"ḋ"],[7691,2],[7692,1,"ḍ"],[7693,2],[7694,1,"ḏ"],[7695,2],[7696,1,"ḑ"],[7697,2],[7698,1,"ḓ"],[7699,2],[7700,1,"ḕ"],[7701,2],[7702,1,"ḗ"],[7703,2],[7704,1,"ḙ"],[7705,2],[7706,1,"ḛ"],[7707,2],[7708,1,"ḝ"],[7709,2],[7710,1,"ḟ"],[7711,2],[7712,1,"ḡ"],[7713,2],[7714,1,"ḣ"],[7715,2],[7716,1,"ḥ"],[7717,2],[7718,1,"ḧ"],[7719,2],[7720,1,"ḩ"],[7721,2],[7722,1,"ḫ"],[7723,2],[7724,1,"ḭ"],[7725,2],[7726,1,"ḯ"],[7727,2],[7728,1,"ḱ"],[7729,2],[7730,1,"ḳ"],[7731,2],[7732,1,"ḵ"],[7733,2],[7734,1,"ḷ"],[7735,2],[7736,1,"ḹ"],[7737,2],[7738,1,"ḻ"],[7739,2],[7740,1,"ḽ"],[7741,2],[7742,1,"ḿ"],[7743,2],[7744,1,"ṁ"],[7745,2],[7746,1,"ṃ"],[7747,2],[7748,1,"ṅ"],[7749,2],[7750,1,"ṇ"],[7751,2],[7752,1,"ṉ"],[7753,2],[7754,1,"ṋ"],[7755,2],[7756,1,"ṍ"],[7757,2],[7758,1,"ṏ"],[7759,2],[7760,1,"ṑ"],[7761,2],[7762,1,"ṓ"],[7763,2],[7764,1,"ṕ"],[7765,2],[7766,1,"ṗ"],[7767,2],[7768,1,"ṙ"],[7769,2],[7770,1,"ṛ"],[7771,2],[7772,1,"ṝ"],[7773,2],[7774,1,"ṟ"],[7775,2],[7776,1,"ṡ"],[7777,2],[7778,1,"ṣ"],[7779,2],[7780,1,"ṥ"],[7781,2],[7782,1,"ṧ"],[7783,2],[7784,1,"ṩ"],[7785,2],[7786,1,"ṫ"],[7787,2],[7788,1,"ṭ"],[7789,2],[7790,1,"ṯ"],[7791,2],[7792,1,"ṱ"],[7793,2],[7794,1,"ṳ"],[7795,2],[7796,1,"ṵ"],[7797,2],[7798,1,"ṷ"],[7799,2],[7800,1,"ṹ"],[7801,2],[7802,1,"ṻ"],[7803,2],[7804,1,"ṽ"],[7805,2],[7806,1,"ṿ"],[7807,2],[7808,1,"ẁ"],[7809,2],[7810,1,"ẃ"],[7811,2],[7812,1,"ẅ"],[7813,2],[7814,1,"ẇ"],[7815,2],[7816,1,"ẉ"],[7817,2],[7818,1,"ẋ"],[7819,2],[7820,1,"ẍ"],[7821,2],[7822,1,"ẏ"],[7823,2],[7824,1,"ẑ"],[7825,2],[7826,1,"ẓ"],[7827,2],[7828,1,"ẕ"],[[7829,7833],2],[7834,1,"aʾ"],[7835,1,"ṡ"],[[7836,7837],2],[7838,1,"ss"],[7839,2],[7840,1,"ạ"],[7841,2],[7842,1,"ả"],[7843,2],[7844,1,"ấ"],[7845,2],[7846,1,"ầ"],[7847,2],[7848,1,"ẩ"],[7849,2],[7850,1,"ẫ"],[7851,2],[7852,1,"ậ"],[7853,2],[7854,1,"ắ"],[7855,2],[7856,1,"ằ"],[7857,2],[7858,1,"ẳ"],[7859,2],[7860,1,"ẵ"],[7861,2],[7862,1,"ặ"],[7863,2],[7864,1,"ẹ"],[7865,2],[7866,1,"ẻ"],[7867,2],[7868,1,"ẽ"],[7869,2],[7870,1,"ế"],[7871,2],[7872,1,"ề"],[7873,2],[7874,1,"ể"],[7875,2],[7876,1,"ễ"],[7877,2],[7878,1,"ệ"],[7879,2],[7880,1,"ỉ"],[7881,2],[7882,1,"ị"],[7883,2],[7884,1,"ọ"],[7885,2],[7886,1,"ỏ"],[7887,2],[7888,1,"ố"],[7889,2],[7890,1,"ồ"],[7891,2],[7892,1,"ổ"],[7893,2],[7894,1,"ỗ"],[7895,2],[7896,1,"ộ"],[7897,2],[7898,1,"ớ"],[7899,2],[7900,1,"ờ"],[7901,2],[7902,1,"ở"],[7903,2],[7904,1,"ỡ"],[7905,2],[7906,1,"ợ"],[7907,2],[7908,1,"ụ"],[7909,2],[7910,1,"ủ"],[7911,2],[7912,1,"ứ"],[7913,2],[7914,1,"ừ"],[7915,2],[7916,1,"ử"],[7917,2],[7918,1,"ữ"],[7919,2],[7920,1,"ự"],[7921,2],[7922,1,"ỳ"],[7923,2],[7924,1,"ỵ"],[7925,2],[7926,1,"ỷ"],[7927,2],[7928,1,"ỹ"],[7929,2],[7930,1,"ỻ"],[7931,2],[7932,1,"ỽ"],[7933,2],[7934,1,"ỿ"],[7935,2],[[7936,7943],2],[7944,1,"ἀ"],[7945,1,"ἁ"],[7946,1,"ἂ"],[7947,1,"ἃ"],[7948,1,"ἄ"],[7949,1,"ἅ"],[7950,1,"ἆ"],[7951,1,"ἇ"],[[7952,7957],2],[[7958,7959],3],[7960,1,"ἐ"],[7961,1,"ἑ"],[7962,1,"ἒ"],[7963,1,"ἓ"],[7964,1,"ἔ"],[7965,1,"ἕ"],[[7966,7967],3],[[7968,7975],2],[7976,1,"ἠ"],[7977,1,"ἡ"],[7978,1,"ἢ"],[7979,1,"ἣ"],[7980,1,"ἤ"],[7981,1,"ἥ"],[7982,1,"ἦ"],[7983,1,"ἧ"],[[7984,7991],2],[7992,1,"ἰ"],[7993,1,"ἱ"],[7994,1,"ἲ"],[7995,1,"ἳ"],[7996,1,"ἴ"],[7997,1,"ἵ"],[7998,1,"ἶ"],[7999,1,"ἷ"],[[8000,8005],2],[[8006,8007],3],[8008,1,"ὀ"],[8009,1,"ὁ"],[8010,1,"ὂ"],[8011,1,"ὃ"],[8012,1,"ὄ"],[8013,1,"ὅ"],[[8014,8015],3],[[8016,8023],2],[8024,3],[8025,1,"ὑ"],[8026,3],[8027,1,"ὓ"],[8028,3],[8029,1,"ὕ"],[8030,3],[8031,1,"ὗ"],[[8032,8039],2],[8040,1,"ὠ"],[8041,1,"ὡ"],[8042,1,"ὢ"],[8043,1,"ὣ"],[8044,1,"ὤ"],[8045,1,"ὥ"],[8046,1,"ὦ"],[8047,1,"ὧ"],[8048,2],[8049,1,"ά"],[8050,2],[8051,1,"έ"],[8052,2],[8053,1,"ή"],[8054,2],[8055,1,"ί"],[8056,2],[8057,1,"ό"],[8058,2],[8059,1,"ύ"],[8060,2],[8061,1,"ώ"],[[8062,8063],3],[8064,1,"ἀι"],[8065,1,"ἁι"],[8066,1,"ἂι"],[8067,1,"ἃι"],[8068,1,"ἄι"],[8069,1,"ἅι"],[8070,1,"ἆι"],[8071,1,"ἇι"],[8072,1,"ἀι"],[8073,1,"ἁι"],[8074,1,"ἂι"],[8075,1,"ἃι"],[8076,1,"ἄι"],[8077,1,"ἅι"],[8078,1,"ἆι"],[8079,1,"ἇι"],[8080,1,"ἠι"],[8081,1,"ἡι"],[8082,1,"ἢι"],[8083,1,"ἣι"],[8084,1,"ἤι"],[8085,1,"ἥι"],[8086,1,"ἦι"],[8087,1,"ἧι"],[8088,1,"ἠι"],[8089,1,"ἡι"],[8090,1,"ἢι"],[8091,1,"ἣι"],[8092,1,"ἤι"],[8093,1,"ἥι"],[8094,1,"ἦι"],[8095,1,"ἧι"],[8096,1,"ὠι"],[8097,1,"ὡι"],[8098,1,"ὢι"],[8099,1,"ὣι"],[8100,1,"ὤι"],[8101,1,"ὥι"],[8102,1,"ὦι"],[8103,1,"ὧι"],[8104,1,"ὠι"],[8105,1,"ὡι"],[8106,1,"ὢι"],[8107,1,"ὣι"],[8108,1,"ὤι"],[8109,1,"ὥι"],[8110,1,"ὦι"],[8111,1,"ὧι"],[[8112,8113],2],[8114,1,"ὰι"],[8115,1,"αι"],[8116,1,"άι"],[8117,3],[8118,2],[8119,1,"ᾶι"],[8120,1,"ᾰ"],[8121,1,"ᾱ"],[8122,1,"ὰ"],[8123,1,"ά"],[8124,1,"αι"],[8125,5," ̓"],[8126,1,"ι"],[8127,5," ̓"],[8128,5," ͂"],[8129,5," ̈͂"],[8130,1,"ὴι"],[8131,1,"ηι"],[8132,1,"ήι"],[8133,3],[8134,2],[8135,1,"ῆι"],[8136,1,"ὲ"],[8137,1,"έ"],[8138,1,"ὴ"],[8139,1,"ή"],[8140,1,"ηι"],[8141,5," ̓̀"],[8142,5," ̓́"],[8143,5," ̓͂"],[[8144,8146],2],[8147,1,"ΐ"],[[8148,8149],3],[[8150,8151],2],[8152,1,"ῐ"],[8153,1,"ῑ"],[8154,1,"ὶ"],[8155,1,"ί"],[8156,3],[8157,5," ̔̀"],[8158,5," ̔́"],[8159,5," ̔͂"],[[8160,8162],2],[8163,1,"ΰ"],[[8164,8167],2],[8168,1,"ῠ"],[8169,1,"ῡ"],[8170,1,"ὺ"],[8171,1,"ύ"],[8172,1,"ῥ"],[8173,5," ̈̀"],[8174,5," ̈́"],[8175,5,"`"],[[8176,8177],3],[8178,1,"ὼι"],[8179,1,"ωι"],[8180,1,"ώι"],[8181,3],[8182,2],[8183,1,"ῶι"],[8184,1,"ὸ"],[8185,1,"ό"],[8186,1,"ὼ"],[8187,1,"ώ"],[8188,1,"ωι"],[8189,5," ́"],[8190,5," ̔"],[8191,3],[[8192,8202],5," "],[8203,7],[[8204,8205],6,""],[[8206,8207],3],[8208,2],[8209,1,"‐"],[[8210,8214],2],[8215,5," ̳"],[[8216,8227],2],[[8228,8230],3],[8231,2],[[8232,8238],3],[8239,5," "],[[8240,8242],2],[8243,1,"′′"],[8244,1,"′′′"],[8245,2],[8246,1,"‵‵"],[8247,1,"‵‵‵"],[[8248,8251],2],[8252,5,"!!"],[8253,2],[8254,5," ̅"],[[8255,8262],2],[8263,5,"??"],[8264,5,"?!"],[8265,5,"!?"],[[8266,8269],2],[[8270,8274],2],[[8275,8276],2],[[8277,8278],2],[8279,1,"′′′′"],[[8280,8286],2],[8287,5," "],[8288,7],[[8289,8291],3],[8292,7],[8293,3],[[8294,8297],3],[[8298,8303],3],[8304,1,"0"],[8305,1,"i"],[[8306,8307],3],[8308,1,"4"],[8309,1,"5"],[8310,1,"6"],[8311,1,"7"],[8312,1,"8"],[8313,1,"9"],[8314,5,"+"],[8315,1,"−"],[8316,5,"="],[8317,5,"("],[8318,5,")"],[8319,1,"n"],[8320,1,"0"],[8321,1,"1"],[8322,1,"2"],[8323,1,"3"],[8324,1,"4"],[8325,1,"5"],[8326,1,"6"],[8327,1,"7"],[8328,1,"8"],[8329,1,"9"],[8330,5,"+"],[8331,1,"−"],[8332,5,"="],[8333,5,"("],[8334,5,")"],[8335,3],[8336,1,"a"],[8337,1,"e"],[8338,1,"o"],[8339,1,"x"],[8340,1,"ə"],[8341,1,"h"],[8342,1,"k"],[8343,1,"l"],[8344,1,"m"],[8345,1,"n"],[8346,1,"p"],[8347,1,"s"],[8348,1,"t"],[[8349,8351],3],[[8352,8359],2],[8360,1,"rs"],[[8361,8362],2],[8363,2],[8364,2],[[8365,8367],2],[[8368,8369],2],[[8370,8373],2],[[8374,8376],2],[8377,2],[8378,2],[[8379,8381],2],[8382,2],[8383,2],[8384,2],[[8385,8399],3],[[8400,8417],2],[[8418,8419],2],[[8420,8426],2],[8427,2],[[8428,8431],2],[8432,2],[[8433,8447],3],[8448,5,"a/c"],[8449,5,"a/s"],[8450,1,"c"],[8451,1,"°c"],[8452,2],[8453,5,"c/o"],[8454,5,"c/u"],[8455,1,"ɛ"],[8456,2],[8457,1,"°f"],[8458,1,"g"],[[8459,8462],1,"h"],[8463,1,"ħ"],[[8464,8465],1,"i"],[[8466,8467],1,"l"],[8468,2],[8469,1,"n"],[8470,1,"no"],[[8471,8472],2],[8473,1,"p"],[8474,1,"q"],[[8475,8477],1,"r"],[[8478,8479],2],[8480,1,"sm"],[8481,1,"tel"],[8482,1,"tm"],[8483,2],[8484,1,"z"],[8485,2],[8486,1,"ω"],[8487,2],[8488,1,"z"],[8489,2],[8490,1,"k"],[8491,1,"å"],[8492,1,"b"],[8493,1,"c"],[8494,2],[[8495,8496],1,"e"],[8497,1,"f"],[8498,3],[8499,1,"m"],[8500,1,"o"],[8501,1,"א"],[8502,1,"ב"],[8503,1,"ג"],[8504,1,"ד"],[8505,1,"i"],[8506,2],[8507,1,"fax"],[8508,1,"π"],[[8509,8510],1,"γ"],[8511,1,"π"],[8512,1,"∑"],[[8513,8516],2],[[8517,8518],1,"d"],[8519,1,"e"],[8520,1,"i"],[8521,1,"j"],[[8522,8523],2],[8524,2],[8525,2],[8526,2],[8527,2],[8528,1,"1⁄7"],[8529,1,"1⁄9"],[8530,1,"1⁄10"],[8531,1,"1⁄3"],[8532,1,"2⁄3"],[8533,1,"1⁄5"],[8534,1,"2⁄5"],[8535,1,"3⁄5"],[8536,1,"4⁄5"],[8537,1,"1⁄6"],[8538,1,"5⁄6"],[8539,1,"1⁄8"],[8540,1,"3⁄8"],[8541,1,"5⁄8"],[8542,1,"7⁄8"],[8543,1,"1⁄"],[8544,1,"i"],[8545,1,"ii"],[8546,1,"iii"],[8547,1,"iv"],[8548,1,"v"],[8549,1,"vi"],[8550,1,"vii"],[8551,1,"viii"],[8552,1,"ix"],[8553,1,"x"],[8554,1,"xi"],[8555,1,"xii"],[8556,1,"l"],[8557,1,"c"],[8558,1,"d"],[8559,1,"m"],[8560,1,"i"],[8561,1,"ii"],[8562,1,"iii"],[8563,1,"iv"],[8564,1,"v"],[8565,1,"vi"],[8566,1,"vii"],[8567,1,"viii"],[8568,1,"ix"],[8569,1,"x"],[8570,1,"xi"],[8571,1,"xii"],[8572,1,"l"],[8573,1,"c"],[8574,1,"d"],[8575,1,"m"],[[8576,8578],2],[8579,3],[8580,2],[[8581,8584],2],[8585,1,"0⁄3"],[[8586,8587],2],[[8588,8591],3],[[8592,8682],2],[[8683,8691],2],[[8692,8703],2],[[8704,8747],2],[8748,1,"∫∫"],[8749,1,"∫∫∫"],[8750,2],[8751,1,"∮∮"],[8752,1,"∮∮∮"],[[8753,8799],2],[8800,4],[[8801,8813],2],[[8814,8815],4],[[8816,8945],2],[[8946,8959],2],[8960,2],[8961,2],[[8962,9000],2],[9001,1,"〈"],[9002,1,"〉"],[[9003,9082],2],[9083,2],[9084,2],[[9085,9114],2],[[9115,9166],2],[[9167,9168],2],[[9169,9179],2],[[9180,9191],2],[9192,2],[[9193,9203],2],[[9204,9210],2],[[9211,9214],2],[9215,2],[[9216,9252],2],[[9253,9254],2],[[9255,9279],3],[[9280,9290],2],[[9291,9311],3],[9312,1,"1"],[9313,1,"2"],[9314,1,"3"],[9315,1,"4"],[9316,1,"5"],[9317,1,"6"],[9318,1,"7"],[9319,1,"8"],[9320,1,"9"],[9321,1,"10"],[9322,1,"11"],[9323,1,"12"],[9324,1,"13"],[9325,1,"14"],[9326,1,"15"],[9327,1,"16"],[9328,1,"17"],[9329,1,"18"],[9330,1,"19"],[9331,1,"20"],[9332,5,"(1)"],[9333,5,"(2)"],[9334,5,"(3)"],[9335,5,"(4)"],[9336,5,"(5)"],[9337,5,"(6)"],[9338,5,"(7)"],[9339,5,"(8)"],[9340,5,"(9)"],[9341,5,"(10)"],[9342,5,"(11)"],[9343,5,"(12)"],[9344,5,"(13)"],[9345,5,"(14)"],[9346,5,"(15)"],[9347,5,"(16)"],[9348,5,"(17)"],[9349,5,"(18)"],[9350,5,"(19)"],[9351,5,"(20)"],[[9352,9371],3],[9372,5,"(a)"],[9373,5,"(b)"],[9374,5,"(c)"],[9375,5,"(d)"],[9376,5,"(e)"],[9377,5,"(f)"],[9378,5,"(g)"],[9379,5,"(h)"],[9380,5,"(i)"],[9381,5,"(j)"],[9382,5,"(k)"],[9383,5,"(l)"],[9384,5,"(m)"],[9385,5,"(n)"],[9386,5,"(o)"],[9387,5,"(p)"],[9388,5,"(q)"],[9389,5,"(r)"],[9390,5,"(s)"],[9391,5,"(t)"],[9392,5,"(u)"],[9393,5,"(v)"],[9394,5,"(w)"],[9395,5,"(x)"],[9396,5,"(y)"],[9397,5,"(z)"],[9398,1,"a"],[9399,1,"b"],[9400,1,"c"],[9401,1,"d"],[9402,1,"e"],[9403,1,"f"],[9404,1,"g"],[9405,1,"h"],[9406,1,"i"],[9407,1,"j"],[9408,1,"k"],[9409,1,"l"],[9410,1,"m"],[9411,1,"n"],[9412,1,"o"],[9413,1,"p"],[9414,1,"q"],[9415,1,"r"],[9416,1,"s"],[9417,1,"t"],[9418,1,"u"],[9419,1,"v"],[9420,1,"w"],[9421,1,"x"],[9422,1,"y"],[9423,1,"z"],[9424,1,"a"],[9425,1,"b"],[9426,1,"c"],[9427,1,"d"],[9428,1,"e"],[9429,1,"f"],[9430,1,"g"],[9431,1,"h"],[9432,1,"i"],[9433,1,"j"],[9434,1,"k"],[9435,1,"l"],[9436,1,"m"],[9437,1,"n"],[9438,1,"o"],[9439,1,"p"],[9440,1,"q"],[9441,1,"r"],[9442,1,"s"],[9443,1,"t"],[9444,1,"u"],[9445,1,"v"],[9446,1,"w"],[9447,1,"x"],[9448,1,"y"],[9449,1,"z"],[9450,1,"0"],[[9451,9470],2],[9471,2],[[9472,9621],2],[[9622,9631],2],[[9632,9711],2],[[9712,9719],2],[[9720,9727],2],[[9728,9747],2],[[9748,9749],2],[[9750,9751],2],[9752,2],[9753,2],[[9754,9839],2],[[9840,9841],2],[[9842,9853],2],[[9854,9855],2],[[9856,9865],2],[[9866,9873],2],[[9874,9884],2],[9885,2],[[9886,9887],2],[[9888,9889],2],[[9890,9905],2],[9906,2],[[9907,9916],2],[[9917,9919],2],[[9920,9923],2],[[9924,9933],2],[9934,2],[[9935,9953],2],[9954,2],[9955,2],[[9956,9959],2],[[9960,9983],2],[9984,2],[[9985,9988],2],[9989,2],[[9990,9993],2],[[9994,9995],2],[[9996,10023],2],[10024,2],[[10025,10059],2],[10060,2],[10061,2],[10062,2],[[10063,10066],2],[[10067,10069],2],[10070,2],[10071,2],[[10072,10078],2],[[10079,10080],2],[[10081,10087],2],[[10088,10101],2],[[10102,10132],2],[[10133,10135],2],[[10136,10159],2],[10160,2],[[10161,10174],2],[10175,2],[[10176,10182],2],[[10183,10186],2],[10187,2],[10188,2],[10189,2],[[10190,10191],2],[[10192,10219],2],[[10220,10223],2],[[10224,10239],2],[[10240,10495],2],[[10496,10763],2],[10764,1,"∫∫∫∫"],[[10765,10867],2],[10868,5,"::="],[10869,5,"=="],[10870,5,"==="],[[10871,10971],2],[10972,1,"⫝̸"],[[10973,11007],2],[[11008,11021],2],[[11022,11027],2],[[11028,11034],2],[[11035,11039],2],[[11040,11043],2],[[11044,11084],2],[[11085,11087],2],[[11088,11092],2],[[11093,11097],2],[[11098,11123],2],[[11124,11125],3],[[11126,11157],2],[11158,3],[11159,2],[[11160,11193],2],[[11194,11196],2],[[11197,11208],2],[11209,2],[[11210,11217],2],[11218,2],[[11219,11243],2],[[11244,11247],2],[[11248,11262],2],[11263,2],[11264,1,"ⰰ"],[11265,1,"ⰱ"],[11266,1,"ⰲ"],[11267,1,"ⰳ"],[11268,1,"ⰴ"],[11269,1,"ⰵ"],[11270,1,"ⰶ"],[11271,1,"ⰷ"],[11272,1,"ⰸ"],[11273,1,"ⰹ"],[11274,1,"ⰺ"],[11275,1,"ⰻ"],[11276,1,"ⰼ"],[11277,1,"ⰽ"],[11278,1,"ⰾ"],[11279,1,"ⰿ"],[11280,1,"ⱀ"],[11281,1,"ⱁ"],[11282,1,"ⱂ"],[11283,1,"ⱃ"],[11284,1,"ⱄ"],[11285,1,"ⱅ"],[11286,1,"ⱆ"],[11287,1,"ⱇ"],[11288,1,"ⱈ"],[11289,1,"ⱉ"],[11290,1,"ⱊ"],[11291,1,"ⱋ"],[11292,1,"ⱌ"],[11293,1,"ⱍ"],[11294,1,"ⱎ"],[11295,1,"ⱏ"],[11296,1,"ⱐ"],[11297,1,"ⱑ"],[11298,1,"ⱒ"],[11299,1,"ⱓ"],[11300,1,"ⱔ"],[11301,1,"ⱕ"],[11302,1,"ⱖ"],[11303,1,"ⱗ"],[11304,1,"ⱘ"],[11305,1,"ⱙ"],[11306,1,"ⱚ"],[11307,1,"ⱛ"],[11308,1,"ⱜ"],[11309,1,"ⱝ"],[11310,1,"ⱞ"],[11311,1,"ⱟ"],[[11312,11358],2],[11359,2],[11360,1,"ⱡ"],[11361,2],[11362,1,"ɫ"],[11363,1,"ᵽ"],[11364,1,"ɽ"],[[11365,11366],2],[11367,1,"ⱨ"],[11368,2],[11369,1,"ⱪ"],[11370,2],[11371,1,"ⱬ"],[11372,2],[11373,1,"ɑ"],[11374,1,"ɱ"],[11375,1,"ɐ"],[11376,1,"ɒ"],[11377,2],[11378,1,"ⱳ"],[11379,2],[11380,2],[11381,1,"ⱶ"],[[11382,11383],2],[[11384,11387],2],[11388,1,"j"],[11389,1,"v"],[11390,1,"ȿ"],[11391,1,"ɀ"],[11392,1,"ⲁ"],[11393,2],[11394,1,"ⲃ"],[11395,2],[11396,1,"ⲅ"],[11397,2],[11398,1,"ⲇ"],[11399,2],[11400,1,"ⲉ"],[11401,2],[11402,1,"ⲋ"],[11403,2],[11404,1,"ⲍ"],[11405,2],[11406,1,"ⲏ"],[11407,2],[11408,1,"ⲑ"],[11409,2],[11410,1,"ⲓ"],[11411,2],[11412,1,"ⲕ"],[11413,2],[11414,1,"ⲗ"],[11415,2],[11416,1,"ⲙ"],[11417,2],[11418,1,"ⲛ"],[11419,2],[11420,1,"ⲝ"],[11421,2],[11422,1,"ⲟ"],[11423,2],[11424,1,"ⲡ"],[11425,2],[11426,1,"ⲣ"],[11427,2],[11428,1,"ⲥ"],[11429,2],[11430,1,"ⲧ"],[11431,2],[11432,1,"ⲩ"],[11433,2],[11434,1,"ⲫ"],[11435,2],[11436,1,"ⲭ"],[11437,2],[11438,1,"ⲯ"],[11439,2],[11440,1,"ⲱ"],[11441,2],[11442,1,"ⲳ"],[11443,2],[11444,1,"ⲵ"],[11445,2],[11446,1,"ⲷ"],[11447,2],[11448,1,"ⲹ"],[11449,2],[11450,1,"ⲻ"],[11451,2],[11452,1,"ⲽ"],[11453,2],[11454,1,"ⲿ"],[11455,2],[11456,1,"ⳁ"],[11457,2],[11458,1,"ⳃ"],[11459,2],[11460,1,"ⳅ"],[11461,2],[11462,1,"ⳇ"],[11463,2],[11464,1,"ⳉ"],[11465,2],[11466,1,"ⳋ"],[11467,2],[11468,1,"ⳍ"],[11469,2],[11470,1,"ⳏ"],[11471,2],[11472,1,"ⳑ"],[11473,2],[11474,1,"ⳓ"],[11475,2],[11476,1,"ⳕ"],[11477,2],[11478,1,"ⳗ"],[11479,2],[11480,1,"ⳙ"],[11481,2],[11482,1,"ⳛ"],[11483,2],[11484,1,"ⳝ"],[11485,2],[11486,1,"ⳟ"],[11487,2],[11488,1,"ⳡ"],[11489,2],[11490,1,"ⳣ"],[[11491,11492],2],[[11493,11498],2],[11499,1,"ⳬ"],[11500,2],[11501,1,"ⳮ"],[[11502,11505],2],[11506,1,"ⳳ"],[11507,2],[[11508,11512],3],[[11513,11519],2],[[11520,11557],2],[11558,3],[11559,2],[[11560,11564],3],[11565,2],[[11566,11567],3],[[11568,11621],2],[[11622,11623],2],[[11624,11630],3],[11631,1,"ⵡ"],[11632,2],[[11633,11646],3],[11647,2],[[11648,11670],2],[[11671,11679],3],[[11680,11686],2],[11687,3],[[11688,11694],2],[11695,3],[[11696,11702],2],[11703,3],[[11704,11710],2],[11711,3],[[11712,11718],2],[11719,3],[[11720,11726],2],[11727,3],[[11728,11734],2],[11735,3],[[11736,11742],2],[11743,3],[[11744,11775],2],[[11776,11799],2],[[11800,11803],2],[[11804,11805],2],[[11806,11822],2],[11823,2],[11824,2],[11825,2],[[11826,11835],2],[[11836,11842],2],[[11843,11844],2],[[11845,11849],2],[[11850,11854],2],[11855,2],[[11856,11858],2],[[11859,11869],2],[[11870,11903],3],[[11904,11929],2],[11930,3],[[11931,11934],2],[11935,1,"母"],[[11936,12018],2],[12019,1,"龟"],[[12020,12031],3],[12032,1,"一"],[12033,1,"丨"],[12034,1,"丶"],[12035,1,"丿"],[12036,1,"乙"],[12037,1,"亅"],[12038,1,"二"],[12039,1,"亠"],[12040,1,"人"],[12041,1,"儿"],[12042,1,"入"],[12043,1,"八"],[12044,1,"冂"],[12045,1,"冖"],[12046,1,"冫"],[12047,1,"几"],[12048,1,"凵"],[12049,1,"刀"],[12050,1,"力"],[12051,1,"勹"],[12052,1,"匕"],[12053,1,"匚"],[12054,1,"匸"],[12055,1,"十"],[12056,1,"卜"],[12057,1,"卩"],[12058,1,"厂"],[12059,1,"厶"],[12060,1,"又"],[12061,1,"口"],[12062,1,"囗"],[12063,1,"土"],[12064,1,"士"],[12065,1,"夂"],[12066,1,"夊"],[12067,1,"夕"],[12068,1,"大"],[12069,1,"女"],[12070,1,"子"],[12071,1,"宀"],[12072,1,"寸"],[12073,1,"小"],[12074,1,"尢"],[12075,1,"尸"],[12076,1,"屮"],[12077,1,"山"],[12078,1,"巛"],[12079,1,"工"],[12080,1,"己"],[12081,1,"巾"],[12082,1,"干"],[12083,1,"幺"],[12084,1,"广"],[12085,1,"廴"],[12086,1,"廾"],[12087,1,"弋"],[12088,1,"弓"],[12089,1,"彐"],[12090,1,"彡"],[12091,1,"彳"],[12092,1,"心"],[12093,1,"戈"],[12094,1,"戶"],[12095,1,"手"],[12096,1,"支"],[12097,1,"攴"],[12098,1,"文"],[12099,1,"斗"],[12100,1,"斤"],[12101,1,"方"],[12102,1,"无"],[12103,1,"日"],[12104,1,"曰"],[12105,1,"月"],[12106,1,"木"],[12107,1,"欠"],[12108,1,"止"],[12109,1,"歹"],[12110,1,"殳"],[12111,1,"毋"],[12112,1,"比"],[12113,1,"毛"],[12114,1,"氏"],[12115,1,"气"],[12116,1,"水"],[12117,1,"火"],[12118,1,"爪"],[12119,1,"父"],[12120,1,"爻"],[12121,1,"爿"],[12122,1,"片"],[12123,1,"牙"],[12124,1,"牛"],[12125,1,"犬"],[12126,1,"玄"],[12127,1,"玉"],[12128,1,"瓜"],[12129,1,"瓦"],[12130,1,"甘"],[12131,1,"生"],[12132,1,"用"],[12133,1,"田"],[12134,1,"疋"],[12135,1,"疒"],[12136,1,"癶"],[12137,1,"白"],[12138,1,"皮"],[12139,1,"皿"],[12140,1,"目"],[12141,1,"矛"],[12142,1,"矢"],[12143,1,"石"],[12144,1,"示"],[12145,1,"禸"],[12146,1,"禾"],[12147,1,"穴"],[12148,1,"立"],[12149,1,"竹"],[12150,1,"米"],[12151,1,"糸"],[12152,1,"缶"],[12153,1,"网"],[12154,1,"羊"],[12155,1,"羽"],[12156,1,"老"],[12157,1,"而"],[12158,1,"耒"],[12159,1,"耳"],[12160,1,"聿"],[12161,1,"肉"],[12162,1,"臣"],[12163,1,"自"],[12164,1,"至"],[12165,1,"臼"],[12166,1,"舌"],[12167,1,"舛"],[12168,1,"舟"],[12169,1,"艮"],[12170,1,"色"],[12171,1,"艸"],[12172,1,"虍"],[12173,1,"虫"],[12174,1,"血"],[12175,1,"行"],[12176,1,"衣"],[12177,1,"襾"],[12178,1,"見"],[12179,1,"角"],[12180,1,"言"],[12181,1,"谷"],[12182,1,"豆"],[12183,1,"豕"],[12184,1,"豸"],[12185,1,"貝"],[12186,1,"赤"],[12187,1,"走"],[12188,1,"足"],[12189,1,"身"],[12190,1,"車"],[12191,1,"辛"],[12192,1,"辰"],[12193,1,"辵"],[12194,1,"邑"],[12195,1,"酉"],[12196,1,"釆"],[12197,1,"里"],[12198,1,"金"],[12199,1,"長"],[12200,1,"門"],[12201,1,"阜"],[12202,1,"隶"],[12203,1,"隹"],[12204,1,"雨"],[12205,1,"靑"],[12206,1,"非"],[12207,1,"面"],[12208,1,"革"],[12209,1,"韋"],[12210,1,"韭"],[12211,1,"音"],[12212,1,"頁"],[12213,1,"風"],[12214,1,"飛"],[12215,1,"食"],[12216,1,"首"],[12217,1,"香"],[12218,1,"馬"],[12219,1,"骨"],[12220,1,"高"],[12221,1,"髟"],[12222,1,"鬥"],[12223,1,"鬯"],[12224,1,"鬲"],[12225,1,"鬼"],[12226,1,"魚"],[12227,1,"鳥"],[12228,1,"鹵"],[12229,1,"鹿"],[12230,1,"麥"],[12231,1,"麻"],[12232,1,"黃"],[12233,1,"黍"],[12234,1,"黑"],[12235,1,"黹"],[12236,1,"黽"],[12237,1,"鼎"],[12238,1,"鼓"],[12239,1,"鼠"],[12240,1,"鼻"],[12241,1,"齊"],[12242,1,"齒"],[12243,1,"龍"],[12244,1,"龜"],[12245,1,"龠"],[[12246,12271],3],[[12272,12283],3],[[12284,12287],3],[12288,5," "],[12289,2],[12290,1,"."],[[12291,12292],2],[[12293,12295],2],[[12296,12329],2],[[12330,12333],2],[[12334,12341],2],[12342,1,"〒"],[12343,2],[12344,1,"十"],[12345,1,"卄"],[12346,1,"卅"],[12347,2],[12348,2],[12349,2],[12350,2],[12351,2],[12352,3],[[12353,12436],2],[[12437,12438],2],[[12439,12440],3],[[12441,12442],2],[12443,5," ゙"],[12444,5," ゚"],[[12445,12446],2],[12447,1,"より"],[12448,2],[[12449,12542],2],[12543,1,"コト"],[[12544,12548],3],[[12549,12588],2],[12589,2],[12590,2],[12591,2],[12592,3],[12593,1,"ᄀ"],[12594,1,"ᄁ"],[12595,1,"ᆪ"],[12596,1,"ᄂ"],[12597,1,"ᆬ"],[12598,1,"ᆭ"],[12599,1,"ᄃ"],[12600,1,"ᄄ"],[12601,1,"ᄅ"],[12602,1,"ᆰ"],[12603,1,"ᆱ"],[12604,1,"ᆲ"],[12605,1,"ᆳ"],[12606,1,"ᆴ"],[12607,1,"ᆵ"],[12608,1,"ᄚ"],[12609,1,"ᄆ"],[12610,1,"ᄇ"],[12611,1,"ᄈ"],[12612,1,"ᄡ"],[12613,1,"ᄉ"],[12614,1,"ᄊ"],[12615,1,"ᄋ"],[12616,1,"ᄌ"],[12617,1,"ᄍ"],[12618,1,"ᄎ"],[12619,1,"ᄏ"],[12620,1,"ᄐ"],[12621,1,"ᄑ"],[12622,1,"ᄒ"],[12623,1,"ᅡ"],[12624,1,"ᅢ"],[12625,1,"ᅣ"],[12626,1,"ᅤ"],[12627,1,"ᅥ"],[12628,1,"ᅦ"],[12629,1,"ᅧ"],[12630,1,"ᅨ"],[12631,1,"ᅩ"],[12632,1,"ᅪ"],[12633,1,"ᅫ"],[12634,1,"ᅬ"],[12635,1,"ᅭ"],[12636,1,"ᅮ"],[12637,1,"ᅯ"],[12638,1,"ᅰ"],[12639,1,"ᅱ"],[12640,1,"ᅲ"],[12641,1,"ᅳ"],[12642,1,"ᅴ"],[12643,1,"ᅵ"],[12644,3],[12645,1,"ᄔ"],[12646,1,"ᄕ"],[12647,1,"ᇇ"],[12648,1,"ᇈ"],[12649,1,"ᇌ"],[12650,1,"ᇎ"],[12651,1,"ᇓ"],[12652,1,"ᇗ"],[12653,1,"ᇙ"],[12654,1,"ᄜ"],[12655,1,"ᇝ"],[12656,1,"ᇟ"],[12657,1,"ᄝ"],[12658,1,"ᄞ"],[12659,1,"ᄠ"],[12660,1,"ᄢ"],[12661,1,"ᄣ"],[12662,1,"ᄧ"],[12663,1,"ᄩ"],[12664,1,"ᄫ"],[12665,1,"ᄬ"],[12666,1,"ᄭ"],[12667,1,"ᄮ"],[12668,1,"ᄯ"],[12669,1,"ᄲ"],[12670,1,"ᄶ"],[12671,1,"ᅀ"],[12672,1,"ᅇ"],[12673,1,"ᅌ"],[12674,1,"ᇱ"],[12675,1,"ᇲ"],[12676,1,"ᅗ"],[12677,1,"ᅘ"],[12678,1,"ᅙ"],[12679,1,"ᆄ"],[12680,1,"ᆅ"],[12681,1,"ᆈ"],[12682,1,"ᆑ"],[12683,1,"ᆒ"],[12684,1,"ᆔ"],[12685,1,"ᆞ"],[12686,1,"ᆡ"],[12687,3],[[12688,12689],2],[12690,1,"一"],[12691,1,"二"],[12692,1,"三"],[12693,1,"四"],[12694,1,"上"],[12695,1,"中"],[12696,1,"下"],[12697,1,"甲"],[12698,1,"乙"],[12699,1,"丙"],[12700,1,"丁"],[12701,1,"天"],[12702,1,"地"],[12703,1,"人"],[[12704,12727],2],[[12728,12730],2],[[12731,12735],2],[[12736,12751],2],[[12752,12771],2],[[12772,12783],3],[[12784,12799],2],[12800,5,"(ᄀ)"],[12801,5,"(ᄂ)"],[12802,5,"(ᄃ)"],[12803,5,"(ᄅ)"],[12804,5,"(ᄆ)"],[12805,5,"(ᄇ)"],[12806,5,"(ᄉ)"],[12807,5,"(ᄋ)"],[12808,5,"(ᄌ)"],[12809,5,"(ᄎ)"],[12810,5,"(ᄏ)"],[12811,5,"(ᄐ)"],[12812,5,"(ᄑ)"],[12813,5,"(ᄒ)"],[12814,5,"(가)"],[12815,5,"(나)"],[12816,5,"(다)"],[12817,5,"(라)"],[12818,5,"(마)"],[12819,5,"(바)"],[12820,5,"(사)"],[12821,5,"(아)"],[12822,5,"(자)"],[12823,5,"(차)"],[12824,5,"(카)"],[12825,5,"(타)"],[12826,5,"(파)"],[12827,5,"(하)"],[12828,5,"(주)"],[12829,5,"(오전)"],[12830,5,"(오후)"],[12831,3],[12832,5,"(一)"],[12833,5,"(二)"],[12834,5,"(三)"],[12835,5,"(四)"],[12836,5,"(五)"],[12837,5,"(六)"],[12838,5,"(七)"],[12839,5,"(八)"],[12840,5,"(九)"],[12841,5,"(十)"],[12842,5,"(月)"],[12843,5,"(火)"],[12844,5,"(水)"],[12845,5,"(木)"],[12846,5,"(金)"],[12847,5,"(土)"],[12848,5,"(日)"],[12849,5,"(株)"],[12850,5,"(有)"],[12851,5,"(社)"],[12852,5,"(名)"],[12853,5,"(特)"],[12854,5,"(財)"],[12855,5,"(祝)"],[12856,5,"(労)"],[12857,5,"(代)"],[12858,5,"(呼)"],[12859,5,"(学)"],[12860,5,"(監)"],[12861,5,"(企)"],[12862,5,"(資)"],[12863,5,"(協)"],[12864,5,"(祭)"],[12865,5,"(休)"],[12866,5,"(自)"],[12867,5,"(至)"],[12868,1,"問"],[12869,1,"幼"],[12870,1,"文"],[12871,1,"箏"],[[12872,12879],2],[12880,1,"pte"],[12881,1,"21"],[12882,1,"22"],[12883,1,"23"],[12884,1,"24"],[12885,1,"25"],[12886,1,"26"],[12887,1,"27"],[12888,1,"28"],[12889,1,"29"],[12890,1,"30"],[12891,1,"31"],[12892,1,"32"],[12893,1,"33"],[12894,1,"34"],[12895,1,"35"],[12896,1,"ᄀ"],[12897,1,"ᄂ"],[12898,1,"ᄃ"],[12899,1,"ᄅ"],[12900,1,"ᄆ"],[12901,1,"ᄇ"],[12902,1,"ᄉ"],[12903,1,"ᄋ"],[12904,1,"ᄌ"],[12905,1,"ᄎ"],[12906,1,"ᄏ"],[12907,1,"ᄐ"],[12908,1,"ᄑ"],[12909,1,"ᄒ"],[12910,1,"가"],[12911,1,"나"],[12912,1,"다"],[12913,1,"라"],[12914,1,"마"],[12915,1,"바"],[12916,1,"사"],[12917,1,"아"],[12918,1,"자"],[12919,1,"차"],[12920,1,"카"],[12921,1,"타"],[12922,1,"파"],[12923,1,"하"],[12924,1,"참고"],[12925,1,"주의"],[12926,1,"우"],[12927,2],[12928,1,"一"],[12929,1,"二"],[12930,1,"三"],[12931,1,"四"],[12932,1,"五"],[12933,1,"六"],[12934,1,"七"],[12935,1,"八"],[12936,1,"九"],[12937,1,"十"],[12938,1,"月"],[12939,1,"火"],[12940,1,"水"],[12941,1,"木"],[12942,1,"金"],[12943,1,"土"],[12944,1,"日"],[12945,1,"株"],[12946,1,"有"],[12947,1,"社"],[12948,1,"名"],[12949,1,"特"],[12950,1,"財"],[12951,1,"祝"],[12952,1,"労"],[12953,1,"秘"],[12954,1,"男"],[12955,1,"女"],[12956,1,"適"],[12957,1,"優"],[12958,1,"印"],[12959,1,"注"],[12960,1,"項"],[12961,1,"休"],[12962,1,"写"],[12963,1,"正"],[12964,1,"上"],[12965,1,"中"],[12966,1,"下"],[12967,1,"左"],[12968,1,"右"],[12969,1,"医"],[12970,1,"宗"],[12971,1,"学"],[12972,1,"監"],[12973,1,"企"],[12974,1,"資"],[12975,1,"協"],[12976,1,"夜"],[12977,1,"36"],[12978,1,"37"],[12979,1,"38"],[12980,1,"39"],[12981,1,"40"],[12982,1,"41"],[12983,1,"42"],[12984,1,"43"],[12985,1,"44"],[12986,1,"45"],[12987,1,"46"],[12988,1,"47"],[12989,1,"48"],[12990,1,"49"],[12991,1,"50"],[12992,1,"1月"],[12993,1,"2月"],[12994,1,"3月"],[12995,1,"4月"],[12996,1,"5月"],[12997,1,"6月"],[12998,1,"7月"],[12999,1,"8月"],[13000,1,"9月"],[13001,1,"10月"],[13002,1,"11月"],[13003,1,"12月"],[13004,1,"hg"],[13005,1,"erg"],[13006,1,"ev"],[13007,1,"ltd"],[13008,1,"ア"],[13009,1,"イ"],[13010,1,"ウ"],[13011,1,"エ"],[13012,1,"オ"],[13013,1,"カ"],[13014,1,"キ"],[13015,1,"ク"],[13016,1,"ケ"],[13017,1,"コ"],[13018,1,"サ"],[13019,1,"シ"],[13020,1,"ス"],[13021,1,"セ"],[13022,1,"ソ"],[13023,1,"タ"],[13024,1,"チ"],[13025,1,"ツ"],[13026,1,"テ"],[13027,1,"ト"],[13028,1,"ナ"],[13029,1,"ニ"],[13030,1,"ヌ"],[13031,1,"ネ"],[13032,1,"ノ"],[13033,1,"ハ"],[13034,1,"ヒ"],[13035,1,"フ"],[13036,1,"ヘ"],[13037,1,"ホ"],[13038,1,"マ"],[13039,1,"ミ"],[13040,1,"ム"],[13041,1,"メ"],[13042,1,"モ"],[13043,1,"ヤ"],[13044,1,"ユ"],[13045,1,"ヨ"],[13046,1,"ラ"],[13047,1,"リ"],[13048,1,"ル"],[13049,1,"レ"],[13050,1,"ロ"],[13051,1,"ワ"],[13052,1,"ヰ"],[13053,1,"ヱ"],[13054,1,"ヲ"],[13055,1,"令和"],[13056,1,"アパート"],[13057,1,"アルファ"],[13058,1,"アンペア"],[13059,1,"アール"],[13060,1,"イニング"],[13061,1,"インチ"],[13062,1,"ウォン"],[13063,1,"エスクード"],[13064,1,"エーカー"],[13065,1,"オンス"],[13066,1,"オーム"],[13067,1,"カイリ"],[13068,1,"カラット"],[13069,1,"カロリー"],[13070,1,"ガロン"],[13071,1,"ガンマ"],[13072,1,"ギガ"],[13073,1,"ギニー"],[13074,1,"キュリー"],[13075,1,"ギルダー"],[13076,1,"キロ"],[13077,1,"キログラム"],[13078,1,"キロメートル"],[13079,1,"キロワット"],[13080,1,"グラム"],[13081,1,"グラムトン"],[13082,1,"クルゼイロ"],[13083,1,"クローネ"],[13084,1,"ケース"],[13085,1,"コルナ"],[13086,1,"コーポ"],[13087,1,"サイクル"],[13088,1,"サンチーム"],[13089,1,"シリング"],[13090,1,"センチ"],[13091,1,"セント"],[13092,1,"ダース"],[13093,1,"デシ"],[13094,1,"ドル"],[13095,1,"トン"],[13096,1,"ナノ"],[13097,1,"ノット"],[13098,1,"ハイツ"],[13099,1,"パーセント"],[13100,1,"パーツ"],[13101,1,"バーレル"],[13102,1,"ピアストル"],[13103,1,"ピクル"],[13104,1,"ピコ"],[13105,1,"ビル"],[13106,1,"ファラッド"],[13107,1,"フィート"],[13108,1,"ブッシェル"],[13109,1,"フラン"],[13110,1,"ヘクタール"],[13111,1,"ペソ"],[13112,1,"ペニヒ"],[13113,1,"ヘルツ"],[13114,1,"ペンス"],[13115,1,"ページ"],[13116,1,"ベータ"],[13117,1,"ポイント"],[13118,1,"ボルト"],[13119,1,"ホン"],[13120,1,"ポンド"],[13121,1,"ホール"],[13122,1,"ホーン"],[13123,1,"マイクロ"],[13124,1,"マイル"],[13125,1,"マッハ"],[13126,1,"マルク"],[13127,1,"マンション"],[13128,1,"ミクロン"],[13129,1,"ミリ"],[13130,1,"ミリバール"],[13131,1,"メガ"],[13132,1,"メガトン"],[13133,1,"メートル"],[13134,1,"ヤード"],[13135,1,"ヤール"],[13136,1,"ユアン"],[13137,1,"リットル"],[13138,1,"リラ"],[13139,1,"ルピー"],[13140,1,"ルーブル"],[13141,1,"レム"],[13142,1,"レントゲン"],[13143,1,"ワット"],[13144,1,"0点"],[13145,1,"1点"],[13146,1,"2点"],[13147,1,"3点"],[13148,1,"4点"],[13149,1,"5点"],[13150,1,"6点"],[13151,1,"7点"],[13152,1,"8点"],[13153,1,"9点"],[13154,1,"10点"],[13155,1,"11点"],[13156,1,"12点"],[13157,1,"13点"],[13158,1,"14点"],[13159,1,"15点"],[13160,1,"16点"],[13161,1,"17点"],[13162,1,"18点"],[13163,1,"19点"],[13164,1,"20点"],[13165,1,"21点"],[13166,1,"22点"],[13167,1,"23点"],[13168,1,"24点"],[13169,1,"hpa"],[13170,1,"da"],[13171,1,"au"],[13172,1,"bar"],[13173,1,"ov"],[13174,1,"pc"],[13175,1,"dm"],[13176,1,"dm2"],[13177,1,"dm3"],[13178,1,"iu"],[13179,1,"平成"],[13180,1,"昭和"],[13181,1,"大正"],[13182,1,"明治"],[13183,1,"株式会社"],[13184,1,"pa"],[13185,1,"na"],[13186,1,"μa"],[13187,1,"ma"],[13188,1,"ka"],[13189,1,"kb"],[13190,1,"mb"],[13191,1,"gb"],[13192,1,"cal"],[13193,1,"kcal"],[13194,1,"pf"],[13195,1,"nf"],[13196,1,"μf"],[13197,1,"μg"],[13198,1,"mg"],[13199,1,"kg"],[13200,1,"hz"],[13201,1,"khz"],[13202,1,"mhz"],[13203,1,"ghz"],[13204,1,"thz"],[13205,1,"μl"],[13206,1,"ml"],[13207,1,"dl"],[13208,1,"kl"],[13209,1,"fm"],[13210,1,"nm"],[13211,1,"μm"],[13212,1,"mm"],[13213,1,"cm"],[13214,1,"km"],[13215,1,"mm2"],[13216,1,"cm2"],[13217,1,"m2"],[13218,1,"km2"],[13219,1,"mm3"],[13220,1,"cm3"],[13221,1,"m3"],[13222,1,"km3"],[13223,1,"m∕s"],[13224,1,"m∕s2"],[13225,1,"pa"],[13226,1,"kpa"],[13227,1,"mpa"],[13228,1,"gpa"],[13229,1,"rad"],[13230,1,"rad∕s"],[13231,1,"rad∕s2"],[13232,1,"ps"],[13233,1,"ns"],[13234,1,"μs"],[13235,1,"ms"],[13236,1,"pv"],[13237,1,"nv"],[13238,1,"μv"],[13239,1,"mv"],[13240,1,"kv"],[13241,1,"mv"],[13242,1,"pw"],[13243,1,"nw"],[13244,1,"μw"],[13245,1,"mw"],[13246,1,"kw"],[13247,1,"mw"],[13248,1,"kω"],[13249,1,"mω"],[13250,3],[13251,1,"bq"],[13252,1,"cc"],[13253,1,"cd"],[13254,1,"c∕kg"],[13255,3],[13256,1,"db"],[13257,1,"gy"],[13258,1,"ha"],[13259,1,"hp"],[13260,1,"in"],[13261,1,"kk"],[13262,1,"km"],[13263,1,"kt"],[13264,1,"lm"],[13265,1,"ln"],[13266,1,"log"],[13267,1,"lx"],[13268,1,"mb"],[13269,1,"mil"],[13270,1,"mol"],[13271,1,"ph"],[13272,3],[13273,1,"ppm"],[13274,1,"pr"],[13275,1,"sr"],[13276,1,"sv"],[13277,1,"wb"],[13278,1,"v∕m"],[13279,1,"a∕m"],[13280,1,"1日"],[13281,1,"2日"],[13282,1,"3日"],[13283,1,"4日"],[13284,1,"5日"],[13285,1,"6日"],[13286,1,"7日"],[13287,1,"8日"],[13288,1,"9日"],[13289,1,"10日"],[13290,1,"11日"],[13291,1,"12日"],[13292,1,"13日"],[13293,1,"14日"],[13294,1,"15日"],[13295,1,"16日"],[13296,1,"17日"],[13297,1,"18日"],[13298,1,"19日"],[13299,1,"20日"],[13300,1,"21日"],[13301,1,"22日"],[13302,1,"23日"],[13303,1,"24日"],[13304,1,"25日"],[13305,1,"26日"],[13306,1,"27日"],[13307,1,"28日"],[13308,1,"29日"],[13309,1,"30日"],[13310,1,"31日"],[13311,1,"gal"],[[13312,19893],2],[[19894,19903],2],[[19904,19967],2],[[19968,40869],2],[[40870,40891],2],[[40892,40899],2],[[40900,40907],2],[40908,2],[[40909,40917],2],[[40918,40938],2],[[40939,40943],2],[[40944,40956],2],[[40957,40959],2],[[40960,42124],2],[[42125,42127],3],[[42128,42145],2],[[42146,42147],2],[[42148,42163],2],[42164,2],[[42165,42176],2],[42177,2],[[42178,42180],2],[42181,2],[42182,2],[[42183,42191],3],[[42192,42237],2],[[42238,42239],2],[[42240,42508],2],[[42509,42511],2],[[42512,42539],2],[[42540,42559],3],[42560,1,"ꙁ"],[42561,2],[42562,1,"ꙃ"],[42563,2],[42564,1,"ꙅ"],[42565,2],[42566,1,"ꙇ"],[42567,2],[42568,1,"ꙉ"],[42569,2],[42570,1,"ꙋ"],[42571,2],[42572,1,"ꙍ"],[42573,2],[42574,1,"ꙏ"],[42575,2],[42576,1,"ꙑ"],[42577,2],[42578,1,"ꙓ"],[42579,2],[42580,1,"ꙕ"],[42581,2],[42582,1,"ꙗ"],[42583,2],[42584,1,"ꙙ"],[42585,2],[42586,1,"ꙛ"],[42587,2],[42588,1,"ꙝ"],[42589,2],[42590,1,"ꙟ"],[42591,2],[42592,1,"ꙡ"],[42593,2],[42594,1,"ꙣ"],[42595,2],[42596,1,"ꙥ"],[42597,2],[42598,1,"ꙧ"],[42599,2],[42600,1,"ꙩ"],[42601,2],[42602,1,"ꙫ"],[42603,2],[42604,1,"ꙭ"],[[42605,42607],2],[[42608,42611],2],[[42612,42619],2],[[42620,42621],2],[42622,2],[42623,2],[42624,1,"ꚁ"],[42625,2],[42626,1,"ꚃ"],[42627,2],[42628,1,"ꚅ"],[42629,2],[42630,1,"ꚇ"],[42631,2],[42632,1,"ꚉ"],[42633,2],[42634,1,"ꚋ"],[42635,2],[42636,1,"ꚍ"],[42637,2],[42638,1,"ꚏ"],[42639,2],[42640,1,"ꚑ"],[42641,2],[42642,1,"ꚓ"],[42643,2],[42644,1,"ꚕ"],[42645,2],[42646,1,"ꚗ"],[42647,2],[42648,1,"ꚙ"],[42649,2],[42650,1,"ꚛ"],[42651,2],[42652,1,"ъ"],[42653,1,"ь"],[42654,2],[42655,2],[[42656,42725],2],[[42726,42735],2],[[42736,42737],2],[[42738,42743],2],[[42744,42751],3],[[42752,42774],2],[[42775,42778],2],[[42779,42783],2],[[42784,42785],2],[42786,1,"ꜣ"],[42787,2],[42788,1,"ꜥ"],[42789,2],[42790,1,"ꜧ"],[42791,2],[42792,1,"ꜩ"],[42793,2],[42794,1,"ꜫ"],[42795,2],[42796,1,"ꜭ"],[42797,2],[42798,1,"ꜯ"],[[42799,42801],2],[42802,1,"ꜳ"],[42803,2],[42804,1,"ꜵ"],[42805,2],[42806,1,"ꜷ"],[42807,2],[42808,1,"ꜹ"],[42809,2],[42810,1,"ꜻ"],[42811,2],[42812,1,"ꜽ"],[42813,2],[42814,1,"ꜿ"],[42815,2],[42816,1,"ꝁ"],[42817,2],[42818,1,"ꝃ"],[42819,2],[42820,1,"ꝅ"],[42821,2],[42822,1,"ꝇ"],[42823,2],[42824,1,"ꝉ"],[42825,2],[42826,1,"ꝋ"],[42827,2],[42828,1,"ꝍ"],[42829,2],[42830,1,"ꝏ"],[42831,2],[42832,1,"ꝑ"],[42833,2],[42834,1,"ꝓ"],[42835,2],[42836,1,"ꝕ"],[42837,2],[42838,1,"ꝗ"],[42839,2],[42840,1,"ꝙ"],[42841,2],[42842,1,"ꝛ"],[42843,2],[42844,1,"ꝝ"],[42845,2],[42846,1,"ꝟ"],[42847,2],[42848,1,"ꝡ"],[42849,2],[42850,1,"ꝣ"],[42851,2],[42852,1,"ꝥ"],[42853,2],[42854,1,"ꝧ"],[42855,2],[42856,1,"ꝩ"],[42857,2],[42858,1,"ꝫ"],[42859,2],[42860,1,"ꝭ"],[42861,2],[42862,1,"ꝯ"],[42863,2],[42864,1,"ꝯ"],[[42865,42872],2],[42873,1,"ꝺ"],[42874,2],[42875,1,"ꝼ"],[42876,2],[42877,1,"ᵹ"],[42878,1,"ꝿ"],[42879,2],[42880,1,"ꞁ"],[42881,2],[42882,1,"ꞃ"],[42883,2],[42884,1,"ꞅ"],[42885,2],[42886,1,"ꞇ"],[[42887,42888],2],[[42889,42890],2],[42891,1,"ꞌ"],[42892,2],[42893,1,"ɥ"],[42894,2],[42895,2],[42896,1,"ꞑ"],[42897,2],[42898,1,"ꞓ"],[42899,2],[[42900,42901],2],[42902,1,"ꞗ"],[42903,2],[42904,1,"ꞙ"],[42905,2],[42906,1,"ꞛ"],[42907,2],[42908,1,"ꞝ"],[42909,2],[42910,1,"ꞟ"],[42911,2],[42912,1,"ꞡ"],[42913,2],[42914,1,"ꞣ"],[42915,2],[42916,1,"ꞥ"],[42917,2],[42918,1,"ꞧ"],[42919,2],[42920,1,"ꞩ"],[42921,2],[42922,1,"ɦ"],[42923,1,"ɜ"],[42924,1,"ɡ"],[42925,1,"ɬ"],[42926,1,"ɪ"],[42927,2],[42928,1,"ʞ"],[42929,1,"ʇ"],[42930,1,"ʝ"],[42931,1,"ꭓ"],[42932,1,"ꞵ"],[42933,2],[42934,1,"ꞷ"],[42935,2],[42936,1,"ꞹ"],[42937,2],[42938,1,"ꞻ"],[42939,2],[42940,1,"ꞽ"],[42941,2],[42942,1,"ꞿ"],[42943,2],[42944,1,"ꟁ"],[42945,2],[42946,1,"ꟃ"],[42947,2],[42948,1,"ꞔ"],[42949,1,"ʂ"],[42950,1,"ᶎ"],[42951,1,"ꟈ"],[42952,2],[42953,1,"ꟊ"],[42954,2],[[42955,42959],3],[42960,1,"ꟑ"],[42961,2],[42962,3],[42963,2],[42964,3],[42965,2],[42966,1,"ꟗ"],[42967,2],[42968,1,"ꟙ"],[42969,2],[[42970,42993],3],[42994,1,"c"],[42995,1,"f"],[42996,1,"q"],[42997,1,"ꟶ"],[42998,2],[42999,2],[43000,1,"ħ"],[43001,1,"œ"],[43002,2],[[43003,43007],2],[[43008,43047],2],[[43048,43051],2],[43052,2],[[43053,43055],3],[[43056,43065],2],[[43066,43071],3],[[43072,43123],2],[[43124,43127],2],[[43128,43135],3],[[43136,43204],2],[43205,2],[[43206,43213],3],[[43214,43215],2],[[43216,43225],2],[[43226,43231],3],[[43232,43255],2],[[43256,43258],2],[43259,2],[43260,2],[43261,2],[[43262,43263],2],[[43264,43309],2],[[43310,43311],2],[[43312,43347],2],[[43348,43358],3],[43359,2],[[43360,43388],2],[[43389,43391],3],[[43392,43456],2],[[43457,43469],2],[43470,3],[[43471,43481],2],[[43482,43485],3],[[43486,43487],2],[[43488,43518],2],[43519,3],[[43520,43574],2],[[43575,43583],3],[[43584,43597],2],[[43598,43599],3],[[43600,43609],2],[[43610,43611],3],[[43612,43615],2],[[43616,43638],2],[[43639,43641],2],[[43642,43643],2],[[43644,43647],2],[[43648,43714],2],[[43715,43738],3],[[43739,43741],2],[[43742,43743],2],[[43744,43759],2],[[43760,43761],2],[[43762,43766],2],[[43767,43776],3],[[43777,43782],2],[[43783,43784],3],[[43785,43790],2],[[43791,43792],3],[[43793,43798],2],[[43799,43807],3],[[43808,43814],2],[43815,3],[[43816,43822],2],[43823,3],[[43824,43866],2],[43867,2],[43868,1,"ꜧ"],[43869,1,"ꬷ"],[43870,1,"ɫ"],[43871,1,"ꭒ"],[[43872,43875],2],[[43876,43877],2],[[43878,43879],2],[43880,2],[43881,1,"ʍ"],[[43882,43883],2],[[43884,43887],3],[43888,1,"Ꭰ"],[43889,1,"Ꭱ"],[43890,1,"Ꭲ"],[43891,1,"Ꭳ"],[43892,1,"Ꭴ"],[43893,1,"Ꭵ"],[43894,1,"Ꭶ"],[43895,1,"Ꭷ"],[43896,1,"Ꭸ"],[43897,1,"Ꭹ"],[43898,1,"Ꭺ"],[43899,1,"Ꭻ"],[43900,1,"Ꭼ"],[43901,1,"Ꭽ"],[43902,1,"Ꭾ"],[43903,1,"Ꭿ"],[43904,1,"Ꮀ"],[43905,1,"Ꮁ"],[43906,1,"Ꮂ"],[43907,1,"Ꮃ"],[43908,1,"Ꮄ"],[43909,1,"Ꮅ"],[43910,1,"Ꮆ"],[43911,1,"Ꮇ"],[43912,1,"Ꮈ"],[43913,1,"Ꮉ"],[43914,1,"Ꮊ"],[43915,1,"Ꮋ"],[43916,1,"Ꮌ"],[43917,1,"Ꮍ"],[43918,1,"Ꮎ"],[43919,1,"Ꮏ"],[43920,1,"Ꮐ"],[43921,1,"Ꮑ"],[43922,1,"Ꮒ"],[43923,1,"Ꮓ"],[43924,1,"Ꮔ"],[43925,1,"Ꮕ"],[43926,1,"Ꮖ"],[43927,1,"Ꮗ"],[43928,1,"Ꮘ"],[43929,1,"Ꮙ"],[43930,1,"Ꮚ"],[43931,1,"Ꮛ"],[43932,1,"Ꮜ"],[43933,1,"Ꮝ"],[43934,1,"Ꮞ"],[43935,1,"Ꮟ"],[43936,1,"Ꮠ"],[43937,1,"Ꮡ"],[43938,1,"Ꮢ"],[43939,1,"Ꮣ"],[43940,1,"Ꮤ"],[43941,1,"Ꮥ"],[43942,1,"Ꮦ"],[43943,1,"Ꮧ"],[43944,1,"Ꮨ"],[43945,1,"Ꮩ"],[43946,1,"Ꮪ"],[43947,1,"Ꮫ"],[43948,1,"Ꮬ"],[43949,1,"Ꮭ"],[43950,1,"Ꮮ"],[43951,1,"Ꮯ"],[43952,1,"Ꮰ"],[43953,1,"Ꮱ"],[43954,1,"Ꮲ"],[43955,1,"Ꮳ"],[43956,1,"Ꮴ"],[43957,1,"Ꮵ"],[43958,1,"Ꮶ"],[43959,1,"Ꮷ"],[43960,1,"Ꮸ"],[43961,1,"Ꮹ"],[43962,1,"Ꮺ"],[43963,1,"Ꮻ"],[43964,1,"Ꮼ"],[43965,1,"Ꮽ"],[43966,1,"Ꮾ"],[43967,1,"Ꮿ"],[[43968,44010],2],[44011,2],[[44012,44013],2],[[44014,44015],3],[[44016,44025],2],[[44026,44031],3],[[44032,55203],2],[[55204,55215],3],[[55216,55238],2],[[55239,55242],3],[[55243,55291],2],[[55292,55295],3],[[55296,57343],3],[[57344,63743],3],[63744,1,"豈"],[63745,1,"更"],[63746,1,"車"],[63747,1,"賈"],[63748,1,"滑"],[63749,1,"串"],[63750,1,"句"],[[63751,63752],1,"龜"],[63753,1,"契"],[63754,1,"金"],[63755,1,"喇"],[63756,1,"奈"],[63757,1,"懶"],[63758,1,"癩"],[63759,1,"羅"],[63760,1,"蘿"],[63761,1,"螺"],[63762,1,"裸"],[63763,1,"邏"],[63764,1,"樂"],[63765,1,"洛"],[63766,1,"烙"],[63767,1,"珞"],[63768,1,"落"],[63769,1,"酪"],[63770,1,"駱"],[63771,1,"亂"],[63772,1,"卵"],[63773,1,"欄"],[63774,1,"爛"],[63775,1,"蘭"],[63776,1,"鸞"],[63777,1,"嵐"],[63778,1,"濫"],[63779,1,"藍"],[63780,1,"襤"],[63781,1,"拉"],[63782,1,"臘"],[63783,1,"蠟"],[63784,1,"廊"],[63785,1,"朗"],[63786,1,"浪"],[63787,1,"狼"],[63788,1,"郎"],[63789,1,"來"],[63790,1,"冷"],[63791,1,"勞"],[63792,1,"擄"],[63793,1,"櫓"],[63794,1,"爐"],[63795,1,"盧"],[63796,1,"老"],[63797,1,"蘆"],[63798,1,"虜"],[63799,1,"路"],[63800,1,"露"],[63801,1,"魯"],[63802,1,"鷺"],[63803,1,"碌"],[63804,1,"祿"],[63805,1,"綠"],[63806,1,"菉"],[63807,1,"錄"],[63808,1,"鹿"],[63809,1,"論"],[63810,1,"壟"],[63811,1,"弄"],[63812,1,"籠"],[63813,1,"聾"],[63814,1,"牢"],[63815,1,"磊"],[63816,1,"賂"],[63817,1,"雷"],[63818,1,"壘"],[63819,1,"屢"],[63820,1,"樓"],[63821,1,"淚"],[63822,1,"漏"],[63823,1,"累"],[63824,1,"縷"],[63825,1,"陋"],[63826,1,"勒"],[63827,1,"肋"],[63828,1,"凜"],[63829,1,"凌"],[63830,1,"稜"],[63831,1,"綾"],[63832,1,"菱"],[63833,1,"陵"],[63834,1,"讀"],[63835,1,"拏"],[63836,1,"樂"],[63837,1,"諾"],[63838,1,"丹"],[63839,1,"寧"],[63840,1,"怒"],[63841,1,"率"],[63842,1,"異"],[63843,1,"北"],[63844,1,"磻"],[63845,1,"便"],[63846,1,"復"],[63847,1,"不"],[63848,1,"泌"],[63849,1,"數"],[63850,1,"索"],[63851,1,"參"],[63852,1,"塞"],[63853,1,"省"],[63854,1,"葉"],[63855,1,"說"],[63856,1,"殺"],[63857,1,"辰"],[63858,1,"沈"],[63859,1,"拾"],[63860,1,"若"],[63861,1,"掠"],[63862,1,"略"],[63863,1,"亮"],[63864,1,"兩"],[63865,1,"凉"],[63866,1,"梁"],[63867,1,"糧"],[63868,1,"良"],[63869,1,"諒"],[63870,1,"量"],[63871,1,"勵"],[63872,1,"呂"],[63873,1,"女"],[63874,1,"廬"],[63875,1,"旅"],[63876,1,"濾"],[63877,1,"礪"],[63878,1,"閭"],[63879,1,"驪"],[63880,1,"麗"],[63881,1,"黎"],[63882,1,"力"],[63883,1,"曆"],[63884,1,"歷"],[63885,1,"轢"],[63886,1,"年"],[63887,1,"憐"],[63888,1,"戀"],[63889,1,"撚"],[63890,1,"漣"],[63891,1,"煉"],[63892,1,"璉"],[63893,1,"秊"],[63894,1,"練"],[63895,1,"聯"],[63896,1,"輦"],[63897,1,"蓮"],[63898,1,"連"],[63899,1,"鍊"],[63900,1,"列"],[63901,1,"劣"],[63902,1,"咽"],[63903,1,"烈"],[63904,1,"裂"],[63905,1,"說"],[63906,1,"廉"],[63907,1,"念"],[63908,1,"捻"],[63909,1,"殮"],[63910,1,"簾"],[63911,1,"獵"],[63912,1,"令"],[63913,1,"囹"],[63914,1,"寧"],[63915,1,"嶺"],[63916,1,"怜"],[63917,1,"玲"],[63918,1,"瑩"],[63919,1,"羚"],[63920,1,"聆"],[63921,1,"鈴"],[63922,1,"零"],[63923,1,"靈"],[63924,1,"領"],[63925,1,"例"],[63926,1,"禮"],[63927,1,"醴"],[63928,1,"隸"],[63929,1,"惡"],[63930,1,"了"],[63931,1,"僚"],[63932,1,"寮"],[63933,1,"尿"],[63934,1,"料"],[63935,1,"樂"],[63936,1,"燎"],[63937,1,"療"],[63938,1,"蓼"],[63939,1,"遼"],[63940,1,"龍"],[63941,1,"暈"],[63942,1,"阮"],[63943,1,"劉"],[63944,1,"杻"],[63945,1,"柳"],[63946,1,"流"],[63947,1,"溜"],[63948,1,"琉"],[63949,1,"留"],[63950,1,"硫"],[63951,1,"紐"],[63952,1,"類"],[63953,1,"六"],[63954,1,"戮"],[63955,1,"陸"],[63956,1,"倫"],[63957,1,"崙"],[63958,1,"淪"],[63959,1,"輪"],[63960,1,"律"],[63961,1,"慄"],[63962,1,"栗"],[63963,1,"率"],[63964,1,"隆"],[63965,1,"利"],[63966,1,"吏"],[63967,1,"履"],[63968,1,"易"],[63969,1,"李"],[63970,1,"梨"],[63971,1,"泥"],[63972,1,"理"],[63973,1,"痢"],[63974,1,"罹"],[63975,1,"裏"],[63976,1,"裡"],[63977,1,"里"],[63978,1,"離"],[63979,1,"匿"],[63980,1,"溺"],[63981,1,"吝"],[63982,1,"燐"],[63983,1,"璘"],[63984,1,"藺"],[63985,1,"隣"],[63986,1,"鱗"],[63987,1,"麟"],[63988,1,"林"],[63989,1,"淋"],[63990,1,"臨"],[63991,1,"立"],[63992,1,"笠"],[63993,1,"粒"],[63994,1,"狀"],[63995,1,"炙"],[63996,1,"識"],[63997,1,"什"],[63998,1,"茶"],[63999,1,"刺"],[64000,1,"切"],[64001,1,"度"],[64002,1,"拓"],[64003,1,"糖"],[64004,1,"宅"],[64005,1,"洞"],[64006,1,"暴"],[64007,1,"輻"],[64008,1,"行"],[64009,1,"降"],[64010,1,"見"],[64011,1,"廓"],[64012,1,"兀"],[64013,1,"嗀"],[[64014,64015],2],[64016,1,"塚"],[64017,2],[64018,1,"晴"],[[64019,64020],2],[64021,1,"凞"],[64022,1,"猪"],[64023,1,"益"],[64024,1,"礼"],[64025,1,"神"],[64026,1,"祥"],[64027,1,"福"],[64028,1,"靖"],[64029,1,"精"],[64030,1,"羽"],[64031,2],[64032,1,"蘒"],[64033,2],[64034,1,"諸"],[[64035,64036],2],[64037,1,"逸"],[64038,1,"都"],[[64039,64041],2],[64042,1,"飯"],[64043,1,"飼"],[64044,1,"館"],[64045,1,"鶴"],[64046,1,"郞"],[64047,1,"隷"],[64048,1,"侮"],[64049,1,"僧"],[64050,1,"免"],[64051,1,"勉"],[64052,1,"勤"],[64053,1,"卑"],[64054,1,"喝"],[64055,1,"嘆"],[64056,1,"器"],[64057,1,"塀"],[64058,1,"墨"],[64059,1,"層"],[64060,1,"屮"],[64061,1,"悔"],[64062,1,"慨"],[64063,1,"憎"],[64064,1,"懲"],[64065,1,"敏"],[64066,1,"既"],[64067,1,"暑"],[64068,1,"梅"],[64069,1,"海"],[64070,1,"渚"],[64071,1,"漢"],[64072,1,"煮"],[64073,1,"爫"],[64074,1,"琢"],[64075,1,"碑"],[64076,1,"社"],[64077,1,"祉"],[64078,1,"祈"],[64079,1,"祐"],[64080,1,"祖"],[64081,1,"祝"],[64082,1,"禍"],[64083,1,"禎"],[64084,1,"穀"],[64085,1,"突"],[64086,1,"節"],[64087,1,"練"],[64088,1,"縉"],[64089,1,"繁"],[64090,1,"署"],[64091,1,"者"],[64092,1,"臭"],[[64093,64094],1,"艹"],[64095,1,"著"],[64096,1,"褐"],[64097,1,"視"],[64098,1,"謁"],[64099,1,"謹"],[64100,1,"賓"],[64101,1,"贈"],[64102,1,"辶"],[64103,1,"逸"],[64104,1,"難"],[64105,1,"響"],[64106,1,"頻"],[64107,1,"恵"],[64108,1,"𤋮"],[64109,1,"舘"],[[64110,64111],3],[64112,1,"並"],[64113,1,"况"],[64114,1,"全"],[64115,1,"侀"],[64116,1,"充"],[64117,1,"冀"],[64118,1,"勇"],[64119,1,"勺"],[64120,1,"喝"],[64121,1,"啕"],[64122,1,"喙"],[64123,1,"嗢"],[64124,1,"塚"],[64125,1,"墳"],[64126,1,"奄"],[64127,1,"奔"],[64128,1,"婢"],[64129,1,"嬨"],[64130,1,"廒"],[64131,1,"廙"],[64132,1,"彩"],[64133,1,"徭"],[64134,1,"惘"],[64135,1,"慎"],[64136,1,"愈"],[64137,1,"憎"],[64138,1,"慠"],[64139,1,"懲"],[64140,1,"戴"],[64141,1,"揄"],[64142,1,"搜"],[64143,1,"摒"],[64144,1,"敖"],[64145,1,"晴"],[64146,1,"朗"],[64147,1,"望"],[64148,1,"杖"],[64149,1,"歹"],[64150,1,"殺"],[64151,1,"流"],[64152,1,"滛"],[64153,1,"滋"],[64154,1,"漢"],[64155,1,"瀞"],[64156,1,"煮"],[64157,1,"瞧"],[64158,1,"爵"],[64159,1,"犯"],[64160,1,"猪"],[64161,1,"瑱"],[64162,1,"甆"],[64163,1,"画"],[64164,1,"瘝"],[64165,1,"瘟"],[64166,1,"益"],[64167,1,"盛"],[64168,1,"直"],[64169,1,"睊"],[64170,1,"着"],[64171,1,"磌"],[64172,1,"窱"],[64173,1,"節"],[64174,1,"类"],[64175,1,"絛"],[64176,1,"練"],[64177,1,"缾"],[64178,1,"者"],[64179,1,"荒"],[64180,1,"華"],[64181,1,"蝹"],[64182,1,"襁"],[64183,1,"覆"],[64184,1,"視"],[64185,1,"調"],[64186,1,"諸"],[64187,1,"請"],[64188,1,"謁"],[64189,1,"諾"],[64190,1,"諭"],[64191,1,"謹"],[64192,1,"變"],[64193,1,"贈"],[64194,1,"輸"],[64195,1,"遲"],[64196,1,"醙"],[64197,1,"鉶"],[64198,1,"陼"],[64199,1,"難"],[64200,1,"靖"],[64201,1,"韛"],[64202,1,"響"],[64203,1,"頋"],[64204,1,"頻"],[64205,1,"鬒"],[64206,1,"龜"],[64207,1,"𢡊"],[64208,1,"𢡄"],[64209,1,"𣏕"],[64210,1,"㮝"],[64211,1,"䀘"],[64212,1,"䀹"],[64213,1,"𥉉"],[64214,1,"𥳐"],[64215,1,"𧻓"],[64216,1,"齃"],[64217,1,"龎"],[[64218,64255],3],[64256,1,"ff"],[64257,1,"fi"],[64258,1,"fl"],[64259,1,"ffi"],[64260,1,"ffl"],[[64261,64262],1,"st"],[[64263,64274],3],[64275,1,"մն"],[64276,1,"մե"],[64277,1,"մի"],[64278,1,"վն"],[64279,1,"մխ"],[[64280,64284],3],[64285,1,"יִ"],[64286,2],[64287,1,"ײַ"],[64288,1,"ע"],[64289,1,"א"],[64290,1,"ד"],[64291,1,"ה"],[64292,1,"כ"],[64293,1,"ל"],[64294,1,"ם"],[64295,1,"ר"],[64296,1,"ת"],[64297,5,"+"],[64298,1,"שׁ"],[64299,1,"שׂ"],[64300,1,"שּׁ"],[64301,1,"שּׂ"],[64302,1,"אַ"],[64303,1,"אָ"],[64304,1,"אּ"],[64305,1,"בּ"],[64306,1,"גּ"],[64307,1,"דּ"],[64308,1,"הּ"],[64309,1,"וּ"],[64310,1,"זּ"],[64311,3],[64312,1,"טּ"],[64313,1,"יּ"],[64314,1,"ךּ"],[64315,1,"כּ"],[64316,1,"לּ"],[64317,3],[64318,1,"מּ"],[64319,3],[64320,1,"נּ"],[64321,1,"סּ"],[64322,3],[64323,1,"ףּ"],[64324,1,"פּ"],[64325,3],[64326,1,"צּ"],[64327,1,"קּ"],[64328,1,"רּ"],[64329,1,"שּ"],[64330,1,"תּ"],[64331,1,"וֹ"],[64332,1,"בֿ"],[64333,1,"כֿ"],[64334,1,"פֿ"],[64335,1,"אל"],[[64336,64337],1,"ٱ"],[[64338,64341],1,"ٻ"],[[64342,64345],1,"پ"],[[64346,64349],1,"ڀ"],[[64350,64353],1,"ٺ"],[[64354,64357],1,"ٿ"],[[64358,64361],1,"ٹ"],[[64362,64365],1,"ڤ"],[[64366,64369],1,"ڦ"],[[64370,64373],1,"ڄ"],[[64374,64377],1,"ڃ"],[[64378,64381],1,"چ"],[[64382,64385],1,"ڇ"],[[64386,64387],1,"ڍ"],[[64388,64389],1,"ڌ"],[[64390,64391],1,"ڎ"],[[64392,64393],1,"ڈ"],[[64394,64395],1,"ژ"],[[64396,64397],1,"ڑ"],[[64398,64401],1,"ک"],[[64402,64405],1,"گ"],[[64406,64409],1,"ڳ"],[[64410,64413],1,"ڱ"],[[64414,64415],1,"ں"],[[64416,64419],1,"ڻ"],[[64420,64421],1,"ۀ"],[[64422,64425],1,"ہ"],[[64426,64429],1,"ھ"],[[64430,64431],1,"ے"],[[64432,64433],1,"ۓ"],[[64434,64449],2],[64450,2],[[64451,64466],3],[[64467,64470],1,"ڭ"],[[64471,64472],1,"ۇ"],[[64473,64474],1,"ۆ"],[[64475,64476],1,"ۈ"],[64477,1,"ۇٴ"],[[64478,64479],1,"ۋ"],[[64480,64481],1,"ۅ"],[[64482,64483],1,"ۉ"],[[64484,64487],1,"ې"],[[64488,64489],1,"ى"],[[64490,64491],1,"ئا"],[[64492,64493],1,"ئە"],[[64494,64495],1,"ئو"],[[64496,64497],1,"ئۇ"],[[64498,64499],1,"ئۆ"],[[64500,64501],1,"ئۈ"],[[64502,64504],1,"ئې"],[[64505,64507],1,"ئى"],[[64508,64511],1,"ی"],[64512,1,"ئج"],[64513,1,"ئح"],[64514,1,"ئم"],[64515,1,"ئى"],[64516,1,"ئي"],[64517,1,"بج"],[64518,1,"بح"],[64519,1,"بخ"],[64520,1,"بم"],[64521,1,"بى"],[64522,1,"بي"],[64523,1,"تج"],[64524,1,"تح"],[64525,1,"تخ"],[64526,1,"تم"],[64527,1,"تى"],[64528,1,"تي"],[64529,1,"ثج"],[64530,1,"ثم"],[64531,1,"ثى"],[64532,1,"ثي"],[64533,1,"جح"],[64534,1,"جم"],[64535,1,"حج"],[64536,1,"حم"],[64537,1,"خج"],[64538,1,"خح"],[64539,1,"خم"],[64540,1,"سج"],[64541,1,"سح"],[64542,1,"سخ"],[64543,1,"سم"],[64544,1,"صح"],[64545,1,"صم"],[64546,1,"ضج"],[64547,1,"ضح"],[64548,1,"ضخ"],[64549,1,"ضم"],[64550,1,"طح"],[64551,1,"طم"],[64552,1,"ظم"],[64553,1,"عج"],[64554,1,"عم"],[64555,1,"غج"],[64556,1,"غم"],[64557,1,"فج"],[64558,1,"فح"],[64559,1,"فخ"],[64560,1,"فم"],[64561,1,"فى"],[64562,1,"في"],[64563,1,"قح"],[64564,1,"قم"],[64565,1,"قى"],[64566,1,"قي"],[64567,1,"كا"],[64568,1,"كج"],[64569,1,"كح"],[64570,1,"كخ"],[64571,1,"كل"],[64572,1,"كم"],[64573,1,"كى"],[64574,1,"كي"],[64575,1,"لج"],[64576,1,"لح"],[64577,1,"لخ"],[64578,1,"لم"],[64579,1,"لى"],[64580,1,"لي"],[64581,1,"مج"],[64582,1,"مح"],[64583,1,"مخ"],[64584,1,"مم"],[64585,1,"مى"],[64586,1,"مي"],[64587,1,"نج"],[64588,1,"نح"],[64589,1,"نخ"],[64590,1,"نم"],[64591,1,"نى"],[64592,1,"ني"],[64593,1,"هج"],[64594,1,"هم"],[64595,1,"هى"],[64596,1,"هي"],[64597,1,"يج"],[64598,1,"يح"],[64599,1,"يخ"],[64600,1,"يم"],[64601,1,"يى"],[64602,1,"يي"],[64603,1,"ذٰ"],[64604,1,"رٰ"],[64605,1,"ىٰ"],[64606,5," ٌّ"],[64607,5," ٍّ"],[64608,5," َّ"],[64609,5," ُّ"],[64610,5," ِّ"],[64611,5," ّٰ"],[64612,1,"ئر"],[64613,1,"ئز"],[64614,1,"ئم"],[64615,1,"ئن"],[64616,1,"ئى"],[64617,1,"ئي"],[64618,1,"بر"],[64619,1,"بز"],[64620,1,"بم"],[64621,1,"بن"],[64622,1,"بى"],[64623,1,"بي"],[64624,1,"تر"],[64625,1,"تز"],[64626,1,"تم"],[64627,1,"تن"],[64628,1,"تى"],[64629,1,"تي"],[64630,1,"ثر"],[64631,1,"ثز"],[64632,1,"ثم"],[64633,1,"ثن"],[64634,1,"ثى"],[64635,1,"ثي"],[64636,1,"فى"],[64637,1,"في"],[64638,1,"قى"],[64639,1,"قي"],[64640,1,"كا"],[64641,1,"كل"],[64642,1,"كم"],[64643,1,"كى"],[64644,1,"كي"],[64645,1,"لم"],[64646,1,"لى"],[64647,1,"لي"],[64648,1,"ما"],[64649,1,"مم"],[64650,1,"نر"],[64651,1,"نز"],[64652,1,"نم"],[64653,1,"نن"],[64654,1,"نى"],[64655,1,"ني"],[64656,1,"ىٰ"],[64657,1,"ير"],[64658,1,"يز"],[64659,1,"يم"],[64660,1,"ين"],[64661,1,"يى"],[64662,1,"يي"],[64663,1,"ئج"],[64664,1,"ئح"],[64665,1,"ئخ"],[64666,1,"ئم"],[64667,1,"ئه"],[64668,1,"بج"],[64669,1,"بح"],[64670,1,"بخ"],[64671,1,"بم"],[64672,1,"به"],[64673,1,"تج"],[64674,1,"تح"],[64675,1,"تخ"],[64676,1,"تم"],[64677,1,"ته"],[64678,1,"ثم"],[64679,1,"جح"],[64680,1,"جم"],[64681,1,"حج"],[64682,1,"حم"],[64683,1,"خج"],[64684,1,"خم"],[64685,1,"سج"],[64686,1,"سح"],[64687,1,"سخ"],[64688,1,"سم"],[64689,1,"صح"],[64690,1,"صخ"],[64691,1,"صم"],[64692,1,"ضج"],[64693,1,"ضح"],[64694,1,"ضخ"],[64695,1,"ضم"],[64696,1,"طح"],[64697,1,"ظم"],[64698,1,"عج"],[64699,1,"عم"],[64700,1,"غج"],[64701,1,"غم"],[64702,1,"فج"],[64703,1,"فح"],[64704,1,"فخ"],[64705,1,"فم"],[64706,1,"قح"],[64707,1,"قم"],[64708,1,"كج"],[64709,1,"كح"],[64710,1,"كخ"],[64711,1,"كل"],[64712,1,"كم"],[64713,1,"لج"],[64714,1,"لح"],[64715,1,"لخ"],[64716,1,"لم"],[64717,1,"له"],[64718,1,"مج"],[64719,1,"مح"],[64720,1,"مخ"],[64721,1,"مم"],[64722,1,"نج"],[64723,1,"نح"],[64724,1,"نخ"],[64725,1,"نم"],[64726,1,"نه"],[64727,1,"هج"],[64728,1,"هم"],[64729,1,"هٰ"],[64730,1,"يج"],[64731,1,"يح"],[64732,1,"يخ"],[64733,1,"يم"],[64734,1,"يه"],[64735,1,"ئم"],[64736,1,"ئه"],[64737,1,"بم"],[64738,1,"به"],[64739,1,"تم"],[64740,1,"ته"],[64741,1,"ثم"],[64742,1,"ثه"],[64743,1,"سم"],[64744,1,"سه"],[64745,1,"شم"],[64746,1,"شه"],[64747,1,"كل"],[64748,1,"كم"],[64749,1,"لم"],[64750,1,"نم"],[64751,1,"نه"],[64752,1,"يم"],[64753,1,"يه"],[64754,1,"ـَّ"],[64755,1,"ـُّ"],[64756,1,"ـِّ"],[64757,1,"طى"],[64758,1,"طي"],[64759,1,"عى"],[64760,1,"عي"],[64761,1,"غى"],[64762,1,"غي"],[64763,1,"سى"],[64764,1,"سي"],[64765,1,"شى"],[64766,1,"شي"],[64767,1,"حى"],[64768,1,"حي"],[64769,1,"جى"],[64770,1,"جي"],[64771,1,"خى"],[64772,1,"خي"],[64773,1,"صى"],[64774,1,"صي"],[64775,1,"ضى"],[64776,1,"ضي"],[64777,1,"شج"],[64778,1,"شح"],[64779,1,"شخ"],[64780,1,"شم"],[64781,1,"شر"],[64782,1,"سر"],[64783,1,"صر"],[64784,1,"ضر"],[64785,1,"طى"],[64786,1,"طي"],[64787,1,"عى"],[64788,1,"عي"],[64789,1,"غى"],[64790,1,"غي"],[64791,1,"سى"],[64792,1,"سي"],[64793,1,"شى"],[64794,1,"شي"],[64795,1,"حى"],[64796,1,"حي"],[64797,1,"جى"],[64798,1,"جي"],[64799,1,"خى"],[64800,1,"خي"],[64801,1,"صى"],[64802,1,"صي"],[64803,1,"ضى"],[64804,1,"ضي"],[64805,1,"شج"],[64806,1,"شح"],[64807,1,"شخ"],[64808,1,"شم"],[64809,1,"شر"],[64810,1,"سر"],[64811,1,"صر"],[64812,1,"ضر"],[64813,1,"شج"],[64814,1,"شح"],[64815,1,"شخ"],[64816,1,"شم"],[64817,1,"سه"],[64818,1,"شه"],[64819,1,"طم"],[64820,1,"سج"],[64821,1,"سح"],[64822,1,"سخ"],[64823,1,"شج"],[64824,1,"شح"],[64825,1,"شخ"],[64826,1,"طم"],[64827,1,"ظم"],[[64828,64829],1,"اً"],[[64830,64831],2],[[64832,64847],2],[64848,1,"تجم"],[[64849,64850],1,"تحج"],[64851,1,"تحم"],[64852,1,"تخم"],[64853,1,"تمج"],[64854,1,"تمح"],[64855,1,"تمخ"],[[64856,64857],1,"جمح"],[64858,1,"حمي"],[64859,1,"حمى"],[64860,1,"سحج"],[64861,1,"سجح"],[64862,1,"سجى"],[[64863,64864],1,"سمح"],[64865,1,"سمج"],[[64866,64867],1,"سمم"],[[64868,64869],1,"صحح"],[64870,1,"صمم"],[[64871,64872],1,"شحم"],[64873,1,"شجي"],[[64874,64875],1,"شمخ"],[[64876,64877],1,"شمم"],[64878,1,"ضحى"],[[64879,64880],1,"ضخم"],[[64881,64882],1,"طمح"],[64883,1,"طمم"],[64884,1,"طمي"],[64885,1,"عجم"],[[64886,64887],1,"عمم"],[64888,1,"عمى"],[64889,1,"غمم"],[64890,1,"غمي"],[64891,1,"غمى"],[[64892,64893],1,"فخم"],[64894,1,"قمح"],[64895,1,"قمم"],[64896,1,"لحم"],[64897,1,"لحي"],[64898,1,"لحى"],[[64899,64900],1,"لجج"],[[64901,64902],1,"لخم"],[[64903,64904],1,"لمح"],[64905,1,"محج"],[64906,1,"محم"],[64907,1,"محي"],[64908,1,"مجح"],[64909,1,"مجم"],[64910,1,"مخج"],[64911,1,"مخم"],[[64912,64913],3],[64914,1,"مجخ"],[64915,1,"همج"],[64916,1,"همم"],[64917,1,"نحم"],[64918,1,"نحى"],[[64919,64920],1,"نجم"],[64921,1,"نجى"],[64922,1,"نمي"],[64923,1,"نمى"],[[64924,64925],1,"يمم"],[64926,1,"بخي"],[64927,1,"تجي"],[64928,1,"تجى"],[64929,1,"تخي"],[64930,1,"تخى"],[64931,1,"تمي"],[64932,1,"تمى"],[64933,1,"جمي"],[64934,1,"جحى"],[64935,1,"جمى"],[64936,1,"سخى"],[64937,1,"صحي"],[64938,1,"شحي"],[64939,1,"ضحي"],[64940,1,"لجي"],[64941,1,"لمي"],[64942,1,"يحي"],[64943,1,"يجي"],[64944,1,"يمي"],[64945,1,"ممي"],[64946,1,"قمي"],[64947,1,"نحي"],[64948,1,"قمح"],[64949,1,"لحم"],[64950,1,"عمي"],[64951,1,"كمي"],[64952,1,"نجح"],[64953,1,"مخي"],[64954,1,"لجم"],[64955,1,"كمم"],[64956,1,"لجم"],[64957,1,"نجح"],[64958,1,"جحي"],[64959,1,"حجي"],[64960,1,"مجي"],[64961,1,"فمي"],[64962,1,"بحي"],[64963,1,"كمم"],[64964,1,"عجم"],[64965,1,"صمم"],[64966,1,"سخي"],[64967,1,"نجي"],[[64968,64974],3],[64975,2],[[64976,65007],3],[65008,1,"صلے"],[65009,1,"قلے"],[65010,1,"الله"],[65011,1,"اكبر"],[65012,1,"محمد"],[65013,1,"صلعم"],[65014,1,"رسول"],[65015,1,"عليه"],[65016,1,"وسلم"],[65017,1,"صلى"],[65018,5,"صلى الله عليه وسلم"],[65019,5,"جل جلاله"],[65020,1,"ریال"],[65021,2],[[65022,65023],2],[[65024,65039],7],[65040,5,","],[65041,1,"、"],[65042,3],[65043,5,":"],[65044,5,";"],[65045,5,"!"],[65046,5,"?"],[65047,1,"〖"],[65048,1,"〗"],[65049,3],[[65050,65055],3],[[65056,65059],2],[[65060,65062],2],[[65063,65069],2],[[65070,65071],2],[65072,3],[65073,1,"—"],[65074,1,"–"],[[65075,65076],5,"_"],[65077,5,"("],[65078,5,")"],[65079,5,"{"],[65080,5,"}"],[65081,1,"〔"],[65082,1,"〕"],[65083,1,"【"],[65084,1,"】"],[65085,1,"《"],[65086,1,"》"],[65087,1,"〈"],[65088,1,"〉"],[65089,1,"「"],[65090,1,"」"],[65091,1,"『"],[65092,1,"』"],[[65093,65094],2],[65095,5,"["],[65096,5,"]"],[[65097,65100],5," ̅"],[[65101,65103],5,"_"],[65104,5,","],[65105,1,"、"],[65106,3],[65107,3],[65108,5,";"],[65109,5,":"],[65110,5,"?"],[65111,5,"!"],[65112,1,"—"],[65113,5,"("],[65114,5,")"],[65115,5,"{"],[65116,5,"}"],[65117,1,"〔"],[65118,1,"〕"],[65119,5,"#"],[65120,5,"&"],[65121,5,"*"],[65122,5,"+"],[65123,1,"-"],[65124,5,"<"],[65125,5,">"],[65126,5,"="],[65127,3],[65128,5,"\\\\"],[65129,5,"$"],[65130,5,"%"],[65131,5,"@"],[[65132,65135],3],[65136,5," ً"],[65137,1,"ـً"],[65138,5," ٌ"],[65139,2],[65140,5," ٍ"],[65141,3],[65142,5," َ"],[65143,1,"ـَ"],[65144,5," ُ"],[65145,1,"ـُ"],[65146,5," ِ"],[65147,1,"ـِ"],[65148,5," ّ"],[65149,1,"ـّ"],[65150,5," ْ"],[65151,1,"ـْ"],[65152,1,"ء"],[[65153,65154],1,"آ"],[[65155,65156],1,"أ"],[[65157,65158],1,"ؤ"],[[65159,65160],1,"إ"],[[65161,65164],1,"ئ"],[[65165,65166],1,"ا"],[[65167,65170],1,"ب"],[[65171,65172],1,"ة"],[[65173,65176],1,"ت"],[[65177,65180],1,"ث"],[[65181,65184],1,"ج"],[[65185,65188],1,"ح"],[[65189,65192],1,"خ"],[[65193,65194],1,"د"],[[65195,65196],1,"ذ"],[[65197,65198],1,"ر"],[[65199,65200],1,"ز"],[[65201,65204],1,"س"],[[65205,65208],1,"ش"],[[65209,65212],1,"ص"],[[65213,65216],1,"ض"],[[65217,65220],1,"ط"],[[65221,65224],1,"ظ"],[[65225,65228],1,"ع"],[[65229,65232],1,"غ"],[[65233,65236],1,"ف"],[[65237,65240],1,"ق"],[[65241,65244],1,"ك"],[[65245,65248],1,"ل"],[[65249,65252],1,"م"],[[65253,65256],1,"ن"],[[65257,65260],1,"ه"],[[65261,65262],1,"و"],[[65263,65264],1,"ى"],[[65265,65268],1,"ي"],[[65269,65270],1,"لآ"],[[65271,65272],1,"لأ"],[[65273,65274],1,"لإ"],[[65275,65276],1,"لا"],[[65277,65278],3],[65279,7],[65280,3],[65281,5,"!"],[65282,5,"\\""],[65283,5,"#"],[65284,5,"$"],[65285,5,"%"],[65286,5,"&"],[65287,5,"\'"],[65288,5,"("],[65289,5,")"],[65290,5,"*"],[65291,5,"+"],[65292,5,","],[65293,1,"-"],[65294,1,"."],[65295,5,"/"],[65296,1,"0"],[65297,1,"1"],[65298,1,"2"],[65299,1,"3"],[65300,1,"4"],[65301,1,"5"],[65302,1,"6"],[65303,1,"7"],[65304,1,"8"],[65305,1,"9"],[65306,5,":"],[65307,5,";"],[65308,5,"<"],[65309,5,"="],[65310,5,">"],[65311,5,"?"],[65312,5,"@"],[65313,1,"a"],[65314,1,"b"],[65315,1,"c"],[65316,1,"d"],[65317,1,"e"],[65318,1,"f"],[65319,1,"g"],[65320,1,"h"],[65321,1,"i"],[65322,1,"j"],[65323,1,"k"],[65324,1,"l"],[65325,1,"m"],[65326,1,"n"],[65327,1,"o"],[65328,1,"p"],[65329,1,"q"],[65330,1,"r"],[65331,1,"s"],[65332,1,"t"],[65333,1,"u"],[65334,1,"v"],[65335,1,"w"],[65336,1,"x"],[65337,1,"y"],[65338,1,"z"],[65339,5,"["],[65340,5,"\\\\"],[65341,5,"]"],[65342,5,"^"],[65343,5,"_"],[65344,5,"`"],[65345,1,"a"],[65346,1,"b"],[65347,1,"c"],[65348,1,"d"],[65349,1,"e"],[65350,1,"f"],[65351,1,"g"],[65352,1,"h"],[65353,1,"i"],[65354,1,"j"],[65355,1,"k"],[65356,1,"l"],[65357,1,"m"],[65358,1,"n"],[65359,1,"o"],[65360,1,"p"],[65361,1,"q"],[65362,1,"r"],[65363,1,"s"],[65364,1,"t"],[65365,1,"u"],[65366,1,"v"],[65367,1,"w"],[65368,1,"x"],[65369,1,"y"],[65370,1,"z"],[65371,5,"{"],[65372,5,"|"],[65373,5,"}"],[65374,5,"~"],[65375,1,"⦅"],[65376,1,"⦆"],[65377,1,"."],[65378,1,"「"],[65379,1,"」"],[65380,1,"、"],[65381,1,"・"],[65382,1,"ヲ"],[65383,1,"ァ"],[65384,1,"ィ"],[65385,1,"ゥ"],[65386,1,"ェ"],[65387,1,"ォ"],[65388,1,"ャ"],[65389,1,"ュ"],[65390,1,"ョ"],[65391,1,"ッ"],[65392,1,"ー"],[65393,1,"ア"],[65394,1,"イ"],[65395,1,"ウ"],[65396,1,"エ"],[65397,1,"オ"],[65398,1,"カ"],[65399,1,"キ"],[65400,1,"ク"],[65401,1,"ケ"],[65402,1,"コ"],[65403,1,"サ"],[65404,1,"シ"],[65405,1,"ス"],[65406,1,"セ"],[65407,1,"ソ"],[65408,1,"タ"],[65409,1,"チ"],[65410,1,"ツ"],[65411,1,"テ"],[65412,1,"ト"],[65413,1,"ナ"],[65414,1,"ニ"],[65415,1,"ヌ"],[65416,1,"ネ"],[65417,1,"ノ"],[65418,1,"ハ"],[65419,1,"ヒ"],[65420,1,"フ"],[65421,1,"ヘ"],[65422,1,"ホ"],[65423,1,"マ"],[65424,1,"ミ"],[65425,1,"ム"],[65426,1,"メ"],[65427,1,"モ"],[65428,1,"ヤ"],[65429,1,"ユ"],[65430,1,"ヨ"],[65431,1,"ラ"],[65432,1,"リ"],[65433,1,"ル"],[65434,1,"レ"],[65435,1,"ロ"],[65436,1,"ワ"],[65437,1,"ン"],[65438,1,"゙"],[65439,1,"゚"],[65440,3],[65441,1,"ᄀ"],[65442,1,"ᄁ"],[65443,1,"ᆪ"],[65444,1,"ᄂ"],[65445,1,"ᆬ"],[65446,1,"ᆭ"],[65447,1,"ᄃ"],[65448,1,"ᄄ"],[65449,1,"ᄅ"],[65450,1,"ᆰ"],[65451,1,"ᆱ"],[65452,1,"ᆲ"],[65453,1,"ᆳ"],[65454,1,"ᆴ"],[65455,1,"ᆵ"],[65456,1,"ᄚ"],[65457,1,"ᄆ"],[65458,1,"ᄇ"],[65459,1,"ᄈ"],[65460,1,"ᄡ"],[65461,1,"ᄉ"],[65462,1,"ᄊ"],[65463,1,"ᄋ"],[65464,1,"ᄌ"],[65465,1,"ᄍ"],[65466,1,"ᄎ"],[65467,1,"ᄏ"],[65468,1,"ᄐ"],[65469,1,"ᄑ"],[65470,1,"ᄒ"],[[65471,65473],3],[65474,1,"ᅡ"],[65475,1,"ᅢ"],[65476,1,"ᅣ"],[65477,1,"ᅤ"],[65478,1,"ᅥ"],[65479,1,"ᅦ"],[[65480,65481],3],[65482,1,"ᅧ"],[65483,1,"ᅨ"],[65484,1,"ᅩ"],[65485,1,"ᅪ"],[65486,1,"ᅫ"],[65487,1,"ᅬ"],[[65488,65489],3],[65490,1,"ᅭ"],[65491,1,"ᅮ"],[65492,1,"ᅯ"],[65493,1,"ᅰ"],[65494,1,"ᅱ"],[65495,1,"ᅲ"],[[65496,65497],3],[65498,1,"ᅳ"],[65499,1,"ᅴ"],[65500,1,"ᅵ"],[[65501,65503],3],[65504,1,"¢"],[65505,1,"£"],[65506,1,"¬"],[65507,5," ̄"],[65508,1,"¦"],[65509,1,"¥"],[65510,1,"₩"],[65511,3],[65512,1,"│"],[65513,1,"←"],[65514,1,"↑"],[65515,1,"→"],[65516,1,"↓"],[65517,1,"■"],[65518,1,"○"],[[65519,65528],3],[[65529,65531],3],[65532,3],[65533,3],[[65534,65535],3],[[65536,65547],2],[65548,3],[[65549,65574],2],[65575,3],[[65576,65594],2],[65595,3],[[65596,65597],2],[65598,3],[[65599,65613],2],[[65614,65615],3],[[65616,65629],2],[[65630,65663],3],[[65664,65786],2],[[65787,65791],3],[[65792,65794],2],[[65795,65798],3],[[65799,65843],2],[[65844,65846],3],[[65847,65855],2],[[65856,65930],2],[[65931,65932],2],[[65933,65934],2],[65935,3],[[65936,65947],2],[65948,2],[[65949,65951],3],[65952,2],[[65953,65999],3],[[66000,66044],2],[66045,2],[[66046,66175],3],[[66176,66204],2],[[66205,66207],3],[[66208,66256],2],[[66257,66271],3],[66272,2],[[66273,66299],2],[[66300,66303],3],[[66304,66334],2],[66335,2],[[66336,66339],2],[[66340,66348],3],[[66349,66351],2],[[66352,66368],2],[66369,2],[[66370,66377],2],[66378,2],[[66379,66383],3],[[66384,66426],2],[[66427,66431],3],[[66432,66461],2],[66462,3],[66463,2],[[66464,66499],2],[[66500,66503],3],[[66504,66511],2],[[66512,66517],2],[[66518,66559],3],[66560,1,"𐐨"],[66561,1,"𐐩"],[66562,1,"𐐪"],[66563,1,"𐐫"],[66564,1,"𐐬"],[66565,1,"𐐭"],[66566,1,"𐐮"],[66567,1,"𐐯"],[66568,1,"𐐰"],[66569,1,"𐐱"],[66570,1,"𐐲"],[66571,1,"𐐳"],[66572,1,"𐐴"],[66573,1,"𐐵"],[66574,1,"𐐶"],[66575,1,"𐐷"],[66576,1,"𐐸"],[66577,1,"𐐹"],[66578,1,"𐐺"],[66579,1,"𐐻"],[66580,1,"𐐼"],[66581,1,"𐐽"],[66582,1,"𐐾"],[66583,1,"𐐿"],[66584,1,"𐑀"],[66585,1,"𐑁"],[66586,1,"𐑂"],[66587,1,"𐑃"],[66588,1,"𐑄"],[66589,1,"𐑅"],[66590,1,"𐑆"],[66591,1,"𐑇"],[66592,1,"𐑈"],[66593,1,"𐑉"],[66594,1,"𐑊"],[66595,1,"𐑋"],[66596,1,"𐑌"],[66597,1,"𐑍"],[66598,1,"𐑎"],[66599,1,"𐑏"],[[66600,66637],2],[[66638,66717],2],[[66718,66719],3],[[66720,66729],2],[[66730,66735],3],[66736,1,"𐓘"],[66737,1,"𐓙"],[66738,1,"𐓚"],[66739,1,"𐓛"],[66740,1,"𐓜"],[66741,1,"𐓝"],[66742,1,"𐓞"],[66743,1,"𐓟"],[66744,1,"𐓠"],[66745,1,"𐓡"],[66746,1,"𐓢"],[66747,1,"𐓣"],[66748,1,"𐓤"],[66749,1,"𐓥"],[66750,1,"𐓦"],[66751,1,"𐓧"],[66752,1,"𐓨"],[66753,1,"𐓩"],[66754,1,"𐓪"],[66755,1,"𐓫"],[66756,1,"𐓬"],[66757,1,"𐓭"],[66758,1,"𐓮"],[66759,1,"𐓯"],[66760,1,"𐓰"],[66761,1,"𐓱"],[66762,1,"𐓲"],[66763,1,"𐓳"],[66764,1,"𐓴"],[66765,1,"𐓵"],[66766,1,"𐓶"],[66767,1,"𐓷"],[66768,1,"𐓸"],[66769,1,"𐓹"],[66770,1,"𐓺"],[66771,1,"𐓻"],[[66772,66775],3],[[66776,66811],2],[[66812,66815],3],[[66816,66855],2],[[66856,66863],3],[[66864,66915],2],[[66916,66926],3],[66927,2],[66928,1,"𐖗"],[66929,1,"𐖘"],[66930,1,"𐖙"],[66931,1,"𐖚"],[66932,1,"𐖛"],[66933,1,"𐖜"],[66934,1,"𐖝"],[66935,1,"𐖞"],[66936,1,"𐖟"],[66937,1,"𐖠"],[66938,1,"𐖡"],[66939,3],[66940,1,"𐖣"],[66941,1,"𐖤"],[66942,1,"𐖥"],[66943,1,"𐖦"],[66944,1,"𐖧"],[66945,1,"𐖨"],[66946,1,"𐖩"],[66947,1,"𐖪"],[66948,1,"𐖫"],[66949,1,"𐖬"],[66950,1,"𐖭"],[66951,1,"𐖮"],[66952,1,"𐖯"],[66953,1,"𐖰"],[66954,1,"𐖱"],[66955,3],[66956,1,"𐖳"],[66957,1,"𐖴"],[66958,1,"𐖵"],[66959,1,"𐖶"],[66960,1,"𐖷"],[66961,1,"𐖸"],[66962,1,"𐖹"],[66963,3],[66964,1,"𐖻"],[66965,1,"𐖼"],[66966,3],[[66967,66977],2],[66978,3],[[66979,66993],2],[66994,3],[[66995,67001],2],[67002,3],[[67003,67004],2],[[67005,67071],3],[[67072,67382],2],[[67383,67391],3],[[67392,67413],2],[[67414,67423],3],[[67424,67431],2],[[67432,67455],3],[67456,2],[67457,1,"ː"],[67458,1,"ˑ"],[67459,1,"æ"],[67460,1,"ʙ"],[67461,1,"ɓ"],[67462,3],[67463,1,"ʣ"],[67464,1,"ꭦ"],[67465,1,"ʥ"],[67466,1,"ʤ"],[67467,1,"ɖ"],[67468,1,"ɗ"],[67469,1,"ᶑ"],[67470,1,"ɘ"],[67471,1,"ɞ"],[67472,1,"ʩ"],[67473,1,"ɤ"],[67474,1,"ɢ"],[67475,1,"ɠ"],[67476,1,"ʛ"],[67477,1,"ħ"],[67478,1,"ʜ"],[67479,1,"ɧ"],[67480,1,"ʄ"],[67481,1,"ʪ"],[67482,1,"ʫ"],[67483,1,"ɬ"],[67484,1,"𝼄"],[67485,1,"ꞎ"],[67486,1,"ɮ"],[67487,1,"𝼅"],[67488,1,"ʎ"],[67489,1,"𝼆"],[67490,1,"ø"],[67491,1,"ɶ"],[67492,1,"ɷ"],[67493,1,"q"],[67494,1,"ɺ"],[67495,1,"𝼈"],[67496,1,"ɽ"],[67497,1,"ɾ"],[67498,1,"ʀ"],[67499,1,"ʨ"],[67500,1,"ʦ"],[67501,1,"ꭧ"],[67502,1,"ʧ"],[67503,1,"ʈ"],[67504,1,"ⱱ"],[67505,3],[67506,1,"ʏ"],[67507,1,"ʡ"],[67508,1,"ʢ"],[67509,1,"ʘ"],[67510,1,"ǀ"],[67511,1,"ǁ"],[67512,1,"ǂ"],[67513,1,"𝼊"],[67514,1,"𝼞"],[[67515,67583],3],[[67584,67589],2],[[67590,67591],3],[67592,2],[67593,3],[[67594,67637],2],[67638,3],[[67639,67640],2],[[67641,67643],3],[67644,2],[[67645,67646],3],[67647,2],[[67648,67669],2],[67670,3],[[67671,67679],2],[[67680,67702],2],[[67703,67711],2],[[67712,67742],2],[[67743,67750],3],[[67751,67759],2],[[67760,67807],3],[[67808,67826],2],[67827,3],[[67828,67829],2],[[67830,67834],3],[[67835,67839],2],[[67840,67861],2],[[67862,67865],2],[[67866,67867],2],[[67868,67870],3],[67871,2],[[67872,67897],2],[[67898,67902],3],[67903,2],[[67904,67967],3],[[67968,68023],2],[[68024,68027],3],[[68028,68029],2],[[68030,68031],2],[[68032,68047],2],[[68048,68049],3],[[68050,68095],2],[[68096,68099],2],[68100,3],[[68101,68102],2],[[68103,68107],3],[[68108,68115],2],[68116,3],[[68117,68119],2],[68120,3],[[68121,68147],2],[[68148,68149],2],[[68150,68151],3],[[68152,68154],2],[[68155,68158],3],[68159,2],[[68160,68167],2],[68168,2],[[68169,68175],3],[[68176,68184],2],[[68185,68191],3],[[68192,68220],2],[[68221,68223],2],[[68224,68252],2],[[68253,68255],2],[[68256,68287],3],[[68288,68295],2],[68296,2],[[68297,68326],2],[[68327,68330],3],[[68331,68342],2],[[68343,68351],3],[[68352,68405],2],[[68406,68408],3],[[68409,68415],2],[[68416,68437],2],[[68438,68439],3],[[68440,68447],2],[[68448,68466],2],[[68467,68471],3],[[68472,68479],2],[[68480,68497],2],[[68498,68504],3],[[68505,68508],2],[[68509,68520],3],[[68521,68527],2],[[68528,68607],3],[[68608,68680],2],[[68681,68735],3],[68736,1,"𐳀"],[68737,1,"𐳁"],[68738,1,"𐳂"],[68739,1,"𐳃"],[68740,1,"𐳄"],[68741,1,"𐳅"],[68742,1,"𐳆"],[68743,1,"𐳇"],[68744,1,"𐳈"],[68745,1,"𐳉"],[68746,1,"𐳊"],[68747,1,"𐳋"],[68748,1,"𐳌"],[68749,1,"𐳍"],[68750,1,"𐳎"],[68751,1,"𐳏"],[68752,1,"𐳐"],[68753,1,"𐳑"],[68754,1,"𐳒"],[68755,1,"𐳓"],[68756,1,"𐳔"],[68757,1,"𐳕"],[68758,1,"𐳖"],[68759,1,"𐳗"],[68760,1,"𐳘"],[68761,1,"𐳙"],[68762,1,"𐳚"],[68763,1,"𐳛"],[68764,1,"𐳜"],[68765,1,"𐳝"],[68766,1,"𐳞"],[68767,1,"𐳟"],[68768,1,"𐳠"],[68769,1,"𐳡"],[68770,1,"𐳢"],[68771,1,"𐳣"],[68772,1,"𐳤"],[68773,1,"𐳥"],[68774,1,"𐳦"],[68775,1,"𐳧"],[68776,1,"𐳨"],[68777,1,"𐳩"],[68778,1,"𐳪"],[68779,1,"𐳫"],[68780,1,"𐳬"],[68781,1,"𐳭"],[68782,1,"𐳮"],[68783,1,"𐳯"],[68784,1,"𐳰"],[68785,1,"𐳱"],[68786,1,"𐳲"],[[68787,68799],3],[[68800,68850],2],[[68851,68857],3],[[68858,68863],2],[[68864,68903],2],[[68904,68911],3],[[68912,68921],2],[[68922,69215],3],[[69216,69246],2],[69247,3],[[69248,69289],2],[69290,3],[[69291,69292],2],[69293,2],[[69294,69295],3],[[69296,69297],2],[[69298,69372],3],[[69373,69375],2],[[69376,69404],2],[[69405,69414],2],[69415,2],[[69416,69423],3],[[69424,69456],2],[[69457,69465],2],[[69466,69487],3],[[69488,69509],2],[[69510,69513],2],[[69514,69551],3],[[69552,69572],2],[[69573,69579],2],[[69580,69599],3],[[69600,69622],2],[[69623,69631],3],[[69632,69702],2],[[69703,69709],2],[[69710,69713],3],[[69714,69733],2],[[69734,69743],2],[[69744,69749],2],[[69750,69758],3],[69759,2],[[69760,69818],2],[[69819,69820],2],[69821,3],[[69822,69825],2],[69826,2],[[69827,69836],3],[69837,3],[[69838,69839],3],[[69840,69864],2],[[69865,69871],3],[[69872,69881],2],[[69882,69887],3],[[69888,69940],2],[69941,3],[[69942,69951],2],[[69952,69955],2],[[69956,69958],2],[69959,2],[[69960,69967],3],[[69968,70003],2],[[70004,70005],2],[70006,2],[[70007,70015],3],[[70016,70084],2],[[70085,70088],2],[[70089,70092],2],[70093,2],[[70094,70095],2],[[70096,70105],2],[70106,2],[70107,2],[70108,2],[[70109,70111],2],[70112,3],[[70113,70132],2],[[70133,70143],3],[[70144,70161],2],[70162,3],[[70163,70199],2],[[70200,70205],2],[70206,2],[[70207,70209],2],[[70210,70271],3],[[70272,70278],2],[70279,3],[70280,2],[70281,3],[[70282,70285],2],[70286,3],[[70287,70301],2],[70302,3],[[70303,70312],2],[70313,2],[[70314,70319],3],[[70320,70378],2],[[70379,70383],3],[[70384,70393],2],[[70394,70399],3],[70400,2],[[70401,70403],2],[70404,3],[[70405,70412],2],[[70413,70414],3],[[70415,70416],2],[[70417,70418],3],[[70419,70440],2],[70441,3],[[70442,70448],2],[70449,3],[[70450,70451],2],[70452,3],[[70453,70457],2],[70458,3],[70459,2],[[70460,70468],2],[[70469,70470],3],[[70471,70472],2],[[70473,70474],3],[[70475,70477],2],[[70478,70479],3],[70480,2],[[70481,70486],3],[70487,2],[[70488,70492],3],[[70493,70499],2],[[70500,70501],3],[[70502,70508],2],[[70509,70511],3],[[70512,70516],2],[[70517,70655],3],[[70656,70730],2],[[70731,70735],2],[[70736,70745],2],[70746,2],[70747,2],[70748,3],[70749,2],[70750,2],[70751,2],[[70752,70753],2],[[70754,70783],3],[[70784,70853],2],[70854,2],[70855,2],[[70856,70863],3],[[70864,70873],2],[[70874,71039],3],[[71040,71093],2],[[71094,71095],3],[[71096,71104],2],[[71105,71113],2],[[71114,71127],2],[[71128,71133],2],[[71134,71167],3],[[71168,71232],2],[[71233,71235],2],[71236,2],[[71237,71247],3],[[71248,71257],2],[[71258,71263],3],[[71264,71276],2],[[71277,71295],3],[[71296,71351],2],[71352,2],[71353,2],[[71354,71359],3],[[71360,71369],2],[[71370,71423],3],[[71424,71449],2],[71450,2],[[71451,71452],3],[[71453,71467],2],[[71468,71471],3],[[71472,71481],2],[[71482,71487],2],[[71488,71494],2],[[71495,71679],3],[[71680,71738],2],[71739,2],[[71740,71839],3],[71840,1,"𑣀"],[71841,1,"𑣁"],[71842,1,"𑣂"],[71843,1,"𑣃"],[71844,1,"𑣄"],[71845,1,"𑣅"],[71846,1,"𑣆"],[71847,1,"𑣇"],[71848,1,"𑣈"],[71849,1,"𑣉"],[71850,1,"𑣊"],[71851,1,"𑣋"],[71852,1,"𑣌"],[71853,1,"𑣍"],[71854,1,"𑣎"],[71855,1,"𑣏"],[71856,1,"𑣐"],[71857,1,"𑣑"],[71858,1,"𑣒"],[71859,1,"𑣓"],[71860,1,"𑣔"],[71861,1,"𑣕"],[71862,1,"𑣖"],[71863,1,"𑣗"],[71864,1,"𑣘"],[71865,1,"𑣙"],[71866,1,"𑣚"],[71867,1,"𑣛"],[71868,1,"𑣜"],[71869,1,"𑣝"],[71870,1,"𑣞"],[71871,1,"𑣟"],[[71872,71913],2],[[71914,71922],2],[[71923,71934],3],[71935,2],[[71936,71942],2],[[71943,71944],3],[71945,2],[[71946,71947],3],[[71948,71955],2],[71956,3],[[71957,71958],2],[71959,3],[[71960,71989],2],[71990,3],[[71991,71992],2],[[71993,71994],3],[[71995,72003],2],[[72004,72006],2],[[72007,72015],3],[[72016,72025],2],[[72026,72095],3],[[72096,72103],2],[[72104,72105],3],[[72106,72151],2],[[72152,72153],3],[[72154,72161],2],[72162,2],[[72163,72164],2],[[72165,72191],3],[[72192,72254],2],[[72255,72262],2],[72263,2],[[72264,72271],3],[[72272,72323],2],[[72324,72325],2],[[72326,72345],2],[[72346,72348],2],[72349,2],[[72350,72354],2],[[72355,72367],3],[[72368,72383],2],[[72384,72440],2],[[72441,72447],3],[[72448,72457],2],[[72458,72703],3],[[72704,72712],2],[72713,3],[[72714,72758],2],[72759,3],[[72760,72768],2],[[72769,72773],2],[[72774,72783],3],[[72784,72793],2],[[72794,72812],2],[[72813,72815],3],[[72816,72817],2],[[72818,72847],2],[[72848,72849],3],[[72850,72871],2],[72872,3],[[72873,72886],2],[[72887,72959],3],[[72960,72966],2],[72967,3],[[72968,72969],2],[72970,3],[[72971,73014],2],[[73015,73017],3],[73018,2],[73019,3],[[73020,73021],2],[73022,3],[[73023,73031],2],[[73032,73039],3],[[73040,73049],2],[[73050,73055],3],[[73056,73061],2],[73062,3],[[73063,73064],2],[73065,3],[[73066,73102],2],[73103,3],[[73104,73105],2],[73106,3],[[73107,73112],2],[[73113,73119],3],[[73120,73129],2],[[73130,73439],3],[[73440,73462],2],[[73463,73464],2],[[73465,73471],3],[[73472,73488],2],[73489,3],[[73490,73530],2],[[73531,73533],3],[[73534,73538],2],[[73539,73551],2],[[73552,73561],2],[[73562,73647],3],[73648,2],[[73649,73663],3],[[73664,73713],2],[[73714,73726],3],[73727,2],[[73728,74606],2],[[74607,74648],2],[74649,2],[[74650,74751],3],[[74752,74850],2],[[74851,74862],2],[74863,3],[[74864,74867],2],[74868,2],[[74869,74879],3],[[74880,75075],2],[[75076,77711],3],[[77712,77808],2],[[77809,77810],2],[[77811,77823],3],[[77824,78894],2],[78895,2],[[78896,78904],3],[[78905,78911],3],[[78912,78933],2],[[78934,82943],3],[[82944,83526],2],[[83527,92159],3],[[92160,92728],2],[[92729,92735],3],[[92736,92766],2],[92767,3],[[92768,92777],2],[[92778,92781],3],[[92782,92783],2],[[92784,92862],2],[92863,3],[[92864,92873],2],[[92874,92879],3],[[92880,92909],2],[[92910,92911],3],[[92912,92916],2],[92917,2],[[92918,92927],3],[[92928,92982],2],[[92983,92991],2],[[92992,92995],2],[[92996,92997],2],[[92998,93007],3],[[93008,93017],2],[93018,3],[[93019,93025],2],[93026,3],[[93027,93047],2],[[93048,93052],3],[[93053,93071],2],[[93072,93759],3],[93760,1,"𖹠"],[93761,1,"𖹡"],[93762,1,"𖹢"],[93763,1,"𖹣"],[93764,1,"𖹤"],[93765,1,"𖹥"],[93766,1,"𖹦"],[93767,1,"𖹧"],[93768,1,"𖹨"],[93769,1,"𖹩"],[93770,1,"𖹪"],[93771,1,"𖹫"],[93772,1,"𖹬"],[93773,1,"𖹭"],[93774,1,"𖹮"],[93775,1,"𖹯"],[93776,1,"𖹰"],[93777,1,"𖹱"],[93778,1,"𖹲"],[93779,1,"𖹳"],[93780,1,"𖹴"],[93781,1,"𖹵"],[93782,1,"𖹶"],[93783,1,"𖹷"],[93784,1,"𖹸"],[93785,1,"𖹹"],[93786,1,"𖹺"],[93787,1,"𖹻"],[93788,1,"𖹼"],[93789,1,"𖹽"],[93790,1,"𖹾"],[93791,1,"𖹿"],[[93792,93823],2],[[93824,93850],2],[[93851,93951],3],[[93952,94020],2],[[94021,94026],2],[[94027,94030],3],[94031,2],[[94032,94078],2],[[94079,94087],2],[[94088,94094],3],[[94095,94111],2],[[94112,94175],3],[94176,2],[94177,2],[94178,2],[94179,2],[94180,2],[[94181,94191],3],[[94192,94193],2],[[94194,94207],3],[[94208,100332],2],[[100333,100337],2],[[100338,100343],2],[[100344,100351],3],[[100352,101106],2],[[101107,101589],2],[[101590,101631],3],[[101632,101640],2],[[101641,110575],3],[[110576,110579],2],[110580,3],[[110581,110587],2],[110588,3],[[110589,110590],2],[110591,3],[[110592,110593],2],[[110594,110878],2],[[110879,110882],2],[[110883,110897],3],[110898,2],[[110899,110927],3],[[110928,110930],2],[[110931,110932],3],[110933,2],[[110934,110947],3],[[110948,110951],2],[[110952,110959],3],[[110960,111355],2],[[111356,113663],3],[[113664,113770],2],[[113771,113775],3],[[113776,113788],2],[[113789,113791],3],[[113792,113800],2],[[113801,113807],3],[[113808,113817],2],[[113818,113819],3],[113820,2],[[113821,113822],2],[113823,2],[[113824,113827],7],[[113828,118527],3],[[118528,118573],2],[[118574,118575],3],[[118576,118598],2],[[118599,118607],3],[[118608,118723],2],[[118724,118783],3],[[118784,119029],2],[[119030,119039],3],[[119040,119078],2],[[119079,119080],3],[119081,2],[[119082,119133],2],[119134,1,"𝅗𝅥"],[119135,1,"𝅘𝅥"],[119136,1,"𝅘𝅥𝅮"],[119137,1,"𝅘𝅥𝅯"],[119138,1,"𝅘𝅥𝅰"],[119139,1,"𝅘𝅥𝅱"],[119140,1,"𝅘𝅥𝅲"],[[119141,119154],2],[[119155,119162],3],[[119163,119226],2],[119227,1,"𝆹𝅥"],[119228,1,"𝆺𝅥"],[119229,1,"𝆹𝅥𝅮"],[119230,1,"𝆺𝅥𝅮"],[119231,1,"𝆹𝅥𝅯"],[119232,1,"𝆺𝅥𝅯"],[[119233,119261],2],[[119262,119272],2],[[119273,119274],2],[[119275,119295],3],[[119296,119365],2],[[119366,119487],3],[[119488,119507],2],[[119508,119519],3],[[119520,119539],2],[[119540,119551],3],[[119552,119638],2],[[119639,119647],3],[[119648,119665],2],[[119666,119672],2],[[119673,119807],3],[119808,1,"a"],[119809,1,"b"],[119810,1,"c"],[119811,1,"d"],[119812,1,"e"],[119813,1,"f"],[119814,1,"g"],[119815,1,"h"],[119816,1,"i"],[119817,1,"j"],[119818,1,"k"],[119819,1,"l"],[119820,1,"m"],[119821,1,"n"],[119822,1,"o"],[119823,1,"p"],[119824,1,"q"],[119825,1,"r"],[119826,1,"s"],[119827,1,"t"],[119828,1,"u"],[119829,1,"v"],[119830,1,"w"],[119831,1,"x"],[119832,1,"y"],[119833,1,"z"],[119834,1,"a"],[119835,1,"b"],[119836,1,"c"],[119837,1,"d"],[119838,1,"e"],[119839,1,"f"],[119840,1,"g"],[119841,1,"h"],[119842,1,"i"],[119843,1,"j"],[119844,1,"k"],[119845,1,"l"],[119846,1,"m"],[119847,1,"n"],[119848,1,"o"],[119849,1,"p"],[119850,1,"q"],[119851,1,"r"],[119852,1,"s"],[119853,1,"t"],[119854,1,"u"],[119855,1,"v"],[119856,1,"w"],[119857,1,"x"],[119858,1,"y"],[119859,1,"z"],[119860,1,"a"],[119861,1,"b"],[119862,1,"c"],[119863,1,"d"],[119864,1,"e"],[119865,1,"f"],[119866,1,"g"],[119867,1,"h"],[119868,1,"i"],[119869,1,"j"],[119870,1,"k"],[119871,1,"l"],[119872,1,"m"],[119873,1,"n"],[119874,1,"o"],[119875,1,"p"],[119876,1,"q"],[119877,1,"r"],[119878,1,"s"],[119879,1,"t"],[119880,1,"u"],[119881,1,"v"],[119882,1,"w"],[119883,1,"x"],[119884,1,"y"],[119885,1,"z"],[119886,1,"a"],[119887,1,"b"],[119888,1,"c"],[119889,1,"d"],[119890,1,"e"],[119891,1,"f"],[119892,1,"g"],[119893,3],[119894,1,"i"],[119895,1,"j"],[119896,1,"k"],[119897,1,"l"],[119898,1,"m"],[119899,1,"n"],[119900,1,"o"],[119901,1,"p"],[119902,1,"q"],[119903,1,"r"],[119904,1,"s"],[119905,1,"t"],[119906,1,"u"],[119907,1,"v"],[119908,1,"w"],[119909,1,"x"],[119910,1,"y"],[119911,1,"z"],[119912,1,"a"],[119913,1,"b"],[119914,1,"c"],[119915,1,"d"],[119916,1,"e"],[119917,1,"f"],[119918,1,"g"],[119919,1,"h"],[119920,1,"i"],[119921,1,"j"],[119922,1,"k"],[119923,1,"l"],[119924,1,"m"],[119925,1,"n"],[119926,1,"o"],[119927,1,"p"],[119928,1,"q"],[119929,1,"r"],[119930,1,"s"],[119931,1,"t"],[119932,1,"u"],[119933,1,"v"],[119934,1,"w"],[119935,1,"x"],[119936,1,"y"],[119937,1,"z"],[119938,1,"a"],[119939,1,"b"],[119940,1,"c"],[119941,1,"d"],[119942,1,"e"],[119943,1,"f"],[119944,1,"g"],[119945,1,"h"],[119946,1,"i"],[119947,1,"j"],[119948,1,"k"],[119949,1,"l"],[119950,1,"m"],[119951,1,"n"],[119952,1,"o"],[119953,1,"p"],[119954,1,"q"],[119955,1,"r"],[119956,1,"s"],[119957,1,"t"],[119958,1,"u"],[119959,1,"v"],[119960,1,"w"],[119961,1,"x"],[119962,1,"y"],[119963,1,"z"],[119964,1,"a"],[119965,3],[119966,1,"c"],[119967,1,"d"],[[119968,119969],3],[119970,1,"g"],[[119971,119972],3],[119973,1,"j"],[119974,1,"k"],[[119975,119976],3],[119977,1,"n"],[119978,1,"o"],[119979,1,"p"],[119980,1,"q"],[119981,3],[119982,1,"s"],[119983,1,"t"],[119984,1,"u"],[119985,1,"v"],[119986,1,"w"],[119987,1,"x"],[119988,1,"y"],[119989,1,"z"],[119990,1,"a"],[119991,1,"b"],[119992,1,"c"],[119993,1,"d"],[119994,3],[119995,1,"f"],[119996,3],[119997,1,"h"],[119998,1,"i"],[119999,1,"j"],[120000,1,"k"],[120001,1,"l"],[120002,1,"m"],[120003,1,"n"],[120004,3],[120005,1,"p"],[120006,1,"q"],[120007,1,"r"],[120008,1,"s"],[120009,1,"t"],[120010,1,"u"],[120011,1,"v"],[120012,1,"w"],[120013,1,"x"],[120014,1,"y"],[120015,1,"z"],[120016,1,"a"],[120017,1,"b"],[120018,1,"c"],[120019,1,"d"],[120020,1,"e"],[120021,1,"f"],[120022,1,"g"],[120023,1,"h"],[120024,1,"i"],[120025,1,"j"],[120026,1,"k"],[120027,1,"l"],[120028,1,"m"],[120029,1,"n"],[120030,1,"o"],[120031,1,"p"],[120032,1,"q"],[120033,1,"r"],[120034,1,"s"],[120035,1,"t"],[120036,1,"u"],[120037,1,"v"],[120038,1,"w"],[120039,1,"x"],[120040,1,"y"],[120041,1,"z"],[120042,1,"a"],[120043,1,"b"],[120044,1,"c"],[120045,1,"d"],[120046,1,"e"],[120047,1,"f"],[120048,1,"g"],[120049,1,"h"],[120050,1,"i"],[120051,1,"j"],[120052,1,"k"],[120053,1,"l"],[120054,1,"m"],[120055,1,"n"],[120056,1,"o"],[120057,1,"p"],[120058,1,"q"],[120059,1,"r"],[120060,1,"s"],[120061,1,"t"],[120062,1,"u"],[120063,1,"v"],[120064,1,"w"],[120065,1,"x"],[120066,1,"y"],[120067,1,"z"],[120068,1,"a"],[120069,1,"b"],[120070,3],[120071,1,"d"],[120072,1,"e"],[120073,1,"f"],[120074,1,"g"],[[120075,120076],3],[120077,1,"j"],[120078,1,"k"],[120079,1,"l"],[120080,1,"m"],[120081,1,"n"],[120082,1,"o"],[120083,1,"p"],[120084,1,"q"],[120085,3],[120086,1,"s"],[120087,1,"t"],[120088,1,"u"],[120089,1,"v"],[120090,1,"w"],[120091,1,"x"],[120092,1,"y"],[120093,3],[120094,1,"a"],[120095,1,"b"],[120096,1,"c"],[120097,1,"d"],[120098,1,"e"],[120099,1,"f"],[120100,1,"g"],[120101,1,"h"],[120102,1,"i"],[120103,1,"j"],[120104,1,"k"],[120105,1,"l"],[120106,1,"m"],[120107,1,"n"],[120108,1,"o"],[120109,1,"p"],[120110,1,"q"],[120111,1,"r"],[120112,1,"s"],[120113,1,"t"],[120114,1,"u"],[120115,1,"v"],[120116,1,"w"],[120117,1,"x"],[120118,1,"y"],[120119,1,"z"],[120120,1,"a"],[120121,1,"b"],[120122,3],[120123,1,"d"],[120124,1,"e"],[120125,1,"f"],[120126,1,"g"],[120127,3],[120128,1,"i"],[120129,1,"j"],[120130,1,"k"],[120131,1,"l"],[120132,1,"m"],[120133,3],[120134,1,"o"],[[120135,120137],3],[120138,1,"s"],[120139,1,"t"],[120140,1,"u"],[120141,1,"v"],[120142,1,"w"],[120143,1,"x"],[120144,1,"y"],[120145,3],[120146,1,"a"],[120147,1,"b"],[120148,1,"c"],[120149,1,"d"],[120150,1,"e"],[120151,1,"f"],[120152,1,"g"],[120153,1,"h"],[120154,1,"i"],[120155,1,"j"],[120156,1,"k"],[120157,1,"l"],[120158,1,"m"],[120159,1,"n"],[120160,1,"o"],[120161,1,"p"],[120162,1,"q"],[120163,1,"r"],[120164,1,"s"],[120165,1,"t"],[120166,1,"u"],[120167,1,"v"],[120168,1,"w"],[120169,1,"x"],[120170,1,"y"],[120171,1,"z"],[120172,1,"a"],[120173,1,"b"],[120174,1,"c"],[120175,1,"d"],[120176,1,"e"],[120177,1,"f"],[120178,1,"g"],[120179,1,"h"],[120180,1,"i"],[120181,1,"j"],[120182,1,"k"],[120183,1,"l"],[120184,1,"m"],[120185,1,"n"],[120186,1,"o"],[120187,1,"p"],[120188,1,"q"],[120189,1,"r"],[120190,1,"s"],[120191,1,"t"],[120192,1,"u"],[120193,1,"v"],[120194,1,"w"],[120195,1,"x"],[120196,1,"y"],[120197,1,"z"],[120198,1,"a"],[120199,1,"b"],[120200,1,"c"],[120201,1,"d"],[120202,1,"e"],[120203,1,"f"],[120204,1,"g"],[120205,1,"h"],[120206,1,"i"],[120207,1,"j"],[120208,1,"k"],[120209,1,"l"],[120210,1,"m"],[120211,1,"n"],[120212,1,"o"],[120213,1,"p"],[120214,1,"q"],[120215,1,"r"],[120216,1,"s"],[120217,1,"t"],[120218,1,"u"],[120219,1,"v"],[120220,1,"w"],[120221,1,"x"],[120222,1,"y"],[120223,1,"z"],[120224,1,"a"],[120225,1,"b"],[120226,1,"c"],[120227,1,"d"],[120228,1,"e"],[120229,1,"f"],[120230,1,"g"],[120231,1,"h"],[120232,1,"i"],[120233,1,"j"],[120234,1,"k"],[120235,1,"l"],[120236,1,"m"],[120237,1,"n"],[120238,1,"o"],[120239,1,"p"],[120240,1,"q"],[120241,1,"r"],[120242,1,"s"],[120243,1,"t"],[120244,1,"u"],[120245,1,"v"],[120246,1,"w"],[120247,1,"x"],[120248,1,"y"],[120249,1,"z"],[120250,1,"a"],[120251,1,"b"],[120252,1,"c"],[120253,1,"d"],[120254,1,"e"],[120255,1,"f"],[120256,1,"g"],[120257,1,"h"],[120258,1,"i"],[120259,1,"j"],[120260,1,"k"],[120261,1,"l"],[120262,1,"m"],[120263,1,"n"],[120264,1,"o"],[120265,1,"p"],[120266,1,"q"],[120267,1,"r"],[120268,1,"s"],[120269,1,"t"],[120270,1,"u"],[120271,1,"v"],[120272,1,"w"],[120273,1,"x"],[120274,1,"y"],[120275,1,"z"],[120276,1,"a"],[120277,1,"b"],[120278,1,"c"],[120279,1,"d"],[120280,1,"e"],[120281,1,"f"],[120282,1,"g"],[120283,1,"h"],[120284,1,"i"],[120285,1,"j"],[120286,1,"k"],[120287,1,"l"],[120288,1,"m"],[120289,1,"n"],[120290,1,"o"],[120291,1,"p"],[120292,1,"q"],[120293,1,"r"],[120294,1,"s"],[120295,1,"t"],[120296,1,"u"],[120297,1,"v"],[120298,1,"w"],[120299,1,"x"],[120300,1,"y"],[120301,1,"z"],[120302,1,"a"],[120303,1,"b"],[120304,1,"c"],[120305,1,"d"],[120306,1,"e"],[120307,1,"f"],[120308,1,"g"],[120309,1,"h"],[120310,1,"i"],[120311,1,"j"],[120312,1,"k"],[120313,1,"l"],[120314,1,"m"],[120315,1,"n"],[120316,1,"o"],[120317,1,"p"],[120318,1,"q"],[120319,1,"r"],[120320,1,"s"],[120321,1,"t"],[120322,1,"u"],[120323,1,"v"],[120324,1,"w"],[120325,1,"x"],[120326,1,"y"],[120327,1,"z"],[120328,1,"a"],[120329,1,"b"],[120330,1,"c"],[120331,1,"d"],[120332,1,"e"],[120333,1,"f"],[120334,1,"g"],[120335,1,"h"],[120336,1,"i"],[120337,1,"j"],[120338,1,"k"],[120339,1,"l"],[120340,1,"m"],[120341,1,"n"],[120342,1,"o"],[120343,1,"p"],[120344,1,"q"],[120345,1,"r"],[120346,1,"s"],[120347,1,"t"],[120348,1,"u"],[120349,1,"v"],[120350,1,"w"],[120351,1,"x"],[120352,1,"y"],[120353,1,"z"],[120354,1,"a"],[120355,1,"b"],[120356,1,"c"],[120357,1,"d"],[120358,1,"e"],[120359,1,"f"],[120360,1,"g"],[120361,1,"h"],[120362,1,"i"],[120363,1,"j"],[120364,1,"k"],[120365,1,"l"],[120366,1,"m"],[120367,1,"n"],[120368,1,"o"],[120369,1,"p"],[120370,1,"q"],[120371,1,"r"],[120372,1,"s"],[120373,1,"t"],[120374,1,"u"],[120375,1,"v"],[120376,1,"w"],[120377,1,"x"],[120378,1,"y"],[120379,1,"z"],[120380,1,"a"],[120381,1,"b"],[120382,1,"c"],[120383,1,"d"],[120384,1,"e"],[120385,1,"f"],[120386,1,"g"],[120387,1,"h"],[120388,1,"i"],[120389,1,"j"],[120390,1,"k"],[120391,1,"l"],[120392,1,"m"],[120393,1,"n"],[120394,1,"o"],[120395,1,"p"],[120396,1,"q"],[120397,1,"r"],[120398,1,"s"],[120399,1,"t"],[120400,1,"u"],[120401,1,"v"],[120402,1,"w"],[120403,1,"x"],[120404,1,"y"],[120405,1,"z"],[120406,1,"a"],[120407,1,"b"],[120408,1,"c"],[120409,1,"d"],[120410,1,"e"],[120411,1,"f"],[120412,1,"g"],[120413,1,"h"],[120414,1,"i"],[120415,1,"j"],[120416,1,"k"],[120417,1,"l"],[120418,1,"m"],[120419,1,"n"],[120420,1,"o"],[120421,1,"p"],[120422,1,"q"],[120423,1,"r"],[120424,1,"s"],[120425,1,"t"],[120426,1,"u"],[120427,1,"v"],[120428,1,"w"],[120429,1,"x"],[120430,1,"y"],[120431,1,"z"],[120432,1,"a"],[120433,1,"b"],[120434,1,"c"],[120435,1,"d"],[120436,1,"e"],[120437,1,"f"],[120438,1,"g"],[120439,1,"h"],[120440,1,"i"],[120441,1,"j"],[120442,1,"k"],[120443,1,"l"],[120444,1,"m"],[120445,1,"n"],[120446,1,"o"],[120447,1,"p"],[120448,1,"q"],[120449,1,"r"],[120450,1,"s"],[120451,1,"t"],[120452,1,"u"],[120453,1,"v"],[120454,1,"w"],[120455,1,"x"],[120456,1,"y"],[120457,1,"z"],[120458,1,"a"],[120459,1,"b"],[120460,1,"c"],[120461,1,"d"],[120462,1,"e"],[120463,1,"f"],[120464,1,"g"],[120465,1,"h"],[120466,1,"i"],[120467,1,"j"],[120468,1,"k"],[120469,1,"l"],[120470,1,"m"],[120471,1,"n"],[120472,1,"o"],[120473,1,"p"],[120474,1,"q"],[120475,1,"r"],[120476,1,"s"],[120477,1,"t"],[120478,1,"u"],[120479,1,"v"],[120480,1,"w"],[120481,1,"x"],[120482,1,"y"],[120483,1,"z"],[120484,1,"ı"],[120485,1,"ȷ"],[[120486,120487],3],[120488,1,"α"],[120489,1,"β"],[120490,1,"γ"],[120491,1,"δ"],[120492,1,"ε"],[120493,1,"ζ"],[120494,1,"η"],[120495,1,"θ"],[120496,1,"ι"],[120497,1,"κ"],[120498,1,"λ"],[120499,1,"μ"],[120500,1,"ν"],[120501,1,"ξ"],[120502,1,"ο"],[120503,1,"π"],[120504,1,"ρ"],[120505,1,"θ"],[120506,1,"σ"],[120507,1,"τ"],[120508,1,"υ"],[120509,1,"φ"],[120510,1,"χ"],[120511,1,"ψ"],[120512,1,"ω"],[120513,1,"∇"],[120514,1,"α"],[120515,1,"β"],[120516,1,"γ"],[120517,1,"δ"],[120518,1,"ε"],[120519,1,"ζ"],[120520,1,"η"],[120521,1,"θ"],[120522,1,"ι"],[120523,1,"κ"],[120524,1,"λ"],[120525,1,"μ"],[120526,1,"ν"],[120527,1,"ξ"],[120528,1,"ο"],[120529,1,"π"],[120530,1,"ρ"],[[120531,120532],1,"σ"],[120533,1,"τ"],[120534,1,"υ"],[120535,1,"φ"],[120536,1,"χ"],[120537,1,"ψ"],[120538,1,"ω"],[120539,1,"∂"],[120540,1,"ε"],[120541,1,"θ"],[120542,1,"κ"],[120543,1,"φ"],[120544,1,"ρ"],[120545,1,"π"],[120546,1,"α"],[120547,1,"β"],[120548,1,"γ"],[120549,1,"δ"],[120550,1,"ε"],[120551,1,"ζ"],[120552,1,"η"],[120553,1,"θ"],[120554,1,"ι"],[120555,1,"κ"],[120556,1,"λ"],[120557,1,"μ"],[120558,1,"ν"],[120559,1,"ξ"],[120560,1,"ο"],[120561,1,"π"],[120562,1,"ρ"],[120563,1,"θ"],[120564,1,"σ"],[120565,1,"τ"],[120566,1,"υ"],[120567,1,"φ"],[120568,1,"χ"],[120569,1,"ψ"],[120570,1,"ω"],[120571,1,"∇"],[120572,1,"α"],[120573,1,"β"],[120574,1,"γ"],[120575,1,"δ"],[120576,1,"ε"],[120577,1,"ζ"],[120578,1,"η"],[120579,1,"θ"],[120580,1,"ι"],[120581,1,"κ"],[120582,1,"λ"],[120583,1,"μ"],[120584,1,"ν"],[120585,1,"ξ"],[120586,1,"ο"],[120587,1,"π"],[120588,1,"ρ"],[[120589,120590],1,"σ"],[120591,1,"τ"],[120592,1,"υ"],[120593,1,"φ"],[120594,1,"χ"],[120595,1,"ψ"],[120596,1,"ω"],[120597,1,"∂"],[120598,1,"ε"],[120599,1,"θ"],[120600,1,"κ"],[120601,1,"φ"],[120602,1,"ρ"],[120603,1,"π"],[120604,1,"α"],[120605,1,"β"],[120606,1,"γ"],[120607,1,"δ"],[120608,1,"ε"],[120609,1,"ζ"],[120610,1,"η"],[120611,1,"θ"],[120612,1,"ι"],[120613,1,"κ"],[120614,1,"λ"],[120615,1,"μ"],[120616,1,"ν"],[120617,1,"ξ"],[120618,1,"ο"],[120619,1,"π"],[120620,1,"ρ"],[120621,1,"θ"],[120622,1,"σ"],[120623,1,"τ"],[120624,1,"υ"],[120625,1,"φ"],[120626,1,"χ"],[120627,1,"ψ"],[120628,1,"ω"],[120629,1,"∇"],[120630,1,"α"],[120631,1,"β"],[120632,1,"γ"],[120633,1,"δ"],[120634,1,"ε"],[120635,1,"ζ"],[120636,1,"η"],[120637,1,"θ"],[120638,1,"ι"],[120639,1,"κ"],[120640,1,"λ"],[120641,1,"μ"],[120642,1,"ν"],[120643,1,"ξ"],[120644,1,"ο"],[120645,1,"π"],[120646,1,"ρ"],[[120647,120648],1,"σ"],[120649,1,"τ"],[120650,1,"υ"],[120651,1,"φ"],[120652,1,"χ"],[120653,1,"ψ"],[120654,1,"ω"],[120655,1,"∂"],[120656,1,"ε"],[120657,1,"θ"],[120658,1,"κ"],[120659,1,"φ"],[120660,1,"ρ"],[120661,1,"π"],[120662,1,"α"],[120663,1,"β"],[120664,1,"γ"],[120665,1,"δ"],[120666,1,"ε"],[120667,1,"ζ"],[120668,1,"η"],[120669,1,"θ"],[120670,1,"ι"],[120671,1,"κ"],[120672,1,"λ"],[120673,1,"μ"],[120674,1,"ν"],[120675,1,"ξ"],[120676,1,"ο"],[120677,1,"π"],[120678,1,"ρ"],[120679,1,"θ"],[120680,1,"σ"],[120681,1,"τ"],[120682,1,"υ"],[120683,1,"φ"],[120684,1,"χ"],[120685,1,"ψ"],[120686,1,"ω"],[120687,1,"∇"],[120688,1,"α"],[120689,1,"β"],[120690,1,"γ"],[120691,1,"δ"],[120692,1,"ε"],[120693,1,"ζ"],[120694,1,"η"],[120695,1,"θ"],[120696,1,"ι"],[120697,1,"κ"],[120698,1,"λ"],[120699,1,"μ"],[120700,1,"ν"],[120701,1,"ξ"],[120702,1,"ο"],[120703,1,"π"],[120704,1,"ρ"],[[120705,120706],1,"σ"],[120707,1,"τ"],[120708,1,"υ"],[120709,1,"φ"],[120710,1,"χ"],[120711,1,"ψ"],[120712,1,"ω"],[120713,1,"∂"],[120714,1,"ε"],[120715,1,"θ"],[120716,1,"κ"],[120717,1,"φ"],[120718,1,"ρ"],[120719,1,"π"],[120720,1,"α"],[120721,1,"β"],[120722,1,"γ"],[120723,1,"δ"],[120724,1,"ε"],[120725,1,"ζ"],[120726,1,"η"],[120727,1,"θ"],[120728,1,"ι"],[120729,1,"κ"],[120730,1,"λ"],[120731,1,"μ"],[120732,1,"ν"],[120733,1,"ξ"],[120734,1,"ο"],[120735,1,"π"],[120736,1,"ρ"],[120737,1,"θ"],[120738,1,"σ"],[120739,1,"τ"],[120740,1,"υ"],[120741,1,"φ"],[120742,1,"χ"],[120743,1,"ψ"],[120744,1,"ω"],[120745,1,"∇"],[120746,1,"α"],[120747,1,"β"],[120748,1,"γ"],[120749,1,"δ"],[120750,1,"ε"],[120751,1,"ζ"],[120752,1,"η"],[120753,1,"θ"],[120754,1,"ι"],[120755,1,"κ"],[120756,1,"λ"],[120757,1,"μ"],[120758,1,"ν"],[120759,1,"ξ"],[120760,1,"ο"],[120761,1,"π"],[120762,1,"ρ"],[[120763,120764],1,"σ"],[120765,1,"τ"],[120766,1,"υ"],[120767,1,"φ"],[120768,1,"χ"],[120769,1,"ψ"],[120770,1,"ω"],[120771,1,"∂"],[120772,1,"ε"],[120773,1,"θ"],[120774,1,"κ"],[120775,1,"φ"],[120776,1,"ρ"],[120777,1,"π"],[[120778,120779],1,"ϝ"],[[120780,120781],3],[120782,1,"0"],[120783,1,"1"],[120784,1,"2"],[120785,1,"3"],[120786,1,"4"],[120787,1,"5"],[120788,1,"6"],[120789,1,"7"],[120790,1,"8"],[120791,1,"9"],[120792,1,"0"],[120793,1,"1"],[120794,1,"2"],[120795,1,"3"],[120796,1,"4"],[120797,1,"5"],[120798,1,"6"],[120799,1,"7"],[120800,1,"8"],[120801,1,"9"],[120802,1,"0"],[120803,1,"1"],[120804,1,"2"],[120805,1,"3"],[120806,1,"4"],[120807,1,"5"],[120808,1,"6"],[120809,1,"7"],[120810,1,"8"],[120811,1,"9"],[120812,1,"0"],[120813,1,"1"],[120814,1,"2"],[120815,1,"3"],[120816,1,"4"],[120817,1,"5"],[120818,1,"6"],[120819,1,"7"],[120820,1,"8"],[120821,1,"9"],[120822,1,"0"],[120823,1,"1"],[120824,1,"2"],[120825,1,"3"],[120826,1,"4"],[120827,1,"5"],[120828,1,"6"],[120829,1,"7"],[120830,1,"8"],[120831,1,"9"],[[120832,121343],2],[[121344,121398],2],[[121399,121402],2],[[121403,121452],2],[[121453,121460],2],[121461,2],[[121462,121475],2],[121476,2],[[121477,121483],2],[[121484,121498],3],[[121499,121503],2],[121504,3],[[121505,121519],2],[[121520,122623],3],[[122624,122654],2],[[122655,122660],3],[[122661,122666],2],[[122667,122879],3],[[122880,122886],2],[122887,3],[[122888,122904],2],[[122905,122906],3],[[122907,122913],2],[122914,3],[[122915,122916],2],[122917,3],[[122918,122922],2],[[122923,122927],3],[122928,1,"а"],[122929,1,"б"],[122930,1,"в"],[122931,1,"г"],[122932,1,"д"],[122933,1,"е"],[122934,1,"ж"],[122935,1,"з"],[122936,1,"и"],[122937,1,"к"],[122938,1,"л"],[122939,1,"м"],[122940,1,"о"],[122941,1,"п"],[122942,1,"р"],[122943,1,"с"],[122944,1,"т"],[122945,1,"у"],[122946,1,"ф"],[122947,1,"х"],[122948,1,"ц"],[122949,1,"ч"],[122950,1,"ш"],[122951,1,"ы"],[122952,1,"э"],[122953,1,"ю"],[122954,1,"ꚉ"],[122955,1,"ә"],[122956,1,"і"],[122957,1,"ј"],[122958,1,"ө"],[122959,1,"ү"],[122960,1,"ӏ"],[122961,1,"а"],[122962,1,"б"],[122963,1,"в"],[122964,1,"г"],[122965,1,"д"],[122966,1,"е"],[122967,1,"ж"],[122968,1,"з"],[122969,1,"и"],[122970,1,"к"],[122971,1,"л"],[122972,1,"о"],[122973,1,"п"],[122974,1,"с"],[122975,1,"у"],[122976,1,"ф"],[122977,1,"х"],[122978,1,"ц"],[122979,1,"ч"],[122980,1,"ш"],[122981,1,"ъ"],[122982,1,"ы"],[122983,1,"ґ"],[122984,1,"і"],[122985,1,"ѕ"],[122986,1,"џ"],[122987,1,"ҫ"],[122988,1,"ꙑ"],[122989,1,"ұ"],[[122990,123022],3],[123023,2],[[123024,123135],3],[[123136,123180],2],[[123181,123183],3],[[123184,123197],2],[[123198,123199],3],[[123200,123209],2],[[123210,123213],3],[123214,2],[123215,2],[[123216,123535],3],[[123536,123566],2],[[123567,123583],3],[[123584,123641],2],[[123642,123646],3],[123647,2],[[123648,124111],3],[[124112,124153],2],[[124154,124895],3],[[124896,124902],2],[124903,3],[[124904,124907],2],[124908,3],[[124909,124910],2],[124911,3],[[124912,124926],2],[124927,3],[[124928,125124],2],[[125125,125126],3],[[125127,125135],2],[[125136,125142],2],[[125143,125183],3],[125184,1,"𞤢"],[125185,1,"𞤣"],[125186,1,"𞤤"],[125187,1,"𞤥"],[125188,1,"𞤦"],[125189,1,"𞤧"],[125190,1,"𞤨"],[125191,1,"𞤩"],[125192,1,"𞤪"],[125193,1,"𞤫"],[125194,1,"𞤬"],[125195,1,"𞤭"],[125196,1,"𞤮"],[125197,1,"𞤯"],[125198,1,"𞤰"],[125199,1,"𞤱"],[125200,1,"𞤲"],[125201,1,"𞤳"],[125202,1,"𞤴"],[125203,1,"𞤵"],[125204,1,"𞤶"],[125205,1,"𞤷"],[125206,1,"𞤸"],[125207,1,"𞤹"],[125208,1,"𞤺"],[125209,1,"𞤻"],[125210,1,"𞤼"],[125211,1,"𞤽"],[125212,1,"𞤾"],[125213,1,"𞤿"],[125214,1,"𞥀"],[125215,1,"𞥁"],[125216,1,"𞥂"],[125217,1,"𞥃"],[[125218,125258],2],[125259,2],[[125260,125263],3],[[125264,125273],2],[[125274,125277],3],[[125278,125279],2],[[125280,126064],3],[[126065,126132],2],[[126133,126208],3],[[126209,126269],2],[[126270,126463],3],[126464,1,"ا"],[126465,1,"ب"],[126466,1,"ج"],[126467,1,"د"],[126468,3],[126469,1,"و"],[126470,1,"ز"],[126471,1,"ح"],[126472,1,"ط"],[126473,1,"ي"],[126474,1,"ك"],[126475,1,"ل"],[126476,1,"م"],[126477,1,"ن"],[126478,1,"س"],[126479,1,"ع"],[126480,1,"ف"],[126481,1,"ص"],[126482,1,"ق"],[126483,1,"ر"],[126484,1,"ش"],[126485,1,"ت"],[126486,1,"ث"],[126487,1,"خ"],[126488,1,"ذ"],[126489,1,"ض"],[126490,1,"ظ"],[126491,1,"غ"],[126492,1,"ٮ"],[126493,1,"ں"],[126494,1,"ڡ"],[126495,1,"ٯ"],[126496,3],[126497,1,"ب"],[126498,1,"ج"],[126499,3],[126500,1,"ه"],[[126501,126502],3],[126503,1,"ح"],[126504,3],[126505,1,"ي"],[126506,1,"ك"],[126507,1,"ل"],[126508,1,"م"],[126509,1,"ن"],[126510,1,"س"],[126511,1,"ع"],[126512,1,"ف"],[126513,1,"ص"],[126514,1,"ق"],[126515,3],[126516,1,"ش"],[126517,1,"ت"],[126518,1,"ث"],[126519,1,"خ"],[126520,3],[126521,1,"ض"],[126522,3],[126523,1,"غ"],[[126524,126529],3],[126530,1,"ج"],[[126531,126534],3],[126535,1,"ح"],[126536,3],[126537,1,"ي"],[126538,3],[126539,1,"ل"],[126540,3],[126541,1,"ن"],[126542,1,"س"],[126543,1,"ع"],[126544,3],[126545,1,"ص"],[126546,1,"ق"],[126547,3],[126548,1,"ش"],[[126549,126550],3],[126551,1,"خ"],[126552,3],[126553,1,"ض"],[126554,3],[126555,1,"غ"],[126556,3],[126557,1,"ں"],[126558,3],[126559,1,"ٯ"],[126560,3],[126561,1,"ب"],[126562,1,"ج"],[126563,3],[126564,1,"ه"],[[126565,126566],3],[126567,1,"ح"],[126568,1,"ط"],[126569,1,"ي"],[126570,1,"ك"],[126571,3],[126572,1,"م"],[126573,1,"ن"],[126574,1,"س"],[126575,1,"ع"],[126576,1,"ف"],[126577,1,"ص"],[126578,1,"ق"],[126579,3],[126580,1,"ش"],[126581,1,"ت"],[126582,1,"ث"],[126583,1,"خ"],[126584,3],[126585,1,"ض"],[126586,1,"ظ"],[126587,1,"غ"],[126588,1,"ٮ"],[126589,3],[126590,1,"ڡ"],[126591,3],[126592,1,"ا"],[126593,1,"ب"],[126594,1,"ج"],[126595,1,"د"],[126596,1,"ه"],[126597,1,"و"],[126598,1,"ز"],[126599,1,"ح"],[126600,1,"ط"],[126601,1,"ي"],[126602,3],[126603,1,"ل"],[126604,1,"م"],[126605,1,"ن"],[126606,1,"س"],[126607,1,"ع"],[126608,1,"ف"],[126609,1,"ص"],[126610,1,"ق"],[126611,1,"ر"],[126612,1,"ش"],[126613,1,"ت"],[126614,1,"ث"],[126615,1,"خ"],[126616,1,"ذ"],[126617,1,"ض"],[126618,1,"ظ"],[126619,1,"غ"],[[126620,126624],3],[126625,1,"ب"],[126626,1,"ج"],[126627,1,"د"],[126628,3],[126629,1,"و"],[126630,1,"ز"],[126631,1,"ح"],[126632,1,"ط"],[126633,1,"ي"],[126634,3],[126635,1,"ل"],[126636,1,"م"],[126637,1,"ن"],[126638,1,"س"],[126639,1,"ع"],[126640,1,"ف"],[126641,1,"ص"],[126642,1,"ق"],[126643,1,"ر"],[126644,1,"ش"],[126645,1,"ت"],[126646,1,"ث"],[126647,1,"خ"],[126648,1,"ذ"],[126649,1,"ض"],[126650,1,"ظ"],[126651,1,"غ"],[[126652,126703],3],[[126704,126705],2],[[126706,126975],3],[[126976,127019],2],[[127020,127023],3],[[127024,127123],2],[[127124,127135],3],[[127136,127150],2],[[127151,127152],3],[[127153,127166],2],[127167,2],[127168,3],[[127169,127183],2],[127184,3],[[127185,127199],2],[[127200,127221],2],[[127222,127231],3],[127232,3],[127233,5,"0,"],[127234,5,"1,"],[127235,5,"2,"],[127236,5,"3,"],[127237,5,"4,"],[127238,5,"5,"],[127239,5,"6,"],[127240,5,"7,"],[127241,5,"8,"],[127242,5,"9,"],[[127243,127244],2],[[127245,127247],2],[127248,5,"(a)"],[127249,5,"(b)"],[127250,5,"(c)"],[127251,5,"(d)"],[127252,5,"(e)"],[127253,5,"(f)"],[127254,5,"(g)"],[127255,5,"(h)"],[127256,5,"(i)"],[127257,5,"(j)"],[127258,5,"(k)"],[127259,5,"(l)"],[127260,5,"(m)"],[127261,5,"(n)"],[127262,5,"(o)"],[127263,5,"(p)"],[127264,5,"(q)"],[127265,5,"(r)"],[127266,5,"(s)"],[127267,5,"(t)"],[127268,5,"(u)"],[127269,5,"(v)"],[127270,5,"(w)"],[127271,5,"(x)"],[127272,5,"(y)"],[127273,5,"(z)"],[127274,1,"〔s〕"],[127275,1,"c"],[127276,1,"r"],[127277,1,"cd"],[127278,1,"wz"],[127279,2],[127280,1,"a"],[127281,1,"b"],[127282,1,"c"],[127283,1,"d"],[127284,1,"e"],[127285,1,"f"],[127286,1,"g"],[127287,1,"h"],[127288,1,"i"],[127289,1,"j"],[127290,1,"k"],[127291,1,"l"],[127292,1,"m"],[127293,1,"n"],[127294,1,"o"],[127295,1,"p"],[127296,1,"q"],[127297,1,"r"],[127298,1,"s"],[127299,1,"t"],[127300,1,"u"],[127301,1,"v"],[127302,1,"w"],[127303,1,"x"],[127304,1,"y"],[127305,1,"z"],[127306,1,"hv"],[127307,1,"mv"],[127308,1,"sd"],[127309,1,"ss"],[127310,1,"ppv"],[127311,1,"wc"],[[127312,127318],2],[127319,2],[[127320,127326],2],[127327,2],[[127328,127337],2],[127338,1,"mc"],[127339,1,"md"],[127340,1,"mr"],[[127341,127343],2],[[127344,127352],2],[127353,2],[127354,2],[[127355,127356],2],[[127357,127358],2],[127359,2],[[127360,127369],2],[[127370,127373],2],[[127374,127375],2],[127376,1,"dj"],[[127377,127386],2],[[127387,127404],2],[127405,2],[[127406,127461],3],[[127462,127487],2],[127488,1,"ほか"],[127489,1,"ココ"],[127490,1,"サ"],[[127491,127503],3],[127504,1,"手"],[127505,1,"字"],[127506,1,"双"],[127507,1,"デ"],[127508,1,"二"],[127509,1,"多"],[127510,1,"解"],[127511,1,"天"],[127512,1,"交"],[127513,1,"映"],[127514,1,"無"],[127515,1,"料"],[127516,1,"前"],[127517,1,"後"],[127518,1,"再"],[127519,1,"新"],[127520,1,"初"],[127521,1,"終"],[127522,1,"生"],[127523,1,"販"],[127524,1,"声"],[127525,1,"吹"],[127526,1,"演"],[127527,1,"投"],[127528,1,"捕"],[127529,1,"一"],[127530,1,"三"],[127531,1,"遊"],[127532,1,"左"],[127533,1,"中"],[127534,1,"右"],[127535,1,"指"],[127536,1,"走"],[127537,1,"打"],[127538,1,"禁"],[127539,1,"空"],[127540,1,"合"],[127541,1,"満"],[127542,1,"有"],[127543,1,"月"],[127544,1,"申"],[127545,1,"割"],[127546,1,"営"],[127547,1,"配"],[[127548,127551],3],[127552,1,"〔本〕"],[127553,1,"〔三〕"],[127554,1,"〔二〕"],[127555,1,"〔安〕"],[127556,1,"〔点〕"],[127557,1,"〔打〕"],[127558,1,"〔盗〕"],[127559,1,"〔勝〕"],[127560,1,"〔敗〕"],[[127561,127567],3],[127568,1,"得"],[127569,1,"可"],[[127570,127583],3],[[127584,127589],2],[[127590,127743],3],[[127744,127776],2],[[127777,127788],2],[[127789,127791],2],[[127792,127797],2],[127798,2],[[127799,127868],2],[127869,2],[[127870,127871],2],[[127872,127891],2],[[127892,127903],2],[[127904,127940],2],[127941,2],[[127942,127946],2],[[127947,127950],2],[[127951,127955],2],[[127956,127967],2],[[127968,127984],2],[[127985,127991],2],[[127992,127999],2],[[128000,128062],2],[128063,2],[128064,2],[128065,2],[[128066,128247],2],[128248,2],[[128249,128252],2],[[128253,128254],2],[128255,2],[[128256,128317],2],[[128318,128319],2],[[128320,128323],2],[[128324,128330],2],[[128331,128335],2],[[128336,128359],2],[[128360,128377],2],[128378,2],[[128379,128419],2],[128420,2],[[128421,128506],2],[[128507,128511],2],[128512,2],[[128513,128528],2],[128529,2],[[128530,128532],2],[128533,2],[128534,2],[128535,2],[128536,2],[128537,2],[128538,2],[128539,2],[[128540,128542],2],[128543,2],[[128544,128549],2],[[128550,128551],2],[[128552,128555],2],[128556,2],[128557,2],[[128558,128559],2],[[128560,128563],2],[128564,2],[[128565,128576],2],[[128577,128578],2],[[128579,128580],2],[[128581,128591],2],[[128592,128639],2],[[128640,128709],2],[[128710,128719],2],[128720,2],[[128721,128722],2],[[128723,128724],2],[128725,2],[[128726,128727],2],[[128728,128731],3],[128732,2],[[128733,128735],2],[[128736,128748],2],[[128749,128751],3],[[128752,128755],2],[[128756,128758],2],[[128759,128760],2],[128761,2],[128762,2],[[128763,128764],2],[[128765,128767],3],[[128768,128883],2],[[128884,128886],2],[[128887,128890],3],[[128891,128895],2],[[128896,128980],2],[[128981,128984],2],[128985,2],[[128986,128991],3],[[128992,129003],2],[[129004,129007],3],[129008,2],[[129009,129023],3],[[129024,129035],2],[[129036,129039],3],[[129040,129095],2],[[129096,129103],3],[[129104,129113],2],[[129114,129119],3],[[129120,129159],2],[[129160,129167],3],[[129168,129197],2],[[129198,129199],3],[[129200,129201],2],[[129202,129279],3],[[129280,129291],2],[129292,2],[[129293,129295],2],[[129296,129304],2],[[129305,129310],2],[129311,2],[[129312,129319],2],[[129320,129327],2],[129328,2],[[129329,129330],2],[[129331,129342],2],[129343,2],[[129344,129355],2],[129356,2],[[129357,129359],2],[[129360,129374],2],[[129375,129387],2],[[129388,129392],2],[129393,2],[129394,2],[[129395,129398],2],[[129399,129400],2],[129401,2],[129402,2],[129403,2],[[129404,129407],2],[[129408,129412],2],[[129413,129425],2],[[129426,129431],2],[[129432,129442],2],[[129443,129444],2],[[129445,129450],2],[[129451,129453],2],[[129454,129455],2],[[129456,129465],2],[[129466,129471],2],[129472,2],[[129473,129474],2],[[129475,129482],2],[129483,2],[129484,2],[[129485,129487],2],[[129488,129510],2],[[129511,129535],2],[[129536,129619],2],[[129620,129631],3],[[129632,129645],2],[[129646,129647],3],[[129648,129651],2],[129652,2],[[129653,129655],2],[[129656,129658],2],[[129659,129660],2],[[129661,129663],3],[[129664,129666],2],[[129667,129670],2],[[129671,129672],2],[[129673,129679],3],[[129680,129685],2],[[129686,129704],2],[[129705,129708],2],[[129709,129711],2],[[129712,129718],2],[[129719,129722],2],[[129723,129725],2],[129726,3],[129727,2],[[129728,129730],2],[[129731,129733],2],[[129734,129741],3],[[129742,129743],2],[[129744,129750],2],[[129751,129753],2],[[129754,129755],2],[[129756,129759],3],[[129760,129767],2],[129768,2],[[129769,129775],3],[[129776,129782],2],[[129783,129784],2],[[129785,129791],3],[[129792,129938],2],[129939,3],[[129940,129994],2],[[129995,130031],3],[130032,1,"0"],[130033,1,"1"],[130034,1,"2"],[130035,1,"3"],[130036,1,"4"],[130037,1,"5"],[130038,1,"6"],[130039,1,"7"],[130040,1,"8"],[130041,1,"9"],[[130042,131069],3],[[131070,131071],3],[[131072,173782],2],[[173783,173789],2],[[173790,173791],2],[[173792,173823],3],[[173824,177972],2],[[177973,177976],2],[177977,2],[[177978,177983],3],[[177984,178205],2],[[178206,178207],3],[[178208,183969],2],[[183970,183983],3],[[183984,191456],2],[[191457,194559],3],[194560,1,"丽"],[194561,1,"丸"],[194562,1,"乁"],[194563,1,"𠄢"],[194564,1,"你"],[194565,1,"侮"],[194566,1,"侻"],[194567,1,"倂"],[194568,1,"偺"],[194569,1,"備"],[194570,1,"僧"],[194571,1,"像"],[194572,1,"㒞"],[194573,1,"𠘺"],[194574,1,"免"],[194575,1,"兔"],[194576,1,"兤"],[194577,1,"具"],[194578,1,"𠔜"],[194579,1,"㒹"],[194580,1,"內"],[194581,1,"再"],[194582,1,"𠕋"],[194583,1,"冗"],[194584,1,"冤"],[194585,1,"仌"],[194586,1,"冬"],[194587,1,"况"],[194588,1,"𩇟"],[194589,1,"凵"],[194590,1,"刃"],[194591,1,"㓟"],[194592,1,"刻"],[194593,1,"剆"],[194594,1,"割"],[194595,1,"剷"],[194596,1,"㔕"],[194597,1,"勇"],[194598,1,"勉"],[194599,1,"勤"],[194600,1,"勺"],[194601,1,"包"],[194602,1,"匆"],[194603,1,"北"],[194604,1,"卉"],[194605,1,"卑"],[194606,1,"博"],[194607,1,"即"],[194608,1,"卽"],[[194609,194611],1,"卿"],[194612,1,"𠨬"],[194613,1,"灰"],[194614,1,"及"],[194615,1,"叟"],[194616,1,"𠭣"],[194617,1,"叫"],[194618,1,"叱"],[194619,1,"吆"],[194620,1,"咞"],[194621,1,"吸"],[194622,1,"呈"],[194623,1,"周"],[194624,1,"咢"],[194625,1,"哶"],[194626,1,"唐"],[194627,1,"啓"],[194628,1,"啣"],[[194629,194630],1,"善"],[194631,1,"喙"],[194632,1,"喫"],[194633,1,"喳"],[194634,1,"嗂"],[194635,1,"圖"],[194636,1,"嘆"],[194637,1,"圗"],[194638,1,"噑"],[194639,1,"噴"],[194640,1,"切"],[194641,1,"壮"],[194642,1,"城"],[194643,1,"埴"],[194644,1,"堍"],[194645,1,"型"],[194646,1,"堲"],[194647,1,"報"],[194648,1,"墬"],[194649,1,"𡓤"],[194650,1,"売"],[194651,1,"壷"],[194652,1,"夆"],[194653,1,"多"],[194654,1,"夢"],[194655,1,"奢"],[194656,1,"𡚨"],[194657,1,"𡛪"],[194658,1,"姬"],[194659,1,"娛"],[194660,1,"娧"],[194661,1,"姘"],[194662,1,"婦"],[194663,1,"㛮"],[194664,3],[194665,1,"嬈"],[[194666,194667],1,"嬾"],[194668,1,"𡧈"],[194669,1,"寃"],[194670,1,"寘"],[194671,1,"寧"],[194672,1,"寳"],[194673,1,"𡬘"],[194674,1,"寿"],[194675,1,"将"],[194676,3],[194677,1,"尢"],[194678,1,"㞁"],[194679,1,"屠"],[194680,1,"屮"],[194681,1,"峀"],[194682,1,"岍"],[194683,1,"𡷤"],[194684,1,"嵃"],[194685,1,"𡷦"],[194686,1,"嵮"],[194687,1,"嵫"],[194688,1,"嵼"],[194689,1,"巡"],[194690,1,"巢"],[194691,1,"㠯"],[194692,1,"巽"],[194693,1,"帨"],[194694,1,"帽"],[194695,1,"幩"],[194696,1,"㡢"],[194697,1,"𢆃"],[194698,1,"㡼"],[194699,1,"庰"],[194700,1,"庳"],[194701,1,"庶"],[194702,1,"廊"],[194703,1,"𪎒"],[194704,1,"廾"],[[194705,194706],1,"𢌱"],[194707,1,"舁"],[[194708,194709],1,"弢"],[194710,1,"㣇"],[194711,1,"𣊸"],[194712,1,"𦇚"],[194713,1,"形"],[194714,1,"彫"],[194715,1,"㣣"],[194716,1,"徚"],[194717,1,"忍"],[194718,1,"志"],[194719,1,"忹"],[194720,1,"悁"],[194721,1,"㤺"],[194722,1,"㤜"],[194723,1,"悔"],[194724,1,"𢛔"],[194725,1,"惇"],[194726,1,"慈"],[194727,1,"慌"],[194728,1,"慎"],[194729,1,"慌"],[194730,1,"慺"],[194731,1,"憎"],[194732,1,"憲"],[194733,1,"憤"],[194734,1,"憯"],[194735,1,"懞"],[194736,1,"懲"],[194737,1,"懶"],[194738,1,"成"],[194739,1,"戛"],[194740,1,"扝"],[194741,1,"抱"],[194742,1,"拔"],[194743,1,"捐"],[194744,1,"𢬌"],[194745,1,"挽"],[194746,1,"拼"],[194747,1,"捨"],[194748,1,"掃"],[194749,1,"揤"],[194750,1,"𢯱"],[194751,1,"搢"],[194752,1,"揅"],[194753,1,"掩"],[194754,1,"㨮"],[194755,1,"摩"],[194756,1,"摾"],[194757,1,"撝"],[194758,1,"摷"],[194759,1,"㩬"],[194760,1,"敏"],[194761,1,"敬"],[194762,1,"𣀊"],[194763,1,"旣"],[194764,1,"書"],[194765,1,"晉"],[194766,1,"㬙"],[194767,1,"暑"],[194768,1,"㬈"],[194769,1,"㫤"],[194770,1,"冒"],[194771,1,"冕"],[194772,1,"最"],[194773,1,"暜"],[194774,1,"肭"],[194775,1,"䏙"],[194776,1,"朗"],[194777,1,"望"],[194778,1,"朡"],[194779,1,"杞"],[194780,1,"杓"],[194781,1,"𣏃"],[194782,1,"㭉"],[194783,1,"柺"],[194784,1,"枅"],[194785,1,"桒"],[194786,1,"梅"],[194787,1,"𣑭"],[194788,1,"梎"],[194789,1,"栟"],[194790,1,"椔"],[194791,1,"㮝"],[194792,1,"楂"],[194793,1,"榣"],[194794,1,"槪"],[194795,1,"檨"],[194796,1,"𣚣"],[194797,1,"櫛"],[194798,1,"㰘"],[194799,1,"次"],[194800,1,"𣢧"],[194801,1,"歔"],[194802,1,"㱎"],[194803,1,"歲"],[194804,1,"殟"],[194805,1,"殺"],[194806,1,"殻"],[194807,1,"𣪍"],[194808,1,"𡴋"],[194809,1,"𣫺"],[194810,1,"汎"],[194811,1,"𣲼"],[194812,1,"沿"],[194813,1,"泍"],[194814,1,"汧"],[194815,1,"洖"],[194816,1,"派"],[194817,1,"海"],[194818,1,"流"],[194819,1,"浩"],[194820,1,"浸"],[194821,1,"涅"],[194822,1,"𣴞"],[194823,1,"洴"],[194824,1,"港"],[194825,1,"湮"],[194826,1,"㴳"],[194827,1,"滋"],[194828,1,"滇"],[194829,1,"𣻑"],[194830,1,"淹"],[194831,1,"潮"],[194832,1,"𣽞"],[194833,1,"𣾎"],[194834,1,"濆"],[194835,1,"瀹"],[194836,1,"瀞"],[194837,1,"瀛"],[194838,1,"㶖"],[194839,1,"灊"],[194840,1,"災"],[194841,1,"灷"],[194842,1,"炭"],[194843,1,"𠔥"],[194844,1,"煅"],[194845,1,"𤉣"],[194846,1,"熜"],[194847,3],[194848,1,"爨"],[194849,1,"爵"],[194850,1,"牐"],[194851,1,"𤘈"],[194852,1,"犀"],[194853,1,"犕"],[194854,1,"𤜵"],[194855,1,"𤠔"],[194856,1,"獺"],[194857,1,"王"],[194858,1,"㺬"],[194859,1,"玥"],[[194860,194861],1,"㺸"],[194862,1,"瑇"],[194863,1,"瑜"],[194864,1,"瑱"],[194865,1,"璅"],[194866,1,"瓊"],[194867,1,"㼛"],[194868,1,"甤"],[194869,1,"𤰶"],[194870,1,"甾"],[194871,1,"𤲒"],[194872,1,"異"],[194873,1,"𢆟"],[194874,1,"瘐"],[194875,1,"𤾡"],[194876,1,"𤾸"],[194877,1,"𥁄"],[194878,1,"㿼"],[194879,1,"䀈"],[194880,1,"直"],[194881,1,"𥃳"],[194882,1,"𥃲"],[194883,1,"𥄙"],[194884,1,"𥄳"],[194885,1,"眞"],[[194886,194887],1,"真"],[194888,1,"睊"],[194889,1,"䀹"],[194890,1,"瞋"],[194891,1,"䁆"],[194892,1,"䂖"],[194893,1,"𥐝"],[194894,1,"硎"],[194895,1,"碌"],[194896,1,"磌"],[194897,1,"䃣"],[194898,1,"𥘦"],[194899,1,"祖"],[194900,1,"𥚚"],[194901,1,"𥛅"],[194902,1,"福"],[194903,1,"秫"],[194904,1,"䄯"],[194905,1,"穀"],[194906,1,"穊"],[194907,1,"穏"],[194908,1,"𥥼"],[[194909,194910],1,"𥪧"],[194911,3],[194912,1,"䈂"],[194913,1,"𥮫"],[194914,1,"篆"],[194915,1,"築"],[194916,1,"䈧"],[194917,1,"𥲀"],[194918,1,"糒"],[194919,1,"䊠"],[194920,1,"糨"],[194921,1,"糣"],[194922,1,"紀"],[194923,1,"𥾆"],[194924,1,"絣"],[194925,1,"䌁"],[194926,1,"緇"],[194927,1,"縂"],[194928,1,"繅"],[194929,1,"䌴"],[194930,1,"𦈨"],[194931,1,"𦉇"],[194932,1,"䍙"],[194933,1,"𦋙"],[194934,1,"罺"],[194935,1,"𦌾"],[194936,1,"羕"],[194937,1,"翺"],[194938,1,"者"],[194939,1,"𦓚"],[194940,1,"𦔣"],[194941,1,"聠"],[194942,1,"𦖨"],[194943,1,"聰"],[194944,1,"𣍟"],[194945,1,"䏕"],[194946,1,"育"],[194947,1,"脃"],[194948,1,"䐋"],[194949,1,"脾"],[194950,1,"媵"],[194951,1,"𦞧"],[194952,1,"𦞵"],[194953,1,"𣎓"],[194954,1,"𣎜"],[194955,1,"舁"],[194956,1,"舄"],[194957,1,"辞"],[194958,1,"䑫"],[194959,1,"芑"],[194960,1,"芋"],[194961,1,"芝"],[194962,1,"劳"],[194963,1,"花"],[194964,1,"芳"],[194965,1,"芽"],[194966,1,"苦"],[194967,1,"𦬼"],[194968,1,"若"],[194969,1,"茝"],[194970,1,"荣"],[194971,1,"莭"],[194972,1,"茣"],[194973,1,"莽"],[194974,1,"菧"],[194975,1,"著"],[194976,1,"荓"],[194977,1,"菊"],[194978,1,"菌"],[194979,1,"菜"],[194980,1,"𦰶"],[194981,1,"𦵫"],[194982,1,"𦳕"],[194983,1,"䔫"],[194984,1,"蓱"],[194985,1,"蓳"],[194986,1,"蔖"],[194987,1,"𧏊"],[194988,1,"蕤"],[194989,1,"𦼬"],[194990,1,"䕝"],[194991,1,"䕡"],[194992,1,"𦾱"],[194993,1,"𧃒"],[194994,1,"䕫"],[194995,1,"虐"],[194996,1,"虜"],[194997,1,"虧"],[194998,1,"虩"],[194999,1,"蚩"],[195000,1,"蚈"],[195001,1,"蜎"],[195002,1,"蛢"],[195003,1,"蝹"],[195004,1,"蜨"],[195005,1,"蝫"],[195006,1,"螆"],[195007,3],[195008,1,"蟡"],[195009,1,"蠁"],[195010,1,"䗹"],[195011,1,"衠"],[195012,1,"衣"],[195013,1,"𧙧"],[195014,1,"裗"],[195015,1,"裞"],[195016,1,"䘵"],[195017,1,"裺"],[195018,1,"㒻"],[195019,1,"𧢮"],[195020,1,"𧥦"],[195021,1,"䚾"],[195022,1,"䛇"],[195023,1,"誠"],[195024,1,"諭"],[195025,1,"變"],[195026,1,"豕"],[195027,1,"𧲨"],[195028,1,"貫"],[195029,1,"賁"],[195030,1,"贛"],[195031,1,"起"],[195032,1,"𧼯"],[195033,1,"𠠄"],[195034,1,"跋"],[195035,1,"趼"],[195036,1,"跰"],[195037,1,"𠣞"],[195038,1,"軔"],[195039,1,"輸"],[195040,1,"𨗒"],[195041,1,"𨗭"],[195042,1,"邔"],[195043,1,"郱"],[195044,1,"鄑"],[195045,1,"𨜮"],[195046,1,"鄛"],[195047,1,"鈸"],[195048,1,"鋗"],[195049,1,"鋘"],[195050,1,"鉼"],[195051,1,"鏹"],[195052,1,"鐕"],[195053,1,"𨯺"],[195054,1,"開"],[195055,1,"䦕"],[195056,1,"閷"],[195057,1,"𨵷"],[195058,1,"䧦"],[195059,1,"雃"],[195060,1,"嶲"],[195061,1,"霣"],[195062,1,"𩅅"],[195063,1,"𩈚"],[195064,1,"䩮"],[195065,1,"䩶"],[195066,1,"韠"],[195067,1,"𩐊"],[195068,1,"䪲"],[195069,1,"𩒖"],[[195070,195071],1,"頋"],[195072,1,"頩"],[195073,1,"𩖶"],[195074,1,"飢"],[195075,1,"䬳"],[195076,1,"餩"],[195077,1,"馧"],[195078,1,"駂"],[195079,1,"駾"],[195080,1,"䯎"],[195081,1,"𩬰"],[195082,1,"鬒"],[195083,1,"鱀"],[195084,1,"鳽"],[195085,1,"䳎"],[195086,1,"䳭"],[195087,1,"鵧"],[195088,1,"𪃎"],[195089,1,"䳸"],[195090,1,"𪄅"],[195091,1,"𪈎"],[195092,1,"𪊑"],[195093,1,"麻"],[195094,1,"䵖"],[195095,1,"黹"],[195096,1,"黾"],[195097,1,"鼅"],[195098,1,"鼏"],[195099,1,"鼖"],[195100,1,"鼻"],[195101,1,"𪘀"],[[195102,196605],3],[[196606,196607],3],[[196608,201546],2],[[201547,201551],3],[[201552,205743],2],[[205744,262141],3],[[262142,262143],3],[[262144,327677],3],[[327678,327679],3],[[327680,393213],3],[[393214,393215],3],[[393216,458749],3],[[458750,458751],3],[[458752,524285],3],[[524286,524287],3],[[524288,589821],3],[[589822,589823],3],[[589824,655357],3],[[655358,655359],3],[[655360,720893],3],[[720894,720895],3],[[720896,786429],3],[[786430,786431],3],[[786432,851965],3],[[851966,851967],3],[[851968,917501],3],[[917502,917503],3],[917504,3],[917505,3],[[917506,917535],3],[[917536,917631],3],[[917632,917759],3],[[917760,917999],7],[[918000,983037],3],[[983038,983039],3],[[983040,1048573],3],[[1048574,1048575],3],[[1048576,1114109],3],[[1114110,1114111],3]]')}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var n=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e].call(n.exports,n,n.exports,__webpack_require__),n.exports}__webpack_require__.amdO={},__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t},__webpack_require__.d=(e,t)=>{for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),__webpack_require__.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var __webpack_exports__={};return(()=>{"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{default:()=>Ww});var e=__webpack_require__(64756),t=__webpack_require__(79896),n=__webpack_require__(58611),r=__webpack_require__(87016);const o=require("http2");var i,s=__webpack_require__(68561);!function(e){e[e.CONTINUE=100]="CONTINUE",e[e.SWITCHING_PROTOCOLS=101]="SWITCHING_PROTOCOLS",e[e.PROCESSING=102]="PROCESSING",e[e.EARLY_HINTS=103]="EARLY_HINTS",e[e.OK=200]="OK",e[e.CREATED=201]="CREATED",e[e.ACCEPTED=202]="ACCEPTED",e[e.NON_AUTHORITATIVE_INFORMATION=203]="NON_AUTHORITATIVE_INFORMATION",e[e.NO_CONTENT=204]="NO_CONTENT",e[e.RESET_CONTENT=205]="RESET_CONTENT",e[e.PARTIAL_CONTENT=206]="PARTIAL_CONTENT",e[e.MULTI_STATUS=207]="MULTI_STATUS",e[e.MULTIPLE_CHOICES=300]="MULTIPLE_CHOICES",e[e.MOVED_PERMANENTLY=301]="MOVED_PERMANENTLY",e[e.MOVED_TEMPORARILY=302]="MOVED_TEMPORARILY",e[e.SEE_OTHER=303]="SEE_OTHER",e[e.NOT_MODIFIED=304]="NOT_MODIFIED",e[e.USE_PROXY=305]="USE_PROXY",e[e.TEMPORARY_REDIRECT=307]="TEMPORARY_REDIRECT",e[e.PERMANENT_REDIRECT=308]="PERMANENT_REDIRECT",e[e.BAD_REQUEST=400]="BAD_REQUEST",e[e.UNAUTHORIZED=401]="UNAUTHORIZED",e[e.PAYMENT_REQUIRED=402]="PAYMENT_REQUIRED",e[e.FORBIDDEN=403]="FORBIDDEN",e[e.NOT_FOUND=404]="NOT_FOUND",e[e.METHOD_NOT_ALLOWED=405]="METHOD_NOT_ALLOWED",e[e.NOT_ACCEPTABLE=406]="NOT_ACCEPTABLE",e[e.PROXY_AUTHENTICATION_REQUIRED=407]="PROXY_AUTHENTICATION_REQUIRED",e[e.REQUEST_TIMEOUT=408]="REQUEST_TIMEOUT",e[e.CONFLICT=409]="CONFLICT",e[e.GONE=410]="GONE",e[e.LENGTH_REQUIRED=411]="LENGTH_REQUIRED",e[e.PRECONDITION_FAILED=412]="PRECONDITION_FAILED",e[e.REQUEST_TOO_LONG=413]="REQUEST_TOO_LONG",e[e.REQUEST_URI_TOO_LONG=414]="REQUEST_URI_TOO_LONG",e[e.UNSUPPORTED_MEDIA_TYPE=415]="UNSUPPORTED_MEDIA_TYPE",e[e.REQUESTED_RANGE_NOT_SATISFIABLE=416]="REQUESTED_RANGE_NOT_SATISFIABLE",e[e.EXPECTATION_FAILED=417]="EXPECTATION_FAILED",e[e.IM_A_TEAPOT=418]="IM_A_TEAPOT",e[e.INSUFFICIENT_SPACE_ON_RESOURCE=419]="INSUFFICIENT_SPACE_ON_RESOURCE",e[e.METHOD_FAILURE=420]="METHOD_FAILURE",e[e.MISDIRECTED_REQUEST=421]="MISDIRECTED_REQUEST",e[e.UNPROCESSABLE_ENTITY=422]="UNPROCESSABLE_ENTITY",e[e.LOCKED=423]="LOCKED",e[e.FAILED_DEPENDENCY=424]="FAILED_DEPENDENCY",e[e.UPGRADE_REQUIRED=426]="UPGRADE_REQUIRED",e[e.PRECONDITION_REQUIRED=428]="PRECONDITION_REQUIRED",e[e.TOO_MANY_REQUESTS=429]="TOO_MANY_REQUESTS",e[e.REQUEST_HEADER_FIELDS_TOO_LARGE=431]="REQUEST_HEADER_FIELDS_TOO_LARGE",e[e.UNAVAILABLE_FOR_LEGAL_REASONS=451]="UNAVAILABLE_FOR_LEGAL_REASONS",e[e.INTERNAL_SERVER_ERROR=500]="INTERNAL_SERVER_ERROR",e[e.NOT_IMPLEMENTED=501]="NOT_IMPLEMENTED",e[e.BAD_GATEWAY=502]="BAD_GATEWAY",e[e.SERVICE_UNAVAILABLE=503]="SERVICE_UNAVAILABLE",e[e.GATEWAY_TIMEOUT=504]="GATEWAY_TIMEOUT",e[e.HTTP_VERSION_NOT_SUPPORTED=505]="HTTP_VERSION_NOT_SUPPORTED",e[e.INSUFFICIENT_STORAGE=507]="INSUFFICIENT_STORAGE",e[e.NETWORK_AUTHENTICATION_REQUIRED=511]="NETWORK_AUTHENTICATION_REQUIRED"}(i||(i={}));var a=__webpack_require__(65692),u=__webpack_require__(74353);function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function l(e,t){for(var n=0;ne.length)&&(t=e.length);for(var n=0,r=Array(t);n=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}(this.Properties);try{for(r.s();!(n=r.n()).done&&null===(t=n.value.Find(e)););}catch(e){r.e(e)}finally{r.f()}}return t}}])&&A(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t}();function T(e){return T="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},T(e)}function w(e,t,n){return t=R(t),function(e,t){if(t&&("object"==T(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(e,O()?Reflect.construct(t,n||[],R(e).constructor):t.apply(e,n))}function O(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(O=function(){return!!e})()}function R(e){return R=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},R(e)}function S(e,t){return S=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},S(e,t)}var I=function(e){function t(e,n){var r;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(r=w(this,t,[e])).Value=n,r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&S(e,t)}(t,e),n=t,Object.defineProperty(n,"prototype",{writable:!1}),n;var n}(b);function N(e){return N="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},N(e)}function C(e,t,n){return t=L(t),function(e,t){if(t&&("object"==N(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(e,D()?Reflect.construct(t,n||[],L(e).constructor):t.apply(e,n))}function D(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(D=function(){return!!e})()}function L(e){return L=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},L(e)}function M(e,t){return M=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},M(e,t)}var x=function(e){function t(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),C(this,t,[e])}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&M(e,t)}(t,e),n=t,Object.defineProperty(n,"prototype",{writable:!1}),n;var n}(b);function B(e){return B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},B(e)}function P(e,t,n){return t=U(t),function(e,t){if(t&&("object"==B(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(e,F()?Reflect.construct(t,n||[],U(e).constructor):t.apply(e,n))}function F(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(F=function(){return!!e})()}function U(e){return U=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},U(e)}function k(e,t){return k=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},k(e,t)}var j=function(e){function t(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),P(this,t,[e])}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&k(e,t)}(t,e),n=t,Object.defineProperty(n,"prototype",{writable:!1}),n;var n}(b);function G(e){return G="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},G(e)}function V(e,t,n){return t=H(t),function(e,t){if(t&&("object"==G(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(e,Y()?Reflect.construct(t,n||[],H(e).constructor):t.apply(e,n))}function Y(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(Y=function(){return!!e})()}function H(e){return H=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},H(e)}function Q(e,t){return Q=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},Q(e,t)}var W=function(e){function t(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),V(this,t,[e])}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Q(e,t)}(t,e),n=t,Object.defineProperty(n,"prototype",{writable:!1}),n;var n}(j);function z(e){return z="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},z(e)}function q(e,t){for(var n=0;n=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function re(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0){var u,c=ne(r);try{for(c.s();!(u=c.n()).done;){var l=u.value;if(l.Name.includes("__"))t.push(this.convert(l));else{Array.isArray(t)&&(t={});var h=this.convert(l);for(var f in h){var p=h[f];t[f]=p}}}}catch(e){c.e(e)}finally{c.f()}}else t=e.Value;var d={};return d[n.toLowerCase()]=t,d}}])&&oe(t.prototype,n),r&&oe(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,n,r}();function ae(e){return ae="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ae(e)}function ue(e){var t="function"==typeof Map?new Map:void 0;return ue=function(e){if(null===e||!function(e){try{return-1!==Function.toString.call(e).indexOf("[native code]")}catch(t){return"function"==typeof e}}(e))return e;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return function(e,t,n){if(ce())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,t);var o=new(e.bind.apply(e,r));return n&&le(o,n.prototype),o}(e,arguments,he(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),le(n,e)},ue(e)}function ce(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(ce=function(){return!!e})()}function le(e,t){return le=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},le(e,t)}function he(e){return he=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},he(e)}var fe=function(e){function t(e,n){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t,n){return t=he(t),function(e,t){if(t&&("object"==ae(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(e,ce()?Reflect.construct(t,n||[],he(e).constructor):t.apply(e,n))}(this,t,[e,{cause:n}])}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&le(e,t)}(t,e),n=t,Object.defineProperty(n,"prototype",{writable:!1}),n;var n}(ue(Error));function pe(e){return pe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},pe(e)}function de(e,t){for(var n=0;ne.length)&&(t=e.length);for(var n=0,r=Array(t);n=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}(this._logs);try{for(n.s();!(t=n.n()).done;){var r=t.value;if(e[r.title]){for(var o=0,i="".concat(r.title,"_").concat(o);e[i];)o++,"".concat(r.title,"_").concat(o),ye("newTitle");e[i]=r.value}else e[r.title]=r.value}}catch(e){n.e(e)}finally{n.f()}}}])&&ve(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t}();const we="NotSet",Oe="Successful",Re="MinSizeError",Se="MaxSizeError",Ie="TotalSizeError",Ne="MimeTypePermissionError",Ce="StepNotFoundError",De="InvalidProcessTypeError",Le="StepError",Me="SuitableProcessNotFound";function xe(e){return xe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},xe(e)}function Be(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}(this._children);try{for(n.s();!(t=n.n()).done&&!(e=t.value.processedByChild()););}catch(e){n.e(e)}finally{n.f()}}return e}},{key:"AddLog",value:function(e,t){this._logger.add(e,t)}},{key:"toString",value:function(){return"".concat(this.name,", ").concat(this.mime,", ").concat(this.payload.length," (").concat(this.status,")")}},{key:"getLogs",value:function(){var e={};return this._addNodeLog(this,e),e}},{key:"_addNodeLog",value:function(e,t){e.parent&&this._addNodeLog(e.parent,t),e._logger.addLogs(t)}}])&&Pe(t.prototype,n),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,n}(),je=__webpack_require__(74986),Ge=__webpack_require__(19047);function Ve(e){return Ve="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ve(e)}function Ye(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function lt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ht(e){for(var t=1;t=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Tt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function wt(e){for(var t=1;t0?Object.keys(this.data[0]):[]}}])&&Ft(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t}());function Wt(e){return Wt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Wt(e)}function zt(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Zt(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function en(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Zt(i,r,o,s,a,"next",e)}function a(e){Zt(i,r,o,s,a,"throw",e)}s(void 0)}))}}function tn(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function xn(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Bn(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){xn(i,r,o,s,a,"next",e)}function a(e){xn(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Pn(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function sr(e){return sr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},sr(e)}function ar(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function ur(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){ar(i,r,o,s,a,"next",e)}function a(e){ar(i,r,o,s,a,"throw",e)}s(void 0)}))}}function cr(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Ar(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function vr(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Ar(i,r,o,s,a,"next",e)}function a(e){Ar(i,r,o,s,a,"throw",e)}s(void 0)}))}}function br(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Mr(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function xr(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Mr(i,r,o,s,a,"next",e)}function a(e){Mr(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Br(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Jr(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function $r(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Jr(i,r,o,s,a,"next",e)}function a(e){Jr(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Zr(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function co(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function lo(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){co(i,r,o,s,a,"next",e)}function a(e){co(i,r,o,s,a,"throw",e)}s(void 0)}))}}function ho(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n1&&void 0!==arguments[1]?arguments[1]:null,r="Default.".concat(e);if(!(null!==(t=this._options)&&void 0!==t&&t.Settings?this._options.Settings[r]:n))throw new ln("host configuration file",r)}}],t&&Lo(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t}(),Po=__webpack_require__(11291),Fo=__webpack_require__(87919);function Uo(e){return Uo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Uo(e)}function ko(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function si(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function ai(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){si(i,r,o,s,a,"next",e)}function a(e){si(i,r,o,s,a,"throw",e)}s(void 0)}))}}function ui(e,t){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:null;return this._owner.getDefault(e,t)}},{key:"loadPageAsync",value:(o=ai(ii().mark((function e(t,n,r,o){return ii().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this._owner.loadPageAsync(t,n,r,o));case 1:case"end":return e.stop()}}),e,this)}))),function(e,t,n,r){return o.apply(this,arguments)})},{key:"checkConnectionAsync",value:function(e){return this._owner.checkConnectionAsync(e)}},{key:"addCookie",value:function(e,t,n,r){this._owner.addCookie(e,t,n,r)}},{key:"createCommand",value:function(e){return this._owner.createCommand(e)}}],r&&ui(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i}(ti);function Ei(e){return Ei="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ei(e)}function mi(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Ti(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function wi(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Li(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Mi(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Li(i,r,o,s,a,"next",e)}function a(e){Li(i,r,o,s,a,"throw",e)}s(void 0)}))}}function xi(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n1&&void 0!==arguments[1]?arguments[1]:null;return this._settings.getDefault(e,t)}},{key:"loadPageAsync",value:(o=Mi(Di().mark((function e(t,n,r,o){var i;return Di().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this._settings.callConnection.loadPageAsync(t,n,r,this.domainId,this.cancellation);case 2:return 1==(i=e.sent).il_call||ni.A.isNullOrEmpty(i.page_il),e.abrupt("return",this.createCommand(JSON.parse(i.page_il)));case 5:case"end":return e.stop()}}),e,this)}))),function(e,t,n,r){return o.apply(this,arguments)})},{key:"checkConnectionAsync",value:function(e){return this._settings.getConnection(e).testConnectionAsync()}},{key:"addCookie",value:function(e,t,n,r){this._cookies||(this._cookies=[]),this._cookies.push(new yi(e,t,n,r,this.isSecure))}},{key:"createCommand",value:function(e){var t,n=null===(t=this._commands[e.$type.toLowerCase()])||void 0===t?void 0:t.default;return n?new n(e):new Ci(e)}}],r&&Pi(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i}(ti);function Hi(e){return Hi="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Hi(e)}function Qi(e,t){for(var n=0;n=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function cs(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function hs(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function fs(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){hs(i,r,o,s,a,"next",e)}function a(e){hs(i,r,o,s,a,"throw",e)}s(void 0)}))}}function ps(e,t){for(var n=0;n")),o.append(""),i=us(r);try{for(i.s();!(s=i.n()).done;)a=s.value,o.append(""))}catch(e){i.e(e)}finally{i.f()}return o.append("
Log(s) For Request Id ".concat(this._requestId," (Processed In ").concat(this.stopWatch.elapsedMilliseconds," ms)
TimeTypeMessageData
").concat(a.dateTime,"").concat(a.type,"").concat(a.message,"").concat(a.extraData,"
"),e.next=9,t.push(Buffer.from(o.toString(),"utf8"));case 9:case"end":return e.stop()}}),e,this)}))),function(e,t){return o.apply(this,arguments)})},{key:"getChildLogs",value:function(e){var t=this,n=e.childCollection.flatMap((function(e){return t.getChildLogs(e)}));return e.logs.concat(n)}},{key:"newContext",value:function(e){var t=new Po.A(e,this);return this.childCollection.push(t),t}}],r&&ps(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i}(Po.A);function vs(e){return vs="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},vs(e)}function bs(e,t,n){return t=ws(t),function(e,t){if(t&&("object"==vs(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(e,Ts()?Reflect.construct(t,n||[],ws(e).constructor):t.apply(e,n))}function Ts(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(Ts=function(){return!!e})()}function ws(e){return ws=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},ws(e)}function Os(e,t){return Os=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},Os(e,t)}var Rs=function(e){function t(e,n,r,o,i,s){var a;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),(a=bs(this,t,[e,n,r,i,s])).addDebugInformation("Host Service Configuration",{value:JSON.stringify(o)}),a}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Os(e,t)}(t,e),n=t,Object.defineProperty(n,"prototype",{writable:!1}),n;var n}(As);function Ss(e){return Ss="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ss(e)}function Is(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function zs(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function qs(e){for(var t=1;t=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function ha(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return fa(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?fa(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function fa(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0)){e.next=33;break}o=[],i=ha(this._processList),e.prev=5,i.s();case 7:if((s=i.n()).done){e.next=23;break}if(a=s.value,!(r||a instanceof t)){e.next=15;break}r=!0,u=n.map((function(e){return e.clone()})),o.push(a.processAsync(u)),e.next=21;break;case 15:return e.next=17,a.processAsync(n);case 17:if(c=e.sent,0!==(n=c.filter((function(e){return e.status==we}))).length){e.next=21;break}return e.abrupt("break",23);case 21:e.next=7;break;case 23:e.next=28;break;case 25:e.prev=25,e.t0=e.catch(5),i.e(e.t0);case 28:return e.prev=28,i.f(),e.finish(28);case 31:return e.next=33,Promise.all(o);case 33:return e.abrupt("return",r?[]:n);case 34:case"end":return e.stop()}}),e,this,[[5,25,28,31]])})),i=function(){var e=this,t=arguments;return new Promise((function(n,r){var i=o.apply(e,t);function s(e){pa(i,n,r,s,a,"next",e)}function a(e){pa(i,n,r,s,a,"throw",e)}s(void 0)}))},function(e){return i.apply(this,arguments)})},{key:"toString",value:function(){return"Composite [\n".concat(this._processList.map((function(e){return e.toString()})).join("\n"),"}")}}],r&&da(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i}(ua);function va(e){return va="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},va(e)}function ba(){ba=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==va(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Ta(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return wa(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?wa(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function wa(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Ba(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return Pa(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Pa(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function Pa(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function za(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return qa(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?qa(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function qa(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0)){e.next=12;break}return e.prev=1,e.next=4,this._step.processAsync(t,this._options);case 4:t=e.sent,e.next=12;break;case 7:e.prev=7,e.t0=e.catch(1),console.error(e.t0),n=za(t);try{for(n.s();!(r=n.n()).done;)(o=r.value).AddLog(this._name,!1),o.AddLog("".concat(this._name,"-error"),e.t0),o.status=Le}catch(e){n.e(e)}finally{n.f()}case 12:return e.abrupt("return",t);case 13:case"end":return e.stop()}}),e,this,[[1,7]])})),i=function(){var e=this,t=arguments;return new Promise((function(n,r){var i=o.apply(e,t);function s(e){Ka(i,n,r,s,a,"next",e)}function a(e){Ka(i,n,r,s,a,"throw",e)}s(void 0)}))},function(e){return i.apply(this,arguments)})},{key:"toString",value:function(){return this._name}}],r&&Xa(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i}(ua);function ou(e){let t=e.length;for(;--t>=0;)e[t]=0}const iu=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),su=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),au=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),uu=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),cu=new Array(576);ou(cu);const lu=new Array(60);ou(lu);const hu=new Array(512);ou(hu);const fu=new Array(256);ou(fu);const pu=new Array(29);ou(pu);const du=new Array(30);function Eu(e,t,n,r,o){this.static_tree=e,this.extra_bits=t,this.extra_base=n,this.elems=r,this.max_length=o,this.has_stree=e&&e.length}let mu,_u,gu;function yu(e,t){this.dyn_tree=e,this.max_code=0,this.stat_desc=t}ou(du);const Au=e=>e<256?hu[e]:hu[256+(e>>>7)],vu=(e,t)=>{e.pending_buf[e.pending++]=255&t,e.pending_buf[e.pending++]=t>>>8&255},bu=(e,t,n)=>{e.bi_valid>16-n?(e.bi_buf|=t<>16-e.bi_valid,e.bi_valid+=n-16):(e.bi_buf|=t<{bu(e,n[2*t],n[2*t+1])},wu=(e,t)=>{let n=0;do{n|=1&e,e>>>=1,n<<=1}while(--t>0);return n>>>1},Ou=(e,t,n)=>{const r=new Array(16);let o,i,s=0;for(o=1;o<=15;o++)s=s+n[o-1]<<1,r[o]=s;for(i=0;i<=t;i++){let t=e[2*i+1];0!==t&&(e[2*i]=wu(r[t]++,t))}},Ru=e=>{let t;for(t=0;t<286;t++)e.dyn_ltree[2*t]=0;for(t=0;t<30;t++)e.dyn_dtree[2*t]=0;for(t=0;t<19;t++)e.bl_tree[2*t]=0;e.dyn_ltree[512]=1,e.opt_len=e.static_len=0,e.sym_next=e.matches=0},Su=e=>{e.bi_valid>8?vu(e,e.bi_buf):e.bi_valid>0&&(e.pending_buf[e.pending++]=e.bi_buf),e.bi_buf=0,e.bi_valid=0},Iu=(e,t,n,r)=>{const o=2*t,i=2*n;return e[o]{const r=e.heap[n];let o=n<<1;for(;o<=e.heap_len&&(o{let r,o,i,s,a=0;if(0!==e.sym_next)do{r=255&e.pending_buf[e.sym_buf+a++],r+=(255&e.pending_buf[e.sym_buf+a++])<<8,o=e.pending_buf[e.sym_buf+a++],0===r?Tu(e,o,t):(i=fu[o],Tu(e,i+256+1,t),s=iu[i],0!==s&&(o-=pu[i],bu(e,o,s)),r--,i=Au(r),Tu(e,i,n),s=su[i],0!==s&&(r-=du[i],bu(e,r,s)))}while(a{const n=t.dyn_tree,r=t.stat_desc.static_tree,o=t.stat_desc.has_stree,i=t.stat_desc.elems;let s,a,u,c=-1;for(e.heap_len=0,e.heap_max=573,s=0;s>1;s>=1;s--)Nu(e,n,s);u=i;do{s=e.heap[1],e.heap[1]=e.heap[e.heap_len--],Nu(e,n,1),a=e.heap[1],e.heap[--e.heap_max]=s,e.heap[--e.heap_max]=a,n[2*u]=n[2*s]+n[2*a],e.depth[u]=(e.depth[s]>=e.depth[a]?e.depth[s]:e.depth[a])+1,n[2*s+1]=n[2*a+1]=u,e.heap[1]=u++,Nu(e,n,1)}while(e.heap_len>=2);e.heap[--e.heap_max]=e.heap[1],((e,t)=>{const n=t.dyn_tree,r=t.max_code,o=t.stat_desc.static_tree,i=t.stat_desc.has_stree,s=t.stat_desc.extra_bits,a=t.stat_desc.extra_base,u=t.stat_desc.max_length;let c,l,h,f,p,d,E=0;for(f=0;f<=15;f++)e.bl_count[f]=0;for(n[2*e.heap[e.heap_max]+1]=0,c=e.heap_max+1;c<573;c++)l=e.heap[c],f=n[2*n[2*l+1]+1]+1,f>u&&(f=u,E++),n[2*l+1]=f,l>r||(e.bl_count[f]++,p=0,l>=a&&(p=s[l-a]),d=n[2*l],e.opt_len+=d*(f+p),i&&(e.static_len+=d*(o[2*l+1]+p)));if(0!==E){do{for(f=u-1;0===e.bl_count[f];)f--;e.bl_count[f]--,e.bl_count[f+1]+=2,e.bl_count[u]--,E-=2}while(E>0);for(f=u;0!==f;f--)for(l=e.bl_count[f];0!==l;)h=e.heap[--c],h>r||(n[2*h+1]!==f&&(e.opt_len+=(f-n[2*h+1])*n[2*h],n[2*h+1]=f),l--)}})(e,t),Ou(n,c,e.bl_count)},Lu=(e,t,n)=>{let r,o,i=-1,s=t[1],a=0,u=7,c=4;for(0===s&&(u=138,c=3),t[2*(n+1)+1]=65535,r=0;r<=n;r++)o=s,s=t[2*(r+1)+1],++a{let r,o,i=-1,s=t[1],a=0,u=7,c=4;for(0===s&&(u=138,c=3),r=0;r<=n;r++)if(o=s,s=t[2*(r+1)+1],!(++a{bu(e,0+(r?1:0),3),Su(e),vu(e,n),vu(e,~n),n&&e.pending_buf.set(e.window.subarray(t,t+n),e.pending),e.pending+=n};var Pu={_tr_init:e=>{xu||((()=>{let e,t,n,r,o;const i=new Array(16);for(n=0,r=0;r<28;r++)for(pu[r]=n,e=0;e<1<>=7;r<30;r++)for(du[r]=o<<7,e=0;e<1<{let o,i,s=0;e.level>0?(2===e.strm.data_type&&(e.strm.data_type=(e=>{let t,n=4093624447;for(t=0;t<=31;t++,n>>>=1)if(1&n&&0!==e.dyn_ltree[2*t])return 0;if(0!==e.dyn_ltree[18]||0!==e.dyn_ltree[20]||0!==e.dyn_ltree[26])return 1;for(t=32;t<256;t++)if(0!==e.dyn_ltree[2*t])return 1;return 0})(e)),Du(e,e.l_desc),Du(e,e.d_desc),s=(e=>{let t;for(Lu(e,e.dyn_ltree,e.l_desc.max_code),Lu(e,e.dyn_dtree,e.d_desc.max_code),Du(e,e.bl_desc),t=18;t>=3&&0===e.bl_tree[2*uu[t]+1];t--);return e.opt_len+=3*(t+1)+5+5+4,t})(e),o=e.opt_len+3+7>>>3,i=e.static_len+3+7>>>3,i<=o&&(o=i)):o=i=n+5,n+4<=o&&-1!==t?Bu(e,t,n,r):4===e.strategy||i===o?(bu(e,2+(r?1:0),3),Cu(e,cu,lu)):(bu(e,4+(r?1:0),3),((e,t,n,r)=>{let o;for(bu(e,t-257,5),bu(e,n-1,5),bu(e,r-4,4),o=0;o(e.pending_buf[e.sym_buf+e.sym_next++]=t,e.pending_buf[e.sym_buf+e.sym_next++]=t>>8,e.pending_buf[e.sym_buf+e.sym_next++]=n,0===t?e.dyn_ltree[2*n]++:(e.matches++,t--,e.dyn_ltree[2*(fu[n]+256+1)]++,e.dyn_dtree[2*Au(t)]++),e.sym_next===e.sym_end),_tr_align:e=>{bu(e,2,3),Tu(e,256,cu),(e=>{16===e.bi_valid?(vu(e,e.bi_buf),e.bi_buf=0,e.bi_valid=0):e.bi_valid>=8&&(e.pending_buf[e.pending++]=255&e.bi_buf,e.bi_buf>>=8,e.bi_valid-=8)})(e)}},Fu=(e,t,n,r)=>{let o=65535&e,i=e>>>16&65535,s=0;for(;0!==n;){s=n>2e3?2e3:n,n-=s;do{o=o+t[r++]|0,i=i+o|0}while(--s);o%=65521,i%=65521}return o|i<<16};const Uu=new Uint32Array((()=>{let e,t=[];for(var n=0;n<256;n++){e=n;for(var r=0;r<8;r++)e=1&e?3988292384^e>>>1:e>>>1;t[n]=e}return t})());var ku=(e,t,n,r)=>{const o=Uu,i=r+n;e^=-1;for(let n=r;n>>8^o[255&(e^t[n])];return~e},ju={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},Gu={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8};const{_tr_init:Vu,_tr_stored_block:Yu,_tr_flush_block:Hu,_tr_tally:Qu,_tr_align:Wu}=Pu,{Z_NO_FLUSH:zu,Z_PARTIAL_FLUSH:qu,Z_FULL_FLUSH:Ku,Z_FINISH:Xu,Z_BLOCK:Ju,Z_OK:$u,Z_STREAM_END:Zu,Z_STREAM_ERROR:ec,Z_DATA_ERROR:tc,Z_BUF_ERROR:nc,Z_DEFAULT_COMPRESSION:rc,Z_FILTERED:oc,Z_HUFFMAN_ONLY:ic,Z_RLE:sc,Z_FIXED:ac,Z_DEFAULT_STRATEGY:uc,Z_UNKNOWN:cc,Z_DEFLATED:lc}=Gu,hc=258,fc=262,pc=42,dc=113,Ec=666,mc=(e,t)=>(e.msg=ju[t],t),_c=e=>2*e-(e>4?9:0),gc=e=>{let t=e.length;for(;--t>=0;)e[t]=0},yc=e=>{let t,n,r,o=e.w_size;t=e.hash_size,r=t;do{n=e.head[--r],e.head[r]=n>=o?n-o:0}while(--t);t=o,r=t;do{n=e.prev[--r],e.prev[r]=n>=o?n-o:0}while(--t)};let Ac=(e,t,n)=>(t<{const t=e.state;let n=t.pending;n>e.avail_out&&(n=e.avail_out),0!==n&&(e.output.set(t.pending_buf.subarray(t.pending_out,t.pending_out+n),e.next_out),e.next_out+=n,t.pending_out+=n,e.total_out+=n,e.avail_out-=n,t.pending-=n,0===t.pending&&(t.pending_out=0))},bc=(e,t)=>{Hu(e,e.block_start>=0?e.block_start:-1,e.strstart-e.block_start,t),e.block_start=e.strstart,vc(e.strm)},Tc=(e,t)=>{e.pending_buf[e.pending++]=t},wc=(e,t)=>{e.pending_buf[e.pending++]=t>>>8&255,e.pending_buf[e.pending++]=255&t},Oc=(e,t,n,r)=>{let o=e.avail_in;return o>r&&(o=r),0===o?0:(e.avail_in-=o,t.set(e.input.subarray(e.next_in,e.next_in+o),n),1===e.state.wrap?e.adler=Fu(e.adler,t,o,n):2===e.state.wrap&&(e.adler=ku(e.adler,t,o,n)),e.next_in+=o,e.total_in+=o,o)},Rc=(e,t)=>{let n,r,o=e.max_chain_length,i=e.strstart,s=e.prev_length,a=e.nice_match;const u=e.strstart>e.w_size-fc?e.strstart-(e.w_size-fc):0,c=e.window,l=e.w_mask,h=e.prev,f=e.strstart+hc;let p=c[i+s-1],d=c[i+s];e.prev_length>=e.good_match&&(o>>=2),a>e.lookahead&&(a=e.lookahead);do{if(n=t,c[n+s]===d&&c[n+s-1]===p&&c[n]===c[i]&&c[++n]===c[i+1]){i+=2,n++;do{}while(c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&c[++i]===c[++n]&&is){if(e.match_start=t,s=r,r>=a)break;p=c[i+s-1],d=c[i+s]}}}while((t=h[t&l])>u&&0!=--o);return s<=e.lookahead?s:e.lookahead},Sc=e=>{const t=e.w_size;let n,r,o;do{if(r=e.window_size-e.lookahead-e.strstart,e.strstart>=t+(t-fc)&&(e.window.set(e.window.subarray(t,t+t-r),0),e.match_start-=t,e.strstart-=t,e.block_start-=t,e.insert>e.strstart&&(e.insert=e.strstart),yc(e),r+=t),0===e.strm.avail_in)break;if(n=Oc(e.strm,e.window,e.strstart+e.lookahead,r),e.lookahead+=n,e.lookahead+e.insert>=3)for(o=e.strstart-e.insert,e.ins_h=e.window[o],e.ins_h=Ac(e,e.ins_h,e.window[o+1]);e.insert&&(e.ins_h=Ac(e,e.ins_h,e.window[o+3-1]),e.prev[o&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=o,o++,e.insert--,!(e.lookahead+e.insert<3)););}while(e.lookahead{let n,r,o,i=e.pending_buf_size-5>e.w_size?e.w_size:e.pending_buf_size-5,s=0,a=e.strm.avail_in;do{if(n=65535,o=e.bi_valid+42>>3,e.strm.avail_outr+e.strm.avail_in&&(n=r+e.strm.avail_in),n>o&&(n=o),n>8,e.pending_buf[e.pending-2]=~n,e.pending_buf[e.pending-1]=~n>>8,vc(e.strm),r&&(r>n&&(r=n),e.strm.output.set(e.window.subarray(e.block_start,e.block_start+r),e.strm.next_out),e.strm.next_out+=r,e.strm.avail_out-=r,e.strm.total_out+=r,e.block_start+=r,n-=r),n&&(Oc(e.strm,e.strm.output,e.strm.next_out,n),e.strm.next_out+=n,e.strm.avail_out-=n,e.strm.total_out+=n)}while(0===s);return a-=e.strm.avail_in,a&&(a>=e.w_size?(e.matches=2,e.window.set(e.strm.input.subarray(e.strm.next_in-e.w_size,e.strm.next_in),0),e.strstart=e.w_size,e.insert=e.strstart):(e.window_size-e.strstart<=a&&(e.strstart-=e.w_size,e.window.set(e.window.subarray(e.w_size,e.w_size+e.strstart),0),e.matches<2&&e.matches++,e.insert>e.strstart&&(e.insert=e.strstart)),e.window.set(e.strm.input.subarray(e.strm.next_in-a,e.strm.next_in),e.strstart),e.strstart+=a,e.insert+=a>e.w_size-e.insert?e.w_size-e.insert:a),e.block_start=e.strstart),e.high_watero&&e.block_start>=e.w_size&&(e.block_start-=e.w_size,e.strstart-=e.w_size,e.window.set(e.window.subarray(e.w_size,e.w_size+e.strstart),0),e.matches<2&&e.matches++,o+=e.w_size,e.insert>e.strstart&&(e.insert=e.strstart)),o>e.strm.avail_in&&(o=e.strm.avail_in),o&&(Oc(e.strm,e.window,e.strstart,o),e.strstart+=o,e.insert+=o>e.w_size-e.insert?e.w_size-e.insert:o),e.high_water>3,o=e.pending_buf_size-o>65535?65535:e.pending_buf_size-o,i=o>e.w_size?e.w_size:o,r=e.strstart-e.block_start,(r>=i||(r||t===Xu)&&t!==zu&&0===e.strm.avail_in&&r<=o)&&(n=r>o?o:r,s=t===Xu&&0===e.strm.avail_in&&n===r?1:0,Yu(e,e.block_start,n,s),e.block_start+=n,vc(e.strm)),s?3:1)},Nc=(e,t)=>{let n,r;for(;;){if(e.lookahead=3&&(e.ins_h=Ac(e,e.ins_h,e.window[e.strstart+3-1]),n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),0!==n&&e.strstart-n<=e.w_size-fc&&(e.match_length=Rc(e,n)),e.match_length>=3)if(r=Qu(e,e.strstart-e.match_start,e.match_length-3),e.lookahead-=e.match_length,e.match_length<=e.max_lazy_match&&e.lookahead>=3){e.match_length--;do{e.strstart++,e.ins_h=Ac(e,e.ins_h,e.window[e.strstart+3-1]),n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart}while(0!=--e.match_length);e.strstart++}else e.strstart+=e.match_length,e.match_length=0,e.ins_h=e.window[e.strstart],e.ins_h=Ac(e,e.ins_h,e.window[e.strstart+1]);else r=Qu(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++;if(r&&(bc(e,!1),0===e.strm.avail_out))return 1}return e.insert=e.strstart<2?e.strstart:2,t===Xu?(bc(e,!0),0===e.strm.avail_out?3:4):e.sym_next&&(bc(e,!1),0===e.strm.avail_out)?1:2},Cc=(e,t)=>{let n,r,o;for(;;){if(e.lookahead=3&&(e.ins_h=Ac(e,e.ins_h,e.window[e.strstart+3-1]),n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart),e.prev_length=e.match_length,e.prev_match=e.match_start,e.match_length=2,0!==n&&e.prev_length4096)&&(e.match_length=2)),e.prev_length>=3&&e.match_length<=e.prev_length){o=e.strstart+e.lookahead-3,r=Qu(e,e.strstart-1-e.prev_match,e.prev_length-3),e.lookahead-=e.prev_length-1,e.prev_length-=2;do{++e.strstart<=o&&(e.ins_h=Ac(e,e.ins_h,e.window[e.strstart+3-1]),n=e.prev[e.strstart&e.w_mask]=e.head[e.ins_h],e.head[e.ins_h]=e.strstart)}while(0!=--e.prev_length);if(e.match_available=0,e.match_length=2,e.strstart++,r&&(bc(e,!1),0===e.strm.avail_out))return 1}else if(e.match_available){if(r=Qu(e,0,e.window[e.strstart-1]),r&&bc(e,!1),e.strstart++,e.lookahead--,0===e.strm.avail_out)return 1}else e.match_available=1,e.strstart++,e.lookahead--}return e.match_available&&(r=Qu(e,0,e.window[e.strstart-1]),e.match_available=0),e.insert=e.strstart<2?e.strstart:2,t===Xu?(bc(e,!0),0===e.strm.avail_out?3:4):e.sym_next&&(bc(e,!1),0===e.strm.avail_out)?1:2};function Dc(e,t,n,r,o){this.good_length=e,this.max_lazy=t,this.nice_length=n,this.max_chain=r,this.func=o}const Lc=[new Dc(0,0,0,0,Ic),new Dc(4,4,8,4,Nc),new Dc(4,5,16,8,Nc),new Dc(4,6,32,32,Nc),new Dc(4,4,16,16,Cc),new Dc(8,16,32,32,Cc),new Dc(8,16,128,128,Cc),new Dc(8,32,128,256,Cc),new Dc(32,128,258,1024,Cc),new Dc(32,258,258,4096,Cc)];function Mc(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=lc,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(1146),this.dyn_dtree=new Uint16Array(122),this.bl_tree=new Uint16Array(78),gc(this.dyn_ltree),gc(this.dyn_dtree),gc(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(16),this.heap=new Uint16Array(573),gc(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(573),gc(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const xc=e=>{if(!e)return 1;const t=e.state;return!t||t.strm!==e||t.status!==pc&&57!==t.status&&69!==t.status&&73!==t.status&&91!==t.status&&103!==t.status&&t.status!==dc&&t.status!==Ec?1:0},Bc=e=>{if(xc(e))return mc(e,ec);e.total_in=e.total_out=0,e.data_type=cc;const t=e.state;return t.pending=0,t.pending_out=0,t.wrap<0&&(t.wrap=-t.wrap),t.status=2===t.wrap?57:t.wrap?pc:dc,e.adler=2===t.wrap?0:1,t.last_flush=-2,Vu(t),$u},Pc=e=>{const t=Bc(e);var n;return t===$u&&((n=e.state).window_size=2*n.w_size,gc(n.head),n.max_lazy_match=Lc[n.level].max_lazy,n.good_match=Lc[n.level].good_length,n.nice_match=Lc[n.level].nice_length,n.max_chain_length=Lc[n.level].max_chain,n.strstart=0,n.block_start=0,n.lookahead=0,n.insert=0,n.match_length=n.prev_length=2,n.match_available=0,n.ins_h=0),t},Fc=(e,t,n,r,o,i)=>{if(!e)return ec;let s=1;if(t===rc&&(t=6),r<0?(s=0,r=-r):r>15&&(s=2,r-=16),o<1||o>9||n!==lc||r<8||r>15||t<0||t>9||i<0||i>ac||8===r&&1!==s)return mc(e,ec);8===r&&(r=9);const a=new Mc;return e.state=a,a.strm=e,a.status=pc,a.wrap=s,a.gzhead=null,a.w_bits=r,a.w_size=1<Fc(e,t,lc,15,8,uc),deflateInit2:Fc,deflateReset:Pc,deflateResetKeep:Bc,deflateSetHeader:(e,t)=>xc(e)||2!==e.state.wrap?ec:(e.state.gzhead=t,$u),deflate:(e,t)=>{if(xc(e)||t>Ju||t<0)return e?mc(e,ec):ec;const n=e.state;if(!e.output||0!==e.avail_in&&!e.input||n.status===Ec&&t!==Xu)return mc(e,0===e.avail_out?nc:ec);const r=n.last_flush;if(n.last_flush=t,0!==n.pending){if(vc(e),0===e.avail_out)return n.last_flush=-1,$u}else if(0===e.avail_in&&_c(t)<=_c(r)&&t!==Xu)return mc(e,nc);if(n.status===Ec&&0!==e.avail_in)return mc(e,nc);if(n.status===pc&&0===n.wrap&&(n.status=dc),n.status===pc){let t=lc+(n.w_bits-8<<4)<<8,r=-1;if(r=n.strategy>=ic||n.level<2?0:n.level<6?1:6===n.level?2:3,t|=r<<6,0!==n.strstart&&(t|=32),t+=31-t%31,wc(n,t),0!==n.strstart&&(wc(n,e.adler>>>16),wc(n,65535&e.adler)),e.adler=1,n.status=dc,vc(e),0!==n.pending)return n.last_flush=-1,$u}if(57===n.status)if(e.adler=0,Tc(n,31),Tc(n,139),Tc(n,8),n.gzhead)Tc(n,(n.gzhead.text?1:0)+(n.gzhead.hcrc?2:0)+(n.gzhead.extra?4:0)+(n.gzhead.name?8:0)+(n.gzhead.comment?16:0)),Tc(n,255&n.gzhead.time),Tc(n,n.gzhead.time>>8&255),Tc(n,n.gzhead.time>>16&255),Tc(n,n.gzhead.time>>24&255),Tc(n,9===n.level?2:n.strategy>=ic||n.level<2?4:0),Tc(n,255&n.gzhead.os),n.gzhead.extra&&n.gzhead.extra.length&&(Tc(n,255&n.gzhead.extra.length),Tc(n,n.gzhead.extra.length>>8&255)),n.gzhead.hcrc&&(e.adler=ku(e.adler,n.pending_buf,n.pending,0)),n.gzindex=0,n.status=69;else if(Tc(n,0),Tc(n,0),Tc(n,0),Tc(n,0),Tc(n,0),Tc(n,9===n.level?2:n.strategy>=ic||n.level<2?4:0),Tc(n,3),n.status=dc,vc(e),0!==n.pending)return n.last_flush=-1,$u;if(69===n.status){if(n.gzhead.extra){let t=n.pending,r=(65535&n.gzhead.extra.length)-n.gzindex;for(;n.pending+r>n.pending_buf_size;){let o=n.pending_buf_size-n.pending;if(n.pending_buf.set(n.gzhead.extra.subarray(n.gzindex,n.gzindex+o),n.pending),n.pending=n.pending_buf_size,n.gzhead.hcrc&&n.pending>t&&(e.adler=ku(e.adler,n.pending_buf,n.pending-t,t)),n.gzindex+=o,vc(e),0!==n.pending)return n.last_flush=-1,$u;t=0,r-=o}let o=new Uint8Array(n.gzhead.extra);n.pending_buf.set(o.subarray(n.gzindex,n.gzindex+r),n.pending),n.pending+=r,n.gzhead.hcrc&&n.pending>t&&(e.adler=ku(e.adler,n.pending_buf,n.pending-t,t)),n.gzindex=0}n.status=73}if(73===n.status){if(n.gzhead.name){let t,r=n.pending;do{if(n.pending===n.pending_buf_size){if(n.gzhead.hcrc&&n.pending>r&&(e.adler=ku(e.adler,n.pending_buf,n.pending-r,r)),vc(e),0!==n.pending)return n.last_flush=-1,$u;r=0}t=n.gzindexr&&(e.adler=ku(e.adler,n.pending_buf,n.pending-r,r)),n.gzindex=0}n.status=91}if(91===n.status){if(n.gzhead.comment){let t,r=n.pending;do{if(n.pending===n.pending_buf_size){if(n.gzhead.hcrc&&n.pending>r&&(e.adler=ku(e.adler,n.pending_buf,n.pending-r,r)),vc(e),0!==n.pending)return n.last_flush=-1,$u;r=0}t=n.gzindexr&&(e.adler=ku(e.adler,n.pending_buf,n.pending-r,r))}n.status=103}if(103===n.status){if(n.gzhead.hcrc){if(n.pending+2>n.pending_buf_size&&(vc(e),0!==n.pending))return n.last_flush=-1,$u;Tc(n,255&e.adler),Tc(n,e.adler>>8&255),e.adler=0}if(n.status=dc,vc(e),0!==n.pending)return n.last_flush=-1,$u}if(0!==e.avail_in||0!==n.lookahead||t!==zu&&n.status!==Ec){let r=0===n.level?Ic(n,t):n.strategy===ic?((e,t)=>{let n;for(;;){if(0===e.lookahead&&(Sc(e),0===e.lookahead)){if(t===zu)return 1;break}if(e.match_length=0,n=Qu(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++,n&&(bc(e,!1),0===e.strm.avail_out))return 1}return e.insert=0,t===Xu?(bc(e,!0),0===e.strm.avail_out?3:4):e.sym_next&&(bc(e,!1),0===e.strm.avail_out)?1:2})(n,t):n.strategy===sc?((e,t)=>{let n,r,o,i;const s=e.window;for(;;){if(e.lookahead<=hc){if(Sc(e),e.lookahead<=hc&&t===zu)return 1;if(0===e.lookahead)break}if(e.match_length=0,e.lookahead>=3&&e.strstart>0&&(o=e.strstart-1,r=s[o],r===s[++o]&&r===s[++o]&&r===s[++o])){i=e.strstart+hc;do{}while(r===s[++o]&&r===s[++o]&&r===s[++o]&&r===s[++o]&&r===s[++o]&&r===s[++o]&&r===s[++o]&&r===s[++o]&&oe.lookahead&&(e.match_length=e.lookahead)}if(e.match_length>=3?(n=Qu(e,1,e.match_length-3),e.lookahead-=e.match_length,e.strstart+=e.match_length,e.match_length=0):(n=Qu(e,0,e.window[e.strstart]),e.lookahead--,e.strstart++),n&&(bc(e,!1),0===e.strm.avail_out))return 1}return e.insert=0,t===Xu?(bc(e,!0),0===e.strm.avail_out?3:4):e.sym_next&&(bc(e,!1),0===e.strm.avail_out)?1:2})(n,t):Lc[n.level].func(n,t);if(3!==r&&4!==r||(n.status=Ec),1===r||3===r)return 0===e.avail_out&&(n.last_flush=-1),$u;if(2===r&&(t===qu?Wu(n):t!==Ju&&(Yu(n,0,0,!1),t===Ku&&(gc(n.head),0===n.lookahead&&(n.strstart=0,n.block_start=0,n.insert=0))),vc(e),0===e.avail_out))return n.last_flush=-1,$u}return t!==Xu?$u:n.wrap<=0?Zu:(2===n.wrap?(Tc(n,255&e.adler),Tc(n,e.adler>>8&255),Tc(n,e.adler>>16&255),Tc(n,e.adler>>24&255),Tc(n,255&e.total_in),Tc(n,e.total_in>>8&255),Tc(n,e.total_in>>16&255),Tc(n,e.total_in>>24&255)):(wc(n,e.adler>>>16),wc(n,65535&e.adler)),vc(e),n.wrap>0&&(n.wrap=-n.wrap),0!==n.pending?$u:Zu)},deflateEnd:e=>{if(xc(e))return ec;const t=e.state.status;return e.state=null,t===dc?mc(e,tc):$u},deflateSetDictionary:(e,t)=>{let n=t.length;if(xc(e))return ec;const r=e.state,o=r.wrap;if(2===o||1===o&&r.status!==pc||r.lookahead)return ec;if(1===o&&(e.adler=Fu(e.adler,t,n,0)),r.wrap=0,n>=r.w_size){0===o&&(gc(r.head),r.strstart=0,r.block_start=0,r.insert=0);let e=new Uint8Array(r.w_size);e.set(t.subarray(n-r.w_size,n),0),t=e,n=r.w_size}const i=e.avail_in,s=e.next_in,a=e.input;for(e.avail_in=n,e.next_in=0,e.input=t,Sc(r);r.lookahead>=3;){let e=r.strstart,t=r.lookahead-2;do{r.ins_h=Ac(r,r.ins_h,r.window[e+3-1]),r.prev[e&r.w_mask]=r.head[r.ins_h],r.head[r.ins_h]=e,e++}while(--t);r.strstart=e,r.lookahead=2,Sc(r)}return r.strstart+=r.lookahead,r.block_start=r.strstart,r.insert=r.lookahead,r.lookahead=0,r.match_length=r.prev_length=2,r.match_available=0,e.next_in=s,e.input=a,e.avail_in=i,r.wrap=o,$u},deflateInfo:"pako deflate (from Nodeca project)"};const kc=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var jc={assign:function(e){const t=Array.prototype.slice.call(arguments,1);for(;t.length;){const n=t.shift();if(n){if("object"!=typeof n)throw new TypeError(n+"must be non-object");for(const t in n)kc(n,t)&&(e[t]=n[t])}}return e},flattenChunks:e=>{let t=0;for(let n=0,r=e.length;n=252?6:e>=248?5:e>=240?4:e>=224?3:e>=192?2:1;Vc[254]=Vc[254]=1;var Yc={string2buf:e=>{if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(e);let t,n,r,o,i,s=e.length,a=0;for(o=0;o>>6,t[i++]=128|63&n):n<65536?(t[i++]=224|n>>>12,t[i++]=128|n>>>6&63,t[i++]=128|63&n):(t[i++]=240|n>>>18,t[i++]=128|n>>>12&63,t[i++]=128|n>>>6&63,t[i++]=128|63&n);return t},buf2string:(e,t)=>{const n=t||e.length;if("function"==typeof TextDecoder&&TextDecoder.prototype.decode)return(new TextDecoder).decode(e.subarray(0,t));let r,o;const i=new Array(2*n);for(o=0,r=0;r4)i[o++]=65533,r+=s-1;else{for(t&=2===s?31:3===s?15:7;s>1&&r1?i[o++]=65533:t<65536?i[o++]=t:(t-=65536,i[o++]=55296|t>>10&1023,i[o++]=56320|1023&t)}}return((e,t)=>{if(t<65534&&e.subarray&&Gc)return String.fromCharCode.apply(null,e.length===t?e:e.subarray(0,t));let n="";for(let r=0;r{(t=t||e.length)>e.length&&(t=e.length);let n=t-1;for(;n>=0&&128==(192&e[n]);)n--;return n<0||0===n?t:n+Vc[e[n]]>t?n:t}},Hc=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0};const Qc=Object.prototype.toString,{Z_NO_FLUSH:Wc,Z_SYNC_FLUSH:zc,Z_FULL_FLUSH:qc,Z_FINISH:Kc,Z_OK:Xc,Z_STREAM_END:Jc,Z_DEFAULT_COMPRESSION:$c,Z_DEFAULT_STRATEGY:Zc,Z_DEFLATED:el}=Gu;function tl(e){this.options=jc.assign({level:$c,method:el,chunkSize:16384,windowBits:15,memLevel:8,strategy:Zc},e||{});let t=this.options;t.raw&&t.windowBits>0?t.windowBits=-t.windowBits:t.gzip&&t.windowBits>0&&t.windowBits<16&&(t.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new Hc,this.strm.avail_out=0;let n=Uc.deflateInit2(this.strm,t.level,t.method,t.windowBits,t.memLevel,t.strategy);if(n!==Xc)throw new Error(ju[n]);if(t.header&&Uc.deflateSetHeader(this.strm,t.header),t.dictionary){let e;if(e="string"==typeof t.dictionary?Yc.string2buf(t.dictionary):"[object ArrayBuffer]"===Qc.call(t.dictionary)?new Uint8Array(t.dictionary):t.dictionary,n=Uc.deflateSetDictionary(this.strm,e),n!==Xc)throw new Error(ju[n]);this._dict_set=!0}}function nl(e,t){const n=new tl(t);if(n.push(e,!0),n.err)throw n.msg||ju[n.err];return n.result}tl.prototype.push=function(e,t){const n=this.strm,r=this.options.chunkSize;let o,i;if(this.ended)return!1;for(i=t===~~t?t:!0===t?Kc:Wc,"string"==typeof e?n.input=Yc.string2buf(e):"[object ArrayBuffer]"===Qc.call(e)?n.input=new Uint8Array(e):n.input=e,n.next_in=0,n.avail_in=n.input.length;;)if(0===n.avail_out&&(n.output=new Uint8Array(r),n.next_out=0,n.avail_out=r),(i===zc||i===qc)&&n.avail_out<=6)this.onData(n.output.subarray(0,n.next_out)),n.avail_out=0;else{if(o=Uc.deflate(n,i),o===Jc)return n.next_out>0&&this.onData(n.output.subarray(0,n.next_out)),o=Uc.deflateEnd(this.strm),this.onEnd(o),this.ended=!0,o===Xc;if(0!==n.avail_out){if(i>0&&n.next_out>0)this.onData(n.output.subarray(0,n.next_out)),n.avail_out=0;else if(0===n.avail_in)break}else this.onData(n.output)}return!0},tl.prototype.onData=function(e){this.chunks.push(e)},tl.prototype.onEnd=function(e){e===Xc&&(this.result=jc.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg};var rl={Deflate:tl,deflate:nl,deflateRaw:function(e,t){return(t=t||{}).raw=!0,nl(e,t)},gzip:function(e,t){return(t=t||{}).gzip=!0,nl(e,t)},constants:Gu};const ol=16209;var il=function(e,t){let n,r,o,i,s,a,u,c,l,h,f,p,d,E,m,_,g,y,A,v,b,T,w,O;const R=e.state;n=e.next_in,w=e.input,r=n+(e.avail_in-5),o=e.next_out,O=e.output,i=o-(t-e.avail_out),s=o+(e.avail_out-257),a=R.dmax,u=R.wsize,c=R.whave,l=R.wnext,h=R.window,f=R.hold,p=R.bits,d=R.lencode,E=R.distcode,m=(1<>>24,f>>>=y,p-=y,y=g>>>16&255,0===y)O[o++]=65535&g;else{if(!(16&y)){if(64&y){if(32&y){R.mode=16191;break e}e.msg="invalid literal/length code",R.mode=ol;break e}g=d[(65535&g)+(f&(1<>>=y,p-=y),p<15&&(f+=w[n++]<>>24,f>>>=y,p-=y,y=g>>>16&255,16&y){if(v=65535&g,y&=15,pa){e.msg="invalid distance too far back",R.mode=ol;break e}if(f>>>=y,p-=y,y=o-i,v>y){if(y=v-y,y>c&&R.sane){e.msg="invalid distance too far back",R.mode=ol;break e}if(b=0,T=h,0===l){if(b+=u-y,y2;)O[o++]=T[b++],O[o++]=T[b++],O[o++]=T[b++],A-=3;A&&(O[o++]=T[b++],A>1&&(O[o++]=T[b++]))}else{b=o-v;do{O[o++]=O[b++],O[o++]=O[b++],O[o++]=O[b++],A-=3}while(A>2);A&&(O[o++]=O[b++],A>1&&(O[o++]=O[b++]))}break}if(64&y){e.msg="invalid distance code",R.mode=ol;break e}g=E[(65535&g)+(f&(1<>3,n-=A,p-=A<<3,f&=(1<{const u=a.bits;let c,l,h,f,p,d,E=0,m=0,_=0,g=0,y=0,A=0,v=0,b=0,T=0,w=0,O=null;const R=new Uint16Array(16),S=new Uint16Array(16);let I,N,C,D=null;for(E=0;E<=15;E++)R[E]=0;for(m=0;m=1&&0===R[g];g--);if(y>g&&(y=g),0===g)return o[i++]=20971520,o[i++]=20971520,a.bits=1,0;for(_=1;_0&&(0===e||1!==g))return-1;for(S[1]=0,E=1;E<15;E++)S[E+1]=S[E]+R[E];for(m=0;m852||2===e&&T>592)return 1;for(;;){I=E-v,s[m]+1=d?(N=D[s[m]-d],C=O[s[m]-d]):(N=96,C=0),c=1<>v)+l]=I<<24|N<<16|C}while(0!==l);for(c=1<>=1;if(0!==c?(w&=c-1,w+=c):w=0,m++,0==--R[E]){if(E===g)break;E=t[n+s[m]]}if(E>y&&(w&f)!==h){for(0===v&&(v=y),p+=_,A=E-v,b=1<852||2===e&&T>592)return 1;h=w&f,o[h]=y<<24|A<<16|p-i}}return 0!==w&&(o[p+w]=E-v<<24|64<<16),a.bits=y,0};const{Z_FINISH:hl,Z_BLOCK:fl,Z_TREES:pl,Z_OK:dl,Z_STREAM_END:El,Z_NEED_DICT:ml,Z_STREAM_ERROR:_l,Z_DATA_ERROR:gl,Z_MEM_ERROR:yl,Z_BUF_ERROR:Al,Z_DEFLATED:vl}=Gu,bl=16180,Tl=16190,wl=16191,Ol=16192,Rl=16194,Sl=16199,Il=16200,Nl=16206,Cl=16209,Dl=e=>(e>>>24&255)+(e>>>8&65280)+((65280&e)<<8)+((255&e)<<24);function Ll(){this.strm=null,this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}const Ml=e=>{if(!e)return 1;const t=e.state;return!t||t.strm!==e||t.mode16211?1:0},xl=e=>{if(Ml(e))return _l;const t=e.state;return e.total_in=e.total_out=t.total=0,e.msg="",t.wrap&&(e.adler=1&t.wrap),t.mode=bl,t.last=0,t.havedict=0,t.flags=-1,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new Int32Array(852),t.distcode=t.distdyn=new Int32Array(592),t.sane=1,t.back=-1,dl},Bl=e=>{if(Ml(e))return _l;const t=e.state;return t.wsize=0,t.whave=0,t.wnext=0,xl(e)},Pl=(e,t)=>{let n;if(Ml(e))return _l;const r=e.state;return t<0?(n=0,t=-t):(n=5+(t>>4),t<48&&(t&=15)),t&&(t<8||t>15)?_l:(null!==r.window&&r.wbits!==t&&(r.window=null),r.wrap=n,r.wbits=t,Bl(e))},Fl=(e,t)=>{if(!e)return _l;const n=new Ll;e.state=n,n.strm=e,n.window=null,n.mode=bl;const r=Pl(e,t);return r!==dl&&(e.state=null),r};let Ul,kl,jl=!0;const Gl=e=>{if(jl){Ul=new Int32Array(512),kl=new Int32Array(32);let t=0;for(;t<144;)e.lens[t++]=8;for(;t<256;)e.lens[t++]=9;for(;t<280;)e.lens[t++]=7;for(;t<288;)e.lens[t++]=8;for(ll(1,e.lens,0,288,Ul,0,e.work,{bits:9}),t=0;t<32;)e.lens[t++]=5;ll(2,e.lens,0,32,kl,0,e.work,{bits:5}),jl=!1}e.lencode=Ul,e.lenbits=9,e.distcode=kl,e.distbits=5},Vl=(e,t,n,r)=>{let o;const i=e.state;return null===i.window&&(i.wsize=1<=i.wsize?(i.window.set(t.subarray(n-i.wsize,n),0),i.wnext=0,i.whave=i.wsize):(o=i.wsize-i.wnext,o>r&&(o=r),i.window.set(t.subarray(n-r,n-r+o),i.wnext),(r-=o)?(i.window.set(t.subarray(n-r,n),0),i.wnext=r,i.whave=i.wsize):(i.wnext+=o,i.wnext===i.wsize&&(i.wnext=0),i.whaveFl(e,15),inflateInit2:Fl,inflate:(e,t)=>{let n,r,o,i,s,a,u,c,l,h,f,p,d,E,m,_,g,y,A,v,b,T,w=0;const O=new Uint8Array(4);let R,S;const I=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);if(Ml(e)||!e.output||!e.input&&0!==e.avail_in)return _l;n=e.state,n.mode===wl&&(n.mode=Ol),s=e.next_out,o=e.output,u=e.avail_out,i=e.next_in,r=e.input,a=e.avail_in,c=n.hold,l=n.bits,h=a,f=u,T=dl;e:for(;;)switch(n.mode){case bl:if(0===n.wrap){n.mode=Ol;break}for(;l<16;){if(0===a)break e;a--,c+=r[i++]<>>8&255,n.check=ku(n.check,O,2,0),c=0,l=0,n.mode=16181;break}if(n.head&&(n.head.done=!1),!(1&n.wrap)||(((255&c)<<8)+(c>>8))%31){e.msg="incorrect header check",n.mode=Cl;break}if((15&c)!==vl){e.msg="unknown compression method",n.mode=Cl;break}if(c>>>=4,l-=4,b=8+(15&c),0===n.wbits&&(n.wbits=b),b>15||b>n.wbits){e.msg="invalid window size",n.mode=Cl;break}n.dmax=1<>8&1),512&n.flags&&4&n.wrap&&(O[0]=255&c,O[1]=c>>>8&255,n.check=ku(n.check,O,2,0)),c=0,l=0,n.mode=16182;case 16182:for(;l<32;){if(0===a)break e;a--,c+=r[i++]<>>8&255,O[2]=c>>>16&255,O[3]=c>>>24&255,n.check=ku(n.check,O,4,0)),c=0,l=0,n.mode=16183;case 16183:for(;l<16;){if(0===a)break e;a--,c+=r[i++]<>8),512&n.flags&&4&n.wrap&&(O[0]=255&c,O[1]=c>>>8&255,n.check=ku(n.check,O,2,0)),c=0,l=0,n.mode=16184;case 16184:if(1024&n.flags){for(;l<16;){if(0===a)break e;a--,c+=r[i++]<>>8&255,n.check=ku(n.check,O,2,0)),c=0,l=0}else n.head&&(n.head.extra=null);n.mode=16185;case 16185:if(1024&n.flags&&(p=n.length,p>a&&(p=a),p&&(n.head&&(b=n.head.extra_len-n.length,n.head.extra||(n.head.extra=new Uint8Array(n.head.extra_len)),n.head.extra.set(r.subarray(i,i+p),b)),512&n.flags&&4&n.wrap&&(n.check=ku(n.check,r,p,i)),a-=p,i+=p,n.length-=p),n.length))break e;n.length=0,n.mode=16186;case 16186:if(2048&n.flags){if(0===a)break e;p=0;do{b=r[i+p++],n.head&&b&&n.length<65536&&(n.head.name+=String.fromCharCode(b))}while(b&&p>9&1,n.head.done=!0),e.adler=n.check=0,n.mode=wl;break;case 16189:for(;l<32;){if(0===a)break e;a--,c+=r[i++]<>>=7&l,l-=7&l,n.mode=Nl;break}for(;l<3;){if(0===a)break e;a--,c+=r[i++]<>>=1,l-=1,3&c){case 0:n.mode=16193;break;case 1:if(Gl(n),n.mode=Sl,t===pl){c>>>=2,l-=2;break e}break;case 2:n.mode=16196;break;case 3:e.msg="invalid block type",n.mode=Cl}c>>>=2,l-=2;break;case 16193:for(c>>>=7&l,l-=7&l;l<32;){if(0===a)break e;a--,c+=r[i++]<>>16^65535)){e.msg="invalid stored block lengths",n.mode=Cl;break}if(n.length=65535&c,c=0,l=0,n.mode=Rl,t===pl)break e;case Rl:n.mode=16195;case 16195:if(p=n.length,p){if(p>a&&(p=a),p>u&&(p=u),0===p)break e;o.set(r.subarray(i,i+p),s),a-=p,i+=p,u-=p,s+=p,n.length-=p;break}n.mode=wl;break;case 16196:for(;l<14;){if(0===a)break e;a--,c+=r[i++]<>>=5,l-=5,n.ndist=1+(31&c),c>>>=5,l-=5,n.ncode=4+(15&c),c>>>=4,l-=4,n.nlen>286||n.ndist>30){e.msg="too many length or distance symbols",n.mode=Cl;break}n.have=0,n.mode=16197;case 16197:for(;n.have>>=3,l-=3}for(;n.have<19;)n.lens[I[n.have++]]=0;if(n.lencode=n.lendyn,n.lenbits=7,R={bits:n.lenbits},T=ll(0,n.lens,0,19,n.lencode,0,n.work,R),n.lenbits=R.bits,T){e.msg="invalid code lengths set",n.mode=Cl;break}n.have=0,n.mode=16198;case 16198:for(;n.have>>24,_=w>>>16&255,g=65535&w,!(m<=l);){if(0===a)break e;a--,c+=r[i++]<>>=m,l-=m,n.lens[n.have++]=g;else{if(16===g){for(S=m+2;l>>=m,l-=m,0===n.have){e.msg="invalid bit length repeat",n.mode=Cl;break}b=n.lens[n.have-1],p=3+(3&c),c>>>=2,l-=2}else if(17===g){for(S=m+3;l>>=m,l-=m,b=0,p=3+(7&c),c>>>=3,l-=3}else{for(S=m+7;l>>=m,l-=m,b=0,p=11+(127&c),c>>>=7,l-=7}if(n.have+p>n.nlen+n.ndist){e.msg="invalid bit length repeat",n.mode=Cl;break}for(;p--;)n.lens[n.have++]=b}}if(n.mode===Cl)break;if(0===n.lens[256]){e.msg="invalid code -- missing end-of-block",n.mode=Cl;break}if(n.lenbits=9,R={bits:n.lenbits},T=ll(1,n.lens,0,n.nlen,n.lencode,0,n.work,R),n.lenbits=R.bits,T){e.msg="invalid literal/lengths set",n.mode=Cl;break}if(n.distbits=6,n.distcode=n.distdyn,R={bits:n.distbits},T=ll(2,n.lens,n.nlen,n.ndist,n.distcode,0,n.work,R),n.distbits=R.bits,T){e.msg="invalid distances set",n.mode=Cl;break}if(n.mode=Sl,t===pl)break e;case Sl:n.mode=Il;case Il:if(a>=6&&u>=258){e.next_out=s,e.avail_out=u,e.next_in=i,e.avail_in=a,n.hold=c,n.bits=l,il(e,f),s=e.next_out,o=e.output,u=e.avail_out,i=e.next_in,r=e.input,a=e.avail_in,c=n.hold,l=n.bits,n.mode===wl&&(n.back=-1);break}for(n.back=0;w=n.lencode[c&(1<>>24,_=w>>>16&255,g=65535&w,!(m<=l);){if(0===a)break e;a--,c+=r[i++]<>y)],m=w>>>24,_=w>>>16&255,g=65535&w,!(y+m<=l);){if(0===a)break e;a--,c+=r[i++]<>>=y,l-=y,n.back+=y}if(c>>>=m,l-=m,n.back+=m,n.length=g,0===_){n.mode=16205;break}if(32&_){n.back=-1,n.mode=wl;break}if(64&_){e.msg="invalid literal/length code",n.mode=Cl;break}n.extra=15&_,n.mode=16201;case 16201:if(n.extra){for(S=n.extra;l>>=n.extra,l-=n.extra,n.back+=n.extra}n.was=n.length,n.mode=16202;case 16202:for(;w=n.distcode[c&(1<>>24,_=w>>>16&255,g=65535&w,!(m<=l);){if(0===a)break e;a--,c+=r[i++]<>y)],m=w>>>24,_=w>>>16&255,g=65535&w,!(y+m<=l);){if(0===a)break e;a--,c+=r[i++]<>>=y,l-=y,n.back+=y}if(c>>>=m,l-=m,n.back+=m,64&_){e.msg="invalid distance code",n.mode=Cl;break}n.offset=g,n.extra=15&_,n.mode=16203;case 16203:if(n.extra){for(S=n.extra;l>>=n.extra,l-=n.extra,n.back+=n.extra}if(n.offset>n.dmax){e.msg="invalid distance too far back",n.mode=Cl;break}n.mode=16204;case 16204:if(0===u)break e;if(p=f-u,n.offset>p){if(p=n.offset-p,p>n.whave&&n.sane){e.msg="invalid distance too far back",n.mode=Cl;break}p>n.wnext?(p-=n.wnext,d=n.wsize-p):d=n.wnext-p,p>n.length&&(p=n.length),E=n.window}else E=o,d=s-n.offset,p=n.length;p>u&&(p=u),u-=p,n.length-=p;do{o[s++]=E[d++]}while(--p);0===n.length&&(n.mode=Il);break;case 16205:if(0===u)break e;o[s++]=n.length,u--,n.mode=Il;break;case Nl:if(n.wrap){for(;l<32;){if(0===a)break e;a--,c|=r[i++]<{if(Ml(e))return _l;let t=e.state;return t.window&&(t.window=null),e.state=null,dl},inflateGetHeader:(e,t)=>{if(Ml(e))return _l;const n=e.state;return 2&n.wrap?(n.head=t,t.done=!1,dl):_l},inflateSetDictionary:(e,t)=>{const n=t.length;let r,o,i;return Ml(e)?_l:(r=e.state,0!==r.wrap&&r.mode!==Tl?_l:r.mode===Tl&&(o=1,o=Fu(o,t,n,0),o!==r.check)?gl:(i=Vl(e,t,n,n),i?(r.mode=16210,yl):(r.havedict=1,dl)))},inflateInfo:"pako inflate (from Nodeca project)"},Hl=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1};const Ql=Object.prototype.toString,{Z_NO_FLUSH:Wl,Z_FINISH:zl,Z_OK:ql,Z_STREAM_END:Kl,Z_NEED_DICT:Xl,Z_STREAM_ERROR:Jl,Z_DATA_ERROR:$l,Z_MEM_ERROR:Zl}=Gu;function eh(e){this.options=jc.assign({chunkSize:65536,windowBits:15,to:""},e||{});const t=this.options;t.raw&&t.windowBits>=0&&t.windowBits<16&&(t.windowBits=-t.windowBits,0===t.windowBits&&(t.windowBits=-15)),!(t.windowBits>=0&&t.windowBits<16)||e&&e.windowBits||(t.windowBits+=32),t.windowBits>15&&t.windowBits<48&&(15&t.windowBits||(t.windowBits|=15)),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new Hc,this.strm.avail_out=0;let n=Yl.inflateInit2(this.strm,t.windowBits);if(n!==ql)throw new Error(ju[n]);if(this.header=new Hl,Yl.inflateGetHeader(this.strm,this.header),t.dictionary&&("string"==typeof t.dictionary?t.dictionary=Yc.string2buf(t.dictionary):"[object ArrayBuffer]"===Ql.call(t.dictionary)&&(t.dictionary=new Uint8Array(t.dictionary)),t.raw&&(n=Yl.inflateSetDictionary(this.strm,t.dictionary),n!==ql)))throw new Error(ju[n])}function th(e,t){const n=new eh(t);if(n.push(e),n.err)throw n.msg||ju[n.err];return n.result}eh.prototype.push=function(e,t){const n=this.strm,r=this.options.chunkSize,o=this.options.dictionary;let i,s,a;if(this.ended)return!1;for(s=t===~~t?t:!0===t?zl:Wl,"[object ArrayBuffer]"===Ql.call(e)?n.input=new Uint8Array(e):n.input=e,n.next_in=0,n.avail_in=n.input.length;;){for(0===n.avail_out&&(n.output=new Uint8Array(r),n.next_out=0,n.avail_out=r),i=Yl.inflate(n,s),i===Xl&&o&&(i=Yl.inflateSetDictionary(n,o),i===ql?i=Yl.inflate(n,s):i===$l&&(i=Xl));n.avail_in>0&&i===Kl&&n.state.wrap>0&&0!==e[n.next_in];)Yl.inflateReset(n),i=Yl.inflate(n,s);switch(i){case Jl:case $l:case Xl:case Zl:return this.onEnd(i),this.ended=!0,!1}if(a=n.avail_out,n.next_out&&(0===n.avail_out||i===Kl))if("string"===this.options.to){let e=Yc.utf8border(n.output,n.next_out),t=n.next_out-e,o=Yc.buf2string(n.output,e);n.next_out=t,n.avail_out=r-t,t&&n.output.set(n.output.subarray(e,e+t),0),this.onData(o)}else this.onData(n.output.length===n.next_out?n.output:n.output.subarray(0,n.next_out));if(i!==ql||0!==a){if(i===Kl)return i=Yl.inflateEnd(this.strm),this.onEnd(i),this.ended=!0,!0;if(0===n.avail_in)break}}return!0},eh.prototype.onData=function(e){this.chunks.push(e)},eh.prototype.onEnd=function(e){e===ql&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=jc.flattenChunks(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg};var nh={Inflate:eh,inflate:th,inflateRaw:function(e,t){return(t=t||{}).raw=!0,th(e,t)},ungzip:th,constants:Gu};const{Deflate:rh,deflate:oh,deflateRaw:ih,gzip:sh}=rl,{Inflate:ah,inflate:uh,inflateRaw:ch,ungzip:lh}=nh;var hh={Deflate:rh,deflate:oh,deflateRaw:ih,gzip:sh,Inflate:ah,inflate:uh,inflateRaw:ch,ungzip:lh,constants:Gu};function fh(e){return fh="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},fh(e)}function ph(){ph=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==fh(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function dh(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Eh(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Ah(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function vh(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Ah(i,r,o,s,a,"next",e)}function a(e){Ah(i,r,o,s,a,"throw",e)}s(void 0)}))}}function bh(e,t){for(var n=0;n0&&(t+=e.Width),e.Height>0?t+="x"+e.Height:e.IsPercentage||(t+="x"),e.X&&0!==e.X&&(e.X>=0&&(t+="+"),t+=e.X),e.Y&&0!==e.Y&&(e.Y>=0&&(t+="+"),t+=e.Y),e.IsPercentage&&(t+="%"),e.IgnoreAspectRatio&&(t+="!"),e.Greater&&(t+=">"),e.Less&&(t+="<"),e.FillArea&&(t+="^"),e.LimitPixels&&(t+="@"),t}},{key:"formatName",value:function(e,t){var n=Fh.parse(t);return e.replace("{0}",n.name).replace("{1}",n.ext.substring(1))}}])&&qh(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r}(Ih);function tf(e){return tf="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},tf(e)}function nf(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function ff(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function pf(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function bf(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Tf(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Lf(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Mf(e,t){for(var n=0;n=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function Hf(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Wf(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function zf(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Wf(i,r,o,s,a,"next",e)}function a(e){Wf(i,r,o,s,a,"throw",e)}s(void 0)}))}}function qf(e,t){for(var n=0;n0&&(f.some((function(e){return e.processedByChild()}))||(f[0].status=Me));r={logs:s.filter((function(e){return e.status!=we})).map((function(e){return e.getLogs()}))},e.next=22;break;case 18:e.prev=18,e.t0=e.catch(0),console.log(e.t0),r={error:e.t0.message};case 22:return p=Vf({queryString:oa.parse(n)},r),e.prev=23,e.next=26,this._sendReportAsync(p,n);case 26:p=e.sent,e.next=35;break;case 29:e.prev=29,e.t1=e.catch(23),d="Error in send report to ".concat(this._options.ReportUrl,".\n").concat(e.t1),console.error(d),console.error(e.t1),p={queryString:oa.parse(n),error:d};case 35:return e.abrupt("return",JSON.stringify(p));case 36:case"end":return e.stop()}}),e,this,[[0,18],[23,29]])}))),function(e,t){return o.apply(this,arguments)})},{key:"_flatLogs",value:function(e,t){e.push(t);var n,r=Yf(t._children);try{for(r.s();!(n=r.n()).done;){var o=n.value;this._flatLogs(e,o)}}catch(e){r.e(e)}finally{r.f()}}},{key:"_applyPermission",value:function(e,t){var n={};if(null!==this._defaultConfig&&null!=this._defaultConfig.Permissions){var r,o=Yf(this._defaultConfig.Permissions);try{for(o.s();!(r=o.n()).done;){var i,s=r.value,a=Yf(s.Mimes);try{for(a.s();!(i=a.n()).done;)n[i.value]=s}catch(e){a.e(e)}finally{a.f()}}}catch(e){o.e(e)}finally{o.f()}}if(null!==this.localOptions&&null!=t.Permissions){var u,c=Yf(t.Permissions);try{for(c.s();!(u=c.n()).done;){var l,h=u.value,f=Yf(h.Mimes);try{for(f.s();!(l=f.n()).done;)n[l.value]=h}catch(e){f.e(e)}finally{f.f()}}}catch(e){c.e(e)}finally{c.f()}}var p,d=0,E=Yf(e);try{for(E.s();!(p=E.n()).done;){var m=p.value;m.AddLog("name",m.name),m.AddLog("size",m.payload.byteLength),d+=m.payload.byteLength}}catch(e){E.e(e)}finally{E.f()}var _=n[""];if(_&&(_.MaxSize>0&&d>_.MaxSize||_.MinSize>0&&d<_.MinSize)){var g,y=Yf(e);try{for(y.s();!(g=y.n()).done;){var A=g.value;A.AddLog("max-valid-total-size",_.MaxSize),A.AddLog("min-valid-total-size",_.MinSize),A.AddLog("total-size",d),A.status=Ie}}catch(e){y.e(e)}finally{y.f()}}var v,b=[],T=Yf(e.filter((function(e){return e.status==we})));try{for(T.s();!(v=T.n()).done;){var w=v.value;w.AddLog("mime",w.mime);var O=n[w.mime];O?(O.MinSize>w.payload.length?(w.AddLog("min-valid-size",O.MinSize),w.status=Re):O.MaxSize0)){e.next=7;break}if(r={},this._defaultConfig&&this._defaultConfig.Actions){o=Yf(this._defaultConfig.Actions);try{for(o.s();!(i=o.n()).done;)s=i.value,r[s.Name]=s}catch(e){o.e(e)}finally{o.f()}}if(n&&n.Actions){a=Yf(n.Actions);try{for(a.s();!(u=a.n()).done;)c=u.value,r[c.Name]=c}catch(e){a.e(e)}finally{a.f()}}return l=this._createProcess(n.Process,r),e.next=7,l.processAsync(t);case 7:case"end":return e.stop()}}),e,this)}))),function(e,t){return r.apply(this,arguments)})},{key:"_createProcess",value:function(e,t){var n=this;if(Array.isArray(e))return new Aa(e.map((function(e){return n._createProcess(e,t)})));if("string"==typeof e){var r=e.toString(),o=t[r];if(o){var i=this._steps[o.Type];return i?new ru(r,o.options,i):new La(o.Type)}return new Ha(r)}return new La(jf(e))}}],n&&qf(e.prototype,n),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,n,r,o,i,s,a,u}();function $f(e){return $f="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},$f(e)}function Zf(){Zf=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==$f(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function ep(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function tp(e){for(var t=1;tc)){e.next=35;break}return l=this._request.index4.size,h=JSON.parse(this._request.index4.properties),e.next=11,t.promises.readFile(o);case 11:return f=e.sent,e.next=14,n._resizeImageAsync(f,l,h.deform);case 14:return p=e.sent,e.next=17,t.promises.writeFile(s,p);case 17:if(a=s,!r){e.next=27;break}return d=this._request.index4.zippath,E=Fh.dirname(d),d=Fh.join(E,"compressed",Fh.basename(d)),a=d,n._createDirectoryIfNotExist(d),m=n._makeGzip(p,9),e.next=27,t.promises.writeFile(d,m);case 27:if(_=this._request.index4.webppath,ni.A.isNullOrEmpty(_)){e.next=35;break}return n._createDirectoryIfNotExist(_),e.next=32,n._mackWebpAsync(p,90);case 32:return g=e.sent,e.next=35,t.promises.writeFile(_,g);case 35:if(!t.existsSync(a)){e.next=42;break}return e.next=38,t.promises.readFile(a);case 38:return y=e.sent,e.abrupt("return",[parseInt(this._request.webserver.headercode.split(" ")[0]),tp(tp(tp(tp(tp({},{"content-type":this._request.webserver.mime}),r&&{"Content-Encoding":"gzip"}),this._request.webserver.etag&&{ETag:this._request.webserver.etag}),this._request.webserver.lastmodified&&{"Last-Modified":this._request.webserver.lastmodified}),this._request.http&&this._request.http),y]);case 42:return e.abrupt("return",[i.NOT_FOUND,{},null]);case 43:case"end":return e.stop()}}),e,this)})),u=function(){var e=this,t=arguments;return new Promise((function(n,r){var o=a.apply(e,t);function i(e){rp(o,n,r,i,s,"next",e)}function s(e){rp(o,n,r,i,s,"throw",e)}i(void 0)}))},function(){return u.apply(this,arguments)})},{key:"_getLastModifiedDate",value:function(e){return t.statSync(e).mtime}}],s=[{key:"_resizeImageAsync",value:function(e,t,n){return new Promise((function(r){var o=["-","-resize","".concat(t).concat(n?"!":""),"-"];Wh.convert(o,(function(t,n){if(t)throw new mn("Error in resize index 4 image",t);try{e=Buffer.from(n,"binary")}catch(t){throw new mn("Error in resize index 4 image",t)}r(e)})).stdin.end(e)}))}},{key:"_mackWebpAsync",value:function(e,t){return new Promise((function(n){var r=["-","-quality","".concat(t),"-define","webp:lossless=true","-"];Wh.convert(r,(function(t,r){if(t)throw new mn("Error in create webp image",t);try{e=Buffer.from(r,"binary")}catch(t){throw new mn("Error in create webp image",t)}n(e)})).stdin.end(e)}))}},{key:"_createDirectoryIfNotExist",value:function(e){var n=Fh.dirname(e);t.existsSync(n)||t.mkdirSync(n)}},{key:"_makeGzip",value:function(e,t){try{var n=hh.gzip(e,{level:t});return Buffer.from(n.buffer)}catch(e){throw new mn("Error in create gzip file",e)}}}],o&&op(r.prototype,o),s&&op(r,s),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,o,s,a,u}(at);function hp(e){return hp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},hp(e)}function fp(){fp=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==hp(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function pp(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return dp(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?dp(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function dp(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function wp(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Op(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){wp(i,r,o,s,a,"next",e)}function a(e){wp(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Rp(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function kp(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return jp(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?jp(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function jp(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ne.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function cd(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function ld(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){cd(i,r,o,s,a,"next",e)}function a(e){cd(i,r,o,s,a,"throw",e)}s(void 0)}))}}function hd(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function _d(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function gd(e,t){for(var n=0;n0}},{key:"addHtmlElementAsync",value:(n=md().mark((function e(t,n){return md().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all(this.items.map((function(e){return e.createHtmlElementAsync(n)})));case 2:e.sent.forEach((function(e){return t.addChild(e)}));case 4:case"end":return e.stop()}}),e,this)})),r=function(){var e=this,t=arguments;return new Promise((function(r,o){var i=n.apply(e,t);function s(e){_d(i,r,o,s,a,"next",e)}function a(e){_d(i,r,o,s,a,"throw",e)}s(void 0)}))},function(e,t){return r.apply(this,arguments)})}],t&&gd(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n,r}();function vd(e){return vd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},vd(e)}function bd(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Nd(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Cd(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Nd(i,r,o,s,a,"next",e)}function a(e){Nd(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Dd(e,t){for(var n=0;n0}},{key:"addHtmlElementAsync",value:(n=Cd(Id().mark((function e(t,n){var r;return Id().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=new Kp.A("params"),e.next=3,Promise.all(this.items.map(function(){var e=Cd(Id().mark((function e(t){var o;return Id().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return o=new Kp.A("add"),e.next=3,Promise.all([o.addAttributeIfExistAsync("name",t.name,n),o.addAttributeIfExistAsync("value",t.value,n)]);case 3:r.addChild(o);case 4:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()));case 3:t.addChild(r);case 4:case"end":return e.stop()}}),e,this)}))),function(e,t){return n.apply(this,arguments)})}],t&&Dd(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n}();function xd(e){return xd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},xd(e)}function Bd(e){var t="function"==typeof Map?new Map:void 0;return Bd=function(e){if(null===e||!function(e){try{return-1!==Function.toString.call(e).indexOf("[native code]")}catch(t){return"function"==typeof e}}(e))return e;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return function(e,t,n){if(Pd())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,t);var o=new(e.bind.apply(e,r));return n&&Fd(o,n.prototype),o}(e,arguments,Ud(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),Fd(n,e)},Bd(e)}function Pd(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(Pd=function(){return!!e})()}function Fd(e,t){return Fd=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},Fd(e,t)}function Ud(e){return Ud=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},Ud(e)}var kd=function(e){function t(e,n){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),r=this,i=[e,{cause:n}],o=Ud(o=t),function(e,t){if(t&&("object"==xd(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(r,Pd()?Reflect.construct(o,i||[],Ud(r).constructor):o.apply(r,i));var r,o,i}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Fd(e,t)}(t,e),n=t,Object.defineProperty(n,"prototype",{writable:!1}),n;var n}(Bd(Error));function jd(e){return jd="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},jd(e)}function Gd(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,s,a=[],u=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;u=!1}else for(;!(u=(r=i.call(n)).done)&&(a.push(r.value),a.length!==t);u=!0);}catch(e){c=!0,o=e}finally{try{if(!u&&null!=n.return&&(s=n.return(),Object(s)!==s))return}finally{if(c)throw o}}return a}}(e,t)||Hd(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Vd(){Vd=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==jd(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Yd(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=Hd(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function Hd(e,t){if(e){if("string"==typeof e)return Qd(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Qd(e,t):void 0}}function Qd(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0)){e.next=29;break}return e.next=3,this.name.getValueAsync(t);case 3:return r=e.sent,e.next=6,this._loadDataAsync(r,t);case 6:if(o=e.sent,t.cancellation.throwIfCancellationRequested(),o.items.length==this.members.items.length){e.next=10;break}throw new kd("Command ".concat(r," has ").concat(this.members.items.length," member(s) but ").concat(o.items.length," result(s) returned from source!"));case 10:i=0,s=Yd(this.members.items),e.prev=12,s.s();case 14:if((a=s.n()).done){e.next=21;break}return u=a.value,c=o.items[i++],e.next=19,u.addDataSourceAsync(c,r,t);case 19:e.next=14;break;case 21:e.next=26;break;case 23:e.prev=23,e.t0=e.catch(12),s.e(e.t0);case 26:return e.prev=26,s.f(),e.finish(26);case 29:return e.abrupt("return",Pp.A.result);case 30:case"end":return e.stop()}}),e,this,[[12,23,26,29]])}))),function(e){return u.apply(this,arguments)})},{key:"_loadDataAsync",value:(a=zd(Vd().mark((function e(t,n){var r,o,i,s,a,u,c;return Vd().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all([this.connectionName.getValueAsync(n),this.toCustomFormatHtmlAsync(n),this._getParamsAsync(n)]);case 2:return r=e.sent,o=Gd(r,3),i=o[0],s=o[1],a=o[2],u={command:s,dmnid:n.domainId,params:a},c=this.members.items.map((function(e){return e.name})),e.next=11,n.loadDataAsync(t,i,u,c);case 11:return e.abrupt("return",e.sent);case 12:case"end":return e.stop()}}),e,this)}))),function(e,t){return a.apply(this,arguments)})},{key:"toCustomFormatHtmlAsync",value:(s=zd(Vd().mark((function e(t){var n,r;return Vd().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.createHtmlElementAsync(t);case 2:return n=e.sent,-1!=(r=n.childs.indexOf((function(e){return e.name&&"params"===e.name})))&&n.childs.splice(n.childs.indexOf(r),1),e.abrupt("return",n.getHtml());case 6:case"end":return e.stop()}}),e,this)}))),function(e){return s.apply(this,arguments)})},{key:"createHtmlElementAsync",value:(i=zd(Vd().mark((function e(n){var r;return Vd().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Jd($d(t.prototype),"createHtmlElementAsync",this).call(this,n);case 2:return r=e.sent,e.next=5,Promise.all([r.addAttributeIfExistAsync("procedurename",this.procedureName,n),r.addAttributeIfExistAsync("source",this.connectionName,n)]);case 5:if(!this.params.IsNotNull){e.next=8;break}return e.next=8,this.params.addHtmlElementAsync(r,n);case 8:if(!this.members.IsNotNull){e.next=11;break}return e.next=11,this.members.addHtmlElementAsync(r,n);case 11:return e.abrupt("return",r);case 12:case"end":return e.stop()}}),e,this)}))),function(e){return i.apply(this,arguments)})},{key:"_getParamsAsync",value:(o=zd(Vd().mark((function e(t){var n,r,o,i,s,a,u,c;return Vd().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:n={},r=Yd(this.params.items),e.prev=2,r.s();case 4:if((o=r.n()).done){e.next=33;break}if(i=o.value,e.t0=Promise,!(i.name instanceof Ap.A)){e.next=13;break}return e.next=10,i.name.getValueAsync(t);case 10:e.t1=e.sent,e.next=14;break;case 13:e.t1=i.name;case 14:if(e.t2=e.t1,!(i.value instanceof Ap.A)){e.next=21;break}return e.next=18,i.value.getValueAsync(t);case 18:e.t3=e.sent,e.next=22;break;case 21:e.t3=i.value;case 22:return e.t4=e.t3,e.t5=[e.t2,e.t4],e.next=26,e.t0.all.call(e.t0,e.t5);case 26:s=e.sent,a=Gd(s,2),u=a[0],c=a[1],n[u]=c;case 31:e.next=4;break;case 33:e.next=38;break;case 35:e.prev=35,e.t6=e.catch(2),r.e(e.t6);case 38:return e.prev=38,r.f(),e.finish(38);case 41:return e.abrupt("return",n);case 42:case"end":return e.stop()}}),e,this,[[2,35,38,41]])}))),function(e){return o.apply(this,arguments)})}],r&&qd(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i,s,a,u}(ri.A),rE=__webpack_require__(76396);function oE(e){return oE="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},oE(e)}function iE(){iE=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==oE(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function sE(e){return function(e){if(Array.isArray(e))return uE(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||aE(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function aE(e,t){if(e){if("string"==typeof e)return uE(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?uE(e,t):void 0}}function uE(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function bE(e){return function(e){if(Array.isArray(e))return OE(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||wE(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function TE(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=wE(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function wE(e,t){if(e){if("string"==typeof e)return OE(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?OE(e,t):void 0}}function OE(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function GE(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function VE(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){GE(i,r,o,s,a,"next",e)}function a(e){GE(i,r,o,s,a,"throw",e)}s(void 0)}))}}function YE(e,t){for(var n=0;n0&&0==this._renderedCell&&!this.isEnd}},{key:"setRendered",value:function(){this._renderedCount++,0!=this._cellPerRow&&(this._renderedCell=this._renderedCount%this._cellPerRow)}},{key:"setIgnored",value:function(){this._renderedCount--}},{key:"setLevel",value:function(e){this.levels=e}}])&&rm(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t}();function am(e){return am="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},am(e)}function um(e,t){for(var n=0;n0;)t.cancellation.throwIfCancellationRequested(),n+=e.incompleteTemplate,i--}else e.setIgnored()}return n}}])&&dm(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r}(mm(Array));function vm(e){return vm="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},vm(e)}function bm(){bm=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==vm(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Tm(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function wm(e,t){for(var n=0;ne.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Bm(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Pm(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Bm(i,r,o,s,a,"next",e)}function a(e){Bm(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Fm(e,t){for(var n=0;n0}},{key:"addHtmlElementAsync",value:(n=Pm(xm().mark((function e(t,n){return xm().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all(this.faces.map(function(){var e=Pm(xm().mark((function e(r){return xm().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=t,e.next=3,r.createHtmlElementAsync(n);case 3:e.t1=e.sent,e.t0.addChild.call(e.t0,e.t1);case 5:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()));case 2:case"end":return e.stop()}}),e,this)}))),function(e,t){return n.apply(this,arguments)})}],t&&Fm(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n,r}();function jm(e){return jm="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},jm(e)}function Gm(){Gm=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==jm(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Vm(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Ym(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Km(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Xm(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Km(i,r,o,s,a,"next",e)}function a(e){Km(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Jm(e,t){for(var n=0;n0}},{key:"addHtmlElementAsync",value:(n=Xm(qm().mark((function e(t,n){return qm().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all(this.items.map(function(){var e=Xm(qm().mark((function e(r){return qm().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=t,e.next=3,r.createHtmlElementAsync(n);case 3:e.t1=e.sent,e.t0.addChild.call(e.t0,e.t1);case 5:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()));case 2:case"end":return e.stop()}}),e,this)}))),function(e,t){return n.apply(this,arguments)})}],t&&Jm(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n,r}();function e_(e){return e_="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e_(e)}function t_(){t_=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==e_(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function n_(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function r_(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){n_(i,r,o,s,a,"next",e)}function a(e){n_(i,r,o,s,a,"throw",e)}s(void 0)}))}}function o_(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function p_(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0)){e.next=20;break}return e.next=16,this.layout.getValueAsync(n);case 16:d=e.sent,p=d?ed.replace(d,"@child",f):f,e.next=23;break;case 20:return e.next=22,this.elseLayout.getValueAsync(n);case 22:p=e.sent;case 23:return e.abrupt("return",new je.A(p));case 24:case"end":return e.stop()}var E,m}),e,this)}))),function(e,t){return i.apply(this,arguments)})},{key:"renderInternallyAsync",value:function(e,t,n,r,o,i,s){var a,u=new sm(r,null!==(a=null==e?void 0:e.data.length)&&void 0!==a?a:0,o,i,s),c="";if(e)return e.data.forEach((function(e){u.data=e;var r=n.render(u,t);r&&(c+=r)})),Promise.resolve(c)}},{key:"createHtmlElementAsync",value:(o=E_(f_().mark((function e(n){var r,o,i,s;return f_().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,y_(A_(t.prototype),"createHtmlElementAsync",this).call(this,n);case 2:if(r=e.sent,!this.layout.IsNotNull){e.next=8;break}return o=new Kp.A("layout"),e.next=7,o.addRawContentIfExistAsync(this.layout,n);case 7:r.addChild(o);case 8:if(!this.elseLayout.IsNotNull){e.next=13;break}return i=new Kp.A("else-layout"),e.next=12,i.addRawContentIfExistAsync(this.elseLayout,n);case 12:r.addChild(i);case 13:if(!this.rawFaces.IsNotNull){e.next=16;break}return e.next=16,this.rawFaces.addHtmlElementAsync(r,n);case 16:if(!this.replaces.IsNotNull){e.next=19;break}return e.next=19,this.replaces.addHtmlElementAsync(r,n);case 19:if(!this.dividerRowCount.IsNotNull){e.next=26;break}return s=new Kp.A("divider"),e.next=23,s.addAttributeIfExistAsync("rowcount",this.dividerRowCount,n);case 23:return e.next=25,s.addRawContentIfExistAsync(this.dividerTemplate,n);case 25:r.addChild(s);case 26:return e.abrupt("return",r);case 27:case"end":return e.stop()}}),e,this)}))),function(e){return o.apply(this,arguments)})}],r&&m_(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i}(function(e){function t(e){var n,r,o,i;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),r=n=i_(this,t,[e]),i=void 0,(o=l_(o="sourceId"))in r?Object.defineProperty(r,o,{value:i,enumerable:!0,configurable:!0,writable:!0}):r[o]=i,n.sourceId=vp.A.getFiled(e,"data-member-name"),n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c_(e,t)}(t,e),n=t,r=[{key:"_executeCommandAsync",value:(i=r_(t_().mark((function e(t){var n,r;return t_().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.sourceId.getValueAsync(t);case 2:if(!(n=e.sent)){e.next=9;break}return e.next=6,t.waitToGetSourceAsync(n);case 6:e.t0=e.sent,e.next=10;break;case 9:e.t0=null;case 10:return r=e.t0,t.cancellation.throwIfCancellationRequested(),e.next=14,this._renderAsync(r,t);case 14:return e.abrupt("return",e.sent);case 15:case"end":return e.stop()}}),e,this)}))),function(e){return i.apply(this,arguments)})},{key:"_renderAsync",value:function(e,t){return Promise.resolve(new ExceptionResult(new Error("executeCommandAsync not implemented"),t))}},{key:"createHtmlElementAsync",value:(o=r_(t_().mark((function e(n){var r;return t_().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,a_(u_(t.prototype),"createHtmlElementAsync",this).call(this,n);case 2:return(r=e.sent).addAttributeIfExistAsync("datamembername",this.sourceId,n),e.abrupt("return",r);case 5:case"end":return e.stop()}}),e,this)}))),function(e){return o.apply(this,arguments)})}],r&&o_(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i}(ri.A));function O_(e){return O_="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},O_(e)}function R_(e,t,n){return t=I_(t),function(e,t){if(t&&("object"==O_(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(e,S_()?Reflect.construct(t,n||[],I_(e).constructor):t.apply(e,n))}function S_(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(S_=function(){return!!e})()}function I_(e){return I_=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},I_(e)}function N_(e,t){return N_=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},N_(e,t)}var C_=function(e){function t(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),R_(this,t,[e])}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&N_(e,t)}(t,e),n=t,Object.defineProperty(n,"prototype",{writable:!1}),n;var n}(w_);function D_(e){return D_="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},D_(e)}function L_(){L_=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==D_(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function M_(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function x_(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function K_(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function X_(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){K_(i,r,o,s,a,"next",e)}function a(e){K_(i,r,o,s,a,"throw",e)}s(void 0)}))}}function J_(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function ag(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,s,a=[],u=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;u=!1}else for(;!(u=(r=i.call(n)).done)&&(a.push(r.value),a.length!==t);u=!0);}catch(e){c=!0,o=e}finally{try{if(!u&&null!=n.return&&(s=n.return(),Object(s)!==s))return}finally{if(c)throw o}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return ug(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?ug(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ug(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function vg(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function bg(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){vg(i,r,o,s,a,"next",e)}function a(e){vg(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Tg(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Mg(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function xg(e,t){for(var n=0;ne.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Qg(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Wg(e,t){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:0,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"",i=[];if(Array.isArray(e))e.forEach((function(e,s){var a=t.processElementOrProperty(s,e,0==n?0:n+1,r,o,!0);i.push.apply(i,Vg(a)),a.length>0&&(r=a[a.length-1].Id+1)}));else if(e)for(var s=0,a=Object.keys(e);s0&&(r=l[l.length-1].Id+1)}return i}},{key:"processElementOrProperty",value:function(e,t,n,r,o,i){var s,a=[],u=Gg(t),c=1==i?o+"[".concat(e,"]"):o+"."+e,l=i?null:e;if(s="object"==u?t?Array.isArray(t)?"Array":"Object":"Scalar.Null":"string"==u?"Scalar.String":"boolean"==u?"Scalar.Boolean":"number"==u?"Scalar.Numeric":"",a.push({Id:r,ParentId:0==n?null:n,Field:l,Value:t,Path:c,Type:s}),t&&"object"==u){var h=this.convertObjectToJsonMemberOutPut(t,r-1,r+1,c);a.push.apply(a,Vg(h))}return a}}],r&&Wg(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i}(og);function Zg(e){return Zg="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Zg(e)}function ey(){ey=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==Zg(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function ty(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function ny(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function yy(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Ay(e,t){for(var n=0;n0)){e.next=6;break}return e.next=3,this.name.getValueAsync(t);case 3:return o=e.sent,e.next=6,Promise.all(this.members.items.map((function(e){return e.addDataSourceAsync(o,t)})));case 6:return e.abrupt("return",Pp.A.result);case 7:case"end":return e.stop()}}),e,this)})),i=function(){var e=this,t=arguments;return new Promise((function(n,r){var i=o.apply(e,t);function s(e){yy(i,n,r,s,a,"next",e)}function a(e){yy(i,n,r,s,a,"throw",e)}s(void 0)}))},function(e){return i.apply(this,arguments)})}],r&&Ay(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i}(nE);function Sy(e){return Sy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Sy(e)}function Iy(){Iy=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==Sy(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Ny(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=Cy(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function Cy(e,t){if(e){if("string"==typeof e)return Dy(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Dy(e,t):void 0}}function Dy(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n0)){e.next=34;break}return h=function e(u,c){var l=null;if(-1!=f.indexOf(u.data))throw new Error("Infinity loop detect in tree data source! Row with value '".concat(u.Data[_],"' in column '").concat(_,"' cause loop."));f.push(u.data);var h="",p=Xp("SELECT VALUE FROM ? WHERE ".concat(m," = ?"),[t.data,u.data[_]]),d={};if(p.length>0){var g=c+1,y=new sm(o,p.length,i,s,a);if(ni.A.isNullOrEmpty(E))p.forEach((function(t){var n;y.data=t,h+=null!==(n=e(y,g))&&void 0!==n?n:""})),d[""]=h;else{var A=ni.A.groupBy(t.data,E);for(var v in A)Object.hasOwn(A,v)&&(A[v].forEach((function(t){y.data=t,h+=e(h,g)})),d[v]=h,h="")}u.setLevel("".concat(c))}else d[""]="",u.setLevel(["".concat(c),"end"]);if(l=r.render(u,n))for(var b in d)Object.hasOwn(d,b)&&(l=ed.replace(l,"@child".concat(b?/\(${key}\)/:""),d[b]));return l},l="",f=[],e.t0=Promise,e.next=8,vp.A.getValueOrDefaultAsync(this.relationColumnName,n);case 8:return e.t1=e.sent,e.next=11,vp.A.getValueOrDefaultAsync(this.foreignKey,n,"parentid");case 11:return e.t2=e.sent,e.next=14,vp.A.getValueOrDefaultAsync(this.principalKey,n,"id");case 14:return e.t3=e.sent,e.next=17,vp.A.getValueOrDefaultAsync(this.nullValue,n,"0");case 17:return e.t4=e.sent,e.t5=[e.t1,e.t2,e.t3,e.t4],e.next=21,e.t0.all.call(e.t0,e.t5);case 21:if(p=e.sent,S=4,d=function(e){if(Array.isArray(e))return e}(R=p)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,s,a=[],u=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;u=!1}else for(;!(u=(r=i.call(n)).done)&&(a.push(r.value),a.length!==t);u=!0);}catch(e){c=!0,o=e}finally{try{if(!u&&null!=n.return&&(s=n.return(),Object(s)!==s))return}finally{if(c)throw o}}return a}}(R,S)||Cy(R,S)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),E=d[0],m=d[1],_=d[2],g=d[3],y="number"==typeof t.data[0][m]?Number(g):g,0!=(A=Xp("SELECT VALUE FROM ? WHERE ".concat(m," = ?"),[t.data,y])).length){e.next=31;break}throw new Error("Tree command has no root record in data member '".concat(t.id,"' with '").concat(y,"' value in '").concat(m,"' column that set in NullValue attribute!"));case 31:v=new sm(o,A.length,i,s,a),b=Ny(A);try{for(b.s();!(T=b.n()).done;)w=T.value,v.data=w,O=h(v,1),l+=null!=O?O:""}catch(e){b.e(e)}finally{b.f()}case 34:return e.abrupt("return",l);case 35:case"end":return e.stop()}var R,S}),e,this)}))),function(e,t,n,r,o,s,a){return i.apply(this,arguments)})},{key:"createHtmlElementAsync",value:(o=My(Iy().mark((function e(n){var r;return Iy().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Fy(Uy(t.prototype),"createHtmlElementAsync",this).call(this,n);case 2:return r=e.sent,e.next=5,Promise.all([r.addAttributeIfExistAsync("idcol",this.principalKey,n),r.addAttributeIfExistAsync("parentidcol",this.foreignKey,n),r.addAttributeIfExistAsync("nullvalue",this.nullValue,n),r.addAttributeIfExistAsync("relationnamecol",this.relationColumnName,n)]);case 5:return e.abrupt("return",r);case 6:case"end":return e.stop()}}),e,this)}))),function(e){return o.apply(this,arguments)})}],r&&xy(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i}(w_);function Yy(e){return Yy="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Yy(e)}function Hy(){Hy=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==Yy(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Qy(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Wy(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Qy(i,r,o,s,a,"next",e)}function a(e){Qy(i,r,o,s,a,"throw",e)}s(void 0)}))}}function zy(e,t){for(var n=0;n0)){e.next=10;break}return l="",e.next=5,vp.A.getValueOrSystemDefaultAsync(this.groupColumn,"ViewCommand.GroupColumn",n,"prpid");case 5:h=e.sent,f=Xp("SELECT ".concat(h," AS key FROM ? GROUP BY ").concat(h),[t.data]),(p=new sm(o,f.length,i,s,a)).setLevel("1"),f.forEach((function(e){var u,c=Xp("SELECT VALUE FROM ? WHERE ".concat(h," = ?"),[t.data,e.key]);p.data=c[0];var f=null!==(u=r.render(p,n))&&void 0!==u?u:"",d="",E=new sm(o,c.length,i,s,a);E.setLevel("2"),c.forEach((function(e){E.data=e;var t=r.render(E,n);t&&(d+=t)})),l+=ed.replace(f,"@child",d)}));case 10:return e.abrupt("return",l);case 11:case"end":return e.stop()}}),e,this)}))),function(e,t,n,r,o,s,a){return i.apply(this,arguments)})},{key:"createHtmlElementAsync",value:(o=Wy(Hy().mark((function e(n){var r;return Hy().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Xy(Jy(t.prototype),"createHtmlElementAsync",this).call(this,n);case 2:return r=e.sent,e.next=5,retVal.addAttributeIfExistAsync("groupcol",this.groupColumn,n);case 5:return e.abrupt("return",r);case 6:case"end":return e.stop()}}),e,this)}))),function(e){return o.apply(this,arguments)})}],r&&zy(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,r,o,i}(w_);function tA(e){return tA="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},tA(e)}function nA(e,t,n){return t=oA(t),function(e,t){if(t&&("object"==tA(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(e,rA()?Reflect.construct(t,n||[],oA(e).constructor):t.apply(e,n))}function rA(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(rA=function(){return!!e})()}function oA(e){return oA=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},oA(e)}function iA(e,t){return iA=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},iA(e,t)}var sA=function(e){function t(e){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),nA(this,t,[e])}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&iA(e,t)}(t,e),n=t,Object.defineProperty(n,"prototype",{writable:!1}),n;var n}(w_);function aA(e){return aA="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},aA(e)}function uA(){uA=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==aA(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function cA(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function TA(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function wA(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){TA(i,r,o,s,a,"next",e)}function a(e){TA(i,r,o,s,a,"throw",e)}s(void 0)}))}}function OA(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function BA(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=PA(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function PA(e,t){if(e){if("string"==typeof e)return FA(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?FA(e,t):void 0}}function FA(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function ev(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function tv(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){ev(i,r,o,s,a,"next",e)}function a(e){ev(i,r,o,s,a,"throw",e)}s(void 0)}))}}function nv(e,t){for(var n=0;n0)){e.next=13;break}if(console.log("income:",t.map((function(e){return e.toString()})).join("\n")),!this._engine){e.next=12;break}return r=n.request.rawurl,o=r.split("?"),i=o.length>=2?o[1]:null,e.next=8,this._engine.processAsync(t,i);case 8:(s=e.sent)&&(n.cms.upload_log=s),e.next=13;break;case 12:console.error("stream engine not config for file handling");case 13:case"end":return e.stop()}}),e,this)}))),function(e,t){return r.apply(this,arguments)})},{key:"processAsync",value:function(e,t){throw new Error("Not implemented!")}},{key:"initializeAsync",value:(n=tv(ZA().mark((function e(){return ZA().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=$A,e.t1=$A({},KA.addDefaultCommands()),e.next=4,gp.process(this._options.Settings.LibPath);case 4:e.t2=e.sent,this._commands=(0,e.t0)(e.t1,e.t2);case 6:case"end":return e.stop()}}),e,this)}))),function(){return n.apply(this,arguments)})},{key:"_createResponse",value:function(e){var t=null;switch(e.webserver.index){case"1":t=new ra(e,this.settings,this._commands);break;case"2":t=new At(e,this.settings);break;case"4":t=new lp(e,this.settings);break;case"5":t=new Mt(e,this.settings);break;default:throw new Error("index type '".concat(e.cms.webserver.index,"' not supported in this version of web server."))}return t}}],t&&nv(e.prototype,t),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,t,n,r}();function sv(e){return sv="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},sv(e)}function av(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function pv(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function dv(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){pv(i,r,o,s,a,"next",e)}function a(e){pv(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Ev(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Rv(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Sv(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Rv(i,r,o,s,a,"next",e)}function a(e){Rv(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Iv(e,t){for(var n=0;ne.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Bv(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Pv(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Bv(i,r,o,s,a,"next",e)}function a(e){Bv(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Fv(e,t){for(var n=0;n2&&void 0!==arguments[2]?arguments[2]:[];return new Promise((function(r,o){e.all(t,n,(function(e,t){e?o(e):r(t)}))}))}function zv(e){return zv="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},zv(e)}function qv(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Kv(e){for(var t=1;t=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Jv(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function $v(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){Jv(i,r,o,s,a,"next",e)}function a(e){Jv(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Zv(e,t){for(var n=0;n0?o.json={header:se.convertObjectToNestedStructure(s)}:o.json={},o.body=c,d=u(),(E=new _).isSecure=l,E.request=o,E.cms={date:d.format("MM/DD/YYYY"),time:d.format("HH:mm A"),date2:d.format("YYYYMMDD"),time2:d.format("HHmmss"),date3:d.format("YYYY.MM.DD")},p.query){for(y in m={},g=!1,p.query)m[y]=p.query[y],g=!0;g&&(E.query=m)}return E.form=i,e.abrupt("return",E);case 21:case"end":return e.stop()}}),e)}))),function(e,t,n,r,o,i,s,a){return l.apply(this,arguments)})},{key:"_handleContentTypes",value:(c=$v(Xv().mark((function e(t,n,r){var o,i,a,u,c,l;return Xv().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(o="",!t.headers["content-length"]){e.next=23;break}if(null===(i=t.headers["content-type"])||void 0===i||!i.startsWith("multipart/form-data")){e.next=13;break}a=s({headers:t.headers}),u=[],c={},l={},a.on("file",(function(e,n,r){var o=[];n.on("data",(function(e){return o.push(e)})),n.on("end",$v(Xv().mark((function e(){var n;return Xv().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:(n=new ke).url="".concat(t.headers.host).concat(t.url),n.mime=r.mimeType.toLowerCase(),n.name=r.filename,n.payload=Buffer.concat(o),u.push(n);case 6:case"end":return e.stop()}}),e)}))))})),a.on("field",(function(e,t,n){c[e]=t,e.startsWith("_")&&(l[e]=t)})),a.on("close",(function(){t.formFields=c,t.fileContents=u,t.jsonHeaders=l,r()})),t.pipe(a),e.next=21;break;case 13:e.prev=13,t.on("data",(function(e){o+=e})),t.on("end",$v(Xv().mark((function e(){return Xv().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:0==o.length||(t.bodyStr=o),r();case 1:case"end":return e.stop()}}),e)})))),e.next=21;break;case 18:throw e.prev=18,e.t0=e.catch(13),new fe("invalid JSON on body");case 21:e.next=24;break;case 23:r();case 24:case"end":return e.stop()}}),e,null,[[13,18]])}))),function(e,t,n){return c.apply(this,arguments)})},{key:"addStringTable",value:function(e,t){var n="\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
".concat(e,"
Value
").concat(t,"
\n ");return new je.A(n)}},{key:"joinHeaders",value:function(e){e.reduce((function(e,t,n,r){return n%2==0&&e.push(r.slice(n,n+2).join(" : ")),e}),[]).join("
")}},{key:"_checkCacheAsync",value:(a=$v(Xv().mark((function e(t,n,o){var i,s,a,u;return Xv().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(null!=(i=r.parse(t.url,!0))&&i.query.refresh||!this._cacheOptions||!this._cacheOptions.isEnabled||!this._cacheOptions.requestMethods.includes(t.method)||!this._cacheConnection){e.next=9;break}return s="".concat(t.headers.host).concat(t.url),e.next=5,this._cacheConnection.loadContentAsync(s);case 5:(a=e.sent)?(n.writeHead(200,Kv({},a.properties)),n.write(null!==(u=a.file)&&void 0!==u?u:""),n.end()):o(),e.next=10;break;case 9:o();case 10:case"end":return e.stop()}}),e,this)}))),function(e,t,n){return a.apply(this,arguments)})},{key:"addCacheContentAsync",value:(i=$v(Xv().mark((function e(t,n,r,o){var i;return Xv().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!(this._cacheOptions&&this._cacheOptions.isEnabled&&this._cacheOptions.requestMethods.includes(o)&&this._cacheConnection)){e.next=4;break}return i=this.findProperties(r,this._cacheOptions.responseHeaders),e.next=4,this._cacheConnection.addCacheContentAsync(t,n,i);case 4:case"end":return e.stop()}}),e,this)}))),function(e,t,n,r){return i.apply(this,arguments)})},{key:"findProperties",value:function(e,t){var n={};return t.forEach((function(t){Object.prototype.hasOwnProperty.call(e,t)&&(n[t]=e[t])})),n}},{key:"initializeAsync",value:function(){return this._service.initializeAsync()}},{key:"kill",value:function(){this._server.close(),console.log("server ip ".concat(this._ip," and port ").concat(this._port," killed"))}}],o&&Zv(n.prototype,o),Object.defineProperty(n,"prototype",{writable:!1}),n;var n,o,i,a,c,l,h}(f);function ub(e){return ub="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ub(e)}function cb(){cb=function(){return t};var e,t={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(e,t,n){e[t]=n.value},i="function"==typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",u=i.toStringTag||"@@toStringTag";function c(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof _?t:_,s=Object.create(i.prototype),a=new C(r||[]);return o(s,"_invoke",{value:R(e,n,a)}),s}function h(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}t.wrap=l;var f="suspendedStart",p="suspendedYield",d="executing",E="completed",m={};function _(){}function g(){}function y(){}var A={};c(A,s,(function(){return this}));var v=Object.getPrototypeOf,b=v&&v(v(D([])));b&&b!==n&&r.call(b,s)&&(A=b);var T=y.prototype=_.prototype=Object.create(A);function w(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function O(e,t){function n(o,i,s,a){var u=h(e[o],e,i);if("throw"!==u.type){var c=u.arg,l=c.value;return l&&"object"==ub(l)&&r.call(l,"__await")?t.resolve(l.__await).then((function(e){n("next",e,s,a)}),(function(e){n("throw",e,s,a)})):t.resolve(l).then((function(e){c.value=e,s(c)}),(function(e){return n("throw",e,s,a)}))}a(u.arg)}var i;o(this,"_invoke",{value:function(e,r){function o(){return new t((function(t,o){n(e,r,t,o)}))}return i=i?i.then(o,o):o()}})}function R(t,n,r){var o=f;return function(i,s){if(o===d)throw Error("Generator is already running");if(o===E){if("throw"===i)throw s;return{value:e,done:!0}}for(r.method=i,r.arg=s;;){var a=r.delegate;if(a){var u=S(a,r);if(u){if(u===m)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===f)throw o=E,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=d;var c=h(t,n,r);if("normal"===c.type){if(o=r.done?E:p,c.arg===m)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=E,r.method="throw",r.arg=c.arg)}}}function S(t,n){var r=n.method,o=t.iterator[r];if(o===e)return n.delegate=null,"throw"===r&&t.iterator.return&&(n.method="return",n.arg=e,S(t,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),m;var i=h(o,t.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,m;var s=i.arg;return s?s.done?(n[t.resultName]=s.value,n.next=t.nextLoc,"return"!==n.method&&(n.method="next",n.arg=e),n.delegate=null,m):s:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function I(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function N(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function C(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(I,this),this.reset(!0)}function D(t){if(t||""===t){var n=t[s];if(n)return n.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,i=function n(){for(;++o=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function lb(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function hb(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Tb(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function wb(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function Vb(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return Yb(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Yb(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,s=!0,a=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return s=e.done,e},e:function(e){a=!0,i=e},f:function(){try{s||null==n.return||n.return()}finally{if(a)throw i}}}}function Yb(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function rT(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);ne.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function vT(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function bT(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){vT(i,r,o,s,a,"next",e)}function a(e){vT(i,r,o,s,a,"throw",e)}s(void 0)}))}}function TT(e,t){for(var n=0;n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function PT(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function ew(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function tw(e,t){for(var n=0;ne.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function dw(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Ew(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){dw(i,r,o,s,a,"next",e)}function a(e){dw(i,r,o,s,a,"throw",e)}s(void 0)}))}}function mw(e){return mw="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},mw(e)}function _w(e,t){for(var n=0;ne.length)&&(t=e.length);for(var n=0,r=Array(t);n=0;--i){var s=this.tryEntries[i],a=s.completion;if("root"===s.tryLoc)return o("end");if(s.tryLoc<=this.prev){var u=r.call(s,"catchLoc"),c=r.call(s,"finallyLoc");if(u&&c){if(this.prev=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),N(n),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var n=this.tryEntries[t];if(n.tryLoc===e){var r=n.completion;if("throw"===r.type){var o=r.arg;N(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(t,n,r){return this.delegate={iterator:D(t),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=e),m}},t}function jw(e,t,n,r,o,i,s){try{var a=e[i](s),u=a.value}catch(e){return void n(e)}a.done?t(u):Promise.resolve(u).then(r,o)}function Gw(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var i=e.apply(t,n);function s(e){jw(i,r,o,s,a,"next",e)}function a(e){jw(i,r,o,s,a,"throw",e)}s(void 0)}))}}function Vw(e,t){for(var n=0;n0?JSON.parse(i):void 0,n.query=s.query,r=n.url,a=n.method,"/endpointmanager/host"!=r||"POST"!==a){e.next=5;break}return e.abrupt("return",c.addHost(n,o));case 5:if("/endpointmanager/host"!=r||"PATCH"!==a){e.next=7;break}return e.abrupt("return",c.editHost(n,o));case 7:if("/endpointmanager/host"!=r||"DELETE"!==a){e.next=9;break}return e.abrupt("return",c.deleteHost(n,o));case 9:if("/endpointmanager/service"!=r||"POST"!==a){e.next=11;break}return e.abrupt("return",c.addService(n,o));case 11:if("/endpointmanager/service"!=r||"PATCH"!==a){e.next=13;break}return e.abrupt("return",c.editService(n,o));case 13:if("/endpointmanager/service"!=r||"DELETE"!==a){e.next=15;break}return e.abrupt("return",c.deleteService(n,o));case 15:if("/endpointmanager/certificate"!=r||"POST"!==a){e.next=17;break}return e.abrupt("return",c.addCertificate(n,o));case 17:if("/endpointmanager/certificate"!=r||"DELETE"!==a){e.next=19;break}return e.abrupt("return",c.deleteCertificate(n,o));case 19:if("/endpointmanager/routing"!=r||"POST"!==a){e.next=21;break}return e.abrupt("return",c.addRouting(n,o));case 21:if("/endpointmanager/routing"!=r||"PUT"!==a){e.next=23;break}return e.abrupt("return",c.deleteCertificate(n,o));case 23:return o.writeHead(404,{"Content-Type":"text/html"}),e.t0=o,e.next=27,t.promises.readFile("./index.html");case 27:return e.t1=e.sent,e.abrupt("return",e.t0.end.call(e.t0,e.t1));case 29:case"end":return e.stop()}}),e)}))));case 4:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}()),l.listen(a,s,(function(){console.log("management Server running at ".concat(s,":").concat(a))}));case 5:case"end":return e.stop()}}),e)}))),function(e,t,n,r,o){return a.apply(this,arguments)})},{key:"fromJson",value:function(t){var n=new JT;return new e(Object.assign(n,t))}}],i&&Vw(o.prototype,i),s&&Vw(o,s),Object.defineProperty(o,"prototype",{writable:!1}),o;var o,i,s,a}();function zw(e){var t=this;this.hosts=[];var n=this.loadServices(e.Services),r=function(){if(Object.hasOwnProperty.call(e.EndPoints,o)){var r=e.EndPoints[o];if(r.Active){var i=null;"string"==typeof r.Routing?i=n.find((function(e){return e.name==r.Routing})):"object"===Uw(r.Routing)&&(i=new eT("name-router",r.Routing,n)),i?"http"===(r.Type||"http").toLowerCase()?Hw(Qw,t,qw).call(t,o,r,i):console.error("".concat(r.Type," not support in this version of web server")):console.error("Related router not found for ".concat(o," endpoint"))}}};for(var o in e.EndPoints)r()}function qw(n,r,o,i){var s=this,a=r.CacheSettings;r.Addresses.forEach((function(n){var r,u,c,l=(u=n.EndPoint.split(":",2),c=2,function(e){if(Array.isArray(e))return e}(u)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,i,s,a=[],u=!0,c=!1;try{if(i=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;u=!1}else for(;!(u=(r=i.call(n)).done)&&(a.push(r.value),a.length!==t);u=!0);}catch(e){c=!0,o=e}finally{try{if(!u&&null!=n.return&&(s=n.return(),Object(s)!==s))return}finally{if(c)throw o}}return a}}(u,c)||function(e,t){if(e){if("string"==typeof e)return Fw(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Fw(e,t):void 0}}(u,c)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),h=l[0],f=l[1];if(n.Certificate){var p={};switch(n.Certificate.Type){case"ssl":var d=n.Certificate;d.FilePath&&(p.cert=t.readFileSync(d.FilePath)),d.KeyPath&&(p.key=t.readFileSync(d.KeyPath)),d.PfxPath&&(p.pfx=t.readFileSync(d.PfxPath)),d.PfxPassword&&(p.passphrase=d.PfxPassword);break;case"sni":var E=n.Certificate,m={};E.Hosts.forEach((function(e){var n={};E.FilePath&&(n.cert=t.readFileSync(e.FilePath)),E.KeyPath&&(n.key=t.readFileSync(e.KeyPath)),E.PfxPath&&(n.pfx=t.readFileSync(e.PfxPath)),E.PfxPassword&&(n.passphrase=t.readFileSync(e.PfxPassword)),e.HostNames.forEach((function(e){m[e.toLowerCase()]=n}))})),p.SNICallback=function(t,n){var r=m[t.toLowerCase()];r?n(null,new e.createSecureContext({cert:r.cert,key:r.key})):console.log("In sni setting no certificate found fot '".concat(t,"'"))}}r=n.Certificate.Http2?new MT(h,f,o,p,a):new dT(h,f,o,p,a)}else r=new QT(h,f,o,a);i?r.listenAsync().then((function(){s.hosts.push(r)})):s.hosts.push(r)}))}function Kw(e,t){var n=t.Settings.Directory;if(!n)throw new error("The 'Directory' setting not set for file dispatcher in '".concat(e,"' service!"));return new Lb(e,n,t)}})(),__webpack_exports__})())); \ No newline at end of file diff --git a/dist/bundle.js.LICENSE.txt b/dist/bundle.js.LICENSE.txt deleted file mode 100644 index 847eadb..0000000 --- a/dist/bundle.js.LICENSE.txt +++ /dev/null @@ -1,142 +0,0 @@ -/* - * @copyright (c) 2015-present, Philipp Thürwächter, Pattrick Hüper & js-joda contributors - * @license BSD-3-Clause (see LICENSE in the root directory of this source tree) - */ - -/* - * @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper - * @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos - * @license BSD-3-Clause (see LICENSE in the root directory of this source tree) - */ - -/* - * @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper - * @license BSD-3-Clause (see LICENSE in the root directory of this source tree) - */ - -/* - * @copyright (c) 2016, Philipp Thürwächter, Pattrick Hüper - * @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos - * @license BSD-3-Clause (see LICENSE in the root directory of this source tree) - */ - -/* -@module alasql -@version 4.3.3 - -AlaSQL - JavaScript SQL database -© 2014-2024 Andrey Gershun & Mathias Wulff - -@license -The MIT License (MIT) - -Copyright 2014-2024 Andrey Gershun (agershun@gmail.com) & Mathias Wulff (m@rawu.dk) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -*/ - -/*! - * mime-db - * Copyright(c) 2014 Jonathan Ong - * Copyright(c) 2015-2022 Douglas Christopher Wilson - * MIT Licensed - */ - -/*! - * mime-types - * Copyright(c) 2014 Jonathan Ong - * Copyright(c) 2015 Douglas Christopher Wilson - * MIT Licensed - */ - -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. -***************************************************************************** */ - -/*! @azure/msal-common v13.3.1 2023-10-27 */ - -/*! @azure/msal-common v7.6.0 2022-10-10 */ - -/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */ - -/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ - -/*! safe-buffer. MIT License. Feross Aboukhadijeh */ - -/** - * @license - * Copyright 2009 The Closure Library Authors - * Copyright 2020 Daniel Wirtz / The long.js Authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * SPDX-License-Identifier: Apache-2.0 - */ - -/** - * @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper - * @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos - * @license BSD-3-Clause (see LICENSE in the root directory of this source tree) - */ - -/** - * @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper - * @license BSD-3-Clause (see LICENSE in the root directory of this source tree) - */ - -/** - * [js-md4]{@link https://github.com/emn178/js-md4} - * - * @namespace md4 - * @version 0.3.2 - * @author Yi-Cyuan Chen [emn178@gmail.com] - * @copyright Yi-Cyuan Chen 2015-2027 - * @license MIT - */ - -//! @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos - -//! @copyright (c) 2015-present, Philipp Thürwächter, Pattrick Hüper & js-joda contributors - -//! @license BSD-3-Clause (see LICENSE in the root directory of this source tree) - -//! @version @js-joda/core - 5.6.2 - -//! AlaSQL v4.3.3 build: develop-b9447ae3 | © 2014-2024 Andrey Gershun & Mathias Wulff | License: MIT diff --git a/endPoint/httpHostEndPoint.js b/endPoint/httpHostEndPoint.js index 776f898..bb14c77 100644 --- a/endPoint/httpHostEndPoint.js +++ b/endPoint/httpHostEndPoint.js @@ -313,7 +313,7 @@ class HttpHostEndPoint extends HostEndPoint { } sanitizeInput(input) { let inputStr = String(input); - inputStr = inputStr.replace(/[\r\n]/g, ''); + inputStr = inputStr.replace(/[\n\r]|%0a|%0d/gi, " "); return inputStr; } diff --git a/renderEngine/Command/Source/BaseClasses/SourceCommand.js b/renderEngine/Command/Source/BaseClasses/SourceCommand.js index 2d3de8c..380839a 100644 --- a/renderEngine/Command/Source/BaseClasses/SourceCommand.js +++ b/renderEngine/Command/Source/BaseClasses/SourceCommand.js @@ -45,7 +45,6 @@ export default class SourceCommand extends CommandBase { const dataSet = await this._loadDataAsync(name, context); context.cancellation.throwIfCancellationRequested(); if (dataSet.items.length != this.members.items.length) { - console.log(this) throw new BasisCoreException( `Command ${name} has ${this.members.items.length} member(s) but ${dataSet.items.length} result(s) returned from source!` ); From 0f8976db9c0d6de94ab725bc9f84ccefd1ab056d Mon Sep 17 00:00:00 2001 From: alibazregar Date: Sun, 22 Sep 2024 06:51:06 -0700 Subject: [PATCH 06/23] changes in tls --- endPoint/httpHostEndPoint.js | 45 ++++++++++++------- endPoint/nonSecureHttpHostEndPoint.js | 15 ++++--- endPoint/secureHttpHostEndPoint.js | 8 +++- hostManager.js | 37 ++++++++++----- .../Command/Collection/CollectionCommand.js | 3 ++ .../Command/Renderable/RawFaceCollection.js | 5 ++- .../Source/BaseClasses/SourceCommand.js | 8 ++++ renderEngine/Command/ViewCommand.js | 3 +- renderEngine/Context/RequestContext.js | 4 ++ 9 files changed, 88 insertions(+), 40 deletions(-) diff --git a/endPoint/httpHostEndPoint.js b/endPoint/httpHostEndPoint.js index bb14c77..71167c2 100644 --- a/endPoint/httpHostEndPoint.js +++ b/endPoint/httpHostEndPoint.js @@ -26,7 +26,7 @@ class HttpHostEndPoint extends HostEndPoint { /** @type {CacheConnectionBase?} */ _cacheConnection; /** @type {http.Server} */ - _server + _server; /** * * @param {string} ip @@ -34,7 +34,7 @@ class HttpHostEndPoint extends HostEndPoint { * @param {HostService} * @param {CacheSettings}cacheOptions */ - constructor(ip, port, service,cacheOptions) { + constructor(ip, port, service, cacheOptions) { super(ip, port); this._service = service; this._cacheOptions = cacheOptions; @@ -112,7 +112,7 @@ class HttpHostEndPoint extends HostEndPoint { headers["url"] = decodeURIComponent(urlObject.pathname ?? ""); headers["full-url"] = decodeURIComponent(`${headers["host"]}${urlStr}`); headers["hostip"] = socket.localAddress; - headers["hostport"] = socket.localPort.toString(); + headers["hostport"] = socket.localPort?.toString(); headers["clientip"] = socket.remoteAddress; headers[":path"] = "/" + decodeURIComponent(rawUrl); if (Object.keys(jsonHeaders).length > 0) { @@ -148,19 +148,22 @@ class HttpHostEndPoint extends HostEndPoint { request["form"] = formFields; return request; } - /** + /** * * @param {IncomingMessage} req * @param {ServerResponse} res */ _securityHeadersMiddleware(req, res, next) { - req.url = req.url.replace(/[\n\r]|%0a|%0d/gi, ' '); - res.setHeader('Strict-Transport-Security', 'max-age=15552000; includeSubDomains; preload'); - res.setHeader('X-Content-Type-Options', 'nosniff'); - res.setHeader('X-Frame-Options', 'DENY'); - res.setHeader('X-XSS-Protection', '1; mode=block'); - - if (typeof next === 'function') { + req.url = req.url.replace(/[\n\r]|%0a|%0d/gi, " "); + res.setHeader( + "Strict-Transport-Security", + "max-age=15552000; includeSubDomains; preload" + ); + res.setHeader("X-Content-Type-Options", "nosniff"); + res.setHeader("X-Frame-Options", "DENY"); + res.setHeader("X-XSS-Protection", "1; mode=block"); + + if (typeof next === "function") { next(); } } @@ -305,7 +308,7 @@ class HttpHostEndPoint extends HostEndPoint { this._cacheOptions.responseHeaders ); await this._cacheConnection.addCacheContentAsync( - key, + this.removeQueryParam(key, 'refresh'), content, savedHeaders ); @@ -313,11 +316,19 @@ class HttpHostEndPoint extends HostEndPoint { } sanitizeInput(input) { let inputStr = String(input); - inputStr = inputStr.replace(/[\n\r]|%0a|%0d/gi, " "); + inputStr = inputStr.replace(/[\n\r]|%0a|%0d/gi, ""); return inputStr; -} + } + removeQueryParam(url, param) { + let [baseUrl, queryString] = url.split('?'); + if (!queryString) return url; // No query string + + let queryParams = queryString.split('&'); + queryParams = queryParams.filter(pair => !pair.startsWith(param + '=')); + return queryParams.length ? `${baseUrl}?${queryParams.join('&')}` : baseUrl; +} /** * * @param {NodeJS.Dict} headers @@ -336,9 +347,9 @@ class HttpHostEndPoint extends HostEndPoint { initializeAsync() { return this._service.initializeAsync(); } - kill(){ - this._server.close() - console.log(`server ip ${this._ip} and port ${this._port} killed`) + kill() { + this._server.close(); + console.log(`server ip ${this._ip} and port ${this._port} killed`); } } export default HttpHostEndPoint; diff --git a/endPoint/nonSecureHttpHostEndPoint.js b/endPoint/nonSecureHttpHostEndPoint.js index 3800d1c..895465d 100644 --- a/endPoint/nonSecureHttpHostEndPoint.js +++ b/endPoint/nonSecureHttpHostEndPoint.js @@ -56,12 +56,15 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { rawRequest, debugCondition ? cms.dict : undefined ); - this.addCacheContentAsync( - `${req.headers.host}${req.url}`, - body, - headers, - req.method - ); + const statuscode = Number(result._request.webserver.headercode.split(" ")[0]) + if(statuscode!=301 && statuscode!=302 ){ + this.addCacheContentAsync( + `http://${req.headers.host}${req.url}`, + body, + headers, + req.method + ); + } res.writeHead(code, headers); res.end(body); }; diff --git a/endPoint/secureHttpHostEndPoint.js b/endPoint/secureHttpHostEndPoint.js index 9d95a0e..596e586 100644 --- a/endPoint/secureHttpHostEndPoint.js +++ b/endPoint/secureHttpHostEndPoint.js @@ -72,12 +72,16 @@ export default class SecureHttpHostEndPoint extends HttpHostEndPoint { rawRequest, debugCondition ? cms.dict : undefined ); - this.addCacheContentAsync( - `${req.headers.host}${req.url}`, + const statuscode = Number(result._request.webserver.headercode.split(" ")[0]) + if(statuscode!=301 && statuscode!=302 ){ + this.addCacheContentAsync( + `https://${req.headers.host}${req.url}`, body, headers, req.method ); + } + res.writeHead(code, headers); res.end(body); }; diff --git a/hostManager.js b/hostManager.js index a06b87e..f476985 100644 --- a/hostManager.js +++ b/hostManager.js @@ -126,17 +126,17 @@ export default class HostManager { sniOptions.Hosts.forEach((host) => { /**@type {tls.SecureContextOptions}*/ const options = {}; - if (sniOptions.FilePath) { + if (host.FilePath) { options.cert = fs.readFileSync(host.FilePath); } - if (sniOptions.KeyPath) { + if (host.KeyPath) { options.key = fs.readFileSync(host.KeyPath); } - if (sniOptions.PfxPath) { + if (host.PfxPath) { options.pfx = fs.readFileSync(host.PfxPath); } - if (sniOptions.PfxPassword) { - options.passphrase = fs.readFileSync(host.PfxPassword); + if (host.PfxPassword) { + options.passphrase = host.PfxPassword; } host.HostNames.forEach((hostName) => { hostLookup[hostName.toLowerCase()] = options; @@ -145,13 +145,26 @@ export default class HostManager { const sniCallback = (serverName, callback) => { const set = hostLookup[serverName.toLowerCase()]; if (set) { - callback( - null, - new tls.createSecureContext({ - cert: set.cert, - key: set.key, - }) - ); + console.log("set", set); + if (set.cert) { + callback( + null, + new tls.createSecureContext({ + cert: set.cert, + key: set.key, + }) + ); + } else { + if (set.pfx) { + callback( + null, + new tls.createSecureContext({ + pfx: set.pfx, + passphrase: set.passphrase, + }) + ); + } + } } else { console.log( `In sni setting no certificate found fot '${serverName}'` diff --git a/renderEngine/Command/Collection/CollectionCommand.js b/renderEngine/Command/Collection/CollectionCommand.js index 1dda08c..bdcf225 100644 --- a/renderEngine/Command/Collection/CollectionCommand.js +++ b/renderEngine/Command/Collection/CollectionCommand.js @@ -14,6 +14,9 @@ export default class CollectionCommand extends CommandBase { */ constructor(collectionCommandIl) { super(collectionCommandIl); + if(!collectionCommandIl["Commands"]){ + console.log(collectionCommandIl) + } this.commandsObjects = collectionCommandIl["Commands"]; } diff --git a/renderEngine/Command/Renderable/RawFaceCollection.js b/renderEngine/Command/Renderable/RawFaceCollection.js index 9c4aa30..b507050 100644 --- a/renderEngine/Command/Renderable/RawFaceCollection.js +++ b/renderEngine/Command/Renderable/RawFaceCollection.js @@ -39,7 +39,8 @@ export default class RawFaceCollection { retVal.formattedContent = this.formatTemplate(source, await template); retVal.relatedRows = this.getRelatedRows( source, - this.formatFilter(source, await filter) + this.formatFilter(source, await filter + ) ); const strLevel = await level; retVal.levels = strLevel ? strLevel.split("|") : null; @@ -57,7 +58,7 @@ export default class RawFaceCollection { if (template && source) { source.columns.forEach((col, index) => { const replacement = `{${index}}`; - const pattern = `(?:@${col}|@col${index + 1}(?!\\d))|${col}`; + const pattern = `(?:@${col}|@col${index + 1}(?!\\d))|@${col}`; template = StringUtil.replace(template, pattern, replacement); }); } diff --git a/renderEngine/Command/Source/BaseClasses/SourceCommand.js b/renderEngine/Command/Source/BaseClasses/SourceCommand.js index 380839a..530fcd8 100644 --- a/renderEngine/Command/Source/BaseClasses/SourceCommand.js +++ b/renderEngine/Command/Source/BaseClasses/SourceCommand.js @@ -8,6 +8,8 @@ import CommandElement from "../../CommandElement.js"; import MemberCollection from "./MemberCollection.js"; import ParamItemCollection from "./ParamItemCollection.js"; import BasisCoreException from "../../../../Models/Exceptions/BasisCoreException.js"; +import { Encoder } from "node-html-encoder"; +const encoder = new Encoder("entity"); export default class SourceCommand extends CommandBase { /** @type {ParamItemCollection} */ @@ -74,6 +76,12 @@ export default class SourceCommand extends CommandBase { dmnid: context.domainId, params: paramList, }; + let debugParams = { + command: encoder.htmlEncode(command), + dmnid: context.domainId, + params: JSON.stringify(paramList), + } + context.debugContext.addDebugInformation(`Parameter(s) Send To '${sourceName}' From Command '${connectionName}' in 180 ms`,[debugParams]) const memberNames = this.members.items.map((item)=>{ return item.name }) diff --git a/renderEngine/Command/ViewCommand.js b/renderEngine/Command/ViewCommand.js index d437351..331dc7b 100644 --- a/renderEngine/Command/ViewCommand.js +++ b/renderEngine/Command/ViewCommand.js @@ -8,6 +8,7 @@ import RenderParam from "./RenderParam.js"; import FaceCollection from "./Renderable/FaceCollection.js"; import ReplaceCollection from "./Renderable/ReplaceCollection.js"; import StringUtil from "../Token/StringUtil.js"; +import SourceUtil from "../Source/SourceUtil.js"; export default class ViewCommand extends RenderableCommand { /** @type {IToken} */ @@ -48,7 +49,7 @@ export default class ViewCommand extends RenderableCommand { "ViewCommand.GroupColumn", context, "prpid" - ); + )?? "prpID" groupColumn = SourceUtil.getExactColumnName(source, groupColumn); const groupKeyList = alasql( `SELECT ${groupColumn} AS key FROM ? GROUP BY ${groupColumn}`, diff --git a/renderEngine/Context/RequestContext.js b/renderEngine/Context/RequestContext.js index 579c051..dc32219 100644 --- a/renderEngine/Context/RequestContext.js +++ b/renderEngine/Context/RequestContext.js @@ -12,6 +12,7 @@ import CookieItem from "../Models/CookieItem.js"; import IContext from "./IContext.js"; import IDebugContext from "./IDebugContext.js"; import UnknownCommand from "../Command/UnknownCommand.js"; +import CommandUtil from "../CommandUtil.js"; export default class RequestContext extends ContextBase { /** @type {ServiceSettings} */ @@ -150,6 +151,9 @@ export default class RequestContext extends ContextBase { createCommand(commandIl) { /** @type {CommandBase?} */ let retVal = null; + if(!this._commands){ + this._commands = CommandUtil.addDefaultCommands() + } const CommandClass = this._commands[commandIl.$type.toLowerCase()]?.default; if (CommandClass) { return new CommandClass(commandIl); From e6ab8095774886f9e78fd6d43c21a51f1c7441ad Mon Sep 17 00:00:00 2001 From: alibazregar Date: Sun, 22 Sep 2024 06:59:56 -0700 Subject: [PATCH 07/23] remove log --- renderEngine/Command/Collection/CollectionCommand.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/renderEngine/Command/Collection/CollectionCommand.js b/renderEngine/Command/Collection/CollectionCommand.js index bdcf225..1dda08c 100644 --- a/renderEngine/Command/Collection/CollectionCommand.js +++ b/renderEngine/Command/Collection/CollectionCommand.js @@ -14,9 +14,6 @@ export default class CollectionCommand extends CommandBase { */ constructor(collectionCommandIl) { super(collectionCommandIl); - if(!collectionCommandIl["Commands"]){ - console.log(collectionCommandIl) - } this.commandsObjects = collectionCommandIl["Commands"]; } From a5a43cac9f0f60b3a5a8de060538ee116035c89f Mon Sep 17 00:00:00 2001 From: alibazregar Date: Sun, 20 Oct 2024 22:51:31 -0700 Subject: [PATCH 08/23] add details --- Models/Connection/SqlConnectionInfo.js | 15 ++-- Models/Index1Response.js | 51 +++++++---- Models/Index4Response.js | 84 +++++++++---------- endPoint/h2HttpHostEndPoint.js | 7 +- endPoint/httpHostEndPoint.js | 1 + endPoint/nonSecureHttpHostEndPoint.js | 10 ++- renderEngine/Command/CommandBase.js | 8 ++ renderEngine/Command/Renderable/RawFace.js | 2 +- .../Command/Renderable/RawFaceCollection.js | 7 +- renderEngine/Command/RenderableCommand.js | 2 +- .../Command/Source/BaseClasses/JoinMember.js | 4 +- .../Command/Source/BaseClasses/SqlMember.js | 5 +- renderEngine/Command/TreeCommand.js | 5 +- renderEngine/Command/ViewCommand.js | 4 +- renderEngine/Context/RequestContext.js | 23 +++-- renderEngine/Source/IDataSource.js | 2 +- renderEngine/Source/SourceUtil.js | 24 +++++- test/command/Group/util.js | 47 +++++++++++ 18 files changed, 215 insertions(+), 86 deletions(-) create mode 100644 test/command/Group/util.js diff --git a/Models/Connection/SqlConnectionInfo.js b/Models/Connection/SqlConnectionInfo.js index f09202b..b399eee 100644 --- a/Models/Connection/SqlConnectionInfo.js +++ b/Models/Connection/SqlConnectionInfo.js @@ -26,7 +26,10 @@ export default class SqlConnectionInfo extends ConnectionInfo { ? `;requestTimeout=${this.settings.requestTimeout}` : "") ); - this.connectionPool.connect(console.error); + this.connectionPool.connect().catch((err)=>{ + console.log("error in connect",this.name,this.settings.connectionString ,err) + }) + } /** @@ -67,9 +70,9 @@ export default class SqlConnectionInfo extends ConnectionInfo { */ async getRoutingDataAsync(request, cancellationToken) { const params = new sql.Table(); - params.columns.add("ParamType", sql.VarChar(50)); - params.columns.add("ParamName", sql.VarChar(100)); - params.columns.add("ParamValue", sql.VarChar); + params.columns.add("ParamType", sql.NVarChar(50)); + params.columns.add("ParamName", sql.NVarChar(100)); + params.columns.add("ParamValue", sql.NVarChar()); for (const type in request) { const group = request[type]; @@ -79,7 +82,9 @@ export default class SqlConnectionInfo extends ConnectionInfo { for (const key in query) { params.rows.add(name, key, query[key]?.toString()); } - } else { + } else if(name === "json"){ + params.rows.add(type, name, JSON.stringify(group[name])); + }else { params.rows.add(type, name, group[name]?.toString()); } } diff --git a/Models/Index1Response.js b/Models/Index1Response.js index fce75fb..6931ab2 100644 --- a/Models/Index1Response.js +++ b/Models/Index1Response.js @@ -9,6 +9,10 @@ import DebugContext from "../renderEngine/Context/DebugContext.js"; import VoidContext from "../renderEngine/Context/VoidContext.js"; import StringResult from "../renderEngine/Models/StringResult.js"; import { Encoder } from "node-html-encoder"; +import { gzip } from 'zlib'; +import { promisify } from 'util'; + +const gzipAsync = promisify(gzip); export default class Index1Response extends RequestBaseResponse { /**@type {Object.}*/ @@ -32,11 +36,26 @@ export default class Index1Response extends RequestBaseResponse { async getResultAsync(routingDataStep, rawRequest, cms) { try { const encoder = new Encoder("entity"); + if (this._request.cms.page_il.length == 0) { + const response = await fetch("http://localhost:8080/ilparser", { + body: this._request.cms.content, + method: "POST", + }); + this._request.cms.page_il = JSON.stringify(await response.json()); + } if (this._request.cms.content) { this._request.cms.content = encoder.htmlEncode( this._request.cms.content ); } + let encodedRequest = JSON.parse(JSON.stringify(this._request)); + + if (this._request.cms.page_il) { + encodedRequest.cms.page_il = encoder.htmlEncode( + this._request.cms.page_il + ); + } + /**@type {DebugContext} */ const requestDebugContext = this._request.query?.debug == "true" || @@ -45,7 +64,7 @@ export default class Index1Response extends RequestBaseResponse { "logs for request", this._request.request["request-id"], routingDataStep, - this._request, + encodedRequest, cms ) : this._request.query?.debug == "2" @@ -54,7 +73,7 @@ export default class Index1Response extends RequestBaseResponse { this._request.request["request-id"], routingDataStep, this._settings, - this._request, + encodedRequest, cms ) : new VoidContext("nothing"); @@ -62,7 +81,7 @@ export default class Index1Response extends RequestBaseResponse { const getIlStep = requestDebugContext.newStep("Get IL"); let commandIl; let command; - let context + let context; try { if (!this._request.cms.page_il) { //Update IL step @@ -101,21 +120,23 @@ export default class Index1Response extends RequestBaseResponse { renderResultList, context.cancellation ); + let headers = { + ...{ "content-type": this._request.webserver.mime }, + ...(this._request.webserver.gzip === "true" && { + "Content-Encoding": "gzip", + }), + ...this._request.http, + ...(context._cookies && + Object.fromEntries( + context._cookies.map((x) => x.toHttpHeaderField()) + )), + }; await rawRequest?.writeAsync(renderResultList, context.cancellation); return [ parseInt(this._request.webserver.headercode.split(" ")[0]), - { - ...{ "content-type": this._request.webserver.mime }, - ...(this._request.webserver.gzip === "true" && { - "Content-Encoding": "gzip", - }), - ...this._request.http, - ...(context._cookies && - Object.fromEntries( - context._cookies.map((x) => x.toHttpHeaderField()) - )), - }, - renderResultList.join(""), + headers + , + this._request.webserver.gzip == "true" ?await gzipAsync(renderResultList.join("")) : renderResultList.join("") , ]; } catch (ex) { console.error(ex); diff --git a/Models/Index4Response.js b/Models/Index4Response.js index b61ca2a..c36bf13 100644 --- a/Models/Index4Response.js +++ b/Models/Index4Response.js @@ -6,6 +6,7 @@ import path from "path"; import Pako from "pako"; import Util from "../Util.js"; import WebServerException from "./Exceptions/WebServerException.js"; +import sharp from "sharp"; export default class Index4Response extends RequestBaseResponse { /** @@ -100,7 +101,6 @@ export default class Index4Response extends RequestBaseResponse { const stats = fs.statSync(filepath); return stats.mtime; } - /** * @param {Buffer} content * @param {string} size @@ -108,52 +108,48 @@ export default class Index4Response extends RequestBaseResponse { * @returns {Promise} */ static _resizeImageAsync(content, size, deform) { - return new Promise((resolve) => { - var op = ["-", "-resize", `${size}${deform ? "!" : ""}`, "-"]; - const process = im.convert(op, function (err, stdout) { - if (err) { - throw new WebServerException("Error in resize index 4 image", err); - } - try { - content = Buffer.from(stdout, "binary"); - } catch (err) { - throw new WebServerException("Error in resize index 4 image", err); - } - resolve(content); - }); - process.stdin.end(content); + return new Promise((resolve, reject) => { + const splitedSize = size.split("X"); + const width = Number(splitedSize[0]); + const height = Number(splitedSize[1]); + + const resizeOptions = { + width: width, + height: height, + fit: deform ? sharp.fit.fill : sharp.fit.inside, + withoutEnlargement: true, + }; + + sharp(content) + .resize(resizeOptions) + .toBuffer() + .then(resizedBuffer => { + resolve(resizedBuffer); + }) + .catch(err => { + reject(new WebServerException("Error in resizing image", err)); + }); }); } - - /** - * @param {Buffer} content - * @param {number} quality - * @returns {Promise} - */ - static _mackWebpAsync(content, quality) { - return new Promise((resolve) => { - var op = [ - "-", - "-quality", - `${quality}`, - "-define", - "webp:lossless=true", - "-", - ]; - const process = im.convert(op, function (err, stdout) { - if (err) { - throw new WebServerException("Error in create webp image", err); - } - try { - content = Buffer.from(stdout, "binary"); - } catch (err) { - throw new WebServerException("Error in create webp image", err); - } - resolve(content); +/** + * @param {Buffer} content + * @param {number} quality + * @returns {Promise} + */ +static _mackWebpAsync(content, quality) { + return new Promise((resolve, reject) => { + // Configure sharp for converting to WebP + sharp(content) + .webp({ quality: quality, lossless: true }) // Set quality and lossless option + .toBuffer() + .then(webpBuffer => { + resolve(webpBuffer); + }) + .catch(err => { + reject(new WebServerException("Error in creating WebP image", err)); }); - process.stdin.end(content); - }); - } + }); +} /** * @param {string} filePath diff --git a/endPoint/h2HttpHostEndPoint.js b/endPoint/h2HttpHostEndPoint.js index 31c6581..57539b8 100644 --- a/endPoint/h2HttpHostEndPoint.js +++ b/endPoint/h2HttpHostEndPoint.js @@ -57,6 +57,7 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { body, isSecure ) { + console.log(formFields,fileContents) const cms = await super._createCmsObjectAsync( urlStr, method, @@ -114,6 +115,7 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { true ); const result = await this._service.processAsync(cms, fileContents); + if (routingDataStep) routingDataStep.complete(); const [code, headerList, body] = await result.getResultAsync( routingDataStep, @@ -139,7 +141,7 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { }; stream.on("data", (chunk) => { - if (headers["content-type"] === "application/json") { + if (headers["content-type"] === "application/json" || headers["content-type"]=="application/javascript"||headers["content-type"].startsWith("application/x-www-form-urlencoded")) { bodyStr += chunk; } }); @@ -173,6 +175,7 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { }); }); bb.on("field", (name, val, info) => { + console.log(name,val) formFields[name] = val; if (name.startsWith("_")) { jsonHeaders[name] = val; @@ -181,7 +184,7 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { bb.on("close", createCmsAndCreateResponseAsync); stream.pipe(bb); } else { - await createCmsAndCreateResponseAsync(); + // await createCmsAndCreateResponseAsync(); } } } catch (ex) { diff --git a/endPoint/httpHostEndPoint.js b/endPoint/httpHostEndPoint.js index 71167c2..8e19107 100644 --- a/endPoint/httpHostEndPoint.js +++ b/endPoint/httpHostEndPoint.js @@ -116,6 +116,7 @@ class HttpHostEndPoint extends HostEndPoint { headers["clientip"] = socket.remoteAddress; headers[":path"] = "/" + decodeURIComponent(rawUrl); if (Object.keys(jsonHeaders).length > 0) { + console.log(ObjectUtil.convertObjectToNestedStructure(jsonHeaders)) headers["json"] = { header: ObjectUtil.convertObjectToNestedStructure(jsonHeaders), }; diff --git a/endPoint/nonSecureHttpHostEndPoint.js b/endPoint/nonSecureHttpHostEndPoint.js index 895465d..e4cd37b 100644 --- a/endPoint/nonSecureHttpHostEndPoint.js +++ b/endPoint/nonSecureHttpHostEndPoint.js @@ -5,6 +5,7 @@ import HttpHostEndPoint from "./HttpHostEndPoint.js"; import { HostService } from "../services/hostServices.js"; import LightgDebugStep from "../renderEngine/Models/LightgDebugStep.js"; import StringResult from "../renderEngine/Models/StringResult.js"; +import fs from "fs"; export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { /** @@ -19,6 +20,7 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { _createServer() { this._server = http.createServer(async (req, res) => { + console.log("request " + req.url); try { this._securityHeadersMiddleware(req, res, async () => { this._handleContentTypes(req, res, async () => { @@ -51,13 +53,15 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { req.fileContents ); routingDataStep?.complete(); - const [code, headers, body] = await result.getResultAsync( + let[code, headers, body] = await result.getResultAsync( routingDataStep, rawRequest, debugCondition ? cms.dict : undefined ); - const statuscode = Number(result._request.webserver.headercode.split(" ")[0]) - if(statuscode!=301 && statuscode!=302 ){ + const statuscode = Number( + result._request.webserver.headercode.split(" ")[0] + ); + if (statuscode != 301 && statuscode != 302) { this.addCacheContentAsync( `http://${req.headers.host}${req.url}`, body, diff --git a/renderEngine/Command/CommandBase.js b/renderEngine/Command/CommandBase.js index d1b3545..4e87a2e 100644 --- a/renderEngine/Command/CommandBase.js +++ b/renderEngine/Command/CommandBase.js @@ -21,8 +21,12 @@ export default class CommandBase { renderTo; /**@type {IToken} */ renderType; + /**@type {IToken} */ + method; /** @type {NodeJS.Dict} */ extraAttributes; + /** @type {IToken} */ + datamembername /** * @param {object} commandIl @@ -34,6 +38,8 @@ export default class CommandBase { this.runType = TokenUtil.getFiled(commandIl, "run"); this.renderType = TokenUtil.getFiled(commandIl, "renderType"); this.renderTo = TokenUtil.getFiled(commandIl, "renderTo"); + this.method = TokenUtil.getFiled(commandIl, "method"); + this.datamembername = TokenUtil.getFiled(commandIl, "data-member-name"); this.extraAttributes = null; /**@type {NodeJS.Dict?} */ const items = commandIl["extra-attribute"]; @@ -155,6 +161,8 @@ export default class CommandBase { tag.addAttributeIfExistAsync("if", this.if, context), tag.addAttributeIfExistAsync("renderto", this.renderTo, context), tag.addAttributeIfExistAsync("rendertype", this.renderType, context), + tag.addAttributeIfExistAsync("method", this.method, context), + tag.addAttributeIfExistAsync("datamembername",this.datamembername,context) ]); if (this.runType) { const runType = await this._getRunTypeValueAsync(context); diff --git a/renderEngine/Command/Renderable/RawFace.js b/renderEngine/Command/Renderable/RawFace.js index fe1900e..2bb286d 100644 --- a/renderEngine/Command/Renderable/RawFace.js +++ b/renderEngine/Command/Renderable/RawFace.js @@ -21,7 +21,7 @@ export default class RawFace { this.applyReplace = TokenUtil.getFiled(ilObject, "replace"); this.applyFunction = TokenUtil.getFiled(ilObject, "function"); this.level = TokenUtil.getFiled(ilObject, "level"); - this.rowType = TokenUtil.getFiled(ilObject, "row-type"); + this.rowType = TokenUtil.getFiled(ilObject, "rowtype"); this.filter = TokenUtil.getFiled(ilObject, "filter"); this.content = TokenUtil.getFiled(ilObject, "content"); } diff --git a/renderEngine/Command/Renderable/RawFaceCollection.js b/renderEngine/Command/Renderable/RawFaceCollection.js index b507050..ad600c7 100644 --- a/renderEngine/Command/Renderable/RawFaceCollection.js +++ b/renderEngine/Command/Renderable/RawFaceCollection.js @@ -1,4 +1,3 @@ -import alasql from "alasql"; import IContext from "../../Context/IContext.js"; import IDataSource from "../../Source/IDataSource.js"; import StringUtil from "../../Token/StringUtil.js"; @@ -7,6 +6,9 @@ import FaceCollection from "./FaceCollection.js"; import FaceRowType from "./FaceRowType.js"; import RawFace from "./RawFace.js"; import CommandElement from "../CommandElement.js"; +import { createRequire } from 'module'; +const require = createRequire(import.meta.url); +const alasql = require ("./../../../../alasql") export default class RawFaceCollection { /**@type {RawFace[]} */ @@ -27,11 +29,10 @@ export default class RawFaceCollection { const faces = this.faces.map(async (x) => { const applyReplace = x.applyReplace.getValueAsync(context); const applyFunction = x.applyFunction.getValueAsync(context); - const rowType = x.rowType.getValueAsync(context, FaceRowType.notset); + const rowType = x.rowType.getValueAsync(context); const filter = x.filter.getValueAsync(context); const template = x.content.getValueAsync(context); const level = x.level.getValueAsync(context); - const retVal = new Face(); retVal.applyFunction = await applyFunction; retVal.applyReplace = await applyReplace; diff --git a/renderEngine/Command/RenderableCommand.js b/renderEngine/Command/RenderableCommand.js index bdb7e0b..81af684 100644 --- a/renderEngine/Command/RenderableCommand.js +++ b/renderEngine/Command/RenderableCommand.js @@ -51,7 +51,7 @@ export default class RenderableCommand extends SourceBaseCommand { ); this.layout = TokenUtil.getFiled(renderableCommandIl, "layout-content"); this.rawFaces = new RawFaceCollection(renderableCommandIl["faces"]); - this.replaces = new RawReplaceCollection(renderableCommandIl["replaces"]); + this.replaces =renderableCommandIl["replaces"] ?new RawReplaceCollection(renderableCommandIl["replaces"]) : new RawReplaceCollection(renderableCommandIl["Replaces"]) ; } /** diff --git a/renderEngine/Command/Source/BaseClasses/JoinMember.js b/renderEngine/Command/Source/BaseClasses/JoinMember.js index 1a3b540..e5f0de6 100644 --- a/renderEngine/Command/Source/BaseClasses/JoinMember.js +++ b/renderEngine/Command/Source/BaseClasses/JoinMember.js @@ -3,7 +3,9 @@ import JsonSource from "../../../Source/JsonSource.js"; import BasisCoreException from "../../../../Models/Exceptions/BasisCoreException.js"; import IContext from "../../../Context/IContext.js"; import IToken from "../../../Token/IToken.js"; -import alasql from "alasql"; +import { createRequire } from 'module'; +const require = createRequire(import.meta.url); +const alasql = require ("./../../../../../alasql") export default class JoinMember extends InMemoryMember { /** * @param {object} memberIL diff --git a/renderEngine/Command/Source/BaseClasses/SqlMember.js b/renderEngine/Command/Source/BaseClasses/SqlMember.js index 9ecbe26..71ac17d 100644 --- a/renderEngine/Command/Source/BaseClasses/SqlMember.js +++ b/renderEngine/Command/Source/BaseClasses/SqlMember.js @@ -1,4 +1,7 @@ -import alasql from "alasql"; +import { createRequire } from 'module'; +const require = createRequire(import.meta.url); +const alasql = require ("./../../../../../alasql") + import InMemoryMember from "./InMemoryMember.js"; import JsonSource from "../../../Source/JsonSource.js"; import IContext from "../../../Context/IContext.js"; diff --git a/renderEngine/Command/TreeCommand.js b/renderEngine/Command/TreeCommand.js index 8d2bdf0..b236204 100644 --- a/renderEngine/Command/TreeCommand.js +++ b/renderEngine/Command/TreeCommand.js @@ -1,4 +1,4 @@ -import alasql from "alasql"; + import TokenUtil from "../Token/TokenUtil.js"; import RenderableCommand from "./RenderableCommand.js"; import RenderParam from "./RenderParam.js"; @@ -6,6 +6,9 @@ import FaceCollection from "./Renderable/FaceCollection.js"; import StringUtil from "../Token/StringUtil.js"; import Util from "../../Util.js"; import SourceUtil from "../Source/SourceUtil.js"; +import { createRequire } from 'module'; +const require = createRequire(import.meta.url); +const alasql = require ("./../../../alasql") export default class TreeCommand extends RenderableCommand { /** @type {IToken} */ diff --git a/renderEngine/Command/ViewCommand.js b/renderEngine/Command/ViewCommand.js index 331dc7b..604ecf5 100644 --- a/renderEngine/Command/ViewCommand.js +++ b/renderEngine/Command/ViewCommand.js @@ -3,7 +3,9 @@ import IToken from "../Token/IToken.js"; import TokenUtil from "../Token/TokenUtil.js"; import RenderableCommand from "./RenderableCommand.js"; import IDataSource from "../Source/IDataSource.js"; -import alasql from "alasql"; +import { createRequire } from 'module'; +const require = createRequire(import.meta.url); +const alasql = require ("./../../../alasql") import RenderParam from "./RenderParam.js"; import FaceCollection from "./Renderable/FaceCollection.js"; import ReplaceCollection from "./Renderable/ReplaceCollection.js"; diff --git a/renderEngine/Context/RequestContext.js b/renderEngine/Context/RequestContext.js index dc32219..2dbae58 100644 --- a/renderEngine/Context/RequestContext.js +++ b/renderEngine/Context/RequestContext.js @@ -13,6 +13,8 @@ import IContext from "./IContext.js"; import IDebugContext from "./IDebugContext.js"; import UnknownCommand from "../Command/UnknownCommand.js"; import CommandUtil from "../CommandUtil.js"; +import { Encoder } from "node-html-encoder"; +let encoder = new Encoder("entity") export default class RequestContext extends ContextBase { /** @type {ServiceSettings} */ @@ -24,7 +26,7 @@ export default class RequestContext extends ContextBase { * @param {IRoutingRequest} request * @param {Object.} commands */ - constructor(settings, request,commands, debugContext) { + constructor(settings, request, commands, debugContext) { super(null, Number(request.cms?.dmnid), debugContext); this._settings = settings; this.isSecure = request.isSecure; @@ -42,10 +44,12 @@ export default class RequestContext extends ContextBase { if (request.request.cookie) { request.request.cookie.split(";").forEach((element) => { const [key, value] = element.split("="); - cookieObj[key] = value; + if (cookieObj) { + //cookieObj[key] = value; + cookieObj[key.replace(/\s+/g, "")] = value + } }); } - console.log(cookieObj) this.addSource(new JsonSource([cookieObj], "cms.cookie")); } @@ -78,7 +82,7 @@ export default class RequestContext extends ContextBase { ); result.items.forEach((item, index) => { this.debugContext.addDebugInformation( - sourceName + "." + memberNames[index], + sourceName + "." + memberNames[index] ); }); return result; @@ -116,7 +120,14 @@ export default class RequestContext extends ContextBase { ); if (result.il_call == 1 || Util.isNullOrEmpty(result.page_il)) { //TODO: IL must implement + const response = await fetch("http://localhost:8080/ilparser", { + body: result.content, + method: "POST", + }); + const responseJson = await response.json() + return this.createCommand(responseJson); } + this.debugContext.addDebugInformation(`result from load page ${pageName}`,{content : encoder.htmlEncode(result.content) }) /** @type {CommandBase} */ return this.createCommand(JSON.parse(result.page_il)); } @@ -151,8 +162,8 @@ export default class RequestContext extends ContextBase { createCommand(commandIl) { /** @type {CommandBase?} */ let retVal = null; - if(!this._commands){ - this._commands = CommandUtil.addDefaultCommands() + if (!this._commands) { + this._commands = CommandUtil.addDefaultCommands(); } const CommandClass = this._commands[commandIl.$type.toLowerCase()]?.default; if (CommandClass) { diff --git a/renderEngine/Source/IDataSource.js b/renderEngine/Source/IDataSource.js index e33e079..1dcdf14 100644 --- a/renderEngine/Source/IDataSource.js +++ b/renderEngine/Source/IDataSource.js @@ -7,6 +7,6 @@ export default class IDataSource { id; /**@type {Array} */ get columns() { - return this.data?.length > 0 ? Object.keys(this.data[0]) : []; + return this.data?.length > 0 ? Object.keys(this.data[0]??{}) : []; } } diff --git a/renderEngine/Source/SourceUtil.js b/renderEngine/Source/SourceUtil.js index 230d57c..6139052 100644 --- a/renderEngine/Source/SourceUtil.js +++ b/renderEngine/Source/SourceUtil.js @@ -1,8 +1,30 @@ -import alasql from "alasql"; +import { createRequire } from 'module'; +const require = createRequire(import.meta.url); +const alasql = require ("./../../../alasql") import IDataSource from "./IDataSource.js"; import IContext from "../Context/IContext.js"; import StringUtil from "../Token/StringUtil.js"; +alasql.fn.REVERSE = function (str) { + return str ?str.split("").reverse().join(""): null; +}; +alasql.fn.CHARINDEX = function(substring, string) { + return string ?string.indexOf(substring) + 1 : -1; +}; +alasql.fn.SUBSTR = function (str, start, length) { + if (typeof str !== 'string') return null; + start = start - 1; + if (length !== undefined) { + return str.substring(start, start + length); + } + return str.substring(start); +}; +alasql.fn.INDEXOF = function (str, searchValue) { + if (typeof str !== 'string' || typeof searchValue !== 'string') return -1; + var index = str ?str.indexOf(searchValue) : -1; + return index >= 0 ? index + 1 : -1; +}; + export default class SourceUtil { /** * diff --git a/test/command/Group/util.js b/test/command/Group/util.js new file mode 100644 index 0000000..1923663 --- /dev/null +++ b/test/command/Group/util.js @@ -0,0 +1,47 @@ +import CancellationToken from "../../../renderEngine/Cancellation/CancellationToken.js"; +import PrintCommand from "../../../renderEngine/Command/PrintCommand.js"; +import RawFaceCollection from "../../../renderEngine/Command/Renderable/RawFaceCollection.js"; +import ContextBase from "../../../renderEngine/Context/ContextBase.js"; +import TestContext from "../../../renderEngine/Context/testContext.js"; +import JsonSource from "../../../renderEngine/Source/JsonSource.js"; +import CommandUtil from "../../../renderEngine/CommandUtil.js"; +import ServiceSettings from "../../../models/ServiceSettings.js"; +const context = new TestContext( + new ServiceSettings({}), + 1234, + CommandUtil.addDefaultCommands() +); +context.cancellation = new CancellationToken(); + + +const il = { + $type: "group", + core: "group", + name: "ROOT_GROUP", + Commands: [ + { + $type: "schema", + core: "schema", + run: "AtClient", + "data-member-name": "answer.data", + "extra-attribute": { + schemaurl: "https://basispanel.ir/schema/freeform", + displaymode: "edit", + button: "[data-btn-edit]", + triggers: "db.showOrder ", + resultsourceid: "demo.data", + qs_state: "استان", + qs_culture: "fa", + qs_city: "شهر", + qs_token: "69701A1A-6C18-4F69-AD05-938CC8CB7E29", + }, + }, + ], +}; + +//var l = new RawFaceCollection(il.faces); +//console.log(l); +const command = context.createCommand(il); +//console.log(print); +const result = await command.executeAsync(context); +console.log(result); From 72125f51987d1318502e0baf6535bf1d4b480015 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Sun, 20 Oct 2024 22:53:13 -0700 Subject: [PATCH 09/23] add details --- Models/Index1Response.js | 51 ++++++++++++---------------------------- 1 file changed, 15 insertions(+), 36 deletions(-) diff --git a/Models/Index1Response.js b/Models/Index1Response.js index 6931ab2..fce75fb 100644 --- a/Models/Index1Response.js +++ b/Models/Index1Response.js @@ -9,10 +9,6 @@ import DebugContext from "../renderEngine/Context/DebugContext.js"; import VoidContext from "../renderEngine/Context/VoidContext.js"; import StringResult from "../renderEngine/Models/StringResult.js"; import { Encoder } from "node-html-encoder"; -import { gzip } from 'zlib'; -import { promisify } from 'util'; - -const gzipAsync = promisify(gzip); export default class Index1Response extends RequestBaseResponse { /**@type {Object.}*/ @@ -36,26 +32,11 @@ export default class Index1Response extends RequestBaseResponse { async getResultAsync(routingDataStep, rawRequest, cms) { try { const encoder = new Encoder("entity"); - if (this._request.cms.page_il.length == 0) { - const response = await fetch("http://localhost:8080/ilparser", { - body: this._request.cms.content, - method: "POST", - }); - this._request.cms.page_il = JSON.stringify(await response.json()); - } if (this._request.cms.content) { this._request.cms.content = encoder.htmlEncode( this._request.cms.content ); } - let encodedRequest = JSON.parse(JSON.stringify(this._request)); - - if (this._request.cms.page_il) { - encodedRequest.cms.page_il = encoder.htmlEncode( - this._request.cms.page_il - ); - } - /**@type {DebugContext} */ const requestDebugContext = this._request.query?.debug == "true" || @@ -64,7 +45,7 @@ export default class Index1Response extends RequestBaseResponse { "logs for request", this._request.request["request-id"], routingDataStep, - encodedRequest, + this._request, cms ) : this._request.query?.debug == "2" @@ -73,7 +54,7 @@ export default class Index1Response extends RequestBaseResponse { this._request.request["request-id"], routingDataStep, this._settings, - encodedRequest, + this._request, cms ) : new VoidContext("nothing"); @@ -81,7 +62,7 @@ export default class Index1Response extends RequestBaseResponse { const getIlStep = requestDebugContext.newStep("Get IL"); let commandIl; let command; - let context; + let context try { if (!this._request.cms.page_il) { //Update IL step @@ -120,23 +101,21 @@ export default class Index1Response extends RequestBaseResponse { renderResultList, context.cancellation ); - let headers = { - ...{ "content-type": this._request.webserver.mime }, - ...(this._request.webserver.gzip === "true" && { - "Content-Encoding": "gzip", - }), - ...this._request.http, - ...(context._cookies && - Object.fromEntries( - context._cookies.map((x) => x.toHttpHeaderField()) - )), - }; await rawRequest?.writeAsync(renderResultList, context.cancellation); return [ parseInt(this._request.webserver.headercode.split(" ")[0]), - headers - , - this._request.webserver.gzip == "true" ?await gzipAsync(renderResultList.join("")) : renderResultList.join("") , + { + ...{ "content-type": this._request.webserver.mime }, + ...(this._request.webserver.gzip === "true" && { + "Content-Encoding": "gzip", + }), + ...this._request.http, + ...(context._cookies && + Object.fromEntries( + context._cookies.map((x) => x.toHttpHeaderField()) + )), + }, + renderResultList.join(""), ]; } catch (ex) { console.error(ex); From 5ca39500e8a4938a8f8e095e18dff12c94009432 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 21 Oct 2024 10:16:31 +0330 Subject: [PATCH 10/23] fix request context --- renderEngine/Context/RequestContext.js | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/renderEngine/Context/RequestContext.js b/renderEngine/Context/RequestContext.js index 2dbae58..3f74bc0 100644 --- a/renderEngine/Context/RequestContext.js +++ b/renderEngine/Context/RequestContext.js @@ -13,8 +13,6 @@ import IContext from "./IContext.js"; import IDebugContext from "./IDebugContext.js"; import UnknownCommand from "../Command/UnknownCommand.js"; import CommandUtil from "../CommandUtil.js"; -import { Encoder } from "node-html-encoder"; -let encoder = new Encoder("entity") export default class RequestContext extends ContextBase { /** @type {ServiceSettings} */ @@ -26,7 +24,7 @@ export default class RequestContext extends ContextBase { * @param {IRoutingRequest} request * @param {Object.} commands */ - constructor(settings, request, commands, debugContext) { + constructor(settings, request,commands, debugContext) { super(null, Number(request.cms?.dmnid), debugContext); this._settings = settings; this.isSecure = request.isSecure; @@ -44,10 +42,7 @@ export default class RequestContext extends ContextBase { if (request.request.cookie) { request.request.cookie.split(";").forEach((element) => { const [key, value] = element.split("="); - if (cookieObj) { - //cookieObj[key] = value; - cookieObj[key.replace(/\s+/g, "")] = value - } + cookieObj[key] = value; }); } this.addSource(new JsonSource([cookieObj], "cms.cookie")); @@ -82,7 +77,7 @@ export default class RequestContext extends ContextBase { ); result.items.forEach((item, index) => { this.debugContext.addDebugInformation( - sourceName + "." + memberNames[index] + sourceName + "." + memberNames[index], ); }); return result; @@ -120,14 +115,7 @@ export default class RequestContext extends ContextBase { ); if (result.il_call == 1 || Util.isNullOrEmpty(result.page_il)) { //TODO: IL must implement - const response = await fetch("http://localhost:8080/ilparser", { - body: result.content, - method: "POST", - }); - const responseJson = await response.json() - return this.createCommand(responseJson); } - this.debugContext.addDebugInformation(`result from load page ${pageName}`,{content : encoder.htmlEncode(result.content) }) /** @type {CommandBase} */ return this.createCommand(JSON.parse(result.page_il)); } @@ -162,8 +150,8 @@ export default class RequestContext extends ContextBase { createCommand(commandIl) { /** @type {CommandBase?} */ let retVal = null; - if (!this._commands) { - this._commands = CommandUtil.addDefaultCommands(); + if(!this._commands){ + this._commands = CommandUtil.addDefaultCommands() } const CommandClass = this._commands[commandIl.$type.toLowerCase()]?.default; if (CommandClass) { @@ -173,4 +161,4 @@ export default class RequestContext extends ContextBase { } return retVal; } -} +} \ No newline at end of file From a11706e67a8bb2a257ae426cce3d31fe107cbbb4 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 21 Oct 2024 10:30:06 +0330 Subject: [PATCH 11/23] fix secure --- endPoint/secureHttpHostEndPoint.js | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/endPoint/secureHttpHostEndPoint.js b/endPoint/secureHttpHostEndPoint.js index 1aa9a7f..ee3b342 100644 --- a/endPoint/secureHttpHostEndPoint.js +++ b/endPoint/secureHttpHostEndPoint.js @@ -33,7 +33,6 @@ export default class SecureHttpHostEndPoint extends HttpHostEndPoint { } _createServer() { - this._server = https this._server = https .createServer(this.#options, async (req, res) => { /** @type {Request} */ @@ -73,15 +72,17 @@ export default class SecureHttpHostEndPoint extends HttpHostEndPoint { rawRequest, debugCondition ? cms.dict : undefined ); - const statuscode = Number(result._request.webserver.headercode.split(" ")[0]) - if(statuscode!=301 && statuscode!=302 ){ - this.addCacheContentAsync( - `https://${req.headers.host}${req.url}`, - body, - headers, - req.method, - cms + const statuscode = Number( + result._request.webserver.headercode.split(" ")[0] ); + if (statuscode != 301 && statuscode != 302) { + this.addCacheContentAsync( + `https://${req.headers.host}${req.url}`, + body, + headers, + req.method, + cms + ); } res.writeHead(code, headers); From 60edf42e2112bc0bb2dae2a3a6ae912ea4df5bcf Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 21 Oct 2024 14:50:35 +0330 Subject: [PATCH 12/23] remove-logs --- Models/Connection/SqlConnectionInfo.js | 2 +- endPoint/h2HttpHostEndPoint.js | 7 +------ endPoint/httpHostEndPoint.js | 1 - endPoint/nonSecureHttpHostEndPoint.js | 3 +-- renderEngine/Command/RenderableCommand.js | 2 +- 5 files changed, 4 insertions(+), 11 deletions(-) diff --git a/Models/Connection/SqlConnectionInfo.js b/Models/Connection/SqlConnectionInfo.js index b399eee..4b47424 100644 --- a/Models/Connection/SqlConnectionInfo.js +++ b/Models/Connection/SqlConnectionInfo.js @@ -27,7 +27,7 @@ export default class SqlConnectionInfo extends ConnectionInfo { : "") ); this.connectionPool.connect().catch((err)=>{ - console.log("error in connect",this.name,this.settings.connectionString ,err) + console.log("error in connect",this.name,err) }) } diff --git a/endPoint/h2HttpHostEndPoint.js b/endPoint/h2HttpHostEndPoint.js index d6a94e8..f58e961 100644 --- a/endPoint/h2HttpHostEndPoint.js +++ b/endPoint/h2HttpHostEndPoint.js @@ -57,7 +57,6 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { body, isSecure ) { - console.log(formFields,fileContents) const cms = await super._createCmsObjectAsync( urlStr, method, @@ -115,7 +114,6 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { true ); const result = await this._service.processAsync(cms, fileContents); - if (routingDataStep) routingDataStep.complete(); const [code, headerList, body] = await result.getResultAsync( routingDataStep, @@ -175,7 +173,6 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { }); }); bb.on("field", (name, val, info) => { - console.log(name,val) formFields[name] = val; if (name.startsWith("_")) { jsonHeaders[name] = val; @@ -183,9 +180,7 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { }); bb.on("close", createCmsAndCreateResponseAsync); stream.pipe(bb); - } else { - // await createCmsAndCreateResponseAsync(); - } + } } } catch (ex) { if (ex.code != "ERR_HTTP2_INVALID_STREAM") { diff --git a/endPoint/httpHostEndPoint.js b/endPoint/httpHostEndPoint.js index b75a8f2..ad712c7 100644 --- a/endPoint/httpHostEndPoint.js +++ b/endPoint/httpHostEndPoint.js @@ -117,7 +117,6 @@ class HttpHostEndPoint extends HostEndPoint { headers["clientip"] = socket.remoteAddress; headers[":path"] = "/" + decodeURIComponent(rawUrl); if (Object.keys(jsonHeaders).length > 0) { - console.log(ObjectUtil.convertObjectToNestedStructure(jsonHeaders)) headers["json"] = { header: ObjectUtil.convertObjectToNestedStructure(jsonHeaders), }; diff --git a/endPoint/nonSecureHttpHostEndPoint.js b/endPoint/nonSecureHttpHostEndPoint.js index e4cd37b..65910c6 100644 --- a/endPoint/nonSecureHttpHostEndPoint.js +++ b/endPoint/nonSecureHttpHostEndPoint.js @@ -20,7 +20,6 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { _createServer() { this._server = http.createServer(async (req, res) => { - console.log("request " + req.url); try { this._securityHeadersMiddleware(req, res, async () => { this._handleContentTypes(req, res, async () => { @@ -53,7 +52,7 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { req.fileContents ); routingDataStep?.complete(); - let[code, headers, body] = await result.getResultAsync( + const [code, headers, body] = await result.getResultAsync( routingDataStep, rawRequest, debugCondition ? cms.dict : undefined diff --git a/renderEngine/Command/RenderableCommand.js b/renderEngine/Command/RenderableCommand.js index 81af684..1e50b07 100644 --- a/renderEngine/Command/RenderableCommand.js +++ b/renderEngine/Command/RenderableCommand.js @@ -51,7 +51,7 @@ export default class RenderableCommand extends SourceBaseCommand { ); this.layout = TokenUtil.getFiled(renderableCommandIl, "layout-content"); this.rawFaces = new RawFaceCollection(renderableCommandIl["faces"]); - this.replaces =renderableCommandIl["replaces"] ?new RawReplaceCollection(renderableCommandIl["replaces"]) : new RawReplaceCollection(renderableCommandIl["Replaces"]) ; + this.replaces =renderableCommandIl["replaces"] ? new RawReplaceCollection(renderableCommandIl["replaces"]) : new RawReplaceCollection(renderableCommandIl["Replaces"]) ; } /** From 8a48ab9b9424b4020f661b83b13d0940733cc9b3 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 21 Oct 2024 15:40:40 +0330 Subject: [PATCH 13/23] fixing alasql structure --- alasql-ex.js | 22 ++++ package-lock.json | 111 ++---------------- package.json | 1 - .../Command/Renderable/RawFaceCollection.js | 4 +- .../Command/Source/BaseClasses/JoinMember.js | 4 +- .../Command/Source/BaseClasses/SqlMember.js | 4 +- renderEngine/Command/TreeCommand.js | 4 +- renderEngine/Command/ViewCommand.js | 4 +- renderEngine/Source/SourceUtil.js | 24 +--- 9 files changed, 41 insertions(+), 137 deletions(-) create mode 100644 alasql-ex.js diff --git a/alasql-ex.js b/alasql-ex.js new file mode 100644 index 0000000..633d0f4 --- /dev/null +++ b/alasql-ex.js @@ -0,0 +1,22 @@ +const require = createRequire(import.meta.url); +const alasql = require("../alasql"); +alasql.fn.REVERSE = function (str) { + return str ? str.split("").reverse().join("") : null; +}; +alasql.fn.CHARINDEX = function (substring, string) { + return string ? string.indexOf(substring) + 1 : -1; +}; +alasql.fn.SUBSTR = function (str, start, length) { + if (typeof str !== "string") return null; + start = start - 1; + if (length !== undefined) { + return str.substring(start, start + length); + } + return str.substring(start); +}; +alasql.fn.INDEXOF = function (str, searchValue) { + if (typeof str !== "string" || typeof searchValue !== "string") return -1; + var index = str ? str.indexOf(searchValue) : -1; + return index >= 0 ? index + 1 : -1; +}; +export default alasql; diff --git a/package-lock.json b/package-lock.json index 6f7787b..b16443b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,6 @@ "version": "1.0.3", "license": "ISC", "dependencies": { - "alasql": "^4.1.9", "amqplib": "^0.10.4", "busboy": "^1.6.0", "dayjs": "^1.11.6", @@ -3193,21 +3192,6 @@ "ajv": "^6.9.1" } }, - "node_modules/alasql": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/alasql/-/alasql-4.4.0.tgz", - "integrity": "sha512-EQOk3NEvKcQxoYeY0d4ePF0VHAcljx3pn5ZkEowMPRThjWXyDc/VHYqC8Sg+6BH2ZhKZBdeRqlvlgZmhfGBtDA==", - "dependencies": { - "cross-fetch": "4", - "yargs": "16" - }, - "bin": { - "alasql": "bin/alasql-cli.js" - }, - "engines": { - "node": ">=15" - } - }, "node_modules/amqplib": { "version": "0.10.4", "resolved": "https://registry.npmjs.org/amqplib/-/amqplib-0.10.4.tgz", @@ -3241,6 +3225,7 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "devOptional": true, "engines": { "node": ">=8" } @@ -3249,6 +3234,7 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, "dependencies": { "color-convert": "^2.0.1" }, @@ -4133,16 +4119,6 @@ "node": ">=6" } }, - "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, "node_modules/clone-deep": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", @@ -4186,6 +4162,7 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "dependencies": { "color-name": "~1.1.4" }, @@ -4459,14 +4436,6 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/cross-fetch": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", - "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", - "dependencies": { - "node-fetch": "^2.6.12" - } - }, "node_modules/cross-spawn": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", @@ -4771,7 +4740,8 @@ "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "devOptional": true }, "node_modules/enabled": { "version": "2.0.0", @@ -5085,6 +5055,7 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true, "engines": { "node": ">=6" } @@ -5701,6 +5672,7 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, "engines": { "node": "6.* || 8.* || >= 10.*" } @@ -6247,6 +6219,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "devOptional": true, "engines": { "node": ">=8" } @@ -7992,44 +7965,6 @@ "node": ">=10.5.0" } }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-fetch/node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "node_modules/node-fetch/node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/node-fetch/node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, "node_modules/node-gyp": { "version": "8.4.1", "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", @@ -8774,6 +8709,7 @@ "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, "engines": { "node": ">=0.10.0" } @@ -9410,6 +9346,7 @@ "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "devOptional": true, "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -9469,6 +9406,7 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "devOptional": true, "dependencies": { "ansi-regex": "^5.0.1" }, @@ -10819,6 +10757,7 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -10890,6 +10829,7 @@ "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, "engines": { "node": ">=10" } @@ -10900,31 +10840,6 @@ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true }, - "node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "engines": { - "node": ">=10" - } - }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", diff --git a/package.json b/package.json index 6aae114..36bea9c 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,6 @@ }, "type": "module", "dependencies": { - "alasql": "^4.1.9", "amqplib": "^0.10.4", "busboy": "^1.6.0", "dayjs": "^1.11.6", diff --git a/renderEngine/Command/Renderable/RawFaceCollection.js b/renderEngine/Command/Renderable/RawFaceCollection.js index ad600c7..090e00e 100644 --- a/renderEngine/Command/Renderable/RawFaceCollection.js +++ b/renderEngine/Command/Renderable/RawFaceCollection.js @@ -6,9 +6,7 @@ import FaceCollection from "./FaceCollection.js"; import FaceRowType from "./FaceRowType.js"; import RawFace from "./RawFace.js"; import CommandElement from "../CommandElement.js"; -import { createRequire } from 'module'; -const require = createRequire(import.meta.url); -const alasql = require ("./../../../../alasql") +import alasql from "./../../../alasql-ex.js"; export default class RawFaceCollection { /**@type {RawFace[]} */ diff --git a/renderEngine/Command/Source/BaseClasses/JoinMember.js b/renderEngine/Command/Source/BaseClasses/JoinMember.js index e5f0de6..ef43a8b 100644 --- a/renderEngine/Command/Source/BaseClasses/JoinMember.js +++ b/renderEngine/Command/Source/BaseClasses/JoinMember.js @@ -3,9 +3,7 @@ import JsonSource from "../../../Source/JsonSource.js"; import BasisCoreException from "../../../../Models/Exceptions/BasisCoreException.js"; import IContext from "../../../Context/IContext.js"; import IToken from "../../../Token/IToken.js"; -import { createRequire } from 'module'; -const require = createRequire(import.meta.url); -const alasql = require ("./../../../../../alasql") +import alasql from "./../../../../alasql-ex.jsalasql"; export default class JoinMember extends InMemoryMember { /** * @param {object} memberIL diff --git a/renderEngine/Command/Source/BaseClasses/SqlMember.js b/renderEngine/Command/Source/BaseClasses/SqlMember.js index 71ac17d..8fc0a90 100644 --- a/renderEngine/Command/Source/BaseClasses/SqlMember.js +++ b/renderEngine/Command/Source/BaseClasses/SqlMember.js @@ -1,6 +1,4 @@ -import { createRequire } from 'module'; -const require = createRequire(import.meta.url); -const alasql = require ("./../../../../../alasql") +import alasql from './../../../../alasql-ex.js'; import InMemoryMember from "./InMemoryMember.js"; import JsonSource from "../../../Source/JsonSource.js"; diff --git a/renderEngine/Command/TreeCommand.js b/renderEngine/Command/TreeCommand.js index b236204..d3d440c 100644 --- a/renderEngine/Command/TreeCommand.js +++ b/renderEngine/Command/TreeCommand.js @@ -6,9 +6,7 @@ import FaceCollection from "./Renderable/FaceCollection.js"; import StringUtil from "../Token/StringUtil.js"; import Util from "../../Util.js"; import SourceUtil from "../Source/SourceUtil.js"; -import { createRequire } from 'module'; -const require = createRequire(import.meta.url); -const alasql = require ("./../../../alasql") +import alasql from "./../../alasql-ex.js" export default class TreeCommand extends RenderableCommand { /** @type {IToken} */ diff --git a/renderEngine/Command/ViewCommand.js b/renderEngine/Command/ViewCommand.js index 604ecf5..5a2f946 100644 --- a/renderEngine/Command/ViewCommand.js +++ b/renderEngine/Command/ViewCommand.js @@ -3,9 +3,7 @@ import IToken from "../Token/IToken.js"; import TokenUtil from "../Token/TokenUtil.js"; import RenderableCommand from "./RenderableCommand.js"; import IDataSource from "../Source/IDataSource.js"; -import { createRequire } from 'module'; -const require = createRequire(import.meta.url); -const alasql = require ("./../../../alasql") +import alasql from "./../../alasql-ex.js"; import RenderParam from "./RenderParam.js"; import FaceCollection from "./Renderable/FaceCollection.js"; import ReplaceCollection from "./Renderable/ReplaceCollection.js"; diff --git a/renderEngine/Source/SourceUtil.js b/renderEngine/Source/SourceUtil.js index 6139052..588a05a 100644 --- a/renderEngine/Source/SourceUtil.js +++ b/renderEngine/Source/SourceUtil.js @@ -1,30 +1,8 @@ -import { createRequire } from 'module'; -const require = createRequire(import.meta.url); -const alasql = require ("./../../../alasql") +import alasql from '../../alasql-ex.js'; import IDataSource from "./IDataSource.js"; import IContext from "../Context/IContext.js"; import StringUtil from "../Token/StringUtil.js"; -alasql.fn.REVERSE = function (str) { - return str ?str.split("").reverse().join(""): null; -}; -alasql.fn.CHARINDEX = function(substring, string) { - return string ?string.indexOf(substring) + 1 : -1; -}; -alasql.fn.SUBSTR = function (str, start, length) { - if (typeof str !== 'string') return null; - start = start - 1; - if (length !== undefined) { - return str.substring(start, start + length); - } - return str.substring(start); -}; -alasql.fn.INDEXOF = function (str, searchValue) { - if (typeof str !== 'string' || typeof searchValue !== 'string') return -1; - var index = str ?str.indexOf(searchValue) : -1; - return index >= 0 ? index + 1 : -1; -}; - export default class SourceUtil { /** * From 3f169aa73e553a7f51ea55a9c7c81a94ce33bd8b Mon Sep 17 00:00:00 2001 From: alibazregar Date: Tue, 29 Oct 2024 16:01:11 +0330 Subject: [PATCH 14/23] add-alasql-to-root --- alasql-ex.js | 3 +- alasql/alasql-echo.cjs | 20 + alasql/alasql-prolog.cjs | 51 + alasql/alasql.d.ts | 215 + alasql/alasql.fs.cjs | 43336 +++++++++++++++++++++++++++++++++++++ 5 files changed, 43624 insertions(+), 1 deletion(-) create mode 100644 alasql/alasql-echo.cjs create mode 100644 alasql/alasql-prolog.cjs create mode 100644 alasql/alasql.d.ts create mode 100644 alasql/alasql.fs.cjs diff --git a/alasql-ex.js b/alasql-ex.js index 633d0f4..fb49265 100644 --- a/alasql-ex.js +++ b/alasql-ex.js @@ -1,5 +1,6 @@ +import { createRequire } from "module"; const require = createRequire(import.meta.url); -const alasql = require("../alasql"); +const alasql = require("./alasql/alasql.fs.cjs"); alasql.fn.REVERSE = function (str) { return str ? str.split("").reverse().join("") : null; }; diff --git a/alasql/alasql-echo.cjs b/alasql/alasql-echo.cjs new file mode 100644 index 0000000..270a1db --- /dev/null +++ b/alasql/alasql-echo.cjs @@ -0,0 +1,20 @@ +// Plugin sample + +var yy = alasql.yy; + +yy.Echo = function (params) { + return Object.assign(this, params); +}; +yy.Echo.prototype.toString = function () { + var s = 'TEST ' + this.expr.toString(); + return s; +}; + +yy.Echo.prototype.execute = function (databaseid, params, cb) { + // var self = this; + // console.log(76336,this.expr.toJS()); + var fn = new Function('params, alasql', 'return ' + this.expr.toJS()); + var res = fn(params, alasql); + if (cb) res = cb(res); + return res; +}; diff --git a/alasql/alasql-prolog.cjs b/alasql/alasql-prolog.cjs new file mode 100644 index 0000000..234afc8 --- /dev/null +++ b/alasql/alasql-prolog.cjs @@ -0,0 +1,51 @@ +// Prolog plugin + +var yy = alasql.yy; + +yy.Term = function (params) { + return Object.assign(this, params); +}; +yy.Term.prototype.toString = function () { + var s = this.termid; + if (this.args && this.args.length > 0) { + s += + '(' + + this.args.map(function (arg) { + return arg.toString(); + }) + + ')'; + } + return s; +}; + +yy.AddRule = function (params) { + return Object.assign(this, params); +}; +yy.AddRule.prototype.toString = function () { + var s = ''; + if (this.left) s += this.left.toString(); + s += ':-'; + s += this.right + .map(function (r) { + return r.toString(); + }) + .join(','); + return s; +}; + +yy.AddRule.prototype.execute = function (databaseid, params, cb) { + // var self = this; + // console.log(this.expr.toJS()); + // var fn = new Function('params, alasql','return '+this.expr.toJS()); + // var res = fn(params, alasql); + var res = 1; + var objects = alasql.databases[databaseid].objects; + var rule = {}; + if (!this.left) { + this.right.forEach(function (term) { + rule.$class = term.termid; + }); + } + if (cb) res = cb(res); + return res; +}; diff --git a/alasql/alasql.d.ts b/alasql/alasql.d.ts new file mode 100644 index 0000000..67b58f6 --- /dev/null +++ b/alasql/alasql.d.ts @@ -0,0 +1,215 @@ +// Project: https://github.com/alasql/alasql + +declare module 'alasql' { + import * as xlsx from 'xlsx'; + + interface AlaSQLCallback { + (data?: any, err?: Error): void; + } + + interface AlaSQLOptions { + errorlog: boolean; + valueof: boolean; + dropifnotexists: boolean; // drop database in any case + datetimeformat: string; // how to handle DATE and DATETIME types + casesensitive: boolean; // table and column names are case sensitive and converted to lower-case + logtarget: string; // target for log. Values: 'console', 'output', 'id' of html tag + logprompt: boolean; // print SQL at log + modifier: any; // values: RECORDSET, VALUE, ROW, COLUMN, MATRIX, TEXTSTRING, INDEX + columnlookup: number; // how many rows to lookup to define columns + autovertex: boolean; // create vertex if not found + usedbo: boolean; // use dbo as current database (for partial T-SQL comaptibility) + autocommit: boolean; // the AUTOCOMMIT ON | OFF + cache: boolean; // use cache + nocount: boolean; // for SET NOCOUNT OFF + nan: boolean; // check for NaN and convert it to undefined + angularjs: boolean; + tsql: boolean; + mysql: boolean; + postgres: boolean; + oracle: boolean; + sqlite: boolean; + orientdb: boolean; + excel: any; + } + + // compiled Statement + interface AlaSQLStatement { + (params?: any, cb?: AlaSQLCallback, scope?: any): any; + } + + // abstract Syntax Tree + interface AlaSQLAST { + compile(databaseid: string): AlaSQLStatement; + } + + // https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/es6-promise/es6-promise.d.ts + interface Thenable { + then( + onFulfilled?: (value: T) => U | Thenable, + onRejected?: (error: any) => U | Thenable + ): Thenable; + then( + onFulfilled?: (value: T) => U | Thenable, + onRejected?: (error: any) => void + ): Thenable; + catch(onRejected?: (error: any) => U | Thenable): Thenable; + } + + // see https://github.com/alasql/alasql/wiki/User%20Defined%20Functions + interface userDefinedFunction { + (...x: any[]): any; + } + + interface userDefinedFunctionLookUp { + [x: string]: userDefinedFunction; + } + + // see https://github.com/alasql/alasql/wiki/User%20Defined%20Functions + interface userAggregator { + (value: any, accumulator: any, stage: number): any; + } + + interface userAggregatorLookUp { + [x: string]: userAggregator; + } + + interface userFromFunction { + (dataReference: any, options: any, callback: any, index: any, query: any): any; + } + + interface userFromFunctionLookUp { + [x: string]: userFromFunction; + } + + /** + * AlaSQL database object. This is a lightweight implimentation + * + * @interface database + */ + interface database { + /** + * The database ID. + * + * @type {string} + * @memberof database + */ + databaseid: string; + + /** + * The collection of tables in the database. + * + * @type {tableLookUp} + * @memberof database + */ + tables: tableLookUp; + } + + /** + * AlaSQL table object. This is a lightweight implimentation + * + * @interface table + */ + interface table { + /** + * The array of data stored in the table which can be queried + * + * @type {any[]} + * @memberof table + */ + data: any[]; + } + + /** + * AlaSQL database dictionary + * + * @interface databaseLookUp + */ + interface databaseLookUp { + [databaseName: string]: database; + } + + /** + * AlaSQL table dictionary + * + * @interface tableLookUp + */ + interface tableLookUp { + [tableName: string]: table; + } + + interface Database { + new (databaseid?: string): Database; + databaseid: string; + dbversion: number; + tables: {[key: string]: any}; + views: {[key: string]: any}; + triggers: {[key: string]: any}; + indices: {[key: string]: any}; + objects: {[key: string]: any}; + counter: number; + sqlCache: {[key: string]: any}; + sqlCacheSize: number; + astCache: {[key: string]: any}; + resetSqlCache: () => void; + exec: (sql: string, params?: object, cb?: Function) => any; + autoval: (tablename: string, colname: string, getNext: boolean) => any; + } + interface AlaSQL { + options: AlaSQLOptions; + error: Error; + (sql: any, params?: any, cb?: AlaSQLCallback, scope?: any): any; + parse(sql: any): AlaSQLAST; + promise(sql: any, params?: any): Thenable; + fn: userDefinedFunctionLookUp; + from: userFromFunctionLookUp; + aggr: userAggregatorLookUp; + autoval(tablename: string, colname: string, getNext?: boolean): number; + yy: {}; + setXLSX(xlsxlib: typeof xlsx): void; + Database: { + new (databaseid?: string): Database; + }; + + /** + * Array of databases in the AlaSQL object. + * + * @type {databaseLookUp} + * @memberof AlaSQL + */ + databases: databaseLookUp; + + /** + * Equivalent to alasql('USE '+databaseid). This will change the current + * database to the one specified. This will update the useid property and + * the tables property. + * + * @param {string} databaseid + * @memberof AlaSQL + */ + use(databaseid: string): void; + + /** + * The current database ID. If no database is selected, this is the + * default database ID (called alasql). + * + * @type {string} + * @memberof AlaSQL + */ + useid: string; + + /** + * Array of the tables in the default database (called alasql). If + * the database is changes via a USE statement or the use method, this + * becomes the tables in the new database. + * + * @type {tableLookUp} + * @memberof AlaSQL + */ + tables: tableLookUp; + } + + const alasql: AlaSQL; + + export = alasql; +} diff --git a/alasql/alasql.fs.cjs b/alasql/alasql.fs.cjs new file mode 100644 index 0000000..066c7ed --- /dev/null +++ b/alasql/alasql.fs.cjs @@ -0,0 +1,43336 @@ +//! AlaSQL vPACKAGE_VERSION build: BUILD_VERSION | © 2014-2024 Andrey Gershun & Mathias Wulff | License: MIT +/* +@module alasql +@version PACKAGE_VERSION + +AlaSQL - JavaScript SQL database +© 2014-2024 Andrey Gershun & Mathias Wulff + +@license +The MIT License (MIT) + +Copyright 2014-2024 Andrey Gershun (agershun@gmail.com) & Mathias Wulff (m@rawu.dk) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +*/ +/* eslint-disable */ + +'use strict'; + +/** + @fileoverview AlaSQL JavaScript SQL library + @see http://github.com/alasql/alasql +*/ + +/** + Callback from statement + @callback statement-callback + @param {object} data Result data +*/ + +/** + UMD envelope for AlaSQL +*/ + +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + define([], factory); + } else if (typeof exports === 'object') { + /** alasql main function */ + module.exports = factory(); + } else { + root.alasql = factory(); + } +})(this, function () { + /** + AlaSQL - Main Alasql class + @function + @param {string|function|object} sql - SQL-statement or data object for fluent interface + @param {object} params - SQL parameters + @param {function} cb - callback function + @param {object} scope - Scope for nested queries + @return {any} - Result data object + + @example + Standard sync call: + alasql('CREATE TABLE one'); + Query: + var res = alasql('SELECT * FROM one'); + Call with parameters: + var res = alasql('SELECT * FROM ?',[data]); + Standard async call with callback function: + alasql('SELECT * FROM ?',[data],function(res){ + console.log(data); + }); + Call with scope for subquery (to pass common values): + var scope = {one:{a:2,b;20}} + alasql('SELECT * FROM ? two WHERE two.a = one.a',[data],null,scope); + Call for fluent interface with data object: + alasql(data).Where(function(x){return x.a == 10}).exec(); + Call for fluent interface without data object: + alasql().From(data).Where(function(x){return x.a == 10}).exec(); + */ + + let alasql = function (sql, params, cb, scope) { + params = params || []; + + if (typeof importScripts !== 'function' && alasql.webworker) { + var id = alasql.lastid++; + alasql.buffer[id] = cb; + alasql.webworker.postMessage({id: id, sql: sql, params: params}); + return; + } + + if (arguments.length === 0) { + // Without arguments - Fluent interface + return new yy.Select({ + columns: [new yy.Column({columnid: '*'})], + from: [new yy.ParamValue({param: 0})], + }); + } else if (arguments.length === 1) { + // Access promise notation without using `.promise(...)` + if (sql.constructor === Array) { + return alasql.promise(sql); + } + } + // Avoid setting params if not needed even with callback + if (typeof params === 'function') { + scope = cb; + cb = params; + params = []; + } + + if (typeof params !== 'object') { + params = [params]; + } + + // Standard interface + // alasql('#sql'); + if (typeof sql === 'string' && sql[0] === '#' && typeof document === 'object') { + sql = document.querySelector(sql).textContent; + } else if (typeof sql === 'object' && sql instanceof HTMLElement) { + sql = sql.textContent; + } else if (typeof sql === 'function') { + // to run multiline functions + sql = sql.toString(); + sql = (/\/\*([\S\s]+)\*\//m.exec(sql) || [ + '', + 'Function given as SQL. Plese Provide SQL string or have a /* ... */ syle comment with SQL in the function.', + ])[1]; + } + // Run SQL + return alasql.exec(sql, params, cb, scope); + }; + + /** + Current version of alasql + @constant {string} + */ + alasql.version = 'PACKAGE_VERSION'; + alasql.build = 'BUILD_VERSION'; + + /** + Debug flag + @type {boolean} + */ + alasql.debug = undefined; // Initial debug variable + + /*only-for-browser/* +var require = function(){return null}; // as alasqlparser.js is generated, we can not "remove" references to +var __dirname = ''; +//*/ + /* parser generated by jison 0.4.18 */ + /* + Returns a Parser object of the following structure: + + Parser: { + yy: {} + } + + Parser.prototype: { + yy: {}, + trace: function(), + symbols_: {associative list: name ==> number}, + terminals_: {associative list: number ==> name}, + productions_: [...], + performAction: function anonymous(yytext, yyleng, yylineno, yy, yystate, $$, _$), + table: [...], + defaultActions: {...}, + parseError: function(str, hash), + parse: function(input), + + lexer: { + EOF: 1, + parseError: function(str, hash), + setInput: function(input), + input: function(), + unput: function(str), + more: function(), + less: function(n), + pastInput: function(), + upcomingInput: function(), + showPosition: function(), + test_match: function(regex_match_array, rule_index), + next: function(), + lex: function(), + begin: function(condition), + popState: function(), + _currentRules: function(), + topState: function(), + pushState: function(condition), + + options: { + ranges: boolean (optional: true ==> token location info will include a .range[] member) + flex: boolean (optional: true ==> flex-like lexing behaviour where the rules are tested exhaustively to find the longest match) + backtrack_lexer: boolean (optional: true ==> lexer regexes are tested in order and for each matching regex the action code is invoked; the lexer terminates the scan when a token is returned by the action code) + }, + + performAction: function(yy, yy_, $avoiding_name_collisions, YY_START), + rules: [...], + conditions: {associative list: name ==> set}, + } + } + + + token location info (@$, _$, etc.): { + first_line: n, + last_line: n, + first_column: n, + last_column: n, + range: [start_number, end_number] (where the numbers are indexes into the input string, regular zero-based) + } + + + the parseError function receives a 'hash' object with these members for lexer and parser errors: { + text: (matched text) + token: (the produced terminal token, if any) + line: (yylineno) + } + while parser (grammar) errors will also provide these members, i.e. parser errors deliver a superset of attributes: { + loc: (yylloc) + expected: (string describing the set of expected tokens) + recoverable: (boolean: TRUE when the parser has a error recovery rule available for this particular error) + } +*/ + var alasqlparser = (function () { + var o = function (k, v, o, l) { + for (o = o || {}, l = k.length; l--; o[k[l]] = v); + return o; + }, + $V0 = [2, 13], + $V1 = [1, 104], + $V2 = [1, 102], + $V3 = [1, 103], + $V4 = [1, 6], + $V5 = [1, 42], + $V6 = [1, 79], + $V7 = [1, 76], + $V8 = [1, 94], + $V9 = [1, 93], + $Va = [1, 69], + $Vb = [1, 101], + $Vc = [1, 85], + $Vd = [1, 64], + $Ve = [1, 71], + $Vf = [1, 84], + $Vg = [1, 66], + $Vh = [1, 70], + $Vi = [1, 68], + $Vj = [1, 61], + $Vk = [1, 74], + $Vl = [1, 62], + $Vm = [1, 67], + $Vn = [1, 83], + $Vo = [1, 77], + $Vp = [1, 86], + $Vq = [1, 87], + $Vr = [1, 81], + $Vs = [1, 82], + $Vt = [1, 80], + $Vu = [1, 88], + $Vv = [1, 89], + $Vw = [1, 90], + $Vx = [1, 91], + $Vy = [1, 92], + $Vz = [1, 98], + $VA = [1, 65], + $VB = [1, 78], + $VC = [1, 72], + $VD = [1, 96], + $VE = [1, 97], + $VF = [1, 63], + $VG = [1, 73], + $VH = [1, 108], + $VI = [1, 107], + $VJ = [10, 311, 607, 768], + $VK = [10, 311, 315, 607, 768], + $VL = [1, 115], + $VM = [1, 117], + $VN = [1, 116], + $VO = [1, 118], + $VP = [1, 119], + $VQ = [1, 120], + $VR = [1, 121], + $VS = [130, 358, 415], + $VT = [1, 129], + $VU = [1, 128], + $VV = [1, 136], + $VW = [1, 166], + $VX = [1, 178], + $VY = [1, 181], + $VZ = [1, 176], + $V_ = [1, 184], + $V$ = [1, 188], + $V01 = [1, 162], + $V11 = [1, 185], + $V21 = [1, 172], + $V31 = [1, 174], + $V41 = [1, 177], + $V51 = [1, 186], + $V61 = [1, 203], + $V71 = [1, 204], + $V81 = [1, 168], + $V91 = [1, 169], + $Va1 = [1, 196], + $Vb1 = [1, 191], + $Vc1 = [1, 192], + $Vd1 = [1, 197], + $Ve1 = [1, 198], + $Vf1 = [1, 199], + $Vg1 = [1, 200], + $Vh1 = [1, 201], + $Vi1 = [1, 202], + $Vj1 = [1, 205], + $Vk1 = [1, 206], + $Vl1 = [1, 179], + $Vm1 = [1, 180], + $Vn1 = [1, 182], + $Vo1 = [1, 183], + $Vp1 = [1, 189], + $Vq1 = [1, 195], + $Vr1 = [1, 187], + $Vs1 = [1, 190], + $Vt1 = [1, 175], + $Vu1 = [1, 173], + $Vv1 = [1, 194], + $Vw1 = [1, 207], + $Vx1 = [2, 4, 5], + $Vy1 = [2, 479], + $Vz1 = [1, 210], + $VA1 = [1, 215], + $VB1 = [1, 224], + $VC1 = [1, 220], + $VD1 = [ + 10, 72, 78, 93, 98, 118, 128, 162, 168, 169, 183, 198, 232, 249, 251, 311, 315, 607, 768, + ], + $VE1 = [ + 2, 4, 5, 10, 72, 76, 77, 78, 112, 115, 116, 118, 122, 123, 124, 128, 129, 130, 131, 132, + 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, 148, 149, 150, 152, 154, + 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 183, 185, 187, 198, 244, 245, 285, + 286, 287, 288, 289, 290, 291, 292, 311, 315, 425, 429, 607, 768, + ], + $VF1 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, 123, + 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, + 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, + 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, 229, 232, + 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, 291, 292, 294, + 301, 305, 311, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, + 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 401, 405, 406, 409, 411, 413, 414, + 422, 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 469, 475, + 510, 512, 513, 522, 607, 768, + ], + $VG1 = [1, 253], + $VH1 = [1, 260], + $VI1 = [1, 261], + $VJ1 = [1, 270], + $VK1 = [1, 275], + $VL1 = [1, 274], + $VM1 = [ + 2, 4, 5, 10, 72, 77, 78, 93, 98, 107, 118, 128, 131, 132, 137, 143, 145, 149, 152, 154, 156, + 162, 168, 169, 179, 180, 181, 183, 198, 232, 244, 245, 249, 251, 269, 270, 271, 275, 276, + 278, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, 300, 301, 302, + 303, 304, 307, 308, 311, 315, 317, 322, 425, 429, 607, 768, + ], + $VN1 = [2, 162], + $VO1 = [1, 286], + $VP1 = [10, 74, 78, 311, 315, 510, 607, 768], + $VQ1 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, 123, + 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, + 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, + 180, 181, 183, 185, 187, 189, 193, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, 229, + 230, 231, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, + 291, 292, 294, 301, 302, 305, 307, 311, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, + 323, 324, 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 348, 349, + 361, 373, 374, 375, 378, 379, 391, 394, 401, 405, 406, 407, 408, 409, 410, 411, 413, 414, + 422, 423, 425, 429, 431, 438, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, + 469, 475, 510, 512, 513, 519, 520, 521, 522, 607, 768, + ], + $VR1 = [ + 2, 4, 5, 10, 53, 72, 89, 124, 146, 156, 189, 271, 272, 294, 311, 340, 343, 344, 401, 405, + 406, 409, 411, 413, 414, 422, 423, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, + 457, 510, 512, 513, 522, 607, 768, + ], + $VS1 = [1, 567], + $VT1 = [1, 569], + $VU1 = [1, 570], + $VV1 = [2, 511], + $VW1 = [1, 576], + $VX1 = [1, 587], + $VY1 = [1, 590], + $VZ1 = [1, 591], + $V_1 = [10, 78, 89, 132, 137, 146, 189, 301, 311, 315, 475, 607, 768], + $V$1 = [10, 74, 311, 315, 607, 768], + $V02 = [2, 575], + $V12 = [1, 609], + $V22 = [2, 4, 5, 156], + $V32 = [1, 647], + $V42 = [1, 619], + $V52 = [1, 653], + $V62 = [1, 654], + $V72 = [1, 627], + $V82 = [1, 638], + $V92 = [1, 625], + $Va2 = [1, 633], + $Vb2 = [1, 626], + $Vc2 = [1, 634], + $Vd2 = [1, 636], + $Ve2 = [1, 628], + $Vf2 = [1, 629], + $Vg2 = [1, 648], + $Vh2 = [1, 645], + $Vi2 = [1, 646], + $Vj2 = [1, 622], + $Vk2 = [1, 624], + $Vl2 = [1, 616], + $Vm2 = [1, 617], + $Vn2 = [1, 618], + $Vo2 = [1, 620], + $Vp2 = [1, 621], + $Vq2 = [1, 623], + $Vr2 = [1, 630], + $Vs2 = [1, 631], + $Vt2 = [1, 635], + $Vu2 = [1, 637], + $Vv2 = [1, 639], + $Vw2 = [1, 640], + $Vx2 = [1, 641], + $Vy2 = [1, 642], + $Vz2 = [1, 643], + $VA2 = [1, 649], + $VB2 = [1, 650], + $VC2 = [1, 651], + $VD2 = [1, 652], + $VE2 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, 123, 124, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, + 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, 180, + 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, 229, 232, 239, + 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, 291, 292, 294, 301, + 305, 311, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, + 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 401, 405, 406, 409, 411, 413, 414, 422, + 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 469, 475, 510, + 512, 513, 522, 607, 768, + ], + $VF2 = [2, 290], + $VG2 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, 123, + 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, + 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, + 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, 229, 230, + 231, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, 291, + 292, 294, 301, 302, 305, 311, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, + 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 348, 361, 373, 374, + 378, 379, 401, 405, 406, 409, 411, 413, 414, 422, 423, 425, 429, 431, 439, 441, 442, 444, + 445, 446, 447, 448, 452, 453, 456, 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + $VH2 = [2, 367], + $VI2 = [1, 675], + $VJ2 = [1, 685], + $VK2 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, 123, + 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, + 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, + 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, 229, 230, + 231, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, 291, + 292, 294, 301, 305, 311, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, + 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 401, 405, 406, 409, 411, + 413, 414, 422, 423, 425, 429, 431, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, + 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + $VL2 = [1, 701], + $VM2 = [1, 710], + $VN2 = [1, 709], + $VO2 = [ + 2, 4, 5, 10, 72, 74, 78, 93, 98, 118, 128, 162, 168, 169, 206, 208, 222, 223, 224, 225, 226, + 227, 228, 229, 230, 231, 232, 249, 251, 311, 315, 607, 768, + ], + $VP2 = [ + 10, 72, 74, 78, 93, 98, 118, 128, 162, 168, 169, 206, 208, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 231, 232, 249, 251, 311, 315, 607, 768, + ], + $VQ2 = [2, 202], + $VR2 = [1, 732], + $VS2 = [10, 72, 78, 93, 98, 118, 128, 162, 168, 169, 183, 232, 249, 251, 311, 315, 607, 768], + $VT2 = [2, 163], + $VU2 = [1, 735], + $VV2 = [2, 4, 5, 112], + $VW2 = [1, 748], + $VX2 = [1, 767], + $VY2 = [1, 747], + $VZ2 = [1, 746], + $V_2 = [1, 741], + $V$2 = [1, 742], + $V03 = [1, 744], + $V13 = [1, 745], + $V23 = [1, 749], + $V33 = [1, 750], + $V43 = [1, 751], + $V53 = [1, 752], + $V63 = [1, 753], + $V73 = [1, 754], + $V83 = [1, 755], + $V93 = [1, 756], + $Va3 = [1, 757], + $Vb3 = [1, 758], + $Vc3 = [1, 759], + $Vd3 = [1, 760], + $Ve3 = [1, 761], + $Vf3 = [1, 762], + $Vg3 = [1, 763], + $Vh3 = [1, 764], + $Vi3 = [1, 766], + $Vj3 = [1, 768], + $Vk3 = [1, 769], + $Vl3 = [1, 770], + $Vm3 = [1, 771], + $Vn3 = [1, 772], + $Vo3 = [1, 773], + $Vp3 = [1, 774], + $Vq3 = [1, 777], + $Vr3 = [1, 778], + $Vs3 = [1, 779], + $Vt3 = [1, 780], + $Vu3 = [1, 781], + $Vv3 = [1, 782], + $Vw3 = [1, 783], + $Vx3 = [1, 784], + $Vy3 = [1, 785], + $Vz3 = [1, 786], + $VA3 = [1, 787], + $VB3 = [1, 788], + $VC3 = [74, 89, 189], + $VD3 = [10, 74, 78, 154, 187, 230, 302, 311, 315, 348, 361, 373, 374, 378, 379, 607, 768], + $VE3 = [1, 805], + $VF3 = [10, 74, 78, 305, 311, 315, 607, 768], + $VG3 = [1, 806], + $VH3 = [1, 812], + $VI3 = [1, 813], + $VJ3 = [1, 817], + $VK3 = [10, 74, 78, 311, 315, 607, 768], + $VL3 = [ + 2, 4, 5, 77, 131, 132, 137, 143, 145, 149, 152, 154, 156, 179, 180, 181, 244, 245, 269, 270, + 271, 275, 276, 278, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, 299, + 300, 301, 302, 303, 304, 307, 308, 317, 322, 425, 429, + ], + $VM3 = [ + 10, 72, 78, 93, 98, 107, 118, 128, 162, 168, 169, 183, 198, 232, 249, 251, 311, 315, 607, + 768, + ], + $VN3 = [ + 2, 4, 5, 10, 72, 77, 78, 93, 98, 107, 118, 128, 131, 132, 137, 143, 145, 149, 152, 154, 156, + 162, 164, 168, 169, 179, 180, 181, 183, 185, 187, 195, 198, 232, 244, 245, 249, 251, 269, + 270, 271, 275, 276, 278, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, + 299, 300, 301, 302, 303, 304, 307, 308, 311, 315, 317, 322, 425, 429, 607, 768, + ], + $VO3 = [2, 4, 5, 132, 301], + $VP3 = [1, 853], + $VQ3 = [10, 74, 76, 78, 311, 315, 607, 768], + $VR3 = [2, 746], + $VS3 = [10, 74, 76, 78, 132, 139, 141, 145, 152, 311, 315, 425, 429, 607, 768], + $VT3 = [2, 1169], + $VU3 = [10, 74, 76, 78, 139, 141, 145, 152, 311, 315, 425, 429, 607, 768], + $VV3 = [10, 74, 76, 78, 139, 141, 145, 311, 315, 425, 429, 607, 768], + $VW3 = [10, 74, 78, 139, 141, 311, 315, 607, 768], + $VX3 = [10, 78, 89, 132, 146, 189, 301, 311, 315, 475, 607, 768], + $VY3 = [340, 343, 344], + $VZ3 = [2, 772], + $V_3 = [1, 878], + $V$3 = [1, 879], + $V04 = [1, 880], + $V14 = [1, 881], + $V24 = [1, 890], + $V34 = [1, 889], + $V44 = [164, 166, 339], + $V54 = [2, 452], + $V64 = [1, 945], + $V74 = [2, 4, 5, 77, 131, 156, 270, 294, 295, 296, 297, 298], + $V84 = [1, 960], + $V94 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 118, 122, 124, 128, 129, + 130, 131, 132, 134, 135, 137, 139, 140, 141, 142, 143, 145, 146, 148, 149, 150, 152, 154, + 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, 181, 183, 185, 187, 189, 198, + 206, 208, 222, 223, 224, 225, 226, 227, 228, 229, 232, 239, 244, 245, 246, 247, 249, 251, + 271, 272, 285, 286, 287, 288, 289, 290, 291, 292, 294, 301, 305, 311, 313, 314, 315, 316, + 318, 319, 320, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, + 343, 344, 401, 405, 406, 409, 411, 413, 414, 422, 423, 425, 429, 439, 441, 442, 444, 445, + 446, 447, 448, 452, 453, 456, 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + $Va4 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, 123, + 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, + 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, + 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, 229, 232, + 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, 291, 292, 294, + 301, 305, 311, 313, 314, 315, 316, 317, 318, 319, 320, 322, 323, 324, 325, 326, 327, 328, + 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 401, 405, 406, 409, 411, 413, 414, 422, + 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 469, 475, 510, + 512, 513, 522, 607, 768, + ], + $Vb4 = [2, 383], + $Vc4 = [1, 967], + $Vd4 = [311, 313, 315], + $Ve4 = [74, 305], + $Vf4 = [74, 305, 431], + $Vg4 = [1, 974], + $Vh4 = [74, 431], + $Vi4 = [1, 987], + $Vj4 = [1, 986], + $Vk4 = [1, 993], + $Vl4 = [10, 72, 78, 93, 98, 118, 128, 162, 168, 169, 232, 249, 251, 311, 315, 607, 768], + $Vm4 = [1, 1019], + $Vn4 = [10, 72, 78, 311, 315, 607, 768], + $Vo4 = [1, 1025], + $Vp4 = [1, 1026], + $Vq4 = [1, 1027], + $Vr4 = [ + 2, 4, 5, 10, 72, 74, 76, 77, 78, 112, 115, 116, 118, 122, 123, 124, 128, 129, 130, 131, 132, + 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, 148, 149, 150, 152, 154, + 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, 180, 181, 183, 185, 187, 198, + 244, 245, 285, 286, 287, 288, 289, 290, 291, 292, 311, 315, 425, 429, 607, 768, + ], + $Vs4 = [1, 1077], + $Vt4 = [1, 1076], + $Vu4 = [1, 1090], + $Vv4 = [1, 1089], + $Vw4 = [1, 1097], + $Vx4 = [ + 10, 72, 74, 78, 93, 98, 107, 118, 128, 162, 168, 169, 183, 198, 232, 249, 251, 311, 315, + 607, 768, + ], + $Vy4 = [1, 1129], + $Vz4 = [10, 78, 89, 146, 189, 311, 315, 475, 607, 768], + $VA4 = [1, 1149], + $VB4 = [1, 1148], + $VC4 = [1, 1147], + $VD4 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, 123, + 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, + 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, + 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, 229, 230, + 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, 291, 292, + 294, 301, 302, 305, 311, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, + 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 348, 361, 373, 374, 378, + 379, 401, 405, 406, 409, 411, 413, 414, 422, 423, 425, 429, 439, 441, 442, 444, 445, 446, + 447, 448, 452, 453, 456, 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + $VE4 = [1, 1163], + $VF4 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 118, 122, 124, 128, 129, + 130, 131, 132, 134, 135, 137, 139, 140, 143, 145, 146, 148, 149, 150, 152, 154, 156, 162, + 164, 166, 168, 169, 170, 171, 172, 173, 175, 181, 183, 185, 187, 189, 198, 206, 208, 222, + 223, 224, 225, 226, 227, 228, 229, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, + 286, 287, 288, 289, 290, 291, 292, 294, 301, 305, 311, 313, 314, 315, 316, 318, 319, 320, + 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 401, 405, 406, 409, + 411, 413, 414, 422, 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, + 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + $VG4 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 118, 122, 124, 128, 129, + 130, 131, 132, 134, 135, 137, 139, 140, 143, 145, 146, 148, 149, 150, 152, 154, 156, 162, + 164, 166, 168, 169, 170, 171, 172, 173, 175, 181, 183, 185, 187, 189, 198, 206, 208, 222, + 223, 224, 225, 226, 227, 228, 229, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, + 286, 287, 288, 289, 290, 291, 292, 294, 301, 305, 311, 313, 314, 315, 316, 318, 320, 325, + 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 401, 405, 406, 409, 411, + 413, 414, 422, 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, + 469, 475, 510, 512, 513, 522, 607, 768, + ], + $VH4 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 118, 122, 124, 128, 129, + 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 145, 146, 148, 149, 150, + 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, 180, 181, 183, 185, + 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, 229, 232, 239, 244, 245, 246, + 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, 291, 292, 294, 301, 305, 311, 313, + 314, 315, 316, 318, 319, 320, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 335, 336, + 337, 338, 340, 343, 344, 401, 405, 406, 409, 411, 413, 414, 422, 423, 425, 429, 439, 441, + 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + $VI4 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 118, 122, 124, 128, 129, + 130, 131, 132, 134, 135, 137, 139, 140, 141, 142, 143, 145, 146, 148, 149, 150, 152, 154, + 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 181, 183, 185, 187, 189, 198, 206, + 208, 222, 223, 224, 225, 226, 227, 228, 229, 232, 239, 244, 245, 246, 247, 249, 251, 271, + 272, 285, 286, 287, 288, 289, 290, 291, 292, 294, 301, 305, 311, 313, 314, 315, 316, 318, + 319, 320, 323, 324, 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, + 401, 405, 406, 409, 411, 413, 414, 422, 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, + 448, 452, 453, 456, 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + $VJ4 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 118, 122, 124, 128, 129, 130, + 131, 132, 134, 135, 137, 139, 140, 143, 145, 146, 148, 149, 150, 152, 154, 156, 162, 164, + 166, 168, 169, 170, 171, 172, 173, 175, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, + 224, 225, 226, 227, 228, 229, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, + 287, 288, 289, 290, 291, 292, 294, 301, 305, 311, 313, 314, 315, 319, 325, 326, 327, 328, + 329, 330, 331, 335, 336, 338, 340, 343, 344, 401, 405, 406, 409, 411, 413, 414, 422, 423, + 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 469, 475, 510, 512, + 513, 522, 607, 768, + ], + $VK4 = [2, 414], + $VL4 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 107, 118, 122, 128, 129, 130, 131, 132, + 134, 135, 137, 143, 145, 146, 148, 149, 150, 152, 156, 162, 164, 166, 168, 169, 170, 171, + 172, 173, 175, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, + 229, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, 291, + 292, 294, 301, 305, 311, 313, 314, 315, 319, 335, 336, 338, 340, 343, 344, 401, 405, 406, + 409, 411, 413, 414, 422, 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, + 456, 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + $VM4 = [2, 288], + $VN4 = [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, 123, + 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, + 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, + 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, 229, 232, + 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, 291, 292, 294, + 301, 305, 311, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, + 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 401, 405, 406, 409, 411, 413, 414, + 422, 423, 425, 429, 431, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 469, + 475, 510, 512, 513, 522, 607, 768, + ], + $VO4 = [10, 78, 311, 315, 607, 768], + $VP4 = [1, 1199], + $VQ4 = [10, 77, 78, 143, 145, 152, 181, 307, 311, 315, 425, 429, 607, 768], + $VR4 = [10, 74, 78, 311, 313, 315, 469, 607, 768], + $VS4 = [1, 1210], + $VT4 = [10, 72, 78, 118, 128, 162, 168, 169, 232, 249, 251, 311, 315, 607, 768], + $VU4 = [ + 10, 72, 74, 78, 93, 98, 118, 128, 162, 168, 169, 183, 198, 232, 249, 251, 311, 315, 607, + 768, + ], + $VV4 = [ + 2, 4, 5, 72, 76, 77, 78, 112, 115, 116, 118, 122, 123, 124, 128, 129, 130, 131, 132, 133, + 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, 148, 149, 150, 152, 154, 156, + 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 185, 187, 244, 245, 285, 286, 287, 288, + 289, 290, 291, 292, 425, 429, + ], + $VW4 = [ + 2, 4, 5, 72, 74, 76, 77, 78, 112, 115, 116, 118, 122, 123, 124, 128, 129, 130, 131, 132, + 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, 148, 149, 150, 152, 154, + 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 185, 187, 244, 245, 285, 286, 287, + 288, 289, 290, 291, 292, 425, 429, + ], + $VX4 = [2, 1093], + $VY4 = [ + 2, 4, 5, 72, 74, 76, 77, 112, 115, 116, 118, 122, 123, 124, 128, 129, 130, 131, 132, 133, + 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, 148, 149, 150, 152, 154, 156, + 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 185, 187, 244, 245, 285, 286, 287, 288, + 289, 290, 291, 292, 425, 429, + ], + $VZ4 = [1, 1262], + $V_4 = [10, 74, 78, 128, 311, 313, 315, 469, 607, 768], + $V$4 = [115, 116, 124], + $V05 = [2, 592], + $V15 = [1, 1291], + $V25 = [76, 139], + $V35 = [2, 732], + $V45 = [1, 1308], + $V55 = [1, 1309], + $V65 = [ + 2, 4, 5, 10, 53, 72, 76, 89, 124, 146, 156, 189, 230, 271, 272, 294, 311, 315, 340, 343, + 344, 401, 405, 406, 409, 411, 413, 414, 422, 423, 439, 441, 442, 444, 445, 446, 447, 448, + 452, 453, 456, 457, 510, 512, 513, 522, 607, 768, + ], + $V75 = [2, 335], + $V85 = [1, 1333], + $V95 = [1, 1347], + $Va5 = [1, 1349], + $Vb5 = [2, 495], + $Vc5 = [74, 78], + $Vd5 = [10, 311, 313, 315, 469, 607, 768], + $Ve5 = [10, 72, 78, 118, 162, 168, 169, 232, 249, 251, 311, 315, 607, 768], + $Vf5 = [1, 1365], + $Vg5 = [1, 1369], + $Vh5 = [1, 1370], + $Vi5 = [1, 1372], + $Vj5 = [1, 1373], + $Vk5 = [1, 1374], + $Vl5 = [1, 1375], + $Vm5 = [1, 1376], + $Vn5 = [1, 1377], + $Vo5 = [1, 1378], + $Vp5 = [1, 1379], + $Vq5 = [ + 10, 72, 74, 78, 93, 98, 118, 128, 162, 168, 169, 206, 208, 222, 223, 224, 225, 226, 227, + 228, 229, 232, 249, 251, 311, 315, 607, 768, + ], + $Vr5 = [1, 1404], + $Vs5 = [10, 72, 78, 118, 162, 168, 169, 249, 251, 311, 315, 607, 768], + $Vt5 = [ + 10, 72, 78, 93, 98, 118, 128, 162, 168, 169, 206, 208, 222, 223, 224, 225, 226, 227, 228, + 229, 232, 249, 251, 311, 315, 607, 768, + ], + $Vu5 = [1, 1502], + $Vv5 = [1, 1504], + $Vw5 = [2, 4, 5, 77, 143, 145, 152, 156, 181, 270, 294, 295, 296, 297, 298, 307, 425, 429], + $Vx5 = [1, 1518], + $Vy5 = [10, 72, 74, 78, 162, 168, 169, 249, 251, 311, 315, 607, 768], + $Vz5 = [1, 1536], + $VA5 = [1, 1538], + $VB5 = [1, 1539], + $VC5 = [1, 1535], + $VD5 = [1, 1534], + $VE5 = [1, 1533], + $VF5 = [1, 1540], + $VG5 = [1, 1530], + $VH5 = [1, 1531], + $VI5 = [1, 1532], + $VJ5 = [1, 1558], + $VK5 = [ + 2, 4, 5, 10, 53, 72, 89, 124, 146, 156, 189, 271, 272, 294, 311, 315, 340, 343, 344, 401, + 405, 406, 409, 411, 413, 414, 422, 423, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, + 456, 457, 510, 512, 513, 522, 607, 768, + ], + $VL5 = [1, 1569], + $VM5 = [1, 1577], + $VN5 = [1, 1576], + $VO5 = [10, 72, 78, 162, 168, 169, 249, 251, 311, 315, 607, 768], + $VP5 = [ + 10, 72, 78, 93, 98, 118, 128, 162, 168, 169, 206, 208, 222, 223, 224, 225, 226, 227, 228, + 229, 230, 231, 232, 249, 251, 311, 315, 607, 768, + ], + $VQ5 = [ + 2, 4, 5, 10, 72, 78, 93, 98, 118, 128, 162, 168, 169, 206, 208, 222, 223, 224, 225, 226, + 227, 228, 229, 230, 231, 232, 249, 251, 311, 315, 607, 768, + ], + $VR5 = [1, 1637], + $VS5 = [1, 1639], + $VT5 = [1, 1636], + $VU5 = [1, 1638], + $VV5 = [187, 193, 373, 374, 375, 378], + $VW5 = [2, 523], + $VX5 = [1, 1644], + $VY5 = [1, 1663], + $VZ5 = [10, 72, 78, 162, 168, 169, 311, 315, 607, 768], + $V_5 = [1, 1673], + $V$5 = [1, 1674], + $V06 = [1, 1675], + $V16 = [1, 1696], + $V26 = [4, 10, 247, 311, 315, 348, 361, 607, 768], + $V36 = [1, 1744], + $V46 = [10, 72, 74, 78, 118, 162, 168, 169, 239, 249, 251, 311, 315, 607, 768], + $V56 = [2, 4, 5, 77], + $V66 = [1, 1838], + $V76 = [1, 1850], + $V86 = [1, 1869], + $V96 = [10, 72, 78, 162, 168, 169, 311, 315, 420, 607, 768], + $Va6 = [10, 74, 78, 230, 311, 315, 607, 768]; + var parser = { + trace: function trace() {}, + yy: {}, + symbols_: { + error: 2, + Literal: 3, + LITERAL: 4, + BRALITERAL: 5, + NonReserved: 6, + LiteralWithSpaces: 7, + main: 8, + Statements: 9, + EOF: 10, + Statements_group0: 11, + AStatement: 12, + ExplainStatement: 13, + EXPLAIN: 14, + QUERY: 15, + PLAN: 16, + Statement: 17, + AlterTable: 18, + AttachDatabase: 19, + Call: 20, + CreateDatabase: 21, + CreateIndex: 22, + CreateGraph: 23, + CreateTable: 24, + CreateView: 25, + CreateEdge: 26, + CreateVertex: 27, + Declare: 28, + Delete: 29, + DetachDatabase: 30, + DropDatabase: 31, + DropIndex: 32, + DropTable: 33, + DropView: 34, + If: 35, + Insert: 36, + Merge: 37, + Reindex: 38, + RenameTable: 39, + Select: 40, + ShowCreateTable: 41, + ShowColumns: 42, + ShowDatabases: 43, + ShowIndex: 44, + ShowTables: 45, + TruncateTable: 46, + WithSelect: 47, + CreateTrigger: 48, + DropTrigger: 49, + BeginTransaction: 50, + CommitTransaction: 51, + RollbackTransaction: 52, + EndTransaction: 53, + UseDatabase: 54, + Update: 55, + JavaScript: 56, + Source: 57, + Assert: 58, + While: 59, + Continue: 60, + Break: 61, + BeginEnd: 62, + Print: 63, + Require: 64, + SetVariable: 65, + ExpressionStatement: 66, + AddRule: 67, + Query: 68, + Echo: 69, + CreateFunction: 70, + CreateAggregate: 71, + WITH: 72, + WithTablesList: 73, + COMMA: 74, + WithTable: 75, + AS: 76, + LPAR: 77, + RPAR: 78, + SelectClause: 79, + Select_option0: 80, + IntoClause: 81, + FromClause: 82, + Select_option1: 83, + WhereClause: 84, + GroupClause: 85, + OrderClause: 86, + LimitClause: 87, + UnionClause: 88, + SEARCH: 89, + Select_repetition0: 90, + Select_option2: 91, + PivotClause: 92, + PIVOT: 93, + Expression: 94, + FOR: 95, + PivotClause_option0: 96, + PivotClause_option1: 97, + UNPIVOT: 98, + IN: 99, + ColumnsList: 100, + PivotClause_option2: 101, + PivotClause2: 102, + AsList: 103, + AsLiteral: 104, + AsPart: 105, + RemoveClause: 106, + REMOVE: 107, + RemoveClause_option0: 108, + RemoveColumnsList: 109, + RemoveColumn: 110, + Column: 111, + LIKE: 112, + StringValue: 113, + ArrowDot: 114, + ARROW: 115, + DOT: 116, + SearchSelector: 117, + ORDER: 118, + BY: 119, + OrderExpressionsList: 120, + SearchSelector_option0: 121, + DOTDOT: 122, + CARET: 123, + EQ: 124, + SearchSelector_repetition_plus0: 125, + SearchSelector_repetition_plus1: 126, + SearchSelector_option1: 127, + WHERE: 128, + OF: 129, + CLASS: 130, + NUMBER: 131, + STRING: 132, + SLASH: 133, + VERTEX: 134, + EDGE: 135, + EXCLAMATION: 136, + SHARP: 137, + MODULO: 138, + GT: 139, + LT: 140, + GTGT: 141, + LTLT: 142, + DOLLAR: 143, + Json: 144, + AT: 145, + SET: 146, + SetColumnsList: 147, + TO: 148, + VALUE: 149, + ROW: 150, + ExprList: 151, + COLON: 152, + PlusStar: 153, + NOT: 154, + SearchSelector_repetition2: 155, + IF: 156, + SearchSelector_repetition3: 157, + Aggregator: 158, + SearchSelector_repetition4: 159, + SearchSelector_group0: 160, + SearchSelector_repetition5: 161, + UNION: 162, + SearchSelectorList: 163, + ALL: 164, + SearchSelector_repetition6: 165, + ANY: 166, + SearchSelector_repetition7: 167, + INTERSECT: 168, + EXCEPT: 169, + AND: 170, + OR: 171, + PATH: 172, + RETURN: 173, + ResultColumns: 174, + REPEAT: 175, + SearchSelector_repetition8: 176, + SearchSelectorList_repetition0: 177, + SearchSelectorList_repetition1: 178, + PLUS: 179, + STAR: 180, + QUESTION: 181, + SearchFrom: 182, + FROM: 183, + SelectModifier: 184, + DISTINCT: 185, + TopClause: 186, + UNIQUE: 187, + SelectClause_option0: 188, + SELECT: 189, + COLUMN: 190, + MATRIX: 191, + TEXTSTRING: 192, + INDEX: 193, + RECORDSET: 194, + TOP: 195, + NumValue: 196, + TopClause_option0: 197, + INTO: 198, + Table: 199, + FuncValue: 200, + ParamValue: 201, + VarValue: 202, + FromTablesList: 203, + JoinTablesList: 204, + ApplyClause: 205, + CROSS: 206, + APPLY: 207, + OUTER: 208, + FromTable: 209, + FromTable_option0: 210, + FromTable_option1: 211, + INDEXED: 212, + INSERTED: 213, + FromString: 214, + JoinTable: 215, + JoinMode: 216, + JoinTableAs: 217, + OnClause: 218, + JoinTableAs_option0: 219, + JoinTableAs_option1: 220, + JoinModeMode: 221, + NATURAL: 222, + JOIN: 223, + INNER: 224, + LEFT: 225, + RIGHT: 226, + FULL: 227, + SEMI: 228, + ANTI: 229, + ON: 230, + USING: 231, + GROUP: 232, + GroupExpressionsList: 233, + HavingClause: 234, + GroupExpression: 235, + GROUPING: 236, + ROLLUP: 237, + CUBE: 238, + HAVING: 239, + CORRESPONDING: 240, + OrderExpression: 241, + NullsOrder: 242, + NULLS: 243, + FIRST: 244, + LAST: 245, + DIRECTION: 246, + COLLATE: 247, + NOCASE: 248, + LIMIT: 249, + OffsetClause: 250, + OFFSET: 251, + LimitClause_option0: 252, + FETCH: 253, + LimitClause_option1: 254, + LimitClause_option2: 255, + LimitClause_option3: 256, + ResultColumn: 257, + Star: 258, + AggrValue: 259, + Op: 260, + LogicValue: 261, + NullValue: 262, + ExistsValue: 263, + CaseValue: 264, + CastClause: 265, + ArrayValue: 266, + NewClause: 267, + Expression_group0: 268, + CURRENT_TIMESTAMP: 269, + CURRENT_DATE: 270, + JAVASCRIPT: 271, + CREATE: 272, + FUNCTION: 273, + AGGREGATE: 274, + NEW: 275, + CAST: 276, + ColumnType: 277, + CONVERT: 278, + PrimitiveValue: 279, + OverClause: 280, + OVER: 281, + OverPartitionClause: 282, + OverOrderByClause: 283, + PARTITION: 284, + SUM: 285, + TOTAL: 286, + COUNT: 287, + MIN: 288, + MAX: 289, + AVG: 290, + AGGR: 291, + ARRAY: 292, + FuncValue_option0: 293, + REPLACE: 294, + DATEADD: 295, + DATEDIFF: 296, + TIMESTAMPDIFF: 297, + INTERVAL: 298, + TRUE: 299, + FALSE: 300, + NSTRING: 301, + NULL: 302, + EXISTS: 303, + ARRAYLBRA: 304, + RBRA: 305, + ParamValue_group0: 306, + BRAQUESTION: 307, + CASE: 308, + WhensList: 309, + ElseClause: 310, + END: 311, + When: 312, + WHEN: 313, + THEN: 314, + ELSE: 315, + REGEXP: 316, + TILDA: 317, + GLOB: 318, + ESCAPE: 319, + NOT_LIKE: 320, + BARBAR: 321, + MINUS: 322, + AMPERSAND: 323, + BAR: 324, + GE: 325, + LE: 326, + EQEQ: 327, + EQEQEQ: 328, + NE: 329, + NEEQEQ: 330, + NEEQEQEQ: 331, + CondOp: 332, + AllSome: 333, + ColFunc: 334, + BETWEEN: 335, + NOT_BETWEEN: 336, + IS: 337, + DOUBLECOLON: 338, + SOME: 339, + UPDATE: 340, + SetColumn: 341, + SetColumn_group0: 342, + DELETE: 343, + INSERT: 344, + Into: 345, + Values: 346, + ValuesListsList: 347, + DEFAULT: 348, + VALUES: 349, + ValuesList: 350, + Value: 351, + DateValue: 352, + TemporaryClause: 353, + TableClass: 354, + IfNotExists: 355, + CreateTableDefClause: 356, + CreateTableOptionsClause: 357, + TABLE: 358, + CreateTableOptions: 359, + CreateTableOption: 360, + IDENTITY: 361, + TEMP: 362, + ColumnDefsList: 363, + ConstraintsList: 364, + Constraint: 365, + ConstraintName: 366, + PrimaryKey: 367, + ForeignKey: 368, + UniqueKey: 369, + IndexKey: 370, + Check: 371, + CONSTRAINT: 372, + CHECK: 373, + PRIMARY: 374, + KEY: 375, + PrimaryKey_option0: 376, + ColsList: 377, + FOREIGN: 378, + REFERENCES: 379, + ForeignKey_option0: 380, + OnForeignKeyClause: 381, + ParColsList: 382, + OnDeleteClause: 383, + OnUpdateClause: 384, + NO: 385, + ACTION: 386, + UniqueKey_option0: 387, + UniqueKey_option1: 388, + ColumnDef: 389, + ColumnConstraintsClause: 390, + ColumnConstraints: 391, + SingularColumnType: 392, + NumberMax: 393, + ENUM: 394, + MAXNUM: 395, + ColumnConstraintsList: 396, + ColumnConstraint: 397, + ParLiteral: 398, + ColumnConstraint_option0: 399, + ColumnConstraint_option1: 400, + DROP: 401, + DropTable_group0: 402, + IfExists: 403, + TablesList: 404, + ALTER: 405, + RENAME: 406, + ADD: 407, + MODIFY: 408, + ATTACH: 409, + DATABASE: 410, + DETACH: 411, + AsClause: 412, + USE: 413, + SHOW: 414, + VIEW: 415, + CreateView_option0: 416, + CreateView_option1: 417, + SubqueryRestriction: 418, + READ: 419, + ONLY: 420, + OPTION: 421, + SOURCE: 422, + ASSERT: 423, + JsonObject: 424, + ATLBRA: 425, + JsonArray: 426, + JsonValue: 427, + JsonPrimitiveValue: 428, + LCUR: 429, + JsonPropertiesList: 430, + RCUR: 431, + JsonElementsList: 432, + JsonProperty: 433, + OnOff: 434, + SetPropsList: 435, + AtDollar: 436, + SetProp: 437, + OFF: 438, + COMMIT: 439, + TRANSACTION: 440, + ROLLBACK: 441, + BEGIN: 442, + ElseStatement: 443, + WHILE: 444, + CONTINUE: 445, + BREAK: 446, + PRINT: 447, + REQUIRE: 448, + StringValuesList: 449, + PluginsList: 450, + Plugin: 451, + ECHO: 452, + DECLARE: 453, + DeclaresList: 454, + DeclareItem: 455, + TRUNCATE: 456, + MERGE: 457, + MergeInto: 458, + MergeUsing: 459, + MergeOn: 460, + MergeMatchedList: 461, + OutputClause: 462, + MergeMatched: 463, + MergeNotMatched: 464, + MATCHED: 465, + MergeMatchedAction: 466, + MergeNotMatchedAction: 467, + TARGET: 468, + OUTPUT: 469, + CreateVertex_option0: 470, + CreateVertex_option1: 471, + CreateVertex_option2: 472, + CreateVertexSet: 473, + SharpValue: 474, + CONTENT: 475, + CreateEdge_option0: 476, + GRAPH: 477, + GraphList: 478, + GraphVertexEdge: 479, + GraphElement: 480, + GraphVertexEdge_option0: 481, + GraphVertexEdge_option1: 482, + GraphElementVar: 483, + GraphVertexEdge_option2: 484, + GraphVertexEdge_option3: 485, + GraphVertexEdge_option4: 486, + GraphVar: 487, + GraphAsClause: 488, + GraphAtClause: 489, + GraphElement2: 490, + GraphElement2_option0: 491, + GraphElement2_option1: 492, + GraphElement2_option2: 493, + GraphElement2_option3: 494, + GraphElement_option0: 495, + GraphElement_option1: 496, + GraphElement_option2: 497, + SharpLiteral: 498, + GraphElement_option3: 499, + GraphElement_option4: 500, + GraphElement_option5: 501, + ColonLiteral: 502, + DeleteVertex: 503, + DeleteVertex_option0: 504, + DeleteEdge: 505, + DeleteEdge_option0: 506, + DeleteEdge_option1: 507, + DeleteEdge_option2: 508, + Term: 509, + COLONDASH: 510, + TermsList: 511, + QUESTIONDASH: 512, + CALL: 513, + TRIGGER: 514, + BeforeAfter: 515, + InsertDeleteUpdate: 516, + CreateTrigger_option0: 517, + CreateTrigger_option1: 518, + BEFORE: 519, + AFTER: 520, + INSTEAD: 521, + REINDEX: 522, + A: 523, + ABSENT: 524, + ABSOLUTE: 525, + ACCORDING: 526, + ADA: 527, + ADMIN: 528, + ALWAYS: 529, + ASC: 530, + ASSERTION: 531, + ASSIGNMENT: 532, + ATTRIBUTE: 533, + ATTRIBUTES: 534, + BASE64: 535, + BERNOULLI: 536, + BLOCKED: 537, + BOM: 538, + BREADTH: 539, + C: 540, + CASCADE: 541, + CATALOG: 542, + CATALOG_NAME: 543, + CHAIN: 544, + CHARACTERISTICS: 545, + CHARACTERS: 546, + CHARACTER_SET_CATALOG: 547, + CHARACTER_SET_NAME: 548, + CHARACTER_SET_SCHEMA: 549, + CLASS_ORIGIN: 550, + COBOL: 551, + COLLATION: 552, + COLLATION_CATALOG: 553, + COLLATION_NAME: 554, + COLLATION_SCHEMA: 555, + COLUMNS: 556, + COLUMN_NAME: 557, + COMMAND_FUNCTION: 558, + COMMAND_FUNCTION_CODE: 559, + COMMITTED: 560, + CONDITION_NUMBER: 561, + CONNECTION: 562, + CONNECTION_NAME: 563, + CONSTRAINTS: 564, + CONSTRAINT_CATALOG: 565, + CONSTRAINT_NAME: 566, + CONSTRAINT_SCHEMA: 567, + CONSTRUCTOR: 568, + CONTROL: 569, + CURSOR_NAME: 570, + DATA: 571, + DATETIME_INTERVAL_CODE: 572, + DATETIME_INTERVAL_PRECISION: 573, + DB: 574, + DEFAULTS: 575, + DEFERRABLE: 576, + DEFERRED: 577, + DEFINED: 578, + DEFINER: 579, + DEGREE: 580, + DEPTH: 581, + DERIVED: 582, + DESC: 583, + DESCRIPTOR: 584, + DIAGNOSTICS: 585, + DISPATCH: 586, + DOCUMENT: 587, + DOMAIN: 588, + DYNAMIC_FUNCTION: 589, + DYNAMIC_FUNCTION_CODE: 590, + EMPTY: 591, + ENCODING: 592, + ENFORCED: 593, + EXCLUDE: 594, + EXCLUDING: 595, + EXPRESSION: 596, + FILE: 597, + FINAL: 598, + FLAG: 599, + FOLLOWING: 600, + FORTRAN: 601, + FOUND: 602, + FS: 603, + G: 604, + GENERAL: 605, + GENERATED: 606, + GO: 607, + GOTO: 608, + GRANTED: 609, + HEX: 610, + HIERARCHY: 611, + ID: 612, + IGNORE: 613, + IMMEDIATE: 614, + IMMEDIATELY: 615, + IMPLEMENTATION: 616, + INCLUDING: 617, + INCREMENT: 618, + INDENT: 619, + INITIALLY: 620, + INPUT: 621, + INSTANCE: 622, + INSTANTIABLE: 623, + INTEGRITY: 624, + INVOKER: 625, + ISOLATION: 626, + K: 627, + KEY_MEMBER: 628, + KEY_TYPE: 629, + LENGTH: 630, + LEVEL: 631, + LIBRARY: 632, + LINK: 633, + LOCATION: 634, + LOCATOR: 635, + M: 636, + MAP: 637, + MAPPING: 638, + MAXVALUE: 639, + MESSAGE_LENGTH: 640, + MESSAGE_OCTET_LENGTH: 641, + MESSAGE_TEXT: 642, + MINVALUE: 643, + MORE: 644, + MUMPS: 645, + NAME: 646, + NAMES: 647, + NAMESPACE: 648, + NESTING: 649, + NEXT: 650, + NFC: 651, + NFD: 652, + NFKC: 653, + NFKD: 654, + NIL: 655, + NORMALIZED: 656, + NULLABLE: 657, + OBJECT: 658, + OCTETS: 659, + OPTIONS: 660, + ORDERING: 661, + ORDINALITY: 662, + OTHERS: 663, + OVERRIDING: 664, + P: 665, + PAD: 666, + PARAMETER_MODE: 667, + PARAMETER_NAME: 668, + PARAMETER_ORDINAL_POSITION: 669, + PARAMETER_SPECIFIC_CATALOG: 670, + PARAMETER_SPECIFIC_NAME: 671, + PARAMETER_SPECIFIC_SCHEMA: 672, + PARTIAL: 673, + PASCAL: 674, + PASSING: 675, + PASSTHROUGH: 676, + PERMISSION: 677, + PLACING: 678, + PLI: 679, + PRECEDING: 680, + PRESERVE: 681, + PRIOR: 682, + PRIVILEGES: 683, + PUBLIC: 684, + RECOVERY: 685, + RELATIVE: 686, + REPEATABLE: 687, + REQUIRING: 688, + RESPECT: 689, + RESTART: 690, + RESTORE: 691, + RESTRICT: 692, + RETURNED_CARDINALITY: 693, + RETURNED_LENGTH: 694, + RETURNED_OCTET_LENGTH: 695, + RETURNED_SQLSTATE: 696, + RETURNING: 697, + ROLE: 698, + ROUTINE: 699, + ROUTINE_CATALOG: 700, + ROUTINE_NAME: 701, + ROUTINE_SCHEMA: 702, + ROW_COUNT: 703, + SCALE: 704, + SCHEMA: 705, + SCHEMA_NAME: 706, + SCOPE_CATALOG: 707, + SCOPE_NAME: 708, + SCOPE_SCHEMA: 709, + SECTION: 710, + SECURITY: 711, + SELECTIVE: 712, + SELF: 713, + SEQUENCE: 714, + SERIALIZABLE: 715, + SERVER: 716, + SERVER_NAME: 717, + SESSION: 718, + SETS: 719, + SIMPLE: 720, + SIZE: 721, + SPACE: 722, + SPECIFIC_NAME: 723, + STANDALONE: 724, + STATE: 725, + STATEMENT: 726, + STRIP: 727, + STRUCTURE: 728, + STYLE: 729, + SUBCLASS_ORIGIN: 730, + T: 731, + TABLE_NAME: 732, + TEMPORARY: 733, + TIES: 734, + TOKEN: 735, + TOP_LEVEL_COUNT: 736, + TRANSACTIONS_COMMITTED: 737, + TRANSACTIONS_ROLLED_BACK: 738, + TRANSACTION_ACTIVE: 739, + TRANSFORM: 740, + TRANSFORMS: 741, + TRIGGER_CATALOG: 742, + TRIGGER_NAME: 743, + TRIGGER_SCHEMA: 744, + TYPE: 745, + UNBOUNDED: 746, + UNCOMMITTED: 747, + UNDER: 748, + UNLINK: 749, + UNNAMED: 750, + UNTYPED: 751, + URI: 752, + USAGE: 753, + USER_DEFINED_TYPE_CATALOG: 754, + USER_DEFINED_TYPE_CODE: 755, + USER_DEFINED_TYPE_NAME: 756, + USER_DEFINED_TYPE_SCHEMA: 757, + VALID: 758, + VERSION: 759, + WHITESPACE: 760, + WORK: 761, + WRAPPER: 762, + WRITE: 763, + XMLDECLARATION: 764, + XMLSCHEMA: 765, + YES: 766, + ZONE: 767, + SEMICOLON: 768, + PERCENT: 769, + ROWS: 770, + FuncValue_option0_group0: 771, + $accept: 0, + $end: 1, + }, + terminals_: { + 2: 'error', + 4: 'LITERAL', + 5: 'BRALITERAL', + 10: 'EOF', + 14: 'EXPLAIN', + 15: 'QUERY', + 16: 'PLAN', + 53: 'EndTransaction', + 72: 'WITH', + 74: 'COMMA', + 76: 'AS', + 77: 'LPAR', + 78: 'RPAR', + 89: 'SEARCH', + 93: 'PIVOT', + 95: 'FOR', + 98: 'UNPIVOT', + 99: 'IN', + 107: 'REMOVE', + 112: 'LIKE', + 115: 'ARROW', + 116: 'DOT', + 118: 'ORDER', + 119: 'BY', + 122: 'DOTDOT', + 123: 'CARET', + 124: 'EQ', + 128: 'WHERE', + 129: 'OF', + 130: 'CLASS', + 131: 'NUMBER', + 132: 'STRING', + 133: 'SLASH', + 134: 'VERTEX', + 135: 'EDGE', + 136: 'EXCLAMATION', + 137: 'SHARP', + 138: 'MODULO', + 139: 'GT', + 140: 'LT', + 141: 'GTGT', + 142: 'LTLT', + 143: 'DOLLAR', + 145: 'AT', + 146: 'SET', + 148: 'TO', + 149: 'VALUE', + 150: 'ROW', + 152: 'COLON', + 154: 'NOT', + 156: 'IF', + 162: 'UNION', + 164: 'ALL', + 166: 'ANY', + 168: 'INTERSECT', + 169: 'EXCEPT', + 170: 'AND', + 171: 'OR', + 172: 'PATH', + 173: 'RETURN', + 175: 'REPEAT', + 179: 'PLUS', + 180: 'STAR', + 181: 'QUESTION', + 183: 'FROM', + 185: 'DISTINCT', + 187: 'UNIQUE', + 189: 'SELECT', + 190: 'COLUMN', + 191: 'MATRIX', + 192: 'TEXTSTRING', + 193: 'INDEX', + 194: 'RECORDSET', + 195: 'TOP', + 198: 'INTO', + 206: 'CROSS', + 207: 'APPLY', + 208: 'OUTER', + 212: 'INDEXED', + 213: 'INSERTED', + 222: 'NATURAL', + 223: 'JOIN', + 224: 'INNER', + 225: 'LEFT', + 226: 'RIGHT', + 227: 'FULL', + 228: 'SEMI', + 229: 'ANTI', + 230: 'ON', + 231: 'USING', + 232: 'GROUP', + 236: 'GROUPING', + 237: 'ROLLUP', + 238: 'CUBE', + 239: 'HAVING', + 240: 'CORRESPONDING', + 243: 'NULLS', + 244: 'FIRST', + 245: 'LAST', + 246: 'DIRECTION', + 247: 'COLLATE', + 248: 'NOCASE', + 249: 'LIMIT', + 251: 'OFFSET', + 253: 'FETCH', + 269: 'CURRENT_TIMESTAMP', + 270: 'CURRENT_DATE', + 271: 'JAVASCRIPT', + 272: 'CREATE', + 273: 'FUNCTION', + 274: 'AGGREGATE', + 275: 'NEW', + 276: 'CAST', + 278: 'CONVERT', + 281: 'OVER', + 284: 'PARTITION', + 285: 'SUM', + 286: 'TOTAL', + 287: 'COUNT', + 288: 'MIN', + 289: 'MAX', + 290: 'AVG', + 291: 'AGGR', + 292: 'ARRAY', + 294: 'REPLACE', + 295: 'DATEADD', + 296: 'DATEDIFF', + 297: 'TIMESTAMPDIFF', + 298: 'INTERVAL', + 299: 'TRUE', + 300: 'FALSE', + 301: 'NSTRING', + 302: 'NULL', + 303: 'EXISTS', + 304: 'ARRAYLBRA', + 305: 'RBRA', + 307: 'BRAQUESTION', + 308: 'CASE', + 311: 'END', + 313: 'WHEN', + 314: 'THEN', + 315: 'ELSE', + 316: 'REGEXP', + 317: 'TILDA', + 318: 'GLOB', + 319: 'ESCAPE', + 320: 'NOT_LIKE', + 321: 'BARBAR', + 322: 'MINUS', + 323: 'AMPERSAND', + 324: 'BAR', + 325: 'GE', + 326: 'LE', + 327: 'EQEQ', + 328: 'EQEQEQ', + 329: 'NE', + 330: 'NEEQEQ', + 331: 'NEEQEQEQ', + 335: 'BETWEEN', + 336: 'NOT_BETWEEN', + 337: 'IS', + 338: 'DOUBLECOLON', + 339: 'SOME', + 340: 'UPDATE', + 343: 'DELETE', + 344: 'INSERT', + 348: 'DEFAULT', + 349: 'VALUES', + 352: 'DateValue', + 358: 'TABLE', + 361: 'IDENTITY', + 362: 'TEMP', + 372: 'CONSTRAINT', + 373: 'CHECK', + 374: 'PRIMARY', + 375: 'KEY', + 378: 'FOREIGN', + 379: 'REFERENCES', + 385: 'NO', + 386: 'ACTION', + 391: 'ColumnConstraints', + 394: 'ENUM', + 395: 'MAXNUM', + 401: 'DROP', + 405: 'ALTER', + 406: 'RENAME', + 407: 'ADD', + 408: 'MODIFY', + 409: 'ATTACH', + 410: 'DATABASE', + 411: 'DETACH', + 413: 'USE', + 414: 'SHOW', + 415: 'VIEW', + 419: 'READ', + 420: 'ONLY', + 421: 'OPTION', + 422: 'SOURCE', + 423: 'ASSERT', + 425: 'ATLBRA', + 429: 'LCUR', + 431: 'RCUR', + 438: 'OFF', + 439: 'COMMIT', + 440: 'TRANSACTION', + 441: 'ROLLBACK', + 442: 'BEGIN', + 444: 'WHILE', + 445: 'CONTINUE', + 446: 'BREAK', + 447: 'PRINT', + 448: 'REQUIRE', + 452: 'ECHO', + 453: 'DECLARE', + 456: 'TRUNCATE', + 457: 'MERGE', + 465: 'MATCHED', + 468: 'TARGET', + 469: 'OUTPUT', + 475: 'CONTENT', + 477: 'GRAPH', + 510: 'COLONDASH', + 512: 'QUESTIONDASH', + 513: 'CALL', + 514: 'TRIGGER', + 519: 'BEFORE', + 520: 'AFTER', + 521: 'INSTEAD', + 522: 'REINDEX', + 523: 'A', + 524: 'ABSENT', + 525: 'ABSOLUTE', + 526: 'ACCORDING', + 527: 'ADA', + 528: 'ADMIN', + 529: 'ALWAYS', + 530: 'ASC', + 531: 'ASSERTION', + 532: 'ASSIGNMENT', + 533: 'ATTRIBUTE', + 534: 'ATTRIBUTES', + 535: 'BASE64', + 536: 'BERNOULLI', + 537: 'BLOCKED', + 538: 'BOM', + 539: 'BREADTH', + 540: 'C', + 541: 'CASCADE', + 542: 'CATALOG', + 543: 'CATALOG_NAME', + 544: 'CHAIN', + 545: 'CHARACTERISTICS', + 546: 'CHARACTERS', + 547: 'CHARACTER_SET_CATALOG', + 548: 'CHARACTER_SET_NAME', + 549: 'CHARACTER_SET_SCHEMA', + 550: 'CLASS_ORIGIN', + 551: 'COBOL', + 552: 'COLLATION', + 553: 'COLLATION_CATALOG', + 554: 'COLLATION_NAME', + 555: 'COLLATION_SCHEMA', + 556: 'COLUMNS', + 557: 'COLUMN_NAME', + 558: 'COMMAND_FUNCTION', + 559: 'COMMAND_FUNCTION_CODE', + 560: 'COMMITTED', + 561: 'CONDITION_NUMBER', + 562: 'CONNECTION', + 563: 'CONNECTION_NAME', + 564: 'CONSTRAINTS', + 565: 'CONSTRAINT_CATALOG', + 566: 'CONSTRAINT_NAME', + 567: 'CONSTRAINT_SCHEMA', + 568: 'CONSTRUCTOR', + 569: 'CONTROL', + 570: 'CURSOR_NAME', + 571: 'DATA', + 572: 'DATETIME_INTERVAL_CODE', + 573: 'DATETIME_INTERVAL_PRECISION', + 574: 'DB', + 575: 'DEFAULTS', + 576: 'DEFERRABLE', + 577: 'DEFERRED', + 578: 'DEFINED', + 579: 'DEFINER', + 580: 'DEGREE', + 581: 'DEPTH', + 582: 'DERIVED', + 583: 'DESC', + 584: 'DESCRIPTOR', + 585: 'DIAGNOSTICS', + 586: 'DISPATCH', + 587: 'DOCUMENT', + 588: 'DOMAIN', + 589: 'DYNAMIC_FUNCTION', + 590: 'DYNAMIC_FUNCTION_CODE', + 591: 'EMPTY', + 592: 'ENCODING', + 593: 'ENFORCED', + 594: 'EXCLUDE', + 595: 'EXCLUDING', + 596: 'EXPRESSION', + 597: 'FILE', + 598: 'FINAL', + 599: 'FLAG', + 600: 'FOLLOWING', + 601: 'FORTRAN', + 602: 'FOUND', + 603: 'FS', + 604: 'G', + 605: 'GENERAL', + 606: 'GENERATED', + 607: 'GO', + 608: 'GOTO', + 609: 'GRANTED', + 610: 'HEX', + 611: 'HIERARCHY', + 612: 'ID', + 613: 'IGNORE', + 614: 'IMMEDIATE', + 615: 'IMMEDIATELY', + 616: 'IMPLEMENTATION', + 617: 'INCLUDING', + 618: 'INCREMENT', + 619: 'INDENT', + 620: 'INITIALLY', + 621: 'INPUT', + 622: 'INSTANCE', + 623: 'INSTANTIABLE', + 624: 'INTEGRITY', + 625: 'INVOKER', + 626: 'ISOLATION', + 627: 'K', + 628: 'KEY_MEMBER', + 629: 'KEY_TYPE', + 630: 'LENGTH', + 631: 'LEVEL', + 632: 'LIBRARY', + 633: 'LINK', + 634: 'LOCATION', + 635: 'LOCATOR', + 636: 'M', + 637: 'MAP', + 638: 'MAPPING', + 639: 'MAXVALUE', + 640: 'MESSAGE_LENGTH', + 641: 'MESSAGE_OCTET_LENGTH', + 642: 'MESSAGE_TEXT', + 643: 'MINVALUE', + 644: 'MORE', + 645: 'MUMPS', + 646: 'NAME', + 647: 'NAMES', + 648: 'NAMESPACE', + 649: 'NESTING', + 650: 'NEXT', + 651: 'NFC', + 652: 'NFD', + 653: 'NFKC', + 654: 'NFKD', + 655: 'NIL', + 656: 'NORMALIZED', + 657: 'NULLABLE', + 658: 'OBJECT', + 659: 'OCTETS', + 660: 'OPTIONS', + 661: 'ORDERING', + 662: 'ORDINALITY', + 663: 'OTHERS', + 664: 'OVERRIDING', + 665: 'P', + 666: 'PAD', + 667: 'PARAMETER_MODE', + 668: 'PARAMETER_NAME', + 669: 'PARAMETER_ORDINAL_POSITION', + 670: 'PARAMETER_SPECIFIC_CATALOG', + 671: 'PARAMETER_SPECIFIC_NAME', + 672: 'PARAMETER_SPECIFIC_SCHEMA', + 673: 'PARTIAL', + 674: 'PASCAL', + 675: 'PASSING', + 676: 'PASSTHROUGH', + 677: 'PERMISSION', + 678: 'PLACING', + 679: 'PLI', + 680: 'PRECEDING', + 681: 'PRESERVE', + 682: 'PRIOR', + 683: 'PRIVILEGES', + 684: 'PUBLIC', + 685: 'RECOVERY', + 686: 'RELATIVE', + 687: 'REPEATABLE', + 688: 'REQUIRING', + 689: 'RESPECT', + 690: 'RESTART', + 691: 'RESTORE', + 692: 'RESTRICT', + 693: 'RETURNED_CARDINALITY', + 694: 'RETURNED_LENGTH', + 695: 'RETURNED_OCTET_LENGTH', + 696: 'RETURNED_SQLSTATE', + 697: 'RETURNING', + 698: 'ROLE', + 699: 'ROUTINE', + 700: 'ROUTINE_CATALOG', + 701: 'ROUTINE_NAME', + 702: 'ROUTINE_SCHEMA', + 703: 'ROW_COUNT', + 704: 'SCALE', + 705: 'SCHEMA', + 706: 'SCHEMA_NAME', + 707: 'SCOPE_CATALOG', + 708: 'SCOPE_NAME', + 709: 'SCOPE_SCHEMA', + 710: 'SECTION', + 711: 'SECURITY', + 712: 'SELECTIVE', + 713: 'SELF', + 714: 'SEQUENCE', + 715: 'SERIALIZABLE', + 716: 'SERVER', + 717: 'SERVER_NAME', + 718: 'SESSION', + 719: 'SETS', + 720: 'SIMPLE', + 721: 'SIZE', + 722: 'SPACE', + 723: 'SPECIFIC_NAME', + 724: 'STANDALONE', + 725: 'STATE', + 726: 'STATEMENT', + 727: 'STRIP', + 728: 'STRUCTURE', + 729: 'STYLE', + 730: 'SUBCLASS_ORIGIN', + 731: 'T', + 732: 'TABLE_NAME', + 733: 'TEMPORARY', + 734: 'TIES', + 735: 'TOKEN', + 736: 'TOP_LEVEL_COUNT', + 737: 'TRANSACTIONS_COMMITTED', + 738: 'TRANSACTIONS_ROLLED_BACK', + 739: 'TRANSACTION_ACTIVE', + 740: 'TRANSFORM', + 741: 'TRANSFORMS', + 742: 'TRIGGER_CATALOG', + 743: 'TRIGGER_NAME', + 744: 'TRIGGER_SCHEMA', + 745: 'TYPE', + 746: 'UNBOUNDED', + 747: 'UNCOMMITTED', + 748: 'UNDER', + 749: 'UNLINK', + 750: 'UNNAMED', + 751: 'UNTYPED', + 752: 'URI', + 753: 'USAGE', + 754: 'USER_DEFINED_TYPE_CATALOG', + 755: 'USER_DEFINED_TYPE_CODE', + 756: 'USER_DEFINED_TYPE_NAME', + 757: 'USER_DEFINED_TYPE_SCHEMA', + 758: 'VALID', + 759: 'VERSION', + 760: 'WHITESPACE', + 761: 'WORK', + 762: 'WRAPPER', + 763: 'WRITE', + 764: 'XMLDECLARATION', + 765: 'XMLSCHEMA', + 766: 'YES', + 767: 'ZONE', + 768: 'SEMICOLON', + 769: 'PERCENT', + 770: 'ROWS', + }, + productions_: [ + 0, + [3, 1], + [3, 1], + [3, 2], + [7, 1], + [7, 2], + [8, 2], + [9, 3], + [9, 1], + [9, 1], + [13, 2], + [13, 4], + [12, 1], + [17, 0], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [17, 1], + [47, 3], + [73, 3], + [73, 1], + [75, 5], + [40, 10], + [40, 4], + [92, 8], + [92, 11], + [102, 4], + [104, 2], + [104, 1], + [103, 3], + [103, 1], + [105, 1], + [105, 3], + [106, 3], + [109, 3], + [109, 1], + [110, 1], + [110, 2], + [114, 1], + [114, 1], + [117, 1], + [117, 5], + [117, 5], + [117, 1], + [117, 2], + [117, 1], + [117, 2], + [117, 2], + [117, 3], + [117, 4], + [117, 4], + [117, 4], + [117, 4], + [117, 4], + [117, 1], + [117, 1], + [117, 1], + [117, 1], + [117, 1], + [117, 1], + [117, 2], + [117, 2], + [117, 2], + [117, 1], + [117, 1], + [117, 1], + [117, 1], + [117, 1], + [117, 1], + [117, 2], + [117, 3], + [117, 4], + [117, 3], + [117, 1], + [117, 4], + [117, 2], + [117, 2], + [117, 4], + [117, 4], + [117, 4], + [117, 4], + [117, 4], + [117, 5], + [117, 4], + [117, 4], + [117, 4], + [117, 4], + [117, 4], + [117, 4], + [117, 4], + [117, 4], + [117, 6], + [163, 3], + [163, 1], + [153, 1], + [153, 1], + [153, 1], + [182, 2], + [79, 4], + [79, 4], + [79, 4], + [79, 3], + [184, 1], + [184, 2], + [184, 2], + [184, 2], + [184, 2], + [184, 2], + [184, 2], + [184, 2], + [186, 3], + [186, 4], + [186, 0], + [81, 0], + [81, 2], + [81, 2], + [81, 2], + [81, 2], + [81, 2], + [82, 2], + [82, 3], + [82, 5], + [82, 0], + [205, 6], + [205, 7], + [205, 6], + [205, 7], + [203, 1], + [203, 3], + [209, 4], + [209, 5], + [209, 3], + [209, 3], + [209, 2], + [209, 3], + [209, 1], + [209, 3], + [209, 2], + [209, 3], + [209, 1], + [209, 1], + [209, 2], + [209, 3], + [209, 1], + [209, 1], + [209, 2], + [209, 3], + [209, 1], + [209, 2], + [209, 3], + [214, 1], + [199, 3], + [199, 1], + [204, 2], + [204, 2], + [204, 1], + [204, 1], + [215, 3], + [217, 1], + [217, 2], + [217, 3], + [217, 3], + [217, 2], + [217, 3], + [217, 4], + [217, 5], + [217, 1], + [217, 2], + [217, 3], + [217, 1], + [217, 2], + [217, 3], + [216, 1], + [216, 2], + [221, 1], + [221, 2], + [221, 2], + [221, 3], + [221, 2], + [221, 3], + [221, 2], + [221, 3], + [221, 2], + [221, 2], + [221, 2], + [218, 2], + [218, 2], + [218, 0], + [84, 0], + [84, 2], + [85, 0], + [85, 4], + [233, 1], + [233, 3], + [235, 5], + [235, 4], + [235, 4], + [235, 1], + [234, 0], + [234, 2], + [88, 0], + [88, 2], + [88, 3], + [88, 2], + [88, 2], + [88, 3], + [88, 4], + [88, 3], + [88, 3], + [86, 0], + [86, 3], + [120, 1], + [120, 3], + [242, 2], + [242, 2], + [241, 1], + [241, 2], + [241, 3], + [241, 3], + [241, 4], + [87, 0], + [87, 3], + [87, 8], + [250, 0], + [250, 2], + [174, 3], + [174, 1], + [257, 3], + [257, 2], + [257, 3], + [257, 2], + [257, 3], + [257, 2], + [257, 1], + [258, 5], + [258, 3], + [258, 1], + [111, 5], + [111, 3], + [111, 3], + [111, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 1], + [94, 3], + [94, 3], + [94, 3], + [94, 1], + [94, 1], + [94, 1], + [56, 1], + [70, 5], + [71, 5], + [267, 2], + [267, 2], + [265, 6], + [265, 8], + [265, 6], + [265, 8], + [279, 1], + [279, 1], + [279, 1], + [279, 1], + [279, 1], + [279, 1], + [279, 1], + [279, 1], + [259, 5], + [259, 6], + [259, 6], + [280, 0], + [280, 4], + [280, 4], + [280, 5], + [282, 3], + [283, 3], + [158, 1], + [158, 1], + [158, 1], + [158, 1], + [158, 1], + [158, 1], + [158, 1], + [158, 1], + [158, 1], + [158, 1], + [200, 5], + [200, 3], + [200, 4], + [200, 4], + [200, 3], + [200, 8], + [200, 8], + [200, 8], + [200, 8], + [200, 8], + [200, 3], + [151, 1], + [151, 3], + [196, 1], + [261, 1], + [261, 1], + [113, 1], + [113, 1], + [262, 1], + [202, 2], + [263, 4], + [266, 3], + [201, 2], + [201, 2], + [201, 1], + [201, 1], + [264, 5], + [264, 4], + [309, 2], + [309, 1], + [312, 4], + [310, 2], + [310, 0], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 5], + [260, 3], + [260, 5], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 5], + [260, 3], + [260, 3], + [260, 3], + [260, 5], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 6], + [260, 6], + [260, 3], + [260, 3], + [260, 2], + [260, 2], + [260, 2], + [260, 2], + [260, 2], + [260, 3], + [260, 5], + [260, 6], + [260, 5], + [260, 6], + [260, 4], + [260, 5], + [260, 3], + [260, 4], + [260, 3], + [260, 4], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [260, 3], + [334, 1], + [334, 1], + [334, 4], + [332, 1], + [332, 1], + [332, 1], + [332, 1], + [332, 1], + [332, 1], + [333, 1], + [333, 1], + [333, 1], + [55, 6], + [55, 4], + [147, 1], + [147, 3], + [341, 3], + [341, 4], + [29, 5], + [29, 3], + [36, 5], + [36, 4], + [36, 7], + [36, 6], + [36, 5], + [36, 4], + [36, 5], + [36, 8], + [36, 7], + [36, 4], + [36, 6], + [36, 7], + [346, 1], + [346, 1], + [345, 0], + [345, 1], + [347, 3], + [347, 1], + [347, 1], + [347, 5], + [347, 3], + [347, 3], + [350, 1], + [350, 3], + [351, 1], + [351, 1], + [351, 1], + [351, 1], + [351, 1], + [351, 1], + [100, 1], + [100, 3], + [24, 9], + [24, 5], + [354, 1], + [354, 1], + [357, 0], + [357, 1], + [359, 2], + [359, 1], + [360, 1], + [360, 3], + [360, 3], + [360, 3], + [353, 0], + [353, 1], + [355, 0], + [355, 3], + [356, 3], + [356, 1], + [356, 2], + [364, 1], + [364, 3], + [365, 2], + [365, 2], + [365, 2], + [365, 2], + [365, 2], + [366, 0], + [366, 2], + [371, 4], + [367, 6], + [368, 9], + [382, 3], + [381, 0], + [381, 2], + [383, 4], + [384, 4], + [369, 6], + [370, 5], + [370, 5], + [377, 1], + [377, 1], + [377, 3], + [377, 3], + [363, 1], + [363, 3], + [389, 3], + [389, 2], + [389, 1], + [392, 6], + [392, 4], + [392, 1], + [392, 4], + [277, 2], + [277, 1], + [393, 1], + [393, 1], + [390, 0], + [390, 1], + [396, 2], + [396, 1], + [398, 3], + [397, 2], + [397, 5], + [397, 3], + [397, 6], + [397, 1], + [397, 2], + [397, 4], + [397, 2], + [397, 1], + [397, 2], + [397, 1], + [397, 1], + [397, 3], + [397, 5], + [33, 4], + [404, 3], + [404, 1], + [403, 0], + [403, 2], + [18, 6], + [18, 6], + [18, 6], + [18, 8], + [18, 6], + [39, 5], + [19, 4], + [19, 7], + [19, 6], + [19, 9], + [30, 3], + [21, 4], + [21, 6], + [21, 9], + [21, 6], + [412, 0], + [412, 2], + [54, 3], + [54, 2], + [31, 4], + [31, 5], + [31, 5], + [22, 8], + [22, 9], + [32, 3], + [43, 2], + [43, 4], + [43, 3], + [43, 5], + [45, 2], + [45, 4], + [45, 4], + [45, 6], + [42, 4], + [42, 6], + [44, 4], + [44, 6], + [41, 4], + [41, 6], + [25, 11], + [25, 8], + [418, 3], + [418, 3], + [418, 5], + [34, 4], + [66, 2], + [57, 2], + [58, 2], + [58, 2], + [58, 4], + [144, 4], + [144, 2], + [144, 2], + [144, 2], + [144, 2], + [144, 1], + [144, 2], + [144, 2], + [427, 1], + [427, 1], + [428, 1], + [428, 1], + [428, 1], + [428, 1], + [428, 1], + [428, 1], + [428, 1], + [428, 3], + [424, 3], + [424, 4], + [424, 2], + [426, 2], + [426, 3], + [426, 1], + [430, 3], + [430, 1], + [433, 3], + [433, 3], + [433, 3], + [432, 3], + [432, 1], + [65, 4], + [65, 3], + [65, 4], + [65, 5], + [65, 5], + [65, 6], + [436, 1], + [436, 1], + [435, 3], + [435, 2], + [437, 1], + [437, 1], + [437, 3], + [434, 1], + [434, 1], + [51, 2], + [52, 2], + [50, 2], + [35, 4], + [35, 3], + [443, 2], + [59, 3], + [60, 1], + [61, 1], + [62, 3], + [63, 2], + [63, 2], + [64, 2], + [64, 2], + [451, 1], + [451, 1], + [69, 2], + [449, 3], + [449, 1], + [450, 3], + [450, 1], + [28, 2], + [454, 1], + [454, 3], + [455, 3], + [455, 4], + [455, 5], + [455, 6], + [46, 3], + [37, 6], + [458, 1], + [458, 2], + [459, 2], + [460, 2], + [461, 2], + [461, 2], + [461, 1], + [461, 1], + [463, 4], + [463, 6], + [466, 1], + [466, 3], + [464, 5], + [464, 7], + [464, 7], + [464, 9], + [464, 7], + [464, 9], + [467, 3], + [467, 6], + [467, 3], + [467, 6], + [462, 0], + [462, 2], + [462, 5], + [462, 4], + [462, 7], + [27, 6], + [474, 2], + [473, 0], + [473, 2], + [473, 2], + [473, 1], + [26, 8], + [23, 3], + [23, 4], + [478, 3], + [478, 1], + [479, 3], + [479, 7], + [479, 6], + [479, 3], + [479, 4], + [483, 1], + [483, 1], + [487, 2], + [488, 3], + [489, 2], + [490, 4], + [480, 4], + [480, 3], + [480, 2], + [480, 1], + [502, 2], + [498, 2], + [498, 2], + [503, 4], + [505, 6], + [67, 3], + [67, 2], + [511, 3], + [511, 1], + [509, 1], + [509, 4], + [68, 2], + [20, 2], + [48, 9], + [48, 8], + [48, 9], + [515, 0], + [515, 1], + [515, 1], + [515, 1], + [515, 2], + [516, 1], + [516, 1], + [516, 1], + [49, 3], + [38, 2], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [6, 1], + [11, 1], + [11, 1], + [80, 0], + [80, 1], + [83, 0], + [83, 1], + [90, 0], + [90, 2], + [91, 0], + [91, 1], + [96, 0], + [96, 1], + [97, 0], + [97, 1], + [101, 0], + [101, 1], + [108, 0], + [108, 1], + [121, 0], + [121, 1], + [125, 1], + [125, 2], + [126, 1], + [126, 2], + [127, 0], + [127, 1], + [155, 0], + [155, 2], + [157, 0], + [157, 2], + [159, 0], + [159, 2], + [160, 1], + [160, 1], + [161, 0], + [161, 2], + [165, 0], + [165, 2], + [167, 0], + [167, 2], + [176, 0], + [176, 2], + [177, 0], + [177, 2], + [178, 0], + [178, 2], + [188, 0], + [188, 1], + [197, 0], + [197, 1], + [210, 0], + [210, 1], + [211, 0], + [211, 1], + [219, 0], + [219, 1], + [220, 0], + [220, 1], + [252, 0], + [252, 1], + [254, 0], + [254, 1], + [255, 0], + [255, 1], + [256, 0], + [256, 1], + [268, 1], + [268, 1], + [771, 1], + [771, 1], + [293, 0], + [293, 1], + [306, 1], + [306, 1], + [342, 1], + [342, 1], + [376, 0], + [376, 1], + [380, 0], + [380, 1], + [387, 0], + [387, 1], + [388, 0], + [388, 1], + [399, 0], + [399, 1], + [400, 0], + [400, 1], + [402, 1], + [402, 1], + [416, 0], + [416, 1], + [417, 0], + [417, 1], + [470, 0], + [470, 1], + [471, 0], + [471, 1], + [472, 0], + [472, 1], + [476, 0], + [476, 1], + [481, 0], + [481, 1], + [482, 0], + [482, 1], + [484, 0], + [484, 1], + [485, 0], + [485, 1], + [486, 0], + [486, 1], + [491, 0], + [491, 1], + [492, 0], + [492, 1], + [493, 0], + [493, 1], + [494, 0], + [494, 1], + [495, 0], + [495, 1], + [496, 0], + [496, 1], + [497, 0], + [497, 1], + [499, 0], + [499, 1], + [500, 0], + [500, 1], + [501, 0], + [501, 1], + [504, 0], + [504, 2], + [506, 0], + [506, 2], + [507, 0], + [507, 2], + [508, 0], + [508, 2], + [517, 0], + [517, 1], + [518, 0], + [518, 1], + ], + performAction: function anonymous( + yytext, + yyleng, + yylineno, + yy, + yystate /* action[1] */, + $$ /* vstack */, + _$ /* lstack */ + ) { + /* this == yyval */ + + var $0 = $$.length - 1; + switch (yystate) { + case 1: + if (alasql.options.casesensitive) this.$ = $$[$0]; + else this.$ = $$[$0].toLowerCase(); + + break; + case 2: + this.$ = doubleq($$[$0].substr(1, $$[$0].length - 2)); + break; + case 3: + this.$ = $$[$0].toLowerCase(); + break; + case 4: + this.$ = $$[$0]; + break; + case 5: + this.$ = $$[$0] ? $$[$0 - 1] + ' ' + $$[$0] : $$[$0 - 1]; + break; + case 6: + return new yy.Statements({statements: $$[$0 - 1]}); + break; + case 7: + this.$ = $$[$0 - 2]; + if ($$[$0]) $$[$0 - 2].push($$[$0]); + break; + case 8: + case 9: + case 70: + case 80: + case 85: + case 143: + case 177: + case 205: + case 206: + case 242: + case 261: + case 276: + case 362: + case 380: + case 459: + case 482: + case 483: + case 487: + case 495: + case 536: + case 537: + case 574: + case 657: + case 667: + case 691: + case 693: + case 695: + case 709: + case 710: + case 740: + case 764: + this.$ = [$$[$0]]; + break; + case 10: + this.$ = $$[$0]; + $$[$0].explain = true; + break; + case 11: + this.$ = $$[$0]; + $$[$0].explain = true; + break; + case 12: + this.$ = $$[$0]; + + // TODO combine exists and queries + if (yy.exists) this.$.exists = yy.exists; + delete yy.exists; + if (yy.queries) this.$.queries = yy.queries; + delete yy.queries; + + break; + case 13: + case 162: + case 172: + case 237: + case 238: + case 240: + case 248: + case 250: + case 259: + case 270: + case 273: + case 383: + case 499: + case 509: + case 511: + case 523: + case 529: + case 530: + case 575: + this.$ = undefined; + break; + case 68: + this.$ = new yy.WithSelect({withs: $$[$0 - 1], select: $$[$0]}); + break; + case 69: + case 573: + $$[$0 - 2].push($$[$0]); + this.$ = $$[$0 - 2]; + break; + case 71: + this.$ = {name: $$[$0 - 4], select: $$[$0 - 1]}; + break; + case 72: + yy.extend(this.$, $$[$0 - 9]); + yy.extend(this.$, $$[$0 - 8]); + yy.extend(this.$, $$[$0 - 7]); + yy.extend(this.$, $$[$0 - 6]); + yy.extend(this.$, $$[$0 - 5]); + yy.extend(this.$, $$[$0 - 4]); + yy.extend(this.$, $$[$0 - 3]); + yy.extend(this.$, $$[$0 - 2]); + yy.extend(this.$, $$[$0 - 1]); + yy.extend(this.$, $$[$0]); + this.$ = $$[$0 - 9]; + if (yy.exists) this.$.exists = yy.exists.slice(); + /* if(yy.queries) this.$.queries = yy.queries; + delete yy.queries; +*/ + break; + case 73: + this.$ = new yy.Search({selectors: $$[$0 - 2], from: $$[$0]}); + yy.extend(this.$, $$[$0 - 1]); + + break; + case 74: + this.$ = { + pivot: {expr: $$[$0 - 5], columnid: $$[$0 - 3], inlist: $$[$0 - 2], as: $$[$0]}, + }; + break; + case 75: + this.$ = { + unpivot: { + tocolumnid: $$[$0 - 8], + forcolumnid: $$[$0 - 6], + inlist: $$[$0 - 3], + as: $$[$0], + }, + }; + break; + case 76: + case 528: + case 557: + case 593: + case 627: + case 644: + case 645: + case 648: + case 670: + this.$ = $$[$0 - 1]; + break; + case 77: + case 78: + case 86: + case 147: + case 185: + case 247: + case 283: + case 291: + case 292: + case 293: + case 294: + case 295: + case 296: + case 297: + case 298: + case 299: + case 300: + case 301: + case 302: + case 303: + case 304: + case 307: + case 308: + case 324: + case 325: + case 326: + case 327: + case 328: + case 329: + case 382: + case 448: + case 449: + case 450: + case 451: + case 452: + case 453: + case 524: + case 550: + case 554: + case 556: + case 631: + case 632: + case 633: + case 634: + case 635: + case 636: + case 640: + case 642: + case 643: + case 652: + case 668: + case 669: + case 731: + case 746: + case 747: + case 749: + case 750: + case 756: + case 757: + this.$ = $$[$0]; + break; + case 79: + case 84: + case 739: + case 763: + this.$ = $$[$0 - 2]; + this.$.push($$[$0]); + break; + case 81: + this.$ = {expr: $$[$0]}; + break; + case 82: + this.$ = {expr: $$[$0 - 2], as: $$[$0]}; + break; + case 83: + this.$ = {removecolumns: $$[$0]}; + break; + case 87: + this.$ = {like: $$[$0]}; + break; + case 90: + case 104: + this.$ = {srchid: 'PROP', args: [$$[$0]]}; + break; + case 91: + this.$ = {srchid: 'ORDERBY', args: $$[$0 - 1]}; + break; + case 92: + var dir = $$[$0 - 1]; + if (!dir) dir = 'ASC'; + this.$ = { + srchid: 'ORDERBY', + args: [{expression: new yy.Column({columnid: '_'}), direction: dir}], + }; + + break; + case 93: + this.$ = {srchid: 'PARENT'}; + break; + case 94: + this.$ = {srchid: 'APROP', args: [$$[$0]]}; + break; + case 95: + this.$ = {selid: 'ROOT'}; + break; + case 96: + this.$ = {srchid: 'EQ', args: [$$[$0]]}; + break; + case 97: + this.$ = {srchid: 'LIKE', args: [$$[$0]]}; + break; + case 98: + case 99: + this.$ = {selid: 'WITH', args: $$[$0 - 1]}; + break; + case 100: + this.$ = {srchid: $$[$0 - 3].toUpperCase(), args: $$[$0 - 1]}; + break; + case 101: + this.$ = {srchid: 'WHERE', args: [$$[$0 - 1]]}; + break; + case 102: + this.$ = {selid: 'OF', args: [$$[$0 - 1]]}; + break; + case 103: + this.$ = {srchid: 'CLASS', args: [$$[$0 - 1]]}; + break; + case 105: + this.$ = {srchid: 'NAME', args: [$$[$0].substr(1, $$[$0].length - 2)]}; + break; + case 106: + this.$ = {srchid: 'CHILD'}; + break; + case 107: + this.$ = {srchid: 'VERTEX'}; + break; + case 108: + this.$ = {srchid: 'EDGE'}; + break; + case 109: + this.$ = {srchid: 'REF'}; + break; + case 110: + this.$ = {srchid: 'SHARP', args: [$$[$0]]}; + break; + case 111: + this.$ = {srchid: 'ATTR', args: typeof $$[$0] == 'undefined' ? undefined : [$$[$0]]}; + break; + case 112: + this.$ = {srchid: 'ATTR'}; + break; + case 113: + this.$ = {srchid: 'OUT'}; + break; + case 114: + this.$ = {srchid: 'IN'}; + break; + case 115: + this.$ = {srchid: 'OUTOUT'}; + break; + case 116: + this.$ = {srchid: 'ININ'}; + break; + case 117: + this.$ = {srchid: 'CONTENT'}; + break; + case 118: + this.$ = {srchid: 'EX', args: [new yy.Json({value: $$[$0]})]}; + break; + case 119: + this.$ = {srchid: 'AT', args: [$$[$0]]}; + break; + case 120: + this.$ = {srchid: 'AS', args: [$$[$0]]}; + break; + case 121: + this.$ = {srchid: 'SET', args: $$[$0 - 1]}; + break; + case 122: + this.$ = {selid: 'TO', args: [$$[$0]]}; + break; + case 123: + this.$ = {srchid: 'VALUE'}; + break; + case 124: + this.$ = {srchid: 'ROW', args: $$[$0 - 1]}; + break; + case 125: + this.$ = {srchid: 'CLASS', args: [$$[$0]]}; + break; + case 126: + this.$ = {selid: $$[$0], args: [$$[$0 - 1]]}; + break; + case 127: + this.$ = {selid: 'NOT', args: $$[$0 - 1]}; + break; + case 128: + this.$ = {selid: 'IF', args: $$[$0 - 1]}; + break; + case 129: + this.$ = {selid: $$[$0 - 3], args: $$[$0 - 1]}; + break; + case 130: + this.$ = {selid: 'DISTINCT', args: $$[$0 - 1]}; + break; + case 131: + this.$ = {selid: 'UNION', args: $$[$0 - 1]}; + break; + case 132: + this.$ = {selid: 'UNIONALL', args: $$[$0 - 1]}; + break; + case 133: + this.$ = {selid: 'ALL', args: [$$[$0 - 1]]}; + break; + case 134: + this.$ = {selid: 'ANY', args: [$$[$0 - 1]]}; + break; + case 135: + this.$ = {selid: 'INTERSECT', args: $$[$0 - 1]}; + break; + case 136: + this.$ = {selid: 'EXCEPT', args: $$[$0 - 1]}; + break; + case 137: + this.$ = {selid: 'AND', args: $$[$0 - 1]}; + break; + case 138: + this.$ = {selid: 'OR', args: $$[$0 - 1]}; + break; + case 139: + this.$ = {selid: 'PATH', args: [$$[$0 - 1]]}; + break; + case 140: + this.$ = {srchid: 'RETURN', args: $$[$0 - 1]}; + break; + case 141: + this.$ = {selid: 'REPEAT', sels: $$[$0 - 3], args: $$[$0 - 1]}; + break; + case 142: + this.$ = $$[$0 - 2]; + this.$.push($$[$0]); + break; + case 144: + this.$ = 'PLUS'; + break; + case 145: + this.$ = 'STAR'; + break; + case 146: + this.$ = 'QUESTION'; + break; + case 148: + this.$ = new yy.Select({columns: $$[$0], distinct: true}); + yy.extend(this.$, $$[$0 - 3]); + yy.extend(this.$, $$[$0 - 1]); + break; + case 149: + this.$ = new yy.Select({columns: $$[$0], distinct: true}); + yy.extend(this.$, $$[$0 - 3]); + yy.extend(this.$, $$[$0 - 1]); + break; + case 150: + this.$ = new yy.Select({columns: $$[$0], all: true}); + yy.extend(this.$, $$[$0 - 3]); + yy.extend(this.$, $$[$0 - 1]); + break; + case 151: + if (!$$[$0]) { + this.$ = new yy.Select({ + columns: [new yy.Column({columnid: '_'})], + modifier: 'COLUMN', + }); + } else { + this.$ = new yy.Select({columns: $$[$0]}); + yy.extend(this.$, $$[$0 - 2]); + yy.extend(this.$, $$[$0 - 1]); + } + + break; + case 152: + if ($$[$0] == 'SELECT') this.$ = undefined; + else this.$ = {modifier: $$[$0]}; + break; + case 153: + this.$ = {modifier: 'VALUE'}; + break; + case 154: + this.$ = {modifier: 'ROW'}; + break; + case 155: + this.$ = {modifier: 'COLUMN'}; + break; + case 156: + this.$ = {modifier: 'MATRIX'}; + break; + case 157: + this.$ = {modifier: 'TEXTSTRING'}; + break; + case 158: + this.$ = {modifier: 'INDEX'}; + break; + case 159: + this.$ = {modifier: 'RECORDSET'}; + break; + case 160: + this.$ = {top: $$[$0 - 1], percent: typeof $$[$0] != 'undefined' ? true : undefined}; + break; + case 161: + this.$ = {top: $$[$0 - 1]}; + break; + case 163: + case 335: + case 531: + case 532: + case 732: + this.$ = undefined; + break; + case 164: + case 165: + case 166: + case 167: + this.$ = {into: $$[$0]}; + break; + case 168: + var s = $$[$0]; + s = s.substr(1, s.length - 2); + var x3 = s.substr(-3).toUpperCase(); + var x4 = s.substr(-4).toUpperCase(); + if (s[0] == '#') { + this.$ = { + into: new yy.FuncValue({ + funcid: 'HTML', + args: [new yy.StringValue({value: s}), new yy.Json({value: {headers: true}})], + }), + }; + } else if (x3 == 'XLS' || x3 == 'CSV' || x3 == 'TAB') { + this.$ = { + into: new yy.FuncValue({ + funcid: x3, + args: [new yy.StringValue({value: s}), new yy.Json({value: {headers: true}})], + }), + }; + } else if (x4 == 'XLSX' || x4 == 'JSON') { + this.$ = { + into: new yy.FuncValue({ + funcid: x4, + args: [new yy.StringValue({value: s}), new yy.Json({value: {headers: true}})], + }), + }; + } + + break; + case 169: + this.$ = {from: $$[$0]}; + break; + case 170: + this.$ = {from: $$[$0 - 1], joins: $$[$0]}; + break; + case 171: + this.$ = {from: $$[$0 - 2], joins: $$[$0 - 1]}; + break; + case 173: + this.$ = new yy.Apply({select: $$[$0 - 2], applymode: 'CROSS', as: $$[$0]}); + break; + case 174: + this.$ = new yy.Apply({select: $$[$0 - 3], applymode: 'CROSS', as: $$[$0]}); + break; + case 175: + this.$ = new yy.Apply({select: $$[$0 - 2], applymode: 'OUTER', as: $$[$0]}); + break; + case 176: + this.$ = new yy.Apply({select: $$[$0 - 3], applymode: 'OUTER', as: $$[$0]}); + break; + case 178: + case 243: + case 460: + case 538: + case 539: + this.$ = $$[$0 - 2]; + $$[$0 - 2].push($$[$0]); + break; + case 179: + this.$ = $$[$0 - 2]; + this.$.as = $$[$0]; + break; + case 180: + this.$ = $$[$0 - 3]; + this.$.as = $$[$0]; + break; + case 181: + this.$ = $$[$0 - 1]; + this.$.as = 'default'; + break; + case 182: + this.$ = new yy.Json({value: $$[$0 - 2]}); + $$[$0 - 2].as = $$[$0]; + break; + case 183: + this.$ = $$[$0 - 1]; + $$[$0 - 1].as = $$[$0]; + break; + case 184: + this.$ = $$[$0 - 2]; + $$[$0 - 2].as = $$[$0]; + break; + case 186: + case 646: + case 649: + this.$ = $$[$0 - 2]; + break; + case 187: + case 191: + case 195: + case 198: + this.$ = $$[$0 - 1]; + $$[$0 - 1].as = $$[$0]; + break; + case 188: + case 192: + case 196: + case 199: + this.$ = $$[$0 - 2]; + $$[$0 - 2].as = $$[$0]; + break; + case 189: + case 190: + case 194: + case 197: + this.$ = $$[$0]; + $$[$0].as = 'default'; + break; + case 193: + this.$ = {inserted: true}; + break; + case 200: + var s = $$[$0]; + s = s.substr(1, s.length - 2); + var x3 = s.substr(-3).toUpperCase(); + var x4 = s.substr(-4).toUpperCase(); + var r; + if (s[0] == '#') { + r = new yy.FuncValue({ + funcid: 'HTML', + args: [new yy.StringValue({value: s}), new yy.Json({value: {headers: true}})], + }); + } else if (x3 == 'XLS' || x3 == 'CSV' || x3 == 'TAB') { + r = new yy.FuncValue({ + funcid: x3, + args: [new yy.StringValue({value: s}), new yy.Json({value: {headers: true}})], + }); + } else if (x4 == 'XLSX' || x4 == 'JSON') { + r = new yy.FuncValue({ + funcid: x4, + args: [new yy.StringValue({value: s}), new yy.Json({value: {headers: true}})], + }); + } else { + throw new Error('Unknown string in FROM clause'); + } + this.$ = r; + + break; + case 201: + if ($$[$0 - 2] == 'INFORMATION_SCHEMA') { + this.$ = new yy.FuncValue({ + funcid: $$[$0 - 2], + args: [new yy.StringValue({value: $$[$0]})], + }); + } else { + this.$ = new yy.Table({databaseid: $$[$0 - 2], tableid: $$[$0]}); + } + + break; + case 202: + this.$ = new yy.Table({tableid: $$[$0]}); + break; + case 203: + case 204: + this.$ = $$[$0 - 1]; + $$[$0 - 1].push($$[$0]); + break; + case 207: + this.$ = new yy.Join($$[$0 - 2]); + yy.extend(this.$, $$[$0 - 1]); + yy.extend(this.$, $$[$0]); + break; + case 208: + this.$ = {table: $$[$0]}; + break; + case 209: + this.$ = {table: $$[$0 - 1], as: $$[$0]}; + break; + case 210: + this.$ = {table: $$[$0 - 2], as: $$[$0]}; + break; + case 211: + this.$ = {json: new yy.Json({value: $$[$0 - 2], as: $$[$0]})}; + break; + case 212: + this.$ = {param: $$[$0 - 1], as: $$[$0]}; + break; + case 213: + this.$ = {param: $$[$0 - 2], as: $$[$0]}; + break; + case 214: + this.$ = {select: $$[$0 - 2], as: $$[$0]}; + break; + case 215: + this.$ = {select: $$[$0 - 3], as: $$[$0]}; + break; + case 216: + this.$ = {func: $$[$0], as: 'default'}; + break; + case 217: + this.$ = {func: $$[$0 - 1], as: $$[$0]}; + break; + case 218: + this.$ = {func: $$[$0 - 2], as: $$[$0]}; + break; + case 219: + this.$ = {variable: $$[$0], as: 'default'}; + break; + case 220: + this.$ = {variable: $$[$0 - 1], as: $$[$0]}; + break; + case 221: + this.$ = {variable: $$[$0 - 2], as: $$[$0]}; + break; + case 222: + this.$ = {joinmode: $$[$0]}; + break; + case 223: + this.$ = {joinmode: $$[$0 - 1], natural: true}; + break; + case 224: + case 225: + this.$ = 'INNER'; + break; + case 226: + case 227: + this.$ = 'LEFT'; + break; + case 228: + case 229: + this.$ = 'RIGHT'; + break; + case 230: + case 231: + this.$ = 'OUTER'; + break; + case 232: + this.$ = 'SEMI'; + break; + case 233: + this.$ = 'ANTI'; + break; + case 234: + this.$ = 'CROSS'; + break; + case 235: + this.$ = {on: $$[$0]}; + break; + case 236: + case 705: + this.$ = {using: $$[$0]}; + break; + case 239: + this.$ = {where: new yy.Expression({expression: $$[$0]})}; + break; + case 241: + this.$ = {group: $$[$0 - 1]}; + yy.extend(this.$, $$[$0]); + break; + case 244: + this.$ = new yy.GroupExpression({type: 'GROUPING SETS', group: $$[$0 - 1]}); + break; + case 245: + this.$ = new yy.GroupExpression({type: 'ROLLUP', group: $$[$0 - 1]}); + break; + case 246: + this.$ = new yy.GroupExpression({type: 'CUBE', group: $$[$0 - 1]}); + break; + case 249: + this.$ = {having: $$[$0]}; + break; + case 251: + this.$ = {union: $$[$0]}; + break; + case 252: + this.$ = {unionall: $$[$0]}; + break; + case 253: + this.$ = {except: $$[$0]}; + break; + case 254: + this.$ = {intersect: $$[$0]}; + break; + case 255: + this.$ = {union: $$[$0], corresponding: true}; + break; + case 256: + this.$ = {unionall: $$[$0], corresponding: true}; + break; + case 257: + this.$ = {except: $$[$0], corresponding: true}; + break; + case 258: + this.$ = {intersect: $$[$0], corresponding: true}; + break; + case 260: + this.$ = {order: $$[$0]}; + break; + case 262: + this.$ = $$[$0 - 2]; + $$[$0 - 2].push($$[$0]); + break; + case 263: + this.$ = {nullsOrder: 'FIRST'}; + break; + case 264: + this.$ = {nullsOrder: 'LAST'}; + break; + case 265: + this.$ = new yy.Expression({expression: $$[$0], direction: 'ASC'}); + break; + case 266: + this.$ = new yy.Expression({expression: $$[$0 - 1], direction: $$[$0].toUpperCase()}); + break; + case 267: + this.$ = new yy.Expression({ + expression: $$[$0 - 2], + direction: $$[$0 - 1].toUpperCase(), + }); + yy.extend(this.$, $$[$0]); + break; + case 268: + this.$ = new yy.Expression({expression: $$[$0 - 2], direction: 'ASC', nocase: true}); + break; + case 269: + this.$ = new yy.Expression({ + expression: $$[$0 - 3], + direction: $$[$0].toUpperCase(), + nocase: true, + }); + break; + case 271: + this.$ = {limit: $$[$0 - 1]}; + yy.extend(this.$, $$[$0]); + break; + case 272: + this.$ = {limit: $$[$0 - 2], offset: $$[$0 - 6]}; + break; + case 274: + this.$ = {offset: $$[$0]}; + break; + case 275: + case 517: + case 541: + case 656: + case 666: + case 690: + case 692: + case 696: + $$[$0 - 2].push($$[$0]); + this.$ = $$[$0 - 2]; + break; + case 277: + case 279: + case 281: + $$[$0 - 2].as = $$[$0]; + this.$ = $$[$0 - 2]; + break; + case 278: + case 280: + case 282: + $$[$0 - 1].as = $$[$0]; + this.$ = $$[$0 - 1]; + break; + case 284: + this.$ = new yy.Column({columid: $$[$0], tableid: $$[$0 - 2], databaseid: $$[$0 - 4]}); + break; + case 285: + this.$ = new yy.Column({columnid: $$[$0], tableid: $$[$0 - 2]}); + break; + case 286: + this.$ = new yy.Column({columnid: $$[$0]}); + break; + case 287: + this.$ = new yy.Column({columnid: $$[$0], tableid: $$[$0 - 2], databaseid: $$[$0 - 4]}); + break; + case 288: + case 289: + this.$ = new yy.Column({columnid: $$[$0], tableid: $$[$0 - 2]}); + break; + case 290: + this.$ = new yy.Column({columnid: $$[$0]}); + break; + case 305: + this.$ = new yy.DomainValueValue(); + break; + case 306: + this.$ = new yy.Json({value: $$[$0]}); + break; + case 309: + case 310: + case 311: + if (!yy.queries) yy.queries = []; + yy.queries.push($$[$0 - 1]); + $$[$0 - 1].queriesidx = yy.queries.length; + this.$ = $$[$0 - 1]; + + break; + case 312: + this.$ = $$[$0]; + break; + case 313: + this.$ = new yy.FuncValue({funcid: 'CURRENT_TIMESTAMP'}); + break; + case 314: + this.$ = new yy.FuncValue({funcid: 'CURRENT_DATE'}); + break; + case 315: + this.$ = new yy.JavaScript({value: $$[$0].substr(2, $$[$0].length - 4)}); + break; + case 316: + this.$ = new yy.JavaScript({ + value: 'alasql.fn["' + $$[$0 - 2] + '"] = ' + $$[$0].substr(2, $$[$0].length - 4), + }); + break; + case 317: + this.$ = new yy.JavaScript({ + value: 'alasql.aggr["' + $$[$0 - 2] + '"] = ' + $$[$0].substr(2, $$[$0].length - 4), + }); + break; + case 318: + this.$ = new yy.FuncValue({funcid: $$[$0], newid: true}); + break; + case 319: + this.$ = $$[$0]; + yy.extend(this.$, {newid: true}); + break; + case 320: + this.$ = new yy.Convert({expression: $$[$0 - 3]}); + yy.extend(this.$, $$[$0 - 1]); + break; + case 321: + this.$ = new yy.Convert({expression: $$[$0 - 5], style: $$[$0 - 1]}); + yy.extend(this.$, $$[$0 - 3]); + break; + case 322: + this.$ = new yy.Convert({expression: $$[$0 - 1]}); + yy.extend(this.$, $$[$0 - 3]); + break; + case 323: + this.$ = new yy.Convert({expression: $$[$0 - 3], style: $$[$0 - 1]}); + yy.extend(this.$, $$[$0 - 5]); + break; + case 330: + this.$ = new yy.FuncValue({funcid: 'CURRENT_TIMESTAMP'}); + break; + case 331: + this.$ = new yy.FuncValue({funcid: 'CURRENT_DATE'}); + break; + case 332: + if ( + $$[$0 - 2].length > 1 && + ($$[$0 - 4].toUpperCase() == 'MAX' || $$[$0 - 4].toUpperCase() == 'MIN') + ) { + this.$ = new yy.FuncValue({funcid: $$[$0 - 4], args: $$[$0 - 2]}); + } else { + this.$ = new yy.AggrValue({ + aggregatorid: $$[$0 - 4].toUpperCase(), + expression: $$[$0 - 2].pop(), + over: $$[$0], + }); + } + + break; + case 333: + this.$ = new yy.AggrValue({ + aggregatorid: $$[$0 - 5].toUpperCase(), + expression: $$[$0 - 2], + distinct: true, + over: $$[$0], + }); + break; + case 334: + this.$ = new yy.AggrValue({ + aggregatorid: $$[$0 - 5].toUpperCase(), + expression: $$[$0 - 2], + over: $$[$0], + }); + break; + case 336: + case 337: + this.$ = new yy.Over(); + yy.extend(this.$, $$[$0 - 1]); + break; + case 338: + this.$ = new yy.Over(); + yy.extend(this.$, $$[$0 - 2]); + yy.extend(this.$, $$[$0 - 1]); + break; + case 339: + this.$ = {partition: $$[$0]}; + break; + case 340: + this.$ = {order: $$[$0]}; + break; + case 341: + this.$ = 'SUM'; + break; + case 342: + this.$ = 'TOTAL'; + break; + case 343: + this.$ = 'COUNT'; + break; + case 344: + this.$ = 'MIN'; + break; + case 345: + case 552: + this.$ = 'MAX'; + break; + case 346: + this.$ = 'AVG'; + break; + case 347: + this.$ = 'FIRST'; + break; + case 348: + this.$ = 'LAST'; + break; + case 349: + this.$ = 'AGGR'; + break; + case 350: + this.$ = 'ARRAY'; + break; + case 351: + var funcid = $$[$0 - 4]; + var exprlist = $$[$0 - 1]; + if ( + exprlist.length > 1 && + (funcid.toUpperCase() == 'MIN' || funcid.toUpperCase() == 'MAX') + ) { + this.$ = new yy.FuncValue({funcid: funcid, args: exprlist}); + } else if (alasql.aggr[$$[$0 - 4]]) { + this.$ = new yy.AggrValue({ + aggregatorid: 'REDUCE', + funcid: funcid, + expression: exprlist.pop(), + distinct: $$[$0 - 2] == 'DISTINCT', + }); + } else { + this.$ = new yy.FuncValue({funcid: funcid, args: exprlist}); + } + + break; + case 352: + case 355: + this.$ = new yy.FuncValue({funcid: $$[$0 - 2]}); + break; + case 353: + this.$ = new yy.FuncValue({funcid: 'IIF', args: $$[$0 - 1]}); + break; + case 354: + this.$ = new yy.FuncValue({funcid: 'REPLACE', args: $$[$0 - 1]}); + break; + case 356: + this.$ = new yy.FuncValue({ + funcid: 'DATEADD', + args: [new yy.StringValue({value: $$[$0 - 5]}), $$[$0 - 3], $$[$0 - 1]], + }); + break; + case 357: + this.$ = new yy.FuncValue({ + funcid: 'DATEADD', + args: [$$[$0 - 5], $$[$0 - 3], $$[$0 - 1]], + }); + break; + case 358: + this.$ = new yy.FuncValue({ + funcid: 'DATEDIFF', + args: [new yy.StringValue({value: $$[$0 - 5]}), $$[$0 - 3], $$[$0 - 1]], + }); + break; + case 359: + this.$ = new yy.FuncValue({ + funcid: 'DATEDIFF', + args: [$$[$0 - 5], $$[$0 - 3], $$[$0 - 1]], + }); + break; + case 360: + this.$ = new yy.FuncValue({ + funcid: 'TIMESTAMPDIFF', + args: [new yy.StringValue({value: $$[$0 - 5]}), $$[$0 - 3], $$[$0 - 1]], + }); + break; + case 361: + this.$ = new yy.FuncValue({ + funcid: 'INTERVAL', + args: [$$[$0 - 1], new yy.StringValue({value: $$[$0].toLowerCase()})], + }); + break; + case 363: + $$[$0 - 2].push($$[$0]); + this.$ = $$[$0 - 2]; + break; + case 364: + this.$ = new yy.NumValue({value: +$$[$0]}); + break; + case 365: + this.$ = new yy.LogicValue({value: true}); + break; + case 366: + this.$ = new yy.LogicValue({value: false}); + break; + case 367: + this.$ = new yy.StringValue({ + value: $$[$0] + .substr(1, $$[$0].length - 2) + .replace(/(\\\')/g, "'") + .replace(/(\'\')/g, "'"), + }); + break; + case 368: + this.$ = new yy.StringValue({ + value: $$[$0] + .substr(2, $$[$0].length - 3) + .replace(/(\\\')/g, "'") + .replace(/(\'\')/g, "'"), + }); + break; + case 369: + this.$ = new yy.NullValue({value: undefined}); + break; + case 370: + this.$ = new yy.VarValue({variable: $$[$0]}); + break; + case 371: + if (!yy.exists) yy.exists = []; + this.$ = new yy.ExistsValue({value: $$[$0 - 1], existsidx: yy.exists.length}); + yy.exists.push($$[$0 - 1]); + + break; + case 372: + this.$ = new yy.ArrayValue({value: $$[$0 - 1]}); + break; + case 373: + case 374: + this.$ = new yy.ParamValue({param: $$[$0]}); + break; + case 375: + if (typeof yy.question == 'undefined') yy.question = 0; + this.$ = new yy.ParamValue({param: yy.question++}); + + break; + case 376: + if (typeof yy.question == 'undefined') yy.question = 0; + this.$ = new yy.ParamValue({param: yy.question++, array: true}); + + break; + case 377: + this.$ = new yy.CaseValue({ + expression: $$[$0 - 3], + whens: $$[$0 - 2], + elses: $$[$0 - 1], + }); + break; + case 378: + this.$ = new yy.CaseValue({whens: $$[$0 - 2], elses: $$[$0 - 1]}); + break; + case 379: + case 707: + case 708: + this.$ = $$[$0 - 1]; + this.$.push($$[$0]); + break; + case 381: + this.$ = {when: $$[$0 - 2], then: $$[$0]}; + break; + case 384: + case 385: + this.$ = new yy.Op({left: $$[$0 - 2], op: 'REGEXP', right: $$[$0]}); + break; + case 386: + this.$ = new yy.Op({left: $$[$0 - 2], op: 'GLOB', right: $$[$0]}); + break; + case 387: + this.$ = new yy.Op({left: $$[$0 - 2], op: 'LIKE', right: $$[$0]}); + break; + case 388: + this.$ = new yy.Op({left: $$[$0 - 4], op: 'LIKE', right: $$[$0 - 2], escape: $$[$0]}); + break; + case 389: + this.$ = new yy.Op({left: $$[$0 - 2], op: 'NOT LIKE', right: $$[$0]}); + break; + case 390: + this.$ = new yy.Op({ + left: $$[$0 - 4], + op: 'NOT LIKE', + right: $$[$0 - 2], + escape: $$[$0], + }); + break; + case 391: + this.$ = new yy.Op({left: $$[$0 - 2], op: '||', right: $$[$0]}); + break; + case 392: + this.$ = new yy.Op({left: $$[$0 - 2], op: '+', right: $$[$0]}); + break; + case 393: + this.$ = new yy.Op({left: $$[$0 - 2], op: '-', right: $$[$0]}); + break; + case 394: + this.$ = new yy.Op({left: $$[$0 - 2], op: '*', right: $$[$0]}); + break; + case 395: + this.$ = new yy.Op({left: $$[$0 - 2], op: '/', right: $$[$0]}); + break; + case 396: + this.$ = new yy.Op({left: $$[$0 - 2], op: '%', right: $$[$0]}); + break; + case 397: + this.$ = new yy.Op({left: $$[$0 - 2], op: '^', right: $$[$0]}); + break; + case 398: + this.$ = new yy.Op({left: $$[$0 - 2], op: '>>', right: $$[$0]}); + break; + case 399: + this.$ = new yy.Op({left: $$[$0 - 2], op: '<<', right: $$[$0]}); + break; + case 400: + this.$ = new yy.Op({left: $$[$0 - 2], op: '&', right: $$[$0]}); + break; + case 401: + this.$ = new yy.Op({left: $$[$0 - 2], op: '|', right: $$[$0]}); + break; + case 402: + case 403: + case 405: + this.$ = new yy.Op({left: $$[$0 - 2], op: '->', right: $$[$0]}); + break; + case 404: + this.$ = new yy.Op({left: $$[$0 - 4], op: '->', right: $$[$0 - 1]}); + break; + case 406: + case 407: + case 409: + this.$ = new yy.Op({left: $$[$0 - 2], op: '!', right: $$[$0]}); + break; + case 408: + this.$ = new yy.Op({left: $$[$0 - 4], op: '!', right: $$[$0 - 1]}); + break; + case 410: + this.$ = new yy.Op({left: $$[$0 - 2], op: '>', right: $$[$0]}); + break; + case 411: + this.$ = new yy.Op({left: $$[$0 - 2], op: '>=', right: $$[$0]}); + break; + case 412: + this.$ = new yy.Op({left: $$[$0 - 2], op: '<', right: $$[$0]}); + break; + case 413: + this.$ = new yy.Op({left: $$[$0 - 2], op: '<=', right: $$[$0]}); + break; + case 414: + this.$ = new yy.Op({left: $$[$0 - 2], op: '=', right: $$[$0]}); + break; + case 415: + this.$ = new yy.Op({left: $$[$0 - 2], op: '==', right: $$[$0]}); + break; + case 416: + this.$ = new yy.Op({left: $$[$0 - 2], op: '===', right: $$[$0]}); + break; + case 417: + this.$ = new yy.Op({left: $$[$0 - 2], op: '!=', right: $$[$0]}); + break; + case 418: + this.$ = new yy.Op({left: $$[$0 - 2], op: '!==', right: $$[$0]}); + break; + case 419: + this.$ = new yy.Op({left: $$[$0 - 2], op: '!===', right: $$[$0]}); + break; + case 420: + if (!yy.queries) yy.queries = []; + this.$ = new yy.Op({ + left: $$[$0 - 5], + op: $$[$0 - 4], + allsome: $$[$0 - 3], + right: $$[$0 - 1], + queriesidx: yy.queries.length, + }); + yy.queries.push($$[$0 - 1]); + + break; + case 421: + this.$ = new yy.Op({ + left: $$[$0 - 5], + op: $$[$0 - 4], + allsome: $$[$0 - 3], + right: $$[$0 - 1], + }); + + break; + case 422: + if ($$[$0 - 2].op == 'BETWEEN1') { + if ($$[$0 - 2].left.op == 'AND') { + this.$ = new yy.Op({ + left: $$[$0 - 2].left.left, + op: 'AND', + right: new yy.Op({ + left: $$[$0 - 2].left.right, + op: 'BETWEEN', + right1: $$[$0 - 2].right, + right2: $$[$0], + }), + }); + } else { + this.$ = new yy.Op({ + left: $$[$0 - 2].left, + op: 'BETWEEN', + right1: $$[$0 - 2].right, + right2: $$[$0], + }); + } + } else if ($$[$0 - 2].op == 'NOT BETWEEN1') { + if ($$[$0 - 2].left.op == 'AND') { + this.$ = new yy.Op({ + left: $$[$0 - 2].left.left, + op: 'AND', + right: new yy.Op({ + left: $$[$0 - 2].left.right, + op: 'NOT BETWEEN', + right1: $$[$0 - 2].right, + right2: $$[$0], + }), + }); + } else { + this.$ = new yy.Op({ + left: $$[$0 - 2].left, + op: 'NOT BETWEEN', + right1: $$[$0 - 2].right, + right2: $$[$0], + }); + } + } else { + this.$ = new yy.Op({left: $$[$0 - 2], op: 'AND', right: $$[$0]}); + } + + break; + case 423: + this.$ = new yy.Op({left: $$[$0 - 2], op: 'OR', right: $$[$0]}); + break; + case 424: + this.$ = new yy.UniOp({op: 'NOT', right: $$[$0]}); + break; + case 425: + this.$ = new yy.UniOp({op: '-', right: $$[$0]}); + break; + case 426: + this.$ = new yy.UniOp({op: '+', right: $$[$0]}); + break; + case 427: + this.$ = new yy.UniOp({op: '~', right: $$[$0]}); + break; + case 428: + this.$ = new yy.UniOp({op: '#', right: $$[$0]}); + break; + case 429: + this.$ = new yy.UniOp({right: $$[$0 - 1]}); + break; + case 430: + if (!yy.queries) yy.queries = []; + this.$ = new yy.Op({ + left: $$[$0 - 4], + op: 'IN', + right: $$[$0 - 1], + queriesidx: yy.queries.length, + }); + yy.queries.push($$[$0 - 1]); + + break; + case 431: + if (!yy.queries) yy.queries = []; + this.$ = new yy.Op({ + left: $$[$0 - 5], + op: 'NOT IN', + right: $$[$0 - 1], + queriesidx: yy.queries.length, + }); + yy.queries.push($$[$0 - 1]); + + break; + case 432: + this.$ = new yy.Op({left: $$[$0 - 4], op: 'IN', right: $$[$0 - 1]}); + break; + case 433: + this.$ = new yy.Op({left: $$[$0 - 5], op: 'NOT IN', right: $$[$0 - 1]}); + break; + case 434: + this.$ = new yy.Op({left: $$[$0 - 3], op: 'IN', right: []}); + break; + case 435: + this.$ = new yy.Op({left: $$[$0 - 4], op: 'NOT IN', right: []}); + break; + case 436: + case 438: + this.$ = new yy.Op({left: $$[$0 - 2], op: 'IN', right: $$[$0]}); + break; + case 437: + case 439: + this.$ = new yy.Op({left: $$[$0 - 3], op: 'NOT IN', right: $$[$0]}); + break; + case 440: + /* var expr = $$[$0]; + if(expr.left && expr.left.op == 'AND') { + this.$ = new yy.Op({left:new yy.Op({left:$$[$0-2], op:'BETWEEN', right:expr.left}), op:'AND', right:expr.right }); + } else { +*/ + this.$ = new yy.Op({left: $$[$0 - 2], op: 'BETWEEN1', right: $$[$0]}); + // } + + break; + case 441: + // var expr = $$[$0]; + // if(expr.left && expr.left.op == 'AND') { + // this.$ = new yy.Op({left:new yy.Op({left:$$[$0-2], op:'NOT BETWEEN', right:expr.left}), op:'AND', right:expr.right }); + // } else { + this.$ = new yy.Op({left: $$[$0 - 2], op: 'NOT BETWEEN1', right: $$[$0]}); + // } + + break; + case 442: + this.$ = new yy.Op({op: 'IS', left: $$[$0 - 2], right: $$[$0]}); + break; + case 443: + this.$ = new yy.Op({ + op: 'IS', + left: $$[$0 - 2], + right: new yy.UniOp({ + op: 'NOT', + right: new yy.NullValue({value: undefined}), + }), + }); + + break; + case 444: + this.$ = new yy.Convert({expression: $$[$0 - 2]}); + yy.extend(this.$, $$[$0]); + break; + case 445: + case 446: + this.$ = $$[$0]; + break; + case 447: + this.$ = $$[$0 - 1]; + break; + case 454: + this.$ = 'ALL'; + break; + case 455: + this.$ = 'SOME'; + break; + case 456: + this.$ = 'ANY'; + break; + case 457: + this.$ = new yy.Update({table: $$[$0 - 4], columns: $$[$0 - 2], where: $$[$0]}); + break; + case 458: + this.$ = new yy.Update({table: $$[$0 - 2], columns: $$[$0]}); + break; + case 461: + this.$ = new yy.SetColumn({column: $$[$0 - 2], expression: $$[$0]}); + break; + case 462: + this.$ = new yy.SetColumn({ + variable: $$[$0 - 2], + expression: $$[$0], + method: $$[$0 - 3], + }); + break; + case 463: + this.$ = new yy.Delete({table: $$[$0 - 2], where: $$[$0]}); + break; + case 464: + this.$ = new yy.Delete({table: $$[$0]}); + break; + case 465: + this.$ = new yy.Insert({into: $$[$0 - 2], values: $$[$0]}); + break; + case 466: + this.$ = new yy.Insert({into: $$[$0 - 1], values: $$[$0]}); + break; + case 467: + case 469: + this.$ = new yy.Insert({into: $$[$0 - 2], values: $$[$0], orreplace: true}); + break; + case 468: + case 470: + this.$ = new yy.Insert({into: $$[$0 - 1], values: $$[$0], orreplace: true}); + break; + case 471: + this.$ = new yy.Insert({into: $$[$0 - 2], default: true}); + break; + case 472: + this.$ = new yy.Insert({into: $$[$0 - 5], columns: $$[$0 - 3], values: $$[$0]}); + break; + case 473: + this.$ = new yy.Insert({into: $$[$0 - 4], columns: $$[$0 - 2], values: $$[$0]}); + break; + case 474: + this.$ = new yy.Insert({into: $$[$0 - 1], select: $$[$0]}); + break; + case 475: + this.$ = new yy.Insert({into: $$[$0 - 1], select: $$[$0], orreplace: true}); + break; + case 476: + this.$ = new yy.Insert({into: $$[$0 - 4], columns: $$[$0 - 2], select: $$[$0]}); + break; + case 481: + this.$ = [$$[$0 - 1]]; + break; + case 484: + this.$ = $$[$0 - 4]; + $$[$0 - 4].push($$[$0 - 1]); + break; + case 485: + case 486: + case 488: + case 496: + this.$ = $$[$0 - 2]; + $$[$0 - 2].push($$[$0]); + break; + case 497: + this.$ = new yy.CreateTable({table: $$[$0 - 4]}); + yy.extend(this.$, $$[$0 - 7]); + yy.extend(this.$, $$[$0 - 6]); + yy.extend(this.$, $$[$0 - 5]); + yy.extend(this.$, $$[$0 - 2]); + yy.extend(this.$, $$[$0]); + + break; + case 498: + this.$ = new yy.CreateTable({table: $$[$0]}); + yy.extend(this.$, $$[$0 - 3]); + yy.extend(this.$, $$[$0 - 2]); + yy.extend(this.$, $$[$0 - 1]); + + break; + case 500: + this.$ = {class: true}; + break; + case 510: + this.$ = {temporary: true}; + break; + case 512: + this.$ = {ifnotexists: true}; + break; + case 513: + this.$ = {columns: $$[$0 - 2], constraints: $$[$0]}; + break; + case 514: + this.$ = {columns: $$[$0]}; + break; + case 515: + this.$ = {as: $$[$0]}; + break; + case 516: + case 540: + this.$ = [$$[$0]]; + break; + case 518: + case 519: + case 520: + case 521: + case 522: + $$[$0].constraintid = $$[$0 - 1]; + this.$ = $$[$0]; + break; + case 525: + this.$ = {type: 'CHECK', expression: $$[$0 - 1]}; + break; + case 526: + this.$ = { + type: 'PRIMARY KEY', + columns: $$[$0 - 1], + clustered: ($$[$0 - 3] + '').toUpperCase(), + }; + break; + case 527: + this.$ = { + type: 'FOREIGN KEY', + columns: $$[$0 - 5], + fktable: $$[$0 - 2], + fkcolumns: $$[$0 - 1], + }; + break; + case 533: + this.$ = { + type: 'UNIQUE', + columns: $$[$0 - 1], + clustered: ($$[$0 - 3] + '').toUpperCase(), + }; + + break; + case 542: + this.$ = new yy.ColumnDef({columnid: $$[$0 - 2]}); + yy.extend(this.$, $$[$0 - 1]); + yy.extend(this.$, $$[$0]); + break; + case 543: + this.$ = new yy.ColumnDef({columnid: $$[$0 - 1]}); + yy.extend(this.$, $$[$0]); + break; + case 544: + this.$ = new yy.ColumnDef({columnid: $$[$0], dbtypeid: ''}); + break; + case 545: + this.$ = {dbtypeid: $$[$0 - 5], dbsize: $$[$0 - 3], dbprecision: +$$[$0 - 1]}; + break; + case 546: + this.$ = {dbtypeid: $$[$0 - 3], dbsize: $$[$0 - 1]}; + break; + case 547: + this.$ = {dbtypeid: $$[$0]}; + break; + case 548: + this.$ = {dbtypeid: 'ENUM', enumvalues: $$[$0 - 1]}; + break; + case 549: + this.$ = $$[$0 - 1]; + $$[$0 - 1].dbtypeid += '[' + $$[$0] + ']'; + break; + case 551: + case 758: + this.$ = +$$[$0]; + break; + case 553: + this.$ = undefined; + break; + case 555: + yy.extend($$[$0 - 1], $$[$0]); + this.$ = $$[$0 - 1]; + + break; + case 558: + this.$ = {primarykey: true}; + break; + case 559: + case 560: + this.$ = {foreignkey: {table: $$[$0 - 1], columnid: $$[$0]}}; + break; + case 561: + this.$ = {identity: {value: $$[$0 - 3], step: $$[$0 - 1]}}; + break; + case 562: + this.$ = {identity: {value: 1, step: 1}}; + break; + case 563: + case 565: + this.$ = {default: $$[$0]}; + break; + case 564: + this.$ = {default: $$[$0 - 1]}; + break; + case 566: + this.$ = {null: true}; + break; + case 567: + this.$ = {notnull: true}; + break; + case 568: + this.$ = {check: $$[$0]}; + break; + case 569: + this.$ = {unique: true}; + break; + case 570: + this.$ = {onupdate: $$[$0]}; + break; + case 571: + this.$ = {onupdate: $$[$0 - 1]}; + break; + case 572: + this.$ = new yy.DropTable({tables: $$[$0], type: $$[$0 - 2]}); + yy.extend(this.$, $$[$0 - 1]); + break; + case 576: + this.$ = {ifexists: true}; + break; + case 577: + this.$ = new yy.AlterTable({table: $$[$0 - 3], renameto: $$[$0]}); + break; + case 578: + this.$ = new yy.AlterTable({table: $$[$0 - 3], addcolumn: $$[$0]}); + break; + case 579: + this.$ = new yy.AlterTable({table: $$[$0 - 3], modifycolumn: $$[$0]}); + break; + case 580: + this.$ = new yy.AlterTable({table: $$[$0 - 5], renamecolumn: $$[$0 - 2], to: $$[$0]}); + break; + case 581: + this.$ = new yy.AlterTable({table: $$[$0 - 3], dropcolumn: $$[$0]}); + break; + case 582: + this.$ = new yy.AlterTable({table: $$[$0 - 2], renameto: $$[$0]}); + break; + case 583: + this.$ = new yy.AttachDatabase({ + databaseid: $$[$0], + engineid: $$[$0 - 2].toUpperCase(), + }); + break; + case 584: + this.$ = new yy.AttachDatabase({ + databaseid: $$[$0 - 3], + engineid: $$[$0 - 5].toUpperCase(), + args: $$[$0 - 1], + }); + break; + case 585: + this.$ = new yy.AttachDatabase({ + databaseid: $$[$0 - 2], + engineid: $$[$0 - 4].toUpperCase(), + as: $$[$0], + }); + break; + case 586: + this.$ = new yy.AttachDatabase({ + databaseid: $$[$0 - 5], + engineid: $$[$0 - 7].toUpperCase(), + as: $$[$0], + args: $$[$0 - 3], + }); + break; + case 587: + this.$ = new yy.DetachDatabase({databaseid: $$[$0]}); + break; + case 588: + this.$ = new yy.CreateDatabase({databaseid: $$[$0]}); + yy.extend(this.$, $$[$0]); + break; + case 589: + this.$ = new yy.CreateDatabase({ + engineid: $$[$0 - 4].toUpperCase(), + databaseid: $$[$0 - 1], + as: $$[$0], + }); + yy.extend(this.$, $$[$0 - 2]); + break; + case 590: + this.$ = new yy.CreateDatabase({ + engineid: $$[$0 - 7].toUpperCase(), + databaseid: $$[$0 - 4], + args: $$[$0 - 2], + as: $$[$0], + }); + yy.extend(this.$, $$[$0 - 5]); + break; + case 591: + this.$ = new yy.CreateDatabase({ + engineid: $$[$0 - 4].toUpperCase(), + as: $$[$0], + args: [$$[$0 - 1]], + }); + yy.extend(this.$, $$[$0 - 2]); + break; + case 592: + this.$ = undefined; + break; + case 594: + case 595: + this.$ = new yy.UseDatabase({databaseid: $$[$0]}); + break; + case 596: + this.$ = new yy.DropDatabase({databaseid: $$[$0]}); + yy.extend(this.$, $$[$0 - 1]); + break; + case 597: + case 598: + this.$ = new yy.DropDatabase({databaseid: $$[$0], engineid: $$[$0 - 3].toUpperCase()}); + yy.extend(this.$, $$[$0 - 1]); + break; + case 599: + this.$ = new yy.CreateIndex({ + indexid: $$[$0 - 5], + table: $$[$0 - 3], + columns: $$[$0 - 1], + }); + break; + case 600: + this.$ = new yy.CreateIndex({ + indexid: $$[$0 - 5], + table: $$[$0 - 3], + columns: $$[$0 - 1], + unique: true, + }); + break; + case 601: + this.$ = new yy.DropIndex({indexid: $$[$0]}); + break; + case 602: + this.$ = new yy.ShowDatabases(); + break; + case 603: + this.$ = new yy.ShowDatabases({like: $$[$0]}); + break; + case 604: + this.$ = new yy.ShowDatabases({engineid: $$[$0 - 1].toUpperCase()}); + break; + case 605: + this.$ = new yy.ShowDatabases({engineid: $$[$0 - 3].toUpperCase(), like: $$[$0]}); + break; + case 606: + this.$ = new yy.ShowTables(); + break; + case 607: + this.$ = new yy.ShowTables({like: $$[$0]}); + break; + case 608: + this.$ = new yy.ShowTables({databaseid: $$[$0]}); + break; + case 609: + this.$ = new yy.ShowTables({like: $$[$0], databaseid: $$[$0 - 2]}); + break; + case 610: + this.$ = new yy.ShowColumns({table: $$[$0]}); + break; + case 611: + this.$ = new yy.ShowColumns({table: $$[$0 - 2], databaseid: $$[$0]}); + break; + case 612: + this.$ = new yy.ShowIndex({table: $$[$0]}); + break; + case 613: + this.$ = new yy.ShowIndex({table: $$[$0 - 2], databaseid: $$[$0]}); + break; + case 614: + this.$ = new yy.ShowCreateTable({table: $$[$0]}); + break; + case 615: + this.$ = new yy.ShowCreateTable({table: $$[$0 - 2], databaseid: $$[$0]}); + break; + case 616: + this.$ = new yy.CreateTable({ + table: $$[$0 - 6], + view: true, + select: $$[$0 - 1], + viewcolumns: $$[$0 - 4], + }); + yy.extend(this.$, $$[$0 - 9]); + yy.extend(this.$, $$[$0 - 7]); + + break; + case 617: + this.$ = new yy.CreateTable({table: $$[$0 - 3], view: true, select: $$[$0 - 1]}); + yy.extend(this.$, $$[$0 - 6]); + yy.extend(this.$, $$[$0 - 4]); + + break; + case 621: + this.$ = new yy.DropTable({tables: $$[$0], view: true}); + yy.extend(this.$, $$[$0 - 1]); + break; + case 622: + case 768: + this.$ = new yy.ExpressionStatement({expression: $$[$0]}); + break; + case 623: + this.$ = new yy.Source({url: $$[$0].value}); + break; + case 624: + this.$ = new yy.Assert({value: $$[$0]}); + break; + case 625: + this.$ = new yy.Assert({value: $$[$0].value}); + break; + case 626: + this.$ = new yy.Assert({value: $$[$0], message: $$[$0 - 2]}); + break; + case 628: + case 639: + case 641: + this.$ = $$[$0].value; + break; + case 629: + case 637: + this.$ = +$$[$0].value; + break; + case 630: + this.$ = !!$$[$0].value; + break; + case 638: + this.$ = '' + $$[$0].value; + break; + case 647: + this.$ = {}; + break; + case 650: + this.$ = []; + break; + case 651: + yy.extend($$[$0 - 2], $$[$0]); + this.$ = $$[$0 - 2]; + break; + case 653: + this.$ = {}; + this.$[$$[$0 - 2].substr(1, $$[$0 - 2].length - 2)] = $$[$0]; + break; + case 654: + case 655: + this.$ = {}; + this.$[$$[$0 - 2]] = $$[$0]; + break; + case 658: + this.$ = new yy.SetVariable({variable: $$[$0 - 2].toLowerCase(), value: $$[$0]}); + break; + case 659: + this.$ = new yy.SetVariable({variable: $$[$0 - 1].toLowerCase(), value: $$[$0]}); + break; + case 660: + this.$ = new yy.SetVariable({variable: $$[$0 - 2], expression: $$[$0]}); + break; + case 661: + this.$ = new yy.SetVariable({ + variable: $$[$0 - 3], + props: $$[$0 - 2], + expression: $$[$0], + }); + break; + case 662: + this.$ = new yy.SetVariable({ + variable: $$[$0 - 2], + expression: $$[$0], + method: $$[$0 - 3], + }); + break; + case 663: + this.$ = new yy.SetVariable({ + variable: $$[$0 - 3], + props: $$[$0 - 2], + expression: $$[$0], + method: $$[$0 - 4], + }); + break; + case 664: + this.$ = '@'; + break; + case 665: + this.$ = '$'; + break; + case 671: + this.$ = true; + break; + case 672: + this.$ = false; + break; + case 673: + this.$ = new yy.CommitTransaction(); + break; + case 674: + this.$ = new yy.RollbackTransaction(); + break; + case 675: + this.$ = new yy.BeginTransaction(); + break; + case 676: + this.$ = new yy.If({expression: $$[$0 - 2], thenstat: $$[$0 - 1], elsestat: $$[$0]}); + if ($$[$0 - 1].exists) this.$.exists = $$[$0 - 1].exists; + if ($$[$0 - 1].queries) this.$.queries = $$[$0 - 1].queries; + + break; + case 677: + this.$ = new yy.If({expression: $$[$0 - 1], thenstat: $$[$0]}); + if ($$[$0].exists) this.$.exists = $$[$0].exists; + if ($$[$0].queries) this.$.queries = $$[$0].queries; + + break; + case 678: + this.$ = $$[$0]; + break; + case 679: + this.$ = new yy.While({expression: $$[$0 - 1], loopstat: $$[$0]}); + if ($$[$0].exists) this.$.exists = $$[$0].exists; + if ($$[$0].queries) this.$.queries = $$[$0].queries; + + break; + case 680: + this.$ = new yy.Continue(); + break; + case 681: + this.$ = new yy.Break(); + break; + case 682: + this.$ = new yy.BeginEnd({statements: $$[$0 - 1]}); + break; + case 683: + this.$ = new yy.Print({exprs: $$[$0]}); + break; + case 684: + this.$ = new yy.Print({select: $$[$0]}); + break; + case 685: + this.$ = new yy.Require({paths: $$[$0]}); + break; + case 686: + this.$ = new yy.Require({plugins: $$[$0]}); + break; + case 687: + case 688: + this.$ = $$[$0].toUpperCase(); + break; + case 689: + this.$ = new yy.Echo({expr: $$[$0]}); + break; + case 694: + this.$ = new yy.Declare({declares: $$[$0]}); + break; + case 697: + this.$ = {variable: $$[$0 - 1]}; + yy.extend(this.$, $$[$0]); + break; + case 698: + this.$ = {variable: $$[$0 - 2]}; + yy.extend(this.$, $$[$0]); + break; + case 699: + this.$ = {variable: $$[$0 - 3], expression: $$[$0]}; + yy.extend(this.$, $$[$0 - 2]); + break; + case 700: + this.$ = {variable: $$[$0 - 4], expression: $$[$0]}; + yy.extend(this.$, $$[$0 - 2]); + break; + case 701: + this.$ = new yy.TruncateTable({table: $$[$0]}); + break; + case 702: + this.$ = new yy.Merge(); + yy.extend(this.$, $$[$0 - 4]); + yy.extend(this.$, $$[$0 - 3]); + yy.extend(this.$, $$[$0 - 2]); + yy.extend(this.$, {matches: $$[$0 - 1]}); + yy.extend(this.$, $$[$0]); + + break; + case 703: + case 704: + this.$ = {into: $$[$0]}; + break; + case 706: + this.$ = {on: $$[$0]}; + break; + case 711: + this.$ = {matched: true, action: $$[$0]}; + break; + case 712: + this.$ = {matched: true, expr: $$[$0 - 2], action: $$[$0]}; + break; + case 713: + this.$ = {delete: true}; + break; + case 714: + this.$ = {update: $$[$0]}; + break; + case 715: + case 716: + this.$ = {matched: false, bytarget: true, action: $$[$0]}; + break; + case 717: + case 718: + this.$ = {matched: false, bytarget: true, expr: $$[$0 - 2], action: $$[$0]}; + break; + case 719: + this.$ = {matched: false, bysource: true, action: $$[$0]}; + break; + case 720: + this.$ = {matched: false, bysource: true, expr: $$[$0 - 2], action: $$[$0]}; + break; + case 721: + this.$ = {insert: true, values: $$[$0]}; + break; + case 722: + this.$ = {insert: true, values: $$[$0], columns: $$[$0 - 3]}; + break; + case 723: + this.$ = {insert: true, defaultvalues: true}; + break; + case 724: + this.$ = {insert: true, defaultvalues: true, columns: $$[$0 - 3]}; + break; + case 726: + this.$ = {output: {columns: $$[$0]}}; + break; + case 727: + this.$ = {output: {columns: $$[$0 - 3], intovar: $$[$0], method: $$[$0 - 1]}}; + break; + case 728: + this.$ = {output: {columns: $$[$0 - 2], intotable: $$[$0]}}; + break; + case 729: + this.$ = { + output: {columns: $$[$0 - 5], intotable: $$[$0 - 3], intocolumns: $$[$0 - 1]}, + }; + break; + case 730: + this.$ = new yy.CreateVertex({class: $$[$0 - 3], sharp: $$[$0 - 2], name: $$[$0 - 1]}); + yy.extend(this.$, $$[$0]); + + break; + case 733: + this.$ = {sets: $$[$0]}; + break; + case 734: + this.$ = {content: $$[$0]}; + break; + case 735: + this.$ = {select: $$[$0]}; + break; + case 736: + this.$ = new yy.CreateEdge({from: $$[$0 - 3], to: $$[$0 - 1], name: $$[$0 - 5]}); + yy.extend(this.$, $$[$0]); + + break; + case 737: + this.$ = new yy.CreateGraph({graph: $$[$0]}); + break; + case 738: + this.$ = new yy.CreateGraph({from: $$[$0]}); + break; + case 741: + this.$ = $$[$0 - 2]; + if ($$[$0 - 1]) this.$.json = new yy.Json({value: $$[$0 - 1]}); + if ($$[$0]) this.$.as = $$[$0]; + + break; + case 742: + this.$ = {source: $$[$0 - 6], target: $$[$0]}; + if ($$[$0 - 3]) this.$.json = new yy.Json({value: $$[$0 - 3]}); + if ($$[$0 - 2]) this.$.as = $$[$0 - 2]; + yy.extend(this.$, $$[$0 - 4]); + + break; + case 743: + this.$ = {source: $$[$0 - 5], target: $$[$0]}; + if ($$[$0 - 2]) this.$.json = new yy.Json({value: $$[$0 - 3]}); + if ($$[$0 - 1]) this.$.as = $$[$0 - 2]; + + break; + case 744: + this.$ = {source: $$[$0 - 2], target: $$[$0]}; + + break; + case 748: + this.$ = {vars: $$[$0], method: $$[$0 - 1]}; + break; + case 751: + case 752: + var s3 = $$[$0 - 1]; + this.$ = { + prop: $$[$0 - 3], + sharp: $$[$0 - 2], + name: typeof s3 == 'undefined' ? undefined : s3.substr(1, s3.length - 2), + class: $$[$0], + }; + + break; + case 753: + var s2 = $$[$0 - 1]; + this.$ = { + sharp: $$[$0 - 2], + name: typeof s2 == 'undefined' ? undefined : s2.substr(1, s2.length - 2), + class: $$[$0], + }; + + break; + case 754: + var s1 = $$[$0 - 1]; + this.$ = { + name: typeof s1 == 'undefined' ? undefined : s1.substr(1, s1.length - 2), + class: $$[$0], + }; + + break; + case 755: + this.$ = {class: $$[$0]}; + + break; + case 761: + this.$ = new yy.AddRule({left: $$[$0 - 2], right: $$[$0]}); + break; + case 762: + this.$ = new yy.AddRule({right: $$[$0]}); + break; + case 765: + this.$ = {termid: $$[$0]}; + break; + case 766: + this.$ = {termid: $$[$0 - 3], args: $$[$0 - 1]}; + break; + case 769: + this.$ = new yy.CreateTrigger({ + trigger: $$[$0 - 6], + when: $$[$0 - 5], + action: $$[$0 - 4], + table: $$[$0 - 2], + statement: $$[$0], + }); + if ($$[$0].exists) this.$.exists = $$[$0].exists; + if ($$[$0].queries) this.$.queries = $$[$0].queries; + + break; + case 770: + this.$ = new yy.CreateTrigger({ + trigger: $$[$0 - 5], + when: $$[$0 - 4], + action: $$[$0 - 3], + table: $$[$0 - 1], + funcid: $$[$0], + }); + + break; + case 771: + this.$ = new yy.CreateTrigger({ + trigger: $$[$0 - 6], + when: $$[$0 - 4], + action: $$[$0 - 3], + table: $$[$0 - 5], + statement: $$[$0], + }); + if ($$[$0].exists) this.$.exists = $$[$0].exists; + if ($$[$0].queries) this.$.queries = $$[$0].queries; + + break; + case 772: + case 773: + case 775: + this.$ = 'AFTER'; + break; + case 774: + this.$ = 'BEFORE'; + break; + case 776: + this.$ = 'INSTEADOF'; + break; + case 777: + this.$ = 'INSERT'; + break; + case 778: + this.$ = 'DELETE'; + break; + case 779: + this.$ = 'UPDATE'; + break; + case 780: + this.$ = new yy.DropTrigger({trigger: $$[$0]}); + break; + case 781: + this.$ = new yy.Reindex({indexid: $$[$0]}); + break; + case 1055: + case 1075: + case 1077: + case 1079: + case 1083: + case 1085: + case 1087: + case 1089: + case 1091: + case 1093: + this.$ = []; + break; + case 1056: + case 1070: + case 1072: + case 1076: + case 1078: + case 1080: + case 1084: + case 1086: + case 1088: + case 1090: + case 1092: + case 1094: + $$[$0 - 1].push($$[$0]); + break; + case 1069: + case 1071: + this.$ = [$$[$0]]; + break; + } + }, + table: [ + o([10, 607, 768], $V0, { + 8: 1, + 9: 2, + 12: 3, + 13: 4, + 17: 5, + 18: 7, + 19: 8, + 20: 9, + 21: 10, + 22: 11, + 23: 12, + 24: 13, + 25: 14, + 26: 15, + 27: 16, + 28: 17, + 29: 18, + 30: 19, + 31: 20, + 32: 21, + 33: 22, + 34: 23, + 35: 24, + 36: 25, + 37: 26, + 38: 27, + 39: 28, + 40: 29, + 41: 30, + 42: 31, + 43: 32, + 44: 33, + 45: 34, + 46: 35, + 47: 36, + 48: 37, + 49: 38, + 50: 39, + 51: 40, + 52: 41, + 54: 43, + 55: 44, + 56: 45, + 57: 46, + 58: 47, + 59: 48, + 60: 49, + 61: 50, + 62: 51, + 63: 52, + 64: 53, + 65: 54, + 66: 55, + 67: 56, + 68: 57, + 69: 58, + 70: 59, + 71: 60, + 79: 75, + 509: 95, + 184: 99, + 3: 100, + 2: $V1, + 4: $V2, + 5: $V3, + 14: $V4, + 53: $V5, + 72: $V6, + 89: $V7, + 124: $V8, + 146: $V9, + 156: $Va, + 189: $Vb, + 271: $Vc, + 272: $Vd, + 294: $Ve, + 340: $Vf, + 343: $Vg, + 344: $Vh, + 401: $Vi, + 405: $Vj, + 406: $Vk, + 409: $Vl, + 411: $Vm, + 413: $Vn, + 414: $Vo, + 422: $Vp, + 423: $Vq, + 439: $Vr, + 441: $Vs, + 442: $Vt, + 444: $Vu, + 445: $Vv, + 446: $Vw, + 447: $Vx, + 448: $Vy, + 452: $Vz, + 453: $VA, + 456: $VB, + 457: $VC, + 510: $VD, + 512: $VE, + 513: $VF, + 522: $VG, + }), + {1: [3]}, + {10: [1, 105], 11: 106, 607: $VH, 768: $VI}, + o($VJ, [2, 8]), + o($VJ, [2, 9]), + o($VK, [2, 12]), + o($VJ, $V0, { + 17: 5, + 18: 7, + 19: 8, + 20: 9, + 21: 10, + 22: 11, + 23: 12, + 24: 13, + 25: 14, + 26: 15, + 27: 16, + 28: 17, + 29: 18, + 30: 19, + 31: 20, + 32: 21, + 33: 22, + 34: 23, + 35: 24, + 36: 25, + 37: 26, + 38: 27, + 39: 28, + 40: 29, + 41: 30, + 42: 31, + 43: 32, + 44: 33, + 45: 34, + 46: 35, + 47: 36, + 48: 37, + 49: 38, + 50: 39, + 51: 40, + 52: 41, + 54: 43, + 55: 44, + 56: 45, + 57: 46, + 58: 47, + 59: 48, + 60: 49, + 61: 50, + 62: 51, + 63: 52, + 64: 53, + 65: 54, + 66: 55, + 67: 56, + 68: 57, + 69: 58, + 70: 59, + 71: 60, + 79: 75, + 509: 95, + 184: 99, + 3: 100, + 12: 109, + 2: $V1, + 4: $V2, + 5: $V3, + 15: [1, 110], + 53: $V5, + 72: $V6, + 89: $V7, + 124: $V8, + 146: $V9, + 156: $Va, + 189: $Vb, + 271: $Vc, + 272: $Vd, + 294: $Ve, + 340: $Vf, + 343: $Vg, + 344: $Vh, + 401: $Vi, + 405: $Vj, + 406: $Vk, + 409: $Vl, + 411: $Vm, + 413: $Vn, + 414: $Vo, + 422: $Vp, + 423: $Vq, + 439: $Vr, + 441: $Vs, + 442: $Vt, + 444: $Vu, + 445: $Vv, + 446: $Vw, + 447: $Vx, + 448: $Vy, + 452: $Vz, + 453: $VA, + 456: $VB, + 457: $VC, + 510: $VD, + 512: $VE, + 513: $VF, + 522: $VG, + }), + o($VK, [2, 14]), + o($VK, [2, 15]), + o($VK, [2, 16]), + o($VK, [2, 17]), + o($VK, [2, 18]), + o($VK, [2, 19]), + o($VK, [2, 20]), + o($VK, [2, 21]), + o($VK, [2, 22]), + o($VK, [2, 23]), + o($VK, [2, 24]), + o($VK, [2, 25]), + o($VK, [2, 26]), + o($VK, [2, 27]), + o($VK, [2, 28]), + o($VK, [2, 29]), + o($VK, [2, 30]), + o($VK, [2, 31]), + o($VK, [2, 32]), + o($VK, [2, 33]), + o($VK, [2, 34]), + o($VK, [2, 35]), + o($VK, [2, 36]), + o($VK, [2, 37]), + o($VK, [2, 38]), + o($VK, [2, 39]), + o($VK, [2, 40]), + o($VK, [2, 41]), + o($VK, [2, 42]), + o($VK, [2, 43]), + o($VK, [2, 44]), + o($VK, [2, 45]), + o($VK, [2, 46]), + o($VK, [2, 47]), + o($VK, [2, 48]), + o($VK, [2, 49]), + o($VK, [2, 50]), + o($VK, [2, 51]), + o($VK, [2, 52]), + o($VK, [2, 53]), + o($VK, [2, 54]), + o($VK, [2, 55]), + o($VK, [2, 56]), + o($VK, [2, 57]), + o($VK, [2, 58]), + o($VK, [2, 59]), + o($VK, [2, 60]), + o($VK, [2, 61]), + o($VK, [2, 62]), + o($VK, [2, 63]), + o($VK, [2, 64]), + o($VK, [2, 65]), + o($VK, [2, 66]), + o($VK, [2, 67]), + {358: [1, 111]}, + {2: $V1, 3: 112, 4: $V2, 5: $V3}, + { + 2: $V1, + 3: 114, + 4: $V2, + 5: $V3, + 156: $VL, + 200: 113, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + }, + o($VS, [2, 509], { + 3: 123, + 353: 127, + 2: $V1, + 4: $V2, + 5: $V3, + 134: $VT, + 135: $VU, + 187: [1, 125], + 193: [1, 124], + 273: [1, 131], + 274: [1, 132], + 362: [1, 133], + 410: [1, 122], + 477: [1, 126], + 514: [1, 130], + }), + {145: $VV, 454: 134, 455: 135}, + {183: [1, 137]}, + {410: [1, 138]}, + { + 2: $V1, + 3: 140, + 4: $V2, + 5: $V3, + 130: [1, 146], + 193: [1, 141], + 358: [1, 145], + 402: 142, + 410: [1, 139], + 415: [1, 143], + 514: [1, 144], + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 147, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vx1, $Vy1, {345: 208, 171: [1, 209], 198: $Vz1}), + o($Vx1, $Vy1, {345: 211, 198: $Vz1}), + { + 2: $V1, + 3: 223, + 4: $V2, + 5: $V3, + 77: $VA1, + 132: $VB1, + 143: $V_, + 144: 216, + 145: $V$, + 152: $V11, + 156: $VL, + 181: $V51, + 198: [1, 214], + 199: 217, + 200: 219, + 201: 218, + 202: 221, + 209: 213, + 213: $VC1, + 214: 222, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + 458: 212, + }, + {2: $V1, 3: 225, 4: $V2, 5: $V3}, + {358: [1, 226]}, + o($VD1, [2, 1051], {80: 227, 106: 228, 107: [1, 229]}), + o($VE1, [2, 1055], {90: 230}), + { + 2: $V1, + 3: 234, + 4: $V2, + 5: $V3, + 190: [1, 232], + 193: [1, 235], + 272: [1, 231], + 358: [1, 236], + 410: [1, 233], + }, + {358: [1, 237]}, + {2: $V1, 3: 240, 4: $V2, 5: $V3, 73: 238, 75: 239}, + o([311, 607, 768], $V0, { + 12: 3, + 13: 4, + 17: 5, + 18: 7, + 19: 8, + 20: 9, + 21: 10, + 22: 11, + 23: 12, + 24: 13, + 25: 14, + 26: 15, + 27: 16, + 28: 17, + 29: 18, + 30: 19, + 31: 20, + 32: 21, + 33: 22, + 34: 23, + 35: 24, + 36: 25, + 37: 26, + 38: 27, + 39: 28, + 40: 29, + 41: 30, + 42: 31, + 43: 32, + 44: 33, + 45: 34, + 46: 35, + 47: 36, + 48: 37, + 49: 38, + 50: 39, + 51: 40, + 52: 41, + 54: 43, + 55: 44, + 56: 45, + 57: 46, + 58: 47, + 59: 48, + 60: 49, + 61: 50, + 62: 51, + 63: 52, + 64: 53, + 65: 54, + 66: 55, + 67: 56, + 68: 57, + 69: 58, + 70: 59, + 71: 60, + 79: 75, + 509: 95, + 184: 99, + 3: 100, + 9: 242, + 2: $V1, + 4: $V2, + 5: $V3, + 14: $V4, + 53: $V5, + 72: $V6, + 89: $V7, + 124: $V8, + 146: $V9, + 156: $Va, + 189: $Vb, + 271: $Vc, + 272: $Vd, + 294: $Ve, + 340: $Vf, + 343: $Vg, + 344: $Vh, + 401: $Vi, + 405: $Vj, + 406: $Vk, + 409: $Vl, + 411: $Vm, + 413: $Vn, + 414: $Vo, + 422: $Vp, + 423: $Vq, + 439: $Vr, + 440: [1, 241], + 441: $Vs, + 442: $Vt, + 444: $Vu, + 445: $Vv, + 446: $Vw, + 447: $Vx, + 448: $Vy, + 452: $Vz, + 453: $VA, + 456: $VB, + 457: $VC, + 510: $VD, + 512: $VE, + 513: $VF, + 522: $VG, + }), + {440: [1, 243]}, + {440: [1, 244]}, + {2: $V1, 3: 246, 4: $V2, 5: $V3, 410: [1, 245]}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 247}, + o($VF1, [2, 315]), + {113: 249, 132: $VY, 301: $Vn1}, + { + 2: $V1, + 3: 114, + 4: $V2, + 5: $V3, + 113: 255, + 131: $VX, + 132: [1, 252], + 143: $V_, + 144: 250, + 145: $VG1, + 152: $V11, + 156: $VL, + 181: $V51, + 196: 254, + 200: 259, + 201: 258, + 261: 256, + 262: 257, + 269: $VH1, + 270: $VI1, + 279: 251, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 262, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VK, [2, 680]), + o($VK, [2, 681]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 40: 264, + 56: 167, + 77: $VW, + 79: 75, + 89: $V7, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 263, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 184: 99, + 189: $Vb, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 271, + 4: $V2, + 5: $V3, + 113: 268, + 132: $VY, + 301: $Vn1, + 449: 266, + 450: 267, + 451: 269, + 452: $VJ1, + }, + {2: $V1, 3: 272, 4: $V2, 5: $V3, 143: $VK1, 145: $VL1, 436: 273}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 276, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {510: [1, 277]}, + {2: $V1, 3: 100, 4: $V2, 5: $V3, 509: 279, 511: 278}, + { + 2: $V1, + 3: 114, + 4: $V2, + 5: $V3, + 156: $VL, + 200: 280, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 281, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VM1, $VN1, {186: 285, 164: [1, 284], 185: [1, 282], 187: [1, 283], 195: $VO1}), + o($VP1, [2, 765], {77: [1, 287]}), + o( + [ + 2, 4, 5, 10, 72, 77, 78, 93, 98, 107, 118, 128, 131, 132, 137, 143, 145, 152, 154, 156, + 162, 164, 168, 169, 179, 180, 181, 183, 185, 187, 195, 198, 232, 244, 245, 249, 251, + 269, 270, 271, 275, 276, 278, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, + 297, 298, 299, 300, 301, 302, 303, 304, 307, 308, 311, 315, 317, 322, 425, 429, 607, + 768, + ], + [2, 152], + { + 149: [1, 288], + 150: [1, 289], + 190: [1, 290], + 191: [1, 291], + 192: [1, 292], + 193: [1, 293], + 194: [1, 294], + } + ), + o($VQ1, [2, 1]), + o($VQ1, [2, 2]), + { + 6: 295, + 131: [1, 444], + 172: [1, 467], + 243: [1, 443], + 244: [1, 378], + 245: [1, 412], + 249: [1, 416], + 375: [1, 409], + 386: [1, 300], + 407: [1, 302], + 415: [1, 554], + 419: [1, 476], + 421: [1, 448], + 422: [1, 514], + 438: [1, 447], + 440: [1, 530], + 445: [1, 347], + 465: [1, 423], + 469: [1, 453], + 475: [1, 346], + 519: [1, 312], + 520: [1, 304], + 521: [1, 404], + 523: [1, 296], + 524: [1, 297], + 525: [1, 298], + 526: [1, 299], + 527: [1, 301], + 528: [1, 303], + 529: [1, 305], + 530: [1, 306], + 531: [1, 307], + 532: [1, 308], + 533: [1, 309], + 534: [1, 310], + 535: [1, 311], + 536: [1, 313], + 537: [1, 314], + 538: [1, 315], + 539: [1, 316], + 540: [1, 317], + 541: [1, 318], + 542: [1, 319], + 543: [1, 320], + 544: [1, 321], + 545: [1, 322], + 546: [1, 323], + 547: [1, 324], + 548: [1, 325], + 549: [1, 326], + 550: [1, 327], + 551: [1, 328], + 552: [1, 329], + 553: [1, 330], + 554: [1, 331], + 555: [1, 332], + 556: [1, 333], + 557: [1, 334], + 558: [1, 335], + 559: [1, 336], + 560: [1, 337], + 561: [1, 338], + 562: [1, 339], + 563: [1, 340], + 564: [1, 341], + 565: [1, 342], + 566: [1, 343], + 567: [1, 344], + 568: [1, 345], + 569: [1, 348], + 570: [1, 349], + 571: [1, 350], + 572: [1, 351], + 573: [1, 352], + 574: [1, 353], + 575: [1, 354], + 576: [1, 355], + 577: [1, 356], + 578: [1, 357], + 579: [1, 358], + 580: [1, 359], + 581: [1, 360], + 582: [1, 361], + 583: [1, 362], + 584: [1, 363], + 585: [1, 364], + 586: [1, 365], + 587: [1, 366], + 588: [1, 367], + 589: [1, 368], + 590: [1, 369], + 591: [1, 370], + 592: [1, 371], + 593: [1, 372], + 594: [1, 373], + 595: [1, 374], + 596: [1, 375], + 597: [1, 376], + 598: [1, 377], + 599: [1, 379], + 600: [1, 380], + 601: [1, 381], + 602: [1, 382], + 603: [1, 383], + 604: [1, 384], + 605: [1, 385], + 606: [1, 386], + 607: [1, 387], + 608: [1, 388], + 609: [1, 389], + 610: [1, 390], + 611: [1, 391], + 612: [1, 392], + 613: [1, 393], + 614: [1, 394], + 615: [1, 395], + 616: [1, 396], + 617: [1, 397], + 618: [1, 398], + 619: [1, 399], + 620: [1, 400], + 621: [1, 401], + 622: [1, 402], + 623: [1, 403], + 624: [1, 405], + 625: [1, 406], + 626: [1, 407], + 627: [1, 408], + 628: [1, 410], + 629: [1, 411], + 630: [1, 413], + 631: [1, 414], + 632: [1, 415], + 633: [1, 417], + 634: [1, 418], + 635: [1, 419], + 636: [1, 420], + 637: [1, 421], + 638: [1, 422], + 639: [1, 424], + 640: [1, 425], + 641: [1, 426], + 642: [1, 427], + 643: [1, 428], + 644: [1, 429], + 645: [1, 430], + 646: [1, 431], + 647: [1, 432], + 648: [1, 433], + 649: [1, 434], + 650: [1, 435], + 651: [1, 436], + 652: [1, 437], + 653: [1, 438], + 654: [1, 439], + 655: [1, 440], + 656: [1, 441], + 657: [1, 442], + 658: [1, 445], + 659: [1, 446], + 660: [1, 449], + 661: [1, 450], + 662: [1, 451], + 663: [1, 452], + 664: [1, 454], + 665: [1, 455], + 666: [1, 456], + 667: [1, 457], + 668: [1, 458], + 669: [1, 459], + 670: [1, 460], + 671: [1, 461], + 672: [1, 462], + 673: [1, 463], + 674: [1, 464], + 675: [1, 465], + 676: [1, 466], + 677: [1, 468], + 678: [1, 469], + 679: [1, 470], + 680: [1, 471], + 681: [1, 472], + 682: [1, 473], + 683: [1, 474], + 684: [1, 475], + 685: [1, 477], + 686: [1, 478], + 687: [1, 479], + 688: [1, 480], + 689: [1, 481], + 690: [1, 482], + 691: [1, 483], + 692: [1, 484], + 693: [1, 485], + 694: [1, 486], + 695: [1, 487], + 696: [1, 488], + 697: [1, 489], + 698: [1, 490], + 699: [1, 491], + 700: [1, 492], + 701: [1, 493], + 702: [1, 494], + 703: [1, 495], + 704: [1, 496], + 705: [1, 497], + 706: [1, 498], + 707: [1, 499], + 708: [1, 500], + 709: [1, 501], + 710: [1, 502], + 711: [1, 503], + 712: [1, 504], + 713: [1, 505], + 714: [1, 506], + 715: [1, 507], + 716: [1, 508], + 717: [1, 509], + 718: [1, 510], + 719: [1, 511], + 720: [1, 512], + 721: [1, 513], + 722: [1, 515], + 723: [1, 516], + 724: [1, 517], + 725: [1, 518], + 726: [1, 519], + 727: [1, 520], + 728: [1, 521], + 729: [1, 522], + 730: [1, 523], + 731: [1, 524], + 732: [1, 525], + 733: [1, 526], + 734: [1, 527], + 735: [1, 528], + 736: [1, 529], + 737: [1, 531], + 738: [1, 532], + 739: [1, 533], + 740: [1, 534], + 741: [1, 535], + 742: [1, 536], + 743: [1, 537], + 744: [1, 538], + 745: [1, 539], + 746: [1, 540], + 747: [1, 541], + 748: [1, 542], + 749: [1, 543], + 750: [1, 544], + 751: [1, 545], + 752: [1, 546], + 753: [1, 547], + 754: [1, 548], + 755: [1, 549], + 756: [1, 550], + 757: [1, 551], + 758: [1, 552], + 759: [1, 553], + 760: [1, 555], + 761: [1, 556], + 762: [1, 557], + 763: [1, 558], + 764: [1, 559], + 765: [1, 560], + 766: [1, 561], + 767: [1, 562], + }, + {1: [2, 6]}, + o($VJ, $V0, { + 17: 5, + 18: 7, + 19: 8, + 20: 9, + 21: 10, + 22: 11, + 23: 12, + 24: 13, + 25: 14, + 26: 15, + 27: 16, + 28: 17, + 29: 18, + 30: 19, + 31: 20, + 32: 21, + 33: 22, + 34: 23, + 35: 24, + 36: 25, + 37: 26, + 38: 27, + 39: 28, + 40: 29, + 41: 30, + 42: 31, + 43: 32, + 44: 33, + 45: 34, + 46: 35, + 47: 36, + 48: 37, + 49: 38, + 50: 39, + 51: 40, + 52: 41, + 54: 43, + 55: 44, + 56: 45, + 57: 46, + 58: 47, + 59: 48, + 60: 49, + 61: 50, + 62: 51, + 63: 52, + 64: 53, + 65: 54, + 66: 55, + 67: 56, + 68: 57, + 69: 58, + 70: 59, + 71: 60, + 79: 75, + 509: 95, + 184: 99, + 3: 100, + 12: 563, + 2: $V1, + 4: $V2, + 5: $V3, + 53: $V5, + 72: $V6, + 89: $V7, + 124: $V8, + 146: $V9, + 156: $Va, + 189: $Vb, + 271: $Vc, + 272: $Vd, + 294: $Ve, + 340: $Vf, + 343: $Vg, + 344: $Vh, + 401: $Vi, + 405: $Vj, + 406: $Vk, + 409: $Vl, + 411: $Vm, + 413: $Vn, + 414: $Vo, + 422: $Vp, + 423: $Vq, + 439: $Vr, + 441: $Vs, + 442: $Vt, + 444: $Vu, + 445: $Vv, + 446: $Vw, + 447: $Vx, + 448: $Vy, + 452: $Vz, + 453: $VA, + 456: $VB, + 457: $VC, + 510: $VD, + 512: $VE, + 513: $VF, + 522: $VG, + }), + o($VR1, [2, 1049]), + o($VR1, [2, 1050]), + o($VJ, [2, 10]), + {16: [1, 564]}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 565}, + {410: [1, 566]}, + o($VK, [2, 768]), + {77: $VS1}, + {77: [1, 568]}, + {77: $VT1}, + {77: $VU1}, + {77: [1, 571]}, + {77: [1, 572]}, + {77: [1, 573]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 574, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vx1, $VV1, {355: 575, 156: $VW1}), + {410: [1, 577]}, + {2: $V1, 3: 578, 4: $V2, 5: $V3}, + {193: [1, 579]}, + { + 2: $V1, + 3: 585, + 4: $V2, + 5: $V3, + 132: $VX1, + 137: $VY1, + 143: $VK1, + 145: $VL1, + 152: $VZ1, + 183: [1, 581], + 436: 592, + 478: 580, + 479: 582, + 480: 583, + 483: 584, + 487: 589, + 498: 586, + 502: 588, + }, + {130: [1, 596], 354: 593, 358: [1, 595], 415: [1, 594]}, + {113: 598, 132: $VY, 183: [2, 1149], 301: $Vn1, 476: 597}, + o($V_1, [2, 1143], {470: 599, 3: 600, 2: $V1, 4: $V2, 5: $V3}), + {2: $V1, 3: 601, 4: $V2, 5: $V3}, + {4: [1, 602]}, + {4: [1, 603]}, + o($VS, [2, 510]), + o($VK, [2, 694], {74: [1, 604]}), + o($V$1, [2, 695]), + {2: $V1, 3: 605, 4: $V2, 5: $V3}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 606}, + {2: $V1, 3: 607, 4: $V2, 5: $V3}, + o($Vx1, $V02, {403: 608, 156: $V12}), + {410: [1, 610]}, + {2: $V1, 3: 611, 4: $V2, 5: $V3}, + o($Vx1, $V02, {403: 612, 156: $V12}), + o($Vx1, $V02, {403: 613, 156: $V12}), + {2: $V1, 3: 614, 4: $V2, 5: $V3}, + o($V22, [2, 1137]), + o($V22, [2, 1138]), + o($VK, $V0, { + 17: 5, + 18: 7, + 19: 8, + 20: 9, + 21: 10, + 22: 11, + 23: 12, + 24: 13, + 25: 14, + 26: 15, + 27: 16, + 28: 17, + 29: 18, + 30: 19, + 31: 20, + 32: 21, + 33: 22, + 34: 23, + 35: 24, + 36: 25, + 37: 26, + 38: 27, + 39: 28, + 40: 29, + 41: 30, + 42: 31, + 43: 32, + 44: 33, + 45: 34, + 46: 35, + 47: 36, + 48: 37, + 49: 38, + 50: 39, + 51: 40, + 52: 41, + 54: 43, + 55: 44, + 56: 45, + 57: 46, + 58: 47, + 59: 48, + 60: 49, + 61: 50, + 62: 51, + 63: 52, + 64: 53, + 65: 54, + 66: 55, + 67: 56, + 68: 57, + 69: 58, + 70: 59, + 71: 60, + 79: 75, + 509: 95, + 184: 99, + 3: 100, + 12: 615, + 114: 632, + 332: 644, + 2: $V1, + 4: $V2, + 5: $V3, + 53: $V5, + 72: $V6, + 89: $V7, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $V82, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 146: $V9, + 154: $Vg2, + 156: $Va, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 189: $Vb, + 271: $Vc, + 272: $Vd, + 294: $Ve, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + 340: $Vf, + 343: $Vg, + 344: $Vh, + 401: $Vi, + 405: $Vj, + 406: $Vk, + 409: $Vl, + 411: $Vm, + 413: $Vn, + 414: $Vo, + 422: $Vp, + 423: $Vq, + 439: $Vr, + 441: $Vs, + 442: $Vt, + 444: $Vu, + 445: $Vv, + 446: $Vw, + 447: $Vx, + 448: $Vy, + 452: $Vz, + 453: $VA, + 456: $VB, + 457: $VC, + 510: $VD, + 512: $VE, + 513: $VF, + 522: $VG, + }), + o($VF1, [2, 291]), + o($VF1, [2, 292]), + o($VF1, [2, 293]), + o($VF1, [2, 294]), + o($VF1, [2, 295]), + o($VF1, [2, 296]), + o($VF1, [2, 297]), + o($VF1, [2, 298]), + o($VF1, [2, 299]), + o($VF1, [2, 300]), + o($VF1, [2, 301]), + o($VF1, [2, 302]), + o($VF1, [2, 303]), + o($VF1, [2, 304]), + o($VF1, [2, 305]), + o($VF1, [2, 306]), + o($VF1, [2, 307]), + o($VF1, [2, 308]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 26: 661, + 27: 660, + 36: 656, + 40: 655, + 56: 167, + 77: $VW, + 79: 75, + 89: $V7, + 94: 658, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 184: 99, + 189: $Vb, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 268: 657, + 269: $V81, + 270: $V91, + 271: $Vc, + 272: [1, 662], + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: [1, 659], + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 344: $Vh, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VF1, [2, 312]), + o($VF1, [2, 313]), + o($VE2, [2, 314], {77: $VU1}), + {77: [1, 663]}, + o( + [ + 2, 4, 5, 10, 53, 72, 74, 76, 78, 89, 93, 95, 98, 99, 107, 112, 115, 118, 122, 123, 124, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, + 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, + 179, 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, + 229, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, + 291, 292, 294, 301, 305, 311, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, + 324, 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 401, 405, + 406, 409, 411, 413, 414, 422, 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, + 452, 453, 456, 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + $VF2, + {77: $VS1, 116: [1, 664]} + ), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 665, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 666, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 667, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 668, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 669, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VF1, [2, 286]), + o( + [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, + 123, 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, + 143, 145, 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, + 173, 175, 179, 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, + 227, 228, 229, 230, 231, 232, 239, 244, 245, 246, 247, 249, 251, 253, 269, 270, 271, + 272, 275, 276, 278, 285, 286, 287, 288, 289, 290, 291, 292, 294, 295, 296, 297, 298, + 299, 300, 301, 302, 303, 304, 305, 307, 308, 311, 313, 314, 315, 316, 317, 318, 319, + 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, + 343, 344, 348, 361, 373, 374, 378, 379, 401, 405, 406, 409, 411, 413, 414, 420, 422, + 423, 425, 429, 431, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 469, + 475, 510, 512, 513, 522, 607, 768, 769, 770, + ], + [2, 364] + ), + o($VG2, [2, 365]), + o($VG2, [2, 366]), + o($VG2, $VH2), + o($VG2, [2, 368]), + o( + [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, + 123, 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, + 143, 145, 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, + 173, 175, 179, 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, + 227, 228, 229, 230, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, + 288, 289, 290, 291, 292, 294, 301, 302, 305, 311, 313, 314, 315, 316, 317, 318, 319, + 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, + 343, 344, 348, 361, 373, 374, 378, 379, 401, 405, 406, 409, 411, 413, 414, 422, 423, + 425, 429, 431, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 469, 475, + 510, 512, 513, 522, 607, 768, + ], + [2, 369] + ), + {2: $V1, 3: 671, 4: $V2, 5: $V3, 131: [1, 672], 306: 670}, + {2: $V1, 3: 673, 4: $V2, 5: $V3}, + o($VG2, [2, 375]), + o($VG2, [2, 376]), + { + 2: $V1, + 3: 674, + 4: $V2, + 5: $V3, + 77: $VI2, + 113: 676, + 131: $VX, + 132: $VY, + 143: $V_, + 152: $V11, + 181: $V51, + 196: 677, + 201: 679, + 261: 678, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 307: $Vr1, + 424: 680, + 429: $Vw1, + }, + {77: [1, 681]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 682, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 309: 683, + 312: 684, + 313: $VJ2, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {77: [1, 686]}, + {77: [1, 687]}, + o($VK2, [2, 632]), + { + 2: $V1, + 3: 702, + 4: $V2, + 5: $V3, + 77: $VL2, + 111: 697, + 113: 695, + 131: $VX, + 132: $VY, + 143: $V_, + 144: 692, + 145: $VG1, + 152: $V11, + 156: $VL, + 181: $V51, + 196: 694, + 200: 700, + 201: 699, + 261: 696, + 262: 698, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 305: [1, 690], + 307: $Vr1, + 424: 193, + 425: $Vv1, + 426: 688, + 427: 691, + 428: 693, + 429: $Vw1, + 432: 689, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 703, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 704, + 4: $V2, + 5: $V3, + 156: $VL, + 200: 705, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + }, + {77: [2, 341]}, + {77: [2, 342]}, + {77: [2, 343]}, + {77: [2, 344]}, + {77: [2, 345]}, + {77: [2, 346]}, + {77: [2, 347]}, + {77: [2, 348]}, + {77: [2, 349]}, + {77: [2, 350]}, + {2: $V1, 3: 711, 4: $V2, 5: $V3, 131: $VM2, 132: $VN2, 430: 706, 431: [1, 707], 433: 708}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 712}, + {294: [1, 713]}, + o($Vx1, [2, 480]), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 714}, + {231: [1, 716], 459: 715}, + {231: [2, 703]}, + { + 2: $V1, + 3: 223, + 4: $V2, + 5: $V3, + 77: $VA1, + 132: $VB1, + 143: $V_, + 144: 216, + 145: $V$, + 152: $V11, + 156: $VL, + 181: $V51, + 199: 217, + 200: 219, + 201: 218, + 202: 221, + 209: 717, + 213: $VC1, + 214: 222, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {40: 718, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + o($VO2, [2, 1099], {210: 719, 76: [1, 720]}), + o($VP2, [2, 185], {3: 721, 2: $V1, 4: $V2, 5: $V3, 76: [1, 722], 154: [1, 723]}), + o($VP2, [2, 189], {3: 724, 2: $V1, 4: $V2, 5: $V3, 76: [1, 725]}), + o($VP2, [2, 190], {3: 726, 2: $V1, 4: $V2, 5: $V3, 76: [1, 727]}), + o($VP2, [2, 193]), + o($VP2, [2, 194], {3: 728, 2: $V1, 4: $V2, 5: $V3, 76: [1, 729]}), + o($VP2, [2, 197], {3: 730, 2: $V1, 4: $V2, 5: $V3, 76: [1, 731]}), + o( + [ + 2, 4, 5, 10, 72, 74, 76, 78, 93, 98, 118, 128, 154, 162, 168, 169, 183, 206, 208, 222, + 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 249, 251, 311, 315, 607, 768, + ], + $VQ2, + {77: $VS1, 116: $VR2} + ), + o( + [ + 2, 4, 5, 10, 72, 74, 76, 78, 93, 98, 118, 128, 162, 168, 169, 206, 208, 222, 223, 224, + 225, 226, 227, 228, 229, 230, 231, 232, 249, 251, 311, 315, 607, 768, + ], + [2, 200] + ), + o($VK, [2, 781]), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 733}, + o($VS2, $VT2, {81: 734, 198: $VU2}), + o($VD1, [2, 1052]), + o($VV2, [2, 1065], {108: 736, 190: [1, 737]}), + o([10, 78, 183, 311, 315, 607, 768], $VT2, { + 424: 193, + 81: 738, + 117: 739, + 3: 740, + 114: 743, + 144: 765, + 158: 775, + 160: 776, + 2: $V1, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 112: $VZ2, + 115: $V52, + 116: $V62, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 198: $VU2, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 425: $Vv1, + 429: $Vw1, + }), + {358: [1, 789]}, + {183: [1, 790]}, + o($VK, [2, 602], {112: [1, 791]}), + {410: [1, 792]}, + {183: [1, 793]}, + o($VK, [2, 606], {112: [1, 794], 183: [1, 795]}), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 796}, + {40: 797, 74: [1, 798], 79: 75, 89: $V7, 184: 99, 189: $Vb}, + o($VC3, [2, 70]), + {76: [1, 799]}, + o($VK, [2, 675]), + {11: 106, 311: [1, 800], 607: $VH, 768: $VI}, + o($VK, [2, 673]), + o($VK, [2, 674]), + {2: $V1, 3: 801, 4: $V2, 5: $V3}, + o($VK, [2, 595]), + {146: [1, 802]}, + o( + [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 95, 124, 128, 143, 145, 146, 148, 149, 152, + 154, 156, 181, 183, 187, 189, 230, 271, 272, 294, 302, 307, 311, 315, 340, 343, 344, + 348, 349, 361, 373, 374, 378, 379, 401, 405, 406, 407, 408, 409, 411, 413, 414, 422, + 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 510, 512, + 513, 519, 520, 521, 522, 607, 768, + ], + $VQ2, + {116: $VR2} + ), + o($VK, [2, 623]), + o($VK, [2, 624]), + o($VK, [2, 625]), + o($VK, $VH2, {74: [1, 803]}), + { + 77: $VI2, + 113: 676, + 131: $VX, + 132: $VY, + 143: $V_, + 152: $V11, + 181: $V51, + 196: 677, + 201: 679, + 261: 678, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 307: $Vr1, + 424: 680, + 429: $Vw1, + }, + o($VD3, [2, 324]), + o($VD3, [2, 325]), + o($VD3, [2, 326]), + o($VD3, [2, 327]), + o($VD3, [2, 328]), + o($VD3, [2, 329]), + o($VD3, [2, 330]), + o($VD3, [2, 331], {77: $VU1}), + o($VK, $V0, { + 17: 5, + 18: 7, + 19: 8, + 20: 9, + 21: 10, + 22: 11, + 23: 12, + 24: 13, + 25: 14, + 26: 15, + 27: 16, + 28: 17, + 29: 18, + 30: 19, + 31: 20, + 32: 21, + 33: 22, + 34: 23, + 35: 24, + 36: 25, + 37: 26, + 38: 27, + 39: 28, + 40: 29, + 41: 30, + 42: 31, + 43: 32, + 44: 33, + 45: 34, + 46: 35, + 47: 36, + 48: 37, + 49: 38, + 50: 39, + 51: 40, + 52: 41, + 54: 43, + 55: 44, + 56: 45, + 57: 46, + 58: 47, + 59: 48, + 60: 49, + 61: 50, + 62: 51, + 63: 52, + 64: 53, + 65: 54, + 66: 55, + 67: 56, + 68: 57, + 69: 58, + 70: 59, + 71: 60, + 79: 75, + 509: 95, + 184: 99, + 3: 100, + 114: 632, + 332: 644, + 12: 804, + 2: $V1, + 4: $V2, + 5: $V3, + 53: $V5, + 72: $V6, + 89: $V7, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $V82, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 146: $V9, + 154: $Vg2, + 156: $Va, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 189: $Vb, + 271: $Vc, + 272: $Vd, + 294: $Ve, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + 340: $Vf, + 343: $Vg, + 344: $Vh, + 401: $Vi, + 405: $Vj, + 406: $Vk, + 409: $Vl, + 411: $Vm, + 413: $Vn, + 414: $Vo, + 422: $Vp, + 423: $Vq, + 439: $Vr, + 441: $Vs, + 442: $Vt, + 444: $Vu, + 445: $Vv, + 446: $Vw, + 447: $Vx, + 448: $Vy, + 452: $Vz, + 453: $VA, + 456: $VB, + 457: $VC, + 510: $VD, + 512: $VE, + 513: $VF, + 522: $VG, + }), + o($VK, [2, 683], {74: $VE3}), + o($VK, [2, 684]), + o($VF3, [2, 362], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($VK, [2, 685], {74: [1, 807]}), + o($VK, [2, 686], {74: [1, 808]}), + o($V$1, [2, 691]), + o($V$1, [2, 693]), + o($V$1, [2, 687]), + o($V$1, [2, 688]), + {114: 814, 115: $V52, 116: $V62, 124: [1, 809], 230: $VH3, 434: 810, 435: 811, 438: $VI3}, + {2: $V1, 3: 815, 4: $V2, 5: $V3}, + o($Vx1, [2, 664]), + o($Vx1, [2, 665]), + o($VK, [2, 622], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + {2: $V1, 3: 100, 4: $V2, 5: $V3, 509: 279, 511: 816}, + o($VK, [2, 762], {74: $VJ3}), + o($VK3, [2, 764]), + o($VK, [2, 767]), + o($VK, [2, 689], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($VL3, $VN1, {186: 818, 195: $VO1}), + o($VL3, $VN1, {186: 819, 195: $VO1}), + o($VL3, $VN1, {186: 820, 195: $VO1}), + o($VM3, [2, 1095], { + 259: 148, + 200: 149, + 260: 150, + 111: 151, + 258: 152, + 196: 153, + 261: 154, + 113: 155, + 262: 156, + 201: 157, + 202: 158, + 263: 159, + 264: 160, + 265: 161, + 144: 163, + 266: 164, + 267: 165, + 56: 167, + 158: 170, + 3: 171, + 424: 193, + 188: 821, + 174: 822, + 257: 823, + 94: 824, + 2: $V1, + 4: $V2, + 5: $V3, + 77: $VW, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 179: $V31, + 180: $V41, + 181: $V51, + 244: $V61, + 245: $V71, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 425: $Vv1, + 429: $Vw1, + }), + {77: [1, 826], 131: $VX, 196: 825}, + {2: $V1, 3: 100, 4: $V2, 5: $V3, 509: 279, 511: 827}, + o($VN3, [2, 153]), + o($VN3, [2, 154]), + o($VN3, [2, 155]), + o($VN3, [2, 156]), + o($VN3, [2, 157]), + o($VN3, [2, 158]), + o($VN3, [2, 159]), + o($VQ1, [2, 3]), + o($VQ1, [2, 782]), + o($VQ1, [2, 783]), + o($VQ1, [2, 784]), + o($VQ1, [2, 785]), + o($VQ1, [2, 786]), + o($VQ1, [2, 787]), + o($VQ1, [2, 788]), + o($VQ1, [2, 789]), + o($VQ1, [2, 790]), + o($VQ1, [2, 791]), + o($VQ1, [2, 792]), + o($VQ1, [2, 793]), + o($VQ1, [2, 794]), + o($VQ1, [2, 795]), + o($VQ1, [2, 796]), + o($VQ1, [2, 797]), + o($VQ1, [2, 798]), + o($VQ1, [2, 799]), + o($VQ1, [2, 800]), + o($VQ1, [2, 801]), + o($VQ1, [2, 802]), + o($VQ1, [2, 803]), + o($VQ1, [2, 804]), + o($VQ1, [2, 805]), + o($VQ1, [2, 806]), + o($VQ1, [2, 807]), + o($VQ1, [2, 808]), + o($VQ1, [2, 809]), + o($VQ1, [2, 810]), + o($VQ1, [2, 811]), + o($VQ1, [2, 812]), + o($VQ1, [2, 813]), + o($VQ1, [2, 814]), + o($VQ1, [2, 815]), + o($VQ1, [2, 816]), + o($VQ1, [2, 817]), + o($VQ1, [2, 818]), + o($VQ1, [2, 819]), + o($VQ1, [2, 820]), + o($VQ1, [2, 821]), + o($VQ1, [2, 822]), + o($VQ1, [2, 823]), + o($VQ1, [2, 824]), + o($VQ1, [2, 825]), + o($VQ1, [2, 826]), + o($VQ1, [2, 827]), + o($VQ1, [2, 828]), + o($VQ1, [2, 829]), + o($VQ1, [2, 830]), + o($VQ1, [2, 831]), + o($VQ1, [2, 832]), + o($VQ1, [2, 833]), + o($VQ1, [2, 834]), + o($VQ1, [2, 835]), + o($VQ1, [2, 836]), + o($VQ1, [2, 837]), + o($VQ1, [2, 838]), + o($VQ1, [2, 839]), + o($VQ1, [2, 840]), + o($VQ1, [2, 841]), + o($VQ1, [2, 842]), + o($VQ1, [2, 843]), + o($VQ1, [2, 844]), + o($VQ1, [2, 845]), + o($VQ1, [2, 846]), + o($VQ1, [2, 847]), + o($VQ1, [2, 848]), + o($VQ1, [2, 849]), + o($VQ1, [2, 850]), + o($VQ1, [2, 851]), + o($VQ1, [2, 852]), + o($VQ1, [2, 853]), + o($VQ1, [2, 854]), + o($VQ1, [2, 855]), + o($VQ1, [2, 856]), + o($VQ1, [2, 857]), + o($VQ1, [2, 858]), + o($VQ1, [2, 859]), + o($VQ1, [2, 860]), + o($VQ1, [2, 861]), + o($VQ1, [2, 862]), + o($VQ1, [2, 863]), + o($VQ1, [2, 864]), + o($VQ1, [2, 865]), + o($VQ1, [2, 866]), + o($VQ1, [2, 867]), + o($VQ1, [2, 868]), + o($VQ1, [2, 869]), + o($VQ1, [2, 870]), + o($VQ1, [2, 871]), + o($VQ1, [2, 872]), + o($VQ1, [2, 873]), + o($VQ1, [2, 874]), + o($VQ1, [2, 875]), + o($VQ1, [2, 876]), + o($VQ1, [2, 877]), + o($VQ1, [2, 878]), + o($VQ1, [2, 879]), + o($VQ1, [2, 880]), + o($VQ1, [2, 881]), + o($VQ1, [2, 882]), + o($VQ1, [2, 883]), + o($VQ1, [2, 884]), + o($VQ1, [2, 885]), + o($VQ1, [2, 886]), + o($VQ1, [2, 887]), + o($VQ1, [2, 888]), + o($VQ1, [2, 889]), + o($VQ1, [2, 890]), + o($VQ1, [2, 891]), + o($VQ1, [2, 892]), + o($VQ1, [2, 893]), + o($VQ1, [2, 894]), + o($VQ1, [2, 895]), + o($VQ1, [2, 896]), + o($VQ1, [2, 897]), + o($VQ1, [2, 898]), + o($VQ1, [2, 899]), + o($VQ1, [2, 900]), + o($VQ1, [2, 901]), + o($VQ1, [2, 902]), + o($VQ1, [2, 903]), + o($VQ1, [2, 904]), + o($VQ1, [2, 905]), + o($VQ1, [2, 906]), + o($VQ1, [2, 907]), + o($VQ1, [2, 908]), + o($VQ1, [2, 909]), + o($VQ1, [2, 910]), + o($VQ1, [2, 911]), + o($VQ1, [2, 912]), + o($VQ1, [2, 913]), + o($VQ1, [2, 914]), + o($VQ1, [2, 915]), + o($VQ1, [2, 916]), + o($VQ1, [2, 917]), + o($VQ1, [2, 918]), + o($VQ1, [2, 919]), + o($VQ1, [2, 920]), + o($VQ1, [2, 921]), + o($VQ1, [2, 922]), + o($VQ1, [2, 923]), + o($VQ1, [2, 924]), + o($VQ1, [2, 925]), + o($VQ1, [2, 926]), + o($VQ1, [2, 927]), + o($VQ1, [2, 928]), + o($VQ1, [2, 929]), + o($VQ1, [2, 930]), + o($VQ1, [2, 931]), + o($VQ1, [2, 932]), + o($VQ1, [2, 933]), + o($VQ1, [2, 934]), + o($VQ1, [2, 935]), + o($VQ1, [2, 936]), + o($VQ1, [2, 937]), + o($VQ1, [2, 938]), + o($VQ1, [2, 939]), + o($VQ1, [2, 940]), + o($VQ1, [2, 941]), + o($VQ1, [2, 942]), + o($VQ1, [2, 943]), + o($VQ1, [2, 944]), + o($VQ1, [2, 945]), + o($VQ1, [2, 946]), + o($VQ1, [2, 947]), + o($VQ1, [2, 948]), + o($VQ1, [2, 949]), + o($VQ1, [2, 950]), + o($VQ1, [2, 951]), + o($VQ1, [2, 952]), + o($VQ1, [2, 953]), + o($VQ1, [2, 954]), + o($VQ1, [2, 955]), + o($VQ1, [2, 956]), + o($VQ1, [2, 957]), + o($VQ1, [2, 958]), + o($VQ1, [2, 959]), + o($VQ1, [2, 960]), + o($VQ1, [2, 961]), + o($VQ1, [2, 962]), + o($VQ1, [2, 963]), + o($VQ1, [2, 964]), + o($VQ1, [2, 965]), + o($VQ1, [2, 966]), + o($VQ1, [2, 967]), + o($VQ1, [2, 968]), + o($VQ1, [2, 969]), + o($VQ1, [2, 970]), + o($VQ1, [2, 971]), + o($VQ1, [2, 972]), + o($VQ1, [2, 973]), + o($VQ1, [2, 974]), + o($VQ1, [2, 975]), + o($VQ1, [2, 976]), + o($VQ1, [2, 977]), + o($VQ1, [2, 978]), + o($VQ1, [2, 979]), + o($VQ1, [2, 980]), + o($VQ1, [2, 981]), + o($VQ1, [2, 982]), + o($VQ1, [2, 983]), + o($VQ1, [2, 984]), + o($VQ1, [2, 985]), + o($VQ1, [2, 986]), + o($VQ1, [2, 987]), + o($VQ1, [2, 988]), + o($VQ1, [2, 989]), + o($VQ1, [2, 990]), + o($VQ1, [2, 991]), + o($VQ1, [2, 992]), + o($VQ1, [2, 993]), + o($VQ1, [2, 994]), + o($VQ1, [2, 995]), + o($VQ1, [2, 996]), + o($VQ1, [2, 997]), + o($VQ1, [2, 998]), + o($VQ1, [2, 999]), + o($VQ1, [2, 1000]), + o($VQ1, [2, 1001]), + o($VQ1, [2, 1002]), + o($VQ1, [2, 1003]), + o($VQ1, [2, 1004]), + o($VQ1, [2, 1005]), + o($VQ1, [2, 1006]), + o($VQ1, [2, 1007]), + o($VQ1, [2, 1008]), + o($VQ1, [2, 1009]), + o($VQ1, [2, 1010]), + o($VQ1, [2, 1011]), + o($VQ1, [2, 1012]), + o($VQ1, [2, 1013]), + o($VQ1, [2, 1014]), + o($VQ1, [2, 1015]), + o($VQ1, [2, 1016]), + o($VQ1, [2, 1017]), + o($VQ1, [2, 1018]), + o($VQ1, [2, 1019]), + o($VQ1, [2, 1020]), + o($VQ1, [2, 1021]), + o($VQ1, [2, 1022]), + o($VQ1, [2, 1023]), + o($VQ1, [2, 1024]), + o($VQ1, [2, 1025]), + o($VQ1, [2, 1026]), + o($VQ1, [2, 1027]), + o($VQ1, [2, 1028]), + o($VQ1, [2, 1029]), + o($VQ1, [2, 1030]), + o($VQ1, [2, 1031]), + o($VQ1, [2, 1032]), + o($VQ1, [2, 1033]), + o($VQ1, [2, 1034]), + o($VQ1, [2, 1035]), + o($VQ1, [2, 1036]), + o($VQ1, [2, 1037]), + o($VQ1, [2, 1038]), + o($VQ1, [2, 1039]), + o($VQ1, [2, 1040]), + o($VQ1, [2, 1041]), + o($VQ1, [2, 1042]), + o($VQ1, [2, 1043]), + o($VQ1, [2, 1044]), + o($VQ1, [2, 1045]), + o($VQ1, [2, 1046]), + o($VQ1, [2, 1047]), + o($VQ1, [2, 1048]), + o($VJ, [2, 7]), + o($VJ, $V0, { + 17: 5, + 18: 7, + 19: 8, + 20: 9, + 21: 10, + 22: 11, + 23: 12, + 24: 13, + 25: 14, + 26: 15, + 27: 16, + 28: 17, + 29: 18, + 30: 19, + 31: 20, + 32: 21, + 33: 22, + 34: 23, + 35: 24, + 36: 25, + 37: 26, + 38: 27, + 39: 28, + 40: 29, + 41: 30, + 42: 31, + 43: 32, + 44: 33, + 45: 34, + 46: 35, + 47: 36, + 48: 37, + 49: 38, + 50: 39, + 51: 40, + 52: 41, + 54: 43, + 55: 44, + 56: 45, + 57: 46, + 58: 47, + 59: 48, + 60: 49, + 61: 50, + 62: 51, + 63: 52, + 64: 53, + 65: 54, + 66: 55, + 67: 56, + 68: 57, + 69: 58, + 70: 59, + 71: 60, + 79: 75, + 509: 95, + 184: 99, + 3: 100, + 12: 828, + 2: $V1, + 4: $V2, + 5: $V3, + 53: $V5, + 72: $V6, + 89: $V7, + 124: $V8, + 146: $V9, + 156: $Va, + 189: $Vb, + 271: $Vc, + 272: $Vd, + 294: $Ve, + 340: $Vf, + 343: $Vg, + 344: $Vh, + 401: $Vi, + 405: $Vj, + 406: $Vk, + 409: $Vl, + 411: $Vm, + 413: $Vn, + 414: $Vo, + 422: $Vp, + 423: $Vq, + 439: $Vr, + 441: $Vs, + 442: $Vt, + 444: $Vu, + 445: $Vv, + 446: $Vw, + 447: $Vx, + 448: $Vy, + 452: $Vz, + 453: $VA, + 456: $VB, + 457: $VC, + 510: $VD, + 512: $VE, + 513: $VF, + 522: $VG, + }), + {401: [1, 832], 406: [1, 829], 407: [1, 830], 408: [1, 831]}, + {2: $V1, 3: 833, 4: $V2, 5: $V3}, + o($VL3, [2, 1119], {293: 834, 771: 836, 78: [1, 835], 164: [1, 838], 185: [1, 837]}), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 839, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 840, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {78: [1, 841]}, + {2: $V1, 3: 842, 4: $V2, 5: $V3, 132: [1, 843]}, + {2: $V1, 3: 844, 4: $V2, 5: $V3, 132: [1, 845]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 846, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 847, + 4: $V2, + 5: $V3, + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + {2: $V1, 3: 848, 4: $V2, 5: $V3}, + {154: [1, 849]}, + o($VO3, $VV1, {355: 850, 156: $VW1}), + {230: [1, 851]}, + {2: $V1, 3: 852, 4: $V2, 5: $V3}, + o($VK, [2, 737], {74: $VP3}), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 854, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VK3, [2, 740]), + o($VQ3, [2, 1151], { + 424: 193, + 481: 855, + 144: 856, + 139: $VR3, + 141: $VR3, + 145: $VG1, + 425: $Vv1, + 429: $Vw1, + }), + {139: [1, 857], 141: [1, 858]}, + o($VS3, $VT3, {495: 860, 498: 861, 77: [1, 859], 137: $VY1}), + o($VU3, [2, 1175], {499: 862, 132: [1, 863]}), + o($VV3, [2, 1179], {501: 864, 502: 865, 152: $VZ1}), + o($VV3, [2, 755]), + o($VW3, [2, 747]), + {2: $V1, 3: 866, 4: $V2, 5: $V3, 131: [1, 867]}, + {2: $V1, 3: 868, 4: $V2, 5: $V3}, + {2: $V1, 3: 869, 4: $V2, 5: $V3}, + o($Vx1, $VV1, {355: 870, 156: $VW1}), + o($Vx1, $VV1, {355: 871, 156: $VW1}), + o($V22, [2, 499]), + o($V22, [2, 500]), + {183: [1, 872]}, + {183: [2, 1150]}, + o($VX3, [2, 1145], {471: 873, 474: 874, 137: [1, 875]}), + o($V_1, [2, 1144]), + o($VY3, $VZ3, {515: 876, 95: $V_3, 230: [1, 877], 519: $V$3, 520: $V04, 521: $V14}), + {76: [1, 882]}, + {76: [1, 883]}, + {145: $VV, 455: 884}, + {4: $V24, 7: 888, 76: [1, 886], 277: 885, 392: 887, 394: $V34}, + o($VK, [2, 464], {128: [1, 891]}), + o($VK, [2, 587]), + {2: $V1, 3: 892, 4: $V2, 5: $V3}, + {303: [1, 893]}, + o($VO3, $V02, {403: 894, 156: $V12}), + o($VK, [2, 601]), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 896, 404: 895}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 896, 404: 897}, + o($VK, [2, 780]), + o($VJ, [2, 677], {443: 898, 315: [1, 899]}), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 900, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 901, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 902, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 903, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 904, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 905, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 906, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 907, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 908, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 909, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 910, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 911, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 912, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 913, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 914, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 915, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 916, + 4: $V2, + 5: $V3, + 77: [1, 918], + 131: $VX, + 156: $VL, + 196: 917, + 200: 919, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + }, + { + 2: $V1, + 3: 920, + 4: $V2, + 5: $V3, + 77: [1, 922], + 131: $VX, + 156: $VL, + 196: 921, + 200: 923, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + }, + o($V44, [2, 448], { + 259: 148, + 200: 149, + 260: 150, + 111: 151, + 258: 152, + 196: 153, + 261: 154, + 113: 155, + 262: 156, + 201: 157, + 202: 158, + 263: 159, + 264: 160, + 265: 161, + 144: 163, + 266: 164, + 267: 165, + 56: 167, + 158: 170, + 3: 171, + 424: 193, + 94: 924, + 2: $V1, + 4: $V2, + 5: $V3, + 77: $VW, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 179: $V31, + 180: $V41, + 181: $V51, + 244: $V61, + 245: $V71, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 425: $Vv1, + 429: $Vw1, + }), + o($V44, [2, 449], { + 259: 148, + 200: 149, + 260: 150, + 111: 151, + 258: 152, + 196: 153, + 261: 154, + 113: 155, + 262: 156, + 201: 157, + 202: 158, + 263: 159, + 264: 160, + 265: 161, + 144: 163, + 266: 164, + 267: 165, + 56: 167, + 158: 170, + 3: 171, + 424: 193, + 94: 925, + 2: $V1, + 4: $V2, + 5: $V3, + 77: $VW, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 179: $V31, + 180: $V41, + 181: $V51, + 244: $V61, + 245: $V71, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 425: $Vv1, + 429: $Vw1, + }), + o($V44, [2, 450], { + 259: 148, + 200: 149, + 260: 150, + 111: 151, + 258: 152, + 196: 153, + 261: 154, + 113: 155, + 262: 156, + 201: 157, + 202: 158, + 263: 159, + 264: 160, + 265: 161, + 144: 163, + 266: 164, + 267: 165, + 56: 167, + 158: 170, + 3: 171, + 424: 193, + 94: 926, + 2: $V1, + 4: $V2, + 5: $V3, + 77: $VW, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 179: $V31, + 180: $V41, + 181: $V51, + 244: $V61, + 245: $V71, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 425: $Vv1, + 429: $Vw1, + }), + o($V44, [2, 451], { + 259: 148, + 200: 149, + 260: 150, + 111: 151, + 258: 152, + 196: 153, + 261: 154, + 113: 155, + 262: 156, + 201: 157, + 202: 158, + 263: 159, + 264: 160, + 265: 161, + 144: 163, + 266: 164, + 267: 165, + 56: 167, + 158: 170, + 3: 171, + 424: 193, + 94: 927, + 2: $V1, + 4: $V2, + 5: $V3, + 77: $VW, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 179: $V31, + 180: $V41, + 181: $V51, + 244: $V61, + 245: $V71, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 425: $Vv1, + 429: $Vw1, + }), + o($V44, $V54, { + 259: 148, + 200: 149, + 260: 150, + 111: 151, + 258: 152, + 196: 153, + 261: 154, + 113: 155, + 262: 156, + 201: 157, + 202: 158, + 263: 159, + 264: 160, + 265: 161, + 144: 163, + 266: 164, + 267: 165, + 56: 167, + 158: 170, + 3: 171, + 424: 193, + 94: 928, + 2: $V1, + 4: $V2, + 5: $V3, + 77: $VW, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 179: $V31, + 180: $V41, + 181: $V51, + 244: $V61, + 245: $V71, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 425: $Vv1, + 429: $Vw1, + }), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 929, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 930, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($V44, [2, 453], { + 259: 148, + 200: 149, + 260: 150, + 111: 151, + 258: 152, + 196: 153, + 261: 154, + 113: 155, + 262: 156, + 201: 157, + 202: 158, + 263: 159, + 264: 160, + 265: 161, + 144: 163, + 266: 164, + 267: 165, + 56: 167, + 158: 170, + 3: 171, + 424: 193, + 94: 931, + 2: $V1, + 4: $V2, + 5: $V3, + 77: $VW, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 179: $V31, + 180: $V41, + 181: $V51, + 244: $V61, + 245: $V71, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 425: $Vv1, + 429: $Vw1, + }), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 932, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 933, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {164: [1, 935], 166: [1, 937], 333: 934, 339: [1, 936]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 938, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 939, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 702, + 4: $V2, + 5: $V3, + 77: [1, 940], + 111: 943, + 145: $V64, + 156: $VL, + 200: 944, + 202: 942, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 334: 941, + }, + {99: [1, 946], 302: [1, 947]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 948, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 949, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 950, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {4: $V24, 7: 888, 277: 951, 392: 887, 394: $V34}, + o($V74, [2, 88]), + o($V74, [2, 89]), + {78: [1, 952]}, + {78: [1, 953]}, + {78: [1, 954]}, + { + 78: [1, 955], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($Vx1, $Vy1, {345: 211, 77: $VT1, 198: $Vz1}), + {78: [2, 1115]}, + {78: [2, 1116]}, + {134: $VT, 135: $VU}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 956, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 164: [1, 958], + 179: $V31, + 180: $V41, + 181: $V51, + 185: [1, 957], + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 959, 4: $V2, 5: $V3, 149: $V84, 180: [1, 961]}, + o( + [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 118, 122, 128, 129, 130, + 131, 132, 134, 135, 137, 143, 145, 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, + 168, 169, 170, 171, 172, 173, 175, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, + 224, 225, 226, 227, 228, 229, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, + 286, 287, 288, 289, 290, 291, 292, 294, 301, 305, 311, 313, 314, 315, 319, 335, 336, + 338, 340, 343, 344, 401, 405, 406, 409, 411, 413, 414, 422, 423, 425, 429, 439, 441, + 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 469, 475, 510, 512, 513, 522, 607, + 768, + ], + [2, 424], + { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 337: $VC2, + } + ), + o($V94, [2, 425], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + }), + o($V94, [2, 426], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + }), + o($Va4, [2, 427], {114: 632, 332: 644, 321: $Vp2}), + o($Va4, [2, 428], {114: 632, 332: 644, 321: $Vp2}), + o($VG2, [2, 373]), + o($VG2, [2, 1121]), + o($VG2, [2, 1122]), + o($VG2, [2, 374]), + o( + [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, + 123, 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, + 143, 145, 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, + 173, 175, 179, 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, + 227, 228, 229, 230, 231, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, + 287, 288, 289, 290, 291, 292, 294, 301, 305, 311, 313, 314, 315, 316, 317, 318, 319, + 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, + 343, 344, 401, 405, 406, 409, 411, 413, 414, 422, 423, 425, 429, 439, 441, 442, 444, + 445, 446, 447, 448, 452, 453, 456, 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + [2, 370] + ), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 962, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VK2, [2, 628]), + o($VK2, [2, 629]), + o($VK2, [2, 630]), + o($VK2, [2, 631]), + o($VK2, [2, 633]), + {40: 963, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + { + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 309: 964, + 312: 684, + 313: $VJ2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + {310: 965, 311: $Vb4, 312: 966, 313: $VJ2, 315: $Vc4}, + o($Vd4, [2, 380]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 968, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 969, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {4: $V24, 7: 888, 277: 970, 392: 887, 394: $V34}, + o($VK2, [2, 634]), + {74: [1, 972], 305: [1, 971]}, + o($VK2, [2, 650]), + o($Ve4, [2, 657]), + o($Vf4, [2, 635]), + o($Vf4, [2, 636]), + o($Vf4, [2, 637]), + o($Vf4, [2, 638]), + o($Vf4, [2, 639]), + o($Vf4, [2, 640]), + o($Vf4, [2, 641]), + o($Vf4, [2, 642]), + o($Vf4, [2, 643]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 973, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o( + [ + 2, 4, 5, 10, 53, 72, 74, 76, 78, 89, 93, 95, 98, 99, 107, 112, 115, 118, 122, 123, 124, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, + 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, + 179, 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, + 229, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, + 291, 292, 294, 301, 305, 311, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, + 324, 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 401, 405, + 406, 409, 411, 413, 414, 422, 423, 425, 429, 431, 439, 441, 442, 444, 445, 446, 447, + 448, 452, 453, 456, 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + $VF2, + {77: $VS1, 116: $Vg4} + ), + {74: $VE3, 305: [1, 975]}, + o($VE2, [2, 318], {77: $VS1}), + o($VF1, [2, 319]), + {74: [1, 977], 431: [1, 976]}, + o($VK2, [2, 647]), + o($Vh4, [2, 652]), + {152: [1, 978]}, + {152: [1, 979]}, + {152: [1, 980]}, + { + 40: 985, + 77: [1, 984], + 79: 75, + 89: $V7, + 143: $V_, + 144: 988, + 145: $VG1, + 149: $Vi4, + 152: $V11, + 181: $V51, + 184: 99, + 189: $Vb, + 201: 989, + 307: $Vr1, + 346: 981, + 347: 982, + 348: [1, 983], + 349: $Vj4, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vx1, $Vy1, {345: 990, 198: $Vz1}), + { + 77: $Vk4, + 143: $V_, + 144: 988, + 145: $VG1, + 149: $Vi4, + 152: $V11, + 181: $V51, + 201: 989, + 307: $Vr1, + 346: 991, + 347: 992, + 349: $Vj4, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {230: [1, 995], 460: 994}, + { + 2: $V1, + 3: 223, + 4: $V2, + 5: $V3, + 77: $VA1, + 132: $VB1, + 143: $V_, + 144: 216, + 145: $V$, + 152: $V11, + 156: $VL, + 181: $V51, + 199: 217, + 200: 219, + 201: 218, + 202: 221, + 209: 996, + 213: $VC1, + 214: 222, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {231: [2, 704]}, + {78: [1, 997]}, + o($VP2, [2, 1101], {211: 998, 3: 999, 2: $V1, 4: $V2, 5: $V3}), + o($VO2, [2, 1100]), + o($VP2, [2, 183]), + {2: $V1, 3: 1000, 4: $V2, 5: $V3}, + {212: [1, 1001]}, + o($VP2, [2, 187]), + {2: $V1, 3: 1002, 4: $V2, 5: $V3}, + o($VP2, [2, 191]), + {2: $V1, 3: 1003, 4: $V2, 5: $V3}, + o($VP2, [2, 195]), + {2: $V1, 3: 1004, 4: $V2, 5: $V3}, + o($VP2, [2, 198]), + {2: $V1, 3: 1005, 4: $V2, 5: $V3}, + {2: $V1, 3: 1006, 4: $V2, 5: $V3}, + {148: [1, 1007]}, + o($Vl4, [2, 172], {82: 1008, 183: [1, 1009]}), + { + 2: $V1, + 3: 223, + 4: $V2, + 5: $V3, + 132: [1, 1014], + 143: $V_, + 145: [1, 1015], + 152: $V11, + 156: $VL, + 181: $V51, + 199: 1010, + 200: 1011, + 201: 1012, + 202: 1013, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 307: $Vr1, + }, + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 109: 1016, 110: 1017, 111: 1018, 112: $Vm4}, + o($VV2, [2, 1066]), + o($Vn4, [2, 1057], {91: 1021, 182: 1022, 183: [1, 1023]}), + o($VE1, [2, 1056], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + o( + [ + 2, 4, 5, 10, 72, 74, 76, 78, 112, 115, 116, 118, 122, 123, 124, 128, 129, 130, 131, 132, + 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 145, 146, 148, 149, 150, 152, + 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, 180, 181, 183, 185, + 187, 198, 244, 245, 285, 286, 287, 288, 289, 290, 291, 292, 311, 315, 425, 429, 607, + 768, + ], + [2, 90], + {77: [1, 1028]} + ), + {119: [1, 1029]}, + o($Vr4, [2, 93]), + {2: $V1, 3: 1030, 4: $V2, 5: $V3}, + o($Vr4, [2, 95]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1031, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1032, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1034, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 125: 1033, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {77: [1, 1035]}, + {77: [1, 1036]}, + {77: [1, 1037]}, + {77: [1, 1038]}, + o($Vr4, [2, 104]), + o($Vr4, [2, 105]), + o($Vr4, [2, 106]), + o($Vr4, [2, 107]), + o($Vr4, [2, 108]), + o($Vr4, [2, 109]), + {2: $V1, 3: 1039, 4: $V2, 5: $V3}, + {2: $V1, 3: 1040, 4: $V2, 5: $V3, 133: [1, 1041]}, + o($Vr4, [2, 113]), + o($Vr4, [2, 114]), + o($Vr4, [2, 115]), + o($Vr4, [2, 116]), + o($Vr4, [2, 117]), + o($Vr4, [2, 118]), + { + 2: $V1, + 3: 1042, + 4: $V2, + 5: $V3, + 77: $VI2, + 113: 676, + 131: $VX, + 132: $VY, + 143: $V_, + 152: $V11, + 181: $V51, + 196: 677, + 201: 679, + 261: 678, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 307: $Vr1, + 424: 680, + 429: $Vw1, + }, + {145: [1, 1043]}, + {77: [1, 1044]}, + {145: [1, 1045]}, + o($Vr4, [2, 123]), + {77: [1, 1046]}, + {2: $V1, 3: 1047, 4: $V2, 5: $V3}, + {77: [1, 1048]}, + {77: [1, 1049]}, + {77: [1, 1050]}, + {77: [1, 1051]}, + {77: [1, 1052], 164: [1, 1053]}, + {77: [1, 1054]}, + {77: [1, 1055]}, + {77: [1, 1056]}, + {77: [1, 1057]}, + {77: [1, 1058]}, + {77: [1, 1059]}, + {77: [1, 1060]}, + {77: [1, 1061]}, + {77: [1, 1062]}, + {77: [2, 1081]}, + {77: [2, 1082]}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1063}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1064}, + {113: 1065, 132: $VY, 301: $Vn1}, + o($VK, [2, 604], {112: [1, 1066]}), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1067}, + {113: 1068, 132: $VY, 301: $Vn1}, + {2: $V1, 3: 1069, 4: $V2, 5: $V3}, + o($VK, [2, 701]), + o($VK, [2, 68]), + {2: $V1, 3: 240, 4: $V2, 5: $V3, 75: 1070}, + {77: [1, 1071]}, + o($VK, [2, 682]), + o($VK, [2, 594]), + { + 2: $V1, + 3: 1020, + 4: $V2, + 5: $V3, + 111: 1074, + 143: $Vs4, + 145: $Vt4, + 147: 1072, + 341: 1073, + 342: 1075, + }, + {144: 1078, 145: $VG1, 424: 193, 425: $Vv1, 429: $Vw1}, + o($VK, [2, 679]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1079, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($V44, $V54, { + 259: 148, + 200: 149, + 260: 150, + 111: 151, + 258: 152, + 196: 153, + 261: 154, + 113: 155, + 262: 156, + 201: 157, + 202: 158, + 263: 159, + 264: 160, + 265: 161, + 144: 163, + 266: 164, + 267: 165, + 56: 167, + 158: 170, + 3: 171, + 424: 193, + 94: 1080, + 2: $V1, + 4: $V2, + 5: $V3, + 77: $VW, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 179: $V31, + 180: $V41, + 181: $V51, + 244: $V61, + 245: $V71, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 425: $Vv1, + 429: $Vw1, + }), + {113: 1081, 132: $VY, 301: $Vn1}, + {2: $V1, 3: 271, 4: $V2, 5: $V3, 451: 1082, 452: $VJ1}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1084, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 230: $VH3, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + 434: 1083, + 438: $VI3, + }, + o($VK, [2, 659]), + {114: 1086, 115: $V52, 116: $V62, 124: [1, 1085]}, + o($VK, [2, 671]), + o($VK, [2, 672]), + {2: $V1, 3: 1088, 4: $V2, 5: $V3, 77: $Vu4, 131: $Vv4, 437: 1087}, + {114: 814, 115: $V52, 116: $V62, 124: [1, 1091], 435: 1092}, + o($VK, [2, 761], {74: $VJ3}), + {2: $V1, 3: 100, 4: $V2, 5: $V3, 509: 1093}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 824, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 174: 1094, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 257: 823, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 824, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 174: 1095, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 257: 823, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 824, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 174: 1096, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 257: 823, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VM3, [2, 151]), + o($VM3, [2, 1096], {74: $Vw4}), + o($Vx4, [2, 276]), + o($Vx4, [2, 283], { + 114: 632, + 332: 644, + 3: 1099, + 113: 1101, + 2: $V1, + 4: $V2, + 5: $V3, + 76: [1, 1098], + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 131: [1, 1100], + 132: $VY, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 301: $Vn1, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($VM1, [2, 1097], {197: 1102, 769: [1, 1103]}), + {131: $VX, 196: 1104}, + {74: $VJ3, 78: [1, 1105]}, + o($VJ, [2, 11]), + {148: [1, 1106], 190: [1, 1107]}, + {190: [1, 1108]}, + {190: [1, 1109]}, + {190: [1, 1110]}, + o($VK, [2, 583], {76: [1, 1112], 77: [1, 1111]}), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 1113, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VG2, [2, 352]), + o($VL3, [2, 1120]), + o($VL3, [2, 1117]), + o($VL3, [2, 1118]), + {74: $VE3, 78: [1, 1114]}, + {74: $VE3, 78: [1, 1115]}, + o($VG2, [2, 355]), + {74: [1, 1116]}, + {74: [1, 1117]}, + {74: [1, 1118]}, + {74: [1, 1119]}, + { + 74: [1, 1120], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($VG2, [2, 361]), + o($VK, [2, 588]), + {303: [1, 1121]}, + {2: $V1, 3: 1122, 4: $V2, 5: $V3, 113: 1123, 132: $VY, 301: $Vn1}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1124}, + {230: [1, 1125]}, + { + 2: $V1, + 3: 585, + 4: $V2, + 5: $V3, + 132: $VX1, + 137: $VY1, + 143: $VK1, + 145: $VL1, + 152: $VZ1, + 436: 592, + 479: 1126, + 480: 583, + 483: 584, + 487: 589, + 498: 586, + 502: 588, + }, + o($VK, [2, 738], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($VK3, [2, 1153], {482: 1127, 488: 1128, 76: $Vy4}), + o($VQ3, [2, 1152]), + { + 2: $V1, + 3: 1132, + 4: $V2, + 5: $V3, + 132: $VX1, + 137: $VY1, + 144: 1131, + 145: $VG1, + 152: $VZ1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + 480: 1130, + 498: 586, + 502: 588, + }, + { + 2: $V1, + 3: 1132, + 4: $V2, + 5: $V3, + 132: $VX1, + 137: $VY1, + 143: $VK1, + 145: $VL1, + 152: $VZ1, + 436: 592, + 480: 1134, + 483: 1133, + 487: 589, + 498: 586, + 502: 588, + }, + { + 2: $V1, + 3: 585, + 4: $V2, + 5: $V3, + 132: $VX1, + 137: $VY1, + 143: $VK1, + 145: $VL1, + 152: $VZ1, + 436: 592, + 478: 1135, + 479: 582, + 480: 583, + 483: 584, + 487: 589, + 498: 586, + 502: 588, + }, + o($VU3, [2, 1171], {496: 1136, 132: [1, 1137]}), + o($VS3, [2, 1170]), + o($VV3, [2, 1177], {500: 1138, 502: 1139, 152: $VZ1}), + o($VU3, [2, 1176]), + o($VV3, [2, 754]), + o($VV3, [2, 1180]), + o($VS3, [2, 757]), + o($VS3, [2, 758]), + o($VV3, [2, 756]), + o($VW3, [2, 748]), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1140}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1141}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1142, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vz4, [2, 1147], {472: 1143, 113: 1144, 132: $VY, 301: $Vn1}), + o($VX3, [2, 1146]), + {2: $V1, 3: 1145, 4: $V2, 5: $V3}, + {340: $VA4, 343: $VB4, 344: $VC4, 516: 1146}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1150}, + o($VY3, [2, 773]), + o($VY3, [2, 774]), + o($VY3, [2, 775]), + {129: [1, 1151]}, + {271: [1, 1152]}, + {271: [1, 1153]}, + o($V$1, [2, 696]), + o($V$1, [2, 697], {124: [1, 1154]}), + {4: $V24, 7: 888, 277: 1155, 392: 887, 394: $V34}, + o( + [ + 2, 4, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, 123, + 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, + 145, 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, + 175, 179, 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, + 289, 290, 291, 292, 294, 301, 302, 305, 311, 313, 314, 315, 316, 317, 318, 319, 320, + 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, + 344, 348, 361, 373, 374, 378, 379, 401, 405, 406, 409, 411, 413, 414, 422, 423, 425, + 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 469, 475, 510, 512, + 513, 522, 607, 768, + ], + [2, 550], + {5: [1, 1156]} + ), + o( + [ + 2, 5, 10, 53, 72, 74, 76, 78, 89, 93, 95, 98, 99, 107, 112, 115, 116, 118, 122, 123, + 124, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, + 145, 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, + 175, 179, 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, + 228, 229, 230, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, + 289, 290, 291, 292, 294, 301, 302, 305, 311, 313, 314, 315, 316, 317, 318, 319, 320, + 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, + 344, 348, 361, 373, 374, 378, 379, 401, 405, 406, 409, 411, 413, 414, 422, 423, 425, + 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, 469, 475, 510, 512, + 513, 522, 607, 768, + ], + [2, 547], + {4: [1, 1158], 77: [1, 1157]} + ), + {77: [1, 1159]}, + o($VD4, [2, 4]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1160, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VK, [2, 596]), + o($VO3, [2, 576]), + {2: $V1, 3: 1161, 4: $V2, 5: $V3, 113: 1162, 132: $VY, 301: $Vn1}, + o($VK, [2, 572], {74: $VE4}), + o($V$1, [2, 574]), + o($VK, [2, 621], {74: $VE4}), + o($VK, [2, 676]), + o($VK, $V0, { + 17: 5, + 18: 7, + 19: 8, + 20: 9, + 21: 10, + 22: 11, + 23: 12, + 24: 13, + 25: 14, + 26: 15, + 27: 16, + 28: 17, + 29: 18, + 30: 19, + 31: 20, + 32: 21, + 33: 22, + 34: 23, + 35: 24, + 36: 25, + 37: 26, + 38: 27, + 39: 28, + 40: 29, + 41: 30, + 42: 31, + 43: 32, + 44: 33, + 45: 34, + 46: 35, + 47: 36, + 48: 37, + 49: 38, + 50: 39, + 51: 40, + 52: 41, + 54: 43, + 55: 44, + 56: 45, + 57: 46, + 58: 47, + 59: 48, + 60: 49, + 61: 50, + 62: 51, + 63: 52, + 64: 53, + 65: 54, + 66: 55, + 67: 56, + 68: 57, + 69: 58, + 70: 59, + 71: 60, + 79: 75, + 509: 95, + 184: 99, + 3: 100, + 12: 1164, + 2: $V1, + 4: $V2, + 5: $V3, + 53: $V5, + 72: $V6, + 89: $V7, + 124: $V8, + 146: $V9, + 156: $Va, + 189: $Vb, + 271: $Vc, + 272: $Vd, + 294: $Ve, + 340: $Vf, + 343: $Vg, + 344: $Vh, + 401: $Vi, + 405: $Vj, + 406: $Vk, + 409: $Vl, + 411: $Vm, + 413: $Vn, + 414: $Vo, + 422: $Vp, + 423: $Vq, + 439: $Vr, + 441: $Vs, + 442: $Vt, + 444: $Vu, + 445: $Vv, + 446: $Vw, + 447: $Vx, + 448: $Vy, + 452: $Vz, + 453: $VA, + 456: $VB, + 457: $VC, + 510: $VD, + 512: $VE, + 513: $VF, + 522: $VG, + }), + o($VF4, [2, 384], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + }), + o($Va4, [2, 385], {114: 632, 332: 644, 321: $Vp2}), + o($VF4, [2, 386], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + }), + o($VG4, [2, 387], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 317: $Vm2, + 319: [1, 1165], + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + }), + o($VG4, [2, 389], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 317: $Vm2, + 319: [1, 1166], + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + }), + o($VF1, [2, 391], {114: 632, 332: 644}), + o($V94, [2, 392], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + }), + o($V94, [2, 393], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + }), + o($VH4, [2, 394], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 136: $Va2, + 317: $Vm2, + 321: $Vp2, + }), + o($VH4, [2, 395], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 136: $Va2, + 317: $Vm2, + 321: $Vp2, + }), + o($VH4, [2, 396], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 136: $Va2, + 317: $Vm2, + 321: $Vp2, + }), + o( + [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 112, 118, 122, 123, 124, + 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 145, 146, + 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 179, + 180, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, 227, 228, 229, + 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, 289, 290, 291, + 292, 294, 301, 305, 311, 313, 314, 315, 316, 318, 319, 320, 322, 323, 324, 325, 326, + 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 401, 405, 406, 409, 411, + 413, 414, 422, 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, + 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + [2, 397], + {114: 632, 332: 644, 115: $V52, 116: $V62, 136: $Va2, 317: $Vm2, 321: $Vp2} + ), + o($VI4, [2, 398], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 179: $Vj2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + 322: $Vq2, + }), + o($VI4, [2, 399], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 179: $Vj2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + 322: $Vq2, + }), + o($VI4, [2, 400], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 179: $Vj2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + 322: $Vq2, + }), + o($VI4, [2, 401], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 179: $Vj2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + 322: $Vq2, + }), + o($VE2, [2, 402], {77: $VS1}), + o($VF1, [2, 403]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1167, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VF1, [2, 405]), + o($VE2, [2, 406], {77: $VS1}), + o($VF1, [2, 407]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1168, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VF1, [2, 409]), + o($VJ4, [2, 410], { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 337: $VC2, + }), + o($VJ4, [2, 411], { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 337: $VC2, + }), + o($VJ4, [2, 412], { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 337: $VC2, + }), + o($VJ4, [2, 413], { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 337: $VC2, + }), + o( + [ + 2, 4, 5, 10, 53, 72, 89, 99, 124, 139, 140, 146, 154, 156, 170, 171, 189, 271, 272, 294, + 311, 315, 325, 326, 327, 328, 329, 330, 331, 335, 336, 338, 340, 343, 344, 401, 405, + 406, 409, 411, 413, 414, 422, 423, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, + 456, 457, 510, 512, 513, 522, 607, 768, + ], + $VK4, + { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 337: $VC2, + } + ), + o($VJ4, [2, 415], { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 337: $VC2, + }), + o($VJ4, [2, 416], { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 337: $VC2, + }), + o($VJ4, [2, 417], { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 337: $VC2, + }), + o($VJ4, [2, 418], { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 337: $VC2, + }), + o($VJ4, [2, 419], { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 337: $VC2, + }), + {77: [1, 1169]}, + {77: [2, 454]}, + {77: [2, 455]}, + {77: [2, 456]}, + o($VL4, [2, 422], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 337: $VC2, + }), + o( + [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 107, 118, 122, 128, 129, 130, 131, + 132, 134, 135, 137, 143, 145, 146, 148, 149, 150, 152, 156, 162, 164, 166, 168, 169, + 171, 172, 173, 175, 181, 183, 185, 187, 189, 198, 206, 208, 222, 223, 224, 225, 226, + 227, 228, 229, 232, 239, 244, 245, 246, 247, 249, 251, 271, 272, 285, 286, 287, 288, + 289, 290, 291, 292, 294, 301, 305, 311, 313, 314, 315, 319, 338, 340, 343, 344, 401, + 405, 406, 409, 411, 413, 414, 422, 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, + 448, 452, 453, 456, 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + [2, 423], + { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + } + ), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 40: 1170, + 56: 167, + 77: $VW, + 78: [1, 1172], + 79: 75, + 89: $V7, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 1171, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 184: 99, + 189: $Vb, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VF1, [2, 436]), + o($VF1, [2, 438]), + o($VF1, [2, 445]), + o($VF1, [2, 446]), + {2: $V1, 3: 674, 4: $V2, 5: $V3, 77: [1, 1173]}, + { + 2: $V1, + 3: 702, + 4: $V2, + 5: $V3, + 77: [1, 1174], + 111: 943, + 145: $V64, + 156: $VL, + 200: 944, + 202: 1176, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 334: 1175, + }, + o($VF1, [2, 443]), + o($VL4, [2, 440], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 337: $VC2, + }), + o($VL4, [2, 441], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 337: $VC2, + }), + o( + [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 99, 107, 118, 122, 124, 128, 129, + 130, 131, 132, 134, 135, 137, 139, 140, 143, 145, 146, 148, 149, 150, 152, 154, 156, + 162, 164, 166, 168, 169, 170, 171, 172, 173, 175, 181, 183, 185, 187, 189, 198, 206, + 208, 222, 223, 224, 225, 226, 227, 228, 229, 232, 239, 244, 245, 246, 247, 249, 251, + 271, 272, 285, 286, 287, 288, 289, 290, 291, 292, 294, 301, 305, 311, 313, 314, 315, + 319, 325, 326, 327, 328, 329, 330, 331, 335, 336, 337, 338, 340, 343, 344, 401, 405, + 406, 409, 411, 413, 414, 422, 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, + 452, 453, 456, 457, 469, 475, 510, 512, 513, 522, 607, 768, + ], + [2, 442], + { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + } + ), + o($VF1, [2, 444]), + o($VF1, [2, 309]), + o($VF1, [2, 310]), + o($VF1, [2, 311]), + o($VF1, [2, 429]), + {74: $VE3, 78: [1, 1177]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1178, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1179, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VF1, $VM4), + o($VN4, [2, 289]), + o($VF1, [2, 285]), + { + 78: [1, 1181], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + {78: [1, 1182]}, + {310: 1183, 311: $Vb4, 312: 966, 313: $VJ2, 315: $Vc4}, + {311: [1, 1184]}, + o($Vd4, [2, 379]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1185, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 314: [1, 1186], + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 76: [1, 1187], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + {74: [1, 1188]}, + o($VK2, [2, 648]), + { + 2: $V1, + 3: 702, + 4: $V2, + 5: $V3, + 77: $VL2, + 111: 697, + 113: 695, + 131: $VX, + 132: $VY, + 143: $V_, + 144: 692, + 145: $VG1, + 152: $V11, + 156: $VL, + 181: $V51, + 196: 694, + 200: 700, + 201: 699, + 261: 696, + 262: 698, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 305: [1, 1189], + 307: $Vr1, + 424: 193, + 425: $Vv1, + 427: 1190, + 428: 693, + 429: $Vw1, + }, + { + 78: [1, 1191], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + {2: $V1, 3: 1192, 4: $V2, 5: $V3, 149: $V84}, + o($VF1, [2, 372]), + o($VK2, [2, 645]), + {2: $V1, 3: 711, 4: $V2, 5: $V3, 131: $VM2, 132: $VN2, 431: [1, 1193], 433: 1194}, + { + 2: $V1, + 3: 702, + 4: $V2, + 5: $V3, + 77: $VL2, + 111: 697, + 113: 695, + 131: $VX, + 132: $VY, + 143: $V_, + 144: 692, + 145: $VG1, + 152: $V11, + 156: $VL, + 181: $V51, + 196: 694, + 200: 700, + 201: 699, + 261: 696, + 262: 698, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 427: 1195, + 428: 693, + 429: $Vw1, + }, + { + 2: $V1, + 3: 702, + 4: $V2, + 5: $V3, + 77: $VL2, + 111: 697, + 113: 695, + 131: $VX, + 132: $VY, + 143: $V_, + 144: 692, + 145: $VG1, + 152: $V11, + 156: $VL, + 181: $V51, + 196: 694, + 200: 700, + 201: 699, + 261: 696, + 262: 698, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 427: 1196, + 428: 693, + 429: $Vw1, + }, + { + 2: $V1, + 3: 702, + 4: $V2, + 5: $V3, + 77: $VL2, + 111: 697, + 113: 695, + 131: $VX, + 132: $VY, + 143: $V_, + 144: 692, + 145: $VG1, + 152: $V11, + 156: $VL, + 181: $V51, + 196: 694, + 200: 700, + 201: 699, + 261: 696, + 262: 698, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 427: 1197, + 428: 693, + 429: $Vw1, + }, + { + 77: $Vk4, + 143: $V_, + 144: 988, + 145: $VG1, + 152: $V11, + 181: $V51, + 201: 989, + 307: $Vr1, + 347: 1198, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VO4, [2, 466], {74: $VP4}), + {149: $Vi4, 346: 1200, 349: $Vj4}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1204, + 100: 1201, + 111: 1203, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 350: 1202, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VO4, [2, 474]), + o($VQ4, [2, 477]), + o($VQ4, [2, 478]), + o($VR4, [2, 482]), + o($VR4, [2, 483]), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1205}, + { + 77: $Vk4, + 143: $V_, + 144: 988, + 145: $VG1, + 152: $V11, + 181: $V51, + 201: 989, + 307: $Vr1, + 347: 1206, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VO4, [2, 470], {74: $VP4}), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1204, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 350: 1202, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {313: $VS4, 461: 1207, 463: 1208, 464: 1209}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1211, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {230: [2, 705]}, + o($VP2, [2, 181], {3: 1212, 2: $V1, 4: $V2, 5: $V3, 76: [1, 1213]}), + o($VP2, [2, 182]), + o($VP2, [2, 1102]), + o($VP2, [2, 184]), + o($VP2, [2, 186]), + o($VP2, [2, 188]), + o($VP2, [2, 192]), + o($VP2, [2, 196]), + o($VP2, [2, 199]), + o( + [ + 2, 4, 5, 10, 53, 72, 74, 76, 77, 78, 89, 93, 95, 98, 118, 124, 128, 143, 145, 146, 148, + 149, 152, 154, 156, 162, 168, 169, 181, 183, 187, 189, 206, 208, 222, 223, 224, 225, + 226, 227, 228, 229, 230, 231, 232, 249, 251, 271, 272, 294, 302, 307, 311, 315, 340, + 343, 344, 348, 349, 361, 373, 374, 378, 379, 401, 405, 406, 407, 408, 409, 411, 413, + 414, 422, 423, 425, 429, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, 456, 457, + 510, 512, 513, 519, 520, 521, 522, 607, 768, + ], + [2, 201] + ), + {2: $V1, 3: 1214, 4: $V2, 5: $V3}, + o($VT4, [2, 1053], {83: 1215, 92: 1216, 93: [1, 1217], 98: [1, 1218]}), + { + 2: $V1, + 3: 223, + 4: $V2, + 5: $V3, + 77: [1, 1220], + 132: $VB1, + 143: $V_, + 144: 216, + 145: $V$, + 152: $V11, + 156: $VL, + 181: $V51, + 199: 217, + 200: 219, + 201: 218, + 202: 221, + 203: 1219, + 209: 1221, + 213: $VC1, + 214: 222, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VS2, [2, 164]), + o($VS2, [2, 165]), + o($VS2, [2, 166]), + o($VS2, [2, 167]), + o($VS2, [2, 168]), + {2: $V1, 3: 674, 4: $V2, 5: $V3}, + o($VD1, [2, 83], {74: [1, 1222]}), + o($VU4, [2, 85]), + o($VU4, [2, 86]), + {113: 1223, 132: $VY, 301: $Vn1}, + o( + [ + 10, 72, 74, 78, 93, 98, 118, 124, 128, 162, 168, 169, 183, 198, 206, 208, 222, 223, 224, + 225, 226, 227, 228, 229, 232, 249, 251, 311, 315, 607, 768, + ], + $VF2, + {116: $Vg4} + ), + o($Vn4, [2, 73]), + o($Vn4, [2, 1058]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1224, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vr4, [2, 126]), + o($Vr4, [2, 144]), + o($Vr4, [2, 145]), + o($Vr4, [2, 146]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 78: [2, 1073], + 94: 265, + 111: 151, + 113: 155, + 127: 1225, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 1226, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {77: [1, 1227]}, + o($Vr4, [2, 94]), + o( + [ + 2, 4, 5, 10, 72, 74, 76, 77, 78, 118, 122, 124, 128, 129, 130, 131, 132, 134, 135, 137, + 139, 140, 143, 145, 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, 170, + 171, 172, 173, 175, 181, 183, 185, 187, 198, 244, 245, 285, 286, 287, 288, 289, 290, + 291, 292, 311, 315, 425, 429, 607, 768, + ], + [2, 96], + { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + } + ), + o( + [ + 2, 4, 5, 10, 72, 74, 76, 77, 78, 112, 118, 122, 124, 128, 129, 130, 131, 132, 134, 135, + 137, 139, 140, 143, 145, 146, 148, 149, 150, 152, 154, 156, 162, 164, 166, 168, 169, + 170, 171, 172, 173, 175, 181, 183, 185, 187, 198, 244, 245, 285, 286, 287, 288, 289, + 290, 291, 292, 311, 315, 425, 429, 607, 768, + ], + [2, 97], + { + 114: 632, + 332: 644, + 99: $V32, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + } + ), + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 78: [1, 1228], + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1229, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VV4, [2, 1069], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1231, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 126: 1230, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1232, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1233, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1234, 4: $V2, 5: $V3}, + o($Vr4, [2, 110]), + o($Vr4, [2, 111]), + o($Vr4, [2, 112]), + o($Vr4, [2, 119]), + {2: $V1, 3: 1235, 4: $V2, 5: $V3}, + { + 2: $V1, + 3: 1020, + 4: $V2, + 5: $V3, + 111: 1074, + 143: $Vs4, + 145: $Vt4, + 147: 1236, + 341: 1073, + 342: 1075, + }, + {2: $V1, 3: 1237, 4: $V2, 5: $V3}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 1238, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vr4, [2, 125]), + o($VV4, [2, 1075], {155: 1239}), + o($VV4, [2, 1077], {157: 1240}), + o($VV4, [2, 1079], {159: 1241}), + o($VV4, [2, 1083], {161: 1242}), + o($VW4, $VX4, {163: 1243, 178: 1244}), + {77: [1, 1245]}, + o($VV4, [2, 1085], {165: 1246}), + o($VV4, [2, 1087], {167: 1247}), + o($VW4, $VX4, {178: 1244, 163: 1248}), + o($VW4, $VX4, {178: 1244, 163: 1249}), + o($VW4, $VX4, {178: 1244, 163: 1250}), + o($VW4, $VX4, {178: 1244, 163: 1251}), + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1252, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 824, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 174: 1253, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 257: 823, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VY4, [2, 1089], {176: 1254}), + o($VK, [2, 614], {183: [1, 1255]}), + o($VK, [2, 610], {183: [1, 1256]}), + o($VK, [2, 603]), + {113: 1257, 132: $VY, 301: $Vn1}, + o($VK, [2, 612], {183: [1, 1258]}), + o($VK, [2, 607]), + o($VK, [2, 608], {112: [1, 1259]}), + o($VC3, [2, 69]), + {40: 1260, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + o($VK, [2, 458], {74: $VZ4, 128: [1, 1261]}), + o($V_4, [2, 459]), + {124: [1, 1263]}, + {2: $V1, 3: 1264, 4: $V2, 5: $V3}, + o($Vx1, [2, 1123]), + o($Vx1, [2, 1124]), + o($VK, [2, 626]), + o($VF3, [2, 363], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($VJ4, $VK4, { + 114: 632, + 332: 644, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 337: $VC2, + }), + o($V$1, [2, 690]), + o($V$1, [2, 692]), + o($VK, [2, 658]), + o($VK, [2, 660], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1088, 4: $V2, 5: $V3, 77: $Vu4, 131: $Vv4, 437: 1266}, + o($V$4, [2, 667]), + o($V$4, [2, 668]), + o($V$4, [2, 669]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1267, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1268, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {114: 1086, 115: $V52, 116: $V62, 124: [1, 1269]}, + o($VK3, [2, 763]), + o($VM3, [2, 148], {74: $Vw4}), + o($VM3, [2, 149], {74: $Vw4}), + o($VM3, [2, 150], {74: $Vw4}), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 824, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 257: 1270, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1271, 4: $V2, 5: $V3, 113: 1273, 131: [1, 1272], 132: $VY, 301: $Vn1}, + o($Vx4, [2, 278]), + o($Vx4, [2, 280]), + o($Vx4, [2, 282]), + o($VM1, [2, 160]), + o($VM1, [2, 1098]), + {78: [1, 1274]}, + o($VP1, [2, 766]), + {2: $V1, 3: 1275, 4: $V2, 5: $V3}, + {2: $V1, 3: 1276, 4: $V2, 5: $V3}, + {2: $V1, 3: 1278, 4: $V2, 5: $V3, 389: 1277}, + {2: $V1, 3: 1278, 4: $V2, 5: $V3, 389: 1279}, + {2: $V1, 3: 1280, 4: $V2, 5: $V3}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 1281, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1282, 4: $V2, 5: $V3}, + {74: $VE3, 78: [1, 1283]}, + o($VG2, [2, 353]), + o($VG2, [2, 354]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1284, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1285, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1286, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1287, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1288, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VO3, [2, 512]), + o($VK, $V05, {412: 1289, 76: $V15, 77: [1, 1290]}), + o($VK, $V05, {412: 1292, 76: $V15}), + {77: [1, 1293]}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1294}, + o($VK3, [2, 739]), + o($VK3, [2, 741]), + o($VK3, [2, 1154]), + {143: $VK1, 145: $VL1, 436: 1295}, + o($V25, [2, 1155], {424: 193, 484: 1296, 144: 1297, 145: $VG1, 425: $Vv1, 429: $Vw1}), + {76: $Vy4, 139: [2, 1159], 486: 1298, 488: 1299}, + o([10, 74, 76, 78, 132, 139, 145, 152, 311, 315, 425, 429, 607, 768], $VT3, { + 495: 860, + 498: 861, + 137: $VY1, + }), + o($VK3, [2, 744]), + o($VK3, $VR3), + {74: $VP3, 78: [1, 1300]}, + o($VV3, [2, 1173], {497: 1301, 502: 1302, 152: $VZ1}), + o($VU3, [2, 1172]), + o($VV3, [2, 753]), + o($VV3, [2, 1178]), + o($VK, [2, 498], {77: [1, 1303]}), + {76: [1, 1305], 77: [1, 1304]}, + { + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 148: [1, 1306], + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($VO4, $V35, { + 79: 75, + 184: 99, + 473: 1307, + 40: 1310, + 89: $V7, + 146: $V45, + 189: $Vb, + 475: $V55, + }), + o($Vz4, [2, 1148]), + o($VX3, [2, 731]), + {230: [1, 1311]}, + o($V65, [2, 777]), + o($V65, [2, 778]), + o($V65, [2, 779]), + o($VY3, $VZ3, {515: 1312, 95: $V_3, 519: $V$3, 520: $V04, 521: $V14}), + o($VY3, [2, 776]), + o($VK, [2, 316]), + o($VK, [2, 317]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1313, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($V$1, [2, 698], {124: [1, 1314]}), + o($VD4, [2, 549]), + {131: [1, 1316], 393: 1315, 395: [1, 1317]}, + o($VD4, [2, 5]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1204, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 350: 1318, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VK, [2, 463], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($VK, [2, 597]), + o($VK, [2, 598]), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1319}, + o($VK, [2, 678]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1320, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1321, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 78: [1, 1322], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 78: [1, 1323], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 40: 1324, + 56: 167, + 77: $VW, + 79: 75, + 89: $V7, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 1325, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 184: 99, + 189: $Vb, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {78: [1, 1326]}, + {74: $VE3, 78: [1, 1327]}, + o($VF1, [2, 434]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1328, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 40: 1329, + 56: 167, + 77: $VW, + 78: [1, 1331], + 79: 75, + 89: $V7, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 1330, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 184: 99, + 189: $Vb, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VF1, [2, 437]), + o($VF1, [2, 439]), + o($VF1, $V75, {280: 1332, 281: $V85}), + { + 78: [1, 1334], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 78: [1, 1335], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + {2: $V1, 3: 1336, 4: $V2, 5: $V3, 180: [1, 1337]}, + o($VK2, [2, 627]), + o($VF1, [2, 371]), + {311: [1, 1338]}, + o($VF1, [2, 378]), + { + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 311: [2, 382], + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1339, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {4: $V24, 7: 888, 277: 1340, 392: 887, 394: $V34}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1341, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VK2, [2, 649]), + o($Ve4, [2, 656]), + o($Vf4, [2, 644]), + o($VN4, $VM4), + o($VK2, [2, 646]), + o($Vh4, [2, 651]), + o($Vh4, [2, 653]), + o($Vh4, [2, 654]), + o($Vh4, [2, 655]), + o($VO4, [2, 465], {74: $VP4}), + { + 77: [1, 1343], + 143: $V_, + 144: 1344, + 145: $VG1, + 152: $V11, + 181: $V51, + 201: 1345, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VO4, [2, 471]), + {74: $V95, 78: [1, 1346]}, + {74: $Va5, 78: [1, 1348]}, + o( + [ + 74, 78, 99, 112, 115, 116, 123, 124, 133, 136, 138, 139, 140, 141, 142, 154, 170, 171, + 179, 180, 316, 317, 318, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, + 335, 336, 337, 338, + ], + $Vb5 + ), + o($Vc5, [2, 487], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + { + 40: 1352, + 77: $Vk4, + 79: 75, + 89: $V7, + 143: $V_, + 144: 988, + 145: $VG1, + 149: $Vi4, + 152: $V11, + 181: $V51, + 184: 99, + 189: $Vb, + 201: 989, + 307: $Vr1, + 346: 1350, + 347: 1351, + 349: $Vj4, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VO4, [2, 469], {74: $VP4}), + o($VK, [2, 725], {462: 1353, 463: 1354, 464: 1355, 313: $VS4, 469: [1, 1356]}), + o($Vd5, [2, 709]), + o($Vd5, [2, 710]), + {154: [1, 1358], 465: [1, 1357]}, + { + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 313: [2, 706], + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($VP2, [2, 179]), + {2: $V1, 3: 1359, 4: $V2, 5: $V3}, + o($VK, [2, 582]), + o($Ve5, [2, 238], {84: 1360, 128: [1, 1361]}), + o($VT4, [2, 1054]), + {77: [1, 1362]}, + {77: [1, 1363]}, + o($Vl4, [2, 169], { + 204: 1364, + 215: 1366, + 205: 1367, + 216: 1368, + 221: 1371, + 74: $Vf5, + 206: $Vg5, + 208: $Vh5, + 222: $Vi5, + 223: $Vj5, + 224: $Vk5, + 225: $Vl5, + 226: $Vm5, + 227: $Vn5, + 228: $Vo5, + 229: $Vp5, + }), + { + 2: $V1, + 3: 223, + 4: $V2, + 5: $V3, + 40: 718, + 77: $VA1, + 79: 75, + 89: $V7, + 132: $VB1, + 143: $V_, + 144: 216, + 145: $V$, + 152: $V11, + 156: $VL, + 181: $V51, + 184: 99, + 189: $Vb, + 199: 217, + 200: 219, + 201: 218, + 202: 221, + 203: 1380, + 209: 1221, + 213: $VC1, + 214: 222, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vq5, [2, 177]), + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 110: 1381, 111: 1018, 112: $Vm4}, + o($VU4, [2, 87]), + o($Vn4, [2, 147], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + {78: [1, 1382]}, + {74: $VE3, 78: [2, 1074]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 78: [2, 1067], + 94: 1387, + 111: 151, + 113: 155, + 120: 1383, + 121: 1384, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 241: 1385, + 244: $V61, + 245: $V71, + 246: [1, 1386], + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vr4, [2, 98]), + o($VV4, [2, 1070], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 78: [1, 1388], + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1389, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VV4, [2, 1071], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + { + 78: [1, 1390], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 78: [1, 1391], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + {78: [1, 1392]}, + o($Vr4, [2, 120]), + {74: $VZ4, 78: [1, 1393]}, + o($Vr4, [2, 122]), + {74: $VE3, 78: [1, 1394]}, + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 78: [1, 1395], + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1396, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 78: [1, 1397], + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1398, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 78: [1, 1399], + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1400, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 78: [1, 1401], + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1402, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {74: $Vr5, 78: [1, 1403]}, + o($Vc5, [2, 143], { + 424: 193, + 3: 740, + 114: 743, + 144: 765, + 158: 775, + 160: 776, + 117: 1405, + 2: $V1, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 112: $VZ2, + 115: $V52, + 116: $V62, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 425: $Vv1, + 429: $Vw1, + }), + o($VW4, $VX4, {178: 1244, 163: 1406}), + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 78: [1, 1407], + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1408, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 78: [1, 1409], + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1410, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {74: $Vr5, 78: [1, 1411]}, + {74: $Vr5, 78: [1, 1412]}, + {74: $Vr5, 78: [1, 1413]}, + {74: $Vr5, 78: [1, 1414]}, + {78: [1, 1415], 153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}, + {74: $Vw4, 78: [1, 1416]}, + { + 2: $V1, + 3: 740, + 4: $V2, + 5: $V3, + 72: $VW2, + 74: [1, 1417], + 76: $VX2, + 77: $VY2, + 112: $VZ2, + 114: 743, + 115: $V52, + 116: $V62, + 117: 1418, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 144: 765, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 158: 775, + 160: 776, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1419, 4: $V2, 5: $V3}, + {2: $V1, 3: 1420, 4: $V2, 5: $V3}, + o($VK, [2, 605]), + {2: $V1, 3: 1421, 4: $V2, 5: $V3}, + {113: 1422, 132: $VY, 301: $Vn1}, + {78: [1, 1423]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1424, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 111: 1074, 143: $Vs4, 145: $Vt4, 341: 1425, 342: 1075}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1426, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {124: [1, 1427]}, + o($VK, [2, 661], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($V$4, [2, 666]), + { + 78: [1, 1428], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($VK, [2, 662], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1429, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vx4, [2, 275]), + o($Vx4, [2, 277]), + o($Vx4, [2, 279]), + o($Vx4, [2, 281]), + o($VM1, [2, 161]), + o($VK, [2, 577]), + {148: [1, 1430]}, + o($VK, [2, 578]), + o($VK3, [2, 544], {392: 887, 7: 888, 277: 1431, 4: $V24, 391: [1, 1432], 394: $V34}), + o($VK, [2, 579]), + o($VK, [2, 581]), + {74: $VE3, 78: [1, 1433]}, + o($VK, [2, 585]), + o($VG2, [2, 351]), + { + 74: [1, 1434], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 74: [1, 1435], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 74: [1, 1436], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 74: [1, 1437], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 74: [1, 1438], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($VK, [2, 589]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 1439, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1440, 4: $V2, 5: $V3}, + o($VK, [2, 591]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1387, + 111: 151, + 113: 155, + 120: 1441, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 241: 1385, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {77: [1, 1442]}, + {2: $V1, 3: 1443, 4: $V2, 5: $V3}, + {76: $Vy4, 139: [2, 1157], 485: 1444, 488: 1445}, + o($V25, [2, 1156]), + {139: [1, 1446]}, + {139: [2, 1160]}, + o($VK3, [2, 745]), + o($VV3, [2, 752]), + o($VV3, [2, 1174]), + {2: $V1, 3: 1278, 4: $V2, 5: $V3, 76: [1, 1449], 356: 1447, 363: 1448, 389: 1450}, + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 100: 1451, 111: 1452}, + {40: 1453, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1454, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VO4, [2, 730]), + { + 2: $V1, + 3: 1020, + 4: $V2, + 5: $V3, + 111: 1074, + 143: $Vs4, + 145: $Vt4, + 147: 1455, + 341: 1073, + 342: 1075, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 1456, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VO4, [2, 735]), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1457}, + {340: $VA4, 343: $VB4, 344: $VC4, 516: 1458}, + o($V$1, [2, 699], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1459, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {74: [1, 1460], 78: [1, 1461]}, + o($Vc5, [2, 551]), + o($Vc5, [2, 552]), + {74: $Va5, 78: [1, 1462]}, + o($V$1, [2, 573]), + o($VF4, [2, 388], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + }), + o($VF4, [2, 390], { + 114: 632, + 332: 644, + 115: $V52, + 116: $V62, + 123: $V72, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 141: $Ve2, + 142: $Vf2, + 179: $Vj2, + 180: $Vk2, + 317: $Vm2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + }), + o($VF1, [2, 404]), + o($VF1, [2, 408]), + {78: [1, 1463]}, + {74: $VE3, 78: [1, 1464]}, + o($VF1, [2, 430]), + o($VF1, [2, 432]), + { + 78: [1, 1465], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + {78: [1, 1466]}, + {74: $VE3, 78: [1, 1467]}, + o($VF1, [2, 435]), + o($VF1, [2, 332]), + {77: [1, 1468]}, + o($VF1, $V75, {280: 1469, 281: $V85}), + o($VF1, $V75, {280: 1470, 281: $V85}), + o($VN4, [2, 287]), + o($VF1, [2, 284]), + o($VF1, [2, 377]), + o($Vd4, [2, 381], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + {74: [1, 1472], 78: [1, 1471]}, + { + 74: [1, 1474], + 78: [1, 1473], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + {2: $V1, 3: 1336, 4: $V2, 5: $V3}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1204, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 350: 1475, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VR4, [2, 485]), + o($VR4, [2, 486]), + { + 40: 1478, + 77: $Vk4, + 79: 75, + 89: $V7, + 143: $V_, + 144: 988, + 145: $VG1, + 149: $Vi4, + 152: $V11, + 181: $V51, + 184: 99, + 189: $Vb, + 201: 989, + 307: $Vr1, + 346: 1476, + 347: 1477, + 349: $Vj4, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 111: 1479}, + o($VR4, [2, 481]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1480, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 77: $Vk4, + 143: $V_, + 144: 988, + 145: $VG1, + 152: $V11, + 181: $V51, + 201: 989, + 307: $Vr1, + 347: 1481, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VO4, [2, 468], {74: $VP4}), + o($VO4, [2, 475]), + o($VK, [2, 702]), + o($Vd5, [2, 707]), + o($Vd5, [2, 708]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 824, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 174: 1482, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 257: 823, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {170: [1, 1484], 314: [1, 1483]}, + {465: [1, 1485]}, + o($VP2, [2, 180]), + o($Vs5, [2, 240], {85: 1486, 232: [1, 1487]}), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1488, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1489, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1490, 4: $V2, 5: $V3}, + o($Vl4, [2, 170], { + 216: 1368, + 221: 1371, + 215: 1491, + 205: 1492, + 206: $Vg5, + 208: $Vh5, + 222: $Vi5, + 223: $Vj5, + 224: $Vk5, + 225: $Vl5, + 226: $Vm5, + 227: $Vn5, + 228: $Vo5, + 229: $Vp5, + }), + { + 2: $V1, + 3: 223, + 4: $V2, + 5: $V3, + 77: $VA1, + 132: $VB1, + 143: $V_, + 144: 216, + 145: $V$, + 152: $V11, + 156: $VL, + 181: $V51, + 199: 217, + 200: 219, + 201: 218, + 202: 221, + 209: 1493, + 213: $VC1, + 214: 222, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vt5, [2, 205]), + o($Vt5, [2, 206]), + { + 2: $V1, + 3: 223, + 4: $V2, + 5: $V3, + 77: [1, 1498], + 143: $V_, + 144: 1496, + 145: $V$, + 152: $V11, + 156: $VL, + 181: $V51, + 199: 1495, + 200: 1499, + 201: 1497, + 202: 1500, + 217: 1494, + 270: $VM, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 307: $Vr1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {207: [1, 1501], 223: $Vu5}, + {207: [1, 1503], 223: $Vv5}, + o($Vw5, [2, 222]), + { + 206: [1, 1507], + 208: [1, 1506], + 221: 1505, + 223: $Vj5, + 224: $Vk5, + 225: $Vl5, + 226: $Vm5, + 227: $Vn5, + 228: $Vo5, + 229: $Vp5, + }, + o($Vw5, [2, 224]), + {223: [1, 1508]}, + {208: [1, 1510], 223: [1, 1509]}, + {208: [1, 1512], 223: [1, 1511]}, + {208: [1, 1513]}, + {223: [1, 1514]}, + {223: [1, 1515]}, + { + 74: $Vf5, + 204: 1516, + 205: 1367, + 206: $Vg5, + 208: $Vh5, + 215: 1366, + 216: 1368, + 221: 1371, + 222: $Vi5, + 223: $Vj5, + 224: $Vk5, + 225: $Vl5, + 226: $Vm5, + 227: $Vn5, + 228: $Vo5, + 229: $Vp5, + }, + o($VU4, [2, 84]), + o($Vr4, [2, 100]), + {74: $Vx5, 78: [1, 1517]}, + {78: [1, 1519]}, + o($Vy5, [2, 261]), + {78: [2, 1068]}, + o($Vy5, [2, 265], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 246: [1, 1520], + 247: [1, 1521], + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($Vr4, [2, 99]), + o($VV4, [2, 1072], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + o($Vr4, [2, 101]), + o($Vr4, [2, 102]), + o($Vr4, [2, 103]), + o($Vr4, [2, 121]), + o($Vr4, [2, 124]), + o($Vr4, [2, 127]), + o($VV4, [2, 1076], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + o($Vr4, [2, 128]), + o($VV4, [2, 1078], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + o($Vr4, [2, 129]), + o($VV4, [2, 1080], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + o($Vr4, [2, 130]), + o($VV4, [2, 1084], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + o($Vr4, [2, 131]), + o($VW4, [2, 1091], {177: 1522}), + o($VW4, [2, 1094], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + {74: $Vr5, 78: [1, 1523]}, + o($Vr4, [2, 133]), + o($VV4, [2, 1086], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + o($Vr4, [2, 134]), + o($VV4, [2, 1088], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + o($Vr4, [2, 135]), + o($Vr4, [2, 136]), + o($Vr4, [2, 137]), + o($Vr4, [2, 138]), + o($Vr4, [2, 139]), + o($Vr4, [2, 140]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 265, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 151: 1524, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VY4, [2, 1090], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + o($VK, [2, 615]), + o($VK, [2, 611]), + o($VK, [2, 613]), + o($VK, [2, 609]), + o($VC3, [2, 71]), + o($VK, [2, 457], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($V_4, [2, 460]), + o($V_4, [2, 461], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1525, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($V$4, [2, 670]), + o($VK, [2, 663], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + {2: $V1, 3: 1526, 4: $V2, 5: $V3}, + o($VK3, [2, 553], { + 390: 1527, + 396: 1528, + 397: 1529, + 371: 1537, + 154: $Vz5, + 187: $VA5, + 230: $VB5, + 302: $VC5, + 348: $VD5, + 361: $VE5, + 373: $VF5, + 374: $VG5, + 378: $VH5, + 379: $VI5, + }), + o($VK3, [2, 543]), + o($VK, [2, 584], {76: [1, 1541]}), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1542, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1543, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1544, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1545, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1546, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {74: $VE3, 78: [1, 1547]}, + o($VK, [2, 593]), + {74: $Vx5, 78: [1, 1548]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1387, + 111: 151, + 113: 155, + 120: 1549, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 241: 1385, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o([10, 74, 78, 139, 311, 315, 607, 768], [2, 749]), + {139: [1, 1550]}, + {139: [2, 1158]}, + { + 2: $V1, + 3: 1132, + 4: $V2, + 5: $V3, + 132: $VX1, + 137: $VY1, + 143: $VK1, + 145: $VL1, + 152: $VZ1, + 436: 592, + 480: 1134, + 483: 1551, + 487: 589, + 498: 586, + 502: 588, + }, + {78: [1, 1552]}, + {74: [1, 1553], 78: [2, 514]}, + {40: 1554, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + o($Vc5, [2, 540]), + {74: $V95, 78: [1, 1555]}, + o($Vq5, $Vb5), + o($VK, [2, 1141], {417: 1556, 418: 1557, 72: $VJ5}), + o($VO4, $V35, { + 79: 75, + 184: 99, + 114: 632, + 332: 644, + 40: 1310, + 473: 1559, + 89: $V7, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 146: $V45, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 189: $Vb, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + 475: $V55, + }), + o($VO4, [2, 733], {74: $VZ4}), + o($VO4, [2, 734], {74: $VE3}), + o( + [ + 10, 53, 72, 89, 124, 146, 156, 189, 271, 272, 294, 311, 315, 340, 343, 344, 401, 405, + 406, 409, 411, 413, 414, 422, 423, 439, 441, 442, 444, 445, 446, 447, 448, 452, 453, + 456, 457, 510, 512, 513, 522, 607, 768, + ], + [2, 1189], + {517: 1560, 3: 1561, 2: $V1, 4: $V2, 5: $V3, 76: [1, 1562]} + ), + o($VK5, [2, 1191], {518: 1563, 76: [1, 1564]}), + o($V$1, [2, 700], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + {131: [1, 1565]}, + o($VD4, [2, 546]), + o($VD4, [2, 548]), + o($VF1, [2, 420]), + o($VF1, [2, 421]), + o($VF1, [2, 447]), + o($VF1, [2, 431]), + o($VF1, [2, 433]), + {118: $VL5, 282: 1566, 283: 1567, 284: [1, 1568]}, + o($VF1, [2, 333]), + o($VF1, [2, 334]), + o($VF1, [2, 320]), + {131: [1, 1570]}, + o($VF1, [2, 322]), + {131: [1, 1571]}, + {74: $Va5, 78: [1, 1572]}, + { + 77: $Vk4, + 143: $V_, + 144: 988, + 145: $VG1, + 152: $V11, + 181: $V51, + 201: 989, + 307: $Vr1, + 347: 1573, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VO4, [2, 473], {74: $VP4}), + o($VO4, [2, 476]), + o($Vq5, [2, 496]), + o($Vc5, [2, 488], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($VO4, [2, 467], {74: $VP4}), + o($VK, [2, 726], {74: $Vw4, 198: [1, 1574]}), + {340: $VM5, 343: $VN5, 466: 1575}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1578, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {119: [1, 1580], 170: [1, 1581], 314: [1, 1579]}, + o($VO5, [2, 259], {86: 1582, 118: [1, 1583]}), + {119: [1, 1584]}, + o($Ve5, [2, 239], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + { + 95: [1, 1585], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + {95: [1, 1586]}, + o($Vt5, [2, 203]), + o($Vt5, [2, 204]), + o($Vq5, [2, 178]), + o($Vt5, [2, 237], {218: 1587, 230: [1, 1588], 231: [1, 1589]}), + o($VP5, [2, 208], {3: 1590, 2: $V1, 4: $V2, 5: $V3, 76: [1, 1591]}), + o($VQ5, [2, 1103], {219: 1592, 76: [1, 1593]}), + {2: $V1, 3: 1594, 4: $V2, 5: $V3, 76: [1, 1595]}, + {40: 1596, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + o($VP5, [2, 216], {3: 1597, 2: $V1, 4: $V2, 5: $V3, 76: [1, 1598]}), + o($VP5, [2, 219], {3: 1599, 2: $V1, 4: $V2, 5: $V3, 76: [1, 1600]}), + {77: [1, 1601]}, + o($Vw5, [2, 234]), + {77: [1, 1602]}, + o($Vw5, [2, 230]), + o($Vw5, [2, 223]), + {223: $Vv5}, + {223: $Vu5}, + o($Vw5, [2, 225]), + o($Vw5, [2, 226]), + {223: [1, 1603]}, + o($Vw5, [2, 228]), + {223: [1, 1604]}, + {223: [1, 1605]}, + o($Vw5, [2, 232]), + o($Vw5, [2, 233]), + { + 78: [1, 1606], + 205: 1492, + 206: $Vg5, + 208: $Vh5, + 215: 1491, + 216: 1368, + 221: 1371, + 222: $Vi5, + 223: $Vj5, + 224: $Vk5, + 225: $Vl5, + 226: $Vm5, + 227: $Vn5, + 228: $Vo5, + 229: $Vp5, + }, + o($Vr4, [2, 91]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1387, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 241: 1607, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vr4, [2, 92]), + o($Vy5, [2, 266], {242: 1608, 243: [1, 1609]}), + {248: [1, 1610]}, + o($Vc5, [2, 142], { + 424: 193, + 3: 740, + 114: 743, + 144: 765, + 158: 775, + 160: 776, + 117: 1611, + 2: $V1, + 4: $V2, + 5: $V3, + 72: $VW2, + 76: $VX2, + 77: $VY2, + 112: $VZ2, + 115: $V52, + 116: $V62, + 118: $V_2, + 122: $V$2, + 123: $V03, + 124: $V13, + 128: $V23, + 129: $V33, + 130: $V43, + 131: $V53, + 132: $V63, + 133: $V73, + 134: $V83, + 135: $V93, + 136: $Va3, + 137: $Vb3, + 138: $Vc3, + 139: $Vd3, + 140: $Ve3, + 141: $Vf3, + 142: $Vg3, + 143: $Vh3, + 145: $Vi3, + 146: $Vj3, + 148: $Vk3, + 149: $Vl3, + 150: $Vm3, + 152: $Vn3, + 154: $Vo3, + 156: $Vp3, + 162: $Vq3, + 164: $Vr3, + 166: $Vs3, + 168: $Vt3, + 169: $Vu3, + 170: $Vv3, + 171: $Vw3, + 172: $Vx3, + 173: $Vy3, + 175: $Vz3, + 185: $VA3, + 187: $VB3, + 244: $V61, + 245: $V71, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 425: $Vv1, + 429: $Vw1, + }), + o($Vr4, [2, 132]), + {74: $VE3, 78: [1, 1612]}, + o($V_4, [2, 462], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($VK, [2, 580]), + o($VK3, [2, 542]), + o($VK3, [2, 554], { + 371: 1537, + 397: 1613, + 154: $Vz5, + 187: $VA5, + 230: $VB5, + 302: $VC5, + 348: $VD5, + 361: $VE5, + 373: $VF5, + 374: $VG5, + 378: $VH5, + 379: $VI5, + }), + o($VD3, [2, 556]), + {375: [1, 1614]}, + {375: [1, 1615]}, + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1616}, + o($VD3, [2, 562], {77: [1, 1617]}), + { + 2: $V1, + 3: 114, + 4: $V2, + 5: $V3, + 77: [1, 1619], + 113: 255, + 131: $VX, + 132: $VY, + 143: $V_, + 152: $V11, + 156: $VL, + 181: $V51, + 196: 254, + 200: 1620, + 201: 258, + 261: 256, + 262: 257, + 269: $VH1, + 270: $VI1, + 279: 1618, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 307: $Vr1, + }, + o($VD3, [2, 566]), + {302: [1, 1621]}, + o($VD3, [2, 568]), + o($VD3, [2, 569]), + {340: [1, 1622]}, + {77: [1, 1623]}, + {2: $V1, 3: 1624, 4: $V2, 5: $V3}, + { + 78: [1, 1625], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 78: [1, 1626], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 78: [1, 1627], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 78: [1, 1628], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + { + 78: [1, 1629], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($VK, $V05, {412: 1630, 76: $V15}), + o($VK, [2, 599]), + {74: $Vx5, 78: [1, 1631]}, + { + 2: $V1, + 3: 1132, + 4: $V2, + 5: $V3, + 132: $VX1, + 137: $VY1, + 143: $VK1, + 145: $VL1, + 152: $VZ1, + 436: 592, + 480: 1134, + 483: 1632, + 487: 589, + 498: 586, + 502: 588, + }, + o($VK3, [2, 743]), + o($VK, [2, 501], { + 357: 1633, + 359: 1634, + 360: 1635, + 4: $VR5, + 247: $VS5, + 348: $VT5, + 361: $VU5, + }), + o($VV5, $VW5, { + 3: 1278, + 364: 1640, + 389: 1641, + 365: 1642, + 366: 1643, + 2: $V1, + 4: $V2, + 5: $V3, + 372: $VX5, + }), + {78: [2, 515]}, + {76: [1, 1645]}, + o($VK, [2, 617]), + o($VK, [2, 1142]), + {373: [1, 1647], 419: [1, 1646]}, + o($VO4, [2, 736]), + o($VK, $V0, { + 17: 5, + 18: 7, + 19: 8, + 20: 9, + 21: 10, + 22: 11, + 23: 12, + 24: 13, + 25: 14, + 26: 15, + 27: 16, + 28: 17, + 29: 18, + 30: 19, + 31: 20, + 32: 21, + 33: 22, + 34: 23, + 35: 24, + 36: 25, + 37: 26, + 38: 27, + 39: 28, + 40: 29, + 41: 30, + 42: 31, + 43: 32, + 44: 33, + 45: 34, + 46: 35, + 47: 36, + 48: 37, + 49: 38, + 50: 39, + 51: 40, + 52: 41, + 54: 43, + 55: 44, + 56: 45, + 57: 46, + 58: 47, + 59: 48, + 60: 49, + 61: 50, + 62: 51, + 63: 52, + 64: 53, + 65: 54, + 66: 55, + 67: 56, + 68: 57, + 69: 58, + 70: 59, + 71: 60, + 79: 75, + 509: 95, + 184: 99, + 3: 100, + 12: 1648, + 2: $V1, + 4: $V2, + 5: $V3, + 53: $V5, + 72: $V6, + 89: $V7, + 124: $V8, + 146: $V9, + 156: $Va, + 189: $Vb, + 271: $Vc, + 272: $Vd, + 294: $Ve, + 340: $Vf, + 343: $Vg, + 344: $Vh, + 401: $Vi, + 405: $Vj, + 406: $Vk, + 409: $Vl, + 411: $Vm, + 413: $Vn, + 414: $Vo, + 422: $Vp, + 423: $Vq, + 439: $Vr, + 441: $Vs, + 442: $Vt, + 444: $Vu, + 445: $Vv, + 446: $Vw, + 447: $Vx, + 448: $Vy, + 452: $Vz, + 453: $VA, + 456: $VB, + 457: $VC, + 510: $VD, + 512: $VE, + 513: $VF, + 522: $VG, + }), + o($VK, [2, 770]), + o($VK5, [2, 1190]), + o($VK, $V0, { + 17: 5, + 18: 7, + 19: 8, + 20: 9, + 21: 10, + 22: 11, + 23: 12, + 24: 13, + 25: 14, + 26: 15, + 27: 16, + 28: 17, + 29: 18, + 30: 19, + 31: 20, + 32: 21, + 33: 22, + 34: 23, + 35: 24, + 36: 25, + 37: 26, + 38: 27, + 39: 28, + 40: 29, + 41: 30, + 42: 31, + 43: 32, + 44: 33, + 45: 34, + 46: 35, + 47: 36, + 48: 37, + 49: 38, + 50: 39, + 51: 40, + 52: 41, + 54: 43, + 55: 44, + 56: 45, + 57: 46, + 58: 47, + 59: 48, + 60: 49, + 61: 50, + 62: 51, + 63: 52, + 64: 53, + 65: 54, + 66: 55, + 67: 56, + 68: 57, + 69: 58, + 70: 59, + 71: 60, + 79: 75, + 509: 95, + 184: 99, + 3: 100, + 12: 1649, + 2: $V1, + 4: $V2, + 5: $V3, + 53: $V5, + 72: $V6, + 89: $V7, + 124: $V8, + 146: $V9, + 156: $Va, + 189: $Vb, + 271: $Vc, + 272: $Vd, + 294: $Ve, + 340: $Vf, + 343: $Vg, + 344: $Vh, + 401: $Vi, + 405: $Vj, + 406: $Vk, + 409: $Vl, + 411: $Vm, + 413: $Vn, + 414: $Vo, + 422: $Vp, + 423: $Vq, + 439: $Vr, + 441: $Vs, + 442: $Vt, + 444: $Vu, + 445: $Vv, + 446: $Vw, + 447: $Vx, + 448: $Vy, + 452: $Vz, + 453: $VA, + 456: $VB, + 457: $VC, + 510: $VD, + 512: $VE, + 513: $VF, + 522: $VG, + }), + o($VK5, [2, 1192]), + {78: [1, 1650]}, + {78: [1, 1651], 118: $VL5, 283: 1652}, + {78: [1, 1653]}, + {119: [1, 1654]}, + {119: [1, 1655]}, + {78: [1, 1656]}, + {78: [1, 1657]}, + o($VR4, [2, 484]), + o($VO4, [2, 472], {74: $VP4}), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 143: $VK1, 145: $VL1, 199: 1659, 436: 1658}, + o($Vd5, [2, 711]), + o($Vd5, [2, 713]), + {146: [1, 1660]}, + { + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 314: [1, 1661], + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + {344: $VY5, 467: 1662}, + {422: [1, 1665], 468: [1, 1664]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1666, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VZ5, [2, 270], {87: 1667, 249: [1, 1668], 251: [1, 1669]}), + {119: [1, 1670]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1676, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 233: 1671, + 235: 1672, + 236: $V_5, + 237: $V$5, + 238: $V06, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1677, 4: $V2, 5: $V3}, + {2: $V1, 3: 1678, 4: $V2, 5: $V3}, + o($Vt5, [2, 207]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1679, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 100: 1680, 111: 1452}, + o($VP5, [2, 209]), + {2: $V1, 3: 1681, 4: $V2, 5: $V3}, + o($VP5, [2, 1105], {220: 1682, 3: 1683, 2: $V1, 4: $V2, 5: $V3}), + o($VQ5, [2, 1104]), + o($VP5, [2, 212]), + {2: $V1, 3: 1684, 4: $V2, 5: $V3}, + {78: [1, 1685]}, + o($VP5, [2, 217]), + {2: $V1, 3: 1686, 4: $V2, 5: $V3}, + o($VP5, [2, 220]), + {2: $V1, 3: 1687, 4: $V2, 5: $V3}, + {40: 1688, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + {40: 1689, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + o($Vw5, [2, 227]), + o($Vw5, [2, 229]), + o($Vw5, [2, 231]), + o($Vl4, [2, 171]), + o($Vy5, [2, 262]), + o($Vy5, [2, 267]), + {244: [1, 1690], 245: [1, 1691]}, + o($Vy5, [2, 268], {246: [1, 1692]}), + o($VW4, [2, 1092], {153: 1024, 179: $Vo4, 180: $Vp4, 181: $Vq4}), + o($Vr4, [2, 141]), + o($VD3, [2, 555]), + o($VD3, [2, 558]), + {379: [1, 1693]}, + o($VD3, [2, 1135], {400: 1694, 398: 1695, 77: $V16}), + {131: $VX, 196: 1697}, + o($VD3, [2, 563]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1698, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VD3, [2, 565]), + o($VD3, [2, 567]), + { + 2: $V1, + 3: 114, + 4: $V2, + 5: $V3, + 77: [1, 1700], + 113: 255, + 131: $VX, + 132: $VY, + 143: $V_, + 152: $V11, + 156: $VL, + 181: $V51, + 196: 254, + 200: 259, + 201: 258, + 261: 256, + 262: 257, + 269: $VH1, + 270: $VI1, + 279: 1699, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 307: $Vr1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1701, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VK, [2, 586]), + o($VG2, [2, 356]), + o($VG2, [2, 357]), + o($VG2, [2, 358]), + o($VG2, [2, 359]), + o($VG2, [2, 360]), + o($VK, [2, 590]), + o($VK, [2, 600]), + o($VK3, [2, 742]), + o($VK, [2, 497]), + o($VK, [2, 502], {360: 1702, 4: $VR5, 247: $VS5, 348: $VT5, 361: $VU5}), + o($V26, [2, 504]), + o($V26, [2, 505]), + {124: [1, 1703]}, + {124: [1, 1704]}, + {124: [1, 1705]}, + {74: [1, 1706], 78: [2, 513]}, + o($Vc5, [2, 541]), + o($Vc5, [2, 516]), + { + 187: [1, 1714], + 193: [1, 1715], + 367: 1707, + 368: 1708, + 369: 1709, + 370: 1710, + 371: 1711, + 373: $VF5, + 374: [1, 1712], + 375: [1, 1716], + 378: [1, 1713], + }, + {2: $V1, 3: 1717, 4: $V2, 5: $V3}, + {40: 1718, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + {420: [1, 1719]}, + {421: [1, 1720]}, + o($VK, [2, 769]), + o($VK, [2, 771]), + o($VD4, [2, 545]), + o($VF1, [2, 336]), + {78: [1, 1721]}, + o($VF1, [2, 337]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1676, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 233: 1722, + 235: 1672, + 236: $V_5, + 237: $V$5, + 238: $V06, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1387, + 111: 151, + 113: 155, + 120: 1723, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 241: 1385, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($VF1, [2, 321]), + o($VF1, [2, 323]), + {2: $V1, 3: 1724, 4: $V2, 5: $V3}, + o($VK, [2, 728], {77: [1, 1725]}), + { + 2: $V1, + 3: 1020, + 4: $V2, + 5: $V3, + 111: 1074, + 143: $Vs4, + 145: $Vt4, + 147: 1726, + 341: 1073, + 342: 1075, + }, + {340: $VM5, 343: $VN5, 466: 1727}, + o($Vd5, [2, 715]), + {77: [1, 1729], 348: [1, 1730], 349: [1, 1728]}, + {170: [1, 1732], 314: [1, 1731]}, + {170: [1, 1734], 314: [1, 1733]}, + { + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 314: [1, 1735], + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($Vn4, [2, 250], {88: 1736, 162: [1, 1737], 168: [1, 1739], 169: [1, 1738]}), + {131: $VX, 196: 1740}, + {131: $VX, 196: 1741}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1387, + 111: 151, + 113: 155, + 120: 1742, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 241: 1385, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + o($Vs5, [2, 248], {234: 1743, 74: $V36, 239: [1, 1745]}), + o($V46, [2, 242]), + {146: [1, 1746]}, + {77: [1, 1747]}, + {77: [1, 1748]}, + o($V46, [2, 247], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + {78: [2, 1059], 96: 1749, 99: [1, 1751], 102: 1750}, + {99: [1, 1752]}, + o($Vt5, [2, 235], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + o($Vt5, [2, 236], {74: $V95}), + o($VP5, [2, 210]), + o($VP5, [2, 211]), + o($VP5, [2, 1106]), + o($VP5, [2, 213]), + {2: $V1, 3: 1753, 4: $V2, 5: $V3, 76: [1, 1754]}, + o($VP5, [2, 218]), + o($VP5, [2, 221]), + {78: [1, 1755]}, + {78: [1, 1756]}, + o($Vy5, [2, 263]), + o($Vy5, [2, 264]), + o($Vy5, [2, 269]), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1757}, + o($VD3, [2, 560]), + o($VD3, [2, 1136]), + {2: $V1, 3: 1758, 4: $V2, 5: $V3}, + {74: [1, 1759]}, + { + 78: [1, 1760], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($VD3, [2, 570]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1761, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 78: [1, 1762], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($V26, [2, 503]), + {2: $V1, 3: 1763, 4: $V2, 5: $V3}, + {131: $VX, 196: 1764}, + {2: $V1, 3: 1765, 4: $V2, 5: $V3}, + o($VV5, $VW5, {366: 1643, 365: 1766, 372: $VX5}), + o($VK3, [2, 518]), + o($VK3, [2, 519]), + o($VK3, [2, 520]), + o($VK3, [2, 521]), + o($VK3, [2, 522]), + {375: [1, 1767]}, + {375: [1, 1768]}, + o($V56, [2, 1129], {387: 1769, 375: [1, 1770]}), + {2: $V1, 3: 1771, 4: $V2, 5: $V3}, + {2: $V1, 3: 1772, 4: $V2, 5: $V3}, + o($VV5, [2, 524]), + o($VK, [2, 1139], {416: 1773, 418: 1774, 72: $VJ5}), + o($VK, [2, 618]), + o($VK, [2, 619], {372: [1, 1775]}), + o($VF1, [2, 338]), + o([78, 118], [2, 339], {74: $V36}), + {74: $Vx5, 78: [2, 340]}, + o($VK, [2, 727]), + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 100: 1776, 111: 1452}, + o($Vd5, [2, 714], {74: $VZ4}), + o($Vd5, [2, 712]), + { + 77: $Vk4, + 143: $V_, + 144: 988, + 145: $VG1, + 152: $V11, + 181: $V51, + 201: 989, + 307: $Vr1, + 347: 1777, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 100: 1778, 111: 1452}, + {349: [1, 1779]}, + {344: $VY5, 467: 1780}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1781, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {344: $VY5, 467: 1782}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1783, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {344: $VY5, 467: 1784}, + o($Vn4, [2, 72]), + {40: 1785, 79: 75, 89: $V7, 164: [1, 1786], 184: 99, 189: $Vb, 240: [1, 1787]}, + {40: 1788, 79: 75, 89: $V7, 184: 99, 189: $Vb, 240: [1, 1789]}, + {40: 1790, 79: 75, 89: $V7, 184: 99, 189: $Vb, 240: [1, 1791]}, + o($VZ5, [2, 273], {250: 1792, 251: [1, 1793]}), + {252: 1794, 253: [2, 1107], 770: [1, 1795]}, + o($VO5, [2, 260], {74: $Vx5}), + o($Vs5, [2, 241]), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1676, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 235: 1796, + 236: $V_5, + 237: $V$5, + 238: $V06, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1797, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {77: [1, 1798]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1676, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 233: 1799, + 235: 1672, + 236: $V_5, + 237: $V$5, + 238: $V06, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1676, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 233: 1800, + 235: 1672, + 236: $V_5, + 237: $V$5, + 238: $V06, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {78: [1, 1801]}, + {78: [2, 1060]}, + {77: [1, 1802]}, + {77: [1, 1803]}, + o($VP5, [2, 214]), + {2: $V1, 3: 1804, 4: $V2, 5: $V3}, + {2: $V1, 3: 1805, 4: $V2, 5: $V3, 76: [1, 1806]}, + {2: $V1, 3: 1807, 4: $V2, 5: $V3, 76: [1, 1808]}, + o($VD3, [2, 1133], {399: 1809, 398: 1810, 77: $V16}), + {78: [1, 1811]}, + {131: $VX, 196: 1812}, + o($VD3, [2, 564]), + { + 78: [1, 1813], + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($VD3, [2, 525]), + o($V26, [2, 506]), + o($V26, [2, 507]), + o($V26, [2, 508]), + o($Vc5, [2, 517]), + {2: $V1, 3: 1815, 4: $V2, 5: $V3, 77: [2, 1125], 376: 1814}, + {77: [1, 1816]}, + {2: $V1, 3: 1818, 4: $V2, 5: $V3, 77: [2, 1131], 388: 1817}, + o($V56, [2, 1130]), + {77: [1, 1819]}, + {77: [1, 1820]}, + o($VK, [2, 616]), + o($VK, [2, 1140]), + o($VV5, $VW5, {366: 1643, 365: 1821, 372: $VX5}), + {74: $V95, 78: [1, 1822]}, + o($Vd5, [2, 721], {74: $VP4}), + {74: $V95, 78: [1, 1823]}, + o($Vd5, [2, 723]), + o($Vd5, [2, 716]), + { + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 314: [1, 1824], + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($Vd5, [2, 719]), + { + 99: $V32, + 112: $V42, + 114: 632, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 314: [1, 1825], + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 332: 644, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }, + o($Vd5, [2, 717]), + o($Vn4, [2, 251]), + {40: 1826, 79: 75, 89: $V7, 184: 99, 189: $Vb, 240: [1, 1827]}, + {40: 1828, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + o($Vn4, [2, 253]), + {40: 1829, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + o($Vn4, [2, 254]), + {40: 1830, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + o($VZ5, [2, 271]), + {131: $VX, 196: 1831}, + {253: [1, 1832]}, + {253: [2, 1108]}, + o($V46, [2, 243]), + o($Vs5, [2, 249], { + 114: 632, + 332: 644, + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1676, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 233: 1833, + 235: 1672, + 236: $V_5, + 237: $V$5, + 238: $V06, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {74: $V36, 78: [1, 1834]}, + {74: $V36, 78: [1, 1835]}, + o($VT4, [2, 1061], {97: 1836, 104: 1837, 3: 1839, 2: $V1, 4: $V2, 5: $V3, 76: $V66}), + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1842, + 103: 1840, + 105: 1841, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 100: 1843, 111: 1452}, + o($VP5, [2, 215]), + o($Vt5, [2, 173]), + {2: $V1, 3: 1844, 4: $V2, 5: $V3}, + o($Vt5, [2, 175]), + {2: $V1, 3: 1845, 4: $V2, 5: $V3}, + o($VD3, [2, 559]), + o($VD3, [2, 1134]), + o($VD3, [2, 557]), + {78: [1, 1846]}, + o($VD3, [2, 571]), + {77: [1, 1847]}, + {77: [2, 1126]}, + {2: $V1, 3: 1849, 4: $V2, 5: $V3, 132: $V76, 377: 1848}, + {77: [1, 1851]}, + {77: [2, 1132]}, + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 100: 1852, 111: 1452}, + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 100: 1853, 111: 1452}, + o($VK, [2, 620]), + o($VK, [2, 729]), + {348: [1, 1855], 349: [1, 1854]}, + {344: $VY5, 467: 1856}, + {340: $VM5, 343: $VN5, 466: 1857}, + o($Vn4, [2, 252]), + {40: 1858, 79: 75, 89: $V7, 184: 99, 189: $Vb}, + o($Vn4, [2, 255]), + o($Vn4, [2, 257]), + o($Vn4, [2, 258]), + o($VZ5, [2, 274]), + {131: [2, 1109], 254: 1859, 650: [1, 1860]}, + {74: $V36, 78: [1, 1861]}, + o($V46, [2, 245]), + o($V46, [2, 246]), + o($VT4, [2, 74]), + o($VT4, [2, 1062]), + {2: $V1, 3: 1862, 4: $V2, 5: $V3}, + o($VT4, [2, 78]), + {74: [1, 1864], 78: [1, 1863]}, + o($Vc5, [2, 80]), + o($Vc5, [2, 81], { + 114: 632, + 332: 644, + 76: [1, 1865], + 99: $V32, + 112: $V42, + 115: $V52, + 116: $V62, + 123: $V72, + 124: $VG3, + 133: $V92, + 136: $Va2, + 138: $Vb2, + 139: $Vc2, + 140: $Vd2, + 141: $Ve2, + 142: $Vf2, + 154: $Vg2, + 170: $Vh2, + 171: $Vi2, + 179: $Vj2, + 180: $Vk2, + 316: $Vl2, + 317: $Vm2, + 318: $Vn2, + 320: $Vo2, + 321: $Vp2, + 322: $Vq2, + 323: $Vr2, + 324: $Vs2, + 325: $Vt2, + 326: $Vu2, + 327: $Vv2, + 328: $Vw2, + 329: $Vx2, + 330: $Vy2, + 331: $Vz2, + 335: $VA2, + 336: $VB2, + 337: $VC2, + 338: $VD2, + }), + {74: $V95, 78: [1, 1866]}, + o($Vt5, [2, 174]), + o($Vt5, [2, 176]), + o($VD3, [2, 561]), + {2: $V1, 3: 1849, 4: $V2, 5: $V3, 132: $V76, 377: 1867}, + {74: $V86, 78: [1, 1868]}, + o($Vc5, [2, 536]), + o($Vc5, [2, 537]), + {2: $V1, 3: 1020, 4: $V2, 5: $V3, 100: 1870, 111: 1452}, + {74: $V95, 78: [1, 1871]}, + {74: $V95, 78: [1, 1872]}, + { + 77: $Vk4, + 143: $V_, + 144: 988, + 145: $VG1, + 152: $V11, + 181: $V51, + 201: 989, + 307: $Vr1, + 347: 1873, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {349: [1, 1874]}, + o($Vd5, [2, 718]), + o($Vd5, [2, 720]), + o($Vn4, [2, 256]), + {131: $VX, 196: 1875}, + {131: [2, 1110]}, + o($V46, [2, 244]), + o($VT4, [2, 77]), + {78: [2, 76]}, + { + 2: $V1, + 3: 171, + 4: $V2, + 5: $V3, + 56: 167, + 77: $VW, + 94: 1842, + 105: 1876, + 111: 151, + 113: 155, + 131: $VX, + 132: $VY, + 137: $VZ, + 143: $V_, + 144: 163, + 145: $V$, + 149: $V01, + 152: $V11, + 154: $V21, + 156: $VL, + 158: 170, + 179: $V31, + 180: $V41, + 181: $V51, + 196: 153, + 200: 149, + 201: 157, + 202: 158, + 244: $V61, + 245: $V71, + 258: 152, + 259: 148, + 260: 150, + 261: 154, + 262: 156, + 263: 159, + 264: 160, + 265: 161, + 266: 164, + 267: 165, + 269: $V81, + 270: $V91, + 271: $Vc, + 275: $Va1, + 276: $Vb1, + 278: $Vc1, + 285: $Vd1, + 286: $Ve1, + 287: $Vf1, + 288: $Vg1, + 289: $Vh1, + 290: $Vi1, + 291: $Vj1, + 292: $Vk1, + 294: $VN, + 295: $VO, + 296: $VP, + 297: $VQ, + 298: $VR, + 299: $Vl1, + 300: $Vm1, + 301: $Vn1, + 302: $Vo1, + 303: $Vp1, + 304: $Vq1, + 307: $Vr1, + 308: $Vs1, + 317: $Vt1, + 322: $Vu1, + 424: 193, + 425: $Vv1, + 429: $Vw1, + }, + {2: $V1, 3: 1877, 4: $V2, 5: $V3}, + {78: [1, 1878]}, + {74: $V86, 78: [1, 1879]}, + {379: [1, 1880]}, + {2: $V1, 3: 1881, 4: $V2, 5: $V3, 132: [1, 1882]}, + {74: $V95, 78: [1, 1883]}, + o($VK3, [2, 534]), + o($VK3, [2, 535]), + o($Vd5, [2, 722], {74: $VP4}), + o($Vd5, [2, 724]), + o($V96, [2, 1111], {255: 1884, 770: [1, 1885]}), + o($Vc5, [2, 79]), + o($Vc5, [2, 82]), + o($VT4, [2, 1063], {3: 1839, 101: 1886, 104: 1887, 2: $V1, 4: $V2, 5: $V3, 76: $V66}), + o($VK3, [2, 526]), + {2: $V1, 3: 248, 4: $V2, 5: $V3, 199: 1888}, + o($Vc5, [2, 538]), + o($Vc5, [2, 539]), + o($VK3, [2, 533]), + o($VZ5, [2, 1113], {256: 1889, 420: [1, 1890]}), + o($V96, [2, 1112]), + o($VT4, [2, 75]), + o($VT4, [2, 1064]), + o($Va6, [2, 1127], {380: 1891, 382: 1892, 77: [1, 1893]}), + o($VZ5, [2, 272]), + o($VZ5, [2, 1114]), + o($VK3, [2, 529], {381: 1894, 383: 1895, 230: [1, 1896]}), + o($Va6, [2, 1128]), + {2: $V1, 3: 1849, 4: $V2, 5: $V3, 132: $V76, 377: 1897}, + o($VK3, [2, 527]), + {230: [1, 1899], 384: 1898}, + {343: [1, 1900]}, + {74: $V86, 78: [1, 1901]}, + o($VK3, [2, 530]), + {340: [1, 1902]}, + {385: [1, 1903]}, + o($Va6, [2, 528]), + {385: [1, 1904]}, + {386: [1, 1905]}, + {386: [1, 1906]}, + {230: [2, 531]}, + o($VK3, [2, 532]), + ], + defaultActions: { + 105: [2, 6], + 197: [2, 341], + 198: [2, 342], + 199: [2, 343], + 200: [2, 344], + 201: [2, 345], + 202: [2, 346], + 203: [2, 347], + 204: [2, 348], + 205: [2, 349], + 206: [2, 350], + 213: [2, 703], + 598: [2, 1150], + 660: [2, 1115], + 661: [2, 1116], + 717: [2, 704], + 787: [2, 1081], + 788: [2, 1082], + 935: [2, 454], + 936: [2, 455], + 937: [2, 456], + 996: [2, 705], + 1299: [2, 1160], + 1386: [2, 1068], + 1445: [2, 1158], + 1554: [2, 515], + 1750: [2, 1060], + 1795: [2, 1108], + 1815: [2, 1126], + 1818: [2, 1132], + 1860: [2, 1110], + 1863: [2, 76], + 1905: [2, 531], + }, + parseError: function parseError(str, hash) { + if (hash.recoverable) { + this.trace(str); + } else { + var error = new Error(str); + error.hash = hash; + throw error; + } + }, + parse: function parse(input) { + var self = this, + stack = [0], + tstack = [], // token stack + vstack = [null], // semantic value stack + lstack = [], // location stack + table = this.table, + yytext = '', + yylineno = 0, + yyleng = 0, + recovering = 0, + TERROR = 2, + EOF = 1; + + var args = lstack.slice.call(arguments, 1); + + //this.reductionCount = this.shiftCount = 0; + + var lexer = Object.create(this.lexer); + var sharedState = {yy: {}}; + // copy state + for (var k in this.yy) { + if (Object.prototype.hasOwnProperty.call(this.yy, k)) { + sharedState.yy[k] = this.yy[k]; + } + } + + lexer.setInput(input, sharedState.yy); + sharedState.yy.lexer = lexer; + sharedState.yy.parser = this; + if (typeof lexer.yylloc == 'undefined') { + lexer.yylloc = {}; + } + var yyloc = lexer.yylloc; + lstack.push(yyloc); + + var ranges = lexer.options && lexer.options.ranges; + + if (typeof sharedState.yy.parseError === 'function') { + this.parseError = sharedState.yy.parseError; + } else { + this.parseError = Object.getPrototypeOf(this).parseError; + } + + function popStack(n) { + stack.length = stack.length - 2 * n; + vstack.length = vstack.length - n; + lstack.length = lstack.length - n; + } + + _token_stack: var lex = function () { + var token; + token = lexer.lex() || EOF; + // if token isn't its numeric value, convert + if (typeof token !== 'number') { + token = self.symbols_[token] || token; + } + return token; + }; + + var symbol, + preErrorSymbol, + state, + action, + a, + r, + yyval = {}, + p, + len, + newState, + expected; + while (true) { + // retreive state number from top of stack + state = stack[stack.length - 1]; + + // use default actions if available + if (this.defaultActions[state]) { + action = this.defaultActions[state]; + } else { + if (symbol === null || typeof symbol == 'undefined') { + symbol = lex(); + } + // read action for current state and first input + action = table[state] && table[state][symbol]; + } + + // handle parse error + _handle_error: if (typeof action === 'undefined' || !action.length || !action[0]) { + var error_rule_depth; + var errStr = ''; + + // Return the rule stack depth where the nearest error rule can be found. + // Return FALSE when no error recovery rule was found. + function locateNearestErrorRecoveryRule(state) { + var stack_probe = stack.length - 1; + var depth = 0; + + // try to recover from error + for (;;) { + // check for error recovery rule in this state + if (TERROR.toString() in table[state]) { + return depth; + } + if (state === 0 || stack_probe < 2) { + return false; // No suitable error recovery rule available. + } + stack_probe -= 2; // popStack(1): [symbol, action] + state = stack[stack_probe]; + ++depth; + } + } + + if (!recovering) { + // first see if there's any chance at hitting an error recovery rule: + error_rule_depth = locateNearestErrorRecoveryRule(state); + + // Report error + expected = []; + for (p in table[state]) { + if (this.terminals_[p] && p > TERROR) { + expected.push("'" + this.terminals_[p] + "'"); + } + } + if (lexer.showPosition) { + errStr = + 'Parse error on line ' + + (yylineno + 1) + + ':\n' + + lexer.showPosition() + + '\nExpecting ' + + expected.join(', ') + + ", got '" + + (this.terminals_[symbol] || symbol) + + "'"; + } else { + errStr = + 'Parse error on line ' + + (yylineno + 1) + + ': Unexpected ' + + (symbol == EOF + ? 'end of input' + : "'" + (this.terminals_[symbol] || symbol) + "'"); + } + this.parseError(errStr, { + text: lexer.match, + token: this.terminals_[symbol] || symbol, + line: lexer.yylineno, + loc: yyloc, + expected: expected, + recoverable: error_rule_depth !== false, + }); + } else if (preErrorSymbol !== EOF) { + error_rule_depth = locateNearestErrorRecoveryRule(state); + } + + // just recovered from another error + if (recovering == 3) { + if (symbol === EOF || preErrorSymbol === EOF) { + throw new Error( + errStr || 'Parsing halted while starting to recover from another error.' + ); + } + + // discard current lookahead and grab another + yyleng = lexer.yyleng; + yytext = lexer.yytext; + yylineno = lexer.yylineno; + yyloc = lexer.yylloc; + symbol = lex(); + } + + // try to recover from error + if (error_rule_depth === false) { + throw new Error( + errStr || 'Parsing halted. No suitable error recovery rule available.' + ); + } + popStack(error_rule_depth); + + preErrorSymbol = symbol == TERROR ? null : symbol; // save the lookahead token + symbol = TERROR; // insert generic error symbol as new lookahead + state = stack[stack.length - 1]; + action = table[state] && table[state][TERROR]; + recovering = 3; // allow 3 real symbols to be shifted before reporting a new error + } + + // this shouldn't happen, unless resolve defaults are off + if (action[0] instanceof Array && action.length > 1) { + throw new Error( + 'Parse Error: multiple actions possible at state: ' + state + ', token: ' + symbol + ); + } + + switch (action[0]) { + case 1: // shift + //this.shiftCount++; + + stack.push(symbol); + vstack.push(lexer.yytext); + lstack.push(lexer.yylloc); + stack.push(action[1]); // push state + symbol = null; + if (!preErrorSymbol) { + // normal execution/no error + yyleng = lexer.yyleng; + yytext = lexer.yytext; + yylineno = lexer.yylineno; + yyloc = lexer.yylloc; + if (recovering > 0) { + recovering--; + } + } else { + // error just occurred, resume old lookahead f/ before error + symbol = preErrorSymbol; + preErrorSymbol = null; + } + break; + + case 2: + // reduce + //this.reductionCount++; + + len = this.productions_[action[1]][1]; + + // perform semantic action + yyval.$ = vstack[vstack.length - len]; // default to $$ = $1 + // default location, uses first token for firsts, last for lasts + yyval._$ = { + first_line: lstack[lstack.length - (len || 1)].first_line, + last_line: lstack[lstack.length - 1].last_line, + first_column: lstack[lstack.length - (len || 1)].first_column, + last_column: lstack[lstack.length - 1].last_column, + }; + if (ranges) { + yyval._$.range = [ + lstack[lstack.length - (len || 1)].range[0], + lstack[lstack.length - 1].range[1], + ]; + } + r = this.performAction.apply( + yyval, + [yytext, yyleng, yylineno, sharedState.yy, action[1], vstack, lstack].concat(args) + ); + + if (typeof r !== 'undefined') { + return r; + } + + // pop off stack + if (len) { + stack = stack.slice(0, -1 * len * 2); + vstack = vstack.slice(0, -1 * len); + lstack = lstack.slice(0, -1 * len); + } + + stack.push(this.productions_[action[1]][0]); // push nonterminal (reduce) + vstack.push(yyval.$); + lstack.push(yyval._$); + // goto new state = table[STATE][NONTERMINAL] + newState = table[stack[stack.length - 2]][stack[stack.length - 1]]; + stack.push(newState); + break; + + case 3: + // accept + return true; + } + } + + return true; + }, + }; + + // from https://www.postgresql.org/docs/current/static/sql-keywords-appendix.html + // JSON.stringify([].slice.call(document.querySelectorAll('tr')).filter(x => x.children.length == 5 && x.children[2].innerText == 'reserved').map(x => x.children[0].innerText)) + + var nonReserved = [ + 'A', + 'ABSENT', + 'ABSOLUTE', + 'ACCORDING', + 'ACTION', + 'ADA', + 'ADD', + 'ADMIN', + 'AFTER', + 'ALWAYS', + 'ASC', + 'ASSERTION', + 'ASSIGNMENT', + 'ATTRIBUTE', + 'ATTRIBUTES', + 'BASE64', + 'BEFORE', + 'BERNOULLI', + 'BLOCKED', + 'BOM', + 'BREADTH', + 'C', + 'CASCADE', + 'CATALOG', + 'CATALOG_NAME', + 'CHAIN', + 'CHARACTERISTICS', + 'CHARACTERS', + 'CHARACTER_SET_CATALOG', + 'CHARACTER_SET_NAME', + 'CHARACTER_SET_SCHEMA', + 'CLASS_ORIGIN', + 'COBOL', + 'COLLATION', + 'COLLATION_CATALOG', + 'COLLATION_NAME', + 'COLLATION_SCHEMA', + 'COLUMNS', + 'COLUMN_NAME', + 'COMMAND_FUNCTION', + 'COMMAND_FUNCTION_CODE', + 'COMMITTED', + 'CONDITION_NUMBER', + 'CONNECTION', + 'CONNECTION_NAME', + 'CONSTRAINTS', + 'CONSTRAINT_CATALOG', + 'CONSTRAINT_NAME', + 'CONSTRAINT_SCHEMA', + 'CONSTRUCTOR', + 'CONTENT', + 'CONTINUE', + 'CONTROL', + 'CURSOR_NAME', + 'DATA', + 'DATETIME_INTERVAL_CODE', + 'DATETIME_INTERVAL_PRECISION', + 'DB', + 'DEFAULTS', + 'DEFERRABLE', + 'DEFERRED', + 'DEFINED', + 'DEFINER', + 'DEGREE', + 'DEPTH', + 'DERIVED', + 'DESC', + 'DESCRIPTOR', + 'DIAGNOSTICS', + 'DISPATCH', + 'DOCUMENT', + 'DOMAIN', + 'DYNAMIC_FUNCTION', + 'DYNAMIC_FUNCTION_CODE', + 'EMPTY', + 'ENCODING', + 'ENFORCED', + 'EXCLUDE', + 'EXCLUDING', + 'EXPRESSION', + 'FILE', + 'FINAL', + 'FIRST', + 'FLAG', + 'FOLLOWING', + 'FORTRAN', + 'FOUND', + 'FS', + 'G', + 'GENERAL', + 'GENERATED', + 'GO', + 'GOTO', + 'GRANTED', + 'HEX', + 'HIERARCHY', + 'ID', + 'IGNORE', + 'IMMEDIATE', + 'IMMEDIATELY', + 'IMPLEMENTATION', + 'INCLUDING', + 'INCREMENT', + 'INDENT', + 'INITIALLY', + 'INPUT', + 'INSTANCE', + 'INSTANTIABLE', + 'INSTEAD', + 'INTEGRITY', + 'INVOKER', + 'ISOLATION', + 'K', + 'KEY', + 'KEY_MEMBER', + 'KEY_TYPE', + 'LAST', + 'LENGTH', + 'LEVEL', + 'LIBRARY', + 'LIMIT', + 'LINK', + 'LOCATION', + 'LOCATOR', + 'M', + 'MAP', + 'MAPPING', + 'MATCHED', + 'MAXVALUE', + 'MESSAGE_LENGTH', + 'MESSAGE_OCTET_LENGTH', + 'MESSAGE_TEXT', + 'MINVALUE', + 'MORE', + 'MUMPS', + 'NAME', + 'NAMES', + 'NAMESPACE', + 'NESTING', + 'NEXT', + 'NFC', + 'NFD', + 'NFKC', + 'NFKD', + 'NIL', + 'NORMALIZED', + 'NULLABLE', + 'NULLS', + 'NUMBER', + 'OBJECT', + 'OCTETS', + 'OFF', + 'OPTION', + 'OPTIONS', + 'ORDERING', + 'ORDINALITY', + 'OTHERS', + 'OUTPUT', + 'OVERRIDING', + 'P', + 'PAD', + 'PARAMETER_MODE', + 'PARAMETER_NAME', + 'PARAMETER_ORDINAL_POSITION', + 'PARAMETER_SPECIFIC_CATALOG', + 'PARAMETER_SPECIFIC_NAME', + 'PARAMETER_SPECIFIC_SCHEMA', + 'PARTIAL', + 'PASCAL', + 'PASSING', + 'PASSTHROUGH', + 'PATH', + 'PERMISSION', + 'PLACING', + 'PLI', + 'PRECEDING', + 'PRESERVE', + 'PRIOR', + 'PRIVILEGES', + 'PUBLIC', + 'READ', + 'RECOVERY', + 'RELATIVE', + 'REPEATABLE', + 'REQUIRING', + 'RESPECT', + 'RESTART', + 'RESTORE', + 'RESTRICT', + 'RETURNED_CARDINALITY', + 'RETURNED_LENGTH', + 'RETURNED_OCTET_LENGTH', + 'RETURNED_SQLSTATE', + 'RETURNING', + 'ROLE', + 'ROUTINE', + 'ROUTINE_CATALOG', + 'ROUTINE_NAME', + 'ROUTINE_SCHEMA', + 'ROW_COUNT', + 'SCALE', + 'SCHEMA', + 'SCHEMA_NAME', + 'SCOPE_CATALOG', + 'SCOPE_NAME', + 'SCOPE_SCHEMA', + 'SECTION', + 'SECURITY', + 'SELECTIVE', + 'SELF', + 'SEQUENCE', + 'SERIALIZABLE', + 'SERVER', + 'SERVER_NAME', + 'SESSION', + 'SETS', + 'SIMPLE', + 'SIZE', + 'SOURCE', + 'SPACE', + 'SPECIFIC_NAME', + 'STANDALONE', + 'STATE', + 'STATEMENT', + 'STRIP', + 'STRUCTURE', + 'STYLE', + 'SUBCLASS_ORIGIN', + 'T', + 'TABLE_NAME', + 'TEMPORARY', + 'TIES', + 'TOKEN', + 'TOP_LEVEL_COUNT', + 'TRANSACTION', + 'TRANSACTIONS_COMMITTED', + 'TRANSACTIONS_ROLLED_BACK', + 'TRANSACTION_ACTIVE', + 'TRANSFORM', + 'TRANSFORMS', + 'TRIGGER_CATALOG', + 'TRIGGER_NAME', + 'TRIGGER_SCHEMA', + 'TYPE', + 'UNBOUNDED', + 'UNCOMMITTED', + 'UNDER', + 'UNLINK', + 'UNNAMED', + 'UNTYPED', + 'URI', + 'USAGE', + 'USER_DEFINED_TYPE_CATALOG', + 'USER_DEFINED_TYPE_CODE', + 'USER_DEFINED_TYPE_NAME', + 'USER_DEFINED_TYPE_SCHEMA', + 'VALID', + 'VERSION', + 'VIEW', + 'WHITESPACE', + 'WORK', + 'WRAPPER', + 'WRITE', + 'XMLDECLARATION', + 'XMLSCHEMA', + 'YES', + 'ZONE', + ]; + + parser.parseError = function (str, hash) { + if ( + hash.expected && + hash.expected.indexOf("'LITERAL'") > -1 && + /[a-zA-Z_][a-zA-Z_0-9]*/.test(hash.token) && + nonReserved.indexOf(hash.token) > -1 + ) { + return; + } + throw new SyntaxError(str); + }; + /* generated by jison-lex 0.3.4 */ + var lexer = (function () { + var lexer = { + EOF: 1, + + parseError: function parseError(str, hash) { + if (this.yy.parser) { + this.yy.parser.parseError(str, hash); + } else { + throw new Error(str); + } + }, + + // resets the lexer, sets new input + setInput: function (input, yy) { + this.yy = yy || this.yy || {}; + this._input = input; + this._more = this._backtrack = this.done = false; + this.yylineno = this.yyleng = 0; + this.yytext = this.matched = this.match = ''; + this.conditionStack = ['INITIAL']; + this.yylloc = { + first_line: 1, + first_column: 0, + last_line: 1, + last_column: 0, + }; + if (this.options.ranges) { + this.yylloc.range = [0, 0]; + } + this.offset = 0; + return this; + }, + + // consumes and returns one char from the input + input: function () { + var ch = this._input[0]; + this.yytext += ch; + this.yyleng++; + this.offset++; + this.match += ch; + this.matched += ch; + var lines = ch.match(/(?:\r\n?|\n).*/g); + if (lines) { + this.yylineno++; + this.yylloc.last_line++; + } else { + this.yylloc.last_column++; + } + if (this.options.ranges) { + this.yylloc.range[1]++; + } + + this._input = this._input.slice(1); + return ch; + }, + + // unshifts one char (or a string) into the input + unput: function (ch) { + var len = ch.length; + var lines = ch.split(/(?:\r\n?|\n)/g); + + this._input = ch + this._input; + this.yytext = this.yytext.substr(0, this.yytext.length - len); + //this.yyleng -= len; + this.offset -= len; + var oldLines = this.match.split(/(?:\r\n?|\n)/g); + this.match = this.match.substr(0, this.match.length - 1); + this.matched = this.matched.substr(0, this.matched.length - 1); + + if (lines.length - 1) { + this.yylineno -= lines.length - 1; + } + var r = this.yylloc.range; + + this.yylloc = { + first_line: this.yylloc.first_line, + last_line: this.yylineno + 1, + first_column: this.yylloc.first_column, + last_column: lines + ? (lines.length === oldLines.length ? this.yylloc.first_column : 0) + + oldLines[oldLines.length - lines.length].length - + lines[0].length + : this.yylloc.first_column - len, + }; + + if (this.options.ranges) { + this.yylloc.range = [r[0], r[0] + this.yyleng - len]; + } + this.yyleng = this.yytext.length; + return this; + }, + + // When called from action, caches matched text and appends it on next action + more: function () { + this._more = true; + return this; + }, + + // When called from action, signals the lexer that this rule fails to match the input, so the next matching rule (regex) should be tested instead. + reject: function () { + if (this.options.backtrack_lexer) { + this._backtrack = true; + } else { + return this.parseError( + 'Lexical error on line ' + + (this.yylineno + 1) + + '. You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n' + + this.showPosition(), + { + text: '', + token: null, + line: this.yylineno, + } + ); + } + return this; + }, + + // retain first n characters of the match + less: function (n) { + this.unput(this.match.slice(n)); + }, + + // displays already matched input, i.e. for error messages + pastInput: function () { + var past = this.matched.substr(0, this.matched.length - this.match.length); + return (past.length > 20 ? '...' : '') + past.substr(-20).replace(/\n/g, ''); + }, + + // displays upcoming input, i.e. for error messages + upcomingInput: function () { + var next = this.match; + if (next.length < 20) { + next += this._input.substr(0, 20 - next.length); + } + return (next.substr(0, 20) + (next.length > 20 ? '...' : '')).replace(/\n/g, ''); + }, + + // displays the character position where the lexing error occurred, i.e. for error messages + showPosition: function () { + var pre = this.pastInput(); + var c = new Array(pre.length + 1).join('-'); + return pre + this.upcomingInput() + '\n' + c + '^'; + }, + + // test the lexed token: return FALSE when not a match, otherwise return token + test_match: function (match, indexed_rule) { + var token, lines, backup; + + if (this.options.backtrack_lexer) { + // save context + backup = { + yylineno: this.yylineno, + yylloc: { + first_line: this.yylloc.first_line, + last_line: this.last_line, + first_column: this.yylloc.first_column, + last_column: this.yylloc.last_column, + }, + yytext: this.yytext, + match: this.match, + matches: this.matches, + matched: this.matched, + yyleng: this.yyleng, + offset: this.offset, + _more: this._more, + _input: this._input, + yy: this.yy, + conditionStack: this.conditionStack.slice(0), + done: this.done, + }; + if (this.options.ranges) { + backup.yylloc.range = this.yylloc.range.slice(0); + } + } + + lines = match[0].match(/(?:\r\n?|\n).*/g); + if (lines) { + this.yylineno += lines.length; + } + this.yylloc = { + first_line: this.yylloc.last_line, + last_line: this.yylineno + 1, + first_column: this.yylloc.last_column, + last_column: lines + ? lines[lines.length - 1].length - lines[lines.length - 1].match(/\r?\n?/)[0].length + : this.yylloc.last_column + match[0].length, + }; + this.yytext += match[0]; + this.match += match[0]; + this.matches = match; + this.yyleng = this.yytext.length; + if (this.options.ranges) { + this.yylloc.range = [this.offset, (this.offset += this.yyleng)]; + } + this._more = false; + this._backtrack = false; + this._input = this._input.slice(match[0].length); + this.matched += match[0]; + token = this.performAction.call( + this, + this.yy, + this, + indexed_rule, + this.conditionStack[this.conditionStack.length - 1] + ); + if (this.done && this._input) { + this.done = false; + } + if (token) { + return token; + } else if (this._backtrack) { + // recover context + for (var k in backup) { + this[k] = backup[k]; + } + return false; // rule action called reject() implying the next rule should be tested instead. + } + return false; + }, + + // return next match in input + next: function () { + if (this.done) { + return this.EOF; + } + if (!this._input) { + this.done = true; + } + + var token, match, tempMatch, index; + if (!this._more) { + this.yytext = ''; + this.match = ''; + } + var rules = this._currentRules(); + for (var i = 0; i < rules.length; i++) { + tempMatch = this._input.match(this.rules[rules[i]]); + if (tempMatch && (!match || tempMatch[0].length > match[0].length)) { + match = tempMatch; + index = i; + if (this.options.backtrack_lexer) { + token = this.test_match(tempMatch, rules[i]); + if (token !== false) { + return token; + } else if (this._backtrack) { + match = false; + continue; // rule action called reject() implying a rule MISmatch. + } else { + // else: this is a lexer rule which consumes input without producing a token (e.g. whitespace) + return false; + } + } else if (!this.options.flex) { + break; + } + } + } + if (match) { + token = this.test_match(match, rules[index]); + if (token !== false) { + return token; + } + // else: this is a lexer rule which consumes input without producing a token (e.g. whitespace) + return false; + } + if (this._input === '') { + return this.EOF; + } else { + return this.parseError( + 'Lexical error on line ' + + (this.yylineno + 1) + + '. Unrecognized text.\n' + + this.showPosition(), + { + text: '', + token: null, + line: this.yylineno, + } + ); + } + }, + + // return next match that has a token + lex: function lex() { + var r = this.next(); + if (r) { + return r; + } else { + return this.lex(); + } + }, + + // activates a new lexer condition state (pushes the new lexer condition state onto the condition stack) + begin: function begin(condition) { + this.conditionStack.push(condition); + }, + + // pop the previously active lexer condition state off the condition stack + popState: function popState() { + var n = this.conditionStack.length - 1; + if (n > 0) { + return this.conditionStack.pop(); + } else { + return this.conditionStack[0]; + } + }, + + // produce the lexer rule set which is active for the currently active lexer condition state + _currentRules: function _currentRules() { + if (this.conditionStack.length && this.conditionStack[this.conditionStack.length - 1]) { + return this.conditions[this.conditionStack[this.conditionStack.length - 1]].rules; + } else { + return this.conditions['INITIAL'].rules; + } + }, + + // return the currently active lexer condition state; when an index argument is provided it produces the N-th previous condition state, if available + topState: function topState(n) { + n = this.conditionStack.length - 1 - Math.abs(n || 0); + if (n >= 0) { + return this.conditionStack[n]; + } else { + return 'INITIAL'; + } + }, + + // alias for begin(condition) + pushState: function pushState(condition) { + this.begin(condition); + }, + + // return the number of states currently on the stack + stateStackSize: function stateStackSize() { + return this.conditionStack.length; + }, + options: {'case-insensitive': true}, + performAction: function anonymous(yy, yy_, $avoiding_name_collisions, YY_START) { + var YYSTATE = YY_START; + switch ($avoiding_name_collisions) { + case 0: + return 271; + break; + case 1: + return 307; + break; + case 2: + return 425; + break; + case 3: + return 304; + break; + case 4: + return 5; + break; + case 5: + return 5; + break; + case 6: + return 301; + break; + case 7: + return 301; + break; + case 8: + return 132; + break; + case 9: + return 132; + break; + case 10: + return; /* its a COMMENT */ + break; + case 11 /* skip whitespace */: + break; + case 12: + return 321; + break; + case 13: + return 324; + break; + case 14: + yy_.yytext = 'VALUE'; + return 89; + break; + case 15: + yy_.yytext = 'VALUE'; + return 189; + break; + case 16: + yy_.yytext = 'ROW'; + return 189; + break; + case 17: + yy_.yytext = 'COLUMN'; + return 189; + break; + case 18: + yy_.yytext = 'MATRIX'; + return 189; + break; + case 19: + yy_.yytext = 'INDEX'; + return 189; + break; + case 20: + yy_.yytext = 'RECORDSET'; + return 189; + break; + case 21: + yy_.yytext = 'TEXT'; + return 189; + break; + case 22: + yy_.yytext = 'SELECT'; + return 189; + break; + case 23: + return 525; + break; + case 24: + return 386; + break; + case 25: + return 407; + break; + case 26: + return 520; + break; + case 27: + return 291; + break; + case 28: + return 274; + break; + case 29: + return 274; + break; + case 30: + return 164; + break; + case 31: + return 405; + break; + case 32: + return 170; + break; + case 33: + return 229; + break; + case 34: + return 166; + break; + case 35: + return 207; + break; + case 36: + return 292; + break; + case 37: + return 76; + break; + case 38: + return 423; + break; + case 39: + return 246; + break; + case 40: + return 409; + break; + case 41: + return 361; + break; + case 42: + return 290; + break; + case 43: + return 519; + break; + case 44: + return 442; + break; + case 45: + return 335; + break; + case 46: + return 446; + break; + case 47: + return 336; + break; + case 48: + return 320; + break; + case 49: + return 119; + break; + case 50: + return 112; + break; + case 51: + return 320; + break; + case 52: + return 112; + break; + case 53: + return 320; + break; + case 54: + return 112; + break; + case 55: + return 320; + break; + case 56: + return 513; + break; + case 57: + return 308; + break; + case 58: + return 276; + break; + case 59: + return 373; + break; + case 60: + return 130; + break; + case 61: + return 'CLOSE'; + break; + case 62: + return 247; + break; + case 63: + return 190; + break; + case 64: + return 190; + break; + case 65: + return 439; + break; + case 66: + return 372; + break; + case 67: + return 475; + break; + case 68: + return 445; + break; + case 69: + return 278; + break; + case 70: + return 240; + break; + case 71: + return 287; + break; + case 72: + return 272; + break; + case 73: + return 206; + break; + case 74: + return 238; + break; + case 75: + return 269; + break; + case 76: + return 270; + break; + case 77: + return 270; + break; + case 78: + return 'CURSOR'; + break; + case 79: + return 410; + break; + case 80: + return 295; + break; + case 81: + return 296; + break; + case 82: + return 297; + break; + case 83: + return 453; + break; + case 84: + return 348; + break; + case 85: + return 343; + break; + case 86: + return 'DELETED'; + break; + case 87: + return 246; + break; + case 88: + return 411; + break; + case 89: + return 185; + break; + case 90: + return 401; + break; + case 91: + return 452; + break; + case 92: + return 135; + break; + case 93: + return 311; + break; + case 94: + return 394; + break; + case 95: + return 315; + break; + case 96: + return 319; + break; + case 97: + return 169; + break; + case 98: + return 513; + break; + case 99: + return 513; + break; + case 100: + return 303; + break; + case 101: + return 14; + break; + case 102: + return 300; + break; + case 103: + return 253; + break; + case 104: + return 244; + break; + case 105: + return 95; + break; + case 106: + return 378; + break; + case 107: + return 183; + break; + case 108: + return 227; + break; + case 109: + return 273; + break; + case 110: + return 318; + break; + case 111: + return 607; + break; + case 112: + return 477; + break; + case 113: + return 232; + break; + case 114: + return 236; + break; + case 115: + return 239; + break; + case 116: + return 156; + break; + case 117: + return 361; + break; + case 118: + return 337; + break; + case 119: + return 99; + break; + case 120: + return 193; + break; + case 121: + return 212; + break; + case 122: + return 224; + break; + case 123: + return 521; + break; + case 124: + return 344; + break; + case 125: + return 213; + break; + case 126: + return 168; + break; + case 127: + return 298; + break; + case 128: + return 198; + break; + case 129: + return 223; + break; + case 130: + return 375; + break; + case 131: + return 245; + break; + case 132: + return 'LET'; + break; + case 133: + return 225; + break; + case 134: + return 112; + break; + case 135: + return 249; + break; + case 136: + return 465; + break; + case 137: + return 191; + break; + case 138: + return 289; + break; + case 139: + return 395; + break; + case 140: + return 288; + break; + case 141: + return 457; + break; + case 142: + return 169; + break; + case 143: + return 408; + break; + case 144: + return 222; + break; + case 145: + return 650; + break; + case 146: + return 275; + break; + case 147: + return 248; + break; + case 148: + return 385; + break; + case 149: + return 154; + break; + case 150: + return 302; + break; + case 151: + return 243; + break; + case 152: + return 438; + break; + case 153: + return 230; + break; + case 154: + return 420; + break; + case 155: + return 129; + break; + case 156: + return 251; + break; + case 157: + return 'OPEN'; + break; + case 158: + return 421; + break; + case 159: + return 171; + break; + case 160: + return 118; + break; + case 161: + return 208; + break; + case 162: + return 281; + break; + case 163: + return 172; + break; + case 164: + return 284; + break; + case 165: + return 769; + break; + case 166: + return 93; + break; + case 167: + return 16; + break; + case 168: + return 374; + break; + case 169: + return 447; + break; + case 170: + return 682; + break; + case 171: + return 15; + break; + case 172: + return 419; + break; + case 173: + return 194; + break; + case 174: + return 'REDUCE'; + break; + case 175: + return 379; + break; + case 176: + return 316; + break; + case 177: + return 522; + break; + case 178: + return 686; + break; + case 179: + return 107; + break; + case 180: + return 406; + break; + case 181: + return 175; + break; + case 182: + return 294; + break; + case 183: + return 448; + break; + case 184: + return 691; + break; + case 185: + return 173; + break; + case 186: + return 173; + break; + case 187: + return 226; + break; + case 188: + return 441; + break; + case 189: + return 237; + break; + case 190: + return 150; + break; + case 191: + return 770; + break; + case 192: + return 410; + break; + case 193: + return 89; + break; + case 194: + return 228; + break; + case 195: + return 146; + break; + case 196: + return 146; + break; + case 197: + return 414; + break; + case 198: + return 339; + break; + case 199: + return 422; + break; + case 200: + return 'STRATEGY'; + break; + case 201: + return 'STORE'; + break; + case 202: + return 285; + break; + case 203: + return 286; + break; + case 204: + return 358; + break; + case 205: + return 358; + break; + case 206: + return 468; + break; + case 207: + return 362; + break; + case 208: + return 362; + break; + case 209: + return 192; + break; + case 210: + return 314; + break; + case 211: + return 'TIMEOUT'; + break; + case 212: + return 148; + break; + case 213: + return 195; + break; + case 214: + return 440; + break; + case 215: + return 440; + break; + case 216: + return 514; + break; + case 217: + return 299; + break; + case 218: + return 456; + break; + case 219: + return 162; + break; + case 220: + return 187; + break; + case 221: + return 98; + break; + case 222: + return 340; + break; + case 223: + return 413; + break; + case 224: + return 231; + break; + case 225: + return 149; + break; + case 226: + return 349; + break; + case 227: + return 134; + break; + case 228: + return 415; + break; + case 229: + return 313; + break; + case 230: + return 128; + break; + case 231: + return 444; + break; + case 232: + return 72; + break; + case 233: + return 440; /* Is this keyword required? */ + break; + case 234: + return 131; + break; + case 235: + return 131; + break; + case 236: + return 115; + break; + case 237: + return 137; + break; + case 238: + return 179; + break; + case 239: + return 322; + break; + case 240: + return 180; + break; + case 241: + return 133; + break; + case 242: + return 138; + break; + case 243: + return 331; + break; + case 244: + return 328; + break; + case 245: + return 330; + break; + case 246: + return 327; + break; + case 247: + return 325; + break; + case 248: + return 323; + break; + case 249: + return 324; + break; + case 250: + return 142; + break; + case 251: + return 141; + break; + case 252: + return 139; + break; + case 253: + return 326; + break; + case 254: + return 329; + break; + case 255: + return 140; + break; + case 256: + return 124; + break; + case 257: + return 329; + break; + case 258: + return 77; + break; + case 259: + return 78; + break; + case 260: + return 145; + break; + case 261: + return 429; + break; + case 262: + return 431; + break; + case 263: + return 305; + break; + case 264: + return 510; + break; + case 265: + return 512; + break; + case 266: + return 122; + break; + case 267: + return 116; + break; + case 268: + return 74; + break; + case 269: + return 338; + break; + case 270: + return 152; + break; + case 271: + return 768; + break; + case 272: + return 143; + break; + case 273: + return 181; + break; + case 274: + return 136; + break; + case 275: + return 123; + break; + case 276: + return 317; + break; + case 277: + return 4; + break; + case 278: + return 10; + break; + case 279: + return 'INVALID'; + break; + } + }, + rules: [ + /^(?:``([^\`])+``)/i, + /^(?:\[\?\])/i, + /^(?:@\[)/i, + /^(?:ARRAY\[)/i, + /^(?:\[([^\]'])*?\])/i, + /^(?:`([^\`'])*?`)/i, + /^(?:N(['](\\.|[^']|\\')*?['])+)/i, + /^(?:X(['](\\.|[^']|\\')*?['])+)/i, + /^(?:(['](\\.|[^']|\\')*?['])+)/i, + /^(?:(["](\\.|[^"]|\\")*?["])+)/i, + /^(?:--(.*?)($|\r\n|\r|\n))/i, + /^(?:\s+)/i, + /^(?:\|\|)/i, + /^(?:\|)/i, + /^(?:VALUE\s+OF\s+SEARCH\b)/i, + /^(?:VALUE\s+OF\s+SELECT\b)/i, + /^(?:ROW\s+OF\s+SELECT\b)/i, + /^(?:COLUMN\s+OF\s+SELECT\b)/i, + /^(?:MATRIX\s+OF\s+SELECT\b)/i, + /^(?:INDEX\s+OF\s+SELECT\b)/i, + /^(?:RECORDSET\s+OF\s+SELECT\b)/i, + /^(?:TEXT\s+OF\s+SELECT\b)/i, + /^(?:SELECT\b)/i, + /^(?:ABSOLUTE\b)/i, + /^(?:ACTION\b)/i, + /^(?:ADD\b)/i, + /^(?:AFTER\b)/i, + /^(?:AGGR\b)/i, + /^(?:AGGREGATE\b)/i, + /^(?:AGGREGATOR\b)/i, + /^(?:ALL\b)/i, + /^(?:ALTER\b)/i, + /^(?:AND\b)/i, + /^(?:ANTI\b)/i, + /^(?:ANY\b)/i, + /^(?:APPLY\b)/i, + /^(?:ARRAY\b)/i, + /^(?:AS\b)/i, + /^(?:ASSERT\b)/i, + /^(?:ASC\b)/i, + /^(?:ATTACH\b)/i, + /^(?:AUTO(_)?INCREMENT\b)/i, + /^(?:AVG\b)/i, + /^(?:BEFORE\b)/i, + /^(?:BEGIN\b)/i, + /^(?:BETWEEN\b)/i, + /^(?:BREAK\b)/i, + /^(?:NOT\s+BETWEEN\b)/i, + /^(?:NOT\s+LIKE\b)/i, + /^(?:BY\b)/i, + /^(?:~~\*)/i, + /^(?:!~~\*)/i, + /^(?:~~)/i, + /^(?:!~~)/i, + /^(?:ILIKE\b)/i, + /^(?:NOT\s+ILIKE\b)/i, + /^(?:CALL\b)/i, + /^(?:CASE\b)/i, + /^(?:CAST\b)/i, + /^(?:CHECK\b)/i, + /^(?:CLASS\b)/i, + /^(?:CLOSE\b)/i, + /^(?:COLLATE\b)/i, + /^(?:COLUMN\b)/i, + /^(?:COLUMNS\b)/i, + /^(?:COMMIT\b)/i, + /^(?:CONSTRAINT\b)/i, + /^(?:CONTENT\b)/i, + /^(?:CONTINUE\b)/i, + /^(?:CONVERT\b)/i, + /^(?:CORRESPONDING\b)/i, + /^(?:COUNT\b)/i, + /^(?:CREATE\b)/i, + /^(?:CROSS\b)/i, + /^(?:CUBE\b)/i, + /^(?:CURRENT_TIMESTAMP\b)/i, + /^(?:CURRENT_DATE\b)/i, + /^(?:CURDATE\b)/i, + /^(?:CURSOR\b)/i, + /^(?:DATABASE(S)?)/i, + /^(?:DATEADD\b)/i, + /^(?:DATEDIFF\b)/i, + /^(?:TIMESTAMPDIFF\b)/i, + /^(?:DECLARE\b)/i, + /^(?:DEFAULT\b)/i, + /^(?:DELETE\b)/i, + /^(?:DELETED\b)/i, + /^(?:DESC\b)/i, + /^(?:DETACH\b)/i, + /^(?:DISTINCT\b)/i, + /^(?:DROP\b)/i, + /^(?:ECHO\b)/i, + /^(?:EDGE\b)/i, + /^(?:END\b)/i, + /^(?:ENUM\b)/i, + /^(?:ELSE\b)/i, + /^(?:ESCAPE\b)/i, + /^(?:EXCEPT\b)/i, + /^(?:EXEC\b)/i, + /^(?:EXECUTE\b)/i, + /^(?:EXISTS\b)/i, + /^(?:EXPLAIN\b)/i, + /^(?:FALSE\b)/i, + /^(?:FETCH\b)/i, + /^(?:FIRST\b)/i, + /^(?:FOR\b)/i, + /^(?:FOREIGN\b)/i, + /^(?:FROM\b)/i, + /^(?:FULL\b)/i, + /^(?:FUNCTION\b)/i, + /^(?:GLOB\b)/i, + /^(?:GO\b)/i, + /^(?:GRAPH\b)/i, + /^(?:GROUP\b)/i, + /^(?:GROUPING\b)/i, + /^(?:HAVING\b)/i, + /^(?:IF\b)/i, + /^(?:IDENTITY\b)/i, + /^(?:IS\b)/i, + /^(?:IN\b)/i, + /^(?:INDEX\b)/i, + /^(?:INDEXED\b)/i, + /^(?:INNER\b)/i, + /^(?:INSTEAD\b)/i, + /^(?:INSERT\b)/i, + /^(?:INSERTED\b)/i, + /^(?:INTERSECT\b)/i, + /^(?:INTERVAL\b)/i, + /^(?:INTO\b)/i, + /^(?:JOIN\b)/i, + /^(?:KEY\b)/i, + /^(?:LAST\b)/i, + /^(?:LET\b)/i, + /^(?:LEFT\b)/i, + /^(?:LIKE\b)/i, + /^(?:LIMIT\b)/i, + /^(?:MATCHED\b)/i, + /^(?:MATRIX\b)/i, + /^(?:MAX(\s+)?(?=\())/i, + /^(?:MAX(\s+)?(?=(,|\))))/i, + /^(?:MIN(\s+)?(?=\())/i, + /^(?:MERGE\b)/i, + /^(?:MINUS\b)/i, + /^(?:MODIFY\b)/i, + /^(?:NATURAL\b)/i, + /^(?:NEXT\b)/i, + /^(?:NEW\b)/i, + /^(?:NOCASE\b)/i, + /^(?:NO\b)/i, + /^(?:NOT\b)/i, + /^(?:NULL\b)/i, + /^(?:NULLS\b)/i, + /^(?:OFF\b)/i, + /^(?:ON\b)/i, + /^(?:ONLY\b)/i, + /^(?:OF\b)/i, + /^(?:OFFSET\b)/i, + /^(?:OPEN\b)/i, + /^(?:OPTION\b)/i, + /^(?:OR\b)/i, + /^(?:ORDER\b)/i, + /^(?:OUTER\b)/i, + /^(?:OVER\b)/i, + /^(?:PATH\b)/i, + /^(?:PARTITION\b)/i, + /^(?:PERCENT\b)/i, + /^(?:PIVOT\b)/i, + /^(?:PLAN\b)/i, + /^(?:PRIMARY\b)/i, + /^(?:PRINT\b)/i, + /^(?:PRIOR\b)/i, + /^(?:QUERY\b)/i, + /^(?:READ\b)/i, + /^(?:RECORDSET\b)/i, + /^(?:REDUCE\b)/i, + /^(?:REFERENCES\b)/i, + /^(?:REGEXP\b)/i, + /^(?:REINDEX\b)/i, + /^(?:RELATIVE\b)/i, + /^(?:REMOVE\b)/i, + /^(?:RENAME\b)/i, + /^(?:REPEAT\b)/i, + /^(?:REPLACE\b)/i, + /^(?:REQUIRE\b)/i, + /^(?:RESTORE\b)/i, + /^(?:RETURN\b)/i, + /^(?:RETURNS\b)/i, + /^(?:RIGHT\b)/i, + /^(?:ROLLBACK\b)/i, + /^(?:ROLLUP\b)/i, + /^(?:ROW\b)/i, + /^(?:ROWS\b)/i, + /^(?:SCHEMA(S)?)/i, + /^(?:SEARCH\b)/i, + /^(?:SEMI\b)/i, + /^(?:SET\b)/i, + /^(?:SETS\b)/i, + /^(?:SHOW\b)/i, + /^(?:SOME\b)/i, + /^(?:SOURCE\b)/i, + /^(?:STRATEGY\b)/i, + /^(?:STORE\b)/i, + /^(?:SUM\b)/i, + /^(?:TOTAL\b)/i, + /^(?:TABLE\b)/i, + /^(?:TABLES\b)/i, + /^(?:TARGET\b)/i, + /^(?:TEMP\b)/i, + /^(?:TEMPORARY\b)/i, + /^(?:TEXTSTRING\b)/i, + /^(?:THEN\b)/i, + /^(?:TIMEOUT\b)/i, + /^(?:TO\b)/i, + /^(?:TOP\b)/i, + /^(?:TRAN\b)/i, + /^(?:TRANSACTION\b)/i, + /^(?:TRIGGER\b)/i, + /^(?:TRUE\b)/i, + /^(?:TRUNCATE\b)/i, + /^(?:UNION\b)/i, + /^(?:UNIQUE\b)/i, + /^(?:UNPIVOT\b)/i, + /^(?:UPDATE\b)/i, + /^(?:USE\b)/i, + /^(?:USING\b)/i, + /^(?:VALUE\b)/i, + /^(?:VALUES\b)/i, + /^(?:VERTEX\b)/i, + /^(?:VIEW\b)/i, + /^(?:WHEN\b)/i, + /^(?:WHERE\b)/i, + /^(?:WHILE\b)/i, + /^(?:WITH\b)/i, + /^(?:WORK\b)/i, + /^(?:(\d*[.])?\d+[eE]\d+)/i, + /^(?:(\d*[.])?\d+)/i, + /^(?:->)/i, + /^(?:#)/i, + /^(?:\+)/i, + /^(?:-)/i, + /^(?:\*)/i, + /^(?:\/)/i, + /^(?:%)/i, + /^(?:!===)/i, + /^(?:===)/i, + /^(?:!==)/i, + /^(?:==)/i, + /^(?:>=)/i, + /^(?:&)/i, + /^(?:\|)/i, + /^(?:<<)/i, + /^(?:>>)/i, + /^(?:>)/i, + /^(?:<=)/i, + /^(?:<>)/i, + /^(?:<)/i, + /^(?:=)/i, + /^(?:!=)/i, + /^(?:\()/i, + /^(?:\))/i, + /^(?:@)/i, + /^(?:\{)/i, + /^(?:\})/i, + /^(?:\])/i, + /^(?::-)/i, + /^(?:\?-)/i, + /^(?:\.\.)/i, + /^(?:\.)/i, + /^(?:,)/i, + /^(?:::)/i, + /^(?::)/i, + /^(?:;)/i, + /^(?:\$)/i, + /^(?:\?)/i, + /^(?:!)/i, + /^(?:\^)/i, + /^(?:~)/i, + /^(?:[0-9]*[a-zA-Z_]+[a-zA-Z_0-9]*)/i, + /^(?:$)/i, + /^(?:.)/i, + ], + conditions: { + INITIAL: { + rules: [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, + 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, + 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, + 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, + 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, + 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, + 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, + 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, + 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, + 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, + 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, + 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, + 277, 278, 279, + ], + inclusive: true, + }, + }, + }; + return lexer; + })(); + parser.lexer = lexer; + function Parser() { + this.yy = {}; + } + Parser.prototype = parser; + parser.Parser = Parser; + return new Parser(); + })(); + + if (typeof require !== 'undefined' && typeof exports !== 'undefined') { + exports.parser = alasqlparser; + exports.Parser = alasqlparser.Parser; + exports.parse = function () { + return alasqlparser.parse.apply(alasqlparser, arguments); + }; + exports.main = function commonjsMain(args) { + if (!args[1]) { + console.log('Usage: ' + args[0] + ' FILE'); + process.exit(1); + } + var source = require('fs').readFileSync(require('path').normalize(args[1]), 'utf8'); + return exports.parser.parse(source); + }; + if (typeof module !== 'undefined' && require.main === module) { + exports.main(process.argv.slice(1)); + } + } /** + 12prettyflag.js - prettify + @todo move this functionality to plugin +*/ + + /** + Pretty flag - nice HTML output or standard text without any tags + @type {boolean} +*/ + + alasql.prettyflag = false; + + /** + Pretty output of SQL functions + @function + @param {string} sql SQL statement + @param {boolean} flag value + @return {string} HTML or text string with pretty output +*/ + + alasql.pretty = function (sql, flag) { + var pf = alasql.prettyflag; + alasql.prettyflag = !flag; + var s = alasql.parse(sql).toString(); + alasql.prettyflag = pf; + return s; + }; + /*jshint unused:false*/ + /* + Utilities for Alasql.js + + @todo Review the list of utilities + @todo Find more effective utilities +*/ + + /** + Alasql utility functions + @type {object} + */ + var utils = (alasql.utils = {}); + + /** + Convert NaN to undefined + @function + @param {string} s JavaScript string to be modified + @return {string} Covered expression + + @example + + 123 => 123 + undefined => undefined + NaN => undefined + + */ + function n2u(s) { + return '(y=' + s + ',y===y?y:undefined)'; + } + + /** + Return undefined if s undefined + @param {string} s JavaScript string to be modified + @return {string} Covered expression + + @example + + 123,a => a + undefined,a => undefined + NaN,a => undefined + + */ + function und(s, r) { + return '(y=' + s + ',typeof y=="undefined"?undefined:' + r + ')'; + } + + /** + Return always true. Stub for non-ecisting WHERE clause, because is faster then if(whenrfn) whenfn() + @function + @return {boolean} Always true + */ + function returnTrue() { + return true; + } + + /** + Return undefined. Stub for non-ecisting WHERE clause, because is faster then if(whenrfn) whenfn() + @function + @return {undefined} Always undefined + */ + function returnUndefined() {} + + /** + Escape string + @function + @param {string} s Source string + @return {string} Escaped string + @example + + Pit\er's => Pit\\er\'s + + */ + // based on joliss/js-string-escape + var escapeq = (utils.escapeq = function (s) { + // console.log(s); + return ('' + s).replace(/["'\\\n\r\u2028\u2029]/g, function (character) { + // Escape all characters not included in SingleStringCharacters and + // DoubleStringCharacters on + // http://www.ecma-international.org/ecma-262/5.1/#sec-7.8.4 + switch (character) { + case '"': + case "'": + case '\\': + return '\\' + character; + // Four possible LineTerminator characters need to be escaped: + case '\n': + return '\\n'; + case '\r': + return '\\r'; + case '\u2028': + return '\\u2028'; + case '\u2029': + return '\\u2029'; + } + }); + }); + + /** + Double quotes for SQL statements + @param {string} s Source string + @return {string} Escaped string + + @example + + Piter's => Piter''s + + */ + var escapeqq = (utils.undoubleq = function (s) { + return s.replace(/(\')/g, "''"); + }); + + /** + Replace double quotes with single quote + @param {string} s Source string + @return {string} Replaced string + @example + + Piter''s => Piter's + + */ + var doubleq = (utils.doubleq = function (s) { + return s.replace(/(\'\')/g, "\\'"); + }); + + /** + Replace sigle quote to escaped single quote + @param {string} s Source string + @return {string} Replaced string + + @todo Chack this functions + + */ + var doubleqq = (utils.doubleqq = function (s) { + return s.replace(/\'/g, "'"); + }); + + /** + Cut BOM first character for UTF-8 files (for merging two files) + @param {string} s Source string + @return {string} Replaced string + */ + + var cutbom = function (s) { + if (s[0] === String.fromCharCode(65279)) { + s = s.substr(1); + } + return s; + }; + + /** + Get the global scope + Inspired by System.global + @return {object} The global scope + */ + utils.global = (function () { + if (typeof self !== 'undefined') { + return self; + } + if (typeof window !== 'undefined') { + return window; + } + if (typeof global !== 'undefined') { + return global; + } + return Function('return this')(); + })(); + + /** + Find out if a function is native to the enviroment + @param {function} Function to check + @return {boolean} True if function is native + */ + var isNativeFunction = (utils.isNativeFunction = function (fn) { + return typeof fn === 'function' && !!~fn.toString().indexOf('[native code]'); + }); + + /** + Find out if code is running in a web worker enviroment + @return {boolean} True if code is running in a web worker enviroment + */ + utils.isWebWorker = (function () { + try { + var importScripts = utils.global.importScripts; + return utils.isNativeFunction(importScripts); + } catch (e) { + return false; + } + })(); + + /** + Find out if code is running in a node enviroment + @return {boolean} True if code is running in a node enviroment + */ + utils.isNode = (function () { + try { + if (typeof process === 'undefined' || !process.versions || !process.versions.node) { + return false; + } + return true; + } catch (e) { + return false; + } + })(); + + /** + Find out if code is running in a browser enviroment + @return {boolean} True if code is running in a browser enviroment + */ + utils.isBrowser = (function () { + try { + return utils.isNativeFunction(utils.global.location.reload); + } catch (e) { + return false; + } + })(); + + /** + Find out if code is running in a browser with a browserify setup + @return {boolean} True if code is running in a browser with a browserify setup + */ + utils.isBrowserify = (function () { + return utils.isBrowser && typeof process !== 'undefined' && process.browser; + })(); + + /** + Find out if code is running in a browser with a requireJS setup + @return {boolean} True if code is running in a browser with a requireJS setup + */ + utils.isRequireJS = (function () { + return ( + utils.isBrowser && typeof require === 'function' && typeof require.specified === 'function' + ); + })(); + + /** + Find out if code is running with Meteor in the enviroment + @return {boolean} True if code is running with Meteor in the enviroment + + @todo Find out if this is the best way to do this + */ + utils.isMeteor = (function () { + return typeof Meteor !== 'undefined' && Meteor.release; + })(); + + /** + Find out if code is running on a Meteor client + @return {boolean} True if code is running on a Meteor client + */ + utils.isMeteorClient = utils.isMeteorClient = (function () { + return utils.isMeteor && Meteor.isClient; + })(); + + /** + Find out if code is running on a Meteor server + @return {boolean} True if code is running on a Meteor server + */ + utils.isMeteorServer = (function () { + return utils.isMeteor && Meteor.isServer; + })(); + + /** + Find out code is running in a cordovar enviroment + @return {boolean} True if code is running in a web worker enviroment + + @todo Find out if this is the best way to do this + */ + utils.isCordova = (function () { + return typeof cordova === 'object'; + })(); + + utils.isReactNative = (function () { + var isReact = false; + //*not-for-browser/* + try { + if (typeof require('react-native') === 'object') { + isReact = true; + } + } catch (e) { + void 0; + } + //*/ + return isReact; + })(); + + utils.hasIndexedDB = (function () { + return !!utils.global.indexedDB; + })(); + + utils.isArray = function (obj) { + return '[object Array]' === Object.prototype.toString.call(obj); + }; + + /** + Load text file from anywhere + @param {string|object} path File path or HTML event + @param {boolean} asy True - async call, false - sync call + @param {function} success Success function + @param {function} error Error function + @return {string} Read data + + @todo Define Event type + @todo Smaller if-else structures. + */ + + const protocolRegex = /^[a-z]+:\/\//i; + let loadFile = (utils.loadFile = function (path, asy, success, error) { + var data, fs; + if (utils.isNode || utils.isMeteorServer) { + //*not-for-browser/* + fs = require('fs'); + + // If path is empty, than read data from stdin (for Node) + if (typeof path === 'undefined') { + var buff = ''; + process.stdin.setEncoding('utf8'); + process.stdin.on('readable', function () { + var chunk = process.stdin.read(); + if (chunk !== null) { + buff += chunk.toString(); + } + }); + process.stdin.on('end', function () { + success(cutbom(buff)); + }); + return; + } + + if (protocolRegex.test(path)) { + fetchData(path, x => success(cutbom(x)), error, asy); + return; + } + + //If async callthen call async + if (asy) { + fs.readFile(path, function (err, data) { + if (err) { + return error(err, null); + } + success(cutbom(data.toString())); + }); + return; + } + + // Call sync version + try { + data = fs.readFileSync(path); + } catch (e) { + error(err, null); + return; + } + + success(cutbom(data.toString())); + return; + } + + if (utils.isReactNative) { + // If ReactNative + var RNFS = require('react-native-fs'); + RNFS.readFile(path, 'utf8') + .then(function (contents) { + success(cutbom(contents)); + }) + .catch(function (err) { + return error(err, null); + }); + //*/ + return; + } + + if (utils.isCordova) { + /* If Cordova */ + utils.global.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) { + fileSystem.root.getFile(path, {create: false}, function (fileEntry) { + fileEntry.file(function (file) { + var fileReader = new FileReader(); + fileReader.onloadend = function (e) { + success(cutbom(this.result)); + }; + fileReader.readAsText(file); + }); + }); + }); + + return; + } + + /* For string */ + if (typeof path === 'string') { + // For browser read from tag + /* + SELECT * FROM TXT('#one') -- read data from HTML element with id="one" + */ + if (path.substr(0, 1) === '#' && typeof document !== 'undefined') { + data = document.querySelector(path).textContent; + success(data); + return; + } + + /* + Simply read file from HTTP request, like: + SELECT * FROM TXT('http://alasql.org/README.md'); + */ + fetchData(path, x => success(cutbom(x)), error, asy); + return; + } + + if (path instanceof Event) { + /* + For browser read from files input element + + + */ + /** @type {array} List of files from element */ + var files = path.target.files; + /** type {object} */ + var reader = new FileReader(); + /** type {string} */ + var name = files[0].name; + reader.onload = function (e) { + var data = e.target.result; + success(cutbom(data)); + }; + reader.readAsText(files[0]); + } + fetchData(path, x => success(cutbom(x)), error, asy); + }); + + let _fetch = typeof fetch !== 'undefined' ? fetch : null; + //*not-for-browser/* + _fetch = typeof fetch !== 'undefined' ? fetch : require('cross-fetch'); + //*/ + + async function fetchData(path, success, error, async) { + if (async) { + return getData(path, success, error); + } + return await getData(path, success, error); + } + + function getData(path, success, error) { + return _fetch(path) + .then(response => response.arrayBuffer()) + .then(buf => { + var a = new Uint8Array(buf); + var b = [...a].map(e => String.fromCharCode(e)).join(''); + success(b); + }) + .catch(e => { + if (error) return error(e); + console.error(e); + throw e; + }); + } + + /** + @function Load binary file from anywhere + @param {string} path File path + @param {boolean} asy True - async call, false - sync call + @param {function} success Success function + @param {function} error Error function + @return 1 for Async, data - for sync version + + @todo merge functionality from loadFile and LoadBinaryFile + */ + + var loadBinaryFile = (utils.loadBinaryFile = function ( + path, + runAsync, + success, + error = x => { + throw x; + } + ) { + var fs; + if (utils.isNode || utils.isMeteorServer) { + //*not-for-browser/* + fs = require('fs'); + + if (/^[a-z]+:\/\//i.test(path)) { + fetchData(path, success, error, runAsync); + } else { + if (runAsync) { + fs.readFile(path, function (err, data) { + if (err) { + return error(err); + } + var arr = []; + for (var i = 0; i < data.length; ++i) { + arr[i] = String.fromCharCode(data[i]); + } + success(arr.join('')); + }); + } else { + var data; + try { + data = fs.readFileSync(path); + } catch (e) { + return error(e); + } + var arr = []; + for (var i = 0; i < data.length; ++i) { + arr[i] = String.fromCharCode(data[i]); + } + success(arr.join('')); + } + } + } else if (utils.isReactNative) { + // If ReactNative + //var RNFS = require('react-native-fs'); + var RNFetchBlob = require('react-native-fetch-blob').default; + var dirs = RNFetchBlob.fs.dirs; + //should use readStream instead if the file is large + RNFetchBlob.fs + .readFile(path, 'base64') + .then(function (data) { + success(data); + }) + .catch(error); + //*/ + } else { + if (typeof path === 'string') { + // For browser + var xhr = new XMLHttpRequest(); + xhr.open('GET', path, runAsync); // Async + xhr.responseType = 'arraybuffer'; + xhr.onload = function () { + var data = new Uint8Array(xhr.response); + var arr = []; + for (var i = 0; i < data.length; ++i) { + arr[i] = String.fromCharCode(data[i]); + } + success(arr.join('')); + }; + xhr.onerror = error; + xhr.send(); + } else if (path instanceof Event) { + // console.log("event"); + var files = path.target.files; + var reader = new FileReader(); + var name = files[0].name; + reader.onload = function (e) { + var data = e.target.result; + success(data); + }; + reader.onerror = error; + reader.readAsArrayBuffer(files[0]); + } else if (path instanceof Blob) { + success(path); + } + } + }); + + var removeFile = (utils.removeFile = function (path, cb) { + if (utils.isNode) { + //*not-for-browser/* + var fs = require('fs'); + fs.remove(path, cb); + } else if (utils.isCordova) { + utils.global.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) { + fileSystem.root.getFile( + path, + {create: false}, + function (fileEntry) { + fileEntry.remove(cb); + cb && cb(); // jshint ignore:line + }, + function () { + cb && cb(); // jshint ignore:line + } + ); + }); + } else if (utils.isReactNative) { + // If ReactNative + var RNFS = require('react-native-fs'); + RNFS.unlink(path) + .then(function () { + cb && cb(); + }) + .catch(function (err) { + throw err; + }); + //*/ + } else { + throw new Error('You can remove files only in Node.js and Apache Cordova'); + } + }); + + // Todo: check if it makes sense to support cordova and Meteor server + var deleteFile = (utils.deleteFile = function (path, cb) { + //*not-for-browser/* + if (utils.isNode) { + var fs = require('fs'); + fs.unlink(path, cb); + } else if (utils.isReactNative) { + // If ReactNative + var RNFS = require('react-native-fs'); + RNFS.unlink(path) + .then(function () { + cb && cb(); + }) + .catch(function (err) { + throw err; + }); + } + //*/ + }); + + utils.autoExtFilename = function (filename, ext, config) { + config = config || {}; + if ( + typeof filename !== 'string' || + filename.match(/^[A-Z]+:\/\/|\n|\..{2,6}$/i) || + config.autoExt === 0 || + config.autoExt === false + ) { + return filename; + } + return filename + '.' + ext; + }; + + var fileExists = (utils.fileExists = function (path, cb) { + if (utils.isNode) { + //*not-for-browser/* + var fs = require('fs'); + fs.exists(path, cb); + } else if (utils.isCordova) { + utils.global.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) { + fileSystem.root.getFile( + path, + {create: false}, + function (fileEntry) { + cb(true); + }, + function () { + cb(false); + } + ); + }); + } else if (utils.isReactNative) { + // If ReactNative + var RNFS = require('react-native-fs'); + RNFS.exists(path) + .then(function (yes) { + cb && cb(yes); + }) + .catch(function (err) { + throw err; + }); + //*/ + } else { + // TODO Cordova, etc. + throw new Error('You can use exists() only in Node.js or Apach Cordova'); + } + }); + + /** + Save text file from anywhere + @param {string} path File path + @param {array} data Data object + @param {function} cb Callback + @param {object=} opts + */ + + var saveFile = (utils.saveFile = function (path, data, cb, opts) { + var res = 1; + if (path === undefined) { + // + // Return data into result variable + // like: alasql('SELECT * INTO TXT() FROM ?',[data]); + // + res = data; + if (cb) { + res = cb(res); + } + } else { + if (utils.isNode) { + //*not-for-browser/* + var fs = require('fs'); + data = fs.writeFileSync(path, data); + if (cb) { + res = cb(res); + } + } else if (utils.isReactNative) { + var RNFS = require('react-native-fs'); + RNFS.writeFile(path, data) + .then(function (success) { + //, 'utf8' + if (cb) res = cb(res); + }) + .catch(function (err) { + console.error(err.message); + }); + } else if (utils.isCordova) { + utils.global.requestFileSystem(LocalFileSystem.PERSISTENT, 0, function (fileSystem) { + // alasql.utils.removeFile(path,function(){ + fileSystem.root.getFile(path, {create: true}, function (fileEntry) { + fileEntry.createWriter(function (fileWriter) { + fileWriter.onwriteend = function () { + if (cb) { + res = cb(res); + } + }; + fileWriter.write(data); + }); + }); + }); + //*/ + + /*/* + } else if((typeof cordova == 'object') && cordova.file) { + // console.log('saveFile 1'); + // Cordova + var paths = path.split('/'); + var filename = paths[paths.length-1]; + var dirpath = path.substr(0,path.length-filename.length); + // console.log('CORDOVA',filename,dirpath); + //return success('[{"a":"'+filename+'"}]'); + + window.resolveLocalFileSystemURL(dirpath, function(dir) { + // console.log('saveFile 2'); + + dir.getFile(filename, {create:true}, function(file) { + // console.log('saveFile 3'); + + // file.file(function(file) { + // console.log('saveFile 4'); + + file.createWriter(function(fileWriter) { + + // fileWriter.seek(fileWriter.length); + + var blob = new Blob([data], {type:'text/plain'}); + fileWriter.write(blob); + fileWriter.onwriteend = function(){ + if(cb) cb(); + }; + // console.log("ok, in theory i worked"); + }); + */ + /*/* + // Corodva + function writeFinish() { + // ... your done code here... + return cb() + }; + var written = 0; + var BLOCK_SIZE = 1*1024*1024; // write 1M every time of write + function writeNext(cbFinish) { + var sz = Math.min(BLOCK_SIZE, data.length - written); + var sub = data.slice(written, written+sz); + writer.write(sub); + written += sz; + writer.onwrite = function(evt) { + if (written < data.length) + writeNext(cbFinish); + else + cbFinish(); + }; + } + writeNext(writeFinish); + } + */ + // }); + // }); + // }); + } else { + var opt = { + disableAutoBom: false, + }; + alasql.utils.extend(opt, opts); + var blob = new Blob([data], {type: 'text/plain;charset=utf-8'}); + saveAs(blob, path, opt.disableAutoBom); + if (cb) { + res = cb(res); + } + } + } + + return res; + }); + + // For LOAD + // var saveBinaryFile = utils.saveFile = function(path, data, cb) { + // if(utils.isNode) { + // // For Node.js + // var fs = require('fs'); + // var data = fs.writeFileSync(path,data); + // } else { + // var blob = new Blob([data], {type: "text/plain;charset=utf-8"}); + // saveAs(blob, path); + // } + // }; + + /** + @function Hash a string to signed integer + @param {string} source string + @return {integer} hash number + */ + + // FNV-1a inspired hashing + var hash = (utils.hash = function (str) { + var hash = 0x811c9dc5, + i = str.length; + while (i) { + hash ^= str.charCodeAt(--i); + hash += (hash << 1) + (hash << 4) + (hash << 7) + (hash << 8) + (hash << 24); + } + return hash; + }); + + /** + Union arrays + @function + @param {array} a + @param {array} b + @return {array} + */ + var arrayUnion = (utils.arrayUnion = function (a, b) { + var r = b.slice(0); + a.forEach(function (i) { + if (r.indexOf(i) < 0) { + r.push(i); + } + }); + return r; + }); + + /** + Array Difference + */ + var arrayDiff = (utils.arrayDiff = function (a, b) { + return a.filter(function (i) { + return b.indexOf(i) < 0; + }); + }); + + /** + Arrays deep intersect (with records) + */ + var arrayIntersect = (utils.arrayIntersect = function (a, b) { + var r = []; + a.forEach(function (ai) { + var found = false; + + b.forEach(function (bi) { + found = found || ai === bi; + }); + + if (found) { + r.push(ai); + } + }); + return r; + }); + + /** + Arrays deep union (with records) + */ + var arrayUnionDeep = (utils.arrayUnionDeep = function (a, b) { + var r = b.slice(0); + a.forEach(function (ai) { + var found = false; + + r.forEach(function (ri) { + // found = found || equalDeep(ai, ri, true); + found = found || deepEqual(ai, ri); + }); + + if (!found) { + r.push(ai); + } + }); + return r; + }); + + /** + Arrays deep union (with records) + */ + var arrayExceptDeep = (utils.arrayExceptDeep = function (a, b) { + var r = []; + a.forEach(function (ai) { + var found = false; + + b.forEach(function (bi) { + // found = found || equalDeep(ai, bi, true); + found = found || deepEqual(ai, bi); + }); + + if (!found) { + r.push(ai); + } + }); + return r; + }); + + /** + Arrays deep intersect (with records) + */ + var arrayIntersectDeep = (utils.arrayIntersectDeep = function (a, b) { + var r = []; + a.forEach(function (ai) { + var found = false; + + b.forEach(function (bi) { + // found = found || equalDeep(ai, bi, true); + found = found || deepEqual(ai, bi, true); + }); + + if (found) { + r.push(ai); + } + }); + return r; + }); + + /** + Deep clone objects + */ + var cloneDeep = (utils.cloneDeep = function cloneDeep(obj) { + if (null === obj || typeof obj !== 'object') { + return obj; + } + + if (obj instanceof Date) { + return new Date(obj); + } + + if (obj instanceof String) { + return obj.toString(); + } + + if (obj instanceof Number) { + return +obj; + } + + var temp = new obj.constructor(); // changed + + for (var key in obj) { + if (obj.hasOwnProperty(key)) { + temp[key] = cloneDeep(obj[key]); + } + } + return temp; + }); + + /** + Check equality of objects + */ + + /*/* + var equalDeep = utils.equalDeep = function equalDeep (x, y, deep) { + if (deep) { + if (x === y){ + return true; + } + + var p; + for (p in y) { + if (typeof (x[p]) === 'undefined') { return false; } + } + + for (p in y) { + if (y[p]) { + switch (typeof (y[p])) { + case 'object': + if (!equalDeep(y[p],x[p])) { return false; } break; + case 'function': + if ( + typeof (x[p]) === 'undefined' || + (p !== 'equals' && y[p].toString() !== x[p].toString()) + ){ + return false; + } + break; + default: + if (y[p] !== x[p]) { return false; } + } + } else { + if (x[p]){ + return false; + } + } + } + + for (p in x) { + if (typeof (y[p]) === 'undefined') { return false; } + } + + return true; + } + return x === y; + }; + */ + + /** + Compare two objects in deep + */ + var deepEqual = (utils.deepEqual = function (x, y) { + if (x === y) { + return true; + } + + if (typeof x === 'object' && null !== x && typeof y === 'object' && null !== y) { + if (Object.keys(x).length !== Object.keys(y).length) { + return false; + } + for (var prop in x) { + if (!deepEqual(x[prop], y[prop])) { + return false; + } + } + return true; + } + + return false; + }); + /** + Array with distinct records + @param {array} data + @return {array} + */ + var distinctArray = (utils.distinctArray = function (data) { + var uniq = {}; + // TODO: Speedup, because Object.keys is slow + for (var i = 0, ilen = data.length; i < ilen; i++) { + var uix; + if (typeof data[i] === 'object') { + uix = Object.keys(data[i]) + .sort() + .map(function (k) { + return k + '`' + data[i][k]; + }) + .join('`'); + } else { + uix = data[i]; + } + uniq[uix] = data[i]; + } + var res = []; + for (var key in uniq) { + res.push(uniq[key]); + } + return res; + }); + + /** + Extend object a with properties of b + @function + @param {object} a + @param {object} b + @return {object} + */ + var extend = (utils.extend = function extend(a, b) { + a = a || {}; + for (var key in b) { + if (b.hasOwnProperty(key)) { + a[key] = b[key]; + } + } + return a; + }); + + /** + * Extracts the primitive data + */ + var getValueOf = (utils.getValueOf = function (val) { + return typeof val === 'object' && (val instanceof String || val instanceof Number) + ? val.valueOf() + : val; + }); + var getStrValueOf = (utils.getStrValueOf = function (val) { + return String( + typeof val === 'object' && (val instanceof String || val instanceof Number) + ? val.valueOf() + : val + ); + }); + + /** + Flat array by first row + */ + var flatArray = (utils.flatArray = function (a) { + //console.log(684,a); + if (!a || 0 === a.length) { + return []; + } + + // For recordsets + if (typeof a === 'object' && a instanceof alasql.Recordset) { + return a.data.map(function (ai) { + return getValueOf(ai[a.columns[0].columnid]); + }); + } + // Else for other arrays + var key = Object.keys(a[0])[0]; + if (key === undefined) { + return []; + } + return a.map(function (ai) { + return ai[key]; + }); + }); + var flatStrArray = (utils.flatStrArray = function (a) { + //console.log(684,a); + if (!a || 0 === a.length) { + return []; + } + + // For recordsets + if (typeof a === 'object' && a instanceof alasql.Recordset) { + return a.data.map(function (ai) { + return getStrValueOf(ai[a.columns[0].columnid]); + }); + } + // Else for other arrays + var key = Object.keys(a[0])[0]; + if (key === undefined) { + return []; + } + return a.map(function (ai) { + return ai[key]; + }); + }); + + /** + Convert array of objects to array of arrays + */ + var arrayOfArrays = (utils.arrayOfArrays = function (a) { + return a.map(function (aa) { + var ar = []; + for (var key in aa) { + ar.push(aa[key]); + } + return ar; + }); + }); + + if (!Array.isArray) { + Array.isArray = function (arg) { + return Object.prototype.toString.call(arg) === '[object Array]'; + }; + } + + /** + Excel:convert number to Excel column, like 1 => 'A' + @param {integer} i Column number, starting with 0 + @return {string} Column name, starting with 'A' + */ + + var xlsnc = (utils.xlsnc = function (i) { + var first = ''; + if (i > 701) { + let x = (((i - 26) / (26 * 26)) | 0) - 1; + first = String.fromCharCode(65 + (x % 26)); + i = i % (26 * 26); + } + var addr = String.fromCharCode(65 + (i % 26)); + if (i >= 26) { + i = ((i / 26) | 0) - 1; + addr = String.fromCharCode(65 + (i % 26)) + addr; + if (i > 26) { + i = ((i / 26) | 0) - 1; + addr = String.fromCharCode(65 + (i % 26)) + addr; + } + } + return first + addr; + }); + + /** + Excel:conver Excel column name to number + @param {string} s Column number, like 'A' or 'BE' + @return {string} Column name, starting with 0 + */ + var xlscn = (utils.xlscn = function (s) { + var n = s.charCodeAt(0) - 65; + if (s.length > 1) { + n = (n + 1) * 26 + s.charCodeAt(1) - 65; + // console.log(n, s.charCodeAt(0)-65, s.charCodeAt(1)-65); + if (s.length > 2) { + n = (n + 1) * 26 + s.charCodeAt(2) - 65; + } + } + return n; + }); + + var domEmptyChildren = (utils.domEmptyChildren = function (container) { + var len = container.childNodes.length; + while (len--) { + container.removeChild(container.lastChild); + } + }); + + /** + SQL LIKE emulation + @parameter {string} pattern Search pattern + @parameter {string} value Searched value + @parameter {string} escape Escape character (optional) + @return {boolean} If value LIKE pattern ESCAPE escape + */ + var patternCache = {}; + var like = (utils.like = function (pattern, value, escape) { + if (!patternCache[pattern]) { + // Verify escape character + if (!escape) escape = ''; + + var i = 0; + var s = '^'; + + while (i < pattern.length) { + var c = pattern[i], + c1 = ''; + if (i < pattern.length - 1) c1 = pattern[i + 1]; + + if (c === escape) { + s += '\\' + c1; + i++; + } else if (c === '[' && c1 === '^') { + s += '[^'; + i++; + } else if (c === '[' || c === ']') { + s += c; + } else if (c === '%') { + s += '[\\s\\S]*'; + } else if (c === '_') { + s += '.'; + } else if ('/.*+?|(){}'.indexOf(c) > -1) { + s += '\\' + c; + } else { + s += c; + } + i++; + } + + s += '$'; + // if(value == undefined) return false; + //console.log(s,value,(value||'').search(RegExp(s))>-1); + patternCache[pattern] = RegExp(s, 'i'); + } + return ('' + (value ?? '')).search(patternCache[pattern]) > -1; + }); + + utils.glob = function (value, pattern) { + var i = 0; + var s = '^'; + + while (i < pattern.length) { + var c = pattern[i], + c1 = ''; + if (i < pattern.length - 1) c1 = pattern[i + 1]; + + if (c === '[' && c1 === '^') { + s += '[^'; + i++; + } else if (c === '[' || c === ']') { + s += c; + } else if (c === '*') { + s += '.*'; + } else if (c === '?') { + s += '.'; + } else if ('/.*+?|(){}'.indexOf(c) > -1) { + s += '\\' + c; + } else { + s += c; + } + i++; + } + + s += '$'; + return ('' + (value || '')).toUpperCase().search(RegExp(s.toUpperCase())) > -1; + }; + + /** + Get path of alasql.js + @todo Rewrite and simplify the code. Review, is this function is required separately + */ + utils.findAlaSQLPath = function () { + /** type {string} Path to alasql library and plugins */ + + if (utils.isWebWorker) { + return ''; + /** @todo Check how to get path in worker */ + } else if (utils.isMeteorClient) { + return '/packages/dist/'; + } else if (utils.isMeteorServer) { + return 'assets/packages/dist/'; + } else if (utils.isNode) { + return __dirname; + } else if (utils.isBrowser) { + var sc = document.getElementsByTagName('script'); + + for (var i = 0; i < sc.length; i++) { + if (sc[i].src.substr(-16).toLowerCase() === 'alasql-worker.js') { + return sc[i].src.substr(0, sc[i].src.length - 16); + } else if (sc[i].src.substr(-20).toLowerCase() === 'alasql-worker.min.js') { + return sc[i].src.substr(0, sc[i].src.length - 20); + } else if (sc[i].src.substr(-9).toLowerCase() === 'alasql.js') { + return sc[i].src.substr(0, sc[i].src.length - 9); + } else if (sc[i].src.substr(-13).toLowerCase() === 'alasql.min.js') { + return sc[i].src.substr(0, sc[i].src.length - 13); + } + } + } + return ''; + }; + + var getXLSX = function () { + var XLSX = alasql.private.externalXlsxLib || utils.global.XLSX || null; + + if (XLSX) { + return XLSX; + } + + if (utils.isNode || utils.isBrowserify || utils.isMeteorServer) { + //*not-for-browser/* + XLSX = require('../modules/xlsx/xlsx') || null; + alasql.private.externalXlsxLib = XLSX; + //*/ + } + + if (!XLSX) { + throw new Error('Please include the xlsx.js library'); + } + + return XLSX; + }; + + // set AlaSQl path + alasql.path = alasql.utils.findAlaSQLPath(); + /** + Strip all comments. + @function + @param {string} str + @return {string} + Based om the https://github.com/lehni/uncomment.js/blob/master/uncomment.js + I just replaced JavaScript's '//' to SQL's '--' and remove other stuff + + @todo Fixed [aaa/*bbb] for column names + @todo Bug if -- comments in the last line + @todo Check if it possible to model it with Jison parser + @todo Remove unused code + */ + + /* global alasql */ + + alasql.utils.uncomment = function (str) { + // Add some padding so we can always look ahead and behind by two chars + str = ('__' + str + '__').split(''); + var quote = false, + quoteSign, + // regularExpression = false, + // characterClass = false, + blockComment = false, + lineComment = false; + // preserveComment = false; + + for (var i = 0, l = str.length; i < l; i++) { + // When checking for quote escaping, we also need to check that the + // escape sign itself is not escaped, as otherwise '\\' would cause + // the wrong impression of an unclosed string: + var unescaped = str[i - 1] !== '\\' || str[i - 2] === '\\'; + + if (quote) { + if (str[i] === quoteSign && unescaped) { + quote = false; + } + } else if (blockComment) { + // Is the block comment closing? + if (str[i] === '*' && str[i + 1] === '/') { + // if (!preserveComment) + str[i] = str[i + 1] = ''; + blockComment /* = preserveComment*/ = false; + // Increase by 1 to skip closing '/', as it would be mistaken + // for a regexp otherwise + i++; + } else { + //if (!preserveComment) { + str[i] = ''; + } + } else if (lineComment) { + // One-line comments end with the line-break + if (str[i + 1] === '\n' || str[i + 1] === '\r' || str.length - 2 === i) { + lineComment = false; + } + str[i] = ''; + } else { + if (str[i] === '"' || str[i] === "'") { + quote = true; + quoteSign = str[i]; + } else if (str[i] === '[' && str[i - 1] !== '@') { + quote = true; + quoteSign = ']'; + } else if (str[i] === '-' && str[i + 1] === '-') { + str[i] = ''; + lineComment = true; + } else if (str[i] === '/' && str[i + 1] === '*') { + // Do not filter out conditional comments /*@ ... */ + // and comments marked as protected /*! ... */ + // preserveComment = /[@!]/.test(str[i + 2]); + // if (!preserveComment) + str[i] = ''; + blockComment = true; + } + } + } + // Remove padding again. + str = str.join('').slice(2, -2); + + return str; + }; + /** + Database class for Alasql.js +*/ + + // Initial parameters + + /** + Jison parser +*/ + alasql.parser = alasqlparser; + + /*/* This is not working :-/ */ + alasql.parser.parseError = function (str, hash) { + throw new Error('Have you used a reserved keyword without `escaping` it?\n' + str); + }; + + /** + Jison parser + @param {string} sql SQL statement + @return {object} AST (Abstract Syntax Tree) + + @todo Create class AST + @todo Add other parsers + + @example + alasql.parse = function(sql) { + // My own parser here + } + */ + alasql.parse = function (sql) { + return alasqlparser.parse(alasql.utils.uncomment(sql)); + }; + + /** + List of engines of external databases + @type {object} + @todo Create collection type + */ + alasql.engines = {}; + + /** + List of databases + @type {object} + */ + alasql.databases = {}; + + /** + Number of databases + @type {number} +*/ + alasql.databasenum = 0; + + /** + Alasql options object + */ + alasql.options = { + /** Log or throw error */ + errorlog: false, + + /** Use valueof in orderfn */ + valueof: true, + + /** DROP database in any case */ + dropifnotexists: false, + + /** How to handle DATE and DATETIME types */ + datetimeformat: 'sql', + + /** Table and column names are case sensitive and converted to lower-case */ + casesensitive: true, + + /** target for log. Values: 'console', 'output', 'id' of html tag */ + logtarget: 'output', + + /** Print SQL at log */ + logprompt: true, + + /** Callback for async queries progress */ + progress: false, + + /** + * Default modifier + * values: RECORDSET, VALUE, ROW, COLUMN, MATRIX, TEXTSTRING, INDEX + * @type {'RECORDSET'|'VALUE'|'ROW'|'COLUMN'|'MATRIX'|'TEXTSTRING'|'INDEX'|undefined} + */ + modifier: undefined, + + /** How many rows to lookup to define columns */ + columnlookup: 10, + + /** Create vertex if not found */ + autovertex: true, + + /** Use dbo as current database (for partial T-SQL comaptibility) */ + usedbo: true, + + /** AUTOCOMMIT ON | OFF */ + autocommit: true, + + /** Use cache */ + cache: true, + + /** Compatibility flags */ + tsql: true, + + mysql: true, + + postgres: true, + + oracle: true, + + sqlite: true, + + orientdb: true, + + /** for SET NOCOUNT OFF */ + nocount: false, + + /** Check for NaN and convert it to undefined */ + nan: false, + + excel: {cellDates: true}, + + /** Option for SELECT * FROM a,b */ + joinstar: 'overwrite', + + loopbreak: 100000, + + /** Whether GETDATE() and NOW() return dates as string. If false, then a Date object is returned */ + dateAsString: true, + }; + + //alasql.options.worker = false; + + // Variables + alasql.vars = {}; + + alasql.declares = {}; + + alasql.prompthistory = []; + + alasql.plugins = {}; // If plugin already loaded + + alasql.from = {}; // FROM functions + + alasql.into = {}; // INTO functions + + alasql.fn = {}; + + alasql.aggr = {}; + + alasql.busy = 0; + + // Cache + alasql.MAXSQLCACHESIZE = 10000; + alasql.DEFAULTDATABASEID = 'alasql'; + + /* WebWorker */ + alasql.lastid = 0; + + alasql.buffer = {}; + + alasql.private = { + externalXlsxLib: null, + }; + + alasql.setXLSX = function (XLSX) { + alasql.private.externalXlsxLib = XLSX; + }; + + /** + Select current database + @param {string} databaseid Selected database identificator + */ + alasql.use = function (databaseid) { + if (!databaseid) { + databaseid = alasql.DEFAULTDATABASEID; + } + + if (alasql.useid === databaseid) { + return; + } + + if (alasql.databases[databaseid] !== undefined) { + alasql.useid = databaseid; + let db = alasql.databases[alasql.useid]; + alasql.tables = db.tables; + db.resetSqlCache(); + if (alasql.options.usedbo) { + alasql.databases.dbo = db; + } + } else { + throw Error('Database does not exist: ' + databaseid); + } + }; + + alasql.autoval = function (tablename, colname, getNext, databaseid) { + var db = databaseid ? alasql.databases[databaseid] : alasql.databases[alasql.useid]; + + if (!db.tables[tablename]) { + throw new Error('Tablename not found: ' + tablename); + } + + if (!db.tables[tablename].identities[colname]) { + throw new Error('Colname not found: ' + colname); + } + + if (getNext) { + return db.tables[tablename].identities[colname].value || null; + } + + return ( + db.tables[tablename].identities[colname].value - + db.tables[tablename].identities[colname].step || null + ); + }; + + /** + Run single SQL statement on current database + */ + alasql.exec = function (sql, params, cb, scope) { + // Avoid setting params if not needed even with callback + if (typeof params === 'function') { + scope = cb; + cb = params; + params = {}; + } + + delete alasql.error; + + params = params || {}; + + if (alasql.options.errorlog) { + try { + return alasql.dexec(alasql.useid, sql, params, cb, scope); + } catch (err) { + alasql.error = err; + if (cb) { + cb(null, alasql.error); + } + } + } else { + return alasql.dexec(alasql.useid, sql, params, cb, scope); + } + }; + + /** + Run SQL statement on specific database + */ + alasql.dexec = function (databaseid, sql, params, cb, scope) { + var db = alasql.databases[databaseid]; + // if(db.databaseid != databaseid) console.trace('got!'); + // console.log(3,db.databaseid,databaseid); + + var hh = hash(sql); + + // Create hash + if (alasql.options.cache) { + let statement = db.sqlCache[hh]; + // If database structure was not changed since last time return cache + if (statement && db.dbversion === statement.dbversion) { + return statement(params, cb); + } + } + + let ast = db.astCache[hh]; + if (alasql.options.cache && !ast) { + // Create AST cache + ast = alasql.parse(sql); + if (ast) { + // add to AST cache + db.astCache[hh] = ast; + } + } else { + ast = alasql.parse(sql); + } + + if (!ast.statements) { + return; + } + + if (0 === ast.statements.length) { + return 0; + } + + if (1 === ast.statements.length) { + if (ast.statements[0].compile) { + // Compile and Execute + var statement = ast.statements[0].compile(databaseid, params); + if (!statement) { + return; + } + statement.sql = sql; + statement.dbversion = db.dbversion; + + if (alasql.options.cache) { + // Secure sqlCache size + if (db.sqlCacheSize > alasql.MAXSQLCACHESIZE) { + db.resetSqlCache(); + } + db.sqlCacheSize++; + db.sqlCache[hh] = statement; + } + var res = (alasql.res = statement(params, cb, scope)); + return res; + } + alasql.precompile(ast.statements[0], alasql.useid, params); + var res = (alasql.res = ast.statements[0].execute(databaseid, params, cb, scope)); + return res; + } + + if (cb) { + alasql.adrun(databaseid, ast, params, cb, scope); + return; + } + + return alasql.drun(databaseid, ast, params, cb, scope); + }; + + /** + Run multiple statements and return array of results sync + */ + alasql.drun = function (databaseid, ast, params, cb, scope) { + var useid = alasql.useid; + + if (useid !== databaseid) { + alasql.use(databaseid); + } + + var res = []; + for (var i = 0, ilen = ast.statements.length; i < ilen; i++) { + if (ast.statements[i]) { + if (ast.statements[i].compile) { + var statement = ast.statements[i].compile(alasql.useid); + res.push((alasql.res = statement(params, null, scope))); + } else { + alasql.precompile(ast.statements[i], alasql.useid, params); + res.push((alasql.res = ast.statements[i].execute(alasql.useid, params))); + } + } + } + if (useid !== databaseid) { + alasql.use(useid); + } + + if (cb) { + cb(res); + } + + alasql.res = res; + + return res; + }; + + /** + Run multiple statements and return array of results async + */ + alasql.adrun = function (databaseid, ast, params, cb, scope) { + var idx = 0; + var noqueries = ast.statements.length; + if (alasql.options.progress !== false) { + alasql.options.progress(noqueries, idx++); + } + + // alasql.busy++; + var useid = alasql.useid; + if (useid !== databaseid) { + alasql.use(databaseid); + } + var res = []; + + function adrunone(data) { + if (data !== undefined) { + res.push(data); + } + + var astatement = ast.statements.shift(); + if (!astatement) { + if (useid !== databaseid) { + alasql.use(useid); + } + cb(res); + return; + } + + if (astatement.compile) { + var statement = astatement.compile(alasql.useid); + statement(params, adrunone, scope); + if (alasql.options.progress !== false) { + alasql.options.progress(noqueries, idx++); + } + return; + } + + alasql.precompile(ast.statements[0], alasql.useid, params); + astatement.execute(alasql.useid, params, adrunone); + + if (alasql.options.progress !== false) { + alasql.options.progress(noqueries, idx++); + } + } + + adrunone(); /** @todo Check, why data is empty here */ + }; + + /** + Compile statement to JavaScript function + @param {string} sql SQL statement + @param {string} databaseid Database identificator + @return {functions} Compiled statement functions +*/ + alasql.compile = function (sql, databaseid) { + databaseid = databaseid || alasql.useid; + + let ast = alasql.parse(sql); // Create AST + + if (1 !== ast.statements.length) + throw new Error('Cannot compile, because number of statements in SQL is not equal to 1'); + + var statement = ast.statements[0].compile(databaseid); + + statement.promise = function (params) { + return new Promise(function (resolve, reject) { + statement(params, function (data, err) { + if (err) { + reject(err); + } else { + resolve(data); + } + }); + }); + }; + + return statement; + }; + // + // Promises for AlaSQL + // + + if (!utils.global.Promise) { + utils.global.Promise = Promise; + } + + var promiseExec = function (sql, params, counterStep, counterTotal) { + return new utils.global.Promise(function (resolve, reject) { + alasql(sql, params, function (data, err) { + if (err) { + reject(err); + } else { + if (counterStep && counterTotal && alasql.options.progress !== false) { + alasql.options.progress(counterStep, counterTotal); + } + resolve(data); + } + }); + }); + }; + + const sequentialPromiseResolver = (promiseData, Promise) => { + var startingPoint = Promise.resolve([]); + + promiseData.forEach(p => { + startingPoint = startingPoint.then(previousResult => + promiseExec(p.sql, p.params, p.i, p.length).then(result => [...previousResult, result]) + ); + }); + + return startingPoint; + }; + + var promiseAll = function (sqlParamsArray) { + if (sqlParamsArray.length < 1) { + return; + } + + var active, sql, params; + + var execArray = []; + + for (var i = 0; i < sqlParamsArray.length; i++) { + active = sqlParamsArray[i]; + + if (typeof active === 'string') { + active = [active]; + } + + if (!utils.isArray(active) || active.length < 1 || 2 < active.length) { + throw new Error('Error in .promise parameter'); + } + + sql = active[0]; + params = active[1] || undefined; + + execArray.push({ + sql, + params, + i, + length: sqlParamsArray.length, + }); + } + + // in case of indexdb the version does not update + // if create table queries are run in parallel + // this causes certain DML queries to not execute + // running them sequentially fixes this issue + return sequentialPromiseResolver(execArray, utils.global.Promise); + }; + + alasql.promise = function (sql, params) { + if (typeof Promise === 'undefined') { + throw new Error('Please include a Promise/A+ library'); + } + + if (typeof sql === 'string') { + return promiseExec(sql, params); + } + + if (!utils.isArray(sql) || sql.length < 1 || typeof params !== 'undefined') { + throw new Error('Error in .promise parameters'); + } + return promiseAll(sql); + }; + /* +// +// Database class for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + // Main Database class + + /** + @class Database + */ + + var Database = (alasql.Database = function (databaseid) { + var self = this; + // self = function(a){console.log('OK',a);} + // self.prototype = this; + + if (self === alasql) { + if (databaseid) { + // if(alasql.databases[databaseid]) { + self = alasql.databases[databaseid]; + // } else { + alasql.databases[databaseid] = self; + // } + if (!self) { + throw new Error(`Database ${databaseid} not found`); + } + } else { + // Create new database (or get alasql?) + self = alasql.databases.alasql; + // For SQL Server examples, USE tempdb + if (alasql.options.tsql) { + alasql.databases.tempdb = alasql.databases.alasql; + } + // self = new Database(databaseid); // to call without new + } + } + if (!databaseid) { + databaseid = 'db' + alasql.databasenum++; // Random name + } + + // Step 1 + self.databaseid = databaseid; + alasql.databases[databaseid] = self; + self.dbversion = 0; + + //Steps 2-5 + self.tables = {}; + self.views = {}; + self.triggers = {}; + self.indices = {}; + + // Step 6: Objects storage + self.objects = {}; + self.counter = 0; + + self.resetSqlCache(); + return self; + }); + + /** + Reset SQL statements cache + */ + + Database.prototype.resetSqlCache = function () { + this.sqlCache = {}; // Cache for compiled SQL statements + this.sqlCacheSize = 0; + this.astCache = {}; // Cache for AST objects + }; + + // Main SQL function + + /** + Run SQL statement on database + @param {string} sql SQL statement + @param [object] params Parameters + @param {function} cb callback + */ + + Database.prototype.exec = function (sql, params, cb) { + return alasql.dexec(this.databaseid, sql, params, cb); + }; + + Database.prototype.autoval = function (tablename, colname, getNext) { + return alasql.autoval(tablename, colname, getNext, this.databaseid); + }; + + Database.prototype.transaction = function (cb) { + var tx = new alasql.Transaction(this.databaseid); + var res = cb(tx); + return res; + }; + + /*/* +// // Compile +// var statement = this.compile(sql); +// // Run +// if(statement) { +// var data = statement(params, cb); +// return data; +// } +// return; +// }; + +// // Async version of exec + + +// Database.prototype.aexec = function(sql, params) { +// var self = this; +// return new Promise(function(resolve, reject){ +// alasql.dexec(this.databaseid,sql,params,resolve); +// }); +// }; +*/ + + // Aliases like MS SQL + /*/* +Database.prototype.query = Database.prototype.exec; +Database.prototype.run = Database.prototype.exec; +Database.prototype.queryArray = function(sql, params, cb) { + return flatArray(this.exec(sql, params, cb)); +} + +Database.prototype.queryArrayOfArrays = function(sql, params, cb) { + return arrayOfArrays(this.exec(sql, params, cb)); +} + +Database.prototype.querySingle = function(sql, params, cb) { + return this.exec(sql, params, cb)[0]; +} +Database.prototype.queryValue = function(sql, params, cb) { + var res = this.querySingle(sql, params, cb); + return res[Object.keys(res)[0]]; +} + +Database.prototype.value = Database.prototype.queryValue; +Database.prototype.row = Database.prototype.querySingle; +Database.prototype.array = Database.prototype.queryArray; +Database.prototype.matrix = Database.prototype.queryArrayOfArrays; + + +// Compile statements +Database.prototype.compile = function(sql, kind) { + return alasql.compile(sql, kind, databaseid); +}; + +*/ + /* +// +// Transaction class for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + class Transaction { + transactionid = Date.now(); + + committed = false; + + /** @type {string | undefined} */ + bank; + + constructor(databaseid) { + this.databaseid = databaseid; + this.dbversion = alasql.databases[databaseid].dbversion; + // this.bank = structuredClone(alasql.databases[databaseid]); + this.bank = JSON.stringify(alasql.databases[databaseid]); + // TODO CLone Tables with insertfns + } + + /** Commit transaction */ + commit() { + this.committed = true; + alasql.databases[this.databaseid].dbversion = Date.now(); + delete this.bank; + } + + /** Rollback transaction */ + rollback() { + if (!this.committed) { + alasql.databases[this.databaseid] = JSON.parse(this.bank); + // alasql.databases[this.databaseid].tables = this.bank; + // alasql.databases[this.databaseid].dbversion = this.dbversion; + delete this.bank; + } else { + throw new Error('Transaction already commited'); + } + } + + /** + * Execute SQL statement + * @param {string} sql SQL statement + * @param {object} params Parameters + * @param {function} cb Callback function + * @return result + */ + exec(sql, params, cb) { + return alasql.dexec(this.databaseid, sql, params, cb); + } + + /* + queryArray (sql, params, cb) { + return flatArray(this.exec(sql, params, cb)); + } + + queryArrayOfArrays (sql, params, cb) { + return arrayOfArrays(this.exec(sql, params, cb)); + } + + querySingle (sql, params, cb) { + return this.exec(sql, params, cb)[0]; + } + + queryValue (sql, params, cb) { + var res = this.querySingle(sql, params, cb); + return res[Object.keys(res)[0]]; + } + */ + } + + Transaction.prototype.executeSQL = Transaction.prototype.exec; + + // Transaction.prototype.query = Database.prototype.exec; + // Transaction.prototype.run = Database.prototype.exec; + + alasql.Transaction = Transaction; + /* +// +// Table class for Alasql.js +// Date: 14.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + // Table class + var Table = (alasql.Table = function (params) { + // Step 1: Data array + this.data = []; + + // Step 2: Columns + this.columns = []; + this.xcolumns = {}; + + // Step 3: indices + this.inddefs = {}; + this.indices = {}; + this.uniqs = {}; + this.uniqdefs = {}; + + // Step 4: identities + this.identities = {}; + + // Step 5: checkfn... + this.checks = []; + this.checkfns = []; // For restore... to be done... + + // Step 6: INSERT/DELETE/UPDATE + + // Step 7: Triggers... + // Create trigger hubs + this.beforeinsert = {}; + this.afterinsert = {}; + this.insteadofinsert = {}; + + this.beforedelete = {}; + this.afterdelete = {}; + this.insteadofdelete = {}; + + this.beforeupdate = {}; + this.afterupdate = {}; + this.insteadofupdate = {}; + + // Done + Object.assign(this, params); + }); + + /*/* +// View = function(){ +// this.data = []; +// this.columns = []; +// this.ixcolumns = {}; +// this.ixdefs = {}; +// this.indices = {}; +// }; + +// alasql.View = View; +*/ + + Table.prototype.indexColumns = function () { + var self = this; + self.xcolumns = {}; + self.columns.forEach(function (col) { + self.xcolumns[col.columnid] = col; + }); + }; + /* +// +// View class for Alasql.js +// Date: 14.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + // Table class + class View { + constructor(params) { + // Columns + this.columns = []; + this.xcolumns = {}; + // Data array + this.query = []; + + Object.assign(this, params); + } + } + + alasql.View = View; + + /*/* +// View = function(){ +// this.data = []; +// this.columns = []; +// this.ixcolumns = {}; +// this.ixdefs = {}; +// this.indices = {}; +// }; + +// alasql.View = View; +*/ + /* +// +// Query class for Alasql.js +// Date: 14.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + // Table class + + /** + @class Query Main query class + */ + class Query { + constructor(params) { + this.alasql = alasql; + // console.log(12,alasql); + // Columns + this.columns = []; + this.xcolumns = {}; + this.selectGroup = []; + this.groupColumns = {}; + // Data array + Object.assign(this, params); + } + } + + /** + @class Recordset data object + */ + class Recordset { + constructor(params) { + // Data array + Object.assign(this, params); + } + } + + alasql.Recordset = Recordset; + alasql.Query = Query; + /* +// +// Parser helper for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + // Base class for all yy classes + class Base { + constructor(params) { + Object.assign(this, params); + } + toString() {} + toType() {} + toJS() {} + exec() {} + compile() {} + } + + var yy = { + // Utility + /** @deprecated use `Object.assign` instead */ + extend: Object.assign, + + // Option for case sensitive + casesensitive: alasql.options.casesensitive, + Base, + }; + + alasqlparser.yy = alasql.yy = yy; + /* +// +// Statements class for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.Statements = class Statements { + constructor(params) { + Object.assign(this, params); + } + + toString() { + return this.statements.map(st => st.toString()).join('; '); + } + + // Compile array of statements into single statement + compile(db) { + const statements = this.statements.map(st => st.compile(db)); + return statements.length === 1 + ? statements[0] + : (params, cb) => { + const res = statements.map(st => st(params)); + if (cb) cb(res); + return res; + }; + } + }; + /* global alasql */ + /* global yy */ + /* +// +// SEARCH for Alasql.js +// Date: 04.05.2015 +// (c) 2015, Andrey Gershun +// +*/ + + /** + Search class + @example + SEARCH SUM(/a) FROM ? -- search over parameter object +*/ + + yy.Search = class Search { + constructor(params) { + Object.assign(this, params); + } + + toString() { + let s = 'SEARCH '; + if (this.selectors) s += this.selectors.toString(); + if (this.from) s += 'FROM ' + this.from.toString(); + return s; + } + + toJS(context) { + const s = `this.queriesfn[${this.queriesidx - 1}](this.params,null,${context})`; + return s; + } + + compile(databaseid) { + var dbid = databaseid; + + var statement = (params, cb) => { + var res; + this.#doSearch(dbid, params, function (data) { + res = modify(statement.query, data); + if (cb) res = cb(res); + }); + // if(cb) res = cb(res); + return res; + }; + statement.query = {}; + return statement; + } + + #doSearch(databaseid, params, cb) { + var res; + var stope = {}; + var fromdata; + var selectors = cloneDeep(this.selectors); + + function processSelector(selectors, sidx, value) { + // var val; + /*/* if(sidx == 0) { + if(selectors.length > 0 && selectors[0].srchid == 'SHARP') { + val = alasql.databases[alasql.useid].objects[selectors[0].args[0]]; + return processSelector(selectors,sidx+1,val); + //selectors.shift(); + } else if(selectors.length > 0 && selectors[0].srchid == 'AT') { + val = alasql.vars[selectors[0].args[0]]; + return processSelector(selectors,sidx+1,val); + //selectors.shift(); + } else if(selectors.length > 0 && selectors[0].srchid == 'CLASS') { + val = alasql.databases[databaseid].tables[selectors[0].args[0]].data; + return processSelector(selectors,sidx+1,val); + //selectors.shift(); + //selectors.unshift({srchid:'CHILD'}); + } else { + + } + } + */ + var val, // temp values use many places + nest, // temp value used many places + r, // temp value used many places + sel = selectors[sidx]; + + var INFINITE_LOOP_BREAK = alasql.options.loopbreak || 100000; + + if (sel.selid) { + // TODO Process Selector + if (sel.selid === 'PATH') { + var queue = [{node: value, stack: []}]; + var visited = {}; + //var path = []; + var objects = alasql.databases[alasql.useid].objects; + while (queue.length > 0) { + var q = queue.shift(); + var node = q.node; + var stack = q.stack; + var r = processSelector(sel.args, 0, node); + if (r.length > 0) { + if (sidx + 1 + 1 > selectors.length) { + return stack; + } else { + var rv = []; + if (stack && stack.length > 0) { + stack.forEach(function (stv) { + rv = rv.concat(processSelector(selectors, sidx + 1, stv)); + }); + } + return rv; + // return processSelector(selectors,sidx+1,stack); + } + } else { + if (typeof visited[node.$id] !== 'undefined') { + continue; + } else { + // console.log(node.$id, node.$out); + visited[node.$id] = true; + if (node.$out && node.$out.length > 0) { + node.$out.forEach(function (edgeid) { + var edge = objects[edgeid]; + var stack2 = stack.concat(edge); + stack2.push(objects[edge.$out[0]]); + queue.push({ + node: objects[edge.$out[0]], + stack: stack2, + }); + }); + } + } + } + } + // Else return fail + return []; + } + if (sel.selid === 'NOT') { + var nest = processSelector(sel.args, 0, value); + //console.log(1,nest); + if (nest.length > 0) { + return []; + } else { + if (sidx + 1 + 1 > selectors.length) { + return [value]; + } else { + return processSelector(selectors, sidx + 1, value); + } + } + } else if (sel.selid === 'DISTINCT') { + var nest; + if (typeof sel.args === 'undefined' || sel.args.length === 0) { + nest = distinctArray(value); + } else { + nest = processSelector(sel.args, 0, value); + } + if (nest.length === 0) { + return []; + } else { + var res = distinctArray(nest); + if (sidx + 1 + 1 > selectors.length) { + return res; + } else { + return processSelector(selectors, sidx + 1, res); + } + } + } else if (sel.selid === 'AND') { + var res = true; + sel.args.forEach(function (se) { + res = res && processSelector(se, 0, value).length > 0; + }); + if (!res) { + return []; + } else { + if (sidx + 1 + 1 > selectors.length) { + return [value]; + } else { + return processSelector(selectors, sidx + 1, value); + } + } + } else if (sel.selid === 'OR') { + var res = false; + sel.args.forEach(function (se) { + res = res || processSelector(se, 0, value).length > 0; + }); + if (!res) { + return []; + } else { + if (sidx + 1 + 1 > selectors.length) { + return [value]; + } else { + return processSelector(selectors, sidx + 1, value); + } + } + } else if (sel.selid === 'ALL') { + var nest = processSelector(sel.args[0], 0, value); + if (nest.length === 0) { + return []; + } else { + if (sidx + 1 + 1 > selectors.length) { + return nest; + } else { + return processSelector(selectors, sidx + 1, nest); + } + } + } else if (sel.selid === 'ANY') { + var nest = processSelector(sel.args[0], 0, value); + if (nest.length === 0) { + return []; + } else { + if (sidx + 1 + 1 > selectors.length) { + return [nest[0]]; + } else { + return processSelector(selectors, sidx + 1, [nest[0]]); + } + } + } else if (sel.selid === 'UNIONALL') { + var nest = []; + sel.args.forEach(function (se) { + nest = nest.concat(processSelector(se, 0, value)); + }); + if (nest.length === 0) { + return []; + } else { + if (sidx + 1 + 1 > selectors.length) { + return nest; + } else { + return processSelector(selectors, sidx + 1, nest); + } + } + } else if (sel.selid === 'UNION') { + var nest = []; + sel.args.forEach(function (se) { + nest = nest.concat(processSelector(se, 0, value)); + }); + var nest = distinctArray(nest); + if (nest.length === 0) { + return []; + } else { + if (sidx + 1 + 1 > selectors.length) { + return nest; + } else { + return processSelector(selectors, sidx + 1, nest); + } + } + } else if (sel.selid === 'IF') { + var nest = processSelector(sel.args, 0, value); + //console.log(1,nest); + if (nest.length === 0) { + return []; + } else { + if (sidx + 1 + 1 > selectors.length) { + return [value]; + } else { + return processSelector(selectors, sidx + 1, value); + } + } + } else if (sel.selid === 'REPEAT') { + // console.log(352,sel.sels); + var lvar, + lmax, + lmin = sel.args[0].value; + if (!sel.args[1]) { + lmax = lmin; // Add security break + } else { + lmax = sel.args[1].value; + } + if (sel.args[2]) { + lvar = sel.args[2].variable; + } + //var lsel = sel.sels; + // console.log(351,lmin,lmax,lvar); + + var retval = []; + + if (lmin === 0) { + if (sidx + 1 + 1 > selectors.length) { + retval = [value]; + } else { + if (lvar) { + alasql.vars[lvar] = 0; + } + retval = retval.concat(processSelector(selectors, sidx + 1, value)); + } + } + + // console.log(364,retval); + //console.log(370,sel.sels); + // var nests = processSelector(sel.sels,0,value).slice(); + if (lmax > 0) { + var nests = [{value: value, lvl: 1}]; + /*/* + // if(lvl >= lmin) { + // if(sidx+1+1 > selectors.length) { + // retval = retval.concat(nests); + // } else { + // retval = retval.concat(processSelector(selectors,sidx+1,value)); + // } + // } + */ + //console.log(371,nests); + var i = 0; + while (nests.length > 0) { + var nest = nests[0]; + //console.log(375,nest); + nests.shift(); + if (nest.lvl <= lmax) { + if (lvar) { + alasql.vars[lvar] = nest.lvl; + } + // console.log(394,sel.sels); + var nest1 = processSelector(sel.sels, 0, nest.value); + // console.log(397,nest1); + + nest1.forEach(function (n) { + nests.push({value: n, lvl: nest.lvl + 1}); + }); + if (nest.lvl >= lmin) { + if (sidx + 1 + 1 > selectors.length) { + retval = retval.concat(nest1); + //return nests; + } else { + nest1.forEach(function (n) { + retval = retval.concat(processSelector(selectors, sidx + 1, n)); + }); + } + } + } + // Security brake + i++; + if (i > INFINITE_LOOP_BREAK) { + throw new Error('Infinite loop brake. Number of iterations = ' + i); + } + } + } + return retval; + } else if (sel.selid === 'OF') { + if (sidx + 1 + 1 > selectors.length) { + return [value]; + } else { + var r1 = []; + Object.keys(value).forEach(function (keyv) { + alasql.vars[sel.args[0].variable] = keyv; + r1 = r1.concat(processSelector(selectors, sidx + 1, value[keyv])); + }); + return r1; + } + } else if (sel.selid === 'TO') { + // console.log(347,value,sel.args[0]); + var oldv = alasql.vars[sel.args[0]]; + var newv = []; + if (oldv !== undefined) { + // console.log(353,typeof oldv); + newv = oldv.slice(0); + // console.log(429, oldv, newv); + } else { + newv = []; + } + newv.push(value); + // console.log(428,oldv,newv, value); + // console.log(435,sidx+1+1,selectors.length); + // console.log(355,alasql.vars[sel.args[0]]); + if (sidx + 1 + 1 > selectors.length) { + return [value]; + } else { + alasql.vars[sel.args[0]] = newv; + var r1 = processSelector(selectors, sidx + 1, value); + // console.log('r1 =',r1); + alasql.vars[sel.args[0]] = oldv; + return r1; + } + } else if (sel.selid === 'ARRAY') { + var nest = processSelector(sel.args, 0, value); + if (nest.length > 0) { + val = nest; + } else { + return []; + } + if (sidx + 1 + 1 > selectors.length) { + return [val]; + } else { + return processSelector(selectors, sidx + 1, val); + } + } else if (sel.selid === 'SUM') { + var nest = processSelector(sel.args, 0, value); + if (nest.length > 0) { + var val = nest.reduce(function (sum, current) { + return sum + current; + }, 0); + } else { + return []; + } + if (sidx + 1 + 1 > selectors.length) { + return [val]; + } else { + return processSelector(selectors, sidx + 1, val); + } + } else if (sel.selid === 'AVG') { + nest = processSelector(sel.args, 0, value); + if (nest.length > 0) { + val = + nest.reduce(function (sum, current) { + return sum + current; + }, 0) / nest.length; + } else { + return []; + } + if (sidx + 1 + 1 > selectors.length) { + return [val]; + } else { + return processSelector(selectors, sidx + 1, val); + } + } else if (sel.selid === 'COUNT') { + nest = processSelector(sel.args, 0, value); + if (nest.length > 0) { + val = nest.length; + } else { + return []; + } + if (sidx + 1 + 1 > selectors.length) { + return [val]; + } else { + return processSelector(selectors, sidx + 1, val); + } + } else if (sel.selid === 'FIRST') { + nest = processSelector(sel.args, 0, value); + if (nest.length > 0) { + val = nest[0]; + } else { + return []; + } + + if (sidx + 1 + 1 > selectors.length) { + return [val]; + } else { + return processSelector(selectors, sidx + 1, val); + } + } else if (sel.selid === 'LAST') { + nest = processSelector(sel.args, 0, value); + if (nest.length > 0) { + val = nest[nest.length - 1]; + } else { + return []; + } + + if (sidx + 1 + 1 > selectors.length) { + return [val]; + } else { + return processSelector(selectors, sidx + 1, val); + } + } else if (sel.selid === 'MIN') { + nest = processSelector(sel.args, 0, value); + if (nest.length === 0) { + return []; + } + var val = nest.reduce(function (min, current) { + return Math.min(min, current); + }, Infinity); + if (sidx + 1 + 1 > selectors.length) { + return [val]; + } else { + return processSelector(selectors, sidx + 1, val); + } + } else if (sel.selid === 'MAX') { + var nest = processSelector(sel.args, 0, value); + if (nest.length === 0) { + return []; + } + var val = nest.reduce(function (max, current) { + return Math.max(max, current); + }, -Infinity); + if (sidx + 1 + 1 > selectors.length) { + return [val]; + } else { + return processSelector(selectors, sidx + 1, val); + } + } else if (sel.selid === 'PLUS') { + var retval = []; + // retval = retval.concat(processSelector(selectors,sidx+1,n)) + var nests = processSelector(sel.args, 0, value).slice(); + if (sidx + 1 + 1 > selectors.length) { + retval = retval.concat(nests); + } else { + nests.forEach(function (n) { + retval = retval.concat(processSelector(selectors, sidx + 1, n)); + }); + } + + var i = 0; + while (nests.length > 0) { + // nest = nests[0]; + // nests.shift(); + var nest = nests.shift(); + + // console.log(281,nest); + // console.log(nest,nests); + nest = processSelector(sel.args, 0, nest); + // console.log(284,nest); + // console.log('nest',nest,'nests',nests); + nests = nests.concat(nest); + //console.log(retval,nests); + + if (sidx + 1 + 1 > selectors.length) { + retval = retval.concat(nest); + //return retval; + } else { + nest.forEach(function (n) { + // console.log(293,n); + var rn = processSelector(selectors, sidx + 1, n); + // console.log(294,rn, retval); + retval = retval.concat(rn); + }); + } + + // Security brake + i++; + if (i > INFINITE_LOOP_BREAK) { + throw new Error('Infinite loop brake. Number of iterations = ' + i); + } + } + return retval; + //console.log(1,nest); + } else if (sel.selid === 'STAR') { + var retval = []; + retval = processSelector(selectors, sidx + 1, value); + var nests = processSelector(sel.args, 0, value).slice(); + if (sidx + 1 + 1 > selectors.length) { + retval = retval.concat(nests); + //return nests; + } else { + nests.forEach(function (n) { + retval = retval.concat(processSelector(selectors, sidx + 1, n)); + }); + } + var i = 0; + while (nests.length > 0) { + var nest = nests[0]; + nests.shift(); + // console.log(nest,nests); + nest = processSelector(sel.args, 0, nest); + // console.log('nest',nest,'nests',nests); + nests = nests.concat(nest); + + if (sidx + 1 + 1 <= selectors.length) { + nest.forEach(function (n) { + retval = retval.concat(processSelector(selectors, sidx + 1, n)); + }); + } + + // Security brake + i++; + if (i > INFINITE_LOOP_BREAK) { + throw new Error('Infinite loop brake. Number of iterations = ' + i); + } + } + + return retval; + } else if (sel.selid === 'QUESTION') { + var retval = []; + retval = retval.concat(processSelector(selectors, sidx + 1, value)); + var nest = processSelector(sel.args, 0, value); + if (sidx + 1 + 1 <= selectors.length) { + nest.forEach(function (n) { + retval = retval.concat(processSelector(selectors, sidx + 1, n)); + }); + } + return retval; + } else if (sel.selid === 'WITH') { + var nest = processSelector(sel.args, 0, value); + // console.log('WITH',nest); + if (nest.length === 0) { + return []; + } else { + /*/* + // if(sidx+1+1 > selectors.length) { + // return [nest]; + // } else { + // return processSelector(selectors,sidx+1,nest); + // } + */ + var r = {status: 1, values: nest}; + } + } else if (sel.selid === 'ROOT') { + if (sidx + 1 + 1 > selectors.length) { + return [value]; + } else { + return processSelector(selectors, sidx + 1, fromdata); + } + } else { + throw new Error('Wrong selector ' + sel.selid); + } + } else if (sel.srchid) { + var r = alasql.srch[sel.srchid.toUpperCase()](value, sel.args, stope, params); + // console.log(sel.srchid,r); + } else { + throw new Error('Selector not found'); + } + // console.log(356,sidx,r); + if (typeof r === 'undefined') { + r = {status: 1, values: [value]}; + } + + var res = []; + if (r.status === 1) { + var arr = r.values; + + if (sidx + 1 + 1 > selectors.length) { + // if(sidx+1+1 > selectors.length) { + res = arr; + // console.log('res',r) + } else { + for (var i = 0; i < r.values.length; i++) { + res = res.concat(processSelector(selectors, sidx + 1, arr[i])); + } + } + } + return res; + } + + if (selectors !== undefined && selectors.length > 0) { + // console.log(selectors[0].args[0].toUpperCase()); + if ( + selectors && + selectors[0] && + selectors[0].srchid === 'PROP' && + selectors[0].args && + selectors[0].args[0] + ) { + // console.log(selectors[0].args[0]); + if (selectors[0].args[0].toUpperCase() === 'XML') { + stope.mode = 'XML'; + selectors.shift(); + } else if (selectors[0].args[0].toUpperCase() === 'HTML') { + stope.mode = 'HTML'; + selectors.shift(); + } else if (selectors[0].args[0].toUpperCase() === 'JSON') { + stope.mode = 'JSON'; + selectors.shift(); + } + } + if (selectors.length > 0 && selectors[0].srchid === 'VALUE') { + stope.value = true; + selectors.shift(); + } + } + + if (this.from instanceof yy.Column) { + var dbid = this.from.databaseid || databaseid; + fromdata = alasql.databases[dbid].tables[this.from.columnid].data; + //selectors.unshift({srchid:'CHILD'}); + } else if (this.from instanceof yy.FuncValue && alasql.from[this.from.funcid.toUpperCase()]) { + var args = this.from.args.map(function (arg) { + var as = arg.toJS(); + // console.log(as); + var fn = new Function('params,alasql', 'var y;return ' + as).bind(this); + return fn(params, alasql); + }); + // console.log(args); + fromdata = alasql.from[this.from.funcid.toUpperCase()].apply(this, args); + // console.log(92,fromdata); + } else if (typeof this.from === 'undefined') { + fromdata = alasql.databases[databaseid].objects; + } else { + var fromfn = new Function('params,alasql', 'var y;return ' + this.from.toJS()); + fromdata = fromfn(params, alasql); + // Check for Mogo Collections + if ( + typeof Mongo === 'object' && + typeof Mongo.Collection !== 'object' && + fromdata instanceof Mongo.Collection + ) { + fromdata = fromdata.find().fetch(); + } + } + + // If source data is array than first step is to run over array + // var selidx = 0; + // var selvalue = fromdata; + + if (selectors !== undefined && selectors.length > 0) { + // Init variables for TO() selectors + + if (false) { + selectors.forEach(function (selector) { + if (selector.srchid === 'TO') { + //* @todo move to TO selector + alasql.vars[selector.args[0]] = []; + // TODO - process nested selectors + } + }); + } + + res = processSelector(selectors, 0, fromdata); + } else { + res = fromdata; + } + + if (this.into) { + var a1, a2; + if (typeof this.into.args[0] !== 'undefined') { + a1 = new Function('params,alasql', 'var y;return ' + this.into.args[0].toJS())( + params, + alasql + ); + } + if (typeof this.into.args[1] !== 'undefined') { + a2 = new Function('params,alasql', 'var y;return ' + this.into.args[1].toJS())( + params, + alasql + ); + } + res = alasql.into[this.into.funcid.toUpperCase()](a1, a2, res, [], cb); + } else { + if (stope.value && res.length > 0) { + res = res[0]; + } + if (cb) { + res = cb(res); + } + } + return res; + } + }; + + // List of search functions + alasql.srch = { + PROP(val, args, stope) { + // console.log('PROP',args[0],val); + if (stope.mode === 'XML') { + const values = val.children.filter(v => v.name.toUpperCase() === args[0].toUpperCase()); + + return { + status: values.length ? 1 : -1, + values, + }; + } else { + if ( + typeof val !== 'object' || + val === null || + typeof args !== 'object' || + typeof val[args[0]] === 'undefined' + ) { + return {status: -1, values: []}; + } else { + return {status: 1, values: [val[args[0]]]}; + } + } + }, + + APROP(val, args) { + if ( + typeof val !== 'object' || + val === null || + typeof args !== 'object' || + typeof val[args[0]] === 'undefined' + ) { + return {status: 1, values: [undefined]}; + } else { + return {status: 1, values: [val[args[0]]]}; + } + }, + + EQ(val, args, stope, params) { + var exprs = args[0].toJS('x', ''); + var exprfn = new Function('x,alasql,params', 'return ' + exprs); + if (val === exprfn(val, alasql, params)) { + return {status: 1, values: [val]}; + } else { + return {status: -1, values: []}; + } + }, + + // Test expression + LIKE(val, args, stope, params) { + var exprs = args[0].toJS('x', ''); + var exprfn = new Function('x,alasql,params', 'return ' + exprs); + if ( + val + .toUpperCase() + .match( + new RegExp( + '^' + + exprfn(val, alasql, params) + .toUpperCase() + .replace(/%/g, '.*') + .replace(/\?|_/g, '.') + + '$' + ), + 'g' + ) + ) { + return {status: 1, values: [val]}; + } else { + return {status: -1, values: []}; + } + }, + + ATTR(val, args, stope) { + if (stope.mode === 'XML') { + if (typeof args === 'undefined') { + return {status: 1, values: [val.attributes]}; + } else { + if ( + typeof val === 'object' && + typeof val.attributes === 'object' && + typeof val.attributes[args[0]] !== 'undefined' + ) { + return {status: 1, values: [val.attributes[args[0]]]}; + } else { + return {status: -1, values: []}; + } + } + } else { + throw new Error('ATTR is not using in usual mode'); + } + }, + + CONTENT(val, args, stope) { + if (stope.mode !== 'XML') { + throw new Error('ATTR is not using in usual mode'); + } + return {status: 1, values: [val.content]}; + }, + + SHARP(val, args) { + const obj = alasql.databases[alasql.useid].objects[args[0]]; + if (val !== undefined && val === obj) { + return {status: 1, values: [val]}; + } else { + return {status: -1, values: []}; + } + }, + + PARENT(/*val,args,stope*/) { + // TODO: implement + console.error('PARENT not implemented', arguments); + + return {status: -1, values: []}; + }, + + CHILD(val, args, stope) { + // console.log(641,val); + if (typeof val === 'object') { + if (Array.isArray(val)) { + return {status: 1, values: val}; + } else { + if (stope.mode === 'XML') { + return { + status: 1, + values: Object.keys(val.children).map(function (key) { + return val.children[key]; + }), + }; + } else { + return { + status: 1, + values: Object.keys(val).map(function (key) { + return val[key]; + }), + }; + } + } + } else { + // If primitive value + return {status: 1, values: []}; + } + }, + + // Return all keys + KEYS(val) { + if (typeof val === 'object' && val !== null) { + return {status: 1, values: Object.keys(val)}; + } else { + // If primitive value + return {status: 1, values: []}; + } + }, + + // Test expression + WHERE(val, args, stope, params) { + var exprs = args[0].toJS('x', ''); + var exprfn = new Function('x,alasql,params', 'return ' + exprs); + if (exprfn(val, alasql, params)) { + return {status: 1, values: [val]}; + } else { + return {status: -1, values: []}; + } + }, + + NAME(val, args) { + if (val.name === args[0]) { + return {status: 1, values: [val]}; + } else { + return {status: -1, values: []}; + } + }, + + CLASS(val, args) { + // console.log(val,args); + // Please avoid `===` here + if (val.$class == args) { + // jshint ignore:line + return {status: 1, values: [val]}; + } else { + return {status: -1, values: []}; + } + }, + + // Transform expression + VERTEX(val) { + if (val.$node === 'VERTEX') { + return {status: 1, values: [val]}; + } else { + return {status: -1, values: []}; + } + }, + + // Transform expression + INSTANCEOF(val, args) { + if (val instanceof alasql.fn[args[0]]) { + return {status: 1, values: [val]}; + } else { + return {status: -1, values: []}; + } + }, + + // Transform expression + EDGE(val) { + if (val.$node === 'EDGE') { + return {status: 1, values: [val]}; + } else { + return {status: -1, values: []}; + } + }, + + // Transform expression + EX(val, args, stope, params) { + var exprs = args[0].toJS('x', ''); + var exprfn = new Function('x,alasql,params', 'return ' + exprs); + return {status: 1, values: [exprfn(val, alasql, params)]}; + }, + + // Transform expression + RETURN(val, args, stope, params) { + var res = {}; + if (args && args.length > 0) { + args.forEach(function (arg) { + var exprs = arg.toJS('x', ''); + var exprfn = new Function('x,alasql,params', 'return ' + exprs); + if (typeof arg.as === 'undefined') { + arg.as = arg.toString(); + } + res[arg.as] = exprfn(val, alasql, params); + }); + } + return {status: 1, values: [res]}; + }, + + // Transform expression + REF(val) { + return {status: 1, values: [alasql.databases[alasql.useid].objects[val]]}; + }, + + // Transform expression + OUT(val) { + if (val.$out && val.$out.length > 0) { + var res = val.$out.map(function (v) { + return alasql.databases[alasql.useid].objects[v]; + }); + return {status: 1, values: res}; + } else { + return {status: -1, values: []}; + } + }, + + OUTOUT(val) { + if (val.$out && val.$out.length > 0) { + var res = []; + val.$out.forEach(function (v) { + var av = alasql.databases[alasql.useid].objects[v]; + if (av && av.$out && av.$out.length > 0) { + av.$out.forEach(function (vv) { + res = res.concat(alasql.databases[alasql.useid].objects[vv]); + }); + } + }); + return {status: 1, values: res}; + } else { + return {status: -1, values: []}; + } + }, + + // Transform expression + IN(val) { + if (val.$in && val.$in.length > 0) { + var res = val.$in.map(function (v) { + return alasql.databases[alasql.useid].objects[v]; + }); + return {status: 1, values: res}; + } else { + return {status: -1, values: []}; + } + }, + + ININ(val) { + if (val.$in && val.$in.length > 0) { + var res = []; + val.$in.forEach(function (v) { + var av = alasql.databases[alasql.useid].objects[v]; + if (av && av.$in && av.$in.length > 0) { + av.$in.forEach(function (vv) { + res = res.concat(alasql.databases[alasql.useid].objects[vv]); + }); + } + }); + return {status: 1, values: res}; + } else { + return {status: -1, values: []}; + } + }, + + // Transform expression + AS(val, args) { + alasql.vars[args[0]] = val; + return {status: 1, values: [val]}; + }, + + // Transform expression + AT(val, args) { + var v = alasql.vars[args[0]]; + return {status: 1, values: [v]}; + }, + + // Transform expression + CLONEDEEP(val) { + // TODO something wrong + var z = cloneDeep(val); + return {status: 1, values: [z]}; + }, + + // // Transform expression + // DELETE (val,args) { + // // TODO something wrong + // delete val; + // return {status: 1, values: []}; + // }, + + // Transform expression + SET(val, args, stope, params) { + // console.log(arguments); + var s = args + .map(function (st) { + if (st.method === '@') { + return `alasql.vars[${JSON.stringify(st.variable)}]=` + st.expression.toJS('x', ''); + } else if (st.method === '$') { + return `params[${JSON.stringify(st.variable)}]=` + st.expression.toJS('x', ''); + } else { + return `x[${JSON.stringify(st.column.columnid)}]=` + st.expression.toJS('x', ''); + } + }) + .join(';'); + var setfn = new Function('x,params,alasql', s); + + setfn(val, params, alasql); + + return {status: 1, values: [val]}; + }, + + ROW(val, args, stope, params) { + var s = 'var y;return ['; + s += args.map(arg => arg.toJS('x', '')).join(','); + s += ']'; + var setfn = new Function('x,params,alasql', s); + var rv = setfn(val, params, alasql); + + return {status: 1, values: [rv]}; + }, + + D3(val) { + if (val.$node !== 'VERTEX' && val.$node === 'EDGE') { + val.source = val.$in[0]; + val.target = val.$out[0]; + } + + return {status: 1, values: [val]}; + }, + + ORDERBY(val, args /*, stope */) { + var res = val.sort(compileSearchOrder(args)); + return {status: 1, values: res}; + }, + }; + + var compileSearchOrder = function (order) { + if (order) { + if (typeof order?.[0]?.expression === 'function') { + var func = order[0].expression; + return function (a, b) { + var ra = func(a), + rb = func(b); + if (ra > rb) { + return 1; + } + if (ra === rb) { + return 0; + } + return -1; + }; + } + + var s = ''; + var sk = ''; + order.forEach(function (ord) { + // console.log(ord instanceof yy.Expression); + // console.log(ord.toJS('a','')); + // console.log(ord.expression instanceof yy.Column); + + // Date conversion + var dg = ''; + //console.log(ord.expression, ord.expression instanceof yy.NumValue); + if (ord.expression instanceof yy.NumValue) { + ord.expression = self.columns[ord.expression.value - 1]; + } + + if (ord.expression instanceof yy.Column) { + var columnid = ord.expression.columnid; + + if (alasql.options.valueof) { + dg = '.valueOf()'; // TODO Check + } + // COLLATE NOCASE + if (ord.nocase) { + dg += '.toUpperCase()'; + } + + if (columnid === '_') { + s += 'if(a' + dg + (ord.direction === 'ASC' ? '>' : '<') + 'b' + dg + ')return 1;'; + s += 'if(a' + dg + '==b' + dg + '){'; + } else { + s += `if ( + (a[${JSON.stringify(columnid)}]||'')${dg} + ${ord.direction === 'ASC' ? '>' : '<'} + (b[${JSON.stringify(columnid)}]||'')${dg} + ) return 1; + + if( + (a[${JSON.stringify(columnid)}]||'')${dg} + == + (b[${JSON.stringify(columnid)}]||'')${dg} + ){ + `; + } + } else { + dg = '.valueOf()'; + // COLLATE NOCASE + if (ord.nocase) { + dg += '.toUpperCase()'; + } + s += ` + if ( + (${ord.toJS('a', '')} || '')${dg} + ${ord.direction === 'ASC' ? '>' : '<'} + (${ord.toJS('b', '')} || '')${dg} + ) return 1; + + if ( + (${ord.toJS('a', '')} || '')${dg} == + (${ord.toJS('b', '')} || '')${dg} + ) {`; + } + + // TODO Add date comparision + // s += 'if(a[\''+columnid+"']"+dg+(ord.direction == 'ASC'?'>':'<')+'b[\''+columnid+"']"+dg+')return 1;'; + // s += 'if(a[\''+columnid+"']"+dg+'==b[\''+columnid+"']"+dg+'){'; + // } + sk += '}'; + }); + s += 'return 0;'; + s += sk + 'return -1'; + //console.log(s); + return new Function('a,b', s); + } + }; + // Main query procedure + function queryfn(query, oldscope, cb, A, B) { + query.sourceslen = query.sources.length; + let slen = query.sourceslen; + query.query = query; // TODO Remove to prevent memory leaks + query.A = A; + query.B = B; + query.cb = cb; + query.oldscope = oldscope; + + // Run all subqueries before main statement + if (query.queriesfn) { + query.sourceslen += query.queriesfn.length; + slen += query.queriesfn.length; + + query.queriesdata = []; + + query.queriesfn.forEach(function (q, idx) { + q.query.params = query.params; + queryfn2([], -idx - 1, query); + }); + } + + query.scope = oldscope ? cloneDeep(oldscope) : {}; + + // First - refresh data sources + + let result; + query.sources.forEach(function (source, idx) { + source.query = query; + var rs = source.datafn(query, query.params, queryfn2, idx, alasql); + if (typeof rs !== 'undefined') { + // TODO - this is a hack: check if result is array - check all cases and make it more logical + if ((query.intofn || query.intoallfn) && Array.isArray(rs)) { + rs = rs.length; + } + result = rs; + } + // + // Ugly hack to use in query.wherefn and source.srcwherefns functions + // constructions like this.queriesdata['test']. + // We can elimite it with source.srcwherefn.bind(this)() + // but it may be slow. + // + source.queriesdata = query.queriesdata; + }); + + if (query.sources.length == 0 || 0 === slen) { + try { + result = queryfn3(query); + } catch (e) { + if (cb) return cb(null, e); + else throw e; + } + } + // console.log(82,aaa,slen,query.sourceslen, query.sources.length); + return result; + } + function queryfn2(data, idx, query) { + if (idx >= 0) { + let source = query.sources[idx]; + source.data = data; + if (typeof source.data === 'function') { + source.getfn = source.data; + source.dontcache = source.getfn.dontcache; + if (['OUTER', 'RIGHT', 'ANTI'].includes(source.joinmode)) { + source.dontcache = false; + } + source.data = {}; + } + } else { + query.queriesdata[-idx - 1] = flatArray(data); + } + + query.sourceslen--; + if (query.sourceslen > 0) return; + + return queryfn3(query); + } + + function queryfn3(query) { + var scope = query.scope, + jlen; + + // Preindexation of data sources + preIndex(query); + + // Prepare variables + query.data = []; + query.xgroups = {}; + query.groups = []; + + // Level of Joins + var h = 0; + + // Start walking over data + doJoin(query, scope, h); + + // If grouping, then filter groups with HAVING function + if (query.groupfn) { + query.data = []; + if (query.groups.length === 0 && query.allgroups.length === 0) { + var g = {}; + if (query.selectGroup.length > 0) { + query.selectGroup.forEach(function (sg) { + if ( + sg.aggregatorid == 'COUNT' || + sg.aggregatorid == 'SUM' || + sg.aggregatorid == 'TOTAL' + ) { + g[sg.nick] = 0; + } else { + g[sg.nick] = undefined; + } + }); + } + query.groups = [g]; + } + + if (query.aggrKeys.length > 0) { + var gfns = ''; + query.aggrKeys.forEach(function (col) { + gfns += ` + g[${JSON.stringify(col.nick)}] = alasql.aggr[${JSON.stringify( + col.funcid + )}](undefined,g[${JSON.stringify(col.nick)}],3); `; + }); + var gfn = new Function('g,params,alasql', 'var y;' + gfns); + } + + for (var i = 0, ilen = query.groups.length; i < ilen; i++) { + var g = query.groups[i]; + + if (gfn) gfn(g, query.params, alasql); + + if (!query.havingfn || query.havingfn(g, query.params, alasql)) { + var d = query.selectgfn(g, query.params, alasql); + + for (const key in query.groupColumns) { + // ony remove columns where the alias is also not a column in the result + if ( + query.groupColumns[key] !== key && + d[query.groupColumns[key]] && + !query.groupColumns[query.groupColumns[key]] + ) { + delete d[query.groupColumns[key]]; + } + } + query.data.push(d); + } + } + } + // Remove distinct values + doDistinct(query); + + // UNION / UNION ALL + if (query.unionallfn) { + // TODO Simplify this part of program + var ud, nd; + if (query.corresponding) { + if (!query.unionallfn.query.modifier) query.unionallfn.query.modifier = undefined; + ud = query.unionallfn(query.params); + } else { + if (!query.unionallfn.query.modifier) query.unionallfn.query.modifier = 'RECORDSET'; + nd = query.unionallfn(query.params); + ud = []; + ilen = nd.data.length; + for (var i = 0; i < ilen; i++) { + var r = {}; + if (query.columns.length) { + jlen = Math.min(query.columns.length, nd.columns.length); + for (var j = 0; j < jlen; j++) { + r[query.columns[j].columnid] = nd.data[i][nd.columns[j].columnid]; + } + } else { + jlen = nd.columns.length; + for (var j = 0; j < jlen; j++) { + r[nd.columns[j].columnid] = nd.data[i][nd.columns[j].columnid]; + } + } + ud.push(r); + } + } + query.data = query.data.concat(ud); + } else if (query.unionfn) { + if (query.corresponding) { + if (!query.unionfn.query.modifier) query.unionfn.query.modifier = 'ARRAY'; + ud = query.unionfn(query.params); + } else { + if (!query.unionfn.query.modifier) query.unionfn.query.modifier = 'RECORDSET'; + nd = query.unionfn(query.params); + ud = []; + ilen = nd.data.length; + for (var i = 0; i < ilen; i++) { + r = {}; + if (query.columns.length) { + jlen = Math.min(query.columns.length, nd.columns.length); + for (var j = 0; j < jlen; j++) { + r[query.columns[j].columnid] = nd.data[i][nd.columns[j].columnid]; + } + } else { + jlen = nd.columns.length; + for (var j = 0; j < jlen; j++) { + r[nd.columns[j].columnid] = nd.data[i][nd.columns[j].columnid]; + } + } + ud.push(r); + } + } + + query.data = arrayUnionDeep(query.data, ud); + } else if (query.exceptfn) { + if (query.corresponding) { + if (!query.exceptfn.query.modifier) query.exceptfn.query.modifier = 'ARRAY'; + var ud = query.exceptfn(query.params); + } else { + if (!query.exceptfn.query.modifier) query.exceptfn.query.modifier = 'RECORDSET'; + var nd = query.exceptfn(query.params); + var ud = []; + for (var i = 0, ilen = nd.data.length; i < ilen; i++) { + var r = {}; + for (var j = Math.min(query.columns.length, nd.columns.length) - 1; 0 <= j; j--) { + r[query.columns[j].columnid] = nd.data[i][nd.columns[j].columnid]; + } + ud.push(r); + } + } + + query.data = arrayExceptDeep(query.data, ud); + } else if (query.intersectfn) { + if (query.corresponding) { + if (!query.intersectfn.query.modifier) query.intersectfn.query.modifier = undefined; + ud = query.intersectfn(query.params); + } else { + if (!query.intersectfn.query.modifier) query.intersectfn.query.modifier = 'RECORDSET'; + nd = query.intersectfn(query.params); + ud = []; + ilen = nd.data.length; + for (i = 0; i < ilen; i++) { + r = {}; + jlen = Math.min(query.columns.length, nd.columns.length); + for (j = 0; j < jlen; j++) { + r[query.columns[j].columnid] = nd.data[i][nd.columns[j].columnid]; + } + ud.push(r); + } + } + + query.data = arrayIntersectDeep(query.data, ud); + } + + // Ordering + if (query.orderfn) { + if (query.explain) var ms = Date.now(); + query.data = query.data.sort(query.orderfn); + if (query.explain) { + query.explaination.push({ + explid: query.explid++, + description: 'QUERY BY', + ms: Date.now() - ms, + }); + } + } + + // Reduce to limit and offset + doLimit(query); + + // TODO: Check what artefacts rest from Angular.js + if (typeof angular != 'undefined') { + query.removeKeys.push('$$hashKey'); + } + + if (query.removeKeys.length > 0) { + var removeKeys = query.removeKeys; + + // Remove from data + jlen = removeKeys.length; + if (jlen > 0) { + ilen = query.data.length; + for (i = 0; i < ilen; i++) { + for (j = 0; j < jlen; j++) { + delete query.data[i][removeKeys[j]]; + } + } + } + + // Remove from columns list + if (query.columns.length > 0) { + query.columns = query.columns.filter(function (column) { + var found = false; + removeKeys.forEach(function (key) { + if (column.columnid == key) found = true; + }); + return !found; + }); + } + } + + if (typeof query.removeLikeKeys != 'undefined' && query.removeLikeKeys.length > 0) { + var removeLikeKeys = query.removeLikeKeys; + + // Remove unused columns + // SELECT * REMOVE COLUMNS LIKE "%b" + for (var i = 0, ilen = query.data.length; i < ilen; i++) { + r = query.data[i]; + for (var k in r) { + for (j = 0; j < query.removeLikeKeys.length; j++) { + if (alasql.utils.like(query.removeLikeKeys[j], k)) { + delete r[k]; + } + } + } + } + + if (query.columns.length > 0) { + query.columns = query.columns.filter(function (column) { + var found = false; + removeLikeKeys.forEach(function (key) { + if (alasql.utils.like(key, column.columnid)) { + found = true; + } + }); + return !found; + }); + } + } + + if (query.pivotfn) query.pivotfn(); + + if (query.unpivotfn) query.unpivotfn(); + + if (query.intoallfn) { + var res = query.intoallfn(query.columns, query.cb, query.params, query.alasql); + return res; + } + + if (query.intofn) { + ilen = query.data.length; + for (i = 0; i < ilen; i++) { + query.intofn(query.data[i], i, query.params, query.alasql); + } + if (query.cb) query.cb(query.data.length, query.A, query.B); + return query.data.length; + } + res = query.data; + if (query.cb) res = query.cb(query.data, query.A, query.B); + return res; + } + + // Limiting + function doLimit(query) { + // console.log(query.limit, query.offset) + if (query.limit) { + var offset = 0; + if (query.offset) { + offset = query.offset | 0 || 0; + offset = offset < 0 ? 0 : offset; + } + var limit; + if (query.percent) { + limit = (((query.data.length * query.limit) / 100) | 0) + offset; + } else { + limit = (query.limit | 0) + offset; + } + query.data = query.data.slice(offset, limit); + } + } + + // Distinct + function doDistinct(query) { + if (query.distinct) { + var uniq = {}; + // TODO: Speedup, because Object.keys is slow** + // TODO: Problem with DISTINCT on objects + var keys = Object.keys(query.data[0] || []); + for (var i = 0, ilen = query.data.length; i < ilen; i++) { + var uix = keys + .map(function (k) { + return query.data[i][k]; + }) + .join('`'); + uniq[uix] = query.data[i]; + } + query.data = []; + for (var key in uniq) { + query.data.push(uniq[key]); + } + } + } + + // Optimization: preliminary indexation of joins + var preIndex = function (query) { + // console.log(query); + // Loop over all sources + // Todo: make this loop smaller and more graspable + for (var k = 0, klen = query.sources.length; k < klen; k++) { + var source = query.sources[k]; + delete source.ix; + // If there is indexation rule + if (k > 0 && source.optimization == 'ix' && source.onleftfn && source.onrightfn) { + // If there is no table.indices - create it + if (source.databaseid && alasql.databases[source.databaseid].tables[source.tableid]) { + if (!alasql.databases[source.databaseid].tables[source.tableid].indices) + query.database.tables[source.tableid].indices = {}; + // Check if index already exists + let ixx = + alasql.databases[source.databaseid].tables[source.tableid].indices[ + hash(source.onrightfns + '`' + source.srcwherefns) + ]; + if (!alasql.databases[source.databaseid].tables[source.tableid].dirty && ixx) { + source.ix = ixx; + } + } + + if (!source.ix) { + source.ix = {}; + // Walking over source data + let scope = {}; + let i = 0; + let ilen = source.data.length; + let dataw; + // while(source.getfn i= query.sources.length) { + // Todo: check if this runs once too many + // Then apply where and select + if (query.wherefn(scope, query.params, alasql)) { + // If there is a GROUP BY then pipe to grouping function + if (query.groupfn) { + query.groupfn(scope, query.params, alasql); + } else { + query.data.push(query.selectfn(scope, query.params, alasql)); + } + } + } else if (query.sources[h].applyselect) { + var source = query.sources[h]; + source.applyselect( + query.params, + function (data) { + if (data.length > 0) { + for (var i = 0; i < data.length; i++) { + scope[source.alias] = data[i]; + doJoin(query, scope, h + 1); + } + } else { + if (source.applymode == 'OUTER') { + scope[source.alias] = {}; + doJoin(query, scope, h + 1); + } + } + }, + scope + ); + } else { + // STEP 1 + + let source = query.sources[h]; + let nextsource = query.sources[h + 1]; + + let tableid = source.alias || source.tableid; + let pass = false; // For LEFT JOIN + let data = source.data; + let opt = false; + + // Reduce data for looping if there is optimization hint + if (!source.getfn || (source.getfn && !source.dontcache)) { + if ( + source.joinmode != 'RIGHT' && + source.joinmode != 'OUTER' && + source.joinmode != 'ANTI' && + source.optimization == 'ix' + ) { + data = source.ix[source.onleftfn(scope, query.params, alasql)] || []; + opt = true; + } + } + + // Main cycle + let i = 0; + if (typeof data == 'undefined') { + throw new Error('Data source number ' + h + ' in undefined'); + } + let ilen = data.length; + let dataw; + // console.log(h,opt,source.data,i,source.dontcache); + while ((dataw = data[i]) || (!opt && source.getfn && (dataw = source.getfn(i))) || i < ilen) { + if (!opt && source.getfn && !source.dontcache) data[i] = dataw; + scope[tableid] = dataw; + + // Reduce with ON and USING clause + var usingPassed = !source.onleftfn; + if (!usingPassed) { + var left = source.onleftfn(scope, query.params, alasql); + var right = source.onrightfn(scope, query.params, alasql); + if (left instanceof String || left instanceof Number) left = left.valueOf(); + if (right instanceof String || right instanceof Number) right = left.valueOf(); + usingPassed = left == right; + } + + if (usingPassed) { + // For all non-standard JOINs like a-b=0 + if (source.onmiddlefn(scope, query.params, alasql)) { + // Recursively call new join + if (source.joinmode != 'SEMI' && source.joinmode != 'ANTI') { + doJoin(query, scope, h + 1); + } + if (source.joinmode != 'LEFT' && source.joinmode != 'INNER') { + dataw._rightjoin = true; + } + + // for LEFT JOIN + pass = true; + } + } + i++; + } + + // Additional join for LEFT JOINS + if ( + (source.joinmode == 'LEFT' || source.joinmode == 'OUTER' || source.joinmode == 'SEMI') && + !pass + ) { + // Clear the scope after the loop + scope[tableid] = {}; + doJoin(query, scope, h + 1); + } + + // STEP 2 + + if (h == 0) { + for (var nh = h + 1; nh < query.sources.length; nh++) { + if ( + nextsource.joinmode == 'OUTER' || + nextsource.joinmode == 'RIGHT' || + nextsource.joinmode == 'ANTI' + ) { + scope[source.alias] = {}; + + let j = 0; + let jlen = nextsource.data.length; + let dataw; + + while ( + (dataw = nextsource.data[j]) || + (nextsource.getfn && (dataw = nextsource.getfn(j))) || + j < jlen + ) { + if (nextsource.getfn && !nextsource.dontcache) { + nextsource.data[j] = dataw; + } + + // console.log(169,dataw._rightjoin,scope); + if (dataw._rightjoin) { + delete dataw._rightjoin; + } else { + // delete dataw._rightjoin; + // console.log(163,h,scope); + scope[nextsource.alias] = dataw; + doJoin(query, scope, nh + 1); + } + j++; + } + // debugger; + } else { + //console.log(180,scope); + } + source = query.sources[nh]; + nextsource = query.sources[nh + 1]; + } + } + + scope[tableid] = undefined; + } + } + + function swapSources(query, h) { + var source = query.sources[h]; + var nextsource = query.sources[h + 1]; + + let onleftfn = source.onleftfn; + let onleftfns = source.onleftfns; + let onrightfn = source.onrightfn; + let onrightfns = source.onrightfns; + let optimization = source.optimization; + + source.onleftfn = nextsource.onrightfn; + source.onleftfns = nextsource.onrightfns; + source.onrightfn = nextsource.onleftfn; + source.onrightfns = nextsource.onleftfns; + source.optimization = nextsource.optimization; + + nextsource.onleftfn = onleftfn; + nextsource.onleftfns = onleftfns; + nextsource.onrightfn = onrightfn; + nextsource.onrightfns = onrightfns; + nextsource.optimization = optimization; + + query.sources[h] = nextsource; + query.sources[h + 1] = source; + } + /* +// +// Select run-time part for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + // + // Main part of SELECT procedure + // + + /* global yy */ + + yy.Select = class Select { + constructor(params) { + Object.assign(this, params); + } + + toString() { + var s; + s = ''; + if (this.explain) { + s += 'EXPLAIN '; + } + s += 'SELECT '; + if (this.modifier) { + s += this.modifier + ' '; + } + if (this.distinct) { + s += 'DISTINCT '; + } + if (this.top) { + s += 'TOP ' + this.top.value + ' '; + if (this.percent) { + s += 'PERCENT '; + } + } + s += this.columns + .map(function (col) { + var s; + s = col.toString(); + if (typeof col.as !== 'undefined') { + s += ' AS ' + col.as; + } + return s; + }) + .join(', '); + if (this.from) { + s += + ' FROM ' + + this.from + .map(function (f) { + var ss; + ss = f.toString(); + if (f.as) { + ss += ' AS ' + f.as; + } + return ss; + }) + .join(','); + } + if (this.joins) { + s += this.joins + .map(function (jn) { + var ss; + ss = ' '; + if (jn.joinmode) { + ss += jn.joinmode + ' '; + } + if (jn.table) { + ss += 'JOIN ' + jn.table.toString(); + } else if (jn.select) { + ss += 'JOIN (' + jn.select.toString() + ')'; + } else if (jn instanceof alasql.yy.Apply) { + ss += jn.toString(); + } else { + throw new Error('Wrong type in JOIN mode'); + } + if (jn.as) { + ss += ' AS ' + jn.as; + } + if (jn.using) { + ss += ' USING ' + jn.using.toString(); + } + if (jn.on) { + ss += ' ON ' + jn.on.toString(); + } + return ss; + }) + .join(''); + } + if (this.where) { + s += ' WHERE ' + this.where.toString(); + } + if (this.group && this.group.length > 0) { + s += + ' GROUP BY ' + + this.group + .map(function (grp) { + return grp.toString(); + }) + .join(', '); + } + if (this.having) { + s += ' HAVING ' + this.having.toString(); + } + if (this.order && this.order.length > 0) { + s += + ' ORDER BY ' + + this.order + .map(function (ord) { + return ord.toString(); + }) + .join(', '); + } + if (this.limit) { + s += ' LIMIT ' + this.limit.value; + } + if (this.offset) { + s += ' OFFSET ' + this.offset.value; + } + if (this.union) { + s += ' UNION ' + (this.corresponding ? 'CORRESPONDING ' : '') + this.union.toString(); + } + if (this.unionall) { + s += + ' UNION ALL ' + (this.corresponding ? 'CORRESPONDING ' : '') + this.unionall.toString(); + } + if (this.except) { + s += ' EXCEPT ' + (this.corresponding ? 'CORRESPONDING ' : '') + this.except.toString(); + } + if (this.intersect) { + s += + ' INTERSECT ' + (this.corresponding ? 'CORRESPONDING ' : '') + this.intersect.toString(); + } + return s; + } + + /** + Select statement in expression + */ + toJS(context) { + // console.log('Expression',this); + // if(this.expression.reduced) return 'true'; + // return this.expression.toJS(context, tableid, defcols); + // console.log('Select.toJS', 81, this.queriesidx); + // var s = 'this.queriesdata['+(this.queriesidx-1)+'][0]'; + var s = + 'alasql.utils.flatArray(this.queriesfn[' + + (this.queriesidx - 1) + + '](this.params,null,' + + context + + '))[0]'; + + // var s = '(ee=alasql.utils.flatArray(this.queriesfn['+(this.queriesidx-1)+'](this.params,null,'+context+')),console.log(999,ee),ee[0])'; + return s; + } + + // Compile SELECT statement + compile(databaseid, params) { + var db = alasql.databases[databaseid]; + // Create variable for query + var query = new Query(); + + // Array with columns to be removed + query.removeKeys = []; + query.aggrKeys = []; + + query.explain = this.explain; // Explain + query.explaination = []; + query.explid = 1; + query.modifier = this.modifier; + + query.database = db; + // 0. Precompile whereexists + this.compileWhereExists(query); + + // 0. Precompile queries for IN, NOT IN, ANY and ALL operators + this.compileQueries(query); + + query.defcols = this.compileDefCols(query, databaseid); + + // 1. Compile FROM clause + query.fromfn = this.compileFrom(query); + + // 2. Compile JOIN clauses + if (this.joins) { + this.compileJoins(query); + } + + // todo?: 3. Compile SELECT clause + // For ROWNUM() + query.rownums = []; + + this.compileSelectGroup0(query); + + if (this.group || query.selectGroup.length > 0) { + query.selectgfns = this.compileSelectGroup1(query); + } else { + query.selectfns = this.compileSelect1(query, params); + } + + // Remove columns clause + this.compileRemoveColumns(query); + + // 5. Optimize WHERE and JOINS + if (this.where) { + this.compileWhereJoins(query); + } + + // 4. Compile WHERE clause + query.wherefn = this.compileWhere(query); + + // 6. Compile GROUP BY + if (this.group || query.selectGroup.length > 0) { + query.groupfn = this.compileGroup(query); + } + + // 6. Compile HAVING + if (this.having) { + query.havingfn = this.compileHaving(query); + } + + // 8. Compile ORDER BY clause + if (this.order) { + query.orderfn = this.compileOrder(query, params); + } + + if (this.group || query.selectGroup.length > 0) { + query.selectgfn = this.compileSelectGroup2(query); + } else { + query.selectfn = this.compileSelect2(query, params); + } + + // 7. Compile DISTINCT, LIMIT and OFFSET + query.distinct = this.distinct; + + // 9. Compile PIVOT clause + if (this.pivot) query.pivotfn = this.compilePivot(query); + if (this.unpivot) query.pivotfn = this.compileUnpivot(query); + + // 10. Compile TOP/LIMIT/OFFSET/FETCH clause + if (this.top) { + query.limit = this.top.value; + } else if (this.limit) { + query.limit = this.limit.value; + if (this.offset) { + query.offset = this.offset.value; + } + } + + query.percent = this.percent; + + // 9. Compile ordering function for UNION and UNIONALL + query.corresponding = this.corresponding; // If CORRESPONDING flag exists + if (this.union) { + query.unionfn = this.union.compile(databaseid); + query.orderfn = this.union.order ? this.union.compileOrder(query, params) : null; + } else if (this.unionall) { + query.unionallfn = this.unionall.compile(databaseid); + query.orderfn = this.unionall.order ? this.unionall.compileOrder(query, params) : null; + } else if (this.except) { + query.exceptfn = this.except.compile(databaseid); + query.orderfn = this.except.order ? this.except.compileOrder(query, params) : null; + } else if (this.intersect) { + query.intersectfn = this.intersect.compile(databaseid); + query.orderfn = this.intersect.order ? this.intersect.compileOrder(query, params) : null; + } + + // SELECT INTO + if (this.into) { + if (this.into instanceof yy.Table) { + // Save into the table in database + if ( + alasql.options.autocommit && + alasql.databases[this.into.databaseid || databaseid].engineid + ) { + // For external database when AUTOCOMMIT is ONs + query.intoallfns = `return alasql + .engines[${JSON.stringify(alasql.databases[this.into.databaseid || databaseid].engineid)}] + .intoTable( + ${JSON.stringify(this.into.databaseid || databaseid)}, + ${JSON.stringify(this.into.tableid)}, + this.data, + columns, + cb + );`; + } else { + // Into AlaSQL tables + query.intofns = `alasql + .databases[${JSON.stringify(this.into.databaseid || databaseid)}] + .tables[${JSON.stringify(this.into.tableid)}] + .data.push(r); + `; + } + } else if (this.into instanceof yy.VarValue) { + // + // Save into local variable + // SELECT * INTO @VAR1 FROM ? + // + query.intoallfns = ` + alasql.vars[${JSON.stringify(this.into.variable)}]=this.data; + res=this.data.length; + if(cb) res = cb(res); + return res; + `; + } else if (this.into instanceof yy.FuncValue) { + // + // If this is INTO() function, then call it + // with one or two parameters + // + var qs = 'return alasql.into[' + JSON.stringify(this.into.funcid.toUpperCase()) + ']('; + if (this.into.args && this.into.args.length > 0) { + qs += this.into.args[0].toJS() + ','; + if (this.into.args.length > 1) { + qs += this.into.args[1].toJS() + ','; + } else { + qs += 'undefined,'; + } + } else { + qs += 'undefined, undefined,'; + } + query.intoallfns = qs + 'this.data,columns,cb)'; + } else if (this.into instanceof yy.ParamValue) { + // + // Save data into parameters array + // like alasql('SELECT * INTO ? FROM ?',[outdata,srcdata]); + // + query.intofns = `params[${JSON.stringify(this.into.param)}].push(r)`; + } + + if (query.intofns) { + // Create intofn function + query.intofn = new Function('r,i,params,alasql', 'var y;' + query.intofns); + } else if (query.intoallfns) { + // Create intoallfn function + query.intoallfn = new Function('columns,cb,params,alasql', 'var y;' + query.intoallfns); + } + } + // Now, compile all togeather into one function with query object in scope + var statement = function (params, cb, oldscope) { + query.params = params; + // Note the callback function has the data and error reversed due to existing code in promiseExec which has the + // err and data swapped. This trickles down into alasql.exec and further. Rather than risk breaking the whole thing, + // the (data, err) standard is maintained here. + var res1 = queryfn(query, oldscope, function (res, err) { + if (err) { + return cb(null, err); + } + if (query.rownums.length > 0) { + for (var i = 0, ilen = res.length; i < ilen; i++) { + for (var j = 0, jlen = query.rownums.length; j < jlen; j++) { + res[i][query.rownums[j]] = i + 1; + } + } + } + + var res2 = modify(query, res); + + if (cb) { + cb(res2); + } + return res2; + }); + return res1; + }; + + statement.query = query; + return statement; + } + + execute(databaseid, params, cb) { + return this.compile(databaseid)(params, cb); + // throw new Error('Insert statement is should be compiled') + } + + compileWhereExists(query) { + if (!this.exists) return; + query.existsfn = this.exists.map(function (ex) { + var nq = ex.compile(query.database.databaseid); + nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + + compileQueries(query) { + if (!this.queries) return; + query.queriesfn = this.queries.map(function (q) { + var nq = q.compile(query.database.databaseid); + nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + }; + + /** + Modify res according modifier + @function + @param {object} query Query object + @param res {object|number|string|boolean} res Data to be converted + */ + function modify(query, res) { + // jshint ignore:line + + /* If source is a primitive value then return it */ + if ( + typeof res === 'undefined' || + typeof res === 'number' || + typeof res === 'string' || + typeof res === 'boolean' + ) { + return res; + } + + var modifier = query.modifier || alasql.options.modifier; + var columns = query.columns; + if (typeof columns === 'undefined' || columns.length == 0) { + // Try to create columns + if (res.length > 0) { + var allcol = {}; + for (var i = Math.min(res.length, alasql.options.columnlookup || 10) - 1; 0 <= i; i--) { + for (var key in res[i]) { + allcol[key] = true; + } + } + + columns = Object.keys(allcol).map(function (columnid) { + return {columnid: columnid}; + }); + } else { + // Cannot recognize columns + columns = []; + } + } + + switch (modifier) { + case 'VALUE': + if (res.length === 0) return undefined; + const keyValue = + columns && columns.length > 0 ? columns[0].columnid : Object.keys(res[0])[0]; + return res[0][keyValue]; + + case 'ROW': + if (res.length === 0) return undefined; + return Object.values(res[0]); + + case 'COLUMN': + if (res.length === 0) return []; + + let key; + if (columns && columns.length > 0) { + key = columns[0].columnid; + } else { + key = Object.keys(res[0])[0]; + } + + let ar = []; + for (var i = 0, ilen = res.length; i < ilen; i++) { + ar.push(res[i][key]); + } + + return ar; + + case 'MATRIX': + if (res.length === 0) return undefined; + return res.map(row => columns.map(col => row[col.columnid])); + + case 'INDEX': + if (res.length === 0) return undefined; + const keyIndex = + columns && columns.length > 0 ? columns[0].columnid : Object.keys(res[0])[0]; + const valIndex = + columns && columns.length > 1 ? columns[1].columnid : Object.keys(res[0])[1]; + return res.reduce((acc, row) => ({...acc, [row[keyIndex]]: row[valIndex]}), {}); + + case 'RECORDSET': + // Assuming alasql.Recordset is available in the scope + return new alasql.Recordset({columns: columns, data: res}); + + case 'TEXTSTRING': + if (res.length === 0) return undefined; + const keyTextString = + columns && columns.length > 0 ? columns[0].columnid : Object.keys(res[0])[0]; + return res.map(row => row[keyTextString]).join('\n'); + } + return res; + } + /* +// +// EXISTS and other subqueries functions for AlaSQL.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// Modified by: Midwayne +// +*/ + + yy.ExistsValue = class ExistsValue { + constructor(params) { + Object.assign(this, params); + } + + toString() { + return 'EXISTS(' + this.value.toString() + ')'; + } + + toType() { + return 'boolean'; + } + + toJS(context, tableid, defcols) { + // Updated to return a boolean value correctly + return `!!this.existsfn[${this.existsidx}](params, null, ${context}).data.length`; + } + }; + + // + // Prepare subqueries and EXISTS + // + alasql.precompile = function (statement, databaseid, params) { + if (!statement) return; + statement.params = params; + if (statement.queries) { + statement.queriesfn = statement.queries.map(function (q) { + var nq = q.compile(databaseid || statement.database.databaseid); + nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + if (statement.exists) { + statement.existsfn = statement.exists.map(function (ex) { + var nq = ex.compile(databaseid || statement.database.databaseid); + nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + }; + /* +// +// Select compiler part for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + /* global yy, alasql, Mongo, returnTrue */ + + yy.Select.prototype.compileFrom = function (query) { + const self = this; + query.sources = []; + query.aliases = {}; + + if (!self.from) return; + + self.from.forEach(tq => { + const alias = tq.as || tq.tableid; + if (tq instanceof yy.Table) { + query.aliases[alias] = { + tableid: tq.tableid, + databaseid: tq.databaseid || query.database.databaseid, + type: 'table', + }; + } else if (tq instanceof yy.Select) { + query.aliases[alias] = {type: 'subquery'}; + } else if (tq instanceof yy.Search) { + query.aliases[alias] = {type: 'subsearch'}; + } else if (tq instanceof yy.ParamValue) { + query.aliases[alias] = {type: 'paramvalue'}; + } else if (tq instanceof yy.FuncValue) { + query.aliases[alias] = {type: 'funcvalue'}; + } else if (tq instanceof yy.VarValue) { + query.aliases[alias] = {type: 'varvalue'}; + } else if (tq instanceof yy.FromData) { + query.aliases[alias] = {type: 'fromdata'}; + } else if (tq instanceof yy.Json) { + query.aliases[alias] = {type: 'json'}; + } else if (tq.inserted) { + query.aliases[alias] = {type: 'inserted'}; + } else { + throw new Error('Wrong table at FROM'); + } + + const source = { + alias: alias, + databaseid: tq.databaseid || query.database.databaseid, + tableid: tq.tableid, + joinmode: 'INNER', + onmiddlefn: returnTrue, + srcwherefns: '', // for optimization + srcwherefn: returnTrue, + }; + + if (tq instanceof yy.Table) { + source.columns = alasql.databases[source.databaseid].tables[source.tableid].columns; + if ( + alasql.options.autocommit && + alasql.databases[source.databaseid].engineid && + !alasql.databases[source.databaseid].tables[source.tableid].view + ) { + source.datafn = (query, params, cb, idx, alasql) => { + return alasql.engines[alasql.databases[source.databaseid].engineid].fromTable( + source.databaseid, + source.tableid, + cb, + idx, + query + ); + }; + } else if (alasql.databases[source.databaseid].tables[source.tableid].view) { + source.datafn = (query, params, cb, idx, alasql) => { + let res = alasql.databases[source.databaseid].tables[source.tableid].select(params); + if (cb) res = cb(res, idx, query); + return res; + }; + } else { + source.datafn = (query, params, cb, idx, alasql) => { + let res = alasql.databases[source.databaseid].tables[source.tableid].data; + if (cb) res = cb(res, idx, query); + return res; + }; + } + } else if (tq instanceof yy.Select) { + source.subquery = tq.compile(query.database.databaseid); + if (typeof source.subquery.query.modifier === 'undefined') { + source.subquery.query.modifier = 'RECORDSET'; + } + source.columns = source.subquery.query.columns; + + source.datafn = (query, params, cb, idx, alasql) => { + let res; + source.subquery(query.params, data => { + res = data.data; + if (cb) res = cb(res, idx, query); + }); + return res; + }; + } else if (tq instanceof yy.Search) { + source.subsearch = tq; + source.columns = []; + source.datafn = (query, params, cb, idx, alasql) => { + let res; + source.subsearch.execute(query.database.databaseid, query.params, data => { + res = data; + if (cb) res = cb(res, idx, query); + }); + return res; + }; + } else if (tq instanceof yy.ParamValue) { + let ps = `var res = alasql.prepareFromData(params['${tq.param}']`; + if (tq.array) ps += ',true'; + ps += ');if(cb)res=cb(res,idx,query);return res'; + source.datafn = new Function('query,params,cb,idx,alasql', ps); + } else if (tq.inserted) { + let ps = 'var res = alasql.prepareFromData(alasql.inserted'; + if (tq.array) ps += ',true'; + ps += ');if(cb)res=cb(res,idx,query);return res'; + source.datafn = new Function('query,params,cb,idx,alasql', ps); + } else if (tq instanceof yy.Json) { + let ps = 'var res = alasql.prepareFromData(' + tq.toJS(); + if (tq.array) ps += ',true'; + ps += ');if(cb)res=cb(res,idx,query);return res'; + source.datafn = new Function('query,params,cb,idx,alasql', ps); + } else if (tq instanceof yy.VarValue) { + let ps = `var res = alasql.prepareFromData(alasql.vars['${tq.variable}']`; + if (tq.array) ps += ',true'; + ps += ');if(cb)res=cb(res,idx,query);return res'; + source.datafn = new Function('query,params,cb,idx,alasql', ps); + } else if (tq instanceof yy.FuncValue) { + let ps = 'var res=alasql.from[' + JSON.stringify(tq.funcid.toUpperCase()) + ']('; + + if (tq.args && tq.args.length > 0) { + if (tq.args[0]) { + ps += tq.args[0].toJS('query.oldscope') + ','; + } else { + ps += 'null,'; + } + + if (tq.args[1]) { + ps += tq.args[1].toJS('query.oldscope') + ','; + } else { + ps += 'null,'; + } + } else { + ps += 'null,null,'; + } + ps += 'cb,idx,query); return res'; + source.datafn = new Function('query,params,cb,idx,alasql', ps); + } else if (tq instanceof yy.FromData) { + source.datafn = (query, params, cb, idx, alasql) => { + let res = tq.data; + if (cb) res = cb(res, idx, query); + return res; + }; + } else { + throw new Error('Wrong table at FROM'); + } + query.sources.push(source); + }); + query.defaultTableid = query.sources[0].alias; + }; + + alasql.prepareFromData = function (data, array) { + let res = data; + if (typeof data === 'string') { + res = data.split(/\r?\n/); + if (array) { + res = res.map(item => [item]); + } + } else if (array) { + res = data.map(item => [item]); + } else if (typeof data === 'object' && !Array.isArray(data)) { + if ( + typeof Mongo !== 'undefined' && + typeof Mongo.Collection !== 'undefined' && + data instanceof Mongo.Collection + ) { + res = data.find().fetch(); + } else { + res = []; + for (const key in data) { + if (data.hasOwnProperty(key)) res.push([key, data[key]]); + } + } + } + return res; + }; + /* +// +// Select compiler part for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + // SELECT Compile functions + + /* global yy, alasql, returnTrue, arrayIntersect */ + + yy.Select.prototype.compileJoins = function (query) { + const self = this; + + this.joins.forEach(jn => { + let tq, ps, source; + // Test CROSS-JOIN + if (jn.joinmode === 'CROSS') { + if (jn.using || jn.on) { + throw new Error('CROSS JOIN cannot have USING or ON clauses'); + } else { + jn.joinmode = 'INNER'; + } + } + + if (jn instanceof yy.Apply) { + source = { + alias: jn.as, + applymode: jn.applymode, + onmiddlefn: returnTrue, + srcwherefns: '', // for optimization + srcwherefn: returnTrue, + columns: [], // TODO check this + }; + source.applyselect = jn.select.compile(query.database.databaseid); + source.columns = source.applyselect.query.columns; + + source.datafn = function (query, params, cb, idx, alasql) { + let res; + if (cb) res = cb(res, idx, query); + return res; + }; + + query.sources.push(source); + + return; + } + + if (jn.table) { + tq = jn.table; + source = { + alias: jn.as || tq.tableid, + databaseid: tq.databaseid || query.database.databaseid, + tableid: tq.tableid, + joinmode: jn.joinmode, + onmiddlefn: returnTrue, + srcwherefns: '', // for optimization + srcwherefn: returnTrue, + columns: [], + }; + + if (!alasql.databases[source.databaseid].tables[source.tableid]) { + throw new Error( + "Table '" + source.tableid + "' is not exists in database '" + source.databaseid + "'" + ); + } + + source.columns = alasql.databases[source.databaseid].tables[source.tableid].columns; + + if (alasql.options.autocommit && alasql.databases[source.databaseid].engineid) { + source.datafn = function (query, params, cb, idx, alasql) { + return alasql.engines[alasql.databases[source.databaseid].engineid].fromTable( + source.databaseid, + source.tableid, + cb, + idx, + query + ); + }; + } else if (alasql.databases[source.databaseid].tables[source.tableid].view) { + source.datafn = function (query, params, cb, idx, alasql) { + let res = alasql.databases[source.databaseid].tables[source.tableid].select(params); + if (cb) res = cb(res, idx, query); + return res; + }; + } else { + source.datafn = function (query, params, cb, idx, alasql) { + let res = alasql.databases[source.databaseid].tables[source.tableid].data; + if (cb) res = cb(res, idx, query); + return res; + }; + } + + query.aliases[source.alias] = { + tableid: tq.tableid, + databaseid: tq.databaseid || query.database.databaseid, + }; + } else if (jn.select) { + tq = jn.select; + source = { + alias: jn.as, + joinmode: jn.joinmode, + onmiddlefn: returnTrue, + srcwherefns: '', // for optimization + srcwherefn: returnTrue, + columns: [], + }; + + source.subquery = tq.compile(query.database.databaseid); + if (typeof source.subquery.query.modifier === 'undefined') { + source.subquery.query.modifier = 'RECORDSET'; // Subqueries always return recordsets + } + source.columns = source.subquery.query.columns; + + source.datafn = function (query, params, cb, idx, alasql) { + source.data = source.subquery(query.params, null, cb, idx).data; + let res = source.data; + // Propogate subquery result + if (cb) res = cb(res, idx, query); + return res; + }; + query.aliases[source.alias] = {type: 'subquery'}; + } else if (jn.param) { + source = { + alias: jn.as, + joinmode: jn.joinmode, + onmiddlefn: returnTrue, + srcwherefns: '', // for optimization + srcwherefn: returnTrue, + }; + const jnparam = jn.param.param; + ps = "let res=alasql.prepareFromData(params['" + jnparam + "']"; + if (jn.array) ps += ',true'; + ps += '); if(cb) res=cb(res, idx, query); return res'; + + source.datafn = new Function('query,params,cb,idx, alasql', ps); + query.aliases[source.alias] = {type: 'paramvalue'}; + } else if (jn.variable) { + source = { + alias: jn.as, + joinmode: jn.joinmode, + onmiddlefn: returnTrue, + srcwherefns: '', // for optimization + srcwherefn: returnTrue, + }; + ps = "let res=alasql.prepareFromData(alasql.vars['" + jn.variable + "']"; + if (jn.array) ps += ', true'; + ps += '); if(cb)res=cb(res, idx, query);return res'; + + source.datafn = new Function('query,params,cb,idx, alasql', ps); + query.aliases[source.alias] = {type: 'varvalue'}; + } else if (jn.func) { + source = { + alias: jn.as, + joinmode: jn.joinmode, + onmiddlefn: returnTrue, + srcwherefns: '', // for optimization + srcwherefn: returnTrue, + }; + + let s = 'let res=alasql.from[' + JSON.stringify(jn.func.funcid.toUpperCase()) + ']('; + + const args = jn.func.args; + if (args && args.length > 0) { + if (args[0]) { + s += args[0].toJS('query.oldscope') + ', '; + } else { + s += 'null, '; + } + if (args[1]) { + s += args[1].toJS('query.oldscope') + ', '; + } else { + s += 'null, '; + } + } else { + s += 'null, null, '; + } + s += 'cb, idx, query); return res'; + source.datafn = new Function('query, params, cb, idx, alasql', s); + + query.aliases[source.alias] = {type: 'funcvalue'}; + } + + const alias = source.alias; + + // Test NATURAL-JOIN + if (jn.natural) { + if (jn.using || jn.on) { + throw new Error('NATURAL JOIN cannot have USING or ON clauses'); + } else { + // source.joinmode == "INNER"; + if (query.sources.length > 0) { + const prevSource = query.sources[query.sources.length - 1]; + const prevTable = alasql.databases[prevSource.databaseid].tables[prevSource.tableid]; + const table = alasql.databases[source.databaseid].tables[source.tableid]; + + if (prevTable && table) { + const c1 = prevTable.columns.map(col => col.columnid); + const c2 = table.columns.map(col => col.columnid); + jn.using = arrayIntersect(c1, c2).map(colid => ({columnid: colid})); + } else { + throw new Error( + 'In this version of Alasql NATURAL JOIN ' + + 'works for tables with predefined columns only' + ); + } + } + } + } + + if (jn.using) { + const prevSource = query.sources[query.sources.length - 1]; + source.onleftfns = jn.using + .map( + col => "p['" + (prevSource.alias || prevSource.tableid) + "']['" + col.columnid + "']" + ) + .join('+"`"+'); + + source.onleftfn = new Function('p,params,alasql', 'let y;return ' + source.onleftfns); + + source.onrightfns = jn.using + .map(col => "p['" + (source.alias || source.tableid) + "']['" + col.columnid + "']") + .join('+"`"+'); + source.onrightfn = new Function('p,params,alasql', 'let y;return ' + source.onrightfns); + source.optimization = 'ix'; + } else if (jn.on) { + if (jn.on instanceof yy.Op && jn.on.op === '=' && !jn.on.allsome) { + source.optimization = 'ix'; + let lefts = ''; + let rights = ''; + let middles = ''; + let middlef = false; + // Test right and left sides + const ls = jn.on.left.toJS('p', query.defaultTableid, query.defcols); + const rs = jn.on.right.toJS('p', query.defaultTableid, query.defcols); + + if (ls.indexOf("p['" + alias + "']") > -1 && !(rs.indexOf("p['" + alias + "']") > -1)) { + if ((ls.match(/p\['.*?'\]/g) || []).every(s => s === "p['" + alias + "']")) { + rights = ls; + } else { + middlef = true; + } + } else if ( + !(ls.indexOf("p['" + alias + "']") > -1) && + rs.indexOf("p['" + alias + "']") > -1 + ) { + if ((rs.match(/p\['.*?'\]/g) || []).every(s => s === "p['" + alias + "']")) { + lefts = ls; + } else { + middlef = true; + } + } else { + middlef = true; + } + + if (rs.indexOf("p['" + alias + "']") > -1 && !(ls.indexOf("p['" + alias + "']") > -1)) { + if ((rs.match(/p\['.*?'\]/g) || []).every(s => s === "p['" + alias + "']")) { + rights = rs; + } else { + middlef = true; + } + } else if ( + !(rs.indexOf("p['" + alias + "']") > -1) && + ls.indexOf("p['" + alias + "']") > -1 + ) { + if ((ls.match(/p\['.*?'\]/g) || []).every(s => s === "p['" + alias + "']")) { + lefts = rs; + } else { + middlef = true; + } + } else { + middlef = true; + } + + if (middlef) { + rights = ''; + lefts = ''; + middles = jn.on.toJS('p', query.defaultTableid, query.defcols); + source.optimization = 'no'; + } + + source.onleftfns = lefts; + source.onrightfns = rights; + source.onmiddlefns = middles || 'true'; + + source.onleftfn = new Function('p,params,alasql', 'let y;return ' + source.onleftfns); + source.onrightfn = new Function('p,params,alasql', 'let y;return ' + source.onrightfns); + source.onmiddlefn = new Function('p,params,alasql', 'let y;return ' + source.onmiddlefns); + } else { + source.optimization = 'no'; + source.onmiddlefns = jn.on.toJS('p', query.defaultTableid, query.defcols); + source.onmiddlefn = new Function( + 'p,params,alasql', + 'let y;return ' + jn.on.toJS('p', query.defaultTableid, query.defcols) + ); + } + } + + query.sources.push(source); + }); + }; + yy.Select.prototype.compileWhere = function (query) { + if (this.where) { + if (typeof this.where == 'function') { + return this.where; + } else { + var s = this.where.toJS('p', query.defaultTableid, query.defcols); + query.wherefns = s; + // console.log(s); + return new Function('p,params,alasql', 'var y;return ' + s); + } + } else + return function () { + return true; + }; + }; + + yy.Select.prototype.compileWhereJoins = function (query) { + return; + + // TODO Fix Where optimization + //console.log(query); + + optimizeWhereJoin(query, this.where.expression); + + //for sources compile wherefs + query.sources.forEach(function (source) { + if (source.srcwherefns) { + source.srcwherefn = new Function('p,params,alasql', 'var y;return ' + source.srcwherefns); + } + if (source.wxleftfns) { + source.wxleftfn = new Function('p,params,alasql', 'var y;return ' + source.wxleftfns); + } + if (source.wxrightfns) { + source.wxrightfn = new Function('p,params,alasql', 'var y;return ' + source.wxrightfns); + } + // console.log(source.alias, source.wherefns) + // console.log(source); + }); + }; + + function optimizeWhereJoin(query, ast) { + if (!ast) return false; + if (!(ast instanceof yy.Op)) return; + if (ast.op != '=' && ast.op != 'AND') return; + if (ast.allsome) return; + + var s = ast.toJS('p', query.defaultTableid, query.defcols); + var fsrc = []; + query.sources.forEach(function (source, idx) { + // Optimization allowed only for tables only + if (source.tableid) { + // This is a good place to remove all unnecessary optimizations + if (s.indexOf("p['" + source.alias + "']") > -1) fsrc.push(source); + } + }); + //console.log(fsrc.length); + // if(fsrc.length < query.sources.length) return; + // console.log(ast); + // console.log(s); + // console.log(fsrc.length); + if (fsrc.length == 0) { + // console.log('no optimization, can remove this part of ast'); + return; + } else if (fsrc.length == 1) { + if ( + !(s.match(/p\[\'.*?\'\]/g) || []).every(function (s) { + return s == "p['" + fsrc[0].alias + "']"; + }) + ) { + return; + // This is means, that we have column from parent query + // So we return without optimization + } + + var src = fsrc[0]; // optmiization source + src.srcwherefns = src.srcwherefns ? src.srcwherefns + '&&' + s : s; + + if (ast instanceof yy.Op && ast.op == '=' && !ast.allsome) { + if (ast.left instanceof yy.Column) { + var ls = ast.left.toJS('p', query.defaultTableid, query.defcols); + var rs = ast.right.toJS('p', query.defaultTableid, query.defcols); + if (rs.indexOf("p['" + fsrc[0].alias + "']") == -1) { + fsrc[0].wxleftfns = ls; + fsrc[0].wxrightfns = rs; + } + } + if (ast.right instanceof yy.Column) { + var ls = ast.left.toJS('p', query.defaultTableid, query.defcols); + var rs = ast.right.toJS('p', query.defaultTableid, query.defcols); + if (ls.indexOf("p['" + fsrc[0].alias + "']") == -1) { + fsrc[0].wxleftfns = rs; + fsrc[0].wxrightfns = ls; + } + } + } + ast.reduced = true; // To do not duplicate wherefn and srcwherefn + return; + } else { + if ((ast.op = 'AND')) { + optimizeWhereJoin(query, ast.left); + optimizeWhereJoin(query, ast.right); + } + } + } + /* +// +// Select compiler part for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + /** + Compile group of statements + */ + yy.Select.prototype.compileGroup = function (query) { + // console.log(this.group); + if (query.sources.length > 0) { + var tableid = query.sources[0].alias; + } else { + // If SELECT contains group aggregators without source tables + var tableid = ''; + } + var defcols = query.defcols; + var allgroup = [[]]; + if (this.group) { + allgroup = decartes(this.group, query); + } + // Union all arrays to get a maximum + var allgroups = []; + allgroup.forEach(function (a) { + allgroups = arrayUnion(allgroups, a); + }); + + query.allgroups = allgroups; + + query.ingroup = []; + var s = ''; + allgroup.forEach(function (agroup) { + // Start of group function + s += 'var g=this.xgroups['; + + // Array with group columns from record + var rg = agroup.map(function (col2) { + var columnid = col2.split('\t')[0]; + var coljs = col2.split('\t')[1]; + // Check, if aggregator exists but GROUP BY is not exists + if (columnid === '') { + return '1'; // Create fictive grouping column for fictive GROUP BY + } + query.ingroup.push(columnid); + return coljs; + }); + + if (rg.length === 0) { + rg = ["''"]; + } + + s += rg.join('+"`"+'); + s += '];if(!g) {this.groups.push((g=this.xgroups['; + s += rg.join('+"`"+'); + s += '] = {'; + s += agroup + .map(function (col2) { + var columnid = col2.split('\t')[0]; + var coljs = col2.split('\t')[1]; + + if (columnid === '') { + return ''; + } + return "'" + columnid + "':" + coljs + ','; + }) + .join(''); + var neggroup = arrayDiff(allgroups, agroup); + + s += neggroup + .map(function (col2) { + var columnid = col2.split('\t')[0]; + return "'" + columnid + "':null,"; + }) + .join(''); + var aft = '', + aft2 = ''; + + if (typeof query.groupStar !== 'undefined') { + aft2 += + "for(var f in p['" + query.groupStar + "']) {g[f]=p['" + query.groupStar + "'][f];};"; + } + + s += query.selectGroup + .map(function (col) { + var colexp = col.expression.toJS('p', tableid, defcols); + var colas = col.nick; + let colExpIfFunIdExists = expression => { + let colexpression = expression.args[0]; + return colexpression.toJS('p', tableid, defcols); + }; + if (col instanceof yy.AggrValue) { + if (col.distinct) { + aft += + ",g['$$_VALUES_" + + colas + + "']={},g['$$_VALUES_" + + colas + + "'][" + + colexp + + ']=true'; + } + if (col.aggregatorid === 'SUM') { + if ('funcid' in col.expression) { + let colexp1 = colExpIfFunIdExists(col.expression); + return `'${colas}':(${colexp1})|| typeof ${colexp1} == 'number' ? ${colexp} : null,`; + } + return `'${colas}':(${colexp})|| typeof ${colexp} == 'number' ? ${colexp} : null,`; + } else if (col.aggregatorid === 'TOTAL') { + if ('funcid' in col.expression) { + let colexp1 = colExpIfFunIdExists(col.expression); + return `'${colas}':(${colexp1}) || typeof ${colexp1} == 'number' ? + ${colexp1} : ${colexp1} == 'string' && typeof Number(${colexp1}) == 'number' ? Number(${colexp1}) : + typeof ${colexp1} == 'boolean' ? Number(${colexp1}) : 0,`; + } + return `'${colas}':(${colexp})|| typeof ${colexp} == 'number' ? + ${colexp} : ${colexp} == 'string' && typeof Number(${colexp}) == 'number' ? Number(${colexp}) : + typeof ${colexp} === 'boolean' ? Number(${colexp}) : 0,`; + } else if (col.aggregatorid === 'FIRST' || col.aggregatorid === 'LAST') { + return "'" + colas + "':" + colexp + ','; //f.field.arguments[0].toJS(); + } else if (col.aggregatorid === 'MIN') { + if ('funcid' in col.expression) { + let colexp1 = colExpIfFunIdExists(col.expression); + + return `'${colas}': (typeof ${colexp1} == 'number' ? ${colexp} : typeof ${colexp1} == 'object' ? + typeof Number(${colexp1}) == 'number' && ${colexp1}!== null? ${colexp} : null : null),`; + } + return `'${colas}': (typeof ${colexp} == 'number' ? ${colexp} : typeof ${colexp} == 'object' ? + typeof Number(${colexp}) == 'number' && ${colexp}!== null? ${colexp} : null : null),`; + } else if (col.aggregatorid === 'MAX') { + if ('funcid' in col.expression) { + let colexp1 = colExpIfFunIdExists(col.expression); + return `'${colas}' : (typeof ${colexp1} == 'number' ? ${colexp} : typeof ${colexp1} == 'object' ? + typeof Number(${colexp1}) == 'number' ? ${colexp} : null : null),`; + } + return `'${colas}' : (typeof ${colexp} == 'number' ? ${colexp} : typeof ${colexp} == 'object' ? + typeof Number(${colexp}) == 'number' ? ${colexp} : null : null),`; + } else if (col.aggregatorid === 'ARRAY') { + return `'${colas}':[${colexp}],`; + } else if (col.aggregatorid === 'COUNT') { + if (col.expression.columnid === '*') { + return `'${colas}':1,`; + } else { + return `'${colas}':(typeof ${colexp} == "undefined" || ${colexp} === null) ? 0 : 1,`; + } + } else if (col.aggregatorid === 'AVG') { + query.removeKeys.push(`_SUM_${colas}`); + query.removeKeys.push(`_COUNT_${colas}`); + + return `'${colas}':${colexp},'_SUM_${colas}':(${colexp})||0,'_COUNT_${colas}':(typeof ${colexp} == "undefined" || ${colexp} === null) ? 0 : 1,`; + } else if (col.aggregatorid === 'AGGR') { + aft += `,g['${colas}']=${col.expression.toJS('g', -1)}`; + return ''; + } else if (col.aggregatorid === 'REDUCE') { + query.aggrKeys.push(col); + return `'${colas}':alasql.aggr['${col.funcid}'](${colexp},undefined,1),`; + } + return ''; + } + + return ''; + }) + .join(''); + + s += '}' + aft + ',g));' + aft2 + '} else {'; + s += query.selectGroup + .map(function (col) { + var colas = col.nick; + var colexp = col.expression.toJS('p', tableid, defcols); + let colExpIfFunIdExists = expression => { + let colexpression = expression.args[0]; + return colexpression.toJS('p', tableid, defcols); + }; + if (col instanceof yy.AggrValue) { + var pre = '', + post = ''; + if (col.distinct) { + pre = `if(typeof ${colexp}!="undefined" && (!g['$$_VALUES_${colas}'][${colexp}])) {`; + post = `g['$$_VALUES_${colas}'][${colexp}]=true;}`; + } + + if (col.aggregatorid === 'SUM') { + if ('funcid' in col.expression) { + let colexp1 = colExpIfFunIdExists(col.expression); + return ( + pre + + ` + { + const __g_colas = g['${colas}']; + const __typeof_colexp1 = typeof ${colexp1}; + + if (__g_colas == null && ${colexp1} == null) { + g['${colas}'] = null; + } else if ((typeof __g_colas !== 'object' && typeof __g_colas !== 'number' && __typeof_colexp1 !== 'object' && __typeof_colexp1 !== 'number') || + (__g_colas == null || (typeof __g_colas !== 'number' && typeof __g_colas !== 'object')) && (${colexp1} == null || (__typeof_colexp1 !== 'number' && __typeof_colexp1 !== 'object'))) { + g['${colas}'] = null; + } else if ((typeof __g_colas !== 'object' && typeof __g_colas !== 'number' && __typeof_colexp1 == 'number') || + (__g_colas == null && __typeof_colexp1 == 'number')) { + g['${colas}'] = ${colexp}; + } else if (typeof __g_colas == 'number' && ${colexp1} == null) { + g['${colas}'] = __g_colas; + } else { + g['${colas}'] += ${colexp} || 0; + } + } + ` + + post + ); + } + return ( + pre + + ` + { + const __g_colas = g['${colas}']; + const __typeof_colexp = typeof ${colexp}; + + if (__g_colas == null && ${colexp} == null) { + g['${colas}'] = null; + } else if ((typeof __g_colas !== 'object' && typeof __g_colas !== 'number' && __typeof_colexp !== 'object' && __typeof_colexp !== 'number') || + (__g_colas == null || (typeof __g_colas !== 'number' && typeof __g_colas !== 'object')) && (${colexp} == null || (__typeof_colexp !== 'number' && __typeof_colexp !== 'object'))) { + g['${colas}'] = null; + } else if (typeof __g_colas !== 'object' && typeof __g_colas !== 'number' && __typeof_colexp == 'number') { + g['${colas}'] = ${colexp}; + } else if (typeof __g_colas == 'number' && ${colexp} == null) { + g['${colas}'] = __g_colas; + } else if (__g_colas == null && __typeof_colexp == 'number') { + g['${colas}'] = ${colexp}; + } else { + g['${colas}'] += ${colexp} || 0; + } + } + ` + + post + ); + } else if (col.aggregatorid === 'TOTAL') { + if ('funcid' in col.expression) { + let colexp1 = colExpIfFunIdExists(col.expression); + return ( + pre + + `{ + const __g_colas = g['${colas}']; + const __colexp1 = ${colexp1}; + const __typeof_g_colas = typeof __g_colas; + const __typeof_colexp1 = typeof __colexp1; + + if (__typeof_g_colas == 'string' && !isNaN(__g_colas) && typeof Number(__g_colas) == 'number' && + __typeof_colexp1 == 'string' && !isNaN(__colexp1) && typeof Number(__colexp1) == 'number') { + g['${colas}'] = Number(__g_colas) + Number(__colexp1); + } else if (__typeof_g_colas == 'string' && __typeof_colexp1 == 'string') { + g['${colas}'] = 0; + } else if (__typeof_g_colas == 'string' && __typeof_colexp1 == 'number') { + g['${colas}'] = __colexp1; + } else if (__typeof_colexp1 == 'string' && __typeof_g_colas == 'number') { + g['${colas}'] = __g_colas; + } else { + g['${colas}'] += __colexp1 || 0; + } + }` + + post + ); + } + return ( + pre + + `{ + const __g_colas = g['${colas}']; + const __colexp = ${colexp}; + const __typeof_g_colas = typeof __g_colas; + const __typeof_colexp = typeof __colexp; + + if (__typeof_g_colas === 'string' && !isNaN(__g_colas) && typeof Number(__g_colas) === 'number' && + __typeof_colexp === 'string' && !isNaN(__colexp) && typeof Number(__colexp) === 'number') { + g['${colas}'] = Number(__g_colas) + Number(__colexp); + } else if (__typeof_g_colas === 'string' && __typeof_colexp === 'string') { + g['${colas}'] = 0; + } else if (__typeof_g_colas === 'string' && __typeof_colexp === 'number') { + g['${colas}'] = __colexp; + } else if (__typeof_colexp === 'string' && __typeof_g_colas === 'number') { + g['${colas}'] = __g_colas; + } else { + g['${colas}'] += __colexp || 0; + } + } + + ` + + post + ); + } else if (col.aggregatorid === 'COUNT') { + if (col.expression.columnid === '*') { + return `${pre} + g['${colas}']++; + ${post}`; + } else { + return `${pre} + if(typeof ${colexp}!="undefined" && ${colexp} !== null) g['${colas}']++; + ${post}`; + } + } else if (col.aggregatorid === 'ARRAY') { + return pre + "g['" + colas + "'].push(" + colexp + ');' + post; + } else if (col.aggregatorid === 'MIN') { + if ('funcid' in col.expression) { + let colexp1 = colExpIfFunIdExists(col.expression); + return ( + pre + + `if((g['${colas}'] == null && ${colexp1}!== null) ? y = ${colexp} : (g['${colas}']!== null && + ${colexp1} == null) ? y = g['${colas}']:((y=${colexp}) < g['${colas}'])){ if(typeof y == 'number') + {g['${colas}'] = y;}else if(typeof y == 'object' && y instanceof Date){g['${colas}'] = y;} + else if(typeof y == 'object' && typeof Number(y) == 'number'){g['${colas}'] = Number(y);}} + else if(g['${colas}']!== null && typeof g['${colas}'] == 'object' && y instanceof Date){g['${colas}'] = g['${colas}']} + else if(g['${colas}']!== null && typeof g['${colas}'] == 'object'){g['${colas}'] = Number(g['${colas}'])}` + + post + ); + } + return ( + pre + + `if((g['${colas}'] == null && ${colexp}!== null) ? y = ${colexp} : (g['${colas}']!== null && + ${colexp} == null) ? y = g['${colas}']:((y=${colexp}) < g['${colas}'])){ if(typeof y == 'number') + {g['${colas}'] = y;}else if(typeof y == 'object' && y instanceof Date){g['${colas}'] = y;} + else if(typeof y == 'object' && typeof Number(y) == 'number'){g['${colas}'] = Number(y);}} + else if(g['${colas}']!== null && typeof g['${colas}'] == 'object' && y instanceof Date){g['${colas}'] = g['${colas}']} + else if(g['${colas}']!== null && typeof g['${colas}'] == 'object'){g['${colas}'] = Number(g['${colas}'])}` + + post + ); + } else if (col.aggregatorid === 'MAX') { + if ('funcid' in col.expression) { + let colexp1 = colExpIfFunIdExists(col.expression); + //console.log(pre + 'if ((y=' + colexp + ") > g['" + colas + "']) g['" + colas + "']) + return ( + pre + + `if((g['${colas}'] == null && ${colexp1}!== null) ? y = ${colexp} : (g['${colas}']!== null && + ${colexp1} == null) ? y = g['${colas}']:((y=${colexp}) > g['${colas}'])){ if(typeof y == 'number') + {g['${colas}'] = y;}else if(typeof y == 'object' && y instanceof Date){g['${colas}'] = y;} + else if(typeof y == 'object' && typeof Number(y) == 'number'){g['${colas}'] = Number(y);}} + else if(g['${colas}']!== null && typeof g['${colas}'] == 'object' && y instanceof Date){g['${colas}'] = g['${colas}']} + else if(g['${colas}']!== null && typeof g['${colas}'] == 'object'){g['${colas}'] = Number(g['${colas}'])}` + + post + ); + } + return ( + pre + + `if((g['${colas}'] == null && ${colexp}!== null) ? y = ${colexp} : (g['${colas}']!== null && + ${colexp} == null) ? y = g['${colas}']:((y=${colexp}) > g['${colas}'])){ if(typeof y == 'number') + {g['${colas}'] = y;}else if(typeof y == 'object' && y instanceof Date){g['${colas}'] = y;} + else if(typeof y == 'object' && typeof Number(y) == 'number'){g['${colas}'] = Number(y);}} + else if(g['${colas}']!== null && typeof g['${colas}'] == 'object' && y instanceof Date){g['${colas}'] = g['${colas}']} + else if(g['${colas}']!== null && typeof g['${colas}'] == 'object'){g['${colas}'] = Number(g['${colas}'])}` + + post + ); + } else if (col.aggregatorid === 'FIRST') { + return ''; + } else if (col.aggregatorid === 'LAST') { + return `${pre}g['${colas}']=${colexp};${post}`; + } else if (col.aggregatorid === 'AVG') { + return `${pre} + g['_SUM_${colas}'] += (y=${colexp})||0; + g['_COUNT_${colas}'] += (typeof y == "undefined" || y === null) ? 0 : 1; + g['${colas}']=g['_SUM_${colas}'] / g['_COUNT_${colas}']; + ${post}`; + } else if (col.aggregatorid === 'AGGR') { + return `${pre} + g['${colas}']=${col.expression.toJS('g', -1)}; + ${post}`; + } else if (col.aggregatorid === 'REDUCE') { + return `${pre} + g['${colas}'] = alasql.aggr.${col.funcid}(${colexp},g['${colas}'],2); + ${post}`; + } + + return ''; + } + + return ''; + }) + .join(''); + + s += '}'; + }); + return new Function('p,params,alasql', 'var y;' + s); + }; + /* +// +// Select compiler part for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + // yy.Select.prototype.compileSources = function(query) { + // return sources; + // }; + + function compileSelectStar(query, aliases, joinstar) { + var sp = '', + ss = [], + columnIds = {}; + + aliases.forEach(function (alias) { + // console.log(query.aliases[alias]); + // console.log(query,alias); + // console.log(query.aliases[alias].tableid); + // console.log(42,631,alias); + // console.log(query.aliases); + // if(!alias) { + // sp += 'for(var k1 in p) var w=p[k1];for(var k2 in w){r[k2]=w[k2]};'; + // } else { + + // TODO move this out of this function + query.ixsources = {}; + query.sources.forEach(function (source) { + query.ixsources[source.alias] = source; + }); + + // Fixed + var columns; + if (query.ixsources[alias]) { + var columns = query.ixsources[alias].columns; + } + + // if(columns.length == 0 && query.aliases[alias].tableid) { + // var columns = alasql.databases[query.aliases[alias].databaseid].tables[query.aliases[alias].tableid].columns; + // }; + + // Check if this is a Table or other + if (joinstar && alasql.options.joinstar == 'json') { + sp += "r['" + alias + "']={};"; + } + + if (columns && columns.length > 0) { + columns.forEach(function (tcol) { + const escapedColumnId = escapeq(tcol.columnid); + if (joinstar && alasql.options.joinstar == 'underscore') { + ss.push( + "'" + + alias + + '_' + + escapedColumnId + + "':p['" + + alias + + "']['" + + escapedColumnId + + "']" + ); + } else if (joinstar && alasql.options.joinstar == 'json') { + // ss.push('\''+alias+'_'+tcol.columnid+'\':p[\''+alias+'\'][\''+tcol.columnid+'\']'); + sp += + "r['" + + alias + + "']['" + + escapedColumnId + + "']=p['" + + alias + + "']['" + + escapedColumnId + + "'];"; + } else { + var value = "p['" + alias + "']['" + escapedColumnId + "']"; + if (!columnIds[tcol.columnid]) { + var key = "'" + escapedColumnId + "':"; + ss.push(key + value); + columnIds[tcol.columnid] = { + id: ss.length - 1, + value: value, + key: key, + }; + } else { + var newValue = + value + ' !== undefined ? ' + value + ' : ' + columnIds[tcol.columnid].value; + ss[columnIds[tcol.columnid].id] = columnIds[tcol.columnid].key + newValue; + columnIds[tcol.columnid].value = newValue; + } + } + + query.selectColumns[escapedColumnId] = true; + + // console.log('ok',tcol); + + var coldef = { + columnid: tcol.columnid, + dbtypeid: tcol.dbtypeid, + dbsize: tcol.dbsize, + dbprecision: tcol.dbprecision, + dbenum: tcol.dbenum, + }; + query.columns.push(coldef); + query.xcolumns[coldef.columnid] = coldef; + }); + //console.log(999,columns); + } else { + // console.log(60,alias,columns); + + // if column not exist, then copy all + sp += 'var w=p["' + alias + '"];for(var k in w){r[k]=w[k]};'; + //console.log(777, sp); + query.dirtyColumns = true; + } + // } + //console.log(87,{s:ss.join(','),sp:sp}); + }); + + return {s: ss.join(','), sp: sp}; + } + + yy.Select.prototype.compileSelect1 = function (query, params) { + var self = this; + query.columns = []; + query.xcolumns = {}; + query.selectColumns = {}; + query.dirtyColumns = false; + var s = 'var r={'; + var sp = ''; + var ss = []; + + //console.log(42,87,this.columns); + + this.columns.forEach(function (col) { + if (col instanceof yy.Column) { + if (col.columnid === '*') { + if (col.func) { + sp += + "r=params['" + col.param + "'](p['" + query.sources[0].alias + "'],p,params,alasql);"; + } else if (col.tableid) { + //Copy all + var ret = compileSelectStar(query, [col.tableid], false); + if (ret.s) { + ss = ss.concat(ret.s); + } + sp += ret.sp; + } else { + // console.log('aliases', query.aliases); + var ret = compileSelectStar(query, Object.keys(query.aliases), true); //query.aliases[alias].tableid); + if (ret.s) { + ss = ss.concat(ret.s); + } + sp += ret.sp; + + // TODO Remove these lines + // In case of no information + // sp += 'for(var k1 in p){var w=p[k1];'+ + // 'for(k2 in w) {r[k2]=w[k2]}}' + } + } else { + // If field, otherwise - expression + var tbid = col.tableid; + // console.log(query.sources); + var dbid = col.databaseid || query.sources[0].databaseid || query.database.databaseid; + if (!tbid) tbid = query.defcols[col.columnid]; + if (!tbid) tbid = query.defaultTableid; + if (col.columnid !== '_') { + if (false && tbid && !query.defcols['.'][col.tableid] && !query.defcols[col.columnid]) { + ss.push( + "'" + + escapeq(col.as || col.columnid) + + "':p['" + + query.defaultTableid + + "']['" + + col.tableid + + "']['" + + col.columnid + + "']" + ); + } else { + // workaround for multisheet xlsx export with custom COLUMNS + var isMultisheetParam = + params && + params.length > 1 && + Array.isArray(params[0]) && + params[0].length >= 1 && + params[0][0].hasOwnProperty('sheetid'); + if (isMultisheetParam) { + sp = + 'var r={};var w=p["' + + tbid + + '"];' + + 'var cols=[' + + self.columns + .map(function (col) { + return "'" + col.columnid + "'"; + }) + .join(',') + + '];var colas=[' + + self.columns + .map(function (col) { + return "'" + (col.as || col.columnid) + "'"; + }) + .join(',') + + '];' + + "for (var i=0;i 0) { + // console.log(1); + var tcol = xcolumns[col.columnid]; + + if (undefined === tcol) { + throw new Error('Column does not exist: ' + col.columnid); + } + + var coldef = { + columnid: col.as || col.columnid, + dbtypeid: tcol.dbtypeid, + dbsize: tcol.dbsize, + dbpecision: tcol.dbprecision, + dbenum: tcol.dbenum, + }; + // console.log(2); + query.columns.push(coldef); + query.xcolumns[coldef.columnid] = coldef; + } else { + var coldef = { + columnid: col.as || col.columnid, + // dbtypeid:tcol.dbtypeid, + // dbsize:tcol.dbsize, + // dbpecision:tcol.dbprecision, + // dbenum: tcol.dbenum, + }; + // console.log(2); + query.columns.push(coldef); + query.xcolumns[coldef.columnid] = coldef; + + query.dirtyColumns = true; + } + } else { + var coldef = { + columnid: col.as || col.columnid, + // dbtypeid:tcol.dbtypeid, + // dbsize:tcol.dbsize, + // dbpecision:tcol.dbprecision, + // dbenum: tcol.dbenum, + }; + // console.log(2); + query.columns.push(coldef); + query.xcolumns[coldef.columnid] = coldef; + // This is a subquery? + // throw new Error('There is now such table \''+col.tableid+'\''); + } + } + } else if (col instanceof yy.AggrValue) { + if (!self.group) { + // self.group=[new yy.Column({columnid:'q',as:'q' })]; + self.group = ['']; + } + if (!col.as) { + col.as = escapeq(col.toString()); + } + + if ( + col.aggregatorid === 'SUM' || + col.aggregatorid === 'MAX' || + col.aggregatorid === 'MIN' || + col.aggregatorid === 'FIRST' || + col.aggregatorid === 'LAST' || + col.aggregatorid === 'AVG' || + col.aggregatorid === 'ARRAY' || + col.aggregatorid === 'REDUCE' || + col.aggregatorid === 'TOTAL' + ) { + ss.push( + "'" + + escapeq(col.as) + + "':" + + n2u(col.expression.toJS('p', query.defaultTableid, query.defcols)) + ); + } else if (col.aggregatorid === 'COUNT') { + ss.push("'" + escapeq(col.as) + "':1"); + // Nothing + } + // todo: confirm that no default action must be implemented + + // query.selectColumns[col.aggregatorid+'('+escapeq(col.expression.toString())+')'] = thtd; + + var coldef = { + columnid: col.as || col.columnid || col.toString(), + // dbtypeid:tcol.dbtypeid, + // dbsize:tcol.dbsize, + // dbpecision:tcol.dbprecision, + // dbenum: tcol.dbenum, + }; + // console.log(2); + query.columns.push(coldef); + query.xcolumns[coldef.columnid] = coldef; + + // else if (col.aggregatorid == 'MAX') { + // ss.push((col.as || col.columnid)+':'+col.toJS("p.",query.defaultTableid)) + // } else if (col.aggregatorid == 'MIN') { + // ss.push((col.as || col.columnid)+':'+col.toJS("p.",query.defaultTableid)) + // } + } else { + // console.log(203,col.as,col.columnid,col.toString()); + ss.push( + "'" + + escapeq(col.as || col.columnid || col.toString()) + + "':" + + n2u(col.toJS('p', query.defaultTableid, query.defcols)) + ); + // ss.push('\''+escapeq(col.toString())+'\':'+col.toJS("p",query.defaultTableid)); + //if(col instanceof yy.Expression) { + query.selectColumns[escapeq(col.as || col.columnid || col.toString())] = true; + + var coldef = { + columnid: col.as || col.columnid || col.toString(), + // dbtypeid:tcol.dbtypeid, + // dbsize:tcol.dbsize, + // dbpecision:tcol.dbprecision, + // dbenum: tcol.dbenum, + }; + // console.log(2); + query.columns.push(coldef); + query.xcolumns[coldef.columnid] = coldef; + } + }); + s += ss.join(',') + '};' + sp; + return s; + //console.log(42,753,query.xcolumns, query.selectColumns); + }; + yy.Select.prototype.compileSelect2 = function (query, params) { + var s = query.selectfns; + if (this.orderColumns && this.orderColumns.length > 0) { + this.orderColumns.forEach(function (v, idx) { + var key = '$$$' + idx; + if (v instanceof yy.Column && query.xcolumns[v.columnid]) { + s += "r['" + key + "']=r['" + v.columnid + "'];"; + } else if (v instanceof yy.ParamValue && query.xcolumns[params[v.param]]) { + s += "r['" + key + "']=r['" + params[v.param] + "'];"; + } else { + s += "r['" + key + "']=" + v.toJS('p', query.defaultTableid, query.defcols) + ';'; + } + query.removeKeys.push(key); + }); + } + return new Function('p,params,alasql', 'var y;' + s + 'return r'); + }; + + yy.Select.prototype.compileSelectGroup0 = function (query) { + var self = this; + self.columns.forEach(function (col, idx) { + if (!(col instanceof yy.Column && col.columnid === '*')) { + var colas; + // = col.as; + if (col instanceof yy.Column) { + colas = escapeq(col.columnid); + } else { + colas = escapeq(col.toString(true)); + // console.log(273,colas); + } + for (var i = 0; i < idx; i++) { + if (colas === self.columns[i].nick) { + colas = self.columns[i].nick + ':' + idx; + break; + } + } + // } + col.nick = colas; + + if (self.group) { + var groupIdx = self.group.findIndex(function (gp) { + return gp.columnid === col.columnid && gp.tableid === col.tableid; + }); + if (groupIdx > -1) { + self.group[groupIdx].nick = colas; + } + } + + if ( + col.funcid && + (col.funcid.toUpperCase() === 'ROWNUM' || col.funcid.toUpperCase() === 'ROW_NUMBER') + ) { + query.rownums.push(col.as); + } + // console.log("colas:",colas); + // } + } else { + query.groupStar = col.tableid || 'default'; + } + }); + + this.columns.forEach(function (col) { + if (col.findAggregator) { + col.findAggregator(query); + } + }); + + if (this.having) { + if (this.having.findAggregator) { + this.having.findAggregator(query); + } + } + }; + + yy.Select.prototype.compileSelectGroup1 = function (query) { + var self = this; + var s = 'var r = {};'; + + self.columns.forEach(function (col) { + // console.log(col); + if (col instanceof yy.Column && col.columnid === '*') { + // s += 'for(var k in g){r[k]=g[k]};'; + // s += 'for(var k in this.query.groupColumns){r[k]=g[this.query.groupColumns[k]]};'; + + s += 'for(var k in g) {r[k]=g[k]};'; + return ''; + + // console.log(query); + } else { + // var colas = col.as; + var colas = col.as; + if (colas === undefined) { + if (col instanceof yy.Column) { + colas = escapeq(col.columnid); + } else { + colas = col.nick; + } + } + query.groupColumns[colas] = col.nick; + + /*/* if(typeof colas == 'undefined') { + if(col instanceof yy.Column) { + colas = col.columnid; + } else { + colas = col.toString(); + for(var i=0;i 0) { + this.orderColumns.forEach(function (v, idx) { + // console.log(411,v); + var key = '$$$' + idx; + // console.log(427,v,query.groupColumns,query.xgroupColumns); + if (v instanceof yy.Column && query.groupColumns[v.columnid]) { + s += "r['" + key + "']=r['" + v.columnid + "'];"; + } else { + s += "r['" + key + "']=" + v.toJS('g', '') + ';'; + } + query.removeKeys.push(key); + }); + } + //console.log(425,s); + // console.log('selectg:',s); + return new Function('g,params,alasql', 'var y;' + s + 'return r'); + }; + + // SELECY * REMOVE [COLUMNS] col-list, LIKE '' + yy.Select.prototype.compileRemoveColumns = function (query) { + var self = this; + if (typeof this.removecolumns !== 'undefined') { + query.removeKeys = query.removeKeys.concat( + this.removecolumns + .filter(function (column) { + return typeof column.like === 'undefined'; + }) + .map(function (column) { + return column.columnid; + }) + ); + + //console.log(query.removeKeys,this.removecolumns); + query.removeLikeKeys = this.removecolumns + .filter(function (column) { + return typeof column.like !== 'undefined'; + }) + .map(function (column) { + // return new RegExp((column.like.value||'').replace(/\%/g,'.*').replace(/\?|_/g,'.'),'g'); + return column.like.value; + }); + } + }; + /* global yy */ + + yy.Select.prototype.compileHaving = function (query) { + if (this.having) { + var s = this.having.toJS('g', -1); + query.havingfns = s; + // console.log(s); + return new Function('g,params,alasql', 'var y;return ' + s); + } + + return function () { + return true; + }; + }; + yy.Select.prototype.compileOrder = function (query, params) { + var self = this; + self.orderColumns = []; + if (this.order) { + // console.log(990, this.order); + if ( + this.order && + this.order.length == 1 && + this.order[0].expression && + typeof this.order[0].expression == 'function' + ) { + // console.log(991, this.order[0]); + var func = this.order[0].expression; + // console.log(994, func); + var nullsOrder = + this.order[0].nullsOrder == 'FIRST' ? -1 : this.order[0].nullsOrder == 'LAST' ? +1 : 0; + return function (a, b) { + var ra = func(a), + rb = func(b); + if (nullsOrder) { + if (ra == null) return rb == null ? 0 : nullsOrder; + if (rb == null) return -nullsOrder; + } + if (ra > rb) return 1; + if (ra == rb) return 0; + return -1; + }; + } + + var s = ''; + var sk = ''; + this.order.forEach(function (ord, idx) { + // console.log(ord instanceof yy.Expression); + // console.log(ord.toJS('a','')); + // console.log(ord.expression instanceof yy.Column); + + if (ord.expression instanceof yy.NumValue) { + if (ord.expression.value > self.columns.length) { + throw new Error( + `You are trying to order by column number ${ord.expression.value} but you have only selected ${self.columns.length} columns.` + ); + } + var v = self.columns[ord.expression.value - 1]; + } else { + var v = ord.expression; + } + self.orderColumns.push(v); + + var key = '$$$' + idx; + + // Date conversion + var dg = ''; + //if(alasql.options.valueof) + if (ord.expression instanceof yy.Column) { + var columnid = ord.expression.columnid; + if (alasql.options.valueof) { + dg = '.valueOf()'; + } else if (query.xcolumns[columnid]) { + var dbtypeid = query.xcolumns[columnid].dbtypeid; + if ( + dbtypeid == 'DATE' || + dbtypeid == 'DATETIME' || + dbtypeid == 'DATETIME2' || + dbtypeid == 'STRING' || + dbtypeid == 'NUMBER' + ) + dg = '.valueOf()'; + // TODO Add other types mapping + } + } + if (ord.expression instanceof yy.ParamValue) { + var columnid = params[ord.expression.param]; + if (alasql.options.valueof) { + dg = '.valueOf()'; + } else if (query.xcolumns[columnid]) { + var dbtypeid = query.xcolumns[columnid].dbtypeid; + if ( + dbtypeid == 'DATE' || + dbtypeid == 'DATETIME' || + dbtypeid == 'DATETIME2' || + dbtypeid == 'STRING' || + dbtypeid == 'NUMBER' + ) + dg = '.valueOf()'; + // TODO Add other types mapping + } + } + // COLLATE NOCASE + if (ord.nocase) dg += '.toUpperCase()'; + + if (ord.nullsOrder) { + if (ord.nullsOrder == 'FIRST') { + s += "if((a['" + key + "'] != null) && (b['" + key + "'] == null)) return 1;"; + } else if (ord.nullsOrder == 'LAST') { + s += "if((a['" + key + "'] == null) && (b['" + key + "'] != null)) return 1;"; + } + s += "if((a['" + key + "'] == null) == (b['" + key + "'] == null)) {"; + sk += '}'; + } + + s += + "if((a['" + + key + + "']||'')" + + dg + + (ord.direction == 'ASC' ? '>' : '<') + + "(b['" + + key + + "']||'')" + + dg + + ')return 1;'; + s += "if((a['" + key + "']||'')" + dg + "==(b['" + key + "']||'')" + dg + '){'; + //console.log(37,s); + + /* +if(false) { +//console.log(ord.expression, ord.expression instanceof yy.NumValue); + if(ord.expression instanceof yy.NumValue) { + ord.expression = self.columns[ord.expression.value-1]; +//console.log(ord.expression); + ord.expression = new yy.Column({columnid:ord.expression.nick}); + }; + + if(ord.expression instanceof yy.Column) { + var columnid = ord.expression.columnid; + if(query.xcolumns[columnid]) { + var dbtypeid = query.xcolumns[columnid].dbtypeid; + if( dbtypeid == 'DATE' || dbtypeid == 'DATETIME' || dbtypeid == 'DATETIME2') dg = '.valueOf()'; + // TODO Add other types mapping + } else { + if(alasql.options.valueof) dg = '.valueOf()'; // TODO Check + } + // COLLATE NOCASE + if(ord.nocase) dg += '.toUpperCase()'; + + s += 'if((a[\''+columnid+"']||'')"+dg+(ord.direction == 'ASC'?'>':'<')+'(b[\''+columnid+"']||'')"+dg+')return 1;'; + s += 'if((a[\''+columnid+"']||'')"+dg+'==(b[\''+columnid+"']||'')"+dg+'){'; + + } else { + dg = '.valueOf()'; + // COLLATE NOCASE + if(ord.nocase) dg += '.toUpperCase()'; + s += 'if(('+ord.toJS('a','')+"||'')"+dg+(ord.direction == 'ASC'?'>(':'<(')+ord.toJS('b','')+"||'')"+dg+')return 1;'; + s += 'if(('+ord.toJS('a','')+"||'')"+dg+'==('+ord.toJS('b','')+"||'')"+dg+'){'; + } + +// if(columnid == '_') { +// s += 'if(a'+dg+(ord.direction == 'ASC'?'>':'<')+'b'+dg+')return 1;'; +// s += 'if(a'+dg+'==b'+dg+'){'; +// } else { + // TODO Add date comparision +// // s += 'if(a[\''+columnid+"']"+dg+(ord.direction == 'ASC'?'>':'<')+'b[\''+columnid+"']"+dg+')return 1;'; +// // s += 'if(a[\''+columnid+"']"+dg+'==b[\''+columnid+"']"+dg+'){'; +// } + +} +*/ + sk += '}'; + }); + s += 'return 0;'; + s += sk + 'return -1'; + query.orderfns = s; + //console.log('ORDERBY',s); + return new Function('a,b', 'var y;' + s); + } + }; + // Pivot functions + /** + Compile Pivot functions + @param {object} query Source query + @return {function} Pivoting functions +*/ + yy.Select.prototype.compilePivot = function (query) { + var self = this; + /** @type {string} Main pivoting column */ + + var columnid = self.pivot.columnid; + var aggr = self.pivot.expr.aggregatorid; + var inlist = self.pivot.inlist; + + var exprcolid = null; + + if (self.pivot.expr.expression.hasOwnProperty('columnid')) { + exprcolid = self.pivot.expr.expression.columnid; + } else { + exprcolid = self.pivot.expr.expression.expression.columnid; + } + + if (null == exprcolid) { + throw 'columnid not found'; + } + + if (inlist) { + inlist = inlist.map(function (l) { + return l.expr.columnid; + }); + } + + // Function for PIVOT post production + return function () { + var query = this; + var cols = query.columns + .filter(function (col) { + return col.columnid != columnid && col.columnid != exprcolid; + }) + .map(function (col) { + return col.columnid; + }); + + var newcols = []; + var gnewcols = {}; + var gr = {}; + var ga = {}; + var data = []; + query.data.forEach(function (d) { + if (!inlist || inlist.indexOf(d[columnid]) > -1) { + var gx = cols + .map(function (colid) { + return d[colid]; + }) + .join('`'); + var g = gr[gx]; + if (!g) { + g = {}; + gr[gx] = g; + data.push(g); + cols.forEach(function (colid) { + g[colid] = d[colid]; + }); + } + + if (!ga[gx]) { + ga[gx] = {}; + } + + if (ga[gx][d[columnid]]) { + ga[gx][d[columnid]]++; + } else { + ga[gx][d[columnid]] = 1; + } + + if (!gnewcols[d[columnid]]) { + gnewcols[d[columnid]] = true; + newcols.push(d[columnid]); + } + + if (aggr == 'SUM' || aggr == 'AVG' || aggr == 'TOTAL') { + if (typeof g[d[columnid]] == 'undefined') g[d[columnid]] = 0; + g[d[columnid]] += +d[exprcolid]; + } else if (aggr == 'COUNT') { + if (typeof g[d[columnid]] == 'undefined') g[d[columnid]] = 0; + g[d[columnid]]++; + } else if (aggr == 'MIN') { + if (typeof g[d[columnid]] == 'undefined') g[d[columnid]] = d[exprcolid]; + if (d[exprcolid] < g[d[columnid]]) g[d[columnid]] = d[exprcolid]; + } else if (aggr == 'MAX') { + if (typeof g[d[columnid]] == 'undefined') g[d[columnid]] = d[exprcolid]; + if (d[exprcolid] > g[d[columnid]]) g[d[columnid]] = d[exprcolid]; + } else if (aggr == 'FIRST') { + if (typeof g[d[columnid]] == 'undefined') g[d[columnid]] = d[exprcolid]; + } else if (aggr == 'LAST') { + g[d[columnid]] = d[exprcolid]; + } else if (alasql.aggr[aggr]) { + // Custom aggregator + alasql.aggr[aggr](g[d[columnid]], d[exprcolid]); + } else { + throw new Error('Wrong aggregator in PIVOT clause'); + } + } + }); + + if (aggr == 'AVG') { + for (var gx in gr) { + var d = gr[gx]; + for (var colid in d) { + if (cols.indexOf(colid) == -1 && colid != exprcolid) { + d[colid] = d[colid] / ga[gx][colid]; + } + } + } + } + + // console.log(query.columns,newcols); + // columns + query.data = data; + + if (inlist) newcols = inlist; + + var ncol = query.columns.filter(function (col) { + return col.columnid == exprcolid; + })[0]; + query.columns = query.columns.filter(function (col) { + return !(col.columnid == columnid || col.columnid == exprcolid); + }); + newcols.forEach(function (colid) { + var nc = cloneDeep(ncol); + nc.columnid = colid; + query.columns.push(nc); + }); + }; + }; + + // var columnid = this.pivot.columnid; + + // return function(data){ + // * @type {object} Collection of grouped records + // var gx = {}; + // /** @type {array} Array of grouped records */ + // var gr = []; + + // if(false) { + // for(var i=0,ilen=data.length;i-1){z=r[\''+columnid+'\'];'; + // s += 'g[z] = (g[z]||0)+1;'; + // s += '}'; + // console.log(this.pivot.expr.toJS()); + // console.log(this.pivot); + // console.log(s); + // var gfn = new Function('g,r,params,alasql','var y;'+s); + + // return function(data){ + // var g = {}, gr = []; + // for(var i=0,ilen=data.length;i { + const rr = []; + let mask = 0; + const glen = a.length; + + for (let g = 0; g < glen + 1; g++) { + const ss = []; + for (let i = 0; i < glen; i++) { + let aaa; + if (a[i] instanceof yy.Column) { + a[i].nick = escapeq(a[i].columnid); + query.groupColumns[escapeq(a[i].columnid)] = a[i].nick; + aaa = `${a[i].nick}\t${a[i].toJS('p', query.sources[0].alias, query.defcols)}`; + } else { + query.groupColumns[escapeq(a[i].toString())] = escapeq(a[i].toString()); + aaa = `${escapeq(a[i].toString())}\t${a[i].toJS('p', query.sources[0].alias, query.defcols)}`; + } + + if (mask & (1 << i)) ss.push(aaa); + } + rr.push(ss); + mask = (mask << 1) + 1; + } + return rr; + }; + + /** + Calculate CUBE() + */ + const cube = (a, query) => { + const rr = []; + const glen = a.length; + const glenCube = 1 << glen; + + for (let g = 0; g < glenCube; g++) { + let ss = []; + for (let i = 0; i < glen; i++) { + if (g & (1 << i)) { + ss = ss.concat(decartes(a[i], query)); + } + } + rr.push(ss); + } + return rr; + }; + + /** + * GROUPING SETS() + */ + const groupingsets = (a, query) => + a.reduce((acc, d) => { + acc = acc.concat(decartes(d, query)); + return acc; + }, []); + + /** + * Cartesian production + */ + const cartes = (a1, a2) => { + const rrr = []; + for (let i1 = 0; i1 < a1.length; i1++) { + for (let i2 = 0; i2 < a2.length; i2++) { + rrr.push(a1[i1].concat(a2[i2])); + } + } + return rrr; + }; + + /** + Prepare groups function + */ function decartes(gv, query) { + if (Array.isArray(gv)) { + let res = [[]]; + for (let t = 0; t < gv.length; t++) { + if (gv[t] instanceof yy.Column) { + gv[t].nick = gv[t].nick ? escapeq(gv[t].nick) : escapeq(gv[t].columnid); + query.groupColumns[gv[t].nick] = gv[t].nick; + res = res.map(r => + r.concat(`${gv[t].nick}\t${gv[t].toJS('p', query.sources[0].alias, query.defcols)}`) + ); + } else if (gv[t] instanceof yy.FuncValue) { + query.groupColumns[escapeq(gv[t].toString())] = escapeq(gv[t].toString()); + res = res.map(r => + r.concat( + `${escapeq(gv[t].toString())}\t${gv[t].toJS('p', query.sources[0].alias, query.defcols)}` + ) + ); + } else if (gv[t] instanceof yy.GroupExpression) { + if (gv[t].type == 'ROLLUP') res = cartes(res, rollup(gv[t].group, query)); + else if (gv[t].type == 'CUBE') res = cartes(res, cube(gv[t].group, query)); + else if (gv[t].type == 'GROUPING SETS') + res = cartes(res, groupingsets(gv[t].group, query)); + else throw new Error('Unknown grouping function'); + } else if (gv[t] === '') { + res = [['1\t1']]; + } else { + res = res.map(r => + r.concat( + `${escapeq(gv[t].toString())}\t${gv[t].toJS('p', query.sources[0].alias, query.defcols)}` + ) + ); + } + } + return res; + } + + if (gv instanceof yy.FuncValue) { + query.groupColumns[escapeq(gv.toString())] = escapeq(gv.toString()); + return [`${gv.toString()}\t${gv.toJS('p', query.sources[0].alias, query.defcols)}`]; + } + + if (gv instanceof yy.Column) { + gv.nick = escapeq(gv.columnid); + query.groupColumns[gv.nick] = gv.nick; + return [`${gv.nick}\t${gv.toJS('p', query.sources[0].alias, query.defcols)}`]; + } + + query.groupColumns[escapeq(gv.toString())] = escapeq(gv.toString()); + return [`${escapeq(gv.toString())}\t${gv.toJS('p', query.sources[0].alias, query.defcols)}`]; + } + /* +// +// Select run-time part for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.Select.prototype.compileDefCols = function (query, databaseid) { + // console.log('defcols'); + var defcols = {'.': {}}; + if (this.from) { + this.from.forEach(function (fr) { + defcols['.'][fr.as || fr.tableid] = true; + if (fr instanceof yy.Table) { + var alias = fr.as || fr.tableid; + // console.log(alasql.databases[fr.databaseid || databaseid]); + // console.log(alasql.databases[fr.databaseid || databaseid].tables, fr.tableid); + //console.log(alasql.databases[fr.databaseid || databaseid].tables, fr.tableid); + //console.log(alasql.databases); + var table = alasql.databases[fr.databaseid || databaseid].tables[fr.tableid]; + //console.log(table); + + if (undefined === table) { + throw new Error('Table does not exist: ' + fr.tableid); + } + + if (table.columns) { + table.columns.forEach(function (col) { + if (defcols[col.columnid]) { + defcols[col.columnid] = '-'; // Ambigous + } else { + defcols[col.columnid] = alias; + } + }); + } + } else if (fr instanceof yy.Select) { + } else if (fr instanceof yy.Search) { + } else if (fr instanceof yy.ParamValue) { + } else if (fr instanceof yy.VarValue) { + } else if (fr instanceof yy.FuncValue) { + } else if (fr instanceof yy.FromData) { + } else if (fr instanceof yy.Json) { + } else if (fr.inserted) { + } else { + // console.log(fr); + throw new Error('Unknown type of FROM clause'); + } + }); + } + + if (this.joins) { + this.joins.forEach(function (jn) { + defcols['.'][jn.as || jn.table.tableid] = true; + + // console.log(jn); + if (jn.table) { + var alias = jn.as || jn.table.tableid; + var databaseId = jn.table.databaseid || databaseid; + var database = alasql.databases[databaseId]; + + if (database === undefined) { + throw new Error('Database does not exist: ' + databaseId); + } + + var table = database.tables[jn.table.tableid]; + // console.log(jn.table.tableid, jn.table.databaseid); + + if (table === undefined) { + throw new Error('Table does not exist: ' + jn.table.tableid); + } + + if (table.columns) { + table.columns.forEach(function (col) { + if (defcols[col.columnid]) { + defcols[col.columnid] = '-'; // Ambigous + } else { + defcols[col.columnid] = alias; + } + }); + } + } else if (jn.select) { + } else if (jn.param) { + } else if (jn.func) { + } else { + throw new Error('Unknown type of FROM clause'); + } + }); + } + // for(var k in defcols) { + // if(defcols[k] == '-') defcols[k] = undefined; + // } + // console.log(89,defcols); + return defcols; + }; + /* +// +// UNION for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + // SELECT UNION statement + + yy.Union = class Union { + constructor(params) { + Object.assign(this, params); + } + + toString() { + return 'UNION'; + } + + compile(tableid) { + return null; + } + }; + /* +// +// CROSS AND OUTER APPLY for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.Apply = class Apply { + constructor(params) { + Object.assign(this, params); + } + + toString() { + let s = `${this.applymode} APPLY (${this.select.toString()})`; + + if (this.as) { + s += ` AS ${this.as}`; + } + + return s; + } + }; + /* +// +// CROSS AND OUTER APPLY for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.Over = class Over { + constructor(params) { + Object.assign(this, params); + } + + toString() { + let s = 'OVER ('; + if (this.partition) { + s += `PARTITION BY ${this.partition.toString()}`; + if (this.order) s += ' '; + } + if (this.order) { + s += `ORDER BY ${this.order.toString()}`; + } + s += ')'; + return s; + } + }; + { + const assign = Object.assign; + + class ExpressionStatement { + /** @param {object} params Initial parameters */ + constructor(params) { + assign(this, params); + } + + /** + Convert AST to string + @return {string} + */ + toString() { + return this.expression.toString(); + } + + /** + Execute statement + @param {string} databaseid Database identificatro + @param {object} params Statement parameters + @param {statement-callback} cb Callback + @return {object} Result value + */ + execute(databaseid, params, cb) { + if (this.expression) { + alasql.precompile(this, databaseid, params); // Precompile queries + var exprfn = new Function( + 'params,alasql,p', + 'var y;return ' + this.expression.toJS('({})', '', null) + ).bind(this); + var res = exprfn(params, alasql); + if (cb) { + res = cb(res); + } + return res; + } + } + } + + class Expression { + constructor(params) { + assign(this, params); + } + + /** + Convert AST to string + @return {string} + */ + toString() { + var s = this.expression.toString(); + if (this.order) { + s += ' ' + this.order.toString(); + } + if (this.nocase) { + s += ' COLLATE NOCASE'; + } + if (this.direction) { + s += ' ' + this.direction; + } + return s; + } + + /** + Find aggregator in AST subtree + @param {object} query Query object + */ + findAggregator(query) { + if (this.expression.findAggregator) { + this.expression.findAggregator(query); + } + } + + /** + Convert AST to JavaScript expression + @param {string} context Context string, e.g. 'p','g', or 'x' + @param {string} tableid Default table name + @param {object} defcols Default columns dictionary + @return {string} JavaScript expression + */ + toJS(context, tableid, defcols) { + // console.log('Expression',this); + if (this.expression.reduced) { + return 'true'; + } + return this.expression.toJS(context, tableid, defcols); + } + + /** + Compile AST to JavaScript expression + @param {string} context Context string, e.g. 'p','g', or 'x' + @param {string} tableid Default table name + @param {object} defcols Default columns dictionary + @return {string} JavaScript expression + */ + compile(context, tableid, defcols) { + // console.log('Expression',this); + if (this.reduced) { + return returnTrue(); + } + return new Function('p', 'var y;return ' + this.toJS(context, tableid, defcols)); + } + } + + class JavaScript { + constructor(params) { + assign(this, params); + } + + toString() { + var s = '``' + this.value + '``'; + return s; + } + + toJS() { + return '(' + this.value + ')'; + } + + execute(databaseid, params, cb) { + var res = 1; + var expr = new Function('params,alasql,p', this.value); + expr(params, alasql); + if (cb) { + res = cb(res); + } + return res; + } + } + + class Literal { + constructor(params) { + assign(this, params); + } + + toString() { + var s = this.value; + if (this.value1) { + s = this.value1 + '.' + s; + } + // else s = tableid+'.'+s; + return s; + } + } + + class Join { + constructor(params) { + assign(this, params); + } + + toString() { + var s = ' '; + if (this.joinmode) { + s += this.joinmode + ' '; + } + s += 'JOIN ' + this.table.toString(); + return s; + } + } + + class Table { + constructor(params) { + assign(this, params); + } + + toString() { + var s = this.tableid; + // if(this.joinmode) + if (this.databaseid) { + s = this.databaseid + '.' + s; + } + return s; + } + } + + class View { + constructor(params) { + assign(this, params); + } + + toString() { + var s = this.viewid; + // if(this.joinmode) + if (this.databaseid) { + s = this.databaseid + '.' + s; + } + return s; + } + } + + const toTypeNumberOps = new Set(['-', '*', '/', '%', '^']); + const toTypeStringOps = new Set(['||']); + const toTypeBoolOps = new Set([ + 'AND', + 'OR', + 'NOT', + '=', + '==', + '===', + '!=', + '!==', + '!===', + '>', + '>=', + '<', + '<=', + 'IN', + 'NOT IN', + 'LIKE', + 'NOT LIKE', + 'REGEXP', + 'GLOB', + 'BETWEEN', + 'NOT BETWEEN', + 'IS NULL', + 'IS NOT NULL', + ]); + class Op { + constructor(params) { + assign(this, params); + } + + toString() { + const leftStr = this.left.toString(); + let s; + + if (this.op === 'IN' || this.op === 'NOT IN') { + console.log(`${leftStr} ${this.op} (${this.right.toString()})`); + return `${leftStr} ${this.op} (${this.right.toString()})`; + } + + if (this.allsome) { + return `${leftStr} ${this.op} ${this.allsome} (${this.right.toString()})`; + } + + if (this.op === '->' || this.op === '!') { + s = `${leftStr}${this.op}`; + if (typeof this.right !== 'string' && typeof this.right !== 'number') + return s + `(${this.right.toString()})`; + return s + this.right.toString(); + } + + if (this.op === 'BETWEEN' || this.op === 'NOT BETWEEN') { + return `${leftStr} ${this.op} ${this.right1.toString()} AND ${this.right2.toString()}`; + } + + return `${leftStr} ${this.op} ${this.allsome ? this.allsome + ' ' : ''}${this.right.toString()}`; + } + + findAggregator(query) { + if (this.left && this.left.findAggregator) { + this.left.findAggregator(query); + } + // Do not go in > ALL + if (this.right && this.right.findAggregator && !this.allsome) { + this.right.findAggregator(query); + } + } + + toType(tableid) { + if (toTypeNumberOps.has(this.op)) return 'number'; + + if (toTypeStringOps.has(this.op)) return 'string'; + + if (this.op === '+') { + const leftType = this.left.toType(tableid); + const rightType = this.right.toType(tableid); + + if (leftType === 'string' || rightType === 'string') { + return 'string'; + } + if (leftType === 'number' || rightType === 'number') { + return 'number'; + } + } + + if (toTypeBoolOps.has(this.op) || this.allsome) return 'boolean'; + + if (!this.op) return this.left.toType(tableid); + + return 'unknown'; + } + + toJS(context, tableid, defcols) { + var s; + let refs = []; + let op = this.op; + let _this = this; + let ref = function (expr) { + if (expr.toJS) { + expr = expr.toJS(context, tableid, defcols); + } + let i = refs.push(expr) - 1; + return 'y[' + i + ']'; + }; + var leftJS = function () { + return ref(_this.left); + }; + var rightJS = function () { + return ref(_this.right); + }; + if (this.op === '=') { + op = '==='; + } else if (this.op === '<>') { + op = '!='; + } else if (this.op === 'OR') { + op = '||'; + } else if (this.op === '->') { + // Expression to prevent error if object is empty (#344) + const ljs = `(${leftJS()} || {})`; + + if (typeof this.right === 'string') { + s = `${ljs}["${escapeq(this.right)}"]`; + } else if (typeof this.right === 'number') { + s = `${ljs}[${this.right}]`; + } else if (this.right instanceof yy.FuncValue) { + let ss = []; + if (this.right.args && this.right.args.length > 0) { + ss = this.right.args.map(ref); + } + s = `${ljs}[${JSON.stringify(this.right.funcid)}](${ss.join(',')})`; + } else { + s = `${ljs}[${rightJS()}]`; + } + } else if (this.op === '!') { + if (typeof this.right === 'string') { + s = `alasql.databases[alasql.useid].objects[${leftJS()}]["${this.right}"]`; + } + // TODO - add other cases + } else if (this.op === 'IS') { + const leftOperand = leftJS(); + const rightOperand = rightJS(); + if ( + this.right instanceof yy.NullValue || + (this.right.op === 'NOT' && this.right.right instanceof yy.NullValue) + ) { + s = `((${leftOperand} == null) === (${rightOperand} == null))`; // == null can't be === + } else { + s = `((${leftOperand} == ${rightOperand}) || (${leftOperand} < 0 && true == ${rightOperand}))`; + } + } else if (this.op === '==') { + s = `alasql.utils.deepEqual(${leftJS()}, ${rightJS()})`; + } else if (this.op === '===' || this.op === '!===') { + s = `(${this.op === '!===' ? '!' : ''}((${leftJS()}).valueOf() === (${rightJS()}).valueOf()))`; + } else if (this.op === '!==') { + s = `(!alasql.utils.deepEqual(${leftJS()}, ${rightJS()}))`; + } else if (this.op === '||') { + s = `(''+(${leftJS()} || '') + (${rightJS()} || ''))`; + } else if (this.op === 'LIKE' || this.op === 'NOT LIKE') { + s = `(${this.op === 'NOT LIKE' ? '!' : ''}alasql.utils.like(${rightJS()}, ${leftJS()}${this.escape ? `, ${ref(this.escape)}` : ''}))`; + } else if (this.op === 'REGEXP') { + s = `alasql.stdfn.REGEXP_LIKE(${leftJS()}, ${rightJS()})`; + } else if (this.op === 'GLOB') { + s = `alasql.utils.glob(${leftJS()}, ${rightJS()})`; + } else if (this.op === 'BETWEEN' || this.op === 'NOT BETWEEN') { + const left = leftJS(); + s = `(${this.op === 'NOT BETWEEN' ? '!' : ''}((${ref(this.right1)} <= ${left}) && (${left} <= ${ref(this.right2)})))`; + } else if (this.op === 'IN') { + if (this.right instanceof yy.Select) { + s = `alasql.utils.flatStrArray(this.queriesfn[${this.queriesidx}](params, null, ${context})).indexOf(alasql.utils.getStrValueOf(${leftJS()})) > -1`; + } else if (Array.isArray(this.right)) { + if (!alasql.options.cache || this.right.some(value => value instanceof yy.ParamValue)) { + // Leverage JS Set for faster lookups than arrays + s = `(new Set([${this.right.map(ref).join(',')}]).has(alasql.utils.getStrValueOf(${leftJS()})))`; + } else { + // Use a cache to avoid re-creating the Set on every identical query + alasql.sets = alasql.sets || {}; + const allValues = this.right.map(value => String(value.value)); + const allValuesStr = allValues.join(','); + alasql.sets[allValuesStr] = alasql.sets[allValuesStr] || new Set(allValues); + s = `alasql.sets["${allValuesStr}"].has(alasql.utils.getStrValueOf(${leftJS()}))`; + } + } else { + s = `(${rightJS()}.indexOf(${String(leftJS())}) > -1)`; + } + } else if (this.op === 'NOT IN') { + console.log('ttttt', this.right, this.left); + if (this.right instanceof yy.Select) { + s = `alasql.utils.flatStrArray(this.queriesfn[${this.queriesidx}](params, null, p)).indexOf(alasql.utils.getStrValueOf(${leftJS()})) < 0`; + } else if (Array.isArray(this.right)) { + if (!alasql.options.cache || this.right.some(value => value instanceof yy.ParamValue)) { + // Leverage JS Set for faster lookups than arrays + s = `(!(new Set([${this.right.map(ref).join(',')}]).has(alasql.utils.getStrValueOf(${leftJS()}))))`; + } else { + // Use a cache to avoid re-creating the Set on every identical query + alasql.sets = alasql.sets || {}; + const allValues = this.right.map(value => String(value.value)); + const allValuesStr = allValues.join(','); + alasql.sets[allValuesStr] = alasql.sets[allValuesStr] || new Set(allValues); + s = `!alasql.sets["${allValuesStr}"].has(alasql.utils.getStrValueOf(${leftJS()}))`; + } + } else { + s = `(${rightJS()}.indexOf(${leftJS()}) === -1)`; + } + } + + if (this.allsome === 'ALL') { + var s; + if (this.right instanceof yy.Select) { + s = + 'alasql.utils.flatArray(this.query.queriesfn[' + + this.queriesidx + + '](params,null,p))'; + + s += '.every(function(b){return ('; + s += leftJS() + ')' + op + 'b})'; + } else if (Array.isArray(this.right)) { + s = + '' + + (this.right.length == 1 + ? ref(this.right[0]) + : '[' + this.right.map(ref).join(',') + ']'); + s += '.every(function(b){return ('; + s += leftJS() + ')' + op + 'b})'; + } else { + throw new Error('NOT IN operator without SELECT'); + } + } + + if (this.allsome === 'SOME' || this.allsome === 'ANY') { + var s; + if (this.right instanceof yy.Select) { + s = + 'alasql.utils.flatArray(this.query.queriesfn[' + + this.queriesidx + + '](params,null,p))'; + s += '.some(function(b){return ('; + s += leftJS() + ')' + op + 'b})'; + } else if (Array.isArray(this.right)) { + s = + '' + + (this.right.length == 1 + ? ref(this.right[0]) + : '[' + this.right.map(ref).join(',') + ']'); + s += '.some(function(b){return ('; + s += leftJS() + ')' + op + 'b})'; + } else { + throw new Error('SOME/ANY operator without SELECT'); + } + } + + // Special case for AND optimization (if reduced) + if (this.op === 'AND') { + if (this.left.reduced) { + if (this.right.reduced) { + return 'true'; + } else { + s = rightJS(); + } + } else if (this.right.reduced) { + s = leftJS(); + } + + // Otherwise process as regular operation (see below) + op = '&&'; + } + + var expr = s || '(' + leftJS() + op + rightJS() + ')'; + + var declareRefs = 'y=[(' + refs.join('), (') + ')]'; + if (op === '&&' || op === '||' || op === 'IS' || op === 'IS NULL' || op === 'IS NOT NULL') { + return '(' + declareRefs + ', ' + expr + ')'; + } + + return `(${declareRefs}, y.some(e => e == null) ? void 0 : ${expr})`; + } + } + + class VarValue { + constructor(params) { + assign(this, params); + } + + toString() { + return '@' + this.variable; + } + + toType() { + return 'unknown'; + } + + toJS() { + return "alasql.vars['" + escapeq(this.variable) + "']"; + } + } + + class NumValue { + constructor(params) { + assign(this, params); + } + + toString() { + return this.value.toString(); + } + + toType() { + return 'number'; + } + + toJS() { + return '' + this.value; + } + } + + class StringValue { + constructor(params) { + assign(this, params); + } + + toString() { + return "'" + this.value.toString() + "'"; + } + + toType() { + return 'string'; + } + + toJS() { + return "'" + escapeq(this.value) + "'"; + } + } + + class DomainValueValue { + constructor(params) { + assign(this, params); + } + + toString() { + return 'VALUE'; + } + + toType() { + return 'object'; + } + + toJS(context, tableid, defcols) { + return context; + } + } + + class ArrayValue { + constructor(params) { + assign(this, params); + } + + toString() { + return 'ARRAY[]'; + } + + toType() { + return 'object'; + } + + toJS(context, tableid, defcols) { + return ( + '[(' + + this.value + .map(function (el) { + return el.toJS(context, tableid, defcols); + }) + .join('), (') + + ')]' + ); + } + } + + class LogicValue { + constructor(params) { + assign(this, params); + } + + toString() { + return this.value ? 'TRUE' : 'FALSE'; + } + + toType() { + return 'boolean'; + } + + toJS() { + return this.value ? 'true' : 'false'; + } + } + + class NullValue { + constructor(params) { + assign(this, params); + } + + toString() { + return 'NULL'; + } + + toJS() { + return 'undefined'; + } + } + + class ParamValue { + constructor(params) { + assign(this, params); + } + + toString() { + return '$' + this.param; + } + + toJS() { + if (typeof this.param === 'string') { + return "params['" + this.param + "']"; + } + + return 'params[' + this.param + ']'; + } + } + + const toJsOpMapping = { + '~': '~', + '-': '-', + '+': '+', + NOT: '!', + }; + + class UniOp { + constructor(params) { + assign(this, params); + } + + toString() { + const {op, right} = this; + const res = right.toString(); + + switch (op) { + case '~': + case '-': + case '+': + case '#': + return op + res; + case 'NOT': + return op + '(' + res + ')'; + default: + return '(' + res + ')'; + } + } + + findAggregator(query) { + if (this.right.findAggregator) { + this.right.findAggregator(query); + } + } + + toType() { + switch (this.op) { + case '-': + case '+': + return 'number'; + case 'NOT': + return 'boolean'; + default: + return 'string'; + } + } + + toJS(context, tableid, defcols) { + if (this.right instanceof Column && this.op === '#') { + return `(alasql.databases[alasql.useid].objects['${this.right.columnid}'])`; + } + + const rightJS = this.right.toJS(context, tableid, defcols); + + if (toJsOpMapping.hasOwnProperty(this.op)) { + return `(${toJsOpMapping[this.op]}(${rightJS}))`; + } + + if (this.op == null) { + return `(${rightJS})`; + } + + throw new Error(`Unsupported operator: ${this.op}`); + } + } + + class Column { + constructor(params) { + assign(this, params); + } + + toString() { + let s = this.columnid; + + if (this.columnid == +this.columnid) { + s = '[' + this.columnid + ']'; + } + + if (this.tableid) { + s = this.tableid + (this.columnid === +this.columnid ? '' : '.') + s; + + if (this.databaseid) { + s = this.databaseid + '.' + s; + } + } + + return s; + } + + toJS(context, tableid, defcols) { + if (!this.tableid && tableid === '' && !defcols) { + return this.columnid !== '_' + ? `${context}['${this.columnid}']` + : context === 'g' + ? "g['_']" + : context; + } + + if (context === 'g') { + return `g['${this.nick}']`; + } + + if (this.tableid) { + return this.columnid !== '_' + ? `${context}['${this.tableid}']['${this.columnid}']` + : context === 'g' + ? "g['_']" + : `${context}['${this.tableid}']`; + } + + if (defcols) { + const tbid = defcols[this.columnid]; + if (tbid === '-') { + throw new Error( + `Cannot resolve column "${this.columnid}" because it exists in two source tables` + ); + } else if (tbid) { + return this.columnid !== '_' + ? `${context}['${tbid}']['${this.columnid}']` + : `${context}['${tbid}']`; + } else { + return this.columnid !== '_' + ? `${context}['${this.tableid || tableid}']['${this.columnid}']` + : `${context}['${this.tableid || tableid}']`; + } + } + + if (tableid === -1) { + return `${context}['${this.columnid}']`; + } + + return this.columnid !== '_' + ? `${context}['${this.tableid || tableid}']['${this.columnid}']` + : `${context}['${this.tableid || tableid}']`; + } + } + + class AggrValue { + constructor(params) { + assign(this, params); + } + + toString() { + const funcName = + this.aggregatorid === 'REDUCE' + ? this.funcid.replace(re_invalidFnNameChars, '') + : this.aggregatorid; + const distinctPart = this.distinct ? 'DISTINCT ' : ''; + const expressionPart = this.expression ? this.expression.toString() : ''; + const overPart = this.over ? ` ${this.over.toString()}` : ''; + + return `${funcName}(${distinctPart}${expressionPart})${overPart}`; + } + + findAggregator(query) { + const colas = escapeq(this.toString()) + ':' + query.selectGroup.length; + + if (!this.nick) { + this.nick = colas; + + if (!query.removeKeys.includes(colas)) { + query.removeKeys.push(colas); + } + } + + query.selectGroup.push(this); + } + + toType() { + if ( + ['SUM', 'COUNT', 'AVG', 'MIN', 'MAX', 'AGGR', 'VAR', 'STDDEV', 'TOTAL'].includes( + this.aggregatorid + ) + ) { + return 'number'; + } + + if (this.aggregatorid === 'ARRAY') { + return 'array'; + } + + return this.expression.toType(); + } + + toJS() { + var colas = this.nick; + if (colas === undefined) { + colas = escapeq(this.toString()); + } + return "g['" + colas + "']"; + } + } + + class OrderExpression { + constructor(params) { + assign(this, params); + } + } + + OrderExpression.prototype.toString = Expression.prototype.toString; + + class GroupExpression { + constructor(params) { + assign(this, params); + } + + toString() { + return this.type + '(' + this.group.toString() + ')'; + } + } + + assign(yy, { + AggrValue, + ArrayValue, + Column, + DomainValueValue, + Expression, + ExpressionStatement, + GroupExpression, + JavaScript, + Join, + Literal, + LogicValue, + NullValue, + NumValue, + Op, + OrderExpression, + ParamValue, + StringValue, + Table, + UniOp, + VarValue, + View, + }); + } + // Alasql Linq library + + yy.FromData = function (params) { + return yy.extend(this, params); + }; + yy.FromData.prototype.toString = function () { + if (this.data) return 'DATA(' + ((Math.random() * 10e15) | 0) + ')'; + else return '?'; + }; + yy.FromData.prototype.toJS = function () { + // console.log('yy.FromData.prototype.toJS'); + }; + + yy.Select.prototype.exec = function (params, cb) { + if (this.preparams) params = this.preparams.concat(params); + // console.log(15,this.preparams); + + var databaseid = alasql.useid; + var db = alasql.databases[databaseid]; + var sql = this.toString(); + var hh = hash(sql); + // console.log(sql); + + var statement = this.compile(databaseid); + if (!statement) return; + statement.sql = sql; + statement.dbversion = db.dbversion; + + // Secure sqlCache size + if (db.sqlCacheSize > alasql.MAXSQLCACHESIZE) { + db.resetSqlCache(); + } + db.sqlCacheSize++; + db.sqlCache[hh] = statement; + var res = (alasql.res = statement(params, cb)); + return res; + }; + + yy.Select.prototype.Select = function () { + var self = this; + var args = []; + if (arguments.length > 1) { + args = Array.prototype.slice.call(arguments); + } else if (arguments.length == 1) { + if (Array.isArray(arguments[0])) { + args = arguments[0]; + } else { + args = [arguments[0]]; + } + } else { + throw new Error('Wrong number of arguments of Select() function'); + } + + self.columns = []; + + args.forEach(function (arg) { + if (typeof arg == 'string') { + self.columns.push(new yy.Column({columnid: arg})); + } else if (typeof arg == 'function') { + var pari = 0; + if (self.preparams) { + pari = self.preparams.length; + } else { + self.preparams = []; + } + self.preparams.push(arg); + self.columns.push(new yy.Column({columnid: '*', func: arg, param: pari})); + } else { + // Unknown type + } + }); + + // console.log(self instanceof yy.Select); + return self; + }; + + yy.Select.prototype.From = function (tableid) { + var self = this; + if (!self.from) self.from = []; + if (Array.isArray(tableid)) { + var pari = 0; + if (self.preparams) { + pari = self.preparams.length; + } else { + self.preparams = []; + } + self.preparams.push(tableid); + self.from.push(new yy.ParamValue({param: pari})); + } else if (typeof tableid == 'string') { + self.from.push(new yy.Table({tableid: tableid})); + } else { + throw new Error('Unknown arguments in From() function'); + } + return self; + }; + + yy.Select.prototype.OrderBy = function () { + var self = this; + var args = []; + + self.order = []; + + if (arguments.length == 0) { + // self.order.push(new yy.OrderExpression({expression: new yy.Column({columnid:"_"}), direction:'ASC'})); + args = ['_']; + } else if (arguments.length > 1) { + args = Array.prototype.slice.call(arguments); + } else if (arguments.length == 1) { + if (Array.isArray(arguments[0])) { + args = arguments[0]; + } else { + args = [arguments[0]]; + } + } else { + throw new Error('Wrong number of arguments of Select() function'); + } + + if (args.length > 0) { + args.forEach(function (arg) { + var expr = new yy.Column({columnid: arg}); + if (typeof arg == 'function') { + expr = arg; + } + self.order.push(new yy.OrderExpression({expression: expr, direction: 'ASC'})); + }); + } + return self; + }; + + yy.Select.prototype.Top = function (topnum) { + var self = this; + self.top = new yy.NumValue({value: topnum}); + return self; + }; + + yy.Select.prototype.GroupBy = function () { + var self = this; + var args = []; + + if (arguments.length > 1) { + args = Array.prototype.slice.call(arguments); + } else if (arguments.length == 1) { + if (Array.isArray(arguments[0])) { + args = arguments[0]; + } else { + args = [arguments[0]]; + } + } else { + throw new Error('Wrong number of arguments of Select() function'); + } + + self.group = []; + + args.forEach(function (arg) { + var expr = new yy.Column({columnid: arg}); + self.group.push(expr); + }); + + return self; + }; + + yy.Select.prototype.Where = function (expr) { + var self = this; + if (typeof expr == 'function') { + self.where = expr; + } + return self; + }; + /* +// +// Functions for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.FuncValue = function (params) { + return Object.assign(this, params); + }; + + let re_invalidFnNameChars = /[^0-9A-Z_$]+/i; + yy.FuncValue.prototype.toString = function () { + let s = ''; + + if (alasql.fn[this.funcid]) s += this.funcid; + else if (alasql.aggr[this.funcid]) s += this.funcid; + else if (alasql.stdlib[this.funcid.toUpperCase()] || alasql.stdfn[this.funcid.toUpperCase()]) + s += this.funcid.toUpperCase().replace(re_invalidFnNameChars, ''); + + if (this.funcid !== 'CURRENT_TIMESTAMP') { + s += '('; + if (this.args && this.args.length > 0) { + s += this.args + .map(function (arg) { + return arg.toString(); + }) + .join(','); + } + s += ')'; + } + return s; + }; + + yy.FuncValue.prototype.execute = function (databaseid, params, cb) { + let res = 1; + alasql.precompile(this, databaseid, params); // Precompile queries + // console.log(34,this.toJS('','',null)); + let expr = new Function('params,alasql', 'var y;return ' + this.toJS('', '', null)); + expr(params, alasql); + if (cb) res = cb(res); + return res; + }; + + yy.FuncValue.prototype.findAggregator = function (query) { + if (this.args && this.args.length > 0) { + this.args.forEach(function (arg) { + if (arg.findAggregator) arg.findAggregator(query); + }); + } + }; + + yy.FuncValue.prototype.toJS = function (context, tableid, defcols) { + var s = ''; + var funcid = this.funcid; + // IF this is standard compile functions + if (!alasql.fn[funcid] && alasql.stdlib[funcid.toUpperCase()]) { + if (this.args && this.args.length > 0) { + s += alasql.stdlib[funcid.toUpperCase()].apply( + this, + this.args.map(function (arg) { + return arg.toJS(context, tableid); + }) + ); + } else { + s += alasql.stdlib[funcid.toUpperCase()](); + } + } else if (!alasql.fn[funcid] && alasql.stdfn[funcid.toUpperCase()]) { + if (this.newid) s += 'new '; + s += 'alasql.stdfn[' + JSON.stringify(this.funcid.toUpperCase()) + ']('; + if (this.args && this.args.length > 0) { + s += this.args + .map(function (arg) { + return arg.toJS(context, tableid, defcols); + }) + .join(','); + } + s += ')'; + } else { + // This is user-defined run-time function + // TODO arguments!!! + // var s = ''; + if (this.newid) s += 'new '; + s += 'alasql.fn[' + JSON.stringify(this.funcid) + ']('; + if (this.args && this.args.length > 0) { + s += this.args + .map(function (arg) { + return arg.toJS(context, tableid, defcols); + }) + .join(','); + } + s += ')'; + } + return s; + }; + /* +// +// SQL FUNCTIONS COMPILERS +// Based on SQLite functions + +// IMPORTANT: These are compiled functions + +//alasql.fn = {}; // Keep for compatibility +//alasql.userlib = alasql.fn; +*/ + + var stdlib = (alasql.stdlib = {}); + var stdfn = (alasql.stdfn = {}); + + stdlib.ABS = function (a) { + return 'Math.abs(' + a + ')'; + }; + stdlib.CLONEDEEP = function (a) { + return 'alasql.utils.cloneDeep(' + a + ')'; + }; + + stdfn.CONCAT = function () { + return Array.prototype.slice.call(arguments).join(''); + }; + stdlib.EXP = function (a) { + return 'Math.pow(Math.E,' + a + ')'; + }; + + stdlib.IIF = function (a, b, c) { + if (arguments.length === 3) { + return `((${a}) ? (${b}) : (${c}))`; + } else { + throw new Error('Number of arguments of IFF is not equals to 3'); + } + }; + stdlib.IFNULL = function (a, b) { + return `((typeof ${a} === "undefined" || ${a} === null) ? ${b} : ${a})`; + }; + stdlib.INSTR = function (s, p) { + return `((${s}).indexOf(${p}) + 1)`; + }; + + //stdlib.LEN = stdlib.LENGTH = function(s) {return '('+s+'+"").length';}; + + stdlib.LEN = stdlib.LENGTH = function (s) { + return und(s, 'y.length'); + }; + //stdlib.LENGTH = function(s) {return '('+s+').length'}; + + stdlib.LOWER = stdlib.LCASE = function (s) { + return und(s, 'String(y).toLowerCase()'); + }; + //stdlib.LCASE = function(s) {return '('+s+').toLowerCase()';} + + // Returns a character expression after it removes leading blanks. + // see https://docs.microsoft.com/en-us/sql/t-sql/functions/ltrim-transact-sql + stdlib.LTRIM = function (s) { + return und(s, 'y.replace(/^[ ]+/,"")'); + }; + + // Returns a character string after truncating all trailing spaces. + // see https://docs.microsoft.com/en-us/sql/t-sql/functions/rtrim-transact-sql + stdlib.RTRIM = function (s) { + return und(s, 'y.replace(/[ ]+$/,"")'); + }; + + stdlib.MAX = stdlib.GREATEST = function () { + return ( + '[' + + Array.prototype.join.call(arguments, ',') + + '].reduce(function (a, b) { return a > b ? a : b; })' + ); + }; + + stdlib.MIN = stdlib.LEAST = function () { + return ( + '[' + + Array.prototype.join.call(arguments, ',') + + '].reduce(function (a, b) { return a < b ? a : b; })' + ); + }; + + stdlib.SUBSTRING = + stdlib.SUBSTR = + stdlib.MID = + function (a, b, c) { + if (arguments.length == 2) return und(a, 'y.substr(' + b + '-1)'); + else if (arguments.length == 3) return und(a, 'y.substr(' + b + '-1,' + c + ')'); + }; + + stdfn.REGEXP_LIKE = function (a, b, c) { + // console.log(a,b,c); + return (a || '').search(RegExp(b, c)) > -1; + }; + + // Here we uses undefined instead of null + stdlib.ISNULL = stdlib.NULLIF = function (a, b) { + return '(' + a + '==' + b + '?undefined:' + a + ')'; + }; + + stdlib.POWER = function (a, b) { + return 'Math.pow(' + a + ',' + b + ')'; + }; + + stdlib.RANDOM = function (r) { + if (arguments.length == 0) { + return 'Math.random()'; + } else { + return '(Math.random()*(' + r + ')|0)'; + } + }; + stdlib.ROUND = function (s, d) { + if (arguments.length == 2) { + return 'Math.round((' + s + ')*Math.pow(10,(' + d + ')))/Math.pow(10,(' + d + '))'; + } else { + return 'Math.round(' + s + ')'; + } + }; + stdlib.CEIL = stdlib.CEILING = function (s) { + return 'Math.ceil(' + s + ')'; + }; + stdlib.FLOOR = function (s) { + return 'Math.floor(' + s + ')'; + }; + + stdlib.ROWNUM = function () { + return '1'; + }; + stdlib.ROW_NUMBER = function () { + return '1'; + }; + + stdlib.SQRT = function (s) { + return 'Math.sqrt(' + s + ')'; + }; + + stdlib.TRIM = function (s) { + return und(s, 'y.trim()'); + }; + + stdlib.UPPER = stdlib.UCASE = function (s) { + return und(s, 'String(y).toUpperCase()'); + }; + + // Concatination of strings + stdfn.CONCAT_WS = function () { + var args = Array.prototype.slice.call(arguments); + args = args.filter(x => !(x === null || typeof x === 'undefined')); + return args.slice(1, args.length).join(args[0] || ''); + }; + + //stdlib.UCASE = function(s) {return '('+s+').toUpperCase()';} + //REPLACE + // RTRIM + // SUBSTR + // TRIM + //REPLACE + // RTRIM + // SUBSTR + // TRIM + + // Aggregator for joining strings + alasql.aggr.group_concat = alasql.aggr.GROUP_CONCAT = function (v, s, stage) { + if (stage === 1) { + return '' + v; + } else if (stage === 2) { + s += ',' + v; + return s; + } + return s; + }; + + alasql.aggr.median = alasql.aggr.MEDIAN = function (v, s, stage) { + if (stage === 2) { + if (v !== null) { + s.push(v); + } + return s; + } + + if (stage === 1) { + if (v === null) { + return []; + } + return [v]; + } + + if (!s.length) { + return null; + } + + let r = s.sort((a, b) => { + if (a > b) return 1; + if (a < b) return -1; + return 0; + }); + + let middle = (r.length + 1) / 2; + let middleFloor = middle | 0; + let el = r[middleFloor - 1]; + + if (middle === middleFloor || (typeof el !== 'number' && !(el instanceof Number))) { + return el; + } else { + return (el + r[middleFloor]) / 2; + } + }; + + alasql.aggr.QUART = function (v, s, stage, nth) { + //Quartile (first quartile per default or input param) + if (stage === 2) { + if (v !== null) { + s.push(v); + } + return s; + } + + if (stage === 1) { + if (v === null) { + return []; + } + return [v]; + } + if (!s.length) { + return s; + } + + nth = !nth ? 1 : nth; + var r = s.sort(function (a, b) { + if (a === b) return 0; + + if (a > b) return 1; + + return -1; + }); + + let p = (nth * (r.length + 1)) / 4; + + if (Number.isInteger(p)) { + return r[p - 1]; //Integer value + } + + return r[Math.floor(p)]; //Math.ceil -1 or Math.floor + }; + + alasql.aggr.QUART2 = function (v, s, stage) { + //Second Quartile + return alasql.aggr.QUART(v, s, stage, 2); + }; + alasql.aggr.QUART3 = function (v, s, stage) { + //Third Quartile + return alasql.aggr.QUART(v, s, stage, 3); + }; + + // Standard deviation + alasql.aggr.VAR = function (v, s, stage) { + if (stage === 1) { + // Initialise sum, sum of squares, and count + return v === null ? {sum: 0, sumSq: 0, count: 0} : {sum: v, sumSq: v * v, count: 1}; + } else if (stage === 2) { + // Update sum, sum of squares, and count + if (v !== null) { + s.sum += v; + s.sumSq += v * v; + s.count++; + } + return s; + } else { + // Calculate variance using the formula: variance = (sumSq - (sum^2 / count)) / (count - 1) + // This avoids the need to store and iterate over all values + if (s.count > 1) { + return (s.sumSq - (s.sum * s.sum) / s.count) / (s.count - 1); + } else { + // Handling for cases with less than 2 values (variance is undefined or zero) + return 0; + } + } + }; + + alasql.aggr.STDEV = function (v, s, stage) { + if (stage === 1 || stage === 2) { + return alasql.aggr.VAR(v, s, stage); + } else { + return Math.sqrt(alasql.aggr.VAR(v, s, stage)); + } + }; + + alasql.aggr.STDEV = function (v, s, stage) { + if (stage === 1 || stage === 2) { + return alasql.aggr.VAR(v, s, stage); + } else { + return Math.sqrt(alasql.aggr.VAR(v, s, stage)); + } + }; + + alasql.aggr.VARP = function (value, accumulator, stage) { + if (stage === 1) { + // Initialise accumulator with count, sum, and sum of squares + return {count: 1, sum: value, sumSq: value * value}; + } else if (stage === 2) { + // Update accumulator + accumulator.count++; + accumulator.sum += value; + accumulator.sumSq += value * value; + return accumulator; + } else { + // Final stage: Calculate variance + if (accumulator.count > 0) { + const mean = accumulator.sum / accumulator.count; + const variance = accumulator.sumSq / accumulator.count - mean * mean; + return variance; + } else { + return 0; // Return 0 variance if no values were aggregated + } + } + }; + + alasql.aggr.STD = + alasql.aggr.STDDEV = + alasql.aggr.STDEVP = + function (v, s, stage) { + if (stage == 1 || stage == 2) { + return alasql.aggr.VARP(v, s, stage); + } else { + return Math.sqrt(alasql.aggr.VARP(v, s, stage)); + } + }; + + alasql._aggrOriginal = alasql.aggr; + alasql.aggr = {}; + Object.keys(alasql._aggrOriginal).forEach(function (k) { + alasql.aggr[k] = function (v, s, stage) { + if (stage === 3 && typeof s === 'undefined') return undefined; + return alasql._aggrOriginal[k].apply(null, arguments); + }; + }); + + // String functions + stdfn.REPLACE = function (target, pattern, replacement) { + return (target || '').split(pattern).join(replacement); + }; + + // This array is required for fast GUID generation + var lut = []; + for (var i = 0; i < 256; i++) { + lut[i] = (i < 16 ? '0' : '') + i.toString(16); + } + + stdfn.NEWID = + stdfn.UUID = + stdfn.GEN_RANDOM_UUID = + function () { + var d0 = (Math.random() * 0xffffffff) | 0; + var d1 = (Math.random() * 0xffffffff) | 0; + var d2 = (Math.random() * 0xffffffff) | 0; + var d3 = (Math.random() * 0xffffffff) | 0; + return ( + lut[d0 & 0xff] + + lut[(d0 >> 8) & 0xff] + + lut[(d0 >> 16) & 0xff] + + lut[(d0 >> 24) & 0xff] + + '-' + + lut[d1 & 0xff] + + lut[(d1 >> 8) & 0xff] + + '-' + + lut[((d1 >> 16) & 0x0f) | 0x40] + + lut[(d1 >> 24) & 0xff] + + '-' + + lut[(d2 & 0x3f) | 0x80] + + lut[(d2 >> 8) & 0xff] + + '-' + + lut[(d2 >> 16) & 0xff] + + lut[(d2 >> 24) & 0xff] + + lut[d3 & 0xff] + + lut[(d3 >> 8) & 0xff] + + lut[(d3 >> 16) & 0xff] + + lut[(d3 >> 24) & 0xff] + ); + }; + /* +// +// CASE for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.CaseValue = function (params) { + return Object.assign(this, params); + }; + yy.CaseValue.prototype.toString = function () { + var s = 'CASE '; + if (this.expression) s += this.expression.toString(); + if (this.whens) { + s += this.whens + .map(function (w) { + return ' WHEN ' + w.when.toString() + ' THEN ' + w.then.toString(); + }) + .join(); + } + s += ' END'; + return s; + }; + + yy.CaseValue.prototype.findAggregator = function (query) { + // console.log(this.toString()); + if (this.expression && this.expression.findAggregator) this.expression.findAggregator(query); + if (this.whens && this.whens.length > 0) { + this.whens.forEach(function (w) { + if (w.when.findAggregator) w.when.findAggregator(query); + if (w.then.findAggregator) w.then.findAggregator(query); + }); + } + if (this.elses && this.elses.findAggregator) this.elses.findAggregator(query); + }; + + yy.CaseValue.prototype.toJS = function (context, tableid, defcols) { + let s = `(((${context}, params, alasql) => { + let y, r;`; + + if (this.expression) { + // If there's an expression, evaluate it and store in `v`, then compare in `when` clauses + s += `let v = ${this.expression.toJS(context, tableid, defcols)};`; + this.whens.forEach((w, index) => { + const condition = `v === ${w.when.toJS(context, tableid, defcols)}`; + const assignment = `r = ${w.then.toJS(context, tableid, defcols)}`; + s += `${index === 0 ? 'if' : ' else if'} (${condition}) { ${assignment}; }`; + }); + } else { + // Directly evaluate `when` conditions without an initial expression + this.whens.forEach((w, index) => { + const condition = w.when.toJS(context, tableid, defcols); + const assignment = `r = ${w.then.toJS(context, tableid, defcols)}`; + s += `${index === 0 ? 'if' : ' else if'} (${condition}) { ${assignment}; }`; + }); + } + + // Handle the `else` case + if (this.elses) { + s += ` else { r = ${this.elses.toJS(context, tableid, defcols)}; }`; + } + + s += '; return r; }))(' + context + ', params, alasql)'; + + return s; + }; + /* +// +// JSON for Alasql.js +// Date: 19.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.Json = function (params) { + return Object.assign(this, params); + }; + yy.Json.prototype.toString = function () { + var s = ''; // '@' + s += JSONtoString(this.value); + s += ''; + return s; + }; + + const JSONtoString = (alasql.utils.JSONtoString = function (obj) { + if (typeof obj === 'string') return `"${obj}"`; + if (typeof obj === 'number' || typeof obj === 'boolean') return String(obj); + + if (Array.isArray(obj)) { + return `[${obj.map(b => JSONtoString(b)).join(',')}]`; + } + + if (typeof obj === 'object') { + if (!obj.toJS || obj instanceof yy.Json) { + const ss = []; + for (const k in obj) { + const keyStr = typeof k === 'string' ? `"${k}"` : String(k); + const valueStr = JSONtoString(obj[k]); + ss.push(`${keyStr}:${valueStr}`); + } + return `{${ss.join(',')}}`; + } else if (obj.toString) { + return obj.toString(); + } else { + throw new Error(`1: Cannot show JSON object ${JSON.stringify(obj)}`); + } + } else { + throw new Error(`2: Cannot show JSON object ${JSON.stringify(obj)}`); + } + }); + + function JSONtoJS(obj, context, tableid, defcols) { + var s = ''; + if (typeof obj == 'string') s = '"' + obj + '"'; + else if (typeof obj == 'number') s = '(' + obj + ')'; + else if (typeof obj == 'boolean') s = obj; + else if (typeof obj === 'object') { + if (Array.isArray(obj)) { + s += `[${obj.map(b => JSONtoJS(b, context, tableid, defcols)).join(',')}]`; + } else if (!obj.toJS || obj instanceof yy.Json) { + let ss = []; + for (const k in obj) { + let keyStr = typeof k === 'string' ? `"${k}"` : k.toString(); + let valueStr = JSONtoJS(obj[k], context, tableid, defcols); + ss.push(`${keyStr}:${valueStr}`); + } + s = `{${ss.join(',')}}`; + } else if (obj.toJS) { + s = obj.toJS(context, tableid, defcols); + } else { + throw new Error(`Cannot parse JSON object ${JSON.stringify(obj)}`); + } + } else { + throw new Error('2Can not parse JSON object ' + JSON.stringify(obj)); + } + + return s; + } + + yy.Json.prototype.toJS = function (context, tableid, defcols) { + // TODO redo + return JSONtoJS(this.value, context, tableid, defcols); + }; + /* +// +// CAST and CONVERT functions +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.Convert = function (params) { + return Object.assign(this, params); + }; + yy.Convert.prototype.toString = function () { + var s = 'CONVERT('; + s += this.dbtypeid; + if (typeof this.dbsize != 'undefined') { + s += '(' + this.dbsize; + if (this.dbprecision) s += ',' + this.dbprecision; + s += ')'; + } + s += ',' + this.expression.toString(); + if (this.style) s += ',' + this.style; + s += ')'; + return s; + }; + yy.Convert.prototype.toJS = function (context, tableid, defcols) { + return `alasql.stdfn.CONVERT(${this.expression.toJS(context, tableid, defcols)}, { + dbtypeid: "${this.dbtypeid}", + dbsize: ${this.dbsize}, + dbprecision: ${this.dbprecision}, + style: ${this.style} + })`; + }; + + function structuredDate(unFormattedDate) { + var month = unFormattedDate.getMonth() + 1; + var year = unFormattedDate.getYear(); + var fullYear = unFormattedDate.getFullYear(); + var date = unFormattedDate.getDate(); + var day = unFormattedDate.toString().substr(4, 3); + var formattedDate = ('0' + date).substr(-2); + var formattedMonth = ('0' + month).substr(-2); + var formattedYear = ('0' + year).substr(-2); + var formattedHour = ('0' + unFormattedDate.getHours()).substr(-2); + var formattedMinutes = ('0' + unFormattedDate.getMinutes()).substr(-2); + var formattedSeconds = ('0' + unFormattedDate.getSeconds()).substr(-2); + var formattedMilliseconds = ('00' + unFormattedDate.getMilliseconds()).substr(-3); + return { + month, + year, + fullYear, + date, + day, + formattedDate, + formattedMonth, + formattedYear, + formattedHour, + formattedMinutes, + formattedSeconds, + formattedMilliseconds, + }; + } + + /** + Convert one type to another + */ + alasql.stdfn.CONVERT = function (value, args) { + var val = value; + var udbtypeid = args.dbtypeid?.toUpperCase(); + + var t; + var s; + if ( + args.style || + args.dbtypeid == 'Date' || + ['DATE', 'DATETIME', 'DATETIME2'].indexOf(udbtypeid) > -1 + ) { + if (/\d{8}/.test(val)) { + t = new Date(+val.substr(0, 4), +val.substr(4, 2) - 1, +val.substr(6, 2)); + } else { + t = newDate(val); + } + s = structuredDate(t); + } + + if (args.style) { + // TODO 9,109, 20,120,21,121,126,130,131 conversions + switch (args.style) { + case 1: // mm/dd/yy + val = s.formattedMonth + '/' + s.formattedDate + '/' + s.formattedYear; + break; + case 2: // yy.mm.dd + val = s.formattedYear + '.' + s.formattedMonth + '.' + s.formattedDate; + break; + case 3: // dd/mm/yy + val = s.formattedDate + '/' + s.formattedMonth + '/' + s.formattedYear; + break; + case 4: // dd.mm.yy + val = s.formattedDate + '.' + s.formattedMonth + '.' + s.formattedYear; + break; + case 5: // dd-mm-yy + val = s.formattedDate + '-' + s.formattedMonth + '-' + s.formattedYear; + break; + case 6: // dd mon yy + val = s.formattedDate + ' ' + s.day.toLowerCase() + ' ' + s.formattedYear; + break; + case 7: // Mon dd,yy + val = s.day + ' ' + s.formattedDate + ',' + s.formattedYear; + break; + case 8: // hh:mm:ss + case 108: // hh:mm:ss + val = s.formattedHour + ':' + s.formattedMinutes + ':' + s.formattedSeconds; + break; + case 10: // mm-dd-yy + val = s.formattedMonth + '-' + s.formattedDate + '-' + s.formattedYear; + break; + case 11: // yy/mm/dd + val = s.formattedYear + '/' + s.formattedMonth + '/' + s.formattedDate; + break; + case 12: // yymmdd + val = s.formattedYear + s.formattedMonth + s.formattedDate; + break; + case 101: // mm/dd/yyyy + val = s.formattedMonth + '/' + s.formattedDate + '/' + s.fullYear; + break; + case 102: // yyyy.mm.dd + val = s.fullYear + '.' + s.formattedMonth + '.' + s.formattedDate; + break; + case 103: // dd/mm/yyyy + val = s.formattedDate + '/' + s.formattedMonth + '/' + s.fullYear; + break; + case 104: // dd.mm.yyyy + val = s.formattedDate + '.' + s.formattedMonth + '.' + s.fullYear; + break; + case 105: // dd-mm-yyyy + val = s.formattedDate + '-' + s.formattedMonth + '-' + s.fullYear; + break; + case 106: // dd mon yyyy + val = s.formattedDate + ' ' + s.day.toLowerCase() + ' ' + s.fullYear; + break; + case 107: // Mon dd,yyyy + val = s.day + ' ' + s.formattedDate + ',' + s.fullYear; + break; + case 110: // mm-dd-yyyy + val = s.formattedMonth + '-' + s.formattedDate + '-' + s.fullYear; + break; + case 111: // yyyy/mm/dd + val = s.fullYear + '/' + s.formattedMonth + '/' + s.formattedDate; + break; + + case 112: // yyyymmdd + val = s.fullYear + s.formattedMonth + s.formattedDate; + break; + default: + throw new Error('The CONVERT style ' + args.style + ' is not realized yet.'); + } + } + + switch (udbtypeid) { + case 'DATE': + return `${s.formattedYear}.${s.formattedMonth}.${s.formattedDate}`; + case 'DATETIME': + case 'DATETIME2': + return `${s.fullYear}.${s.formattedMonth}.${s.formattedDate} ${s.formattedHour}:${s.formattedMinutes}:${s.formattedSeconds}.${s.formattedMilliseconds}`; + case 'MONEY': + var m = +val; + return (m | 0) + ((m * 100) % 100) / 100; + case 'BOOLEAN': + return !!val; + case 'INT': + case 'INTEGER': + case 'SMALLINT': + case 'BIGINT': + case 'SERIAL': + case 'SMALLSERIAL': + case 'BIGSERIAL': + return val | 0; + case 'STRING': + case 'VARCHAR': + case 'NVARCHAR': + case 'CHARACTER VARIABLE': + return args.dbsize ? String(val).substr(0, args.dbsize) : String(val); + case 'CHAR': + case 'CHARACTER': + case 'NCHAR': + return (val + ' '.repeat(args.dbsize)).substr(0, args.dbsize); + case 'NUMBER': + case 'FLOAT': + case 'DECIMAL': + case 'NUMERIC': + var m = +val; + if (args.dbsize !== undefined) { + m = parseFloat(m.toPrecision(args.dbsize)); + } + if (args.dbprecision !== undefined) { + m = parseFloat(m.toFixed(args.dbprecision)); + } + return m; + case 'JSON': + if (typeof val === 'object') { + return val; + } + try { + return JSON.parse(val); + } catch (err) { + throw new Error('Cannot convert string to JSON'); + } + case 'Date': + return val; + default: + return val; + } + }; + /* +// +// CREATE TABLE for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + /* global alasql, yy, hash */ + + yy.ColumnDef = function (params) { + return Object.assign(this, params); + }; + yy.ColumnDef.prototype.toString = function () { + let s = this.columnid; + if (this.dbtypeid) { + s += ' ' + this.dbtypeid; + } + + if (this.dbsize) { + s += '(' + this.dbsize; + if (this.dbprecision) { + s += ',' + this.dbprecision; + } + s += ')'; + } + + if (this.primarykey) { + s += ' PRIMARY KEY'; + } + + if (this.notnull) { + s += ' NOT NULL'; + } + + return s; + }; + + yy.CreateTable = function (params) { + return Object.assign(this, params); + }; + yy.CreateTable.prototype.toString = function () { + let s = `CREATE${this.temporary ? ' TEMPORARY' : ''}${this.view ? ' VIEW' : ` ${this.class ? 'CLASS' : 'TABLE'}`}${this.ifnotexists ? ' IF NOT EXISTS' : ''} ${this.table.toString()}`; + + if (this.viewcolumns) { + s += `(${this.viewcolumns.map(vcol => vcol.toString()).join(',')})`; + } + + if (this.as) { + s += ` AS ${this.as}`; + } else { + s += ` (${this.columns.map(col => col.toString()).join(',')})`; + } + + if (this.view && this.select) { + s += ` AS ${this.select.toString()}`; + } + + return s; + }; + + // CREATE TABLE + //yy.CreateTable.prototype.compile = returnUndefined; + yy.CreateTable.prototype.execute = function (databaseid, params, cb) { + // var self = this; + var db = alasql.databases[this.table.databaseid || databaseid]; + + var tableid = this.table.tableid; + if (!tableid) { + throw new Error('Table name is not defined'); + } + + var columns = this.columns; + var constraints = this.constraints || []; + + // IF NOT EXISTS + if (this.ifnotexists && db.tables[tableid]) { + return cb ? cb(0) : 0; + } + + if (db.tables[tableid]) { + throw new Error( + "Can not create table '" + + tableid + + "', because it already exists in the database '" + + db.databaseid + + "'" + ); + } + + var table = (db.tables[tableid] = new alasql.Table()); // TODO Can use special object? + // If this is a class + if (this.class) { + table.isclass = true; + } + + var ss = []; // DEFAULT function components + var uss = []; // ON UPDATE function components + if (columns) { + columns.forEach(function (col) { + var dbtypeid = col.dbtypeid; + if (!alasql.fn[dbtypeid]) { + dbtypeid = dbtypeid.toUpperCase(); + } + + // Process SERIAL data type like Postgress + if (['SERIAL', 'SMALLSERIAL', 'BIGSERIAL'].indexOf(dbtypeid) > -1) { + col.identity = {value: 1, step: 1}; + } + + var newcol = { + columnid: col.columnid, + dbtypeid: dbtypeid, + dbsize: col.dbsize, // Fixed issue #150 + dbprecision: col.dbprecision, // Fixed issue #150 + notnull: col.notnull, + identity: col.identity, + }; + if (col.identity) { + table.identities[col.columnid] = { + value: +col.identity.value, + step: +col.identity.step, + }; + } + if (col.check) { + table.checks.push({ + id: col.check.constrantid, + fn: new Function('r', 'var y;return ' + col.check.expression.toJS('r', '')), + }); + } + + if (col.default) { + ss.push(JSON.stringify('' + col.columnid) + ':' + col.default.toJS('r', '')); + } + + // Check for primary key + if (col.primarykey) { + var pk = (table.pk = {}); + pk.columns = [col.columnid]; + pk.onrightfns = `r[${JSON.stringify(col.columnid)}]`; + pk.onrightfn = new Function('r', 'var y;return ' + pk.onrightfns); + pk.hh = hash(pk.onrightfns); + table.uniqs[pk.hh] = {}; + } + + // UNIQUE clause + if (col.unique) { + var uk = {}; + table.uk = table.uk || []; + table.uk.push(uk); + uk.columns = [col.columnid]; + uk.onrightfns = `r[${JSON.stringify(col.columnid)}]`; + uk.onrightfn = new Function('r', 'var y;return ' + uk.onrightfns); + uk.hh = hash(uk.onrightfns); + table.uniqs[uk.hh] = {}; + } + + // UNIQUE clause + if (col.foreignkey) { + var fk = col.foreignkey.table; + var fktable = alasql.databases[fk.databaseid || databaseid].tables[fk.tableid]; + if (typeof fk.columnid === 'undefined') { + if (fktable.pk.columns && fktable.pk.columns.length > 0) { + fk.columnid = fktable.pk.columns[0]; + } else { + throw new Error('FOREIGN KEY allowed only to tables with PRIMARY KEYs'); + } + } + var fkfn = function (r) { + var rr = {}; + if (typeof r[col.columnid] === 'undefined') { + return true; + } + rr[fk.columnid] = r[col.columnid]; + var addr = fktable.pk.onrightfn(rr); + if (!fktable.uniqs[fktable.pk.hh][addr]) { + throw new Error( + 'Foreign key violation' //changed error message + ); + } + return true; + }; + table.checks.push({fn: fkfn}); + } + + if (col.onupdate) { + uss.push(`r[${JSON.stringify(col.columnid)}]=` + col.onupdate.toJS('r', '')); + } + + table.columns.push(newcol); + table.xcolumns[newcol.columnid] = newcol; + }); + } + table.defaultfns = ss.join(','); + table.onupdatefns = uss.join(';'); + + constraints.forEach(function (con) { + var checkfn; + + if (con.type === 'PRIMARY KEY') { + if (table.pk) { + throw new Error('Primary key already exists'); + } + var pk = (table.pk = {}); + pk.columns = con.columns; + pk.onrightfns = pk.columns + .map(function (columnid) { + return `r[${JSON.stringify(columnid)}]`; + }) + .join("+'`'+"); + pk.onrightfn = new Function('r', 'var y;return ' + pk.onrightfns); + pk.hh = hash(pk.onrightfns); + table.uniqs[pk.hh] = {}; + } else if (con.type === 'CHECK') { + checkfn = new Function('r', 'var y;return ' + con.expression.toJS('r', '')); + } else if (con.type === 'UNIQUE') { + var uk = {}; + table.uk = table.uk || []; + table.uk.push(uk); + uk.columns = con.columns; + uk.onrightfns = uk.columns + .map(function (columnid) { + return `r[${JSON.stringify(columnid)}]`; + }) + .join("+'`'+"); + uk.onrightfn = new Function('r', 'var y;return ' + uk.onrightfns); + uk.hh = hash(uk.onrightfns); + table.uniqs[uk.hh] = {}; + } else if (con.type === 'FOREIGN KEY') { + var fk = con.fktable; + if (con.fkcolumns && con.fkcolumns.length > 0) { + //Composite foreign keys + fk.fkcolumns = con.fkcolumns; + } + var fktable = alasql.databases[fk.databaseid || databaseid].tables[fk.tableid]; + if (typeof fk.fkcolumns === 'undefined') { + //Composite foreign keys + fk.fkcolumns = fktable.pk.columns; + } + fk.columns = con.columns; + + if (fk.fkcolumns.length > fk.columns.length) { + throw new Error('Invalid foreign key on table ' + table.tableid); + } + + checkfn = function (r) { + var rr = {}; + + //Composite foreign keys + fk.fkcolumns.forEach(function (colFk, i) { + if (r[fk.columns[i]] != null) { + rr[colFk] = r[fk.columns[i]]; + } + }); + + if (Object.keys(rr).length === 0) { + //all values of foreign key was null + return true; + } + if (Object.keys(rr).length !== fk.columns.length) { + throw new Error('Invalid foreign key on table ' + table.tableid); + } + //reset fkTable as we need an up to date uniqs + var fktable = alasql.databases[fk.databaseid || databaseid].tables[fk.tableid]; + var addr = fktable.pk.onrightfn(rr); + + if (!fktable.uniqs[fktable.pk.hh][addr]) { + throw new Error( + 'Foreign key violation' //changed error message + ); + } + return true; + }; + } + if (checkfn) { + table.checks.push({ + fn: checkfn, + id: con.constraintid, + fk: con.type === 'FOREIGN KEY', + }); + } + }); + + if (this.view && this.viewcolumns) { + var self = this; + this.viewcolumns.forEach(function (vcol, idx) { + self.select.columns[idx].as = vcol.columnid; + }); + } + + //Used in 420from queryfn when table.view = true! + if (this.view && this.select) { + table.view = true; + table.select = this.select.compile(this.table.databaseid || databaseid); + } + + if (db.engineid) { + return alasql.engines[db.engineid].createTable( + this.table.databaseid || databaseid, + tableid, + this.ifnotexists, + cb + ); + } + + table.insert = function (r, orreplace) { + var oldinserted = alasql.inserted; + alasql.inserted = [r]; + + var table = this; + + var toreplace = false; // For INSERT OR REPLACE + + /* + // IDENTINY or AUTO_INCREMENT + // if(table.identities && table.identities.length>0) { + // table.identities.forEach(function(ident){ + // r[ident.columnid] = ident.value; + // }); + // } +*/ + // Trigger prevent functionality + var prevent = false; + for (var tr in table.beforeinsert) { + var trigger = table.beforeinsert[tr]; + if (trigger) { + if (trigger.funcid) { + if (alasql.fn[trigger.funcid](r) === false) prevent = prevent || true; + } else if (trigger.statement) { + if (trigger.statement.execute(databaseid) === false) prevent = prevent || true; + } + } + } + if (prevent) return; + + // Trigger prevent functionality + var escape = false; + for (tr in table.insteadofinsert) { + escape = true; + trigger = table.insteadofinsert[tr]; + if (trigger) { + if (trigger.funcid) { + alasql.fn[trigger.funcid](r); + } else if (trigger.statement) { + trigger.statement.execute(databaseid); + } + } + } + if (escape) return; + + //console.log(262,r); + //console.log(263,table.identities) + for (var columnid in table.identities) { + var ident = table.identities[columnid]; + // console.log(ident); + r[columnid] = ident.value; + // console.log(ident); + } + //console.log(270,r); + + if (table.checks && table.checks.length > 0) { + table.checks.forEach(function (check) { + if (!check.fn(r)) { + // if(orreplace) toreplace=true; else + throw new Error('Violation of CHECK constraint ' + (check.id || '')); + } + }); + } + + table.columns.forEach(function (column) { + if (column.notnull && typeof r[column.columnid] === 'undefined') { + throw new Error('Wrong NULL value in NOT NULL column ' + column.columnid); + } + }); + if (table.pk) { + var pk = table.pk; + var addr = pk.onrightfn(r); + + if (typeof table.uniqs[pk.hh][addr] !== 'undefined') { + //console.log(pk,addr,pk.onrightfn({ono:1})); + //console.log(r, pk.onrightfn(r), pk.onrightfns); + if (orreplace) toreplace = table.uniqs[pk.hh][addr]; + else + throw new Error('Cannot insert record, because it already exists in primary key index'); + } + // table.uniqs[pk.hh][addr]=r; + } + + if (table.uk && table.uk.length) { + table.uk.forEach(function (uk) { + var ukaddr = uk.onrightfn(r); + if (typeof table.uniqs[uk.hh][ukaddr] !== 'undefined') { + if (orreplace) toreplace = table.uniqs[uk.hh][ukaddr]; + else throw new Error('Cannot insert record, because it already exists in unique index'); + } + // table.uniqs[uk.hh][ukaddr]=r; + }); + } + + if (toreplace) { + // Do UPDATE!!! + // console.log(); + table.update( + function (t) { + for (var f in r) t[f] = r[f]; + }, + table.data.indexOf(toreplace), + params + ); + } else { + table.data.push(r); + + // Final change before insert + + // Update indices + + for (var columnid in table.identities) { + var ident = table.identities[columnid]; + // console.log(ident); + ident.value += ident.step; + // console.log(ident); + } + + if (table.pk) { + var pk = table.pk; + var addr = pk.onrightfn(r); + table.uniqs[pk.hh][addr] = r; + } + if (table.uk && table.uk.length) { + table.uk.forEach(function (uk) { + var ukaddr = uk.onrightfn(r); + table.uniqs[uk.hh][ukaddr] = r; + }); + } + } + + // Trigger prevent functionality + for (var tr in table.afterinsert) { + var trigger = table.afterinsert[tr]; + if (trigger) { + if (trigger.funcid) { + alasql.fn[trigger.funcid](r); + } else if (trigger.statement) { + trigger.statement.execute(databaseid); + } + } + } + alasql.inserted = oldinserted; + }; + + table.delete = function (index) { + var table = this; + var r = table.data[index]; + + // Prevent trigger + var prevent = false; + for (var tr in table.beforedelete) { + var trigger = table.beforedelete[tr]; + if (trigger) { + if (trigger.funcid) { + if (alasql.fn[trigger.funcid](r) === false) prevent = prevent || true; + } else if (trigger.statement) { + if (trigger.statement.execute(databaseid) === false) prevent = prevent || true; + } + } + } + if (prevent) return false; + + // Trigger prevent functionality + var escape = false; + for (var tr in table.insteadofdelete) { + escape = true; + var trigger = table.insteadofdelete[tr]; + if (trigger) { + if (trigger.funcid) { + alasql.fn[trigger.funcid](r); + } else if (trigger.statement) { + trigger.statement.execute(databaseid); + } + } + } + if (escape) return; + + if (this.pk) { + var pk = this.pk; + var addr = pk.onrightfn(r); + if (typeof this.uniqs[pk.hh][addr] === 'undefined') { + throw new Error('Something wrong with primary key index on table'); + } else { + this.uniqs[pk.hh][addr] = undefined; + } + } + if (table.uk && table.uk.length) { + table.uk.forEach(function (uk) { + var ukaddr = uk.onrightfn(r); + if (typeof table.uniqs[uk.hh][ukaddr] === 'undefined') { + throw new Error('Something wrong with unique index on table'); + } + table.uniqs[uk.hh][ukaddr] = undefined; + }); + } + }; + + table.deleteall = function () { + this.data.length = 0; + if (this.pk) { + // var r = this.data[i]; + this.uniqs[this.pk.hh] = {}; + } + if (table.uk && table.uk.length) { + table.uk.forEach(function (uk) { + table.uniqs[uk.hh] = {}; + }); + } + }; + + table.update = function (assignfn, i, params) { + // TODO: Analyze the speed + var r = cloneDeep(this.data[i]); + + var pk; + // PART 1 - PRECHECK + if (this.pk) { + pk = this.pk; + pk.pkaddr = pk.onrightfn(r, params); + if (typeof this.uniqs[pk.hh][pk.pkaddr] === 'undefined') { + throw new Error('Something wrong with index on table'); + } + } + if (table.uk && table.uk.length) { + table.uk.forEach(function (uk) { + uk.ukaddr = uk.onrightfn(r); + if (typeof table.uniqs[uk.hh][uk.ukaddr] === 'undefined') { + throw new Error('Something wrong with unique index on table'); + } + }); + } + + assignfn(r, params, alasql); + + // Prevent trigger + var prevent = false; + for (var tr in table.beforeupdate) { + var trigger = table.beforeupdate[tr]; + if (trigger) { + if (trigger.funcid) { + if (alasql.fn[trigger.funcid](this.data[i], r) === false) prevent = prevent || true; + } else if (trigger.statement) { + if (trigger.statement.execute(databaseid) === false) prevent = prevent || true; + } + } + } + if (prevent) return false; + + // Trigger prevent functionality + var escape = false; + for (var tr in table.insteadofupdate) { + escape = true; + var trigger = table.insteadofupdate[tr]; + if (trigger) { + if (trigger.funcid) { + alasql.fn[trigger.funcid](this.data[i], r); + } else if (trigger.statement) { + trigger.statement.execute(databaseid); + } + } + } + if (escape) return; + + // PART 2 - POST CHECK + if (table.checks && table.checks.length > 0) { + table.checks.forEach(function (check) { + if (!check.fn(r)) { + throw new Error('Violation of CHECK constraint ' + (check.id || '')); + } + }); + } + + table.columns.forEach(function (column) { + if (column.notnull && typeof r[column.columnid] === 'undefined') { + throw new Error('Wrong NULL value in NOT NULL column ' + column.columnid); + } + }); + if (this.pk) { + pk.newpkaddr = pk.onrightfn(r); + if (typeof this.uniqs[pk.hh][pk.newpkaddr] !== 'undefined' && pk.newpkaddr !== pk.pkaddr) { + throw new Error('Record already exists'); + } + } + + if (table.uk && table.uk.length) { + table.uk.forEach(function (uk) { + uk.newukaddr = uk.onrightfn(r); + if ( + typeof table.uniqs[uk.hh][uk.newukaddr] !== 'undefined' && + uk.newukaddr !== uk.ukaddr + ) { + throw new Error('Record already exists'); + } + }); + } + + // PART 3 UPDATE + if (this.pk) { + this.uniqs[pk.hh][pk.pkaddr] = undefined; + this.uniqs[pk.hh][pk.newpkaddr] = r; + } + if (table.uk && table.uk.length) { + table.uk.forEach(function (uk) { + table.uniqs[uk.hh][uk.ukaddr] = undefined; + table.uniqs[uk.hh][uk.newukaddr] = r; + }); + } + + this.data[i] = r; + + // Trigger prevent functionality + for (var tr in table.afterupdate) { + var trigger = table.afterupdate[tr]; + if (trigger) { + if (trigger.funcid) { + alasql.fn[trigger.funcid](this.data[i], r); + } else if (trigger.statement) { + trigger.statement.execute(databaseid); + } + } + } + }; + + var res; + + if (!alasql.options.nocount) { + res = 1; + } + + if (cb) res = cb(res); + return res; + }; + // + // Date functions + // + // (c) 2014, Andrey Gershun + // + + /** Standard JavaScript data types */ + + alasql.fn.Date = Object; + alasql.fn.Date = Date; + alasql.fn.Number = Number; + alasql.fn.String = String; + alasql.fn.Boolean = Boolean; + + /** Extend Object with properties */ + stdfn.EXTEND = alasql.utils.extend; + + stdfn.CHAR = String.fromCharCode.bind(String); + stdfn.ASCII = function (a) { + return a.charCodeAt(0); + }; + + /** + Return first non-null argument + See https://msdn.microsoft.com/en-us/library/ms190349.aspx +*/ + stdfn.COALESCE = function () { + for (var i = 0; i < arguments.length; i++) { + if (arguments[i] === null) continue; + if (typeof arguments[i] == 'undefined') continue; + if (typeof arguments[i] == 'number' && isNaN(arguments[i])) continue; + return arguments[i]; + } + return undefined; + }; + + stdfn.USER = function () { + return 'alasql'; + }; + + stdfn.OBJECT_ID = function (objid) { + return !!alasql.tables[objid]; + }; + + stdfn.DATE = function (d) { + if (!isNaN(d) && d.length === 8) + return new Date(+d.substr(0, 4), +d.substr(4, 2) - 1, +d.substr(6, 2)); + return newDate(d); + }; + + stdfn.NOW = function () { + if (alasql.options.dateAsString) { + var d = new Date(); + var s = + d.getFullYear() + + '-' + + ('0' + (d.getMonth() + 1)).substr(-2) + + '-' + + ('0' + d.getDate()).substr(-2); + s += + ' ' + + ('0' + d.getHours()).substr(-2) + + ':' + + ('0' + d.getMinutes()).substr(-2) + + ':' + + ('0' + d.getSeconds()).substr(-2); + s += '.' + ('00' + d.getMilliseconds()).substr(-3); + return s; + } + return new Date(); + }; + + stdfn.GETDATE = stdfn.NOW; + stdfn.CURRENT_TIMESTAMP = stdfn.NOW; + + /** + * Returns the current date, without time component. + * @returns date object without time component + */ + stdfn.CURDATE = stdfn.CURRENT_DATE = function () { + var date = new Date(); + date.setHours(0, 0, 0, 0); + if (alasql.options.dateAsString) { + var s = + date.getFullYear() + + '-' + + ('0' + (date.getMonth() + 1)).substr(-2) + + '-' + + ('0' + date.getDate()).substr(-2); + return s; + } + return date; + }; + + // stdfn.GETDATE = function(){ + // var d = new Date(); + // var s = d.getFullYear()+"."+("0"+(d.getMonth()+1)).substr(-2)+"."+("0"+d.getDate()).substr(-2); + // return s; + // } + + stdfn.SECOND = function (d) { + var d = newDate(d); + return d.getSeconds(); + }; + + stdfn.MINUTE = function (d) { + var d = newDate(d); + return d.getMinutes(); + }; + + stdfn.HOUR = function (d) { + var d = newDate(d); + return d.getHours(); + }; + + stdfn.DAYOFWEEK = stdfn.WEEKDAY = function (d) { + var d = newDate(d); + return d.getDay(); + }; + + stdfn.DAY = stdfn.DAYOFMONTH = function (d) { + var d = newDate(d); + return d.getDate(); + }; + + stdfn.MONTH = function (d) { + var d = newDate(d); + return d.getMonth() + 1; + }; + + stdfn.YEAR = function (d) { + var d = newDate(d); + return d.getFullYear(); + }; + + var PERIODS = { + year: 1000 * 3600 * 24 * 365, + quarter: (1000 * 3600 * 24 * 365) / 4, + month: 1000 * 3600 * 24 * 30, + week: 1000 * 3600 * 24 * 7, + day: 1000 * 3600 * 24, + dayofyear: 1000 * 3600 * 24, + weekday: 1000 * 3600 * 24, + hour: 1000 * 3600, + minute: 1000 * 60, + second: 1000, + millisecond: 1, + microsecond: 0.001, + }; + + alasql.stdfn.DATEDIFF = function (period, d1, d2) { + var interval = newDate(d2).getTime() - newDate(d1).getTime(); + return (interval / PERIODS[period.toLowerCase()]) | 0; + }; + + alasql.stdfn.DATEADD = function (period, interval, d) { + var nd = newDate(d); + var period = period.toLowerCase(); + + switch (period) { + case 'year': + nd.setFullYear(nd.getFullYear() + interval); + break; + case 'quarter': + nd.setMonth(nd.getMonth() + interval * 3); + break; + case 'month': + nd.setMonth(nd.getMonth() + interval); + break; + default: + nd = new Date(nd.getTime() + interval * PERIODS[period]); + break; + } + + return nd; + }; + + alasql.stdfn.INTERVAL = function (interval, period) { + return interval * PERIODS[period.toLowerCase()]; + }; + + alasql.stdfn.DATE_ADD = alasql.stdfn.ADDDATE = function (d, interval) { + var nd = newDate(d).getTime() + interval; + return new Date(nd); + }; + + alasql.stdfn.DATE_SUB = alasql.stdfn.SUBDATE = function (d, interval) { + var nd = newDate(d).getTime() - interval; + return new Date(nd); + }; + + var dateRegexp = /^\d{4}\.\d{2}\.\d{2} \d{2}:\d{2}:\d{2}/; + function newDate(d) { + if (typeof d === 'string') { + if (dateRegexp.test(d)) { + d = d.replace('.', '-').replace('.', '-'); + } + } + return new Date(d); + } + /* +// +// DROP TABLE for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.DropTable = function (params) { + return Object.assign(this, params); + }; + yy.DropTable.prototype.toString = function () { + var s = 'DROP' + ' '; + if (this.view) s += 'VIEW'; + else s += 'TABLE'; + if (this.ifexists) s += ' IF EXISTS'; + s += ' ' + this.tables.toString(); + return s; + }; + + // DROP TABLE + /** + Drop tables + @param {string} databaseid Database id + @param {object} params Parameters + @param {callback} cb Callback function + @return Number of dropped tables + @example + DROP TABLE one; + DROP TABLE IF NOT EXISTS two, three; +*/ + yy.DropTable.prototype.execute = function (databaseid, params, cb) { + var ifexists = this.ifexists; + var res = 0; // No tables removed + var count = 0; + var tlen = this.tables.length; + + // For each table in the list + this.tables.forEach(function (table) { + var db = alasql.databases[table.databaseid || databaseid]; + var tableid = table.tableid; + + /** @todo Test with AUTOCOMMIT flag is ON */ + /** @todo Test with IndexedDB and multiple tables */ + + if (!ifexists || (ifexists && db.tables[tableid])) { + if (!db.tables[tableid]) { + if (!alasql.options.dropifnotexists) { + throw new Error( + `Can not drop table ${JSON.stringify( + table.tableid + )} because it does not exist in the database.` + ); + } + } else { + if (db.engineid /*&& alasql.options.autocommit*/) { + alasql.engines[db.engineid].dropTable( + table.databaseid || databaseid, + tableid, + ifexists, + function (res1) { + delete db.tables[tableid]; + res += res1; + count++; + if (count == tlen && cb) cb(res); + } + ); + } else { + delete db.tables[tableid]; + res++; + count++; + if (count == tlen && cb) cb(res); + } + } + } else { + count++; + if (count == tlen && cb) cb(res); + } + }); + // if(cb) res = cb(res); + return res; + }; + + yy.TruncateTable = function (params) { + return Object.assign(this, params); + }; + yy.TruncateTable.prototype.toString = function () { + var s = 'TRUNCATE TABLE'; + s += ' ' + this.table.toString(); + return s; + }; + + yy.TruncateTable.prototype.execute = function (databaseid, params, cb) { + var db = alasql.databases[this.table.databaseid || databaseid]; + var tableid = this.table.tableid; + if (db.engineid) { + return alasql.engines[db.engineid].truncateTable( + this.table.databaseid || databaseid, + tableid, + this.ifexists, + cb + ); + } + if (db.tables[tableid]) { + db.tables[tableid].data = []; + } else { + throw new Error('Cannot truncate table becaues it does not exist'); + } + return cb ? cb(0) : 0; + }; + /* +// +// CREATE VERTEX for AlaSQL +// Date: 21.04.2015 +// (c) 2015, Andrey Gershun +// +*/ + + yy.CreateVertex = function (params) { + return Object.assign(this, params); + }; + yy.CreateVertex.prototype.toString = function () { + var s = 'CREATE VERTEX '; + if (this.class) { + s += this.class + ' '; + } + if (this.sharp) { + s += '#' + this.sharp + ' '; + } + if (this.sets) { + s += this.sets.toString(); + } else if (this.content) { + s += this.content.toString(); + } else if (this.select) { + s += this.select.toString(); + } + + return s; + }; + + yy.CreateVertex.prototype.toJS = function (context) { + // console.log('yy.CreateVertex.toJS'); + var s = 'this.queriesfn[' + (this.queriesidx - 1) + '](this.params,null,' + context + ')'; + // var s = ''; + return s; + }; + + // CREATE TABLE + + yy.CreateVertex.prototype.compile = function (databaseid) { + var dbid = databaseid; + + // CREATE VERTEX #id + var sharp = this.sharp; + + // CREATE VERTEX "Name" + if (typeof this.name !== 'undefined') { + var s = 'x.name=' + this.name.toJS(); + var namefn = new Function('x', s); + } + + if (this.sets && this.sets.length > 0) { + var s = this.sets + .map(function (st) { + return `x[${JSON.stringify(st.column.columnid)}]=` + st.expression.toJS('x', ''); + }) + .join(';'); + var setfn = new Function('x,params,alasql', s); + } + + // Todo: check for content, select and default + + var statement = function (params, cb) { + var res; + + // CREATE VERTEX without parameters + var db = alasql.databases[dbid]; + var id; + if (typeof sharp !== 'undefined') { + id = sharp; + } else { + id = db.counter++; + } + var vertex = {$id: id, $node: 'VERTEX'}; + db.objects[vertex.$id] = vertex; + res = vertex; + if (namefn) { + namefn(vertex); + } + if (setfn) { + setfn(vertex, params, alasql); + } + + if (cb) { + res = cb(res); + } + return res; + }; + return statement; + }; + + yy.CreateEdge = function (params) { + return Object.assign(this, params); + }; + yy.CreateEdge.prototype.toString = function () { + // console.log('here!'); + var s = 'CREATE EDGE' + ' '; + if (this.class) { + s += this.class + ' '; + } + // todo: SET + // todo: CONTENT + // todo: SELECT + return s; + }; + + yy.CreateEdge.prototype.toJS = function (context) { + var s = 'this.queriesfn[' + (this.queriesidx - 1) + '](this.params,null,' + context + ')'; + return s; + }; + + // CREATE TABLE + + yy.CreateEdge.prototype.compile = function (databaseid) { + var dbid = databaseid; + var fromfn = new Function('params,alasql', 'var y;return ' + this.from.toJS()); + var tofn = new Function('params,alasql', 'var y;return ' + this.to.toJS()); + + // CREATE VERTEX "Name" + if (typeof this.name !== 'undefined') { + var s = 'x.name=' + this.name.toJS(); + var namefn = new Function('x', s); + } + + if (this.sets && this.sets.length > 0) { + var s = this.sets + .map(function (st) { + return `x[${JSON.stringify(st.column.columnid)}]=` + st.expression.toJS('x', ''); + }) + .join(';'); + var setfn = new Function('x,params,alasql', 'var y;' + s); + } + + const statement = (params, cb) => { + let res = 0; + let db = alasql.databases[dbid]; + let edge = {$id: db.counter++, $node: 'EDGE'}; + let v1 = fromfn(params, alasql); + let v2 = tofn(params, alasql); + + // Set link + edge.$in = [v1.$id]; + edge.$out = [v2.$id]; + + // Initialize and set sides + v1.$out = v1.$out || []; + v1.$out.push(edge.$id); + + v2.$in = v2.$in || []; + v2.$in.push(edge.$id); + + // Save in objects + db.objects[edge.$id] = edge; + res = edge; + + // Optional functions + namefn?.(edge); + setfn?.(edge, params, alasql); + + // Callback + return cb ? cb(res) : res; + }; + return statement; + }; + + yy.CreateGraph = function (params) { + return Object.assign(this, params); + }; + yy.CreateGraph.prototype.toString = function () { + var s = 'CREATE GRAPH' + ' '; + if (this.class) { + s += this.class + ' '; + } + return s; + }; + + yy.CreateGraph.prototype.execute = function (databaseid, params, cb) { + var res = []; + if (this.from) { + if (alasql.from[this.from.funcid]) { + this.graph = alasql.from[this.from.funcid.toUpperCase()]; + } + } + + // stop; + this.graph.forEach(g => { + if (!g.source) { + createVertex(g); + } else { + // CREATE EDGE + let e = {}; + if (g.as !== undefined) alasql.vars[g.as] = e; + if (g.prop !== undefined) e.name = g.prop; + if (g.sharp !== undefined) e.$id = g.sharp; + if (g.name !== undefined) e.name = g.name; + if (g.class !== undefined) e.$class = g.class; + + let db = alasql.databases[databaseid]; + e.$id = e.$id !== undefined ? e.$id : db.counter++; + e.$node = 'EDGE'; + + if (g.json !== undefined) { + Object.assign( + e, + new Function('params, alasql', `return ${g.json.toJS()}`)(params, alasql) + ); + } + + const resolveVertex = (sourceOrTarget, isSource) => { + let vertex, vo; + if (sourceOrTarget.vars) { + vo = alasql.vars[sourceOrTarget.vars]; + vertex = typeof vo === 'object' ? vo : db.objects[vo]; + } else { + let av = sourceOrTarget.sharp || sourceOrTarget.prop; + vertex = db.objects[av]; + if ( + vertex === undefined && + alasql.options.autovertex && + (sourceOrTarget.prop || sourceOrTarget.name) + ) { + vertex = + findVertex(sourceOrTarget.prop || sourceOrTarget.name) || + createVertex(sourceOrTarget); + } + } + if (isSource && vertex && typeof vertex.$out === 'undefined') vertex.$out = []; + if (!isSource && vertex && typeof vertex.$in === 'undefined') vertex.$in = []; + return vertex; + }; + + let v1 = resolveVertex(g.source, true); + let v2 = resolveVertex(g.target, false); + + // Set link and sides + e.$in = [v1.$id]; + e.$out = [v2.$id]; + v1.$out.push(e.$id); + v2.$in.push(e.$id); + + db.objects[e.$id] = e; + + if (e.$class !== undefined) { + let classTable = alasql.databases[databaseid].tables[e.$class]; + if (classTable === undefined) { + throw new Error('No such class. Please use CREATE CLASS'); + } else { + classTable.data.push(e); + } + } + + res.push(e.$id); + } + }); + + if (cb) { + res = cb(res); + } + + return res; + + // Find vertex by name + function findVertex(name) { + var objects = alasql.databases[alasql.useid].objects; + for (var k in objects) { + if (objects[k].name === name) { + return objects[k]; + } + } + return undefined; + } + + function createVertex(g) { + // GREATE VERTEX + var v = {}; + if (typeof g.as !== 'undefined') { + alasql.vars[g.as] = v; + } + + if (typeof g.prop !== 'undefined') { + // v[g.prop] = true; + v.$id = g.prop; + v.name = g.prop; + } + + if (typeof g.sharp !== 'undefined') { + v.$id = g.sharp; + } + if (typeof g.name !== 'undefined') { + v.name = g.name; + } + if (typeof g.class !== 'undefined') { + v.$class = g.class; + } + + var db = alasql.databases[databaseid]; + if (typeof v.$id === 'undefined') { + v.$id = db.counter++; + } + v.$node = 'VERTEX'; + if (typeof g.json !== 'undefined') { + extend(v, new Function('params,alasql', 'var y;return ' + g.json.toJS())(params, alasql)); + } + db.objects[v.$id] = v; + if (typeof v.$class !== 'undefined') { + if (typeof alasql.databases[databaseid].tables[v.$class] === 'undefined') { + throw new Error('No such class. Pleace use CREATE CLASS'); + } else { + // TODO - add insert() + alasql.databases[databaseid].tables[v.$class].data.push(v); + } + } + + res.push(v.$id); + return v; + } + }; + yy.CreateGraph.prototype.compile1 = function (databaseid) { + const dbid = databaseid; + const fromfn = new Function('params, alasql', `return ${this.from.toJS()}`); + const tofn = new Function('params, alasql', `return ${this.to.toJS()}`); + + let namefn, setfn; + + // CREATE VERTEX "Name" + if (this.name !== undefined) { + const s = `x.name = ${this.name.toJS()}`; + namefn = new Function('x', s); + } + + if (this.sets && this.sets.length > 0) { + const s = this.sets + .map(st => `x[${JSON.stringify(st.column.columnid)}] = ${st.expression.toJS('x', '')}`) + .join(';'); + setfn = new Function('x, params, alasql', `var y; ${s}`); + } + + // Todo: handle content, select and default + + const statement = (params, cb) => { + let res = 0; + const db = alasql.databases[dbid]; + const edge = {$id: db.counter++, $node: 'EDGE'}; + const v1 = fromfn(params, alasql); + const v2 = tofn(params, alasql); + + // Set link + edge.$in = [v1.$id]; + edge.$out = [v2.$id]; + + // Set sides + v1.$out = v1.$out || []; + v1.$out.push(edge.$id); + + v2.$in = v2.$in || []; + v2.$in.push(edge.$id); + + // Save in objects + db.objects[edge.$id] = edge; + res = edge; + + if (namefn) { + namefn(edge); + } + if (setfn) { + setfn(edge, params, alasql); + } + + if (cb) { + res = cb(res); + } + return res; + }; + return statement; + }; + /* +// +// ALTER TABLE for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + /* global alasql yy */ + + // ALTER TABLE table1 RENAME TO table2 + yy.AlterTable = function (params) { + return Object.assign(this, params); + }; + yy.AlterTable.prototype.toString = function () { + let s = 'ALTER TABLE ' + this.table.toString(); + if (this.renameto) s += ' RENAME TO ' + this.renameto; + return s; + }; + + yy.AlterTable.prototype.execute = function (databaseid, params, cb) { + let db = alasql.databases[databaseid]; + db.dbversion = Date.now(); + + if (this.renameto) { + var oldtableid = this.table.tableid; + var newtableid = this.renameto; + var res = 1; + if (db.tables[newtableid]) { + throw new Error( + `Can not rename a table "${oldtableid}" to "${newtableid}" because the table with this name already exists` + ); + } else if (newtableid === oldtableid) { + throw new Error(`Can not rename a table "${oldtableid}" to itself`); + } else { + db.tables[newtableid] = db.tables[oldtableid]; + delete db.tables[oldtableid]; + res = 1; + } + if (cb) cb(res); + return res; + } + + if (this.addcolumn) { + db = alasql.databases[this.table.databaseid || databaseid]; + db.dbversion++; + var tableid = this.table.tableid; + var table = db.tables[tableid]; + var columnid = this.addcolumn.columnid; + if (table.xcolumns[columnid]) { + throw new Error( + `Cannot add column "${columnid}" because it already exists in table "${tableid}"` + ); + } + + var col = { + columnid: columnid, + dbtypeid: this.addcolumn.dbtypeid, + dbsize: this.dbsize, + dbprecision: this.dbprecision, + dbenum: this.dbenum, + defaultfns: null, // TODO defaultfns!!! + }; + + var defaultfn = function () {}; + + table.columns.push(col); + table.xcolumns[columnid] = col; + + for (let i = 0, ilen = table.data.length; i < ilen; i++) { + table.data[i][columnid] = defaultfn(); + } + + return cb ? cb(1) : 1; + } + + if (this.modifycolumn) { + let db = alasql.databases[this.table.databaseid || databaseid]; + db.dbversion++; + var tableid = this.table.tableid; + var table = db.tables[tableid]; + var columnid = this.modifycolumn.columnid; + + if (!table.xcolumns[columnid]) { + throw new Error( + `Cannot modify column "${columnid}" because it was not found in table "${tableid}"` + ); + } + + col = table.xcolumns[columnid]; + col.dbtypeid = this.dbtypeid; + col.dbsize = this.dbsize; + col.dbprecision = this.dbprecision; + col.dbenum = this.dbenum; + + return cb ? cb(1) : 1; + } + + if (this.renamecolumn) { + let db = alasql.databases[this.table.databaseid || databaseid]; + db.dbversion++; + + var tableid = this.table.tableid; + var table = db.tables[tableid]; + var columnid = this.renamecolumn; + var tocolumnid = this.to; + + var col; + if (!table.xcolumns[columnid]) { + throw new Error('Column "' + columnid + '" is not found in the table "' + tableid + '"'); + } + if (table.xcolumns[tocolumnid]) { + throw new Error( + 'Column "' + tocolumnid + '" already exists in the table "' + tableid + '"' + ); + } + + if (columnid != tocolumnid) { + for (var j = 0; j < table.columns.length; j++) { + if (table.columns[j].columnid == columnid) { + table.columns[j].columnid = tocolumnid; + } + } + + table.xcolumns[tocolumnid] = table.xcolumns[columnid]; + delete table.xcolumns[columnid]; + + for (var i = 0, ilen = table.data.length; i < ilen; i++) { + table.data[i][tocolumnid] = table.data[i][columnid]; + delete table.data[i][columnid]; + } + return table.data.length; + } + return cb ? cb(0) : 0; + } + + if (this.dropcolumn) { + let db = alasql.databases[this.table.databaseid || databaseid]; + db.dbversion++; + var tableid = this.table.tableid; + var table = db.tables[tableid]; + var columnid = this.dropcolumn; + + var found = false; + for (var j = 0; j < table.columns.length; j++) { + if (table.columns[j].columnid == columnid) { + found = true; + table.columns.splice(j, 1); + break; + } + } + + if (!found) { + throw new Error( + `Cannot drop column "${columnid}" because it was not found in the table ${tableid}"` + ); + } + + delete table.xcolumns[columnid]; + + for (i = 0, ilen = table.data.length; i < ilen; i++) { + delete table.data[i][columnid]; + } + + return cb ? cb(table.data.length) : table.data.length; + } + + throw Error('Unknown ALTER TABLE method'); + }; + /* +// +// CREATE TABLE for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.CreateIndex = function (params) { + return Object.assign(this, params); + }; + yy.CreateIndex.prototype.toString = function () { + var s = 'CREATE'; + if (this.unique) s += ' UNIQUE'; + s += ' INDEX ' + this.indexid + ' ON ' + this.table.toString(); + s += '(' + this.columns.toString() + ')'; + return s; + }; + + // CREATE TABLE + yy.CreateIndex.prototype.execute = function (databaseid, params, cb) { + // var self = this; + var db = alasql.databases[databaseid]; + var tableid = this.table.tableid; + var table = db.tables[tableid]; + var indexid = this.indexid; + db.indices[indexid] = tableid; + + var rightfns = this.columns + .map(function (expr) { + return expr.expression.toJS('r', ''); + }) + .join("+'`'+"); + + var rightfn = new Function('r,params,alasql', 'return ' + rightfns); + + if (this.unique) { + table.uniqdefs[indexid] = { + rightfns: rightfns, + }; + var ux = (table.uniqs[indexid] = {}); + if (table.data.length > 0) { + for (var i = 0, ilen = table.data.length; i < ilen; i++) { + var addr = rightfns(table.data[i]); + if (!ux[addr]) { + ux[addr] = {num: 0}; + } + ux[addr].num++; + } + } + } else { + var hh = hash(rightfns); + table.inddefs[indexid] = {rightfns: rightfns, hh: hh}; + table.indices[hh] = {}; + + var ix = (table.indices[hh] = {}); + if (table.data.length > 0) { + for (var i = 0, ilen = table.data.length; i < ilen; i++) { + var addr = rightfn(table.data[i], params, alasql); + if (!ix[addr]) { + ix[addr] = []; + } + ix[addr].push(table.data[i]); + } + } + } + var res = 1; + if (cb) res = cb(res); + return res; + }; + + yy.Reindex = function (params) { + return Object.assign(this, params); + }; + yy.Reindex.prototype.toString = function () { + var s = 'REINDEX ' + this.indexid; + return s; + }; + + // CREATE TABLE + yy.Reindex.prototype.execute = function (databaseid, params, cb) { + // var self = this; + var db = alasql.databases[databaseid]; + var indexid = this.indexid; + // console.log(db.indices); + var tableid = db.indices[indexid]; + var table = db.tables[tableid]; + table.indexColumns(); + var res = 1; + if (cb) res = cb(res); + return res; + }; + /* +// +// DROP TABLE for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.DropIndex = function (params) { + return Object.assign(this, params); + }; + yy.DropIndex.prototype.toString = function () { + return 'DROP INDEX' + this.indexid; + }; + + // DROP TABLE + yy.DropIndex.prototype.compile = function (db) { + var indexid = this.indexid; + return function () { + return 1; + }; + }; + /* +// +// WITH SELECT for Alasql.js +// Date: 11.01.2015 +// (c) 2015, Andrey Gershun +// +*/ + + yy.WithSelect = function (params) { + return Object.assign(this, params); + }; + yy.WithSelect.prototype.toString = function () { + var s = 'WITH '; + s += + this.withs + .map(function (w) { + return w.name + ' AS (' + w.select.toString() + ')'; + }) + .join(',') + ' '; + s += this.select.toString(); + return s; + }; + + yy.WithSelect.prototype.execute = function (databaseid, params, cb) { + var self = this; + // Create temporary tables + var savedTables = []; + self.withs.forEach(function (w) { + savedTables.push(alasql.databases[databaseid].tables[w.name]); + var tb = (alasql.databases[databaseid].tables[w.name] = new Table({ + tableid: w.name, + })); + tb.data = w.select.execute(databaseid, params); + }); + + var res = 1; + res = this.select.execute(databaseid, params, function (data) { + // Clear temporary tables + // setTimeout(function(){ + self.withs.forEach(function (w, idx) { + if (savedTables[idx]) alasql.databases[databaseid].tables[w.name] = savedTables[idx]; + else delete alasql.databases[databaseid].tables[w.name]; + }); + // },0); + + if (cb) data = cb(data); + return data; + }); + return res; + }; + + /*/* +// CREATE TABLE +//yy.CreateTable.prototype.compile = returnUndefined; +yy.CreateView.prototype.execute = function (databaseid) { +// var self = this; + var db = alasql.databases[this.view.databaseid || databaseid]; + var v = db.views[this.view.viewid] = new View(); + +// console.log(databaseid); +// console.log(db.databaseid,db.tables); +// console.log(table); + + return 1; +}; + +yy.DropView = function (params) { return Object.assign(this, params); } +yy.DropView.prototype.toString = function() { + var s = 'DROP'+' '+'VIEW'; + s += ' '+this.view.toString(); + return s; +}; + +// CREATE TABLE +//yy.CreateTable.prototype.compile = returnUndefined; +yy.DropView.prototype.execute = function (databaseid) { +// var self = this; +}; + +*/ + /* +// +// IF for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.If = function (params) { + return Object.assign(this, params); + }; + yy.If.prototype.toString = function () { + var s = 'IF' + ' '; + s += this.expression.toString(); + s += ' ' + this.thenstat.toString(); + if (this.elsestat) s += ' ELSE ' + this.thenstat.toString(); + return s; + }; + + // CREATE TABLE + // yy.CreateTable.prototype.compile = returnUndefined; + yy.If.prototype.execute = function (databaseid, params, cb) { + var res; + // console.log(this); + // console.log(this.expression.toJS('{}','',null)); + // console.log(); + var fn = new Function( + 'params,alasql,p', + 'var y;return ' + this.expression.toJS('({})', '', null) + ).bind(this); + // var fn = new Function('params,alasql,p','console.log(this.thenstat);return '+this.expression.toJS('({})','',null)).bind(this); + if (fn(params, alasql)) res = this.thenstat.execute(databaseid, params, cb); + else { + if (this.elsestat) res = this.elsestat.execute(databaseid, params, cb); + else { + if (cb) res = cb(res); + } + } + // else res = this.elsestat.execute(databaseid,params,cb,scope); + return res; + }; + /* +// +// CREATE VIEW for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.While = function (params) { + return Object.assign(this, params); + }; + yy.While.prototype.toString = function () { + var s = 'WHILE '; + s += this.expression.toString(); + s += ' ' + this.loopstat.toString(); + return s; + }; + + yy.While.prototype.execute = function (databaseid, params, cb) { + var self = this; + var res = []; + // console.log(this.expression.toJS()); + var fn = new Function('params,alasql,p', 'var y;return ' + this.expression.toJS()); + // console.log('cb',!!cb); + if (cb) { + var first = false; + var loop = function (data) { + if (first) { + res.push(data); + } else { + first = true; + } + setTimeout(function () { + if (fn(params, alasql)) { + self.loopstat.execute(databaseid, params, loop); + } else { + res = cb(res); + } + }, 0); + }; + loop(); + } else { + while (fn(params, alasql)) { + var res1 = self.loopstat.execute(databaseid, params); + res.push(res1); + } + } + return res; + }; + + yy.Break = function (params) { + return Object.assign(this, params); + }; + yy.Break.prototype.toString = function () { + var s = 'BREAK'; + return s; + }; + + yy.Break.prototype.execute = function (databaseid, params, cb, scope) { + var res = 1; + if (cb) res = cb(res); + return res; + }; + + yy.Continue = function (params) { + return Object.assign(this, params); + }; + yy.Continue.prototype.toString = function () { + var s = 'CONTINUE'; + return s; + }; + + yy.Continue.prototype.execute = function (databaseid, params, cb, scope) { + var res = 1; + if (cb) res = cb(res); + return res; + }; + + yy.BeginEnd = function (params) { + return Object.assign(this, params); + }; + yy.BeginEnd.prototype.toString = function () { + var s = 'BEGIN ' + this.statements.toString() + ' END'; + return s; + }; + + yy.BeginEnd.prototype.execute = function (databaseid, params, cb, scope) { + var self = this; + var res = []; + + var idx = 0; + runone(); + function runone() { + self.statements[idx].execute(databaseid, params, function (data) { + res.push(data); + idx++; + if (idx < self.statements.length) return runone(); + if (cb) res = cb(res); + }); + } + return res; + }; + /* +// +// INSERT for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + /* global yy alasql*/ + yy.Insert = function (params) { + return Object.assign(this, params); + }; + yy.Insert.prototype.toString = function () { + var s = 'INSERT '; + if (this.orreplace) s += 'OR REPLACE '; + if (this.replaceonly) s = 'REPLACE '; + s += 'INTO ' + this.into.toString(); + if (this.columns) s += '(' + this.columns.toString() + ')'; + if (this.values) { + var values = this.values.map(function (value) { + return '(' + value.toString() + ')'; + }); + s += ' VALUES ' + values.join(','); + } + if (this.select) s += ' ' + this.select.toString(); + return s; + }; + + yy.Insert.prototype.toJS = function (context, tableid, defcols) { + // console.log('Expression',this); + // if(this.expression.reduced) return 'true'; + // return this.expression.toJS(context, tableid, defcols); + // console.log('Select.toJS', 81, this.queriesidx); + // var s = 'this.queriesdata['+(this.queriesidx-1)+'][0]'; + + var s = 'this.queriesfn[' + (this.queriesidx - 1) + '](this.params,null,' + context + ')'; + // s = '(console.log(this.queriesfn[0]),'+s+')'; + // console.log(this,s); + + return s; + }; + + yy.Insert.prototype.compile = function (databaseid) { + var self = this; + databaseid = self.into.databaseid || databaseid; + var db = alasql.databases[databaseid]; + // console.log(self); + var tableid = self.into.tableid; + var table = db.tables[tableid]; + + if (!table) { + throw "Table '" + tableid + "' could not be found"; + } + + // Check, if this dirty flag is required + var s = ''; + var sw = ''; + var s = "db.tables['" + tableid + "'].dirty=true;"; + var s3 = 'var a,aa=[],x;'; + + var s33; + + // INSERT INTO table VALUES + if (this.values) { + if (this.exists) { + this.existsfn = this.exists.map(function (ex) { + var nq = ex.compile(databaseid); + nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + if (this.queries) { + this.queriesfn = this.queries.map(function (q) { + var nq = q.compile(databaseid); + nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + + // console.log(1); + self.values.forEach(function (values) { + var ss = []; + + // s += 'db.tables[\''+tableid+'\'].data.push({'; + + // s += ''; + if (self.columns) { + self.columns.forEach(function (col, idx) { + //console.log(db.tables, tableid, table); + // ss.push(col.columnid +':'+ self.values[idx].value.toString()); + // console.log(rec[f.name.value]); + // if(rec[f.name.value] == "NULL") rec[f.name.value] = undefined; + + // if(table.xflds[f.name.value].dbtypeid == "INT") rec[f.name.value] = +rec[f.name.value]|0; + // else if(table.xflds[f.name.value].dbtypeid == "FLOAT") rec[f.name.value] = +rec[f.name.value]; + var q = "'" + col.columnid + "':"; + if (table.xcolumns && table.xcolumns[col.columnid]) { + if ( + ['INT', 'FLOAT', 'NUMBER', 'MONEY'].indexOf( + table.xcolumns[col.columnid].dbtypeid + ) >= 0 + ) { + //q += '' + q += '(x=' + values[idx].toJS() + ',x==undefined?undefined:+x)'; + } else if (alasql.fn[table.xcolumns[col.columnid].dbtypeid]) { + q += '(new ' + table.xcolumns[col.columnid].dbtypeid + '('; + q += values[idx].toJS(); + q += '))'; + } else { + q += values[idx].toJS(); + } + } else { + q += values[idx].toJS(); + } + ss.push(q); + }); + } else { + // var table = db.tables[tableid]; + // console.log('table1', db, self); + //console.log(111, table.columns); + //console.log(74,table); + if (Array.isArray(values) && table.columns && table.columns.length > 0) { + table.columns.forEach(function (col, idx) { + var q = "'" + col.columnid + "':"; + // var val = values[idx].toJS(); + + if (['INT', 'FLOAT', 'NUMBER', 'MONEY'].indexOf(col.dbtypeid) >= 0) { + q += '+' + values[idx].toJS(); + } else if (alasql.fn[col.dbtypeid]) { + q += '(new ' + col.dbtypeid + '('; + q += values[idx].toJS(); + q += '))'; + } else { + q += values[idx].toJS(); + } + /*/* + // if(table.xcolumns && table.xcolumns[col.columnid] && + // (table.xcolumns[col.columnid].dbtypeid == "DATE" || + // table.xcolumns[col.columnid].dbtypeid == "DATETIME" + // )) { + // val = "(new Date("+val+"))"; + // } + // || table.xcolumns[col.columnid].dbtypeid == "FLOAT" + // || table.xcolumns[col.columnid].dbtypeid == "NUMBER" + // || table.xcolumns[col.columnid].dbtypeid == "MONEY" + // )) q += '+'; + // console.log(self.values[idx].toString()); + //console.log(self); +// q += val; + + // if(table.xcolumns && table.xcolumns[col.columnid] && table.xcolumns[col.columnid].dbtypeid == "INT") q += '|0'; +*/ + + ss.push(q); + /*/* + // console.log(fld); + // TODO: type checking and conversions + // rec[fld.fldid] = eval(self.insertExpression[idx].toJS('','')); + // console.log(rec[fld.fldid]); + // if(rec[fld.fldid] == "NULL") rec[fld.fldid] = undefined; + + // if(table.xflds[fld.fldid].dbtypeid == "INT") rec[fld.fldid] = +rec[fld.fldid]|0; + // else if(table.xflds[fld.fldid].dbtypeid == "FLOAT" || table.xflds[fld.fldid].dbtypeid == "MONEY" ) + // rec[fld.fldid] = +rec[fld.fldid]; +*/ + }); + } else { + // console.log(222,values); + // sw = 'var w='+JSONtoJS(values)+';for(var k in w){r[k]=w[k]};'; + sw = JSONtoJS(values); + } + } + //console.log(ss); + + if (db.tables[tableid].defaultfns) { + ss.unshift(db.tables[tableid].defaultfns); + } + if (sw) { + s += 'a=' + sw + ';'; + } else { + s += 'a={' + ss.join(',') + '};'; + } + + // If this is a class + if (db.tables[tableid].isclass) { + s += "var db=alasql.databases['" + databaseid + "'];"; + s += 'a.$class="' + tableid + '";'; + s += 'a.$id=db.counter++;'; + s += 'db.objects[a.$id]=a;'; + } + // s += 'db.tables[\''+tableid+'\'].insert(r);'; + if (db.tables[tableid].insert) { + s += "var db=alasql.databases['" + databaseid + "'];"; + s += + "db.tables['" + tableid + "'].insert(a," + (self.orreplace ? 'true' : 'false') + ');'; + } else { + s += 'aa.push(a);'; + } + }); + + s33 = s3 + s; + + if (db.tables[tableid].insert) { + // s += 'alasql.databases[\''+databaseid+'\'].tables[\''+tableid+'\'].insert(r);'; + } else { + s += + "alasql.databases['" + + databaseid + + "'].tables['" + + tableid + + "'].data=" + + "alasql.databases['" + + databaseid + + "'].tables['" + + tableid + + "'].data.concat(aa);"; + } + + if (db.tables[tableid].insert) { + if (db.tables[tableid].isclass) { + s += 'return a.$id;'; + } else { + s += 'return ' + self.values.length; + } + } else { + s += 'return ' + self.values.length; + } + + //console.log(186,s3+s); + var insertfn = new Function('db, params, alasql', 'var y;' + s3 + s).bind(this); + + // INSERT INTO table SELECT + } else if (this.select) { + this.select.modifier = 'RECORDSET'; + if (this.queries) { + this.select.queries = this.queries; + } + var selectfn = this.select.compile(databaseid); + if (db.engineid && alasql.engines[db.engineid].intoTable) { + var statement = function (params, cb) { + var aa = selectfn(params); + var res = alasql.engines[db.engineid].intoTable( + db.databaseid, + tableid, + aa.data, + null, + cb + ); + return res; + }; + return statement; + } else { + // console.log(224,table.defaultfns); + var defaultfns = 'return alasql.utils.extend(r,{' + table.defaultfns + '})'; + var defaultfn = new Function('r,db,params,alasql', defaultfns); + var insertfn = function (db, params, alasql) { + var res = selectfn(params).data; + if (db.tables[tableid].insert) { + // If insert() function exists (issue #92) + for (var i = 0, ilen = res.length; i < ilen; i++) { + var r = cloneDeep(res[i]); + defaultfn(r, db, params, alasql); + db.tables[tableid].insert(r, self.orreplace); + } + } else { + db.tables[tableid].data = db.tables[tableid].data.concat(res); + } + if (alasql.options.nocount) return; + else return res.length; + }; + } + } else if (this.default) { + var insertfns = + "db.tables['" + tableid + "'].data.push({" + table.defaultfns + '});return 1;'; + var insertfn = new Function('db,params,alasql', insertfns); + } else { + throw new Error('Wrong INSERT parameters'); + } + + // console.log(1,s); + // console.log(s33); + + if (db.engineid && alasql.engines[db.engineid].intoTable && alasql.options.autocommit) { + var statement = function (params, cb) { + var aa = new Function('db,params', 'var y;' + s33 + 'return aa;')(db, params); + // console.log(s33); + var res = alasql.engines[db.engineid].intoTable(db.databaseid, tableid, aa, null, cb); + // if(cb) cb(res); + return res; + }; + } else { + var statement = function (params, cb) { + //console.log(databaseid); + var db = alasql.databases[databaseid]; + + if (alasql.options.autocommit && db.engineid) { + alasql.engines[db.engineid].loadTableData(databaseid, tableid); + } + + var res = insertfn(db, params, alasql); + + if (alasql.options.autocommit && db.engineid) { + alasql.engines[db.engineid].saveTableData(databaseid, tableid); + } + // var res = insertfn(db, params); + if (alasql.options.nocount) res = undefined; + if (cb) cb(res); + return res; + }; + } + + return statement; + }; + + yy.Insert.prototype.execute = function (databaseid, params, cb) { + return this.compile(databaseid)(params, cb); + // throw new Error('Insert statement is should be compiled') + }; + /* +// +// TRIGGER for Alasql.js +// Date: 29.12.2015 +// +*/ + + yy.CreateTrigger = function (params) { + return Object.assign(this, params); + }; + yy.CreateTrigger.prototype.toString = function () { + var s = 'CREATE TRIGGER ' + this.trigger + ' '; + if (this.when) s += this.when + ' '; + s += this.action + ' ON '; + if (this.table.databaseid) s += this.table.databaseid + '.'; + s += this.table.tableid + ' '; + s += this.statement.toString(); + return s; + }; + + const validTriggers = [ + 'beforeinsert', + 'afterinsert', + 'insteadofinsert', + 'beforedelete', + 'afterdelete', + 'insteadofdelete', + 'beforeupdate', + 'afterupdate', + 'insteadofupdate', + ]; + + yy.CreateTrigger.prototype.execute = function (databaseid, params, cb) { + let res = 1; // No tables removed + const triggerid = this.trigger; + databaseid = this.table.databaseid || databaseid; + const db = alasql.databases[databaseid]; + const {tableid} = this.table; + + const trigger = { + action: this.action, + when: this.when, + statement: this.statement, + funcid: this.funcid, + tableid, + }; + + db.triggers[triggerid] = trigger; + const actionKey = `${this.when}${this.action}`.toLowerCase(); + + if (validTriggers.includes(actionKey)) { + // Ensure the existence of db.tables[tableid] and db.tables[tableid][actionKey] + db.tables[tableid] = db.tables[tableid] || {}; + db.tables[tableid][actionKey] = db.tables[tableid][actionKey] || {}; + db.tables[tableid][actionKey][triggerid] = trigger; + } + + if (cb) res = cb(res); + return res; + }; + + yy.DropTrigger = function (params) { + return Object.assign(this, params); + }; + yy.DropTrigger.prototype.toString = function () { + var s = 'DROP TRIGGER ' + this.trigger; + return s; + }; + + /** + Drop trigger + @param {string} databaseid Database id + @param {object} params Parameters + @param {callback} cb Callback function + @return Number of dropped triggers + @example + DROP TRIGGER one; +*/ + yy.DropTrigger.prototype.execute = function (databaseid, params, cb) { + let res = 0; // No tables removed + const db = alasql.databases[databaseid]; + const triggerid = this.trigger; + + // Get the trigger + const trigger = db.triggers[triggerid]; + + // If the trigger exists + if (trigger) { + const {tableid} = trigger; + + if (tableid) { + res = 1; + + // Delete the trigger from all trigger points + validTriggers.forEach(point => { + delete db.tables[tableid][point][triggerid]; + }); + + // Finally, delete the trigger itself + delete db.triggers[triggerid]; + } else { + throw new Error('Trigger Table not found'); + } + } else { + throw new Error('Trigger not found'); + } + + if (cb) res = cb(res); + return res; + }; + /* +// +// DELETE for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.Delete = function (params) { + return Object.assign(this, params); + }; + yy.Delete.prototype.toString = function () { + var s = 'DELETE FROM ' + this.table.toString(); + if (this.where) s += ' WHERE ' + this.where.toString(); + return s; + }; + + yy.Delete.prototype.compile = function (databaseid) { + databaseid = this.table.databaseid || databaseid; + var tableid = this.table.tableid; + var statement; + var db = alasql.databases[databaseid]; + + if (this.where) { + if (this.exists) { + this.existsfn = this.exists.map(function (ex) { + var nq = ex.compile(databaseid); + nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + + if (this.queries) { + this.queriesfn = this.queries.map(function (q) { + var nq = q.compile(databaseid); + nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + + var wherefn = new Function( + 'r,params,alasql', + 'var y;return (' + this.where.toJS('r', '') + ')' + ).bind(this); + + statement = function (params, cb) { + if (db.engineid && alasql.engines[db.engineid].deleteFromTable) { + return alasql.engines[db.engineid].deleteFromTable( + databaseid, + tableid, + wherefn, + params, + cb + ); + } + + if ( + alasql.options.autocommit && + db.engineid && + (db.engineid == 'LOCALSTORAGE' || db.engineid == 'FILESTORAGE') + ) { + alasql.engines[db.engineid].loadTableData(databaseid, tableid); + } + + var table = db.tables[tableid]; + var orignum = table.data.length; + + var newtable = []; + for (var i = 0, ilen = table.data.length; i < ilen; i++) { + if (wherefn(table.data[i], params, alasql)) { + // Check for transaction - if it is not possible then return all back + if (table.delete) { + table.delete(i, params, alasql); + } else { + // Simply do not push + } + } else { + newtable.push(table.data[i]); + } + } + table.data = newtable; + + // Trigger prevent functionality + for (var tr in table.afterdelete) { + var trigger = table.afterdelete[tr]; + if (trigger) { + if (trigger.funcid) { + alasql.fn[trigger.funcid](); + } else if (trigger.statement) { + trigger.statement.execute(databaseid); + } + } + } + + var res = orignum - table.data.length; + if ( + alasql.options.autocommit && + db.engineid && + (db.engineid == 'LOCALSTORAGE' || db.engineid == 'FILESTORAGE') + ) { + alasql.engines[db.engineid].saveTableData(databaseid, tableid); + } + + if (cb) res = cb(res); + + return res; + }; + } else { + statement = function (params, cb) { + if (alasql.options.autocommit && db.engineid) { + alasql.engines[db.engineid].loadTableData(databaseid, tableid); + } + + var table = db.tables[tableid]; + table.dirty = true; + var orignum = db.tables[tableid].data.length; + // Delete all records from the array + db.tables[tableid].data.length = 0; + + // Reset PRIMARY KEY and indexes + for (var ix in db.tables[tableid].uniqs) { + db.tables[tableid].uniqs[ix] = {}; + } + + for (var ix in db.tables[tableid].indices) { + db.tables[tableid].indices[ix] = {}; + } + + if (alasql.options.autocommit && db.engineid) { + alasql.engines[db.engineid].saveTableData(databaseid, tableid); + } + + if (cb) cb(orignum); + return orignum; + }; + } + + return statement; + }; + + yy.Delete.prototype.execute = function (databaseid, params, cb) { + return this.compile(databaseid)(params, cb); + }; + /* +// +// UPDATE for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + /* global yy alasql */ + + yy.Update = function (params) { + return Object.assign(this, params); + }; + yy.Update.prototype.toString = function () { + var s = 'UPDATE ' + this.table.toString(); + if (this.columns) s += ' SET ' + this.columns.toString(); + if (this.where) s += ' WHERE ' + this.where.toString(); + return s; + }; + + yy.SetColumn = function (params) { + return Object.assign(this, params); + }; + yy.SetColumn.prototype.toString = function () { + return this.column.toString() + '=' + this.expression.toString(); + }; + + yy.Update.prototype.compile = function (databaseid) { + // console.log(this); + databaseid = this.table.databaseid || databaseid; + var tableid = this.table.tableid; + + if (this.where) { + if (this.exists) { + this.existsfn = this.exists.map(function (ex) { + var nq = ex.compile(databaseid); + nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + if (this.queries) { + this.queriesfn = this.queries.map(function (q) { + var nq = q.compile(databaseid); + nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + + // console.log(73625, this.where.toJS('r', '')); + var wherefn = new Function( + 'r,params,alasql', + 'var y;return ' + this.where.toJS('r', '') + ).bind(this); + } + + // Construct update function + var s = alasql.databases[databaseid].tables[tableid].onupdatefns || ''; + s += ';'; + this.columns.forEach(function (col) { + s += "r['" + col.column.columnid + "']=" + col.expression.toJS('r', '') + ';'; + }); + // console.log(423623, s); + var assignfn = new Function('r,params,alasql', 'var y;' + s); + + var statement = function (params, cb) { + var db = alasql.databases[databaseid]; + + // console.log(db.engineid); + // console.log(db.engineid && alasql.engines[db.engineid].updateTable); + if (db.engineid && alasql.engines[db.engineid].updateTable) { + // console.log('updateTable'); + return alasql.engines[db.engineid].updateTable( + databaseid, + tableid, + assignfn, + wherefn, + params, + cb + ); + } + + if (alasql.options.autocommit && db.engineid) { + alasql.engines[db.engineid].loadTableData(databaseid, tableid); + } + + var table = db.tables[tableid]; + if (!table) { + throw new Error("Table '" + tableid + "' not exists"); + } + // table.dirty = true; + var numrows = 0; + for (var i = 0, ilen = table.data.length; i < ilen; i++) { + if (!wherefn || wherefn(table.data[i], params, alasql)) { + if (table.update) { + table.update(assignfn, i, params); + } else { + assignfn(table.data[i], params, alasql); + } + numrows++; + } + } + + if (alasql.options.autocommit && db.engineid) { + alasql.engines[db.engineid].saveTableData(databaseid, tableid); + } + + if (cb) cb(numrows); + return numrows; + }; + return statement; + }; + + yy.Update.prototype.execute = function (databaseid, params, cb) { + return this.compile(databaseid)(params, cb); + }; + /* +// +// SET for Alasql.js +// Date: 01.12.2014 +// (c) 2014, Andrey Gershun +// +*/ + + /* global alasql, yy */ + + yy.Merge = function (params) { + return Object.assign(this, params); + }; + yy.Merge.prototype.toString = function () { + let s = `MERGE ${this.into.tableid} `; + if (this.into.as) s += `AS ${this.into.as} `; + s += `USING ${this.using.tableid} `; + if (this.using.as) s += `AS ${this.using.as} `; + s += `ON ${this.on.toString()} `; + + this.matches.forEach(m => { + s += 'WHEN '; + if (!m.matched) s += 'NOT '; + s += 'MATCHED '; + if (m.bytarget) s += 'BY TARGET '; + if (m.bysource) s += 'BY SOURCE '; + if (m.expr) s += `AND ${m.expr.toString()} `; + s += 'THEN '; + if (m.action.delete) s += 'DELETE '; + if (m.action.insert) { + s += 'INSERT '; + if (m.action.columns) s += `(${m.action.columns.toString()}) `; + if (m.action.values) s += `VALUES (${m.action.values.toString()}) `; + if (m.action.defaultvalues) s += 'DEFAULT VALUES '; + } + if (m.action.update) { + s += 'UPDATE '; + s += m.action.update.map(u => u.toString()).join(', ') + ' '; + } + }); + + return s; + }; + + yy.Merge.prototype.execute = function (databaseid, params, cb) { + var res = 1; + + if (cb) res = cb(res); + return res; + }; + /* +// +// UPDATE for Alasql.js +// Date: 03.11.2014 +// Modified: 16.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + /* global yy alasql */ + + // CREATE DATABASE databaseid + yy.CreateDatabase = function (params) { + return Object.assign(this, params); + }; + yy.CreateDatabase.prototype.toString = function () { + let s = 'CREATE '; // Ensure there's a space after CREATE + if (this.engineid) s += `${this.engineid} `; + s += 'DATABASE '; + if (this.ifnotexists) s += 'IF NOT EXISTS '; + s += `${this.databaseid} `; + + if (this.args && this.args.length > 0) { + s += `(${this.args.map(arg => arg.toString()).join(', ')}) `; + } + if (this.as) s += `AS ${this.as}`; + return s; + }; + + yy.CreateDatabase.prototype.execute = function (databaseid, params, cb) { + var args; + if (this.args && this.args.length > 0) { + args = this.args.map(function (arg) { + // console.log(346235, arg.toJS()); + return new Function('params,alasql', 'var y;return ' + arg.toJS())(params, alasql); + }); + } + if (this.engineid) { + var res = alasql.engines[this.engineid].createDatabase( + this.databaseid, + this.args, + this.ifnotexists, + this.as, + cb + ); + return res; + } else { + var dbid = this.databaseid; + if (alasql.databases[dbid]) { + throw new Error("Database '" + dbid + "' already exists"); + } + var a = new alasql.Database(dbid); + var res = 1; + if (cb) return cb(res); + return res; + } + }; + + // CREATE DATABASE databaseid + yy.AttachDatabase = function (params) { + return Object.assign(this, params); + }; + yy.AttachDatabase.prototype.toString = function (args) { + let s = 'ATTACH'; + if (this.engineid) s += ` ${this.engineid}`; + s += ` DATABASE ${this.databaseid}`; + // TODO add params + if (args) { + s += '('; + if (args.length > 0) { + s += args.map(arg => arg.toString()).join(', '); + } + s += ')'; + } + if (this.as) s += ` AS ${this.as}`; + return s; + }; + + yy.AttachDatabase.prototype.execute = function (databaseid, params, cb) { + if (!alasql.engines[this.engineid]) { + throw new Error('Engine "' + this.engineid + '" is not defined.'); + } + var res = alasql.engines[this.engineid].attachDatabase( + this.databaseid, + this.as, + this.args, + params, + cb + ); + return res; + }; + + // CREATE DATABASE databaseid + yy.DetachDatabase = function (params) { + return Object.assign(this, params); + }; + yy.DetachDatabase.prototype.toString = function () { + var s = 'DETACH'; + s += ' DATABASE' + ' ' + this.databaseid; + return s; + }; + //yy.CreateDatabase.prototype.compile = returnUndefined; + yy.DetachDatabase.prototype.execute = function (databaseid, params, cb) { + if (!alasql.databases[this.databaseid].engineid) { + throw new Error( + 'Cannot detach database "' + this.engineid + '", because it was not attached.' + ); + } + var res; + + var dbid = this.databaseid; + + if (dbid === alasql.DEFAULTDATABASEID) { + throw new Error('Drop of default database is prohibited'); + } + + if (!alasql.databases[dbid]) { + if (!this.ifexists) { + throw new Error("Database '" + dbid + "' does not exist"); + } else { + res = 0; + } + } else { + // Usually databases are detached and then dropped. Detaching will delete + // the database object from memory. While this is OK for in-memory and + // other persistent databases, for FileStorage DBs, we will + // not be able to delete the DB file (.json) since we would have lost + // the filename by deleting the in-memory database object here. + // For this reason, to delete the associated JSON file, + // keeping the name of the file alone as a property inside the db object + // until it gets DROPped subsequently (only for FileStorage DBs) + var isFS = + alasql.databases[dbid].engineid && alasql.databases[dbid].engineid == 'FILESTORAGE', + filename = alasql.databases[dbid].filename || ''; + + delete alasql.databases[dbid]; + + if (isFS) { + // Create a detached FS database + alasql.databases[dbid] = {}; + alasql.databases[dbid].isDetached = true; + alasql.databases[dbid].filename = filename; + } + + if (dbid === alasql.useid) { + alasql.use(); + } + res = 1; + } + if (cb) cb(res); + return res; + }; + + // USE DATABSE databaseid + // USE databaseid + yy.UseDatabase = function (params) { + return Object.assign(this, params); + }; + yy.UseDatabase.prototype.toString = function () { + return 'USE' + ' ' + 'DATABASE' + ' ' + this.databaseid; + }; + //yy.UseDatabase.prototype.compile = returnUndefined; + yy.UseDatabase.prototype.execute = function (databaseid, params, cb) { + var dbid = this.databaseid; + if (!alasql.databases[dbid]) { + throw new Error("Database '" + dbid + "' does not exist"); + } + alasql.use(dbid); + var res = 1; + if (cb) cb(res); + return res; + }; + + // DROP DATABASE databaseid + yy.DropDatabase = function (params) { + return Object.assign(this, params); + }; + yy.DropDatabase.prototype.toString = function () { + var s = 'DROP'; + if (this.ifexists) s += ' IF EXISTS'; + s += ' DATABASE ' + this.databaseid; + return s; + }; + //yy.DropDatabase.prototype.compile = returnUndefined; + yy.DropDatabase.prototype.execute = function (databaseid, params, cb) { + if (this.engineid) { + return alasql.engines[this.engineid].dropDatabase(this.databaseid, this.ifexists, cb); + } + let res; + + const dbid = this.databaseid; + + if (dbid === alasql.DEFAULTDATABASEID) { + throw new Error('Drop of default database is prohibited'); + } + if (!alasql.databases[dbid]) { + if (!this.ifexists) { + throw new Error(`Database '${dbid}' does not exist`); + } else { + res = 0; + } + } else { + if (alasql.databases[dbid].engineid) { + throw new Error(`Cannot drop database '${dbid}', because it is attached. Detach it.`); + } + + delete alasql.databases[dbid]; + if (dbid === alasql.useid) { + alasql.use(); + } + res = 1; + } + if (cb) cb(res); + return res; + }; + /* +// +// SET for Alasql.js +// Date: 01.12.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.Declare = function (params) { + return Object.assign(this, params); + }; + yy.Declare.prototype.toString = function () { + let s = 'DECLARE '; + if (this.declares && this.declares.length > 0) { + s += this.declares + .map(declare => { + let declareStr = `@${declare.variable} ${declare.dbtypeid}`; + if (declare.dbsize) { + declareStr += `(${declare.dbsize}`; + if (declare.dbprecision) { + declareStr += `,${declare.dbprecision}`; + } + declareStr += ')'; + } + if (declare.expression) { + declareStr += ` = ${declare.expression.toString()}`; + } + return declareStr; + }) + .join(','); + } + return s; + }; + + yy.Declare.prototype.execute = function (databaseid, params, cb) { + var res = 1; + var that = this; // without this assigned to a variable, inside the forEach, the reference to `this` is lost. It is needed for the Function statement for binding + if (that.declares && that.declares.length > 0) { + that.declares.forEach(function (declare) { + var dbtypeid = declare.dbtypeid; + if (!alasql.fn[dbtypeid]) { + dbtypeid = dbtypeid.toUpperCase(); + } + alasql.declares[declare.variable] = { + dbtypeid: dbtypeid, + dbsize: declare.dbsize, + dbprecision: declare.dbprecision, + }; + + // Set value + if (declare.expression) { + // console.log(7547654, declare.expression.toJS('', '', null)); + alasql.vars[declare.variable] = new Function( + 'params,alasql', + 'return ' + declare.expression.toJS('({})', '', null) + ).bind(that)(params, alasql); + if (alasql.declares[declare.variable]) { + alasql.vars[declare.variable] = alasql.stdfn.CONVERT( + alasql.vars[declare.variable], + alasql.declares[declare.variable] + ); + } + } + }); + } + if (cb) { + res = cb(res); + } + return res; + }; + /* +// +// SHOW for Alasql.js +// Date: 19.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.ShowDatabases = function (params) { + return Object.assign(this, params); + }; + yy.ShowDatabases.prototype.toString = function () { + var s = 'SHOW DATABASES'; + if (this.like) s += 'LIKE ' + this.like.toString(); + return s; + }; + yy.ShowDatabases.prototype.execute = function (databaseid, params, cb) { + if (this.engineid) { + return alasql.engines[this.engineid].showDatabases(this.like, cb); + } else { + var self = this; + var res = []; + for (var dbid in alasql.databases) { + res.push({databaseid: dbid}); + } + if (self.like && res && res.length > 0) { + res = res.filter(function (d) { + // return d.databaseid.match(new RegExp((self.like.value||'').replace(/\%/g,'.*').replace(/\?|_/g,'.'),'g')); + return alasql.utils.like(self.like.value, d.databaseid); + }); + } + if (cb) cb(res); + return res; + } + }; + + yy.ShowTables = function (params) { + return Object.assign(this, params); + }; + yy.ShowTables.prototype.toString = function () { + var s = 'SHOW TABLES'; + if (this.databaseid) s += ' FROM ' + this.databaseid; + if (this.like) s += ' LIKE ' + this.like.toString(); + return s; + }; + yy.ShowTables.prototype.execute = function (databaseid, params, cb) { + var db = alasql.databases[this.databaseid || databaseid]; + + var self = this; + var res = []; + for (var tableid in db.tables) { + res.push({tableid: tableid}); + } + if (self.like && res && res.length > 0) { + res = res.filter(function (d) { + //return d.tableid.match(new RegExp((self.like.value||'').replace(/\%/g,'.*').replace(/\?|_/g,'.'),'g')); + return alasql.utils.like(self.like.value, d.tableid); + }); + } + if (cb) cb(res); + return res; + }; + + yy.ShowColumns = function (params) { + return Object.assign(this, params); + }; + yy.ShowColumns.prototype.toString = function () { + var s = 'SHOW COLUMNS'; + if (this.table.tableid) s += ' FROM ' + this.table.tableid; + if (this.databaseid) s += ' FROM ' + this.databaseid; + return s; + }; + + yy.ShowColumns.prototype.execute = function (databaseid, params, cb) { + var db = alasql.databases[this.databaseid || databaseid]; + var table = db.tables[this.table.tableid]; + + if (table && table.columns) { + var res = table.columns.map(function (col) { + return { + columnid: col.columnid, + dbtypeid: col.dbtypeid, + dbsize: col.dbsize, + }; + }); + if (cb) cb(res); + return res; + } else { + if (cb) cb([]); + return []; + } + }; + + yy.ShowIndex = function (params) { + return Object.assign(this, params); + }; + yy.ShowIndex.prototype.toString = function () { + var s = 'SHOW INDEX'; + if (this.table.tableid) s += ' FROM ' + this.table.tableid; + if (this.databaseid) s += ' FROM ' + this.databaseid; + return s; + }; + yy.ShowIndex.prototype.execute = function (databaseid, params, cb) { + var db = alasql.databases[this.databaseid || databaseid]; + var table = db.tables[this.table.tableid]; + var res = []; + if (table && table.indices) { + for (var ind in table.indices) { + res.push({hh: ind, len: Object.keys(table.indices[ind]).length}); + } + } + + if (cb) cb(res); + return res; + }; + + yy.ShowCreateTable = function (params) { + return Object.assign(this, params); + }; + yy.ShowCreateTable.prototype.toString = function () { + var s = 'SHOW CREATE TABLE ' + this.table.tableid; + if (this.databaseid) s += ' FROM ' + this.databaseid; + return s; + }; + yy.ShowCreateTable.prototype.execute = function (databaseid) { + var db = alasql.databases[this.databaseid || databaseid]; + var table = db.tables[this.table.tableid]; + if (table) { + var s = 'CREATE TABLE ' + this.table.tableid + ' ('; + var ss = []; + if (table.columns) { + table.columns.forEach(function (col) { + var a = col.columnid + ' ' + col.dbtypeid; + if (col.dbsize) a += '(' + col.dbsize + ')'; + if (col.primarykey) a += ' PRIMARY KEY'; + // TODO extend + ss.push(a); + }); + s += ss.join(', '); + } + s += ')'; + return s; + } else { + throw new Error('There is no such table "' + this.table.tableid + '"'); + } + }; + /* +// +// SET for Alasql.js +// Date: 01.12.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.SetVariable = function (params) { + return Object.assign(this, params); + }; + yy.SetVariable.prototype.toString = function () { + var s = 'SET '; + if (typeof this.value != 'undefined') + s += this.variable.toUpperCase() + ' ' + (this.value ? 'ON' : 'OFF'); + if (this.expression) s += this.method + this.variable + ' = ' + this.expression.toString(); + return s; + }; + + yy.SetVariable.prototype.execute = function (databaseid, params, cb) { + if (typeof this.value !== 'undefined') { + let val = this.value; + if (val === 'ON') val = true; + else if (val === 'OFF') val = false; + alasql.options[this.variable] = val; + } else if (this.expression) { + if (this.exists) { + this.existsfn = this.exists.map(ex => { + let nq = ex.compile(databaseid); + if (nq.query && !nq.query.modifier) nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + if (this.queries) { + this.queriesfn = this.queries.map(q => { + let nq = q.compile(databaseid); + if (nq.query && !nq.query.modifier) nq.query.modifier = 'RECORDSET'; + return nq; + }); + } + + let res = new Function( + 'params, alasql', + 'return ' + this.expression.toJS('({})', '', null) + ).bind(this)(params, alasql); + + if (alasql.declares[this.variable]) { + res = alasql.stdfn.CONVERT(res, alasql.declares[this.variable]); + } + + if (this.props && this.props.length > 0) { + let fs; + if (this.method === '@') { + fs = `alasql.vars['${this.variable}']`; + } else { + fs = `params['${this.variable}']`; + } + this.props.forEach(prop => { + if (typeof prop === 'string') { + fs += `['${prop}']`; + } else if (typeof prop === 'number') { + fs += `[${prop}]`; + } else { + // Assuming prop.toJS() is a method that converts prop to a JavaScript expression. + fs += `[${prop.toJS()}]`; + } + }); + + new Function('value, params, alasql', `${fs} = value`)(res, params, alasql); + } else { + if (this.method === '@') { + alasql.vars[this.variable] = res; + } else { + params[this.variable] = res; + } + } + } + + let result = 1; + if (cb) result = cb(result); + return result; + }; + alasql.test = function (name, times, fn) { + if (arguments.length === 0) { + alasql.log(alasql.con.results); + return; + } + + var tm = Date.now(); + + if (arguments.length === 1) { + fn(); + alasql.con.log(Date.now() - tm); + return; + } + + if (arguments.length === 2) { + fn = times; + times = 1; + } + + for (var i = 0; i < times; i++) { + fn(); + } + alasql.con.results[name] = Date.now() - tm; + }; + + // Console + // alasql.log = function(sql, params) { + // var res; + // if(typeof sql == "string") { + // res = alasql(sql, params); + // } else { + // res = sql; + // }; + // if(Array.isArray(res)) { + // if(console.table) { + // console.table(res); + // } else { + // console.log(res); + // } + // } else { + // console.log(res); + // } + // }; + + /* global alasql, yy, utils */ + + // Console + alasql.log = function (sql, params) { + var olduseid = alasql.useid; + var target = alasql.options.logtarget; + // For node other + if (utils.isNode) { + target = 'console'; + } + + var res; + if (typeof sql === 'string') { + res = alasql(sql, params); + } else { + res = sql; + } + + // For Node and console.output + if (target === 'console' || utils.isNode) { + if (typeof sql === 'string' && alasql.options.logprompt) { + console.log(olduseid + '>', sql); + } + + if (Array.isArray(res)) { + if (console.table) { + // For Chrome and other consoles + console.table(res); + } else { + // Add print procedure + console.log(JSONtoString(res)); + } + } else { + console.log(JSONtoString(res)); + } + } else { + var el; + if (target === 'output') { + el = document.getElementsByTagName('output')[0]; + } else { + if (typeof target === 'string') { + el = document.getElementById(target); + } else { + // in case of DOM + el = target; + } + } + + var s = ''; + + if (typeof sql === 'string' && alasql.options.logprompt) { + // s += '

'+olduseid+'> '+alasql.pretty(sql)+'

'; + s += '
' + alasql.pretty(sql) + '
'; + } + + if (Array.isArray(res)) { + if (res.length === 0) { + s += '

[ ]

'; + } else if (typeof res[0] !== 'object' || Array.isArray(res[0])) { + for (var i = 0, ilen = res.length; i < ilen; i++) { + s += '

' + loghtml(res[i]) + '

'; + } + } else { + s += loghtml(res); + } + } else { + s += loghtml(res); + } + el.innerHTML += s; + } + }; + + alasql.clear = function () { + var target = alasql.options.logtarget; + // For node other + + if (utils.isNode || utils.isMeteorServer) { + if (console.clear) { + console.clear(); + } + } else { + var el; + if (target === 'output') { + el = document.getElementsByTagName('output')[0]; + } else { + if (typeof target === 'string') { + el = document.getElementById(target); + } else { + // in case of DOM + el = target; + } + } + el.innerHTML = ''; + } + }; + + alasql.write = function (s) { + // console.log('write',s); + var target = alasql.options.logtarget; + // For node other + if (utils.isNode || utils.isMeteorServer) { + if (console.log) { + console.log(s); + } + } else { + var el; + if (target === 'output') { + el = document.getElementsByTagName('output')[0]; + } else { + if (typeof target === 'string') { + el = document.getElementById(target); + } else { + // in case of DOM + el = target; + } + } + el.innerHTML += s; + } + }; + + function loghtml(res) { + // console.log(res); + var s = ''; + if (res === undefined) { + s += 'undefined'; + } else if (Array.isArray(res)) { + s += ''; + s += ''; + var cols = []; + for (var colid in res[0]) { + cols.push(colid); + } + s += '
#'; + cols.forEach(function (colid) { + s += '' + colid; + }); + for (var i = 0, ilen = res.length; i < ilen; i++) { + s += '
' + (i + 1); + cols.forEach(function (colid) { + s += ' '; + if (res[i][colid] == +res[i][colid]) { + // jshint ignore:line + s += '
'; + if (typeof res[i][colid] === 'undefined') { + s += 'NULL'; + } else { + s += res[i][colid]; + } + s += '
'; + } else { + if (typeof res[i][colid] === 'undefined') { + s += 'NULL'; + } else if (typeof res[i][colid] === 'string') { + s += res[i][colid]; + } else { + s += JSONtoString(res[i][colid]); + } + // s += res[i][colid]; + } + }); + } + + s += '
'; + } else { + s += '

' + JSONtoString(res) + '

'; + } + // if() {} + + // if(typeof res == 'object') { + // s += '

'+JSON.stringify(res)+'

'; + // } else { + // } + return s; + } + + function scrollTo(element, to, duration) { + if (duration <= 0) { + return; + } + var difference = to - element.scrollTop; + var perTick = (difference / duration) * 10; + + setTimeout(function () { + if (element.scrollTop === to) { + return; + } + element.scrollTop = element.scrollTop + perTick; + scrollTo(element, to, duration - 10); + }, 10); + } + + alasql.prompt = function (el, useidel, firstsql) { + if (utils.isNode) { + throw new Error('The prompt not realized for Node.js'); + } + + var prompti = 0; + + if (typeof el === 'string') { + el = document.getElementById(el); + } + + if (typeof useidel === 'string') { + useidel = document.getElementById(useidel); + } + + useidel.textContent = alasql.useid; + + if (firstsql) { + alasql.prompthistory.push(firstsql); + prompti = alasql.prompthistory.length; + try { + var tm = Date.now(); + alasql.log(firstsql); + alasql.write('

' + (Date.now() - tm) + ' ms

'); + } catch (err) { + alasql.write('

' + alasql.useid + '> ' + firstsql + '

'); + alasql.write('

' + err + '

'); + } + } + + var y = el.getBoundingClientRect().top + document.getElementsByTagName('body')[0].scrollTop; + scrollTo(document.getElementsByTagName('body')[0], y, 500); + + el.onkeydown = function (event) { + if (event.which === 13) { + var sql = el.value; + var olduseid = alasql.useid; + el.value = ''; + alasql.prompthistory.push(sql); + prompti = alasql.prompthistory.length; + try { + var tm = Date.now(); + alasql.log(sql); + alasql.write('

' + (Date.now() - tm) + ' ms

'); + } catch (err) { + alasql.write('

' + olduseid + '> ' + alasql.pretty(sql, false) + '

'); + alasql.write('

' + err + '

'); + } + el.focus(); + // console.log(el.getBoundingClientRect().top); + useidel.textContent = alasql.useid; + var y = el.getBoundingClientRect().top + document.getElementsByTagName('body')[0].scrollTop; + scrollTo(document.getElementsByTagName('body')[0], y, 500); + } else if (event.which === 38) { + prompti--; + if (prompti < 0) { + prompti = 0; + } + if (alasql.prompthistory[prompti]) { + el.value = alasql.prompthistory[prompti]; + event.preventDefault(); + } + } else if (event.which === 40) { + prompti++; + if (prompti >= alasql.prompthistory.length) { + prompti = alasql.prompthistory.length; + el.value = ''; + } else if (alasql.prompthistory[prompti]) { + el.value = alasql.prompthistory[prompti]; + event.preventDefault(); + } + } + }; + }; + /* +// +// Commit for Alasql.js +// Date: 01.12.2014 +// (c) 2014, Andrey Gershun +// +*/ + yy.BeginTransaction = function (params) { + return Object.assign(this, params); + }; + yy.BeginTransaction.prototype.toString = function () { + return 'BEGIN TRANSACTION'; + }; + + yy.BeginTransaction.prototype.execute = function (databaseid, params, cb) { + var res = 1; + if (alasql.databases[databaseid].engineid) { + return alasql.engines[alasql.databases[alasql.useid].engineid].begin(databaseid, cb); + } else { + // alasql commit!!! + } + if (cb) res = cb(res); + return res; + }; + + yy.CommitTransaction = function (params) { + return Object.assign(this, params); + }; + yy.CommitTransaction.prototype.toString = function () { + return 'COMMIT TRANSACTION'; + }; + + yy.CommitTransaction.prototype.execute = function (databaseid, params, cb) { + var res = 1; + if (alasql.databases[databaseid].engineid) { + return alasql.engines[alasql.databases[alasql.useid].engineid].commit(databaseid, cb); + } else { + // alasql commit!!! + } + if (cb) res = cb(res); + return res; + }; + + yy.RollbackTransaction = function (params) { + return Object.assign(this, params); + }; + yy.RollbackTransaction.prototype.toString = function () { + return 'ROLLBACK TRANSACTION'; + }; + + yy.RollbackTransaction.prototype.execute = function (databaseid, params, cb) { + var res = 1; + if (alasql.databases[databaseid].engineid) { + return alasql.engines[alasql.databases[databaseid].engineid].rollback(databaseid, cb); + } else { + // alasql commit!!! + } + if (cb) res = cb(res); + return res; + }; + if (alasql.options.tsql) { + // + // Check tables and views + // IF OBJECT_ID('dbo.Employees') IS NOT NULL + // DROP TABLE dbo.Employees; + // IF OBJECT_ID('dbo.VSortedOrders', 'V') IS NOT NULL + // DROP VIEW dbo.VSortedOrders; + + alasql.stdfn.OBJECT_ID = function (name, type) { + if (typeof type == 'undefined') type = 'T'; + type = type.toUpperCase(); + + var sname = name.split('.'); + var dbid = alasql.useid; + var objname = sname[0]; + if (sname.length == 2) { + dbid = sname[0]; + objname = sname[1]; + } + + var tables = alasql.databases[dbid].tables; + dbid = alasql.databases[dbid].databaseid; + for (var tableid in tables) { + if (tableid == objname) { + // TODO: What OBJECT_ID actually returns + + if (tables[tableid].view && type == 'V') return dbid + '.' + tableid; + if (!tables[tableid].view && type == 'T') return dbid + '.' + tableid; + return undefined; + } + } + + return undefined; + }; + } + if (alasql.options.mysql) { + alasql.fn.TIMESTAMPDIFF = function (unit, date1, date2) { + return alasql.stdfn.DATEDIFF(unit, date1, date2); + }; + } + + if (alasql.options.mysql || alasql.options.sqlite) { + // Pseudo INFORMATION_SCHEMA function + alasql.from.INFORMATION_SCHEMA = function (filename, opts, cb, idx, query) { + if (filename == 'VIEWS' || filename == 'TABLES') { + var res = []; + for (var databaseid in alasql.databases) { + var tables = alasql.databases[databaseid].tables; + for (var tableid in tables) { + if ( + (tables[tableid].view && filename == 'VIEWS') || + (!tables[tableid].view && filename == 'TABLES') + ) { + res.push({TABLE_CATALOG: databaseid, TABLE_NAME: tableid}); + } + } + } + if (cb) res = cb(res, idx, query); + return res; + } + throw new Error('Unknown INFORMATION_SCHEMA table'); + }; + } + if (alasql.options.postgres) { + } + if (alasql.options.oracle) { + } + if (alasql.options.sqlite) { + } + // + // into functions + // + // (c) 2014 Andrey Gershun + // + + alasql.into.SQL = function (filename, opts, data, columns, cb) { + var res; + if (typeof filename === 'object') { + opts = filename; + filename = undefined; + } + var opt = {}; + alasql.utils.extend(opt, opts); + if (typeof opt.tableid === 'undefined') { + throw new Error('Table for INSERT TO is not defined.'); + } + + var s = ''; + if (columns.length === 0) { + if (typeof data[0] === 'object') { + columns = Object.keys(data[0]).map(function (columnid) { + return {columnid: columnid}; + }); + } else { + // What should I do? + // columns = [{columnid:"_"}]; + } + } + + for (var i = 0, ilen = data.length; i < ilen; i++) { + s += 'INSERT INTO ' + opts.tableid + '('; + s += columns + .map(function (col) { + return col.columnid; + }) + .join(','); + s += ') VALUES ('; + s += columns.map(function (col) { + var val = data[i][col.columnid]; + if (col.typeid) { + if ( + col.typeid === 'STRING' || + col.typeid === 'VARCHAR' || + col.typeid === 'NVARCHAR' || + col.typeid === 'CHAR' || + col.typeid === 'NCHAR' + ) { + val = "'" + escapeqq(val) + "'"; + } + } else { + if (typeof val == 'string') { + val = "'" + escapeqq(val) + "'"; + } + } + return val; + }); + s += ');\n'; + } + // if(filename === '') { + // res = s; + // } else { + // res = data.length; + filename = alasql.utils.autoExtFilename(filename, 'sql', opts); + res = alasql.utils.saveFile(filename, s); + if (cb) { + res = cb(res); + } + return res; + }; + + alasql.into.HTML = function (selector, opts, data, columns, cb) { + var res = 1; + if (typeof document !== 'object') { + var opt = {headers: true}; + alasql.utils.extend(opt, opts); + + var sel = document.querySelector(selector); + if (!sel) { + throw new Error('Selected HTML element is not found'); + } + + if (columns.length === 0) { + if (typeof data[0] === 'object') { + columns = Object.keys(data[0]).map(function (columnid) { + return {columnid: columnid}; + }); + } else { + // What should I do? + // columns = [{columnid:"_"}]; + } + } + + var tbe = document.createElement('table'); + var thead = document.createElement('thead'); + tbe.appendChild(thead); + if (opt.headers) { + var tre = document.createElement('tr'); + for (var i = 0; i < columns.length; i++) { + var the = document.createElement('th'); + the.textContent = columns[i].columnid; + tre.appendChild(the); + } + thead.appendChild(tre); + } + + var tbody = document.createElement('tbody'); + tbe.appendChild(tbody); + for (var j = 0; j < data.length; j++) { + var tre = document.createElement('tr'); + for (var i = 0; i < columns.length; i++) { + var the = document.createElement('td'); + the.textContent = data[j][columns[i].columnid]; + tre.appendChild(the); + } + tbody.appendChild(tre); + } + alasql.utils.domEmptyChildren(sel); + // console.log(tbe,columns); + sel.appendChild(tbe); + } + if (cb) { + res = cb(res); + } + return res; + }; + + alasql.into.JSON = function (filename, opts, data, columns, cb) { + var res = 1; + if (typeof filename === 'object') { + opts = filename; + filename = undefined; + } + var s = JSON.stringify(data); + + filename = alasql.utils.autoExtFilename(filename, 'json', opts); + res = alasql.utils.saveFile(filename, s); + if (cb) { + res = cb(res); + } + return res; + }; + + alasql.into.TXT = function (filename, opts, data, columns, cb) { + // If columns is empty + if (columns.length === 0 && data.length > 0) { + columns = Object.keys(data[0]).map(function (columnid) { + return {columnid: columnid}; + }); + } + // If one parameter + if (typeof filename === 'object') { + opts = filename; + filename = undefined; + } + + var res = data.length; + var s = ''; + if (data.length > 0) { + var key = columns[0].columnid; + s += data + .map(function (d) { + return d[key]; + }) + .join('\n'); + } + + // } else { + // if(utils.isNode) { + // process.stdout.write(s); + // } else { + // console.log(s); + // }; + // } + filename = alasql.utils.autoExtFilename(filename, 'txt', opts); + res = alasql.utils.saveFile(filename, s); + if (cb) { + res = cb(res); + } + return res; + }; + + alasql.into.TAB = alasql.into.TSV = function (filename, opts, data, columns, cb) { + var opt = {}; + alasql.utils.extend(opt, opts); + opt.separator = '\t'; + filename = alasql.utils.autoExtFilename(filename, 'tab', opts); + opt.autoExt = false; + return alasql.into.CSV(filename, opt, data, columns, cb); + }; + + alasql.into.CSV = function (filename, opts, data, columns, cb) { + if (columns.length === 0 && data.length > 0) { + columns = Object.keys(data[0]).map(function (columnid) { + return {columnid: columnid}; + }); + } + if (typeof filename === 'object') { + opts = filename; + filename = undefined; + } + + var opt = {headers: true}; + //opt.separator = ','; + opt.separator = ';'; + opt.quote = '"'; + + opt.utf8Bom = true; + if (opts && !opts.headers && typeof opts.headers !== 'undefined') { + opt.utf8Bom = false; + } + + alasql.utils.extend(opt, opts); + var res = data.length; + var s = opt.utf8Bom ? '\ufeff' : ''; + if (opt.headers) { + s += + opt.quote + + columns + .map(function (col) { + return col.columnid.trim(); + }) + .join(opt.quote + opt.separator + opt.quote) + + opt.quote + + '\r\n'; + } + + data.forEach(function (d) { + s += + columns + .map(function (col) { + var s = d[col.columnid]; + // escape the character wherever it appears in the field + if (opt.quote !== '') { + s = (s + '').replace(new RegExp('\\' + opt.quote, 'g'), opt.quote + opt.quote); + } + // if((s+"").indexOf(opt.separator) > -1 || (s+"").indexOf(opt.quote) > -1) s = opt.quote + s + opt.quote; + + //Excel 2013 needs quotes around strings - thanks for _not_ complying with RFC for CSV + if (+s != s) { + // jshint ignore:line + s = opt.quote + s + opt.quote; + } + + return s; + }) + .join(opt.separator) + '\r\n'; + }); + + filename = alasql.utils.autoExtFilename(filename, 'csv', opts); + res = alasql.utils.saveFile(filename, s, null, {disableAutoBom: true}); + if (cb) { + res = cb(res); + } + return res; + }; + // + // 831xl.js - Coloring Excel + // 18.04.2015 + // Generate XLS file with colors and styles + // with Excel + + alasql.into.XLS = function (filename, opts, data, columns, cb) { + // If filename is not defined then output to the result + if (typeof filename == 'object') { + opts = filename; + filename = undefined; + } + + // Set sheets + var sheets = {}; + if (opts && opts.sheets) { + sheets = opts.sheets; + } + + // Default sheet + var sheet = {headers: true}; + if (typeof sheets['Sheet1'] != 'undefined') { + sheet = sheets[0]; + } else { + if (typeof opts != 'undefined') { + sheet = opts; + } + } + + // Set sheet name and default is 'Sheet1' + if (typeof sheet.sheetid == 'undefined') { + sheet.sheetid = 'Sheet1'; + } + + var s = toHTML(); + + // File is ready to save + filename = alasql.utils.autoExtFilename(filename, 'xls', opts); + var res = alasql.utils.saveFile(filename, s); + if (cb) res = cb(res); + return res; + + function toHTML() { + // Generate prologue + var s = + ' \ + \ + '; + + // Generate body + s += ' 0) { + if (typeof data[0] == 'object') { + if (Array.isArray(data[0])) { + columns = data[0].map(function (d, columnidx) { + return {columnid: columnidx}; + }); + } else { + columns = Object.keys(data[0]).map(function (columnid) { + return {columnid: columnid}; + }); + } + } + } + } + + // Prepare columns + columns.forEach(function (column, columnidx) { + if (typeof sheet.column != 'undefined') { + extend(column, sheet.column); + } + + if (typeof column.width == 'undefined') { + if (sheet.column && sheet.column.width != 'undefined') { + column.width = sheet.column.width; + } else { + column.width = '120px'; + } + } + if (typeof column.width == 'number') column.width = column.width + 'px'; + if (typeof column.columnid == 'undefined') column.columnid = columnidx; + if (typeof column.title == 'undefined') column.title = '' + column.columnid.trim(); + if (sheet.headers && Array.isArray(sheet.headers)) column.title = sheet.headers[columnidx]; + }); + + // Set columns widths + s += ''; + columns.forEach(function (column) { + s += ''; + }); + s += ''; + + // Headers + if (sheet.headers) { + s += ''; + s += ''; + + // TODO: Skip columns to body + + // Headers + columns.forEach(function (column, columnidx) { + s += ' 0) { + // TODO: Skip columns to body + + // Loop over data rows + data.forEach(function (row, rowidx) { + // Limit number of rows on the sheet + if (rowidx > sheet.limit) return; + // Create row + s += ' \ + \ + \ + \ + \ + \ + \ + \ + 0 \ + \ + \ + '; + + var s2 = ''; // for styles + + var s3 = ' '; + + var styles = {}; // hash based storage for styles + var stylesn = 62; // First style + + // Generate style + function hstyle(st) { + // Prepare string + var s = ''; + for (var key in st) { + s += '<' + key; + for (var attr in st[key]) { + s += ' '; + if (attr.substr(0, 2) == 'x:') { + s += attr; + } else { + s += 'ss:'; + } + s += attr + '=' + JSON.stringify(st[key][attr]); + } + s += '/>'; + } + + var hh = hash(s); + // Store in hash + if (styles[hh]) { + } else { + styles[hh] = {styleid: stylesn}; + s2 += `'; + stylesn++; + } + return 's' + styles[hh].styleid; + } + + function values(obj) { + try { + return Object.values(obj); + } catch (e) { + // support for older runtimes + return Object.keys(obj).map(function (e) { + return obj[e]; + }); + } + } + + var sheetidx = 0; + for (var sheetid in sheets) { + var sheet = sheets[sheetid]; + var idx = typeof sheet.dataidx != 'undefined' ? sheet.dataidx : sheetidx++; + var data = values(sheetsdata[idx]); + // If columns defined in sheet, then take them + var columns = undefined; + if (typeof sheet.columns != 'undefined') { + columns = sheet.columns; + } else { + // Autogenerate columns if they are passed as parameters + columns = sheetscolumns[idx]; + if (columns === undefined || (columns.length == 0 && data.length > 0)) { + if (typeof data[0] == 'object') { + if (Array.isArray(data[0])) { + columns = data[0].map(function (d, columnidx) { + return {columnid: columnidx}; + }); + } else { + columns = Object.keys(data[0]).map(function (columnid) { + return {columnid: columnid}; + }); + } + } + } + } + + // Prepare columns + columns.forEach(function (column, columnidx) { + if (typeof sheet.column != 'undefined') { + extend(column, sheet.column); + } + + if (typeof column.width == 'undefined') { + if (sheet.column && typeof sheet.column.width != 'undefined') { + column.width = sheet.column.width; + } else { + column.width = 120; + } + } + if (typeof column.width == 'number') column.width = column.width; + if (typeof column.columnid == 'undefined') column.columnid = columnidx; + if (typeof column.title == 'undefined') column.title = '' + column.columnid.trim(); + if (sheet.headers && Array.isArray(sheet.headers)) + column.title = sheet.headers[columnidx]; + }); + + // Header + s3 += + ' \ + '; + + columns.forEach(function (column, columnidx) { + s3 += ` + `; + }); + + // Headers + if (sheet.headers) { + s3 += ''; + + // TODO: Skip columns to body + + // Headers + columns.forEach(function (column, columnidx) { + s3 += ' 0) { + // Loop over data rows + data.forEach(function (row, rowidx) { + // Limit number of rows on the sheet + if (rowidx > sheet.limit) return; + + // Extend row properties + var srow = {}; + extend(srow, sheet.row); + if (sheet.rows && sheet.rows[rowidx]) { + extend(srow, sheet.rows[rowidx]); + } + + s3 += '' + + // Data + columns.forEach(function (column, columnidx) { + // Parameters + var cell = {}; + extend(cell, sheet.cell); + extend(cell, srow.cell); + if (typeof sheet.column != 'undefined') { + extend(cell, sheet.column.cell); + } + extend(cell, column.cell); + if (sheet.cells && sheet.cells[rowidx] && sheet.cells[rowidx][columnidx]) { + extend(cell, sheet.cells[rowidx][columnidx]); + } + + // Create value + var value = row[column.columnid]; + if (typeof cell.value == 'function') { + value = cell.value(value, sheet, row, column, cell, rowidx, columnidx); + } + + // Define cell type + var typeid = cell.typeid; + if (typeof typeid == 'function') { + typeid = typeid(value, sheet, row, column, cell, rowidx, columnidx); + } + + if (typeof typeid == 'undefined') { + if (typeof value == 'number') typeid = 'number'; + else if (typeof value == 'string') typeid = 'string'; + else if (typeof value == 'boolean') typeid = 'boolean'; + else if (typeof value == 'object') { + if (value instanceof Date) typeid = 'date'; + } + } + + var Type = 'String'; + if (typeid == 'number') Type = 'Number'; + else if (typeid == 'date') Type = 'Date'; + // TODO: What else? + + // Prepare Data types styles + var typestyle = ''; + + if (typeid == 'money') { + typestyle = 'mso-number-format:"\\#\\,\\#\\#0\\\\ _р_\\.";white-space:normal;'; + } else if (typeid == 'number') { + typestyle = ' '; + } else if (typeid == 'date') { + typestyle = 'mso-number-format:"Short Date";'; + } else { + // For other types is saved + if (opts.types && opts.types[typeid] && opts.types[typeid].typestyle) { + typestyle = opts.types[typeid].typestyle; + } + } + + // TODO Replace with extend... + typestyle = typestyle || 'mso-number-format:"\\@";'; // Default type style + + s3 += ''; + + // TODO Replace with extend... + var format = cell.format; + if (typeof value == 'undefined') { + s3 += ''; + } else if (typeof format != 'undefined') { + if (typeof format == 'function') { + s3 += format(value); + } else if (typeof format == 'string') { + s3 += value; // TODO - add string format + } else { + throw new Error('Unknown format type. Should be function or string'); + } + } else { + if (typeid == 'number' || typeid == 'date') { + s3 += value.toString(); + } else if (typeid == 'money') { + s3 += (+value).toFixed(2); + } else { + s3 += value; + } + } + + // s3 += row[column.columnid]; + s3 += ''; + }); + + s3 += ''; + }); + } + // Finish + s3 += '
'; + } + + s3 += '
'; + + return s1 + s2 + s3; + } + }; + /** + Export to XLSX function + @function + @param {string|object} filename Filename or options + @param {object|undefined} opts Options or undefined + @param {array} data Data + @param {array} columns Columns + @parab {callback} cb Callback function + @return {number} Number of files processed +*/ + + alasql.into.XLSX = function (filename, opts, data, columns, cb) { + /** @type {number} result */ + var res = 1; + opts = opts || {}; + + if (deepEqual(columns, [{columnid: '_'}])) { + data = data.map(function (dat) { + return dat._; + }); + columns = undefined; + // res = [{_:1}]; + } else { + // data = data1; + } + + //console.log(data); + + filename = alasql.utils.autoExtFilename(filename, 'xlsx', opts); + + var XLSX = getXLSX(); + + /* If called without filename, use opts */ + if (typeof filename == 'object') { + // todo: check if data, clumns and cb also should be shifted. + opts = filename; + filename = undefined; + } + + /** @type {object} Workbook */ + var wb = {SheetNames: [], Sheets: {}}; + + // ToDo: check if cb must be treated differently here + if (opts.sourcefilename) { + alasql.utils.loadBinaryFile(opts.sourcefilename, !!cb, function (data) { + wb = XLSX.read(data, {type: 'binary', ...alasql.options.excel, ...opts}); + doExport(); + }); + } else { + doExport(); + } + + /* Return result */ + if (cb) res = cb(res); + return res; + + /** + Export workbook + @function + */ + function doExport() { + /* + If opts is array of arrays then this is a + multisheet workboook, else it is a singlesheet + */ + if (typeof opts == 'object' && Array.isArray(opts)) { + if (data && data.length > 0) { + data.forEach(function (dat, idx) { + prepareSheet(opts[idx], dat, undefined, idx + 1); + }); + } + } else { + prepareSheet(opts, data, columns, 1); + } + + saveWorkbook(cb); + } + + /** + Prepare sheet + @params {object} opts + @params {array|object} data + @params {array} columns Columns + */ + function prepareSheet(opts, data, columns, idx) { + /** Default options for sheet */ + var opt = {sheetid: 'Sheet ' + idx, headers: true}; + alasql.utils.extend(opt, opts); + + var dataLength = Object.keys(data).length; + + // Generate columns if they are not defined + if (!columns || columns.length == 0) { + if (dataLength > 0) { + columns = Object.keys(data[0]).map(function (columnid) { + return {columnid: columnid}; + }); + } else { + columns = []; + } + } + + var cells = {}; + + if (wb.SheetNames.indexOf(opt.sheetid) > -1) { + cells = wb.Sheets[opt.sheetid]; + } else { + wb.SheetNames.push(opt.sheetid); + wb.Sheets[opt.sheetid] = {}; + cells = wb.Sheets[opt.sheetid]; + } + + var range = 'A1'; + if (opt.range) range = opt.range; + + var col0 = alasql.utils.xlscn(range.match(/[A-Z]+/)[0]); + var row0 = +range.match(/[0-9]+/)[0] - 1; + + if (wb.Sheets[opt.sheetid]['!ref']) { + var rangem = wb.Sheets[opt.sheetid]['!ref']; + var colm = alasql.utils.xlscn(rangem.match(/[A-Z]+/)[0]); + var rowm = +rangem.match(/[0-9]+/)[0] - 1; + } else { + var colm = 1, + rowm = 1; + } + var zeroColumnFix = columns.length ? 0 : 1; + var colmax = Math.max(col0 + columns.length - 1 + zeroColumnFix, colm); + var rowmax = Math.max(row0 + dataLength + 2, rowm); + + // console.log(col0,row0); + var i = row0 + 1; + + wb.Sheets[opt.sheetid]['!ref'] = 'A1:' + alasql.utils.xlsnc(colmax) + rowmax; + // var i = 1; + + if (opt.headers) { + columns.forEach(function (col, idx) { + cells[alasql.utils.xlsnc(col0 + idx) + '' + i] = { + v: col.columnid.trim(), + }; + }); + i++; + } + + for (var j = 0; j < dataLength; j++) { + columns.forEach(function (col, idx) { + var cell = {v: data[j][col.columnid]}; + if (typeof data[j][col.columnid] == 'number') { + cell.t = 'n'; + } else if (typeof data[j][col.columnid] == 'string') { + cell.t = 's'; + } else if (typeof data[j][col.columnid] == 'boolean') { + cell.t = 'b'; + } else if (typeof data[j][col.columnid] == 'object') { + if (data[j][col.columnid] instanceof Date) { + cell.t = 'd'; + } + } + cells[alasql.utils.xlsnc(col0 + idx) + '' + i] = cell; + }); + i++; + } + } + + /** + Save Workbook + @params {array} wb Workbook + @params {callback} cb Callback + */ + function saveWorkbook(cb) { + //console.log(wb); + var XLSX; + + if (typeof filename == 'undefined') { + res = wb; + } else { + XLSX = getXLSX(); + + if (utils.isNode || utils.isMeteorServer) { + XLSX.writeFile(wb, filename); + } else { + var wopts = {bookType: 'xlsx', bookSST: false, type: 'binary'}; + var wbout = XLSX.write(wb, wopts); + + var s2ab = function (s) { + var buf = new ArrayBuffer(s.length); + var view = new Uint8Array(buf); + for (var i = 0; i != s.length; ++i) view[i] = s.charCodeAt(i) & 0xff; + return buf; + }; + + saveAs(new Blob([s2ab(wbout)], {type: 'application/octet-stream'}), filename); + } + } + /*/* + // data.forEach(function(d){ + // s += columns.map(function(col){ + // return d[col.columnid]; + // }).join(opts.separator)+'\n'; + // }); + // alasql.utils.saveFile(filename,s); +*/ + } + }; + /* +// +// FROM functions Alasql.js +// Date: 11.12.2014 +// (c) 2014, Andrey Gershun +// +*/ + + /** + Meteor + */ + + /* global alasql Tabletop document Event */ + + alasql.from.METEOR = function (filename, opts, cb, idx, query) { + var res = filename.find(opts).fetch(); + if (cb) res = cb(res, idx, query); + + return res; + }; + + /** + Google Spreadsheet reader + */ + alasql.from.TABLETOP = function (key, opts, cb, idx, query) { + var res = []; + + var opt = {headers: true, simpleSheet: true, key: key}; + alasql.utils.extend(opt, opts); + opt.callback = function (data) { + res = data; + if (cb) res = cb(res, idx, query); + }; + + Tabletop.init(opt); + return null; + }; + + alasql.from.HTML = function (selector, opts, cb, idx, query) { + var opt = {}; + alasql.utils.extend(opt, opts); + + var sel = document.querySelector(selector); + if (!sel && sel.tagName !== 'TABLE') { + throw new Error('Selected HTML element is not a TABLE'); + } + + var res = []; + var headers = opt.headers; + + if (headers && !Array.isArray(headers)) { + headers = []; + var ths = sel.querySelector('thead tr').children; + for (var i = 0; i < ths.length; i++) { + if (!(ths.item(i).style && ths.item(i).style.display === 'none' && opt.skipdisplaynone)) { + headers.push(ths.item(i).textContent); + } else { + headers.push(undefined); + } + } + } + // console.log(headers); + + var trs = sel.querySelectorAll('tbody tr'); + + for (var j = 0; j < trs.length; j++) { + var tds = trs.item(j).children; + var r = {}; + for (i = 0; i < tds.length; i++) { + if (!(tds.item(i).style && tds.item(i).style.display === 'none' && opt.skipdisplaynone)) { + if (headers) { + r[headers[i]] = tds.item(i).textContent; + } else { + r[i] = tds.item(i).textContent; + // console.log(r); + } + } + } + res.push(r); + } + //console.log(res); + if (cb) { + res = cb(res, idx, query); + } + return res; + }; + + alasql.from.RANGE = function (start, finish, cb, idx, query) { + var res = []; + for (var i = start; i <= finish; i++) { + res.push(i); + } + // res = new alasql.Recordset({data:res,columns:{columnid:'_'}}); + if (cb) { + res = cb(res, idx, query); + } + return res; + }; + + // Read data from any file + alasql.from.FILE = function (filename, opts, cb, idx, query) { + var fname; + if (typeof filename === 'string') { + fname = filename; + } else if (filename instanceof Event) { + fname = filename.target.files[0].name; + } else { + throw new Error('Wrong usage of FILE() function'); + } + + var parts = fname.split('.'); + var ext = parts[parts.length - 1].toUpperCase(); + if (alasql.from[ext]) { + return alasql.from[ext](filename, opts, cb, idx, query); + } else { + throw new Error('Cannot recognize file type for loading'); + } + }; + + // Read JSON file + + alasql.from.JSON = function (filename, opts, cb, idx, query) { + var res; + //console.log('cb',cb); + //console.log('JSON'); + filename = alasql.utils.autoExtFilename(filename, 'json', opts); + alasql.utils.loadFile(filename, !!cb, function (data) { + // console.log('DATA:'+data); + // res = [{a:1}]; + res = JSON.parse(data); + if (cb) { + res = cb(res, idx, query); + } + }), + err => { + throw new Error(err); + }; + return res; + }; + + const jsonl = ext => { + return function (filename, opts, cb, idx, query) { + let out = []; + filename = alasql.utils.autoExtFilename(filename, ext, opts); + alasql.utils.loadFile( + filename, + !!cb, + function (data) { + data.split(/\r?\n/).forEach((line, ix) => { + const trimmed = line.trim(); + if (trimmed !== '') { + // skip empty lines, we do not use filter on an input, as we want to preserve line numbers + try { + out.push(JSON.parse(trimmed)); + } catch (e) { + throw new Error(`Could not parse JSON at line ${ix}: ${e.toString()}`); + } + } + }); + if (cb) { + res = cb(out, idx, query); + } + }, + err => { + throw new Error(err); + } + ); + return out; + }; + }; + + alasql.from.JSONL = jsonl('jsonl'); + alasql.from.NDJSON = jsonl('ndjson'); + + alasql.from.TXT = function (filename, opts, cb, idx, query) { + var res; + filename = alasql.utils.autoExtFilename(filename, 'txt', opts); + alasql.utils.loadFile(filename, !!cb, function (data) { + res = data.split(/\r?\n/); + + // Remove last line if empty + if (res[res.length - 1] === '') { + res.pop(); + } + for (var i = 0, ilen = res.length; i < ilen; i++) { + // Please avoid '===' here + if (res[i] == +res[i]) { + // eslint:ignore + // jshint ignore:line + res[i] = +res[i]; + } + res[i] = [res[i]]; + } + if (cb) { + res = cb(res, idx, query); + } + }); + return res; + }; + + alasql.from.TAB = alasql.from.TSV = function (filename, opts, cb, idx, query) { + opts = opts || {}; + opts.separator = '\t'; + filename = alasql.utils.autoExtFilename(filename, 'tab', opts); + opts.autoext = false; + return alasql.from.CSV(filename, opts, cb, idx, query); + }; + + alasql.from.CSV = function (contents, opts, cb, idx, query) { + contents = '' + contents; + var opt = { + separator: ',', + quote: '"', + headers: true, + raw: false, + }; + alasql.utils.extend(opt, opts); + var res; + var hs = []; + function parseText(text) { + var delimiterCode = opt.separator.charCodeAt(0); + var quoteCode = opt.quote.charCodeAt(0); + + var EOL = {}, + EOF = {}, + rows = [], + N = text.length, + I = 0, + n = 0, + t, + eol; + function token() { + if (I >= N) { + return EOF; + } + if (eol) { + return (eol = false), EOL; + } + var j = I; + if (text.charCodeAt(j) === quoteCode) { + var i = j; + while (i++ < N) { + if (text.charCodeAt(i) === quoteCode) { + if (text.charCodeAt(i + 1) !== quoteCode) { + break; + } + ++i; + } + } + I = i + 2; + var c = text.charCodeAt(i + 1); + if (c === 13) { + eol = true; + if (text.charCodeAt(i + 2) === 10) { + ++I; + } + } else if (c === 10) { + eol = true; + } + return text.substring(j + 1, i).replace(/""/g, '"'); + } + while (I < N) { + var c = text.charCodeAt(I++), + k = 1; + if (c === 10) { + eol = true; + } else if (c === 13) { + eol = true; + if (text.charCodeAt(I) === 10) { + ++I; + ++k; + } + } else if (c !== delimiterCode) { + continue; + } + return text.substring(j, I - k); + } + return text.substring(j); + } + + while ((t = token()) !== EOF) { + var a = []; + while (t !== EOL && t !== EOF) { + a.push(t.trim()); + t = token(); + } + + if (opt.headers) { + if (n === 0) { + if (typeof opt.headers === 'boolean') { + hs = a; + } else if (Array.isArray(opt.headers)) { + hs = opt.headers; + var r = {}; + hs.forEach(function (h, idx) { + r[h] = a[idx]; + // Please avoid === here + if ( + !opt.raw && + typeof r[h] !== 'undefined' && + r[h].length !== 0 && + r[h].trim() == +r[h] + ) { + // jshint ignore:line + r[h] = +r[h]; + } + }); + rows.push(r); + } + } else { + var r = {}; + hs.forEach(function (h, idx) { + r[h] = a[idx]; + if ( + !opt.raw && + typeof r[h] !== 'undefined' && + r[h].length !== 0 && + r[h].trim() == +r[h] + ) { + // jshint ignore:line + r[h] = +r[h]; + } + }); + rows.push(r); + } + n++; + } else { + var r = {}; + // different bug here, if headers are not defined, the numerical values will not be parsed + a.forEach(function (v, idx) { + r[idx] = a[idx]; + if ( + !opt.raw && + typeof r[idx] !== 'undefined' && + r[idx].length !== 0 && + r[idx].trim() == +r[idx] + ) { + // jshint ignore:line + r[idx] = +r[idx]; + } + }); + rows.push(r); + } + } + + res = rows; + + if (opt.headers) { + if (query && query.sources && query.sources[idx]) { + var columns = (query.sources[idx].columns = []); + hs.forEach(function (h) { + columns.push({columnid: h}); + }); + } + } + + /*/* +if(false) { + res = data.split(/\r?\n/); + if(opt.headers) { + if(query && query.sources && query.sources[idx]) { + var hh = []; + if(typeof opt.headers == 'boolean') { + hh = res.shift().split(opt.separator); + } else if(Array.isArray(opt.headers)) { + hh = opt.headers; + } + var columns = query.sources[idx].columns = []; + hh.forEach(function(h){ + columns.push({columnid:h}); + }); + for(var i=0, ilen=res.length; i 0 && res[res.length - 1] && Object.keys(res[res.length - 1]).length == 0) { + res.pop(); + } + + if (cb) { + res = cb(res, idx, query); + } + }, + function (err) { + throw err; + } + ); + + return res; + } + + alasql.from.XLS = function (filename, opts, cb, idx, query) { + opts = opts || {}; + filename = alasql.utils.autoExtFilename(filename, 'xls', opts); + opts.autoExt = false; + return XLSXLSX(getXLSX(), filename, opts, cb, idx, query); + }; + + alasql.from.XLSX = function (filename, opts, cb, idx, query) { + opts = opts || {}; + filename = alasql.utils.autoExtFilename(filename, 'xlsx', opts); + opts.autoExt = false; + return XLSXLSX(getXLSX(), filename, opts, cb, idx, query); + }; + + alasql.from.ODS = function (filename, opts, cb, idx, query) { + opts = opts || {}; + filename = alasql.utils.autoExtFilename(filename, 'ods', opts); + opts.autoExt = false; + return XLSXLSX(getXLSX(), filename, opts, cb, idx, query); + }; + alasql.from.XML = function (filename, opts, cb, idx, query) { + var res; + //console.log('cb',cb); + //console.log('JSON'); + alasql.utils.loadFile(filename, !!cb, function (data) { + // console.log('DATA:'+data); + // res = [{a:1}]; + + res = xmlparse(data).root; + // console.log(res); + if (cb) res = cb(res, idx, query); + }); + return res; + }; + + /** + * Parse the given string of `xml`. + * + * @param {String} xml + * @return {Object} + * @api public + */ + + function xmlparse(xml) { + xml = xml.trim(); + + // strip comments + xml = xml.replace(//g, ''); + + return document(); + + /** + * XML document. + */ + + function document() { + return { + declaration: declaration(), + root: tag(), + }; + } + + /** + * Declaration. + */ + + function declaration() { + var m = match(/^<\?xml\s*/); + if (!m) return; + + // tag + var node = { + attributes: {}, + }; + + // attributes + while (!(eos() || is('?>'))) { + var attr = attribute(); + if (!attr) return node; + node.attributes[attr.name] = attr.value; + } + + match(/\?>\s*/); + + return node; + } + + /** + * Tag. + */ + + function tag() { + var m = match(/^<([\w-:.]+)\s*/); + if (!m) return; + + // name + var node = { + name: m[1], + attributes: {}, + children: [], + }; + + // attributes + while (!(eos() || is('>') || is('?>') || is('/>'))) { + var attr = attribute(); + if (!attr) return node; + node.attributes[attr.name] = attr.value; + } + + // self closing tag + if (match(/^\s*\/>\s*/)) { + return node; + } + + match(/\??>\s*/); + + // content + node.content = content(); + + // children + var child; + while ((child = tag())) { + node.children.push(child); + } + + // closing + match(/^<\/[\w-:.]+>\s*/); + + return node; + } + + /** + * Text content. + */ + + function content() { + var m = match(/^([^<]*)/); + if (m) return m[1]; + return ''; + } + + /** + * Attribute. + */ + + function attribute() { + var m = match(/([\w:-]+)\s*=\s*("[^"]*"|'[^']*'|\w+)\s*/); + if (!m) return; + return {name: m[1], value: strip(m[2])}; + } + + /** + * Strip quotes from `val`. + */ + + function strip(val) { + return val.replace(/^['"]|['"]$/g, ''); + } + + /** + * Match `re` and advance the string. + */ + + function match(re) { + var m = xml.match(re); + if (!m) return; + xml = xml.slice(m[0].length); + return m; + } + + /** + * End-of-source. + */ + + function eos() { + return 0 == xml.length; + } + + /** + * Check for `prefix`. + */ + + function is(prefix) { + return 0 == xml.indexOf(prefix); + } + } + alasql.from.GEXF = function (filename, opts, cb, idx, query) { + var res; + alasql('SEARCH FROM XML(' + filename + ')', [], function (data) { + res = data; + // console.log(res); + if (cb) res = cb(res); + }); + return res; + }; + /* +// +// HELP for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + /* globals: alasql, yy */ + + /** + Print statement + @class + @param {object} params Initial setup properties +*/ + + /* global alasql, yy */ + + yy.Print = function (params) { + return Object.assign(this, params); + }; + + /** + Generate SQL string + @this Print statement object +*/ + yy.Print.prototype.toString = function () { + var s = 'PRINT'; + if (this.statement) s += ' ' + this.statement.toString(); + return s; + }; + + /** + Print result of select statement or expression + @param {string} databaseid Database identificator + @param {object} params Query parameters + @param {statement-callback} cb Callback function + @this Print statement object +*/ + yy.Print.prototype.execute = function (databaseid, params, cb) { + // console.log(this.url); + var self = this; + var res = 1; + //console.log(this); + alasql.precompile(this, databaseid, params); /** @todo Change from alasql to this */ + + if (this.exprs && this.exprs.length > 0) { + var rs = this.exprs.map(function (expr) { + // console.log(48748747654, 'var y;return ' + expr.toJS('({})', '', null)); + var exprfn = new Function( + 'params,alasql,p', + 'var y;return ' + expr.toJS('({})', '', null) + ).bind(self); + var r = exprfn(params, alasql); + return JSONtoString(r); + }); + console.log.apply(console, rs); + } else if (this.select) { + var r = this.select.execute(databaseid, params); + console.log(JSONtoString(r)); + } else { + console.log(); + } + + if (cb) res = cb(res); + return res; + }; + /* +// +// HELP for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.Source = function (params) { + return Object.assign(this, params); + }; + yy.Source.prototype.toString = function () { + var s = 'SOURCE'; + if (this.url) s += " '" + this.url + " '"; + return s; + }; + + // SOURCE FILE + yy.Source.prototype.execute = function (databaseid, params, cb) { + var res; + loadFile( + this.url, + !!cb, + function (data) { + res = alasql(data); + if (cb) res = cb(res); + return res; + }, + function (err) { + throw err; + } + ); + return res; + }; + /* +// +// HELP for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + /* global alasql, yy */ + + yy.Require = function (params) { + return Object.assign(this, params); + }; + yy.Require.prototype.toString = function () { + var s = 'REQUIRE'; + if (this.paths && this.paths.length > 0) { + s += this.paths + .map(function (path) { + return path.toString(); + }) + .join(','); + } + if (this.plugins && this.plugins.length > 0) { + s += this.plugins + .map(function (plugin) { + return plugin.toUpperCase(); + }) + .join(','); + } + return s; + }; + + /** + Attach plug-in for Alasql + */ + yy.Require.prototype.execute = function (databaseid, params, cb) { + var self = this; + var res = 0; + var ss = ''; + if (this.paths && this.paths.length > 0) { + this.paths.forEach(function (path) { + loadFile(path.value, !!cb, function (data) { + res++; + ss += data; + if (res < self.paths.length) return; + new Function('params,alasql', ss)(params, alasql); + if (cb) res = cb(res); + }); + }); + } else if (this.plugins && this.plugins.length > 0) { + this.plugins.forEach(function (plugin) { + // If plugin is not loaded already + if (!alasql.plugins[plugin]) { + loadFile(alasql.path + '/alasql-' + plugin.toLowerCase() + '.js', !!cb, function (data) { + // Execute all plugins at the same time + res++; + ss += data; + if (res < self.plugins.length) return; + new Function('params,alasql', ss)(params, alasql); + alasql.plugins[plugin] = true; // Plugin is loaded + if (cb) res = cb(res); + }); + } + }); + } else { + if (cb) res = cb(res); + } + return res; + }; + /* +// +// HELP for Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + yy.Assert = function (params) { + return Object.assign(this, params); + }; + yy.Source.prototype.toString = function () { + var s = 'ASSERT'; + if (this.value) s += ' ' + JSON.stringify(this.value); + return s; + }; + + // SOURCE FILE + yy.Assert.prototype.execute = function (databaseid) { + if (!deepEqual(alasql.res, this.value)) { + throw new Error( + (this.message || 'Assert wrong') + + ': ' + + JSON.stringify(alasql.res) + + ' == ' + + JSON.stringify(this.value) + ); + } + return 1; + }; + // + // 91indexeddb.js + // AlaSQL IndexedDB module + // Date: 18.04.2015 + // (c) Andrey Gershun + // + + /* global alasql, yy, utils*/ + + var IDB = (alasql.engines.INDEXEDDB = function () { + ''; + }); + + /** + * @param {string} name + * @returns {Promise<{name: string, version: number}|0>} + */ + async function _databaseExists(name) { + const indexedDB = globalThis.indexedDB; + + if (!indexedDB) { + throw new Error('IndexedDB is not supported in this browser'); + } + + if (indexedDB.databases) { + const dbs = await indexedDB.databases(); + const db = dbs.find(db => db.name === name); + // @ts-ignore + return db || 0; + } + + // Try if it exist + const req = indexedDB.open(name); + + return new Promise(function (resolve, reject) { + req.onsuccess = () => { + req.result.close(); + resolve({name, version: req.result.version}); + }; + + req.onupgradeneeded = evt => { + evt.target.transaction.abort(); + resolve(0); + }; + + req.onerror = () => { + reject(new Error('IndexedDB error')); + }; + + req.onblocked = () => { + resolve({name, version: req.result.version}); + }; + }); + } + + // + // SHOW DATABASES + // work only in chrome + // + IDB.showDatabases = function (like, cb) { + if (!indexedDB.databases) { + cb(null, new Error('SHOW DATABASE is not supported in this browser')); + return; + } + + indexedDB.databases().then(dblist => { + const res = []; + const relike = like && new RegExp(like.value.replace(/\%/g, '.*'), 'g'); + + for (var i = 0; i < dblist.length; i++) { + if (!like || dblist[i].name.match(relike)) { + res.push({databaseid: dblist[i].name}); + } + } + + cb(res); + }); + }; + + IDB.createDatabase = async function (ixdbid, args, ifnotexists, dbid, cb) { + const found = await _databaseExists(ixdbid).catch(err => { + if (cb) cb(null, err); + throw err; + }); + + if (found) { + if (ifnotexists) { + cb && cb(0); + } else { + const err = new Error( + `IndexedDB: Cannot create new database "${ixdbid}" because it already exists` + ); + if (cb) cb(null, err); + } + } else { + const request = indexedDB.open(ixdbid, 1); + request.onsuccess = () => { + request.result.close(); + cb(1); + }; + } + }; + + IDB.dropDatabase = async function (ixdbid, ifexists, cb) { + const found = await _databaseExists(ixdbid).catch(err => { + if (cb) cb(null, err); + throw err; + }); + + if (found) { + const request = indexedDB.deleteDatabase(ixdbid); + request.onsuccess = () => { + if (cb) cb(1); + }; + } else { + if (ifexists) { + cb && cb(0); + } else { + cb && + cb( + null, + new Error(`IndexedDB: Cannot drop new database "${ixdbid}" because it does not exist'`) + ); + } + } + }; + + IDB.attachDatabase = async function (ixdbid, dbid, args, params, cb) { + const found = await _databaseExists(ixdbid).catch(err => { + if (cb) cb(null, err); + throw err; + }); + + if (!found) { + const err = new Error( + `IndexedDB: Cannot attach database "${ixdbid}" because it does not exist` + ); + if (cb) cb(null, err); + throw err; + } + + const stores = await new Promise((resolve, reject) => { + const request = indexedDB.open(ixdbid); + request.onsuccess = () => { + resolve(request.result.objectStoreNames); + request.result.close(); + }; + }); + + const db = new alasql.Database(dbid || ixdbid); + db.engineid = 'INDEXEDDB'; + db.ixdbid = ixdbid; + db.tables = []; + + for (var i = 0; i < stores.length; i++) { + db.tables[stores[i]] = {}; + } + + /*/* + if (!alasql.options.autocommit) { + if (db.tables) { + for(var tbid in db.tables) { + db.tables[tbid].data = LS.get(db.lsdbid+'.'+tbid); + } + } + } + */ + + if (cb) cb(1); + }; + + IDB.createTable = async function (databaseid, tableid, ifnotexists, cb) { + const ixdbid = alasql.databases[databaseid].ixdbid; + const found = await _databaseExists(ixdbid).catch(err => { + if (cb) cb(null, err); + throw err; + }); + + if (!found) { + const err = new Error( + 'IndexedDB: Cannot create table in database "' + ixdbid + '" because it does not exist' + ); + if (cb) cb(null, err); + throw err; + } + + const request = indexedDB.open(ixdbid, found.version + 1); + request.onupgradeneeded = function (event) { + request.result.createObjectStore(tableid, {autoIncrement: true}); + }; + request.onsuccess = function (event) { + request.result.close(); + if (cb) cb(1); + }; + request.onerror = evt => { + cb(null, evt); + }; + request.onblocked = function (event) { + cb( + null, + new Error(`Cannot create table "${tableid}" because database "${databaseid}" is blocked`) + ); + }; + }; + + IDB.dropTable = async function (databaseid, tableid, ifexists, cb) { + const ixdbid = alasql.databases[databaseid].ixdbid; + const found = await _databaseExists(ixdbid).catch(err => { + if (cb) cb(null, err); + throw err; + }); + + if (!found) { + const err = new Error( + 'IndexedDB: Cannot drop table in database "' + ixdbid + '" because it does not exist' + ); + if (cb) cb(null, err); + throw err; + } + + const request = indexedDB.open(ixdbid, found.version + 1); + + let err; + request.onupgradeneeded = function (evt) { + var ixdb = request.result; + if (ixdb.objectStoreNames.contains(tableid)) { + ixdb.deleteObjectStore(tableid); + delete alasql.databases[databaseid].tables[tableid]; + } else { + if (!ifexists) { + err = new Error(`IndexedDB: Cannot drop table "${tableid}" because it does not exist`); + evt.target.transaction.abort(); + } + } + }; + request.onsuccess = function (event) { + request.result.close(); + if (cb) cb(1); + }; + request.onerror = function (event) { + cb && cb(null, err || event); + }; + request.onblocked = function (event) { + cb( + null, + new Error(`Cannot drop table "${tableid}" because database "${databaseid}" is blocked`) + ); + }; + }; + + /*/* +// IDB.intoTable = function(databaseid, tableid, value, cb) { +// // console.log('intoTable',databaseid, tableid, value, cb); +// var ixdbid = alasql.databases[databaseid].ixdbid; +// var request1 = indexedDB.open(ixdbid); +// request1.onsuccess = function(event) { +// var ixdb = event.target.result; +// var tx = ixdb.transaction([tableid],"readwrite"); +// var tb = tx.objectStore(tableid); +// // console.log(tb.keyPath); +// // console.log(tb.indexNames); +// // console.log(tb.autoIncrement); +// for(var i=0, ilen = value.length;i { + evt.target.transaction.abort(); + const err = new Error( + `Cannot insert into table "${tableid}" because database "${databaseid}" does not exist` + ); + if (cb) cb(null, err); + }; + + request.onsuccess = () => { + var ixdb = request.result; + var tx = ixdb.transaction([tableid], 'readwrite'); + var tb = tx.objectStore(tableid); + for (var i = 0, ilen = value.length; i < ilen; i++) { + tb.add(value[i]); + } + tx.oncomplete = function () { + ixdb.close(); + for (var tr in table.afterinsert) { + if (table.afterinsert[tr]) { + var trigger = table.afterinsert[tr]; + if (trigger.funcid) { + alasql.fn[trigger.funcid](value); + } else if (trigger.statement) { + trigger.statement.execute(databaseid); + } + } + } + if (cb) cb(ilen); + }; + }; + }; + + IDB.fromTable = function (databaseid, tableid, cb, idx, query) { + const ixdbid = alasql.databases[databaseid].ixdbid; + const request = indexedDB.open(ixdbid); + + request.onupgradeneeded = evt => { + evt.target.transaction.abort(); + const err = new Error( + `Cannot select from table "${tableid}" because database "${databaseid}" does not exist` + ); + if (cb) cb(null, err); + }; + + request.onsuccess = () => { + const res = []; + const ixdb = request.result; + const cur = ixdb.transaction([tableid]).objectStore(tableid).openCursor(); + + cur.onsuccess = () => { + const cursor = cur.result; + if (cursor) { + // if keyPath(columns) is not present then we take the key and value as object. + const cursorValue = + typeof cursor === 'object' ? cursor.value : {[cursor.key]: cursor.value}; + res.push(cursorValue); + cursor.continue(); + } else { + ixdb.close(); + if (cb) cb(res, idx, query); + } + }; + }; + }; + + IDB.deleteFromTable = function (databaseid, tableid, wherefn, params, cb) { + const ixdbid = alasql.databases[databaseid].ixdbid; + const request = indexedDB.open(ixdbid); + + request.onsuccess = () => { + const ixdb = request.result; + const cur = ixdb.transaction([tableid], 'readwrite').objectStore(tableid).openCursor(); + + let num = 0; + cur.onsuccess = () => { + var cursor = cur.result; + if (cursor) { + if (!wherefn || wherefn(cursor.value, params, alasql)) { + cursor.delete(); + num++; + } + cursor.continue(); + } else { + ixdb.close(); + if (cb) cb(num); + } + }; + }; + }; + + IDB.updateTable = function (databaseid, tableid, assignfn, wherefn, params, cb) { + const ixdbid = alasql.databases[databaseid].ixdbid; + const request = indexedDB.open(ixdbid); + request.onsuccess = function () { + const ixdb = request.result; + const cur = ixdb.transaction([tableid], 'readwrite').objectStore(tableid).openCursor(); + + let num = 0; + cur.onsuccess = () => { + var cursor = cur.result; + if (cursor) { + if (!wherefn || wherefn(cursor.value, params)) { + var r = cursor.value; + assignfn(r, params); + cursor.update(r); + num++; + } + cursor.continue(); + } else { + ixdb.close(); + if (cb) cb(num); + } + }; + }; + }; + // + // 91localstorage.js + // localStorage and DOM-Storage engine + // Date: 09.12.2014 + // (c) Andrey Gershun + // + + /* global alasql, yy, localStorage*/ + + var LS = (alasql.engines.LOCALSTORAGE = function () {}); + + /** + Read data from localStorage with security breaks + @param key {string} Address in localStorage + @return {object} JSON object +*/ + LS.get = function (key) { + var s = localStorage.getItem(key); + if (typeof s === 'undefined') return; + var v; + try { + v = JSON.parse(s); + } catch (err) { + throw new Error('Cannot parse JSON object from localStorage' + s); + } + return v; + }; + + /** + Store data into localStorage with security breaks + @param key {string} Address in localStorage + @return {object} JSON object +*/ + LS.set = function (key, value) { + if (typeof value === 'undefined') localStorage.removeItem(key); + else localStorage.setItem(key, JSON.stringify(value)); + }; + + /** + Store table structure and data into localStorage + @param databaseid {string} AlaSQL database id (not external localStorage) + @param tableid {string} Table name + @return Nothing +*/ + LS.storeTable = function (databaseid, tableid) { + var db = alasql.databases[databaseid]; + var table = db.tables[tableid]; + // Create empty structure for table + var tbl = {}; + tbl.columns = table.columns; + tbl.data = table.data; + tbl.identities = table.identities; + // TODO: May be add indexes, objects and other fields? + LS.set(db.lsdbid + '.' + tableid, tbl); + }; + + /** + Restore table structure and data + @param databaseid {string} AlaSQL database id (not external localStorage) + @param tableid {string} Table name + @return Nothing +*/ + LS.restoreTable = function (databaseid, tableid) { + var db = alasql.databases[databaseid]; + var tbl = LS.get(db.lsdbid + '.' + tableid); + var table = new alasql.Table(); + for (var f in tbl) { + table[f] = tbl[f]; + } + db.tables[tableid] = table; + table.indexColumns(); + // We need to add other things here + return table; + }; + + /** + Remove table from localStorage + @param databaseid {string} AlaSQL database id (not external localStorage) + @param tableid {string} Table name +*/ + + LS.removeTable = function (databaseid, tableid) { + var db = alasql.databases[databaseid]; + localStorage.removeItem(db.lsdbid + '.' + tableid); + }; + + /** + Create database in localStorage + @param lsdbid {string} localStorage database id + @param args {array} List of parameters (not used in localStorage) + @param ifnotexists {boolean} Check if database does not exist + @param databaseid {string} AlaSQL database id (not external localStorage) + @param cb {function} Callback +*/ + + LS.createDatabase = function (lsdbid, args, ifnotexists, databaseid, cb) { + var res = 1; + var ls = LS.get('alasql'); // Read list of all databases + if (!(ifnotexists && ls && ls.databases && ls.databases[lsdbid])) { + if (!ls) ls = {databases: {}}; // Empty record + if (ls.databases && ls.databases[lsdbid]) { + throw new Error( + 'localStorage: Cannot create new database "' + lsdbid + '" because it already exists' + ); + } + ls.databases[lsdbid] = true; + LS.set('alasql', ls); + LS.set(lsdbid, {databaseid: lsdbid, tables: {}}); // Create database record + } else { + res = 0; + } + if (cb) res = cb(res); + return res; + }; + + /** + Drop external database + @param lsdbid {string} localStorage database id + @param ifexists {boolean} Check if database exists + @param cb {function} Callback +*/ + LS.dropDatabase = function (lsdbid, ifexists, cb) { + var res = 1; + var ls = LS.get('alasql'); + if (!(ifexists && ls && ls.databases && !ls.databases[lsdbid])) { + // 1. Remove record from 'alasql' record + if (!ls) { + if (!ifexists) { + throw new Error('There is no any AlaSQL databases in localStorage'); + } else { + return cb ? cb(0) : 0; + } + } + + if (ls.databases && !ls.databases[lsdbid]) { + throw new Error( + 'localStorage: Cannot drop database "' + lsdbid + '" because there is no such database' + ); + } + delete ls.databases[lsdbid]; + LS.set('alasql', ls); + + // 2. Remove tables definitions + var db = LS.get(lsdbid); + for (var tableid in db.tables) { + localStorage.removeItem(lsdbid + '.' + tableid); + } + + // 3. Remove database definition + localStorage.removeItem(lsdbid); + } else { + res = 0; + } + if (cb) res = cb(res); + return res; + }; + + /** + Attach existing localStorage database to AlaSQL database + @param lsdibid {string} localStorage database id + @param +*/ + + LS.attachDatabase = function (lsdbid, databaseid, args, params, cb) { + var res = 1; + if (alasql.databases[databaseid]) { + throw new Error( + 'Unable to attach database as "' + databaseid + '" because it already exists' + ); + } + if (!databaseid) databaseid = lsdbid; + var db = new alasql.Database(databaseid); + db.engineid = 'LOCALSTORAGE'; + db.lsdbid = lsdbid; + db.tables = LS.get(lsdbid).tables; + // IF AUTOABORT IS OFF then copy data to memory + if (!alasql.options.autocommit) { + if (db.tables) { + for (var tbid in db.tables) { + LS.restoreTable(databaseid, tbid); + } + } + } + if (cb) res = cb(res); + return res; + }; + + /** + Show list of databases from localStorage + @param like {string} Mathing pattern + @param cb {function} Callback +*/ + LS.showDatabases = function (like, cb) { + var res = []; + var ls = LS.get('alasql'); + if (like) { + // TODO: If we have a special function for LIKE patterns? + var relike = new RegExp(like.value.replace(/%/g, '.*'), 'g'); + } + if (ls && ls.databases) { + for (var dbid in ls.databases) { + res.push({databaseid: dbid}); + } + if (like && res && res.length > 0) { + res = res.filter(function (d) { + return d.databaseid.match(relike); + }); + } + } + if (cb) res = cb(res); + return res; + }; + + /** + Create table in localStorage database + @param databaseid {string} AlaSQL database id + @param tableid {string} Table id + @param ifnotexists {boolean} If not exists flag + @param cb {function} Callback +*/ + + LS.createTable = function (databaseid, tableid, ifnotexists, cb) { + var res = 1; + var lsdbid = alasql.databases[databaseid].lsdbid; + var tb = LS.get(lsdbid + '.' + tableid); + // Check if such record exists + if (tb && !ifnotexists) { + throw new Error( + 'Table "' + tableid + '" alsready exists in localStorage database "' + lsdbid + '"' + ); + } + var lsdb = LS.get(lsdbid); + var table = alasql.databases[databaseid].tables[tableid]; + + // TODO: Check if required + lsdb.tables[tableid] = true; + + LS.set(lsdbid, lsdb); + LS.storeTable(databaseid, tableid); + + if (cb) res = cb(res); + return res; + }; + + /** + Empty table and reset identities + @param databaseid {string} AlaSQL database id (not external localStorage) + @param tableid {string} Table name + @param ifexists {boolean} If exists flag + @param cb {function} Callback + @return 1 on success +*/ + LS.truncateTable = function (databaseid, tableid, ifexists, cb) { + var res = 1; + var lsdbid = alasql.databases[databaseid].lsdbid; + var lsdb; + if (alasql.options.autocommit) { + lsdb = LS.get(lsdbid); + } else { + lsdb = alasql.databases[databaseid]; + } + + if (!ifexists && !lsdb.tables[tableid]) { + throw new Error( + 'Cannot truncate table "' + tableid + '" in localStorage, because it does not exist' + ); + } + + //load table + var tbl = LS.restoreTable(databaseid, tableid); + + //clear data from table + tbl.data = []; + //TODO reset all identities + //but identities are not working on LOCALSTORAGE + //See test 607 for details + + //store table + LS.storeTable(databaseid, tableid); + + if (cb) res = cb(res); + return res; + }; + + /** + Create table in localStorage database + @param databaseid {string} AlaSQL database id + @param tableid {string} Table id + @param ifexists {boolean} If exists flag + @param cb {function} Callback +*/ + + LS.dropTable = function (databaseid, tableid, ifexists, cb) { + var res = 1; + var lsdbid = alasql.databases[databaseid].lsdbid; + var lsdb; + + if (alasql.options.autocommit) { + lsdb = LS.get(lsdbid); + } else { + lsdb = alasql.databases[databaseid]; + } + if (!ifexists && !lsdb.tables[tableid]) { + throw new Error( + 'Cannot drop table "' + tableid + '" in localStorage, because it does not exist' + ); + } + delete lsdb.tables[tableid]; + LS.set(lsdbid, lsdb); + // localStorage.removeItem(lsdbid+'.'+tableid); + LS.removeTable(databaseid, tableid); + if (cb) res = cb(res); + return res; + }; + + /** + Read all data from table +*/ + + LS.fromTable = function (databaseid, tableid, cb, idx, query) { + // console.log(998, databaseid, tableid, cb); + var lsdbid = alasql.databases[databaseid].lsdbid; + // var res = LS.get(lsdbid+'.'+tableid); + + var res = LS.restoreTable(databaseid, tableid).data; + + if (cb) res = cb(res, idx, query); + return res; + }; + + /** + Insert data into the table + @param databaseid {string} Database id + @param tableid {string} Table id + @param value {array} Array of values + @param columns {array} Columns (not used) + @param cb {function} Callback +*/ + + LS.intoTable = function (databaseid, tableid, value, columns, cb) { + // console.log('intoTable',databaseid, tableid, value, cb); + var lsdbid = alasql.databases[databaseid].lsdbid; + var res = value.length; + // var tb = LS.get(lsdbid+'.'+tableid); + var tb = LS.restoreTable(databaseid, tableid); + for (var columnid in tb.identities) { + var ident = tb.identities[columnid]; + + for (var index in value) { + value[index][columnid] = ident.value; + ident.value += ident.step; + } + } + if (!tb.data) tb.data = []; + tb.data = tb.data.concat(value); + LS.storeTable(databaseid, tableid); + if (cb) res = cb(res); + //console.log(167,res); + return res; + }; + + /** + Laad data from table +*/ + LS.loadTableData = function (databaseid, tableid) { + var db = alasql.databases[databaseid]; + var lsdbid = alasql.databases[databaseid].lsdbid; + LS.restoreTable(databaseid, tableid); + // db.tables[tableid].data = LS.get(lsdbid+'.'+tableid); + }; + + /** + Save data to the table +*/ + + LS.saveTableData = function (databaseid, tableid) { + var db = alasql.databases[databaseid]; + var lsdbid = alasql.databases[databaseid].lsdbid; + LS.storeTable(lsdbid, tableid); + // LS.set(lsdbid+'.'+tableid,db.tables[tableid].data); + db.tables[tableid].data = undefined; + }; + + /** + Commit +*/ + + LS.commit = function (databaseid, cb) { + // console.log('COMMIT'); + var db = alasql.databases[databaseid]; + var lsdbid = alasql.databases[databaseid].lsdbid; + var lsdb = {databaseid: lsdbid, tables: {}}; + if (db.tables) { + for (var tbid in db.tables) { + // TODO: Question - do we need this line + lsdb.tables[tbid] = true; + LS.storeTable(databaseid, tbid); + // LS.set(lsdbid+'.'+tbid, db.tables[tbid].data); + } + } + LS.set(lsdbid, lsdb); + return cb ? cb(1) : 1; + }; + + /** + Alias BEGIN = COMMIT +*/ + LS.begin = LS.commit; + + /** + ROLLBACK +*/ + + LS.rollback = function (databaseid, cb) { + // This does not work and should be fixed + // Plus test 151 and 231 + + return; + + // console.log(207,databaseid); + var db = alasql.databases[databaseid]; + db.dbversion++; + // console.log(db.dbversion) + var lsdbid = alasql.databases[databaseid].lsdbid; + var lsdb = LS.get(lsdbid); + // if(!alasql.options.autocommit) { + + delete alasql.databases[databaseid]; + alasql.databases[databaseid] = new alasql.Database(databaseid); + extend(alasql.databases[databaseid], lsdb); + alasql.databases[databaseid].databaseid = databaseid; + alasql.databases[databaseid].engineid = 'LOCALSTORAGE'; + + if (lsdb.tables) { + for (var tbid in lsdb.tables) { + // var tb = new alasql.Table({columns: db.tables[tbid].columns}); + // extend(tb,lsdb.tables[tbid]); + // lsdb.tables[tbid] = true; + + // if(!alasql.options.autocommit) { + + // lsdb.tables[tbid].data = LS.get(db.lsdbid+'.'+tbid); + LS.restoreTable(databaseid, tbid); + // } + // lsdb.tables[tbid].indexColumns(); + + // index columns + // convert types + } + } + // } + //console.log(999, alasql.databases[databaseid]); + }; + // + // 93sqlite.js + // SQLite database support + // (c) 2014, Andrey Gershun + // + + var SQLITE = (alasql.engines.SQLITE = function () {}); + + SQLITE.createDatabase = function (wdbid, args, ifnotexists, dbid, cb) { + throw new Error('Connot create SQLITE database in memory. Attach it.'); + }; + + SQLITE.dropDatabase = function (databaseid) { + throw new Error('This is impossible to drop SQLite database. Detach it.'); + }; + + SQLITE.attachDatabase = function (sqldbid, dbid, args, params, cb) { + var res = 1; + if (alasql.databases[dbid]) { + throw new Error('Unable to attach database as "' + dbid + '" because it already exists'); + } + + if ((args[0] && args[0] instanceof yy.StringValue) || args[0] instanceof yy.ParamValue) { + if (args[0] instanceof yy.StringValue) { + var value = args[0].value; + } else if (args[0] instanceof yy.ParamValue) { + var value = params[args[0].param]; + } + alasql.utils.loadBinaryFile( + value, + true, + function (data) { + var db = new alasql.Database(dbid || sqldbid); + db.engineid = 'SQLITE'; + db.sqldbid = sqldbid; + var sqldb = (db.sqldb = new SQL.Database(data)); + db.tables = []; + var tables = sqldb.exec("SELECT * FROM sqlite_master WHERE type='table'")[0].values; + + tables.forEach(function (tbl) { + db.tables[tbl[1]] = {}; + var columns = (db.tables[tbl[1]].columns = []); + var ast = alasql.parse(tbl[4]); + var coldefs = ast.statements[0].columns; + if (coldefs && coldefs.length > 0) { + coldefs.forEach(function (cd) { + columns.push(cd); + }); + } + }); + + cb(1); + }, + function (err) { + throw new Error('Cannot open SQLite database file "' + args[0].value + '"'); + } + ); + return res; + } else { + throw new Error('Cannot attach SQLite database without a file'); + } + + return res; + }; + + SQLITE.fromTable = function (databaseid, tableid, cb, idx, query) { + var data = alasql.databases[databaseid].sqldb.exec('SELECT * FROM ' + tableid); + var columns = (query.sources[idx].columns = []); + if (data[0].columns.length > 0) { + data[0].columns.forEach(function (columnid) { + columns.push({columnid: columnid}); + }); + } + + var res = []; + if (data[0].values.length > 0) { + data[0].values.forEach(function (d) { + var r = {}; + columns.forEach(function (col, idx) { + r[col.columnid] = d[idx]; + }); + res.push(r); + }); + } + if (cb) cb(res, idx, query); + }; + + SQLITE.intoTable = function (databaseid, tableid, value, columns, cb) { + var sqldb = alasql.databases[databaseid].sqldb; + for (var i = 0, ilen = value.length; i < ilen; i++) { + var s = 'INSERT INTO ' + tableid + ' ('; + var d = value[i]; + var keys = Object.keys(d); + s += keys.join(','); + s += ') VALUES ('; + s += keys + .map(function (k) { + var v = d[k]; + if (typeof v == 'string') v = "'" + v + "'"; + return v; + }) + .join(','); + s += ')'; + sqldb.exec(s); + } + var res = ilen; + if (cb) cb(res); + return res; + }; + // + // 91localstorage.js + // localStorage and DOM-Storage engine + // Date: 09.12.2014 + // (c) Andrey Gershun + // + + var FS = (alasql.engines.FILESTORAGE = alasql.engines.FILE = function () {}); + + FS.createDatabase = function (fsdbid, args, ifnotexists, dbid, cb) { + var res = 1; + var filename = args[0].value; + alasql.utils.fileExists(filename, function (fex) { + if (fex) { + if (ifnotexists) { + res = 0; + if (cb) res = cb(res); + return res; + } else { + throw new Error('Cannot create new database file, because it already exists'); + } + } else { + var data = {tables: {}}; + alasql.utils.saveFile(filename, JSON.stringify(data), function (data) { + if (cb) res = cb(res); + }); + } + }); + return res; + }; + + FS.dropDatabase = function (fsdbid, ifexists, cb) { + var res; + var filename = ''; + + if (typeof fsdbid === 'object' && fsdbid.value) { + // Existing tests (test225.js) had DROP directly without DETACH and + // without a database id / name. It instead used the filename directly. + // This block will handle that + filename = fsdbid.value; + } else { + // When a database id / name is specified in DROP, it will be handled by this block. + // Note: Both DETACH + DROP and direct DROP without DETACH will be handled by this block + // We will be deleting the database object and the file either way. + // However, in the future, if we would like to have a stricter implementation + // where we cannot DROP without DETACHing it first, we can handle that case using + // the 'isDetached' property of the database object. + // (i.e) alasql.databases[fsdbid].isDetached will be set if it is + // has been detached first + var db = alasql.databases[fsdbid] || {}; + + filename = db.filename || ''; + delete alasql.databases[fsdbid]; + } + alasql.utils.fileExists(filename, function (fex) { + if (fex) { + res = 1; + alasql.utils.deleteFile(filename, function () { + res = 1; + if (cb) res = cb(res); + }); + } else { + if (!ifexists) { + throw new Error('Cannot drop database file, because it does not exist'); + } + res = 0; + if (cb) res = cb(res); + } + }); + return res; + }; + + FS.attachDatabase = function (fsdbid, dbid, args, params, cb) { + var res = 1; + if (alasql.databases[dbid]) { + throw new Error('Unable to attach database as "' + dbid + '" because it already exists'); + } + var db = new alasql.Database(dbid || fsdbid); + db.engineid = 'FILESTORAGE'; + db.filename = args[0].value; + loadFile(db.filename, !!cb, function (s) { + try { + db.data = JSON.parse(s); + } catch (err) { + throw new Error('Data in FileStorage database are corrupted'); + } + db.tables = db.data.tables; + // IF AUTOCOMMIT IS OFF then copy data to memory + if (!alasql.options.autocommit) { + if (db.tables) { + for (var tbid in db.tables) { + db.tables[tbid].data = db.data[tbid]; + } + } + } + if (cb) res = cb(res); + }); + return res; + }; + + FS.createTable = function (databaseid, tableid, ifnotexists, cb) { + var db = alasql.databases[databaseid]; + var tb = db.data[tableid]; + var res = 1; + + if (tb && !ifnotexists) { + throw new Error('Table "' + tableid + '" alsready exists in the database "' + fsdbid + '"'); + } + var table = alasql.databases[databaseid].tables[tableid]; + db.data.tables[tableid] = {columns: table.columns}; + db.data[tableid] = []; + + FS.updateFile(databaseid); + + if (cb) cb(res); + return res; + }; + + FS.updateFile = function (databaseid) { + var db = alasql.databases[databaseid]; + if (db.issaving) { + db.postsave = true; + return; + } + db.issaving = true; + db.postsave = false; + alasql.utils.saveFile(db.filename, JSON.stringify(db.data), function () { + db.issaving = false; + + if (db.postsave) { + setTimeout(function () { + FS.updateFile(databaseid); + }, 50); // TODO Test with different timeout parameters + } + }); + }; + + FS.dropTable = function (databaseid, tableid, ifexists, cb) { + var res = 1; + var db = alasql.databases[databaseid]; + if (!ifexists && !db.tables[tableid]) { + throw new Error( + 'Cannot drop table "' + tableid + '" in fileStorage, because it does not exist' + ); + } + delete db.tables[tableid]; + delete db.data.tables[tableid]; + delete db.data[tableid]; + FS.updateFile(databaseid); + if (cb) cb(res); + return res; + }; + + FS.fromTable = function (databaseid, tableid, cb, idx, query) { + var db = alasql.databases[databaseid]; + var res = db.data[tableid]; + if (cb) res = cb(res, idx, query); + return res; + }; + + FS.intoTable = function (databaseid, tableid, value, columns, cb) { + var db = alasql.databases[databaseid]; + var res = value.length; + var tb = db.data[tableid]; + if (!tb) tb = []; + db.data[tableid] = tb.concat(value); + FS.updateFile(databaseid); + if (cb) cb(res); + return res; + }; + + FS.loadTableData = function (databaseid, tableid) { + var db = alasql.databases[databaseid]; + db.tables[tableid].data = db.data[tableid]; + }; + + FS.saveTableData = function (databaseid, tableid) { + var db = alasql.databases[databaseid]; + db.data[tableid] = db.tables[tableid].data; + db.tables[tableid].data = null; + FS.updateFile(databaseid); + }; + + FS.commit = function (databaseid, cb) { + var db = alasql.databases[databaseid]; + var fsdb = {tables: {}}; + if (db.tables) { + for (var tbid in db.tables) { + db.data.tables[tbid] = {columns: db.tables[tbid].columns}; + db.data[tbid] = db.tables[tbid].data; + } + } + FS.updateFile(databaseid); + return cb ? cb(1) : 1; + }; + + FS.begin = FS.commit; + + FS.rollback = function (databaseid, cb) { + var res = 1; + var db = alasql.databases[databaseid]; + db.dbversion++; + wait(); + function wait() { + setTimeout(function () { + if (db.issaving) { + return wait(); + } else { + alasql.loadFile(db.filename, !!cb, function (data) { + db.data = data; + db.tables = {}; + for (var tbid in db.data.tables) { + var tb = new alasql.Table({columns: db.data.tables[tbid].columns}); + extend(tb, db.data.tables[tbid]); + db.tables[tbid] = tb; + if (!alasql.options.autocommit) { + db.tables[tbid].data = db.data[tbid]; + } + db.tables[tbid].indexColumns(); + } + + delete alasql.databases[databaseid]; + alasql.databases[databaseid] = new alasql.Database(databaseid); + extend(alasql.databases[databaseid], db); + alasql.databases[databaseid].engineid = 'FILESTORAGE'; + alasql.databases[databaseid].filename = db.filename; + + if (cb) res = cb(res); + // Todo: check why no return + }); + } + }, 100); + } + }; + if (utils.isBrowser && !utils.isWebWorker) { + alasql = alasql || false; + + if (!alasql) { + throw new Error('alasql was not found'); + } + + alasql.worker = function () { + throw new Error('Can find webworker in this enviroment'); + }; + + if (typeof Worker !== 'undefined') { + alasql.worker = function (path, paths, cb) { + // var path; + if (path === true) { + path = undefined; + } + + if (typeof path === 'undefined') { + var sc = document.getElementsByTagName('script'); + for (var i = 0; i < sc.length; i++) { + if (sc[i].src.substr(-16).toLowerCase() === 'alasql-worker.js') { + path = sc[i].src.substr(0, sc[i].src.length - 16) + 'alasql.js'; + break; + } else if (sc[i].src.substr(-20).toLowerCase() === 'alasql-worker.min.js') { + path = sc[i].src.substr(0, sc[i].src.length - 20) + 'alasql.min.js'; + break; + } else if (sc[i].src.substr(-9).toLowerCase() === 'alasql.js') { + path = sc[i].src; + break; + } else if (sc[i].src.substr(-13).toLowerCase() === 'alasql.min.js') { + path = sc[i].src.substr(0, sc[i].src.length - 13) + 'alasql.min.js'; + break; + } + } + } + + if (typeof path === 'undefined') { + throw new Error('Path to alasql.js is not specified'); + } else if (path !== false) { + var js = "importScripts('"; + js += path; + js += + "');self.onmessage = function(event) {" + + 'alasql(event.data.sql,event.data.params, function(data){' + + 'postMessage({id:event.data.id, data:data});});}'; + + var blob = new Blob([js], {type: 'text/plain'}); + alasql.webworker = new Worker(URL.createObjectURL(blob)); + + alasql.webworker.onmessage = function (event) { + var id = event.data.id; + + alasql.buffer[id](event.data.data); + delete alasql.buffer[id]; + }; + + alasql.webworker.onerror = function (e) { + throw e; + }; + + if (arguments.length > 1) { + var sql = + 'REQUIRE ' + + paths + .map(function (p) { + return '"' + p + '"'; + }) + .join(','); + alasql(sql, [], cb); + } + } else if (path === false) { + delete alasql.webworker; + return; + } + }; + } + /* FileSaver.js + * A saveAs() FileSaver implementation. + * 1.3.2 + * 2016-06-16 18:25:19 + * + * By Eli Grey, http://eligrey.com + * License: MIT + * See https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md + */ + + /*global self */ + /*jslint bitwise: true, indent: 4, laxbreak: true, laxcomma: true, smarttabs: true, plusplus: true */ + + /*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */ + + var saveAs = + saveAs || + (function (view) { + 'use strict'; + // IE <10 is explicitly unsupported + if ( + typeof view === 'undefined' || + (typeof navigator !== 'undefined' && /MSIE [1-9]\./.test(navigator.userAgent)) + ) { + return; + } + var doc = view.document, + // only get URL when necessary in case Blob.js hasn't overridden it yet + get_URL = function () { + return view.URL || view.webkitURL || view; + }, + save_link = doc.createElementNS('http://www.w3.org/1999/xhtml', 'a'), + can_use_save_link = 'download' in save_link, + click = function (node) { + var event = new MouseEvent('click'); + node.dispatchEvent(event); + }, + is_safari = /constructor/i.test(view.HTMLElement) || view.safari, + is_chrome_ios = /CriOS\/[\d]+/.test(navigator.userAgent), + throw_outside = function (ex) { + (view.setImmediate || view.setTimeout)(function () { + throw ex; + }, 0); + }, + force_saveable_type = 'application/octet-stream', + // the Blob API is fundamentally broken as there is no "downloadfinished" event to subscribe to + arbitrary_revoke_timeout = 1000 * 40, // in ms + revoke = function (file) { + var revoker = function () { + if (typeof file === 'string') { + // file is an object URL + get_URL().revokeObjectURL(file); + } else { + // file is a File + file.remove(); + } + }; + setTimeout(revoker, arbitrary_revoke_timeout); + }, + dispatch = function (filesaver, event_types, event) { + event_types = [].concat(event_types); + var i = event_types.length; + while (i--) { + var listener = filesaver['on' + event_types[i]]; + if (typeof listener === 'function') { + try { + listener.call(filesaver, event || filesaver); + } catch (ex) { + throw_outside(ex); + } + } + } + }, + auto_bom = function (blob) { + // prepend BOM for UTF-8 XML and text/* types (including HTML) + // note: your browser will automatically convert UTF-16 U+FEFF to EF BB BF + if ( + /^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test( + blob.type + ) + ) { + return new Blob([String.fromCharCode(0xfeff), blob], { + type: blob.type, + }); + } + return blob; + }, + FileSaver = function (blob, name, no_auto_bom) { + if (!no_auto_bom) { + blob = auto_bom(blob); + } + // First try a.download, then web filesystem, then object URLs + var filesaver = this, + type = blob.type, + force = type === force_saveable_type, + object_url, + dispatch_all = function () { + dispatch(filesaver, 'writestart progress write writeend'.split(' ')); + }, + // on any filesys errors revert to saving with object URLs + fs_error = function () { + if ((is_chrome_ios || (force && is_safari)) && view.FileReader) { + // Safari doesn't allow downloading of blob urls + var reader = new FileReader(); + reader.onloadend = function () { + var url = is_chrome_ios + ? reader.result + : reader.result.replace(/^data:[^;]*;/, 'data:attachment/file;'); + var popup = view.open(url, '_blank'); + if (!popup) view.location.href = url; + url = undefined; // release reference before dispatching + filesaver.readyState = filesaver.DONE; + dispatch_all(); + }; + reader.readAsDataURL(blob); + filesaver.readyState = filesaver.INIT; + return; + } + // don't create more object URLs than needed + if (!object_url) { + object_url = get_URL().createObjectURL(blob); + } + if (force) { + view.location.href = object_url; + } else { + var opened = view.open(object_url, '_blank'); + if (!opened) { + // Apple does not allow window.open, see https://developer.apple.com/library/safari/documentation/Tools/Conceptual/SafariExtensionGuide/WorkingwithWindowsandTabs/WorkingwithWindowsandTabs.html + view.location.href = object_url; + } + } + filesaver.readyState = filesaver.DONE; + dispatch_all(); + revoke(object_url); + }; + filesaver.readyState = filesaver.INIT; + + if (can_use_save_link) { + object_url = get_URL().createObjectURL(blob); + setTimeout(function () { + save_link.href = object_url; + save_link.download = name; + click(save_link); + dispatch_all(); + revoke(object_url); + filesaver.readyState = filesaver.DONE; + }); + return; + } + + fs_error(); + }, + FS_proto = FileSaver.prototype, + saveAs = function (blob, name, no_auto_bom) { + return new FileSaver(blob, name || blob.name || 'download', no_auto_bom); + }; + // IE 10+ (native saveAs) + if (typeof navigator !== 'undefined' && navigator.msSaveOrOpenBlob) { + return function (blob, name, no_auto_bom) { + name = name || blob.name || 'download'; + + if (!no_auto_bom) { + blob = auto_bom(blob); + } + return navigator.msSaveOrOpenBlob(blob, name); + }; + } + + FS_proto.abort = function () {}; + FS_proto.readyState = FS_proto.INIT = 0; + FS_proto.WRITING = 1; + FS_proto.DONE = 2; + + FS_proto.error = + FS_proto.onwritestart = + FS_proto.onprogress = + FS_proto.onwrite = + FS_proto.onabort = + FS_proto.onerror = + FS_proto.onwriteend = + null; + + return saveAs; + })( + (typeof self !== 'undefined' && self) || + (typeof window !== 'undefined' && window) || + this.content + ); + // `self` is undefined in Firefox for Android content script context + // while `this` is nsIContentFrameMessageManager + // with an attribute `content` that corresponds to the window + + if (typeof module !== 'undefined' && module.exports) { + module.exports.saveAs = saveAs; + } else if (typeof define !== 'undefined' && define !== null && define.amd !== null) { + define('FileSaver.js', function () { + return saveAs; + }); + } + /* eslint-disable */ + + /* +// +// Last part of Alasql.js +// Date: 03.11.2014 +// (c) 2014, Andrey Gershun +// +*/ + + // This is a final part of Alasql + + /*only-for-browser/* +if(utils.isCordova || utils.isMeteorServer || utils.isNode ){ + console.log('It looks like you are using the browser version of AlaSQL. Please use the alasql.fs.js file instead.') +} +//*/ + + // FileSaveAs + alasql.utils.saveAs = saveAs; + } + + // Create default database + new Database('alasql'); + + // Set default database + alasql.use('alasql'); + + return alasql; +}); From a312c62b3376eaf059b6687548cb1163a916ec71 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Sat, 2 Nov 2024 05:42:33 -0700 Subject: [PATCH 15/23] edit cache pipeline --- .../CacheConnection/SqliteCacheConnection.js | 265 +++++++++++------- cache/cachedb.sql | Bin 20480 -> 0 bytes endPoint/nonSecureHttpHostEndPoint.js | 13 +- index.js | 8 +- test/hostdetailsapi.js | 25 ++ 5 files changed, 208 insertions(+), 103 deletions(-) delete mode 100644 cache/cachedb.sql create mode 100644 test/hostdetailsapi.js diff --git a/Models/CacheCommands/CacheConnection/SqliteCacheConnection.js b/Models/CacheCommands/CacheConnection/SqliteCacheConnection.js index 5bfd6bb..fe2ef98 100644 --- a/Models/CacheCommands/CacheConnection/SqliteCacheConnection.js +++ b/Models/CacheCommands/CacheConnection/SqliteCacheConnection.js @@ -13,6 +13,7 @@ import BasisCoreException from "../../Exceptions/BasisCoreException.js"; import { StorageTypeEnum } from "../../../enums/StorageTypeEnum.js"; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); +sqlite3.verbose(); class UserAgentRow { /** @type {number} */ @@ -46,7 +47,7 @@ export default class SqliteCacheConnection extends CacheConnectionBase { async initializeAsync() { const dbExists = existsSync(this.settings.dbPath + "cachedb.sql"); const fileDB = await open({ - filename: this.settings.dbPath + "cachedb.sql", + filename: this.settings.dbPath + "cachedb.db", driver: sqlite3.Database, }); if (!dbExists) { @@ -60,44 +61,103 @@ export default class SqliteCacheConnection extends CacheConnectionBase { this.fileDB = fileDB; this.deleteExpiredCachesAsync(); } - async #loadInMemoryDataBase() { - const memoryDB = await open({ - filename: ":memory:", - driver: sqlite3.Database, - }); - await memoryDB.exec( - `ATTACH DATABASE '${this.settings.dbPath + "cachedb.sql"}' AS fileDB` - ); - const tables = await memoryDB.all( - "SELECT name FROM fileDB.sqlite_master WHERE type='table'" - ); - for (const table of tables) { - const tableExists = await memoryDB.get( - `SELECT name FROM sqlite_master WHERE type='table' AND name='${table.name}'` - ); - if (!tableExists && table.name != "sqlite_sequence") { - await memoryDB.exec( - `CREATE TABLE ${table.name} AS SELECT * FROM fileDB.${table.name}` + async #loadInMemoryDataBase(fileDB) { + try { + const memoryDB = await open({ + filename: ":memory:", + driver: sqlite3.Database, + }); + memoryDB.getDatabaseInstance().serialize(() => { + memoryDB.run(` + CREATE TABLE IF NOT EXISTS memory_cache_result ( + id INTEGER, + key TEXT, + properties TEXT, + storage_type INTEGER, + profileid INTEGER, + profiles TEXT, + default_profile_id INTEGER + dmnid , + created_at DATETIME DEFAULT CURRENT_TIMESTAMP + ); + `); + fileDB.each( + ` + SELECT + cr.id, + cr.key, + cr.properties, + cr.storage_type, + cr.profileid, + hl.profiles, + hl.default_profile_id, + cr.dmnid +FROM + cache_results cr +JOIN + hosts_list hl ON cr.dmnid = hl.id; + + `, + (err, row) => { + if (err) throw err; + memoryDB.run( + ` + INSERT INTO memory_cache_result (id, key, properties, storage_type, profileid,profiles,default_profile_id) + VALUES (?, ?, ?, ?, ?,?,?); + `, + [ + row.id, + row.key, + row.properties, + row.storage_type, + row.profileid, + row.profiles, + row.default_profile_id, + ] + ); + } ); - console.log(`Table ${table.name} copied to in-memory database.`); - } + }); + return memoryDB; + } catch (error) { + console.log(error.stack); } - await memoryDB.exec("DETACH DATABASE fileDB"); - return memoryDB; } /** * * @param {string} key + * @param {string} useragent * @param {CancellationToken} cancellationToken * @returns {Promise} */ - async loadContentAsync(key, cancellationToken) { - const query = `SELECT * FROM cache_results WHERE key = ?`; - const result = await this.#executeSqliteQuery(this.memoryDB, query, [key]); - if (result.length < 1) { + async loadContentAsync(key, useragent, cancellationToken) { + const useragentDetailsQuery = `SELECT * FROM user_devices WHERE useragent = ?`; + const useragentDetails = await this.#executeSqliteQuery( + this.fileDB, + useragentDetailsQuery, + [key] + ); + if (useragentDetails.length < 1) { return; } + const query = `SELECT * FROM memory_cache_result WHERE key = ? AND profileid = ?`; + let result = await this.#executeSqliteQuery(this.memoryDB, query, [ + key, + useragentDetails[0].profileid, + ]); + if (result.length < 1) { + /** @type {Array} */ + const hostProfiles = JSON.parse(result[0].profiles); + if (hostProfiles.includes(useragentDetails[0].profileid)) return; + const defaultCacheQuery = `SELECT * FROM memory_cache_result WHERE key = ? AND profileid = default_profile_id `; + result = await this.#executeSqliteQuery( + this.memoryDB, + defaultCacheQuery, + [key] + ); + if (result.length == 0) return; + } let retVal; try { result[0].content = @@ -122,27 +182,15 @@ export default class SqliteCacheConnection extends CacheConnectionBase { */ async addCacheContentAsync(key, content, properties, cms) { try { - let { - isCachingAllowed, - assetExpireAfterDays, - expireDate, - ownerId, - dmnid, - hostexpiredate, - } = cms; - await this.#addOrUpdateHost( - dmnid, - hostexpiredate, - isCachingAllowed, - ownerId, - expireDate - ); - await this.#executeSqliteQueryOnBothDBs( - `DELETE FROM cache_results WHERE key = ?`, + let { assetExpireAfterDays, ownerId, dmnid } = cms; + let { domains, default_profile_id, expireAfter } = + await this.#addOrUpdateHost(dmnid, ownerId); + await this.#executeSqliteQuery( + this.fileDB`DELETE FROM cache_results WHERE key = ?`, [key] ); - const query = `INSERT INTO cache_results (key, content, properties , expire_at, dmnid ,storage_type) VALUES (?, ?, ?,?,?,?)`; - + const query = `INSERT INTO cache_results (key, content, properties , expire_at, dmnid ,storage_type,profileid) VALUES (?, ?, ?,?,?,?,?)`; + const inMemoryQuery = `INSERT INTO memory_cache_result (key,content,properties,dmnid,storage_type,profileid,default_profile_id) VALUES (?,?, ?,?,?,?,?,?)`; let filePath; let filename; if (this.settings.isFileBase) { @@ -156,7 +204,7 @@ export default class SqliteCacheConnection extends CacheConnectionBase { await fs.mkdir(path.dirname(filePath), { recursive: true }); await fs.writeFile(path.join(filePath, filename), content); } - await this.#executeSqliteQueryOnBothDBs(query, [ + await this.#executeSqliteQuery(this.fileDB, query, [ key, this.settings.isFileBase ? path.join(filePath, filename) : content, JSON.stringify(properties), @@ -164,6 +212,15 @@ export default class SqliteCacheConnection extends CacheConnectionBase { dmnid, this.settings.isFileBase ? 1 : 0, ]); + await this.#executeSqliteQuery(this.memoryDB, inMemoryQuery, [ + key, + this.settings.isFileBase ? path.join(filePath, filename) : content, + JSON.stringify(properties), + assetExpireAfterDays, + dmnid, + this.settings.isFileBase ? 1 : 0, + default_profile_id, + ]); } catch (err) { throw new Error("error in add cache : " + err); } @@ -193,18 +250,13 @@ export default class SqliteCacheConnection extends CacheConnectionBase { */ async #executeSqliteQuery(db, query, params = []) { try { + console.log(query) return db.all(query, params); } catch (err) { console.error("Error running query:", query, err.message); throw new BasisCoreException("Error running query", err); } } - async #executeSqliteQueryOnBothDBs(query, params) { - return Promise.all([ - this.#executeSqliteQuery(this.fileDB, query, params), - this.#executeSqliteQuery(this.memoryDB, query, params), - ]); - } async deleteExpiredCachesAsync() { if (this.settings.isFileBase) { const selectQuery = `SELECT * @@ -218,13 +270,21 @@ WHERE cr.storage_type = 1 `; const result = await this.#executeSqliteQuery( - this.memoryDB, + this.fileDB, selectQuery, [] ); + const deleteInMemoryCachePromises = []; const deleteFilePromises = result.map((element) => { try { - fs.unlink(element.content); + deleteInMemoryCachePromises.push( + this.#executeSqliteQuery( + this.memoryDB, + "DELETE FROM memory_cache_result WHERE key = ? AND profileid = ?", + [element.key, element.profileid] + ) + ); + return fs.unlink(element.content); } catch (err) { console.log( `file not found or no access to tis file : ${element.content}` @@ -242,13 +302,13 @@ WHERE ( )) ); `; - await this.#executeSqliteQueryOnBothDBs(query, []); + await this.#executeSqliteQuery(this.fileDB, query, []); } /** @returns {Promise} */ async deleteAllCache() { - return await this.#executeSqliteQueryOnBothDBs( - `DELETE FROM cache_results`, + return await this.#executeSqliteQuery( + this.memoryDB`DELETE FROM cache_results`, [] ); } @@ -275,6 +335,7 @@ CREATE TABLE IF NOT EXISTS cache_results ( created_at DATETIME DEFAULT CURRENT_TIMESTAMP, expire_at number, dmnid INTEGER, + profileid INTEGER, storage_type INTEGER, FOREIGN KEY (dmnid) REFERENCES hosts_list(id) ON DELETE CASCADE ); @@ -287,8 +348,8 @@ CREATE TABLE IF NOT EXISTS cache_results ( CREATE TABLE IF NOT EXISTS user_devices ( id INTEGER PRIMARY KEY, useragent TEXT, - deviceid INTEGER, - updatedat + profileid INTEGER, + lastupdate ); `, [] @@ -311,7 +372,10 @@ CREATE TABLE IF NOT EXISTS user_devices ( expire_date number, owner_expire_date DATETIME, is_caching_allowed INTEGER, - owner_id INTEGER + owner_id INTEGER, + profiles TEXT, + default_profile_id INTEGER, + domains STRING ); `, [] ); @@ -328,7 +392,7 @@ CREATE TABLE IF NOT EXISTS user_devices ( cr.expire_at < CURRENT_TIMESTAMP AND cr.storage_type = 1;`; let expiredFileBasedCaches = await this.#executeSqliteQuery( - this.memoryDB, + this.fileDB, selectQuery, [] ); @@ -342,8 +406,8 @@ CREATE TABLE IF NOT EXISTS user_devices ( } }); await promise.all(deleteFilePromises); - await this.#executeSqliteQueryOnBothDBs( - `DELETE + await this.#executeSqliteQuery( + this.fileDB`DELETE cr FROM cache_results cr @@ -354,41 +418,28 @@ CREATE TABLE IF NOT EXISTS user_devices ( [] ); const query = `DELETE FROM hosts_list WHERE expire_date <= CURRENT_TIMESTAMP`; - await this.#executeSqliteQueryOnBothDBs(query, []); + await this.#executeSqliteQuery(this.fileDB, query, []); } /** * * @param {number} dmnId - * @param {string} hostexpiredate - * @param {boolean} isCachingAllowed * @param {number} ownerId - * @returns {Promise} + * @returns {Promise<{default_profile_id : number,expireAfter : string,domains : string}>} */ - async #addOrUpdateHost( - dmnId, - hostexpiredate, - isCachingAllowed, - ownerId, - ownerExpireDate, - setting - ) { + async #addOrUpdateHost(dmnId, ownerId) { const existingHost = await this.#executeSqliteQuery( - this.memoryDB, + this.fileDB, "SELECT * FROM hosts_list WHERE id = ?", [dmnId] ); - if (existingHost.length > 0) { - await this.#executeSqliteQueryOnBothDBs( - `UPDATE hosts_list SET - expire_date = ?, - is_caching_allowed = ?, - owner_id = ?, - owner_expire_date = ? - WHERE id = ?`, - [hostexpiredate, isCachingAllowed, ownerId, ownerExpireDate, dmnId] - ); - } else { - // Insert a new record + if (existingHost.length <= 0) { + let hostDetailResponse = await fetch(this.settings.hostDetailsApiUrl, { + body: JSON.stringify({ + dmnId, + ownerId, + }), + }); + const hostDetailData = await hostDetailResponse.json(); if (this.settings.isFileBase) { console.log(`create sub-directories`); this.#createDirectories( @@ -398,12 +449,32 @@ CREATE TABLE IF NOT EXISTS user_devices ( ); } - await this.#executeSqliteQueryOnBothDBs( - `INSERT INTO hosts_list (id, expire_date, is_caching_allowed, owner_id, owner_expire_date) + await this.#executeSqliteQuery( + this + .fileDB`INSERT INTO hosts_list (id, expire_date, is_caching_allowed, owner_id, owner_expire_date,profiles,default_profile_id,domains) VALUES (?, ?, ?, ?, ?)`, - [dmnId, hostexpiredate, isCachingAllowed, ownerId, ownerExpireDate] + [ + dmnId, + hostDetailData.defaultCacheExpire, + hostDetailData.isCachingAllowed, + ownerId, + hostDetailData.expireAt, + hostDetailData.profiles, + hostDetailData.defaultIndexID, + hostDetailData.domains, + ] ); + return { + default_profile_id: existingHost.defaultIndexID, + expireAfter: hostDetailData.defaultCacheExpire, + domains: hostDetailData.domains, + }; } + return { + default_profile_id: existingHost[0].defaultIndexID, + expireAfter: existingHost[0].defaultCacheExpire, + domains: existingHost[0].domains, + }; } async changeHostCacheExpire(numberOfDays, dmnid) { const query = ` @@ -411,7 +482,7 @@ CREATE TABLE IF NOT EXISTS user_devices ( SET expire_at = DATETIME(created_at, ?) WHERE id = ?; `; - await this.#executeSqliteQueryOnBothDBs(query, [numberOfDays, dmnid]); + await this.#executeSqliteQuery(this.fileDB, query, [numberOfDays, dmnid]); } async changeOwnerCacheExpire(numberOfDays, dmnid) { const query = ` @@ -419,7 +490,7 @@ CREATE TABLE IF NOT EXISTS user_devices ( SET owner_expire_at = DATETIME(created_at, ?) WHERE id = ?; `; - await this.#executeSqliteQueryOnBothDBs(query, [numberOfDays, dmnid]); + await this.#executeSqliteQuery(this.fileDB, query, [numberOfDays, dmnid]); } /** * @@ -432,7 +503,7 @@ CREATE TABLE IF NOT EXISTS user_devices ( UPDATE cache_results SET expire_at = DATETIME(created_at, ?) WHERE key = ?;`; - await this.#executeSqliteQueryOnBothDBs(query, [numberOfDays, key]); + await this.#executeSqliteQuery(this.fileDB, query, [numberOfDays, key]); } async addUserAgentsAsync() { let pagesize = 30; @@ -475,8 +546,8 @@ CREATE TABLE IF NOT EXISTS user_devices ( * @param {"insert"|"edit"} mode */ async #upsertDataAsync(db, dataArray, mode) { - const insertSql = `INSERT INTO user_devices (id, deviceid, useragent,lastupdate) VALUES (?,?, ?,?)`; - const updateSql = `UPDATE user_devices SET lastupdate = ?,deviceid = ?, useragent = ? WHERE id = ?`; + const insertSql = `INSERT INTO user_devices (id, profileid, useragent,lastupdate) VALUES (?,?, ?,?)`; + const updateSql = `UPDATE user_devices SET lastupdate = ?,profileid = ?, useragent = ? WHERE id = ?`; db.serialize(() => { dataArray.forEach((data) => { const { id, deviceid, useragent, lastupdate } = data; diff --git a/cache/cachedb.sql b/cache/cachedb.sql deleted file mode 100644 index 4c332f9cea7f7be69c9c65b923c9a387b560e6e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20480 zcmeI&O>f&a7yw{OQIpj`oEAIe%H)z5Z5&CIY{|gZcn%YIi=EV#;RXmM=z~gx*|H-s zYl>or6g%u+4A{>ru=|dqWv8~gb;E!ihU_J5i65dQJ})mXpzh0)m@^!W(xJyOK~In* zp#zK&LXT#DamtG@b)IY|rkPgNhGa{9}9ks@XN02O~Ow$=}dPd;@q^n(BhfB*=9 z00@8p2!H?xfWUuQ;I6f@wz;(>y<^<-2kdH;@ys2>8K2jbMu*lNik>yB)_Vb3;#LYRS#eXX&(m^g3awyEu9% z9^^Dzvw3mm23~L#Czq}_7>r)C506@$KYxJ&E)ivQ^LR@_aT2oI?0O)QL)W|EqrC0T zU*6T`^+}@m*(6A3^6KWZXVQ62F`JyR>l>B??4#z&63Rz|yNNes&&ABryKkkn&7B?T z$G7=CC#zv@%CegQ&z2hU(*2f({@S_Tb55IWF}p?E&Xnal_69rj)vOha63!C7&@)a) zW0vxmWec4_%0zfVS7g!mLBNOfsNOqqaHH4hh`YO!$aI~0>uf2kV#Z=n!(lRy$n?UD zk5ccFx%|zT-EWrZ$kAzsHjmr+j@iv;mT-q2QSrD2?JjJ#-8d}a)3$h}6Dsy%quy=Q z4{4#aF2W`kuhGVr;s6B%KmY_l00ck)1V8`;KmY_l00jOmfxEBe0_xtqpoGYeuQ(sq z_V+c*EE`6dSY?aU41?@P-uJP{yUXH`r}9xeVA+LXnC68h%0(F2niW*diq14$w<|U? zY+|T^T8YfaBo)SjAkr(IuU43Ed8Tct1~Dw1R7qrpfnWCHv)`Mf)!Vgg&Tjes z6(0_^f6!Ik*wfTK)xw%yQ|+3m-*;)`LzmLOdm$Cj7k{&uKV5-NLOTpSwW<-KRzsqy zOxM(iF+;P77O1N4>lU*uV*7gNM|u!xO!KOt?N=(Mq5tz081^4lVAx83lK)E^zasI2 z0sq5e+TAbUkLyJ diff --git a/endPoint/nonSecureHttpHostEndPoint.js b/endPoint/nonSecureHttpHostEndPoint.js index 65910c6..a4143c3 100644 --- a/endPoint/nonSecureHttpHostEndPoint.js +++ b/endPoint/nonSecureHttpHostEndPoint.js @@ -23,7 +23,7 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { try { this._securityHeadersMiddleware(req, res, async () => { this._handleContentTypes(req, res, async () => { - this._checkCacheAsync(req, res, async () => { + this._checkCacheAsync(req, res, false, async () => { const createCmsAndCreateResponseAsync = async () => { const queryObj = url.parse(req.url, true).query; let debugCondition = @@ -47,10 +47,16 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { req.bodyStr, false ); - const result = await this._service.processAsync( + let result = await this._service.processAsync( cms, req.fileContents ); + let cachecms; + if (result.result) { + + cachecms = result.responseCms; + result = result.result; + } routingDataStep?.complete(); const [code, headers, body] = await result.getResultAsync( routingDataStep, @@ -65,7 +71,8 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { `http://${req.headers.host}${req.url}`, body, headers, - req.method + req.method, + cachecms ); } res.writeHead(code, headers); diff --git a/index.js b/index.js index 5279ca1..8e4d9b8 100644 --- a/index.js +++ b/index.js @@ -8,7 +8,7 @@ const host = { Type: "http", Addresses: [ { - EndPoint: "185.44.38.83:443", + EndPoint: "127.0.0.1:443", }, ], Active: true, @@ -21,7 +21,9 @@ const host = { connectionSetting: { dbPath: "./cache/", filesPath : "./cachefiles/", - isFileBase : true + isFileBase : true, + hostDetailsApiUrl: "127.0.0.1:3000" + }, }, }, @@ -30,7 +32,7 @@ const host = { mainservice: { Type: "http", Settings: { - LibPath: "C:\\Users\\senka\\OneDrive\\Desktop\\projects\\BasisCore.Server.Node\\ExternalCommands", + LibPath: "C:\\apps\\testwebserver\\BasisCore.Server.Node\\ExternalCommands", "Connections.edge.RoutingData": { endpoint: "127.0.0.1:8000", }, diff --git a/test/hostdetailsapi.js b/test/hostdetailsapi.js new file mode 100644 index 0000000..ef718a2 --- /dev/null +++ b/test/hostdetailsapi.js @@ -0,0 +1,25 @@ +import http from "http" +// Create the server +const server = http.createServer((req, res) => { + // Set the response header to indicate JSON content + res.writeHead(200, { 'Content-Type': 'application/json' }); + const date = new Date() + // Prepare the JSON data + const data = { + defaultCacheExpire:1, + isCachingAllowed:true, + expireAt:date.toISOString(), + profiles:[1,2,3], + defaultIndexID:1, + domains:["google.com"], + }; + + // Send the JSON response + res.end(JSON.stringify(data)); +}); + +// Start the server on port 3000 +const PORT = 3000; +server.listen(PORT, () => { + console.log(`Server is running on http://localhost:${PORT}`); +}); From 2d05756f4bb8eeafda76f29a731d10ab4ef5807e Mon Sep 17 00:00:00 2001 From: alibazregar Date: Sun, 3 Nov 2024 12:15:12 +0330 Subject: [PATCH 16/23] FINAL CACHE CHANGES --- .../CacheConnection/SqliteCacheConnection.js | 216 ++++++++++-------- endPoint/httpHostEndPoint.js | 4 +- index.js | 4 +- 3 files changed, 120 insertions(+), 104 deletions(-) diff --git a/Models/CacheCommands/CacheConnection/SqliteCacheConnection.js b/Models/CacheCommands/CacheConnection/SqliteCacheConnection.js index fe2ef98..e63df93 100644 --- a/Models/CacheCommands/CacheConnection/SqliteCacheConnection.js +++ b/Models/CacheCommands/CacheConnection/SqliteCacheConnection.js @@ -69,15 +69,16 @@ export default class SqliteCacheConnection extends CacheConnectionBase { }); memoryDB.getDatabaseInstance().serialize(() => { memoryDB.run(` - CREATE TABLE IF NOT EXISTS memory_cache_result ( + CREATE TABLE memory_cache_result ( id INTEGER, key TEXT, + content TEXT, properties TEXT, storage_type INTEGER, profileid INTEGER, profiles TEXT, - default_profile_id INTEGER - dmnid , + default_profile_id INTEGER, + dmnid INTEGER, created_at DATETIME DEFAULT CURRENT_TIMESTAMP ); `); @@ -86,6 +87,7 @@ export default class SqliteCacheConnection extends CacheConnectionBase { SELECT cr.id, cr.key, + cr.content, cr.properties, cr.storage_type, cr.profileid, @@ -102,17 +104,19 @@ JOIN if (err) throw err; memoryDB.run( ` - INSERT INTO memory_cache_result (id, key, properties, storage_type, profileid,profiles,default_profile_id) - VALUES (?, ?, ?, ?, ?,?,?); + INSERT INTO memory_cache_result (id, content,key, properties, storage_type, profileid,profiles,default_profile_id,dmnid) + VALUES (?, ?, ?, ?, ?,?,?,?,?); `, [ row.id, + row.content, row.key, row.properties, row.storage_type, row.profileid, row.profiles, row.default_profile_id, + row.dmnid ] ); } @@ -136,7 +140,7 @@ JOIN const useragentDetails = await this.#executeSqliteQuery( this.fileDB, useragentDetailsQuery, - [key] + [useragent] ); if (useragentDetails.length < 1) { return; @@ -146,7 +150,12 @@ JOIN key, useragentDetails[0].profileid, ]); - if (result.length < 1) { + if (result.length == 0 && !result[0]) { + const urlprofilesQuery = `SELECT * FROM memory_cache_result WHERE key = ?`; + result = await this.#executeSqliteQuery(this.memoryDB, urlprofilesQuery, [ + key, + ]); + if (!result[0]) return /** @type {Array} */ const hostProfiles = JSON.parse(result[0].profiles); if (hostProfiles.includes(useragentDetails[0].profileid)) return; @@ -163,8 +172,8 @@ JOIN result[0].content = result[0]?.storage_type == StorageTypeEnum.FileBase ? await fs.readFile( - path.join(__dirname, "../../../", result[0]?.content) - ) + path.join(__dirname, "../../../", result[0]?.content) + ) : result[0].content; retVal = result[0]; } catch (error) { @@ -181,49 +190,57 @@ JOIN * @returns {Promise} */ async addCacheContentAsync(key, content, properties, cms) { - try { - let { assetExpireAfterDays, ownerId, dmnid } = cms; - let { domains, default_profile_id, expireAfter } = - await this.#addOrUpdateHost(dmnid, ownerId); - await this.#executeSqliteQuery( - this.fileDB`DELETE FROM cache_results WHERE key = ?`, - [key] + // try { + let { assetExpireAfterDays, ownerId, dmnid } = cms.cms; + let { domains, default_profile_id, expireAfter, profiles } = + await this.#addOrUpdateHost(dmnid, ownerId); + await this.#executeSqliteQuery( + this.fileDB, `DELETE FROM cache_results WHERE key = ?`, + [key] + ); + const query = `INSERT INTO cache_results (key, content, properties , expire_at, dmnid ,storage_type,profileid) VALUES (?, ?, ?,?,?,?,?)`; + const inMemoryQuery = `INSERT INTO memory_cache_result (key,content,properties,dmnid,storage_type,default_profile_id,profileid,profiles) VALUES (?,?, ?,?,?,?,?,?)`; + let filePath; + let filename; + if (this.settings.isFileBase) { + filename = + crypto.createHash("sha256").update(key).digest("hex") + ".bin"; + filePath = path.join( + this.settings.filesPath, + ownerId.toString(), + dmnid.toString() ); - const query = `INSERT INTO cache_results (key, content, properties , expire_at, dmnid ,storage_type,profileid) VALUES (?, ?, ?,?,?,?,?)`; - const inMemoryQuery = `INSERT INTO memory_cache_result (key,content,properties,dmnid,storage_type,profileid,default_profile_id) VALUES (?,?, ?,?,?,?,?,?)`; - let filePath; - let filename; - if (this.settings.isFileBase) { - filename = - crypto.createHash("sha256").update(key).digest("hex") + ".bin"; - filePath = path.join( - this.settings.filesPath, - ownerId.toString(), - dmnid.toString() - ); - await fs.mkdir(path.dirname(filePath), { recursive: true }); - await fs.writeFile(path.join(filePath, filename), content); - } - await this.#executeSqliteQuery(this.fileDB, query, [ - key, - this.settings.isFileBase ? path.join(filePath, filename) : content, - JSON.stringify(properties), - assetExpireAfterDays, - dmnid, - this.settings.isFileBase ? 1 : 0, - ]); - await this.#executeSqliteQuery(this.memoryDB, inMemoryQuery, [ - key, - this.settings.isFileBase ? path.join(filePath, filename) : content, - JSON.stringify(properties), - assetExpireAfterDays, - dmnid, - this.settings.isFileBase ? 1 : 0, - default_profile_id, - ]); - } catch (err) { - throw new Error("error in add cache : " + err); + await fs.mkdir(path.dirname(filePath), { recursive: true }); + await fs.writeFile(path.join(filePath, filename), content); } + const useragentDetailsQuery = `SELECT * FROM user_devices WHERE useragent = ?`; + const useragentDetails = await this.#executeSqliteQuery( + this.fileDB, + useragentDetailsQuery, + [cms.request["user-agent"]] + ); + await this.#executeSqliteQuery(this.fileDB, query, [ + key, + this.settings.isFileBase ? path.join(filePath, filename) : content, + JSON.stringify(properties), + assetExpireAfterDays, + dmnid, + this.settings.isFileBase ? 1 : 0, + useragentDetails[0].profileid ?? 1 + ]); + await this.#executeSqliteQuery(this.memoryDB, inMemoryQuery, [ + key, + this.settings.isFileBase ? path.join(filePath, filename) : content, + JSON.stringify(properties), + dmnid, + this.settings.isFileBase ? 1 : 0, + default_profile_id, + useragentDetails[0].profileid ?? 1, + JSON.stringify(profiles) + ]); + // } catch (err) { + // throw new Error("error in add cache : " + err); + // } } #createDirectories(dirPath, ownerId, hostId) { dirPath = dirPath.trim(); @@ -250,16 +267,16 @@ JOIN */ async #executeSqliteQuery(db, query, params = []) { try { - console.log(query) - return db.all(query, params); + + const result = await db.all(query, params); + return result } catch (err) { console.error("Error running query:", query, err.message); - throw new BasisCoreException("Error running query", err); + throw new BasisCoreException("Error running query", err, params); } } async deleteExpiredCachesAsync() { - if (this.settings.isFileBase) { - const selectQuery = `SELECT * + const selectQuery = `SELECT * FROM cache_results cr JOIN hosts_list hl ON cr.dmnid = hl.id WHERE cr.storage_type = 1 @@ -269,40 +286,29 @@ WHERE cr.storage_type = 1 ); `; - const result = await this.#executeSqliteQuery( - this.fileDB, - selectQuery, - [] - ); - const deleteInMemoryCachePromises = []; - const deleteFilePromises = result.map((element) => { - try { - deleteInMemoryCachePromises.push( - this.#executeSqliteQuery( - this.memoryDB, - "DELETE FROM memory_cache_result WHERE key = ? AND profileid = ?", - [element.key, element.profileid] - ) - ); - return fs.unlink(element.content); - } catch (err) { - console.log( - `file not found or no access to tis file : ${element.content}` - ); - } - }); - await Promise.all(deleteFilePromises); - } - const query = `DELETE FROM cache_results -WHERE ( - (expire_at IS NOT NULL AND DATE(created_at, '+' || expire_at || ' days') < DATE('now')) - OR (expire_at IS NULL AND dmnid IN ( - SELECT id FROM hosts_list - WHERE DATE(created_at, '+' || expire_date || ' days') < DATE('now') - )) - ); -`; - await this.#executeSqliteQuery(this.fileDB, query, []); + const result = await this.#executeSqliteQuery( + this.fileDB, + selectQuery, + [] + ); + const deleteInMemoryCachePromises = []; + const deleteFilePromises = result.map((element) => { + try { + deleteInMemoryCachePromises.push( + this.#executeSqliteQuery( + this.memoryDB, + "DELETE FROM memory_cache_result WHERE key = ? AND profileid = ?", + [element.key, element.profileid] + ) + ); + if (element.storage_type == 1) return fs.unlink(element.content); + } catch (err) { + console.log( + `file not found or no access to tis file : ${element.content}` + ); + } + }); + await Promise.all(deleteFilePromises); } /** @returns {Promise} */ @@ -349,7 +355,7 @@ CREATE TABLE IF NOT EXISTS user_devices ( id INTEGER PRIMARY KEY, useragent TEXT, profileid INTEGER, - lastupdate + lastupdate TEXT ); `, [] @@ -391,14 +397,21 @@ CREATE TABLE IF NOT EXISTS user_devices ( WHERE cr.expire_at < CURRENT_TIMESTAMP AND cr.storage_type = 1;`; - let expiredFileBasedCaches = await this.#executeSqliteQuery( + let expiredCaches = await this.#executeSqliteQuery( this.fileDB, selectQuery, [] ); - const deleteFilePromises = expiredFileBasedCaches.map((element) => { + const deleteFilePromises = expiredCaches.map(async (element) => { try { - return fs.unlink(element.content); + await this.#executeSqliteQuery( + this.memoryDB, + "DELETE FROM memory_cache_result WHERE key = ? && profileid = ?", + [element.key, element.profileid] + ); + if (element.storage_type == 1) { + return fs.unlink(element.content); + } } catch (err) { console.log( `unexpected error to delete ${element.content}. file deleted or the webserver have no access to delete the cache.` @@ -432,12 +445,13 @@ CREATE TABLE IF NOT EXISTS user_devices ( "SELECT * FROM hosts_list WHERE id = ?", [dmnId] ); - if (existingHost.length <= 0) { + if (existingHost.length == 0) { let hostDetailResponse = await fetch(this.settings.hostDetailsApiUrl, { body: JSON.stringify({ dmnId, ownerId, }), + method: "POST" }); const hostDetailData = await hostDetailResponse.json(); if (this.settings.isFileBase) { @@ -451,29 +465,31 @@ CREATE TABLE IF NOT EXISTS user_devices ( await this.#executeSqliteQuery( this - .fileDB`INSERT INTO hosts_list (id, expire_date, is_caching_allowed, owner_id, owner_expire_date,profiles,default_profile_id,domains) - VALUES (?, ?, ?, ?, ?)`, + .fileDB, `INSERT INTO hosts_list (id, expire_date, is_caching_allowed, owner_id, owner_expire_date,profiles,default_profile_id,domains) + VALUES (?, ?, ?, ?, ?,?,?,?)`, [ dmnId, hostDetailData.defaultCacheExpire, hostDetailData.isCachingAllowed, ownerId, hostDetailData.expireAt, - hostDetailData.profiles, + JSON.stringify(hostDetailData.profiles), hostDetailData.defaultIndexID, - hostDetailData.domains, + JSON.stringify(hostDetailData.domains), ] ); return { - default_profile_id: existingHost.defaultIndexID, + default_profile_id: hostDetailData.defaultIndexID, expireAfter: hostDetailData.defaultCacheExpire, domains: hostDetailData.domains, + profiles: hostDetailData.profiles, }; } return { - default_profile_id: existingHost[0].defaultIndexID, + default_profile_id: existingHost[0].default_profile_id, expireAfter: existingHost[0].defaultCacheExpire, domains: existingHost[0].domains, + profiles: JSON.parse(existingHost[0].profiles), }; } async changeHostCacheExpire(numberOfDays, dmnid) { diff --git a/endPoint/httpHostEndPoint.js b/endPoint/httpHostEndPoint.js index ad712c7..b8dd6a1 100644 --- a/endPoint/httpHostEndPoint.js +++ b/endPoint/httpHostEndPoint.js @@ -274,7 +274,7 @@ class HttpHostEndPoint extends HostEndPoint { ) { const fullUrl = `${isSecure ? "https://" : "http://"}${req.headers.host}${req.url}`; const cacheResults = await this._cacheConnection.loadContentAsync( - fullUrl + fullUrl,req.headers["user-agent"] ); if (cacheResults) { res.writeHead(200, { @@ -303,7 +303,7 @@ class HttpHostEndPoint extends HostEndPoint { this._cacheOptions && this._cacheOptions.isEnabled && this._cacheOptions.requestMethods.includes(method) && - this._cacheConnection && cms.isCachingAllowed + this._cacheConnection ) { const savedHeaders = this.findProperties( diff --git a/index.js b/index.js index 8e4d9b8..e4ddcdf 100644 --- a/index.js +++ b/index.js @@ -22,7 +22,7 @@ const host = { dbPath: "./cache/", filesPath : "./cachefiles/", isFileBase : true, - hostDetailsApiUrl: "127.0.0.1:3000" + hostDetailsApiUrl: "http://127.0.0.1:3000" }, }, @@ -32,7 +32,7 @@ const host = { mainservice: { Type: "http", Settings: { - LibPath: "C:\\apps\\testwebserver\\BasisCore.Server.Node\\ExternalCommands", + LibPath: "D:\\alibazregar\\BasisCore.Server.Node\\ExternalCommands", "Connections.edge.RoutingData": { endpoint: "127.0.0.1:8000", }, From bc41501e0915b4b2ce3b7f9014fd60f13ac22606 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 4 Nov 2024 17:16:33 +0330 Subject: [PATCH 17/23] first steps --- endPoint/h2HttpHostEndPoint.js | 23 ++++- endPoint/httpHostEndPoint.js | 25 +++++ endPoint/nonSecureHttpHostEndPoint.js | 129 ++++++++++++++------------ endPoint/secureHttpHostEndPoint.js | 124 ++++++++++++++----------- package-lock.json | 17 ++++ package.json | 2 + 6 files changed, 203 insertions(+), 117 deletions(-) diff --git a/endPoint/h2HttpHostEndPoint.js b/endPoint/h2HttpHostEndPoint.js index f58e961..61af0ba 100644 --- a/endPoint/h2HttpHostEndPoint.js +++ b/endPoint/h2HttpHostEndPoint.js @@ -36,7 +36,14 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { this.#options.minVersion = "TLSv1.2"; this.#options.allowHTTP1 = true; } - + _sqlInjectionMiddleware = (stream, headers) => { + const reqUrl = headers[http2.constants.HTTP2_HEADER_PATH] || ''; + const host = headers[http2.constants.HTTP2_HEADER_AUTHORITY] || 'localhost'; + const url = new URL(reqUrl, `https://${host}`); + const queryString = this._decodeURIComponentSafe(url.search); + const sqlInjectionPattern = /(?:\b(SELECT|INSERT|DELETE|UPDATE|WHERE|DROP|EXEC|UNION|--|\*|#)\b.*?[=;]|\b(OR|AND)\b\s*?['"\d])/i; + return sqlInjectionPattern.test(queryString); +}; /** * @param {string} urlStr * @param {string} method @@ -79,6 +86,20 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { .createSecureServer(this.#options) .on("stream", async (stream, headers) => { this._checkCacheAsync(stream, headers, async () => { + if (this._sqlInjectionMiddleware(stream, headers)) { + stream.respond({ ':status': 400, 'content-type': 'text/plain' }); + return stream.end('Bad Request: Potential SQL injection detected.'); + } + const ip = stream.session.socket.remoteAddress; + try{ + await this.rateLimiter.consume(ip) + }catch(err){ + stream.respond({ + ':status': 429, + 'retry-after': 60, + }); + stream.end("Too many requests - try again later"); + } /** @type {Request} */ let cms = null; /** @type {BinaryContent[]} */ diff --git a/endPoint/httpHostEndPoint.js b/endPoint/httpHostEndPoint.js index b8dd6a1..0967a1e 100644 --- a/endPoint/httpHostEndPoint.js +++ b/endPoint/httpHostEndPoint.js @@ -16,6 +16,7 @@ import CacheConnectionBase from "../models/CacheCommands/CacheConnection/CacheCo import { HostEndPointOptions } from "../models/model.js"; import SqliteCacheConnection from "../models/CacheCommands/CacheConnection/SqliteCacheConnection.js"; import CacheSettings from "../models/options/CacheSettings.js"; +import {RateLimiterMemory} from "rate-limiter-flexible" let requestId = 0; class HttpHostEndPoint extends HostEndPoint { @@ -27,6 +28,8 @@ class HttpHostEndPoint extends HostEndPoint { _cacheConnection; /** @type {http.Server} */ _server; + /** @type {RateLimiterMemory} */ + rateLimiter; /** * * @param {string} ip @@ -38,6 +41,10 @@ class HttpHostEndPoint extends HostEndPoint { super(ip, port); this._service = service; this._cacheOptions = cacheOptions; + this.rateLimiter =new RateLimiterMemory({ + points: 10, + duration: 60, + }); if (cacheOptions && cacheOptions.connectionType) { switch (cacheOptions.connectionType) { case "sqlite": { @@ -353,5 +360,23 @@ class HttpHostEndPoint extends HostEndPoint { this._server.close(); console.log(`server ip ${this._ip} and port ${this._port} killed`); } + _decodeURIComponentSafe = (s) => { + try { + return decodeURIComponent(s); + } catch { + return s; // Return as-is if decoding fails + } +}; + _sqlInjectionMiddleware = (req, res, next) => { + const url = new URL(req.url, `https://${req.headers.host}`); + const queryString = url.search; + const sqlInjectionPattern = /[\s'";()&|]|(SELECT|select|INSERT|insert|DELETE|delete|UPDATE|update|WHERE|where|DROP|drop|EXEC|exec|UNION|union|--|\*|#|\/\*|\/\*.*?\*\/)/; + if (sqlInjectionPattern.test(queryString)) { + res.writeHead(400, { 'Content-Type': 'text/plain' }); + res.end('Bad Request: Potential SQL injection detected.'); + } else { + next(); + } +}; } export default HttpHostEndPoint; diff --git a/endPoint/nonSecureHttpHostEndPoint.js b/endPoint/nonSecureHttpHostEndPoint.js index a4143c3..aa338e0 100644 --- a/endPoint/nonSecureHttpHostEndPoint.js +++ b/endPoint/nonSecureHttpHostEndPoint.js @@ -4,8 +4,6 @@ import { StatusCodes } from "http-status-codes"; import HttpHostEndPoint from "./HttpHostEndPoint.js"; import { HostService } from "../services/hostServices.js"; import LightgDebugStep from "../renderEngine/Models/LightgDebugStep.js"; -import StringResult from "../renderEngine/Models/StringResult.js"; -import fs from "fs"; export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { /** @@ -17,71 +15,82 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { constructor(ip, port, service, cacheOptions) { super(ip, port, service, cacheOptions); } - _createServer() { this._server = http.createServer(async (req, res) => { try { - this._securityHeadersMiddleware(req, res, async () => { - this._handleContentTypes(req, res, async () => { - this._checkCacheAsync(req, res, false, async () => { - const createCmsAndCreateResponseAsync = async () => { - const queryObj = url.parse(req.url, true).query; - let debugCondition = - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2"; - let routingDataStep = debugCondition - ? new LightgDebugStep(null, "Get Routing Data") - : null; - let rawRequest = debugCondition - ? this.joinHeaders(req.rawHeaders) - : null; - /** @type {Request} */ - let cms = await this._createCmsObjectAsync( - req.url, - req.method, - req.headers, - req.formFields, - req.jsonHeaders ? req.jsonHeaders : {}, - req.socket, - req.bodyStr, - false - ); - let result = await this._service.processAsync( - cms, - req.fileContents - ); - let cachecms; - if (result.result) { - - cachecms = result.responseCms; - result = result.result; - } - routingDataStep?.complete(); - const [code, headers, body] = await result.getResultAsync( - routingDataStep, - rawRequest, - debugCondition ? cms.dict : undefined - ); - const statuscode = Number( - result._request.webserver.headercode.split(" ")[0] - ); - if (statuscode != 301 && statuscode != 302) { - this.addCacheContentAsync( - `http://${req.headers.host}${req.url}`, - body, - headers, + const ip = req.socket.remoteAddress; + try{ + await this.rateLimiter.consume(ip) + }catch(err){ + res.writeHead(429, { + 'Content-Type': 'text/plain', + 'Retry-After': 60, + }); + return res.end("Too many requests - try again later"); + } + this._sqlInjectionMiddleware(req, res, async () => { + this._securityHeadersMiddleware(req, res, async () => { + this._handleContentTypes(req, res, async () => { + this._checkCacheAsync(req, res, false, async () => { + const createCmsAndCreateResponseAsync = async () => { + const queryObj = url.parse(req.url, true).query; + let debugCondition = + queryObj.debug == "true" || + queryObj.debug == "1" || + queryObj.debug == "2"; + let routingDataStep = debugCondition + ? new LightgDebugStep(null, "Get Routing Data") + : null; + let rawRequest = debugCondition + ? this.joinHeaders(req.rawHeaders) + : null; + /** @type {Request} */ + let cms = await this._createCmsObjectAsync( + req.url, req.method, - cachecms + req.headers, + req.formFields, + req.jsonHeaders ? req.jsonHeaders : {}, + req.socket, + req.bodyStr, + false + ); + let result = await this._service.processAsync( + cms, + req.fileContents + ); + let cachecms; + if (result.result) { + + cachecms = result.responseCms; + result = result.result; + } + routingDataStep?.complete(); + const [code, headers, body] = await result.getResultAsync( + routingDataStep, + rawRequest, + debugCondition ? cms.dict : undefined + ); + const statuscode = Number( + result._request.webserver.headercode.split(" ")[0] ); - } - res.writeHead(code, headers); - res.end(body); - }; - await createCmsAndCreateResponseAsync(); + if (statuscode != 301 && statuscode != 302) { + this.addCacheContentAsync( + `http://${req.headers.host}${req.url}`, + body, + headers, + req.method, + cachecms + ); + } + res.writeHead(code, headers); + res.end(body); + }; + await createCmsAndCreateResponseAsync(); + }); }); }); - }); + }) } catch (ex) { console.error(ex); res.writeHead(StatusCodes.INTERNAL_SERVER_ERROR); diff --git a/endPoint/secureHttpHostEndPoint.js b/endPoint/secureHttpHostEndPoint.js index ee3b342..748bee1 100644 --- a/endPoint/secureHttpHostEndPoint.js +++ b/endPoint/secureHttpHostEndPoint.js @@ -37,67 +37,79 @@ export default class SecureHttpHostEndPoint extends HttpHostEndPoint { .createServer(this.#options, async (req, res) => { /** @type {Request} */ let cms = null; - this._securityHeadersMiddleware(req, res, async () => { - this._handleContentTypes(req, res, async () => { - this._checkCacheAsync(req, res, async () => { - const createCmsAndCreateResponseAsync = async () => { - const queryObj = url.parse(req.url, true).query; - let debugCondition = - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2"; - let routingDataStep = debugCondition - ? new LightgDebugStep(null, "Get Routing Data") - : null; - let rawRequest = debugCondition - ? this.joinHeaders(req.rawHeaders) - : null; - cms = await this._createCmsObjectAsync( - req.url, - req.method, - req.headers, - req.formFields, - req.jsonHeaders ? req.jsonHeaders : {}, - req.socket, - req.bodyStr, - true - ); - const result = await this._service.processAsync( - cms, - req.fileContents - ); - routingDataStep?.complete(); - const [code, headers, body] = await result.getResultAsync( - routingDataStep, - rawRequest, - debugCondition ? cms.dict : undefined - ); - const statuscode = Number( - result._request.webserver.headercode.split(" ")[0] - ); - if (statuscode != 301 && statuscode != 302) { - this.addCacheContentAsync( - `https://${req.headers.host}${req.url}`, - body, - headers, + const ip = req.socket.remoteAddress; + try{ + await this.rateLimiter.consume(ip) + }catch(err){ + res.writeHead(429, { + 'Content-Type': 'text/plain', + 'Retry-After': 60, + }); + return res.end("Too many requests - try again later"); + } + this._sqlInjectionMiddleware(req, res, async () => { + this._securityHeadersMiddleware(req, res, async () => { + this._handleContentTypes(req, res, async () => { + this._checkCacheAsync(req, res, async () => { + const createCmsAndCreateResponseAsync = async () => { + const queryObj = url.parse(req.url, true).query; + let debugCondition = + queryObj.debug == "true" || + queryObj.debug == "1" || + queryObj.debug == "2"; + let routingDataStep = debugCondition + ? new LightgDebugStep(null, "Get Routing Data") + : null; + let rawRequest = debugCondition + ? this.joinHeaders(req.rawHeaders) + : null; + cms = await this._createCmsObjectAsync( + req.url, req.method, - cms + req.headers, + req.formFields, + req.jsonHeaders ? req.jsonHeaders : {}, + req.socket, + req.bodyStr, + true ); - } + const result = await this._service.processAsync( + cms, + req.fileContents + ); + routingDataStep?.complete(); + const [code, headers, body] = await result.getResultAsync( + routingDataStep, + rawRequest, + debugCondition ? cms.dict : undefined + ); + const statuscode = Number( + result._request.webserver.headercode.split(" ")[0] + ); + if (statuscode != 301 && statuscode != 302) { + this.addCacheContentAsync( + `https://${req.headers.host}${req.url}`, + body, + headers, + req.method, + cms + ); + } - res.writeHead(code, headers); - res.end(body); - }; - try { - createCmsAndCreateResponseAsync(); - } catch (ex) { - console.error(ex); - res.writeHead(StatusCodes.INTERNAL_SERVER_ERROR); - res.end(ex.toString()); - } + res.writeHead(code, headers); + res.end(body); + }; + try { + createCmsAndCreateResponseAsync(); + } catch (ex) { + console.error(ex); + res.writeHead(StatusCodes.INTERNAL_SERVER_ERROR); + res.end(ex.toString()); + } + }); }); }); - }); + }) }) .on("error", (er) => console.error(er)) .on("clientError", (er) => console.error(er)) diff --git a/package-lock.json b/package-lock.json index 6215c26..f4a83b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27,11 +27,13 @@ "node-html-encoder": "^0.0.2", "pako": "^2.1.0", "promised-sqlite3": "^2.1.0", + "rate-limiter-flexible": "^5.0.4", "sharp": "^0.33.5", "socket.io": "^4.7.5", "socket.io-client": "^4.7.5", "sqlite": "^5.1.1", "sqlite3": "^5.1.6", + "validator": "^13.12.0", "winston": "^3.13.0", "winston-transport": "^4.7.0", "ws": "^8.18.0" @@ -8937,6 +8939,12 @@ "safe-buffer": "^5.1.0" } }, + "node_modules/rate-limiter-flexible": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/rate-limiter-flexible/-/rate-limiter-flexible-5.0.4.tgz", + "integrity": "sha512-ftYHrIfSqWYDIJZ4yPTrgOduByAp+86gUS9iklv0JoXVM8eQCAjTnydCj1hAT4MmhmkSw86NaFEJ28m/LC1pKA==", + "license": "ISC" + }, "node_modules/rc": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", @@ -10790,6 +10798,15 @@ "node": ">=10.12.0" } }, + "node_modules/validator": { + "version": "13.12.0", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz", + "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", diff --git a/package.json b/package.json index f7ce141..22e40c3 100644 --- a/package.json +++ b/package.json @@ -91,11 +91,13 @@ "node-html-encoder": "^0.0.2", "pako": "^2.1.0", "promised-sqlite3": "^2.1.0", + "rate-limiter-flexible": "^5.0.4", "sharp": "^0.33.5", "socket.io": "^4.7.5", "socket.io-client": "^4.7.5", "sqlite": "^5.1.1", "sqlite3": "^5.1.6", + "validator": "^13.12.0", "winston": "^3.13.0", "winston-transport": "^4.7.0", "ws": "^8.18.0" From 4e30cf6b41843837cf71569534e7695acc43a83d Mon Sep 17 00:00:00 2001 From: alibazregar Date: Sat, 23 Nov 2024 17:36:18 +0330 Subject: [PATCH 18/23] finalize --- ExternalCommands/external.fly.ws.js | 32 +++++++++ Models/Connection/ConnectionInfo.js | 14 +++- Models/Connection/ConnectionUtil.js | 4 ++ Models/Connection/IMongoSettingData.js | 18 ++--- Models/Connection/MongoConnectionInfo.js | 69 ++++++++++++++----- Models/Connection/SqlConnectionInfo.js | 17 +++-- Models/Connection/WebConnectionInfo.js | 41 +++++++++++ Models/Connection/WebSettingData.js | 5 ++ Models/Index4Response.js | 5 +- package-lock.json | 7 +- .../Source/BaseClasses/SourceCommand.js | 5 +- renderEngine/Command/TrackerCommand.js | 58 ++++++++++++++++ renderEngine/CommandUtil.js | 2 + renderEngine/Context/ContextBase.js | 9 ++- renderEngine/Context/LocalContext.js | 5 +- 15 files changed, 242 insertions(+), 49 deletions(-) create mode 100644 ExternalCommands/external.fly.ws.js create mode 100644 Models/Connection/WebConnectionInfo.js create mode 100644 Models/Connection/WebSettingData.js create mode 100644 renderEngine/Command/TrackerCommand.js diff --git a/ExternalCommands/external.fly.ws.js b/ExternalCommands/external.fly.ws.js new file mode 100644 index 0000000..c526888 --- /dev/null +++ b/ExternalCommands/external.fly.ws.js @@ -0,0 +1,32 @@ +import SourceCommand from "./../renderEngine/Command/Source/BaseClasses/SourceCommand.js"; +import ICommandResult from "./../renderEngine/Models/ICommandResult.js"; +export default class FlyCommand extends SourceCommand { + /** + * @param {object} flyIl + */ + constructor(flyIl) { + super(flyIl); + } + + /** + * @param {string} sourceName + * @param {IContext} context + * @returns {Promise} + */ + async _loadDataAsync(sourceName, context) { + const [connectionName, command] = await Promise.all([ + this.connectionName.getValueAsync(context), + this.toCustomFormatHtmlAsync(context), + ]); + const inputs = { + command, + dmnid: context.domainId, + }; + const encoder = new TextEncoder(); + const byteMessage = encoder.encode(JSON.stringify(inputs)); + const parameters = { + byteMessage, + }; + return await context.loadDataAsync(sourceName, connectionName, parameters); + } +} diff --git a/Models/Connection/ConnectionInfo.js b/Models/Connection/ConnectionInfo.js index a899701..33962f9 100644 --- a/Models/Connection/ConnectionInfo.js +++ b/Models/Connection/ConnectionInfo.js @@ -27,7 +27,7 @@ export default class ConnectionInfo { * @param {CancellationToken} cancellationToken * @returns {Promise} */ - loadDataAsync(parameters, cancellationToken) { + loadDataAsync(parameters, cancellationToken,options) { throw new Error("ConnectionInfo.loadDataAsync() method not implemented."); } @@ -51,6 +51,18 @@ export default class ConnectionInfo { loadPageAsync(pageName, rawCommand, pageSize, domainId, cancellationToken) { throw new Error("ConnectionInfo.loadPageAsync() method not implemented."); } +/** + * Insert a document into a MongoDB collection. + * @param {string} sourceName + * @param {string} connectionName + * @param {string} databaseName + * @param {string} collectionName + * @param {Object} data + * @returns {Promise} + */ +async insertAsync(sourceName, connectionName, databaseName, collectionName, data) { + throw new Error("ConnectionInfo.insertAsync() method not implemented."); +} /** * * @param {string} jsonString diff --git a/Models/Connection/ConnectionUtil.js b/Models/Connection/ConnectionUtil.js index 7007649..57c3b5e 100644 --- a/Models/Connection/ConnectionUtil.js +++ b/Models/Connection/ConnectionUtil.js @@ -8,6 +8,7 @@ import MongoConnectionInfo from "./MongoConnectionInfo.js"; import SqliteConnectionInfo from "./SqLiteConnectionInfo.js"; import MySqlConnectionInfo from "./MySqlConnectionInfo.js"; import SocketConnectionInfo from "./SocketConnectionInfo.js"; +import WebConnectionInfo from "./WebConnectionInfo.js"; export default class ConnectionUtil { /** * @param {NodeJS.Dict} settings @@ -54,6 +55,9 @@ export default class ConnectionUtil { connection = new SocketConnectionInfo(parts[2], settings[item]); break; } + case "web" : { + connection = new WebConnectionInfo(parts[2],settings[item]) + } default: { if (parts[1] == "ws") { continue; diff --git a/Models/Connection/IMongoSettingData.js b/Models/Connection/IMongoSettingData.js index 09cbe0f..5735d2c 100644 --- a/Models/Connection/IMongoSettingData.js +++ b/Models/Connection/IMongoSettingData.js @@ -1,12 +1,12 @@ export default class IMongoSettingData { - /** @type {string} */ - dataBase; /** @type {string}*/ - endpoint; - /** @type {string}*/ - collection; - /** @type {string}*/ - method; - /**@type {object} */ - query; + address; + /** @type {?string}*/ + databaseName; + /** @type {?string}*/ + collectionName; + /** @type {string}*/ + method; + /**@type {object} */ + query; } diff --git a/Models/Connection/MongoConnectionInfo.js b/Models/Connection/MongoConnectionInfo.js index 67b0ed2..5fc9085 100644 --- a/Models/Connection/MongoConnectionInfo.js +++ b/Models/Connection/MongoConnectionInfo.js @@ -5,11 +5,13 @@ import CancellationToken from "../../renderEngine/Cancellation/CancellationToken import Request from "./../request.js"; import IMongoSettingData from "./IMongoSettingData.js"; import BasisCoreException from "../Exceptions/BasisCoreException.js"; +import IRoutingRequest from "../IRoutingRequest.js"; +import { http } from "winston"; export default class MongoConnectionInfo extends ConnectionInfo { + /**@type {MongoClient} */ + client; /** @type {IMongoSettingData} */ settings; - /**@param {MongoClient} client */ - client; /** * @param {string} name @@ -18,8 +20,8 @@ export default class MongoConnectionInfo extends ConnectionInfo { */ constructor(name, settings) { super(name); + this.client = new MongoClient(settings.address); this.settings = settings; - this.client = new MongoClient(this.settings.endpoint); } /** @@ -30,34 +32,69 @@ export default class MongoConnectionInfo extends ConnectionInfo { async loadDataAsync(parameters, cancellationToken) { try { await this.client.connect(); - const db = this.client.db(this.settings.dataBase); - const collection = db.collection(this.settings.collection); + const { collectionName, dbname } = parameters; + const db = this.client.db(dbname); + const collection = db.collection(collectionName); if (typeof collection[this.settings.method] != "function") { throw new BasisCoreException("invalid method"); } - const result = await collection[this.settings.method](this.settings.query) + const result = await collection[this.settings.method]( + this.settings.query + ); return new DataSourceCollection([await result.toArray()]); } catch (err) { throw err; - } - finally { - await this.client.close(); + } finally { + await this.client.close(); } } + /** + * Insert a document into a MongoDB collection. + * @param {string} sourceName + * @param {string} connectionName + * @param {string} databaseName + * @param {string} collectionName + * @param {Object} data + * @returns {Promise} + */ + async insertAsync( + sourceName, + connectionName, + databaseName, + collectionName, + data + ) { + try { + if (!databaseName) { + databaseName = this.settings.databaseName; + } + await this.client.connect(); + const database = client.db(databaseName); + const collection = database.collection(collectionName); + + const result = await collection.insertOne(data); + await client.close(); + return result._id; + } catch (error) { + throw new Error( + `Error in loading data for '${sourceName}' source command from '${connectionName}' connection: ${error.message}` + ); + } + } /** * @param {Request} request * @param {BinaryContent[]} fileContents * @returns {Promise} */ async testConnectionAsync() { - try{ - await this.client.connect() - return true - }catch(err){ - return false - }finally{ - await this.client.close() + try { + await this.client.connect(); + return true; + } catch (err) { + return false; + } finally { + await this.client.close(); } } } diff --git a/Models/Connection/SqlConnectionInfo.js b/Models/Connection/SqlConnectionInfo.js index 4b47424..c80aab2 100644 --- a/Models/Connection/SqlConnectionInfo.js +++ b/Models/Connection/SqlConnectionInfo.js @@ -26,10 +26,9 @@ export default class SqlConnectionInfo extends ConnectionInfo { ? `;requestTimeout=${this.settings.requestTimeout}` : "") ); - this.connectionPool.connect().catch((err)=>{ - console.log("error in connect",this.name,err) - }) - + this.connectionPool.connect().catch((err) => { + console.log("error in connect", this.name, err); + }); } /** @@ -70,9 +69,9 @@ export default class SqlConnectionInfo extends ConnectionInfo { */ async getRoutingDataAsync(request, cancellationToken) { const params = new sql.Table(); - params.columns.add("ParamType", sql.NVarChar(50)); - params.columns.add("ParamName", sql.NVarChar(100)); - params.columns.add("ParamValue", sql.NVarChar()); + params.columns.add("ParamType", sql.NVarChar(50)); + params.columns.add("ParamName", sql.NVarChar(100)); + params.columns.add("ParamValue", sql.NVarChar()); for (const type in request) { const group = request[type]; @@ -82,9 +81,9 @@ export default class SqlConnectionInfo extends ConnectionInfo { for (const key in query) { params.rows.add(name, key, query[key]?.toString()); } - } else if(name === "json"){ + } else if (name === "json") { params.rows.add(type, name, JSON.stringify(group[name])); - }else { + } else { params.rows.add(type, name, group[name]?.toString()); } } diff --git a/Models/Connection/WebConnectionInfo.js b/Models/Connection/WebConnectionInfo.js new file mode 100644 index 0000000..38eca56 --- /dev/null +++ b/Models/Connection/WebConnectionInfo.js @@ -0,0 +1,41 @@ +import WebSettingData from "./WebSettingData.js"; +import ConnectionInfo from "./ConnectionInfo.js"; +import DataSourceCollection from "../../renderEngine/Source/DataSourceCollection.js"; +import CancellationToken from "../../renderEngine/Cancellation/CancellationToken.js"; +import BasisCoreException from "../Exceptions/BasisCoreException.js"; + +export default class WebConnectionInfo extends ConnectionInfo { + /** @type {string} */ + url; + /** + * @param {string} name + * @param {WebSettingData} settings + */ + constructor(name, settings) { + super(name); + this.url = settings.url; + } + + /** + * @param {NodeJS.Dict} parameters + * @param {CancellationToken} cancellationToken + * @returns {Promise} + */ + async loadDataAsync(parameters, cancellationToken) { + try { + let body = new URLSearchParams(parameters); + const response = await fetch(url, { + method: "POST", + body: body, + headers: { + "Content-Type": "application/x-www-form-urlencoded", + }, + }); + return new DataSourceCollection(await response.json()); + } catch (error) { + return new BasisCoreException( + "Failed to fetch request from url " + this.url + ); + } + } +} diff --git a/Models/Connection/WebSettingData.js b/Models/Connection/WebSettingData.js new file mode 100644 index 0000000..3fc25b6 --- /dev/null +++ b/Models/Connection/WebSettingData.js @@ -0,0 +1,5 @@ +export default class WebSettingData { + /** @type {string} */ + url; + } + \ No newline at end of file diff --git a/Models/Index4Response.js b/Models/Index4Response.js index c36bf13..182fda8 100644 --- a/Models/Index4Response.js +++ b/Models/Index4Response.js @@ -1,7 +1,6 @@ import fs from "fs"; import { StatusCodes } from "http-status-codes"; import RequestBaseResponse from "./requestBaseResponse.js"; -import im from "imagemagick"; import path from "path"; import Pako from "pako"; import Util from "../Util.js"; @@ -44,6 +43,8 @@ export default class Index4Response extends RequestBaseResponse { size, setting.deform ); + const dirPath = path.dirname(destinationPath); + await fs.promises.mkdir(dirPath, { recursive: true }); await fs.promises.writeFile(destinationPath, newContent); finalPath = destinationPath; if (gzip) { @@ -58,6 +59,8 @@ export default class Index4Response extends RequestBaseResponse { finalPath = zipPath; Index4Response._createDirectoryIfNotExist(zipPath); const zipContent = Index4Response._makeGzip(newContent, 9); + const zipdirPath = path.dirname(zipPath); + await fs.promises.mkdir(zipdirPath, { recursive: true }); await fs.promises.writeFile(zipPath, zipContent); } /**@type {string} */ diff --git a/package-lock.json b/package-lock.json index f4a83b8..da83a07 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5842,10 +5842,11 @@ } }, "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", + "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", "dev": true, + "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", diff --git a/renderEngine/Command/Source/BaseClasses/SourceCommand.js b/renderEngine/Command/Source/BaseClasses/SourceCommand.js index 530fcd8..1346120 100644 --- a/renderEngine/Command/Source/BaseClasses/SourceCommand.js +++ b/renderEngine/Command/Source/BaseClasses/SourceCommand.js @@ -82,10 +82,7 @@ export default class SourceCommand extends CommandBase { params: JSON.stringify(paramList), } context.debugContext.addDebugInformation(`Parameter(s) Send To '${sourceName}' From Command '${connectionName}' in 180 ms`,[debugParams]) - const memberNames = this.members.items.map((item)=>{ - return item.name - }) - return await context.loadDataAsync(sourceName, connectionName, params,memberNames); + return await context.loadDataAsync(sourceName, connectionName, params); } /** diff --git a/renderEngine/Command/TrackerCommand.js b/renderEngine/Command/TrackerCommand.js new file mode 100644 index 0000000..f16937b --- /dev/null +++ b/renderEngine/Command/TrackerCommand.js @@ -0,0 +1,58 @@ +import CommandBase from "./CommandBase.js"; +import TokenUtil from "../Token/TokenUtil.js"; +import VoidResult from "../Models/VoidResult.js"; +import IContext from "../Context/IContext.js"; +import { query } from "mssql"; + +export default class TrackerCommand extends CommandBase { + /*** @type {IToken}*/ + connectionName; + /*** @type {IToken}*/ + collectionname; + /*** @type {IToken}*/ + dbname; + /*** @type {IToken}*/ + addcookie + + /** + * @param {object} trackerIl + */ + constructor(trackerIl) { + super(trackerIl); + this.connectionName = TokenUtil.getFiled(trackerIl, "ConnectionName"); + this.collectionname= TokenUtil.getFiled(trackerIl, "collectionname"); + this.dbname = TokenUtil.getFiled(trackerIl, "dbname"); + this.addcookie = TokenUtil.getFiled(trackerIl, "addcookie"); + this.cookieName = TokenUtil.getFiled(trackerIl, "cookieName"); + } + + /** + * @param {IContext} context + * @returns {Promise} + */ + async _executeCommandAsync(context) { + const [connectionName, collectionname, dbname, addcookie] = await Promise.all([ + this.connectionName.getValueAsync(context), + this.collectionname.getValueAsync(context), + this.dbname.getValueAsync(context), + this.addcookie.getValueAsync(context), + ]); + let params = { + collectionname,dbname,method : "insertOne", query : context.requestObj + } + const finalCollectionName = + collectionname || context.getDefault("trackingCollectionName", "monitoring"); + const {_id} = await context.loadDataAsync("",connectionName, params) + if (addcookie) { + let cookieName; + try { + cookieName = await this.cookieName?.getValueAsync(context); + } catch (error) { + cookieName = context.getDefault("monitoringCookieName", "monitoring_id"); + } + + context.addCookie(cookieName, _id.toString(), null, null); + } + return VoidResult.result; + } +} diff --git a/renderEngine/CommandUtil.js b/renderEngine/CommandUtil.js index 0abbe43..4142a0f 100644 --- a/renderEngine/CommandUtil.js +++ b/renderEngine/CommandUtil.js @@ -12,6 +12,7 @@ import CallCommand from "./Command/Collection/CallCommand.js"; import CookieCommand from "./Command/CookieCommand.js"; import ClientComponent from "./Command/ClientComponent.js"; import RepeaterCommand from "./Command/Collection/RepeaterCommand.js"; +import TrackerCommand from "./Command/TrackerCommand.js"; export default class CommandUtil { /** * @returns {Object.} @@ -33,6 +34,7 @@ export default class CommandUtil { cookie: { default: CookieCommand }, clientcomponent: { default: ClientComponent }, repeater: { default: RepeaterCommand }, + tracker : {default : TrackerCommand} }; return retVal; } diff --git a/renderEngine/Context/ContextBase.js b/renderEngine/Context/ContextBase.js index b8e6ef0..35a715d 100644 --- a/renderEngine/Context/ContextBase.js +++ b/renderEngine/Context/ContextBase.js @@ -14,7 +14,7 @@ export default class ContextBase extends IContext { * @param {string} domainId * @param {DebugContext} debugContext */ - constructor(repository, domainId,debugContext) { + constructor(repository, domainId, debugContext) { super(domainId); this.repository = new SourceRepository(repository); this.debugContext = debugContext; @@ -23,6 +23,9 @@ export default class ContextBase extends IContext { /** @param {IDataSource} dataSource */ addSource(dataSource) { this.repository.addSource(dataSource); + this.debugContext.addDebugInformation( + dataSource.id,dataSource.data + ); } /** @@ -49,9 +52,9 @@ export default class ContextBase extends IContext { */ loadDataAsync(sourceName, connectionName, parameters) {} - /** + /** * @param {Object} commandIl * @returns {CommandBase} */ - createCommand(commandIl) {} + createCommand(commandIl) {} } diff --git a/renderEngine/Context/LocalContext.js b/renderEngine/Context/LocalContext.js index e2997b5..3c19044 100644 --- a/renderEngine/Context/LocalContext.js +++ b/renderEngine/Context/LocalContext.js @@ -27,11 +27,10 @@ export default class LocalContext extends ContextBase { * @param {string} sourceName * @param {string} connectionName * @param {NodeJS.Dict} parameters - * @param {string[]} memberNames * @returns {Promise} */ - async loadDataAsync(sourceName, connectionName, parameters,memberNames) { - return this._owner.loadDataAsync(sourceName, connectionName, parameters,memberNames); + async loadDataAsync(sourceName, connectionName, parameters) { + return this._owner.loadDataAsync(sourceName, connectionName, parameters); } /** From c72ec97ad202af621ea13c2afa06c7f284de64e8 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 25 Nov 2024 14:43:46 +0330 Subject: [PATCH 19/23] final steps --- .gitignore | 1 + Models/Connection/ConnectionInfo.js | 2 +- Models/Index4Response.js | 6 +- ...acfef0ac7fa2fa71482025e7afc68eb261fb45.bin | 15 -- ...5bdae60af3d44870263da137aefad91c96e0a8.bin | 15 -- endPoint/h2HttpHostEndPoint.js | 25 +--- endPoint/httpHostEndPoint.js | 27 +--- endPoint/nonSecureHttpHostEndPoint.js | 131 ++++++++---------- endPoint/secureHttpHostEndPoint.js | 126 ++++++++--------- 9 files changed, 125 insertions(+), 223 deletions(-) delete mode 100644 cachefiles/4455/1111/19c2433941401f3fcaaf8c5384acfef0ac7fa2fa71482025e7afc68eb261fb45.bin delete mode 100644 cachefiles/4455/1111/b7b0d7924fb687b0f22da3473d5bdae60af3d44870263da137aefad91c96e0a8.bin diff --git a/.gitignore b/.gitignore index 213fb8e..682f60c 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ il.json test1.db report.json cache +cachefiles diff --git a/Models/Connection/ConnectionInfo.js b/Models/Connection/ConnectionInfo.js index 33962f9..ad3ee15 100644 --- a/Models/Connection/ConnectionInfo.js +++ b/Models/Connection/ConnectionInfo.js @@ -27,7 +27,7 @@ export default class ConnectionInfo { * @param {CancellationToken} cancellationToken * @returns {Promise} */ - loadDataAsync(parameters, cancellationToken,options) { + loadDataAsync(parameters, cancellationToken) { throw new Error("ConnectionInfo.loadDataAsync() method not implemented."); } diff --git a/Models/Index4Response.js b/Models/Index4Response.js index 182fda8..35d9914 100644 --- a/Models/Index4Response.js +++ b/Models/Index4Response.js @@ -44,7 +44,7 @@ export default class Index4Response extends RequestBaseResponse { setting.deform ); const dirPath = path.dirname(destinationPath); - await fs.promises.mkdir(dirPath, { recursive: true }); + Index4Response._createDirectoryIfNotExist(dirPath) await fs.promises.writeFile(destinationPath, newContent); finalPath = destinationPath; if (gzip) { @@ -59,8 +59,6 @@ export default class Index4Response extends RequestBaseResponse { finalPath = zipPath; Index4Response._createDirectoryIfNotExist(zipPath); const zipContent = Index4Response._makeGzip(newContent, 9); - const zipdirPath = path.dirname(zipPath); - await fs.promises.mkdir(zipdirPath, { recursive: true }); await fs.promises.writeFile(zipPath, zipContent); } /**@type {string} */ @@ -160,7 +158,7 @@ static _mackWebpAsync(content, quality) { static _createDirectoryIfNotExist(filePath) { const pathDirectory = path.dirname(filePath); if (!fs.existsSync(pathDirectory)) { - fs.mkdirSync(pathDirectory); + fs.mkdirSync(pathDirectory,{recursive : true}); } } diff --git a/cachefiles/4455/1111/19c2433941401f3fcaaf8c5384acfef0ac7fa2fa71482025e7afc68eb261fb45.bin b/cachefiles/4455/1111/19c2433941401f3fcaaf8c5384acfef0ac7fa2fa71482025e7afc68eb261fb45.bin deleted file mode 100644 index c2d7996..0000000 --- a/cachefiles/4455/1111/19c2433941401f3fcaaf8c5384acfef0ac7fa2fa71482025e7afc68eb261fb45.bin +++ /dev/null @@ -1,15 +0,0 @@ - -
    - -
  • test1 (1-2) - (fieldName3-1)
  • - -
  • test2 (2-2) - (fieldName3-2)
  • - -
  • test3 (3-2) - (fieldName3-3)
  • - -
  • test4 (4-2) - (fieldName3-4)
  • - -
  • test5 (5-2) - (fieldName3-5)
  • - -
- \ No newline at end of file diff --git a/cachefiles/4455/1111/b7b0d7924fb687b0f22da3473d5bdae60af3d44870263da137aefad91c96e0a8.bin b/cachefiles/4455/1111/b7b0d7924fb687b0f22da3473d5bdae60af3d44870263da137aefad91c96e0a8.bin deleted file mode 100644 index c2d7996..0000000 --- a/cachefiles/4455/1111/b7b0d7924fb687b0f22da3473d5bdae60af3d44870263da137aefad91c96e0a8.bin +++ /dev/null @@ -1,15 +0,0 @@ - -
    - -
  • test1 (1-2) - (fieldName3-1)
  • - -
  • test2 (2-2) - (fieldName3-2)
  • - -
  • test3 (3-2) - (fieldName3-3)
  • - -
  • test4 (4-2) - (fieldName3-4)
  • - -
  • test5 (5-2) - (fieldName3-5)
  • - -
- \ No newline at end of file diff --git a/endPoint/h2HttpHostEndPoint.js b/endPoint/h2HttpHostEndPoint.js index 61af0ba..006b9a2 100644 --- a/endPoint/h2HttpHostEndPoint.js +++ b/endPoint/h2HttpHostEndPoint.js @@ -36,14 +36,7 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { this.#options.minVersion = "TLSv1.2"; this.#options.allowHTTP1 = true; } - _sqlInjectionMiddleware = (stream, headers) => { - const reqUrl = headers[http2.constants.HTTP2_HEADER_PATH] || ''; - const host = headers[http2.constants.HTTP2_HEADER_AUTHORITY] || 'localhost'; - const url = new URL(reqUrl, `https://${host}`); - const queryString = this._decodeURIComponentSafe(url.search); - const sqlInjectionPattern = /(?:\b(SELECT|INSERT|DELETE|UPDATE|WHERE|DROP|EXEC|UNION|--|\*|#)\b.*?[=;]|\b(OR|AND)\b\s*?['"\d])/i; - return sqlInjectionPattern.test(queryString); -}; + /** * @param {string} urlStr * @param {string} method @@ -86,20 +79,6 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { .createSecureServer(this.#options) .on("stream", async (stream, headers) => { this._checkCacheAsync(stream, headers, async () => { - if (this._sqlInjectionMiddleware(stream, headers)) { - stream.respond({ ':status': 400, 'content-type': 'text/plain' }); - return stream.end('Bad Request: Potential SQL injection detected.'); - } - const ip = stream.session.socket.remoteAddress; - try{ - await this.rateLimiter.consume(ip) - }catch(err){ - stream.respond({ - ':status': 429, - 'retry-after': 60, - }); - stream.end("Too many requests - try again later"); - } /** @type {Request} */ let cms = null; /** @type {BinaryContent[]} */ @@ -280,4 +259,4 @@ export default class H2HttpHostEndPoint extends SecureHttpHostEndPoint { next(); } } -} +} \ No newline at end of file diff --git a/endPoint/httpHostEndPoint.js b/endPoint/httpHostEndPoint.js index 0967a1e..c856db7 100644 --- a/endPoint/httpHostEndPoint.js +++ b/endPoint/httpHostEndPoint.js @@ -16,7 +16,6 @@ import CacheConnectionBase from "../models/CacheCommands/CacheConnection/CacheCo import { HostEndPointOptions } from "../models/model.js"; import SqliteCacheConnection from "../models/CacheCommands/CacheConnection/SqliteCacheConnection.js"; import CacheSettings from "../models/options/CacheSettings.js"; -import {RateLimiterMemory} from "rate-limiter-flexible" let requestId = 0; class HttpHostEndPoint extends HostEndPoint { @@ -28,8 +27,6 @@ class HttpHostEndPoint extends HostEndPoint { _cacheConnection; /** @type {http.Server} */ _server; - /** @type {RateLimiterMemory} */ - rateLimiter; /** * * @param {string} ip @@ -41,10 +38,6 @@ class HttpHostEndPoint extends HostEndPoint { super(ip, port); this._service = service; this._cacheOptions = cacheOptions; - this.rateLimiter =new RateLimiterMemory({ - points: 10, - duration: 60, - }); if (cacheOptions && cacheOptions.connectionType) { switch (cacheOptions.connectionType) { case "sqlite": { @@ -360,23 +353,5 @@ class HttpHostEndPoint extends HostEndPoint { this._server.close(); console.log(`server ip ${this._ip} and port ${this._port} killed`); } - _decodeURIComponentSafe = (s) => { - try { - return decodeURIComponent(s); - } catch { - return s; // Return as-is if decoding fails - } -}; - _sqlInjectionMiddleware = (req, res, next) => { - const url = new URL(req.url, `https://${req.headers.host}`); - const queryString = url.search; - const sqlInjectionPattern = /[\s'";()&|]|(SELECT|select|INSERT|insert|DELETE|delete|UPDATE|update|WHERE|where|DROP|drop|EXEC|exec|UNION|union|--|\*|#|\/\*|\/\*.*?\*\/)/; - if (sqlInjectionPattern.test(queryString)) { - res.writeHead(400, { 'Content-Type': 'text/plain' }); - res.end('Bad Request: Potential SQL injection detected.'); - } else { - next(); - } -}; } -export default HttpHostEndPoint; +export default HttpHostEndPoint; \ No newline at end of file diff --git a/endPoint/nonSecureHttpHostEndPoint.js b/endPoint/nonSecureHttpHostEndPoint.js index aa338e0..aead43d 100644 --- a/endPoint/nonSecureHttpHostEndPoint.js +++ b/endPoint/nonSecureHttpHostEndPoint.js @@ -4,6 +4,8 @@ import { StatusCodes } from "http-status-codes"; import HttpHostEndPoint from "./HttpHostEndPoint.js"; import { HostService } from "../services/hostServices.js"; import LightgDebugStep from "../renderEngine/Models/LightgDebugStep.js"; +import StringResult from "../renderEngine/Models/StringResult.js"; +import fs from "fs"; export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { /** @@ -15,82 +17,71 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { constructor(ip, port, service, cacheOptions) { super(ip, port, service, cacheOptions); } + _createServer() { this._server = http.createServer(async (req, res) => { try { - const ip = req.socket.remoteAddress; - try{ - await this.rateLimiter.consume(ip) - }catch(err){ - res.writeHead(429, { - 'Content-Type': 'text/plain', - 'Retry-After': 60, - }); - return res.end("Too many requests - try again later"); - } - this._sqlInjectionMiddleware(req, res, async () => { - this._securityHeadersMiddleware(req, res, async () => { - this._handleContentTypes(req, res, async () => { - this._checkCacheAsync(req, res, false, async () => { - const createCmsAndCreateResponseAsync = async () => { - const queryObj = url.parse(req.url, true).query; - let debugCondition = - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2"; - let routingDataStep = debugCondition - ? new LightgDebugStep(null, "Get Routing Data") - : null; - let rawRequest = debugCondition - ? this.joinHeaders(req.rawHeaders) - : null; - /** @type {Request} */ - let cms = await this._createCmsObjectAsync( - req.url, + this._securityHeadersMiddleware(req, res, async () => { + this._handleContentTypes(req, res, async () => { + this._checkCacheAsync(req, res, false, async () => { + const createCmsAndCreateResponseAsync = async () => { + const queryObj = url.parse(req.url, true).query; + let debugCondition = + queryObj.debug == "true" || + queryObj.debug == "1" || + queryObj.debug == "2"; + let routingDataStep = debugCondition + ? new LightgDebugStep(null, "Get Routing Data") + : null; + let rawRequest = debugCondition + ? this.joinHeaders(req.rawHeaders) + : null; + /** @type {Request} */ + let cms = await this._createCmsObjectAsync( + req.url, + req.method, + req.headers, + req.formFields, + req.jsonHeaders ? req.jsonHeaders : {}, + req.socket, + req.bodyStr, + false + ); + let result = await this._service.processAsync( + cms, + req.fileContents + ); + let cachecms; + if (result.result) { + + cachecms = result.responseCms; + result = result.result; + } + routingDataStep?.complete(); + const [code, headers, body] = await result.getResultAsync( + routingDataStep, + rawRequest, + debugCondition ? cms.dict : undefined + ); + const statuscode = Number( + result._request.webserver.headercode.split(" ")[0] + ); + if (statuscode != 301 && statuscode != 302) { + this.addCacheContentAsync( + `http://${req.headers.host}${req.url}`, + body, + headers, req.method, - req.headers, - req.formFields, - req.jsonHeaders ? req.jsonHeaders : {}, - req.socket, - req.bodyStr, - false - ); - let result = await this._service.processAsync( - cms, - req.fileContents - ); - let cachecms; - if (result.result) { - - cachecms = result.responseCms; - result = result.result; - } - routingDataStep?.complete(); - const [code, headers, body] = await result.getResultAsync( - routingDataStep, - rawRequest, - debugCondition ? cms.dict : undefined - ); - const statuscode = Number( - result._request.webserver.headercode.split(" ")[0] + cachecms ); - if (statuscode != 301 && statuscode != 302) { - this.addCacheContentAsync( - `http://${req.headers.host}${req.url}`, - body, - headers, - req.method, - cachecms - ); - } - res.writeHead(code, headers); - res.end(body); - }; - await createCmsAndCreateResponseAsync(); - }); + } + res.writeHead(code, headers); + res.end(body); + }; + await createCmsAndCreateResponseAsync(); }); }); - }) + }); } catch (ex) { console.error(ex); res.writeHead(StatusCodes.INTERNAL_SERVER_ERROR); @@ -99,4 +90,4 @@ export default class NonSecureHttpHostEndPoint extends HttpHostEndPoint { }); return this._server; } -} +} \ No newline at end of file diff --git a/endPoint/secureHttpHostEndPoint.js b/endPoint/secureHttpHostEndPoint.js index 748bee1..dfb4956 100644 --- a/endPoint/secureHttpHostEndPoint.js +++ b/endPoint/secureHttpHostEndPoint.js @@ -37,83 +37,71 @@ export default class SecureHttpHostEndPoint extends HttpHostEndPoint { .createServer(this.#options, async (req, res) => { /** @type {Request} */ let cms = null; - const ip = req.socket.remoteAddress; - try{ - await this.rateLimiter.consume(ip) - }catch(err){ - res.writeHead(429, { - 'Content-Type': 'text/plain', - 'Retry-After': 60, - }); - return res.end("Too many requests - try again later"); - } - this._sqlInjectionMiddleware(req, res, async () => { - this._securityHeadersMiddleware(req, res, async () => { - this._handleContentTypes(req, res, async () => { - this._checkCacheAsync(req, res, async () => { - const createCmsAndCreateResponseAsync = async () => { - const queryObj = url.parse(req.url, true).query; - let debugCondition = - queryObj.debug == "true" || - queryObj.debug == "1" || - queryObj.debug == "2"; - let routingDataStep = debugCondition - ? new LightgDebugStep(null, "Get Routing Data") - : null; - let rawRequest = debugCondition - ? this.joinHeaders(req.rawHeaders) - : null; - cms = await this._createCmsObjectAsync( - req.url, + this._securityHeadersMiddleware(req, res, async () => { + this._handleContentTypes(req, res, async () => { + this._checkCacheAsync(req, res, async () => { + const createCmsAndCreateResponseAsync = async () => { + const queryObj = url.parse(req.url, true).query; + let debugCondition = + queryObj.debug == "true" || + queryObj.debug == "1" || + queryObj.debug == "2"; + let routingDataStep = debugCondition + ? new LightgDebugStep(null, "Get Routing Data") + : null; + let rawRequest = debugCondition + ? this.joinHeaders(req.rawHeaders) + : null; + cms = await this._createCmsObjectAsync( + req.url, + req.method, + req.headers, + req.formFields, + req.jsonHeaders ? req.jsonHeaders : {}, + req.socket, + req.bodyStr, + true + ); + const result = await this._service.processAsync( + cms, + req.fileContents + ); + routingDataStep?.complete(); + const [code, headers, body] = await result.getResultAsync( + routingDataStep, + rawRequest, + debugCondition ? cms.dict : undefined + ); + const statuscode = Number( + result._request.webserver.headercode.split(" ")[0] + ); + if (statuscode != 301 && statuscode != 302) { + this.addCacheContentAsync( + `https://${req.headers.host}${req.url}`, + body, + headers, req.method, - req.headers, - req.formFields, - req.jsonHeaders ? req.jsonHeaders : {}, - req.socket, - req.bodyStr, - true - ); - const result = await this._service.processAsync( - cms, - req.fileContents - ); - routingDataStep?.complete(); - const [code, headers, body] = await result.getResultAsync( - routingDataStep, - rawRequest, - debugCondition ? cms.dict : undefined + cms ); - const statuscode = Number( - result._request.webserver.headercode.split(" ")[0] - ); - if (statuscode != 301 && statuscode != 302) { - this.addCacheContentAsync( - `https://${req.headers.host}${req.url}`, - body, - headers, - req.method, - cms - ); - } - - res.writeHead(code, headers); - res.end(body); - }; - try { - createCmsAndCreateResponseAsync(); - } catch (ex) { - console.error(ex); - res.writeHead(StatusCodes.INTERNAL_SERVER_ERROR); - res.end(ex.toString()); } - }); + + res.writeHead(code, headers); + res.end(body); + }; + try { + createCmsAndCreateResponseAsync(); + } catch (ex) { + console.error(ex); + res.writeHead(StatusCodes.INTERNAL_SERVER_ERROR); + res.end(ex.toString()); + } }); }); - }) + }); }) .on("error", (er) => console.error(er)) .on("clientError", (er) => console.error(er)) .on("tlsClientError", (er) => console.error(er)); return this._server; } -} +} \ No newline at end of file From ea10d04cd81fd625cf2cada895e54ef71b37a73e Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 25 Nov 2024 14:45:54 +0330 Subject: [PATCH 20/23] fix package.json --- package.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/package.json b/package.json index 22e40c3..f7ce141 100644 --- a/package.json +++ b/package.json @@ -91,13 +91,11 @@ "node-html-encoder": "^0.0.2", "pako": "^2.1.0", "promised-sqlite3": "^2.1.0", - "rate-limiter-flexible": "^5.0.4", "sharp": "^0.33.5", "socket.io": "^4.7.5", "socket.io-client": "^4.7.5", "sqlite": "^5.1.1", "sqlite3": "^5.1.6", - "validator": "^13.12.0", "winston": "^3.13.0", "winston-transport": "^4.7.0", "ws": "^8.18.0" From 4e2c10ad36fccb5074484f5fdf953267b00bf6d0 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 25 Nov 2024 14:47:02 +0330 Subject: [PATCH 21/23] fix util.js --- test/command/Group/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/command/Group/util.js b/test/command/Group/util.js index e2a05e0..9c4d219 100644 --- a/test/command/Group/util.js +++ b/test/command/Group/util.js @@ -12,7 +12,7 @@ const context = new TestContext( CommandUtil.addDefaultCommands() ); context.cancellation = new CancellationToken(); -context.addSource(new JsonSource([{ dmntokrn: "ttttdggdgg" }], "db.dmntoken")); +context.addSource(new JsonSource([{ dmntoken: "ttttdggdgg" }], "db.dmntoken")); const il = { $type: "group", From 5f1c6e9aebd7cd73c4f16121410e87cd73c03a07 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Mon, 25 Nov 2024 16:39:06 +0330 Subject: [PATCH 22/23] remove insert from connection info --- Models/Connection/ConnectionInfo.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Models/Connection/ConnectionInfo.js b/Models/Connection/ConnectionInfo.js index ad3ee15..a899701 100644 --- a/Models/Connection/ConnectionInfo.js +++ b/Models/Connection/ConnectionInfo.js @@ -51,18 +51,6 @@ export default class ConnectionInfo { loadPageAsync(pageName, rawCommand, pageSize, domainId, cancellationToken) { throw new Error("ConnectionInfo.loadPageAsync() method not implemented."); } -/** - * Insert a document into a MongoDB collection. - * @param {string} sourceName - * @param {string} connectionName - * @param {string} databaseName - * @param {string} collectionName - * @param {Object} data - * @returns {Promise} - */ -async insertAsync(sourceName, connectionName, databaseName, collectionName, data) { - throw new Error("ConnectionInfo.insertAsync() method not implemented."); -} /** * * @param {string} jsonString From 586922a826f3fae51a6865cd4331cda6aae944c3 Mon Sep 17 00:00:00 2001 From: alibazregar Date: Tue, 26 Nov 2024 12:32:00 +0330 Subject: [PATCH 23/23] delete add debug context from context --- Models/Connection/ConnectionInfo.js | 1 + renderEngine/Context/RequestContext.js | 8 +------- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/Models/Connection/ConnectionInfo.js b/Models/Connection/ConnectionInfo.js index a899701..789807d 100644 --- a/Models/Connection/ConnectionInfo.js +++ b/Models/Connection/ConnectionInfo.js @@ -59,6 +59,7 @@ export default class ConnectionInfo { convertJSONToDataSet(content) { if (content?.sources && Array.isArray(content?.sources)) { let retVal = []; + content.sources.forEach((source) => { retVal.push(source.data); }); diff --git a/renderEngine/Context/RequestContext.js b/renderEngine/Context/RequestContext.js index 3f74bc0..f1fb073 100644 --- a/renderEngine/Context/RequestContext.js +++ b/renderEngine/Context/RequestContext.js @@ -62,10 +62,9 @@ export default class RequestContext extends ContextBase { * @param {string} sourceName * @param {string} connectionName * @param {NodeJS.Dict} parameters - * @param {string[]} memberNames * @returns {Promise} */ - async loadDataAsync(sourceName, connectionName, parameters, memberNames) { + async loadDataAsync(sourceName, connectionName, parameters) { try { parameters.dmnid = this.domainId; /** @type {ConnectionInfo} */ @@ -75,11 +74,6 @@ export default class RequestContext extends ContextBase { parameters, this.cancellation ); - result.items.forEach((item, index) => { - this.debugContext.addDebugInformation( - sourceName + "." + memberNames[index], - ); - }); return result; } catch (ex) { throw new BasisCoreException(