From f35f8adceb5fd3a4a2bc1e67d7266b9f9503e83d Mon Sep 17 00:00:00 2001 From: Marko Date: Wed, 22 Jun 2022 17:02:10 +0200 Subject: [PATCH] add Order Entity and API Basics --- config/routes/api_platform.yaml | 4 + .../es6-promise/es6-promise.auto.min.js | 1 + public/bundles/apiplatform/fetch/fetch.js | 500 +++++ .../apiplatform/fonts/open-sans/400.css | 72 + .../apiplatform/fonts/open-sans/700.css | 72 + .../files/open-sans-cyrillic-400-normal.woff2 | Bin 0 -> 10092 bytes .../files/open-sans-cyrillic-700-normal.woff2 | Bin 0 -> 9832 bytes .../open-sans-cyrillic-ext-400-normal.woff2 | Bin 0 -> 17508 bytes .../open-sans-cyrillic-ext-700-normal.woff2 | Bin 0 -> 16908 bytes .../files/open-sans-greek-400-normal.woff2 | Bin 0 -> 8948 bytes .../files/open-sans-greek-700-normal.woff2 | Bin 0 -> 8772 bytes .../open-sans-greek-ext-400-normal.woff2 | Bin 0 -> 3712 bytes .../open-sans-greek-ext-700-normal.woff2 | Bin 0 -> 3676 bytes .../files/open-sans-latin-400-normal.woff2 | Bin 0 -> 16692 bytes .../files/open-sans-latin-700-normal.woff2 | Bin 0 -> 16408 bytes .../open-sans-latin-ext-400-normal.woff2 | Bin 0 -> 12956 bytes .../open-sans-latin-ext-700-normal.woff2 | Bin 0 -> 12760 bytes .../open-sans-vietnamese-400-normal.woff2 | Bin 0 -> 7196 bytes .../open-sans-vietnamese-700-normal.woff2 | Bin 0 -> 7080 bytes public/bundles/apiplatform/graphiql-style.css | 119 ++ .../bundles/apiplatform/graphiql/graphiql.css | 1701 +++++++++++++++++ .../apiplatform/graphiql/graphiql.min.js | 11 + .../apiplatform/graphql-playground/index.css | 45 + .../graphql-playground/middleware.js | 125 ++ public/bundles/apiplatform/init-graphiql.js | 80 + .../apiplatform/init-graphql-playground.js | 12 + public/bundles/apiplatform/init-redoc-ui.js | 7 + public/bundles/apiplatform/init-swagger-ui.js | 151 ++ public/bundles/apiplatform/logo-header.svg | 100 + .../react/react-dom.production.min.js | 245 +++ .../apiplatform/react/react.production.min.js | 31 + .../apiplatform/redoc/redoc.standalone.js | 3 + public/bundles/apiplatform/style.css | 353 ++++ .../swagger-ui/oauth2-redirect.html | 75 + .../swagger-ui/swagger-ui-bundle.js | 3 + .../swagger-ui/swagger-ui-bundle.js.map | 1 + .../swagger-ui-standalone-preset.js | 3 + .../swagger-ui-standalone-preset.js.map | 1 + .../apiplatform/swagger-ui/swagger-ui.css | 4 + .../apiplatform/swagger-ui/swagger-ui.css.map | 1 + public/bundles/apiplatform/web.png | Bin 0 -> 21929 bytes public/bundles/apiplatform/webby.png | Bin 0 -> 7261 bytes 42 files changed, 3720 insertions(+) create mode 100644 config/routes/api_platform.yaml create mode 100644 public/bundles/apiplatform/es6-promise/es6-promise.auto.min.js create mode 100644 public/bundles/apiplatform/fetch/fetch.js create mode 100644 public/bundles/apiplatform/fonts/open-sans/400.css create mode 100644 public/bundles/apiplatform/fonts/open-sans/700.css create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-cyrillic-400-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-cyrillic-700-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-cyrillic-ext-400-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-cyrillic-ext-700-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-greek-400-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-greek-700-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-greek-ext-400-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-greek-ext-700-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-latin-400-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-latin-700-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-latin-ext-400-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-latin-ext-700-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-vietnamese-400-normal.woff2 create mode 100644 public/bundles/apiplatform/fonts/open-sans/files/open-sans-vietnamese-700-normal.woff2 create mode 100644 public/bundles/apiplatform/graphiql-style.css create mode 100644 public/bundles/apiplatform/graphiql/graphiql.css create mode 100644 public/bundles/apiplatform/graphiql/graphiql.min.js create mode 100644 public/bundles/apiplatform/graphql-playground/index.css create mode 100644 public/bundles/apiplatform/graphql-playground/middleware.js create mode 100644 public/bundles/apiplatform/init-graphiql.js create mode 100644 public/bundles/apiplatform/init-graphql-playground.js create mode 100644 public/bundles/apiplatform/init-redoc-ui.js create mode 100644 public/bundles/apiplatform/init-swagger-ui.js create mode 100644 public/bundles/apiplatform/logo-header.svg create mode 100644 public/bundles/apiplatform/react/react-dom.production.min.js create mode 100644 public/bundles/apiplatform/react/react.production.min.js create mode 100644 public/bundles/apiplatform/redoc/redoc.standalone.js create mode 100644 public/bundles/apiplatform/style.css create mode 100644 public/bundles/apiplatform/swagger-ui/oauth2-redirect.html create mode 100644 public/bundles/apiplatform/swagger-ui/swagger-ui-bundle.js create mode 100644 public/bundles/apiplatform/swagger-ui/swagger-ui-bundle.js.map create mode 100644 public/bundles/apiplatform/swagger-ui/swagger-ui-standalone-preset.js create mode 100644 public/bundles/apiplatform/swagger-ui/swagger-ui-standalone-preset.js.map create mode 100644 public/bundles/apiplatform/swagger-ui/swagger-ui.css create mode 100644 public/bundles/apiplatform/swagger-ui/swagger-ui.css.map create mode 100644 public/bundles/apiplatform/web.png create mode 100644 public/bundles/apiplatform/webby.png diff --git a/config/routes/api_platform.yaml b/config/routes/api_platform.yaml new file mode 100644 index 0000000..38f11cb --- /dev/null +++ b/config/routes/api_platform.yaml @@ -0,0 +1,4 @@ +api_platform: + resource: . + type: api_platform + prefix: /api diff --git a/public/bundles/apiplatform/es6-promise/es6-promise.auto.min.js b/public/bundles/apiplatform/es6-promise/es6-promise.auto.min.js new file mode 100644 index 0000000..fdf8bff --- /dev/null +++ b/public/bundles/apiplatform/es6-promise/es6-promise.auto.min.js @@ -0,0 +1 @@ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.ES6Promise=e()}(this,function(){"use strict";function t(t){var e=typeof t;return null!==t&&("object"===e||"function"===e)}function e(t){return"function"==typeof t}function n(t){B=t}function r(t){G=t}function o(){return function(){return process.nextTick(a)}}function i(){return"undefined"!=typeof z?function(){z(a)}:c()}function s(){var t=0,e=new J(a),n=document.createTextNode("");return e.observe(n,{characterData:!0}),function(){n.data=t=++t%2}}function u(){var t=new MessageChannel;return t.port1.onmessage=a,function(){return t.port2.postMessage(0)}}function c(){var t=setTimeout;return function(){return t(a,1)}}function a(){for(var t=0;t this.readyToRead) { + push = USE_ALLOC ? Buffer.alloc(this.readyToRead, '', 'binary') : new Buffer(this.readyToRead, 'binary'); + this.responseBuffer.copy(push, 0, 0, this.readyToRead); + restSize = this.responseBuffer.length - this.readyToRead; + rest = USE_ALLOC ? Buffer.alloc(restSize, '', 'binary') : new Buffer(restSize, 'binary'); + this.responseBuffer.copy(rest, 0, this.readyToRead); + } else { + push = this.responseBuffer; + rest = USE_ALLOC ? Buffer.alloc(0, '', 'binary') : new Buffer(0, 'binary'); + } + this.responseBuffer = rest; + this.readyToRead = 0; + if (this.options.encoding) { + this.push(push, this.options.encoding); + } else { + this.push(push); + } +}; + +FetchStream.prototype.destroy = function (ex) { + this.emit('destroy', ex); +}; + +FetchStream.prototype.normalizeOptions = function () { + + // cookiejar + this.cookieJar = this.options.cookieJar || new CookieJar(); + + // default redirects - 10 + // if disableRedirect is set, then 0 + if (!this.options.disableRedirect && typeof this.options.maxRedirects !== 'number' && + !(this.options.maxRedirects instanceof Number)) { + this.options.maxRedirects = 10; + } else if (this.options.disableRedirects) { + this.options.maxRedirects = 0; + } + + // normalize header keys + // HTTP and HTTPS takes in key names in case insensitive but to find + // an exact value from an object key name needs to be case sensitive + // so we're just lowercasing all input keys + this.options.headers = this.options.headers || {}; + + var keys = Object.keys(this.options.headers); + var newheaders = {}; + var i; + + for (i = keys.length - 1; i >= 0; i--) { + newheaders[keys[i].toLowerCase().trim()] = this.options.headers[keys[i]]; + } + + this.options.headers = newheaders; + + if (!this.options.headers['user-agent']) { + this.options.headers['user-agent'] = this.userAgent; + } + + if (!this.options.headers.pragma) { + this.options.headers.pragma = 'no-cache'; + } + + if (!this.options.headers['cache-control']) { + this.options.headers['cache-control'] = 'no-cache'; + } + + if (!this.options.disableGzip) { + this.options.headers['accept-encoding'] = 'gzip, deflate'; + } else { + delete this.options.headers['accept-encoding']; + } + + // max length for the response, + // if not set, default is Infinity + if (!this.options.maxResponseLength) { + this.options.maxResponseLength = Infinity; + } + + // method: + // defaults to GET, or when payload present to POST + if (!this.options.method) { + this.options.method = this.options.payload || this.options.payloadSize ? 'POST' : 'GET'; + } + + // set cookies + // takes full cookie definition strings as params + if (this.options.cookies) { + for (i = 0; i < this.options.cookies.length; i++) { + this.cookieJar.setCookie(this.options.cookies[i], this.url); + } + } + + // rejectUnauthorized + if (typeof this.options.rejectUnauthorized === 'undefined') { + this.options.rejectUnauthorized = true; + } +}; + +FetchStream.prototype.parseUrl = function (url) { + var urlparts = urllib.parse(url, false, true), + transport, + urloptions = { + host: urlparts.hostname || urlparts.host, + port: urlparts.port, + path: urlparts.pathname + (urlparts.search || '') || '/', + method: this.options.method, + rejectUnauthorized: this.options.rejectUnauthorized + }; + + switch (urlparts.protocol) { + case 'https:': + transport = https; + break; + case 'http:': + default: + transport = http; + break; + } + + if (transport === https) { + if('agentHttps' in this.options){ + urloptions.agent = this.options.agentHttps; + } + if('agent' in this.options){ + urloptions.agent = this.options.agent; + } + } else { + if('agentHttp' in this.options){ + urloptions.agent = this.options.agentHttp; + } + if('agent' in this.options){ + urloptions.agent = this.options.agent; + } + } + + if (!urloptions.port) { + switch (urlparts.protocol) { + case 'https:': + urloptions.port = 443; + break; + case 'http:': + default: + urloptions.port = 80; + break; + } + } + + urloptions.headers = this.options.headers || {}; + + if (urlparts.auth) { + var buf = USE_ALLOC ? Buffer.alloc(Buffer.byteLength(urlparts.auth), urlparts.auth) : new Buffer(urlparts.auth); + urloptions.headers.Authorization = 'Basic ' + buf.toString('base64'); + } + + return { + urloptions: urloptions, + transport: transport + }; +}; + +FetchStream.prototype.setEncoding = function (encoding) { + this.options.encoding = encoding; +}; + +FetchStream.prototype.runStream = function (url) { + var url_data = this.parseUrl(url), + cookies = this.cookieJar.getCookies(url); + + if (cookies) { + url_data.urloptions.headers.cookie = cookies; + } else { + delete url_data.urloptions.headers.cookie; + } + + if (this.options.payload) { + url_data.urloptions.headers['content-length'] = Buffer.byteLength(this.options.payload || '', 'utf-8'); + } + + if (this.options.payloadSize) { + url_data.urloptions.headers['content-length'] = this.options.payloadSize; + } + + if (this.options.asyncDnsLoookup) { + var dnsCallback = (function (err, addresses) { + if (err) { + this.emit('error', err); + return; + } + + url_data.urloptions.headers.host = url_data.urloptions.hostname || url_data.urloptions.host; + url_data.urloptions.hostname = addresses[0]; + url_data.urloptions.host = url_data.urloptions.headers.host + (url_data.urloptions.port ? ':' + url_data.urloptions.port : ''); + + this._runStream(url_data, url); + }).bind(this); + + if (net.isIP(url_data.urloptions.host)) { + dnsCallback(null, [url_data.urloptions.host]); + } else { + dns.resolve4(url_data.urloptions.host, dnsCallback); + } + } else { + this._runStream(url_data, url); + } +}; + +FetchStream.prototype._runStream = function (url_data, url) { + + var req = url_data.transport.request(url_data.urloptions, (function (res) { + + // catch new cookies before potential redirect + if (Array.isArray(res.headers['set-cookie'])) { + for (var i = 0; i < res.headers['set-cookie'].length; i++) { + this.cookieJar.setCookie(res.headers['set-cookie'][i], url); + } + } + + if ([301, 302, 303, 307, 308].indexOf(res.statusCode) >= 0) { + if (!this.options.disableRedirects && this.options.maxRedirects > this._redirect_count && res.headers.location) { + this._redirect_count++; + req.destroy(); + this.runStream(urllib.resolve(url, res.headers.location)); + return; + } + } + + this.meta = { + status: res.statusCode, + responseHeaders: res.headers, + finalUrl: url, + redirectCount: this._redirect_count, + cookieJar: this.cookieJar + }; + + var curlen = 0, + maxlen, + + receive = (function (chunk) { + if (curlen + chunk.length > this.options.maxResponseLength) { + maxlen = this.options.maxResponseLength - curlen; + } else { + maxlen = chunk.length; + } + + if (maxlen <= 0) { + return; + } + + curlen += Math.min(maxlen, chunk.length); + if (maxlen >= chunk.length) { + if (this.responseBuffer.length === 0) { + this.responseBuffer = chunk; + } else { + this.responseBuffer = Buffer.concat([this.responseBuffer, chunk]); + } + } else { + this.responseBuffer = Buffer.concat([this.responseBuffer, chunk], this.responseBuffer.length + maxlen); + } + this.drainBuffer(); + }).bind(this), + + error = (function (e) { + this.ended = true; + this.emit('error', e); + this.drainBuffer(); + }).bind(this), + + end = (function () { + this.ended = true; + if (this.responseBuffer.length === 0) { + this.push(null); + } + }).bind(this), + + unpack = (function (type, res) { + var z = zlib['create' + type](); + z.on('data', receive); + z.on('error', error); + z.on('end', end); + res.pipe(z); + }).bind(this); + + this.emit('meta', this.meta); + + if (res.headers['content-encoding']) { + switch (res.headers['content-encoding'].toLowerCase().trim()) { + case 'gzip': + return unpack('Gunzip', res); + case 'deflate': + return unpack('InflateRaw', res); + } + } + + res.on('data', receive); + res.on('end', end); + + }).bind(this)); + + req.on('error', (function (e) { + this.emit('error', e); + }).bind(this)); + + if (this.options.timeout) { + req.setTimeout(this.options.timeout, req.abort.bind(req)); + } + this.on('destroy', req.abort.bind(req)); + + if (this.options.payload) { + req.end(this.options.payload); + } else if (this.options.payloadStream) { + this.options.payloadStream.pipe(req); + this.options.payloadStream.resume(); + } else { + req.end(); + } +}; + +function fetchUrl(url, options, callback) { + if (!callback && typeof options === 'function') { + callback = options; + options = undefined; + } + options = options || {}; + + var fetchstream = new FetchStream(url, options), + response_data, chunks = [], + length = 0, + curpos = 0, + buffer, + content_type, + callbackFired = false; + + fetchstream.on('meta', function (meta) { + response_data = meta; + content_type = _parseContentType(meta.responseHeaders['content-type']); + }); + + fetchstream.on('data', function (chunk) { + if (chunk) { + chunks.push(chunk); + length += chunk.length; + } + }); + + fetchstream.on('error', function (error) { + if (error && error.code === 'HPE_INVALID_CONSTANT') { + // skip invalid formatting errors + return; + } + if (callbackFired) { + return; + } + callbackFired = true; + callback(error); + }); + + fetchstream.on('end', function () { + if (callbackFired) { + return; + } + callbackFired = true; + + buffer = USE_ALLOC ? Buffer.alloc(length) : new Buffer(length); + for (var i = 0, len = chunks.length; i < len; i++) { + chunks[i].copy(buffer, curpos); + curpos += chunks[i].length; + } + + if (content_type.mimeType === 'text/html') { + content_type.charset = _findHTMLCharset(buffer) || content_type.charset; + } + + content_type.charset = (options.overrideCharset || content_type.charset || 'utf-8').trim().toLowerCase(); + + + if (!options.disableDecoding && !content_type.charset.match(/^utf-?8$/i)) { + buffer = encodinglib.convert(buffer, 'UTF-8', content_type.charset); + } + + if (options.outputEncoding) { + return callback(null, response_data, buffer.toString(options.outputEncoding)); + } else { + return callback(null, response_data, buffer); + } + + }); +} + +function _parseContentType(str) { + if (!str) { + return {}; + } + var parts = str.split(';'), + mimeType = parts.shift(), + charset, chparts; + + for (var i = 0, len = parts.length; i < len; i++) { + chparts = parts[i].split('='); + if (chparts.length > 1) { + if (chparts[0].trim().toLowerCase() === 'charset') { + charset = chparts[1]; + } + } + } + + return { + mimeType: (mimeType || '').trim().toLowerCase(), + charset: (charset || 'UTF-8').trim().toLowerCase() // defaults to UTF-8 + }; +} + +function _findHTMLCharset(htmlbuffer) { + + var body = htmlbuffer.toString('ascii'), + input, meta, charset; + + if ((meta = body.match(/]*?>/i))) { + input = meta[0]; + } + + if (input) { + charset = input.match(/charset\s?=\s?([a-zA-Z\-0-9]*);?/); + if (charset) { + charset = (charset[1] || '').trim().toLowerCase(); + } + } + + if (!charset && (meta = body.match(/390VW*gm?!a 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 O390VW*gkT3C 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 OhvhH)IQ+)mRSN*#I^Gcg literal 0 HcmV?d00001 diff --git a/public/bundles/apiplatform/fonts/open-sans/files/open-sans-cyrillic-ext-400-normal.woff2 b/public/bundles/apiplatform/fonts/open-sans/files/open-sans-cyrillic-ext-400-normal.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..221d57af43df64877958a7f9fc30b863aadf796b GIT binary patch literal 17508 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 literal 0 HcmV?d00001 diff --git a/public/bundles/apiplatform/fonts/open-sans/files/open-sans-greek-ext-400-normal.woff2 b/public/bundles/apiplatform/fonts/open-sans/files/open-sans-greek-ext-400-normal.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..9d1427c8b9e02fefee90b71faba3dea8a55926d3 GIT binary patch literal 3712 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 PrSct1tG*w%MK literal 0 HcmV?d00001 diff --git a/public/bundles/apiplatform/fonts/open-sans/files/open-sans-latin-700-normal.woff2 b/public/bundles/apiplatform/fonts/open-sans/files/open-sans-latin-700-normal.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..e8660703985038143ad1f9f2b8501af7ad613265 GIT binary patch literal 16408 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 S6nuZ_V}7vsoL|W20000c%UfRn literal 0 HcmV?d00001 diff --git a/public/bundles/apiplatform/fonts/open-sans/files/open-sans-latin-ext-700-normal.woff2 b/public/bundles/apiplatform/fonts/open-sans/files/open-sans-latin-ext-700-normal.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..823d74380c149ac6da9ff3223255e99ab5f1f081 GIT binary patch literal 12760 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 literal 0 HcmV?d00001 diff --git a/public/bundles/apiplatform/fonts/open-sans/files/open-sans-vietnamese-400-normal.woff2 b/public/bundles/apiplatform/fonts/open-sans/files/open-sans-vietnamese-400-normal.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..b8d901c5ea7f76526acce5f0ca4fcb5d73c124f1 GIT binary patch literal 7196 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 literal 0 HcmV?d00001 diff --git a/public/bundles/apiplatform/fonts/open-sans/files/open-sans-vietnamese-700-normal.woff2 b/public/bundles/apiplatform/fonts/open-sans/files/open-sans-vietnamese-700-normal.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..de832b8e76deed3e1dbb75802bb0b118220691c5 GIT binary patch literal 7080 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 S6ai16z!$@>`LcS?57GvTIli.selected, +#graphiql .graphiql-container .toolbar-menu-items>li.hover, +#graphiql.graphiql-container .toolbar-menu-items>li:active, +#graphiql .graphiql-container .toolbar-menu-items>li:hover, +#graphiql.graphiql-container .toolbar-select-options>li.hover, +#graphiql .graphiql-container .toolbar-select-options>li:active, +#graphiql .graphiql-container .toolbar-select-options>li:hover, +#graphiql .graphiql-container .history-contents>p:hover, +#graphiql .graphiql-container .history-contents>p:active { + background: #288690; +} diff --git a/public/bundles/apiplatform/graphiql/graphiql.css b/public/bundles/apiplatform/graphiql/graphiql.css new file mode 100644 index 0000000..1d0a486 --- /dev/null +++ b/public/bundles/apiplatform/graphiql/graphiql.css @@ -0,0 +1,1701 @@ +.graphiql-container, +.graphiql-container button, +.graphiql-container input { + color: #141823; + font-family: + system, + -apple-system, + 'San Francisco', + '.SFNSDisplay-Regular', + 'Segoe UI', + Segoe, + 'Segoe WP', + 'Helvetica Neue', + helvetica, + 'Lucida Grande', + arial, + sans-serif; + font-size: 14px; +} + +.graphiql-container { + display: flex; + flex-direction: row; + height: 100%; + margin: 0; + overflow: hidden; + width: 100%; +} + +.graphiql-container .editorWrap { + display: flex; + flex-direction: column; + flex: 1; + overflow-x: hidden; +} + +.graphiql-container .title { + font-size: 18px; +} + +.graphiql-container .title em { + font-family: georgia; + font-size: 19px; +} + +.graphiql-container .topBarWrap { + display: flex; + flex-direction: row; +} + +.graphiql-container .topBar { + align-items: center; + background: linear-gradient(#f7f7f7, #e2e2e2); + border-bottom: 1px solid #d0d0d0; + cursor: default; + display: flex; + flex-direction: row; + flex: 1; + height: 34px; + overflow-y: visible; + padding: 7px 14px 6px; + user-select: none; +} + +.graphiql-container .toolbar { + overflow-x: visible; + display: flex; +} + +.graphiql-container .docExplorerShow, +.graphiql-container .historyShow { + background: linear-gradient(#f7f7f7, #e2e2e2); + border-radius: 0; + border-bottom: 1px solid #d0d0d0; + border-right: none; + border-top: none; + color: #3B5998; + cursor: pointer; + font-size: 14px; + margin: 0; + padding: 2px 20px 0 18px; +} + +.graphiql-container .docExplorerShow { + border-left: 1px solid rgba(0, 0, 0, 0.2); +} + +.graphiql-container .historyShow { + border-right: 1px solid rgba(0, 0, 0, 0.2); + border-left: 0; +} + +.graphiql-container .docExplorerShow:before { + border-left: 2px solid #3B5998; + border-top: 2px solid #3B5998; + content: ''; + display: inline-block; + height: 9px; + margin: 0 3px -1px 0; + position: relative; + transform: rotate(-45deg); + width: 9px; +} + +.graphiql-container .editorBar { + display: flex; + flex-direction: row; + flex: 1; +} + +.graphiql-container .queryWrap { + display: flex; + flex-direction: column; + flex: 1; +} + +.graphiql-container .resultWrap { + border-left: solid 1px #e0e0e0; + display: flex; + flex-direction: column; + flex: 1; + flex-basis: 1em; + position: relative; +} + +.graphiql-container .docExplorerWrap, +.graphiql-container .historyPaneWrap { + background: white; + box-shadow: 0 0 8px rgba(0, 0, 0, 0.15); + position: relative; + z-index: 3; +} + +.graphiql-container .historyPaneWrap { + min-width: 230px; + z-index: 5; +} + +.graphiql-container .docExplorerResizer { + cursor: col-resize; + height: 100%; + left: -5px; + position: absolute; + top: 0; + width: 10px; + z-index: 10; +} + +.graphiql-container .docExplorerHide { + cursor: pointer; + font-size: 18px; + margin: -7px -8px -6px 0; + padding: 18px 16px 15px 12px; + background: 0; + border: 0; + line-height: 14px; +} + +.graphiql-container div .query-editor { + flex: 1; + position: relative; +} + +.graphiql-container .secondary-editor { + display: flex; + flex-direction: column; + height: 30px; + position: relative; +} + +.graphiql-container .secondary-editor-title { + background: #eeeeee; + border-bottom: 1px solid #d6d6d6; + border-top: 1px solid #e0e0e0; + color: #777; + font-variant: small-caps; + font-weight: bold; + letter-spacing: 1px; + line-height: 14px; + padding: 6px 0 8px 43px; + text-transform: lowercase; + user-select: none; +} + +.graphiql-container .codemirrorWrap { + flex: 1; + height: 100%; + position: relative; +} + +.graphiql-container .result-window { + flex: 1; + height: 100%; + position: relative; +} + +.graphiql-container .footer { + background: #f6f7f8; + border-left: 1px solid #e0e0e0; + border-top: 1px solid #e0e0e0; + margin-left: 12px; + position: relative; +} + +.graphiql-container .footer:before { + background: #eeeeee; + bottom: 0; + content: " "; + left: -13px; + position: absolute; + top: -1px; + width: 12px; +} + +/* No `.graphiql-container` here so themes can overwrite */ + +.result-window .CodeMirror.cm-s-graphiql { + background: #f6f7f8; +} + +.graphiql-container .result-window .CodeMirror-gutters { + background-color: #eeeeee; + border-color: #e0e0e0; + cursor: col-resize; +} + +.graphiql-container .result-window .CodeMirror-foldgutter, +.graphiql-container .result-window .CodeMirror-foldgutter-open:after, +.graphiql-container .result-window .CodeMirror-foldgutter-folded:after { + padding-left: 3px; +} + +.graphiql-container .toolbar-button { + background: #fdfdfd; + background: linear-gradient(#f9f9f9, #ececec); + border: 0; + border-radius: 3px; + box-shadow: + inset 0 0 0 1px rgba(0,0,0,0.20), + 0 1px 0 rgba(255,255,255, 0.7), + inset 0 1px #fff; + color: #555; + cursor: pointer; + display: inline-block; + margin: 0 5px; + padding: 3px 11px 5px; + text-decoration: none; + text-overflow: ellipsis; + white-space: nowrap; + max-width: 150px; +} + +.graphiql-container .toolbar-button:active { + background: linear-gradient(#ececec, #d5d5d5); + box-shadow: + 0 1px 0 rgba(255, 255, 255, 0.7), + inset 0 0 0 1px rgba(0,0,0,0.10), + inset 0 1px 1px 1px rgba(0, 0, 0, 0.12), + inset 0 0 5px rgba(0, 0, 0, 0.1); +} + +.graphiql-container .toolbar-button.error { + background: linear-gradient(#fdf3f3, #e6d6d7); + color: #b00; +} + +.graphiql-container .toolbar-button-group { + margin: 0 5px; + white-space: nowrap; +} + +.graphiql-container .toolbar-button-group > * { + margin: 0; +} + +.graphiql-container .toolbar-button-group > *:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.graphiql-container .toolbar-button-group > *:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + margin-left: -1px; +} + +.graphiql-container .execute-button-wrap { + height: 34px; + margin: 0 14px 0 28px; + position: relative; +} + +.graphiql-container .execute-button { + background: linear-gradient(#fdfdfd, #d2d3d6); + border-radius: 17px; + border: 1px solid rgba(0,0,0,0.25); + box-shadow: 0 1px 0 #fff; + cursor: pointer; + fill: #444; + height: 34px; + margin: 0; + padding: 0; + width: 34px; +} + +.graphiql-container .execute-button svg { + pointer-events: none; +} + +.graphiql-container .execute-button:active { + background: linear-gradient(#e6e6e6, #c3c3c3); + box-shadow: + 0 1px 0 #fff, + inset 0 0 2px rgba(0, 0, 0, 0.2), + inset 0 0 6px rgba(0, 0, 0, 0.1); +} + +.graphiql-container .toolbar-menu, +.graphiql-container .toolbar-select { + position: relative; +} + +.graphiql-container .execute-options, +.graphiql-container .toolbar-menu-items, +.graphiql-container .toolbar-select-options { + background: #fff; + box-shadow: + 0 0 0 1px rgba(0,0,0,0.1), + 0 2px 4px rgba(0,0,0,0.25); + margin: 0; + padding: 6px 0; + position: absolute; + z-index: 100; +} + +.graphiql-container .execute-options { + min-width: 100px; + top: 37px; + left: -1px; +} + +.graphiql-container .toolbar-menu-items { + left: 1px; + margin-top: -1px; + min-width: 110%; + top: 100%; + visibility: hidden; +} + +.graphiql-container .toolbar-menu-items.open { + visibility: visible; +} + +.graphiql-container .toolbar-select-options { + left: 0; + min-width: 100%; + top: -5px; + visibility: hidden; +} + +.graphiql-container .toolbar-select-options.open { + visibility: visible; +} + +.graphiql-container .execute-options > li, +.graphiql-container .toolbar-menu-items > li, +.graphiql-container .toolbar-select-options > li { + cursor: pointer; + display: block; + margin: none; + max-width: 300px; + overflow: hidden; + padding: 2px 20px 4px 11px; + white-space: nowrap; +} + +.graphiql-container .execute-options > li.selected, +.graphiql-container .toolbar-menu-items > li.hover, +.graphiql-container .toolbar-menu-items > li:active, +.graphiql-container .toolbar-menu-items > li:hover, +.graphiql-container .toolbar-select-options > li.hover, +.graphiql-container .toolbar-select-options > li:active, +.graphiql-container .toolbar-select-options > li:hover, +.graphiql-container .history-contents > li:hover, +.graphiql-container .history-contents > li:active { + background: #e10098; + color: #fff; +} + +.graphiql-container .toolbar-select-options > li > svg { + display: inline; + fill: #666; + margin: 0 -6px 0 6px; + pointer-events: none; + vertical-align: middle; +} + +.graphiql-container .toolbar-select-options > li.hover > svg, +.graphiql-container .toolbar-select-options > li:active > svg, +.graphiql-container .toolbar-select-options > li:hover > svg { + fill: #fff; +} + +.graphiql-container .CodeMirror-scroll { + overflow-scrolling: touch; +} + +.graphiql-container .CodeMirror { + color: #141823; + font-family: + 'Consolas', + 'Inconsolata', + 'Droid Sans Mono', + 'Monaco', + monospace; + font-size: 13px; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; +} + +.graphiql-container .CodeMirror-lines { + padding: 20px 0; +} + +.CodeMirror-hint-information .content { + box-orient: vertical; + color: #141823; + display: flex; + font-family: system, -apple-system, 'San Francisco', '.SFNSDisplay-Regular', 'Segoe UI', Segoe, 'Segoe WP', 'Helvetica Neue', helvetica, 'Lucida Grande', arial, sans-serif; + font-size: 13px; + line-clamp: 3; + line-height: 16px; + max-height: 48px; + overflow: hidden; + text-overflow: -o-ellipsis-lastline; +} + +.CodeMirror-hint-information .content p:first-child { + margin-top: 0; +} + +.CodeMirror-hint-information .content p:last-child { + margin-bottom: 0; +} + +.CodeMirror-hint-information .infoType { + color: #CA9800; + cursor: pointer; + display: inline; + margin-right: 0.5em; +} + +.autoInsertedLeaf.cm-property { + animation-duration: 6s; + animation-name: insertionFade; + border-bottom: 2px solid rgba(255, 255, 255, 0); + border-radius: 2px; + margin: -2px -4px -1px; + padding: 2px 4px 1px; +} + +@keyframes insertionFade { + from, to { + background: rgba(255, 255, 255, 0); + border-color: rgba(255, 255, 255, 0); + } + + 15%, 85% { + background: #fbffc9; + border-color: #f0f3c0; + } +} + +div.CodeMirror-lint-tooltip { + background-color: white; + border-radius: 2px; + border: 0; + color: #141823; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45); + font-size: 13px; + line-height: 16px; + max-width: 430px; + opacity: 0; + padding: 8px 10px; + transition: opacity 0.15s; + white-space: pre-wrap; +} + +div.CodeMirror-lint-tooltip > * { + padding-left: 23px; +} + +div.CodeMirror-lint-tooltip > * + * { + margin-top: 12px; +} + +/* COLORS */ + +.graphiql-container .CodeMirror-foldmarker { + border-radius: 4px; + background: #08f; + background: linear-gradient(#43A8FF, #0F83E8); + box-shadow: + 0 1px 1px rgba(0, 0, 0, 0.2), + inset 0 0 0 1px rgba(0, 0, 0, 0.1); + color: white; + font-family: arial; + font-size: 12px; + line-height: 0; + margin: 0 3px; + padding: 0px 4px 1px; + text-shadow: 0 -1px rgba(0, 0, 0, 0.1); +} + +.graphiql-container div.CodeMirror span.CodeMirror-matchingbracket { + color: #555; + text-decoration: underline; +} + +.graphiql-container div.CodeMirror span.CodeMirror-nonmatchingbracket { + color: #f00; +} + +/* Comment */ + +.cm-comment { + color: #666; +} + +/* Punctuation */ + +.cm-punctuation { + color: #555; +} + +/* Keyword */ + +.cm-keyword { + color: #B11A04; +} + +/* OperationName, FragmentName */ + +.cm-def { + color: #D2054E; +} + +/* FieldName */ + +.cm-property { + color: #1F61A0; +} + +/* FieldAlias */ + +.cm-qualifier { + color: #1C92A9; +} + +/* ArgumentName and ObjectFieldName */ + +.cm-attribute { + color: #8B2BB9; +} + +/* Number */ + +.cm-number { + color: #2882F9; +} + +/* String */ + +.cm-string { + color: #D64292; +} + +/* Boolean */ + +.cm-builtin { + color: #D47509; +} + +/* EnumValue */ + +.cm-string-2 { + color: #0B7FC7; +} + +/* Variable */ + +.cm-variable { + color: #397D13; +} + +/* Directive */ + +.cm-meta { + color: #B33086; +} + +/* Type */ + +.cm-atom { + color: #CA9800; +} + +/* BASICS */ + +.CodeMirror { + /* Set height, width, borders, and global font properties here */ + color: black; + font-family: monospace; + height: 300px; +} + +/* PADDING */ + +.CodeMirror-lines { + padding: 4px 0; /* Vertical padding around content */ +} + +.CodeMirror pre { + padding: 0 4px; /* Horizontal padding of content */ +} + +.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { + background-color: white; /* The little square between H and V scrollbars */ +} + +/* GUTTER */ + +.CodeMirror-gutters { + border-right: 1px solid #ddd; + background-color: #f7f7f7; + white-space: nowrap; +} + +.CodeMirror-linenumbers {} + +.CodeMirror-linenumber { + color: #666; + min-width: 20px; + padding: 0 3px 0 5px; + text-align: right; + white-space: nowrap; +} + +.CodeMirror-guttermarker { color: black; } + +.CodeMirror-guttermarker-subtle { color: #666; } + +/* CURSOR */ + +.CodeMirror .CodeMirror-cursor { + border-left: 1px solid black; +} + +/* Shown when moving in bi-directional text */ + +.CodeMirror div.CodeMirror-secondarycursor { + border-left: 1px solid silver; +} + +.CodeMirror.cm-fat-cursor div.CodeMirror-cursor { + background: #7e7; + border: 0; + width: auto; +} + +.CodeMirror.cm-fat-cursor div.CodeMirror-cursors { + z-index: 1; +} + +.cm-animate-fat-cursor { + animation: blink 1.06s steps(1) infinite; + border: 0; + width: auto; +} + +@keyframes blink { + 0% { background: #7e7; } + 50% { background: none; } + 100% { background: #7e7; } +} + +/* Can style cursor different in overwrite (non-insert) mode */ + +div.CodeMirror-overwrite div.CodeMirror-cursor {} + +.cm-tab { display: inline-block; text-decoration: inherit; } + +.CodeMirror-ruler { + border-left: 1px solid #ccc; + position: absolute; +} + +/* DEFAULT THEME */ + +.cm-s-default .cm-keyword {color: #708;} + +.cm-s-default .cm-atom {color: #219;} + +.cm-s-default .cm-number {color: #164;} + +.cm-s-default .cm-def {color: #00f;} + +.cm-s-default .cm-variable, +.cm-s-default .cm-punctuation, +.cm-s-default .cm-property, +.cm-s-default .cm-operator {} + +.cm-s-default .cm-variable-2 {color: #05a;} + +.cm-s-default .cm-variable-3 {color: #085;} + +.cm-s-default .cm-comment {color: #a50;} + +.cm-s-default .cm-string {color: #a11;} + +.cm-s-default .cm-string-2 {color: #f50;} + +.cm-s-default .cm-meta {color: #555;} + +.cm-s-default .cm-qualifier {color: #555;} + +.cm-s-default .cm-builtin {color: #30a;} + +.cm-s-default .cm-bracket {color: #666;} + +.cm-s-default .cm-tag {color: #170;} + +.cm-s-default .cm-attribute {color: #00c;} + +.cm-s-default .cm-header {color: blue;} + +.cm-s-default .cm-quote {color: #090;} + +.cm-s-default .cm-hr {color: #666;} + +.cm-s-default .cm-link {color: #00c;} + +.cm-negative {color: #d44;} + +.cm-positive {color: #292;} + +.cm-header, .cm-strong {font-weight: bold;} + +.cm-em {font-style: italic;} + +.cm-link {text-decoration: underline;} + +.cm-strikethrough {text-decoration: line-through;} + +.cm-s-default .cm-error {color: #f00;} + +.cm-invalidchar {color: #f00;} + +.CodeMirror-composing { border-bottom: 2px solid; } + +/* Default styles for common addons */ + +div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;} + +div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;} + +.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); } + +.CodeMirror-activeline-background {background: #e8f2ff;} + +/* STOP */ + +/* The rest of this file contains styles related to the mechanics of + the editor. You probably shouldn't touch them. */ + +.CodeMirror { + background: white; + overflow: hidden; + position: relative; +} + +.CodeMirror-scroll { + height: 100%; + /* 30px is the magic margin used to hide the element's real scrollbars */ + /* See overflow: hidden in .CodeMirror */ + margin-bottom: -30px; margin-right: -30px; + outline: none; /* Prevent dragging from highlighting the element */ + overflow: scroll !important; /* Things will break if this is overridden */ + padding-bottom: 30px; + position: relative; +} + +.CodeMirror-sizer { + border-right: 30px solid transparent; + position: relative; +} + +/* The fake, visible scrollbars. Used to force redraw during scrolling + before actual scrolling happens, thus preventing shaking and + flickering artifacts. */ + +.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler { + display: none; + position: absolute; + z-index: 6; +} + +.CodeMirror-vscrollbar { + overflow-x: hidden; + overflow-y: scroll; + right: 0; top: 0; +} + +.CodeMirror-hscrollbar { + bottom: 0; left: 0; + overflow-x: scroll; + overflow-y: hidden; +} + +.CodeMirror-scrollbar-filler { + right: 0; bottom: 0; +} + +.CodeMirror-gutter-filler { + left: 0; bottom: 0; +} + +.CodeMirror-gutters { + min-height: 100%; + position: absolute; left: 0; top: 0; + z-index: 3; +} + +.CodeMirror-gutter { + display: inline-block; + height: 100%; + margin-bottom: -30px; + vertical-align: top; + white-space: normal; + /* Hack to make IE7 behave */ + *zoom:1; + *display:inline; +} + +.CodeMirror-gutter-wrapper { + background: none !important; + border: none !important; + position: absolute; + z-index: 4; +} + +.CodeMirror-gutter-background { + position: absolute; + top: 0; bottom: 0; + z-index: 4; +} + +.CodeMirror-gutter-elt { + cursor: default; + position: absolute; + z-index: 4; +} + +.CodeMirror-gutter-wrapper { + user-select: none; +} + +.CodeMirror-lines { + cursor: text; + min-height: 1px; /* prevents collapsing before first draw */ +} + +.CodeMirror pre { + -webkit-tap-highlight-color: transparent; + /* Reset some styles that the rest of the page might have set */ + background: transparent; + border-radius: 0; + border-width: 0; + color: inherit; + font-family: inherit; + font-size: inherit; + font-variant-ligatures: none; + line-height: inherit; + margin: 0; + overflow: visible; + position: relative; + white-space: pre; + word-wrap: normal; + z-index: 2; +} + +.CodeMirror-wrap pre { + word-wrap: break-word; + white-space: pre-wrap; + word-break: normal; +} + +.CodeMirror-linebackground { + position: absolute; + left: 0; right: 0; top: 0; bottom: 0; + z-index: 0; +} + +.CodeMirror-linewidget { + overflow: auto; + position: relative; + z-index: 2; +} + +.CodeMirror-widget {} + +.CodeMirror-code { + outline: none; +} + +/* Force content-box sizing for the elements where we expect it */ + +.CodeMirror-scroll, +.CodeMirror-sizer, +.CodeMirror-gutter, +.CodeMirror-gutters, +.CodeMirror-linenumber { + box-sizing: content-box; +} + +.CodeMirror-measure { + height: 0; + overflow: hidden; + position: absolute; + visibility: hidden; + width: 100%; +} + +.CodeMirror-cursor { position: absolute; } + +.CodeMirror-measure pre { position: static; } + +div.CodeMirror-cursors { + position: relative; + visibility: hidden; + z-index: 3; +} + +div.CodeMirror-dragcursors { + visibility: visible; +} + +.CodeMirror-focused div.CodeMirror-cursors { + visibility: visible; +} + +.CodeMirror-selected { background: #d9d9d9; } + +.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; } + +.CodeMirror-crosshair { cursor: crosshair; } + +.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; } + +.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; } + +.cm-searching { + background: #ffa; + background: rgba(255, 255, 0, .4); +} + +/* IE7 hack to prevent it from returning funny offsetTops on the spans */ + +.CodeMirror span { *vertical-align: text-bottom; } + +/* Used to force a border model for a node */ + +.cm-force-border { padding-right: .1px; } + +@media print { + /* Hide the cursor when printing */ + .CodeMirror div.CodeMirror-cursors { + visibility: hidden; + } +} + +/* See issue #2901 */ + +.cm-tab-wrap-hack:after { content: ''; } + +/* Help users use markselection to safely style text background */ + +span.CodeMirror-selectedtext { background: none; } + +.CodeMirror-dialog { + background: inherit; + color: inherit; + left: 0; right: 0; + overflow: hidden; + padding: .1em .8em; + position: absolute; + z-index: 15; +} + +.CodeMirror-dialog-top { + border-bottom: 1px solid #eee; + top: 0; +} + +.CodeMirror-dialog-bottom { + border-top: 1px solid #eee; + bottom: 0; +} + +.CodeMirror-dialog input { + background: transparent; + border: 1px solid #d3d6db; + color: inherit; + font-family: monospace; + outline: none; + width: 20em; +} + +.CodeMirror-dialog button { + font-size: 70%; +} + +.CodeMirror-foldmarker { + color: blue; + cursor: pointer; + font-family: arial; + line-height: .3; + text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px; +} +.CodeMirror-foldgutter { + width: .7em; +} +.CodeMirror-foldgutter-open, +.CodeMirror-foldgutter-folded { + cursor: pointer; +} +.CodeMirror-foldgutter-open:after { + content: "\25BE"; +} +.CodeMirror-foldgutter-folded:after { + content: "\25B8"; +} + +.CodeMirror-info { + background: white; + border-radius: 2px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45); + box-sizing: border-box; + color: #555; + font-family: + system, + -apple-system, + 'San Francisco', + '.SFNSDisplay-Regular', + 'Segoe UI', + Segoe, + 'Segoe WP', + 'Helvetica Neue', + helvetica, + 'Lucida Grande', + arial, + sans-serif; + font-size: 13px; + line-height: 16px; + margin: 8px -8px; + max-width: 400px; + opacity: 0; + overflow: hidden; + padding: 8px 8px; + position: fixed; + transition: opacity 0.15s; + z-index: 50; +} + +.CodeMirror-info :first-child { + margin-top: 0; +} + +.CodeMirror-info :last-child { + margin-bottom: 0; +} + +.CodeMirror-info p { + margin: 1em 0; +} + +.CodeMirror-info .info-description { + color: #777; + line-height: 16px; + margin-top: 1em; + max-height: 80px; + overflow: hidden; +} + +.CodeMirror-info .info-deprecation { + background: #fffae8; + box-shadow: inset 0 1px 1px -1px #bfb063; + color: #867F70; + line-height: 16px; + margin: -8px; + margin-top: 8px; + max-height: 80px; + overflow: hidden; + padding: 8px; +} + +.CodeMirror-info .info-deprecation-label { + color: #c79b2e; + cursor: default; + display: block; + font-size: 9px; + font-weight: bold; + letter-spacing: 1px; + line-height: 1; + padding-bottom: 5px; + text-transform: uppercase; + user-select: none; +} + +.CodeMirror-info .info-deprecation-label + * { + margin-top: 0; +} + +.CodeMirror-info a { + text-decoration: none; +} + +.CodeMirror-info a:hover { + text-decoration: underline; +} + +.CodeMirror-info .type-name { + color: #CA9800; +} + +.CodeMirror-info .field-name { + color: #1F61A0; +} + +.CodeMirror-info .enum-value { + color: #0B7FC7; +} + +.CodeMirror-info .arg-name { + color: #8B2BB9; +} + +.CodeMirror-info .directive-name { + color: #B33086; +} + +.CodeMirror-jump-token { + text-decoration: underline; + cursor: pointer; +} + +/* The lint marker gutter */ +.CodeMirror-lint-markers { + width: 16px; +} +.CodeMirror-lint-tooltip { + background-color: infobackground; + border-radius: 4px 4px 4px 4px; + border: 1px solid black; + color: infotext; + font-family: monospace; + font-size: 10pt; + max-width: 600px; + opacity: 0; + overflow: hidden; + padding: 2px 5px; + position: fixed; + transition: opacity .4s; + white-space: pre-wrap; + z-index: 100; +} +.CodeMirror-lint-mark-error, .CodeMirror-lint-mark-warning { + background-position: left bottom; + background-repeat: repeat-x; +} +.CodeMirror-lint-mark-error { + background-image: + url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==") + ; +} +.CodeMirror-lint-mark-warning { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII="); +} +.CodeMirror-lint-marker-error, .CodeMirror-lint-marker-warning { + background-position: center center; + background-repeat: no-repeat; + cursor: pointer; + display: inline-block; + height: 16px; + position: relative; + vertical-align: middle; + width: 16px; +} +.CodeMirror-lint-message-error, .CodeMirror-lint-message-warning { + background-position: top left; + background-repeat: no-repeat; + padding-left: 18px; +} +.CodeMirror-lint-marker-error, .CodeMirror-lint-message-error { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII="); +} +.CodeMirror-lint-marker-warning, .CodeMirror-lint-message-warning { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII="); +} +.CodeMirror-lint-marker-multiple { + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC"); + background-position: right bottom; + background-repeat: no-repeat; + width: 100%; height: 100%; +} + +.graphiql-container .spinner-container { + height: 36px; + left: 50%; + position: absolute; + top: 50%; + transform: translate(-50%, -50%); + width: 36px; + z-index: 10; +} + +.graphiql-container .spinner { + animation: rotation .6s infinite linear; + border-bottom: 6px solid rgba(150, 150, 150, .15); + border-left: 6px solid rgba(150, 150, 150, .15); + border-radius: 100%; + border-right: 6px solid rgba(150, 150, 150, .15); + border-top: 6px solid rgba(150, 150, 150, .8); + display: inline-block; + height: 24px; + position: absolute; + vertical-align: middle; + width: 24px; +} + +@keyframes rotation { + from { transform: rotate(0deg); } + to { transform: rotate(359deg); } +} + +.CodeMirror-hints { + background: white; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45); + font-family: 'Consolas', 'Inconsolata', 'Droid Sans Mono', 'Monaco', monospace; + font-size: 13px; + list-style: none; + margin-left: -6px; + margin: 0; + max-height: 14.5em; + overflow: hidden; + overflow-y: auto; + padding: 0; + position: absolute; + z-index: 10; +} + +.CodeMirror-hint { + border-top: solid 1px #f7f7f7; + color: #141823; + cursor: pointer; + margin: 0; + max-width: 300px; + overflow: hidden; + padding: 2px 6px; + white-space: pre; +} + +li.CodeMirror-hint-active { + background-color: #08f; + border-top-color: white; + color: white; +} + +.CodeMirror-hint-information { + border-top: solid 1px #c0c0c0; + max-width: 300px; + padding: 4px 6px; + position: relative; + z-index: 1; +} + +.CodeMirror-hint-information:first-child { + border-bottom: solid 1px #c0c0c0; + border-top: none; + margin-bottom: -1px; +} + +.CodeMirror-hint-deprecation { + background: #fffae8; + box-shadow: inset 0 1px 1px -1px #bfb063; + color: #867F70; + font-family: + system, + -apple-system, + 'San Francisco', + '.SFNSDisplay-Regular', + 'Segoe UI', + Segoe, + 'Segoe WP', + 'Helvetica Neue', + helvetica, + 'Lucida Grande', + arial, + sans-serif; + font-size: 13px; + line-height: 16px; + margin-top: 4px; + max-height: 80px; + overflow: hidden; + padding: 6px; +} + +.CodeMirror-hint-deprecation .deprecation-label { + color: #c79b2e; + cursor: default; + display: block; + font-size: 9px; + font-weight: bold; + letter-spacing: 1px; + line-height: 1; + padding-bottom: 5px; + text-transform: uppercase; + user-select: none; +} + +.CodeMirror-hint-deprecation .deprecation-label + * { + margin-top: 0; +} + +.CodeMirror-hint-deprecation :last-child { + margin-bottom: 0; +} + +.graphiql-container .doc-explorer { + background: white; +} + +.graphiql-container .doc-explorer-title-bar, +.graphiql-container .history-title-bar { + cursor: default; + display: flex; + height: 34px; + line-height: 14px; + padding: 8px 8px 5px; + position: relative; + user-select: none; +} + +.graphiql-container .doc-explorer-title, +.graphiql-container .history-title { + flex: 1; + font-weight: bold; + overflow-x: hidden; + padding: 10px 0 10px 10px; + text-align: center; + text-overflow: ellipsis; + user-select: text; + white-space: nowrap; +} + +.graphiql-container .doc-explorer-back { + color: #3B5998; + cursor: pointer; + margin: -7px 0 -6px -8px; + overflow-x: hidden; + padding: 17px 12px 16px 16px; + text-overflow: ellipsis; + white-space: nowrap; + background: 0; + border: 0; + line-height: 14px; +} + +.doc-explorer-narrow .doc-explorer-back { + width: 0; +} + +.graphiql-container .doc-explorer-back:before { + border-left: 2px solid #3B5998; + border-top: 2px solid #3B5998; + content: ''; + display: inline-block; + height: 9px; + margin: 0 3px -1px 0; + position: relative; + transform: rotate(-45deg); + width: 9px; +} + +.graphiql-container .doc-explorer-rhs { + position: relative; +} + +.graphiql-container .doc-explorer-contents, +.graphiql-container .history-contents { + background-color: #ffffff; + border-top: 1px solid #d6d6d6; + bottom: 0; + left: 0; + overflow-y: auto; + padding: 20px 15px; + position: absolute; + right: 0; + top: 47px; +} + +.graphiql-container .doc-explorer-contents { + min-width: 300px; +} + +.graphiql-container .doc-type-description p:first-child , +.graphiql-container .doc-type-description blockquote:first-child { + margin-top: 0; +} + +.graphiql-container .doc-explorer-contents a { + cursor: pointer; + text-decoration: none; +} + +.graphiql-container .doc-explorer-contents a:hover { + text-decoration: underline; +} + +.graphiql-container .doc-value-description > :first-child { + margin-top: 4px; +} + +.graphiql-container .doc-value-description > :last-child { + margin-bottom: 4px; +} + +.graphiql-container .doc-type-description code, +.graphiql-container .doc-type-description pre, +.graphiql-container .doc-category code, +.graphiql-container .doc-category pre { + --saf-0: rgba(var(--sk_foreground_low,29,28,29),0.13); + font-size: 12px; + line-height: 1.50001; + font-variant-ligatures: none; + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; + word-break: normal; + -webkit-tab-size: 4; + -moz-tab-size: 4; + tab-size: 4; +} + +.graphiql-container .doc-type-description code, +.graphiql-container .doc-category code { + padding: 2px 3px 1px; + border: 1px solid var(--saf-0); + border-radius: 3px; + background-color: rgba(var(--sk_foreground_min,29,28,29),.04); + color: #e01e5a; + background-color: white; +} + +.graphiql-container .doc-category { + margin: 20px 0; +} + +.graphiql-container .doc-category-title { + border-bottom: 1px solid #e0e0e0; + color: #777; + cursor: default; + font-size: 14px; + font-variant: small-caps; + font-weight: bold; + letter-spacing: 1px; + margin: 0 -15px 10px 0; + padding: 10px 0; + user-select: none; +} + +.graphiql-container .doc-category-item { + margin: 12px 0; + color: #555; +} + +.graphiql-container .keyword { + color: #B11A04; +} + +.graphiql-container .type-name { + color: #CA9800; +} + +.graphiql-container .field-name { + color: #1F61A0; +} + +.graphiql-container .field-short-description { + color: #666; + margin-left: 5px; + overflow: hidden; + text-overflow: ellipsis; +} + +.graphiql-container .enum-value { + color: #0B7FC7; +} + +.graphiql-container .arg-name { + color: #8B2BB9; +} + +.graphiql-container .arg { + display: block; + margin-left: 1em; +} + +.graphiql-container .arg:first-child:last-child, +.graphiql-container .arg:first-child:nth-last-child(2), +.graphiql-container .arg:first-child:nth-last-child(2) ~ .arg { + display: inherit; + margin: inherit; +} + +.graphiql-container .arg:first-child:nth-last-child(2):after { + content: ', '; +} + +.graphiql-container .arg-default-value { + color: #43A047; +} + +.graphiql-container .doc-deprecation { + background: #fffae8; + box-shadow: inset 0 0 1px #bfb063; + color: #867F70; + line-height: 16px; + margin: 8px -8px; + max-height: 80px; + overflow: hidden; + padding: 8px; + border-radius: 3px; +} + +.graphiql-container .doc-deprecation:before { + content: 'Deprecated:'; + color: #c79b2e; + cursor: default; + display: block; + font-size: 9px; + font-weight: bold; + letter-spacing: 1px; + line-height: 1; + padding-bottom: 5px; + text-transform: uppercase; + user-select: none; +} + +.graphiql-container .doc-deprecation > :first-child { + margin-top: 0; +} + +.graphiql-container .doc-deprecation > :last-child { + margin-bottom: 0; +} + +.graphiql-container .show-btn { + -webkit-appearance: initial; + display: block; + border-radius: 3px; + border: solid 1px #ccc; + text-align: center; + padding: 8px 12px 10px; + width: 100%; + box-sizing: border-box; + background: #fbfcfc; + color: #555; + cursor: pointer; +} + +.graphiql-container .search-box { + border-bottom: 1px solid #d3d6db; + display: flex; + align-items: center; + font-size: 14px; + margin: -15px -15px 12px 0; + position: relative; +} + +.graphiql-container .search-box-icon { + cursor: pointer; + display: block; + font-size: 24px; + transform: rotate(-45deg); + user-select: none; +} + +.graphiql-container .search-box .search-box-clear { + background-color: #d0d0d0; + border-radius: 12px; + color: #fff; + cursor: pointer; + font-size: 11px; + padding: 1px 5px 2px; + position: absolute; + right: 3px; + user-select: none; + border: 0; +} + +.graphiql-container .search-box .search-box-clear:hover { + background-color: #b9b9b9; +} + +.graphiql-container .search-box > input { + border: none; + box-sizing: border-box; + font-size: 14px; + outline: none; + padding: 6px 24px 8px 20px; + width: 100%; +} + +.graphiql-container .error-container { + font-weight: bold; + left: 0; + letter-spacing: 1px; + opacity: 0.5; + position: absolute; + right: 0; + text-align: center; + text-transform: uppercase; + top: 50%; + transform: translate(0, -50%); +} + +.graphiql-container .history-contents { + font-family: 'Consolas', 'Inconsolata', 'Droid Sans Mono', 'Monaco', monospace; +} + +.graphiql-container .history-contents { + margin: 0; + padding: 0; +} + +.graphiql-container .history-contents li { + align-items: center; + display: flex; + font-size: 12px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + margin: 0; + padding: 8px; + border-bottom: 1px solid #e0e0e0; +} + +.graphiql-container .history-contents li button:not(.history-label) { + display: none; + margin-left: 10px; +} + +.graphiql-container .history-contents li:hover button:not(.history-label), +.graphiql-container .history-contents li:focus-within button:not(.history-label) { + display: inline-block; +} + +.graphiql-container .history-contents input, +.graphiql-container .history-contents button { + padding: 0; + background: 0; + border: 0; + font-size: inherit; + font-family: inherit; + line-height: 14px; + color: inherit; +} + +.graphiql-container .history-contents input { + flex-grow: 1; +} + +.graphiql-container .history-contents input::placeholder { + color: inherit; +} + +.graphiql-container .history-contents button { + cursor: pointer; + text-align: left; +} + +.graphiql-container .history-contents .history-label { + flex-grow: 1; + overflow: hidden; + text-overflow: ellipsis; +} + diff --git a/public/bundles/apiplatform/graphiql/graphiql.min.js b/public/bundles/apiplatform/graphiql/graphiql.min.js new file mode 100644 index 0000000..fb6bf0a --- /dev/null +++ b/public/bundles/apiplatform/graphiql/graphiql.min.js @@ -0,0 +1,11 @@ +window.GraphiQL=function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=82)}([function(e,t,n){"use strict";n.d(t,"T",(function(){return b})),n.d(t,"x",(function(){return T})),n.d(t,"S",(function(){return E})),n.d(t,"w",(function(){return O})),n.d(t,"O",(function(){return _})),n.d(t,"u",(function(){return C})),n.d(t,"I",(function(){return x})),n.d(t,"o",(function(){return w})),n.d(t,"U",(function(){return k})),n.d(t,"y",(function(){return S})),n.d(t,"F",(function(){return N})),n.d(t,"l",(function(){return D})),n.d(t,"G",(function(){return I})),n.d(t,"m",(function(){return A})),n.d(t,"K",(function(){return L})),n.d(t,"q",(function(){return F})),n.d(t,"M",(function(){return j})),n.d(t,"s",(function(){return M})),n.d(t,"H",(function(){return R})),n.d(t,"n",(function(){return P})),n.d(t,"P",(function(){return V})),n.d(t,"v",(function(){return U})),n.d(t,"J",(function(){return B})),n.d(t,"p",(function(){return $})),n.d(t,"E",(function(){return q})),n.d(t,"k",(function(){return H})),n.d(t,"D",(function(){return G})),n.d(t,"j",(function(){return z})),n.d(t,"d",(function(){return Q})),n.d(t,"e",(function(){return K})),n.d(t,"V",(function(){return W})),n.d(t,"z",(function(){return Y})),n.d(t,"N",(function(){return J})),n.d(t,"t",(function(){return X})),n.d(t,"C",(function(){return Z})),n.d(t,"L",(function(){return ee})),n.d(t,"r",(function(){return te})),n.d(t,"B",(function(){return ne})),n.d(t,"g",(function(){return oe})),n.d(t,"f",(function(){return ae})),n.d(t,"A",(function(){return ce})),n.d(t,"i",(function(){return de})),n.d(t,"Q",(function(){return pe})),n.d(t,"c",(function(){return he})),n.d(t,"h",(function(){return me})),n.d(t,"a",(function(){return ve})),n.d(t,"b",(function(){return be})),n.d(t,"R",(function(){return Ee}));var r=n(3),i=n(16),o=n(25),a=n(21),s=n(6),l=n(23),c=n(20),u=n(17),f=n(15);function d(e){return e}var p=n(19),h=n(2),m=n(1),g=n(9),v=n(81),y=n(22);function b(e){return E(e)||_(e)||x(e)||k(e)||N(e)||I(e)||L(e)||j(e)}function T(e){if(!b(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL type.`);return e}function E(e){return Object(c.a)(e,oe)}function O(e){if(!E(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL Scalar type.`);return e}function _(e){return Object(c.a)(e,ae)}function C(e){if(!_(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL Object type.`);return e}function x(e){return Object(c.a)(e,he)}function w(e){if(!x(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL Interface type.`);return e}function k(e){return Object(c.a)(e,me)}function S(e){if(!k(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL Union type.`);return e}function N(e){return Object(c.a)(e,ve)}function D(e){if(!N(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL Enum type.`);return e}function I(e){return Object(c.a)(e,be)}function A(e){if(!I(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL Input Object type.`);return e}function L(e){return Object(c.a)(e,Q)}function F(e){if(!L(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL List type.`);return e}function j(e){return Object(c.a)(e,K)}function M(e){if(!j(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL Non-Null type.`);return e}function R(e){return E(e)||N(e)||I(e)||W(e)&&R(e.ofType)}function P(e){if(!R(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL input type.`);return e}function V(e){return E(e)||_(e)||x(e)||k(e)||N(e)||W(e)&&V(e.ofType)}function U(e){if(!V(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL output type.`);return e}function B(e){return E(e)||N(e)}function $(e){if(!B(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL leaf type.`);return e}function q(e){return _(e)||x(e)||k(e)}function H(e){if(!q(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL composite type.`);return e}function G(e){return x(e)||k(e)}function z(e){if(!G(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL abstract type.`);return e}class Q{constructor(e){b(e)||Object(s.a)(!1,`Expected ${Object(r.a)(e)} to be a GraphQL type.`),this.ofType=e}get[Symbol.toStringTag](){return"GraphQLList"}toString(){return"["+String(this.ofType)+"]"}toJSON(){return this.toString()}}class K{constructor(e){J(e)||Object(s.a)(!1,`Expected ${Object(r.a)(e)} to be a GraphQL nullable type.`),this.ofType=e}get[Symbol.toStringTag](){return"GraphQLNonNull"}toString(){return String(this.ofType)+"!"}toJSON(){return this.toString()}}function W(e){return L(e)||j(e)}function Y(e){if(!W(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL wrapping type.`);return e}function J(e){return b(e)&&!j(e)}function X(e){if(!J(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL nullable type.`);return e}function Z(e){if(e)return j(e)?e.ofType:e}function ee(e){return E(e)||_(e)||x(e)||k(e)||N(e)||I(e)}function te(e){if(!ee(e))throw new Error(`Expected ${Object(r.a)(e)} to be a GraphQL named type.`);return e}function ne(e){if(e){let t=e;for(;W(t);)t=t.ofType;return t}}function re(e){return"function"==typeof e?e():e}function ie(e){return"function"==typeof e?e():e}class oe{constructor(e){var t,n,i,o;const l=null!==(t=e.parseValue)&&void 0!==t?t:d;this.name=Object(y.b)(e.name),this.description=e.description,this.specifiedByURL=e.specifiedByURL,this.serialize=null!==(n=e.serialize)&&void 0!==n?n:d,this.parseValue=l,this.parseLiteral=null!==(i=e.parseLiteral)&&void 0!==i?i:(e,t)=>l(Object(v.a)(e,t)),this.extensions=Object(a.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=null!==(o=e.extensionASTNodes)&&void 0!==o?o:[],null==e.specifiedByURL||"string"==typeof e.specifiedByURL||Object(s.a)(!1,this.name+' must provide "specifiedByURL" as a string, '+`but got: ${Object(r.a)(e.specifiedByURL)}.`),null==e.serialize||"function"==typeof e.serialize||Object(s.a)(!1,this.name+' must provide "serialize" function. If this custom Scalar is also used as an input type, ensure "parseValue" and "parseLiteral" functions are also provided.'),e.parseLiteral&&("function"==typeof e.parseValue&&"function"==typeof e.parseLiteral||Object(s.a)(!1,this.name+' must provide both "parseValue" and "parseLiteral" functions.'))}get[Symbol.toStringTag](){return"GraphQLScalarType"}toConfig(){return{name:this.name,description:this.description,specifiedByURL:this.specifiedByURL,serialize:this.serialize,parseValue:this.parseValue,parseLiteral:this.parseLiteral,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}class ae{constructor(e){var t;this.name=Object(y.b)(e.name),this.description=e.description,this.isTypeOf=e.isTypeOf,this.extensions=Object(a.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=null!==(t=e.extensionASTNodes)&&void 0!==t?t:[],this._fields=()=>le(e),this._interfaces=()=>se(e),null==e.isTypeOf||"function"==typeof e.isTypeOf||Object(s.a)(!1,this.name+' must provide "isTypeOf" as a function, '+`but got: ${Object(r.a)(e.isTypeOf)}.`)}get[Symbol.toStringTag](){return"GraphQLObjectType"}getFields(){return"function"==typeof this._fields&&(this._fields=this._fields()),this._fields}getInterfaces(){return"function"==typeof this._interfaces&&(this._interfaces=this._interfaces()),this._interfaces}toConfig(){return{name:this.name,description:this.description,interfaces:this.getInterfaces(),fields:fe(this.getFields()),isTypeOf:this.isTypeOf,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}function se(e){var t;const n=re(null!==(t=e.interfaces)&&void 0!==t?t:[]);return Array.isArray(n)||Object(s.a)(!1,e.name+" interfaces must be an Array or a function which returns an Array."),n}function le(e){const t=ie(e.fields);return ue(t)||Object(s.a)(!1,e.name+" fields must be an object with field names as keys or a function which returns such an object."),Object(o.a)(t,(t,n)=>{var i;ue(t)||Object(s.a)(!1,`${e.name}.${n} field config must be an object.`),null==t.resolve||"function"==typeof t.resolve||Object(s.a)(!1,`${e.name}.${n} field resolver must be a function if provided, but got: ${Object(r.a)(t.resolve)}.`);const o=null!==(i=t.args)&&void 0!==i?i:{};return ue(o)||Object(s.a)(!1,`${e.name}.${n} args must be an object with argument names as keys.`),{name:Object(y.b)(n),description:t.description,type:t.type,args:ce(o),resolve:t.resolve,subscribe:t.subscribe,deprecationReason:t.deprecationReason,extensions:Object(a.a)(t.extensions),astNode:t.astNode}})}function ce(e){return Object.entries(e).map(([e,t])=>({name:Object(y.b)(e),description:t.description,type:t.type,defaultValue:t.defaultValue,deprecationReason:t.deprecationReason,extensions:Object(a.a)(t.extensions),astNode:t.astNode}))}function ue(e){return Object(f.a)(e)&&!Array.isArray(e)}function fe(e){return Object(o.a)(e,e=>({description:e.description,type:e.type,args:de(e.args),resolve:e.resolve,subscribe:e.subscribe,deprecationReason:e.deprecationReason,extensions:e.extensions,astNode:e.astNode}))}function de(e){return Object(l.a)(e,e=>e.name,e=>({description:e.description,type:e.type,defaultValue:e.defaultValue,deprecationReason:e.deprecationReason,extensions:e.extensions,astNode:e.astNode}))}function pe(e){return j(e.type)&&void 0===e.defaultValue}class he{constructor(e){var t;this.name=Object(y.b)(e.name),this.description=e.description,this.resolveType=e.resolveType,this.extensions=Object(a.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=null!==(t=e.extensionASTNodes)&&void 0!==t?t:[],this._fields=le.bind(void 0,e),this._interfaces=se.bind(void 0,e),null==e.resolveType||"function"==typeof e.resolveType||Object(s.a)(!1,this.name+' must provide "resolveType" as a function, '+`but got: ${Object(r.a)(e.resolveType)}.`)}get[Symbol.toStringTag](){return"GraphQLInterfaceType"}getFields(){return"function"==typeof this._fields&&(this._fields=this._fields()),this._fields}getInterfaces(){return"function"==typeof this._interfaces&&(this._interfaces=this._interfaces()),this._interfaces}toConfig(){return{name:this.name,description:this.description,interfaces:this.getInterfaces(),fields:fe(this.getFields()),resolveType:this.resolveType,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}class me{constructor(e){var t;this.name=Object(y.b)(e.name),this.description=e.description,this.resolveType=e.resolveType,this.extensions=Object(a.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=null!==(t=e.extensionASTNodes)&&void 0!==t?t:[],this._types=ge.bind(void 0,e),null==e.resolveType||"function"==typeof e.resolveType||Object(s.a)(!1,this.name+' must provide "resolveType" as a function, '+`but got: ${Object(r.a)(e.resolveType)}.`)}get[Symbol.toStringTag](){return"GraphQLUnionType"}getTypes(){return"function"==typeof this._types&&(this._types=this._types()),this._types}toConfig(){return{name:this.name,description:this.description,types:this.getTypes(),resolveType:this.resolveType,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}function ge(e){const t=re(e.types);return Array.isArray(t)||Object(s.a)(!1,`Must provide Array of types or a function which returns such an array for Union ${e.name}.`),t}class ve{constructor(e){var t,n,o;this.name=Object(y.b)(e.name),this.description=e.description,this.extensions=Object(a.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=null!==(t=e.extensionASTNodes)&&void 0!==t?t:[],this._values=(n=this.name,ue(o=e.values)||Object(s.a)(!1,n+" values must be an object with value names as keys."),Object.entries(o).map(([e,t])=>(ue(t)||Object(s.a)(!1,`${n}.${e} must refer to an object with a "value" key representing an internal value but got: ${Object(r.a)(t)}.`),{name:Object(y.a)(e),description:t.description,value:void 0!==t.value?t.value:e,deprecationReason:t.deprecationReason,extensions:Object(a.a)(t.extensions),astNode:t.astNode}))),this._valueLookup=new Map(this._values.map(e=>[e.value,e])),this._nameLookup=Object(i.a)(this._values,e=>e.name)}get[Symbol.toStringTag](){return"GraphQLEnumType"}getValues(){return this._values}getValue(e){return this._nameLookup[e]}serialize(e){const t=this._valueLookup.get(e);if(void 0===t)throw new h.a(`Enum "${this.name}" cannot represent value: ${Object(r.a)(e)}`);return t.name}parseValue(e){if("string"!=typeof e){const t=Object(r.a)(e);throw new h.a(`Enum "${this.name}" cannot represent non-string value: ${t}.`+ye(this,t))}const t=this.getValue(e);if(null==t)throw new h.a(`Value "${e}" does not exist in "${this.name}" enum.`+ye(this,e));return t.value}parseLiteral(e,t){if(e.kind!==m.a.ENUM){const t=Object(g.a)(e);throw new h.a(`Enum "${this.name}" cannot represent non-enum value: ${t}.`+ye(this,t),e)}const n=this.getValue(e.value);if(null==n){const t=Object(g.a)(e);throw new h.a(`Value "${t}" does not exist in "${this.name}" enum.`+ye(this,t),e)}return n.value}toConfig(){const e=Object(l.a)(this.getValues(),e=>e.name,e=>({description:e.description,value:e.value,deprecationReason:e.deprecationReason,extensions:e.extensions,astNode:e.astNode}));return{name:this.name,description:this.description,values:e,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}function ye(e,t){const n=e.getValues().map(e=>e.name),r=Object(p.a)(t,n);return Object(u.a)("the enum value",r)}class be{constructor(e){var t;this.name=Object(y.b)(e.name),this.description=e.description,this.extensions=Object(a.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=null!==(t=e.extensionASTNodes)&&void 0!==t?t:[],this._fields=Te.bind(void 0,e)}get[Symbol.toStringTag](){return"GraphQLInputObjectType"}getFields(){return"function"==typeof this._fields&&(this._fields=this._fields()),this._fields}toConfig(){const e=Object(o.a)(this.getFields(),e=>({description:e.description,type:e.type,defaultValue:e.defaultValue,deprecationReason:e.deprecationReason,extensions:e.extensions,astNode:e.astNode}));return{name:this.name,description:this.description,fields:e,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}function Te(e){const t=ie(e.fields);return ue(t)||Object(s.a)(!1,e.name+" fields must be an object with field names as keys or a function which returns such an object."),Object(o.a)(t,(t,n)=>(!("resolve"in t)||Object(s.a)(!1,`${e.name}.${n} field has a resolve property, but Input Types cannot define resolvers.`),{name:Object(y.b)(n),description:t.description,type:t.type,defaultValue:t.defaultValue,deprecationReason:t.deprecationReason,extensions:Object(a.a)(t.extensions),astNode:t.astNode}))}function Ee(e){return j(e.type)&&void 0===e.defaultValue}},function(e,t,n){"use strict";let r;n.d(t,"a",(function(){return r})),function(e){e.NAME="Name",e.DOCUMENT="Document",e.OPERATION_DEFINITION="OperationDefinition",e.VARIABLE_DEFINITION="VariableDefinition",e.SELECTION_SET="SelectionSet",e.FIELD="Field",e.ARGUMENT="Argument",e.FRAGMENT_SPREAD="FragmentSpread",e.INLINE_FRAGMENT="InlineFragment",e.FRAGMENT_DEFINITION="FragmentDefinition",e.VARIABLE="Variable",e.INT="IntValue",e.FLOAT="FloatValue",e.STRING="StringValue",e.BOOLEAN="BooleanValue",e.NULL="NullValue",e.ENUM="EnumValue",e.LIST="ListValue",e.OBJECT="ObjectValue",e.OBJECT_FIELD="ObjectField",e.DIRECTIVE="Directive",e.NAMED_TYPE="NamedType",e.LIST_TYPE="ListType",e.NON_NULL_TYPE="NonNullType",e.SCHEMA_DEFINITION="SchemaDefinition",e.OPERATION_TYPE_DEFINITION="OperationTypeDefinition",e.SCALAR_TYPE_DEFINITION="ScalarTypeDefinition",e.OBJECT_TYPE_DEFINITION="ObjectTypeDefinition",e.FIELD_DEFINITION="FieldDefinition",e.INPUT_VALUE_DEFINITION="InputValueDefinition",e.INTERFACE_TYPE_DEFINITION="InterfaceTypeDefinition",e.UNION_TYPE_DEFINITION="UnionTypeDefinition",e.ENUM_TYPE_DEFINITION="EnumTypeDefinition",e.ENUM_VALUE_DEFINITION="EnumValueDefinition",e.INPUT_OBJECT_TYPE_DEFINITION="InputObjectTypeDefinition",e.DIRECTIVE_DEFINITION="DirectiveDefinition",e.SCHEMA_EXTENSION="SchemaExtension",e.SCALAR_TYPE_EXTENSION="ScalarTypeExtension",e.OBJECT_TYPE_EXTENSION="ObjectTypeExtension",e.INTERFACE_TYPE_EXTENSION="InterfaceTypeExtension",e.UNION_TYPE_EXTENSION="UnionTypeExtension",e.ENUM_TYPE_EXTENSION="EnumTypeExtension",e.INPUT_OBJECT_TYPE_EXTENSION="InputObjectTypeExtension"}(r||(r={}))},function(e,t,n){"use strict";n.d(t,"a",(function(){return a})),n.d(t,"c",(function(){return l})),n.d(t,"b",(function(){return c}));var r=n(15),i=n(35),o=n(55);class a extends Error{constructor(e,t,n,o,l,c,u){var f,d,p;super(e),this.name="GraphQLError",this.path=null!=l?l:void 0,this.originalError=null!=c?c:void 0,this.nodes=s(Array.isArray(t)?t:t?[t]:void 0);const h=s(null===(f=this.nodes)||void 0===f?void 0:f.map(e=>e.loc).filter(e=>null!=e));this.source=null!=n?n:null==h||null===(d=h[0])||void 0===d?void 0:d.source,this.positions=null!=o?o:null==h?void 0:h.map(e=>e.start),this.locations=o&&n?o.map(e=>Object(i.a)(n,e)):null==h?void 0:h.map(e=>Object(i.a)(e.source,e.start));const m=Object(r.a)(null==c?void 0:c.extensions)?null==c?void 0:c.extensions:void 0;this.extensions=null!==(p=null!=u?u:m)&&void 0!==p?p:Object.create(null),Object.defineProperties(this,{message:{writable:!0,enumerable:!0},name:{enumerable:!1},nodes:{enumerable:!1},source:{enumerable:!1},positions:{enumerable:!1},originalError:{enumerable:!1}}),null!=c&&c.stack?Object.defineProperty(this,"stack",{value:c.stack,writable:!0,configurable:!0}):Error.captureStackTrace?Error.captureStackTrace(this,a):Object.defineProperty(this,"stack",{value:Error().stack,writable:!0,configurable:!0})}get[Symbol.toStringTag](){return"GraphQLError"}toString(){let e=this.message;if(this.nodes)for(const t of this.nodes)t.loc&&(e+="\n\n"+Object(o.a)(t.loc));else if(this.source&&this.locations)for(const t of this.locations)e+="\n\n"+Object(o.b)(this.source,t);return e}toJSON(){const e={message:this.message};return null!=this.locations&&(e.locations=this.locations),null!=this.path&&(e.path=this.path),null!=this.extensions&&Object.keys(this.extensions).length>0&&(e.extensions=this.extensions),e}}function s(e){return void 0===e||0===e.length?void 0:e}function l(e){return e.toString()}function c(e){return e.toJSON()}},function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));function r(e){return i(e,[])}function i(e,t){switch(typeof e){case"string":return JSON.stringify(e);case"function":return e.name?`[function ${e.name}]`:"[function]";case"object":return function(e,t){if(null===e)return"null";if(t.includes(e))return"[Circular]";const n=[...t,e];if(function(e){return"function"==typeof e.toJSON}(e)){const t=e.toJSON();if(t!==e)return"string"==typeof t?t:i(t,n)}else if(Array.isArray(e))return function(e,t){if(0===e.length)return"[]";if(t.length>2)return"[Array]";const n=Math.min(10,e.length),r=e.length-n,o=[];for(let r=0;r1&&o.push(`... ${r} more items`);return"["+o.join(", ")+"]"}(e,n);return function(e,t){const n=Object.entries(e);if(0===n.length)return"{}";if(t.length>2)return"["+function(e){const t=Object.prototype.toString.call(e).replace(/^\[object /,"").replace(/]$/,"");if("Object"===t&&"function"==typeof e.constructor){const t=e.constructor.name;if("string"==typeof t&&""!==t)return t}return t}(e)+"]";return"{ "+n.map(([e,n])=>e+": "+i(n,t)).join(", ")+" }"}(e,n)}(e,t);default:return String(e)}}},function(e,t,n){"use strict";let r;n.d(t,"a",(function(){return r})),function(e){e.QUERY="QUERY",e.MUTATION="MUTATION",e.SUBSCRIPTION="SUBSCRIPTION",e.FIELD="FIELD",e.FRAGMENT_DEFINITION="FRAGMENT_DEFINITION",e.FRAGMENT_SPREAD="FRAGMENT_SPREAD",e.INLINE_FRAGMENT="INLINE_FRAGMENT",e.VARIABLE_DEFINITION="VARIABLE_DEFINITION",e.SCHEMA="SCHEMA",e.SCALAR="SCALAR",e.OBJECT="OBJECT",e.FIELD_DEFINITION="FIELD_DEFINITION",e.ARGUMENT_DEFINITION="ARGUMENT_DEFINITION",e.INTERFACE="INTERFACE",e.UNION="UNION",e.ENUM="ENUM",e.ENUM_VALUE="ENUM_VALUE",e.INPUT_OBJECT="INPUT_OBJECT",e.INPUT_FIELD_DEFINITION="INPUT_FIELD_DEFINITION"}(r||(r={}))},function(e,t,n){"use strict";n.d(t,"d",(function(){return c})),n.d(t,"b",(function(){return u})),n.d(t,"e",(function(){return f})),n.d(t,"a",(function(){return d})),n.d(t,"c",(function(){return p})),n.d(t,"g",(function(){return h})),n.d(t,"f",(function(){return m}));var r=n(3),i=n(15),o=n(1),a=n(9),s=n(2),l=n(0);const c=new l.g({name:"Int",description:"The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.",serialize(e){const t=g(e);if("boolean"==typeof t)return t?1:0;let n=t;if("string"==typeof t&&""!==t&&(n=Number(t)),"number"!=typeof n||!Number.isInteger(n))throw new s.a("Int cannot represent non-integer value: "+Object(r.a)(t));if(n>2147483647||n<-2147483648)throw new s.a("Int cannot represent non 32-bit signed integer value: "+Object(r.a)(t));return n},parseValue(e){if("number"!=typeof e||!Number.isInteger(e))throw new s.a("Int cannot represent non-integer value: "+Object(r.a)(e));if(e>2147483647||e<-2147483648)throw new s.a("Int cannot represent non 32-bit signed integer value: "+e);return e},parseLiteral(e){if(e.kind!==o.a.INT)throw new s.a("Int cannot represent non-integer value: "+Object(a.a)(e),e);const t=parseInt(e.value,10);if(t>2147483647||t<-2147483648)throw new s.a("Int cannot represent non 32-bit signed integer value: "+e.value,e);return t}}),u=new l.g({name:"Float",description:"The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",serialize(e){const t=g(e);if("boolean"==typeof t)return t?1:0;let n=t;if("string"==typeof t&&""!==t&&(n=Number(t)),"number"!=typeof n||!Number.isFinite(n))throw new s.a("Float cannot represent non numeric value: "+Object(r.a)(t));return n},parseValue(e){if("number"!=typeof e||!Number.isFinite(e))throw new s.a("Float cannot represent non numeric value: "+Object(r.a)(e));return e},parseLiteral(e){if(e.kind!==o.a.FLOAT&&e.kind!==o.a.INT)throw new s.a("Float cannot represent non numeric value: "+Object(a.a)(e),e);return parseFloat(e.value)}}),f=new l.g({name:"String",description:"The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.",serialize(e){const t=g(e);if("string"==typeof t)return t;if("boolean"==typeof t)return t?"true":"false";if("number"==typeof t&&Number.isFinite(t))return t.toString();throw new s.a("String cannot represent value: "+Object(r.a)(e))},parseValue(e){if("string"!=typeof e)throw new s.a("String cannot represent a non string value: "+Object(r.a)(e));return e},parseLiteral(e){if(e.kind!==o.a.STRING)throw new s.a("String cannot represent a non string value: "+Object(a.a)(e),e);return e.value}}),d=new l.g({name:"Boolean",description:"The `Boolean` scalar type represents `true` or `false`.",serialize(e){const t=g(e);if("boolean"==typeof t)return t;if(Number.isFinite(t))return 0!==t;throw new s.a("Boolean cannot represent a non boolean value: "+Object(r.a)(t))},parseValue(e){if("boolean"!=typeof e)throw new s.a("Boolean cannot represent a non boolean value: "+Object(r.a)(e));return e},parseLiteral(e){if(e.kind!==o.a.BOOLEAN)throw new s.a("Boolean cannot represent a non boolean value: "+Object(a.a)(e),e);return e.value}}),p=new l.g({name:"ID",description:'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',serialize(e){const t=g(e);if("string"==typeof t)return t;if(Number.isInteger(t))return String(t);throw new s.a("ID cannot represent value: "+Object(r.a)(e))},parseValue(e){if("string"==typeof e)return e;if("number"==typeof e&&Number.isInteger(e))return e.toString();throw new s.a("ID cannot represent value: "+Object(r.a)(e))},parseLiteral(e){if(e.kind!==o.a.STRING&&e.kind!==o.a.INT)throw new s.a("ID cannot represent a non-string and non-integer value: "+Object(a.a)(e),e);return e.value}}),h=Object.freeze([f,c,u,d,p]);function m(e){return h.some(({name:t})=>e.name===t)}function g(e){if(Object(i.a)(e)){if("function"==typeof e.valueOf){const t=e.valueOf();if(!Object(i.a)(t))return t}if("function"==typeof e.toJSON)return e.toJSON()}return e}},function(e,t,n){"use strict";function r(e,t){if(!Boolean(e))throw new Error(t)}n.d(t,"a",(function(){return r}))},function(e,t,n){"use strict";n.r(t),n.d(t,"__Schema",(function(){return u})),n.d(t,"__Directive",(function(){return f})),n.d(t,"__DirectiveLocation",(function(){return d})),n.d(t,"__Type",(function(){return p})),n.d(t,"__Field",(function(){return h})),n.d(t,"__InputValue",(function(){return m})),n.d(t,"__EnumValue",(function(){return g})),n.d(t,"TypeKind",(function(){return v})),n.d(t,"__TypeKind",(function(){return y})),n.d(t,"SchemaMetaFieldDef",(function(){return b})),n.d(t,"TypeMetaFieldDef",(function(){return T})),n.d(t,"TypeNameMetaFieldDef",(function(){return E})),n.d(t,"introspectionTypes",(function(){return O})),n.d(t,"isIntrospectionType",(function(){return _}));var r=n(3),i=n(8),o=n(9),a=n(4),s=n(31),l=n(5),c=n(0);const u=new c.f({name:"__Schema",description:"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.",fields:()=>({description:{type:l.e,resolve:e=>e.description},types:{description:"A list of all types supported by this server.",type:new c.e(new c.d(new c.e(p))),resolve:e=>Object.values(e.getTypeMap())},queryType:{description:"The type that query operations will be rooted at.",type:new c.e(p),resolve:e=>e.getQueryType()},mutationType:{description:"If this server supports mutation, the type that mutation operations will be rooted at.",type:p,resolve:e=>e.getMutationType()},subscriptionType:{description:"If this server support subscription, the type that subscription operations will be rooted at.",type:p,resolve:e=>e.getSubscriptionType()},directives:{description:"A list of all directives supported by this server.",type:new c.e(new c.d(new c.e(f))),resolve:e=>e.getDirectives()}})}),f=new c.f({name:"__Directive",description:"A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.",fields:()=>({name:{type:new c.e(l.e),resolve:e=>e.name},description:{type:l.e,resolve:e=>e.description},isRepeatable:{type:new c.e(l.a),resolve:e=>e.isRepeatable},locations:{type:new c.e(new c.d(new c.e(d))),resolve:e=>e.locations},args:{type:new c.e(new c.d(new c.e(m))),args:{includeDeprecated:{type:l.a,defaultValue:!1}},resolve:(e,{includeDeprecated:t})=>t?e.args:e.args.filter(e=>null==e.deprecationReason)}})}),d=new c.a({name:"__DirectiveLocation",description:"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",values:{QUERY:{value:a.a.QUERY,description:"Location adjacent to a query operation."},MUTATION:{value:a.a.MUTATION,description:"Location adjacent to a mutation operation."},SUBSCRIPTION:{value:a.a.SUBSCRIPTION,description:"Location adjacent to a subscription operation."},FIELD:{value:a.a.FIELD,description:"Location adjacent to a field."},FRAGMENT_DEFINITION:{value:a.a.FRAGMENT_DEFINITION,description:"Location adjacent to a fragment definition."},FRAGMENT_SPREAD:{value:a.a.FRAGMENT_SPREAD,description:"Location adjacent to a fragment spread."},INLINE_FRAGMENT:{value:a.a.INLINE_FRAGMENT,description:"Location adjacent to an inline fragment."},VARIABLE_DEFINITION:{value:a.a.VARIABLE_DEFINITION,description:"Location adjacent to a variable definition."},SCHEMA:{value:a.a.SCHEMA,description:"Location adjacent to a schema definition."},SCALAR:{value:a.a.SCALAR,description:"Location adjacent to a scalar definition."},OBJECT:{value:a.a.OBJECT,description:"Location adjacent to an object type definition."},FIELD_DEFINITION:{value:a.a.FIELD_DEFINITION,description:"Location adjacent to a field definition."},ARGUMENT_DEFINITION:{value:a.a.ARGUMENT_DEFINITION,description:"Location adjacent to an argument definition."},INTERFACE:{value:a.a.INTERFACE,description:"Location adjacent to an interface definition."},UNION:{value:a.a.UNION,description:"Location adjacent to a union definition."},ENUM:{value:a.a.ENUM,description:"Location adjacent to an enum definition."},ENUM_VALUE:{value:a.a.ENUM_VALUE,description:"Location adjacent to an enum value definition."},INPUT_OBJECT:{value:a.a.INPUT_OBJECT,description:"Location adjacent to an input object type definition."},INPUT_FIELD_DEFINITION:{value:a.a.INPUT_FIELD_DEFINITION,description:"Location adjacent to an input object field definition."}}}),p=new c.f({name:"__Type",description:"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.",fields:()=>({kind:{type:new c.e(y),resolve:e=>Object(c.S)(e)?v.SCALAR:Object(c.O)(e)?v.OBJECT:Object(c.I)(e)?v.INTERFACE:Object(c.U)(e)?v.UNION:Object(c.F)(e)?v.ENUM:Object(c.G)(e)?v.INPUT_OBJECT:Object(c.K)(e)?v.LIST:Object(c.M)(e)?v.NON_NULL:void Object(i.a)(!1,`Unexpected type: "${Object(r.a)(e)}".`)},name:{type:l.e,resolve:e=>"name"in e?e.name:void 0},description:{type:l.e,resolve:e=>"description"in e?e.description:void 0},specifiedByURL:{type:l.e,resolve:e=>"specifiedByURL"in e?e.specifiedByURL:void 0},fields:{type:new c.d(new c.e(h)),args:{includeDeprecated:{type:l.a,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(Object(c.O)(e)||Object(c.I)(e)){const n=Object.values(e.getFields());return t?n:n.filter(e=>null==e.deprecationReason)}}},interfaces:{type:new c.d(new c.e(p)),resolve(e){if(Object(c.O)(e)||Object(c.I)(e))return e.getInterfaces()}},possibleTypes:{type:new c.d(new c.e(p)),resolve(e,t,n,{schema:r}){if(Object(c.D)(e))return r.getPossibleTypes(e)}},enumValues:{type:new c.d(new c.e(g)),args:{includeDeprecated:{type:l.a,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(Object(c.F)(e)){const n=e.getValues();return t?n:n.filter(e=>null==e.deprecationReason)}}},inputFields:{type:new c.d(new c.e(m)),args:{includeDeprecated:{type:l.a,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(Object(c.G)(e)){const n=Object.values(e.getFields());return t?n:n.filter(e=>null==e.deprecationReason)}}},ofType:{type:p,resolve:e=>"ofType"in e?e.ofType:void 0}})}),h=new c.f({name:"__Field",description:"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.",fields:()=>({name:{type:new c.e(l.e),resolve:e=>e.name},description:{type:l.e,resolve:e=>e.description},args:{type:new c.e(new c.d(new c.e(m))),args:{includeDeprecated:{type:l.a,defaultValue:!1}},resolve:(e,{includeDeprecated:t})=>t?e.args:e.args.filter(e=>null==e.deprecationReason)},type:{type:new c.e(p),resolve:e=>e.type},isDeprecated:{type:new c.e(l.a),resolve:e=>null!=e.deprecationReason},deprecationReason:{type:l.e,resolve:e=>e.deprecationReason}})}),m=new c.f({name:"__InputValue",description:"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.",fields:()=>({name:{type:new c.e(l.e),resolve:e=>e.name},description:{type:l.e,resolve:e=>e.description},type:{type:new c.e(p),resolve:e=>e.type},defaultValue:{type:l.e,description:"A GraphQL-formatted string representing the default value for this input value.",resolve(e){const{type:t,defaultValue:n}=e,r=Object(s.a)(n,t);return r?Object(o.a)(r):null}},isDeprecated:{type:new c.e(l.a),resolve:e=>null!=e.deprecationReason},deprecationReason:{type:l.e,resolve:e=>e.deprecationReason}})}),g=new c.f({name:"__EnumValue",description:"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.",fields:()=>({name:{type:new c.e(l.e),resolve:e=>e.name},description:{type:l.e,resolve:e=>e.description},isDeprecated:{type:new c.e(l.a),resolve:e=>null!=e.deprecationReason},deprecationReason:{type:l.e,resolve:e=>e.deprecationReason}})});let v;!function(e){e.SCALAR="SCALAR",e.OBJECT="OBJECT",e.INTERFACE="INTERFACE",e.UNION="UNION",e.ENUM="ENUM",e.INPUT_OBJECT="INPUT_OBJECT",e.LIST="LIST",e.NON_NULL="NON_NULL"}(v||(v={}));const y=new c.a({name:"__TypeKind",description:"An enum describing what kind of type a given `__Type` is.",values:{SCALAR:{value:v.SCALAR,description:"Indicates this type is a scalar."},OBJECT:{value:v.OBJECT,description:"Indicates this type is an object. `fields` and `interfaces` are valid fields."},INTERFACE:{value:v.INTERFACE,description:"Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields."},UNION:{value:v.UNION,description:"Indicates this type is a union. `possibleTypes` is a valid field."},ENUM:{value:v.ENUM,description:"Indicates this type is an enum. `enumValues` is a valid field."},INPUT_OBJECT:{value:v.INPUT_OBJECT,description:"Indicates this type is an input object. `inputFields` is a valid field."},LIST:{value:v.LIST,description:"Indicates this type is a list. `ofType` is a valid field."},NON_NULL:{value:v.NON_NULL,description:"Indicates this type is a non-null. `ofType` is a valid field."}}}),b={name:"__schema",type:new c.e(u),description:"Access the current type schema of this server.",args:[],resolve:(e,t,n,{schema:r})=>r,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},T={name:"__type",type:p,description:"Request the type information of a single type.",args:[{name:"name",description:void 0,type:new c.e(l.e),defaultValue:void 0,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0}],resolve:(e,{name:t},n,{schema:r})=>r.getType(t),deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},E={name:"__typename",type:new c.e(l.e),description:"The name of the current Object type at runtime.",args:[],resolve:(e,t,n,{parentType:r})=>r.name,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},O=Object.freeze([u,f,d,p,h,m,g,y]);function _(e){return O.some(({name:t})=>e.name===t)}},function(e,t,n){"use strict";function r(e,t){if(!Boolean(e))throw new Error(null!=t?t:"Unexpected invariant triggered.")}n.d(t,"a",(function(){return r}))},function(e,t,n){"use strict";n.d(t,"a",(function(){return l}));var r=n(18),i=n(26);const o=/[\x00-\x1f\x22\x5c\x7f-\x9f]/g;function a(e){return s[e.charCodeAt(0)]}const s=["\\u0000","\\u0001","\\u0002","\\u0003","\\u0004","\\u0005","\\u0006","\\u0007","\\b","\\t","\\n","\\u000B","\\f","\\r","\\u000E","\\u000F","\\u0010","\\u0011","\\u0012","\\u0013","\\u0014","\\u0015","\\u0016","\\u0017","\\u0018","\\u0019","\\u001A","\\u001B","\\u001C","\\u001D","\\u001E","\\u001F","","",'\\"',"","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","\\\\","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","\\u007F","\\u0080","\\u0081","\\u0082","\\u0083","\\u0084","\\u0085","\\u0086","\\u0087","\\u0088","\\u0089","\\u008A","\\u008B","\\u008C","\\u008D","\\u008E","\\u008F","\\u0090","\\u0091","\\u0092","\\u0093","\\u0094","\\u0095","\\u0096","\\u0097","\\u0098","\\u0099","\\u009A","\\u009B","\\u009C","\\u009D","\\u009E","\\u009F"];function l(e){return Object(r.d)(e,c)}const c={Name:{leave:e=>e.value},Variable:{leave:e=>"$"+e.name},Document:{leave:e=>u(e.definitions,"\n\n")},OperationDefinition:{leave(e){const t=d("(",u(e.variableDefinitions,", "),")"),n=u([e.operation,u([e.name,t]),u(e.directives," ")]," ");return("query"===n?"":n+" ")+e.selectionSet}},VariableDefinition:{leave:({variable:e,type:t,defaultValue:n,directives:r})=>e+": "+t+d(" = ",n)+d(" ",u(r," "))},SelectionSet:{leave:({selections:e})=>f(e)},Field:{leave({alias:e,name:t,arguments:n,directives:r,selectionSet:i}){const o=d("",e,": ")+t;let a=o+d("(",u(n,", "),")");return a.length>80&&(a=o+d("(\n",p(u(n,"\n")),"\n)")),u([a,u(r," "),i]," ")}},Argument:{leave:({name:e,value:t})=>e+": "+t},FragmentSpread:{leave:({name:e,directives:t})=>"..."+e+d(" ",u(t," "))},InlineFragment:{leave:({typeCondition:e,directives:t,selectionSet:n})=>u(["...",d("on ",e),u(t," "),n]," ")},FragmentDefinition:{leave:({name:e,typeCondition:t,variableDefinitions:n,directives:r,selectionSet:i})=>`fragment ${e}${d("(",u(n,", "),")")} on ${t} ${d("",u(r," ")," ")}`+i},IntValue:{leave:({value:e})=>e},FloatValue:{leave:({value:e})=>e},StringValue:{leave:({value:e,block:t})=>t?Object(i.c)(e):`"${e.replace(o,a)}"`},BooleanValue:{leave:({value:e})=>e?"true":"false"},NullValue:{leave:()=>"null"},EnumValue:{leave:({value:e})=>e},ListValue:{leave:({values:e})=>"["+u(e,", ")+"]"},ObjectValue:{leave:({fields:e})=>"{"+u(e,", ")+"}"},ObjectField:{leave:({name:e,value:t})=>e+": "+t},Directive:{leave:({name:e,arguments:t})=>"@"+e+d("(",u(t,", "),")")},NamedType:{leave:({name:e})=>e},ListType:{leave:({type:e})=>"["+e+"]"},NonNullType:{leave:({type:e})=>e+"!"},SchemaDefinition:{leave:({description:e,directives:t,operationTypes:n})=>d("",e,"\n")+u(["schema",u(t," "),f(n)]," ")},OperationTypeDefinition:{leave:({operation:e,type:t})=>e+": "+t},ScalarTypeDefinition:{leave:({description:e,name:t,directives:n})=>d("",e,"\n")+u(["scalar",t,u(n," ")]," ")},ObjectTypeDefinition:{leave:({description:e,name:t,interfaces:n,directives:r,fields:i})=>d("",e,"\n")+u(["type",t,d("implements ",u(n," & ")),u(r," "),f(i)]," ")},FieldDefinition:{leave:({description:e,name:t,arguments:n,type:r,directives:i})=>d("",e,"\n")+t+(h(n)?d("(\n",p(u(n,"\n")),"\n)"):d("(",u(n,", "),")"))+": "+r+d(" ",u(i," "))},InputValueDefinition:{leave:({description:e,name:t,type:n,defaultValue:r,directives:i})=>d("",e,"\n")+u([t+": "+n,d("= ",r),u(i," ")]," ")},InterfaceTypeDefinition:{leave:({description:e,name:t,interfaces:n,directives:r,fields:i})=>d("",e,"\n")+u(["interface",t,d("implements ",u(n," & ")),u(r," "),f(i)]," ")},UnionTypeDefinition:{leave:({description:e,name:t,directives:n,types:r})=>d("",e,"\n")+u(["union",t,u(n," "),d("= ",u(r," | "))]," ")},EnumTypeDefinition:{leave:({description:e,name:t,directives:n,values:r})=>d("",e,"\n")+u(["enum",t,u(n," "),f(r)]," ")},EnumValueDefinition:{leave:({description:e,name:t,directives:n})=>d("",e,"\n")+u([t,u(n," ")]," ")},InputObjectTypeDefinition:{leave:({description:e,name:t,directives:n,fields:r})=>d("",e,"\n")+u(["input",t,u(n," "),f(r)]," ")},DirectiveDefinition:{leave:({description:e,name:t,arguments:n,repeatable:r,locations:i})=>d("",e,"\n")+"directive @"+t+(h(n)?d("(\n",p(u(n,"\n")),"\n)"):d("(",u(n,", "),")"))+(r?" repeatable":"")+" on "+u(i," | ")},SchemaExtension:{leave:({directives:e,operationTypes:t})=>u(["extend schema",u(e," "),f(t)]," ")},ScalarTypeExtension:{leave:({name:e,directives:t})=>u(["extend scalar",e,u(t," ")]," ")},ObjectTypeExtension:{leave:({name:e,interfaces:t,directives:n,fields:r})=>u(["extend type",e,d("implements ",u(t," & ")),u(n," "),f(r)]," ")},InterfaceTypeExtension:{leave:({name:e,interfaces:t,directives:n,fields:r})=>u(["extend interface",e,d("implements ",u(t," & ")),u(n," "),f(r)]," ")},UnionTypeExtension:{leave:({name:e,directives:t,types:n})=>u(["extend union",e,u(t," "),d("= ",u(n," | "))]," ")},EnumTypeExtension:{leave:({name:e,directives:t,values:n})=>u(["extend enum",e,u(t," "),f(n)]," ")},InputObjectTypeExtension:{leave:({name:e,directives:t,fields:n})=>u(["extend input",e,u(t," "),f(n)]," ")}};function u(e,t=""){var n;return null!==(n=null==e?void 0:e.filter(e=>e).join(t))&&void 0!==n?n:""}function f(e){return d("{\n",p(u(e,"\n")),"\n}")}function d(e,t,n=""){return null!=t&&""!==t?e+t+n:""}function p(e){return d(" ",e.replace(/\n/g,"\n "))}function h(e){var t;return null!==(t=null==e?void 0:e.some(e=>e.includes("\n")))&&void 0!==t&&t}},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=function(){var e=navigator.userAgent,t=navigator.platform,n=/gecko\/\d/i.test(e),r=/MSIE \d/.test(e),i=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(e),o=/Edge\/(\d+)/.exec(e),a=r||i||o,s=a&&(r?document.documentMode||6:+(o||i)[1]),l=!o&&/WebKit\//.test(e),c=l&&/Qt\/\d+\.\d+/.test(e),u=!o&&/Chrome\//.test(e),f=/Opera\//.test(e),d=/Apple Computer/.test(navigator.vendor),p=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(e),h=/PhantomJS/.test(e),m=!o&&/AppleWebKit/.test(e)&&/Mobile\/\w+/.test(e),g=/Android/.test(e),v=m||g||/webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(e),y=m||/Mac/.test(t),b=/\bCrOS\b/.test(e),T=/win/i.test(t),E=f&&e.match(/Version\/(\d*\.\d*)/);E&&(E=Number(E[1])),E&&E>=15&&(f=!1,l=!0);var O=y&&(c||f&&(null==E||E<12.11)),_=n||a&&s>=9;function C(e){return new RegExp("(^|\\s)"+e+"(?:$|\\s)\\s*")}var x,w=function(e,t){var n=e.className,r=C(t).exec(n);if(r){var i=n.slice(r.index+r[0].length);e.className=n.slice(0,r.index)+(i?r[1]+i:"")}};function k(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function S(e,t){return k(e).appendChild(t)}function N(e,t,n,r){var i=document.createElement(e);if(n&&(i.className=n),r&&(i.style.cssText=r),"string"==typeof t)i.appendChild(document.createTextNode(t));else if(t)for(var o=0;o=t)return a+(t-o);a+=s-o,a+=n-a%n,o=s+1}}m?j=function(e){e.selectionStart=0,e.selectionEnd=e.value.length}:a&&(j=function(e){try{e.select()}catch(e){}});var V=function(){this.id=null,this.f=null,this.time=0,this.handler=M(this.onTimeout,this)};function U(e,t){for(var n=0;n=t)return r+Math.min(a,t-i);if(i+=o-r,r=o+1,(i+=n-i%n)>=t)return r}}var z=[""];function Q(e){for(;z.length<=e;)z.push(K(z)+" ");return z[e]}function K(e){return e[e.length-1]}function W(e,t){for(var n=[],r=0;r"€"&&(e.toUpperCase()!=e.toLowerCase()||X.test(e))}function ee(e,t){return t?!!(t.source.indexOf("\\w")>-1&&Z(e))||t.test(e):Z(e)}function te(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}var ne=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;function re(e){return e.charCodeAt(0)>=768&&ne.test(e)}function ie(e,t,n){for(;(n<0?t>0:tn?-1:1;;){if(t==n)return t;var i=(t+n)/2,o=r<0?Math.ceil(i):Math.floor(i);if(o==t)return e(o)?t:n;e(o)?n=o:t=o+r}}var ae=null;function se(e,t,n){var r;ae=null;for(var i=0;it)return i;o.to==t&&(o.from!=o.to&&"before"==n?r=i:ae=i),o.from==t&&(o.from!=o.to&&"before"!=n?r=i:ae=i)}return null!=r?r:ae}var le=function(){var e=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,t=/[stwN]/,n=/[LRr]/,r=/[Lb1n]/,i=/[1n]/;function o(e,t,n){this.level=e,this.from=t,this.to=n}return function(a,s){var l="ltr"==s?"L":"R";if(0==a.length||"ltr"==s&&!e.test(a))return!1;for(var c,u=a.length,f=[],d=0;d-1&&(r[t]=i.slice(0,o).concat(i.slice(o+1)))}}}function he(e,t){var n=de(e,t);if(n.length)for(var r=Array.prototype.slice.call(arguments,2),i=0;i0}function ye(e){e.prototype.on=function(e,t){fe(this,e,t)},e.prototype.off=function(e,t){pe(this,e,t)}}function be(e){e.preventDefault?e.preventDefault():e.returnValue=!1}function Te(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}function Ee(e){return null!=e.defaultPrevented?e.defaultPrevented:0==e.returnValue}function Oe(e){be(e),Te(e)}function _e(e){return e.target||e.srcElement}function Ce(e){var t=e.which;return null==t&&(1&e.button?t=1:2&e.button?t=3:4&e.button&&(t=2)),y&&e.ctrlKey&&1==t&&(t=3),t}var xe,we,ke=function(){if(a&&s<9)return!1;var e=N("div");return"draggable"in e||"dragDrop"in e}();function Se(e){if(null==xe){var t=N("span","​");S(e,N("span",[t,document.createTextNode("x")])),0!=e.firstChild.offsetHeight&&(xe=t.offsetWidth<=1&&t.offsetHeight>2&&!(a&&s<8))}var n=xe?N("span","​"):N("span"," ",null,"display: inline-block; width: 1px; margin-right: -1px");return n.setAttribute("cm-text",""),n}function Ne(e){if(null!=we)return we;var t=S(e,document.createTextNode("AخA")),n=x(t,0,1).getBoundingClientRect(),r=x(t,1,2).getBoundingClientRect();return k(e),!(!n||n.left==n.right)&&(we=r.right-n.right<3)}var De,Ie=3!="\n\nb".split(/\n/).length?function(e){for(var t=0,n=[],r=e.length;t<=r;){var i=e.indexOf("\n",t);-1==i&&(i=e.length);var o=e.slice(t,"\r"==e.charAt(i-1)?i-1:i),a=o.indexOf("\r");-1!=a?(n.push(o.slice(0,a)),t+=a+1):(n.push(o),t=i+1)}return n}:function(e){return e.split(/\r\n?|\n/)},Ae=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch(e){return!1}}:function(e){var t;try{t=e.ownerDocument.selection.createRange()}catch(e){}return!(!t||t.parentElement()!=e)&&0!=t.compareEndPoints("StartToEnd",t)},Le="oncopy"in(De=N("div"))||(De.setAttribute("oncopy","return;"),"function"==typeof De.oncopy),Fe=null,je={},Me={};function Re(e,t){arguments.length>2&&(t.dependencies=Array.prototype.slice.call(arguments,2)),je[e]=t}function Pe(e){if("string"==typeof e&&Me.hasOwnProperty(e))e=Me[e];else if(e&&"string"==typeof e.name&&Me.hasOwnProperty(e.name)){var t=Me[e.name];"string"==typeof t&&(t={name:t}),(e=J(t,e)).name=t.name}else{if("string"==typeof e&&/^[\w\-]+\/[\w\-]+\+xml$/.test(e))return Pe("application/xml");if("string"==typeof e&&/^[\w\-]+\/[\w\-]+\+json$/.test(e))return Pe("application/json")}return"string"==typeof e?{name:e}:e||{name:"null"}}function Ve(e,t){t=Pe(t);var n=je[t.name];if(!n)return Ve(e,"text/plain");var r=n(e,t);if(Ue.hasOwnProperty(t.name)){var i=Ue[t.name];for(var o in i)i.hasOwnProperty(o)&&(r.hasOwnProperty(o)&&(r["_"+o]=r[o]),r[o]=i[o])}if(r.name=t.name,t.helperType&&(r.helperType=t.helperType),t.modeProps)for(var a in t.modeProps)r[a]=t.modeProps[a];return r}var Ue={};function Be(e,t){R(t,Ue.hasOwnProperty(e)?Ue[e]:Ue[e]={})}function $e(e,t){if(!0===t)return t;if(e.copyState)return e.copyState(t);var n={};for(var r in t){var i=t[r];i instanceof Array&&(i=i.concat([])),n[r]=i}return n}function qe(e,t){for(var n;e.innerMode&&(n=e.innerMode(t))&&n.mode!=e;)t=n.state,e=n.mode;return n||{mode:e,state:t}}function He(e,t,n){return!e.startState||e.startState(t,n)}var Ge=function(e,t,n){this.pos=this.start=0,this.string=e,this.tabSize=t||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0,this.lineOracle=n};function ze(e,t){if((t-=e.first)<0||t>=e.size)throw new Error("There is no line "+(t+e.first)+" in the document.");for(var n=e;!n.lines;)for(var r=0;;++r){var i=n.children[r],o=i.chunkSize();if(t=e.first&&tn?et(n,ze(e,n).text.length):function(e,t){var n=e.ch;return null==n||n>t?et(e.line,t):n<0?et(e.line,0):e}(t,ze(e,t.line).text.length)}function lt(e,t){for(var n=[],r=0;r=this.string.length},Ge.prototype.sol=function(){return this.pos==this.lineStart},Ge.prototype.peek=function(){return this.string.charAt(this.pos)||void 0},Ge.prototype.next=function(){if(this.post},Ge.prototype.eatSpace=function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},Ge.prototype.skipToEnd=function(){this.pos=this.string.length},Ge.prototype.skipTo=function(e){var t=this.string.indexOf(e,this.pos);if(t>-1)return this.pos=t,!0},Ge.prototype.backUp=function(e){this.pos-=e},Ge.prototype.column=function(){return this.lastColumnPos0?null:(r&&!1!==t&&(this.pos+=r[0].length),r)}var i=function(e){return n?e.toLowerCase():e};if(i(this.string.substr(this.pos,e.length))==i(e))return!1!==t&&(this.pos+=e.length),!0},Ge.prototype.current=function(){return this.string.slice(this.start,this.pos)},Ge.prototype.hideFirstChars=function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}},Ge.prototype.lookAhead=function(e){var t=this.lineOracle;return t&&t.lookAhead(e)},Ge.prototype.baseToken=function(){var e=this.lineOracle;return e&&e.baseToken(this.pos)};var ct=function(e,t){this.state=e,this.lookAhead=t},ut=function(e,t,n,r){this.state=t,this.doc=e,this.line=n,this.maxLookAhead=r||0,this.baseTokens=null,this.baseTokenPos=1};function ft(e,t,n,r){var i=[e.state.modeGen],o={};Tt(e,t.text,e.doc.mode,n,(function(e,t){return i.push(e,t)}),o,r);for(var a=n.state,s=function(r){n.baseTokens=i;var s=e.state.overlays[r],l=1,c=0;n.state=!0,Tt(e,t.text,s.mode,n,(function(e,t){for(var n=l;ce&&i.splice(l,1,e,i[l+1],r),l+=2,c=Math.min(e,r)}if(t)if(s.opaque)i.splice(n,l-n,e,"overlay "+t),l=n+2;else for(;ne.options.maxHighlightLength&&$e(e.doc.mode,r.state),o=ft(e,t,r);i&&(r.state=i),t.stateAfter=r.save(!i),t.styles=o.styles,o.classes?t.styleClasses=o.classes:t.styleClasses&&(t.styleClasses=null),n===e.doc.highlightFrontier&&(e.doc.modeFrontier=Math.max(e.doc.modeFrontier,++e.doc.highlightFrontier))}return t.styles}function pt(e,t,n){var r=e.doc,i=e.display;if(!r.mode.startState)return new ut(r,!0,t);var o=function(e,t,n){for(var r,i,o=e.doc,a=n?-1:t-(e.doc.mode.innerMode?1e3:100),s=t;s>a;--s){if(s<=o.first)return o.first;var l=ze(o,s-1),c=l.stateAfter;if(c&&(!n||s+(c instanceof ct?c.lookAhead:0)<=o.modeFrontier))return s;var u=P(l.text,null,e.options.tabSize);(null==i||r>u)&&(i=s-1,r=u)}return i}(e,t,n),a=o>r.first&&ze(r,o-1).stateAfter,s=a?ut.fromSaved(r,a,o):new ut(r,He(r.mode),o);return r.iter(o,t,(function(n){ht(e,n.text,s);var r=s.line;n.stateAfter=r==t-1||r%5==0||r>=i.viewFrom&&rt.start)return o}throw new Error("Mode "+e.name+" failed to advance stream.")}ut.prototype.lookAhead=function(e){var t=this.doc.getLine(this.line+e);return null!=t&&e>this.maxLookAhead&&(this.maxLookAhead=e),t},ut.prototype.baseToken=function(e){if(!this.baseTokens)return null;for(;this.baseTokens[this.baseTokenPos]<=e;)this.baseTokenPos+=2;var t=this.baseTokens[this.baseTokenPos+1];return{type:t&&t.replace(/( |^)overlay .*/,""),size:this.baseTokens[this.baseTokenPos]-e}},ut.prototype.nextLine=function(){this.line++,this.maxLookAhead>0&&this.maxLookAhead--},ut.fromSaved=function(e,t,n){return t instanceof ct?new ut(e,$e(e.mode,t.state),n,t.lookAhead):new ut(e,$e(e.mode,t),n)},ut.prototype.save=function(e){var t=!1!==e?$e(this.doc.mode,this.state):this.state;return this.maxLookAhead>0?new ct(t,this.maxLookAhead):t};var vt=function(e,t,n){this.start=e.start,this.end=e.pos,this.string=e.current(),this.type=t||null,this.state=n};function yt(e,t,n,r){var i,o,a=e.doc,s=a.mode,l=ze(a,(t=st(a,t)).line),c=pt(e,t.line,n),u=new Ge(l.text,e.options.tabSize,c);for(r&&(o=[]);(r||u.pose.options.maxHighlightLength?(s=!1,a&&ht(e,t,r,f.pos),f.pos=t.length,l=null):l=bt(gt(n,f,r.state,d),o),d){var p=d[0].name;p&&(l="m-"+(l?p+" "+l:p))}if(!s||u!=l){for(;c=t:o.to>t);(r||(r=[])).push(new _t(a,o.from,s?null:o.to))}}return r}(n,i,a),l=function(e,t,n){var r;if(e)for(var i=0;i=t:o.to>t)||o.from==t&&"bookmark"==a.type&&(!n||o.marker.insertLeft)){var s=null==o.from||(a.inclusiveLeft?o.from<=t:o.from0&&s)for(var b=0;bt)&&(!n||At(n,o.marker)<0)&&(n=o.marker)}return n}function Rt(e,t,n,r,i){var o=ze(e,t),a=Ot&&o.markedSpans;if(a)for(var s=0;s=0&&f<=0||u<=0&&f>=0)&&(u<=0&&(l.marker.inclusiveRight&&i.inclusiveLeft?tt(c.to,n)>=0:tt(c.to,n)>0)||u>=0&&(l.marker.inclusiveRight&&i.inclusiveLeft?tt(c.from,r)<=0:tt(c.from,r)<0)))return!0}}}function Pt(e){for(var t;t=Ft(e);)e=t.find(-1,!0).line;return e}function Vt(e,t){var n=ze(e,t),r=Pt(n);return n==r?t:Ye(r)}function Ut(e,t){if(t>e.lastLine())return t;var n,r=ze(e,t);if(!Bt(e,r))return t;for(;n=jt(r);)r=n.find(1,!0).line;return Ye(r)+1}function Bt(e,t){var n=Ot&&t.markedSpans;if(n)for(var r=void 0,i=0;it.maxLineLength&&(t.maxLineLength=n,t.maxLine=e)}))}var zt=function(e,t,n){this.text=e,Nt(this,t),this.height=n?n(this):1};function Qt(e){e.parent=null,St(e)}zt.prototype.lineNo=function(){return Ye(this)},ye(zt);var Kt={},Wt={};function Yt(e,t){if(!e||/^\s*$/.test(e))return null;var n=t.addModeClass?Wt:Kt;return n[e]||(n[e]=e.replace(/\S+/g,"cm-$&"))}function Jt(e,t){var n=D("span",null,null,l?"padding-right: .1px":null),r={pre:D("pre",[n],"CodeMirror-line"),content:n,col:0,pos:0,cm:e,trailingSpace:!1,splitSpaces:e.getOption("lineWrapping")};t.measure={};for(var i=0;i<=(t.rest?t.rest.length:0);i++){var o=i?t.rest[i-1]:t.line,a=void 0;r.pos=0,r.addToken=Zt,Ne(e.display.measure)&&(a=ce(o,e.doc.direction))&&(r.addToken=en(r.addToken,a)),r.map=[],nn(o,r,dt(e,o,t!=e.display.externalMeasured&&Ye(o))),o.styleClasses&&(o.styleClasses.bgClass&&(r.bgClass=F(o.styleClasses.bgClass,r.bgClass||"")),o.styleClasses.textClass&&(r.textClass=F(o.styleClasses.textClass,r.textClass||""))),0==r.map.length&&r.map.push(0,0,r.content.appendChild(Se(e.display.measure))),0==i?(t.measure.map=r.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(r.map),(t.measure.caches||(t.measure.caches=[])).push({}))}if(l){var s=r.content.lastChild;(/\bcm-tab\b/.test(s.className)||s.querySelector&&s.querySelector(".cm-tab"))&&(r.content.className="cm-tab-wrap-hack")}return he(e,"renderLine",e,t.line,r.pre),r.pre.className&&(r.textClass=F(r.pre.className,r.textClass||"")),r}function Xt(e){var t=N("span","•","cm-invalidchar");return t.title="\\u"+e.charCodeAt(0).toString(16),t.setAttribute("aria-label",t.title),t}function Zt(e,t,n,r,i,o,l){if(t){var c,u=e.splitSpaces?function(e,t){if(e.length>1&&!/ /.test(e))return e;for(var n=t,r="",i=0;ic&&f.from<=c);d++);if(f.to>=u)return e(n,r,i,o,a,s,l);e(n,r.slice(0,f.to-c),i,o,null,s,l),o=null,r=r.slice(f.to-c),c=f.to}}}function tn(e,t,n,r){var i=!r&&n.widgetNode;i&&e.map.push(e.pos,e.pos+t,i),!r&&e.cm.display.input.needsContentAttribute&&(i||(i=e.content.appendChild(document.createElement("span"))),i.setAttribute("cm-marker",n.id)),i&&(e.cm.display.input.setUneditable(i),e.content.appendChild(i)),e.pos+=t,e.trailingSpace=!1}function nn(e,t,n){var r=e.markedSpans,i=e.text,o=0;if(r)for(var a,s,l,c,u,f,d,p=i.length,h=0,m=1,g="",v=0;;){if(v==h){l=c=u=s="",d=null,f=null,v=1/0;for(var y=[],b=void 0,T=0;Th||O.collapsed&&E.to==h&&E.from==h)){if(null!=E.to&&E.to!=h&&v>E.to&&(v=E.to,c=""),O.className&&(l+=" "+O.className),O.css&&(s=(s?s+";":"")+O.css),O.startStyle&&E.from==h&&(u+=" "+O.startStyle),O.endStyle&&E.to==v&&(b||(b=[])).push(O.endStyle,E.to),O.title&&((d||(d={})).title=O.title),O.attributes)for(var _ in O.attributes)(d||(d={}))[_]=O.attributes[_];O.collapsed&&(!f||At(f.marker,O)<0)&&(f=E)}else E.from>h&&v>E.from&&(v=E.from)}if(b)for(var C=0;C=p)break;for(var w=Math.min(p,v);;){if(g){var k=h+g.length;if(!f){var S=k>w?g.slice(0,w-h):g;t.addToken(t,S,a?a+l:l,u,h+S.length==v?c:"",s,d)}if(k>=w){g=g.slice(w-h),h=w;break}h=k,u=""}g=i.slice(o,o=n[m++]),a=Yt(n[m++],t.cm.options)}}else for(var N=1;Nn)return{map:e.measure.maps[i],cache:e.measure.caches[i],before:!0}}function Dn(e,t,n,r){return Ln(e,An(e,t),n,r)}function In(e,t){if(t>=e.display.viewFrom&&t=n.lineN&&t2&&o.push((l.bottom+c.top)/2-n.top)}}o.push(n.bottom-n.top)}}(e,t.view,t.rect),t.hasHeights=!0),(o=function(e,t,n,r){var i,o=Mn(t.map,n,r),l=o.node,c=o.start,u=o.end,f=o.collapse;if(3==l.nodeType){for(var d=0;d<4;d++){for(;c&&re(t.line.text.charAt(o.coverStart+c));)--c;for(;o.coverStart+u1}(e))return t;var n=screen.logicalXDPI/screen.deviceXDPI,r=screen.logicalYDPI/screen.deviceYDPI;return{left:t.left*n,right:t.right*n,top:t.top*r,bottom:t.bottom*r}}(e.display.measure,i))}else{var p;c>0&&(f=r="right"),i=e.options.lineWrapping&&(p=l.getClientRects()).length>1?p["right"==r?p.length-1:0]:l.getBoundingClientRect()}if(a&&s<9&&!c&&(!i||!i.left&&!i.right)){var h=l.parentNode.getClientRects()[0];i=h?{left:h.left,right:h.left+ir(e.display),top:h.top,bottom:h.bottom}:jn}for(var m=i.top-t.rect.top,g=i.bottom-t.rect.top,v=(m+g)/2,y=t.view.measure.heights,b=0;bt)&&(i=(o=l-s)-1,t>=l&&(a="right")),null!=i){if(r=e[c+2],s==l&&n==(r.insertLeft?"left":"right")&&(a=n),"left"==n&&0==i)for(;c&&e[c-2]==e[c-3]&&e[c-1].insertLeft;)r=e[2+(c-=3)],a="left";if("right"==n&&i==l-s)for(;c=0&&(n=e[i]).left==n.right;i--);return n}function Pn(e){if(e.measure&&(e.measure.cache={},e.measure.heights=null,e.rest))for(var t=0;t=r.text.length?(l=r.text.length,c="before"):l<=0&&(l=0,c="after"),!s)return a("before"==c?l-1:l,"before"==c);function u(e,t,n){return a(n?e-1:e,1==s[t].level!=n)}var f=se(s,l,c),d=ae,p=u(l,f,"before"==c);return null!=d&&(p.other=u(l,d,"before"!=c)),p}function Kn(e,t){var n=0;t=st(e.doc,t),e.options.lineWrapping||(n=ir(e.display)*t.ch);var r=ze(e.doc,t.line),i=qt(r)+_n(e.display);return{left:n,right:n,top:i,bottom:i+r.height}}function Wn(e,t,n,r,i){var o=et(e,t,n);return o.xRel=i,r&&(o.outside=r),o}function Yn(e,t,n){var r=e.doc;if((n+=e.display.viewOffset)<0)return Wn(r.first,0,null,-1,-1);var i=Je(r,n),o=r.first+r.size-1;if(i>o)return Wn(r.first+r.size-1,ze(r,o).text.length,null,1,1);t<0&&(t=0);for(var a=ze(r,i);;){var s=er(e,a,i,t,n),l=Mt(a,s.ch+(s.xRel>0||s.outside>0?1:0));if(!l)return s;var c=l.find(1);if(c.line==i)return c;a=ze(r,i=c.line)}}function Jn(e,t,n,r){r-=qn(t);var i=t.text.length,o=oe((function(t){return Ln(e,n,t-1).bottom<=r}),i,0);return{begin:o,end:i=oe((function(t){return Ln(e,n,t).top>r}),o,i)}}function Xn(e,t,n,r){return n||(n=An(e,t)),Jn(e,t,n,Hn(e,t,Ln(e,n,r),"line").top)}function Zn(e,t,n,r){return!(e.bottom<=n)&&(e.top>n||(r?e.left:e.right)>t)}function er(e,t,n,r,i){i-=qt(t);var o=An(e,t),a=qn(t),s=0,l=t.text.length,c=!0,u=ce(t,e.doc.direction);if(u){var f=(e.options.lineWrapping?nr:tr)(e,t,n,o,u,r,i);s=(c=1!=f.level)?f.from:f.to-1,l=c?f.to:f.from-1}var d,p,h=null,m=null,g=oe((function(t){var n=Ln(e,o,t);return n.top+=a,n.bottom+=a,!!Zn(n,r,i,!1)&&(n.top<=i&&n.left<=r&&(h=t,m=n),!0)}),s,l),v=!1;if(m){var y=r-m.left=T.bottom?1:0}return Wn(n,g=ie(t.text,g,1),p,v,r-d)}function tr(e,t,n,r,i,o,a){var s=oe((function(s){var l=i[s],c=1!=l.level;return Zn(Qn(e,et(n,c?l.to:l.from,c?"before":"after"),"line",t,r),o,a,!0)}),0,i.length-1),l=i[s];if(s>0){var c=1!=l.level,u=Qn(e,et(n,c?l.from:l.to,c?"after":"before"),"line",t,r);Zn(u,o,a,!0)&&u.top>a&&(l=i[s-1])}return l}function nr(e,t,n,r,i,o,a){var s=Jn(e,t,r,a),l=s.begin,c=s.end;/\s/.test(t.text.charAt(c-1))&&c--;for(var u=null,f=null,d=0;d=c||p.to<=l)){var h=Ln(e,r,1!=p.level?Math.min(c,p.to)-1:Math.max(l,p.from)).right,m=hm)&&(u=p,f=m)}}return u||(u=i[i.length-1]),u.fromc&&(u={from:u.from,to:c,level:u.level}),u}function rr(e){if(null!=e.cachedTextHeight)return e.cachedTextHeight;if(null==Fn){Fn=N("pre",null,"CodeMirror-line-like");for(var t=0;t<49;++t)Fn.appendChild(document.createTextNode("x")),Fn.appendChild(N("br"));Fn.appendChild(document.createTextNode("x"))}S(e.measure,Fn);var n=Fn.offsetHeight/50;return n>3&&(e.cachedTextHeight=n),k(e.measure),n||1}function ir(e){if(null!=e.cachedCharWidth)return e.cachedCharWidth;var t=N("span","xxxxxxxxxx"),n=N("pre",[t],"CodeMirror-line-like");S(e.measure,n);var r=t.getBoundingClientRect(),i=(r.right-r.left)/10;return i>2&&(e.cachedCharWidth=i),i||10}function or(e){for(var t=e.display,n={},r={},i=t.gutters.clientLeft,o=t.gutters.firstChild,a=0;o;o=o.nextSibling,++a){var s=e.display.gutterSpecs[a].className;n[s]=o.offsetLeft+o.clientLeft+i,r[s]=o.clientWidth}return{fixedPos:ar(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:n,gutterWidth:r,wrapperWidth:t.wrapper.clientWidth}}function ar(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function sr(e){var t=rr(e.display),n=e.options.lineWrapping,r=n&&Math.max(5,e.display.scroller.clientWidth/ir(e.display)-3);return function(i){if(Bt(e.doc,i))return 0;var o=0;if(i.widgets)for(var a=0;a0&&(l=ze(e.doc,c.line).text).length==c.ch){var u=P(l,l.length,e.options.tabSize)-l.length;c=et(c.line,Math.max(0,Math.round((o-xn(e.display).left)/ir(e.display))-u))}return c}function ur(e,t){if(t>=e.display.viewTo)return null;if((t-=e.display.viewFrom)<0)return null;for(var n=e.display.view,r=0;rt)&&(i.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=i.viewTo)Ot&&Vt(e.doc,t)i.viewFrom?pr(e):(i.viewFrom+=r,i.viewTo+=r);else if(t<=i.viewFrom&&n>=i.viewTo)pr(e);else if(t<=i.viewFrom){var o=hr(e,n,n+r,1);o?(i.view=i.view.slice(o.index),i.viewFrom=o.lineN,i.viewTo+=r):pr(e)}else if(n>=i.viewTo){var a=hr(e,t,t,-1);a?(i.view=i.view.slice(0,a.index),i.viewTo=a.lineN):pr(e)}else{var s=hr(e,t,t,-1),l=hr(e,n,n+r,1);s&&l?(i.view=i.view.slice(0,s.index).concat(on(e,s.lineN,l.lineN)).concat(i.view.slice(l.index)),i.viewTo+=r):pr(e)}var c=i.externalMeasured;c&&(n=i.lineN&&t=r.viewTo)){var o=r.view[ur(e,t)];if(null!=o.node){var a=o.changes||(o.changes=[]);-1==U(a,n)&&a.push(n)}}}function pr(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function hr(e,t,n,r){var i,o=ur(e,t),a=e.display.view;if(!Ot||n==e.doc.first+e.doc.size)return{index:o,lineN:n};for(var s=e.display.viewFrom,l=0;l0){if(o==a.length-1)return null;i=s+a[o].size-t,o++}else i=s-t;t+=i,n+=i}for(;Vt(e.doc,n)!=n;){if(o==(r<0?0:a.length-1))return null;n+=r*a[o-(r<0?1:0)].size,o+=r}return{index:o,lineN:n}}function mr(e){for(var t=e.display.view,n=0,r=0;r=e.display.viewTo||s.to().linet||t==n&&a.to==t)&&(r(Math.max(a.from,t),Math.min(a.to,n),1==a.level?"rtl":"ltr",o),i=!0)}i||r(t,n,"ltr")}(m,n||0,null==r?d:r,(function(e,t,i,f){var g="ltr"==i,v=p(e,g?"left":"right"),y=p(t-1,g?"right":"left"),b=null==n&&0==e,T=null==r&&t==d,E=0==f,O=!m||f==m.length-1;if(y.top-v.top<=3){var _=(c?T:b)&&O,C=(c?b:T)&&E?s:(g?v:y).left,x=_?l:(g?y:v).right;u(C,v.top,x-C,v.bottom)}else{var w,k,S,N;g?(w=c&&b&&E?s:v.left,k=c?l:h(e,i,"before"),S=c?s:h(t,i,"after"),N=c&&T&&O?l:y.right):(w=c?h(e,i,"before"):s,k=!c&&b&&E?l:v.right,S=!c&&T&&O?s:y.left,N=c?h(t,i,"after"):l),u(w,v.top,k-w,v.bottom),v.bottom0?t.blinker=setInterval((function(){e.hasFocus()||xr(e),t.cursorDiv.style.visibility=(n=!n)?"":"hidden"}),e.options.cursorBlinkRate):e.options.cursorBlinkRate<0&&(t.cursorDiv.style.visibility="hidden")}}function Or(e){e.state.focused||(e.display.input.focus(),Cr(e))}function _r(e){e.state.delayingBlurEvent=!0,setTimeout((function(){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1,xr(e))}),100)}function Cr(e,t){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1),"nocursor"!=e.options.readOnly&&(e.state.focused||(he(e,"focus",e,t),e.state.focused=!0,L(e.display.wrapper,"CodeMirror-focused"),e.curOp||e.display.selForContextMenu==e.doc.sel||(e.display.input.reset(),l&&setTimeout((function(){return e.display.input.reset(!0)}),20)),e.display.input.receivedFocus()),Er(e))}function xr(e,t){e.state.delayingBlurEvent||(e.state.focused&&(he(e,"blur",e,t),e.state.focused=!1,w(e.display.wrapper,"CodeMirror-focused")),clearInterval(e.display.blinker),setTimeout((function(){e.state.focused||(e.display.shift=!1)}),150))}function wr(e){for(var t=e.display,n=t.lineDiv.offsetTop,r=0;r.005||d<-.005)&&(We(i.line,l),kr(i.line),i.rest))for(var p=0;pe.display.sizerWidth){var h=Math.ceil(c/ir(e.display));h>e.display.maxLineLength&&(e.display.maxLineLength=h,e.display.maxLine=i.line,e.display.maxLineChanged=!0)}}}}function kr(e){if(e.widgets)for(var t=0;t=a&&(o=Je(t,qt(ze(t,l))-e.wrapper.clientHeight),a=l)}return{from:o,to:Math.max(a,o+1)}}function Nr(e,t){var n=e.display,r=rr(e.display);t.top<0&&(t.top=0);var i=e.curOp&&null!=e.curOp.scrollTop?e.curOp.scrollTop:n.scroller.scrollTop,o=Sn(e),a={};t.bottom-t.top>o&&(t.bottom=t.top+o);var s=e.doc.height+Cn(n),l=t.tops-r;if(t.topi+o){var u=Math.min(t.top,(c?s:t.bottom)-o);u!=i&&(a.scrollTop=u)}var f=e.options.fixedGutter?0:n.gutters.offsetWidth,d=e.curOp&&null!=e.curOp.scrollLeft?e.curOp.scrollLeft:n.scroller.scrollLeft-f,p=kn(e)-n.gutters.offsetWidth,h=t.right-t.left>p;return h&&(t.right=t.left+p),t.left<10?a.scrollLeft=0:t.leftp+d-3&&(a.scrollLeft=t.right+(h?0:10)-p),a}function Dr(e,t){null!=t&&(Lr(e),e.curOp.scrollTop=(null==e.curOp.scrollTop?e.doc.scrollTop:e.curOp.scrollTop)+t)}function Ir(e){Lr(e);var t=e.getCursor();e.curOp.scrollToPos={from:t,to:t,margin:e.options.cursorScrollMargin}}function Ar(e,t,n){null==t&&null==n||Lr(e),null!=t&&(e.curOp.scrollLeft=t),null!=n&&(e.curOp.scrollTop=n)}function Lr(e){var t=e.curOp.scrollToPos;t&&(e.curOp.scrollToPos=null,Fr(e,Kn(e,t.from),Kn(e,t.to),t.margin))}function Fr(e,t,n,r){var i=Nr(e,{left:Math.min(t.left,n.left),top:Math.min(t.top,n.top)-r,right:Math.max(t.right,n.right),bottom:Math.max(t.bottom,n.bottom)+r});Ar(e,i.scrollLeft,i.scrollTop)}function jr(e,t){Math.abs(e.doc.scrollTop-t)<2||(n||li(e,{top:t}),Mr(e,t,!0),n&&li(e),ri(e,100))}function Mr(e,t,n){t=Math.max(0,Math.min(e.display.scroller.scrollHeight-e.display.scroller.clientHeight,t)),(e.display.scroller.scrollTop!=t||n)&&(e.doc.scrollTop=t,e.display.scrollbars.setScrollTop(t),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t))}function Rr(e,t,n,r){t=Math.max(0,Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth)),(n?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)&&!r||(e.doc.scrollLeft=t,fi(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbars.setScrollLeft(t))}function Pr(e){var t=e.display,n=t.gutters.offsetWidth,r=Math.round(e.doc.height+Cn(e.display));return{clientHeight:t.scroller.clientHeight,viewHeight:t.wrapper.clientHeight,scrollWidth:t.scroller.scrollWidth,clientWidth:t.scroller.clientWidth,viewWidth:t.wrapper.clientWidth,barLeft:e.options.fixedGutter?n:0,docHeight:r,scrollHeight:r+wn(e)+t.barHeight,nativeBarWidth:t.nativeBarWidth,gutterWidth:n}}var Vr=function(e,t,n){this.cm=n;var r=this.vert=N("div",[N("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),i=this.horiz=N("div",[N("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar");r.tabIndex=i.tabIndex=-1,e(r),e(i),fe(r,"scroll",(function(){r.clientHeight&&t(r.scrollTop,"vertical")})),fe(i,"scroll",(function(){i.clientWidth&&t(i.scrollLeft,"horizontal")})),this.checkedZeroWidth=!1,a&&s<8&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")};Vr.prototype.update=function(e){var t=e.scrollWidth>e.clientWidth+1,n=e.scrollHeight>e.clientHeight+1,r=e.nativeBarWidth;if(n){this.vert.style.display="block",this.vert.style.bottom=t?r+"px":"0";var i=e.viewHeight-(t?r:0);this.vert.firstChild.style.height=Math.max(0,e.scrollHeight-e.clientHeight+i)+"px"}else this.vert.style.display="",this.vert.firstChild.style.height="0";if(t){this.horiz.style.display="block",this.horiz.style.right=n?r+"px":"0",this.horiz.style.left=e.barLeft+"px";var o=e.viewWidth-e.barLeft-(n?r:0);this.horiz.firstChild.style.width=Math.max(0,e.scrollWidth-e.clientWidth+o)+"px"}else this.horiz.style.display="",this.horiz.firstChild.style.width="0";return!this.checkedZeroWidth&&e.clientHeight>0&&(0==r&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:n?r:0,bottom:t?r:0}},Vr.prototype.setScrollLeft=function(e){this.horiz.scrollLeft!=e&&(this.horiz.scrollLeft=e),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,"horiz")},Vr.prototype.setScrollTop=function(e){this.vert.scrollTop!=e&&(this.vert.scrollTop=e),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,"vert")},Vr.prototype.zeroWidthHack=function(){var e=y&&!p?"12px":"18px";this.horiz.style.height=this.vert.style.width=e,this.horiz.style.pointerEvents=this.vert.style.pointerEvents="none",this.disableHoriz=new V,this.disableVert=new V},Vr.prototype.enableZeroWidthBar=function(e,t,n){e.style.pointerEvents="auto",t.set(1e3,(function r(){var i=e.getBoundingClientRect();("vert"==n?document.elementFromPoint(i.right-1,(i.top+i.bottom)/2):document.elementFromPoint((i.right+i.left)/2,i.bottom-1))!=e?e.style.pointerEvents="none":t.set(1e3,r)}))},Vr.prototype.clear=function(){var e=this.horiz.parentNode;e.removeChild(this.horiz),e.removeChild(this.vert)};var Ur=function(){};function Br(e,t){t||(t=Pr(e));var n=e.display.barWidth,r=e.display.barHeight;$r(e,t);for(var i=0;i<4&&n!=e.display.barWidth||r!=e.display.barHeight;i++)n!=e.display.barWidth&&e.options.lineWrapping&&wr(e),$r(e,Pr(e)),n=e.display.barWidth,r=e.display.barHeight}function $r(e,t){var n=e.display,r=n.scrollbars.update(t);n.sizer.style.paddingRight=(n.barWidth=r.right)+"px",n.sizer.style.paddingBottom=(n.barHeight=r.bottom)+"px",n.heightForcer.style.borderBottom=r.bottom+"px solid transparent",r.right&&r.bottom?(n.scrollbarFiller.style.display="block",n.scrollbarFiller.style.height=r.bottom+"px",n.scrollbarFiller.style.width=r.right+"px"):n.scrollbarFiller.style.display="",r.bottom&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(n.gutterFiller.style.display="block",n.gutterFiller.style.height=r.bottom+"px",n.gutterFiller.style.width=t.gutterWidth+"px"):n.gutterFiller.style.display=""}Ur.prototype.update=function(){return{bottom:0,right:0}},Ur.prototype.setScrollLeft=function(){},Ur.prototype.setScrollTop=function(){},Ur.prototype.clear=function(){};var qr={native:Vr,null:Ur};function Hr(e){e.display.scrollbars&&(e.display.scrollbars.clear(),e.display.scrollbars.addClass&&w(e.display.wrapper,e.display.scrollbars.addClass)),e.display.scrollbars=new qr[e.options.scrollbarStyle]((function(t){e.display.wrapper.insertBefore(t,e.display.scrollbarFiller),fe(t,"mousedown",(function(){e.state.focused&&setTimeout((function(){return e.display.input.focus()}),0)})),t.setAttribute("cm-not-content","true")}),(function(t,n){"horizontal"==n?Rr(e,t):jr(e,t)}),e),e.display.scrollbars.addClass&&L(e.display.wrapper,e.display.scrollbars.addClass)}var Gr=0;function zr(e){var t;e.curOp={cm:e,viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:0,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++Gr},t=e.curOp,an?an.ops.push(t):t.ownsGroup=an={ops:[t],delayedCallbacks:[]}}function Qr(e){var t=e.curOp;t&&function(e,t){var n=e.ownsGroup;if(n)try{!function(e){var t=e.delayedCallbacks,n=0;do{for(;n=n.viewTo)||n.maxLineChanged&&t.options.lineWrapping,e.update=e.mustUpdate&&new oi(t,e.mustUpdate&&{top:e.scrollTop,ensure:e.scrollToPos},e.forceUpdate)}function Wr(e){e.updatedDisplay=e.mustUpdate&&ai(e.cm,e.update)}function Yr(e){var t=e.cm,n=t.display;e.updatedDisplay&&wr(t),e.barMeasure=Pr(t),n.maxLineChanged&&!t.options.lineWrapping&&(e.adjustWidthTo=Dn(t,n.maxLine,n.maxLine.text.length).left+3,t.display.sizerWidth=e.adjustWidthTo,e.barMeasure.scrollWidth=Math.max(n.scroller.clientWidth,n.sizer.offsetLeft+e.adjustWidthTo+wn(t)+t.display.barWidth),e.maxScrollLeft=Math.max(0,n.sizer.offsetLeft+e.adjustWidthTo-kn(t))),(e.updatedDisplay||e.selectionChanged)&&(e.preparedSelection=n.input.prepareSelection())}function Jr(e){var t=e.cm;null!=e.adjustWidthTo&&(t.display.sizer.style.minWidth=e.adjustWidthTo+"px",e.maxScrollLeft(window.innerHeight||document.documentElement.clientHeight)&&(i=!1),null!=i&&!h){var o=N("div","​",null,"position: absolute;\n top: "+(t.top-n.viewOffset-_n(e.display))+"px;\n height: "+(t.bottom-t.top+wn(e)+n.barHeight)+"px;\n left: "+t.left+"px; width: "+Math.max(2,t.right-t.left)+"px;");e.display.lineSpace.appendChild(o),o.scrollIntoView(i),e.display.lineSpace.removeChild(o)}}}(t,function(e,t,n,r){var i;null==r&&(r=0),e.options.lineWrapping||t!=n||(n="before"==(t=t.ch?et(t.line,"before"==t.sticky?t.ch-1:t.ch,"after"):t).sticky?et(t.line,t.ch+1,"before"):t);for(var o=0;o<5;o++){var a=!1,s=Qn(e,t),l=n&&n!=t?Qn(e,n):s,c=Nr(e,i={left:Math.min(s.left,l.left),top:Math.min(s.top,l.top)-r,right:Math.max(s.left,l.left),bottom:Math.max(s.bottom,l.bottom)+r}),u=e.doc.scrollTop,f=e.doc.scrollLeft;if(null!=c.scrollTop&&(jr(e,c.scrollTop),Math.abs(e.doc.scrollTop-u)>1&&(a=!0)),null!=c.scrollLeft&&(Rr(e,c.scrollLeft),Math.abs(e.doc.scrollLeft-f)>1&&(a=!0)),!a)break}return i}(t,st(r,e.scrollToPos.from),st(r,e.scrollToPos.to),e.scrollToPos.margin));var i=e.maybeHiddenMarkers,o=e.maybeUnhiddenMarkers;if(i)for(var a=0;a=e.display.viewTo)){var n=+new Date+e.options.workTime,r=pt(e,t.highlightFrontier),i=[];t.iter(r.line,Math.min(t.first+t.size,e.display.viewTo+500),(function(o){if(r.line>=e.display.viewFrom){var a=o.styles,s=o.text.length>e.options.maxHighlightLength?$e(t.mode,r.state):null,l=ft(e,o,r,!0);s&&(r.state=s),o.styles=l.styles;var c=o.styleClasses,u=l.classes;u?o.styleClasses=u:c&&(o.styleClasses=null);for(var f=!a||a.length!=o.styles.length||c!=u&&(!c||!u||c.bgClass!=u.bgClass||c.textClass!=u.textClass),d=0;!f&&dn)return ri(e,e.options.workDelay),!0})),t.highlightFrontier=r.line,t.modeFrontier=Math.max(t.modeFrontier,r.line),i.length&&Zr(e,(function(){for(var t=0;t=n.viewFrom&&t.visible.to<=n.viewTo&&(null==n.updateLineNumbers||n.updateLineNumbers>=n.viewTo)&&n.renderedView==n.view&&0==mr(e))return!1;di(e)&&(pr(e),t.dims=or(e));var i=r.first+r.size,o=Math.max(t.visible.from-e.options.viewportMargin,r.first),a=Math.min(i,t.visible.to+e.options.viewportMargin);n.viewFroma&&n.viewTo-a<20&&(a=Math.min(i,n.viewTo)),Ot&&(o=Vt(e.doc,o),a=Ut(e.doc,a));var s=o!=n.viewFrom||a!=n.viewTo||n.lastWrapHeight!=t.wrapperHeight||n.lastWrapWidth!=t.wrapperWidth;!function(e,t,n){var r=e.display;0==r.view.length||t>=r.viewTo||n<=r.viewFrom?(r.view=on(e,t,n),r.viewFrom=t):(r.viewFrom>t?r.view=on(e,t,r.viewFrom).concat(r.view):r.viewFromn&&(r.view=r.view.slice(0,ur(e,n)))),r.viewTo=n}(e,o,a),n.viewOffset=qt(ze(e.doc,n.viewFrom)),e.display.mover.style.top=n.viewOffset+"px";var c=mr(e);if(!s&&0==c&&!t.force&&n.renderedView==n.view&&(null==n.updateLineNumbers||n.updateLineNumbers>=n.viewTo))return!1;var u=function(e){if(e.hasFocus())return null;var t=A();if(!t||!I(e.display.lineDiv,t))return null;var n={activeElt:t};if(window.getSelection){var r=window.getSelection();r.anchorNode&&r.extend&&I(e.display.lineDiv,r.anchorNode)&&(n.anchorNode=r.anchorNode,n.anchorOffset=r.anchorOffset,n.focusNode=r.focusNode,n.focusOffset=r.focusOffset)}return n}(e);return c>4&&(n.lineDiv.style.display="none"),function(e,t,n){var r=e.display,i=e.options.lineNumbers,o=r.lineDiv,a=o.firstChild;function s(t){var n=t.nextSibling;return l&&y&&e.display.currentWheelTarget==t?t.style.display="none":t.parentNode.removeChild(t),n}for(var c=r.view,u=r.viewFrom,f=0;f-1&&(p=!1),un(e,d,u,n)),p&&(k(d.lineNumber),d.lineNumber.appendChild(document.createTextNode(Ze(e.options,u)))),a=d.node.nextSibling}else{var h=vn(e,d,u,n);o.insertBefore(h,a)}u+=d.size}for(;a;)a=s(a)}(e,n.updateLineNumbers,t.dims),c>4&&(n.lineDiv.style.display=""),n.renderedView=n.view,function(e){if(e&&e.activeElt&&e.activeElt!=A()&&(e.activeElt.focus(),!/^(INPUT|TEXTAREA)$/.test(e.activeElt.nodeName)&&e.anchorNode&&I(document.body,e.anchorNode)&&I(document.body,e.focusNode))){var t=window.getSelection(),n=document.createRange();n.setEnd(e.anchorNode,e.anchorOffset),n.collapse(!1),t.removeAllRanges(),t.addRange(n),t.extend(e.focusNode,e.focusOffset)}}(u),k(n.cursorDiv),k(n.selectionDiv),n.gutters.style.height=n.sizer.style.minHeight=0,s&&(n.lastWrapHeight=t.wrapperHeight,n.lastWrapWidth=t.wrapperWidth,ri(e,400)),n.updateLineNumbers=null,!0}function si(e,t){for(var n=t.viewport,r=!0;;r=!1){if(r&&e.options.lineWrapping&&t.oldDisplayWidth!=kn(e))r&&(t.visible=Sr(e.display,e.doc,n));else if(n&&null!=n.top&&(n={top:Math.min(e.doc.height+Cn(e.display)-Sn(e),n.top)}),t.visible=Sr(e.display,e.doc,n),t.visible.from>=e.display.viewFrom&&t.visible.to<=e.display.viewTo)break;if(!ai(e,t))break;wr(e);var i=Pr(e);gr(e),Br(e,i),ui(e,i),t.force=!1}t.signal(e,"update",e),e.display.viewFrom==e.display.reportedViewFrom&&e.display.viewTo==e.display.reportedViewTo||(t.signal(e,"viewportChange",e,e.display.viewFrom,e.display.viewTo),e.display.reportedViewFrom=e.display.viewFrom,e.display.reportedViewTo=e.display.viewTo)}function li(e,t){var n=new oi(e,t);if(ai(e,n)){wr(e),si(e,n);var r=Pr(e);gr(e),Br(e,r),ui(e,r),n.finish()}}function ci(e){var t=e.gutters.offsetWidth;e.sizer.style.marginLeft=t+"px"}function ui(e,t){e.display.sizer.style.minHeight=t.docHeight+"px",e.display.heightForcer.style.top=t.docHeight+"px",e.display.gutters.style.height=t.docHeight+e.display.barHeight+wn(e)+"px"}function fi(e){var t=e.display,n=t.view;if(t.alignWidgets||t.gutters.firstChild&&e.options.fixedGutter){for(var r=ar(t)-t.scroller.scrollLeft+e.doc.scrollLeft,i=t.gutters.offsetWidth,o=r+"px",a=0;as.clientWidth,u=s.scrollHeight>s.clientHeight;if(i&&c||o&&u){if(o&&y&&l)e:for(var d=t.target,p=a.view;d!=s;d=d.parentNode)for(var h=0;h=0&&tt(e,r.to())<=0)return n}return-1};var _i=function(e,t){this.anchor=e,this.head=t};function Ci(e,t,n){var r=e&&e.options.selectionsMayTouch,i=t[n];t.sort((function(e,t){return tt(e.from(),t.from())})),n=U(t,i);for(var o=1;o0:l>=0){var c=ot(s.from(),a.from()),u=it(s.to(),a.to()),f=s.empty()?a.from()==a.head:s.from()==s.head;o<=n&&--n,t.splice(--o,2,new _i(f?u:c,f?c:u))}}return new Oi(t,n)}function xi(e,t){return new Oi([new _i(e,t||e)],0)}function wi(e){return e.text?et(e.from.line+e.text.length-1,K(e.text).length+(1==e.text.length?e.from.ch:0)):e.to}function ki(e,t){if(tt(e,t.from)<0)return e;if(tt(e,t.to)<=0)return wi(t);var n=e.line+t.text.length-(t.to.line-t.from.line)-1,r=e.ch;return e.line==t.to.line&&(r+=wi(t).ch-t.to.ch),et(n,r)}function Si(e,t){for(var n=[],r=0;r1&&e.remove(s.line+1,h-1),e.insert(s.line+1,v)}ln(e,"change",e,t)}function Fi(e,t,n){!function e(r,i,o){if(r.linked)for(var a=0;as-(e.cm?e.cm.options.historyEventDelay:500)||"*"==t.origin.charAt(0)))&&(o=function(e,t){return t?(Vi(e.done),K(e.done)):e.done.length&&!K(e.done).ranges?K(e.done):e.done.length>1&&!e.done[e.done.length-2].ranges?(e.done.pop(),K(e.done)):void 0}(i,i.lastOp==r)))a=K(o.changes),0==tt(t.from,t.to)&&0==tt(t.from,a.to)?a.to=wi(t):o.changes.push(Pi(e,t));else{var l=K(i.done);for(l&&l.ranges||$i(e.sel,i.done),o={changes:[Pi(e,t)],generation:i.generation},i.done.push(o);i.done.length>i.undoDepth;)i.done.shift(),i.done[0].ranges||i.done.shift()}i.done.push(n),i.generation=++i.maxGeneration,i.lastModTime=i.lastSelTime=s,i.lastOp=i.lastSelOp=r,i.lastOrigin=i.lastSelOrigin=t.origin,a||he(e,"historyAdded")}function Bi(e,t,n,r){var i=e.history,o=r&&r.origin;n==i.lastSelOp||o&&i.lastSelOrigin==o&&(i.lastModTime==i.lastSelTime&&i.lastOrigin==o||function(e,t,n,r){var i=t.charAt(0);return"*"==i||"+"==i&&n.ranges.length==r.ranges.length&&n.somethingSelected()==r.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}(e,o,K(i.done),t))?i.done[i.done.length-1]=t:$i(t,i.done),i.lastSelTime=+new Date,i.lastSelOrigin=o,i.lastSelOp=n,r&&!1!==r.clearRedo&&Vi(i.undone)}function $i(e,t){var n=K(t);n&&n.ranges&&n.equals(e)||t.push(e)}function qi(e,t,n,r){var i=t["spans_"+e.id],o=0;e.iter(Math.max(e.first,n),Math.min(e.first+e.size,r),(function(n){n.markedSpans&&((i||(i=t["spans_"+e.id]={}))[o]=n.markedSpans),++o}))}function Hi(e){if(!e)return null;for(var t,n=0;n-1&&(K(s)[f]=c[f],delete c[f])}}}return r}function Qi(e,t,n,r){if(r){var i=e.anchor;if(n){var o=tt(t,i)<0;o!=tt(n,i)<0?(i=t,t=n):o!=tt(t,n)<0&&(t=n)}return new _i(i,t)}return new _i(n||t,t)}function Ki(e,t,n,r,i){null==i&&(i=e.cm&&(e.cm.display.shift||e.extend)),Zi(e,new Oi([Qi(e.sel.primary(),t,n,i)],0),r)}function Wi(e,t,n){for(var r=[],i=e.cm&&(e.cm.display.shift||e.extend),o=0;o=t.ch:s.to>t.ch))){if(i&&(he(l,"beforeCursorEnter"),l.explicitlyCleared)){if(o.markedSpans){--a;continue}break}if(!l.atomic)continue;if(n){var f=l.find(r<0?1:-1),d=void 0;if((r<0?u:c)&&(f=ao(e,f,-r,f&&f.line==t.line?o:null)),f&&f.line==t.line&&(d=tt(f,n))&&(r<0?d<0:d>0))return io(e,f,t,r,i)}var p=l.find(r<0?-1:1);return(r<0?c:u)&&(p=ao(e,p,r,p.line==t.line?o:null)),p?io(e,p,t,r,i):null}}return t}function oo(e,t,n,r,i){var o=r||1,a=io(e,t,n,o,i)||!i&&io(e,t,n,o,!0)||io(e,t,n,-o,i)||!i&&io(e,t,n,-o,!0);return a||(e.cantEdit=!0,et(e.first,0))}function ao(e,t,n,r){return n<0&&0==t.ch?t.line>e.first?st(e,et(t.line-1)):null:n>0&&t.ch==(r||ze(e,t.line)).text.length?t.line0)){var u=[l,1],f=tt(c.from,s.from),d=tt(c.to,s.to);(f<0||!a.inclusiveLeft&&!f)&&u.push({from:c.from,to:s.from}),(d>0||!a.inclusiveRight&&!d)&&u.push({from:s.to,to:c.to}),i.splice.apply(i,u),l+=u.length-3}}return i}(e,t.from,t.to);if(r)for(var i=r.length-1;i>=0;--i)uo(e,{from:r[i].from,to:r[i].to,text:i?[""]:t.text,origin:t.origin});else uo(e,t)}}function uo(e,t){if(1!=t.text.length||""!=t.text[0]||0!=tt(t.from,t.to)){var n=Si(e,t);Ui(e,t,n,e.cm?e.cm.curOp.id:NaN),ho(e,t,n,wt(e,t));var r=[];Fi(e,(function(e,n){n||-1!=U(r,e.history)||(yo(e.history,t),r.push(e.history)),ho(e,t,null,wt(e,t))}))}}function fo(e,t,n){var r=e.cm&&e.cm.state.suppressEdits;if(!r||n){for(var i,o=e.history,a=e.sel,s="undo"==t?o.done:o.undone,l="undo"==t?o.undone:o.done,c=0;c=0;--p){var h=d(p);if(h)return h.v}}}}function po(e,t){if(0!=t&&(e.first+=t,e.sel=new Oi(W(e.sel.ranges,(function(e){return new _i(et(e.anchor.line+t,e.anchor.ch),et(e.head.line+t,e.head.ch))})),e.sel.primIndex),e.cm)){fr(e.cm,e.first,e.first-t,t);for(var n=e.cm.display,r=n.viewFrom;re.lastLine())){if(t.from.lineo&&(t={from:t.from,to:et(o,ze(e,o).text.length),text:[t.text[0]],origin:t.origin}),t.removed=Qe(e,t.from,t.to),n||(n=Si(e,t)),e.cm?function(e,t,n){var r=e.doc,i=e.display,o=t.from,a=t.to,s=!1,l=o.line;e.options.lineWrapping||(l=Ye(Pt(ze(r,o.line))),r.iter(l,a.line+1,(function(e){if(e==i.maxLine)return s=!0,!0}))),r.sel.contains(t.from,t.to)>-1&&ge(e),Li(r,t,n,sr(e)),e.options.lineWrapping||(r.iter(l,o.line+t.text.length,(function(e){var t=Ht(e);t>i.maxLineLength&&(i.maxLine=e,i.maxLineLength=t,i.maxLineChanged=!0,s=!1)})),s&&(e.curOp.updateMaxLine=!0)),function(e,t){if(e.modeFrontier=Math.min(e.modeFrontier,t),!(e.highlightFrontiern;r--){var i=ze(e,r).stateAfter;if(i&&(!(i instanceof ct)||r+i.lookAhead1||!(this.children[0]instanceof To))){var s=[];this.collapse(s),this.children=[new To(s)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t50){for(var a=i.lines.length%25+25,s=a;s10);e.parent.maybeSpill()}},iterN:function(e,t,n){for(var r=0;r0||0==a&&!1!==o.clearWhenEmpty)return o;if(o.replacedWith&&(o.collapsed=!0,o.widgetNode=D("span",[o.replacedWith],"CodeMirror-widget"),r.handleMouseEvents||o.widgetNode.setAttribute("cm-ignore-events","true"),r.insertLeft&&(o.widgetNode.insertLeft=!0)),o.collapsed){if(Rt(e,t.line,t,n,o)||t.line!=n.line&&Rt(e,n.line,t,n,o))throw new Error("Inserting collapsed marker partially overlapping an existing one");Ot=!0}o.addToHistory&&Ui(e,{from:t,to:n,origin:"markText"},e.sel,NaN);var s,l=t.line,c=e.cm;if(e.iter(l,n.line+1,(function(e){c&&o.collapsed&&!c.options.lineWrapping&&Pt(e)==c.display.maxLine&&(s=!0),o.collapsed&&l!=t.line&&We(e,0),function(e,t){e.markedSpans=e.markedSpans?e.markedSpans.concat([t]):[t],t.marker.attachLine(e)}(e,new _t(o,l==t.line?t.ch:null,l==n.line?n.ch:null)),++l})),o.collapsed&&e.iter(t.line,n.line+1,(function(t){Bt(e,t)&&We(t,0)})),o.clearOnEnter&&fe(o,"beforeCursorEnter",(function(){return o.clear()})),o.readOnly&&(Et=!0,(e.history.done.length||e.history.undone.length)&&e.clearHistory()),o.collapsed&&(o.id=++Co,o.atomic=!0),c){if(s&&(c.curOp.updateMaxLine=!0),o.collapsed)fr(c,t.line,n.line+1);else if(o.className||o.startStyle||o.endStyle||o.css||o.attributes||o.title)for(var u=t.line;u<=n.line;u++)dr(c,u,"text");o.atomic&&no(c.doc),ln(c,"markerAdded",c,o)}return o}xo.prototype.clear=function(){if(!this.explicitlyCleared){var e=this.doc.cm,t=e&&!e.curOp;if(t&&zr(e),ve(this,"clear")){var n=this.find();n&&ln(this,"clear",n.from,n.to)}for(var r=null,i=null,o=0;oe.display.maxLineLength&&(e.display.maxLine=c,e.display.maxLineLength=u,e.display.maxLineChanged=!0)}null!=r&&e&&this.collapsed&&fr(e,r,i+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&no(e.doc)),e&&ln(e,"markerCleared",e,this,r,i),t&&Qr(e),this.parent&&this.parent.clear()}},xo.prototype.find=function(e,t){var n,r;null==e&&"bookmark"==this.type&&(e=1);for(var i=0;i=0;l--)co(this,r[l]);s?Xi(this,s):this.cm&&Ir(this.cm)})),undo:ni((function(){fo(this,"undo")})),redo:ni((function(){fo(this,"redo")})),undoSelection:ni((function(){fo(this,"undo",!0)})),redoSelection:ni((function(){fo(this,"redo",!0)})),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,n=0,r=0;r=e.ch)&&t.push(i.marker.parent||i.marker)}return t},findMarks:function(e,t,n){e=st(this,e),t=st(this,t);var r=[],i=e.line;return this.iter(e.line,t.line+1,(function(o){var a=o.markedSpans;if(a)for(var s=0;s=l.to||null==l.from&&i!=e.line||null!=l.from&&i==t.line&&l.from>=t.ch||n&&!n(l.marker)||r.push(l.marker.parent||l.marker)}++i})),r},getAllMarks:function(){var e=[];return this.iter((function(t){var n=t.markedSpans;if(n)for(var r=0;re)return t=e,!0;e-=o,++n})),st(this,et(n,t))},indexFromPos:function(e){var t=(e=st(this,e)).ch;if(e.linet&&(t=e.from),null!=e.to&&e.to-1)return t.state.draggingText(e),void setTimeout((function(){return t.display.input.focus()}),20);try{var f=e.dataTransfer.getData("Text");if(f){var d;if(t.state.draggingText&&!t.state.draggingText.copy&&(d=t.listSelections()),eo(t.doc,xi(n,n)),d)for(var p=0;p=0;t--)mo(e.doc,"",r[t].from,r[t].to,"+delete");Ir(e)}))}function Xo(e,t,n){var r=ie(e.text,t+n,n);return r<0||r>e.text.length?null:r}function Zo(e,t,n){var r=Xo(e,t.ch,n);return null==r?null:new et(t.line,r,n<0?"after":"before")}function ea(e,t,n,r,i){if(e){"rtl"==t.doc.direction&&(i=-i);var o=ce(n,t.doc.direction);if(o){var a,s=i<0?K(o):o[0],l=i<0==(1==s.level)?"after":"before";if(s.level>0||"rtl"==t.doc.direction){var c=An(t,n);a=i<0?n.text.length-1:0;var u=Ln(t,c,a).top;a=oe((function(e){return Ln(t,c,e).top==u}),i<0==(1==s.level)?s.from:s.to-1,a),"before"==l&&(a=Xo(n,a,1))}else a=i<0?s.to:s.from;return new et(r,a,l)}}return new et(r,i<0?n.text.length:0,i<0?"before":"after")}qo.basic={Left:"goCharLeft",Right:"goCharRight",Up:"goLineUp",Down:"goLineDown",End:"goLineEnd",Home:"goLineStartSmart",PageUp:"goPageUp",PageDown:"goPageDown",Delete:"delCharAfter",Backspace:"delCharBefore","Shift-Backspace":"delCharBefore",Tab:"defaultTab","Shift-Tab":"indentAuto",Enter:"newlineAndIndent",Insert:"toggleOverwrite",Esc:"singleSelection"},qo.pcDefault={"Ctrl-A":"selectAll","Ctrl-D":"deleteLine","Ctrl-Z":"undo","Shift-Ctrl-Z":"redo","Ctrl-Y":"redo","Ctrl-Home":"goDocStart","Ctrl-End":"goDocEnd","Ctrl-Up":"goLineUp","Ctrl-Down":"goLineDown","Ctrl-Left":"goGroupLeft","Ctrl-Right":"goGroupRight","Alt-Left":"goLineStart","Alt-Right":"goLineEnd","Ctrl-Backspace":"delGroupBefore","Ctrl-Delete":"delGroupAfter","Ctrl-S":"save","Ctrl-F":"find","Ctrl-G":"findNext","Shift-Ctrl-G":"findPrev","Shift-Ctrl-F":"replace","Shift-Ctrl-R":"replaceAll","Ctrl-[":"indentLess","Ctrl-]":"indentMore","Ctrl-U":"undoSelection","Shift-Ctrl-U":"redoSelection","Alt-U":"redoSelection",fallthrough:"basic"},qo.emacsy={"Ctrl-F":"goCharRight","Ctrl-B":"goCharLeft","Ctrl-P":"goLineUp","Ctrl-N":"goLineDown","Alt-F":"goWordRight","Alt-B":"goWordLeft","Ctrl-A":"goLineStart","Ctrl-E":"goLineEnd","Ctrl-V":"goPageDown","Shift-Ctrl-V":"goPageUp","Ctrl-D":"delCharAfter","Ctrl-H":"delCharBefore","Alt-D":"delWordAfter","Alt-Backspace":"delWordBefore","Ctrl-K":"killLine","Ctrl-T":"transposeChars","Ctrl-O":"openLine"},qo.macDefault={"Cmd-A":"selectAll","Cmd-D":"deleteLine","Cmd-Z":"undo","Shift-Cmd-Z":"redo","Cmd-Y":"redo","Cmd-Home":"goDocStart","Cmd-Up":"goDocStart","Cmd-End":"goDocEnd","Cmd-Down":"goDocEnd","Alt-Left":"goGroupLeft","Alt-Right":"goGroupRight","Cmd-Left":"goLineLeft","Cmd-Right":"goLineRight","Alt-Backspace":"delGroupBefore","Ctrl-Alt-Backspace":"delGroupAfter","Alt-Delete":"delGroupAfter","Cmd-S":"save","Cmd-F":"find","Cmd-G":"findNext","Shift-Cmd-G":"findPrev","Cmd-Alt-F":"replace","Shift-Cmd-Alt-F":"replaceAll","Cmd-[":"indentLess","Cmd-]":"indentMore","Cmd-Backspace":"delWrappedLineLeft","Cmd-Delete":"delWrappedLineRight","Cmd-U":"undoSelection","Shift-Cmd-U":"redoSelection","Ctrl-Up":"goDocStart","Ctrl-Down":"goDocEnd",fallthrough:["basic","emacsy"]},qo.default=y?qo.macDefault:qo.pcDefault;var ta={selectAll:so,singleSelection:function(e){return e.setSelection(e.getCursor("anchor"),e.getCursor("head"),$)},killLine:function(e){return Jo(e,(function(t){if(t.empty()){var n=ze(e.doc,t.head.line).text.length;return t.head.ch==n&&t.head.line0)i=new et(i.line,i.ch+1),e.replaceRange(o.charAt(i.ch-1)+o.charAt(i.ch-2),et(i.line,i.ch-2),i,"+transpose");else if(i.line>e.doc.first){var a=ze(e.doc,i.line-1).text;a&&(i=new et(i.line,1),e.replaceRange(o.charAt(0)+e.doc.lineSeparator()+a.charAt(a.length-1),et(i.line-1,a.length-1),i,"+transpose"))}n.push(new _i(i,i))}e.setSelections(n)}))},newlineAndIndent:function(e){return Zr(e,(function(){for(var t=e.listSelections(),n=t.length-1;n>=0;n--)e.replaceRange(e.doc.lineSeparator(),t[n].anchor,t[n].head,"+input");t=e.listSelections();for(var r=0;r-1&&(tt((i=c.ranges[i]).from(),t)<0||t.xRel>0)&&(tt(i.to(),t)>0||t.xRel<0)?function(e,t,n,r){var i=e.display,o=!1,c=ei(e,(function(t){l&&(i.scroller.draggable=!1),e.state.draggingText=!1,pe(i.wrapper.ownerDocument,"mouseup",c),pe(i.wrapper.ownerDocument,"mousemove",u),pe(i.scroller,"dragstart",f),pe(i.scroller,"drop",c),o||(be(t),r.addNew||Ki(e.doc,n,null,null,r.extend),l&&!d||a&&9==s?setTimeout((function(){i.wrapper.ownerDocument.body.focus({preventScroll:!0}),i.input.focus()}),20):i.input.focus())})),u=function(e){o=o||Math.abs(t.clientX-e.clientX)+Math.abs(t.clientY-e.clientY)>=10},f=function(){return o=!0};l&&(i.scroller.draggable=!0),e.state.draggingText=c,c.copy=!r.moveOnDrag,i.scroller.dragDrop&&i.scroller.dragDrop(),fe(i.wrapper.ownerDocument,"mouseup",c),fe(i.wrapper.ownerDocument,"mousemove",u),fe(i.scroller,"dragstart",f),fe(i.scroller,"drop",c),_r(e),setTimeout((function(){return i.input.focus()}),20)}(e,r,t,o):function(e,t,n,r){var i=e.display,o=e.doc;be(t);var a,s,l=o.sel,c=l.ranges;if(r.addNew&&!r.extend?(s=o.sel.contains(n),a=s>-1?c[s]:new _i(n,n)):(a=o.sel.primary(),s=o.sel.primIndex),"rectangle"==r.unit)r.addNew||(a=new _i(n,n)),n=cr(e,t,!0,!0),s=-1;else{var u=va(e,n,r.unit);a=r.extend?Qi(a,u.anchor,u.head,r.extend):u}r.addNew?-1==s?(s=c.length,Zi(o,Ci(e,c.concat([a]),s),{scroll:!1,origin:"*mouse"})):c.length>1&&c[s].empty()&&"char"==r.unit&&!r.extend?(Zi(o,Ci(e,c.slice(0,s).concat(c.slice(s+1)),0),{scroll:!1,origin:"*mouse"}),l=o.sel):Yi(o,s,a,q):(s=0,Zi(o,new Oi([a],0),q),l=o.sel);var f=n;function d(t){if(0!=tt(f,t))if(f=t,"rectangle"==r.unit){for(var i=[],c=e.options.tabSize,u=P(ze(o,n.line).text,n.ch,c),d=P(ze(o,t.line).text,t.ch,c),p=Math.min(u,d),h=Math.max(u,d),m=Math.min(n.line,t.line),g=Math.min(e.lastLine(),Math.max(n.line,t.line));m<=g;m++){var v=ze(o,m).text,y=G(v,p,c);p==h?i.push(new _i(et(m,y),et(m,y))):v.length>y&&i.push(new _i(et(m,y),et(m,G(v,h,c))))}i.length||i.push(new _i(n,n)),Zi(o,Ci(e,l.ranges.slice(0,s).concat(i),s),{origin:"*mouse",scroll:!1}),e.scrollIntoView(t)}else{var b,T=a,E=va(e,t,r.unit),O=T.anchor;tt(E.anchor,O)>0?(b=E.head,O=ot(T.from(),E.anchor)):(b=E.anchor,O=it(T.to(),E.head));var _=l.ranges.slice(0);_[s]=function(e,t){var n=t.anchor,r=t.head,i=ze(e.doc,n.line);if(0==tt(n,r)&&n.sticky==r.sticky)return t;var o=ce(i);if(!o)return t;var a=se(o,n.ch,n.sticky),s=o[a];if(s.from!=n.ch&&s.to!=n.ch)return t;var l,c=a+(s.from==n.ch==(1!=s.level)?0:1);if(0==c||c==o.length)return t;if(r.line!=n.line)l=(r.line-n.line)*("ltr"==e.doc.direction?1:-1)>0;else{var u=se(o,r.ch,r.sticky),f=u-a||(r.ch-n.ch)*(1==s.level?-1:1);l=u==c-1||u==c?f<0:f>0}var d=o[c+(l?-1:0)],p=l==(1==d.level),h=p?d.from:d.to,m=p?"after":"before";return n.ch==h&&n.sticky==m?t:new _i(new et(n.line,h,m),r)}(e,new _i(st(o,O),b)),Zi(o,Ci(e,_,s),q)}}var p=i.wrapper.getBoundingClientRect(),h=0;function m(t){e.state.selectingText=!1,h=1/0,t&&(be(t),i.input.focus()),pe(i.wrapper.ownerDocument,"mousemove",g),pe(i.wrapper.ownerDocument,"mouseup",v),o.history.lastSelOrigin=null}var g=ei(e,(function(t){0!==t.buttons&&Ce(t)?function t(n){var a=++h,s=cr(e,n,!0,"rectangle"==r.unit);if(s)if(0!=tt(s,f)){e.curOp.focus=A(),d(s);var l=Sr(i,o);(s.line>=l.to||s.linep.bottom?20:0;c&&setTimeout(ei(e,(function(){h==a&&(i.scroller.scrollTop+=c,t(n))})),50)}}(t):m(t)})),v=ei(e,m);e.state.selectingText=v,fe(i.wrapper.ownerDocument,"mousemove",g),fe(i.wrapper.ownerDocument,"mouseup",v)}(e,r,t,o)}(t,r,o,e):_e(e)==n.scroller&&be(e):2==i?(r&&Ki(t.doc,r),setTimeout((function(){return n.input.focus()}),20)):3==i&&(_?t.display.input.onContextMenu(e):_r(t)))}}function va(e,t,n){if("char"==n)return new _i(t,t);if("word"==n)return e.findWordAt(t);if("line"==n)return new _i(et(t.line,0),st(e.doc,et(t.line+1,0)));var r=n(e,t);return new _i(r.from,r.to)}function ya(e,t,n,r){var i,o;if(t.touches)i=t.touches[0].clientX,o=t.touches[0].clientY;else try{i=t.clientX,o=t.clientY}catch(e){return!1}if(i>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;r&&be(t);var a=e.display,s=a.lineDiv.getBoundingClientRect();if(o>s.bottom||!ve(e,n))return Ee(t);o-=s.top-a.viewOffset;for(var l=0;l=i)return he(e,n,e,Je(e.doc,o),e.display.gutterSpecs[l].className,t),Ee(t)}}function ba(e,t){return ya(e,t,"gutterClick",!0)}function Ta(e,t){On(e.display,t)||function(e,t){return!!ve(e,"gutterContextMenu")&&ya(e,t,"gutterContextMenu",!1)}(e,t)||me(e,t,"contextmenu")||_||e.display.input.onContextMenu(t)}function Ea(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+e.options.theme.replace(/(^|\s)\s*/g," cm-s-"),Un(e)}ma.prototype.compare=function(e,t,n){return this.time+400>e&&0==tt(t,this.pos)&&n==this.button};var Oa={toString:function(){return"CodeMirror.Init"}},_a={},Ca={};function xa(e,t,n){if(!t!=!(n&&n!=Oa)){var r=e.display.dragFunctions,i=t?fe:pe;i(e.display.scroller,"dragstart",r.start),i(e.display.scroller,"dragenter",r.enter),i(e.display.scroller,"dragover",r.over),i(e.display.scroller,"dragleave",r.leave),i(e.display.scroller,"drop",r.drop)}}function wa(e){e.options.lineWrapping?(L(e.display.wrapper,"CodeMirror-wrap"),e.display.sizer.style.minWidth="",e.display.sizerWidth=null):(w(e.display.wrapper,"CodeMirror-wrap"),Gt(e)),lr(e),fr(e),Un(e),setTimeout((function(){return Br(e)}),100)}function ka(e,t){var n=this;if(!(this instanceof ka))return new ka(e,t);this.options=t=t?R(t):{},R(_a,t,!1);var r=t.value;"string"==typeof r?r=new Io(r,t.mode,null,t.lineSeparator,t.direction):t.mode&&(r.modeOption=t.mode),this.doc=r;var i=new ka.inputStyles[t.inputStyle](this),o=this.display=new gi(e,r,i,t);for(var c in o.wrapper.CodeMirror=this,Ea(this),t.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),Hr(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:-1,cutIncoming:-1,selectingText:!1,draggingText:!1,highlight:new V,keySeq:null,specialChars:null},t.autofocus&&!v&&o.input.focus(),a&&s<11&&setTimeout((function(){return n.display.input.reset(!0)}),20),function(e){var t=e.display;fe(t.scroller,"mousedown",ei(e,ga)),fe(t.scroller,"dblclick",a&&s<11?ei(e,(function(t){if(!me(e,t)){var n=cr(e,t);if(n&&!ba(e,t)&&!On(e.display,t)){be(t);var r=e.findWordAt(n);Ki(e.doc,r.anchor,r.head)}}})):function(t){return me(e,t)||be(t)}),fe(t.scroller,"contextmenu",(function(t){return Ta(e,t)})),fe(t.input.getField(),"contextmenu",(function(n){t.scroller.contains(n.target)||Ta(e,n)}));var n,r={end:0};function i(){t.activeTouch&&(n=setTimeout((function(){return t.activeTouch=null}),1e3),(r=t.activeTouch).end=+new Date)}function o(e,t){if(null==t.left)return!0;var n=t.left-e.left,r=t.top-e.top;return n*n+r*r>400}fe(t.scroller,"touchstart",(function(i){if(!me(e,i)&&!function(e){if(1!=e.touches.length)return!1;var t=e.touches[0];return t.radiusX<=1&&t.radiusY<=1}(i)&&!ba(e,i)){t.input.ensurePolled(),clearTimeout(n);var o=+new Date;t.activeTouch={start:o,moved:!1,prev:o-r.end<=300?r:null},1==i.touches.length&&(t.activeTouch.left=i.touches[0].pageX,t.activeTouch.top=i.touches[0].pageY)}})),fe(t.scroller,"touchmove",(function(){t.activeTouch&&(t.activeTouch.moved=!0)})),fe(t.scroller,"touchend",(function(n){var r=t.activeTouch;if(r&&!On(t,n)&&null!=r.left&&!r.moved&&new Date-r.start<300){var a,s=e.coordsChar(t.activeTouch,"page");a=!r.prev||o(r,r.prev)?new _i(s,s):!r.prev.prev||o(r,r.prev.prev)?e.findWordAt(s):new _i(et(s.line,0),st(e.doc,et(s.line+1,0))),e.setSelection(a.anchor,a.head),e.focus(),be(n)}i()})),fe(t.scroller,"touchcancel",i),fe(t.scroller,"scroll",(function(){t.scroller.clientHeight&&(jr(e,t.scroller.scrollTop),Rr(e,t.scroller.scrollLeft,!0),he(e,"scroll",e))})),fe(t.scroller,"mousewheel",(function(t){return Ei(e,t)})),fe(t.scroller,"DOMMouseScroll",(function(t){return Ei(e,t)})),fe(t.wrapper,"scroll",(function(){return t.wrapper.scrollTop=t.wrapper.scrollLeft=0})),t.dragFunctions={enter:function(t){me(e,t)||Oe(t)},over:function(t){me(e,t)||(function(e,t){var n=cr(e,t);if(n){var r=document.createDocumentFragment();yr(e,n,r),e.display.dragCursor||(e.display.dragCursor=N("div",null,"CodeMirror-cursors CodeMirror-dragcursors"),e.display.lineSpace.insertBefore(e.display.dragCursor,e.display.cursorDiv)),S(e.display.dragCursor,r)}}(e,t),Oe(t))},start:function(t){return function(e,t){if(a&&(!e.state.draggingText||+new Date-Ao<100))Oe(t);else if(!me(e,t)&&!On(e.display,t)&&(t.dataTransfer.setData("Text",e.getSelection()),t.dataTransfer.effectAllowed="copyMove",t.dataTransfer.setDragImage&&!d)){var n=N("img",null,null,"position: fixed; left: 0; top: 0;");n.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",f&&(n.width=n.height=1,e.display.wrapper.appendChild(n),n._top=n.offsetTop),t.dataTransfer.setDragImage(n,0,0),f&&n.parentNode.removeChild(n)}}(e,t)},drop:ei(e,Lo),leave:function(t){me(e,t)||Fo(e)}};var l=t.input.getField();fe(l,"keyup",(function(t){return fa.call(e,t)})),fe(l,"keydown",ei(e,ua)),fe(l,"keypress",ei(e,da)),fe(l,"focus",(function(t){return Cr(e,t)})),fe(l,"blur",(function(t){return xr(e,t)}))}(this),Ro(),zr(this),this.curOp.forceUpdate=!0,ji(this,r),t.autofocus&&!v||this.hasFocus()?setTimeout((function(){n.hasFocus()&&!n.state.focused&&Cr(n)}),20):xr(this),Ca)Ca.hasOwnProperty(c)&&Ca[c](this,t[c],Oa);di(this),t.finishInit&&t.finishInit(this);for(var u=0;u150)){if(!r)return;n="prev"}}else c=0,n="not";"prev"==n?c=t>o.first?P(ze(o,t-1).text,null,a):0:"add"==n?c=l+e.options.indentUnit:"subtract"==n?c=l-e.options.indentUnit:"number"==typeof n&&(c=l+n),c=Math.max(0,c);var f="",d=0;if(e.options.indentWithTabs)for(var p=Math.floor(c/a);p;--p)d+=a,f+="\t";if(da,l=Ie(t),c=null;if(s&&r.ranges.length>1)if(Da&&Da.text.join("\n")==t){if(r.ranges.length%Da.text.length==0){c=[];for(var u=0;u=0;d--){var p=r.ranges[d],h=p.from(),m=p.to();p.empty()&&(n&&n>0?h=et(h.line,h.ch-n):e.state.overwrite&&!s?m=et(m.line,Math.min(ze(o,m.line).text.length,m.ch+K(l).length)):s&&Da&&Da.lineWise&&Da.text.join("\n")==l.join("\n")&&(h=m=et(h.line,0)));var g={from:h,to:m,text:c?c[d%c.length]:l,origin:i||(s?"paste":e.state.cutIncoming>a?"cut":"+input")};co(e.doc,g),ln(e,"inputRead",e,g)}t&&!s&&Fa(e,t),Ir(e),e.curOp.updateInput<2&&(e.curOp.updateInput=f),e.curOp.typing=!0,e.state.pasteIncoming=e.state.cutIncoming=-1}function La(e,t){var n=e.clipboardData&&e.clipboardData.getData("Text");if(n)return e.preventDefault(),t.isReadOnly()||t.options.disableInput||Zr(t,(function(){return Aa(t,n,0,null,"paste")})),!0}function Fa(e,t){if(e.options.electricChars&&e.options.smartIndent)for(var n=e.doc.sel,r=n.ranges.length-1;r>=0;r--){var i=n.ranges[r];if(!(i.head.ch>100||r&&n.ranges[r-1].head.line==i.head.line)){var o=e.getModeAt(i.head),a=!1;if(o.electricChars){for(var s=0;s-1){a=Na(e,i.head.line,"smart");break}}else o.electricInput&&o.electricInput.test(ze(e.doc,i.head.line).text.slice(0,i.head.ch))&&(a=Na(e,i.head.line,"smart"));a&&ln(e,"electricInput",e,i.head.line)}}}function ja(e){for(var t=[],n=[],r=0;r0?0:-1));a=isNaN(u)?null:new et(t.line,Math.max(0,Math.min(s.text.length,t.ch+n*(u>=55296&&u<56320?2:1))),-n)}else a=i?function(e,t,n,r){var i=ce(t,e.doc.direction);if(!i)return Zo(t,n,r);n.ch>=t.text.length?(n.ch=t.text.length,n.sticky="before"):n.ch<=0&&(n.ch=0,n.sticky="after");var o=se(i,n.ch,n.sticky),a=i[o];if("ltr"==e.doc.direction&&a.level%2==0&&(r>0?a.to>n.ch:a.from=a.from&&d>=u.begin)){var p=f?"before":"after";return new et(n.line,d,p)}}var h=function(e,t,r){for(var o=function(e,t){return t?new et(n.line,l(e,1),"before"):new et(n.line,e,"after")};e>=0&&e0==(1!=a.level),c=s?r.begin:l(r.end,-1);if(a.from<=c&&c0?u.end:l(u.begin,-1);return null==g||r>0&&g==t.text.length||!(m=h(r>0?0:i.length-1,r,c(g)))?null:m}(e.cm,s,t,n):Zo(s,t,n);if(null==a){if(o||(c=t.line+l)=e.first+e.size||(t=new et(c,t.ch,t.sticky),!(s=ze(e,c))))return!1;t=ea(i,e.cm,s,t.line,l)}else t=a;return!0}if("char"==r||"codepoint"==r)c();else if("column"==r)c(!0);else if("word"==r||"group"==r)for(var u=null,f="group"==r,d=e.cm&&e.cm.getHelper(t,"wordChars"),p=!0;!(n<0)||c(!p);p=!1){var h=s.text.charAt(t.ch)||"\n",m=ee(h,d)?"w":f&&"\n"==h?"n":!f||/\s/.test(h)?null:"p";if(!f||p||m||(m="s"),u&&u!=m){n<0&&(n=1,c(),t.sticky="after");break}if(m&&(u=m),n>0&&!c(!p))break}var g=oo(e,t,o,a,!0);return nt(o,g)&&(g.hitSide=!0),g}function Va(e,t,n,r){var i,o,a=e.doc,s=t.left;if("page"==r){var l=Math.min(e.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight),c=Math.max(l-.5*rr(e.display),3);i=(n>0?t.bottom:t.top)+n*c}else"line"==r&&(i=n>0?t.bottom+3:t.top-3);for(;(o=Yn(e,s,i)).outside;){if(n<0?i<=0:i>=a.height){o.hitSide=!0;break}i+=5*n}return o}var Ua=function(e){this.cm=e,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new V,this.composing=null,this.gracePeriod=!1,this.readDOMTimeout=null};function Ba(e,t){var n=In(e,t.line);if(!n||n.hidden)return null;var r=ze(e.doc,t.line),i=Nn(n,r,t.line),o=ce(r,e.doc.direction),a="left";o&&(a=se(o,t.ch)%2?"right":"left");var s=Mn(i.map,t.ch,a);return s.offset="right"==s.collapse?s.end:s.start,s}function $a(e,t){return t&&(e.bad=!0),e}function qa(e,t,n){var r;if(t==e.display.lineDiv){if(!(r=e.display.lineDiv.childNodes[n]))return $a(e.clipPos(et(e.display.viewTo-1)),!0);t=null,n=0}else for(r=t;;r=r.parentNode){if(!r||r==e.display.lineDiv)return null;if(r.parentNode&&r.parentNode==e.display.lineDiv)break}for(var i=0;i=t.display.viewTo||o.line=t.display.viewFrom&&Ba(t,i)||{node:l[0].measure.map[2],offset:0},u=o.liner.firstLine()&&(a=et(a.line-1,ze(r.doc,a.line-1).length)),s.ch==ze(r.doc,s.line).text.length&&s.linei.viewTo-1)return!1;a.line==i.viewFrom||0==(e=ur(r,a.line))?(t=Ye(i.view[0].line),n=i.view[0].node):(t=Ye(i.view[e].line),n=i.view[e-1].node.nextSibling);var l,c,u=ur(r,s.line);if(u==i.view.length-1?(l=i.viewTo-1,c=i.lineDiv.lastChild):(l=Ye(i.view[u+1].line)-1,c=i.view[u+1].node.previousSibling),!n)return!1;for(var f=r.doc.splitLines(function(e,t,n,r,i){var o="",a=!1,s=e.doc.lineSeparator(),l=!1;function c(){a&&(o+=s,l&&(o+=s),a=l=!1)}function u(e){e&&(c(),o+=e)}function f(t){if(1==t.nodeType){var n=t.getAttribute("cm-text");if(n)return void u(n);var o,d=t.getAttribute("cm-marker");if(d){var p=e.findMarks(et(r,0),et(i+1,0),(g=+d,function(e){return e.id==g}));return void(p.length&&(o=p[0].find(0))&&u(Qe(e.doc,o.from,o.to).join(s)))}if("false"==t.getAttribute("contenteditable"))return;var h=/^(pre|div|p|li|table|br)$/i.test(t.nodeName);if(!/^br$/i.test(t.nodeName)&&0==t.textContent.length)return;h&&c();for(var m=0;m1&&d.length>1;)if(K(f)==K(d))f.pop(),d.pop(),l--;else{if(f[0]!=d[0])break;f.shift(),d.shift(),t++}for(var p=0,h=0,m=f[0],g=d[0],v=Math.min(m.length,g.length);pa.ch&&y.charCodeAt(y.length-h-1)==b.charCodeAt(b.length-h-1);)p--,h++;f[f.length-1]=y.slice(0,y.length-h).replace(/^\u200b+/,""),f[0]=f[0].slice(p).replace(/\u200b+$/,"");var E=et(t,p),O=et(l,d.length?K(d).length-h:0);return f.length>1||f[0]||tt(E,O)?(mo(r.doc,f,E,O,"+input"),!0):void 0},Ua.prototype.ensurePolled=function(){this.forceCompositionEnd()},Ua.prototype.reset=function(){this.forceCompositionEnd()},Ua.prototype.forceCompositionEnd=function(){this.composing&&(clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())},Ua.prototype.readFromDOMSoon=function(){var e=this;null==this.readDOMTimeout&&(this.readDOMTimeout=setTimeout((function(){if(e.readDOMTimeout=null,e.composing){if(!e.composing.done)return;e.composing=null}e.updateFromDOM()}),80))},Ua.prototype.updateFromDOM=function(){var e=this;!this.cm.isReadOnly()&&this.pollContent()||Zr(this.cm,(function(){return fr(e.cm)}))},Ua.prototype.setUneditable=function(e){e.contentEditable="false"},Ua.prototype.onKeyPress=function(e){0==e.charCode||this.composing||(e.preventDefault(),this.cm.isReadOnly()||ei(this.cm,Aa)(this.cm,String.fromCharCode(null==e.charCode?e.keyCode:e.charCode),0))},Ua.prototype.readOnlyChanged=function(e){this.div.contentEditable=String("nocursor"!=e)},Ua.prototype.onContextMenu=function(){},Ua.prototype.resetPosition=function(){},Ua.prototype.needsContentAttribute=!0;var Ga=function(e){this.cm=e,this.prevInput="",this.pollingFast=!1,this.polling=new V,this.hasSelection=!1,this.composing=null};Ga.prototype.init=function(e){var t=this,n=this,r=this.cm;this.createField(e);var i=this.textarea;function o(e){if(!me(r,e)){if(r.somethingSelected())Ia({lineWise:!1,text:r.getSelections()});else{if(!r.options.lineWiseCopyCut)return;var t=ja(r);Ia({lineWise:!0,text:t.text}),"cut"==e.type?r.setSelections(t.ranges,null,$):(n.prevInput="",i.value=t.text.join("\n"),j(i))}"cut"==e.type&&(r.state.cutIncoming=+new Date)}}e.wrapper.insertBefore(this.wrapper,e.wrapper.firstChild),m&&(i.style.width="0px"),fe(i,"input",(function(){a&&s>=9&&t.hasSelection&&(t.hasSelection=null),n.poll()})),fe(i,"paste",(function(e){me(r,e)||La(e,r)||(r.state.pasteIncoming=+new Date,n.fastPoll())})),fe(i,"cut",o),fe(i,"copy",o),fe(e.scroller,"paste",(function(t){if(!On(e,t)&&!me(r,t)){if(!i.dispatchEvent)return r.state.pasteIncoming=+new Date,void n.focus();var o=new Event("paste");o.clipboardData=t.clipboardData,i.dispatchEvent(o)}})),fe(e.lineSpace,"selectstart",(function(t){On(e,t)||be(t)})),fe(i,"compositionstart",(function(){var e=r.getCursor("from");n.composing&&n.composing.range.clear(),n.composing={start:e,range:r.markText(e,r.getCursor("to"),{className:"CodeMirror-composing"})}})),fe(i,"compositionend",(function(){n.composing&&(n.poll(),n.composing.range.clear(),n.composing=null)}))},Ga.prototype.createField=function(e){this.wrapper=Ra(),this.textarea=this.wrapper.firstChild},Ga.prototype.screenReaderLabelChanged=function(e){e?this.textarea.setAttribute("aria-label",e):this.textarea.removeAttribute("aria-label")},Ga.prototype.prepareSelection=function(){var e=this.cm,t=e.display,n=e.doc,r=vr(e);if(e.options.moveInputWithCursor){var i=Qn(e,n.sel.primary().head,"div"),o=t.wrapper.getBoundingClientRect(),a=t.lineDiv.getBoundingClientRect();r.teTop=Math.max(0,Math.min(t.wrapper.clientHeight-10,i.top+a.top-o.top)),r.teLeft=Math.max(0,Math.min(t.wrapper.clientWidth-10,i.left+a.left-o.left))}return r},Ga.prototype.showSelection=function(e){var t=this.cm.display;S(t.cursorDiv,e.cursors),S(t.selectionDiv,e.selection),null!=e.teTop&&(this.wrapper.style.top=e.teTop+"px",this.wrapper.style.left=e.teLeft+"px")},Ga.prototype.reset=function(e){if(!this.contextMenuPending&&!this.composing){var t=this.cm;if(t.somethingSelected()){this.prevInput="";var n=t.getSelection();this.textarea.value=n,t.state.focused&&j(this.textarea),a&&s>=9&&(this.hasSelection=n)}else e||(this.prevInput=this.textarea.value="",a&&s>=9&&(this.hasSelection=null))}},Ga.prototype.getField=function(){return this.textarea},Ga.prototype.supportsTouch=function(){return!1},Ga.prototype.focus=function(){if("nocursor"!=this.cm.options.readOnly&&(!v||A()!=this.textarea))try{this.textarea.focus()}catch(e){}},Ga.prototype.blur=function(){this.textarea.blur()},Ga.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0},Ga.prototype.receivedFocus=function(){this.slowPoll()},Ga.prototype.slowPoll=function(){var e=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,(function(){e.poll(),e.cm.state.focused&&e.slowPoll()}))},Ga.prototype.fastPoll=function(){var e=!1,t=this;t.pollingFast=!0,t.polling.set(20,(function n(){t.poll()||e?(t.pollingFast=!1,t.slowPoll()):(e=!0,t.polling.set(60,n))}))},Ga.prototype.poll=function(){var e=this,t=this.cm,n=this.textarea,r=this.prevInput;if(this.contextMenuPending||!t.state.focused||Ae(n)&&!r&&!this.composing||t.isReadOnly()||t.options.disableInput||t.state.keySeq)return!1;var i=n.value;if(i==r&&!t.somethingSelected())return!1;if(a&&s>=9&&this.hasSelection===i||y&&/[\uf700-\uf7ff]/.test(i))return t.display.input.reset(),!1;if(t.doc.sel==t.display.selForContextMenu){var o=i.charCodeAt(0);if(8203!=o||r||(r="​"),8666==o)return this.reset(),this.cm.execCommand("undo")}for(var l=0,c=Math.min(r.length,i.length);l1e3||i.indexOf("\n")>-1?n.value=e.prevInput="":e.prevInput=i,e.composing&&(e.composing.range.clear(),e.composing.range=t.markText(e.composing.start,t.getCursor("to"),{className:"CodeMirror-composing"}))})),!0},Ga.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},Ga.prototype.onKeyPress=function(){a&&s>=9&&(this.hasSelection=null),this.fastPoll()},Ga.prototype.onContextMenu=function(e){var t=this,n=t.cm,r=n.display,i=t.textarea;t.contextMenuPending&&t.contextMenuPending();var o=cr(n,e),c=r.scroller.scrollTop;if(o&&!f){n.options.resetSelectionOnContextMenu&&-1==n.doc.sel.contains(o)&&ei(n,Zi)(n.doc,xi(o),$);var u,d=i.style.cssText,p=t.wrapper.style.cssText,h=t.wrapper.offsetParent.getBoundingClientRect();if(t.wrapper.style.cssText="position: static",i.style.cssText="position: absolute; width: 30px; height: 30px;\n top: "+(e.clientY-h.top-5)+"px; left: "+(e.clientX-h.left-5)+"px;\n z-index: 1000; background: "+(a?"rgba(255, 255, 255, .05)":"transparent")+";\n outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);",l&&(u=window.scrollY),r.input.focus(),l&&window.scrollTo(null,u),r.input.reset(),n.somethingSelected()||(i.value=t.prevInput=" "),t.contextMenuPending=v,r.selForContextMenu=n.doc.sel,clearTimeout(r.detectingSelectAll),a&&s>=9&&g(),_){Oe(e);var m=function(){pe(window,"mouseup",m),setTimeout(v,20)};fe(window,"mouseup",m)}else setTimeout(v,50)}function g(){if(null!=i.selectionStart){var e=n.somethingSelected(),o="​"+(e?i.value:"");i.value="⇚",i.value=o,t.prevInput=e?"":"​",i.selectionStart=1,i.selectionEnd=o.length,r.selForContextMenu=n.doc.sel}}function v(){if(t.contextMenuPending==v&&(t.contextMenuPending=!1,t.wrapper.style.cssText=p,i.style.cssText=d,a&&s<9&&r.scrollbars.setScrollTop(r.scroller.scrollTop=c),null!=i.selectionStart)){(!a||a&&s<9)&&g();var e=0,o=function(){r.selForContextMenu==n.doc.sel&&0==i.selectionStart&&i.selectionEnd>0&&"​"==t.prevInput?ei(n,so)(n):e++<10?r.detectingSelectAll=setTimeout(o,500):(r.selForContextMenu=null,r.input.reset())};r.detectingSelectAll=setTimeout(o,200)}}},Ga.prototype.readOnlyChanged=function(e){e||this.reset(),this.textarea.disabled="nocursor"==e,this.textarea.readOnly=!!e},Ga.prototype.setUneditable=function(){},Ga.prototype.needsContentAttribute=!1,function(e){var t=e.optionHandlers;function n(n,r,i,o){e.defaults[n]=r,i&&(t[n]=o?function(e,t,n){n!=Oa&&i(e,t,n)}:i)}e.defineOption=n,e.Init=Oa,n("value","",(function(e,t){return e.setValue(t)}),!0),n("mode",null,(function(e,t){e.doc.modeOption=t,Di(e)}),!0),n("indentUnit",2,Di,!0),n("indentWithTabs",!1),n("smartIndent",!0),n("tabSize",4,(function(e){Ii(e),Un(e),fr(e)}),!0),n("lineSeparator",null,(function(e,t){if(e.doc.lineSep=t,t){var n=[],r=e.doc.first;e.doc.iter((function(e){for(var i=0;;){var o=e.text.indexOf(t,i);if(-1==o)break;i=o+t.length,n.push(et(r,o))}r++}));for(var i=n.length-1;i>=0;i--)mo(e.doc,t,n[i],et(n[i].line,n[i].ch+t.length))}})),n("specialChars",/[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b-\u200c\u200e\u200f\u2028\u2029\ufeff\ufff9-\ufffc]/g,(function(e,t,n){e.state.specialChars=new RegExp(t.source+(t.test("\t")?"":"|\t"),"g"),n!=Oa&&e.refresh()})),n("specialCharPlaceholder",Xt,(function(e){return e.refresh()}),!0),n("electricChars",!0),n("inputStyle",v?"contenteditable":"textarea",(function(){throw new Error("inputStyle can not (yet) be changed in a running editor")}),!0),n("spellcheck",!1,(function(e,t){return e.getInputField().spellcheck=t}),!0),n("autocorrect",!1,(function(e,t){return e.getInputField().autocorrect=t}),!0),n("autocapitalize",!1,(function(e,t){return e.getInputField().autocapitalize=t}),!0),n("rtlMoveVisually",!T),n("wholeLineUpdateBefore",!0),n("theme","default",(function(e){Ea(e),mi(e)}),!0),n("keyMap","default",(function(e,t,n){var r=Yo(t),i=n!=Oa&&Yo(n);i&&i.detach&&i.detach(e,r),r.attach&&r.attach(e,i||null)})),n("extraKeys",null),n("configureMouse",null),n("lineWrapping",!1,wa,!0),n("gutters",[],(function(e,t){e.display.gutterSpecs=pi(t,e.options.lineNumbers),mi(e)}),!0),n("fixedGutter",!0,(function(e,t){e.display.gutters.style.left=t?ar(e.display)+"px":"0",e.refresh()}),!0),n("coverGutterNextToScrollbar",!1,(function(e){return Br(e)}),!0),n("scrollbarStyle","native",(function(e){Hr(e),Br(e),e.display.scrollbars.setScrollTop(e.doc.scrollTop),e.display.scrollbars.setScrollLeft(e.doc.scrollLeft)}),!0),n("lineNumbers",!1,(function(e,t){e.display.gutterSpecs=pi(e.options.gutters,t),mi(e)}),!0),n("firstLineNumber",1,mi,!0),n("lineNumberFormatter",(function(e){return e}),mi,!0),n("showCursorWhenSelecting",!1,gr,!0),n("resetSelectionOnContextMenu",!0),n("lineWiseCopyCut",!0),n("pasteLinesPerSelection",!0),n("selectionsMayTouch",!1),n("readOnly",!1,(function(e,t){"nocursor"==t&&(xr(e),e.display.input.blur()),e.display.input.readOnlyChanged(t)})),n("screenReaderLabel",null,(function(e,t){t=""===t?null:t,e.display.input.screenReaderLabelChanged(t)})),n("disableInput",!1,(function(e,t){t||e.display.input.reset()}),!0),n("dragDrop",!0,xa),n("allowDropFileTypes",null),n("cursorBlinkRate",530),n("cursorScrollMargin",0),n("cursorHeight",1,gr,!0),n("singleCursorHeightPerLine",!0,gr,!0),n("workTime",100),n("workDelay",100),n("flattenSpans",!0,Ii,!0),n("addModeClass",!1,Ii,!0),n("pollInterval",100),n("undoDepth",200,(function(e,t){return e.doc.history.undoDepth=t})),n("historyEventDelay",1250),n("viewportMargin",10,(function(e){return e.refresh()}),!0),n("maxHighlightLength",1e4,Ii,!0),n("moveInputWithCursor",!0,(function(e,t){t||e.display.input.resetPosition()})),n("tabindex",null,(function(e,t){return e.display.input.getField().tabIndex=t||""})),n("autofocus",null),n("direction","ltr",(function(e,t){return e.doc.setDirection(t)}),!0),n("phrases",null)}(ka),function(e){var t=e.optionHandlers,n=e.helpers={};e.prototype={constructor:e,focus:function(){window.focus(),this.display.input.focus()},setOption:function(e,n){var r=this.options,i=r[e];r[e]==n&&"mode"!=e||(r[e]=n,t.hasOwnProperty(e)&&ei(this,t[e])(this,n,i),he(this,"optionChange",this,e))},getOption:function(e){return this.options[e]},getDoc:function(){return this.doc},addKeyMap:function(e,t){this.state.keyMaps[t?"push":"unshift"](Yo(e))},removeKeyMap:function(e){for(var t=this.state.keyMaps,n=0;nn&&(Na(this,i.head.line,e,!0),n=i.head.line,r==this.doc.sel.primIndex&&Ir(this));else{var o=i.from(),a=i.to(),s=Math.max(n,o.line);n=Math.min(this.lastLine(),a.line-(a.ch?0:1))+1;for(var l=s;l0&&Yi(this.doc,r,new _i(o,c[r].to()),$)}}})),getTokenAt:function(e,t){return yt(this,e,t)},getLineTokens:function(e,t){return yt(this,et(e),t,!0)},getTokenTypeAt:function(e){e=st(this.doc,e);var t,n=dt(this,ze(this.doc,e.line)),r=0,i=(n.length-1)/2,o=e.ch;if(0==o)t=n[2];else for(;;){var a=r+i>>1;if((a?n[2*a-1]:0)>=o)i=a;else{if(!(n[2*a+1]o&&(e=o,i=!0),r=ze(this.doc,e)}else r=e;return Hn(this,r,{top:0,left:0},t||"page",n||i).top+(i?this.doc.height-qt(r):0)},defaultTextHeight:function(){return rr(this.display)},defaultCharWidth:function(){return ir(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(e,t,n,r,i){var o,a,s,l=this.display,c=(e=Qn(this,st(this.doc,e))).bottom,u=e.left;if(t.style.position="absolute",t.setAttribute("cm-ignore-events","true"),this.display.input.setUneditable(t),l.sizer.appendChild(t),"over"==r)c=e.top;else if("above"==r||"near"==r){var f=Math.max(l.wrapper.clientHeight,this.doc.height),d=Math.max(l.sizer.clientWidth,l.lineSpace.clientWidth);("above"==r||e.bottom+t.offsetHeight>f)&&e.top>t.offsetHeight?c=e.top-t.offsetHeight:e.bottom+t.offsetHeight<=f&&(c=e.bottom),u+t.offsetWidth>d&&(u=d-t.offsetWidth)}t.style.top=c+"px",t.style.left=t.style.right="","right"==i?(u=l.sizer.clientWidth-t.offsetWidth,t.style.right="0px"):("left"==i?u=0:"middle"==i&&(u=(l.sizer.clientWidth-t.offsetWidth)/2),t.style.left=u+"px"),n&&(o=this,a={left:u,top:c,right:u+t.offsetWidth,bottom:c+t.offsetHeight},null!=(s=Nr(o,a)).scrollTop&&jr(o,s.scrollTop),null!=s.scrollLeft&&Rr(o,s.scrollLeft))},triggerOnKeyDown:ti(ua),triggerOnKeyPress:ti(da),triggerOnKeyUp:fa,triggerOnMouseDown:ti(ga),execCommand:function(e){if(ta.hasOwnProperty(e))return ta[e].call(null,this)},triggerElectric:ti((function(e){Fa(this,e)})),findPosH:function(e,t,n,r){var i=1;t<0&&(i=-1,t=-t);for(var o=st(this.doc,e),a=0;a0&&a(t.charAt(n-1));)--n;for(;r.5||this.options.lineWrapping)&&lr(this),he(this,"refresh",this)})),swapDoc:ti((function(e){var t=this.doc;return t.cm=null,this.state.selectingText&&this.state.selectingText(),ji(this,e),Un(this),this.display.input.reset(),Ar(this,e.scrollLeft,e.scrollTop),this.curOp.forceScroll=!0,ln(this,"swapDoc",this,t),t})),phrase:function(e){var t=this.options.phrases;return t&&Object.prototype.hasOwnProperty.call(t,e)?t[e]:e},getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},ye(e),e.registerHelper=function(t,r,i){n.hasOwnProperty(t)||(n[t]=e[t]={_global:[]}),n[t][r]=i},e.registerGlobalHelper=function(t,r,i,o){e.registerHelper(t,r,o),n[t]._global.push({pred:i,val:o})}}(ka);var za="iter insert remove copy getEditor constructor".split(" ");for(var Qa in Io.prototype)Io.prototype.hasOwnProperty(Qa)&&U(za,Qa)<0&&(ka.prototype[Qa]=function(e){return function(){return e.apply(this.doc,arguments)}}(Io.prototype[Qa]));return ye(Io),ka.inputStyles={textarea:Ga,contenteditable:Ua},ka.defineMode=function(e){ka.defaults.mode||"null"==e||(ka.defaults.mode=e),Re.apply(this,arguments)},ka.defineMIME=function(e,t){Me[e]=t},ka.defineMode("null",(function(){return{token:function(e){return e.skipToEnd()}}})),ka.defineMIME("text/plain","null"),ka.defineExtension=function(e,t){ka.prototype[e]=t},ka.defineDocExtension=function(e,t){Io.prototype[e]=t},ka.fromTextArea=function(e,t){if((t=t?R(t):{}).value=e.value,!t.tabindex&&e.tabIndex&&(t.tabindex=e.tabIndex),!t.placeholder&&e.placeholder&&(t.placeholder=e.placeholder),null==t.autofocus){var n=A();t.autofocus=n==e||null!=e.getAttribute("autofocus")&&n==document.body}function r(){e.value=s.getValue()}var i;if(e.form&&(fe(e.form,"submit",r),!t.leaveSubmitMethodAlone)){var o=e.form;i=o.submit;try{var a=o.submit=function(){r(),o.submit=i,o.submit(),o.submit=a}}catch(e){}}t.finishInit=function(n){n.save=r,n.getTextArea=function(){return e},n.toTextArea=function(){n.toTextArea=isNaN,r(),e.parentNode.removeChild(n.getWrapperElement()),e.style.display="",e.form&&(pe(e.form,"submit",r),t.leaveSubmitMethodAlone||"function"!=typeof e.form.submit||(e.form.submit=i))}},e.style.display="none";var s=ka((function(t){return e.parentNode.insertBefore(t,e.nextSibling)}),t);return s},function(e){e.off=pe,e.on=fe,e.wheelEventPixels=Ti,e.Doc=Io,e.splitLines=Ie,e.countColumn=P,e.findColumn=G,e.isWordChar=Z,e.Pass=B,e.signal=he,e.Line=zt,e.changeEnd=wi,e.scrollbarModel=qr,e.Pos=et,e.cmpPos=tt,e.modes=je,e.mimeModes=Me,e.resolveMode=Pe,e.getMode=Ve,e.modeExtensions=Ue,e.extendMode=Be,e.copyState=$e,e.startState=He,e.innerMode=qe,e.commands=ta,e.keyMap=qo,e.keyName=Wo,e.isModifierKey=Qo,e.lookupKey=zo,e.normalizeKeyMap=Go,e.StringStream=Ge,e.SharedTextMarker=ko,e.TextMarker=xo,e.LineWidget=Oo,e.e_preventDefault=be,e.e_stopPropagation=Te,e.e_stop=Oe,e.addClass=L,e.contains=I,e.rmClass=w,e.keyNames=Vo}(ka),ka.version="5.58.2",ka}()})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=Object.prototype.hasOwnProperty;function r(t,n){return e.call(t,n)}function i(e){return!(e>=55296&&e<=57343||e>=64976&&e<=65007||65535==(65535&e)||65534==(65535&e)||e>=0&&e<=8||11===e||e>=14&&e<=31||e>=127&&e<=159||e>1114111)}function o(e){if(e>65535){var t=55296+((e-=65536)>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}var a=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,s=new RegExp(a.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),l=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,c=n(65),u=/[&<>"]/,f=/[&<>"]/g,d={"&":"&","<":"<",">":">",'"':"""};function p(e){return d[e]}var h=/[.?*+^$[\]\\(){}|-]/g,m=n(47);t.lib={},t.lib.mdurl=n(66),t.lib.ucmicro=n(130),t.assign=function(e){var t=Array.prototype.slice.call(arguments,1);return t.forEach((function(t){if(t){if("object"!=typeof t)throw new TypeError(t+"must be object");Object.keys(t).forEach((function(n){e[n]=t[n]}))}})),e},t.isString=function(e){return"[object String]"===function(e){return Object.prototype.toString.call(e)}(e)},t.has=r,t.unescapeMd=function(e){return e.indexOf("\\")<0?e:e.replace(a,"$1")},t.unescapeAll=function(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(s,(function(e,t,n){return t||function(e,t){var n=0;return r(c,t)?c[t]:35===t.charCodeAt(0)&&l.test(t)&&i(n="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10))?o(n):e}(e,n)}))},t.isValidEntityCode=i,t.fromCodePoint=o,t.escapeHtml=function(e){return u.test(e)?e.replace(f,p):e},t.arrayReplaceAt=function(e,t,n){return[].concat(e.slice(0,t),n,e.slice(t+1))},t.isSpace=function(e){switch(e){case 9:case 32:return!0}return!1},t.isWhiteSpace=function(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},t.isMdAsciiPunct=function(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}},t.isPunctChar=function(e){return m.test(e)},t.escapeRE=function(e){return e.replace(h,"\\$&")},t.normalizeReference=function(e){return e=e.trim().replace(/\s+/g," "),"Ṿ"==="ẞ".toLowerCase()&&(e=e.replace(/ẞ/g,"ß")),e.toLowerCase().toUpperCase()}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){"use strict";n.r(t),n.d(t,"version",(function(){return r})),n.d(t,"versionInfo",(function(){return i})),n.d(t,"graphql",(function(){return Qn})),n.d(t,"graphqlSync",(function(){return Kn})),n.d(t,"GraphQLSchema",(function(){return ve})),n.d(t,"GraphQLDirective",(function(){return oe})),n.d(t,"GraphQLScalarType",(function(){return K.g})),n.d(t,"GraphQLObjectType",(function(){return K.f})),n.d(t,"GraphQLInterfaceType",(function(){return K.c})),n.d(t,"GraphQLUnionType",(function(){return K.h})),n.d(t,"GraphQLEnumType",(function(){return K.a})),n.d(t,"GraphQLInputObjectType",(function(){return K.b})),n.d(t,"GraphQLList",(function(){return K.d})),n.d(t,"GraphQLNonNull",(function(){return K.e})),n.d(t,"specifiedScalarTypes",(function(){return ne.g})),n.d(t,"GraphQLInt",(function(){return ne.d})),n.d(t,"GraphQLFloat",(function(){return ne.b})),n.d(t,"GraphQLString",(function(){return ne.e})),n.d(t,"GraphQLBoolean",(function(){return ne.a})),n.d(t,"GraphQLID",(function(){return ne.c})),n.d(t,"specifiedDirectives",(function(){return pe})),n.d(t,"GraphQLIncludeDirective",(function(){return ae})),n.d(t,"GraphQLSkipDirective",(function(){return se})),n.d(t,"GraphQLDeferDirective",(function(){return le})),n.d(t,"GraphQLStreamDirective",(function(){return ce})),n.d(t,"GraphQLDeprecatedDirective",(function(){return fe})),n.d(t,"GraphQLSpecifiedByDirective",(function(){return de})),n.d(t,"TypeKind",(function(){return ee.TypeKind})),n.d(t,"DEFAULT_DEPRECATION_REASON",(function(){return ue})),n.d(t,"introspectionTypes",(function(){return ee.introspectionTypes})),n.d(t,"__Schema",(function(){return ee.__Schema})),n.d(t,"__Directive",(function(){return ee.__Directive})),n.d(t,"__DirectiveLocation",(function(){return ee.__DirectiveLocation})),n.d(t,"__Type",(function(){return ee.__Type})),n.d(t,"__Field",(function(){return ee.__Field})),n.d(t,"__InputValue",(function(){return ee.__InputValue})),n.d(t,"__EnumValue",(function(){return ee.__EnumValue})),n.d(t,"__TypeKind",(function(){return ee.__TypeKind})),n.d(t,"SchemaMetaFieldDef",(function(){return ee.SchemaMetaFieldDef})),n.d(t,"TypeMetaFieldDef",(function(){return ee.TypeMetaFieldDef})),n.d(t,"TypeNameMetaFieldDef",(function(){return ee.TypeNameMetaFieldDef})),n.d(t,"isSchema",(function(){return me})),n.d(t,"isDirective",(function(){return re})),n.d(t,"isType",(function(){return K.T})),n.d(t,"isScalarType",(function(){return K.S})),n.d(t,"isObjectType",(function(){return K.O})),n.d(t,"isInterfaceType",(function(){return K.I})),n.d(t,"isUnionType",(function(){return K.U})),n.d(t,"isEnumType",(function(){return K.F})),n.d(t,"isInputObjectType",(function(){return K.G})),n.d(t,"isListType",(function(){return K.K})),n.d(t,"isNonNullType",(function(){return K.M})),n.d(t,"isInputType",(function(){return K.H})),n.d(t,"isOutputType",(function(){return K.P})),n.d(t,"isLeafType",(function(){return K.J})),n.d(t,"isCompositeType",(function(){return K.E})),n.d(t,"isAbstractType",(function(){return K.D})),n.d(t,"isWrappingType",(function(){return K.V})),n.d(t,"isNullableType",(function(){return K.N})),n.d(t,"isNamedType",(function(){return K.L})),n.d(t,"isRequiredArgument",(function(){return K.Q})),n.d(t,"isRequiredInputField",(function(){return K.R})),n.d(t,"isSpecifiedScalarType",(function(){return ne.f})),n.d(t,"isIntrospectionType",(function(){return ee.isIntrospectionType})),n.d(t,"isSpecifiedDirective",(function(){return he})),n.d(t,"assertSchema",(function(){return ge})),n.d(t,"assertDirective",(function(){return ie})),n.d(t,"assertType",(function(){return K.x})),n.d(t,"assertScalarType",(function(){return K.w})),n.d(t,"assertObjectType",(function(){return K.u})),n.d(t,"assertInterfaceType",(function(){return K.o})),n.d(t,"assertUnionType",(function(){return K.y})),n.d(t,"assertEnumType",(function(){return K.l})),n.d(t,"assertInputObjectType",(function(){return K.m})),n.d(t,"assertListType",(function(){return K.q})),n.d(t,"assertNonNullType",(function(){return K.s})),n.d(t,"assertInputType",(function(){return K.n})),n.d(t,"assertOutputType",(function(){return K.v})),n.d(t,"assertLeafType",(function(){return K.p})),n.d(t,"assertCompositeType",(function(){return K.k})),n.d(t,"assertAbstractType",(function(){return K.j})),n.d(t,"assertWrappingType",(function(){return K.z})),n.d(t,"assertNullableType",(function(){return K.t})),n.d(t,"assertNamedType",(function(){return K.r})),n.d(t,"getNullableType",(function(){return K.C})),n.d(t,"getNamedType",(function(){return K.B})),n.d(t,"validateSchema",(function(){return be})),n.d(t,"assertValidSchema",(function(){return Te})),n.d(t,"assertName",(function(){return te.b})),n.d(t,"assertEnumValueName",(function(){return te.a})),n.d(t,"Token",(function(){return u.d})),n.d(t,"Source",(function(){return m})),n.d(t,"Location",(function(){return u.a})),n.d(t,"OperationTypeNode",(function(){return u.b})),n.d(t,"getLocation",(function(){return Yn.a})),n.d(t,"printLocation",(function(){return Jn.a})),n.d(t,"printSourceLocation",(function(){return Jn.b})),n.d(t,"Lexer",(function(){return T})),n.d(t,"TokenKind",(function(){return f})),n.d(t,"parse",(function(){return U})),n.d(t,"parseValue",(function(){return B})),n.d(t,"parseConstValue",(function(){return $})),n.d(t,"parseType",(function(){return q})),n.d(t,"print",(function(){return et.a})),n.d(t,"visit",(function(){return Q.d})),n.d(t,"visitInParallel",(function(){return Q.e})),n.d(t,"getVisitFn",(function(){return Q.c})),n.d(t,"getEnterLeaveForKind",(function(){return Q.b})),n.d(t,"BREAK",(function(){return Q.a})),n.d(t,"Kind",(function(){return c.a})),n.d(t,"DirectiveLocation",(function(){return v.a})),n.d(t,"isDefinitionNode",(function(){return Ve})),n.d(t,"isExecutableDefinitionNode",(function(){return Ue})),n.d(t,"isSelectionNode",(function(){return Be})),n.d(t,"isValueNode",(function(){return $e})),n.d(t,"isConstValueNode",(function(){return qe})),n.d(t,"isTypeNode",(function(){return He})),n.d(t,"isTypeSystemDefinitionNode",(function(){return Ge})),n.d(t,"isTypeDefinitionNode",(function(){return ze})),n.d(t,"isTypeSystemExtensionNode",(function(){return Qe})),n.d(t,"isTypeExtensionNode",(function(){return Ke})),n.d(t,"execute",(function(){return kn})),n.d(t,"executeSync",(function(){return Sn})),n.d(t,"defaultFieldResolver",(function(){return qn})),n.d(t,"defaultTypeResolver",(function(){return $n})),n.d(t,"responsePathAsArray",(function(){return at})),n.d(t,"getDirectiveValues",(function(){return dt})),n.d(t,"subscribe",(function(){return Xn})),n.d(t,"createSourceEventStream",(function(){return Zn})),n.d(t,"validate",(function(){return _n})),n.d(t,"ValidationContext",(function(){return On})),n.d(t,"specifiedRules",(function(){return yn})),n.d(t,"ExecutableDefinitionsRule",(function(){return We})),n.d(t,"FieldsOnCorrectTypeRule",(function(){return wt})),n.d(t,"FragmentsOnCompositeTypesRule",(function(){return Ot})),n.d(t,"KnownArgumentNamesRule",(function(){return Pt})),n.d(t,"KnownDirectivesRule",(function(){return Mt})),n.d(t,"KnownFragmentNamesRule",(function(){return St})),n.d(t,"KnownTypeNamesRule",(function(){return Tt})),n.d(t,"LoneAnonymousOperationRule",(function(){return Je})),n.d(t,"NoFragmentCyclesRule",(function(){return It})),n.d(t,"NoUndefinedVariablesRule",(function(){return Ft})),n.d(t,"NoUnusedFragmentsRule",(function(){return Nt})),n.d(t,"NoUnusedVariablesRule",(function(){return jt})),n.d(t,"OverlappingFieldsCanBeMergedRule",(function(){return Wt})),n.d(t,"PossibleFragmentSpreadsRule",(function(){return Dt})),n.d(t,"ProvidedRequiredArgumentsRule",(function(){return qt})),n.d(t,"ScalarLeafsRule",(function(){return Ct})),n.d(t,"SingleFieldSubscriptionsRule",(function(){return bt})),n.d(t,"UniqueArgumentNamesRule",(function(){return Ut})),n.d(t,"UniqueDirectivesPerLocationRule",(function(){return Rt})),n.d(t,"UniqueFragmentNamesRule",(function(){return kt})),n.d(t,"UniqueInputFieldNamesRule",(function(){return sn})),n.d(t,"UniqueOperationNamesRule",(function(){return Ye})),n.d(t,"UniqueVariableNamesRule",(function(){return Lt})),n.d(t,"ValuesOfCorrectTypeRule",(function(){return Bt})),n.d(t,"VariablesAreInputTypesRule",(function(){return _t})),n.d(t,"VariablesInAllowedPositionRule",(function(){return zt})),n.d(t,"LoneSchemaDefinitionRule",(function(){return ln})),n.d(t,"UniqueOperationTypesRule",(function(){return cn})),n.d(t,"UniqueTypeNamesRule",(function(){return un})),n.d(t,"UniqueEnumValueNamesRule",(function(){return fn})),n.d(t,"UniqueFieldDefinitionNamesRule",(function(){return dn})),n.d(t,"UniqueArgumentDefinitionNamesRule",(function(){return hn})),n.d(t,"UniqueDirectiveNamesRule",(function(){return mn})),n.d(t,"PossibleTypeExtensionsRule",(function(){return gn})),n.d(t,"NoDeprecatedCustomRule",(function(){return er})),n.d(t,"NoSchemaIntrospectionCustomRule",(function(){return tr})),n.d(t,"GraphQLError",(function(){return s.a})),n.d(t,"syntaxError",(function(){return l})),n.d(t,"locatedError",(function(){return xn})),n.d(t,"printError",(function(){return s.c})),n.d(t,"formatError",(function(){return s.b})),n.d(t,"getIntrospectionQuery",(function(){return nr})),n.d(t,"getOperationAST",(function(){return rr})),n.d(t,"getOperationRootType",(function(){return ir})),n.d(t,"introspectionFromSchema",(function(){return or})),n.d(t,"buildClientSchema",(function(){return sr})),n.d(t,"buildASTSchema",(function(){return hr})),n.d(t,"buildSchema",(function(){return mr})),n.d(t,"extendSchema",(function(){return cr})),n.d(t,"lexicographicSortSchema",(function(){return gr})),n.d(t,"printSchema",(function(){return Er})),n.d(t,"printType",(function(){return wr})),n.d(t,"printIntrospectionSchema",(function(){return Or})),n.d(t,"typeFromAST",(function(){return je})),n.d(t,"valueFromAST",(function(){return tt})),n.d(t,"valueFromASTUntyped",(function(){return Fr.a})),n.d(t,"astFromValue",(function(){return Tr.a})),n.d(t,"TypeInfo",(function(){return Me})),n.d(t,"visitWithTypeInfo",(function(){return Pe})),n.d(t,"coerceInputValue",(function(){return lt})),n.d(t,"concatAST",(function(){return jr})),n.d(t,"separateOperations",(function(){return Mr})),n.d(t,"stripIgnoredCharacters",(function(){return Vr})),n.d(t,"isEqualType",(function(){return W})),n.d(t,"isTypeSubTypeOf",(function(){return Y})),n.d(t,"doTypesOverlap",(function(){return J})),n.d(t,"assertValidName",(function(){return Br})),n.d(t,"isValidNameError",(function(){return $r})),n.d(t,"BreakingChangeType",(function(){return qr})),n.d(t,"DangerousChangeType",(function(){return Hr})),n.d(t,"findBreakingChanges",(function(){return Gr})),n.d(t,"findDangerousChanges",(function(){return zr}));const r="16.0.0-experimental-stream-defer.5",i=Object.freeze({major:16,minor:0,patch:0,preReleaseTag:"experimental-stream-defer.5"});function o(e){return"function"==typeof(null==e?void 0:e.then)}function a(e){return"function"==typeof(null==e?void 0:e[Symbol.asyncIterator])}var s=n(2);function l(e,t,n){return new s.a("Syntax Error: "+n,void 0,e,[t])}var c=n(1),u=n(13);let f;!function(e){e.SOF="",e.EOF="",e.BANG="!",e.DOLLAR="$",e.AMP="&",e.PAREN_L="(",e.PAREN_R=")",e.SPREAD="...",e.COLON=":",e.EQUALS="=",e.AT="@",e.BRACKET_L="[",e.BRACKET_R="]",e.BRACE_L="{",e.PIPE="|",e.BRACE_R="}",e.NAME="Name",e.INT="Int",e.FLOAT="Float",e.STRING="String",e.BLOCK_STRING="BlockString",e.COMMENT="Comment"}(f||(f={}));var d=n(3),p=n(6),h=n(20);class m{constructor(e,t="GraphQL request",n={line:1,column:1}){"string"==typeof e||Object(p.a)(!1,`Body must be a string. Received: ${Object(d.a)(e)}.`),this.body=e,this.name=t,this.locationOffset=n,this.locationOffset.line>0||Object(p.a)(!1,"line in locationOffset is 1-indexed and must be positive."),this.locationOffset.column>0||Object(p.a)(!1,"column in locationOffset is 1-indexed and must be positive.")}get[Symbol.toStringTag](){return"Source"}}function g(e){return Object(h.a)(e,m)}var v=n(4),y=n(26),b=n(24);class T{constructor(e){const t=new u.d(f.SOF,0,0,0,0);this.source=e,this.lastToken=t,this.token=t,this.line=1,this.lineStart=0}get[Symbol.toStringTag](){return"Lexer"}advance(){this.lastToken=this.token;return this.token=this.lookahead()}lookahead(){let e=this.token;if(e.kind!==f.EOF)do{if(e.next)e=e.next;else{const t=S(this,e.end);e.next=t,t.prev=e,e=t}}while(e.kind===f.COMMENT);return e}}function E(e){return e===f.BANG||e===f.DOLLAR||e===f.AMP||e===f.PAREN_L||e===f.PAREN_R||e===f.SPREAD||e===f.COLON||e===f.EQUALS||e===f.AT||e===f.BRACKET_L||e===f.BRACKET_R||e===f.BRACE_L||e===f.PIPE||e===f.BRACE_R}function O(e){return e>=0&&e<=55295||e>=57344&&e<=1114111}function _(e,t){return C(e.charCodeAt(t))&&x(e.charCodeAt(t+1))}function C(e){return e>=55296&&e<=56319}function x(e){return e>=56320&&e<=57343}function w(e,t){const n=e.source.body.codePointAt(t);if(void 0===n)return f.EOF;if(n>=32&&n<=126){const e=String.fromCodePoint(n);return'"'===e?"'\"'":`"${e}"`}return"U+"+n.toString(16).toUpperCase().padStart(4,"0")}function k(e,t,n,r,i){const o=e.line,a=1+n-e.lineStart;return new u.d(t,n,r,o,a,i)}function S(e,t){const n=e.source.body,r=n.length;let i=t;for(;i=48&&e<=57?e-48:e>=65&&e<=70?e-55:e>=97&&e<=102?e-87:-1}function R(e,t){const n=e.source.body;switch(n.charCodeAt(t+1)){case 34:return{value:'"',size:2};case 92:return{value:"\\",size:2};case 47:return{value:"/",size:2};case 98:return{value:"\b",size:2};case 102:return{value:"\f",size:2};case 110:return{value:"\n",size:2};case 114:return{value:"\r",size:2};case 116:return{value:"\t",size:2}}throw l(e.source,t,`Invalid character escape sequence: "${n.slice(t,t+2)}".`)}function P(e,t){const n=e.source.body,r=n.length;let i=t+3,o=i,a="";for(;ithis.parseValueLiteral(e),f.BRACKET_R)})}parseObject(e){return this.node(this._lexer.token,{kind:c.a.OBJECT,fields:this.any(f.BRACE_L,()=>this.parseObjectField(e),f.BRACE_R)})}parseObjectField(e){const t=this._lexer.token,n=this.parseName();return this.expectToken(f.COLON),this.node(t,{kind:c.a.OBJECT_FIELD,name:n,value:this.parseValueLiteral(e)})}parseDirectives(e){const t=[];for(;this.peek(f.AT);)t.push(this.parseDirective(e));return t}parseConstDirectives(){return this.parseDirectives(!0)}parseDirective(e){const t=this._lexer.token;return this.expectToken(f.AT),this.node(t,{kind:c.a.DIRECTIVE,name:this.parseName(),arguments:this.parseArguments(e)})}parseTypeReference(){const e=this._lexer.token;let t;if(this.expectOptionalToken(f.BRACKET_L)){const n=this.parseTypeReference();this.expectToken(f.BRACKET_R),t=this.node(e,{kind:c.a.LIST_TYPE,type:n})}else t=this.parseNamedType();return this.expectOptionalToken(f.BANG)?this.node(e,{kind:c.a.NON_NULL_TYPE,type:t}):t}parseNamedType(){return this.node(this._lexer.token,{kind:c.a.NAMED_TYPE,name:this.parseName()})}peekDescription(){return this.peek(f.STRING)||this.peek(f.BLOCK_STRING)}parseDescription(){if(this.peekDescription())return this.parseStringLiteral()}parseSchemaDefinition(){const e=this._lexer.token,t=this.parseDescription();this.expectKeyword("schema");const n=this.parseConstDirectives(),r=this.many(f.BRACE_L,this.parseOperationTypeDefinition,f.BRACE_R);return this.node(e,{kind:c.a.SCHEMA_DEFINITION,description:t,directives:n,operationTypes:r})}parseOperationTypeDefinition(){const e=this._lexer.token,t=this.parseOperationType();this.expectToken(f.COLON);const n=this.parseNamedType();return this.node(e,{kind:c.a.OPERATION_TYPE_DEFINITION,operation:t,type:n})}parseScalarTypeDefinition(){const e=this._lexer.token,t=this.parseDescription();this.expectKeyword("scalar");const n=this.parseName(),r=this.parseConstDirectives();return this.node(e,{kind:c.a.SCALAR_TYPE_DEFINITION,description:t,name:n,directives:r})}parseObjectTypeDefinition(){const e=this._lexer.token,t=this.parseDescription();this.expectKeyword("type");const n=this.parseName(),r=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();return this.node(e,{kind:c.a.OBJECT_TYPE_DEFINITION,description:t,name:n,interfaces:r,directives:i,fields:o})}parseImplementsInterfaces(){return this.expectOptionalKeyword("implements")?this.delimitedMany(f.AMP,this.parseNamedType):[]}parseFieldsDefinition(){return this.optionalMany(f.BRACE_L,this.parseFieldDefinition,f.BRACE_R)}parseFieldDefinition(){const e=this._lexer.token,t=this.parseDescription(),n=this.parseName(),r=this.parseArgumentDefs();this.expectToken(f.COLON);const i=this.parseTypeReference(),o=this.parseConstDirectives();return this.node(e,{kind:c.a.FIELD_DEFINITION,description:t,name:n,arguments:r,type:i,directives:o})}parseArgumentDefs(){return this.optionalMany(f.PAREN_L,this.parseInputValueDef,f.PAREN_R)}parseInputValueDef(){const e=this._lexer.token,t=this.parseDescription(),n=this.parseName();this.expectToken(f.COLON);const r=this.parseTypeReference();let i;this.expectOptionalToken(f.EQUALS)&&(i=this.parseConstValueLiteral());const o=this.parseConstDirectives();return this.node(e,{kind:c.a.INPUT_VALUE_DEFINITION,description:t,name:n,type:r,defaultValue:i,directives:o})}parseInterfaceTypeDefinition(){const e=this._lexer.token,t=this.parseDescription();this.expectKeyword("interface");const n=this.parseName(),r=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),o=this.parseFieldsDefinition();return this.node(e,{kind:c.a.INTERFACE_TYPE_DEFINITION,description:t,name:n,interfaces:r,directives:i,fields:o})}parseUnionTypeDefinition(){const e=this._lexer.token,t=this.parseDescription();this.expectKeyword("union");const n=this.parseName(),r=this.parseConstDirectives(),i=this.parseUnionMemberTypes();return this.node(e,{kind:c.a.UNION_TYPE_DEFINITION,description:t,name:n,directives:r,types:i})}parseUnionMemberTypes(){return this.expectOptionalToken(f.EQUALS)?this.delimitedMany(f.PIPE,this.parseNamedType):[]}parseEnumTypeDefinition(){const e=this._lexer.token,t=this.parseDescription();this.expectKeyword("enum");const n=this.parseName(),r=this.parseConstDirectives(),i=this.parseEnumValuesDefinition();return this.node(e,{kind:c.a.ENUM_TYPE_DEFINITION,description:t,name:n,directives:r,values:i})}parseEnumValuesDefinition(){return this.optionalMany(f.BRACE_L,this.parseEnumValueDefinition,f.BRACE_R)}parseEnumValueDefinition(){const e=this._lexer.token,t=this.parseDescription(),n=this.parseEnumValueName(),r=this.parseConstDirectives();return this.node(e,{kind:c.a.ENUM_VALUE_DEFINITION,description:t,name:n,directives:r})}parseEnumValueName(){if("true"===this._lexer.token.value||"false"===this._lexer.token.value||"null"===this._lexer.token.value)throw l(this._lexer.source,this._lexer.token.start,G(this._lexer.token)+" is reserved and cannot be used for an enum value.");return this.parseName()}parseInputObjectTypeDefinition(){const e=this._lexer.token,t=this.parseDescription();this.expectKeyword("input");const n=this.parseName(),r=this.parseConstDirectives(),i=this.parseInputFieldsDefinition();return this.node(e,{kind:c.a.INPUT_OBJECT_TYPE_DEFINITION,description:t,name:n,directives:r,fields:i})}parseInputFieldsDefinition(){return this.optionalMany(f.BRACE_L,this.parseInputValueDef,f.BRACE_R)}parseTypeSystemExtension(){const e=this._lexer.lookahead();if(e.kind===f.NAME)switch(e.value){case"schema":return this.parseSchemaExtension();case"scalar":return this.parseScalarTypeExtension();case"type":return this.parseObjectTypeExtension();case"interface":return this.parseInterfaceTypeExtension();case"union":return this.parseUnionTypeExtension();case"enum":return this.parseEnumTypeExtension();case"input":return this.parseInputObjectTypeExtension()}throw this.unexpected(e)}parseSchemaExtension(){const e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("schema");const t=this.parseConstDirectives(),n=this.optionalMany(f.BRACE_L,this.parseOperationTypeDefinition,f.BRACE_R);if(0===t.length&&0===n.length)throw this.unexpected();return this.node(e,{kind:c.a.SCHEMA_EXTENSION,directives:t,operationTypes:n})}parseScalarTypeExtension(){const e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("scalar");const t=this.parseName(),n=this.parseConstDirectives();if(0===n.length)throw this.unexpected();return this.node(e,{kind:c.a.SCALAR_TYPE_EXTENSION,name:t,directives:n})}parseObjectTypeExtension(){const e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("type");const t=this.parseName(),n=this.parseImplementsInterfaces(),r=this.parseConstDirectives(),i=this.parseFieldsDefinition();if(0===n.length&&0===r.length&&0===i.length)throw this.unexpected();return this.node(e,{kind:c.a.OBJECT_TYPE_EXTENSION,name:t,interfaces:n,directives:r,fields:i})}parseInterfaceTypeExtension(){const e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("interface");const t=this.parseName(),n=this.parseImplementsInterfaces(),r=this.parseConstDirectives(),i=this.parseFieldsDefinition();if(0===n.length&&0===r.length&&0===i.length)throw this.unexpected();return this.node(e,{kind:c.a.INTERFACE_TYPE_EXTENSION,name:t,interfaces:n,directives:r,fields:i})}parseUnionTypeExtension(){const e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("union");const t=this.parseName(),n=this.parseConstDirectives(),r=this.parseUnionMemberTypes();if(0===n.length&&0===r.length)throw this.unexpected();return this.node(e,{kind:c.a.UNION_TYPE_EXTENSION,name:t,directives:n,types:r})}parseEnumTypeExtension(){const e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("enum");const t=this.parseName(),n=this.parseConstDirectives(),r=this.parseEnumValuesDefinition();if(0===n.length&&0===r.length)throw this.unexpected();return this.node(e,{kind:c.a.ENUM_TYPE_EXTENSION,name:t,directives:n,values:r})}parseInputObjectTypeExtension(){const e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("input");const t=this.parseName(),n=this.parseConstDirectives(),r=this.parseInputFieldsDefinition();if(0===n.length&&0===r.length)throw this.unexpected();return this.node(e,{kind:c.a.INPUT_OBJECT_TYPE_EXTENSION,name:t,directives:n,fields:r})}parseDirectiveDefinition(){const e=this._lexer.token,t=this.parseDescription();this.expectKeyword("directive"),this.expectToken(f.AT);const n=this.parseName(),r=this.parseArgumentDefs(),i=this.expectOptionalKeyword("repeatable");this.expectKeyword("on");const o=this.parseDirectiveLocations();return this.node(e,{kind:c.a.DIRECTIVE_DEFINITION,description:t,name:n,arguments:r,repeatable:i,locations:o})}parseDirectiveLocations(){return this.delimitedMany(f.PIPE,this.parseDirectiveLocation)}parseDirectiveLocation(){const e=this._lexer.token,t=this.parseName();if(Object.prototype.hasOwnProperty.call(v.a,t.value))return t;throw this.unexpected(e)}node(e,t){var n;return!0!==(null===(n=this._options)||void 0===n?void 0:n.noLocation)&&(t.loc=new u.a(e,this._lexer.lastToken,this._lexer.source)),t}peek(e){return this._lexer.token.kind===e}expectToken(e){const t=this._lexer.token;if(t.kind===e)return this._lexer.advance(),t;throw l(this._lexer.source,t.start,`Expected ${z(e)}, found ${G(t)}.`)}expectOptionalToken(e){return this._lexer.token.kind===e&&(this._lexer.advance(),!0)}expectKeyword(e){const t=this._lexer.token;if(t.kind!==f.NAME||t.value!==e)throw l(this._lexer.source,t.start,`Expected "${e}", found ${G(t)}.`);this._lexer.advance()}expectOptionalKeyword(e){const t=this._lexer.token;return t.kind===f.NAME&&t.value===e&&(this._lexer.advance(),!0)}unexpected(e){const t=null!=e?e:this._lexer.token;return l(this._lexer.source,t.start,`Unexpected ${G(t)}.`)}any(e,t,n){this.expectToken(e);const r=[];for(;!this.expectOptionalToken(n);)r.push(t.call(this));return r}optionalMany(e,t,n){if(this.expectOptionalToken(e)){const e=[];do{e.push(t.call(this))}while(!this.expectOptionalToken(n));return e}return[]}many(e,t,n){this.expectToken(e);const r=[];do{r.push(t.call(this))}while(!this.expectOptionalToken(n));return r}delimitedMany(e,t){this.expectOptionalToken(e);const n=[];do{n.push(t.call(this))}while(this.expectOptionalToken(e));return n}}function G(e){const t=e.value;return z(e.kind)+(null!=t?` "${t}"`:"")}function z(e){return E(e)?`"${e}"`:e}var Q=n(18),K=n(0);function W(e,t){return e===t||(Object(K.M)(e)&&Object(K.M)(t)||!(!Object(K.K)(e)||!Object(K.K)(t)))&&W(e.ofType,t.ofType)}function Y(e,t,n){return t===n||(Object(K.M)(n)?!!Object(K.M)(t)&&Y(e,t.ofType,n.ofType):Object(K.M)(t)?Y(e,t.ofType,n):Object(K.K)(n)?!!Object(K.K)(t)&&Y(e,t.ofType,n.ofType):!Object(K.K)(t)&&(Object(K.D)(n)&&(Object(K.I)(t)||Object(K.O)(t))&&e.isSubType(n,t)))}function J(e,t,n){return t===n||(Object(K.D)(t)?Object(K.D)(n)?e.getPossibleTypes(t).some(t=>e.isSubType(n,t)):e.isSubType(t,n):!!Object(K.D)(n)&&e.isSubType(n,t))}var X=n(21),Z=n(15),ee=n(7),te=n(22),ne=n(5);function re(e){return Object(h.a)(e,oe)}function ie(e){if(!re(e))throw new Error(`Expected ${Object(d.a)(e)} to be a GraphQL directive.`);return e}class oe{constructor(e){var t,n;this.name=Object(te.b)(e.name),this.description=e.description,this.locations=e.locations,this.isRepeatable=null!==(t=e.isRepeatable)&&void 0!==t&&t,this.extensions=Object(X.a)(e.extensions),this.astNode=e.astNode,Array.isArray(e.locations)||Object(p.a)(!1,`@${e.name} locations must be an Array.`);const r=null!==(n=e.args)&&void 0!==n?n:{};Object(Z.a)(r)&&!Array.isArray(r)||Object(p.a)(!1,`@${e.name} args must be an object with argument names as keys.`),this.args=Object(K.A)(r)}get[Symbol.toStringTag](){return"GraphQLDirective"}toConfig(){return{name:this.name,description:this.description,locations:this.locations,args:Object(K.i)(this.args),isRepeatable:this.isRepeatable,extensions:this.extensions,astNode:this.astNode}}toString(){return"@"+this.name}toJSON(){return this.toString()}}const ae=new oe({name:"include",description:"Directs the executor to include this field or fragment only when the `if` argument is true.",locations:[v.a.FIELD,v.a.FRAGMENT_SPREAD,v.a.INLINE_FRAGMENT],args:{if:{type:new K.e(ne.a),description:"Included when true."}}}),se=new oe({name:"skip",description:"Directs the executor to skip this field or fragment when the `if` argument is true.",locations:[v.a.FIELD,v.a.FRAGMENT_SPREAD,v.a.INLINE_FRAGMENT],args:{if:{type:new K.e(ne.a),description:"Skipped when true."}}}),le=new oe({name:"defer",description:"Directs the executor to defer this fragment when the `if` argument is true or undefined.",locations:[v.a.FRAGMENT_SPREAD,v.a.INLINE_FRAGMENT],args:{if:{type:ne.a,description:"Deferred when true or undefined."},label:{type:ne.e,description:"Unique name"}}}),ce=new oe({name:"stream",description:"Directs the executor to stream plural fields when the `if` argument is true or undefined.",locations:[v.a.FIELD],args:{if:{type:ne.a,description:"Stream when true or undefined."},label:{type:ne.e,description:"Unique name"},initialCount:{defaultValue:0,type:ne.d,description:"Number of items to return immediately"}}}),ue="No longer supported",fe=new oe({name:"deprecated",description:"Marks an element of a GraphQL schema as no longer supported.",locations:[v.a.FIELD_DEFINITION,v.a.ARGUMENT_DEFINITION,v.a.INPUT_FIELD_DEFINITION,v.a.ENUM_VALUE],args:{reason:{type:ne.e,description:"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).",defaultValue:ue}}}),de=new oe({name:"specifiedBy",description:"Exposes a URL that specifies the behaviour of this scalar.",locations:[v.a.SCALAR],args:{url:{type:new K.e(ne.e),description:"The URL that specifies the behaviour of this scalar."}}}),pe=Object.freeze([ae,se,le,ce,fe,de]);function he(e){return pe.some(({name:t})=>t===e.name)}function me(e){return Object(h.a)(e,ve)}function ge(e){if(!me(e))throw new Error(`Expected ${Object(d.a)(e)} to be a GraphQL schema.`);return e}class ve{constructor(e){var t,n;this.__validationErrors=!0===e.assumeValid?[]:void 0,Object(Z.a)(e)||Object(p.a)(!1,"Must provide configuration object."),!e.types||Array.isArray(e.types)||Object(p.a)(!1,`"types" must be Array if provided but got: ${Object(d.a)(e.types)}.`),!e.directives||Array.isArray(e.directives)||Object(p.a)(!1,'"directives" must be Array if provided but got: '+Object(d.a)(e.directives)+"."),this.description=e.description,this.extensions=Object(X.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=null!==(t=e.extensionASTNodes)&&void 0!==t?t:[],this._queryType=e.query,this._mutationType=e.mutation,this._subscriptionType=e.subscription,this._directives=null!==(n=e.directives)&&void 0!==n?n:pe;const r=new Set(e.types);if(null!=e.types)for(const t of e.types)r.delete(t),ye(t,r);null!=this._queryType&&ye(this._queryType,r),null!=this._mutationType&&ye(this._mutationType,r),null!=this._subscriptionType&&ye(this._subscriptionType,r);for(const e of this._directives)if(re(e))for(const t of e.args)ye(t.type,r);ye(ee.__Schema,r),this._typeMap=Object.create(null),this._subTypeMap=Object.create(null),this._implementationsMap=Object.create(null);for(const e of r){if(null==e)continue;const t=e.name;if(t||Object(p.a)(!1,"One of the provided types for building the Schema is missing a name."),void 0!==this._typeMap[t])throw new Error(`Schema must contain uniquely named types but contains multiple types named "${t}".`);if(this._typeMap[t]=e,Object(K.I)(e)){for(const t of e.getInterfaces())if(Object(K.I)(t)){let n=this._implementationsMap[t.name];void 0===n&&(n=this._implementationsMap[t.name]={objects:[],interfaces:[]}),n.interfaces.push(e)}}else if(Object(K.O)(e))for(const t of e.getInterfaces())if(Object(K.I)(t)){let n=this._implementationsMap[t.name];void 0===n&&(n=this._implementationsMap[t.name]={objects:[],interfaces:[]}),n.objects.push(e)}}}get[Symbol.toStringTag](){return"GraphQLSchema"}getQueryType(){return this._queryType}getMutationType(){return this._mutationType}getSubscriptionType(){return this._subscriptionType}getRootType(e){switch(e){case"query":return this.getQueryType();case"mutation":return this.getMutationType();case"subscription":return this.getSubscriptionType()}}getTypeMap(){return this._typeMap}getType(e){return this.getTypeMap()[e]}getPossibleTypes(e){return Object(K.U)(e)?e.getTypes():this.getImplementations(e).objects}getImplementations(e){const t=this._implementationsMap[e.name];return null!=t?t:{objects:[],interfaces:[]}}isSubType(e,t){let n=this._subTypeMap[e.name];if(void 0===n){if(n=Object.create(null),Object(K.U)(e))for(const t of e.getTypes())n[t.name]=!0;else{const t=this.getImplementations(e);for(const e of t.objects)n[e.name]=!0;for(const e of t.interfaces)n[e.name]=!0}this._subTypeMap[e.name]=n}return void 0!==n[t.name]}getDirectives(){return this._directives}getDirective(e){return this.getDirectives().find(t=>t.name===e)}toConfig(){return{description:this.description,query:this.getQueryType(),mutation:this.getMutationType(),subscription:this.getSubscriptionType(),types:Object.values(this.getTypeMap()),directives:this.getDirectives(),extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes,assumeValid:void 0!==this.__validationErrors}}}function ye(e,t){const n=Object(K.B)(e);if(!t.has(n))if(t.add(n),Object(K.U)(n))for(const e of n.getTypes())ye(e,t);else if(Object(K.O)(n)||Object(K.I)(n)){for(const e of n.getInterfaces())ye(e,t);for(const e of Object.values(n.getFields())){ye(e.type,t);for(const n of e.args)ye(n.type,t)}}else if(Object(K.G)(n))for(const e of Object.values(n.getFields()))ye(e.type,t);return t}function be(e){if(ge(e),e.__validationErrors)return e.__validationErrors;const t=new Ee(e);!function(e){const t=e.schema,n=t.getQueryType();if(n){if(!Object(K.O)(n)){var r;e.reportError(`Query root type must be Object type, it cannot be ${Object(d.a)(n)}.`,null!==(r=Oe(t,u.b.QUERY))&&void 0!==r?r:n.astNode)}}else e.reportError("Query root type must be provided.",t.astNode);const i=t.getMutationType();var o;i&&!Object(K.O)(i)&&e.reportError("Mutation root type must be Object type if provided, it cannot be "+Object(d.a)(i)+".",null!==(o=Oe(t,u.b.MUTATION))&&void 0!==o?o:i.astNode);const a=t.getSubscriptionType();var s;a&&!Object(K.O)(a)&&e.reportError("Subscription root type must be Object type if provided, it cannot be "+Object(d.a)(a)+".",null!==(s=Oe(t,u.b.SUBSCRIPTION))&&void 0!==s?s:a.astNode)}(t),function(e){for(const n of e.schema.getDirectives())if(re(n)){_e(e,n);for(const r of n.args){var t;if(_e(e,r),Object(K.H)(r.type)||e.reportError(`The type of @${n.name}(${r.name}:) must be Input Type but got: ${Object(d.a)(r.type)}.`,r.astNode),Object(K.Q)(r)&&null!=r.deprecationReason)e.reportError(`Required argument @${n.name}(${r.name}:) cannot be deprecated.`,[Le(r.astNode),null===(t=r.astNode)||void 0===t?void 0:t.type])}}else e.reportError(`Expected directive but got: ${Object(d.a)(n)}.`,null==n?void 0:n.astNode)}(t),function(e){const t=function(e){const t=Object.create(null),n=[],r=Object.create(null);return function i(o){if(t[o.name])return;t[o.name]=!0,r[o.name]=n.length;const a=Object.values(o.getFields());for(const t of a)if(Object(K.M)(t.type)&&Object(K.G)(t.type.ofType)){const o=t.type.ofType,a=r[o.name];if(n.push(t),void 0===a)i(o);else{const t=n.slice(a),r=t.map(e=>e.name).join(".");e.reportError(`Cannot reference Input Object "${o.name}" within itself through a series of non-null fields: "${r}".`,t.map(e=>e.astNode))}n.pop()}r[o.name]=void 0}}(e),n=e.schema.getTypeMap();for(const r of Object.values(n))Object(K.L)(r)?(Object(ee.isIntrospectionType)(r)||_e(e,r),Object(K.O)(r)||Object(K.I)(r)?(Ce(e,r),xe(e,r)):Object(K.U)(r)?Se(e,r):Object(K.F)(r)?Ne(e,r):Object(K.G)(r)&&(De(e,r),t(r))):e.reportError(`Expected GraphQL named type but got: ${Object(d.a)(r)}.`,r.astNode)}(t);const n=t.getErrors();return e.__validationErrors=n,n}function Te(e){const t=be(e);if(0!==t.length)throw new Error(t.map(e=>e.message).join("\n\n"))}class Ee{constructor(e){this._errors=[],this.schema=e}reportError(e,t){const n=Array.isArray(t)?t.filter(Boolean):t;this._errors.push(new s.a(e,n))}getErrors(){return this._errors}}function Oe(e,t){var n;return null===(n=[e.astNode,...e.extensionASTNodes].flatMap(e=>{var t;return null!==(t=null==e?void 0:e.operationTypes)&&void 0!==t?t:[]}).find(e=>e.operation===t))||void 0===n?void 0:n.type}function _e(e,t){t.name.startsWith("__")&&e.reportError(`Name "${t.name}" must not begin with "__", which is reserved by GraphQL introspection.`,t.astNode)}function Ce(e,t){const n=Object.values(t.getFields());0===n.length&&e.reportError(`Type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(const a of n){var r;if(_e(e,a),!Object(K.P)(a.type))e.reportError(`The type of ${t.name}.${a.name} must be Output Type but got: ${Object(d.a)(a.type)}.`,null===(r=a.astNode)||void 0===r?void 0:r.type);for(const n of a.args){const r=n.name;var i,o;if(_e(e,n),!Object(K.H)(n.type))e.reportError(`The type of ${t.name}.${a.name}(${r}:) must be Input Type but got: ${Object(d.a)(n.type)}.`,null===(i=n.astNode)||void 0===i?void 0:i.type);if(Object(K.Q)(n)&&null!=n.deprecationReason)e.reportError(`Required argument ${t.name}.${a.name}(${r}:) cannot be deprecated.`,[Le(n.astNode),null===(o=n.astNode)||void 0===o?void 0:o.type])}}}function xe(e,t){const n=Object.create(null);for(const r of t.getInterfaces())Object(K.I)(r)?t!==r?n[r.name]?e.reportError(`Type ${t.name} can only implement ${r.name} once.`,Ie(t,r)):(n[r.name]=!0,ke(e,t,r),we(e,t,r)):e.reportError(`Type ${t.name} cannot implement itself because it would create a circular reference.`,Ie(t,r)):e.reportError(`Type ${Object(d.a)(t)} must only implement Interface types, it cannot implement ${Object(d.a)(r)}.`,Ie(t,r))}function we(e,t,n){const r=t.getFields();for(const l of Object.values(n.getFields())){const c=l.name,u=r[c];if(u){var i,o;if(!Y(e.schema,u.type,l.type))e.reportError(`Interface field ${n.name}.${c} expects type ${Object(d.a)(l.type)} but ${t.name}.${c} is type ${Object(d.a)(u.type)}.`,[null===(i=l.astNode)||void 0===i?void 0:i.type,null===(o=u.astNode)||void 0===o?void 0:o.type]);for(const r of l.args){const i=r.name,o=u.args.find(e=>e.name===i);var a,s;if(o){if(!W(r.type,o.type))e.reportError(`Interface field argument ${n.name}.${c}(${i}:) expects type ${Object(d.a)(r.type)} but ${t.name}.${c}(${i}:) is type `+Object(d.a)(o.type)+".",[null===(a=r.astNode)||void 0===a?void 0:a.type,null===(s=o.astNode)||void 0===s?void 0:s.type])}else e.reportError(`Interface field argument ${n.name}.${c}(${i}:) expected but ${t.name}.${c} does not provide it.`,[r.astNode,u.astNode])}for(const r of u.args){const i=r.name;!l.args.find(e=>e.name===i)&&Object(K.Q)(r)&&e.reportError(`Object field ${t.name}.${c} includes required argument ${i} that is missing from the Interface field ${n.name}.${c}.`,[r.astNode,l.astNode])}}else e.reportError(`Interface field ${n.name}.${c} expected but ${t.name} does not provide it.`,[l.astNode,t.astNode,...t.extensionASTNodes])}}function ke(e,t,n){const r=t.getInterfaces();for(const i of n.getInterfaces())r.includes(i)||e.reportError(i===t?`Type ${t.name} cannot implement ${n.name} because it would create a circular reference.`:`Type ${t.name} must implement ${i.name} because it is implemented by ${n.name}.`,[...Ie(n,i),...Ie(t,n)])}function Se(e,t){const n=t.getTypes();0===n.length&&e.reportError(`Union type ${t.name} must define one or more member types.`,[t.astNode,...t.extensionASTNodes]);const r=Object.create(null);for(const i of n)r[i.name]?e.reportError(`Union type ${t.name} can only include type ${i.name} once.`,Ae(t,i.name)):(r[i.name]=!0,Object(K.O)(i)||e.reportError(`Union type ${t.name} can only include Object types, it cannot include ${Object(d.a)(i)}.`,Ae(t,String(i))))}function Ne(e,t){const n=t.getValues();0===n.length&&e.reportError(`Enum type ${t.name} must define one or more values.`,[t.astNode,...t.extensionASTNodes]);for(const t of n)_e(e,t)}function De(e,t){const n=Object.values(t.getFields());0===n.length&&e.reportError(`Input Object type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(const o of n){var r,i;if(_e(e,o),!Object(K.H)(o.type))e.reportError(`The type of ${t.name}.${o.name} must be Input Type but got: ${Object(d.a)(o.type)}.`,null===(r=o.astNode)||void 0===r?void 0:r.type);if(Object(K.R)(o)&&null!=o.deprecationReason)e.reportError(`Required input field ${t.name}.${o.name} cannot be deprecated.`,[Le(o.astNode),null===(i=o.astNode)||void 0===i?void 0:i.type])}}function Ie(e,t){const{astNode:n,extensionASTNodes:r}=e;return(null!=n?[n,...r]:r).flatMap(e=>{var t;return null!==(t=e.interfaces)&&void 0!==t?t:[]}).filter(e=>e.name.value===t.name)}function Ae(e,t){const{astNode:n,extensionASTNodes:r}=e;return(null!=n?[n,...r]:r).flatMap(e=>{var t;return null!==(t=e.types)&&void 0!==t?t:[]}).filter(e=>e.name.value===t)}function Le(e){var t;return null==e||null===(t=e.directives)||void 0===t?void 0:t.find(e=>e.name.value===fe.name)}var Fe=n(8);function je(e,t){let n;return t.kind===c.a.LIST_TYPE?(n=je(e,t.type),n&&new K.d(n)):t.kind===c.a.NON_NULL_TYPE?(n=je(e,t.type),n&&new K.e(n)):t.kind===c.a.NAMED_TYPE?e.getType(t.name.value):void Object(Fe.a)(!1,"Unexpected type node: "+Object(d.a)(t))}class Me{constructor(e,t,n){this._schema=e,this._typeStack=[],this._parentTypeStack=[],this._inputTypeStack=[],this._fieldDefStack=[],this._defaultValueStack=[],this._directive=null,this._argument=null,this._enumValue=null,this._getFieldDef=null!=n?n:Re,t&&(Object(K.H)(t)&&this._inputTypeStack.push(t),Object(K.E)(t)&&this._parentTypeStack.push(t),Object(K.P)(t)&&this._typeStack.push(t))}get[Symbol.toStringTag](){return"TypeInfo"}getType(){if(this._typeStack.length>0)return this._typeStack[this._typeStack.length-1]}getParentType(){if(this._parentTypeStack.length>0)return this._parentTypeStack[this._parentTypeStack.length-1]}getInputType(){if(this._inputTypeStack.length>0)return this._inputTypeStack[this._inputTypeStack.length-1]}getParentInputType(){if(this._inputTypeStack.length>1)return this._inputTypeStack[this._inputTypeStack.length-2]}getFieldDef(){if(this._fieldDefStack.length>0)return this._fieldDefStack[this._fieldDefStack.length-1]}getDefaultValue(){if(this._defaultValueStack.length>0)return this._defaultValueStack[this._defaultValueStack.length-1]}getDirective(){return this._directive}getArgument(){return this._argument}getEnumValue(){return this._enumValue}enter(e){const t=this._schema;switch(e.kind){case c.a.SELECTION_SET:{const e=Object(K.B)(this.getType());this._parentTypeStack.push(Object(K.E)(e)?e:void 0);break}case c.a.FIELD:{const n=this.getParentType();let r,i;n&&(r=this._getFieldDef(t,n,e),r&&(i=r.type)),this._fieldDefStack.push(r),this._typeStack.push(Object(K.P)(i)?i:void 0);break}case c.a.DIRECTIVE:this._directive=t.getDirective(e.name.value);break;case c.a.OPERATION_DEFINITION:{const n=t.getRootType(e.operation);this._typeStack.push(Object(K.O)(n)?n:void 0);break}case c.a.INLINE_FRAGMENT:case c.a.FRAGMENT_DEFINITION:{const n=e.typeCondition,r=n?je(t,n):Object(K.B)(this.getType());this._typeStack.push(Object(K.P)(r)?r:void 0);break}case c.a.VARIABLE_DEFINITION:{const n=je(t,e.type);this._inputTypeStack.push(Object(K.H)(n)?n:void 0);break}case c.a.ARGUMENT:{var n;let t,r;const i=null!==(n=this.getDirective())&&void 0!==n?n:this.getFieldDef();i&&(t=i.args.find(t=>t.name===e.name.value),t&&(r=t.type)),this._argument=t,this._defaultValueStack.push(t?t.defaultValue:void 0),this._inputTypeStack.push(Object(K.H)(r)?r:void 0);break}case c.a.LIST:{const e=Object(K.C)(this.getInputType()),t=Object(K.K)(e)?e.ofType:e;this._defaultValueStack.push(void 0),this._inputTypeStack.push(Object(K.H)(t)?t:void 0);break}case c.a.OBJECT_FIELD:{const t=Object(K.B)(this.getInputType());let n,r;Object(K.G)(t)&&(r=t.getFields()[e.name.value],r&&(n=r.type)),this._defaultValueStack.push(r?r.defaultValue:void 0),this._inputTypeStack.push(Object(K.H)(n)?n:void 0);break}case c.a.ENUM:{const t=Object(K.B)(this.getInputType());let n;Object(K.F)(t)&&(n=t.getValue(e.value)),this._enumValue=n;break}}}leave(e){switch(e.kind){case c.a.SELECTION_SET:this._parentTypeStack.pop();break;case c.a.FIELD:this._fieldDefStack.pop(),this._typeStack.pop();break;case c.a.DIRECTIVE:this._directive=null;break;case c.a.OPERATION_DEFINITION:case c.a.INLINE_FRAGMENT:case c.a.FRAGMENT_DEFINITION:this._typeStack.pop();break;case c.a.VARIABLE_DEFINITION:this._inputTypeStack.pop();break;case c.a.ARGUMENT:this._argument=null,this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case c.a.LIST:case c.a.OBJECT_FIELD:this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case c.a.ENUM:this._enumValue=null}}}function Re(e,t,n){const r=n.name.value;return r===ee.SchemaMetaFieldDef.name&&e.getQueryType()===t?ee.SchemaMetaFieldDef:r===ee.TypeMetaFieldDef.name&&e.getQueryType()===t?ee.TypeMetaFieldDef:r===ee.TypeNameMetaFieldDef.name&&Object(K.E)(t)?ee.TypeNameMetaFieldDef:Object(K.O)(t)||Object(K.I)(t)?t.getFields()[r]:void 0}function Pe(e,t){return{enter(...n){const r=n[0];e.enter(r);const i=Object(Q.b)(t,r.kind).enter;if(i){const o=i.apply(t,n);return void 0!==o&&(e.leave(r),Object(u.e)(o)&&e.enter(o)),o}},leave(...n){const r=n[0],i=Object(Q.b)(t,r.kind).leave;let o;return i&&(o=i.apply(t,n)),e.leave(r),o}}}function Ve(e){return Ue(e)||Ge(e)||Qe(e)}function Ue(e){return e.kind===c.a.OPERATION_DEFINITION||e.kind===c.a.FRAGMENT_DEFINITION}function Be(e){return e.kind===c.a.FIELD||e.kind===c.a.FRAGMENT_SPREAD||e.kind===c.a.INLINE_FRAGMENT}function $e(e){return e.kind===c.a.VARIABLE||e.kind===c.a.INT||e.kind===c.a.FLOAT||e.kind===c.a.STRING||e.kind===c.a.BOOLEAN||e.kind===c.a.NULL||e.kind===c.a.ENUM||e.kind===c.a.LIST||e.kind===c.a.OBJECT}function qe(e){return $e(e)&&(e.kind===c.a.LIST?e.values.some(qe):e.kind===c.a.OBJECT?e.fields.some(e=>qe(e.value)):e.kind!==c.a.VARIABLE)}function He(e){return e.kind===c.a.NAMED_TYPE||e.kind===c.a.LIST_TYPE||e.kind===c.a.NON_NULL_TYPE}function Ge(e){return e.kind===c.a.SCHEMA_DEFINITION||ze(e)||e.kind===c.a.DIRECTIVE_DEFINITION}function ze(e){return e.kind===c.a.SCALAR_TYPE_DEFINITION||e.kind===c.a.OBJECT_TYPE_DEFINITION||e.kind===c.a.INTERFACE_TYPE_DEFINITION||e.kind===c.a.UNION_TYPE_DEFINITION||e.kind===c.a.ENUM_TYPE_DEFINITION||e.kind===c.a.INPUT_OBJECT_TYPE_DEFINITION}function Qe(e){return e.kind===c.a.SCHEMA_EXTENSION||Ke(e)}function Ke(e){return e.kind===c.a.SCALAR_TYPE_EXTENSION||e.kind===c.a.OBJECT_TYPE_EXTENSION||e.kind===c.a.INTERFACE_TYPE_EXTENSION||e.kind===c.a.UNION_TYPE_EXTENSION||e.kind===c.a.ENUM_TYPE_EXTENSION||e.kind===c.a.INPUT_OBJECT_TYPE_EXTENSION}function We(e){return{Document(t){for(const n of t.definitions)if(!Ue(n)){const t=n.kind===c.a.SCHEMA_DEFINITION||n.kind===c.a.SCHEMA_EXTENSION?"schema":'"'+n.name.value+'"';e.reportError(new s.a(`The ${t} definition is not executable.`,n))}return!1}}}function Ye(e){const t=Object.create(null);return{OperationDefinition(n){const r=n.name;return r&&(t[r.value]?e.reportError(new s.a(`There can be only one operation named "${r.value}".`,[t[r.value],r])):t[r.value]=r),!1},FragmentDefinition:()=>!1}}function Je(e){let t=0;return{Document(e){t=e.definitions.filter(e=>e.kind===c.a.OPERATION_DEFINITION).length},OperationDefinition(n){!n.name&&t>1&&e.reportError(new s.a("This anonymous operation must be the only defined operation.",n))}}}var Xe=n(16);function Ze(e){return e.map(e=>"number"==typeof e?"["+e.toString()+"]":"."+e).join("")}var et=n(9);function tt(e,t,n){if(e){if(e.kind===c.a.VARIABLE){const r=e.name.value;if(null==n||void 0===n[r])return;const i=n[r];if(null===i&&Object(K.M)(t))return;return i}if(Object(K.M)(t)){if(e.kind===c.a.NULL)return;return tt(e,t.ofType,n)}if(e.kind===c.a.NULL)return null;if(Object(K.K)(t)){const r=t.ofType;if(e.kind===c.a.LIST){const t=[];for(const i of e.values)if(nt(i,n)){if(Object(K.M)(r))return;t.push(null)}else{const e=tt(i,r,n);if(void 0===e)return;t.push(e)}return t}const i=tt(e,r,n);if(void 0===i)return;return[i]}if(Object(K.G)(t)){if(e.kind!==c.a.OBJECT)return;const r=Object.create(null),i=Object(Xe.a)(e.fields,e=>e.name.value);for(const e of Object.values(t.getFields())){const t=i[e.name];if(!t||nt(t.value,n)){if(void 0!==e.defaultValue)r[e.name]=e.defaultValue;else if(Object(K.M)(e.type))return;continue}const o=tt(t.value,e.type,n);if(void 0===o)return;r[e.name]=o}return r}if(Object(K.J)(t)){let r;try{r=t.parseLiteral(e,n)}catch(e){return}if(void 0===r)return;return r}Object(Fe.a)(!1,"Unexpected input type: "+Object(d.a)(t))}}function nt(e,t){return e.kind===c.a.VARIABLE&&(null==t||void 0===t[e.name.value])}var rt=n(17),it=n(19);function ot(e,t,n){return{prev:e,key:t,typename:n}}function at(e){const t=[];let n=e;for(;n;)t.push(n.key),n=n.prev;return t.reverse()}var st=n(32);function lt(e,t,n=ct){return function e(t,n,r,i){if(Object(K.M)(n))return null!=t?e(t,n.ofType,r,i):void r(at(i),t,new s.a(`Expected non-nullable type "${Object(d.a)(n)}" not to be null.`));if(null==t)return null;if(Object(K.K)(n)){const o=n.ofType;return Object(st.a)(t)?Array.from(t,(t,n)=>{const a=ot(i,n,void 0);return e(t,o,r,a)}):[e(t,o,r,i)]}if(Object(K.G)(n)){if(!Object(Z.a)(t))return void r(at(i),t,new s.a(`Expected type "${n.name}" to be an object.`));const o={},a=n.getFields();for(const l of Object.values(a)){const a=t[l.name];if(void 0!==a)o[l.name]=e(a,l.type,r,ot(i,l.name,n.name));else if(void 0!==l.defaultValue)o[l.name]=l.defaultValue;else if(Object(K.M)(l.type)){const e=Object(d.a)(l.type);r(at(i),t,new s.a(`Field "${l.name}" of required type "${e}" was not provided.`))}}for(const e of Object.keys(t))if(!a[e]){const o=Object(it.a)(e,Object.keys(n.getFields()));r(at(i),t,new s.a(`Field "${e}" is not defined by type "${n.name}".`+Object(rt.a)(o)))}return o}if(Object(K.J)(n)){let e;try{e=n.parseValue(t)}catch(e){return void(e instanceof s.a?r(at(i),t,e):r(at(i),t,new s.a(`Expected type "${n.name}". `+e.message,void 0,void 0,void 0,void 0,e)))}return void 0===e&&r(at(i),t,new s.a(`Expected type "${n.name}".`)),e}Object(Fe.a)(!1,"Unexpected input type: "+Object(d.a)(n))}(e,t,n,void 0)}function ct(e,t,n){let r="Invalid value "+Object(d.a)(t);throw e.length>0&&(r+=` at "value${Ze(e)}"`),n.message=r+": "+n.message,n}function ut(e,t,n,r){const i=[],o=null==r?void 0:r.maxErrors;try{const r=function(e,t,n,r){const i={};for(const o of t){const t=o.variable.name.value,a=je(e,o.type);if(!Object(K.H)(a)){const e=Object(et.a)(o.type);r(new s.a(`Variable "$${t}" expected value of type "${e}" which cannot be used as an input type.`,o.type));continue}if(!pt(n,t)){if(o.defaultValue)i[t]=tt(o.defaultValue,a);else if(Object(K.M)(a)){const e=Object(d.a)(a);r(new s.a(`Variable "$${t}" of required type "${e}" was not provided.`,o))}continue}const l=n[t];if(null===l&&Object(K.M)(a)){const e=Object(d.a)(a);r(new s.a(`Variable "$${t}" of non-null type "${e}" must not be null.`,o))}else i[t]=lt(l,a,(e,n,i)=>{let a=`Variable "$${t}" got invalid value `+Object(d.a)(n);e.length>0&&(a+=` at "${t}${Ze(e)}"`),r(new s.a(a+"; "+i.message,o,void 0,void 0,void 0,i.originalError))})}return i}(e,t,n,e=>{if(null!=o&&i.length>=o)throw new s.a("Too many errors processing variables, error limit reached. Execution aborted.");i.push(e)});if(0===i.length)return{coerced:r}}catch(e){i.push(e)}return{errors:i}}function ft(e,t,n){var r;const i={},o=null!==(r=t.arguments)&&void 0!==r?r:[],a=Object(Xe.a)(o,e=>e.name.value);for(const r of e.args){const e=r.name,o=r.type,l=a[e];if(!l){if(void 0!==r.defaultValue)i[e]=r.defaultValue;else if(Object(K.M)(o))throw new s.a(`Argument "${e}" of required type "${Object(d.a)(o)}" was not provided.`,t);continue}const u=l.value;let f=u.kind===c.a.NULL;if(u.kind===c.a.VARIABLE){const t=u.name.value;if(null==n||!pt(n,t)){if(void 0!==r.defaultValue)i[e]=r.defaultValue;else if(Object(K.M)(o))throw new s.a(`Argument "${e}" of required type "${Object(d.a)(o)}" was provided the variable "$${t}" which was not provided a runtime value.`,u);continue}f=null==n[t]}if(f&&Object(K.M)(o))throw new s.a(`Argument "${e}" of non-null type "${Object(d.a)(o)}" must not be null.`,u);const p=tt(u,o,n);if(void 0===p)throw new s.a(`Argument "${e}" has invalid value ${Object(et.a)(u)}.`,u);i[e]=p}return i}function dt(e,t,n){var r;const i=null===(r=t.directives)||void 0===r?void 0:r.find(t=>t.name.value===e.name);if(i)return ft(e,i,n)}function pt(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function ht(e,t,n,r,i){const o=new Map,a=[];return mt(e,t,n,r,i,o,a,new Set),{fields:o,patches:a}}function mt(e,t,n,r,i,o,a,s){for(const u of i.selections)switch(u.kind){case c.a.FIELD:{if(!vt(n,u))continue;const e=(l=u).alias?l.alias.value:l.name.value,t=o.get(e);void 0!==t?t.push(u):o.set(e,[u]);break}case c.a.INLINE_FRAGMENT:{if(!vt(n,u)||!yt(e,u,r))continue;const i=gt(n,u);if(i){const o=new Map;mt(e,t,n,r,u.selectionSet,o,a,s),a.push({label:i.label,fields:o})}else mt(e,t,n,r,u.selectionSet,o,a,s);break}case c.a.FRAGMENT_SPREAD:{const i=u.name.value;if(!vt(n,u))continue;const l=gt(n,u);if(s.has(i)&&!l)continue;const c=t[i];if(!c||!yt(e,c,r))continue;if(s.add(i),l){const i=new Map;mt(e,t,n,r,c.selectionSet,i,a,s),a.push({label:l.label,fields:i})}else mt(e,t,n,r,c.selectionSet,o,a,s);break}}var l}function gt(e,t){const n=dt(le,t,e);if(n&&!1!==n.if)return{label:"string"==typeof n.label?n.label:void 0}}function vt(e,t){const n=dt(se,t,e);if(!0===(null==n?void 0:n.if))return!1;const r=dt(ae,t,e);return!1!==(null==r?void 0:r.if)}function yt(e,t,n){const r=t.typeCondition;if(!r)return!0;const i=je(e,r);return i===n||!!Object(K.D)(i)&&e.isSubType(i,n)}function bt(e){return{OperationDefinition(t){if("subscription"===t.operation){const n=e.getSchema(),r=n.getSubscriptionType();if(r){const i=t.name?t.name.value:null,o=Object.create(null),a=e.getDocument(),l=Object.create(null);for(const e of a.definitions)e.kind===c.a.FRAGMENT_DEFINITION&&(l[e.name.value]=e);const{fields:u}=ht(n,l,o,r,t.selectionSet);if(u.size>1){const t=[...u.values()].slice(1).flat();e.reportError(new s.a(null!=i?`Subscription "${i}" must select only one top level field.`:"Anonymous Subscription must select only one top level field.",t))}for(const t of u.values()){t[0].name.value.startsWith("__")&&e.reportError(new s.a(null!=i?`Subscription "${i}" must not select an introspection top level field.`:"Anonymous Subscription must not select an introspection top level field.",t))}}}}}}function Tt(e){const t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);for(const t of e.getDocument().definitions)ze(t)&&(r[t.name.value]=!0);const i=[...Object.keys(n),...Object.keys(r)];return{NamedType(t,o,a,l,c){const u=t.name.value;if(!n[u]&&!r[u]){var f;const n=null!==(f=c[2])&&void 0!==f?f:a,r=null!=n&&("kind"in(d=n)&&(Ge(d)||Qe(d)));if(r&&Et.includes(u))return;const o=Object(it.a)(u,r?Et.concat(i):i);e.reportError(new s.a(`Unknown type "${u}".`+Object(rt.a)(o),t))}var d}}}const Et=[...ne.g,...ee.introspectionTypes].map(e=>e.name);function Ot(e){return{InlineFragment(t){const n=t.typeCondition;if(n){const t=je(e.getSchema(),n);if(t&&!Object(K.E)(t)){const t=Object(et.a)(n);e.reportError(new s.a(`Fragment cannot condition on non composite type "${t}".`,n))}}},FragmentDefinition(t){const n=je(e.getSchema(),t.typeCondition);if(n&&!Object(K.E)(n)){const n=Object(et.a)(t.typeCondition);e.reportError(new s.a(`Fragment "${t.name.value}" cannot condition on non composite type "${n}".`,t.typeCondition))}}}}function _t(e){return{VariableDefinition(t){const n=je(e.getSchema(),t.type);if(void 0!==n&&!Object(K.H)(n)){const n=t.variable.name.value,r=Object(et.a)(t.type);e.reportError(new s.a(`Variable "$${n}" cannot be non-input type "${r}".`,t.type))}}}}function Ct(e){return{Field(t){const n=e.getType(),r=t.selectionSet;if(n)if(Object(K.J)(Object(K.B)(n))){if(r){const i=t.name.value,o=Object(d.a)(n);e.reportError(new s.a(`Field "${i}" must not have a selection since type "${o}" has no subfields.`,r))}}else if(!r){const r=t.name.value,i=Object(d.a)(n);e.reportError(new s.a(`Field "${r}" of type "${i}" must have a selection of subfields. Did you mean "${r} { ... }"?`,t))}}}}var xt=n(27);function wt(e){return{Field(t){const n=e.getParentType();if(n){if(!e.getFieldDef()){const r=e.getSchema(),i=t.name.value;let o=Object(rt.a)("to use an inline fragment on",function(e,t,n){if(!Object(K.D)(t))return[];const r=new Set,i=Object.create(null);for(const a of e.getPossibleTypes(t))if(a.getFields()[n]){r.add(a),i[a.name]=1;for(const e of a.getInterfaces()){var o;e.getFields()[n]&&(r.add(e),i[e.name]=(null!==(o=i[e.name])&&void 0!==o?o:0)+1)}}return[...r].sort((t,n)=>{const r=i[n.name]-i[t.name];return 0!==r?r:Object(K.I)(t)&&e.isSubType(t,n)?-1:Object(K.I)(n)&&e.isSubType(n,t)?1:Object(xt.a)(t.name,n.name)}).map(e=>e.name)}(r,n,i));""===o&&(o=Object(rt.a)(function(e,t){if(Object(K.O)(e)||Object(K.I)(e)){const n=Object.keys(e.getFields());return Object(it.a)(t,n)}return[]}(n,i))),e.reportError(new s.a(`Cannot query field "${i}" on type "${n.name}".`+o,t))}}}}}function kt(e){const t=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(n){const r=n.name.value;return t[r]?e.reportError(new s.a(`There can be only one fragment named "${r}".`,[t[r],n.name])):t[r]=n.name,!1}}}function St(e){return{FragmentSpread(t){const n=t.name.value;e.getFragment(n)||e.reportError(new s.a(`Unknown fragment "${n}".`,t.name))}}}function Nt(e){const t=[],n=[];return{OperationDefinition:e=>(t.push(e),!1),FragmentDefinition:e=>(n.push(e),!1),Document:{leave(){const r=Object.create(null);for(const n of t)for(const t of e.getRecursivelyReferencedFragments(n))r[t.name.value]=!0;for(const t of n){const n=t.name.value;!0!==r[n]&&e.reportError(new s.a(`Fragment "${n}" is never used.`,t))}}}}}function Dt(e){return{InlineFragment(t){const n=e.getType(),r=e.getParentType();if(Object(K.E)(n)&&Object(K.E)(r)&&!J(e.getSchema(),n,r)){const i=Object(d.a)(r),o=Object(d.a)(n);e.reportError(new s.a(`Fragment cannot be spread here as objects of type "${i}" can never be of type "${o}".`,t))}},FragmentSpread(t){const n=t.name.value,r=function(e,t){const n=e.getFragment(t);if(n){const t=je(e.getSchema(),n.typeCondition);if(Object(K.E)(t))return t}}(e,n),i=e.getParentType();if(r&&i&&!J(e.getSchema(),r,i)){const o=Object(d.a)(i),a=Object(d.a)(r);e.reportError(new s.a(`Fragment "${n}" cannot be spread here as objects of type "${o}" can never be of type "${a}".`,t))}}}}function It(e){const t=Object.create(null),n=[],r=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition:i=>(function i(o){if(t[o.name.value])return;const a=o.name.value;t[a]=!0;const l=e.getFragmentSpreads(o.selectionSet);if(0===l.length)return;r[a]=n.length;for(const t of l){const o=t.name.value,a=r[o];if(n.push(t),void 0===a){const t=e.getFragment(o);t&&i(t)}else{const t=n.slice(a),r=t.slice(0,-1).map(e=>'"'+e.name.value+'"').join(", ");e.reportError(new s.a(`Cannot spread fragment "${o}" within itself`+(""!==r?` via ${r}.`:"."),t))}n.pop()}r[a]=void 0}(i),!1)}}function At(e,t){const n=new Map;for(const r of e){const e=t(r),i=n.get(e);void 0===i?n.set(e,[r]):i.push(r)}return n}function Lt(e){return{OperationDefinition(t){var n;const r=At(null!==(n=t.variableDefinitions)&&void 0!==n?n:[],e=>e.variable.name.value);for(const[t,n]of r)n.length>1&&e.reportError(new s.a(`There can be only one variable named "$${t}".`,n.map(e=>e.variable.name)))}}}function Ft(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(n){const r=e.getRecursiveVariableUsages(n);for(const{node:i}of r){const r=i.name.value;!0!==t[r]&&e.reportError(new s.a(n.name?`Variable "$${r}" is not defined by operation "${n.name.value}".`:`Variable "$${r}" is not defined.`,[i,n]))}}},VariableDefinition(e){t[e.variable.name.value]=!0}}}function jt(e){let t=[];return{OperationDefinition:{enter(){t=[]},leave(n){const r=Object.create(null),i=e.getRecursiveVariableUsages(n);for(const{node:e}of i)r[e.name.value]=!0;for(const i of t){const t=i.variable.name.value;!0!==r[t]&&e.reportError(new s.a(n.name?`Variable "$${t}" is never used in operation "${n.name.value}".`:`Variable "$${t}" is never used.`,i))}}},VariableDefinition(e){t.push(e)}}}function Mt(e){const t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():pe;for(const e of r)t[e.name]=e.locations;const i=e.getDocument().definitions;for(const e of i)e.kind===c.a.DIRECTIVE_DEFINITION&&(t[e.name.value]=e.locations.map(e=>e.value));return{Directive(n,r,i,o,a){const l=n.name.value,f=t[l];if(!f)return void e.reportError(new s.a(`Unknown directive "@${l}".`,n));const p=function(e){const t=e[e.length-1];switch("kind"in t||Object(Fe.a)(!1),t.kind){case c.a.OPERATION_DEFINITION:return function(e){switch(e){case u.b.QUERY:return v.a.QUERY;case u.b.MUTATION:return v.a.MUTATION;case u.b.SUBSCRIPTION:return v.a.SUBSCRIPTION}Object(Fe.a)(!1,"Unexpected operation: "+Object(d.a)(e))}(t.operation);case c.a.FIELD:return v.a.FIELD;case c.a.FRAGMENT_SPREAD:return v.a.FRAGMENT_SPREAD;case c.a.INLINE_FRAGMENT:return v.a.INLINE_FRAGMENT;case c.a.FRAGMENT_DEFINITION:return v.a.FRAGMENT_DEFINITION;case c.a.VARIABLE_DEFINITION:return v.a.VARIABLE_DEFINITION;case c.a.SCHEMA_DEFINITION:case c.a.SCHEMA_EXTENSION:return v.a.SCHEMA;case c.a.SCALAR_TYPE_DEFINITION:case c.a.SCALAR_TYPE_EXTENSION:return v.a.SCALAR;case c.a.OBJECT_TYPE_DEFINITION:case c.a.OBJECT_TYPE_EXTENSION:return v.a.OBJECT;case c.a.FIELD_DEFINITION:return v.a.FIELD_DEFINITION;case c.a.INTERFACE_TYPE_DEFINITION:case c.a.INTERFACE_TYPE_EXTENSION:return v.a.INTERFACE;case c.a.UNION_TYPE_DEFINITION:case c.a.UNION_TYPE_EXTENSION:return v.a.UNION;case c.a.ENUM_TYPE_DEFINITION:case c.a.ENUM_TYPE_EXTENSION:return v.a.ENUM;case c.a.ENUM_VALUE_DEFINITION:return v.a.ENUM_VALUE;case c.a.INPUT_OBJECT_TYPE_DEFINITION:case c.a.INPUT_OBJECT_TYPE_EXTENSION:return v.a.INPUT_OBJECT;case c.a.INPUT_VALUE_DEFINITION:{const t=e[e.length-3];return"kind"in t||Object(Fe.a)(!1),t.kind===c.a.INPUT_OBJECT_TYPE_DEFINITION?v.a.INPUT_FIELD_DEFINITION:v.a.ARGUMENT_DEFINITION}}}(a);p&&!f.includes(p)&&e.reportError(new s.a(`Directive "@${l}" may not be used on ${p}.`,n))}}}function Rt(e){const t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():pe;for(const e of r)t[e.name]=!e.isRepeatable;const i=e.getDocument().definitions;for(const e of i)e.kind===c.a.DIRECTIVE_DEFINITION&&(t[e.name.value]=!e.repeatable);const o=Object.create(null),a=Object.create(null);return{enter(n){if(!("directives"in n)||!n.directives)return;let r;if(n.kind===c.a.SCHEMA_DEFINITION||n.kind===c.a.SCHEMA_EXTENSION)r=o;else if(ze(n)||Ke(n)){const e=n.name.value;r=a[e],void 0===r&&(a[e]=r=Object.create(null))}else r=Object.create(null);for(const i of n.directives){const n=i.name.value;t[n]&&(r[n]?e.reportError(new s.a(`The directive "@${n}" can only be used once at this location.`,[r[n],i])):r[n]=i)}}}}function Pt(e){return{...Vt(e),Argument(t){const n=e.getArgument(),r=e.getFieldDef(),i=e.getParentType();if(!n&&r&&i){const n=t.name.value,o=r.args.map(e=>e.name),a=Object(it.a)(n,o);e.reportError(new s.a(`Unknown argument "${n}" on field "${i.name}.${r.name}".`+Object(rt.a)(a),t))}}}}function Vt(e){const t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():pe;for(const e of r)t[e.name]=e.args.map(e=>e.name);const i=e.getDocument().definitions;for(const e of i)if(e.kind===c.a.DIRECTIVE_DEFINITION){var o;const n=null!==(o=e.arguments)&&void 0!==o?o:[];t[e.name.value]=n.map(e=>e.name.value)}return{Directive(n){const r=n.name.value,i=t[r];if(n.arguments&&i)for(const t of n.arguments){const n=t.name.value;if(!i.includes(n)){const o=Object(it.a)(n,i);e.reportError(new s.a(`Unknown argument "${n}" on directive "@${r}".`+Object(rt.a)(o),t))}}return!1}}}function Ut(e){return{Field:t,Directive:t};function t(t){var n;const r=At(null!==(n=t.arguments)&&void 0!==n?n:[],e=>e.name.value);for(const[t,n]of r)n.length>1&&e.reportError(new s.a(`There can be only one argument named "${t}".`,n.map(e=>e.name)))}}function Bt(e){return{ListValue(t){const n=Object(K.C)(e.getParentInputType());if(!Object(K.K)(n))return $t(e,t),!1},ObjectValue(t){const n=Object(K.B)(e.getInputType());if(!Object(K.G)(n))return $t(e,t),!1;const r=Object(Xe.a)(t.fields,e=>e.name.value);for(const i of Object.values(n.getFields())){if(!r[i.name]&&Object(K.R)(i)){const r=Object(d.a)(i.type);e.reportError(new s.a(`Field "${n.name}.${i.name}" of required type "${r}" was not provided.`,t))}}},ObjectField(t){const n=Object(K.B)(e.getParentInputType());if(!e.getInputType()&&Object(K.G)(n)){const r=Object(it.a)(t.name.value,Object.keys(n.getFields()));e.reportError(new s.a(`Field "${t.name.value}" is not defined by type "${n.name}".`+Object(rt.a)(r),t))}},NullValue(t){const n=e.getInputType();Object(K.M)(n)&&e.reportError(new s.a(`Expected value of type "${Object(d.a)(n)}", found ${Object(et.a)(t)}.`,t))},EnumValue:t=>$t(e,t),IntValue:t=>$t(e,t),FloatValue:t=>$t(e,t),StringValue:t=>$t(e,t),BooleanValue:t=>$t(e,t)}}function $t(e,t){const n=e.getInputType();if(!n)return;const r=Object(K.B)(n);if(Object(K.J)(r))try{if(void 0===r.parseLiteral(t,void 0)){const r=Object(d.a)(n);e.reportError(new s.a(`Expected value of type "${r}", found ${Object(et.a)(t)}.`,t))}}catch(r){const i=Object(d.a)(n);r instanceof s.a?e.reportError(r):e.reportError(new s.a(`Expected value of type "${i}", found ${Object(et.a)(t)}; `+r.message,t,void 0,void 0,void 0,r))}else{const r=Object(d.a)(n);e.reportError(new s.a(`Expected value of type "${r}", found ${Object(et.a)(t)}.`,t))}}function qt(e){return{...Ht(e),Field:{leave(t){var n;const r=e.getFieldDef();if(!r)return!1;const i=new Set(null===(n=t.arguments)||void 0===n?void 0:n.map(e=>e.name.value));for(const n of r.args)if(!i.has(n.name)&&Object(K.Q)(n)){const i=Object(d.a)(n.type);e.reportError(new s.a(`Field "${r.name}" argument "${n.name}" of type "${i}" is required, but it was not provided.`,t))}}}}}function Ht(e){var t;const n=Object.create(null),r=e.getSchema(),i=null!==(t=null==r?void 0:r.getDirectives())&&void 0!==t?t:pe;for(const e of i)n[e.name]=Object(Xe.a)(e.args.filter(K.Q),e=>e.name);const o=e.getDocument().definitions;for(const e of o)if(e.kind===c.a.DIRECTIVE_DEFINITION){var a;const t=null!==(a=e.arguments)&&void 0!==a?a:[];n[e.name.value]=Object(Xe.a)(t.filter(Gt),e=>e.name.value)}return{Directive:{leave(t){const r=t.name.value,i=n[r];if(i){var o;const n=null!==(o=t.arguments)&&void 0!==o?o:[],a=new Set(n.map(e=>e.name.value));for(const[n,o]of Object.entries(i))if(!a.has(n)){const i=Object(K.T)(o.type)?Object(d.a)(o.type):Object(et.a)(o.type);e.reportError(new s.a(`Directive "@${r}" argument "${n}" of type "${i}" is required, but it was not provided.`,t))}}}}}}function Gt(e){return e.type.kind===c.a.NON_NULL_TYPE&&null==e.defaultValue}function zt(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(n){const r=e.getRecursiveVariableUsages(n);for(const{node:n,type:i,defaultValue:o}of r){const r=n.name.value,a=t[r];if(a&&i){const t=e.getSchema(),l=je(t,a.type);if(l&&!Qt(t,l,a.defaultValue,i,o)){const t=Object(d.a)(l),o=Object(d.a)(i);e.reportError(new s.a(`Variable "$${r}" of type "${t}" used in position expecting type "${o}".`,[a,n]))}}}}},VariableDefinition(e){t[e.variable.name.value]=e}}}function Qt(e,t,n,r,i){if(Object(K.M)(r)&&!Object(K.M)(t)){const o=void 0!==i;if(!(null!=n&&n.kind!==c.a.NULL)&&!o)return!1;return Y(e,t,r.ofType)}return Y(e,t,r)}function Kt(e){return Array.isArray(e)?e.map(([e,t])=>`subfields "${e}" conflict because `+Kt(t)).join(" and "):e}function Wt(e){const t=new an,n=new Map;return{SelectionSet(r){const i=function(e,t,n,r,i){const o=[],[a,s]=rn(e,t,r,i);if(function(e,t,n,r,i){for(const[o,a]of Object.entries(i))if(a.length>1)for(let i=0;i{const n=t.find(t=>t.name.value===e.name.value);return!!n&&nn(e.value,n.value)})}(null!==(m=l.arguments)&&void 0!==m?m:[],null!==(g=f.arguments)&&void 0!==g?g:[]))return[[i,"they have differing arguments"],[l],[f]];if(!function(e,t){const n=tn(e),r=tn(t);if(!n&&!r)return!0;if(n&&r)return en(n,r,"initialCount")&&en(n,r,"label");return!1}(null!==(v=l.directives)&&void 0!==v?v:[],null!==(y=f.directives)&&void 0!==y?y:[]))return[[i,"they have differing stream directives"],[l],[f]]}const b=null==c?void 0:c.type,T=null==p?void 0:p.type;if(b&&T&&function e(t,n){if(Object(K.K)(t))return!Object(K.K)(n)||e(t.ofType,n.ofType);if(Object(K.K)(n))return!0;if(Object(K.M)(t))return!Object(K.M)(n)||e(t.ofType,n.ofType);if(Object(K.M)(n))return!0;if(Object(K.J)(t)||Object(K.J)(n))return t!==n;return!1}(b,T))return[[i,`they return conflicting types "${Object(d.a)(b)}" and "${Object(d.a)(T)}"`],[l],[f]];const E=l.selectionSet,O=f.selectionSet;if(E&&O){return function(e,t,n,r){if(e.length>0)return[[t,e.map(([e])=>e)],[n,...e.map(([,e])=>e).flat()],[r,...e.map(([,,e])=>e).flat()]]}(function(e,t,n,r,i,o,a,s){const l=[],[c,u]=rn(e,t,i,o),[f,d]=rn(e,t,a,s);Xt(e,l,t,n,r,c,f);for(const i of d)Yt(e,l,t,n,r,c,i);for(const i of u)Yt(e,l,t,n,r,f,i);for(const i of u)for(const o of d)Jt(e,l,t,n,r,i,o);return l}(e,t,n,h,Object(K.B)(b),E,Object(K.B)(T),O),i,l,f)}}function en(e,t,n){var r,i;const o=(null!==(r=e.arguments)&&void 0!==r?r:[]).find(e=>e.name.value===n);if(!o)return!1;const a=(null!==(i=t.arguments)&&void 0!==i?i:[]).find(e=>e.name.value===n);return!!a&&nn(o.value,a.value)}function tn(e){return e.find(e=>"stream"===e.name.value)}function nn(e,t){return Object(et.a)(e)===Object(et.a)(t)}function rn(e,t,n,r){const i=t.get(r);if(i)return i;const o=Object.create(null),a=Object.create(null);!function e(t,n,r,i,o){for(const a of r.selections)switch(a.kind){case c.a.FIELD:{const e=a.name.value;let t;(Object(K.O)(n)||Object(K.I)(n))&&(t=n.getFields()[e]);const r=a.alias?a.alias.value:e;i[r]||(i[r]=[]),i[r].push([n,a,t]);break}case c.a.FRAGMENT_SPREAD:o[a.name.value]=!0;break;case c.a.INLINE_FRAGMENT:{const r=a.typeCondition,s=r?je(t.getSchema(),r):n;e(t,s,a.selectionSet,i,o);break}}}(e,n,r,o,a);const s=[o,Object.keys(a)];return t.set(r,s),s}function on(e,t,n){const r=t.get(n.selectionSet);if(r)return r;const i=je(e.getSchema(),n.typeCondition);return rn(e,t,i,n.selectionSet)}class an{constructor(){this._data=new Map}has(e,t,n){var r;const[i,o]=e0&&e.reportError(new s.a("Must provide only one schema definition.",t)),++a)}}}function cn(e){const t=e.getSchema(),n=Object.create(null),r=t?{query:t.getQueryType(),mutation:t.getMutationType(),subscription:t.getSubscriptionType()}:{};return{SchemaDefinition:i,SchemaExtension:i};function i(t){var i;const o=null!==(i=t.operationTypes)&&void 0!==i?i:[];for(const t of o){const i=t.operation,o=n[i];r[i]?e.reportError(new s.a(`Type for ${i} already defined in the schema. It cannot be redefined.`,t)):o?e.reportError(new s.a(`There can be only one ${i} type in schema.`,[o,t])):n[i]=t}return!1}}function un(e){const t=Object.create(null),n=e.getSchema();return{ScalarTypeDefinition:r,ObjectTypeDefinition:r,InterfaceTypeDefinition:r,UnionTypeDefinition:r,EnumTypeDefinition:r,InputObjectTypeDefinition:r};function r(r){const i=r.name.value;if(null==n||!n.getType(i))return t[i]?e.reportError(new s.a(`There can be only one type named "${i}".`,[t[i],r.name])):t[i]=r.name,!1;e.reportError(new s.a(`Type "${i}" already exists in the schema. It cannot also be defined in this type definition.`,r.name))}}function fn(e){const t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);return{EnumTypeDefinition:i,EnumTypeExtension:i};function i(t){var i;const o=t.name.value;r[o]||(r[o]=Object.create(null));const a=null!==(i=t.values)&&void 0!==i?i:[],l=r[o];for(const t of a){const r=t.name.value,i=n[o];Object(K.F)(i)&&i.getValue(r)?e.reportError(new s.a(`Enum value "${o}.${r}" already exists in the schema. It cannot also be defined in this type extension.`,t.name)):l[r]?e.reportError(new s.a(`Enum value "${o}.${r}" can only be defined once.`,[l[r],t.name])):l[r]=t.name}return!1}}function dn(e){const t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);return{InputObjectTypeDefinition:i,InputObjectTypeExtension:i,InterfaceTypeDefinition:i,InterfaceTypeExtension:i,ObjectTypeDefinition:i,ObjectTypeExtension:i};function i(t){var i;const o=t.name.value;r[o]||(r[o]=Object.create(null));const a=null!==(i=t.fields)&&void 0!==i?i:[],l=r[o];for(const t of a){const r=t.name.value;pn(n[o],r)?e.reportError(new s.a(`Field "${o}.${r}" already exists in the schema. It cannot also be defined in this type extension.`,t.name)):l[r]?e.reportError(new s.a(`Field "${o}.${r}" can only be defined once.`,[l[r],t.name])):l[r]=t.name}return!1}}function pn(e,t){return!!(Object(K.O)(e)||Object(K.I)(e)||Object(K.G)(e))&&null!=e.getFields()[t]}function hn(e){return{DirectiveDefinition(e){var t;const r=null!==(t=e.arguments)&&void 0!==t?t:[];return n("@"+e.name.value,r)},InterfaceTypeDefinition:t,InterfaceTypeExtension:t,ObjectTypeDefinition:t,ObjectTypeExtension:t};function t(e){var t;const r=e.name.value,i=null!==(t=e.fields)&&void 0!==t?t:[];for(const e of i){var o;n(`${r}.${e.name.value}`,null!==(o=e.arguments)&&void 0!==o?o:[])}return!1}function n(t,n){const r=At(n,e=>e.name.value);for(const[n,i]of r)i.length>1&&e.reportError(new s.a(`Argument "${t}(${n}:)" can only be defined once.`,i.map(e=>e.name)));return!1}}function mn(e){const t=Object.create(null),n=e.getSchema();return{DirectiveDefinition(r){const i=r.name.value;if(null==n||!n.getDirective(i))return t[i]?e.reportError(new s.a(`There can be only one directive named "@${i}".`,[t[i],r.name])):t[i]=r.name,!1;e.reportError(new s.a(`Directive "@${i}" already exists in the schema. It cannot be redefined.`,r.name))}}}function gn(e){const t=e.getSchema(),n=Object.create(null);for(const t of e.getDocument().definitions)ze(t)&&(n[t.name.value]=t);return{ScalarTypeExtension:r,ObjectTypeExtension:r,InterfaceTypeExtension:r,UnionTypeExtension:r,EnumTypeExtension:r,InputObjectTypeExtension:r};function r(r){const i=r.name.value,o=n[i],a=null==t?void 0:t.getType(i);let l;if(o?l=vn[o.kind]:a&&(l=function(e){if(Object(K.S)(e))return c.a.SCALAR_TYPE_EXTENSION;if(Object(K.O)(e))return c.a.OBJECT_TYPE_EXTENSION;if(Object(K.I)(e))return c.a.INTERFACE_TYPE_EXTENSION;if(Object(K.U)(e))return c.a.UNION_TYPE_EXTENSION;if(Object(K.F)(e))return c.a.ENUM_TYPE_EXTENSION;if(Object(K.G)(e))return c.a.INPUT_OBJECT_TYPE_EXTENSION;Object(Fe.a)(!1,"Unexpected type: "+Object(d.a)(e))}(a)),l){if(l!==r.kind){const t=function(e){switch(e){case c.a.SCALAR_TYPE_EXTENSION:return"scalar";case c.a.OBJECT_TYPE_EXTENSION:return"object";case c.a.INTERFACE_TYPE_EXTENSION:return"interface";case c.a.UNION_TYPE_EXTENSION:return"union";case c.a.ENUM_TYPE_EXTENSION:return"enum";case c.a.INPUT_OBJECT_TYPE_EXTENSION:return"input object"}Object(Fe.a)(!1,"Unexpected kind: "+Object(d.a)(e))}(r.kind);e.reportError(new s.a(`Cannot extend non-${t} type "${i}".`,o?[o,r]:r))}}else{const o=Object.keys({...n,...null==t?void 0:t.getTypeMap()}),a=Object(it.a)(i,o);e.reportError(new s.a(`Cannot extend type "${i}" because it is not defined.`+Object(rt.a)(a),r.name))}}}const vn={[c.a.SCALAR_TYPE_DEFINITION]:c.a.SCALAR_TYPE_EXTENSION,[c.a.OBJECT_TYPE_DEFINITION]:c.a.OBJECT_TYPE_EXTENSION,[c.a.INTERFACE_TYPE_DEFINITION]:c.a.INTERFACE_TYPE_EXTENSION,[c.a.UNION_TYPE_DEFINITION]:c.a.UNION_TYPE_EXTENSION,[c.a.ENUM_TYPE_DEFINITION]:c.a.ENUM_TYPE_EXTENSION,[c.a.INPUT_OBJECT_TYPE_DEFINITION]:c.a.INPUT_OBJECT_TYPE_EXTENSION};const yn=Object.freeze([We,Ye,Je,bt,Tt,Ot,_t,Ct,wt,kt,St,Nt,Dt,It,Lt,Ft,jt,Mt,Rt,function(e){return{Directive(t){const n=e.getFieldDef(),r=e.getParentType();n&&r&&t.name.value===ce.name&&!Object(K.K)(n.type)&&e.reportError(new s.a(`Stream directive cannot be used on non-list field "${n.name}" on type "${r.name}".`,t))}}},Pt,Ut,Bt,qt,zt,Wt,sn]),bn=Object.freeze([ln,cn,un,fn,dn,hn,mn,Tt,Mt,Rt,gn,Vt,Ut,sn,Ht]);class Tn{constructor(e,t){this._ast=e,this._fragments=void 0,this._fragmentSpreads=new Map,this._recursivelyReferencedFragments=new Map,this._onError=t}get[Symbol.toStringTag](){return"ASTValidationContext"}reportError(e){this._onError(e)}getDocument(){return this._ast}getFragment(e){let t;if(this._fragments)t=this._fragments;else{t=Object.create(null);for(const e of this.getDocument().definitions)e.kind===c.a.FRAGMENT_DEFINITION&&(t[e.name.value]=e);this._fragments=t}return t[e]}getFragmentSpreads(e){let t=this._fragmentSpreads.get(e);if(!t){t=[];const n=[e];let r;for(;r=n.pop();)for(const e of r.selections)e.kind===c.a.FRAGMENT_SPREAD?t.push(e):e.selectionSet&&n.push(e.selectionSet);this._fragmentSpreads.set(e,t)}return t}getRecursivelyReferencedFragments(e){let t=this._recursivelyReferencedFragments.get(e);if(!t){t=[];const n=Object.create(null),r=[e.selectionSet];let i;for(;i=r.pop();)for(const e of this.getFragmentSpreads(i)){const i=e.name.value;if(!0!==n[i]){n[i]=!0;const e=this.getFragment(i);e&&(t.push(e),r.push(e.selectionSet))}}this._recursivelyReferencedFragments.set(e,t)}return t}}class En extends Tn{constructor(e,t,n){super(e,n),this._schema=t}get[Symbol.toStringTag](){return"SDLValidationContext"}getSchema(){return this._schema}}class On extends Tn{constructor(e,t,n,r){super(t,r),this._schema=e,this._typeInfo=n,this._variableUsages=new Map,this._recursiveVariableUsages=new Map}get[Symbol.toStringTag](){return"ValidationContext"}getSchema(){return this._schema}getVariableUsages(e){let t=this._variableUsages.get(e);if(!t){const n=[],r=new Me(this._schema);Object(Q.d)(e,Pe(r,{VariableDefinition:()=>!1,Variable(e){n.push({node:e,type:r.getInputType(),defaultValue:r.getDefaultValue()})}})),t=n,this._variableUsages.set(e,t)}return t}getRecursiveVariableUsages(e){let t=this._recursiveVariableUsages.get(e);if(!t){t=this.getVariableUsages(e);for(const n of this.getRecursivelyReferencedFragments(e))t=t.concat(this.getVariableUsages(n));this._recursiveVariableUsages.set(e,t)}return t}getType(){return this._typeInfo.getType()}getParentType(){return this._typeInfo.getParentType()}getInputType(){return this._typeInfo.getInputType()}getParentInputType(){return this._typeInfo.getParentInputType()}getFieldDef(){return this._typeInfo.getFieldDef()}getDirective(){return this._typeInfo.getDirective()}getArgument(){return this._typeInfo.getArgument()}getEnumValue(){return this._typeInfo.getEnumValue()}}function _n(e,t,n=yn,r,i=new Me(e)){var o;const a=null!==(o=null==r?void 0:r.maxErrors)&&void 0!==o?o:100;t||Object(p.a)(!1,"Must provide document."),Te(e);const l=Object.freeze({}),c=[],u=new On(e,t,i,e=>{if(c.length>=a)throw c.push(new s.a("Too many validation errors, error limit reached. Validation aborted.")),l;c.push(e)}),f=Object(Q.e)(n.map(e=>e(u)));try{Object(Q.d)(t,Pe(i,f))}catch(e){if(e!==l)throw e}return c}function Cn(e,t,n=bn){const r=[],i=new En(e,t,e=>{r.push(e)}),o=n.map(e=>e(i));return Object(Q.d)(e,Object(Q.e)(o)),r}function xn(e,t,n){var r;const i=e instanceof Error?e:new Error("Unexpected error value: "+Object(d.a)(e));return o=i,Array.isArray(o.path)?i:new s.a(i.message,null!==(r=i.nodes)&&void 0!==r?r:t,i.source,i.positions,n,i);var o}const wn=function(e){let t;return function(n,r,i){void 0===t&&(t=new WeakMap);let o=t.get(n);void 0===o&&(o=new WeakMap,t.set(n,o));let a=o.get(r);void 0===a&&(a=new WeakMap,o.set(r,a));let s=a.get(i);return void 0===s&&(s=e(n,r,i),a.set(i,s)),s}}((e,t,n)=>function(e,t,n,r,i){const o=new Map,a=new Set,s=[],l={fields:o,patches:s};for(const l of i)l.selectionSet&&mt(e,t,n,r,l.selectionSet,o,s,a);return l}(e.schema,e.fragments,e.variableValues,t,n));function kn(e){const{schema:t,document:n,variableValues:r,rootValue:i}=e;Dn(t,n,r);const a=In(e);if(!("schema"in a))return{errors:a};try{const{operation:e}=a,t=function(e,t,n){const r=e.schema.getRootType(t.operation);if(null==r)throw new s.a(`Schema is not configured to execute ${t.operation} operation.`,t);const{fields:i,patches:a}=ht(e.schema,e.fragments,e.variableValues,r,t.selectionSet);let l;switch(t.operation){case u.b.QUERY:l=An(e,r,n,void 0,i,e.errors);break;case u.b.MUTATION:l=function(e,t,n,r,i){return function(e,t,n){let r=n;for(const n of e)r=o(r)?r.then(e=>t(e,n)):t(r,n);return r}(i.entries(),(i,[a,s])=>{const l=ot(r,a,t.name),c=Ln(e,t,n,s,l,e.errors);return void 0===c?i:o(c)?c.then(e=>(i[a]=e,i)):(i[a]=c,i)},Object.create(null))}(e,r,n,void 0,i);break;case u.b.SUBSCRIPTION:l=An(e,r,n,void 0,i,e.errors)}for(const t of a){const{label:i,fields:o}=t,a=[];e.dispatcher.addFields(An(e,r,n,void 0,o,e.errors),a,i,void 0)}return l}(a,e,i);if(o(t))return t.then(e=>{const t=Nn(e,a.errors);return a.dispatcher.hasSubsequentPayloads()?a.dispatcher.get(t):t},e=>(a.errors.push(e),Nn(null,a.errors)));const n=Nn(t,a.errors);return a.dispatcher.hasSubsequentPayloads()?a.dispatcher.get(n):n}catch(e){return a.errors.push(e),Nn(null,a.errors)}}function Sn(e){const t=kn(e);if(o(t)||a(t))throw new Error("GraphQL execution failed to complete synchronously.");return t}function Nn(e,t){return 0===t.length?{data:e}:{errors:t,data:e}}function Dn(e,t,n){t||Object(p.a)(!1,"Must provide document."),Te(e),null==n||Object(Z.a)(n)||Object(p.a)(!1,"Variables must be provided as an Object where each property is a variable value. Perhaps look to see if an unparsed JSON string was provided.")}function In(e){var t,n;const{schema:r,document:i,rootValue:o,contextValue:a,variableValues:l,operationName:u,fieldResolver:f,typeResolver:d,subscribeFieldResolver:p}=e;let h;const m=Object.create(null);for(const e of i.definitions)switch(e.kind){case c.a.OPERATION_DEFINITION:if(null==u){if(void 0!==h)return[new s.a("Must provide operation name if query contains multiple operations.")];h=e}else(null===(t=e.name)||void 0===t?void 0:t.value)===u&&(h=e);break;case c.a.FRAGMENT_DEFINITION:m[e.name.value]=e}if(!h)return null!=u?[new s.a(`Unknown operation named "${u}".`)]:[new s.a("Must provide an operation.")];const g=ut(r,null!==(n=h.variableDefinitions)&&void 0!==n?n:[],null!=l?l:{},{maxErrors:50});return g.errors?g.errors:{schema:r,fragments:m,rootValue:o,contextValue:a,operation:h,variableValues:g.coerced,fieldResolver:null!=f?f:qn,typeResolver:null!=d?d:$n,subscribeFieldResolver:null!=p?p:qn,dispatcher:new Gn,errors:[]}}function An(e,t,n,r,i,a){const s=Object.create(null);let l=!1;for(const[c,u]of i.entries()){const i=Ln(e,t,n,u,ot(r,c,t.name),a);void 0!==i&&(s[c]=i,o(i)&&(l=!0))}return l?(c=s,Promise.all(Object.values(c)).then(e=>{const t=Object.create(null);for(const[n,r]of Object.keys(c).entries())t[r]=e[n];return t})):s;var c}function Ln(e,t,n,r,i,a){var s;const l=Hn(e.schema,t,r[0]);if(!l)return;const c=l.type,u=null!==(s=l.resolve)&&void 0!==s?s:e.fieldResolver,f=Fn(e,l,r,t,i);try{const t=ft(l,r[0],e.variableValues),s=u(n,t,e.contextValue,f);let d;return d=o(s)?s.then(t=>Mn(e,c,r,f,i,t,a)):Mn(e,c,r,f,i,s,a),o(d)?d.then(void 0,e=>jn(xn(e,r,at(i)),c,a)):d}catch(e){return jn(xn(e,r,at(i)),c,a)}}function Fn(e,t,n,r,i){return{fieldName:t.name,fieldNodes:n,returnType:t.type,parentType:r,path:i,schema:e.schema,fragments:e.fragments,rootValue:e.rootValue,operation:e.operation,variableValues:e.variableValues}}function jn(e,t,n){if(Object(K.M)(t))throw e;return n.push(e),null}function Mn(e,t,n,r,i,l,c){if(l instanceof Error)throw l;if(Object(K.M)(t)){const o=Mn(e,t.ofType,n,r,i,l,c);if(null===o)throw new Error(`Cannot return null for non-nullable field ${r.parentType.name}.${r.fieldName}.`);return o}return null==l?null:Object(K.K)(t)?function(e,t,n,r,i,l,c){const u=t.ofType;if(a(l)){const t=l[Symbol.asyncIterator]();return function(e,t,n,r,i,a,s){let l=!1;const c=Rn(e,n);return new Promise(u=>{!function f(d,p){if(c&&"number"==typeof c.initialCount&&d>=c.initialCount)return e.dispatcher.addAsyncIteratorValue(d,a,e,n,r,t,i,c.label),void u(p);const h=ot(i,d,void 0);a.next().then(({value:i,done:a})=>{if(a)u(p);else{try{const a=Mn(e,t,n,r,h,i,s);o(a)&&(l=!0),p.push(a)}catch(e){p.push(null);jn(xn(e,n,at(h)),t,s),u(p)}f(d+1,p)}},e=>{p.push(null);jn(xn(e,n,at(h)),t,s),u(p)})}(0,[])}).then(e=>l?Promise.all(e):e)}(e,u,n,r,i,t,c)}if(!Object(st.a)(l))throw new s.a(`Expected Iterable, but did not find one for field "${r.parentType.name}.${r.fieldName}".`);const f=Rn(e,n);let d=!1;const p=[];let h=0;for(const t of l){const a=ot(i,h,void 0);try{let i;if(f&&"number"==typeof f.initialCount&&h>=f.initialCount){e.dispatcher.addValue(a,t,e,n,r,u,f.label),h++;continue}i=o(t)?t.then(t=>Mn(e,u,n,r,a,t,c)):Mn(e,u,n,r,a,t,c),o(i)?(d=!0,p.push(i.then(void 0,e=>jn(xn(e,n,at(a)),u,c)))):p.push(i)}catch(e){const t=xn(e,n,at(a));p.push(jn(t,u,c))}h++}return d?Promise.all(p):p}(e,t,n,r,i,l,c):Object(K.J)(t)?function(e,t){const n=e.serialize(t);if(null==n)throw new Error(`Expected \`${Object(d.a)(e)}.serialize(${Object(d.a)(t)})\` to return non-nullable value, returned: `+Object(d.a)(n));return n}(t,l):Object(K.D)(t)?function(e,t,n,r,i,a,s){var l;const c=null!==(l=t.resolveType)&&void 0!==l?l:e.typeResolver,u=e.contextValue,f=c(a,u,r,t);if(o(f))return f.then(o=>Vn(e,Pn(o,e,t,n,r,a),n,r,i,a,s));return Vn(e,Pn(f,e,t,n,r,a),n,r,i,a,s)}(e,t,n,r,i,l,c):Object(K.O)(t)?Vn(e,t,n,r,i,l,c):void Object(Fe.a)(!1,"Cannot complete value of unexpected output type: "+Object(d.a)(t))}function Rn(e,t){const n=dt(ce,t[0],e.variableValues);if(n&&!1!==n.if)return{initialCount:"number"==typeof n.initialCount?n.initialCount:void 0,label:"string"==typeof n.label?n.label:void 0}}function Pn(e,t,n,r,i,o){if(null==e)throw new s.a(`Abstract type "${n.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}". Either the "${n.name}" type should provide a "resolveType" function or each possible type should provide an "isTypeOf" function.`,r);if(Object(K.O)(e))throw new s.a("Support for returning GraphQLObjectType from resolveType was removed in graphql-js@16.0.0 please return type name instead.");if("string"!=typeof e)throw new s.a(`Abstract type "${n.name}" must resolve to an Object type at runtime for field "${i.parentType.name}.${i.fieldName}" with value ${Object(d.a)(o)}, received "${Object(d.a)(e)}".`);const a=t.schema.getType(e);if(null==a)throw new s.a(`Abstract type "${n.name}" was resolved to a type "${e}" that does not exist inside the schema.`,r);if(!Object(K.O)(a))throw new s.a(`Abstract type "${n.name}" was resolved to a non-object type "${e}".`,r);if(!t.schema.isSubType(n,a))throw new s.a(`Runtime Object type "${a.name}" is not a possible type for "${n.name}".`,r);return a}function Vn(e,t,n,r,i,a,s){if(t.isTypeOf){const l=t.isTypeOf(a,e.contextValue,r);if(o(l))return l.then(r=>{if(!r)throw Un(t,a,n);return Bn(e,t,n,i,a,s)});if(!l)throw Un(t,a,n)}return Bn(e,t,n,i,a,s)}function Un(e,t,n){return new s.a(`Expected value of type "${e.name}" but got: ${Object(d.a)(t)}.`,n)}function Bn(e,t,n,r,i,o){const{fields:a,patches:s}=wn(e,t,n),l=An(e,t,i,r,a,o);for(const n of s){const{label:o,fields:a}=n,s=[];e.dispatcher.addFields(An(e,t,i,r,a,s),s,o,r)}return l}const $n=function(e,t,n,r){if(Object(Z.a)(e)&&"string"==typeof e.__typename)return e.__typename;const i=n.schema.getPossibleTypes(r),a=[];for(let r=0;r{for(let t=0;t({value:zn(e,n,r,t),done:!1})))}addValue(e,t,n,r,i,o,a){const s=[];this._subsequentPayloads.push(Promise.resolve(t).then(t=>Mn(n,o,r,i,e,t,s)).then(void 0,t=>jn(xn(t,r,at(e)),o,s)).then(t=>({value:zn(t,a,e,s),done:!1})))}addAsyncIteratorValue(e,t,n,r,i,a,s,l){const c=this._subsequentPayloads,u=this._iterators;u.push(t),function e(f){const d=ot(s,f,void 0),p=[];c.push(t.next().then(({value:s,done:c})=>{if(c)return u.splice(u.indexOf(t),1),{value:void 0,done:!0};e(f+1);try{const e=Mn(n,a,r,i,d,s,p);return o(e)?e.then(e=>({value:zn(e,l,d,p),done:!1})):{value:zn(e,l,d,p),done:!1}}catch(e){return jn(xn(e,r,at(d)),a,p),{value:zn(null,l,d,p),done:!1}}},e=>(jn(xn(e,r,at(d)),a,p),{value:zn(null,l,d,p),done:!1})))}(e)}_race(){return this._isDone?Promise.resolve({value:{hasNext:!1},done:!1}):new Promise(e=>{let t=!1;this._subsequentPayloads.forEach(n=>{n.then(r=>{if(t)return;if(t=!0,0===this._subsequentPayloads.length)return void e({value:void 0,done:!0});const i=this._subsequentPayloads.indexOf(n);if(-1===i)return void e(this._race());this._subsequentPayloads.splice(i,1);const{value:o,done:a}=r;if(a&&0===this._subsequentPayloads.length)return void e({value:{hasNext:!1},done:!1});if(a)return void e(this._race());const s={...o,hasNext:this._subsequentPayloads.length>0};e({value:s,done:!1})})})})}_next(){return this._hasReturnedInitialResult?0===this._subsequentPayloads.length?Promise.resolve({value:void 0,done:!0}):this._race():(this._hasReturnedInitialResult=!0,Promise.resolve({value:{...this._initialResult,hasNext:!0},done:!1}))}async _return(){return await Promise.all(this._iterators.map(e=>{var t;return null===(t=e.return)||void 0===t?void 0:t.call(e)})),this._isDone=!0,{value:void 0,done:!0}}async _throw(e){return await Promise.all(this._iterators.map(e=>{var t;return null===(t=e.return)||void 0===t?void 0:t.call(e)})),this._isDone=!0,Promise.reject(e)}get(e){return this._initialResult=e,{[Symbol.asyncIterator](){return this},next:()=>this._next(),return:()=>this._return(),throw:e=>this._throw(e)}}}function zn(e,t,n,r){const i={data:e,path:n?at(n):[]};return null!=t&&(i.label=t),r&&r.length>0&&(i.errors=r),i}function Qn(e){return new Promise(t=>t(Wn(e)))}function Kn(e){const t=Wn(e);if(o(t)||a(t))throw new Error("GraphQL execution failed to complete synchronously.");return t}function Wn(e){const{schema:t,source:n,rootValue:r,contextValue:i,variableValues:o,operationName:a,fieldResolver:s,typeResolver:l}=e,c=be(t);if(c.length>0)return{errors:c};let u;try{u=U(n)}catch(e){return{errors:[e]}}const f=_n(t,u);return f.length>0?{errors:f}:kn({schema:t,document:u,rootValue:r,contextValue:i,variableValues:o,operationName:a,fieldResolver:s,typeResolver:l})}var Yn=n(35),Jn=n(55);async function Xn(e){const{schema:t,document:n,rootValue:r,contextValue:i,variableValues:o,operationName:s,fieldResolver:l,subscribeFieldResolver:c}=e,u=await Zn(t,n,r,i,o,s,c);if(!a(u))return u;return function(e){const t=e[Symbol.asyncIterator].call(e);let n=[t];return{next:async function e(){const t=n[0];if(!t)return{value:void 0,done:!0};const r=await t.next();if(r.done)return n.shift(),e();if(a(r.value)){const t=r.value[Symbol.asyncIterator]();return n.unshift(t),e()}return r},return:()=>(n=[],t.return()),throw:e=>(n=[],t.throw(e)),[Symbol.asyncIterator](){return this}}}(function(e,t){const n=e[Symbol.asyncIterator]();async function r(e){if(e.done)return e;try{return{value:await t(e.value),done:!1}}catch(e){if("function"==typeof n.return)try{await n.return()}catch(e){}throw e}}return{next:async()=>r(await n.next()),return:async()=>"function"==typeof n.return?r(await n.return()):{value:void 0,done:!0},async throw(e){if("function"==typeof n.throw)return r(await n.throw(e));throw e},[Symbol.asyncIterator](){return this}}}(u,e=>kn({schema:t,document:n,rootValue:e,contextValue:i,variableValues:o,operationName:s,fieldResolver:l})))}async function Zn(e,t,n,r,i,o,l){Dn(e,t,i);const c=In({schema:e,document:t,rootValue:n,contextValue:r,variableValues:i,operationName:o,subscribeFieldResolver:l});if(!("schema"in c))return{errors:c};try{const e=await async function(e){const{schema:t,fragments:n,operation:r,variableValues:i,rootValue:o}=e,a=t.getSubscriptionType();if(null==a)throw new s.a("Schema is not configured to execute subscription operation.",r);const{fields:l}=ht(t,n,i,a,r.selectionSet),[c,u]=[...l.entries()][0],f=Hn(t,a,u[0]);if(!f){const e=u[0].name.value;throw new s.a(`The subscription field "${e}" is not defined.`,u)}const d=ot(void 0,c,a.name),p=Fn(e,f,u,a,d);try{var h;const t=ft(f,u[0],i),n=e.contextValue,r=null!==(h=f.subscribe)&&void 0!==h?h:e.subscribeFieldResolver,a=await r(o,t,n,p);if(a instanceof Error)throw a;return a}catch(e){throw xn(e,u,at(d))}}(c);if(!a(e))throw new Error(`Subscription field must return Async Iterable. Received: ${Object(d.a)(e)}.`);return e}catch(e){if(e instanceof s.a)return{errors:[e]};throw e}}function er(e){return{Field(t){const n=e.getFieldDef(),r=null==n?void 0:n.deprecationReason;if(n&&null!=r){const i=e.getParentType();null!=i||Object(Fe.a)(!1),e.reportError(new s.a(`The field ${i.name}.${n.name} is deprecated. ${r}`,t))}},Argument(t){const n=e.getArgument(),r=null==n?void 0:n.deprecationReason;if(n&&null!=r){const i=e.getDirective();if(null!=i)e.reportError(new s.a(`Directive "@${i.name}" argument "${n.name}" is deprecated. ${r}`,t));else{const i=e.getParentType(),o=e.getFieldDef();null!=i&&null!=o||Object(Fe.a)(!1),e.reportError(new s.a(`Field "${i.name}.${o.name}" argument "${n.name}" is deprecated. ${r}`,t))}}},ObjectField(t){const n=Object(K.B)(e.getParentInputType());if(Object(K.G)(n)){const r=n.getFields()[t.name.value],i=null==r?void 0:r.deprecationReason;null!=i&&e.reportError(new s.a(`The input field ${n.name}.${r.name} is deprecated. ${i}`,t))}},EnumValue(t){const n=e.getEnumValue(),r=null==n?void 0:n.deprecationReason;if(n&&null!=r){const i=Object(K.B)(e.getInputType());null!=i||Object(Fe.a)(!1),e.reportError(new s.a(`The enum value "${i.name}.${n.name}" is deprecated. ${r}`,t))}}}}function tr(e){return{Field(t){const n=Object(K.B)(e.getType());n&&Object(ee.isIntrospectionType)(n)&&e.reportError(new s.a(`GraphQL introspection has been disabled, but the requested query contained the field "${t.name.value}".`,t))}}}function nr(e){const t={descriptions:!0,specifiedByUrl:!1,directiveIsRepeatable:!1,schemaDescription:!1,inputValueDeprecation:!1,...e},n=t.descriptions?"description":"",r=t.specifiedByUrl?"specifiedByURL":"",i=t.directiveIsRepeatable?"isRepeatable":"";function o(e){return t.inputValueDeprecation?e:""}return`\n query IntrospectionQuery {\n __schema {\n ${t.schemaDescription?n:""}\n queryType { name }\n mutationType { name }\n subscriptionType { name }\n types {\n ...FullType\n }\n directives {\n name\n ${n}\n ${i}\n locations\n args${o("(includeDeprecated: true)")} {\n ...InputValue\n }\n }\n }\n }\n\n fragment FullType on __Type {\n kind\n name\n ${n}\n ${r}\n fields(includeDeprecated: true) {\n name\n ${n}\n args${o("(includeDeprecated: true)")} {\n ...InputValue\n }\n type {\n ...TypeRef\n }\n isDeprecated\n deprecationReason\n }\n inputFields${o("(includeDeprecated: true)")} {\n ...InputValue\n }\n interfaces {\n ...TypeRef\n }\n enumValues(includeDeprecated: true) {\n name\n ${n}\n isDeprecated\n deprecationReason\n }\n possibleTypes {\n ...TypeRef\n }\n }\n\n fragment InputValue on __InputValue {\n name\n ${n}\n type { ...TypeRef }\n defaultValue\n ${o("isDeprecated")}\n ${o("deprecationReason")}\n }\n\n fragment TypeRef on __Type {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n ofType {\n kind\n name\n }\n }\n }\n }\n }\n }\n }\n }\n `}function rr(e,t){let n=null;for(const i of e.definitions){var r;if(i.kind===c.a.OPERATION_DEFINITION)if(null==t){if(n)return null;n=i}else if((null===(r=i.name)||void 0===r?void 0:r.value)===t)return i}return n}function ir(e,t){if("query"===t.operation){const n=e.getQueryType();if(!n)throw new s.a("Schema does not define the required query root type.",t);return n}if("mutation"===t.operation){const n=e.getMutationType();if(!n)throw new s.a("Schema is not configured for mutations.",t);return n}if("subscription"===t.operation){const n=e.getSubscriptionType();if(!n)throw new s.a("Schema is not configured for subscriptions.",t);return n}throw new s.a("Can only have query, mutation and subscription operations.",t)}function or(e,t){const n=Sn({schema:e,document:U(nr({specifiedByUrl:!0,directiveIsRepeatable:!0,schemaDescription:!0,inputValueDeprecation:!0,...t}))});return!n.errors&&n.data||Object(Fe.a)(!1),n.data}var ar=n(23);function sr(e,t){Object(Z.a)(e)&&Object(Z.a)(e.__schema)||Object(p.a)(!1,`Invalid or incomplete introspection result. Ensure that you are passing "data" property of introspection response and no "errors" was returned alongside: ${Object(d.a)(e)}.`);const n=e.__schema,r=Object(ar.a)(n.types,e=>e.name,e=>function(e){if(null!=e&&null!=e.name&&null!=e.kind)switch(e.kind){case ee.TypeKind.SCALAR:return r=e,new K.g({name:r.name,description:r.description,specifiedByURL:r.specifiedByURL});case ee.TypeKind.OBJECT:return n=e,new K.f({name:n.name,description:n.description,interfaces:()=>h(n),fields:()=>m(n)});case ee.TypeKind.INTERFACE:return t=e,new K.c({name:t.name,description:t.description,interfaces:()=>h(t),fields:()=>m(t)});case ee.TypeKind.UNION:return function(e){if(!e.possibleTypes){const t=Object(d.a)(e);throw new Error(`Introspection result missing possibleTypes: ${t}.`)}return new K.h({name:e.name,description:e.description,types:()=>e.possibleTypes.map(u)})}(e);case ee.TypeKind.ENUM:return function(e){if(!e.enumValues){const t=Object(d.a)(e);throw new Error(`Introspection result missing enumValues: ${t}.`)}return new K.a({name:e.name,description:e.description,values:Object(ar.a)(e.enumValues,e=>e.name,e=>({description:e.description,deprecationReason:e.deprecationReason}))})}(e);case ee.TypeKind.INPUT_OBJECT:return function(e){if(!e.inputFields){const t=Object(d.a)(e);throw new Error(`Introspection result missing inputFields: ${t}.`)}return new K.b({name:e.name,description:e.description,fields:()=>v(e.inputFields)})}(e)}var t;var n;var r;const i=Object(d.a)(e);throw new Error(`Invalid or incomplete introspection result. Ensure that a full introspection query is used in order to build a client schema: ${i}.`)}(e));for(const e of[...ne.g,...ee.introspectionTypes])r[e.name]&&(r[e.name]=e);const i=n.queryType?u(n.queryType):null,o=n.mutationType?u(n.mutationType):null,a=n.subscriptionType?u(n.subscriptionType):null,s=n.directives?n.directives.map((function(e){if(!e.args){const t=Object(d.a)(e);throw new Error(`Introspection result missing directive args: ${t}.`)}if(!e.locations){const t=Object(d.a)(e);throw new Error(`Introspection result missing directive locations: ${t}.`)}return new oe({name:e.name,description:e.description,isRepeatable:e.isRepeatable,locations:e.locations.slice(),args:v(e.args)})})):[];return new ve({description:n.description,query:i,mutation:o,subscription:a,types:Object.values(r),directives:s,assumeValid:null==t?void 0:t.assumeValid});function l(e){if(e.kind===ee.TypeKind.LIST){const t=e.ofType;if(!t)throw new Error("Decorated type deeper than introspection query.");return new K.d(l(t))}if(e.kind===ee.TypeKind.NON_NULL){const t=e.ofType;if(!t)throw new Error("Decorated type deeper than introspection query.");const n=l(t);return new K.e(Object(K.t)(n))}return c(e)}function c(e){const t=e.name;if(!t)throw new Error(`Unknown type reference: ${Object(d.a)(e)}.`);const n=r[t];if(!n)throw new Error(`Invalid or incomplete schema, unknown type: ${t}. Ensure that a full introspection query is used in order to build a client schema.`);return n}function u(e){return Object(K.u)(c(e))}function f(e){return Object(K.o)(c(e))}function h(e){if(null===e.interfaces&&e.kind===ee.TypeKind.INTERFACE)return[];if(!e.interfaces){const t=Object(d.a)(e);throw new Error(`Introspection result missing interfaces: ${t}.`)}return e.interfaces.map(f)}function m(e){if(!e.fields)throw new Error(`Introspection result missing fields: ${Object(d.a)(e)}.`);return Object(ar.a)(e.fields,e=>e.name,g)}function g(e){const t=l(e.type);if(!Object(K.P)(t)){const e=Object(d.a)(t);throw new Error(`Introspection must provide output type for fields, but received: ${e}.`)}if(!e.args){const t=Object(d.a)(e);throw new Error(`Introspection result missing field args: ${t}.`)}return{description:e.description,deprecationReason:e.deprecationReason,type:t,args:v(e.args)}}function v(e){return Object(ar.a)(e,e=>e.name,y)}function y(e){const t=l(e.type);if(!Object(K.H)(t)){const e=Object(d.a)(t);throw new Error(`Introspection must provide input type for arguments, but received: ${e}.`)}const n=null!=e.defaultValue?tt(B(e.defaultValue),t):void 0;return{description:e.description,type:t,defaultValue:n,deprecationReason:e.deprecationReason}}}var lr=n(25);function cr(e,t,n){ge(e),null!=t&&t.kind===c.a.DOCUMENT||Object(p.a)(!1,"Must provide valid Document AST."),!0!==(null==n?void 0:n.assumeValid)&&!0!==(null==n?void 0:n.assumeValidSDL)&&function(e,t){const n=Cn(e,t);if(0!==n.length)throw new Error(n.map(e=>e.message).join("\n\n"))}(t,e);const r=e.toConfig(),i=ur(r,t,n);return r===i?e:new ve(i)}function ur(e,t,n){var r,i,o,a;const s=[],l=Object.create(null),u=[];let f;const p=[];for(const e of t.definitions)if(e.kind===c.a.SCHEMA_DEFINITION)f=e;else if(e.kind===c.a.SCHEMA_EXTENSION)p.push(e);else if(ze(e))s.push(e);else if(Ke(e)){const t=e.name.value,n=l[t];l[t]=n?n.concat([e]):[e]}else e.kind===c.a.DIRECTIVE_DEFINITION&&u.push(e);if(0===Object.keys(l).length&&0===s.length&&0===u.length&&0===p.length&&null==f)return e;const h=Object.create(null);for(const t of e.types)h[t.name]=b(t);for(const e of s){var m;const t=e.name.value;h[t]=null!==(m=fr[t])&&void 0!==m?m:I(e)}const g={query:e.query&&y(e.query),mutation:e.mutation&&y(e.mutation),subscription:e.subscription&&y(e.subscription),...f&&O([f]),...O(p)};return{description:null===(r=f)||void 0===r||null===(i=r.description)||void 0===i?void 0:i.value,...g,types:Object.values(h),directives:[...e.directives.map((function(e){const t=e.toConfig();return new oe({...t,args:Object(lr.a)(t.args,E)})})),...u.map((function(e){var t;return new oe({name:e.name.value,description:null===(t=e.description)||void 0===t?void 0:t.value,locations:e.locations.map(({value:e})=>e),isRepeatable:e.repeatable,args:w(e.arguments),astNode:e})}))],extensions:Object.create(null),astNode:null!==(o=f)&&void 0!==o?o:e.astNode,extensionASTNodes:e.extensionASTNodes.concat(p),assumeValid:null!==(a=null==n?void 0:n.assumeValid)&&void 0!==a&&a};function v(e){return Object(K.K)(e)?new K.d(v(e.ofType)):Object(K.M)(e)?new K.e(v(e.ofType)):y(e)}function y(e){return h[e.name]}function b(e){return Object(ee.isIntrospectionType)(e)||Object(ne.f)(e)?e:Object(K.S)(e)?function(e){var t;const n=e.toConfig(),r=null!==(t=l[n.name])&&void 0!==t?t:[];let i=n.specifiedByURL;for(const e of r){var o;i=null!==(o=pr(e))&&void 0!==o?o:i}return new K.g({...n,specifiedByURL:i,extensionASTNodes:n.extensionASTNodes.concat(r)})}(e):Object(K.O)(e)?function(e){var t;const n=e.toConfig(),r=null!==(t=l[n.name])&&void 0!==t?t:[];return new K.f({...n,interfaces:()=>[...e.getInterfaces().map(y),...N(r)],fields:()=>({...Object(lr.a)(n.fields,T),...x(r)}),extensionASTNodes:n.extensionASTNodes.concat(r)})}(e):Object(K.I)(e)?function(e){var t;const n=e.toConfig(),r=null!==(t=l[n.name])&&void 0!==t?t:[];return new K.c({...n,interfaces:()=>[...e.getInterfaces().map(y),...N(r)],fields:()=>({...Object(lr.a)(n.fields,T),...x(r)}),extensionASTNodes:n.extensionASTNodes.concat(r)})}(e):Object(K.U)(e)?function(e){var t;const n=e.toConfig(),r=null!==(t=l[n.name])&&void 0!==t?t:[];return new K.h({...n,types:()=>[...e.getTypes().map(y),...D(r)],extensionASTNodes:n.extensionASTNodes.concat(r)})}(e):Object(K.F)(e)?function(e){var t;const n=e.toConfig(),r=null!==(t=l[e.name])&&void 0!==t?t:[];return new K.a({...n,values:{...n.values,...S(r)},extensionASTNodes:n.extensionASTNodes.concat(r)})}(e):Object(K.G)(e)?function(e){var t;const n=e.toConfig(),r=null!==(t=l[n.name])&&void 0!==t?t:[];return new K.b({...n,fields:()=>({...Object(lr.a)(n.fields,e=>({...e,type:v(e.type)})),...k(r)}),extensionASTNodes:n.extensionASTNodes.concat(r)})}(e):void Object(Fe.a)(!1,"Unexpected type: "+Object(d.a)(e))}function T(e){return{...e,type:v(e.type),args:e.args&&Object(lr.a)(e.args,E)}}function E(e){return{...e,type:v(e.type)}}function O(e){const t={};for(const r of e){var n;const e=null!==(n=r.operationTypes)&&void 0!==n?n:[];for(const n of e)t[n.operation]=_(n.type)}return t}function _(e){var t;const n=e.name.value,r=null!==(t=fr[n])&&void 0!==t?t:h[n];if(void 0===r)throw new Error(`Unknown type: "${n}".`);return r}function C(e){return e.kind===c.a.LIST_TYPE?new K.d(C(e.type)):e.kind===c.a.NON_NULL_TYPE?new K.e(C(e.type)):_(e)}function x(e){const t=Object.create(null);for(const i of e){var n;const e=null!==(n=i.fields)&&void 0!==n?n:[];for(const n of e){var r;t[n.name.value]={type:C(n.type),description:null===(r=n.description)||void 0===r?void 0:r.value,args:w(n.arguments),deprecationReason:dr(n),astNode:n}}}return t}function w(e){const t=null!=e?e:[],n=Object.create(null);for(const e of t){var r;const t=C(e.type);n[e.name.value]={type:t,description:null===(r=e.description)||void 0===r?void 0:r.value,defaultValue:tt(e.defaultValue,t),deprecationReason:dr(e),astNode:e}}return n}function k(e){const t=Object.create(null);for(const i of e){var n;const e=null!==(n=i.fields)&&void 0!==n?n:[];for(const n of e){var r;const e=C(n.type);t[n.name.value]={type:e,description:null===(r=n.description)||void 0===r?void 0:r.value,defaultValue:tt(n.defaultValue,e),deprecationReason:dr(n),astNode:n}}}return t}function S(e){const t=Object.create(null);for(const i of e){var n;const e=null!==(n=i.values)&&void 0!==n?n:[];for(const n of e){var r;t[n.name.value]={description:null===(r=n.description)||void 0===r?void 0:r.value,deprecationReason:dr(n),astNode:n}}}return t}function N(e){return e.flatMap(e=>{var t,n;return null!==(t=null===(n=e.interfaces)||void 0===n?void 0:n.map(_))&&void 0!==t?t:[]})}function D(e){return e.flatMap(e=>{var t,n;return null!==(t=null===(n=e.types)||void 0===n?void 0:n.map(_))&&void 0!==t?t:[]})}function I(e){var t;const n=e.name.value,r=null!==(t=l[n])&&void 0!==t?t:[];switch(e.kind){case c.a.OBJECT_TYPE_DEFINITION:{var i;const t=[e,...r];return new K.f({name:n,description:null===(i=e.description)||void 0===i?void 0:i.value,interfaces:()=>N(t),fields:()=>x(t),astNode:e,extensionASTNodes:r})}case c.a.INTERFACE_TYPE_DEFINITION:{var o;const t=[e,...r];return new K.c({name:n,description:null===(o=e.description)||void 0===o?void 0:o.value,interfaces:()=>N(t),fields:()=>x(t),astNode:e,extensionASTNodes:r})}case c.a.ENUM_TYPE_DEFINITION:{var a;const t=[e,...r];return new K.a({name:n,description:null===(a=e.description)||void 0===a?void 0:a.value,values:S(t),astNode:e,extensionASTNodes:r})}case c.a.UNION_TYPE_DEFINITION:{var s;const t=[e,...r];return new K.h({name:n,description:null===(s=e.description)||void 0===s?void 0:s.value,types:()=>D(t),astNode:e,extensionASTNodes:r})}case c.a.SCALAR_TYPE_DEFINITION:var u;return new K.g({name:n,description:null===(u=e.description)||void 0===u?void 0:u.value,specifiedByURL:pr(e),astNode:e,extensionASTNodes:r});case c.a.INPUT_OBJECT_TYPE_DEFINITION:{var f;const t=[e,...r];return new K.b({name:n,description:null===(f=e.description)||void 0===f?void 0:f.value,fields:()=>k(t),astNode:e,extensionASTNodes:r})}}Object(Fe.a)(!1,"Unexpected type definition node: "+Object(d.a)(e))}}const fr=Object(Xe.a)([...ne.g,...ee.introspectionTypes],e=>e.name);function dr(e){const t=dt(fe,e);return null==t?void 0:t.reason}function pr(e){const t=dt(de,e);return null==t?void 0:t.url}function hr(e,t){null!=e&&e.kind===c.a.DOCUMENT||Object(p.a)(!1,"Must provide valid Document AST."),!0!==(null==t?void 0:t.assumeValid)&&!0!==(null==t?void 0:t.assumeValidSDL)&&function(e){const t=Cn(e);if(0!==t.length)throw new Error(t.map(e=>e.message).join("\n\n"))}(e);const n=ur({description:void 0,types:[],directives:[],extensions:Object.create(null),extensionASTNodes:[],assumeValid:!1},e,t);if(null==n.astNode)for(const e of n.types)switch(e.name){case"Query":n.query=e;break;case"Mutation":n.mutation=e;break;case"Subscription":n.subscription=e}const r=[...n.directives,...pe.filter(e=>n.directives.every(t=>t.name!==e.name))];return new ve({...n,directives:r})}function mr(e,t){return hr(U(e,{noLocation:null==t?void 0:t.noLocation,allowLegacyFragmentVariables:null==t?void 0:t.allowLegacyFragmentVariables}),{assumeValidSDL:null==t?void 0:t.assumeValidSDL,assumeValid:null==t?void 0:t.assumeValid})}function gr(e){const t=e.toConfig(),n=Object(ar.a)(yr(t.types),e=>e.name,(function(e){if(Object(K.S)(e)||Object(ee.isIntrospectionType)(e))return e;if(Object(K.O)(e)){const t=e.toConfig();return new K.f({...t,interfaces:()=>l(t.interfaces),fields:()=>s(t.fields)})}if(Object(K.I)(e)){const t=e.toConfig();return new K.c({...t,interfaces:()=>l(t.interfaces),fields:()=>s(t.fields)})}if(Object(K.U)(e)){const t=e.toConfig();return new K.h({...t,types:()=>l(t.types)})}if(Object(K.F)(e)){const t=e.toConfig();return new K.a({...t,values:vr(t.values,e=>e)})}if(Object(K.G)(e)){const t=e.toConfig();return new K.b({...t,fields:()=>vr(t.fields,e=>({...e,type:r(e.type)}))})}Object(Fe.a)(!1,"Unexpected type: "+Object(d.a)(e))}));return new ve({...t,types:Object.values(n),directives:yr(t.directives).map((function(e){const t=e.toConfig();return new oe({...t,locations:br(t.locations,e=>e),args:a(t.args)})})),query:o(t.query),mutation:o(t.mutation),subscription:o(t.subscription)});function r(e){return Object(K.K)(e)?new K.d(r(e.ofType)):Object(K.M)(e)?new K.e(r(e.ofType)):i(e)}function i(e){return n[e.name]}function o(e){return e&&i(e)}function a(e){return vr(e,e=>({...e,type:r(e.type)}))}function s(e){return vr(e,e=>({...e,type:r(e.type),args:e.args&&a(e.args)}))}function l(e){return yr(e).map(i)}}function vr(e,t){const n=Object.create(null),r=br(Object.entries(e),([e])=>e);for(const[e,i]of r)n[e]=t(i);return n}function yr(e){return br(e,e=>e.name)}function br(e,t){return e.slice().sort((e,n)=>{const r=t(e),i=t(n);return Object(xt.a)(r,i)})}var Tr=n(31);function Er(e){return Cr(e,e=>!he(e),_r)}function Or(e){return Cr(e,he,ee.isIntrospectionType)}function _r(e){return!Object(ne.f)(e)&&!Object(ee.isIntrospectionType)(e)}function Cr(e,t,n){const r=e.getDirectives().filter(t),i=Object.values(e.getTypeMap()).filter(n);return[xr(e),...r.map(e=>function(e){return Lr(e)+"directive @"+e.name+Dr(e.args)+(e.isRepeatable?" repeatable":"")+" on "+e.locations.join(" | ")}(e)),...i.map(e=>wr(e))].filter(Boolean).join("\n\n")}function xr(e){if(null==e.description&&function(e){const t=e.getQueryType();if(t&&"Query"!==t.name)return!1;const n=e.getMutationType();if(n&&"Mutation"!==n.name)return!1;const r=e.getSubscriptionType();if(r&&"Subscription"!==r.name)return!1;return!0}(e))return;const t=[],n=e.getQueryType();n&&t.push(" query: "+n.name);const r=e.getMutationType();r&&t.push(" mutation: "+r.name);const i=e.getSubscriptionType();return i&&t.push(" subscription: "+i.name),Lr(e)+`schema {\n${t.join("\n")}\n}`}function wr(e){return Object(K.S)(e)?function(e){return Lr(e)+"scalar "+e.name+function(e){if(null==e.specifiedByURL)return"";return` @specifiedBy(url: ${Object(et.a)({kind:c.a.STRING,value:e.specifiedByURL})})`}(e)}(e):Object(K.O)(e)?function(e){return Lr(e)+"type "+e.name+kr(e)+Sr(e)}(e):Object(K.I)(e)?function(e){return Lr(e)+"interface "+e.name+kr(e)+Sr(e)}(e):Object(K.U)(e)?function(e){const t=e.getTypes(),n=t.length?" = "+t.join(" | "):"";return Lr(e)+"union "+e.name+n}(e):Object(K.F)(e)?function(e){const t=e.getValues().map((e,t)=>Lr(e," ",!t)+" "+e.name+Ar(e.deprecationReason));return Lr(e)+"enum "+e.name+Nr(t)}(e):Object(K.G)(e)?function(e){const t=Object.values(e.getFields()).map((e,t)=>Lr(e," ",!t)+" "+Ir(e));return Lr(e)+"input "+e.name+Nr(t)}(e):void Object(Fe.a)(!1,"Unexpected type: "+Object(d.a)(e))}function kr(e){const t=e.getInterfaces();return t.length?" implements "+t.map(e=>e.name).join(" & "):""}function Sr(e){return Nr(Object.values(e.getFields()).map((e,t)=>Lr(e," ",!t)+" "+e.name+Dr(e.args," ")+": "+String(e.type)+Ar(e.deprecationReason)))}function Nr(e){return 0!==e.length?" {\n"+e.join("\n")+"\n}":""}function Dr(e,t=""){return 0===e.length?"":e.every(e=>!e.description)?"("+e.map(Ir).join(", ")+")":"(\n"+e.map((e,n)=>Lr(e," "+t,!n)+" "+t+Ir(e)).join("\n")+"\n"+t+")"}function Ir(e){const t=Object(Tr.a)(e.defaultValue,e.type);let n=e.name+": "+String(e.type);return t&&(n+=" = "+Object(et.a)(t)),n+Ar(e.deprecationReason)}function Ar(e){if(null==e)return"";if(e!==ue){return` @deprecated(reason: ${Object(et.a)({kind:c.a.STRING,value:e})})`}return" @deprecated"}function Lr(e,t="",n=!0){const{description:r}=e;if(null==r)return"";const i=r.length>70;return(t&&!n?"\n"+t:t)+Object(y.c)(r,i).replace(/\n/g,"\n"+t)+"\n"}var Fr=n(81);function jr(e){const t=[];for(const n of e)t.push(...n.definitions);return{kind:c.a.DOCUMENT,definitions:t}}function Mr(e){const t=[],n=Object.create(null);for(const r of e.definitions)switch(r.kind){case c.a.OPERATION_DEFINITION:t.push(r);break;case c.a.FRAGMENT_DEFINITION:n[r.name.value]=Pr(r.selectionSet)}const r=Object.create(null);for(const i of t){const t=new Set;for(const e of Pr(i.selectionSet))Rr(t,n,e);r[i.name?i.name.value:""]={kind:c.a.DOCUMENT,definitions:e.definitions.filter(e=>e===i||e.kind===c.a.FRAGMENT_DEFINITION&&t.has(e.name.value))}}return r}function Rr(e,t,n){if(!e.has(n)){e.add(n);const r=t[n];if(void 0!==r)for(const n of r)Rr(e,t,n)}}function Pr(e){const t=[];return Object(Q.d)(e,{FragmentSpread(e){t.push(e.name.value)}}),t}function Vr(e){const t=g(e)?e:new m(e),n=t.body,r=new T(t);let i="",o=!1;for(;r.advance().kind!==f.EOF;){const e=r.token,t=e.kind,a=!E(e.kind);o&&(a||e.kind===f.SPREAD)&&(i+=" ");const s=n.slice(e.start,e.end);t===f.BLOCK_STRING?i+=Ur(s):i+=s,o=a}return i}function Ur(e){const t=e.slice(3,-3);let n=Object(y.a)(t);Object(y.b)(n)>0&&(n="\n"+n);return(n.endsWith('"')&&!n.endsWith('\\"""')||n.endsWith("\\"))&&(n+="\n"),'"""'+n+'"""'}function Br(e){const t=$r(e);if(t)throw t;return e}function $r(e){if("string"==typeof e||Object(p.a)(!1,"Expected name to be a string."),e.startsWith("__"))return new s.a(`Name "${e}" must not begin with "__", which is reserved by GraphQL introspection.`);try{Object(te.b)(e)}catch(e){return e}}let qr,Hr;function Gr(e,t){return Qr(e,t).filter(e=>e.type in qr)}function zr(e,t){return Qr(e,t).filter(e=>e.type in Hr)}function Qr(e,t){return[...Wr(e,t),...Kr(e,t)]}function Kr(e,t){const n=[],r=ai(e.getDirectives(),t.getDirectives());for(const e of r.removed)n.push({type:qr.DIRECTIVE_REMOVED,description:e.name+" was removed."});for(const[e,t]of r.persisted){const r=ai(e.args,t.args);for(const t of r.added)Object(K.Q)(t)&&n.push({type:qr.REQUIRED_DIRECTIVE_ARG_ADDED,description:`A required arg ${t.name} on directive ${e.name} was added.`});for(const t of r.removed)n.push({type:qr.DIRECTIVE_ARG_REMOVED,description:`${t.name} was removed from ${e.name}.`});e.isRepeatable&&!t.isRepeatable&&n.push({type:qr.DIRECTIVE_REPEATABLE_REMOVED,description:`Repeatable flag was removed from ${e.name}.`});for(const r of e.locations)t.locations.includes(r)||n.push({type:qr.DIRECTIVE_LOCATION_REMOVED,description:`${r} was removed from ${e.name}.`})}return n}function Wr(e,t){const n=[],r=ai(Object.values(e.getTypeMap()),Object.values(t.getTypeMap()));for(const e of r.removed)n.push({type:qr.TYPE_REMOVED,description:Object(ne.f)(e)?`Standard scalar ${e.name} was removed because it is not referenced anymore.`:e.name+" was removed."});for(const[e,t]of r.persisted)Object(K.F)(e)&&Object(K.F)(t)?n.push(...Xr(e,t)):Object(K.U)(e)&&Object(K.U)(t)?n.push(...Jr(e,t)):Object(K.G)(e)&&Object(K.G)(t)?n.push(...Yr(e,t)):Object(K.O)(e)&&Object(K.O)(t)||Object(K.I)(e)&&Object(K.I)(t)?n.push(...ei(e,t),...Zr(e,t)):e.constructor!==t.constructor&&n.push({type:qr.TYPE_CHANGED_KIND,description:e.name+" changed from "+`${ii(e)} to ${ii(t)}.`});return n}function Yr(e,t){const n=[],r=ai(Object.values(e.getFields()),Object.values(t.getFields()));for(const t of r.added)Object(K.R)(t)?n.push({type:qr.REQUIRED_INPUT_FIELD_ADDED,description:`A required field ${t.name} on input type ${e.name} was added.`}):n.push({type:Hr.OPTIONAL_INPUT_FIELD_ADDED,description:`An optional field ${t.name} on input type ${e.name} was added.`});for(const t of r.removed)n.push({type:qr.FIELD_REMOVED,description:`${e.name}.${t.name} was removed.`});for(const[t,i]of r.persisted){ri(t.type,i.type)||n.push({type:qr.FIELD_CHANGED_KIND,description:`${e.name}.${t.name} changed type from ${String(t.type)} to ${String(i.type)}.`})}return n}function Jr(e,t){const n=[],r=ai(e.getTypes(),t.getTypes());for(const t of r.added)n.push({type:Hr.TYPE_ADDED_TO_UNION,description:`${t.name} was added to union type ${e.name}.`});for(const t of r.removed)n.push({type:qr.TYPE_REMOVED_FROM_UNION,description:`${t.name} was removed from union type ${e.name}.`});return n}function Xr(e,t){const n=[],r=ai(e.getValues(),t.getValues());for(const t of r.added)n.push({type:Hr.VALUE_ADDED_TO_ENUM,description:`${t.name} was added to enum type ${e.name}.`});for(const t of r.removed)n.push({type:qr.VALUE_REMOVED_FROM_ENUM,description:`${t.name} was removed from enum type ${e.name}.`});return n}function Zr(e,t){const n=[],r=ai(e.getInterfaces(),t.getInterfaces());for(const t of r.added)n.push({type:Hr.IMPLEMENTED_INTERFACE_ADDED,description:`${t.name} added to interfaces implemented by ${e.name}.`});for(const t of r.removed)n.push({type:qr.IMPLEMENTED_INTERFACE_REMOVED,description:`${e.name} no longer implements interface ${t.name}.`});return n}function ei(e,t){const n=[],r=ai(Object.values(e.getFields()),Object.values(t.getFields()));for(const t of r.removed)n.push({type:qr.FIELD_REMOVED,description:`${e.name}.${t.name} was removed.`});for(const[t,i]of r.persisted){n.push(...ti(e,t,i));ni(t.type,i.type)||n.push({type:qr.FIELD_CHANGED_KIND,description:`${e.name}.${t.name} changed type from ${String(t.type)} to ${String(i.type)}.`})}return n}function ti(e,t,n){const r=[],i=ai(t.args,n.args);for(const n of i.removed)r.push({type:qr.ARG_REMOVED,description:`${e.name}.${t.name} arg ${n.name} was removed.`});for(const[n,o]of i.persisted){if(ri(n.type,o.type)){if(void 0!==n.defaultValue)if(void 0===o.defaultValue)r.push({type:Hr.ARG_DEFAULT_VALUE_CHANGE,description:`${e.name}.${t.name} arg ${n.name} defaultValue was removed.`});else{const i=oi(n.defaultValue,n.type),a=oi(o.defaultValue,o.type);i!==a&&r.push({type:Hr.ARG_DEFAULT_VALUE_CHANGE,description:`${e.name}.${t.name} arg ${n.name} has changed defaultValue from ${i} to ${a}.`})}}else r.push({type:qr.ARG_CHANGED_KIND,description:`${e.name}.${t.name} arg ${n.name} has changed type from ${String(n.type)} to ${String(o.type)}.`})}for(const n of i.added)Object(K.Q)(n)?r.push({type:qr.REQUIRED_ARG_ADDED,description:`A required arg ${n.name} on ${e.name}.${t.name} was added.`}):r.push({type:Hr.OPTIONAL_ARG_ADDED,description:`An optional arg ${n.name} on ${e.name}.${t.name} was added.`});return r}function ni(e,t){return Object(K.K)(e)?Object(K.K)(t)&&ni(e.ofType,t.ofType)||Object(K.M)(t)&&ni(e,t.ofType):Object(K.M)(e)?Object(K.M)(t)&&ni(e.ofType,t.ofType):Object(K.L)(t)&&e.name===t.name||Object(K.M)(t)&&ni(e,t.ofType)}function ri(e,t){return Object(K.K)(e)?Object(K.K)(t)&&ri(e.ofType,t.ofType):Object(K.M)(e)?Object(K.M)(t)&&ri(e.ofType,t.ofType)||!Object(K.M)(t)&&ri(e.ofType,t):Object(K.L)(t)&&e.name===t.name}function ii(e){return Object(K.S)(e)?"a Scalar type":Object(K.O)(e)?"an Object type":Object(K.I)(e)?"an Interface type":Object(K.U)(e)?"a Union type":Object(K.F)(e)?"an Enum type":Object(K.G)(e)?"an Input type":void Object(Fe.a)(!1,"Unexpected type: "+Object(d.a)(e))}function oi(e,t){const n=Object(Tr.a)(e,t);null!=n||Object(Fe.a)(!1);const r=Object(Q.d)(n,{ObjectValue(e){const t=[...e.fields];return t.sort((e,t)=>Object(xt.a)(e.name.value,t.name.value)),{...e,fields:t}}});return Object(et.a)(r)}function ai(e,t){const n=[],r=[],i=[],o=Object(Xe.a)(e,({name:e})=>e),a=Object(Xe.a)(t,({name:e})=>e);for(const t of e){const e=a[t.name];void 0===e?r.push(t):i.push([t,e])}for(const e of t)void 0===o[e.name]&&n.push(e);return{added:n,persisted:i,removed:r}}!function(e){e.TYPE_REMOVED="TYPE_REMOVED",e.TYPE_CHANGED_KIND="TYPE_CHANGED_KIND",e.TYPE_REMOVED_FROM_UNION="TYPE_REMOVED_FROM_UNION",e.VALUE_REMOVED_FROM_ENUM="VALUE_REMOVED_FROM_ENUM",e.REQUIRED_INPUT_FIELD_ADDED="REQUIRED_INPUT_FIELD_ADDED",e.IMPLEMENTED_INTERFACE_REMOVED="IMPLEMENTED_INTERFACE_REMOVED",e.FIELD_REMOVED="FIELD_REMOVED",e.FIELD_CHANGED_KIND="FIELD_CHANGED_KIND",e.REQUIRED_ARG_ADDED="REQUIRED_ARG_ADDED",e.ARG_REMOVED="ARG_REMOVED",e.ARG_CHANGED_KIND="ARG_CHANGED_KIND",e.DIRECTIVE_REMOVED="DIRECTIVE_REMOVED",e.DIRECTIVE_ARG_REMOVED="DIRECTIVE_ARG_REMOVED",e.REQUIRED_DIRECTIVE_ARG_ADDED="REQUIRED_DIRECTIVE_ARG_ADDED",e.DIRECTIVE_REPEATABLE_REMOVED="DIRECTIVE_REPEATABLE_REMOVED",e.DIRECTIVE_LOCATION_REMOVED="DIRECTIVE_LOCATION_REMOVED"}(qr||(qr={})),function(e){e.VALUE_ADDED_TO_ENUM="VALUE_ADDED_TO_ENUM",e.TYPE_ADDED_TO_UNION="TYPE_ADDED_TO_UNION",e.OPTIONAL_INPUT_FIELD_ADDED="OPTIONAL_INPUT_FIELD_ADDED",e.OPTIONAL_ARG_ADDED="OPTIONAL_ARG_ADDED",e.IMPLEMENTED_INTERFACE_ADDED="IMPLEMENTED_INTERFACE_ADDED",e.ARG_DEFAULT_VALUE_CHANGE="ARG_DEFAULT_VALUE_CHANGE"}(Hr||(Hr={}))},function(e,t,n){"use strict";n.d(t,"a",(function(){return r})),n.d(t,"d",(function(){return i})),n.d(t,"c",(function(){return o})),n.d(t,"e",(function(){return s})),n.d(t,"b",(function(){return l}));class r{constructor(e,t,n){this.start=e.start,this.end=t.end,this.startToken=e,this.endToken=t,this.source=n}get[Symbol.toStringTag](){return"Location"}toJSON(){return{start:this.start,end:this.end}}}class i{constructor(e,t,n,r,i,o){this.kind=e,this.start=t,this.end=n,this.line=r,this.column=i,this.value=o,this.prev=null,this.next=null}get[Symbol.toStringTag](){return"Token"}toJSON(){return{kind:this.kind,value:this.value,line:this.line,column:this.column}}}const o={Name:[],Document:["definitions"],OperationDefinition:["name","variableDefinitions","directives","selectionSet"],VariableDefinition:["variable","type","defaultValue","directives"],Variable:["name"],SelectionSet:["selections"],Field:["alias","name","arguments","directives","selectionSet"],Argument:["name","value"],FragmentSpread:["name","directives"],InlineFragment:["typeCondition","directives","selectionSet"],FragmentDefinition:["name","variableDefinitions","typeCondition","directives","selectionSet"],IntValue:[],FloatValue:[],StringValue:[],BooleanValue:[],NullValue:[],EnumValue:[],ListValue:["values"],ObjectValue:["fields"],ObjectField:["name","value"],Directive:["name","arguments"],NamedType:["name"],ListType:["type"],NonNullType:["type"],SchemaDefinition:["description","directives","operationTypes"],OperationTypeDefinition:["type"],ScalarTypeDefinition:["description","name","directives"],ObjectTypeDefinition:["description","name","interfaces","directives","fields"],FieldDefinition:["description","name","arguments","type","directives"],InputValueDefinition:["description","name","type","defaultValue","directives"],InterfaceTypeDefinition:["description","name","interfaces","directives","fields"],UnionTypeDefinition:["description","name","directives","types"],EnumTypeDefinition:["description","name","directives","values"],EnumValueDefinition:["description","name","directives"],InputObjectTypeDefinition:["description","name","directives","fields"],DirectiveDefinition:["description","name","arguments","locations"],SchemaExtension:["directives","operationTypes"],ScalarTypeExtension:["name","directives"],ObjectTypeExtension:["name","interfaces","directives","fields"],InterfaceTypeExtension:["name","interfaces","directives","fields"],UnionTypeExtension:["name","directives","types"],EnumTypeExtension:["name","directives","values"],InputObjectTypeExtension:["name","directives","fields"]},a=new Set(Object.keys(o));function s(e){const t=null==e?void 0:e.kind;return"string"==typeof t&&a.has(t)}let l;!function(e){e.QUERY="query",e.MUTATION="mutation",e.SUBSCRIPTION="subscription"}(l||(l={}))},function(e,t){e.exports=window.React},function(e,t,n){"use strict";function r(e){return"object"==typeof e&&null!==e}n.d(t,"a",(function(){return r}))},function(e,t,n){"use strict";function r(e,t){const n=Object.create(null);for(const r of e)n[t(r)]=r;return n}n.d(t,"a",(function(){return r}))},function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));function r(e,t){const[n,r]=t?[e,t]:[void 0,e];let i=" Did you mean ";n&&(i+=n+" ");const o=r.map(e=>`"${e}"`);switch(o.length){case 0:return"";case 1:return i+o[0]+"?";case 2:return i+o[0]+" or "+o[1]+"?"}const a=o.slice(0,5),s=a.pop();return i+a.join(", ")+", or "+s+"?"}},function(e,t,n){"use strict";n.d(t,"a",(function(){return s})),n.d(t,"d",(function(){return l})),n.d(t,"e",(function(){return c})),n.d(t,"b",(function(){return u})),n.d(t,"c",(function(){return f}));var r=n(3),i=n(6),o=n(13),a=n(1);const s=Object.freeze({});function l(e,t,n=o.c){const l=new Map;for(const e of Object.values(a.a))l.set(e,u(t,e));let c=void 0,f=Array.isArray(e),d=[e],p=-1,h=[],m=void 0,g=void 0,v=void 0;const y=[],b=[];let T=e;do{p++;const e=p===d.length,a=e&&0!==h.length;if(e){if(g=0===b.length?void 0:y[y.length-1],m=v,v=b.pop(),a)if(f){m=m.slice();let e=0;for(const[t,n]of h){const r=t-e;null===n?(m.splice(r,1),e++):m[r]=n}}else{m=Object.defineProperties({},Object.getOwnPropertyDescriptors(m));for(const[e,t]of h)m[e]=t}p=c.index,d=c.keys,h=c.edits,f=c.inArray,c=c.prev}else{if(g=v?f?p:d[p]:void 0,m=v?v[g]:T,null==m)continue;v&&y.push(g)}let u;if(!Array.isArray(m)){var E,O;Object(o.e)(m)||Object(i.a)(!1,`Invalid AST Node: ${Object(r.a)(m)}.`);const n=e?null===(E=l.get(m.kind))||void 0===E?void 0:E.leave:null===(O=l.get(m.kind))||void 0===O?void 0:O.enter;if(u=null==n?void 0:n.call(t,m,g,v,y,b),u===s)break;if(!1===u){if(!e){y.pop();continue}}else if(void 0!==u&&(h.push([g,u]),!e)){if(!Object(o.e)(u)){y.pop();continue}m=u}}var _;if(void 0===u&&a&&h.push([g,m]),e)y.pop();else c={inArray:f,index:p,keys:d,edits:h,prev:c},f=Array.isArray(m),d=f?m:null!==(_=n[m.kind])&&void 0!==_?_:[],p=-1,h=[],v&&b.push(v),v=m}while(void 0!==c);return 0!==h.length&&(T=h[h.length-1][1]),T}function c(e){const t=new Array(e.length).fill(null),n=Object.create(null);for(const r of Object.values(a.a)){let i=!1;const o=new Array(e.length).fill(void 0),a=new Array(e.length).fill(void 0);for(let t=0;t{const i=n[e]-n[t];return 0!==i?i:Object(r.a)(e,t)})}class o{constructor(e){this._input=e,this._inputLowerCase=e.toLowerCase(),this._inputArray=a(this._inputLowerCase),this._rows=[new Array(e.length+1).fill(0),new Array(e.length+1).fill(0),new Array(e.length+1).fill(0)]}measure(e,t){if(this._input===e)return 0;const n=e.toLowerCase();if(this._inputLowerCase===n)return 1;let r=a(n),i=this._inputArray;if(r.lengtht)return;const l=this._rows;for(let e=0;e<=s;e++)l[0][e]=e;for(let e=1;e<=o;e++){const n=l[(e-1)%3],o=l[e%3];let a=o[0]=e;for(let t=1;t<=s;t++){const s=r[e-1]===i[t-1]?0:1;let c=Math.min(n[t]+1,o[t-1]+1,n[t-1]+s);if(e>1&&t>1&&r[e-1]===i[t-2]&&r[e-2]===i[t-1]){const n=l[(e-2)%3][t-2];c=Math.min(c,n+1)}ct)return}const c=l[o%3][s];return c<=t?c:void 0}}function a(e){const t=e.length,n=new Array(t);for(let r=0;r=48&&e<=57}function i(e){return e>=97&&e<=122||e>=65&&e<=90}function o(e){return i(e)||95===e}function a(e){return i(e)||r(e)||95===e}n.d(t,"a",(function(){return r})),n.d(t,"c",(function(){return o})),n.d(t,"b",(function(){return a}))},function(e,t,n){"use strict";function r(e,t){const n=Object.create(null);for(const[r,i]of Object.entries(e))n[r]=t(i,r);return n}n.d(t,"a",(function(){return r}))},function(e,t,n){"use strict";function r(e){const t=e.split(/\r\n|[\n\r]/g),n=o(e);if(0!==n)for(let e=1;er&&i(t[a-1]);)--a;return t.slice(r,a).join("\n")}function i(e){for(const t of e)if(" "!==t&&"\t"!==t)return!1;return!0}function o(e){var t;let n=!0,r=!0,i=0,o=null;for(let t=0;t0);let c=0;do{++r,c=10*c+s-i,s=t.charCodeAt(r)}while(o(s)&&c>0);if(lc)return 1}else{if(as)return 1;++n,++r}}return e.length-t.length}n.d(t,"a",(function(){return r}));const i=48;function o(e){return!isNaN(e)&&i<=e&&e<=57}},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(105),n(45),n(117),n(33)],void 0===(o="function"==typeof(r=function(e,t,n,r,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"getAutocompleteSuggestions",{enumerable:!0,get:function(){return t.getAutocompleteSuggestions}}),Object.defineProperty(e,"getDefinitionQueryResultForDefinitionNode",{enumerable:!0,get:function(){return t.getDefinitionQueryResultForDefinitionNode}}),Object.defineProperty(e,"getDefinitionQueryResultForFragmentSpread",{enumerable:!0,get:function(){return t.getDefinitionQueryResultForFragmentSpread}}),Object.defineProperty(e,"getDefinitionQueryResultForNamedType",{enumerable:!0,get:function(){return t.getDefinitionQueryResultForNamedType}}),Object.defineProperty(e,"getDefinitionState",{enumerable:!0,get:function(){return t.getDefinitionState}}),Object.defineProperty(e,"getDiagnostics",{enumerable:!0,get:function(){return t.getDiagnostics}}),Object.defineProperty(e,"getFieldDef",{enumerable:!0,get:function(){return t.getFieldDef}}),Object.defineProperty(e,"getFragmentDefinitions",{enumerable:!0,get:function(){return t.getFragmentDefinitions}}),Object.defineProperty(e,"getHoverInformation",{enumerable:!0,get:function(){return t.getHoverInformation}}),Object.defineProperty(e,"getOutline",{enumerable:!0,get:function(){return t.getOutline}}),Object.defineProperty(e,"getRange",{enumerable:!0,get:function(){return t.getRange}}),Object.defineProperty(e,"getTokenAtPosition",{enumerable:!0,get:function(){return t.getTokenAtPosition}}),Object.defineProperty(e,"getTypeInfo",{enumerable:!0,get:function(){return t.getTypeInfo}}),Object.defineProperty(e,"getVariableCompletions",{enumerable:!0,get:function(){return t.getVariableCompletions}}),Object.defineProperty(e,"GraphQLLanguageService",{enumerable:!0,get:function(){return t.GraphQLLanguageService}}),Object.defineProperty(e,"SEVERITY",{enumerable:!0,get:function(){return t.SEVERITY}}),Object.defineProperty(e,"DIAGNOSTIC_SEVERITY",{enumerable:!0,get:function(){return t.DIAGNOSTIC_SEVERITY}}),Object.defineProperty(e,"canUseDirective",{enumerable:!0,get:function(){return t.canUseDirective}}),Object.defineProperty(e,"SuggestionCommand",{enumerable:!0,get:function(){return t.SuggestionCommand}}),Object.defineProperty(e,"onlineParser",{enumerable:!0,get:function(){return n.onlineParser}}),Object.defineProperty(e,"ParseRules",{enumerable:!0,get:function(){return n.ParseRules}}),Object.defineProperty(e,"CharacterStream",{enumerable:!0,get:function(){return n.CharacterStream}}),Object.defineProperty(e,"RuleKinds",{enumerable:!0,get:function(){return n.RuleKinds}}),Object.defineProperty(e,"LexRules",{enumerable:!0,get:function(){return n.LexRules}}),Object.defineProperty(e,"isIgnored",{enumerable:!0,get:function(){return n.isIgnored}}),Object.defineProperty(e,"p",{enumerable:!0,get:function(){return n.p}}),Object.defineProperty(e,"list",{enumerable:!0,get:function(){return n.list}}),Object.defineProperty(e,"t",{enumerable:!0,get:function(){return n.t}}),Object.defineProperty(e,"opt",{enumerable:!0,get:function(){return n.opt}}),Object.defineProperty(e,"CompletionItemKind",{enumerable:!0,get:function(){return r.CompletionItemKind}}),Object.defineProperty(e,"FileChangeTypeKind",{enumerable:!0,get:function(){return r.FileChangeTypeKind}}),Object.defineProperty(e,"getASTNodeAtPosition",{enumerable:!0,get:function(){return i.getASTNodeAtPosition}}),Object.defineProperty(e,"getFragmentDependencies",{enumerable:!0,get:function(){return i.getFragmentDependencies}}),Object.defineProperty(e,"getFragmentDependenciesForAST",{enumerable:!0,get:function(){return i.getFragmentDependenciesForAST}}),Object.defineProperty(e,"getOperationASTFacts",{enumerable:!0,get:function(){return i.getOperationASTFacts}}),Object.defineProperty(e,"getOperationFacts",{enumerable:!0,get:function(){return i.getOperationFacts}}),Object.defineProperty(e,"getQueryFacts",{enumerable:!0,get:function(){return i.getQueryFacts}}),Object.defineProperty(e,"getVariablesJSONSchema",{enumerable:!0,get:function(){return i.getVariablesJSONSchema}}),Object.defineProperty(e,"offsetToPosition",{enumerable:!0,get:function(){return i.offsetToPosition}}),Object.defineProperty(e,"pointToOffset",{enumerable:!0,get:function(){return i.pointToOffset}}),Object.defineProperty(e,"Position",{enumerable:!0,get:function(){return i.Position}}),Object.defineProperty(e,"collectVariables",{enumerable:!0,get:function(){return i.collectVariables}}),Object.defineProperty(e,"validateWithCustomRules",{enumerable:!0,get:function(){return i.validateWithCustomRules}}),Object.defineProperty(e,"Range",{enumerable:!0,get:function(){return i.Range}})})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";!function(e){var t,n,r=e.Pos;function i(e,t){for(var n=function(e){var t=e.flags;return null!=t?t:(e.ignoreCase?"i":"")+(e.global?"g":"")+(e.multiline?"m":"")}(e),r=n,i=0;iu);f++){var d=e.getLine(c++);s=null==s?d:s+"\n"+d}l*=2,t.lastIndex=n.ch;var p=t.exec(s);if(p){var h=s.slice(0,p.index).split("\n"),m=p[0].split("\n"),g=n.line+h.length-1,v=h[h.length-1].length;return{from:r(g,v),to:r(g+m.length-1,1==m.length?v+m[0].length:m[m.length-1].length),match:p}}}}function l(e,t,n){for(var r,i=0;i<=e.length;){t.lastIndex=i;var o=t.exec(e);if(!o)break;var a=o.index+o[0].length;if(a>e.length-n)break;(!r||a>r.index+r[0].length)&&(r=o),i=o.index+1}return r}function c(e,t,n){t=i(t,"g");for(var o=n.line,a=n.ch,s=e.firstLine();o>=s;o--,a=-1){var c=e.getLine(o),u=l(c,t,a<0?0:c.length-a);if(u)return{from:r(o,u.index),to:r(o,u.index+u[0].length),match:u}}}function u(e,t,n){if(!o(t))return c(e,t,n);t=i(t,"gm");for(var a,s=1,u=e.getLine(n.line).length-n.ch,f=n.line,d=e.firstLine();f>=d;){for(var p=0;p=d;p++){var h=e.getLine(f--);a=null==a?h:h+"\n"+a}s*=2;var m=l(a,t,u);if(m){var g=a.slice(0,m.index).split("\n"),v=m[0].split("\n"),y=f+g.length,b=g[g.length-1].length;return{from:r(y,b),to:r(y+v.length-1,1==v.length?b+v[0].length:v[v.length-1].length),match:m}}}}function f(e,t,n,r){if(e.length==t.length)return n;for(var i=0,o=n+Math.max(0,e.length-t.length);;){if(i==o)return i;var a=i+o>>1,s=r(e.slice(0,a)).length;if(s==n)return a;s>n?o=a:i=a+1}}function d(e,i,o,a){if(!i.length)return null;var s=a?t:n,l=s(i).split(/\r|\n\r?/);e:for(var c=o.line,u=o.ch,d=e.lastLine()+1-l.length;c<=d;c++,u=0){var p=e.getLine(c).slice(u),h=s(p);if(1==l.length){var m=h.indexOf(l[0]);if(-1==m)continue e;return o=f(p,h,m,s)+u,{from:r(c,f(p,h,m,s)+u),to:r(c,f(p,h,m+l[0].length,s)+u)}}var g=h.length-l[0].length;if(h.slice(g)==l[0]){for(var v=1;v=d;c--,u=-1){var p=e.getLine(c);u>-1&&(p=p.slice(0,u));var h=s(p);if(1==l.length){var m=h.lastIndexOf(l[0]);if(-1==m)continue e;return{from:r(c,f(p,h,m,s)),to:r(c,f(p,h,m+l[0].length,s))}}var g=l[l.length-1];if(h.slice(0,g.length)==g){var v=1;for(o=c-l.length+1;v0);)r.push({anchor:i.from(),head:i.to()});r.length&&this.setSelections(r,0)}))}(n(10))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";!function(e){function t(t,n,r){var i,o=t.getWrapperElement();return(i=o.appendChild(document.createElement("div"))).className=r?"CodeMirror-dialog CodeMirror-dialog-bottom":"CodeMirror-dialog CodeMirror-dialog-top","string"==typeof n?i.innerHTML=n:i.appendChild(n),e.addClass(o,"dialog-opened"),i}function n(e,t){e.state.currentNotificationClose&&e.state.currentNotificationClose(),e.state.currentNotificationClose=t}e.defineExtension("openDialog",(function(r,i,o){o||(o={}),n(this,null);var a=t(this,r,o.bottom),s=!1,l=this;function c(t){if("string"==typeof t)f.value=t;else{if(s)return;s=!0,e.rmClass(a.parentNode,"dialog-opened"),a.parentNode.removeChild(a),l.focus(),o.onClose&&o.onClose(a)}}var u,f=a.getElementsByTagName("input")[0];return f?(f.focus(),o.value&&(f.value=o.value,!1!==o.selectValueOnOpen&&f.select()),o.onInput&&e.on(f,"input",(function(e){o.onInput(e,f.value,c)})),o.onKeyUp&&e.on(f,"keyup",(function(e){o.onKeyUp(e,f.value,c)})),e.on(f,"keydown",(function(t){o&&o.onKeyDown&&o.onKeyDown(t,f.value,c)||((27==t.keyCode||!1!==o.closeOnEnter&&13==t.keyCode)&&(f.blur(),e.e_stop(t),c()),13==t.keyCode&&i(f.value,t))})),!1!==o.closeOnBlur&&e.on(a,"focusout",(function(e){null!==e.relatedTarget&&c()}))):(u=a.getElementsByTagName("button")[0])&&(e.on(u,"click",(function(){c(),l.focus()})),!1!==o.closeOnBlur&&e.on(u,"blur",c),u.focus()),c})),e.defineExtension("openConfirm",(function(r,i,o){n(this,null);var a=t(this,r,o&&o.bottom),s=a.getElementsByTagName("button"),l=!1,c=this,u=1;function f(){l||(l=!0,e.rmClass(a.parentNode,"dialog-opened"),a.parentNode.removeChild(a),c.focus())}s[0].focus();for(var d=0;dnull;return function e(r,i){return r instanceof n.GraphQLNonNull?t.default.createElement("span",null,e(r.ofType,i),"!"):r instanceof n.GraphQLList?t.default.createElement("span",null,"[",e(r.ofType,i),"]"):t.default.createElement("a",{className:"type-name",onClick:e=>{e.preventDefault(),i(r,e)},href:"#"},null==r?void 0:r.name)}(e.type,r)},t=(r=t)&&r.__esModule?r:{default:r}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));var r=n(8);const i=/\r\n|[\n\r]/g;function o(e,t){let n=0,o=1;for(const a of e.body.matchAll(i)){if("number"==typeof a.index||Object(r.a)(!1),a.index>=t)break;n=a.index+a[0].length,o+=1}return{line:o,column:t+1-n}}},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;let t=!1;"object"==typeof window&&(t="MacIntel"===window.navigator.platform);var n={[t?"Cmd-F":"Ctrl-F"]:"findPersistent","Cmd-G":"findPersistent","Ctrl-G":"findPersistent","Ctrl-Left":"goSubwordLeft","Ctrl-Right":"goSubwordRight","Alt-Left":"goGroupLeft","Alt-Right":"goGroupRight"};e.default=n})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";!function(e){function t(e,t){this.cm=e,this.options=t,this.widget=null,this.debounce=0,this.tick=0,this.startPos=this.cm.getCursor("start"),this.startLen=this.cm.getLine(this.startPos.line).length-this.cm.getSelection().length;var n=this;e.on("cursorActivity",this.activityFunc=function(){n.cursorActivity()})}e.showHint=function(e,t,n){if(!t)return e.showHint(n);n&&n.async&&(t.async=!0);var r={hint:t};if(n)for(var i in n)r[i]=n[i];return e.showHint(r)},e.defineExtension("showHint",(function(n){n=function(e,t,n){var r=e.options.hintOptions,i={};for(var o in l)i[o]=l[o];if(r)for(var o in r)void 0!==r[o]&&(i[o]=r[o]);if(n)for(var o in n)void 0!==n[o]&&(i[o]=n[o]);return i.hint.resolve&&(i.hint=i.hint.resolve(e,t)),i}(this,this.getCursor("start"),n);var r=this.listSelections();if(!(r.length>1)){if(this.somethingSelected()){if(!n.hint.supportsSelection)return;for(var i=0;ic.clientHeight+1,I=a.getScrollInfo();if(N>0){var A=S.bottom-S.top;if(v.top-(v.bottom-S.top)-A>0)c.style.top=(b=v.top-A-O)+"px",T=!1;else if(A>k){c.style.height=k-5+"px",c.style.top=(b=v.bottom-S.top-O)+"px";var L=a.getCursor();n.from.ch!=L.ch&&(v=a.cursorCoords(L),c.style.left=(y=v.left-E)+"px",S=c.getBoundingClientRect())}}var F,j=S.right-w;if(j>0&&(S.right-S.left>w&&(c.style.width=w-5+"px",j-=S.right-S.left-w),c.style.left=(y=v.left-j-E)+"px"),D)for(var M=c.firstChild;M;M=M.nextSibling)M.style.paddingRight=a.display.nativeBarWidth+"px";return a.addKeyMap(this.keyMap=function(e,t){var n={Up:function(){t.moveFocus(-1)},Down:function(){t.moveFocus(1)},PageUp:function(){t.moveFocus(1-t.menuSize(),!0)},PageDown:function(){t.moveFocus(t.menuSize()-1,!0)},Home:function(){t.setFocus(0)},End:function(){t.setFocus(t.length-1)},Enter:t.pick,Tab:t.pick,Esc:t.close};/Mac/.test(navigator.platform)&&(n["Ctrl-P"]=function(){t.moveFocus(-1)},n["Ctrl-N"]=function(){t.moveFocus(1)});var r=e.options.customKeys,i=r?{}:n;function o(e,r){var o;o="string"!=typeof r?function(e){return r(e,t)}:n.hasOwnProperty(r)?n[r]:r,i[e]=o}if(r)for(var a in r)r.hasOwnProperty(a)&&o(a,r[a]);var s=e.options.extraKeys;if(s)for(var a in s)s.hasOwnProperty(a)&&o(a,s[a]);return i}(t,{moveFocus:function(e,t){r.changeActive(r.selectedHint+e,t)},setFocus:function(e){r.changeActive(e)},menuSize:function(){return r.screenAmount()},length:f.length,close:function(){t.close()},pick:function(){r.pick()},data:n})),t.options.closeOnUnfocus&&(a.on("blur",this.onBlur=function(){F=setTimeout((function(){t.close()}),100)}),a.on("focus",this.onFocus=function(){clearTimeout(F)})),a.on("scroll",this.onScroll=function(){var e=a.getScrollInfo(),n=a.getWrapperElement().getBoundingClientRect(),r=b+I.top-e.top,i=r-(l.pageYOffset||(s.documentElement||s.body).scrollTop);if(T||(i+=c.offsetHeight),i<=n.top||i>=n.bottom)return t.close();c.style.top=r+"px",c.style.left=y+I.left-e.left+"px"}),e.on(c,"dblclick",(function(e){var t=o(c,e.target||e.srcElement);t&&null!=t.hintId&&(r.changeActive(t.hintId),r.pick())})),e.on(c,"click",(function(e){var n=o(c,e.target||e.srcElement);n&&null!=n.hintId&&(r.changeActive(n.hintId),t.options.completeOnSingleClick&&r.pick())})),e.on(c,"mousedown",(function(){setTimeout((function(){a.focus()}),20)})),this.scrollToActive(),e.signal(n,"select",f[this.selectedHint],c.childNodes[this.selectedHint]),!0}function s(e,t,n,r){if(e.async)e(t,r,n);else{var i=e(t,n);i&&i.then?i.then(r):r(i)}}t.prototype={close:function(){this.active()&&(this.cm.state.completionActive=null,this.tick=null,this.cm.off("cursorActivity",this.activityFunc),this.widget&&this.data&&e.signal(this.data,"close"),this.widget&&this.widget.close(),e.signal(this.cm,"endCompletion",this.cm))},active:function(){return this.cm.state.completionActive==this},pick:function(t,n){var r=t.list[n],o=this;this.cm.operation((function(){r.hint?r.hint(o.cm,t,r):o.cm.replaceRange(i(r),r.from||t.from,r.to||t.to,"complete"),e.signal(t,"pick",r),o.cm.scrollIntoView()})),this.close()},cursorActivity:function(){this.debounce&&(r(this.debounce),this.debounce=0);var e=this.startPos;this.data&&(e=this.data.from);var t=this.cm.getCursor(),i=this.cm.getLine(t.line);if(t.line!=this.startPos.line||i.length-t.ch!=this.startLen-this.startPos.ch||t.ch=this.data.list.length?t=n?this.data.list.length-1:0:t<0&&(t=n?0:this.data.list.length-1),this.selectedHint!=t){var r=this.hints.childNodes[this.selectedHint];r&&(r.className=r.className.replace(" CodeMirror-hint-active","")),(r=this.hints.childNodes[this.selectedHint=t]).className+=" CodeMirror-hint-active",this.scrollToActive(),e.signal(this.data,"select",this.data.list[this.selectedHint],r)}},scrollToActive:function(){var e=this.completion.options.scrollMargin||0,t=this.hints.childNodes[Math.max(0,this.selectedHint-e)],n=this.hints.childNodes[Math.min(this.data.list.length-1,this.selectedHint+e)],r=this.hints.firstChild;t.offsetTopthis.hints.scrollTop+this.hints.clientHeight&&(this.hints.scrollTop=n.offsetTop+n.offsetHeight-this.hints.clientHeight+r.offsetTop)},screenAmount:function(){return Math.floor(this.hints.clientHeight/this.hints.firstChild.offsetHeight)||1}},e.registerHelper("hint","auto",{resolve:function(t,n){var r,i=t.getHelpers(n,"hint");if(i.length){var o=function(e,t,n){var r=function(e,t){if(!e.somethingSelected())return t;for(var n=[],r=0;r0?t(e):i(o+1)}))}(0)};return o.async=!0,o.supportsSelection=!0,o}return(r=t.getHelper(t.getCursor(),"hintWords"))?function(t){return e.hint.fromList(t,{words:r})}:e.hint.anyword?function(t,n){return e.hint.anyword(t,n)}:function(){}}}),e.registerHelper("hint","fromList",(function(t,n){var r,i=t.getCursor(),o=t.getTokenAt(i),a=e.Pos(i.line,o.start),s=i;o.start,]/,closeOnUnfocus:!0,completeOnSingleClick:!0,container:null,customKeys:null,extraKeys:null};e.defineOption("hintOptions",null)}(n(10))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";!function(e){var t=/MSIE \d/.test(navigator.userAgent)&&(null==document.documentMode||document.documentMode<8),n=e.Pos,r={"(":")>",")":"(<","[":"]>","]":"[<","{":"}>","}":"{<","<":">>",">":"<<"};function i(e){return e&&e.bracketRegex||/[(){}[\]]/}function o(e,t,o){var s=e.getLineHandle(t.line),l=t.ch-1,c=o&&o.afterCursor;null==c&&(c=/(^| )cm-fat-cursor($| )/.test(e.getWrapperElement().className));var u=i(o),f=!c&&l>=0&&u.test(s.text.charAt(l))&&r[s.text.charAt(l)]||u.test(s.text.charAt(l+1))&&r[s.text.charAt(++l)];if(!f)return null;var d=">"==f.charAt(1)?1:-1;if(o&&o.strict&&d>0!=(l==t.ch))return null;var p=e.getTokenTypeAt(n(t.line,l+1)),h=a(e,n(t.line,l+(d>0?1:0)),d,p||null,o);return null==h?null:{from:n(t.line,l),to:h&&h.pos,match:h&&h.ch==f.charAt(0),forward:d>0}}function a(e,t,o,a,s){for(var l=s&&s.maxScanLineLength||1e4,c=s&&s.maxScanLines||1e3,u=[],f=i(s),d=o>0?Math.min(t.line+c,e.lastLine()+1):Math.max(e.firstLine()-1,t.line-c),p=t.line;p!=d;p+=o){var h=e.getLine(p);if(h){var m=o>0?0:h.length-1,g=o>0?h.length:-1;if(!(h.length>l))for(p==t.line&&(m=t.ch-(o<0?1:0));m!=g;m+=o){var v=h.charAt(m);if(f.test(v)&&(void 0===a||e.getTokenTypeAt(n(p,m+1))==a)){var y=r[v];if(y&&">"==y.charAt(1)==o>0)u.push(v);else{if(!u.length)return{pos:n(p,m),ch:v};u.pop()}}}}}return p-o!=(o>0?e.lastLine():e.firstLine())&&null}function s(e,r,i){for(var a=e.state.matchBrackets.maxHighlightLineLength||1e3,s=[],l=e.listSelections(),c=0;c=c){if(d&&a&&d.test(a.className))return;o=i(s.indicatorOpen)}}(o||a)&&e.setGutterMarker(n,s.gutter,o)}))}function a(e){return new RegExp("(^|\\s)"+e+"(?:$|\\s)\\s*")}function s(e){var t=e.getViewport(),n=e.state.foldGutter;n&&(e.operation((function(){o(e,t.from,t.to)})),n.from=t.from,n.to=t.to)}function l(e,n,i){var o=e.state.foldGutter;if(o){var a=o.options;if(i==a.gutter){var s=r(e,n);s?s.clear():e.foldCode(t(n,0),a)}}}function c(e){var t=e.state.foldGutter;if(t){var n=t.options;t.from=t.to=0,clearTimeout(t.changeUpdate),t.changeUpdate=setTimeout((function(){s(e)}),n.foldOnChangeTimeSpan||600)}}function u(e){var t=e.state.foldGutter;if(t){var n=t.options;clearTimeout(t.changeUpdate),t.changeUpdate=setTimeout((function(){var n=e.getViewport();t.from==t.to||n.from-t.to>20||t.from-n.to>20?s(e):e.operation((function(){n.fromt.to&&(o(e,t.to,n.to),t.to=n.to)}))}),n.updateViewportTimeSpan||400)}}function f(e,t){var n=e.state.foldGutter;if(n){var r=t.line;r>=n.from&&rt.lastLine())return null;var r=t.getTokenAt(e.Pos(n,1));if(/\S/.test(r.string)||(r=t.getTokenAt(e.Pos(n,r.end+1))),"keyword"!=r.type||"import"!=r.string)return null;for(var i=n,o=Math.min(t.lastLine(),n+10);i<=o;++i){var a=t.getLine(i).indexOf(";");if(-1!=a)return{startCh:r.end,end:e.Pos(i,a)}}}var i,o=n.line,a=r(o);if(!a||r(o-1)||(i=r(o-2))&&i.end.line==o-1)return null;for(var s=a.end;;){var l=r(s.line+1);if(null==l)break;s=l.end}return{from:t.clipPos(e.Pos(o,a.startCh+1)),to:s}})),e.registerHelper("fold","include",(function(t,n){function r(n){if(nt.lastLine())return null;var r=t.getTokenAt(e.Pos(n,1));return/\S/.test(r.string)||(r=t.getTokenAt(e.Pos(n,r.end+1))),"meta"==r.type&&"#include"==r.string.slice(0,8)?r.start+8:void 0}var i=n.line,o=r(i);if(null==o||null!=r(i-1))return null;for(var a=i;null!=r(a+1);)++a;return{from:e.Pos(i,o+1),to:t.clipPos(e.Pos(a))}}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";!function(e){function t(e,t){var n=Number(t);return/^[-+]/.test(t)?e.getCursor().line+n:n-1}e.commands.jumpToLine=function(e){var n=e.getCursor();!function(e,t,n,r,i){e.openDialog?e.openDialog(t,i,{value:r,selectValueOnOpen:!0}):i(prompt(n,r))}(e,function(e){return e.phrase("Jump to line:")+' '+e.phrase("(Use line:column or scroll% syntax)")+""}(e),e.phrase("Jump to line:"),n.line+1+":"+n.ch,(function(r){var i;if(r)if(i=/^\s*([\+\-]?\d+)\s*\:\s*(\d+)\s*$/.exec(r))e.setCursor(t(e,i[1]),Number(i[2]));else if(i=/^\s*([\+\-]?\d+(\.\d+)?)\%\s*/.exec(r)){var o=Math.round(e.lineCount()*Number(i[1])/100);/^[-+]/.test(i[1])&&(o=n.line+o+1),e.setCursor(o-1,n.ch)}else(i=/^\s*\:?\s*([\+\-]?\d+)\s*/.exec(r))&&e.setCursor(t(e,i[1]),n.ch)}))},e.keyMap.default["Alt-G"]="jumpToLine"}(n(10),n(30))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";!function(e){var t=e.commands,n=e.Pos;function r(t,r){t.extendSelectionsBy((function(i){return t.display.shift||t.doc.extend||i.empty()?function(t,r,i){if(i<0&&0==r.ch)return t.clipPos(n(r.line-1));var o=t.getLine(r.line);if(i>0&&r.ch>=o.length)return t.clipPos(n(r.line+1,0));for(var a,s="start",l=r.ch,c=l,u=i<0?0:o.length,f=0;c!=u;c+=i,f++){var d=o.charAt(i<0?c-1:c),p="_"!=d&&e.isWordChar(d)?"w":"o";if("w"==p&&d.toUpperCase()==d&&(p="W"),"start"==s)"o"!=p?(s="in",a=p):l=c+i;else if("in"==s&&a!=p){if("w"==a&&"W"==p&&i<0&&c--,"W"==a&&"w"==p&&i>0){if(c==l+1){a="w";continue}c--}break}}return n(r.line,c)}(t.doc,i.head,r):r<0?i.from():i.to()}))}function i(t,r){if(t.isReadOnly())return e.Pass;t.operation((function(){for(var e=t.listSelections().length,i=[],o=-1,a=0;a=0;s--){var c=r[i[s]];if(!(l&&e.cmpPos(c.head,l)>0)){var u=o(t,c.head);l=u.from,t.replaceRange(n(u.word),u.from,u.to)}}}))}function f(t){var n=t.getCursor("from"),r=t.getCursor("to");if(0==e.cmpPos(n,r)){var i=o(t,n);if(!i.word)return;n=i.from,r=i.to}return{from:n,to:r,query:t.getRange(n,r),word:i}}function d(e,t){var r=f(e);if(r){var i=r.query,o=e.getSearchCursor(i,t?r.to:r.from);(t?o.findNext():o.findPrevious())?e.setSelection(o.from(),o.to()):(o=e.getSearchCursor(i,t?n(e.firstLine(),0):e.clipPos(n(e.lastLine()))),(t?o.findNext():o.findPrevious())?e.setSelection(o.from(),o.to()):r.word&&e.setSelection(r.from,r.to))}}t.goSubwordLeft=function(e){r(e,-1)},t.goSubwordRight=function(e){r(e,1)},t.scrollLineUp=function(e){var t=e.getScrollInfo();if(!e.somethingSelected()){var n=e.lineAtHeight(t.top+t.clientHeight,"local");e.getCursor().line>=n&&e.execCommand("goLineUp")}e.scrollTo(null,t.top-e.defaultTextHeight())},t.scrollLineDown=function(e){var t=e.getScrollInfo();if(!e.somethingSelected()){var n=e.lineAtHeight(t.top,"local")+1;e.getCursor().line<=n&&e.execCommand("goLineDown")}e.scrollTo(null,t.top+e.defaultTextHeight())},t.splitSelectionByLine=function(e){for(var t=e.listSelections(),r=[],i=0;io.line&&s==a.line&&0==a.ch||r.push({anchor:s==o.line?o:n(s,0),head:s==a.line?a:n(s)});e.setSelections(r,0)},t.singleSelectionTop=function(e){var t=e.listSelections()[0];e.setSelection(t.anchor,t.head,{scroll:!1})},t.selectLine=function(e){for(var t=e.listSelections(),r=[],i=0;io?i.push(c,u):i.length&&(i[i.length-1]=u),o=u}t.operation((function(){for(var e=0;et.lastLine()?t.replaceRange("\n"+s,n(t.lastLine()),null,"+swapLine"):t.replaceRange(s+"\n",n(o,0),null,"+swapLine")}t.setSelections(a),t.scrollIntoView()}))},t.swapLineDown=function(t){if(t.isReadOnly())return e.Pass;for(var r=t.listSelections(),i=[],o=t.lastLine()+1,a=r.length-1;a>=0;a--){var s=r[a],l=s.to().line+1,c=s.from().line;0!=s.to().ch||s.empty()||l--,l=0;e-=2){var r=i[e],o=i[e+1],a=t.getLine(r);r==t.lastLine()?t.replaceRange("",n(r-1),n(r),"+swapLine"):t.replaceRange("",n(r,0),n(r+1,0),"+swapLine"),t.replaceRange(a+"\n",n(o,0),null,"+swapLine")}t.scrollIntoView()}))},t.toggleCommentIndented=function(e){e.toggleComment({indent:!0})},t.joinLines=function(e){for(var t=e.listSelections(),r=[],i=0;i=0;o--){var a=r[o].head,s=t.getRange({line:a.line,ch:0},a),l=e.countColumn(s,null,t.getOption("tabSize")),c=t.findPosH(a,-1,"char",!1);if(s&&!/\S/.test(s)&&l%i==0){var u=new n(a.line,e.findColumn(s,l-i,i));u.ch!=a.ch&&(c=u)}t.replaceRange("",c,a,"+delete")}}))},t.delLineRight=function(e){e.operation((function(){for(var t=e.listSelections(),r=t.length-1;r>=0;r--)e.replaceRange("",t[r].anchor,n(t[r].to().line),"+delete");e.scrollIntoView()}))},t.upcaseAtCursor=function(e){u(e,(function(e){return e.toUpperCase()}))},t.downcaseAtCursor=function(e){u(e,(function(e){return e.toLowerCase()}))},t.setSublimeMark=function(e){e.state.sublimeMark&&e.state.sublimeMark.clear(),e.state.sublimeMark=e.setBookmark(e.getCursor())},t.selectToSublimeMark=function(e){var t=e.state.sublimeMark&&e.state.sublimeMark.find();t&&e.setSelection(e.getCursor(),t)},t.deleteToSublimeMark=function(t){var n=t.state.sublimeMark&&t.state.sublimeMark.find();if(n){var r=t.getCursor(),i=n;if(e.cmpPos(r,i)>0){var o=i;i=r,r=o}t.state.sublimeKilled=t.getRange(r,i),t.replaceRange("",r,i)}},t.swapWithSublimeMark=function(e){var t=e.state.sublimeMark&&e.state.sublimeMark.find();t&&(e.state.sublimeMark.clear(),e.state.sublimeMark=e.setBookmark(e.getCursor()),e.setCursor(t))},t.sublimeYank=function(e){null!=e.state.sublimeKilled&&e.replaceSelection(e.state.sublimeKilled,null,"paste")},t.showInCenter=function(e){var t=e.cursorCoords(null,"local");e.scrollTo(null,(t.top+t.bottom)/2-e.getScrollInfo().clientHeight/2)},t.findUnder=function(e){d(e,!0)},t.findUnderPrevious=function(e){d(e,!1)},t.findAllUnder=function(e){var t=f(e);if(t){for(var n=e.getSearchCursor(t.query),r=[],i=-1;n.findNext();)r.push({anchor:n.from(),head:n.to()}),n.from().line<=t.from.line&&n.from().ch<=t.from.ch&&i++;e.setSelections(r,i)}};var p=e.keyMap;p.macSublime={"Cmd-Left":"goLineStartSmart","Shift-Tab":"indentLess","Shift-Ctrl-K":"deleteLine","Alt-Q":"wrapLines","Ctrl-Left":"goSubwordLeft","Ctrl-Right":"goSubwordRight","Ctrl-Alt-Up":"scrollLineUp","Ctrl-Alt-Down":"scrollLineDown","Cmd-L":"selectLine","Shift-Cmd-L":"splitSelectionByLine",Esc:"singleSelectionTop","Cmd-Enter":"insertLineAfter","Shift-Cmd-Enter":"insertLineBefore","Cmd-D":"selectNextOccurrence","Shift-Cmd-Space":"selectScope","Shift-Cmd-M":"selectBetweenBrackets","Cmd-M":"goToBracket","Cmd-Ctrl-Up":"swapLineUp","Cmd-Ctrl-Down":"swapLineDown","Cmd-/":"toggleCommentIndented","Cmd-J":"joinLines","Shift-Cmd-D":"duplicateLine",F5:"sortLines","Cmd-F5":"sortLinesInsensitive",F2:"nextBookmark","Shift-F2":"prevBookmark","Cmd-F2":"toggleBookmark","Shift-Cmd-F2":"clearBookmarks","Alt-F2":"selectBookmarks",Backspace:"smartBackspace","Cmd-K Cmd-D":"skipAndSelectNextOccurrence","Cmd-K Cmd-K":"delLineRight","Cmd-K Cmd-U":"upcaseAtCursor","Cmd-K Cmd-L":"downcaseAtCursor","Cmd-K Cmd-Space":"setSublimeMark","Cmd-K Cmd-A":"selectToSublimeMark","Cmd-K Cmd-W":"deleteToSublimeMark","Cmd-K Cmd-X":"swapWithSublimeMark","Cmd-K Cmd-Y":"sublimeYank","Cmd-K Cmd-C":"showInCenter","Cmd-K Cmd-G":"clearBookmarks","Cmd-K Cmd-Backspace":"delLineLeft","Cmd-K Cmd-1":"foldAll","Cmd-K Cmd-0":"unfoldAll","Cmd-K Cmd-J":"unfoldAll","Ctrl-Shift-Up":"addCursorToPrevLine","Ctrl-Shift-Down":"addCursorToNextLine","Cmd-F3":"findUnder","Shift-Cmd-F3":"findUnderPrevious","Alt-F3":"findAllUnder","Shift-Cmd-[":"fold","Shift-Cmd-]":"unfold","Cmd-I":"findIncremental","Shift-Cmd-I":"findIncrementalReverse","Cmd-H":"replace",F3:"findNext","Shift-F3":"findPrev",fallthrough:"macDefault"},e.normalizeKeyMap(p.macSublime),p.pcSublime={"Shift-Tab":"indentLess","Shift-Ctrl-K":"deleteLine","Alt-Q":"wrapLines","Ctrl-T":"transposeChars","Alt-Left":"goSubwordLeft","Alt-Right":"goSubwordRight","Ctrl-Up":"scrollLineUp","Ctrl-Down":"scrollLineDown","Ctrl-L":"selectLine","Shift-Ctrl-L":"splitSelectionByLine",Esc:"singleSelectionTop","Ctrl-Enter":"insertLineAfter","Shift-Ctrl-Enter":"insertLineBefore","Ctrl-D":"selectNextOccurrence","Shift-Ctrl-Space":"selectScope","Shift-Ctrl-M":"selectBetweenBrackets","Ctrl-M":"goToBracket","Shift-Ctrl-Up":"swapLineUp","Shift-Ctrl-Down":"swapLineDown","Ctrl-/":"toggleCommentIndented","Ctrl-J":"joinLines","Shift-Ctrl-D":"duplicateLine",F9:"sortLines","Ctrl-F9":"sortLinesInsensitive",F2:"nextBookmark","Shift-F2":"prevBookmark","Ctrl-F2":"toggleBookmark","Shift-Ctrl-F2":"clearBookmarks","Alt-F2":"selectBookmarks",Backspace:"smartBackspace","Ctrl-K Ctrl-D":"skipAndSelectNextOccurrence","Ctrl-K Ctrl-K":"delLineRight","Ctrl-K Ctrl-U":"upcaseAtCursor","Ctrl-K Ctrl-L":"downcaseAtCursor","Ctrl-K Ctrl-Space":"setSublimeMark","Ctrl-K Ctrl-A":"selectToSublimeMark","Ctrl-K Ctrl-W":"deleteToSublimeMark","Ctrl-K Ctrl-X":"swapWithSublimeMark","Ctrl-K Ctrl-Y":"sublimeYank","Ctrl-K Ctrl-C":"showInCenter","Ctrl-K Ctrl-G":"clearBookmarks","Ctrl-K Ctrl-Backspace":"delLineLeft","Ctrl-K Ctrl-1":"foldAll","Ctrl-K Ctrl-0":"unfoldAll","Ctrl-K Ctrl-J":"unfoldAll","Ctrl-Alt-Up":"addCursorToPrevLine","Ctrl-Alt-Down":"addCursorToNextLine","Ctrl-F3":"findUnder","Shift-Ctrl-F3":"findUnderPrevious","Alt-F3":"findAllUnder","Shift-Ctrl-[":"fold","Shift-Ctrl-]":"unfold","Ctrl-I":"findIncremental","Shift-Ctrl-I":"findIncrementalReverse","Ctrl-H":"replace",F3:"findNext","Shift-F3":"findPrev",fallthrough:"pcDefault"},e.normalizeKeyMap(p.pcSublime);var h=p.default==p.macDefault;p.sublime=h?p.macSublime:p.pcSublime}(n(10),n(29),n(38))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t;t=function(){return this}();try{t=t||new Function("return this")()}catch(e){"object"==typeof window&&(t=window)}e.exports=t})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(57),n(12),n(45),n(56)],void 0===(o="function"==typeof(r=function(e,t,n,r,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getAutocompleteSuggestions=function(e,d,p,h,m,g){var v;const y=Object.assign(Object.assign({},g),{schema:e}),b=h||l(d,p),T="Invalid"===b.state.kind?b.state.prevState:b.state;if(!T)return[];const E=T.kind,O=T.step,_=f(e,b.state);if(E===r.RuleKinds.DOCUMENT)return(0,i.hintList)(b,[{label:"query",kind:t.CompletionItemKind.Function},{label:"mutation",kind:t.CompletionItemKind.Function},{label:"subscription",kind:t.CompletionItemKind.Function},{label:"fragment",kind:t.CompletionItemKind.Function},{label:"{",kind:t.CompletionItemKind.Constructor}]);if(E===r.RuleKinds.IMPLEMENTS||E===r.RuleKinds.NAMED_TYPE&&(null===(v=T.prevState)||void 0===v?void 0:v.kind)===r.RuleKinds.IMPLEMENTS)return function(e,o,a,s,l){if(o.needsSeperator)return[];const u=a.getTypeMap(),f=(0,i.objectValues)(u).filter(n.isInterfaceType),d=f.map(({name:e})=>e),p=new Set;c(s,(e,t)=>{var i,o,s,c,u;if(t.name&&(t.kind!==r.RuleKinds.INTERFACE_DEF||d.includes(t.name)||p.add(t.name),t.kind===r.RuleKinds.NAMED_TYPE&&(null===(i=t.prevState)||void 0===i?void 0:i.kind)===r.RuleKinds.IMPLEMENTS))if(l.interfaceDef){if(null===(o=l.interfaceDef)||void 0===o?void 0:o.getInterfaces().find(({name:e})=>e===t.name))return;const e=a.getType(t.name),r=null===(s=l.interfaceDef)||void 0===s?void 0:s.toConfig();l.interfaceDef=new n.GraphQLInterfaceType(Object.assign(Object.assign({},r),{interfaces:[...r.interfaces,e||new n.GraphQLInterfaceType({name:t.name,fields:{}})]}))}else if(l.objectTypeDef){if(null===(c=l.objectTypeDef)||void 0===c?void 0:c.getInterfaces().find(({name:e})=>e===t.name))return;const e=a.getType(t.name),r=null===(u=l.objectTypeDef)||void 0===u?void 0:u.toConfig();l.objectTypeDef=new n.GraphQLObjectType(Object.assign(Object.assign({},r),{interfaces:[...r.interfaces,e||new n.GraphQLInterfaceType({name:t.name,fields:{}})]}))}});const h=l.interfaceDef||l.objectTypeDef,m=((null==h?void 0:h.getInterfaces())||[]).map(({name:e})=>e),g=f.concat([...p].map(e=>({name:e}))).filter(({name:e})=>e!==(null==h?void 0:h.name)&&!m.includes(e));return(0,i.hintList)(e,g.map(e=>{const n={label:e.name,kind:t.CompletionItemKind.Interface,type:e};return(null==e?void 0:e.description)&&(n.documentation=e.description),n}))}(b,T,e,d,_);if(E===r.RuleKinds.SELECTION_SET||E===r.RuleKinds.FIELD||E===r.RuleKinds.ALIASED_FIELD)return function(e,r,a){var s;if(r.parentType){const l=r.parentType;let c=[];return"getFields"in l&&(c=(0,i.objectValues)(l.getFields())),(0,n.isCompositeType)(l)&&c.push(n.TypeNameMetaFieldDef),l===(null===(s=null==a?void 0:a.schema)||void 0===s?void 0:s.getQueryType())&&c.push(n.SchemaMetaFieldDef,n.TypeMetaFieldDef),(0,i.hintList)(e,c.map((e,r)=>{var i;const a={sortText:String(r)+e.name,label:e.name,detail:String(e.type),documentation:null!==(i=e.description)&&void 0!==i?i:void 0,deprecated:Boolean(e.deprecationReason),isDeprecated:Boolean(e.deprecationReason),deprecationReason:e.deprecationReason,kind:t.CompletionItemKind.Field,type:e.type},s=(e=>{const t=e.type;if((0,n.isCompositeType)(t))return" {\n $1\n}";if((0,n.isListType)(t)&&(0,n.isCompositeType)(t.ofType))return" {\n $1\n}";if((0,n.isNonNullType)(t)){if((0,n.isCompositeType)(t.ofType))return" {\n $1\n}";if((0,n.isListType)(t.ofType)&&(0,n.isCompositeType)(t.ofType.ofType))return" {\n $1\n}"}return null})(e);return s&&(a.insertText=e.name+s,a.insertTextFormat=t.InsertTextFormat.Snippet,a.command=o),a}))}return[]}(b,_,y);if(E===r.RuleKinds.ARGUMENTS||E===r.RuleKinds.ARGUMENT&&0===O){const e=_.argDefs;if(e)return(0,i.hintList)(b,e.map(e=>{var n;return{label:e.name,insertText:e.name+": ",command:o,detail:String(e.type),documentation:null!==(n=e.description)&&void 0!==n?n:void 0,kind:t.CompletionItemKind.Variable,type:e.type}}))}if((E===r.RuleKinds.OBJECT_VALUE||E===r.RuleKinds.OBJECT_FIELD&&0===O)&&_.objectFieldDefs){const e=(0,i.objectValues)(_.objectFieldDefs),n=E===r.RuleKinds.OBJECT_VALUE?t.CompletionItemKind.Value:t.CompletionItemKind.Field;return(0,i.hintList)(b,e.map(e=>{var t;return{label:e.name,detail:String(e.type),documentation:null!==(t=e.description)&&void 0!==t?t:void 0,kind:n,type:e.type}}))}if(E===r.RuleKinds.ENUM_VALUE||E===r.RuleKinds.LIST_VALUE&&1===O||E===r.RuleKinds.OBJECT_FIELD&&2===O||E===r.RuleKinds.ARGUMENT&&2===O)return function(e,r,o,s){const l=(0,n.getNamedType)(r.inputType),c=a(o,s,e).filter(e=>e.detail===l.name);if(l instanceof n.GraphQLEnumType){const n=l.getValues();return(0,i.hintList)(e,n.map(e=>{var n;return{label:e.name,detail:String(l),documentation:null!==(n=e.description)&&void 0!==n?n:void 0,deprecated:Boolean(e.deprecationReason),isDeprecated:Boolean(e.deprecationReason),deprecationReason:e.deprecationReason,kind:t.CompletionItemKind.EnumMember,type:l}}).concat(c))}return l===n.GraphQLBoolean?(0,i.hintList)(e,c.concat([{label:"true",detail:String(n.GraphQLBoolean),documentation:"Not false.",kind:t.CompletionItemKind.Variable,type:n.GraphQLBoolean},{label:"false",detail:String(n.GraphQLBoolean),documentation:"Not true.",kind:t.CompletionItemKind.Variable,type:n.GraphQLBoolean}])):c}(b,_,d,e);if(E===r.RuleKinds.VARIABLE&&1===O){const t=(0,n.getNamedType)(_.inputType),r=a(d,e,b);return(0,i.hintList)(b,r.filter(e=>e.detail===(null==t?void 0:t.name)))}return E===r.RuleKinds.TYPE_CONDITION&&1===O||E===r.RuleKinds.NAMED_TYPE&&null!=T.prevState&&T.prevState.kind===r.RuleKinds.TYPE_CONDITION?function(e,r,o,a){let s;if(r.parentType)if((0,n.isAbstractType)(r.parentType)){const e=(0,n.assertAbstractType)(r.parentType),t=o.getPossibleTypes(e),a=Object.create(null);t.forEach(e=>{e.getInterfaces().forEach(e=>{a[e.name]=e})}),s=t.concat((0,i.objectValues)(a))}else s=[r.parentType];else{const e=o.getTypeMap();s=(0,i.objectValues)(e).filter(n.isCompositeType)}return(0,i.hintList)(e,s.map(e=>{const r=(0,n.getNamedType)(e);return{label:String(e),documentation:r&&r.description||"",kind:t.CompletionItemKind.Field}}))}(b,_,e):E===r.RuleKinds.FRAGMENT_SPREAD&&1===O?function(e,o,a,l,c){if(!l)return[];const u=a.getTypeMap(),f=(0,i.getDefinitionState)(e.state),d=s(l);c&&c.length>0&&d.push(...c);const p=d.filter(e=>u[e.typeCondition.name.value]&&!(f&&f.kind===r.RuleKinds.FRAGMENT_DEFINITION&&f.name===e.name.value)&&(0,n.isCompositeType)(o.parentType)&&(0,n.isCompositeType)(u[e.typeCondition.name.value])&&(0,n.doTypesOverlap)(a,o.parentType,u[e.typeCondition.name.value]));return(0,i.hintList)(e,p.map(e=>({label:e.name.value,detail:String(u[e.typeCondition.name.value]),documentation:`fragment ${e.name.value} on ${e.typeCondition.name.value}`,kind:t.CompletionItemKind.Field,type:u[e.typeCondition.name.value]})))}(b,_,e,d,Array.isArray(m)?m:(e=>{const t=[];return e&&(0,n.visit)((0,n.parse)(e),{FragmentDefinition(e){t.push(e)}}),t})(m)):E===r.RuleKinds.VARIABLE_DEFINITION&&2===O||E===r.RuleKinds.LIST_TYPE&&1===O||E===r.RuleKinds.NAMED_TYPE&&T.prevState&&(T.prevState.kind===r.RuleKinds.VARIABLE_DEFINITION||T.prevState.kind===r.RuleKinds.LIST_TYPE||T.prevState.kind===r.RuleKinds.NON_NULL_TYPE)?function(e,r,o){const a=r.getTypeMap(),s=(0,i.objectValues)(a).filter(n.isInputType);return(0,i.hintList)(e,s.map(e=>({label:e.name,documentation:e.description,kind:t.CompletionItemKind.Variable})))}(b,e):E===r.RuleKinds.DIRECTIVE?function(e,n,r,o){if(n.prevState&&n.prevState.kind){const o=r.getDirectives().filter(e=>u(n.prevState,e));return(0,i.hintList)(e,o.map(e=>({label:e.name,documentation:e.description||"",kind:t.CompletionItemKind.Function})))}return[]}(b,T,e):[]},e.getVariableCompletions=a,e.getFragmentDefinitions=s,e.getTokenAtPosition=l,e.runOnlineParser=c,e.canUseDirective=u,e.getTypeInfo=f,e.SuggestionCommand=void 0;const o={command:"editor.action.triggerSuggest",title:"Suggestions"};function a(e,n,o){let a,s=null;const l=Object.create({});return c(e,(e,i)=>{if((null==i?void 0:i.kind)===r.RuleKinds.VARIABLE&&i.name&&(s=i.name),(null==i?void 0:i.kind)===r.RuleKinds.NAMED_TYPE&&s){const e=((e,t)=>{var n,r,i,o,a,s,l,c,u,f;return(null===(n=e.prevState)||void 0===n?void 0:n.kind)===t?e.prevState:(null===(i=null===(r=e.prevState)||void 0===r?void 0:r.prevState)||void 0===i?void 0:i.kind)===t?e.prevState.prevState:(null===(s=null===(a=null===(o=e.prevState)||void 0===o?void 0:o.prevState)||void 0===a?void 0:a.prevState)||void 0===s?void 0:s.kind)===t?e.prevState.prevState.prevState:(null===(f=null===(u=null===(c=null===(l=e.prevState)||void 0===l?void 0:l.prevState)||void 0===c?void 0:c.prevState)||void 0===u?void 0:u.prevState)||void 0===f?void 0:f.kind)===t?e.prevState.prevState.prevState.prevState:void 0})(i,r.RuleKinds.TYPE);(null==e?void 0:e.type)&&(a=n.getType(null==e?void 0:e.type))}s&&a&&(l[s]||(l[s]={detail:a.toString(),insertText:"$"===o.string?s:"$"+s,label:s,type:a,kind:t.CompletionItemKind.Variable},s=null,a=null))}),(0,i.objectValues)(l)}function s(e){const t=[];return c(e,(e,i)=>{i.kind===r.RuleKinds.FRAGMENT_DEFINITION&&i.name&&i.type&&t.push({kind:r.RuleKinds.FRAGMENT_DEFINITION,name:{kind:n.Kind.NAME,value:i.name},selectionSet:{kind:r.RuleKinds.SELECTION_SET,selections:[]},typeCondition:{kind:r.RuleKinds.NAMED_TYPE,name:{kind:n.Kind.NAME,value:i.type}}})}),t}function l(e,t){let n=null,r=null,i=null;const o=c(e,(e,o,a,s)=>{if(s===t.line&&e.getCurrentPosition()>=t.character)return n=a,r=Object.assign({},o),i=e.current(),"BREAK"});return{start:o.start,end:o.end,string:i||o.string,state:r||o.state,style:n||o.style}}function c(e,t){const n=e.split("\n"),i=(0,r.onlineParser)();let o=i.startState(),a="",s=new r.CharacterStream("");for(let e=0;e{switch(t.kind){case r.RuleKinds.QUERY:case"ShortQuery":h=e.getQueryType();break;case r.RuleKinds.MUTATION:h=e.getMutationType();break;case r.RuleKinds.SUBSCRIPTION:h=e.getSubscriptionType();break;case r.RuleKinds.INLINE_FRAGMENT:case r.RuleKinds.FRAGMENT_DEFINITION:t.type&&(h=e.getType(t.type));break;case r.RuleKinds.FIELD:case r.RuleKinds.ALIASED_FIELD:h&&t.name?(c=p?(0,i.getFieldDef)(e,p,t.name):null,h=c?c.type:null):c=null;break;case r.RuleKinds.SELECTION_SET:p=(0,n.getNamedType)(h);break;case r.RuleKinds.DIRECTIVE:s=t.name?e.getDirective(t.name):null;break;case r.RuleKinds.INTERFACE_DEF:t.name&&(f=null,m=new n.GraphQLInterfaceType({name:t.name,interfaces:[],fields:{}}));break;case r.RuleKinds.OBJECT_TYPE_DEF:t.name&&(m=null,f=new n.GraphQLObjectType({name:t.name,interfaces:[],fields:{}}));break;case r.RuleKinds.ARGUMENTS:if(t.prevState)switch(t.prevState.kind){case r.RuleKinds.FIELD:a=c&&c.args;break;case r.RuleKinds.DIRECTIVE:a=s&&s.args;break;case r.RuleKinds.ALIASED_FIELD:{const n=t.prevState&&t.prevState.name;if(!n){a=null;break}const r=p?(0,i.getFieldDef)(e,p,n):null;if(!r){a=null;break}a=r.args;break}default:a=null}else a=null;break;case r.RuleKinds.ARGUMENT:if(a)for(let e=0;ee.value===t.name):null;break;case r.RuleKinds.LIST_VALUE:const v=(0,n.getNullableType)(u);u=v instanceof n.GraphQLList?v.ofType:null;break;case r.RuleKinds.OBJECT_VALUE:const y=(0,n.getNamedType)(u);d=y instanceof n.GraphQLInputObjectType?y.getFields():null;break;case r.RuleKinds.OBJECT_FIELD:const b=t.name&&d?d[t.name]:null;u=b&&b.type;break;case r.RuleKinds.NAMED_TYPE:t.name&&(h=e.getType(t.name))}}),{argDef:o,argDefs:a,directiveDef:s,enumValue:l,fieldDef:c,inputType:u,objectFieldDefs:d,parentType:p,type:h,interfaceDef:m,objectTypeDef:f}}e.SuggestionCommand=o})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(106),n(58),n(59),n(107),n(108)],void 0===(o="function"==typeof(r=function(e,t,n,r,i,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a={CharacterStream:!0,LexRules:!0,ParseRules:!0,isIgnored:!0,butNot:!0,list:!0,opt:!0,p:!0,t:!0,onlineParser:!0};function s(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(e,"CharacterStream",{enumerable:!0,get:function(){return t.default}}),Object.defineProperty(e,"LexRules",{enumerable:!0,get:function(){return n.LexRules}}),Object.defineProperty(e,"ParseRules",{enumerable:!0,get:function(){return n.ParseRules}}),Object.defineProperty(e,"isIgnored",{enumerable:!0,get:function(){return n.isIgnored}}),Object.defineProperty(e,"butNot",{enumerable:!0,get:function(){return r.butNot}}),Object.defineProperty(e,"list",{enumerable:!0,get:function(){return r.list}}),Object.defineProperty(e,"opt",{enumerable:!0,get:function(){return r.opt}}),Object.defineProperty(e,"p",{enumerable:!0,get:function(){return r.p}}),Object.defineProperty(e,"t",{enumerable:!0,get:function(){return r.t}}),Object.defineProperty(e,"onlineParser",{enumerable:!0,get:function(){return i.default}}),t=s(t),i=s(i),Object.keys(o).forEach((function(t){"default"!==t&&"__esModule"!==t&&(Object.prototype.hasOwnProperty.call(a,t)||t in e&&e[t]===o[t]||Object.defineProperty(e,t,{enumerable:!0,get:function(){return o[t]}}))}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=n(124)})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";function t(){this.__rules__=[],this.__cache__=null}t.prototype.__find__=function(e){for(var t=0;t=0&&(n=this.attrs[t][1]),n},t.prototype.attrJoin=function(e,t){var n=this.attrIndex(e);n<0?this.attrPush([e,t]):this.attrs[n][1]=this.attrs[n][1]+" "+t},e.exports=t})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(12),n(180),n(46)],void 0===(o="function"==typeof(r=function(e,t,r,i){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(e,i,o){let s,l;n(10).on(i,"select",(e,n)=>{if(!s){const e=n.parentNode;let t;s=document.createElement("div"),s.className="CodeMirror-hint-information",e.appendChild(s),l=document.createElement("div"),l.className="CodeMirror-hint-deprecation",e.appendChild(l),e.addEventListener("DOMNodeRemoved",t=n=>{n.target===e&&(e.removeEventListener("DOMNodeRemoved",t),s=null,l=null,t=null)})}const i=e.description?a.render(e.description):"Self descriptive.",c=e.type?''+function e(n){return n instanceof t.GraphQLNonNull?e(n.ofType)+"!":n instanceof t.GraphQLList?`[${e(n.ofType)}]`:`${(0,r.default)(n.name)}`}(e.type)+"":"";if(s.innerHTML='

'+("

"===i.slice(0,3)?"

"+c+i.slice(3):c+i)+"

",e&&l&&e.deprecationReason){const t=e.deprecationReason?a.render(e.deprecationReason):"";l.innerHTML='Deprecated'+t,l.style.display="block"}else l&&(l.style.display="none");o&&o(s)})},r=o(r);const a=new((i=o(i)).default)})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";!function(e){var t={pairs:"()[]{}''\"\"",closeBefore:")]}'\":;>",triples:"",explode:"[]{}"},n=e.Pos;function r(e,n){return"pairs"==n&&"string"==typeof e?e:"object"==typeof e&&null!=e[n]?e[n]:t[n]}e.defineOption("autoCloseBrackets",!1,(function(t,n,a){a&&a!=e.Init&&(t.removeKeyMap(i),t.state.closeBrackets=null),n&&(o(r(n,"pairs")),t.state.closeBrackets=n,t.addKeyMap(i))}));var i={Backspace:function(t){var i=s(t);if(!i||t.getOption("disableInput"))return e.Pass;for(var o=r(i,"pairs"),a=t.listSelections(),c=0;c=0;c--){var f=a[c].head;t.replaceRange("",n(f.line,f.ch-1),n(f.line,f.ch+1),"+delete")}},Enter:function(t){var n=s(t),i=n&&r(n,"explode");if(!i||t.getOption("disableInput"))return e.Pass;for(var o=t.listSelections(),a=0;a1&&d.indexOf(i)>=0&&t.getRange(n(b.line,b.ch-2),b)==i+i){if(b.ch>2&&/\bstring/.test(t.getTokenTypeAt(n(b.line,b.ch-2))))return e.Pass;v="addFour"}else if(p){var E=0==b.ch?" ":t.getRange(n(b.line,b.ch-1),b);if(e.isWordChar(T)||E==i||e.isWordChar(E))return e.Pass;v="both"}else{if(!m||!(0===T.length||/\s/.test(T)||f.indexOf(T)>-1))return e.Pass;v="both"}else v=p&&c(t,b)?"both":d.indexOf(i)>=0&&t.getRange(b,n(b.line,b.ch+3))==i+i+i?"skipThree":"skip";if(u){if(u!=v)return e.Pass}else u=v}var O=l%2?a.charAt(l-1):i,_=l%2?i:a.charAt(l+1);t.operation((function(){if("skip"==u)t.execCommand("goCharRight");else if("skipThree"==u)for(var r=0;r<3;r++)t.execCommand("goCharRight");else if("surround"==u){var i=t.getSelections();for(r=0;r0,{anchor:new n(o.anchor.line,o.anchor.ch+(a?-1:1)),head:new n(o.head.line,o.head.ch+(a?1:-1))});t.setSelections(i)}else"both"==u?(t.replaceSelection(O+_,null),t.triggerElectric(O+_),t.execCommand("goCharLeft")):"addFour"==u&&(t.replaceSelection(O+O+O+O,"before"),t.execCommand("goCharRight"));var o,a}))}(i,t)}}function s(e){var t=e.state.closeBrackets;return!t||t.override?t:e.getModeAt(e.getCursor()).closeBrackets||t}function l(e,t){var r=e.getRange(n(t.line,t.ch-1),n(t.line,t.ch+1));return 2==r.length?r:null}function c(e,t){var r=e.getTokenAt(n(t.line,t.ch+1));return/\bstring/.test(r.type)&&r.start==t.ch&&(0==t.ch||!/\bstring/.test(e.getTokenTypeAt(t)))}o(t.pairs+"`")}(n(10))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";!function(e){var t="CodeMirror-lint-markers";function n(e){e.parentNode&&e.parentNode.removeChild(e)}function r(t,r,i,o){var a=function(t,n,r){var i=document.createElement("div");function o(t){if(!i.parentNode)return e.off(document,"mousemove",o);i.style.top=Math.max(0,t.clientY-i.offsetHeight-5)+"px",i.style.left=t.clientX+5+"px"}return i.className="CodeMirror-lint-tooltip cm-s-"+t.options.theme,i.appendChild(r.cloneNode(!0)),t.state.lint.options.selfContain?t.getWrapperElement().appendChild(i):document.body.appendChild(i),e.on(document,"mousemove",o),o(n),null!=i.style.opacity&&(i.style.opacity=1),i}(t,r,i);function s(){var t;e.off(o,"mouseout",s),a&&((t=a).parentNode&&(null==t.style.opacity&&n(t),t.style.opacity=0,setTimeout((function(){n(t)}),600)),a=null)}var l=setInterval((function(){if(a)for(var e=o;;e=e.parentNode){if(e&&11==e.nodeType&&(e=e.host),e==document.body)return;if(!e){s();break}}if(!a)return clearInterval(l)}),400);e.on(o,"mouseout",s)}function i(e,t,n){this.marked=[],this.options=t,this.timeout=null,this.hasGutter=n,this.onMouseOver=function(t){!function(e,t){var n=t.target||t.srcElement;if(/\bCodeMirror-lint-mark-/.test(n.className)){for(var i=n.getBoundingClientRect(),o=(i.left+i.right)/2,a=(i.top+i.bottom)/2,l=e.findMarksAt(e.coordsChar({left:o,top:a},"client")),c=[],u=0;u1,l.options.tooltips))}}c.onUpdateLinting&&c.onUpdateLinting(n,u,e)}function u(e){var t=e.state.lint;t&&(clearTimeout(t.timeout),t.timeout=setTimeout((function(){l(e)}),t.options.delay||500))}e.defineOption("lint",!1,(function(n,r,a){if(a&&a!=e.Init&&(o(n),!1!==n.state.lint.options.lintOnChange&&n.off("change",u),e.off(n.getWrapperElement(),"mouseover",n.state.lint.onMouseOver),clearTimeout(n.state.lint.timeout),delete n.state.lint),r){for(var s=n.getOption("gutters"),c=!1,f=0;f120){const e=Math.floor(c/80),t=c%80,n=[];for(let e=0;e["|",e]),["|","^".padStart(t)],["|",n[e+1]]])}return u+a([[s-1+" |",f[i-1]],[s+" |",d],["|","^".padStart(c)],[s+1+" |",f[i+1]]])}function a(e){const t=e.filter(([e,t])=>void 0!==t),n=Math.max(...t.map(([e])=>e.length));return t.map(([e,t])=>e.padStart(n)+(t?" "+t:"")).join("\n")}},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(12),n(7)],void 0===(o="function"==typeof(r=function(e,t,n){"use strict";function r(e,t){const n=[];let r=e;for(;r&&r.kind;)n.push(r),r=r.prevState;for(let e=n.length-1;e>=0;e--)t(n[e])}function i(e,t){const n=e.filter(t);return 0===n.length?e:n}function o(e){return e.toLowerCase().replace(/\W/g,"")}function a(e,t){let n=function(e,t){let n,r;const i=[],o=e.length,a=t.length;for(n=0;n<=o;n++)i[n]=[n];for(r=1;r<=a;r++)i[0][r]=r;for(n=1;n<=o;n++)for(r=1;r<=a;r++){const o=e[n-1]===t[r-1]?0:1;i[n][r]=Math.min(i[n-1][r]+1,i[n][r-1]+1,i[n-1][r-1]+o),n>1&&r>1&&e[n-1]===t[r-2]&&e[n-2]===t[r-1]&&(i[n][r]=Math.min(i[n][r],i[n-2][r-2]+o))}return i[o][a]}(t,e);return e.length>t.length&&(n-=e.length-t.length-1,n+=0===e.indexOf(t)?0:.5),n}Object.defineProperty(e,"__esModule",{value:!0}),e.getDefinitionState=function(e){let t;return r(e,e=>{switch(e.kind){case"Query":case"ShortQuery":case"Mutation":case"Subscription":case"FragmentDefinition":t=e}}),t},e.getFieldDef=function(e,r,i){return i===n.SchemaMetaFieldDef.name&&e.getQueryType()===r?n.SchemaMetaFieldDef:i===n.TypeMetaFieldDef.name&&e.getQueryType()===r?n.TypeMetaFieldDef:i===n.TypeNameMetaFieldDef.name&&(0,t.isCompositeType)(r)?n.TypeNameMetaFieldDef:"getFields"in r?r.getFields()[i]:null},e.forEachState=r,e.objectValues=function(e){const t=Object.keys(e),n=t.length,r=new Array(n);for(let i=0;i({proximity:a(o(e.label),t),entry:e})),e=>e.proximity<=2),e=>!e.entry.isDeprecated).sort((e,t)=>(e.entry.isDeprecated?1:0)-(t.entry.isDeprecated?1:0)||e.proximity-t.proximity||e.entry.label.length-t.entry.label.length).map(e=>e.entry):i(e,e=>!e.isDeprecated)}(t,o(e.string))}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";var t,n,r,i,o,a,s,l,c,u,f,d,p,h,m,g,v,y,b,T;Object.defineProperty(e,"__esModule",{value:!0}),e.TextDocument=e.EOL=e.SelectionRange=e.DocumentLink=e.FormattingOptions=e.CodeLens=e.CodeAction=e.CodeActionContext=e.CodeActionKind=e.DocumentSymbol=e.SymbolInformation=e.SymbolTag=e.SymbolKind=e.DocumentHighlight=e.DocumentHighlightKind=e.SignatureInformation=e.ParameterInformation=e.Hover=e.MarkedString=e.CompletionList=e.CompletionItem=e.CompletionItemTag=e.InsertTextFormat=e.CompletionItemKind=e.MarkupContent=e.MarkupKind=e.TextDocumentItem=e.VersionedTextDocumentIdentifier=e.TextDocumentIdentifier=e.WorkspaceChange=e.WorkspaceEdit=e.DeleteFile=e.RenameFile=e.CreateFile=e.TextDocumentEdit=e.TextEdit=e.Command=e.Diagnostic=e.DiagnosticTag=e.DiagnosticSeverity=e.DiagnosticRelatedInformation=e.FoldingRange=e.FoldingRangeKind=e.ColorPresentation=e.ColorInformation=e.Color=e.LocationLink=e.Location=e.Range=e.Position=void 0,e.Position=t,function(e){e.create=function(e,t){return{line:e,character:t}},e.is=function(e){var t=e;return J.objectLiteral(t)&&J.number(t.line)&&J.number(t.character)}}(t||(e.Position=t={})),e.Range=n,function(e){e.create=function(e,n,r,i){if(J.number(e)&&J.number(n)&&J.number(r)&&J.number(i))return{start:t.create(e,n),end:t.create(r,i)};if(t.is(e)&&t.is(n))return{start:e,end:n};throw new Error("Range#create called with invalid arguments["+e+", "+n+", "+r+", "+i+"]")},e.is=function(e){var n=e;return J.objectLiteral(n)&&t.is(n.start)&&t.is(n.end)}}(n||(e.Range=n={})),e.Location=r,function(e){e.create=function(e,t){return{uri:e,range:t}},e.is=function(e){var t=e;return J.defined(t)&&n.is(t.range)&&(J.string(t.uri)||J.undefined(t.uri))}}(r||(e.Location=r={})),e.LocationLink=i,function(e){e.create=function(e,t,n,r){return{targetUri:e,targetRange:t,targetSelectionRange:n,originSelectionRange:r}},e.is=function(e){var t=e;return J.defined(t)&&n.is(t.targetRange)&&J.string(t.targetUri)&&(n.is(t.targetSelectionRange)||J.undefined(t.targetSelectionRange))&&(n.is(t.originSelectionRange)||J.undefined(t.originSelectionRange))}}(i||(e.LocationLink=i={})),e.Color=o,function(e){e.create=function(e,t,n,r){return{red:e,green:t,blue:n,alpha:r}},e.is=function(e){var t=e;return J.number(t.red)&&J.number(t.green)&&J.number(t.blue)&&J.number(t.alpha)}}(o||(e.Color=o={})),e.ColorInformation=a,function(e){e.create=function(e,t){return{range:e,color:t}},e.is=function(e){var t=e;return n.is(t.range)&&o.is(t.color)}}(a||(e.ColorInformation=a={})),e.ColorPresentation=s,function(e){e.create=function(e,t,n){return{label:e,textEdit:t,additionalTextEdits:n}},e.is=function(e){var t=e;return J.string(t.label)&&(J.undefined(t.textEdit)||m.is(t))&&(J.undefined(t.additionalTextEdits)||J.typedArray(t.additionalTextEdits,m.is))}}(s||(e.ColorPresentation=s={})),e.FoldingRangeKind=l,function(e){e.Comment="comment",e.Imports="imports",e.Region="region"}(l||(e.FoldingRangeKind=l={})),e.FoldingRange=c,function(e){e.create=function(e,t,n,r,i){var o={startLine:e,endLine:t};return J.defined(n)&&(o.startCharacter=n),J.defined(r)&&(o.endCharacter=r),J.defined(i)&&(o.kind=i),o},e.is=function(e){var t=e;return J.number(t.startLine)&&J.number(t.startLine)&&(J.undefined(t.startCharacter)||J.number(t.startCharacter))&&(J.undefined(t.endCharacter)||J.number(t.endCharacter))&&(J.undefined(t.kind)||J.string(t.kind))}}(c||(e.FoldingRange=c={})),e.DiagnosticRelatedInformation=u,function(e){e.create=function(e,t){return{location:e,message:t}},e.is=function(e){var t=e;return J.defined(t)&&r.is(t.location)&&J.string(t.message)}}(u||(e.DiagnosticRelatedInformation=u={})),e.DiagnosticSeverity=f,function(e){e.Error=1,e.Warning=2,e.Information=3,e.Hint=4}(f||(e.DiagnosticSeverity=f={})),e.DiagnosticTag=d,function(e){e.Unnecessary=1,e.Deprecated=2}(d||(e.DiagnosticTag=d={})),e.Diagnostic=p,function(e){e.create=function(e,t,n,r,i,o){var a={range:e,message:t};return J.defined(n)&&(a.severity=n),J.defined(r)&&(a.code=r),J.defined(i)&&(a.source=i),J.defined(o)&&(a.relatedInformation=o),a},e.is=function(e){var t=e;return J.defined(t)&&n.is(t.range)&&J.string(t.message)&&(J.number(t.severity)||J.undefined(t.severity))&&(J.number(t.code)||J.string(t.code)||J.undefined(t.code))&&(J.string(t.source)||J.undefined(t.source))&&(J.undefined(t.relatedInformation)||J.typedArray(t.relatedInformation,u.is))}}(p||(e.Diagnostic=p={})),e.Command=h,function(e){e.create=function(e,t){for(var n=[],r=2;r0&&(i.arguments=n),i},e.is=function(e){var t=e;return J.defined(t)&&J.string(t.title)&&J.string(t.command)}}(h||(e.Command=h={})),e.TextEdit=m,function(e){e.replace=function(e,t){return{range:e,newText:t}},e.insert=function(e,t){return{range:{start:e,end:e},newText:t}},e.del=function(e){return{range:e,newText:""}},e.is=function(e){var t=e;return J.objectLiteral(t)&&J.string(t.newText)&&n.is(t.range)}}(m||(e.TextEdit=m={})),e.TextDocumentEdit=g,function(e){e.create=function(e,t){return{textDocument:e,edits:t}},e.is=function(e){var t=e;return J.defined(t)&&O.is(t.textDocument)&&Array.isArray(t.edits)}}(g||(e.TextDocumentEdit=g={})),e.CreateFile=v,function(e){e.create=function(e,t){var n={kind:"create",uri:e};return void 0===t||void 0===t.overwrite&&void 0===t.ignoreIfExists||(n.options=t),n},e.is=function(e){var t=e;return t&&"create"===t.kind&&J.string(t.uri)&&(void 0===t.options||(void 0===t.options.overwrite||J.boolean(t.options.overwrite))&&(void 0===t.options.ignoreIfExists||J.boolean(t.options.ignoreIfExists)))}}(v||(e.CreateFile=v={})),e.RenameFile=y,function(e){e.create=function(e,t,n){var r={kind:"rename",oldUri:e,newUri:t};return void 0===n||void 0===n.overwrite&&void 0===n.ignoreIfExists||(r.options=n),r},e.is=function(e){var t=e;return t&&"rename"===t.kind&&J.string(t.oldUri)&&J.string(t.newUri)&&(void 0===t.options||(void 0===t.options.overwrite||J.boolean(t.options.overwrite))&&(void 0===t.options.ignoreIfExists||J.boolean(t.options.ignoreIfExists)))}}(y||(e.RenameFile=y={})),e.DeleteFile=b,function(e){e.create=function(e,t){var n={kind:"delete",uri:e};return void 0===t||void 0===t.recursive&&void 0===t.ignoreIfNotExists||(n.options=t),n},e.is=function(e){var t=e;return t&&"delete"===t.kind&&J.string(t.uri)&&(void 0===t.options||(void 0===t.options.recursive||J.boolean(t.options.recursive))&&(void 0===t.options.ignoreIfNotExists||J.boolean(t.options.ignoreIfNotExists)))}}(b||(e.DeleteFile=b={})),e.WorkspaceEdit=T,function(e){e.is=function(e){var t=e;return t&&(void 0!==t.changes||void 0!==t.documentChanges)&&(void 0===t.documentChanges||t.documentChanges.every((function(e){return J.string(e.kind)?v.is(e)||y.is(e)||b.is(e):g.is(e)})))}}(T||(e.WorkspaceEdit=T={}));var E,O,_,C,x,w,k,S,N,D,I,A,L,F,j,M,R,P,V,U,B,$,q,H,G,z,Q,K,W=function(){function e(e){this.edits=e}return e.prototype.insert=function(e,t){this.edits.push(m.insert(e,t))},e.prototype.replace=function(e,t){this.edits.push(m.replace(e,t))},e.prototype.delete=function(e){this.edits.push(m.del(e))},e.prototype.add=function(e){this.edits.push(e)},e.prototype.all=function(){return this.edits},e.prototype.clear=function(){this.edits.splice(0,this.edits.length)},e}(),Y=function(){function e(e){var t=this;this._textEditChanges=Object.create(null),e&&(this._workspaceEdit=e,e.documentChanges?e.documentChanges.forEach((function(e){if(g.is(e)){var n=new W(e.edits);t._textEditChanges[e.textDocument.uri]=n}})):e.changes&&Object.keys(e.changes).forEach((function(n){var r=new W(e.changes[n]);t._textEditChanges[n]=r})))}return Object.defineProperty(e.prototype,"edit",{get:function(){return this._workspaceEdit},enumerable:!0,configurable:!0}),e.prototype.getTextEditChange=function(e){if(O.is(e)){if(this._workspaceEdit||(this._workspaceEdit={documentChanges:[]}),!this._workspaceEdit.documentChanges)throw new Error("Workspace edit is not configured for document changes.");var t=e;if(!(r=this._textEditChanges[t.uri])){var n={textDocument:t,edits:i=[]};this._workspaceEdit.documentChanges.push(n),r=new W(i),this._textEditChanges[t.uri]=r}return r}if(this._workspaceEdit||(this._workspaceEdit={changes:Object.create(null)}),!this._workspaceEdit.changes)throw new Error("Workspace edit is not configured for normal text edit changes.");var r;if(!(r=this._textEditChanges[e])){var i=[];this._workspaceEdit.changes[e]=i,r=new W(i),this._textEditChanges[e]=r}return r},e.prototype.createFile=function(e,t){this.checkDocumentChanges(),this._workspaceEdit.documentChanges.push(v.create(e,t))},e.prototype.renameFile=function(e,t,n){this.checkDocumentChanges(),this._workspaceEdit.documentChanges.push(y.create(e,t,n))},e.prototype.deleteFile=function(e,t){this.checkDocumentChanges(),this._workspaceEdit.documentChanges.push(b.create(e,t))},e.prototype.checkDocumentChanges=function(){if(!this._workspaceEdit||!this._workspaceEdit.documentChanges)throw new Error("Workspace edit is not configured for document changes.")},e}();e.WorkspaceChange=Y,e.TextDocumentIdentifier=E,function(e){e.create=function(e){return{uri:e}},e.is=function(e){var t=e;return J.defined(t)&&J.string(t.uri)}}(E||(e.TextDocumentIdentifier=E={})),e.VersionedTextDocumentIdentifier=O,function(e){e.create=function(e,t){return{uri:e,version:t}},e.is=function(e){var t=e;return J.defined(t)&&J.string(t.uri)&&(null===t.version||J.number(t.version))}}(O||(e.VersionedTextDocumentIdentifier=O={})),e.TextDocumentItem=_,function(e){e.create=function(e,t,n,r){return{uri:e,languageId:t,version:n,text:r}},e.is=function(e){var t=e;return J.defined(t)&&J.string(t.uri)&&J.string(t.languageId)&&J.number(t.version)&&J.string(t.text)}}(_||(e.TextDocumentItem=_={})),e.MarkupKind=C,function(e){e.PlainText="plaintext",e.Markdown="markdown"}(C||(e.MarkupKind=C={})),function(e){e.is=function(t){var n=t;return n===e.PlainText||n===e.Markdown}}(C||(e.MarkupKind=C={})),e.MarkupContent=x,function(e){e.is=function(e){var t=e;return J.objectLiteral(e)&&C.is(t.kind)&&J.string(t.value)}}(x||(e.MarkupContent=x={})),e.CompletionItemKind=w,function(e){e.Text=1,e.Method=2,e.Function=3,e.Constructor=4,e.Field=5,e.Variable=6,e.Class=7,e.Interface=8,e.Module=9,e.Property=10,e.Unit=11,e.Value=12,e.Enum=13,e.Keyword=14,e.Snippet=15,e.Color=16,e.File=17,e.Reference=18,e.Folder=19,e.EnumMember=20,e.Constant=21,e.Struct=22,e.Event=23,e.Operator=24,e.TypeParameter=25}(w||(e.CompletionItemKind=w={})),e.InsertTextFormat=k,function(e){e.PlainText=1,e.Snippet=2}(k||(e.InsertTextFormat=k={})),e.CompletionItemTag=S,function(e){e.Deprecated=1}(S||(e.CompletionItemTag=S={})),e.CompletionItem=N,function(e){e.create=function(e){return{label:e}}}(N||(e.CompletionItem=N={})),e.CompletionList=D,function(e){e.create=function(e,t){return{items:e||[],isIncomplete:!!t}}}(D||(e.CompletionList=D={})),e.MarkedString=I,function(e){e.fromPlainText=function(e){return e.replace(/[\\`*_{}[\]()#+\-.!]/g,"\\$&")},e.is=function(e){var t=e;return J.string(t)||J.objectLiteral(t)&&J.string(t.language)&&J.string(t.value)}}(I||(e.MarkedString=I={})),e.Hover=A,function(e){e.is=function(e){var t=e;return!!t&&J.objectLiteral(t)&&(x.is(t.contents)||I.is(t.contents)||J.typedArray(t.contents,I.is))&&(void 0===e.range||n.is(e.range))}}(A||(e.Hover=A={})),e.ParameterInformation=L,function(e){e.create=function(e,t){return t?{label:e,documentation:t}:{label:e}}}(L||(e.ParameterInformation=L={})),e.SignatureInformation=F,function(e){e.create=function(e,t){for(var n=[],r=2;r=0;o--){var a=r[o],s=e.offsetAt(a.range.start),l=e.offsetAt(a.range.end);if(!(l<=i))throw new Error("Overlapping edit");n=n.substring(0,s)+a.newText+n.substring(l,n.length),i=s}return n}}(K||(e.TextDocument=K={}));var J,X=function(){function e(e,t,n,r){this._uri=e,this._languageId=t,this._version=n,this._content=r,this._lineOffsets=void 0}return Object.defineProperty(e.prototype,"uri",{get:function(){return this._uri},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"languageId",{get:function(){return this._languageId},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"version",{get:function(){return this._version},enumerable:!0,configurable:!0}),e.prototype.getText=function(e){if(e){var t=this.offsetAt(e.start),n=this.offsetAt(e.end);return this._content.substring(t,n)}return this._content},e.prototype.update=function(e,t){this._content=e.text,this._version=t,this._lineOffsets=void 0},e.prototype.getLineOffsets=function(){if(void 0===this._lineOffsets){for(var e=[],t=this._content,n=!0,r=0;r0&&e.push(t.length),this._lineOffsets=e}return this._lineOffsets},e.prototype.positionAt=function(e){e=Math.max(Math.min(e,this._content.length),0);var n=this.getLineOffsets(),r=0,i=n.length;if(0===i)return t.create(0,e);for(;re?i=o:r=o+1}var a=r-1;return t.create(a,e-n[a])},e.prototype.offsetAt=function(e){var t=this.getLineOffsets();if(e.line>=t.length)return this._content.length;if(e.line<0)return 0;var n=t[e.line],r=e.line+1" "===e||"\t"===e||","===e||"\n"===e||"\r"===e||"\ufeff"===e||" "===e,e.LexRules={Name:/^[_A-Za-z][_0-9A-Za-z]*/,Punctuation:/^(?:!|\$|\(|\)|\.\.\.|:|=|&|@|\[|]|\{|\||\})/,Number:/^-?(?:0|(?:[1-9][0-9]*))(?:\.[0-9]*)?(?:[eE][+-]?[0-9]+)?/,String:/^(?:"""(?:\\"""|[^"]|"[^"]|""[^"])*(?:""")?|"(?:[^"\\]|\\(?:"|\/|\\|b|f|n|r|t|u[0-9a-fA-F]{4}))*"?)/,Comment:/^#.*/};const r={Document:[(0,t.list)("Definition")],Definition(e){switch(e.value){case"{":return"ShortQuery";case"query":return"Query";case"mutation":return"Mutation";case"subscription":return"Subscription";case"fragment":return n.Kind.FRAGMENT_DEFINITION;case"schema":return"SchemaDef";case"scalar":return"ScalarDef";case"type":return"ObjectTypeDef";case"interface":return"InterfaceDef";case"union":return"UnionDef";case"enum":return"EnumDef";case"input":return"InputDef";case"extend":return"ExtendDef";case"directive":return"DirectiveDef"}},ShortQuery:["SelectionSet"],Query:[o("query"),(0,t.opt)(a("def")),(0,t.opt)("VariableDefinitions"),(0,t.list)("Directive"),"SelectionSet"],Mutation:[o("mutation"),(0,t.opt)(a("def")),(0,t.opt)("VariableDefinitions"),(0,t.list)("Directive"),"SelectionSet"],Subscription:[o("subscription"),(0,t.opt)(a("def")),(0,t.opt)("VariableDefinitions"),(0,t.list)("Directive"),"SelectionSet"],VariableDefinitions:[(0,t.p)("("),(0,t.list)("VariableDefinition"),(0,t.p)(")")],VariableDefinition:["Variable",(0,t.p)(":"),"Type",(0,t.opt)("DefaultValue")],Variable:[(0,t.p)("$","variable"),a("variable")],DefaultValue:[(0,t.p)("="),"Value"],SelectionSet:[(0,t.p)("{"),(0,t.list)("Selection"),(0,t.p)("}")],Selection:(e,t)=>"..."===e.value?t.match(/[\s\u00a0,]*(on\b|@|{)/,!1)?"InlineFragment":"FragmentSpread":t.match(/[\s\u00a0,]*:/,!1)?"AliasedField":"Field",AliasedField:[a("property"),(0,t.p)(":"),a("qualifier"),(0,t.opt)("Arguments"),(0,t.list)("Directive"),(0,t.opt)("SelectionSet")],Field:[a("property"),(0,t.opt)("Arguments"),(0,t.list)("Directive"),(0,t.opt)("SelectionSet")],Arguments:[(0,t.p)("("),(0,t.list)("Argument"),(0,t.p)(")")],Argument:[a("attribute"),(0,t.p)(":"),"Value"],FragmentSpread:[(0,t.p)("..."),a("def"),(0,t.list)("Directive")],InlineFragment:[(0,t.p)("..."),(0,t.opt)("TypeCondition"),(0,t.list)("Directive"),"SelectionSet"],FragmentDefinition:[o("fragment"),(0,t.opt)((0,t.butNot)(a("def"),[o("on")])),"TypeCondition",(0,t.list)("Directive"),"SelectionSet"],TypeCondition:[o("on"),"NamedType"],Value(e){switch(e.kind){case"Number":return"NumberValue";case"String":return"StringValue";case"Punctuation":switch(e.value){case"[":return"ListValue";case"{":return"ObjectValue";case"$":return"Variable";case"&":return"NamedType"}return null;case"Name":switch(e.value){case"true":case"false":return"BooleanValue"}return"null"===e.value?"NullValue":"EnumValue"}},NumberValue:[(0,t.t)("Number","number")],StringValue:[{style:"string",match:e=>"String"===e.kind,update(e,t){t.value.startsWith('"""')&&(e.inBlockstring=!t.value.slice(3).endsWith('"""'))}}],BooleanValue:[(0,t.t)("Name","builtin")],NullValue:[(0,t.t)("Name","keyword")],EnumValue:[a("string-2")],ListValue:[(0,t.p)("["),(0,t.list)("Value"),(0,t.p)("]")],ObjectValue:[(0,t.p)("{"),(0,t.list)("ObjectField"),(0,t.p)("}")],ObjectField:[a("attribute"),(0,t.p)(":"),"Value"],Type:e=>"["===e.value?"ListType":"NonNullType",ListType:[(0,t.p)("["),"Type",(0,t.p)("]"),(0,t.opt)((0,t.p)("!"))],NonNullType:["NamedType",(0,t.opt)((0,t.p)("!"))],NamedType:[(i="atom",{style:i,match:e=>"Name"===e.kind,update(e,t){e.prevState&&e.prevState.prevState&&(e.name=t.value,e.prevState.prevState.type=t.value)}})],Directive:[(0,t.p)("@","meta"),a("meta"),(0,t.opt)("Arguments")],DirectiveDef:[o("directive"),(0,t.p)("@","meta"),a("meta"),(0,t.opt)("ArgumentsDef"),o("on"),(0,t.list)("DirectiveLocation",(0,t.p)("|"))],InterfaceDef:[o("interface"),a("atom"),(0,t.opt)("Implements"),(0,t.list)("Directive"),(0,t.p)("{"),(0,t.list)("FieldDef"),(0,t.p)("}")],Implements:[o("implements"),(0,t.list)("NamedType",(0,t.p)("&"))],DirectiveLocation:[a("string-2")],SchemaDef:[o("schema"),(0,t.list)("Directive"),(0,t.p)("{"),(0,t.list)("OperationTypeDef"),(0,t.p)("}")],OperationTypeDef:[a("keyword"),(0,t.p)(":"),a("atom")],ScalarDef:[o("scalar"),a("atom"),(0,t.list)("Directive")],ObjectTypeDef:[o("type"),a("atom"),(0,t.opt)("Implements"),(0,t.list)("Directive"),(0,t.p)("{"),(0,t.list)("FieldDef"),(0,t.p)("}")],FieldDef:[a("property"),(0,t.opt)("ArgumentsDef"),(0,t.p)(":"),"Type",(0,t.list)("Directive")],ArgumentsDef:[(0,t.p)("("),(0,t.list)("InputValueDef"),(0,t.p)(")")],InputValueDef:[a("attribute"),(0,t.p)(":"),"Type",(0,t.opt)("DefaultValue"),(0,t.list)("Directive")],UnionDef:[o("union"),a("atom"),(0,t.list)("Directive"),(0,t.p)("="),(0,t.list)("UnionMember",(0,t.p)("|"))],UnionMember:["NamedType"],EnumDef:[o("enum"),a("atom"),(0,t.list)("Directive"),(0,t.p)("{"),(0,t.list)("EnumValueDef"),(0,t.p)("}")],EnumValueDef:[a("string-2"),(0,t.list)("Directive")],InputDef:[o("input"),a("atom"),(0,t.list)("Directive"),(0,t.p)("{"),(0,t.list)("InputValueDef"),(0,t.p)("}")],ExtendDef:[o("extend"),"ObjectTypeDef"]};var i;function o(e){return{style:"keyword",match:t=>"Name"===t.kind&&t.value===e}}function a(e){return{style:e,match:e=>"Name"===e.kind,update(e,t){e.name=t.value}}}e.ParseRules=r})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.opt=function(e){return{ofRule:e}},e.list=function(e,t){return{ofRule:e,isList:!0,separator:t}},e.butNot=function(e,t){const n=e.match;return e.match=e=>{let r=!1;return n&&(r=n(e)),r&&t.every(t=>t.match&&!t.match(e))},e},e.t=function(e,t){return{style:t,match:t=>t.kind===e}},e.p=function(e,t){return{style:t||"punctuation",match:t=>"Punctuation"===t.kind&&t.value===e}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(33)],void 0===(o="function"==typeof(r=function(e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getDefinitionQueryResultForNamedType=function(e,t,a){return n(this,void 0,void 0,(function*(){const n=t.name.value,s=a.filter(({definition:e})=>e.name&&e.name.value===n);if(0===s.length)throw Error("Definition not found for GraphQL type "+n);const l=s.map(({filePath:e,content:t,definition:n})=>function(e,t,n){const a=n.name;return r(a,"Expected ASTNode to have a Name."),{path:e,position:o(t,n),range:i(t,n),name:a.value||"",language:"GraphQL",projectRoot:e}}(e||"",t,n));return{definitions:l,queryRange:l.map(n=>i(e,t))}}))},e.getDefinitionQueryResultForFragmentSpread=function(e,t,r){return n(this,void 0,void 0,(function*(){const n=t.name.value,o=r.filter(({definition:e})=>e.name.value===n);if(0===o.length)throw Error("Definition not found for GraphQL fragment "+n);const s=o.map(({filePath:e,content:t,definition:n})=>a(e||"",t,n));return{definitions:s,queryRange:s.map(n=>i(e,t))}}))},e.getDefinitionQueryResultForDefinitionNode=function(e,t,n){return{definitions:[a(e,t,n)],queryRange:n.name?[i(t,n.name)]:[]}},e.LANGUAGE=void 0;var n=function(e,t,n,r){return new(n||(n=Promise))((function(i,o){function a(e){try{l(r.next(e))}catch(e){o(e)}}function s(e){try{l(r.throw(e))}catch(e){o(e)}}function l(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(a,s)}l((r=r.apply(e,t||[])).next())}))};function r(e,t){if(!e)throw new Error(t)}function i(e,n){const i=n.loc;return r(i,"Expected ASTNode to have a location."),(0,t.locToRange)(e,i)}function o(e,n){const i=n.loc;return r(i,"Expected ASTNode to have a location."),(0,t.offsetToPosition)(e,i.start)}function a(e,t,n){const r=n.name;if(!r)throw Error("Expected ASTNode to have a Name.");return{path:e,position:o(t,n),range:i(t,n),name:r.value||"",language:"GraphQL",projectRoot:e}}e.LANGUAGE="GraphQL"})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(12)],void 0===(o="function"==typeof(r=function(e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.collectVariables=function(e,n){const r=Object.create(null);return n.definitions.forEach(n=>{if("OperationDefinition"===n.kind){const i=n.variableDefinitions;i&&i.forEach(({variable:n,type:i})=>{const o=(0,t.typeFromAST)(e,i);o?r[n.name.value]=o:i.kind===t.Kind.NAMED_TYPE&&"Float"===i.name.value&&(r[n.name.value]=t.GraphQLFloat)})}}),r}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(12),n(45),n(33)],void 0===(o="function"==typeof(r=function(e,t,n,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getDiagnostics=function(e,n=null,r,i,a){let l=null;a&&(e+="string"==typeof a?"\n\n"+a:"\n\n"+a.reduce((e,n)=>e+=(0,t.print)(n)+"\n\n",""));try{l=(0,t.parse)(e)}catch(t){const n=u(t.locations[0],e);return[{severity:o.Error,message:t.message,source:"GraphQL: Syntax",range:n}]}return s(l,n,r,i)},e.validateQuery=s,e.getRange=u,e.DIAGNOSTIC_SEVERITY=e.SEVERITY=void 0;const i={Error:"Error",Warning:"Warning",Information:"Information",Hint:"Hint"};e.SEVERITY=i;const o={[i.Error]:1,[i.Warning]:2,[i.Information]:3,[i.Hint]:4};e.DIAGNOSTIC_SEVERITY=o;const a=(e,t)=>{if(!e)throw new Error(t)};function s(e,n=null,i,a){if(!n)return[];const s=l((0,r.validateWithCustomRules)(n,e,i,a),e=>c(e,o.Error,"Validation")),u=l((0,t.validate)(n,e,[t.NoDeprecatedCustomRule]),e=>c(e,o.Warning,"Deprecation"));return s.concat(u)}function l(e,t){return Array.prototype.concat.apply([],e.map(t))}function c(e,t,n){if(!e.nodes)return[];const i=[];return e.nodes.forEach(o=>{const s="Variable"!==o.kind&&"name"in o&&void 0!==o.name?o.name:"variable"in o&&void 0!==o.variable?o.variable:o;if(s){a(e.locations,"GraphQL validation error requires locations.");const o=e.locations[0],l=function(e){const t=e.loc;return a(t,"Expected ASTNode to have a location."),t}(s),c=o.column+(l.end-l.start);i.push({source:"GraphQL: "+n,message:e.message,severity:t,range:new r.Range(new r.Position(o.line-1,o.column-1),new r.Position(o.line-1,c))})}}),i}function u(e,t){const i=(0,n.onlineParser)(),o=i.startState(),s=t.split("\n");a(s.length>=e.line,"Query text must have more lines than where the error happened");let l=null;for(let t=0;t({representativeName:t.name,startPosition:(0,n.offsetToPosition)(e,t.loc.start),endPosition:(0,n.offsetToPosition)(e,t.loc.end),kind:t.kind,children:t.selectionSet||t.fields||t.values||t.arguments||[]});return{Field:e=>{const n=e.alias?[i("plain",e.alias),i("plain",": ")]:[];return n.push(i("plain",e.name)),Object.assign({tokenizedText:n},t(e))},OperationDefinition:e=>Object.assign({tokenizedText:[i("keyword",e.operation),i("whitespace"," "),i("class-name",e.name)]},t(e)),Document:e=>e.definitions,SelectionSet:e=>function(e,t){const n=[];for(let r=0;re.kind===r?e.selectionSet:e),Name:e=>e.value,FragmentDefinition:e=>Object.assign({tokenizedText:[i("keyword","fragment"),i("whitespace"," "),i("class-name",e.name)]},t(e)),InterfaceTypeDefinition:e=>Object.assign({tokenizedText:[i("keyword","interface"),i("whitespace"," "),i("class-name",e.name)]},t(e)),EnumTypeDefinition:e=>Object.assign({tokenizedText:[i("keyword","enum"),i("whitespace"," "),i("class-name",e.name)]},t(e)),EnumValueDefinition:e=>Object.assign({tokenizedText:[i("plain",e.name)]},t(e)),ObjectTypeDefinition:e=>Object.assign({tokenizedText:[i("keyword","type"),i("whitespace"," "),i("class-name",e.name)]},t(e)),InputObjectTypeDefinition:e=>Object.assign({tokenizedText:[i("keyword","input"),i("whitespace"," "),i("class-name",e.name)]},t(e)),FragmentSpread:e=>Object.assign({tokenizedText:[i("plain","..."),i("class-name",e.name)]},t(e)),InputValueDefinition:e=>Object.assign({tokenizedText:[i("plain",e.name)]},t(e)),FieldDefinition:e=>Object.assign({tokenizedText:[i("plain",e.name)]},t(e)),InlineFragment:e=>e.selectionSet}}(e);return{outlineTrees:(0,t.visit)(o,{leave:e=>void 0!==a&&e.kind in a?a[e.kind](e):null})}};const{INLINE_FRAGMENT:r}=t.Kind;function i(e,t){return{kind:e,value:t}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(12),n(44)],void 0===(o="function"==typeof(r=function(e,t,n){"use strict";function r(e,t){t.useMarkdown&&u(e,"```graphql\n")}function i(e,t){t.useMarkdown&&u(e,"\n```")}function o(e,t,n){if(!t.fieldDef)return;const r=t.fieldDef.name;"__"!==r.slice(0,2)&&(l(e,t,n,t.parentType),u(e,".")),u(e,r)}function a(e,t,n){t.directiveDef&&u(e,"@"+t.directiveDef.name)}function s(e,t,n,r){u(e,": "),l(e,t,n,r)}function l(e,n,r,i){i&&(i instanceof t.GraphQLNonNull?(l(e,n,r,i.ofType),u(e,"!")):i instanceof t.GraphQLList?(u(e,"["),l(e,n,r,i.ofType),u(e,"]")):u(e,i.name))}function c(e,t,n){if(!n)return;const r="string"==typeof n.description?n.description:null;r&&(u(e,"\n\n"),u(e,r)),function(e,t,n){if(!n)return;const r=n.deprecationReason?n.deprecationReason:null;r&&(u(e,"\n\n"),u(e,"Deprecated: "),u(e,r))}(e,0,n)}function u(e,t){e.push(t)}Object.defineProperty(e,"__esModule",{value:!0}),e.getHoverInformation=function(e,t,f,d,p){const h=d||(0,n.getTokenAtPosition)(t,f);if(!e||!h||!h.state)return"";const m=h.state,g=m.kind,v=m.step,y=(0,n.getTypeInfo)(e,h.state),b=Object.assign(Object.assign({},p),{schema:e});if("Field"===g&&0===v&&y.fieldDef||"AliasedField"===g&&2===v&&y.fieldDef){const e=[];return r(e,b),function(e,t,n){o(e,t,n),s(e,t,n,t.type)}(e,y,b),i(e,b),c(e,0,y.fieldDef),e.join("").trim()}if("Directive"===g&&1===v&&y.directiveDef){const e=[];return r(e,b),a(e,y),i(e,b),c(e,0,y.directiveDef),e.join("").trim()}if("Argument"===g&&0===v&&y.argDef){const e=[];return r(e,b),function(e,t,n){if(t.directiveDef?a(e,t):t.fieldDef&&o(e,t,n),!t.argDef)return;const r=t.argDef.name;u(e,"("),u(e,r),s(e,t,n,t.inputType),u(e,")")}(e,y,b),i(e,b),c(e,0,y.argDef),e.join("").trim()}if("EnumValue"===g&&y.enumValue&&"description"in y.enumValue){const e=[];return r(e,b),function(e,t,n){if(!t.enumValue)return;const r=t.enumValue.name;l(e,t,n,t.inputType),u(e,"."),u(e,r)}(e,y,b),i(e,b),c(e,0,y.enumValue),e.join("").trim()}if("NamedType"===g&&y.type&&"description"in y.type){const e=[];return r(e,b),l(e,y,b,y.type),i(e,b),c(e,0,y.type),e.join("").trim()}return""}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=n(125)})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports.encode=n(126),e.exports.decode=n(127),e.exports.format=n(128),e.exports.parse=n(129)})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=/[\0-\x1F\x7F-\x9F]/})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t="<[A-Za-z][A-Za-z0-9\\-]*(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^\"'=<>`\\x00-\\x20]+|'[^']*'|\"[^\"]*\"))?)*\\s*\\/?>",n="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",r=new RegExp("^(?:"+t+"|"+n+"|\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e|<[?][\\s\\S]*?[?]>|]*>|)"),i=new RegExp("^(?:"+t+"|"+n+")");e.exports.HTML_TAG_RE=r,e.exports.HTML_OPEN_CLOSE_TAG_RE=i})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";function t(e,t){var n,r,i,o,a,s=[],l=t.length;for(n=0;n=0;n--)95!==(r=t[n]).marker&&42!==r.marker||-1!==r.end&&(i=t[r.end],s=n>0&&t[n-1].end===r.end+1&&t[n-1].token===r.token-1&&t[r.end+1].token===i.token+1&&t[n-1].marker===r.marker,a=String.fromCharCode(r.marker),(o=e.tokens[r.token]).type=s?"strong_open":"em_open",o.tag=s?"strong":"em",o.nesting=1,o.markup=s?a+a:a,o.content="",(o=e.tokens[i.token]).type=s?"strong_close":"em_close",o.tag=s?"strong":"em",o.nesting=-1,o.markup=s?a+a:a,o.content="",s&&(e.tokens[t[n-1].token].content="",e.tokens[t[r.end+1].token].content="",n--))}e.exports.tokenize=function(e,t){var n,r,i=e.pos,o=e.src.charCodeAt(i);if(t)return!1;if(95!==o&&42!==o)return!1;for(r=e.scanDelims(e.pos,42===o),n=0;nt.cursorCoords(n,"window").top&&((p=r).style.opacity=.4)})))};!function(e,t,n,r,i){e.openDialog(t,r,{value:n,selectValueOnOpen:!0,closeOnEnter:!1,onClose:function(){f(e)},onKeyDown:i})}(t,d(t),c,h,(function(r,i){var o=e.keyName(r),a=t.getOption("extraKeys"),s=a&&a[o]||e.keyMap[t.getOption("keyMap")][o];"findNext"==s||"findPrev"==s||"findPersistentNext"==s||"findPersistentPrev"==s?(e.e_stop(r),l(t,n(t),i),t.execCommand(s)):"find"!=s&&"findPersistent"!=s||(e.e_stop(r),h(i,r))})),a&&c&&(l(t,s,c),u(t,r))}else o(t,d(t),"Search for:",c,(function(e){e&&!s.query&&t.operation((function(){l(t,s,e),s.posFrom=s.posTo=t.getCursor(),u(t,r)}))}))}function u(t,r,o){t.operation((function(){var a=n(t),s=i(t,a.query,r?a.posFrom:a.posTo);(s.find(r)||(s=i(t,a.query,r?e.Pos(t.lastLine()):e.Pos(t.firstLine(),0))).find(r))&&(t.setSelection(s.from(),s.to()),t.scrollIntoView({from:s.from(),to:s.to()},20),a.posFrom=s.from(),a.posTo=s.to(),o&&o(s.from(),s.to()))}))}function f(e){e.operation((function(){var t=n(e);t.lastQuery=t.query,t.query&&(t.query=t.queryText=null,e.removeOverlay(t.overlay),t.annotate&&(t.annotate.clear(),t.annotate=null))}))}function d(e){return''+e.phrase("Search:")+' '+e.phrase("(Use /re/ syntax for regexp search)")+""}function p(e,t,n){e.operation((function(){for(var r=i(e,t);r.findNext();)if("string"!=typeof t){var o=e.getRange(r.from(),r.to()).match(t);r.replace(n.replace(/\$(\d)/g,(function(e,t){return o[t]})))}else r.replace(n)}))}function h(e,t){if(!e.getOption("readOnly")){var r=e.getSelection()||n(e).lastQuery,l=''+(t?e.phrase("Replace all:"):e.phrase("Replace:"))+"";o(e,l+function(e){return' '+e.phrase("(Use /re/ syntax for regexp search)")+""}(e),l,r,(function(n){n&&(n=s(n),o(e,function(e){return''+e.phrase("With:")+' '}(e),e.phrase("Replace with:"),"",(function(r){if(r=a(r),t)p(e,n,r);else{f(e);var o=i(e,n,e.getCursor("from")),s=function(){var t,a=o.from();!(t=o.findNext())&&(o=i(e,n),!(t=o.findNext())||a&&o.from().line==a.line&&o.from().ch==a.ch)||(e.setSelection(o.from(),o.to()),e.scrollIntoView({from:o.from(),to:o.to()}),function(e,t,n,r){e.openConfirm?e.openConfirm(t,r):confirm(n)&&r[0]()}(e,function(e){return''+e.phrase("Replace?")+" "}(e),e.phrase("Replace?"),[function(){l(t)},s,function(){p(e,n,r)}]))},l=function(e){o.replace("string"==typeof n?r:r.replace(/\$(\d)/g,(function(t,n){return e[n]}))),s()};s()}})))}))}}e.commands.find=function(e){f(e),c(e)},e.commands.findPersistent=function(e){f(e),c(e,!1,!0)},e.commands.findPersistentNext=function(e){c(e,!1,!0,!0)},e.commands.findPersistentPrev=function(e){c(e,!0,!0,!0)},e.commands.findNext=c,e.commands.findPrev=function(e){c(e,!0)},e.commands.clearSearch=f,e.commands.replace=h,e.commands.replaceAll=function(e){h(e,!0)}}(n(10),n(29),n(30))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=n(12),i=n(7),o=e(n(75));function a(e,t,n){return n===i.SchemaMetaFieldDef.name&&e.getQueryType()===t?i.SchemaMetaFieldDef:n===i.TypeMetaFieldDef.name&&e.getQueryType()===t?i.TypeMetaFieldDef:n===i.TypeNameMetaFieldDef.name&&r.isCompositeType(t)?i.TypeNameMetaFieldDef:t&&t.getFields?t.getFields()[n]:void 0}t.default=function(e,t){var n={schema:e,type:null,parentType:null,inputType:null,directiveDef:null,fieldDef:null,argDef:null,argDefs:null,objectFieldDefs:null};return o.default(t,(function(t){switch(t.kind){case"Query":case"ShortQuery":n.type=e.getQueryType();break;case"Mutation":n.type=e.getMutationType();break;case"Subscription":n.type=e.getSubscriptionType();break;case"InlineFragment":case"FragmentDefinition":t.type&&(n.type=e.getType(t.type));break;case"Field":case"AliasedField":n.fieldDef=n.type&&t.name?a(e,n.parentType,t.name):null,n.type=n.fieldDef&&n.fieldDef.type;break;case"SelectionSet":n.parentType=n.type?r.getNamedType(n.type):null;break;case"Directive":n.directiveDef=t.name?e.getDirective(t.name):null;break;case"Arguments":var i=t.prevState?"Field"===t.prevState.kind?n.fieldDef:"Directive"===t.prevState.kind?n.directiveDef:"AliasedField"===t.prevState.kind?t.prevState.name&&a(e,n.parentType,t.prevState.name):null:null;n.argDefs=i?i.args:null;break;case"Argument":if(n.argDef=null,n.argDefs)for(var o=0;o=0;i--)t(n[i])}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getTypeReference=t.getEnumValueReference=t.getArgumentReference=t.getDirectiveReference=t.getFieldReference=void 0;var e=n(12);function r(e){return"__"===e.name.slice(0,2)}t.getFieldReference=function(e){return{kind:"Field",schema:e.schema,field:e.fieldDef,type:r(e.fieldDef)?null:e.parentType}},t.getDirectiveReference=function(e){return{kind:"Directive",schema:e.schema,directive:e.directiveDef}},t.getArgumentReference=function(e){return e.directiveDef?{kind:"Argument",schema:e.schema,argument:e.argDef,directive:e.directiveDef}:{kind:"Argument",schema:e.schema,argument:e.argDef,field:e.fieldDef,type:r(e.fieldDef)?null:e.parentType}},t.getEnumValueReference=function(t){return{kind:"EnumValue",value:t.enumValue||void 0,type:t.inputType?e.getNamedType(t.inputType):void 0}},t.getTypeReference=function(e,t){return{kind:"Type",schema:e.schema,type:t||e.type}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=e(n(10));function i(e,t){var n=e.state.info,i=t.target||t.srcElement;if(i instanceof HTMLElement&&"SPAN"===i.nodeName&&void 0===n.hoverTimeout){var o=i.getBoundingClientRect(),a=function(){clearTimeout(n.hoverTimeout),n.hoverTimeout=setTimeout(l,c)},s=function(){r.default.off(document,"mousemove",a),r.default.off(e.getWrapperElement(),"mouseout",s),clearTimeout(n.hoverTimeout),n.hoverTimeout=void 0},l=function(){r.default.off(document,"mousemove",a),r.default.off(e.getWrapperElement(),"mouseout",s),n.hoverTimeout=void 0,function(e,t){var n=e.coordsChar({left:(t.left+t.right)/2,top:(t.top+t.bottom)/2}),i=e.state.info.options,o=i.render||e.getHelper(n,"info");if(o){var a=e.getTokenAt(n,!0);if(a){var s=o(a,i,e,n);s&&function(e,t,n){var i=document.createElement("div");i.className="CodeMirror-info",i.appendChild(n),document.body.appendChild(i);var o=i.getBoundingClientRect(),a=window.getComputedStyle(i),s=o.right-o.left+parseFloat(a.marginLeft)+parseFloat(a.marginRight),l=o.bottom-o.top+parseFloat(a.marginTop)+parseFloat(a.marginBottom),c=t.bottom;l>window.innerHeight-t.bottom-15&&t.top>window.innerHeight-t.bottom&&(c=t.top-l),c<0&&(c=t.bottom);var u,f=Math.max(0,window.innerWidth-s-15);f>t.left&&(f=t.left),i.style.opacity="1",i.style.top=c+"px",i.style.left=f+"px";var d=function(){clearTimeout(u)},p=function(){clearTimeout(u),u=setTimeout(h,200)},h=function(){r.default.off(i,"mouseover",d),r.default.off(i,"mouseout",p),r.default.off(e.getWrapperElement(),"mouseout",p),i.style.opacity?(i.style.opacity="0",setTimeout((function(){i.parentNode&&i.parentNode.removeChild(i)}),600)):i.parentNode&&i.parentNode.removeChild(i)};r.default.on(i,"mouseover",d),r.default.on(i,"mouseout",p),r.default.on(e.getWrapperElement(),"mouseout",p)}(e,t,s)}}}(e,o)},c=function(e){var t=e.state.info.options;return t&&t.hoverTime||500}(e);n.hoverTimeout=setTimeout(l,c),r.default.on(document,"mousemove",a),r.default.on(e.getWrapperElement(),"mouseout",s)}}r.default.defineOption("info",!1,(function(e,t,n){if(n&&n!==r.default.Init){var o=e.state.info.onMouseOver;r.default.off(e.getWrapperElement(),"mouseover",o),clearTimeout(e.state.info.hoverTimeout),delete e.state.info}if(t){var a=e.state.info=function(e){return{options:e instanceof Function?{render:e}:!0===e?{}:e}}(t);a.onMouseOver=i.bind(null,e),r.default.on(e.getWrapperElement(),"mouseover",a.onMouseOver)}}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(12)],void 0===(o="function"==typeof(r=function(e,t,n){"use strict";var r;Object.defineProperty(e,"__esModule",{value:!0}),e.default=function({field:e}){return"defaultValue"in e&&void 0!==e.defaultValue?t.default.createElement("span",null," = ",t.default.createElement("span",{className:"arg-default-value"},(r=(0,n.astFromValue)(e.defaultValue,e.type))?(0,n.print)(r):"")):null;var r},t=(r=t)&&r.__esModule?r:{default:r}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(e,t){let n;return function(...r){n&&window.clearTimeout(n),n=window.setTimeout(()=>{n=null,t.apply(this,r)},e)}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(211),n(12)],void 0===(o="function"==typeof(r=function(e,t,n){"use strict";function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var i;Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,t=(i=t)&&i.__esModule?i:{default:i},e.default=class{constructor(e,i){this.storage=e,this.maxHistoryLength=i,r(this,"queries",void 0),r(this,"history",void 0),r(this,"favorite",void 0),r(this,"shouldSaveQuery",(e,t,r,i)=>{if(!e)return!1;try{(0,n.parse)(e)}catch(e){return!1}if(e.length>1e5)return!1;if(!i)return!0;if(JSON.stringify(e)===JSON.stringify(i.query)){if(JSON.stringify(t)===JSON.stringify(i.variables)){if(JSON.stringify(r)===JSON.stringify(i.headers))return!1;if(r&&!i.headers)return!1}if(t&&!i.variables)return!1}return!0}),r(this,"fetchAllQueries",()=>{const e=this.history.fetchAll(),t=this.favorite.fetchAll();return e.concat(t)}),r(this,"updateHistory",(e,t,n,r)=>{if(this.shouldSaveQuery(e,t,n,this.history.fetchRecent())){this.history.push({query:e,variables:t,headers:n,operationName:r});const i=this.history.items,o=this.favorite.items;this.queries=i.concat(o)}}),r(this,"toggleFavorite",(e,t,n,r,i,o)=>{const a={query:e,variables:t,headers:n,operationName:r,label:i};this.favorite.contains(a)?o&&(a.favorite=!1,this.favorite.delete(a)):(a.favorite=!0,this.favorite.push(a)),this.queries=[...this.history.items,...this.favorite.items]}),r(this,"editLabel",(e,t,n,r,i,o)=>{const a={query:e,variables:t,headers:n,operationName:r,label:i};o?this.favorite.edit({...a,favorite:o}):this.history.edit(a),this.queries=[...this.history.items,...this.favorite.items]}),this.history=new t.default("queries",this.storage,this.maxHistoryLength),this.favorite=new t.default("favorites",this.storage,null),this.queries=this.fetchAllQueries()}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){"use strict";n.d(t,"a",(function(){return s}));var r=n(3),i=n(8),o=n(23),a=n(1);function s(e,t){switch(e.kind){case a.a.NULL:return null;case a.a.INT:return parseInt(e.value,10);case a.a.FLOAT:return parseFloat(e.value);case a.a.STRING:case a.a.ENUM:case a.a.BOOLEAN:return e.value;case a.a.LIST:return e.values.map(e=>s(e,t));case a.a.OBJECT:return Object(o.a)(e.fields,e=>e.name.value,e=>s(e.value,t));case a.a.VARIABLE:return null==t?void 0:t[e.name.value]}Object(i.a)(!1,"Unexpected value node: "+Object(r.a)(e))}},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(83),n(84),n(92),n(93),n(94),n(95),n(96),n(97),n(98),n(99),n(100),n(101),n(102)],void 0===(o="function"==typeof(r=function(e,t,n,r,i,o,a,s,l,c,u,f,d,p){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,p.GraphiQL.createFetcher=n.createGraphiQLFetcher;var h=p.GraphiQL;e.default=h})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=function(e){var t=Object.prototype,n=t.hasOwnProperty,r="function"==typeof Symbol?Symbol:{},i=r.iterator||"@@iterator",o=r.asyncIterator||"@@asyncIterator",a=r.toStringTag||"@@toStringTag";function s(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,n){return e[t]=n}}function l(e,t,n,r){var i=t&&t.prototype instanceof f?t:f,o=Object.create(i.prototype),a=new _(r||[]);return o._invoke=function(e,t,n){var r="suspendedStart";return function(i,o){if("executing"===r)throw new Error("Generator is already running");if("completed"===r){if("throw"===i)throw o;return{value:void 0,done:!0}}for(n.method=i,n.arg=o;;){var a=n.delegate;if(a){var s=T(a,n);if(s){if(s===u)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===r)throw r="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r="executing";var l=c(e,t,n);if("normal"===l.type){if(r=n.done?"completed":"suspendedYield",l.arg===u)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r="completed",n.method="throw",n.arg=l.arg)}}}(e,n,a),o}function c(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var u={};function f(){}function d(){}function p(){}var h={};h[i]=function(){return this};var m=Object.getPrototypeOf,g=m&&m(m(C([])));g&&g!==t&&n.call(g,i)&&(h=g);var v=p.prototype=f.prototype=Object.create(h);function y(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function b(e,t){var r;this._invoke=function(i,o){function a(){return new t((function(r,a){!function r(i,o,a,s){var l=c(e[i],e,o);if("throw"!==l.type){var u=l.arg,f=u.value;return f&&"object"==typeof f&&n.call(f,"__await")?t.resolve(f.__await).then((function(e){r("next",e,a,s)}),(function(e){r("throw",e,a,s)})):t.resolve(f).then((function(e){u.value=e,a(u)}),(function(e){return r("throw",e,a,s)}))}s(l.arg)}(i,o,r,a)}))}return r=r?r.then(a,a):a()}}function T(e,t){var n=e.iterator[t.method];if(void 0===n){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=void 0,T(e,t),"throw"===t.method))return u;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return u}var r=c(n,e.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,u;var i=r.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,u):i:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,u)}function E(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 O(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function _(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(E,this),this.reset(!0)}function C(e){if(e){var t=e[i];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,o=function t(){for(;++r=0;--i){var o=this.tryEntries[i],a=o.completion;if("root"===o.tryLoc)return r("end");if(o.tryLoc<=this.prev){var s=n.call(o,"catchLoc"),l=n.call(o,"finallyLoc");if(s&&l){if(this.prev=0;--r){var i=this.tryEntries[r];if(i.tryLoc<=this.prev&&n.call(i,"finallyLoc")&&this.prev=0;--t){var n=this.tryEntries[t];if(n.finallyLoc===e)return this.complete(n.completion,n.afterLoc),O(n),u}},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 i=r.arg;O(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,n){return this.delegate={iterator:C(e),resultName:t,nextLoc:n},"next"===this.method&&(this.arg=void 0),u}},e}(e.exports);try{regeneratorRuntime=t}catch(e){Function("r","regeneratorRuntime = r")(t)}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(85)],void 0===(o="function"==typeof(r=function(e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),Object.keys(t).forEach((function(n){"default"!==n&&"__esModule"!==n&&(n in e&&e[n]===t[n]||Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[n]}}))}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(86),n(87)],void 0===(o="function"==typeof(r=function(e,t,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r={createGraphiQLFetcher:!0};Object.defineProperty(e,"createGraphiQLFetcher",{enumerable:!0,get:function(){return n.createGraphiQLFetcher}}),Object.keys(t).forEach((function(n){"default"!==n&&"__esModule"!==n&&(Object.prototype.hasOwnProperty.call(r,n)||n in e&&e[n]===t[n]||Object.defineProperty(e,n,{enumerable:!0,get:function(){return t[n]}}))}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0})})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(88)],void 0===(o="function"==typeof(r=function(e,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.createGraphiQLFetcher=function(e){let n;if(null!==typeof window&&(null===window||void 0===window?void 0:window.fetch)&&(n=window.fetch),null!==(null==e?void 0:e.enableIncrementalDelivery)&&!1===e.enableIncrementalDelivery||(e.enableIncrementalDelivery=!0),e.fetch&&(n=e.fetch),!n)throw Error("No valid fetcher implementation available");const r=(0,t.createSimpleFetcher)(e,n),i=(0,t.getWsFetcher)(e),o=e.enableIncrementalDelivery?(0,t.createMultipartFetcher)(e,n):r;return(n,a)=>{if("IntrospectionQuery"===n.operationName)return(e.schemaFetcher||r)(n,a);if((0,t.isSubscriptionWithName)(null==a?void 0:a.documentAST,n.operationName)){if(!i)throw Error("Your GraphiQL createFetcher is not properly configured for websocket subscriptions yet. "+(e.subscriptionUrl?`Provided URL ${e.subscriptionUrl} failed`:"Please provide subscriptionUrl, wsClient or legacyClient option first."));return i(n)}return o(n,a)}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(12),n(89),n(90),n(91)],void 0===(o="function"==typeof(r=function(e,t,n,r,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getWsFetcher=e.createMultipartFetcher=e.createLegacyWebsocketsFetcher=e.createWebsocketsFetcherFromClient=e.createWebsocketsFetcherFromUrl=e.createSimpleFetcher=e.isSubscriptionWithName=void 0;var o=function(e,t,n,r){return new(n||(n=Promise))((function(i,o){function a(e){try{l(r.next(e))}catch(e){o(e)}}function s(e){try{l(r.throw(e))}catch(e){o(e)}}function l(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(a,s)}l((r=r.apply(e,t||[])).next())}))},a=function(e){return this instanceof a?(this.v=e,this):new a(e)},s=function(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"==typeof __values?__values(e):e[Symbol.iterator](),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,i){!function(e,t,n,r){Promise.resolve(r).then((function(t){e({value:t,done:n})}),t)}(r,i,(t=e[n](t)).done,t.value)}))}}},l=function(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,i=n.apply(e,t||[]),o=[];return r={},s("next"),s("throw"),s("return"),r[Symbol.asyncIterator]=function(){return this},r;function s(e){i[e]&&(r[e]=function(t){return new Promise((function(n,r){o.push([e,t,n,r])>1||l(e,t)}))})}function l(e,t){try{(n=i[e](t)).value instanceof a?Promise.resolve(n.value.v).then(c,u):f(o[0][2],n)}catch(e){f(o[0][3],e)}var n}function c(e){l("next",e)}function u(e){l("throw",e)}function f(e,t){e(t),o.shift(),o.length&&l(o[0][0],o[0][1])}};e.isSubscriptionWithName=(e,n)=>{let r=!1;return(0,t.visit)(e,{OperationDefinition(e){var t;n===(null===(t=e.name)||void 0===t?void 0:t.value)&&"subscription"===e.operation&&(r=!0)}}),r},e.createSimpleFetcher=(e,t)=>(n,r)=>o(void 0,void 0,void 0,(function*(){return(yield t(e.url,{method:"POST",body:JSON.stringify(n),headers:Object.assign(Object.assign({"content-type":"application/json"},e.headers),null==r?void 0:r.headers)})).json()}));const c=(e,t)=>{let n;try{return n=(0,r.createClient)({url:e,connectionParams:t}),u(n)}catch(t){console.error(`Error creating websocket client for:\n${e}\n\n${t}`)}};e.createWebsocketsFetcherFromUrl=c;const u=e=>t=>(0,i.makeAsyncIterableIteratorFromSink)(n=>e.subscribe(t,Object.assign(Object.assign({},n),{error:e=>{e instanceof Error?n.error(e):e instanceof CloseEvent?n.error(new Error(`Socket closed with event ${e.code} ${e.reason||""}`.trim())):n.error(new Error(e.map(({message:e})=>e).join(", ")))}})));e.createWebsocketsFetcherFromClient=u;const f=e=>t=>{const n=e.request(t);return(0,i.makeAsyncIterableIteratorFromSink)(e=>n.subscribe(e).unsubscribe)};e.createLegacyWebsocketsFetcher=f,e.createMultipartFetcher=(e,t)=>function(r,o){return l(this,arguments,(function*(){var l,c;const u=yield a(t(e.url,{method:"POST",body:JSON.stringify(r),headers:Object.assign(Object.assign({"content-type":"application/json",accept:"application/json, multipart/mixed"},e.headers),null==o?void 0:o.headers)}).then(e=>(0,n.meros)(e,{multiple:!0})));if(!(0,i.isAsyncIterable)(u))return yield a(yield yield a(u.json()));try{for(var f,d=s(u);!(f=yield a(d.next())).done;){const e=f.value;if(e.some(e=>!e.json)){const t=e.map(e=>`Headers::\n${e.headers}\n\nBody::\n${e.body}`);throw new Error("Expected multipart chunks to be of json type. got:\n"+t)}yield yield a(e.map(e=>e.body))}}catch(e){l={error:e}}finally{try{f&&!f.done&&(c=d.return)&&(yield a(c.call(d)))}finally{if(l)throw l.error}}}))},e.getWsFetcher=e=>{if(e.wsClient)return u(e.wsClient);if(e.subscriptionUrl)return c(e.subscriptionUrl,e.wsConnectionParams);const t=e.legacyClient||e.legacyWsClient;return t?f(t):void 0}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){"use strict";n.r(t),n.d(t,"meros",(function(){return i}));const r=new TextDecoder;async function i(e,t){if(!e.ok||!e.body||e.bodyUsed)return e;const n=e.headers.get("content-type");if(!n||!~n.indexOf("multipart/mixed"))return e;const i=n.indexOf("boundary=");return async function*(e,t,n){const i=e.getReader(),o=!n||!n.multiple;let a="",s=!0,l=[];try{let e;e:for(;!(e=await i.read()).done;){const n=r.decode(e.value),i=n.indexOf(t);let c=a.length;for(a+=n,~i?c+=i:c=a.indexOf(t),l=[];~c;){const e=a.substring(0,c),n=a.substring(c+t.length);if(s)s=!1;else{const t={},r=e.indexOf("\r\n\r\n"),i=a.slice(0,r).toString().trim().split(/\r\n/);let s;for(;s=i.shift();)s=s.split(": "),t[s.shift().toLowerCase()]=s.join(": ");let c=e.substring(r+"\r\n\r\n".length,e.lastIndexOf("\r\n")),u=!1;if(s=t["content-type"],s&&~s.indexOf("application/json"))try{c=JSON.parse(c),u=!0}catch(e){}if(s={headers:t,body:c,json:u},o?yield s:l.push(s),"--"===n.substring(0,2))break e}a=n,c=a.indexOf(t)}l.length&&(yield l)}}finally{l.length&&(yield l),i.releaseLock()}}(e.body,"--"+(~i?n.substring(i+9).trim().replace(/['"]/g,""):"-"),t)}},function(e,t,n){(function(n){var r,i,o;!function(n,a){i=[],void 0===(o="function"==typeof(r=a)?r.apply(t,i):r)||(e.exports=o)}("undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,(function(){"use strict";(function(e){const t=Object.prototype.hasOwnProperty;function r(e){return"object"==typeof e&&null!==e}function i(e,n){return t.call(e,n)}function o(e,n){return t.call(e,n)&&r(e[n])}function a(e,n){return t.call(e,n)&&"string"==typeof e[n]}function s(e,t){return e.length<124?e:t}var l,c;function u(t){if(r(t)){if(!a(t,"type"))return!1;switch(t.type){case e.MessageType.ConnectionInit:return!i(t,"payload")||void 0===t.payload||r(t.payload);case e.MessageType.ConnectionAck:case e.MessageType.Ping:case e.MessageType.Pong:return!i(t,"payload")||void 0===t.payload||r(t.payload);case e.MessageType.Subscribe:return a(t,"id")&&o(t,"payload")&&(!i(t.payload,"operationName")||void 0===t.payload.operationName||null===t.payload.operationName||"string"==typeof t.payload.operationName)&&a(t.payload,"query")&&(!i(t.payload,"variables")||void 0===t.payload.variables||null===t.payload.variables||o(t.payload,"variables"))&&(!i(t.payload,"extensions")||void 0===t.payload.extensions||null===t.payload.extensions||o(t.payload,"extensions"));case e.MessageType.Next:return a(t,"id")&&o(t,"payload");case e.MessageType.Error:return a(t,"id")&&(n=t.payload,Array.isArray(n)&&n.length>0&&n.every(e=>"message"in e));case e.MessageType.Complete:return a(t,"id");default:return!1}}var n;return!1}function f(e,t){if(u(e))return e;if("string"!=typeof e)throw new Error("Message not parsable");const n=JSON.parse(e,t);if(!u(n))throw new Error("Invalid message");return n}function d(e,t){if(!u(e))throw new Error("Cannot stringify invalid message");return JSON.stringify(e,t)}function p(e){return r(e)&&"code"in e&&"reason"in e}e.CloseCode=void 0,(l=e.CloseCode||(e.CloseCode={}))[l.InternalServerError=4500]="InternalServerError",l[l.InternalClientError=4005]="InternalClientError",l[l.BadRequest=4400]="BadRequest",l[l.BadResponse=4004]="BadResponse",l[l.Unauthorized=4401]="Unauthorized",l[l.Forbidden=4403]="Forbidden",l[l.SubprotocolNotAcceptable=4406]="SubprotocolNotAcceptable",l[l.ConnectionInitialisationTimeout=4408]="ConnectionInitialisationTimeout",l[l.ConnectionAcknowledgementTimeout=4504]="ConnectionAcknowledgementTimeout",l[l.SubscriberAlreadyExists=4409]="SubscriberAlreadyExists",l[l.TooManyInitialisationRequests=4429]="TooManyInitialisationRequests",e.MessageType=void 0,(c=e.MessageType||(e.MessageType={})).ConnectionInit="connection_init",c.ConnectionAck="connection_ack",c.Ping="ping",c.Pong="pong",c.Subscribe="subscribe",c.Next="next",c.Error="error",c.Complete="complete",e.GRAPHQL_TRANSPORT_WS_PROTOCOL="graphql-transport-ws",e.createClient=function(t){const{url:r,connectionParams:i,lazy:o=!0,onNonLazyError:a=console.error,lazyCloseTimeout:l=0,keepAlive:c=0,disablePong:u,connectionAckWaitTimeout:h=0,retryAttempts:m=5,retryWait:g=async function(e){let t=1e3;for(let n=0;nsetTimeout(e,t+Math.floor(2700*Math.random()+300)))},isFatalConnectionProblem:v=(e=>!p(e)),on:y,webSocketImpl:b,generateID:T=function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{const t=16*Math.random()|0;return("x"==e?t:3&t|8).toString(16)})},jsonMessageReplacer:E,jsonMessageReviver:O}=t;let _;if(b){if(!("function"==typeof(C=b)&&"constructor"in C&&"CLOSED"in C&&"CLOSING"in C&&"CONNECTING"in C&&"OPEN"in C))throw new Error("Invalid WebSocket implementation provided");_=b}else"undefined"!=typeof WebSocket?_=WebSocket:void 0!==n?_=n.WebSocket||n.MozWebSocket:"undefined"!=typeof window&&(_=window.WebSocket||window.MozWebSocket);var C;if(!_)throw new Error("WebSocket implementation missing");const x=_,w=(()=>{const e=(()=>{const e={};return{on:(t,n)=>(e[t]=n,()=>{delete e[t]}),emit(t){var n;"id"in t&&(null===(n=e[t.id])||void 0===n||n.call(e,t))}}})(),t={connecting:(null==y?void 0:y.connecting)?[y.connecting]:[],opened:(null==y?void 0:y.opened)?[y.opened]:[],connected:(null==y?void 0:y.connected)?[y.connected]:[],ping:(null==y?void 0:y.ping)?[y.ping]:[],pong:(null==y?void 0:y.pong)?[y.pong]:[],message:(null==y?void 0:y.message)?[e.emit,y.message]:[e.emit],closed:(null==y?void 0:y.closed)?[y.closed]:[],error:(null==y?void 0:y.error)?[y.error]:[]};return{onMessage:e.on,on(e,n){const r=t[e];return r.push(n),()=>{r.splice(r.indexOf(n),1)}},emit(e,...n){for(const r of[...t[e]])r(...n)}}})();function k(e){const t=[w.on("error",n=>{t.forEach(e=>e()),e(n)}),w.on("closed",n=>{t.forEach(e=>e()),e(n)})]}let S,N=0,D=!1,I=0,A=!1;async function L(){const[t,n]=await(null!=S?S:S=new Promise((t,n)=>(async()=>{if(D){if(await g(I),!N)return S=void 0,n({code:1e3,reason:"All Subscriptions Gone"});I++}w.emit("connecting");const o=new x("function"==typeof r?await r():r,"graphql-transport-ws");let a,l;function p(){isFinite(c)&&c>0&&(clearTimeout(l),l=setTimeout(()=>{o.readyState===x.OPEN&&(o.send(d({type:e.MessageType.Ping})),w.emit("ping",!1,void 0))},c))}k(e=>{S=void 0,clearTimeout(a),clearTimeout(l),n(e)}),o.onerror=e=>w.emit("error",e),o.onclose=e=>w.emit("closed",e),o.onopen=async()=>{try{w.emit("opened",o);const t="function"==typeof i?await i():i;o.send(d(t?{type:e.MessageType.ConnectionInit,payload:t}:{type:e.MessageType.ConnectionInit},E)),isFinite(h)&&h>0&&(a=setTimeout(()=>{o.close(e.CloseCode.ConnectionAcknowledgementTimeout,"Connection acknowledgement timeout")},h)),p()}catch(t){w.emit("error",t),o.close(e.CloseCode.InternalClientError,s(t instanceof Error?t.message:new Error(t).message,"Internal client error"))}};let m=!1;o.onmessage=({data:n})=>{try{const r=f(n,O);if(w.emit("message",r),"ping"===r.type||"pong"===r.type)return w.emit(r.type,!0,r.payload),void("pong"===r.type?p():u||(o.send(d(r.payload?{type:e.MessageType.Pong,payload:r.payload}:{type:e.MessageType.Pong})),w.emit("pong",!1,r.payload)));if(m)return;if(r.type!==e.MessageType.ConnectionAck)throw new Error("First message cannot be of type "+r.type);clearTimeout(a),m=!0,w.emit("connected",o,r.payload),D=!1,I=0,t([o,new Promise((e,t)=>k(t))])}catch(t){o.onmessage=null,w.emit("error",t),o.close(e.CloseCode.BadResponse,s(t instanceof Error?t.message:new Error(t).message,"Bad response"))}}})()));t.readyState===x.CLOSING&&await n;let o=()=>{};const a=new Promise(e=>o=e);return[t,o,Promise.race([a.then(()=>{if(!N){const e=()=>t.close(1e3,"Normal Closure");isFinite(l)&&l>0?setTimeout(()=>{N||t.readyState!==x.OPEN||e()},l):e()}}),n])]}function F(t){if(p(t)&&(n=t.code,![1e3,1001,1006,1005,1012,1013,1013].includes(n)&&n>=1e3&&n<=1999||[e.CloseCode.InternalServerError,e.CloseCode.InternalClientError,e.CloseCode.BadRequest,e.CloseCode.BadResponse,e.CloseCode.Unauthorized,e.CloseCode.SubprotocolNotAcceptable,e.CloseCode.SubscriberAlreadyExists,e.CloseCode.TooManyInitialisationRequests].includes(t.code)))throw t;var n;if(A)return!1;if(p(t)&&1e3===t.code)return N>0;if(!m||I>=m)throw t;if(v(t))throw t;return D=!0}return o||(async()=>{for(N++;;)try{const[,,e]=await L();await e}catch(e){try{if(!F(e))return}catch(e){return null==a?void 0:a(e)}}})(),{on:w.on,subscribe(t,n){const r=T();let i=!1,o=!1,a=()=>{N--,i=!0};return(async()=>{for(N++;;)try{const[s,l,c]=await L();if(i)return l();const u=w.onMessage(r,t=>{switch(t.type){case e.MessageType.Next:return void n.next(t.payload);case e.MessageType.Error:return o=!0,i=!0,n.error(t.payload),void a();case e.MessageType.Complete:return i=!0,void a()}});return s.send(d({id:r,type:e.MessageType.Subscribe,payload:t},E)),a=()=>{i||s.readyState!==x.OPEN||s.send(d({id:r,type:e.MessageType.Complete},E)),N--,i=!0,l()},void await c.finally(u)}catch(e){if(!F(e))return}})().then(()=>{o||n.complete()}).catch(e=>{n.error(e)}),()=>{i||a()}},async dispose(){if(A=!0,S){const[e]=await S;e.close(1e3,"Normal Closure")}}}},e.isMessage=u,e.parseMessage=f,e.stringifyMessage=d,Object.defineProperty(e,"__esModule",{value:!0})})(t)}))}).call(this,n(43))},function(e,t,n){"use strict";function r(){const e={};return e.promise=new Promise((t,n)=>{e.resolve=t,e.reject=n}),e}n.r(t),n.d(t,"applyAsyncIterableIteratorToSink",(function(){return l})),n.d(t,"isAsyncIterable",(function(){return c})),n.d(t,"makeAsyncIterableIteratorFromSink",(function(){return s})),n.d(t,"makePushPullAsyncIterableIterator",(function(){return a}));const i=Symbol(),o=Symbol();function a(){let e=!0;const t=[];let n=r();const a=r(),s=async function*(){for(;;)if(t.length>0)yield t.shift();else{const e=await Promise.race([n.promise,a.promise]);if(e===i)break;if(e!==o)throw e}}();const l=s.return.bind(s);s.return=(...t)=>(e=!1,a.resolve(i),l(...t));const c=s.throw.bind(s);return s.throw=t=>(e=!1,a.resolve(t),c(t)),{pushValue:function(i){!1!==e&&(t.push(i),n.resolve(o),n=r())},asyncIterableIterator:s}}const s=e=>{const{pushValue:t,asyncIterableIterator:n}=a(),r=e({next:e=>{t(e)},complete:()=>{n.return()},error:e=>{n.throw(e)}}),i=n.return;let o=void 0;return n.return=()=>(void 0===o&&(r(),o=i()),o),n};function l(e,t){return(async()=>{try{for await(const n of e)t.next(n);t.complete()}catch(e){t.error(e)}})(),()=>{var t;null===(t=e.return)||void 0===t||t.call(e)}}function c(e){return"object"==typeof e&&null!==e&&("AsyncGenerator"===e[Symbol.toStringTag]||Symbol.asyncIterator&&Symbol.asyncIterator in e)}},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){},function(e,t,n){(function(r){var i,o,a,s;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,s=function(e,t,n,i,o,a,s,l,c,u,f,d,p,h,m,g,v,y,b,T,E,O,_,C,x,w,k){"use strict";function S(e){return e&&e.__esModule?e:{default:e}}function N(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}if(Object.defineProperty(e,"__esModule",{value:!0}),e.GraphiQL=void 0,t=S(t),i=S(i),v=S(v),y=S(y),b=S(b),T=S(T),E=S(E),C=S(C),k=S(k),parseInt(t.default.version.slice(0,2),10)<16)throw Error(["GraphiQL 0.18.0 and after is not compatible with React 15 or below.","If you are using a CDN source (jsdelivr, unpkg, etc), follow this example:","https://github.com/graphql/graphiql/blob/master/examples/graphiql-cdn/index.html#L49"].join("\n"));const D=e=>JSON.stringify(e,null,2),I=e=>e instanceof n.GraphQLError?e.toString():e instanceof Error?(e=>({...e,message:e.message,stack:e.stack}))(e):e;class A extends t.default.Component{static formatResult(e){return JSON.stringify(e,null,2)}constructor(e){var t,r,a,s,l,c;if(super(e),N(this,"_editorQueryID",0),N(this,"_storage",void 0),N(this,"_introspectionQuery",void 0),N(this,"_introspectionQueryName",void 0),N(this,"_introspectionQuerySansSubscriptions",void 0),N(this,"codeMirrorSizer",void 0),N(this,"componentIsMounted",void 0),N(this,"docExplorerComponent",void 0),N(this,"graphiqlContainer",void 0),N(this,"resultComponent",void 0),N(this,"variableEditorComponent",void 0),N(this,"headerEditorComponent",void 0),N(this,"_queryHistory",void 0),N(this,"_historyStore",void 0),N(this,"editorBarComponent",void 0),N(this,"queryEditorComponent",void 0),N(this,"resultViewerElement",void 0),N(this,"safeSetState",(e,t)=>{this.componentIsMounted&&this.setState(e,t)}),N(this,"handleClickReference",e=>{this.setState({docExplorerOpen:!0},()=>{this.docExplorerComponent&&this.docExplorerComponent.showDocForReference(e)}),this._storage.set("docExplorerOpen",JSON.stringify(this.state.docExplorerOpen))}),N(this,"handleRunQuery",async e=>{this._editorQueryID++;const t=this._editorQueryID,n=this.autoCompleteLeafs()||this.state.query,r=this.state.variables,i=this.state.headers,o=this.state.shouldPersistHeaders;let a=this.state.operationName;e&&e!==a&&(a=e,this.handleEditOperationName(a));try{this.setState({isWaitingForResponse:!0,response:void 0,operationName:a}),this._storage.set("operationName",a),this._queryHistory?this._queryHistory.onUpdateHistory(n,r,i,a):this._historyStore&&this._historyStore.updateHistory(n,r,i,a);let e={data:{}};const s=await this._fetchQuery(n,r,i,a,o,n=>{if(t===this._editorQueryID){let t=!!Array.isArray(n)&&n;if(!t&&"string"!=typeof n&&null!==n&&"hasNext"in n&&(t=[n]),t){var r;const n={data:e.data},i=[...(null===(r=e)||void 0===r?void 0:r.errors)||[],...t.map(e=>e.errors).flat().filter(Boolean)];i.length&&(n.errors=i);for(const r of t){const{path:t,data:i,errors:o,...a}=r;if(t){if(!i)throw new Error("Expected part to contain a data property, but got "+r);(0,w.dset)(n.data,t,i)}else i&&(n.data=r.data);e={...n,...a}}this.setState({isWaitingForResponse:!1,response:A.formatResult(e)})}else this.setState({isWaitingForResponse:!1,response:A.formatResult(n)})}});this.setState({subscription:s})}catch(e){this.setState({isWaitingForResponse:!1,response:e.message})}}),N(this,"handleStopQuery",()=>{const e=this.state.subscription;this.setState({isWaitingForResponse:!1,subscription:null}),e&&e.unsubscribe()}),N(this,"handlePrettifyQuery",()=>{var e,t,r;const i=this.getQueryEditor(),o=null!==(e=null==i?void 0:i.getValue())&&void 0!==e?e:"",a=(0,n.print)((0,n.parse)(o));a!==o&&(null==i||i.setValue(a));const s=this.getVariableEditor(),l=null!==(t=null==s?void 0:s.getValue())&&void 0!==t?t:"";try{const e=JSON.stringify(JSON.parse(l),null,2);e!==l&&(null==s||s.setValue(e))}catch{}const c=this.getHeaderEditor(),u=null!==(r=null==c?void 0:c.getValue())&&void 0!==r?r:"";try{const e=JSON.stringify(JSON.parse(u),null,2);e!==u&&(null==c||c.setValue(e))}catch{}}),N(this,"handleMergeQuery",()=>{const e=this.getQueryEditor();if(!e.getValue())return;const t=this.state.documentAST;e.setValue((0,n.print)((0,C.default)(t,this.state.schema)))}),N(this,"handleEditQuery",(0,T.default)(100,e=>{const t=this._updateQueryFacts(e,this.state.operationName,this.state.operations,this.state.schema);if(this.setState({query:e,...t}),this._storage.set("query",e),this.props.onEditQuery)return this.props.onEditQuery(e,null==t?void 0:t.documentAST)})),N(this,"handleCopyQuery",()=>{const e=this.getQueryEditor(),t=e&&e.getValue();if(t)return(0,i.default)(t),this.props.onCopyQuery?this.props.onCopyQuery(t):void 0}),N(this,"_updateQueryFacts",(e,t,n,r)=>{const i=(0,o.getOperationFacts)(r,e);if(i){const e=(0,b.default)(n,t,i.operations),r=this.props.onEditOperationName;return r&&e&&t!==e&&r(e),{operationName:e,...i}}}),N(this,"handleEditVariables",e=>{this.setState({variables:e}),(0,T.default)(500,()=>this._storage.set("variables",e))(),this.props.onEditVariables&&this.props.onEditVariables(e)}),N(this,"handleEditHeaders",e=>{this.setState({headers:e}),this.props.shouldPersistHeaders&&(0,T.default)(500,()=>this._storage.set("headers",e))(),this.props.onEditHeaders&&this.props.onEditHeaders(e)}),N(this,"handleEditOperationName",e=>{const t=this.props.onEditOperationName;t&&t(e)}),N(this,"handleHintInformationRender",e=>{let t;e.addEventListener("click",this._onClickHintInformation),e.addEventListener("DOMNodeRemoved",t=()=>{e.removeEventListener("DOMNodeRemoved",t),e.removeEventListener("click",this._onClickHintInformation)})}),N(this,"handleEditorRunQuery",()=>{this._runQueryAtCursor()}),N(this,"_onClickHintInformation",e=>{if(null!=e&&e.currentTarget&&"className"in e.currentTarget&&"typeName"===e.currentTarget.className){const t=e.currentTarget.innerHTML,n=this.state.schema;if(n){const e=n.getType(t);e&&(this.setState({docExplorerOpen:!0},()=>{this.docExplorerComponent&&this.docExplorerComponent.showDoc(e)}),(0,T.default)(500,()=>this._storage.set("docExplorerOpen",JSON.stringify(this.state.docExplorerOpen)))())}}}),N(this,"handleToggleDocs",()=>{"function"==typeof this.props.onToggleDocs&&this.props.onToggleDocs(!this.state.docExplorerOpen),this._storage.set("docExplorerOpen",JSON.stringify(!this.state.docExplorerOpen)),this.setState({docExplorerOpen:!this.state.docExplorerOpen})}),N(this,"handleToggleHistory",()=>{"function"==typeof this.props.onToggleHistory&&this.props.onToggleHistory(!this.state.historyPaneOpen),this._storage.set("historyPaneOpen",JSON.stringify(!this.state.historyPaneOpen)),this.setState({historyPaneOpen:!this.state.historyPaneOpen})}),N(this,"handleSelectHistoryQuery",(e,t,n,r)=>{e&&this.handleEditQuery(e),t&&this.handleEditVariables(t),n&&this.handleEditHeaders(n),r&&this.handleEditOperationName(r)}),N(this,"handleResizeStart",e=>{if(!this._didClickDragBar(e))return;e.preventDefault();const t=e.clientX-(0,_.getLeft)(e.target);let n=e=>{if(0===e.buttons)return r();const n=this.editorBarComponent,i=e.clientX-(0,_.getLeft)(n)-t,o=n.clientWidth-i;this.setState({editorFlex:i/o}),(0,T.default)(500,()=>this._storage.set("editorFlex",JSON.stringify(this.state.editorFlex)))()},r=()=>{document.removeEventListener("mousemove",n),document.removeEventListener("mouseup",r),n=null,r=null};document.addEventListener("mousemove",n),document.addEventListener("mouseup",r)}),N(this,"handleResetResize",()=>{this.setState({editorFlex:1}),this._storage.set("editorFlex",JSON.stringify(this.state.editorFlex))}),N(this,"handleDocsResizeStart",e=>{e.preventDefault();const t=this.state.docExplorerWidth,n=e.clientX-(0,_.getLeft)(e.target);let r=e=>{if(0===e.buttons)return i();const t=this.graphiqlContainer,r=e.clientX-(0,_.getLeft)(t)-n,o=t.clientWidth-r;o<100?("function"==typeof this.props.onToggleDocs&&this.props.onToggleDocs(!this.state.docExplorerOpen),this._storage.set("docExplorerOpen",JSON.stringify(this.state.docExplorerOpen)),this.setState({docExplorerOpen:!1})):(this.setState({docExplorerOpen:!0,docExplorerWidth:Math.min(o,650)}),(0,T.default)(500,()=>this._storage.set("docExplorerWidth",JSON.stringify(this.state.docExplorerWidth)))()),this._storage.set("docExplorerOpen",JSON.stringify(this.state.docExplorerOpen))},i=()=>{this.state.docExplorerOpen||(this.setState({docExplorerWidth:t}),(0,T.default)(500,()=>this._storage.set("docExplorerWidth",JSON.stringify(this.state.docExplorerWidth)))()),document.removeEventListener("mousemove",r),document.removeEventListener("mouseup",i),r=null,i=null};document.addEventListener("mousemove",r),document.addEventListener("mouseup",i)}),N(this,"handleDocsResetResize",()=>{this.setState({docExplorerWidth:350}),(0,T.default)(500,()=>this._storage.set("docExplorerWidth",JSON.stringify(this.state.docExplorerWidth)))()}),N(this,"handleTabClickPropogation",e=>{e.preventDefault(),e.stopPropagation()}),N(this,"handleOpenHeaderEditorTab",e=>{this.setState({headerEditorActive:!0,variableEditorActive:!1,secondaryEditorOpen:!0})}),N(this,"handleOpenVariableEditorTab",e=>{this.setState({headerEditorActive:!1,variableEditorActive:!0,secondaryEditorOpen:!0})}),N(this,"handleSecondaryEditorResizeStart",e=>{e.preventDefault();let t=!1;const n=this.state.secondaryEditorOpen,r=this.state.secondaryEditorHeight,i=e.clientY-(0,_.getTop)(e.target);let o=e=>{if(0===e.buttons)return a();t=!0;const n=this.editorBarComponent,o=e.clientY-(0,_.getTop)(n)-i,s=n.clientHeight-o;s<60?this.setState({secondaryEditorOpen:!1,secondaryEditorHeight:r}):this.setState({secondaryEditorOpen:!0,secondaryEditorHeight:s}),(0,T.default)(500,()=>this._storage.set("secondaryEditorHeight",JSON.stringify(this.state.secondaryEditorHeight)))()},a=()=>{t||this.setState({secondaryEditorOpen:!n}),document.removeEventListener("mousemove",o),document.removeEventListener("mouseup",a),o=null,a=null};document.addEventListener("mousemove",o),document.addEventListener("mouseup",a)}),"function"!=typeof e.fetcher)throw new TypeError("GraphiQL requires a fetcher function.");this._storage=new y.default(e.storage);const u=null!==(t=e.maxHistoryLength)&&void 0!==t?t:20;this._historyStore=new k.default(this._storage,u),this.componentIsMounted=!1;const f=void 0!==e.query?e.query:this._storage.get("query")?this._storage.get("query"):void 0!==e.defaultQuery?e.defaultQuery:M,d=(0,o.getOperationFacts)(e.schema,f),p=void 0!==e.variables?e.variables:this._storage.get("variables"),h=void 0!==e.headers?e.headers:this._storage.get("headers"),m=void 0!==e.operationName?e.operationName:(0,b.default)(void 0,this._storage.get("operationName"),d&&d.operations);let g,v=e.docExplorerOpen||!1;this._storage.get("docExplorerOpen")&&(v="true"===this._storage.get("docExplorerOpen")),g=void 0!==e.defaultVariableEditorOpen?e.defaultVariableEditorOpen:void 0!==e.defaultSecondaryEditorOpen?e.defaultSecondaryEditorOpen:Boolean(p||h);const E=null===(r=e.headerEditorEnabled)||void 0===r||r,O=null!==(a=e.shouldPersistHeaders)&&void 0!==a&&a;let S=e.schema,D=e.response,I=void 0;if(S&&!this.props.dangerouslyAssumeSchemaIsValid){const e=(0,n.validateSchema)(S);e&&e.length>0&&(D=A.formatError(e),S=void 0,I=e)}this._introspectionQuery=(0,n.getIntrospectionQuery)({schemaDescription:null!==(s=e.schemaDescription)&&void 0!==s?s:void 0,inputValueDeprecation:null!==(l=e.inputValueDeprecation)&&void 0!==l?l:void 0}),this._introspectionQueryName=null!==(c=e.introspectionQueryName)&&void 0!==c?c:x.introspectionQueryName,this._introspectionQuerySansSubscriptions=this._introspectionQuery.replace("subscriptionType { name }",""),this.state={schema:S,query:f,variables:p,headers:h,operationName:m,docExplorerOpen:v,schemaErrors:I,response:D,editorFlex:Number(this._storage.get("editorFlex"))||1,secondaryEditorOpen:g,secondaryEditorHeight:Number(this._storage.get("secondaryEditorHeight"))||200,variableEditorActive:"true"!==this._storage.get("variableEditorActive")&&!e.headerEditorEnabled||"true"!==this._storage.get("headerEditorActive"),headerEditorActive:"true"===this._storage.get("headerEditorActive"),headerEditorEnabled:E,shouldPersistHeaders:O,historyPaneOpen:"true"===this._storage.get("historyPaneOpen")||!1,docExplorerWidth:Number(this._storage.get("docExplorerWidth"))||350,isWaitingForResponse:!1,subscription:null,maxHistoryLength:u,...d}}componentDidMount(){this.componentIsMounted=!0,void 0===this.state.schema&&this.fetchSchema(),this.codeMirrorSizer=new v.default,r.g=this}UNSAFE_componentWillMount(){this.componentIsMounted=!1}UNSAFE_componentWillReceiveProps(e){let t=this.state.schema,r=this.state.query,i=this.state.variables,o=this.state.headers,a=this.state.operationName,s=this.state.response;if(void 0!==e.schema&&(t=e.schema),void 0!==e.query&&this.props.query!==e.query&&(r=e.query),void 0!==e.variables&&this.props.variables!==e.variables&&(i=e.variables),void 0!==e.headers&&this.props.headers!==e.headers&&(o=e.headers),void 0!==e.operationName&&(a=e.operationName),void 0!==e.response&&(s=e.response),r&&t&&(t!==this.state.schema||r!==this.state.query||a!==this.state.operationName)){if(!this.props.dangerouslyAssumeSchemaIsValid){const e=(0,n.validateSchema)(t);e&&e.length>0&&(this.handleSchemaErrors(e),t=void 0)}const e=this._updateQueryFacts(r,a,this.state.operations,t);void 0!==e&&(a=e.operationName,this.setState(e))}void 0===e.schema&&e.fetcher!==this.props.fetcher&&(t=void 0),this._storage.set("operationName",a),this.setState({schema:t,query:r,variables:i,headers:o,operationName:a,response:s},()=>{void 0===this.state.schema&&(this.docExplorerComponent&&this.docExplorerComponent.reset(),this.fetchSchema())})}componentDidUpdate(){this.codeMirrorSizer.updateSizes([this.queryEditorComponent,this.variableEditorComponent,this.headerEditorComponent,this.resultComponent])}render(){var e;const n=t.default.Children.toArray(this.props.children),r=(0,E.default)(n,e=>B(e,A.Logo))||t.default.createElement(A.Logo,null),i=(0,E.default)(n,e=>B(e,A.Toolbar))||t.default.createElement(A.Toolbar,null,t.default.createElement(l.ToolbarButton,{onClick:this.handlePrettifyQuery,title:"Prettify Query (Shift-Ctrl-P)",label:"Prettify"}),t.default.createElement(l.ToolbarButton,{onClick:this.handleMergeQuery,title:"Merge Query (Shift-Ctrl-M)",label:"Merge"}),t.default.createElement(l.ToolbarButton,{onClick:this.handleCopyQuery,title:"Copy Query (Shift-Ctrl-C)",label:"Copy"}),t.default.createElement(l.ToolbarButton,{onClick:this.handleToggleHistory,title:"Show History",label:"History"}),null!==(e=this.props.toolbar)&&void 0!==e&&e.additionalContent?this.props.toolbar.additionalContent:null),o=(0,E.default)(n,e=>B(e,A.Footer)),c={WebkitFlex:this.state.editorFlex,flex:this.state.editorFlex},u={display:"block",width:this.state.docExplorerWidth},v="docExplorerWrap"+(this.state.docExplorerWidth<200?" doc-explorer-narrow":""),y={display:this.state.historyPaneOpen?"block":"none",width:"230px",zIndex:7},b=this.state.secondaryEditorOpen,T={height:b?this.state.secondaryEditorHeight:void 0};return t.default.createElement("div",{ref:e=>{this.graphiqlContainer=e},className:"graphiql-container"},this.state.historyPaneOpen&&t.default.createElement("div",{className:"historyPaneWrap",style:y},t.default.createElement(g.QueryHistory,{ref:e=>{this._queryHistory=e},operationName:this.state.operationName,query:this.state.query,variables:this.state.variables,onSelectQuery:this.handleSelectHistoryQuery,storage:this._storage,maxHistoryLength:this.state.maxHistoryLength,queryID:this._editorQueryID},t.default.createElement("button",{className:"docExplorerHide",onClick:this.handleToggleHistory,"aria-label":"Close History"},"✕"))),t.default.createElement("div",{className:"editorWrap"},t.default.createElement("div",{className:"topBarWrap"},t.default.createElement("div",{className:"topBar"},r,t.default.createElement(a.ExecuteButton,{isRunning:Boolean(this.state.subscription),onRun:this.handleRunQuery,onStop:this.handleStopQuery,operations:this.state.operations}),i),!this.state.docExplorerOpen&&t.default.createElement("button",{className:"docExplorerShow",onClick:this.handleToggleDocs,"aria-label":"Open Documentation Explorer"},"Docs")),t.default.createElement("div",{ref:e=>{this.editorBarComponent=e},className:"editorBar",onDoubleClick:this.handleResetResize,onMouseDown:this.handleResizeStart},t.default.createElement("div",{className:"queryWrap",style:c},t.default.createElement(f.QueryEditor,{ref:e=>{this.queryEditorComponent=e},schema:this.state.schema,validationRules:this.props.validationRules,value:this.state.query,onEdit:this.handleEditQuery,onHintInformationRender:this.handleHintInformationRender,onClickReference:this.handleClickReference,onCopyQuery:this.handleCopyQuery,onPrettifyQuery:this.handlePrettifyQuery,onMergeQuery:this.handleMergeQuery,onRunQuery:this.handleEditorRunQuery,editorTheme:this.props.editorTheme,readOnly:this.props.readOnly,externalFragments:this.props.externalFragments}),t.default.createElement("section",{className:"variable-editor secondary-editor",style:T,"aria-label":this.state.variableEditorActive?"Query Variables":"Request Headers"},t.default.createElement("div",{className:"secondary-editor-title variable-editor-title",id:"secondary-editor-title",style:{cursor:b?"row-resize":"n-resize"},onMouseDown:this.handleSecondaryEditorResizeStart},t.default.createElement("div",{style:{cursor:"pointer",color:this.state.variableEditorActive?"#000":"gray",display:"inline-block"},onClick:this.handleOpenVariableEditorTab,onMouseDown:this.handleTabClickPropogation},"Query Variables"),this.state.headerEditorEnabled&&t.default.createElement("div",{style:{cursor:"pointer",color:this.state.headerEditorActive?"#000":"gray",display:"inline-block",marginLeft:"20px"},onClick:this.handleOpenHeaderEditorTab,onMouseDown:this.handleTabClickPropogation},"Request Headers")),t.default.createElement(d.VariableEditor,{ref:e=>{this.variableEditorComponent=e},value:this.state.variables,variableToType:this.state.variableToType,onEdit:this.handleEditVariables,onHintInformationRender:this.handleHintInformationRender,onPrettifyQuery:this.handlePrettifyQuery,onMergeQuery:this.handleMergeQuery,onRunQuery:this.handleEditorRunQuery,editorTheme:this.props.editorTheme,readOnly:this.props.readOnly,active:this.state.variableEditorActive}),this.state.headerEditorEnabled&&t.default.createElement(p.HeaderEditor,{ref:e=>{this.headerEditorComponent=e},value:this.state.headers,onEdit:this.handleEditHeaders,onHintInformationRender:this.handleHintInformationRender,onPrettifyQuery:this.handlePrettifyQuery,onMergeQuery:this.handleMergeQuery,onRunQuery:this.handleEditorRunQuery,editorTheme:this.props.editorTheme,readOnly:this.props.readOnly,active:this.state.headerEditorActive}))),t.default.createElement("div",{className:"resultWrap"},this.state.isWaitingForResponse&&t.default.createElement("div",{className:"spinner-container"},t.default.createElement("div",{className:"spinner"})),t.default.createElement(h.ResultViewer,{registerRef:e=>{this.resultViewerElement=e},ref:e=>{this.resultComponent=e},value:this.state.response,editorTheme:this.props.editorTheme,ResultsTooltip:this.props.ResultsTooltip,ImagePreview:s.ImagePreview}),o))),this.state.docExplorerOpen&&t.default.createElement("div",{className:v,style:u},t.default.createElement("div",{className:"docExplorerResizer",onDoubleClick:this.handleDocsResetResize,onMouseDown:this.handleDocsResizeStart}),t.default.createElement(m.DocExplorer,{ref:e=>{this.docExplorerComponent=e},schemaErrors:this.state.schemaErrors,schema:this.state.schema},t.default.createElement("button",{className:"docExplorerHide",onClick:this.handleToggleDocs,"aria-label":"Close Documentation Explorer"},"✕"))))}getQueryEditor(){if(this.queryEditorComponent)return this.queryEditorComponent.getCodeMirror()}getVariableEditor(){return this.variableEditorComponent?this.variableEditorComponent.getCodeMirror():null}getHeaderEditor(){return this.headerEditorComponent?this.headerEditorComponent.getCodeMirror():null}refresh(){this.queryEditorComponent&&this.queryEditorComponent.getCodeMirror().refresh(),this.variableEditorComponent&&this.variableEditorComponent.getCodeMirror().refresh(),this.headerEditorComponent&&this.headerEditorComponent.getCodeMirror().refresh(),this.resultComponent&&this.resultComponent.getCodeMirror().refresh()}autoCompleteLeafs(){const{insertions:e,result:t}=(0,O.fillLeafs)(this.state.schema,this.state.query,this.props.getDefaultFieldNames);if(e&&e.length>0){const n=this.getQueryEditor();n&&n.operation(()=>{const r=n.getCursor(),i=n.indexFromPos(r);n.setValue(t||"");let o=0;const a=e.map(({index:e,string:t})=>n.markText(n.posFromIndex(e+o),n.posFromIndex(e+(o+=t.length)),{className:"autoInsertedLeaf",clearOnEnter:!0,title:"Automatically added leaf fields"}));setTimeout(()=>a.forEach(e=>e.clear()),7e3);let s=i;e.forEach(({index:e,string:t})=>{e2?t.headers=JSON.parse(this.state.headers):this.props.headers&&(t.headers=JSON.parse(this.props.headers));const r=U(e({query:this._introspectionQuery,operationName:this._introspectionQueryName},t));R(r)?r.then(n=>{if("string"!=typeof n&&"data"in n)return n;const i=U(e({query:this._introspectionQuerySansSubscriptions,operationName:this._introspectionQueryName},t));if(!R(r))throw new Error("Fetcher did not return a Promise for introspection.");return i}).then(e=>{if(void 0===this.state.schema)if(e&&e.data&&"__schema"in(null==e?void 0:e.data)){let t=(0,n.buildClientSchema)(e.data);if(!this.props.dangerouslyAssumeSchemaIsValid){const e=(0,n.validateSchema)(t);e&&e.length>0&&(t=void 0,this.handleSchemaErrors(e))}if(t){const e=(0,o.getOperationFacts)(t,this.state.query);this.safeSetState({schema:t,...e,schemaErrors:void 0})}}else{const t="string"==typeof e?e:A.formatResult(e);this.handleSchemaErrors([t])}}).catch(e=>{this.handleSchemaErrors([e])}):this.setState({response:"Fetcher did not return a Promise for introspection."})}handleSchemaErrors(e){this.safeSetState({response:e?A.formatError(e):void 0,schema:void 0,schemaErrors:e})}async _fetchQuery(e,t,r,i,a,s){const l=this.props.fetcher;let c=null,u=null;try{c=t&&""!==t.trim()?JSON.parse(t):null}catch(e){throw new Error(`Variables are invalid JSON: ${e.message}.`)}if("object"!=typeof c)throw new Error("Variables are not a JSON object.");try{u=r&&""!==r.trim()?JSON.parse(r):null}catch(e){throw new Error(`Headers are invalid JSON: ${e.message}.`)}if("object"!=typeof u)throw new Error("Headers are not a JSON object.");if(this.props.externalFragments){const t=new Map;Array.isArray(this.props.externalFragments)?this.props.externalFragments.forEach(e=>{t.set(e.name.value,e)}):(0,n.visit)((0,n.parse)(this.props.externalFragments,{}),{FragmentDefinition(e){t.set(e.name.value,e)}});const r=(0,o.getFragmentDependenciesForAST)(this.state.documentAST,t);r.length>0&&(e+="\n"+r.map(e=>(0,n.print)(e)).join("\n"))}const f=l({query:e,variables:c,operationName:i},{headers:u,shouldPersistHeaders:a,documentAST:this.state.documentAST});return Promise.resolve(f).then(e=>P(e)?e.subscribe({next:s,error:e=>{this.safeSetState({isWaitingForResponse:!1,response:e?A.formatError(e):void 0,subscription:null})},complete:()=>{this.safeSetState({isWaitingForResponse:!1,subscription:null})}}):V(e)?((async()=>{try{for await(const t of e)s(t);this.safeSetState({isWaitingForResponse:!1,subscription:null})}catch(e){this.safeSetState({isWaitingForResponse:!1,response:e?A.formatError(e):void 0,subscription:null})}})(),{unsubscribe:()=>{var t,n;return null===(t=(n=e[Symbol.asyncIterator]()).return)||void 0===t?void 0:t.call(n)}}):(s(e),null)).catch(e=>(this.safeSetState({isWaitingForResponse:!1,response:e?A.formatError(e):void 0}),null))}_runQueryAtCursor(){if(this.state.subscription)return void this.handleStopQuery();let e;const t=this.state.operations;if(t){const n=this.getQueryEditor();if(n&&n.hasFocus()){const r=n.getCursor(),i=n.indexFromPos(r);for(let n=0;n=i){e=r.name&&r.name.value;break}}}}this.handleRunQuery(e)}_didClickDragBar(e){if(0!==e.button||e.ctrlKey)return!1;let t=e.target;if(0!==t.className.indexOf("CodeMirror-gutter"))return!1;const n=this.resultViewerElement;for(;t;){if(t===n)return!0;t=t.parentNode}return!1}}function L(e){return t.default.createElement("div",{className:"title"},e.children||t.default.createElement("span",null,"Graph",t.default.createElement("em",null,"i"),"QL"))}function F(e){return t.default.createElement("div",{className:"toolbar",role:"toolbar","aria-label":"Editor Commands"},e.children)}function j(e){return t.default.createElement("div",{className:"footer"},e.children)}e.GraphiQL=A,N(A,"formatError",e=>Array.isArray(e)?D({errors:e.map(e=>I(e))}):D({errors:I(e)})),N(A,"Logo",L),N(A,"Toolbar",F),N(A,"Footer",j),N(A,"QueryEditor",f.QueryEditor),N(A,"VariableEditor",d.VariableEditor),N(A,"HeaderEditor",p.HeaderEditor),N(A,"ResultViewer",h.ResultViewer),N(A,"Button",l.ToolbarButton),N(A,"ToolbarButton",l.ToolbarButton),N(A,"Group",c.ToolbarGroup),N(A,"Menu",u.ToolbarMenu),N(A,"MenuItem",u.ToolbarMenuItem),L.displayName="GraphiQLLogo",F.displayName="GraphiQLToolbar",j.displayName="GraphiQLFooter";const M='# Welcome to GraphiQL\n#\n# GraphiQL is an in-browser tool for writing, validating, and\n# testing GraphQL queries.\n#\n# Type queries into this side of the screen, and you will see intelligent\n# typeaheads aware of the current GraphQL type schema and live syntax and\n# validation errors highlighted within the text.\n#\n# GraphQL queries typically start with a "{" character. Lines that start\n# with a # are ignored.\n#\n# An example GraphQL query might look like:\n#\n# {\n# field(arg: "value") {\n# subField\n# }\n# }\n#\n# Keyboard shortcuts:\n#\n# Prettify Query: Shift-Ctrl-P (or press the prettify button above)\n#\n# Merge Query: Shift-Ctrl-M (or press the merge button above)\n#\n# Run Query: Ctrl-Enter (or press the play button above)\n#\n# Auto Complete: Ctrl-Space (or just start typing)\n#\n\n';function R(e){return"object"==typeof e&&"function"==typeof e.then}function P(e){return"object"==typeof e&&"subscribe"in e&&"function"==typeof e.subscribe}function V(e){return"object"==typeof e&&null!==e&&("AsyncGenerator"===e[Symbol.toStringTag]||Symbol.asyncIterator in e)}function U(e){return Promise.resolve(e).then(e=>{return V(e)?(n=e,new Promise((e,t)=>{var r;const i=null===(r=("return"in n?n:n[Symbol.asyncIterator]()).return)||void 0===r?void 0:r.bind(n);("next"in n?n:n[Symbol.asyncIterator]()).next.bind(n)().then(t=>{e(t.value),null==i||i()}).catch(e=>{t(e)})})):P(e)?(t=e,new Promise((e,n)=>{const r=t.subscribe({next:t=>{e(t),r.unsubscribe()},error:n,complete:()=>{n(new Error("no value resolved"))}})})):e;var t,n})}function B(e,t){var n;return!(null==e||null===(n=e.type)||void 0===n||!n.displayName||e.type.displayName!==t.displayName)||e.type===t}},o=[t,n(14),n(12),n(103),n(28),n(118),n(119),n(120),n(121),n(122),n(123),n(191),n(197),n(199),n(202),n(209),n(212),n(213),n(214),n(79),n(215),n(216),n(217),n(218),n(219),n(220),n(80)],void 0===(a="function"==typeof(i=s)?i.apply(t,o):i)||(e.exports=a)}).call(this,n(43))},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=n(104),r={"text/plain":"Text","text/html":"Url",default:"Text"};e.exports=function(e,n){var i,o,a,s,l,c,u=!1;n||(n={}),i=n.debug||!1;try{if(a=t(),s=document.createRange(),l=document.getSelection(),(c=document.createElement("span")).textContent=e,c.style.all="unset",c.style.position="fixed",c.style.top=0,c.style.clip="rect(0, 0, 0, 0)",c.style.whiteSpace="pre",c.style.webkitUserSelect="text",c.style.MozUserSelect="text",c.style.msUserSelect="text",c.style.userSelect="text",c.addEventListener("copy",(function(t){if(t.stopPropagation(),n.format)if(t.preventDefault(),void 0===t.clipboardData){i&&console.warn("unable to use e.clipboardData"),i&&console.warn("trying IE specific stuff"),window.clipboardData.clearData();var o=r[n.format]||r.default;window.clipboardData.setData(o,e)}else t.clipboardData.clearData(),t.clipboardData.setData(n.format,e);n.onCopy&&(t.preventDefault(),n.onCopy(t.clipboardData))})),document.body.appendChild(c),s.selectNodeContents(c),l.addRange(s),!document.execCommand("copy"))throw new Error("copy command was unsuccessful");u=!0}catch(t){i&&console.error("unable to copy using execCommand: ",t),i&&console.warn("trying IE specific stuff");try{window.clipboardData.setData(n.format||"text",e),n.onCopy&&n.onCopy(window.clipboardData),u=!0}catch(t){i&&console.error("unable to copy using clipboardData: ",t),i&&console.error("falling back to prompt"),o=function(e){var t=(/mac os x/i.test(navigator.userAgent)?"⌘":"Ctrl")+"+C";return e.replace(/#{\s*key\s*}/g,t)}("message"in n?n.message:"Copy to clipboard: #{key}, Enter"),window.prompt(o,e)}}finally{l&&("function"==typeof l.removeRange?l.removeRange(s):l.removeAllRanges()),c&&document.body.removeChild(c),a()}return u}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=function(){var e=document.getSelection();if(!e.rangeCount)return function(){};for(var t=document.activeElement,n=[],r=0;rthis._start,this.getCurrentPosition=()=>this._pos,this.eol=()=>this._sourceText.length===this._pos,this.sol=()=>0===this._pos,this.peek=()=>this._sourceText.charAt(this._pos)?this._sourceText.charAt(this._pos):null,this.next=()=>{const e=this._sourceText.charAt(this._pos);return this._pos++,e},this.eat=e=>{if(this._testNextCharacter(e))return this._start=this._pos,this._pos++,this._sourceText.charAt(this._pos-1)},this.eatWhile=e=>{let t=this._testNextCharacter(e),n=!1;for(t&&(n=t,this._start=this._pos);t;)this._pos++,t=this._testNextCharacter(e),n=!0;return n},this.eatSpace=()=>this.eatWhile(/[\s\u00a0]/),this.skipToEnd=()=>{this._pos=this._sourceText.length},this.skipTo=e=>{this._pos=e},this.match=(e,t=!0,n=!1)=>{let r=null,i=null;return"string"==typeof e?(i=new RegExp(e,n?"i":"g").test(this._sourceText.substr(this._pos,e.length)),r=e):e instanceof RegExp&&(i=this._sourceText.slice(this._pos).match(e),r=i&&i[0]),!(null==i||!("string"==typeof e||i instanceof Array&&this._sourceText.startsWith(i[0],this._pos)))&&(t&&(this._start=this._pos,r&&r.length&&(this._pos+=r.length)),i)},this.backUp=e=>{this._pos-=e},this.column=()=>this._pos,this.indentation=()=>{const e=this._sourceText.match(/\s*/);let t=0;if(e&&0!==e.length){const n=e[0];let r=0;for(;n.length>r;)9===n.charCodeAt(r)?t+=2:t++,r++}return t},this.current=()=>this._sourceText.slice(this._start,this._pos),this._start=0,this._pos=0,this._sourceText=e}_testNextCharacter(e){const t=this._sourceText.charAt(this._pos);let n=!1;return n="string"==typeof e?t===e:e instanceof RegExp?e.test(t):e(t),n}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(58),n(12)],void 0===(o="function"==typeof(r=function(e,t,n){"use strict";function r(e,t){const n=Object.keys(t);for(let r=0;re.eatWhile(t.isIgnored),lexRules:t.LexRules,parseRules:t.ParseRules,editorConfig:{}}){return{startState(){const t={level:0,step:0,name:null,kind:null,type:null,rule:null,needsSeperator:!1,prevState:null};return o(e.parseRules,t,n.Kind.DOCUMENT),t},token:(t,n)=>function(e,t,n){if(t.inBlockstring)return e.match(/.*"""/)?(t.inBlockstring=!1,"string"):(e.skipToEnd(),"string");const{lexRules:l,parseRules:u,eatWhitespace:f,editorConfig:d}=n;if(t.rule&&0===t.rule.length?a(t):t.needsAdvance&&(t.needsAdvance=!1,s(t,!0)),e.sol()){const n=d&&d.tabSize||2;t.indentLevel=Math.floor(e.indentation()/n)}if(f(e))return"ws";const p=function(e,t){const n=Object.keys(e);for(let r=0;r0&&e[e.length-1]{if(!n)return[];let r;try{r=(0,t.parse)(e)}catch(e){return[]}return i(r,n)};const i=(e,r)=>{if(!r)return[];const i=new Map,o=new Set;(0,t.visit)(e,{FragmentDefinition(e){i.set(e.name.value,!0)},FragmentSpread(e){o.has(e.name.value)||o.add(e.name.value)}});const a=new Set;o.forEach(e=>{!i.has(e)&&r.has(e)&&a.add((0,n.default)(r.get(e)))});const s=[];return a.forEach(e=>{(0,t.visit)(e,{FragmentSpread(e){!o.has(e.name.value)&&r.get(e.name.value)&&(a.add((0,n.default)(r.get(e.name.value))),o.add(e.name.value))}}),i.has(e.name.value)||s.push(e)}),s};e.getFragmentDependenciesForAST=i})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";function t(e,t){if(null!=e)return e;var n=new Error(void 0!==t?t:"Got unexpected "+e);throw n.framesToPop=1,n}e.exports=t,e.exports.default=t,Object.defineProperty(e.exports,"__esModule",{value:!0})})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(12)],void 0===(o="function"==typeof(r=function(e,t){"use strict";function n(e,t){e.push(t)}function r(e,r){const i=[];return r&&n(i,"```graphql\n"),function e(r,i){(0,t.isNonNullType)(i)?(e(r,i.ofType),n(r,"!")):(0,t.isListType)(i)?(n(r,"["),e(r,i.ofType),n(r,"]")):n(r,i.name)}(i,e),r&&n(i,"\n```"),i.join("")}Object.defineProperty(e,"__esModule",{value:!0}),e.getVariablesJSONSchema=function(e,n){const o={$schema:"https://json-schema.org/draft/2020-12/schema",type:"object",properties:{},required:[]};return e&&Object.entries(e).forEach(([e,a])=>{var s;const{definition:l,required:c,definitions:u}=function e(n,o){var a;let s=!1,l=Object.create(null);const c=Object.create(null);if("defaultValue"in n&&void 0!==n.defaultValue&&(l.default=n.defaultValue),(0,t.isEnumType)(n)&&(l.type="string",l.enum=n.getValues().map(e=>e.name)),(0,t.isScalarType)(n)&&(l.type=null!==(a=i[n.name])&&void 0!==a?a:"any"),(0,t.isListType)(n)){l.type="array";const{definition:t,definitions:r}=e(n.ofType,o);t.$ref?l.items={$ref:t.$ref}:l.items=t,r&&Object.keys(r).forEach(e=>{c[e]=r[e]})}if((0,t.isNonNullType)(n)){s=!0;const{definition:t,definitions:r}=e(n.ofType,o);l=t,r&&Object.keys(r).forEach(e=>{c[e]=r[e]})}if((0,t.isInputObjectType)(n)){l.$ref="#/definitions/"+n.name;const t=n.getFields(),i={type:"object",properties:{},required:[]};n.description?(i.description=n.description+"\n"+r(n),(null==o?void 0:o.useMarkdownDescription)&&(i.markdownDescription=n.description+"\n"+r(n,!0))):(i.description=r(n),(null==o?void 0:o.useMarkdownDescription)&&(i.markdownDescription=r(n,!0))),Object.keys(t).forEach(n=>{const a=t[n],{required:s,definition:l,definitions:u}=e(a.type,o),{definition:f}=e(a,o);i.properties[n]=Object.assign(Object.assign({},l),f);const d=r(a.type);if(i.properties[n].description=a.description?a.description+"\n"+d:d,null==o?void 0:o.useMarkdownDescription){const e=r(a.type,!0);i.properties[n].markdownDescription=a.description?a.description+"\n"+e:e}s&&i.required.push(n),u&&Object.keys(u).map(e=>{c[e]=u[e]})}),c[n.name]=i}return"description"in n&&!(0,t.isScalarType)(n)&&n.description&&!l.description?(l.description=n.description+"\n"+r(n),(null==o?void 0:o.useMarkdownDescription)&&(l.markdownDescription=n.description+"\n"+r(n,!0))):(l.description=r(n),(null==o?void 0:o.useMarkdownDescription)&&(l.markdownDescription=r(n,!0))),{required:s,definition:l,definitions:c}}(a,n);o.properties[e]=l,c&&(null===(s=o.required)||void 0===s||s.push(e)),u&&(o.definitions=Object.assign(Object.assign({},null==o?void 0:o.definitions),u))}),o},e.defaultJSONSchemaOptions=void 0,e.defaultJSONSchemaOptions={useMarkdownDescription:!1};const i={Int:"integer",String:"string",Float:"number",ID:"string",Boolean:"boolean",DateTime:"string"}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(12)],void 0===(o="function"==typeof(r=function(e,t){"use strict";function n(e,t){const n=e.split("\n").slice(0,t.line);return t.character+n.map(e=>e.length+1).reduce((e,t)=>e+t,0)}Object.defineProperty(e,"__esModule",{value:!0}),e.getASTNodeAtPosition=function(e,r,i){const o=n(e,i);let a;return(0,t.visit)(r,{enter(e){if(!("Name"!==e.kind&&e.loc&&e.loc.start<=o&&o<=e.loc.end))return!1;a=e},leave(e){if(e.loc&&e.loc.start<=o&&o<=e.loc.end)return!1}}),a},e.pointToOffset=n})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.offsetToPosition=r,e.locToRange=function(e,n){const i=r(e,n.start),o=r(e,n.end);return new t(i,o)},e.Position=e.Range=void 0;class t{constructor(e,t){this.containsPosition=e=>this.start.line===e.line?this.start.character<=e.character:this.end.line===e.line?this.end.character>=e.character:this.start.line<=e.line&&this.end.line>=e.line,this.start=e,this.end=t}setStart(e,t){this.start=new n(e,t)}setEnd(e,t){this.end=new n(e,t)}}e.Range=t;class n{constructor(e,t){this.lessThanOrEqualTo=e=>this.linee!==t.NoUnusedFragmentsRule&&e!==t.ExecutableDefinitionsRule&&(!o||e!==t.KnownFragmentNamesRule));return i&&Array.prototype.push.apply(s,i),a&&Array.prototype.push.apply(s,n),(0,t.validate)(e,r,s).filter(e=>{if(-1!==e.message.indexOf("Unknown directive")&&e.nodes){const n=e.nodes[0];if(n&&n.kind===t.Kind.DIRECTIVE){const e=n.name.value;if("arguments"===e||"argumentDefinitions"===e)return!1}}return!0})};const n=[t.LoneSchemaDefinitionRule,t.UniqueOperationTypesRule,t.UniqueTypeNamesRule,t.UniqueEnumValueNamesRule,t.UniqueFieldDefinitionNamesRule,t.UniqueDirectiveNamesRule,t.KnownTypeNamesRule,t.KnownDirectivesRule,t.UniqueDirectivesPerLocationRule,t.PossibleTypeExtensionsRule,t.UniqueArgumentNamesRule,t.UniqueInputFieldNamesRule]})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(12),n(61)],void 0===(o="function"==typeof(r=function(e,t,n){"use strict";function r(e,r){const i=r?(0,n.collectVariables)(r,e):void 0,o=[];return(0,t.visit)(e,{OperationDefinition(e){o.push(e)}}),{variableToType:i,operations:o}}function i(e,n){if(n)try{const i=(0,t.parse)(n);return Object.assign(Object.assign({},r(i,e)),{documentAST:i})}catch(e){return}}Object.defineProperty(e,"__esModule",{value:!0}),e.getOperationASTFacts=r,e.default=i,e.getQueryFacts=void 0;const o=i;e.getQueryFacts=o})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(57),n(12),n(44),n(64),n(62),n(60),n(63),n(33)],void 0===(o="function"==typeof(r=function(e,t,n,r,i,o,a,s,l){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.GraphQLLanguageService=void 0;var c=function(e,t,n,r){return new(n||(n=Promise))((function(i,o){function a(e){try{l(r.next(e))}catch(e){o(e)}}function s(e){try{l(r.throw(e))}catch(e){o(e)}}function l(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(a,s)}l((r=r.apply(e,t||[])).next())}))};const{FRAGMENT_DEFINITION:u,OBJECT_TYPE_DEFINITION:f,INTERFACE_TYPE_DEFINITION:d,ENUM_TYPE_DEFINITION:p,UNION_TYPE_DEFINITION:h,SCALAR_TYPE_DEFINITION:m,INPUT_OBJECT_TYPE_DEFINITION:g,SCALAR_TYPE_EXTENSION:v,OBJECT_TYPE_EXTENSION:y,INTERFACE_TYPE_EXTENSION:b,UNION_TYPE_EXTENSION:T,ENUM_TYPE_EXTENSION:E,INPUT_OBJECT_TYPE_EXTENSION:O,DIRECTIVE_DEFINITION:_,FRAGMENT_SPREAD:C,OPERATION_DEFINITION:x,NAMED_TYPE:w}=n.Kind,k={[n.Kind.FIELD]:t.SymbolKind.Field,[n.Kind.OPERATION_DEFINITION]:t.SymbolKind.Class,[n.Kind.FRAGMENT_DEFINITION]:t.SymbolKind.Class,[n.Kind.FRAGMENT_SPREAD]:t.SymbolKind.Struct,[n.Kind.OBJECT_TYPE_DEFINITION]:t.SymbolKind.Class,[n.Kind.ENUM_TYPE_DEFINITION]:t.SymbolKind.Enum,[n.Kind.ENUM_VALUE_DEFINITION]:t.SymbolKind.EnumMember,[n.Kind.INPUT_OBJECT_TYPE_DEFINITION]:t.SymbolKind.Class,[n.Kind.INPUT_VALUE_DEFINITION]:t.SymbolKind.Field,[n.Kind.FIELD_DEFINITION]:t.SymbolKind.Field,[n.Kind.INTERFACE_TYPE_DEFINITION]:t.SymbolKind.Interface,[n.Kind.DOCUMENT]:t.SymbolKind.File,FieldWithArguments:t.SymbolKind.Method};function S(e){return"FieldDefinition"===e.kind&&e.children&&e.children.length>0?k.FieldWithArguments:k[e.kind]}e.GraphQLLanguageService=class{constructor(e){this._graphQLCache=e,this._graphQLConfig=e.getGraphQLConfig()}getConfigForURI(e){const t=this._graphQLCache.getProjectForFile(e);if(t)return t;throw Error("No config found for uri: "+e)}getDiagnostics(e,t,r){return c(this,void 0,void 0,(function*(){let i=!1;const a=this.getConfigForURI(t);if(!a)return[];const{schema:s,name:l,extensions:c}=a;try{const r=(0,n.parse)(e);s&&t===s||(i=r.definitions.some(e=>{switch(e.kind){case f:case d:case p:case h:case m:case g:case v:case y:case b:case T:case E:case O:case _:return!0}return!1}))}catch(t){const n=(0,o.getRange)(t.locations[0],e);return[{severity:o.DIAGNOSTIC_SEVERITY.Error,message:t.message,source:"GraphQL: Syntax",range:n}]}let u=e;const C=yield this._graphQLCache.getFragmentDefinitions(a);u=`${u} ${(yield this._graphQLCache.getFragmentDependencies(e,C)).reduce((e,t)=>`${e} ${(0,n.print)(t.definition)}`,"")}`;let x=null;try{x=(0,n.parse)(u)}catch(e){return[]}let w=null;(null==c?void 0:c.customValidationRules)&&"function"==typeof c.customValidationRules&&(w=c.customValidationRules(this._graphQLConfig));const k=yield this._graphQLCache.getSchema(l,i);return k?(0,o.validateQuery)(x,k,w,r):[]}))}getAutocompleteSuggestions(e,t,n){return c(this,void 0,void 0,(function*(){const i=this.getConfigForURI(n),o=yield this._graphQLCache.getSchema(i.name),a=yield this._graphQLCache.getFragmentDefinitions(i),s=Array.from(a).map(([,e])=>e.definition);return o?(0,r.getAutocompleteSuggestions)(o,e,t,void 0,s):[]}))}getHoverInformation(e,t,n,r){return c(this,void 0,void 0,(function*(){const o=this.getConfigForURI(n),a=yield this._graphQLCache.getSchema(o.name);return a?(0,i.getHoverInformation)(a,e,t,void 0,r):""}))}getDefinition(e,t,r){return c(this,void 0,void 0,(function*(){const i=this.getConfigForURI(r);let o;try{o=(0,n.parse)(e)}catch(e){return null}const s=(0,l.getASTNodeAtPosition)(e,o,t);if(s)switch(s.kind){case C:return this._getDefinitionForFragmentSpread(e,o,s,r,i);case u:case x:return(0,a.getDefinitionQueryResultForDefinitionNode)(r,e,s);case w:return this._getDefinitionForNamedType(e,o,s,r,i)}return null}))}getDocumentSymbols(e,t){return c(this,void 0,void 0,(function*(){const n=yield this.getOutline(e);if(!n)return[];const r=[],i=n.outlineTrees.map(e=>[null,e]);for(;i.length>0;){const e=i.pop();if(!e)return[];const[n,o]=e;if(!o)return[];r.push({name:o.representativeName,kind:S(o),location:{uri:t,range:{start:o.startPosition,end:o.endPosition}},containerName:n?n.representativeName:void 0}),i.push(...o.children.map(e=>[o,e]))}return r}))}_getDefinitionForNamedType(e,t,n,r,i){return c(this,void 0,void 0,(function*(){const o=yield this._graphQLCache.getObjectTypeDefinitions(i),s=yield this._graphQLCache.getObjectTypeDependenciesForAST(t,o),l=t.definitions.filter(e=>e.kind===f||e.kind===g||e.kind===p||e.kind===m||e.kind===d).map(t=>({filePath:r,content:e,definition:t}));return yield(0,a.getDefinitionQueryResultForNamedType)(e,n,s.concat(l))}))}_getDefinitionForFragmentSpread(e,t,n,r,i){return c(this,void 0,void 0,(function*(){const o=yield this._graphQLCache.getFragmentDefinitions(i),s=yield this._graphQLCache.getFragmentDependenciesForAST(t,o),l=t.definitions.filter(e=>e.kind===u).map(t=>({filePath:r,content:e,definition:t}));return yield(0,a.getDefinitionQueryResultForFragmentSpread)(e,n,s.concat(l))}))}getOutline(e){return c(this,void 0,void 0,(function*(){return(0,s.getOutline)(e)}))}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";var t;Object.defineProperty(e,"__esModule",{value:!0}),e.CompletionItemKind=e.FileChangeTypeKind=void 0,e.FileChangeTypeKind={Created:1,Changed:2,Deleted:3},e.CompletionItemKind=t,function(e){e.Text=1,e.Method=2,e.Function=3,e.Constructor=4,e.Field=5,e.Variable=6,e.Class=7,e.Interface=8,e.Module=9,e.Property=10,e.Unit=11,e.Value=12,e.Enum=13,e.Keyword=14,e.Snippet=15,e.Color=16,e.File=17,e.Reference=18,e.Folder=19,e.EnumMember=20,e.Constant=21,e.Struct=22,e.Event=23,e.Operator=24,e.TypeParameter=25}(t||(e.CompletionItemKind=t={}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14)],void 0===(o="function"==typeof(r=function(e,t){"use strict";function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var r;Object.defineProperty(e,"__esModule",{value:!0}),e.ExecuteButton=void 0,t=(r=t)&&r.__esModule?r:{default:r};class i extends t.default.Component{constructor(e){super(e),n(this,"_onClick",()=>{this.props.isRunning?this.props.onStop():this.props.onRun()}),n(this,"_onOptionSelected",e=>{this.setState({optionsOpen:!1}),this.props.onRun(e.name&&e.name.value)}),n(this,"_onOptionsOpen",e=>{let t=!0;const n=e.currentTarget;this.setState({highlight:null,optionsOpen:!0});let r=e=>{var i;t&&e.target===n?t=!1:(document.removeEventListener("mouseup",r),r=null,e.currentTarget&&(null===(i=n.parentNode)||void 0===i?void 0:i.compareDocumentPosition(e.currentTarget))&&Node.DOCUMENT_POSITION_CONTAINED_BY||this.setState({optionsOpen:!1}))};document.addEventListener("mouseup",r)}),this.state={optionsOpen:!1,highlight:null}}render(){const e=this.props.operations||[],n=this.state.optionsOpen,r=e&&e.length>1;let i,o=null;if(r&&n){const n=this.state.highlight;o=t.default.createElement("ul",{className:"execute-options"},e.map((e,r)=>{const i=e.name?e.name.value:``;return t.default.createElement("li",{key:`${i}-${r}`,className:e===n?"selected":void 0,onMouseOver:()=>this.setState({highlight:e}),onMouseOut:()=>this.setState({highlight:null}),onMouseUp:()=>this._onOptionSelected(e)},i)}))}!this.props.isRunning&&r||(i=this._onClick);let a=()=>{};this.props.isRunning||!r||n||(a=this._onOptionsOpen);const s=this.props.isRunning?t.default.createElement("path",{d:"M 10 10 L 23 10 L 23 23 L 10 23 z"}):t.default.createElement("path",{d:"M 11 9 L 24 16 L 11 23 z"});return t.default.createElement("div",{className:"execute-button-wrap"},t.default.createElement("button",{type:"button",className:"execute-button",onMouseDown:a,onClick:i,title:"Execute Query (Ctrl-Enter)"},t.default.createElement("svg",{width:"34",height:"34"},s)),o)}}e.ExecuteButton=i})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14)],void 0===(o="function"==typeof(r=function(e,t){"use strict";function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e){if("string"!==e.type)return;const t=e.string.slice(1).slice(0,-1).trim();try{const e=window.location;return new URL(t,e.protocol+"//"+e.host)}catch(e){return}}var i;Object.defineProperty(e,"__esModule",{value:!0}),e.ImagePreview=void 0,t=(i=t)&&i.__esModule?i:{default:i};class o extends t.default.Component{constructor(...e){super(...e),n(this,"_node",null),n(this,"state",{width:null,height:null,src:null,mime:null})}static shouldRender(e){const t=r(e);return!!t&&function(e){return/(bmp|gif|jpeg|jpg|png|svg)$/.test(e.pathname)}(t)}componentDidMount(){this._updateMetadata()}componentDidUpdate(){this._updateMetadata()}render(){var e;let n=null;if(null!==this.state.width&&null!==this.state.height){let e=this.state.width+"x"+this.state.height;null!==this.state.mime&&(e+=" "+this.state.mime),n=t.default.createElement("div",null,e)}return t.default.createElement("div",null,t.default.createElement("img",{onLoad:()=>this._updateMetadata(),ref:e=>{this._node=e},src:null===(e=r(this.props.token))||void 0===e?void 0:e.href}),n)}_updateMetadata(){if(!this._node)return;const e=this._node.naturalWidth,t=this._node.naturalHeight,n=this._node.src;n!==this.state.src&&(this.setState({src:n}),fetch(n,{method:"HEAD"}).then(e=>{this.setState({mime:e.headers.get("Content-Type")})})),e===this.state.width&&t===this.state.height||this.setState({height:t,width:e})}}e.ImagePreview=o})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14)],void 0===(o="function"==typeof(r=function(e,t){"use strict";var n;Object.defineProperty(e,"__esModule",{value:!0}),e.ToolbarButton=void 0,t=(n=t)&&n.__esModule?n:{default:n};class r extends t.default.Component{constructor(e){super(e),function(e,t,n){t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n}(this,"handleClick",()=>{try{this.props.onClick(),this.setState({error:null})}catch(e){this.setState({error:e})}}),this.state={error:null}}render(){const{error:e}=this.state;return t.default.createElement("button",{className:"toolbar-button"+(e?" error":""),onClick:this.handleClick,title:e?e.message:this.props.title,"aria-invalid":e?"true":"false"},this.props.label)}}e.ToolbarButton=r})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14)],void 0===(o="function"==typeof(r=function(e,t){"use strict";var n;Object.defineProperty(e,"__esModule",{value:!0}),e.ToolbarGroup=function({children:e}){return t.default.createElement("div",{className:"toolbar-button-group"},e)},t=(n=t)&&n.__esModule?n:{default:n}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14)],void 0===(o="function"==typeof(r=function(e,t){"use strict";function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var r;Object.defineProperty(e,"__esModule",{value:!0}),e.ToolbarMenuItem=e.ToolbarMenu=void 0,t=(r=t)&&r.__esModule?r:{default:r};class i extends t.default.Component{constructor(e){super(e),n(this,"_node",null),n(this,"_listener",null),n(this,"handleOpen",e=>{o(e),this.setState({visible:!0}),this._subscribe()}),this.state={visible:!1}}componentWillUnmount(){this._release()}render(){const e=this.state.visible;return t.default.createElement("a",{className:"toolbar-menu toolbar-button",onClick:this.handleOpen.bind(this),onMouseDown:o,ref:e=>{e&&(this._node=e)},title:this.props.title},this.props.label,t.default.createElement("svg",{width:"14",height:"8"},t.default.createElement("path",{fill:"#666",d:"M 5 1.5 L 14 1.5 L 9.5 7 z"})),t.default.createElement("ul",{className:"toolbar-menu-items"+(e?" open":"")},this.props.children))}_subscribe(){this._listener||(this._listener=this.handleClick.bind(this),document.addEventListener("click",this._listener))}_release(){this._listener&&(document.removeEventListener("click",this._listener),this._listener=null)}handleClick(e){this._node!==e.target&&(e.preventDefault(),this.setState({visible:!1}),this._release())}}function o(e){e.preventDefault()}e.ToolbarMenu=i,e.ToolbarMenuItem=({onSelect:e,title:n,label:r})=>t.default.createElement("li",{onMouseOver:e=>{e.currentTarget.className="hover"},onMouseOut:e=>{e.currentTarget.className=""},onMouseDown:o,onMouseUp:e,title:n},r)})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(46),n(179),n(50),n(36)],void 0===(o="function"==typeof(r=function(e,t,r,i,o,a){"use strict";function s(e){return e&&e.__esModule?e:{default:e}}function l(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}Object.defineProperty(e,"__esModule",{value:!0}),e.QueryEditor=void 0,t=s(t),r=s(r),o=s(o),a=s(a);const c=new r.default,u=/^[a-zA-Z0-9_@(]$/;class f extends t.default.Component{constructor(e){super(e),l(this,"cachedValue",void 0),l(this,"editor",null),l(this,"ignoreChangeEvent",!1),l(this,"_node",null),l(this,"_onKeyUp",(e,t)=>{u.test(t.key)&&this.editor&&this.editor.execCommand("autocomplete")}),l(this,"_onEdit",()=>{!this.ignoreChangeEvent&&this.editor&&(this.cachedValue=this.editor.getValue(),this.props.onEdit&&this.props.onEdit(this.cachedValue))}),l(this,"_onHasCompletion",(e,t)=>{(0,o.default)(e,t,this.props.onHintInformationRender)}),this.cachedValue=e.value||""}componentDidMount(){var e,t,r;const i=n(10);n(37),n(181),n(38),n(51),n(39),n(40),n(73),n(29),n(41),n(30),n(52),n(42),n(183),n(184),n(185),n(186),n(188);const o=this.editor=i(this._node,{value:this.props.value||"",lineNumbers:!0,tabSize:2,mode:"graphql",theme:this.props.editorTheme||"graphiql",keyMap:"sublime",autoCloseBrackets:!0,matchBrackets:!0,showCursorWhenSelecting:!0,readOnly:!!this.props.readOnly&&"nocursor",foldGutter:{minFoldSize:4},lint:{schema:this.props.schema,validationRules:null!==(e=this.props.validationRules)&&void 0!==e?e:null,externalFragments:null===(t=this.props)||void 0===t?void 0:t.externalFragments},hintOptions:{schema:this.props.schema,closeOnUnfocus:!1,completeSingle:!1,container:this._node,externalFragments:null===(r=this.props)||void 0===r?void 0:r.externalFragments},info:{schema:this.props.schema,renderDescription:e=>c.render(e),onClick:e=>this.props.onClickReference&&this.props.onClickReference(e)},jump:{schema:this.props.schema,onClick:e=>this.props.onClickReference&&this.props.onClickReference(e)},gutters:["CodeMirror-linenumbers","CodeMirror-foldgutter"],extraKeys:{"Cmd-Space":()=>o.showHint({completeSingle:!0,container:this._node}),"Ctrl-Space":()=>o.showHint({completeSingle:!0,container:this._node}),"Alt-Space":()=>o.showHint({completeSingle:!0,container:this._node}),"Shift-Space":()=>o.showHint({completeSingle:!0,container:this._node}),"Shift-Alt-Space":()=>o.showHint({completeSingle:!0,container:this._node}),"Cmd-Enter":()=>{this.props.onRunQuery&&this.props.onRunQuery()},"Ctrl-Enter":()=>{this.props.onRunQuery&&this.props.onRunQuery()},"Shift-Ctrl-C":()=>{this.props.onCopyQuery&&this.props.onCopyQuery()},"Shift-Ctrl-P":()=>{this.props.onPrettifyQuery&&this.props.onPrettifyQuery()},"Shift-Ctrl-F":()=>{this.props.onPrettifyQuery&&this.props.onPrettifyQuery()},"Shift-Ctrl-M":()=>{this.props.onMergeQuery&&this.props.onMergeQuery()},...a.default,"Cmd-S":()=>{this.props.onRunQuery},"Ctrl-S":()=>{this.props.onRunQuery}}});o&&(o.on("change",this._onEdit),o.on("keyup",this._onKeyUp),o.on("hasCompletion",this._onHasCompletion),o.on("beforeChange",this._onBeforeChange))}componentDidUpdate(e){const t=n(10);this.ignoreChangeEvent=!0,this.props.schema!==e.schema&&this.editor&&(this.editor.options.lint.schema=this.props.schema,this.editor.options.hintOptions.schema=this.props.schema,this.editor.options.info.schema=this.props.schema,this.editor.options.jump.schema=this.props.schema,t.signal(this.editor,"change",this.editor)),this.props.value!==e.value&&this.props.value!==this.cachedValue&&this.editor&&(this.cachedValue=this.props.value,this.editor.setValue(this.props.value)),this.ignoreChangeEvent=!1}componentWillUnmount(){this.editor&&(this.editor.off("change",this._onEdit),this.editor.off("keyup",this._onKeyUp),this.editor.off("hasCompletion",this._onHasCompletion),this.editor=null)}render(){return t.default.createElement("section",{className:"query-editor","aria-label":"Query Editor",ref:e=>{this._node=e}})}getCodeMirror(){return this.editor}getClientHeight(){return this._node&&this._node.clientHeight}_onBeforeChange(e,t){if("paste"===t.origin){const e=t.text.map(i.normalizeWhitespace);t.update(t.from,t.to,e)}}}e.QueryEditor=f})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=n(11),r=n(132),i=n(136),o=n(137),a=n(145),s=n(159),l=n(172),c=n(66),u=n(174),f={default:n(176),zero:n(177),commonmark:n(178)},d=/^(vbscript|javascript|file|data):/,p=/^data:image\/(gif|png|jpeg|webp);/;function h(e){var t=e.trim().toLowerCase();return!d.test(t)||!!p.test(t)}var m=["http:","https:","mailto:"];function g(e){var t=c.parse(e,!0);if(t.hostname&&(!t.protocol||m.indexOf(t.protocol)>=0))try{t.hostname=u.toASCII(t.hostname)}catch(e){}return c.encode(c.format(t))}function v(e){var t=c.parse(e,!0);if(t.hostname&&(!t.protocol||m.indexOf(t.protocol)>=0))try{t.hostname=u.toUnicode(t.hostname)}catch(e){}return c.decode(c.format(t),c.decode.defaultChars+"%")}function y(e,n){if(!(this instanceof y))return new y(e,n);n||t.isString(e)||(n=e||{},e="default"),this.inline=new s,this.block=new a,this.core=new o,this.renderer=new i,this.linkify=new l,this.validateLink=h,this.normalizeLink=g,this.normalizeLinkText=v,this.utils=t,this.helpers=t.assign({},r),this.options={},this.configure(e),n&&this.set(n)}y.prototype.set=function(e){return t.assign(this.options,e),this},y.prototype.configure=function(e){var n,r=this;if(t.isString(e)&&!(e=f[n=e]))throw new Error('Wrong `markdown-it` preset "'+n+'", check name');if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&r.set(e.options),e.components&&Object.keys(e.components).forEach((function(t){e.components[t].rules&&r[t].ruler.enableOnly(e.components[t].rules),e.components[t].rules2&&r[t].ruler2.enableOnly(e.components[t].rules2)})),this},y.prototype.enable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(t){n=n.concat(this[t].ruler.enable(e,!0))}),this),n=n.concat(this.inline.ruler2.enable(e,!0));var r=e.filter((function(e){return n.indexOf(e)<0}));if(r.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+r);return this},y.prototype.disable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(t){n=n.concat(this[t].ruler.disable(e,!0))}),this),n=n.concat(this.inline.ruler2.disable(e,!0));var r=e.filter((function(e){return n.indexOf(e)<0}));if(r.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+r);return this},y.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this},y.prototype.parse=function(e,t){if("string"!=typeof e)throw new Error("Input data should be a String");var n=new this.core.State(e,this,t);return this.core.process(n),n.tokens},y.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)},y.prototype.parseInline=function(e,t){var n=new this.core.State(e,this,t);return n.inlineMode=!0,this.core.process(n),n.tokens},y.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)},e.exports=y})?r.apply(t,i):r)||(e.exports=o)},function(e){e.exports=JSON.parse('{"Aacute":"Á","aacute":"á","Abreve":"Ă","abreve":"ă","ac":"∾","acd":"∿","acE":"∾̳","Acirc":"Â","acirc":"â","acute":"´","Acy":"А","acy":"а","AElig":"Æ","aelig":"æ","af":"⁡","Afr":"𝔄","afr":"𝔞","Agrave":"À","agrave":"à","alefsym":"ℵ","aleph":"ℵ","Alpha":"Α","alpha":"α","Amacr":"Ā","amacr":"ā","amalg":"⨿","amp":"&","AMP":"&","andand":"⩕","And":"⩓","and":"∧","andd":"⩜","andslope":"⩘","andv":"⩚","ang":"∠","ange":"⦤","angle":"∠","angmsdaa":"⦨","angmsdab":"⦩","angmsdac":"⦪","angmsdad":"⦫","angmsdae":"⦬","angmsdaf":"⦭","angmsdag":"⦮","angmsdah":"⦯","angmsd":"∡","angrt":"∟","angrtvb":"⊾","angrtvbd":"⦝","angsph":"∢","angst":"Å","angzarr":"⍼","Aogon":"Ą","aogon":"ą","Aopf":"𝔸","aopf":"𝕒","apacir":"⩯","ap":"≈","apE":"⩰","ape":"≊","apid":"≋","apos":"\'","ApplyFunction":"⁡","approx":"≈","approxeq":"≊","Aring":"Å","aring":"å","Ascr":"𝒜","ascr":"𝒶","Assign":"≔","ast":"*","asymp":"≈","asympeq":"≍","Atilde":"Ã","atilde":"ã","Auml":"Ä","auml":"ä","awconint":"∳","awint":"⨑","backcong":"≌","backepsilon":"϶","backprime":"‵","backsim":"∽","backsimeq":"⋍","Backslash":"∖","Barv":"⫧","barvee":"⊽","barwed":"⌅","Barwed":"⌆","barwedge":"⌅","bbrk":"⎵","bbrktbrk":"⎶","bcong":"≌","Bcy":"Б","bcy":"б","bdquo":"„","becaus":"∵","because":"∵","Because":"∵","bemptyv":"⦰","bepsi":"϶","bernou":"ℬ","Bernoullis":"ℬ","Beta":"Β","beta":"β","beth":"ℶ","between":"≬","Bfr":"𝔅","bfr":"𝔟","bigcap":"⋂","bigcirc":"◯","bigcup":"⋃","bigodot":"⨀","bigoplus":"⨁","bigotimes":"⨂","bigsqcup":"⨆","bigstar":"★","bigtriangledown":"▽","bigtriangleup":"△","biguplus":"⨄","bigvee":"⋁","bigwedge":"⋀","bkarow":"⤍","blacklozenge":"⧫","blacksquare":"▪","blacktriangle":"▴","blacktriangledown":"▾","blacktriangleleft":"◂","blacktriangleright":"▸","blank":"␣","blk12":"▒","blk14":"░","blk34":"▓","block":"█","bne":"=⃥","bnequiv":"≡⃥","bNot":"⫭","bnot":"⌐","Bopf":"𝔹","bopf":"𝕓","bot":"⊥","bottom":"⊥","bowtie":"⋈","boxbox":"⧉","boxdl":"┐","boxdL":"╕","boxDl":"╖","boxDL":"╗","boxdr":"┌","boxdR":"╒","boxDr":"╓","boxDR":"╔","boxh":"─","boxH":"═","boxhd":"┬","boxHd":"╤","boxhD":"╥","boxHD":"╦","boxhu":"┴","boxHu":"╧","boxhU":"╨","boxHU":"╩","boxminus":"⊟","boxplus":"⊞","boxtimes":"⊠","boxul":"┘","boxuL":"╛","boxUl":"╜","boxUL":"╝","boxur":"└","boxuR":"╘","boxUr":"╙","boxUR":"╚","boxv":"│","boxV":"║","boxvh":"┼","boxvH":"╪","boxVh":"╫","boxVH":"╬","boxvl":"┤","boxvL":"╡","boxVl":"╢","boxVL":"╣","boxvr":"├","boxvR":"╞","boxVr":"╟","boxVR":"╠","bprime":"‵","breve":"˘","Breve":"˘","brvbar":"¦","bscr":"𝒷","Bscr":"ℬ","bsemi":"⁏","bsim":"∽","bsime":"⋍","bsolb":"⧅","bsol":"\\\\","bsolhsub":"⟈","bull":"•","bullet":"•","bump":"≎","bumpE":"⪮","bumpe":"≏","Bumpeq":"≎","bumpeq":"≏","Cacute":"Ć","cacute":"ć","capand":"⩄","capbrcup":"⩉","capcap":"⩋","cap":"∩","Cap":"⋒","capcup":"⩇","capdot":"⩀","CapitalDifferentialD":"ⅅ","caps":"∩︀","caret":"⁁","caron":"ˇ","Cayleys":"ℭ","ccaps":"⩍","Ccaron":"Č","ccaron":"č","Ccedil":"Ç","ccedil":"ç","Ccirc":"Ĉ","ccirc":"ĉ","Cconint":"∰","ccups":"⩌","ccupssm":"⩐","Cdot":"Ċ","cdot":"ċ","cedil":"¸","Cedilla":"¸","cemptyv":"⦲","cent":"¢","centerdot":"·","CenterDot":"·","cfr":"𝔠","Cfr":"ℭ","CHcy":"Ч","chcy":"ч","check":"✓","checkmark":"✓","Chi":"Χ","chi":"χ","circ":"ˆ","circeq":"≗","circlearrowleft":"↺","circlearrowright":"↻","circledast":"⊛","circledcirc":"⊚","circleddash":"⊝","CircleDot":"⊙","circledR":"®","circledS":"Ⓢ","CircleMinus":"⊖","CirclePlus":"⊕","CircleTimes":"⊗","cir":"○","cirE":"⧃","cire":"≗","cirfnint":"⨐","cirmid":"⫯","cirscir":"⧂","ClockwiseContourIntegral":"∲","CloseCurlyDoubleQuote":"”","CloseCurlyQuote":"’","clubs":"♣","clubsuit":"♣","colon":":","Colon":"∷","Colone":"⩴","colone":"≔","coloneq":"≔","comma":",","commat":"@","comp":"∁","compfn":"∘","complement":"∁","complexes":"ℂ","cong":"≅","congdot":"⩭","Congruent":"≡","conint":"∮","Conint":"∯","ContourIntegral":"∮","copf":"𝕔","Copf":"ℂ","coprod":"∐","Coproduct":"∐","copy":"©","COPY":"©","copysr":"℗","CounterClockwiseContourIntegral":"∳","crarr":"↵","cross":"✗","Cross":"⨯","Cscr":"𝒞","cscr":"𝒸","csub":"⫏","csube":"⫑","csup":"⫐","csupe":"⫒","ctdot":"⋯","cudarrl":"⤸","cudarrr":"⤵","cuepr":"⋞","cuesc":"⋟","cularr":"↶","cularrp":"⤽","cupbrcap":"⩈","cupcap":"⩆","CupCap":"≍","cup":"∪","Cup":"⋓","cupcup":"⩊","cupdot":"⊍","cupor":"⩅","cups":"∪︀","curarr":"↷","curarrm":"⤼","curlyeqprec":"⋞","curlyeqsucc":"⋟","curlyvee":"⋎","curlywedge":"⋏","curren":"¤","curvearrowleft":"↶","curvearrowright":"↷","cuvee":"⋎","cuwed":"⋏","cwconint":"∲","cwint":"∱","cylcty":"⌭","dagger":"†","Dagger":"‡","daleth":"ℸ","darr":"↓","Darr":"↡","dArr":"⇓","dash":"‐","Dashv":"⫤","dashv":"⊣","dbkarow":"⤏","dblac":"˝","Dcaron":"Ď","dcaron":"ď","Dcy":"Д","dcy":"д","ddagger":"‡","ddarr":"⇊","DD":"ⅅ","dd":"ⅆ","DDotrahd":"⤑","ddotseq":"⩷","deg":"°","Del":"∇","Delta":"Δ","delta":"δ","demptyv":"⦱","dfisht":"⥿","Dfr":"𝔇","dfr":"𝔡","dHar":"⥥","dharl":"⇃","dharr":"⇂","DiacriticalAcute":"´","DiacriticalDot":"˙","DiacriticalDoubleAcute":"˝","DiacriticalGrave":"`","DiacriticalTilde":"˜","diam":"⋄","diamond":"⋄","Diamond":"⋄","diamondsuit":"♦","diams":"♦","die":"¨","DifferentialD":"ⅆ","digamma":"ϝ","disin":"⋲","div":"÷","divide":"÷","divideontimes":"⋇","divonx":"⋇","DJcy":"Ђ","djcy":"ђ","dlcorn":"⌞","dlcrop":"⌍","dollar":"$","Dopf":"𝔻","dopf":"𝕕","Dot":"¨","dot":"˙","DotDot":"⃜","doteq":"≐","doteqdot":"≑","DotEqual":"≐","dotminus":"∸","dotplus":"∔","dotsquare":"⊡","doublebarwedge":"⌆","DoubleContourIntegral":"∯","DoubleDot":"¨","DoubleDownArrow":"⇓","DoubleLeftArrow":"⇐","DoubleLeftRightArrow":"⇔","DoubleLeftTee":"⫤","DoubleLongLeftArrow":"⟸","DoubleLongLeftRightArrow":"⟺","DoubleLongRightArrow":"⟹","DoubleRightArrow":"⇒","DoubleRightTee":"⊨","DoubleUpArrow":"⇑","DoubleUpDownArrow":"⇕","DoubleVerticalBar":"∥","DownArrowBar":"⤓","downarrow":"↓","DownArrow":"↓","Downarrow":"⇓","DownArrowUpArrow":"⇵","DownBreve":"̑","downdownarrows":"⇊","downharpoonleft":"⇃","downharpoonright":"⇂","DownLeftRightVector":"⥐","DownLeftTeeVector":"⥞","DownLeftVectorBar":"⥖","DownLeftVector":"↽","DownRightTeeVector":"⥟","DownRightVectorBar":"⥗","DownRightVector":"⇁","DownTeeArrow":"↧","DownTee":"⊤","drbkarow":"⤐","drcorn":"⌟","drcrop":"⌌","Dscr":"𝒟","dscr":"𝒹","DScy":"Ѕ","dscy":"ѕ","dsol":"⧶","Dstrok":"Đ","dstrok":"đ","dtdot":"⋱","dtri":"▿","dtrif":"▾","duarr":"⇵","duhar":"⥯","dwangle":"⦦","DZcy":"Џ","dzcy":"џ","dzigrarr":"⟿","Eacute":"É","eacute":"é","easter":"⩮","Ecaron":"Ě","ecaron":"ě","Ecirc":"Ê","ecirc":"ê","ecir":"≖","ecolon":"≕","Ecy":"Э","ecy":"э","eDDot":"⩷","Edot":"Ė","edot":"ė","eDot":"≑","ee":"ⅇ","efDot":"≒","Efr":"𝔈","efr":"𝔢","eg":"⪚","Egrave":"È","egrave":"è","egs":"⪖","egsdot":"⪘","el":"⪙","Element":"∈","elinters":"⏧","ell":"ℓ","els":"⪕","elsdot":"⪗","Emacr":"Ē","emacr":"ē","empty":"∅","emptyset":"∅","EmptySmallSquare":"◻","emptyv":"∅","EmptyVerySmallSquare":"▫","emsp13":" ","emsp14":" ","emsp":" ","ENG":"Ŋ","eng":"ŋ","ensp":" ","Eogon":"Ę","eogon":"ę","Eopf":"𝔼","eopf":"𝕖","epar":"⋕","eparsl":"⧣","eplus":"⩱","epsi":"ε","Epsilon":"Ε","epsilon":"ε","epsiv":"ϵ","eqcirc":"≖","eqcolon":"≕","eqsim":"≂","eqslantgtr":"⪖","eqslantless":"⪕","Equal":"⩵","equals":"=","EqualTilde":"≂","equest":"≟","Equilibrium":"⇌","equiv":"≡","equivDD":"⩸","eqvparsl":"⧥","erarr":"⥱","erDot":"≓","escr":"ℯ","Escr":"ℰ","esdot":"≐","Esim":"⩳","esim":"≂","Eta":"Η","eta":"η","ETH":"Ð","eth":"ð","Euml":"Ë","euml":"ë","euro":"€","excl":"!","exist":"∃","Exists":"∃","expectation":"ℰ","exponentiale":"ⅇ","ExponentialE":"ⅇ","fallingdotseq":"≒","Fcy":"Ф","fcy":"ф","female":"♀","ffilig":"ffi","fflig":"ff","ffllig":"ffl","Ffr":"𝔉","ffr":"𝔣","filig":"fi","FilledSmallSquare":"◼","FilledVerySmallSquare":"▪","fjlig":"fj","flat":"♭","fllig":"fl","fltns":"▱","fnof":"ƒ","Fopf":"𝔽","fopf":"𝕗","forall":"∀","ForAll":"∀","fork":"⋔","forkv":"⫙","Fouriertrf":"ℱ","fpartint":"⨍","frac12":"½","frac13":"⅓","frac14":"¼","frac15":"⅕","frac16":"⅙","frac18":"⅛","frac23":"⅔","frac25":"⅖","frac34":"¾","frac35":"⅗","frac38":"⅜","frac45":"⅘","frac56":"⅚","frac58":"⅝","frac78":"⅞","frasl":"⁄","frown":"⌢","fscr":"𝒻","Fscr":"ℱ","gacute":"ǵ","Gamma":"Γ","gamma":"γ","Gammad":"Ϝ","gammad":"ϝ","gap":"⪆","Gbreve":"Ğ","gbreve":"ğ","Gcedil":"Ģ","Gcirc":"Ĝ","gcirc":"ĝ","Gcy":"Г","gcy":"г","Gdot":"Ġ","gdot":"ġ","ge":"≥","gE":"≧","gEl":"⪌","gel":"⋛","geq":"≥","geqq":"≧","geqslant":"⩾","gescc":"⪩","ges":"⩾","gesdot":"⪀","gesdoto":"⪂","gesdotol":"⪄","gesl":"⋛︀","gesles":"⪔","Gfr":"𝔊","gfr":"𝔤","gg":"≫","Gg":"⋙","ggg":"⋙","gimel":"ℷ","GJcy":"Ѓ","gjcy":"ѓ","gla":"⪥","gl":"≷","glE":"⪒","glj":"⪤","gnap":"⪊","gnapprox":"⪊","gne":"⪈","gnE":"≩","gneq":"⪈","gneqq":"≩","gnsim":"⋧","Gopf":"𝔾","gopf":"𝕘","grave":"`","GreaterEqual":"≥","GreaterEqualLess":"⋛","GreaterFullEqual":"≧","GreaterGreater":"⪢","GreaterLess":"≷","GreaterSlantEqual":"⩾","GreaterTilde":"≳","Gscr":"𝒢","gscr":"ℊ","gsim":"≳","gsime":"⪎","gsiml":"⪐","gtcc":"⪧","gtcir":"⩺","gt":">","GT":">","Gt":"≫","gtdot":"⋗","gtlPar":"⦕","gtquest":"⩼","gtrapprox":"⪆","gtrarr":"⥸","gtrdot":"⋗","gtreqless":"⋛","gtreqqless":"⪌","gtrless":"≷","gtrsim":"≳","gvertneqq":"≩︀","gvnE":"≩︀","Hacek":"ˇ","hairsp":" ","half":"½","hamilt":"ℋ","HARDcy":"Ъ","hardcy":"ъ","harrcir":"⥈","harr":"↔","hArr":"⇔","harrw":"↭","Hat":"^","hbar":"ℏ","Hcirc":"Ĥ","hcirc":"ĥ","hearts":"♥","heartsuit":"♥","hellip":"…","hercon":"⊹","hfr":"𝔥","Hfr":"ℌ","HilbertSpace":"ℋ","hksearow":"⤥","hkswarow":"⤦","hoarr":"⇿","homtht":"∻","hookleftarrow":"↩","hookrightarrow":"↪","hopf":"𝕙","Hopf":"ℍ","horbar":"―","HorizontalLine":"─","hscr":"𝒽","Hscr":"ℋ","hslash":"ℏ","Hstrok":"Ħ","hstrok":"ħ","HumpDownHump":"≎","HumpEqual":"≏","hybull":"⁃","hyphen":"‐","Iacute":"Í","iacute":"í","ic":"⁣","Icirc":"Î","icirc":"î","Icy":"И","icy":"и","Idot":"İ","IEcy":"Е","iecy":"е","iexcl":"¡","iff":"⇔","ifr":"𝔦","Ifr":"ℑ","Igrave":"Ì","igrave":"ì","ii":"ⅈ","iiiint":"⨌","iiint":"∭","iinfin":"⧜","iiota":"℩","IJlig":"IJ","ijlig":"ij","Imacr":"Ī","imacr":"ī","image":"ℑ","ImaginaryI":"ⅈ","imagline":"ℐ","imagpart":"ℑ","imath":"ı","Im":"ℑ","imof":"⊷","imped":"Ƶ","Implies":"⇒","incare":"℅","in":"∈","infin":"∞","infintie":"⧝","inodot":"ı","intcal":"⊺","int":"∫","Int":"∬","integers":"ℤ","Integral":"∫","intercal":"⊺","Intersection":"⋂","intlarhk":"⨗","intprod":"⨼","InvisibleComma":"⁣","InvisibleTimes":"⁢","IOcy":"Ё","iocy":"ё","Iogon":"Į","iogon":"į","Iopf":"𝕀","iopf":"𝕚","Iota":"Ι","iota":"ι","iprod":"⨼","iquest":"¿","iscr":"𝒾","Iscr":"ℐ","isin":"∈","isindot":"⋵","isinE":"⋹","isins":"⋴","isinsv":"⋳","isinv":"∈","it":"⁢","Itilde":"Ĩ","itilde":"ĩ","Iukcy":"І","iukcy":"і","Iuml":"Ï","iuml":"ï","Jcirc":"Ĵ","jcirc":"ĵ","Jcy":"Й","jcy":"й","Jfr":"𝔍","jfr":"𝔧","jmath":"ȷ","Jopf":"𝕁","jopf":"𝕛","Jscr":"𝒥","jscr":"𝒿","Jsercy":"Ј","jsercy":"ј","Jukcy":"Є","jukcy":"є","Kappa":"Κ","kappa":"κ","kappav":"ϰ","Kcedil":"Ķ","kcedil":"ķ","Kcy":"К","kcy":"к","Kfr":"𝔎","kfr":"𝔨","kgreen":"ĸ","KHcy":"Х","khcy":"х","KJcy":"Ќ","kjcy":"ќ","Kopf":"𝕂","kopf":"𝕜","Kscr":"𝒦","kscr":"𝓀","lAarr":"⇚","Lacute":"Ĺ","lacute":"ĺ","laemptyv":"⦴","lagran":"ℒ","Lambda":"Λ","lambda":"λ","lang":"⟨","Lang":"⟪","langd":"⦑","langle":"⟨","lap":"⪅","Laplacetrf":"ℒ","laquo":"«","larrb":"⇤","larrbfs":"⤟","larr":"←","Larr":"↞","lArr":"⇐","larrfs":"⤝","larrhk":"↩","larrlp":"↫","larrpl":"⤹","larrsim":"⥳","larrtl":"↢","latail":"⤙","lAtail":"⤛","lat":"⪫","late":"⪭","lates":"⪭︀","lbarr":"⤌","lBarr":"⤎","lbbrk":"❲","lbrace":"{","lbrack":"[","lbrke":"⦋","lbrksld":"⦏","lbrkslu":"⦍","Lcaron":"Ľ","lcaron":"ľ","Lcedil":"Ļ","lcedil":"ļ","lceil":"⌈","lcub":"{","Lcy":"Л","lcy":"л","ldca":"⤶","ldquo":"“","ldquor":"„","ldrdhar":"⥧","ldrushar":"⥋","ldsh":"↲","le":"≤","lE":"≦","LeftAngleBracket":"⟨","LeftArrowBar":"⇤","leftarrow":"←","LeftArrow":"←","Leftarrow":"⇐","LeftArrowRightArrow":"⇆","leftarrowtail":"↢","LeftCeiling":"⌈","LeftDoubleBracket":"⟦","LeftDownTeeVector":"⥡","LeftDownVectorBar":"⥙","LeftDownVector":"⇃","LeftFloor":"⌊","leftharpoondown":"↽","leftharpoonup":"↼","leftleftarrows":"⇇","leftrightarrow":"↔","LeftRightArrow":"↔","Leftrightarrow":"⇔","leftrightarrows":"⇆","leftrightharpoons":"⇋","leftrightsquigarrow":"↭","LeftRightVector":"⥎","LeftTeeArrow":"↤","LeftTee":"⊣","LeftTeeVector":"⥚","leftthreetimes":"⋋","LeftTriangleBar":"⧏","LeftTriangle":"⊲","LeftTriangleEqual":"⊴","LeftUpDownVector":"⥑","LeftUpTeeVector":"⥠","LeftUpVectorBar":"⥘","LeftUpVector":"↿","LeftVectorBar":"⥒","LeftVector":"↼","lEg":"⪋","leg":"⋚","leq":"≤","leqq":"≦","leqslant":"⩽","lescc":"⪨","les":"⩽","lesdot":"⩿","lesdoto":"⪁","lesdotor":"⪃","lesg":"⋚︀","lesges":"⪓","lessapprox":"⪅","lessdot":"⋖","lesseqgtr":"⋚","lesseqqgtr":"⪋","LessEqualGreater":"⋚","LessFullEqual":"≦","LessGreater":"≶","lessgtr":"≶","LessLess":"⪡","lesssim":"≲","LessSlantEqual":"⩽","LessTilde":"≲","lfisht":"⥼","lfloor":"⌊","Lfr":"𝔏","lfr":"𝔩","lg":"≶","lgE":"⪑","lHar":"⥢","lhard":"↽","lharu":"↼","lharul":"⥪","lhblk":"▄","LJcy":"Љ","ljcy":"љ","llarr":"⇇","ll":"≪","Ll":"⋘","llcorner":"⌞","Lleftarrow":"⇚","llhard":"⥫","lltri":"◺","Lmidot":"Ŀ","lmidot":"ŀ","lmoustache":"⎰","lmoust":"⎰","lnap":"⪉","lnapprox":"⪉","lne":"⪇","lnE":"≨","lneq":"⪇","lneqq":"≨","lnsim":"⋦","loang":"⟬","loarr":"⇽","lobrk":"⟦","longleftarrow":"⟵","LongLeftArrow":"⟵","Longleftarrow":"⟸","longleftrightarrow":"⟷","LongLeftRightArrow":"⟷","Longleftrightarrow":"⟺","longmapsto":"⟼","longrightarrow":"⟶","LongRightArrow":"⟶","Longrightarrow":"⟹","looparrowleft":"↫","looparrowright":"↬","lopar":"⦅","Lopf":"𝕃","lopf":"𝕝","loplus":"⨭","lotimes":"⨴","lowast":"∗","lowbar":"_","LowerLeftArrow":"↙","LowerRightArrow":"↘","loz":"◊","lozenge":"◊","lozf":"⧫","lpar":"(","lparlt":"⦓","lrarr":"⇆","lrcorner":"⌟","lrhar":"⇋","lrhard":"⥭","lrm":"‎","lrtri":"⊿","lsaquo":"‹","lscr":"𝓁","Lscr":"ℒ","lsh":"↰","Lsh":"↰","lsim":"≲","lsime":"⪍","lsimg":"⪏","lsqb":"[","lsquo":"‘","lsquor":"‚","Lstrok":"Ł","lstrok":"ł","ltcc":"⪦","ltcir":"⩹","lt":"<","LT":"<","Lt":"≪","ltdot":"⋖","lthree":"⋋","ltimes":"⋉","ltlarr":"⥶","ltquest":"⩻","ltri":"◃","ltrie":"⊴","ltrif":"◂","ltrPar":"⦖","lurdshar":"⥊","luruhar":"⥦","lvertneqq":"≨︀","lvnE":"≨︀","macr":"¯","male":"♂","malt":"✠","maltese":"✠","Map":"⤅","map":"↦","mapsto":"↦","mapstodown":"↧","mapstoleft":"↤","mapstoup":"↥","marker":"▮","mcomma":"⨩","Mcy":"М","mcy":"м","mdash":"—","mDDot":"∺","measuredangle":"∡","MediumSpace":" ","Mellintrf":"ℳ","Mfr":"𝔐","mfr":"𝔪","mho":"℧","micro":"µ","midast":"*","midcir":"⫰","mid":"∣","middot":"·","minusb":"⊟","minus":"−","minusd":"∸","minusdu":"⨪","MinusPlus":"∓","mlcp":"⫛","mldr":"…","mnplus":"∓","models":"⊧","Mopf":"𝕄","mopf":"𝕞","mp":"∓","mscr":"𝓂","Mscr":"ℳ","mstpos":"∾","Mu":"Μ","mu":"μ","multimap":"⊸","mumap":"⊸","nabla":"∇","Nacute":"Ń","nacute":"ń","nang":"∠⃒","nap":"≉","napE":"⩰̸","napid":"≋̸","napos":"ʼn","napprox":"≉","natural":"♮","naturals":"ℕ","natur":"♮","nbsp":" ","nbump":"≎̸","nbumpe":"≏̸","ncap":"⩃","Ncaron":"Ň","ncaron":"ň","Ncedil":"Ņ","ncedil":"ņ","ncong":"≇","ncongdot":"⩭̸","ncup":"⩂","Ncy":"Н","ncy":"н","ndash":"–","nearhk":"⤤","nearr":"↗","neArr":"⇗","nearrow":"↗","ne":"≠","nedot":"≐̸","NegativeMediumSpace":"​","NegativeThickSpace":"​","NegativeThinSpace":"​","NegativeVeryThinSpace":"​","nequiv":"≢","nesear":"⤨","nesim":"≂̸","NestedGreaterGreater":"≫","NestedLessLess":"≪","NewLine":"\\n","nexist":"∄","nexists":"∄","Nfr":"𝔑","nfr":"𝔫","ngE":"≧̸","nge":"≱","ngeq":"≱","ngeqq":"≧̸","ngeqslant":"⩾̸","nges":"⩾̸","nGg":"⋙̸","ngsim":"≵","nGt":"≫⃒","ngt":"≯","ngtr":"≯","nGtv":"≫̸","nharr":"↮","nhArr":"⇎","nhpar":"⫲","ni":"∋","nis":"⋼","nisd":"⋺","niv":"∋","NJcy":"Њ","njcy":"њ","nlarr":"↚","nlArr":"⇍","nldr":"‥","nlE":"≦̸","nle":"≰","nleftarrow":"↚","nLeftarrow":"⇍","nleftrightarrow":"↮","nLeftrightarrow":"⇎","nleq":"≰","nleqq":"≦̸","nleqslant":"⩽̸","nles":"⩽̸","nless":"≮","nLl":"⋘̸","nlsim":"≴","nLt":"≪⃒","nlt":"≮","nltri":"⋪","nltrie":"⋬","nLtv":"≪̸","nmid":"∤","NoBreak":"⁠","NonBreakingSpace":" ","nopf":"𝕟","Nopf":"ℕ","Not":"⫬","not":"¬","NotCongruent":"≢","NotCupCap":"≭","NotDoubleVerticalBar":"∦","NotElement":"∉","NotEqual":"≠","NotEqualTilde":"≂̸","NotExists":"∄","NotGreater":"≯","NotGreaterEqual":"≱","NotGreaterFullEqual":"≧̸","NotGreaterGreater":"≫̸","NotGreaterLess":"≹","NotGreaterSlantEqual":"⩾̸","NotGreaterTilde":"≵","NotHumpDownHump":"≎̸","NotHumpEqual":"≏̸","notin":"∉","notindot":"⋵̸","notinE":"⋹̸","notinva":"∉","notinvb":"⋷","notinvc":"⋶","NotLeftTriangleBar":"⧏̸","NotLeftTriangle":"⋪","NotLeftTriangleEqual":"⋬","NotLess":"≮","NotLessEqual":"≰","NotLessGreater":"≸","NotLessLess":"≪̸","NotLessSlantEqual":"⩽̸","NotLessTilde":"≴","NotNestedGreaterGreater":"⪢̸","NotNestedLessLess":"⪡̸","notni":"∌","notniva":"∌","notnivb":"⋾","notnivc":"⋽","NotPrecedes":"⊀","NotPrecedesEqual":"⪯̸","NotPrecedesSlantEqual":"⋠","NotReverseElement":"∌","NotRightTriangleBar":"⧐̸","NotRightTriangle":"⋫","NotRightTriangleEqual":"⋭","NotSquareSubset":"⊏̸","NotSquareSubsetEqual":"⋢","NotSquareSuperset":"⊐̸","NotSquareSupersetEqual":"⋣","NotSubset":"⊂⃒","NotSubsetEqual":"⊈","NotSucceeds":"⊁","NotSucceedsEqual":"⪰̸","NotSucceedsSlantEqual":"⋡","NotSucceedsTilde":"≿̸","NotSuperset":"⊃⃒","NotSupersetEqual":"⊉","NotTilde":"≁","NotTildeEqual":"≄","NotTildeFullEqual":"≇","NotTildeTilde":"≉","NotVerticalBar":"∤","nparallel":"∦","npar":"∦","nparsl":"⫽⃥","npart":"∂̸","npolint":"⨔","npr":"⊀","nprcue":"⋠","nprec":"⊀","npreceq":"⪯̸","npre":"⪯̸","nrarrc":"⤳̸","nrarr":"↛","nrArr":"⇏","nrarrw":"↝̸","nrightarrow":"↛","nRightarrow":"⇏","nrtri":"⋫","nrtrie":"⋭","nsc":"⊁","nsccue":"⋡","nsce":"⪰̸","Nscr":"𝒩","nscr":"𝓃","nshortmid":"∤","nshortparallel":"∦","nsim":"≁","nsime":"≄","nsimeq":"≄","nsmid":"∤","nspar":"∦","nsqsube":"⋢","nsqsupe":"⋣","nsub":"⊄","nsubE":"⫅̸","nsube":"⊈","nsubset":"⊂⃒","nsubseteq":"⊈","nsubseteqq":"⫅̸","nsucc":"⊁","nsucceq":"⪰̸","nsup":"⊅","nsupE":"⫆̸","nsupe":"⊉","nsupset":"⊃⃒","nsupseteq":"⊉","nsupseteqq":"⫆̸","ntgl":"≹","Ntilde":"Ñ","ntilde":"ñ","ntlg":"≸","ntriangleleft":"⋪","ntrianglelefteq":"⋬","ntriangleright":"⋫","ntrianglerighteq":"⋭","Nu":"Ν","nu":"ν","num":"#","numero":"№","numsp":" ","nvap":"≍⃒","nvdash":"⊬","nvDash":"⊭","nVdash":"⊮","nVDash":"⊯","nvge":"≥⃒","nvgt":">⃒","nvHarr":"⤄","nvinfin":"⧞","nvlArr":"⤂","nvle":"≤⃒","nvlt":"<⃒","nvltrie":"⊴⃒","nvrArr":"⤃","nvrtrie":"⊵⃒","nvsim":"∼⃒","nwarhk":"⤣","nwarr":"↖","nwArr":"⇖","nwarrow":"↖","nwnear":"⤧","Oacute":"Ó","oacute":"ó","oast":"⊛","Ocirc":"Ô","ocirc":"ô","ocir":"⊚","Ocy":"О","ocy":"о","odash":"⊝","Odblac":"Ő","odblac":"ő","odiv":"⨸","odot":"⊙","odsold":"⦼","OElig":"Œ","oelig":"œ","ofcir":"⦿","Ofr":"𝔒","ofr":"𝔬","ogon":"˛","Ograve":"Ò","ograve":"ò","ogt":"⧁","ohbar":"⦵","ohm":"Ω","oint":"∮","olarr":"↺","olcir":"⦾","olcross":"⦻","oline":"‾","olt":"⧀","Omacr":"Ō","omacr":"ō","Omega":"Ω","omega":"ω","Omicron":"Ο","omicron":"ο","omid":"⦶","ominus":"⊖","Oopf":"𝕆","oopf":"𝕠","opar":"⦷","OpenCurlyDoubleQuote":"“","OpenCurlyQuote":"‘","operp":"⦹","oplus":"⊕","orarr":"↻","Or":"⩔","or":"∨","ord":"⩝","order":"ℴ","orderof":"ℴ","ordf":"ª","ordm":"º","origof":"⊶","oror":"⩖","orslope":"⩗","orv":"⩛","oS":"Ⓢ","Oscr":"𝒪","oscr":"ℴ","Oslash":"Ø","oslash":"ø","osol":"⊘","Otilde":"Õ","otilde":"õ","otimesas":"⨶","Otimes":"⨷","otimes":"⊗","Ouml":"Ö","ouml":"ö","ovbar":"⌽","OverBar":"‾","OverBrace":"⏞","OverBracket":"⎴","OverParenthesis":"⏜","para":"¶","parallel":"∥","par":"∥","parsim":"⫳","parsl":"⫽","part":"∂","PartialD":"∂","Pcy":"П","pcy":"п","percnt":"%","period":".","permil":"‰","perp":"⊥","pertenk":"‱","Pfr":"𝔓","pfr":"𝔭","Phi":"Φ","phi":"φ","phiv":"ϕ","phmmat":"ℳ","phone":"☎","Pi":"Π","pi":"π","pitchfork":"⋔","piv":"ϖ","planck":"ℏ","planckh":"ℎ","plankv":"ℏ","plusacir":"⨣","plusb":"⊞","pluscir":"⨢","plus":"+","plusdo":"∔","plusdu":"⨥","pluse":"⩲","PlusMinus":"±","plusmn":"±","plussim":"⨦","plustwo":"⨧","pm":"±","Poincareplane":"ℌ","pointint":"⨕","popf":"𝕡","Popf":"ℙ","pound":"£","prap":"⪷","Pr":"⪻","pr":"≺","prcue":"≼","precapprox":"⪷","prec":"≺","preccurlyeq":"≼","Precedes":"≺","PrecedesEqual":"⪯","PrecedesSlantEqual":"≼","PrecedesTilde":"≾","preceq":"⪯","precnapprox":"⪹","precneqq":"⪵","precnsim":"⋨","pre":"⪯","prE":"⪳","precsim":"≾","prime":"′","Prime":"″","primes":"ℙ","prnap":"⪹","prnE":"⪵","prnsim":"⋨","prod":"∏","Product":"∏","profalar":"⌮","profline":"⌒","profsurf":"⌓","prop":"∝","Proportional":"∝","Proportion":"∷","propto":"∝","prsim":"≾","prurel":"⊰","Pscr":"𝒫","pscr":"𝓅","Psi":"Ψ","psi":"ψ","puncsp":" ","Qfr":"𝔔","qfr":"𝔮","qint":"⨌","qopf":"𝕢","Qopf":"ℚ","qprime":"⁗","Qscr":"𝒬","qscr":"𝓆","quaternions":"ℍ","quatint":"⨖","quest":"?","questeq":"≟","quot":"\\"","QUOT":"\\"","rAarr":"⇛","race":"∽̱","Racute":"Ŕ","racute":"ŕ","radic":"√","raemptyv":"⦳","rang":"⟩","Rang":"⟫","rangd":"⦒","range":"⦥","rangle":"⟩","raquo":"»","rarrap":"⥵","rarrb":"⇥","rarrbfs":"⤠","rarrc":"⤳","rarr":"→","Rarr":"↠","rArr":"⇒","rarrfs":"⤞","rarrhk":"↪","rarrlp":"↬","rarrpl":"⥅","rarrsim":"⥴","Rarrtl":"⤖","rarrtl":"↣","rarrw":"↝","ratail":"⤚","rAtail":"⤜","ratio":"∶","rationals":"ℚ","rbarr":"⤍","rBarr":"⤏","RBarr":"⤐","rbbrk":"❳","rbrace":"}","rbrack":"]","rbrke":"⦌","rbrksld":"⦎","rbrkslu":"⦐","Rcaron":"Ř","rcaron":"ř","Rcedil":"Ŗ","rcedil":"ŗ","rceil":"⌉","rcub":"}","Rcy":"Р","rcy":"р","rdca":"⤷","rdldhar":"⥩","rdquo":"”","rdquor":"”","rdsh":"↳","real":"ℜ","realine":"ℛ","realpart":"ℜ","reals":"ℝ","Re":"ℜ","rect":"▭","reg":"®","REG":"®","ReverseElement":"∋","ReverseEquilibrium":"⇋","ReverseUpEquilibrium":"⥯","rfisht":"⥽","rfloor":"⌋","rfr":"𝔯","Rfr":"ℜ","rHar":"⥤","rhard":"⇁","rharu":"⇀","rharul":"⥬","Rho":"Ρ","rho":"ρ","rhov":"ϱ","RightAngleBracket":"⟩","RightArrowBar":"⇥","rightarrow":"→","RightArrow":"→","Rightarrow":"⇒","RightArrowLeftArrow":"⇄","rightarrowtail":"↣","RightCeiling":"⌉","RightDoubleBracket":"⟧","RightDownTeeVector":"⥝","RightDownVectorBar":"⥕","RightDownVector":"⇂","RightFloor":"⌋","rightharpoondown":"⇁","rightharpoonup":"⇀","rightleftarrows":"⇄","rightleftharpoons":"⇌","rightrightarrows":"⇉","rightsquigarrow":"↝","RightTeeArrow":"↦","RightTee":"⊢","RightTeeVector":"⥛","rightthreetimes":"⋌","RightTriangleBar":"⧐","RightTriangle":"⊳","RightTriangleEqual":"⊵","RightUpDownVector":"⥏","RightUpTeeVector":"⥜","RightUpVectorBar":"⥔","RightUpVector":"↾","RightVectorBar":"⥓","RightVector":"⇀","ring":"˚","risingdotseq":"≓","rlarr":"⇄","rlhar":"⇌","rlm":"‏","rmoustache":"⎱","rmoust":"⎱","rnmid":"⫮","roang":"⟭","roarr":"⇾","robrk":"⟧","ropar":"⦆","ropf":"𝕣","Ropf":"ℝ","roplus":"⨮","rotimes":"⨵","RoundImplies":"⥰","rpar":")","rpargt":"⦔","rppolint":"⨒","rrarr":"⇉","Rrightarrow":"⇛","rsaquo":"›","rscr":"𝓇","Rscr":"ℛ","rsh":"↱","Rsh":"↱","rsqb":"]","rsquo":"’","rsquor":"’","rthree":"⋌","rtimes":"⋊","rtri":"▹","rtrie":"⊵","rtrif":"▸","rtriltri":"⧎","RuleDelayed":"⧴","ruluhar":"⥨","rx":"℞","Sacute":"Ś","sacute":"ś","sbquo":"‚","scap":"⪸","Scaron":"Š","scaron":"š","Sc":"⪼","sc":"≻","sccue":"≽","sce":"⪰","scE":"⪴","Scedil":"Ş","scedil":"ş","Scirc":"Ŝ","scirc":"ŝ","scnap":"⪺","scnE":"⪶","scnsim":"⋩","scpolint":"⨓","scsim":"≿","Scy":"С","scy":"с","sdotb":"⊡","sdot":"⋅","sdote":"⩦","searhk":"⤥","searr":"↘","seArr":"⇘","searrow":"↘","sect":"§","semi":";","seswar":"⤩","setminus":"∖","setmn":"∖","sext":"✶","Sfr":"𝔖","sfr":"𝔰","sfrown":"⌢","sharp":"♯","SHCHcy":"Щ","shchcy":"щ","SHcy":"Ш","shcy":"ш","ShortDownArrow":"↓","ShortLeftArrow":"←","shortmid":"∣","shortparallel":"∥","ShortRightArrow":"→","ShortUpArrow":"↑","shy":"­","Sigma":"Σ","sigma":"σ","sigmaf":"ς","sigmav":"ς","sim":"∼","simdot":"⩪","sime":"≃","simeq":"≃","simg":"⪞","simgE":"⪠","siml":"⪝","simlE":"⪟","simne":"≆","simplus":"⨤","simrarr":"⥲","slarr":"←","SmallCircle":"∘","smallsetminus":"∖","smashp":"⨳","smeparsl":"⧤","smid":"∣","smile":"⌣","smt":"⪪","smte":"⪬","smtes":"⪬︀","SOFTcy":"Ь","softcy":"ь","solbar":"⌿","solb":"⧄","sol":"/","Sopf":"𝕊","sopf":"𝕤","spades":"♠","spadesuit":"♠","spar":"∥","sqcap":"⊓","sqcaps":"⊓︀","sqcup":"⊔","sqcups":"⊔︀","Sqrt":"√","sqsub":"⊏","sqsube":"⊑","sqsubset":"⊏","sqsubseteq":"⊑","sqsup":"⊐","sqsupe":"⊒","sqsupset":"⊐","sqsupseteq":"⊒","square":"□","Square":"□","SquareIntersection":"⊓","SquareSubset":"⊏","SquareSubsetEqual":"⊑","SquareSuperset":"⊐","SquareSupersetEqual":"⊒","SquareUnion":"⊔","squarf":"▪","squ":"□","squf":"▪","srarr":"→","Sscr":"𝒮","sscr":"𝓈","ssetmn":"∖","ssmile":"⌣","sstarf":"⋆","Star":"⋆","star":"☆","starf":"★","straightepsilon":"ϵ","straightphi":"ϕ","strns":"¯","sub":"⊂","Sub":"⋐","subdot":"⪽","subE":"⫅","sube":"⊆","subedot":"⫃","submult":"⫁","subnE":"⫋","subne":"⊊","subplus":"⪿","subrarr":"⥹","subset":"⊂","Subset":"⋐","subseteq":"⊆","subseteqq":"⫅","SubsetEqual":"⊆","subsetneq":"⊊","subsetneqq":"⫋","subsim":"⫇","subsub":"⫕","subsup":"⫓","succapprox":"⪸","succ":"≻","succcurlyeq":"≽","Succeeds":"≻","SucceedsEqual":"⪰","SucceedsSlantEqual":"≽","SucceedsTilde":"≿","succeq":"⪰","succnapprox":"⪺","succneqq":"⪶","succnsim":"⋩","succsim":"≿","SuchThat":"∋","sum":"∑","Sum":"∑","sung":"♪","sup1":"¹","sup2":"²","sup3":"³","sup":"⊃","Sup":"⋑","supdot":"⪾","supdsub":"⫘","supE":"⫆","supe":"⊇","supedot":"⫄","Superset":"⊃","SupersetEqual":"⊇","suphsol":"⟉","suphsub":"⫗","suplarr":"⥻","supmult":"⫂","supnE":"⫌","supne":"⊋","supplus":"⫀","supset":"⊃","Supset":"⋑","supseteq":"⊇","supseteqq":"⫆","supsetneq":"⊋","supsetneqq":"⫌","supsim":"⫈","supsub":"⫔","supsup":"⫖","swarhk":"⤦","swarr":"↙","swArr":"⇙","swarrow":"↙","swnwar":"⤪","szlig":"ß","Tab":"\\t","target":"⌖","Tau":"Τ","tau":"τ","tbrk":"⎴","Tcaron":"Ť","tcaron":"ť","Tcedil":"Ţ","tcedil":"ţ","Tcy":"Т","tcy":"т","tdot":"⃛","telrec":"⌕","Tfr":"𝔗","tfr":"𝔱","there4":"∴","therefore":"∴","Therefore":"∴","Theta":"Θ","theta":"θ","thetasym":"ϑ","thetav":"ϑ","thickapprox":"≈","thicksim":"∼","ThickSpace":"  ","ThinSpace":" ","thinsp":" ","thkap":"≈","thksim":"∼","THORN":"Þ","thorn":"þ","tilde":"˜","Tilde":"∼","TildeEqual":"≃","TildeFullEqual":"≅","TildeTilde":"≈","timesbar":"⨱","timesb":"⊠","times":"×","timesd":"⨰","tint":"∭","toea":"⤨","topbot":"⌶","topcir":"⫱","top":"⊤","Topf":"𝕋","topf":"𝕥","topfork":"⫚","tosa":"⤩","tprime":"‴","trade":"™","TRADE":"™","triangle":"▵","triangledown":"▿","triangleleft":"◃","trianglelefteq":"⊴","triangleq":"≜","triangleright":"▹","trianglerighteq":"⊵","tridot":"◬","trie":"≜","triminus":"⨺","TripleDot":"⃛","triplus":"⨹","trisb":"⧍","tritime":"⨻","trpezium":"⏢","Tscr":"𝒯","tscr":"𝓉","TScy":"Ц","tscy":"ц","TSHcy":"Ћ","tshcy":"ћ","Tstrok":"Ŧ","tstrok":"ŧ","twixt":"≬","twoheadleftarrow":"↞","twoheadrightarrow":"↠","Uacute":"Ú","uacute":"ú","uarr":"↑","Uarr":"↟","uArr":"⇑","Uarrocir":"⥉","Ubrcy":"Ў","ubrcy":"ў","Ubreve":"Ŭ","ubreve":"ŭ","Ucirc":"Û","ucirc":"û","Ucy":"У","ucy":"у","udarr":"⇅","Udblac":"Ű","udblac":"ű","udhar":"⥮","ufisht":"⥾","Ufr":"𝔘","ufr":"𝔲","Ugrave":"Ù","ugrave":"ù","uHar":"⥣","uharl":"↿","uharr":"↾","uhblk":"▀","ulcorn":"⌜","ulcorner":"⌜","ulcrop":"⌏","ultri":"◸","Umacr":"Ū","umacr":"ū","uml":"¨","UnderBar":"_","UnderBrace":"⏟","UnderBracket":"⎵","UnderParenthesis":"⏝","Union":"⋃","UnionPlus":"⊎","Uogon":"Ų","uogon":"ų","Uopf":"𝕌","uopf":"𝕦","UpArrowBar":"⤒","uparrow":"↑","UpArrow":"↑","Uparrow":"⇑","UpArrowDownArrow":"⇅","updownarrow":"↕","UpDownArrow":"↕","Updownarrow":"⇕","UpEquilibrium":"⥮","upharpoonleft":"↿","upharpoonright":"↾","uplus":"⊎","UpperLeftArrow":"↖","UpperRightArrow":"↗","upsi":"υ","Upsi":"ϒ","upsih":"ϒ","Upsilon":"Υ","upsilon":"υ","UpTeeArrow":"↥","UpTee":"⊥","upuparrows":"⇈","urcorn":"⌝","urcorner":"⌝","urcrop":"⌎","Uring":"Ů","uring":"ů","urtri":"◹","Uscr":"𝒰","uscr":"𝓊","utdot":"⋰","Utilde":"Ũ","utilde":"ũ","utri":"▵","utrif":"▴","uuarr":"⇈","Uuml":"Ü","uuml":"ü","uwangle":"⦧","vangrt":"⦜","varepsilon":"ϵ","varkappa":"ϰ","varnothing":"∅","varphi":"ϕ","varpi":"ϖ","varpropto":"∝","varr":"↕","vArr":"⇕","varrho":"ϱ","varsigma":"ς","varsubsetneq":"⊊︀","varsubsetneqq":"⫋︀","varsupsetneq":"⊋︀","varsupsetneqq":"⫌︀","vartheta":"ϑ","vartriangleleft":"⊲","vartriangleright":"⊳","vBar":"⫨","Vbar":"⫫","vBarv":"⫩","Vcy":"В","vcy":"в","vdash":"⊢","vDash":"⊨","Vdash":"⊩","VDash":"⊫","Vdashl":"⫦","veebar":"⊻","vee":"∨","Vee":"⋁","veeeq":"≚","vellip":"⋮","verbar":"|","Verbar":"‖","vert":"|","Vert":"‖","VerticalBar":"∣","VerticalLine":"|","VerticalSeparator":"❘","VerticalTilde":"≀","VeryThinSpace":" ","Vfr":"𝔙","vfr":"𝔳","vltri":"⊲","vnsub":"⊂⃒","vnsup":"⊃⃒","Vopf":"𝕍","vopf":"𝕧","vprop":"∝","vrtri":"⊳","Vscr":"𝒱","vscr":"𝓋","vsubnE":"⫋︀","vsubne":"⊊︀","vsupnE":"⫌︀","vsupne":"⊋︀","Vvdash":"⊪","vzigzag":"⦚","Wcirc":"Ŵ","wcirc":"ŵ","wedbar":"⩟","wedge":"∧","Wedge":"⋀","wedgeq":"≙","weierp":"℘","Wfr":"𝔚","wfr":"𝔴","Wopf":"𝕎","wopf":"𝕨","wp":"℘","wr":"≀","wreath":"≀","Wscr":"𝒲","wscr":"𝓌","xcap":"⋂","xcirc":"◯","xcup":"⋃","xdtri":"▽","Xfr":"𝔛","xfr":"𝔵","xharr":"⟷","xhArr":"⟺","Xi":"Ξ","xi":"ξ","xlarr":"⟵","xlArr":"⟸","xmap":"⟼","xnis":"⋻","xodot":"⨀","Xopf":"𝕏","xopf":"𝕩","xoplus":"⨁","xotime":"⨂","xrarr":"⟶","xrArr":"⟹","Xscr":"𝒳","xscr":"𝓍","xsqcup":"⨆","xuplus":"⨄","xutri":"△","xvee":"⋁","xwedge":"⋀","Yacute":"Ý","yacute":"ý","YAcy":"Я","yacy":"я","Ycirc":"Ŷ","ycirc":"ŷ","Ycy":"Ы","ycy":"ы","yen":"¥","Yfr":"𝔜","yfr":"𝔶","YIcy":"Ї","yicy":"ї","Yopf":"𝕐","yopf":"𝕪","Yscr":"𝒴","yscr":"𝓎","YUcy":"Ю","yucy":"ю","yuml":"ÿ","Yuml":"Ÿ","Zacute":"Ź","zacute":"ź","Zcaron":"Ž","zcaron":"ž","Zcy":"З","zcy":"з","Zdot":"Ż","zdot":"ż","zeetrf":"ℨ","ZeroWidthSpace":"​","Zeta":"Ζ","zeta":"ζ","zfr":"𝔷","Zfr":"ℨ","ZHcy":"Ж","zhcy":"ж","zigrarr":"⇝","zopf":"𝕫","Zopf":"ℤ","Zscr":"𝒵","zscr":"𝓏","zwj":"‍","zwnj":"‌"}')},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t={};function n(e,r,i){var o,a,s,l,c,u="";for("string"!=typeof r&&(i=r,r=n.defaultChars),void 0===i&&(i=!0),c=function(e){var n,r,i=t[e];if(i)return i;for(i=t[e]=[],n=0;n<128;n++)r=String.fromCharCode(n),/^[0-9a-z]$/i.test(r)?i.push(r):i.push("%"+("0"+n.toString(16).toUpperCase()).slice(-2));for(n=0;n=55296&&s<=57343){if(s>=55296&&s<=56319&&o+1=56320&&l<=57343){u+=encodeURIComponent(e[o]+e[o+1]),o++;continue}u+="%EF%BF%BD"}else u+=encodeURIComponent(e[o]);return u}n.defaultChars=";/?:@&=+$,-_.!~*'()#",n.componentChars="-_.!~*'()",e.exports=n})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t={};function n(e,r){var i;return"string"!=typeof r&&(r=n.defaultChars),i=function(e){var n,r,i=t[e];if(i)return i;for(i=t[e]=[],n=0;n<128;n++)r=String.fromCharCode(n),i.push(r);for(n=0;n=55296&&l<=57343?"���":String.fromCharCode(l),t+=6):240==(248&r)&&t+91114111?c+="����":(l-=65536,c+=String.fromCharCode(55296+(l>>10),56320+(1023&l))),t+=9):c+="�";return c}))}n.defaultChars=";/?:@&=+$,#",n.componentChars="",e.exports=n})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=function(e){var t="";return t+=e.protocol||"",t+=e.slashes?"//":"",t+=e.auth?e.auth+"@":"",e.hostname&&-1!==e.hostname.indexOf(":")?t+="["+e.hostname+"]":t+=e.hostname||"",t+=e.port?":"+e.port:"",t+=e.pathname||"",t+=e.search||"",t+=e.hash||""}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";function t(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}var n=/^([a-z0-9.+-]+:)/i,r=/:[0-9]*$/,i=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,o=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),a=["'"].concat(o),s=["%","/","?",";","#"].concat(a),l=["/","?","#"],c=/^[+a-z0-9A-Z_-]{0,63}$/,u=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,f={javascript:!0,"javascript:":!0},d={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};t.prototype.parse=function(e,t){var r,o,a,p,h,m=e;if(m=m.trim(),!t&&1===e.split("#").length){var g=i.exec(m);if(g)return this.pathname=g[1],g[2]&&(this.search=g[2]),this}var v=n.exec(m);if(v&&(a=(v=v[0]).toLowerCase(),this.protocol=v,m=m.substr(v.length)),(t||v||m.match(/^\/\/[^@\/]+@[^@\/]+/))&&(!(h="//"===m.substr(0,2))||v&&f[v]||(m=m.substr(2),this.slashes=!0)),!f[v]&&(h||v&&!d[v])){var y,b,T=-1;for(r=0;r127?x+="x":x+=C[w];if(!x.match(c)){var S=_.slice(0,r),N=_.slice(r+1),D=C.match(u);D&&(S.push(D[1]),N.unshift(D[2])),N.length&&(m=N.join(".")+m),this.hostname=S.join(".");break}}}}this.hostname.length>255&&(this.hostname=""),O&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var I=m.indexOf("#");-1!==I&&(this.hash=m.substr(I),m=m.slice(0,I));var A=m.indexOf("?");return-1!==A&&(this.search=m.substr(A),m=m.slice(0,A)),m&&(this.pathname=m),d[a]&&this.hostname&&!this.pathname&&(this.pathname=""),this},t.prototype.parseHost=function(e){var t=r.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)},e.exports=function(e,n){if(e&&e instanceof t)return e;var r=new t;return r.parse(e,n),r}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";t.Any=n(67),t.Cc=n(68),t.Cf=n(131),t.P=n(47),t.Z=n(69)})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";t.parseLinkLabel=n(133),t.parseLinkDestination=n(134),t.parseLinkTitle=n(135)})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=function(e,t,n){var r,i,o,a,s=-1,l=e.posMax,c=e.pos;for(e.pos=t+1,r=1;e.pos32)return s;if(41===i){if(0===o)break;o--}n++}return a===n||0!==o||(s.str=t(e.slice(a,n)),s.lines=0,s.pos=n,s.ok=!0),s}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=n(11).unescapeAll;e.exports=function(e,n,r){var i,o,a=0,s=n,l={ok:!1,pos:0,lines:0,str:""};if(n>=r)return l;if(34!==(o=e.charCodeAt(n))&&39!==o&&40!==o)return l;for(n++,40===o&&(o=41);n"+i(e[t].content)+""},o.code_block=function(e,t,n,r,o){var a=e[t];return""+i(e[t].content)+"\n"},o.fence=function(e,t,n,o,a){var s,l,c,u,f,d=e[t],p=d.info?r(d.info).trim():"",h="",m="";return p&&(h=(c=p.split(/(\s+)/g))[0],m=c.slice(2).join("")),0===(s=n.highlight&&n.highlight(d.content,h,m)||i(d.content)).indexOf(""+s+"\n"):"
"+s+"
\n"},o.image=function(e,t,n,r,i){var o=e[t];return o.attrs[o.attrIndex("alt")][1]=i.renderInlineAsText(o.children,n,r),i.renderToken(e,t,n)},o.hardbreak=function(e,t,n){return n.xhtmlOut?"
\n":"
\n"},o.softbreak=function(e,t,n){return n.breaks?n.xhtmlOut?"
\n":"
\n":"\n"},o.text=function(e,t){return i(e[t].content)},o.html_block=function(e,t){return e[t].content},o.html_inline=function(e,t){return e[t].content},a.prototype.renderAttrs=function(e){var t,n,r;if(!e.attrs)return"";for(r="",t=0,n=e.attrs.length;t\n":">")},a.prototype.renderInline=function(e,t,n){for(var r,i="",o=this.rules,a=0,s=e.length;a/i.test(e)}e.exports=function(e){var n,i,o,a,s,l,c,u,f,d,p,h,m,g,v,y,b,T,E=e.tokens;if(e.md.options.linkify)for(i=0,o=E.length;i=0;n--)if("link_close"!==(l=a[n]).type){if("html_inline"===l.type&&(T=l.content,/^\s]/i.test(T)&&m>0&&m--,r(l.content)&&m++),!(m>0)&&"text"===l.type&&e.md.linkify.test(l.content)){for(f=l.content,b=e.md.linkify.match(f),c=[],h=l.level,p=0,u=0;up&&((s=new e.Token("text","",0)).content=f.slice(p,d),s.level=h,c.push(s)),(s=new e.Token("link_open","a",1)).attrs=[["href",v]],s.level=h++,s.markup="linkify",s.info="auto",c.push(s),(s=new e.Token("text","",0)).content=y,s.level=h,c.push(s),(s=new e.Token("link_close","a",-1)).level=--h,s.markup="linkify",s.info="auto",c.push(s),p=b[u].lastIndex);p=0;t--)"text"!==(n=e[t]).type||i||(n.content=n.content.replace(r,o)),"link_open"===n.type&&"auto"===n.info&&i--,"link_close"===n.type&&"auto"===n.info&&i++}function s(e){var n,r,i=0;for(n=e.length-1;n>=0;n--)"text"!==(r=e[n]).type||i||t.test(r.content)&&(r.content=r.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/gm,"$1—").replace(/(^|\s)--(?=\s|$)/gm,"$1–").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm,"$1–")),"link_open"===r.type&&"auto"===r.info&&i--,"link_close"===r.type&&"auto"===r.info&&i++}e.exports=function(e){var r;if(e.md.options.typographer)for(r=e.tokens.length-1;r>=0;r--)"inline"===e.tokens[r].type&&(n.test(e.tokens[r].content)&&a(e.tokens[r].children),t.test(e.tokens[r].content)&&s(e.tokens[r].children))}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=n(11).isWhiteSpace,r=n(11).isPunctChar,i=n(11).isMdAsciiPunct,o=/['"]/,a=/['"]/g;function s(e,t,n){return e.substr(0,t)+n+e.substr(t+1)}function l(e,n){var o,l,c,u,f,d,p,h,m,g,v,y,b,T,E,O,_,C,x,w,k;for(x=[],o=0;o=0&&!(x[_].level<=p);_--);if(x.length=_+1,"text"===l.type){f=0,d=(c=l.content).length;e:for(;f=0)m=c.charCodeAt(u.index-1);else for(_=o-1;_>=0&&"softbreak"!==e[_].type&&"hardbreak"!==e[_].type;_--)if(e[_].content){m=e[_].content.charCodeAt(e[_].content.length-1);break}if(g=32,f=48&&m<=57&&(O=E=!1),E&&O&&(E=v,O=y),E||O){if(O)for(_=x.length-1;_>=0&&(h=x[_],!(x[_].level=0;t--)"inline"===e.tokens[t].type&&o.test(e.tokens[t].content)&&l(e.tokens[t].children,e)}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=n(49);function r(e,t,n){this.src=e,this.env=n,this.tokens=[],this.inlineMode=!1,this.md=t}r.prototype.Token=t,e.exports=r})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=n(48),r=[["table",n(146),["paragraph","reference"]],["code",n(147)],["fence",n(148),["paragraph","reference","blockquote","list"]],["blockquote",n(149),["paragraph","reference","blockquote","list"]],["hr",n(150),["paragraph","reference","blockquote","list"]],["list",n(151),["paragraph","reference","blockquote"]],["reference",n(152)],["html_block",n(153),["paragraph","reference","blockquote"]],["heading",n(155),["paragraph","reference","blockquote"]],["lheading",n(156)],["paragraph",n(157)]];function i(){this.ruler=new t;for(var e=0;e=n))&&!(e.sCount[a]=l){e.line=n;break}for(r=0;ro)return!1;if(d=n+1,e.sCount[d]=4)return!1;if((c=e.bMarks[d]+e.tShift[d])>=e.eMarks[d])return!1;if(124!==(_=e.src.charCodeAt(c++))&&45!==_&&58!==_)return!1;if(c>=e.eMarks[d])return!1;if(124!==(C=e.src.charCodeAt(c++))&&45!==C&&58!==C&&!t(C))return!1;if(45===_&&t(C))return!1;for(;c=4)return!1;if((p=i(l)).length&&""===p[0]&&p.shift(),p.length&&""===p[p.length-1]&&p.pop(),0===(h=p.length)||h!==g.length)return!1;if(a)return!0;for(T=e.parentType,e.parentType="table",O=e.md.block.ruler.getRules("blockquote"),(m=e.push("table_open","table",1)).map=y=[n,0],(m=e.push("thead_open","thead",1)).map=[n,n+1],(m=e.push("tr_open","tr",1)).map=[n,n+1],u=0;u=4)break;for((p=i(l)).length&&""===p[0]&&p.shift(),p.length&&""===p[p.length-1]&&p.pop(),d===n+2&&((m=e.push("tbody_open","tbody",1)).map=b=[n+2,0]),(m=e.push("tr_open","tr",1)).map=[d,d+1],u=0;u=4))break;i=++r}return e.line=i,(o=e.push("code_block","code",0)).content=e.getLines(t,i,4+e.blkIndent,!1)+"\n",o.map=[t,e.line],!0}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=function(e,t,n,r){var i,o,a,s,l,c,u,f=!1,d=e.bMarks[t]+e.tShift[t],p=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(d+3>p)return!1;if(126!==(i=e.src.charCodeAt(d))&&96!==i)return!1;if(l=d,(o=(d=e.skipChars(d,i))-l)<3)return!1;if(u=e.src.slice(l,d),a=e.src.slice(d,p),96===i&&a.indexOf(String.fromCharCode(i))>=0)return!1;if(r)return!0;for(s=t;!(++s>=n||(d=l=e.bMarks[s]+e.tShift[s])<(p=e.eMarks[s])&&e.sCount[s]=4||(d=e.skipChars(d,i))-l=4)return!1;if(62!==e.src.charCodeAt(w++))return!1;if(i)return!0;for(l=p=e.sCount[n]+1,32===e.src.charCodeAt(w)?(w++,l++,p++,o=!1,T=!0):9===e.src.charCodeAt(w)?(T=!0,(e.bsCount[n]+p)%4==3?(w++,l++,p++,o=!1):o=!0):T=!1,h=[e.bMarks[n]],e.bMarks[n]=w;w=k,y=[e.sCount[n]],e.sCount[n]=p-l,b=[e.tShift[n]],e.tShift[n]=w-e.bMarks[n],O=e.md.block.ruler.getRules("blockquote"),v=e.parentType,e.parentType="blockquote",d=n+1;d=(k=e.eMarks[d])));d++)if(62!==e.src.charCodeAt(w++)||C){if(u)break;for(E=!1,s=0,c=O.length;s=k,m.push(e.bsCount[d]),e.bsCount[d]=e.sCount[d]+1+(T?1:0),y.push(e.sCount[d]),e.sCount[d]=p-l,b.push(e.tShift[d]),e.tShift[d]=w-e.bMarks[d]}for(g=e.blkIndent,e.blkIndent=0,(_=e.push("blockquote_open","blockquote",1)).markup=">",_.map=f=[n,0],e.md.block.tokenize(e,n,d),(_=e.push("blockquote_close","blockquote",-1)).markup=">",e.lineMax=x,e.parentType=v,f[1]=e.line,s=0;s=4)return!1;if(42!==(o=e.src.charCodeAt(c++))&&45!==o&&95!==o)return!1;for(a=1;c=a)return-1;if((r=e.src.charCodeAt(o++))<48||r>57)return-1;for(;;){if(o>=a)return-1;if(!((r=e.src.charCodeAt(o++))>=48&&r<=57)){if(41===r||46===r)break;return-1}if(o-i>=10)return-1}return o=4)return!1;if(e.listIndent>=0&&e.sCount[t]-e.listIndent>=4&&e.sCount[t]=e.blkIndent&&(F=!0),(S=i(e,t))>=0){if(d=!0,D=e.bMarks[t]+e.tShift[t],y=Number(e.src.slice(D,S-1)),F&&1!==y)return!1}else{if(!((S=r(e,t))>=0))return!1;d=!1}if(F&&e.skipSpaces(S)>=e.eMarks[t])return!1;if(v=e.src.charCodeAt(S-1),o)return!0;for(g=e.tokens.length,d?(L=e.push("ordered_list_open","ol",1),1!==y&&(L.attrs=[["start",y]])):L=e.push("bullet_list_open","ul",1),L.map=m=[t,0],L.markup=String.fromCharCode(v),T=t,N=!1,A=e.md.block.ruler.getRules("list"),_=e.parentType,e.parentType="list";T=b?1:E-f)>4&&(u=1),c=f+u,(L=e.push("list_item_open","li",1)).markup=String.fromCharCode(v),L.map=p=[t,0],d&&(L.info=e.src.slice(D,S-1)),w=e.tight,x=e.tShift[t],C=e.sCount[t],O=e.listIndent,e.listIndent=e.blkIndent,e.blkIndent=c,e.tight=!0,e.tShift[t]=s-e.bMarks[t],e.sCount[t]=E,s>=b&&e.isEmpty(t+1)?e.line=Math.min(e.line+2,n):e.md.block.tokenize(e,t,n,!0),e.tight&&!N||(j=!1),N=e.line-t>1&&e.isEmpty(e.line-1),e.blkIndent=e.listIndent,e.listIndent=O,e.tShift[t]=x,e.sCount[t]=C,e.tight=w,(L=e.push("list_item_close","li",-1)).markup=String.fromCharCode(v),T=t=e.line,p[1]=T,s=e.bMarks[t],T>=n)break;if(e.sCount[T]=4)break;for(I=!1,l=0,h=A.length;l=4)return!1;if(91!==e.src.charCodeAt(_))return!1;for(;++_3||e.sCount[x]<0)){for(b=!1,f=0,d=T.length;f|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^/,!0],[/^<\?/,/\?>/,!0],[/^/,!0],[/^/,!0],[new RegExp("^|$))","i"),/^$/,!0],[new RegExp(r.source+"\\s*$"),/^$/,!1]];e.exports=function(e,t,n,r){var o,a,s,l,c=e.bMarks[t]+e.tShift[t],u=e.eMarks[t];if(e.sCount[t]-e.blkIndent>=4)return!1;if(!e.md.options.html)return!1;if(60!==e.src.charCodeAt(c))return!1;for(l=e.src.slice(c,u),o=0;o=4)return!1;if(35!==(o=e.src.charCodeAt(c))||c>=u)return!1;for(a=1,o=e.src.charCodeAt(++c);35===o&&c6||cc&&t(e.src.charCodeAt(s-1))&&(u=s),e.line=n+1,(l=e.push("heading_open","h"+String(a),1)).markup="########".slice(0,a),l.map=[n,e.line],(l=e.push("inline","",0)).content=e.src.slice(c,u).trim(),l.map=[n,e.line],l.children=[],(l=e.push("heading_close","h"+String(a),-1)).markup="########".slice(0,a)),0))}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=function(e,t,n){var r,i,o,a,s,l,c,u,f,d,p=t+1,h=e.md.block.ruler.getRules("paragraph");if(e.sCount[t]-e.blkIndent>=4)return!1;for(d=e.parentType,e.parentType="paragraph";p3)){if(e.sCount[p]>=e.blkIndent&&(l=e.bMarks[p]+e.tShift[p])<(c=e.eMarks[p])&&(45===(f=e.src.charCodeAt(l))||61===f)&&(l=e.skipChars(l,f),(l=e.skipSpaces(l))>=c)){u=61===f?1:2;break}if(!(e.sCount[p]<0)){for(i=!1,o=0,a=h.length;o3||e.sCount[l]<0)){for(r=!1,i=0,o=c.length;i0&&this.level++,this.tokens.push(i),i},i.prototype.isEmpty=function(e){return this.bMarks[e]+this.tShift[e]>=this.eMarks[e]},i.prototype.skipEmptyLines=function(e){for(var t=this.lineMax;et;)if(!r(this.src.charCodeAt(--e)))return e+1;return e},i.prototype.skipChars=function(e,t){for(var n=this.src.length;en;)if(t!==this.src.charCodeAt(--e))return e+1;return e},i.prototype.getLines=function(e,t,n,i){var o,a,s,l,c,u,f,d=e;if(e>=t)return"";for(u=new Array(t-e),o=0;dn?new Array(a-n+1).join(" ")+this.src.slice(l,c):this.src.slice(l,c)}return u.join("")},i.prototype.Token=t,e.exports=i})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=n(48),r=[["text",n(160)],["newline",n(161)],["escape",n(162)],["backticks",n(163)],["strikethrough",n(71).tokenize],["emphasis",n(72).tokenize],["link",n(164)],["image",n(165)],["autolink",n(166)],["html_inline",n(167)],["entity",n(168)]],i=[["balance_pairs",n(169)],["strikethrough",n(71).postProcess],["emphasis",n(72).postProcess],["text_collapse",n(170)]];function o(){var e;for(this.ruler=new t,e=0;e=o)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},o.prototype.parse=function(e,t,n,r){var i,o,a,s=new this.State(e,t,n,r);for(this.tokenize(s),a=(o=this.ruler2.getRules("")).length,i=0;i=0&&32===e.pending.charCodeAt(r)?r>=1&&32===e.pending.charCodeAt(r-1)?(e.pending=e.pending.replace(/ +$/,""),e.push("hardbreak","br",0)):(e.pending=e.pending.slice(0,-1),e.push("softbreak","br",0)):e.push("softbreak","br",0)),o++;o?@[]^_`{|}~-".split("").forEach((function(e){r[e.charCodeAt(0)]=1})),e.exports=function(e,n){var i,o=e.pos,a=e.posMax;if(92!==e.src.charCodeAt(o))return!1;if(++o=m)return!1;if(g=c,(u=e.md.helpers.parseLinkDestination(e.src,c,e.posMax)).ok){for(d=e.md.normalizeLink(u.str),e.md.validateLink(d)?c=u.pos:d="",g=c;c=m||41!==e.src.charCodeAt(c))&&(v=!0),c++}if(v){if(void 0===e.env.references)return!1;if(c=0?a=e.src.slice(g,c++):c=s+1):c=s+1,a||(a=e.src.slice(l,s)),!(f=e.env.references[t(a)]))return e.pos=h,!1;d=f.href,p=f.title}return n||(e.pos=l,e.posMax=s,e.push("link_open","a",1).attrs=i=[["href",d]],p&&i.push(["title",p]),e.md.inline.tokenize(e),e.push("link_close","a",-1)),e.pos=c,e.posMax=m,!0}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=n(11).normalizeReference,r=n(11).isSpace;e.exports=function(e,n){var i,o,a,s,l,c,u,f,d,p,h,m,g,v="",y=e.pos,b=e.posMax;if(33!==e.src.charCodeAt(e.pos))return!1;if(91!==e.src.charCodeAt(e.pos+1))return!1;if(c=e.pos+2,(l=e.md.helpers.parseLinkLabel(e,e.pos+1,!1))<0)return!1;if((u=l+1)=b)return!1;for(g=u,(d=e.md.helpers.parseLinkDestination(e.src,u,e.posMax)).ok&&(v=e.md.normalizeLink(d.str),e.md.validateLink(v)?u=d.pos:v=""),g=u;u=b||41!==e.src.charCodeAt(u))return e.pos=y,!1;u++}else{if(void 0===e.env.references)return!1;if(u=0?s=e.src.slice(g,u++):u=l+1):u=l+1,s||(s=e.src.slice(c,l)),!(f=e.env.references[t(s)]))return e.pos=y,!1;v=f.href,p=f.title}return n||(a=e.src.slice(c,l),e.md.inline.parse(a,e.md,e.env,m=[]),(h=e.push("image","img",0)).attrs=i=[["src",v],["alt",""]],h.children=m,h.content=a,p&&i.push(["title",p])),e.pos=u,e.posMax=b,!0}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=/^([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$/,n=/^([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)$/;e.exports=function(e,r){var i,o,a,s,l,c,u=e.pos;if(60!==e.src.charCodeAt(u))return!1;for(l=e.pos,c=e.posMax;;){if(++u>=c)return!1;if(60===(s=e.src.charCodeAt(u)))return!1;if(62===s)break}return i=e.src.slice(l+1,u),n.test(i)?(o=e.md.normalizeLink(i),!!e.md.validateLink(o)&&(r||((a=e.push("link_open","a",1)).attrs=[["href",o]],a.markup="autolink",a.info="auto",(a=e.push("text","",0)).content=e.md.normalizeLinkText(i),(a=e.push("link_close","a",-1)).markup="autolink",a.info="auto"),e.pos+=i.length+2,!0)):!!t.test(i)&&(o=e.md.normalizeLink("mailto:"+i),!!e.md.validateLink(o)&&(r||((a=e.push("link_open","a",1)).attrs=[["href",o]],a.markup="autolink",a.info="auto",(a=e.push("text","",0)).content=e.md.normalizeLinkText(i),(a=e.push("link_close","a",-1)).markup="autolink",a.info="auto"),e.pos+=i.length+2,!0))}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=n(70).HTML_TAG_RE;e.exports=function(e,n){var r,i,o,a=e.pos;return!(!e.md.options.html||(o=e.posMax,60!==e.src.charCodeAt(a)||a+2>=o||33!==(r=e.src.charCodeAt(a+1))&&63!==r&&47!==r&&!function(e){var t=32|e;return t>=97&&t<=122}(r)||!(i=e.src.slice(a).match(t))||(n||(e.push("html_inline","",0).content=e.src.slice(a,a+i[0].length)),e.pos+=i[0].length,0)))}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var t=n(65),r=n(11).has,i=n(11).isValidEntityCode,o=n(11).fromCodePoint,a=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,s=/^&([a-z][a-z0-9]{1,31});/i;e.exports=function(e,n){var l,c,u=e.pos,f=e.posMax;if(38!==e.src.charCodeAt(u))return!1;if(u+1a;r-=o.jump+1)if((o=t[r]).marker===i.marker&&o.open&&o.end<0&&(l=!1,(o.close||i.open)&&(o.length+i.length)%3==0&&(o.length%3==0&&i.length%3==0||(l=!0)),!l)){c=r>0&&!t[r-1].open?t[r-1].jump+1:0,i.jump=n-r+c,i.open=!1,o.end=n,o.jump=c,o.close=!1,s=-1;break}-1!==s&&(u[i.marker][(i.open?3:0)+(i.length||0)%3]=s)}}e.exports=function(e){var n,r=e.tokens_meta,i=e.tokens_meta.length;for(t(0,e.delimiters),n=0;n0&&r++,"text"===i[t].type&&t+10&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],o={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(i),this.tokens_meta.push(o),i},a.prototype.scanDelims=function(e,t){var n,a,s,l,c,u,f,d,p,h=e,m=!0,g=!0,v=this.posMax,y=this.src.charCodeAt(e);for(n=e>0?this.src.charCodeAt(e-1):32;h=3&&":"===e[t-3]||t>=3&&"/"===e[t-3]?0:r.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,n){var r=e.slice(t);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(r)?r.match(n.re.mailto)[0].length:0}}},l="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function c(e){var t=e.re=n(173)(e.__opts__),a=e.__tlds__.slice();function s(e){return e.replace("%TLDS%",t.src_tlds)}e.onCompile(),e.__tlds_replaced__||a.push("a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]"),a.push(t.src_xn),t.src_tlds=a.join("|"),t.email_fuzzy=RegExp(s(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(s(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(s(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(s(t.tpl_host_fuzzy_test),"i");var l=[];function c(e,t){throw new Error('(LinkifyIt) Invalid schema "'+e+'": '+t)}e.__compiled__={},Object.keys(e.__schemas__).forEach((function(t){var n=e.__schemas__[t];if(null!==n){var o={validate:null,link:null};if(e.__compiled__[t]=o,"[object Object]"===r(n))return function(e){return"[object RegExp]"===r(e)}(n.validate)?o.validate=function(e){return function(t,n){var r=t.slice(n);return e.test(r)?r.match(e)[0].length:0}}(n.validate):i(n.validate)?o.validate=n.validate:c(t,n),void(i(n.normalize)?o.normalize=n.normalize:n.normalize?c(t,n):o.normalize=function(e,t){t.normalize(e)});!function(e){return"[object String]"===r(e)}(n)?c(t,n):l.push(t)}})),l.forEach((function(t){e.__compiled__[e.__schemas__[t]]&&(e.__compiled__[t].validate=e.__compiled__[e.__schemas__[t]].validate,e.__compiled__[t].normalize=e.__compiled__[e.__schemas__[t]].normalize)})),e.__compiled__[""]={validate:null,normalize:function(e,t){t.normalize(e)}};var u=Object.keys(e.__compiled__).filter((function(t){return t.length>0&&e.__compiled__[t]})).map(o).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+u+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+u+")","ig"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),function(e){e.__index__=-1,e.__text_cache__=""}(e)}function u(e,t){var n=e.__index__,r=e.__last_index__,i=e.__text_cache__.slice(n,r);this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=r+t,this.raw=i,this.text=i,this.url=i}function f(e,t){var n=new u(e,t);return e.__compiled__[n.schema].normalize(n,e),n}function d(e,n){if(!(this instanceof d))return new d(e,n);var r;n||(r=e,Object.keys(r||{}).reduce((function(e,t){return e||a.hasOwnProperty(t)}),!1)&&(n=e,e={})),this.__opts__=t({},a,n),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=t({},s,e),this.__compiled__={},this.__tlds__=l,this.__tlds_replaced__=!1,this.re={},c(this)}d.prototype.add=function(e,t){return this.__schemas__[e]=t,c(this),this},d.prototype.set=function(e){return this.__opts__=t(this.__opts__,e),this},d.prototype.test=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return!1;var t,n,r,i,o,a,s,l;if(this.re.schema_test.test(e))for((s=this.re.schema_search).lastIndex=0;null!==(t=s.exec(e));)if(i=this.testSchemaAt(e,t[2],s.lastIndex)){this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+i;break}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(l=e.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||l=0&&null!==(r=e.match(this.re.email_fuzzy))&&(o=r.index+r[1].length,a=r.index+r[0].length,(this.__index__<0||othis.__last_index__)&&(this.__schema__="mailto:",this.__index__=o,this.__last_index__=a)),this.__index__>=0},d.prototype.pretest=function(e){return this.re.pretest.test(e)},d.prototype.testSchemaAt=function(e,t,n){return this.__compiled__[t.toLowerCase()]?this.__compiled__[t.toLowerCase()].validate(e,n,this):0},d.prototype.match=function(e){var t=0,n=[];this.__index__>=0&&this.__text_cache__===e&&(n.push(f(this,t)),t=this.__last_index__);for(var r=t?e.slice(t):e;this.test(r);)n.push(f(this,t)),r=r.slice(this.__last_index__),t+=this.__last_index__;return n.length?n:null},d.prototype.tlds=function(e,t){return e=Array.isArray(e)?e:[e],t?(this.__tlds__=this.__tlds__.concat(e).sort().filter((function(e,t,n){return e!==n[t-1]})).reverse(),c(this),this):(this.__tlds__=e.slice(),this.__tlds_replaced__=!0,c(this),this)},d.prototype.normalize=function(e){e.schema||(e.url="http://"+e.url),"mailto:"!==e.schema||/^mailto:/i.test(e.url)||(e.url="mailto:"+e.url)},d.prototype.onCompile=function(){},e.exports=d})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=function(e){var t={};return t.src_Any=n(67).source,t.src_Cc=n(68).source,t.src_Z=n(69).source,t.src_P=n(47).source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|"),t.src_pseudo_letter="(?:(?![><|]|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|[><|]|"+t.src_ZPCc+")(?!-|_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|[><|]|[()[\\]{}.,\"'?!\\-;]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-]).|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]).|"+(e&&e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+",(?!"+t.src_ZCc+").|;(?!"+t.src_ZCc+").|\\!+(?!"+t.src_ZCc+"|[!]).|\\?(?!"+t.src_ZCc+"|[?]).)+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy='(^|[><|]|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){(function(e,r){var i,o,a,s;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,s=function(){"use strict"; +/*! https://mths.be/punycode v1.4.1 by @mathias */!function(i){t&&t.nodeType,e&&e.nodeType;var o="object"==typeof r&&r;o.global!==o&&o.window!==o&&o.self;var s,l=2147483647,c=/^xn--/,u=/[^\x20-\x7E]/,f=/[\x2E\u3002\uFF0E\uFF61]/g,d={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},p=Math.floor,h=String.fromCharCode;function m(e){throw new RangeError(d[e])}function g(e,t){for(var n=e.length,r=[];n--;)r[n]=t(e[n]);return r}function v(e,t){var n=e.split("@"),r="";return n.length>1&&(r=n[0]+"@",e=n[1]),r+g((e=e.replace(f,".")).split("."),t).join(".")}function y(e){for(var t,n,r=[],i=0,o=e.length;i=55296&&t<=56319&&i65535&&(t+=h((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+=h(e)})).join("")}function T(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function E(e,t,n){var r=0;for(e=n?p(e/700):e>>1,e+=p(e/t);e>455;r+=36)e=p(e/35);return p(r+36*e/(e+38))}function O(e){var t,n,r,i,o,a,s,c,u,f,d,h=[],g=e.length,v=0,y=128,T=72;for((n=e.lastIndexOf("-"))<0&&(n=0),r=0;r=128&&m("not-basic"),h.push(e.charCodeAt(r));for(i=n>0?n+1:0;i=g&&m("invalid-input"),((c=(d=e.charCodeAt(i++))-48<10?d-22:d-65<26?d-65:d-97<26?d-97:36)>=36||c>p((l-v)/a))&&m("overflow"),v+=c*a,!(c<(u=s<=T?1:s>=T+26?26:s-T));s+=36)a>p(l/(f=36-u))&&m("overflow"),a*=f;T=E(v-o,t=h.length+1,0==o),p(v/t)>l-y&&m("overflow"),y+=p(v/t),v%=t,h.splice(v++,0,y)}return b(h)}function _(e){var t,n,r,i,o,a,s,c,u,f,d,g,v,b,O,_=[];for(g=(e=y(e)).length,t=128,n=0,o=72,a=0;a=t&&dp((l-n)/(v=r+1))&&m("overflow"),n+=(s-t)*v,t=s,a=0;al&&m("overflow"),d==t){for(c=n,u=36;!(c<(f=u<=o?1:u>=o+26?26:u-o));u+=36)O=c-f,b=36-f,_.push(h(T(f+O%b,0))),c=p(O/b);_.push(h(T(c,0))),o=E(n,v,r==i),n=0,++r}++n,++t}return _.join("")}s={version:"1.4.1",ucs2:{decode:y,encode:b},decode:O,encode:_,toASCII:function(e){return v(e,(function(e){return u.test(e)?"xn--"+_(e):e}))},toUnicode:function(e){return v(e,(function(e){return c.test(e)?O(e.slice(4).toLowerCase()):e}))}},void 0===(a=function(){return s}.call(t,n,t,e))||(e.exports=a)}()},o=[],void 0===(a="function"==typeof(i=s)?i.apply(t,o):i)||(e.exports=a)}).call(this,n(175)(e),n(43))},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline"]},block:{rules:["paragraph"]},inline:{rules:["text"],rules2:["balance_pairs","text_collapse"]}}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";e.exports={options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline"]},block:{rules:["blockquote","code","fence","heading","hr","html_block","lheading","list","reference","paragraph"]},inline:{rules:["autolink","backticks","emphasis","entity","escape","html_inline","image","link","newline","text"],rules2:["balance_pairs","emphasis","text_collapse"]}}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.normalizeWhitespace=function(e){return e.replace(n," ")},e.invalidCharacters=void 0;const t=Array.from({length:11},(e,t)=>String.fromCharCode(8192+t)).concat(["\u2028","\u2029"," "," "]);e.invalidCharacters=t;const n=new RegExp("["+t.join("")+"]","g")})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){ +/*! + * escape-html + * Copyright(c) 2012-2013 TJ Holowaychuk + * Copyright(c) 2015 Andreas Lubbe + * Copyright(c) 2015 Tiancheng "Timothy" Gu + * MIT Licensed + */ +"use strict";var t=/["'&<>]/;e.exports=function(e){var n,r=""+e,i=t.exec(r);if(!i)return r;var o="",a=0,s=0;for(a=i.index;a=0;a--){var s=i[a].from(),l=i[a].to();s.line>=n||(l.line>=n&&(l=r(n,0)),n=s.line,null==o?this.uncomment(s,l,e)?o="un":(this.lineComment(s,l,e),o="line"):"un"==o?this.uncomment(s,l,e):this.lineComment(s,l,e))}})),e.defineExtension("lineComment",(function(e,i,s){s||(s=t);var l=this,c=a(l,e),u=l.getLine(e.line);if(null!=u&&(f=e,d=u,!/\bstring\b/.test(l.getTokenTypeAt(r(f.line,0)))||/^[\'\"\`]/.test(d))){var f,d,p=s.lineComment||c.lineComment;if(p){var h=Math.min(0!=i.ch||i.line==e.line?i.line+1:i.line,l.lastLine()+1),m=null==s.padding?" ":s.padding,g=s.commentBlankLines||e.line==i.line;l.operation((function(){if(s.indent){for(var t=null,i=e.line;ia.length)&&(t=a)}for(i=e.line;id||l.operation((function(){if(0!=s.fullLines){var t=n.test(l.getLine(d));l.replaceRange(p+f,r(d)),l.replaceRange(u+p,r(e.line,0));var a=s.blockCommentLead||c.blockCommentLead;if(null!=a)for(var h=e.line+1;h<=d;++h)(h!=d||t)&&l.replaceRange(a+p,r(h,0))}else{var m=0==i(l.getCursor("to"),o),g=!l.somethingSelected();l.replaceRange(f,o),m&&l.setSelection(g?o:l.getCursor("from"),o),l.replaceRange(u,e)}}))}}else(s.lineComment||c.lineComment)&&0!=s.fullLines&&l.lineComment(e,o,s)})),e.defineExtension("uncomment",(function(e,i,o){o||(o=t);var s,l=this,c=a(l,e),u=Math.min(0!=i.ch||i.line==e.line?i.line:i.line-1,l.lastLine()),f=Math.min(e.line,u),d=o.lineComment||c.lineComment,p=[],h=null==o.padding?" ":o.padding;e:if(d){for(var m=f;m<=u;++m){var g=l.getLine(m),v=g.indexOf(d);if(v>-1&&!/comment/.test(l.getTokenTypeAt(r(m,v+1)))&&(v=-1),-1==v&&n.test(g))break e;if(v>-1&&n.test(g.slice(0,v)))break e;p.push(g)}if(l.operation((function(){for(var e=f;e<=u;++e){var t=p[e-f],n=t.indexOf(d),i=n+d.length;n<0||(t.slice(i,i+h.length)==h&&(i+=h.length),s=!0,l.replaceRange("",r(e,n),r(e,i)))}})),s)return!0}var y=o.blockCommentStart||c.blockCommentStart,b=o.blockCommentEnd||c.blockCommentEnd;if(!y||!b)return!1;var T=o.blockCommentLead||c.blockCommentLead,E=l.getLine(f),O=E.indexOf(y);if(-1==O)return!1;var _=u==f?E:l.getLine(u),C=_.indexOf(b,u==f?O+y.length:0),x=r(f,O+1),w=r(u,C+1);if(-1==C||!/comment/.test(l.getTokenTypeAt(x))||!/comment/.test(l.getTokenTypeAt(w))||l.getRange(x,w,"\n").indexOf(b)>-1)return!1;var k=E.lastIndexOf(y,e.ch),S=-1==k?-1:E.slice(0,e.ch).indexOf(b,k+y.length);if(-1!=k&&-1!=S&&S+b.length!=e.ch)return!1;S=_.indexOf(b,i.ch);var N=_.slice(i.ch).lastIndexOf(y,S-i.ch);return k=-1==S||-1==N?-1:i.ch+N,(-1==S||-1==k||k==i.ch)&&(l.operation((function(){l.replaceRange("",r(u,C-(h&&_.slice(C-h.length,C)==h?h.length:0)),r(u,C+b.length));var e=O+y.length;if(h&&E.slice(e,e+h.length)==h&&(e+=h.length),l.replaceRange("",r(f,O),r(f,e)),T)for(var t=f+1;t<=u;++t){var i=l.getLine(t),o=i.indexOf(T);if(-1!=o&&!n.test(i.slice(0,o))){var a=o+T.length;h&&i.slice(a,a+h.length)==h&&(a+=h.length),l.replaceRange("",r(t,o),r(t,a))}}})),!0)}))}(n(10))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";!function(e){function t(t,n,i,o){if(i&&i.call){var a=i;i=null}else a=r(t,i,"rangeFinder");"number"==typeof n&&(n=e.Pos(n,0));var s=r(t,i,"minFoldSize");function l(e){var r=a(t,n);if(!r||r.to.line-r.from.linet.firstLine();)n=e.Pos(n.line-1,0),c=l(!1);if(c&&!c.cleared&&"unfold"!==o){var u=function(e,t,n){var i=r(e,t,"widget");if("function"==typeof i&&(i=i(n.from,n.to)),"string"==typeof i){var o=document.createTextNode(i);(i=document.createElement("span")).appendChild(o),i.className="CodeMirror-foldmarker"}else i&&(i=i.cloneNode(!0));return i}(t,i,c);e.on(u,"mousedown",(function(t){f.clear(),e.e_preventDefault(t)}));var f=t.markText(c.from,c.to,{replacedWith:u,clearOnEnter:r(t,i,"clearOnEnter"),__isFold:!0});f.on("clear",(function(n,r){e.signal(t,"unfold",t,n,r)})),e.signal(t,"fold",t,c.from,c.to)}}e.newFoldFunction=function(e,n){return function(r,i){t(r,i,{rangeFinder:e,widget:n})}},e.defineExtension("foldCode",(function(e,n,r){t(this,e,n,r)})),e.defineExtension("isFolded",(function(e){for(var t=this.findMarksAt(e),n=0;n0&&(c.from=r.default.Pos(c.from.line,c.from.ch),c.to=r.default.Pos(c.to.line,c.to.ch),r.default.signal(e,"hasCompletion",e,c,a)),c}}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=e(n(10)),i=n(28),o=["error","warning","information","hint"],a={"GraphQL: Validation":"validation","GraphQL: Deprecation":"deprecation","GraphQL: Syntax":"syntax"};r.default.registerHelper("lint","graphql",(function(e,t){var n=t.schema;return i.getDiagnostics(e,n,t.validationRules,void 0,t.externalFragments).map((function(e){return{message:e.message,severity:e.severity?o[e.severity-1]:o[0],type:e.source?a[e.source]:void 0,from:r.default.Pos(e.range.start.line,e.range.start.character),to:r.default.Pos(e.range.end.line,e.range.end.character)}}))}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=n(12),i=e(n(10)),o=e(n(74)),a=n(76);function s(e,t,n){var r,i=(null===(r=t.fieldDef)||void 0===r?void 0:r.name)||"";"__"!==i.slice(0,2)&&(u(e,t,n,t.parentType),d(e,".")),d(e,i,"field-name",n,a.getFieldReference(t))}function l(e,t,n){var r;d(e,"@"+((null===(r=t.directiveDef)||void 0===r?void 0:r.name)||""),"directive-name",n,a.getDirectiveReference(t))}function c(e,t,n,r){d(e,": "),u(e,t,n,r)}function u(e,t,n,i){i instanceof r.GraphQLNonNull?(u(e,t,n,i.ofType),d(e,"!")):i instanceof r.GraphQLList?(d(e,"["),u(e,t,n,i.ofType),d(e,"]")):d(e,(null==i?void 0:i.name)||"","type-name",n,a.getTypeReference(t,i))}function f(e,t,n){var r=n.description;if(r){var i=document.createElement("div");i.className="info-description",t.renderDescription?i.innerHTML=t.renderDescription(r):i.appendChild(document.createTextNode(r)),e.appendChild(i)}!function(e,t,n){var r=n.deprecationReason;if(r){var i=document.createElement("div");i.className="info-deprecation",t.renderDescription?i.innerHTML=t.renderDescription(r):i.appendChild(document.createTextNode(r));var o=document.createElement("span");o.className="info-deprecation-label",o.appendChild(document.createTextNode("Deprecated: ")),i.insertBefore(o,i.firstChild),e.appendChild(i)}}(e,t,n)}function d(e,t,n,r,i){if(void 0===n&&(n=""),void 0===r&&(r={onClick:null}),void 0===i&&(i=null),n){var o=r.onClick,a=void 0;o?((a=document.createElement("a")).href="javascript:void 0",a.addEventListener("click",(function(e){o(i,e)}))):a=document.createElement("span"),a.className=n,a.appendChild(document.createTextNode(t)),e.appendChild(a)}else e.appendChild(document.createTextNode(t))}n(77),i.default.registerHelper("info","graphql",(function(e,t){if(t.schema&&e.state){var n,r=e.state,i=r.kind,p=r.step,h=o.default(t.schema,e.state);return"Field"===i&&0===p&&h.fieldDef||"AliasedField"===i&&2===p&&h.fieldDef?(function(e,t,n){s(e,t,n),c(e,t,n,t.type)}(n=document.createElement("div"),h,t),f(n,t,h.fieldDef),n):"Directive"===i&&1===p&&h.directiveDef?(l(n=document.createElement("div"),h,t),f(n,t,h.directiveDef),n):"Argument"===i&&0===p&&h.argDef?(function(e,t,n){var r;t.directiveDef?l(e,t,n):t.fieldDef&&s(e,t,n);var i=(null===(r=t.argDef)||void 0===r?void 0:r.name)||"";d(e,"("),d(e,i,"arg-name",n,a.getArgumentReference(t)),c(e,t,n,t.inputType),d(e,")")}(n=document.createElement("div"),h,t),f(n,t,h.argDef),n):"EnumValue"===i&&h.enumValue&&h.enumValue.description?(function(e,t,n){var r,i=(null===(r=t.enumValue)||void 0===r?void 0:r.name)||"";u(e,t,n,t.inputType),d(e,"."),d(e,i,"enum-value",n,a.getEnumValueReference(t))}(n=document.createElement("div"),h,t),f(n,t,h.enumValue),n):"NamedType"===i&&h.type&&h.type.description?(u(n=document.createElement("div"),h,t,h.type),f(n,t,h.type),n):void 0}}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=e(n(10)),i=e(n(74)),o=n(76);n(187),r.default.registerHelper("jump","graphql",(function(e,t){if(t.schema&&t.onClick&&e.state){var n=e.state,r=n.kind,a=n.step,s=i.default(t.schema,n);return"Field"===r&&0===a&&s.fieldDef||"AliasedField"===r&&2===a&&s.fieldDef?o.getFieldReference(s):"Directive"===r&&1===a&&s.directiveDef?o.getDirectiveReference(s):"Argument"===r&&0===a&&s.argDef?o.getArgumentReference(s):"EnumValue"===r&&s.enumValue?o.getEnumValueReference(s):"NamedType"===r&&s.type?o.getTypeReference(s):void 0}}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=e(n(10));function i(e,t){var n=t.target||t.srcElement;if(n instanceof HTMLElement&&"SPAN"===(null==n?void 0:n.nodeName)){var r=n.getBoundingClientRect(),i={left:(r.left+r.right)/2,top:(r.top+r.bottom)/2};e.state.jump.cursor=i,e.state.jump.isHoldingModifier&&l(e)}}function o(e){e.state.jump.isHoldingModifier||!e.state.jump.cursor?e.state.jump.isHoldingModifier&&e.state.jump.marker&&c(e):e.state.jump.cursor=null}function a(e,t){if(!e.state.jump.isHoldingModifier&&t.key===(s?"Meta":"Control")){e.state.jump.isHoldingModifier=!0,e.state.jump.cursor&&l(e);var n=function(a){a.code===t.code&&(e.state.jump.isHoldingModifier=!1,e.state.jump.marker&&c(e),r.default.off(document,"keyup",n),r.default.off(document,"click",i),e.off("mousedown",o))},i=function(t){var n=e.state.jump.destination;n&&e.state.jump.options.onClick(n,t)},o=function(t,n){e.state.jump.destination&&(n.codemirrorIgnore=!0)};r.default.on(document,"keyup",n),r.default.on(document,"click",i),e.on("mousedown",o)}}r.default.defineOption("jump",!1,(function(e,t,n){if(n&&n!==r.default.Init){var s=e.state.jump.onMouseOver;r.default.off(e.getWrapperElement(),"mouseover",s);var l=e.state.jump.onMouseOut;r.default.off(e.getWrapperElement(),"mouseout",l),r.default.off(document,"keydown",e.state.jump.onKeyDown),delete e.state.jump}if(t){var c=e.state.jump={options:t,onMouseOver:i.bind(null,e),onMouseOut:o.bind(null,e),onKeyDown:a.bind(null,e)};r.default.on(e.getWrapperElement(),"mouseover",c.onMouseOver),r.default.on(e.getWrapperElement(),"mouseout",c.onMouseOut),r.default.on(document,"keydown",c.onKeyDown)}}));var s="undefined"!=typeof navigator&&navigator&&-1!==navigator.appVersion.indexOf("Mac");function l(e){if(!e.state.jump.marker){var t=e.state.jump.cursor,n=e.coordsChar(t),r=e.getTokenAt(n,!0),i=e.state.jump.options,o=i.getDestination||e.getHelper(n,"jump");if(o){var a=o(r,i,e);if(a){var s=e.markText({line:n.line,ch:r.start},{line:n.line,ch:r.end},{className:"CodeMirror-jump-token"});e.state.jump.marker=s,e.state.jump.destination=a}}}}function c(e){var t=e.state.jump.marker;e.state.jump.marker=null,e.state.jump.destination=null,t.clear()}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=e(n(10)),i=e(n(189));r.default.defineMode("graphql",i.default)})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=n(28),i=e(n(190));t.default=function(e){var t=r.onlineParser({eatWhitespace:function(e){return e.eatWhile(r.isIgnored)},lexRules:r.LexRules,parseRules:r.ParseRules,editorConfig:{tabSize:e.tabSize}});return{config:e,startState:t.startState,token:t.token,indent:i.default,electricInput:/^\s*[})\]]/,fold:"brace",lineComment:"#",closeBrackets:{pairs:'()[]{}""',explode:"()[]{}"}}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e,t){var n,r,i=e.levels;return((i&&0!==i.length?i[i.length-1]-((null===(n=this.electricInput)||void 0===n?void 0:n.test(t))?1:0):e.indentLevel)||0)*((null===(r=this.config)||void 0===r?void 0:r.indentUnit)||0)}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(50),n(36)],void 0===(o="function"==typeof(r=function(e,t,r,i){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}Object.defineProperty(e,"__esModule",{value:!0}),e.VariableEditor=void 0,t=o(t),r=o(r),i=o(i);class s extends t.default.Component{constructor(e){super(e),a(this,"CodeMirror",void 0),a(this,"editor",null),a(this,"cachedValue",void 0),a(this,"_node",null),a(this,"ignoreChangeEvent",!1),a(this,"_onKeyUp",(e,t)=>{const n=t.keyCode;this.editor&&(n>=65&&n<=90||!t.shiftKey&&n>=48&&n<=57||t.shiftKey&&189===n||t.shiftKey&&222===n)&&this.editor.execCommand("autocomplete")}),a(this,"_onEdit",()=>{this.editor&&(this.ignoreChangeEvent||(this.cachedValue=this.editor.getValue(),this.props.onEdit&&this.props.onEdit(this.cachedValue)))}),a(this,"_onHasCompletion",(e,t)=>{(0,r.default)(e,t,this.props.onHintInformationRender)}),this.cachedValue=e.value||""}componentDidMount(){this.CodeMirror=n(10),n(37),n(38),n(51),n(40),n(39),n(52),n(29),n(41),n(30),n(42),n(192),n(194),n(196);const e=this.editor=this.CodeMirror(this._node,{value:this.props.value||"",lineNumbers:!0,tabSize:2,mode:"graphql-variables",theme:this.props.editorTheme||"graphiql",keyMap:"sublime",autoCloseBrackets:!0,matchBrackets:!0,showCursorWhenSelecting:!0,readOnly:!!this.props.readOnly&&"nocursor",foldGutter:{minFoldSize:4},lint:{variableToType:this.props.variableToType},hintOptions:{variableToType:this.props.variableToType,closeOnUnfocus:!1,completeSingle:!1,container:this._node},gutters:["CodeMirror-linenumbers","CodeMirror-foldgutter"],extraKeys:{"Cmd-Space":()=>this.editor.showHint({completeSingle:!1,container:this._node}),"Ctrl-Space":()=>this.editor.showHint({completeSingle:!1,container:this._node}),"Alt-Space":()=>this.editor.showHint({completeSingle:!1,container:this._node}),"Shift-Space":()=>this.editor.showHint({completeSingle:!1,container:this._node}),"Cmd-Enter":()=>{this.props.onRunQuery&&this.props.onRunQuery()},"Ctrl-Enter":()=>{this.props.onRunQuery&&this.props.onRunQuery()},"Shift-Ctrl-P":()=>{this.props.onPrettifyQuery&&this.props.onPrettifyQuery()},"Shift-Ctrl-M":()=>{this.props.onMergeQuery&&this.props.onMergeQuery()},...i.default}});e.on("change",this._onEdit),e.on("keyup",this._onKeyUp),e.on("hasCompletion",this._onHasCompletion)}componentDidUpdate(e){if(this.CodeMirror=n(10),this.editor){if(this.ignoreChangeEvent=!0,this.props.variableToType!==e.variableToType&&(this.editor.options.lint.variableToType=this.props.variableToType,this.editor.options.hintOptions.variableToType=this.props.variableToType,this.CodeMirror.signal(this.editor,"change",this.editor)),this.props.value!==e.value&&this.props.value!==this.cachedValue){const e=this.props.value||"";this.cachedValue=e,this.editor.setValue(e)}this.ignoreChangeEvent=!1}}componentWillUnmount(){this.editor&&(this.editor.off("change",this._onEdit),this.editor.off("keyup",this._onKeyUp),this.editor.off("hasCompletion",this._onHasCompletion),this.editor=null)}render(){return t.default.createElement("div",{className:"codemirrorWrap",style:{position:this.props.active?"relative":"absolute",visibility:this.props.active?"visible":"hidden"},ref:e=>{this._node=e}})}getCodeMirror(){return this.editor}getClientHeight(){return this._node&&this._node.clientHeight}}e.VariableEditor=s})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=e(n(10)),i=n(12),o=e(n(75)),a=e(n(193));function s(e,t,n){var r="Invalid"===t.state.kind?t.state.prevState:t.state,s=r.kind,l=r.step;if("Document"===s&&0===l)return a.default(e,t,[{text:"{"}]);var c=n.variableToType;if(c){var u=function(e,t){var n={type:null,fields:null};return o.default(t,(function(t){if("Variable"===t.kind)n.type=e[t.name];else if("ListValue"===t.kind){var r=n.type?i.getNullableType(n.type):void 0;n.type=r instanceof i.GraphQLList?r.ofType:null}else if("ObjectValue"===t.kind){var o=n.type?i.getNamedType(n.type):void 0;n.fields=o instanceof i.GraphQLInputObjectType?o.getFields():null}else if("ObjectField"===t.kind){var a=t.name&&n.fields?n.fields[t.name]:null;n.type=a&&a.type}})),n}(c,t.state);if("Document"===s||"Variable"===s&&0===l){var f=Object.keys(c);return a.default(e,t,f.map((function(e){return{text:'"'+e+'": ',type:c[e]}})))}if(("ObjectValue"===s||"ObjectField"===s&&0===l)&&u.fields){var d=Object.keys(u.fields).map((function(e){return u.fields[e]}));return a.default(e,t,d.map((function(e){return{text:'"'+e.name+'": ',type:e.type,description:e.description}})))}if("StringValue"===s||"NumberValue"===s||"BooleanValue"===s||"NullValue"===s||"ListValue"===s&&1===l||"ObjectField"===s&&2===l||"Variable"===s&&2===l){var p=u.type?i.getNamedType(u.type):void 0;if(p instanceof i.GraphQLInputObjectType)return a.default(e,t,[{text:"{"}]);if(p instanceof i.GraphQLEnumType){var h=p.getValues();return a.default(e,t,h.map((function(e){return{text:'"'+e.name+'"',type:p,description:e.description}})))}if(p===i.GraphQLBoolean)return a.default(e,t,[{text:"true",type:i.GraphQLBoolean,description:"Not false."},{text:"false",type:i.GraphQLBoolean,description:"Not true."}])}}}r.default.registerHelper("hint","graphql-variables",(function(e,t){var n=e.getCursor(),i=e.getTokenAt(n),o=s(n,i,t);return o&&o.list&&o.list.length>0&&(o.from=r.default.Pos(o.from.line,o.from.ch),o.to=r.default.Pos(o.to.line,o.to.ch),r.default.signal(e,"hasCompletion",e,o,i)),o}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";function e(e,t){var n=e.filter(t);return 0===n.length?e:n}function n(e){return e.toLowerCase().replace(/\W/g,"")}function r(e,t){var n=function(e,t){var n,r,i=[],o=e.length,a=t.length;for(n=0;n<=o;n++)i[n]=[n];for(r=1;r<=a;r++)i[0][r]=r;for(n=1;n<=o;n++)for(r=1;r<=a;r++){var s=e[n-1]===t[r-1]?0:1;i[n][r]=Math.min(i[n-1][r]+1,i[n][r-1]+1,i[n-1][r-1]+s),n>1&&r>1&&e[n-1]===t[r-2]&&e[n-2]===t[r-1]&&(i[n][r]=Math.min(i[n][r],i[n-2][r-2]+s))}return i[o][a]}(t,e);return e.length>t.length&&(n-=e.length-t.length-1,n+=0===e.indexOf(t)?0:.5),n}Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(t,i,o){var a=function(t,i){return i?e(e(t.map((function(e){return{proximity:r(n(e.text),i),entry:e}})),(function(e){return e.proximity<=2})),(function(e){return!e.entry.isDeprecated})).sort((function(e,t){return(e.entry.isDeprecated?1:0)-(t.entry.isDeprecated?1:0)||e.proximity-t.proximity||e.entry.text.length-t.entry.text.length})).map((function(e){return e.entry})):e(t,(function(e){return!e.isDeprecated}))}(o,n(i.string));if(a){var s=null!==i.type&&/"|\w/.test(i.string[0])?i.start:i.end;return{list:a,from:{line:t.line,ch:s},to:{line:t.line,ch:i.end}}}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e,t){var n="function"==typeof Symbol&&e[Symbol.iterator];if(!n)return e;var r,i,o=n.call(e),a=[];try{for(;(void 0===t||t-- >0)&&!(r=o.next()).done;)a.push(r.value)}catch(e){i={error:e}}finally{try{r&&!r.done&&(n=o.return)&&n.call(o)}finally{if(i)throw i.error}}return a},r=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(10)),o=n(12),a=r(n(195));function s(t,n,r){var i=[];return r.members.forEach((function(r){var a;if(r){var s=null===(a=r.key)||void 0===a?void 0:a.value,u=n[s];u?function e(t,n){if(!t||!n)return[];if(t instanceof o.GraphQLNonNull)return"Null"===n.kind?[[n,'Type "'+t+'" is non-nullable and cannot be null.']]:e(t.ofType,n);if("Null"===n.kind)return[];if(t instanceof o.GraphQLList){var r=t.ofType;return"Array"===n.kind?c(n.values||[],(function(t){return e(r,t)})):e(r,n)}if(t instanceof o.GraphQLInputObjectType){if("Object"!==n.kind)return[[n,'Type "'+t+'" must be an Object.']];var i=Object.create(null),a=c(n.members,(function(n){var r,o=null===(r=null==n?void 0:n.key)||void 0===r?void 0:r.value;i[o]=!0;var a=t.getFields()[o];if(!a)return[[n.key,'Type "'+t+'" does not have a field "'+o+'".']];var s=a?a.type:void 0;return e(s,n.value)}));return Object.keys(t.getFields()).forEach((function(e){i[e]||t.getFields()[e].type instanceof o.GraphQLNonNull&&a.push([n,'Object of type "'+t+'" is missing required field "'+e+'".'])})),a}return"Boolean"===t.name&&"Boolean"!==n.kind||"String"===t.name&&"String"!==n.kind||"ID"===t.name&&"Number"!==n.kind&&"String"!==n.kind||"Float"===t.name&&"Number"!==n.kind||"Int"===t.name&&("Number"!==n.kind||(0|n.value)!==n.value)||(t instanceof o.GraphQLEnumType||t instanceof o.GraphQLScalarType)&&("String"!==n.kind&&"Number"!==n.kind&&"Boolean"!==n.kind&&"Null"!==n.kind||null==(s=t.parseValue(n.value))||s!=s)?[[n,'Expected value of type "'+t+'".']]:[];var s}(u,r.value).forEach((function(n){var r=e(n,2),o=r[0],a=r[1];i.push(l(t,o,a))})):i.push(l(t,r.key,'Variable "$'+s+'" does not appear in any GraphQL query.'))}})),i}function l(e,t,n){return{message:n,severity:"error",type:"validation",from:e.posFromIndex(t.start),to:e.posFromIndex(t.end)}}function c(e,t){return Array.prototype.concat.apply([],e.map(t))}i.default.registerHelper("lint","graphql-variables",(function(e,t,n){if(!e)return[];var r;try{r=a.default(e)}catch(e){if(e.stack)throw e;return[l(n,e,e.message)]}var i=t.variableToType;return i?s(n,i,r):[]}))})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e,n,r,i,o,a,s;function l(){var e=r,t=[];if(d("{"),!h("}")){do{t.push(c())}while(h(","));d("}")}return{kind:"Object",start:e,end:o,members:t}}function c(){var e=r,t="String"===s?f():null;d("String"),d(":");var n=u();return{kind:"Member",start:e,end:o,key:t,value:n}}function u(){switch(s){case"[":return function(){var e=r,t=[];if(d("["),!h("]")){do{t.push(u())}while(h(","));d("]")}return{kind:"Array",start:e,end:o,values:t}}();case"{":return l();case"String":case"Number":case"Boolean":case"Null":var e=f();return g(),e}d("Value")}function f(){return{kind:s,start:r,end:i,value:JSON.parse(e.slice(r,i))}}function d(t){if(s!==t){var n;if("EOF"===s)n="[end of file]";else if(i-r>1)n="`"+e.slice(r,i)+"`";else{var o=e.slice(r).match(/^.+?\b/);n="`"+(o?o[0]:e[r])+"`"}throw p("Expected "+t+" but found "+n+".")}g()}function p(e){return{message:e,start:r,end:i}}function h(e){if(s===e)return g(),!0}function m(){return i31;)if(92===a)switch(a=m()){case 34:case 47:case 92:case 98:case 102:case 110:case 114:case 116:m();break;case 117:m(),v(),v(),v(),v();break;default:throw p("Bad character escape sequence.")}else{if(i===n)throw p("Unterminated string.");m()}if(34!==a)throw p("Unterminated string.");m()}();case 45:case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:return s="Number",45===a&&m(),48===a?m():y(),46===a&&(m(),y()),void(69!==a&&101!==a||(43!==(a=m())&&45!==a||m(),y()));case 102:if("false"!==e.slice(r,r+5))break;return i+=4,m(),void(s="Boolean");case 110:if("null"!==e.slice(r,r+4))break;return i+=3,m(),void(s="Null");case 116:if("true"!==e.slice(r,r+4))break;return i+=3,m(),void(s="Boolean")}s=e[r],m()}else s="EOF"}function v(){if(a>=48&&a<=57||a>=65&&a<=70||a>=97&&a<=102)return m();throw p("Expected hexadecimal digit.")}function y(){if(a<48||a>57)throw p("Expected decimal digit.");do{m()}while(a>=48&&a<=57)}Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(t){e=t,n=t.length,r=i=o=-1,m(),g();var a=l();return d("EOF"),a}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=e(n(10)),i=n(28);function o(e,t){var n,r,i=e.levels;return((i&&0!==i.length?i[i.length-1]-((null===(n=this.electricInput)||void 0===n?void 0:n.test(t))?1:0):e.indentLevel)||0)*((null===(r=this.config)||void 0===r?void 0:r.indentUnit)||0)}r.default.defineMode("graphql-variables",(function(e){var t=i.onlineParser({eatWhitespace:function(e){return e.eatSpace()},lexRules:a,parseRules:s,editorConfig:{tabSize:e.tabSize}});return{config:e,startState:t.startState,token:t.token,indent:o,electricInput:/^\s*[}\]]/,fold:"brace",closeBrackets:{pairs:'[]{}""',explode:"[]{}"}}}));var a={Punctuation:/^\[|]|\{|\}|:|,/,Number:/^-?(?:0|(?:[1-9][0-9]*))(?:\.[0-9]*)?(?:[eE][+-]?[0-9]+)?/,String:/^"(?:[^"\\]|\\(?:"|\/|\\|b|f|n|r|t|u[0-9a-fA-F]{4}))*"?/,Keyword:/^true|false|null/},s={Document:[i.p("{"),i.list("Variable",i.opt(i.p(","))),i.p("}")],Variable:[l("variable"),i.p(":"),"Value"],Value:function(e){switch(e.kind){case"Number":return"NumberValue";case"String":return"StringValue";case"Punctuation":switch(e.value){case"[":return"ListValue";case"{":return"ObjectValue"}return null;case"Keyword":switch(e.value){case"true":case"false":return"BooleanValue";case"null":return"NullValue"}return null}},NumberValue:[i.t("Number","number")],StringValue:[i.t("String","string")],BooleanValue:[i.t("Keyword","builtin")],NullValue:[i.t("Keyword","keyword")],ListValue:[i.p("["),i.list("Value",i.opt(i.p(","))),i.p("]")],ObjectValue:[i.p("{"),i.list("ObjectField",i.opt(i.p(","))),i.p("}")],ObjectField:[l("attribute"),i.p(":"),"Value"]};function l(e){return{style:e,match:function(e){return"String"===e.kind},update:function(e,t){e.name=t.value.slice(1,-1)}}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(50),n(36)],void 0===(o="function"==typeof(r=function(e,t,r,i){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}Object.defineProperty(e,"__esModule",{value:!0}),e.HeaderEditor=void 0,t=o(t),r=o(r),i=o(i);class s extends t.default.Component{constructor(e){super(e),a(this,"CodeMirror",void 0),a(this,"editor",null),a(this,"cachedValue",void 0),a(this,"_node",null),a(this,"ignoreChangeEvent",!1),a(this,"_onKeyUp",(e,t)=>{const n=t.keyCode;this.editor&&(n>=65&&n<=90||!t.shiftKey&&n>=48&&n<=57||t.shiftKey&&189===n||t.shiftKey&&222===n)&&this.editor.execCommand("autocomplete")}),a(this,"_onEdit",()=>{this.editor&&(this.ignoreChangeEvent||(this.cachedValue=this.editor.getValue(),this.props.onEdit&&this.props.onEdit(this.cachedValue)))}),a(this,"_onHasCompletion",(e,t)=>{(0,r.default)(e,t,this.props.onHintInformationRender)}),this.cachedValue=e.value||""}componentDidMount(){this.CodeMirror=n(10),n(37),n(38),n(51),n(40),n(39),n(52),n(29),n(41),n(30),n(198),n(42);const e=this.editor=this.CodeMirror(this._node,{value:this.props.value||"",lineNumbers:!0,tabSize:2,mode:{name:"javascript",json:!0},theme:this.props.editorTheme||"graphiql",keyMap:"sublime",autoCloseBrackets:!0,matchBrackets:!0,showCursorWhenSelecting:!0,readOnly:!!this.props.readOnly&&"nocursor",foldGutter:{minFoldSize:4},gutters:["CodeMirror-linenumbers","CodeMirror-foldgutter"],extraKeys:{"Cmd-Space":()=>this.editor.showHint({completeSingle:!1,container:this._node}),"Ctrl-Space":()=>this.editor.showHint({completeSingle:!1,container:this._node}),"Alt-Space":()=>this.editor.showHint({completeSingle:!1,container:this._node}),"Shift-Space":()=>this.editor.showHint({completeSingle:!1,container:this._node}),"Cmd-Enter":()=>{this.props.onRunQuery&&this.props.onRunQuery()},"Ctrl-Enter":()=>{this.props.onRunQuery&&this.props.onRunQuery()},"Shift-Ctrl-P":()=>{this.props.onPrettifyQuery&&this.props.onPrettifyQuery()},"Shift-Ctrl-M":()=>{this.props.onMergeQuery&&this.props.onMergeQuery()},...i.default}});e.on("change",this._onEdit),e.on("keyup",this._onKeyUp),e.on("hasCompletion",this._onHasCompletion)}componentDidUpdate(e){if(this.CodeMirror=n(10),this.editor){if(this.ignoreChangeEvent=!0,this.props.value!==e.value&&this.props.value!==this.cachedValue){const e=this.props.value||"";this.cachedValue=e,this.editor.setValue(e)}this.ignoreChangeEvent=!1}}componentWillUnmount(){this.editor&&(this.editor.off("change",this._onEdit),this.editor.off("keyup",this._onKeyUp),this.editor.off("hasCompletion",this._onHasCompletion),this.editor=null)}render(){return t.default.createElement("div",{className:"codemirrorWrap",style:{position:this.props.active?"relative":"absolute",visibility:this.props.active?"visible":"hidden"},ref:e=>{this._node=e}})}getCodeMirror(){return this.editor}getClientHeight(){return this._node&&this._node.clientHeight}}e.HeaderEditor=s})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e;(e=n(10)).defineMode("javascript",(function(t,n){var r,i,o=t.indentUnit,a=n.statementIndent,s=n.jsonld,l=n.json||s,c=n.typescript,u=n.wordCharacters||/[\w$\xa1-\uffff]/,f=function(){function e(e){return{type:e,style:"keyword"}}var t=e("keyword a"),n=e("keyword b"),r=e("keyword c"),i=e("keyword d"),o=e("operator"),a={type:"atom",style:"atom"};return{if:e("if"),while:t,with:t,else:n,do:n,try:n,finally:n,return:i,break:i,continue:i,new:e("new"),delete:r,void:r,throw:r,debugger:e("debugger"),var:e("var"),const:e("var"),let:e("var"),function:e("function"),catch:e("catch"),for:e("for"),switch:e("switch"),case:e("case"),default:e("default"),in:o,typeof:o,instanceof:o,true:a,false:a,null:a,undefined:a,NaN:a,Infinity:a,this:e("this"),class:e("class"),super:e("atom"),yield:r,export:e("export"),import:e("import"),extends:r,await:r}}(),d=/[+\-*&%=<>!?|~^@]/,p=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;function h(e,t,n){return r=e,i=n,t}function m(e,t){var n,r=e.next();if('"'==r||"'"==r)return t.tokenize=(n=r,function(e,t){var r,i=!1;if(s&&"@"==e.peek()&&e.match(p))return t.tokenize=m,h("jsonld-keyword","meta");for(;null!=(r=e.next())&&(r!=n||i);)i=!i&&"\\"==r;return i||(t.tokenize=m),h("string","string")}),t.tokenize(e,t);if("."==r&&e.match(/^\d[\d_]*(?:[eE][+\-]?[\d_]+)?/))return h("number","number");if("."==r&&e.match(".."))return h("spread","meta");if(/[\[\]{}\(\),;\:\.]/.test(r))return h(r);if("="==r&&e.eat(">"))return h("=>","operator");if("0"==r&&e.match(/^(?:x[\dA-Fa-f_]+|o[0-7_]+|b[01_]+)n?/))return h("number","number");if(/\d/.test(r))return e.match(/^[\d_]*(?:n|(?:\.[\d_]*)?(?:[eE][+\-]?[\d_]+)?)?/),h("number","number");if("/"==r)return e.eat("*")?(t.tokenize=g,g(e,t)):e.eat("/")?(e.skipToEnd(),h("comment","comment")):Qe(e,t,1)?(function(e){for(var t,n=!1,r=!1;null!=(t=e.next());){if(!n){if("/"==t&&!r)return;"["==t?r=!0:r&&"]"==t&&(r=!1)}n=!n&&"\\"==t}}(e),e.match(/^\b(([gimyus])(?![gimyus]*\2))+\b/),h("regexp","string-2")):(e.eat("="),h("operator","operator",e.current()));if("`"==r)return t.tokenize=v,v(e,t);if("#"==r&&"!"==e.peek())return e.skipToEnd(),h("meta","meta");if("#"==r&&e.eatWhile(u))return h("variable","property");if("<"==r&&e.match("!--")||"-"==r&&e.match("->")&&!/\S/.test(e.string.slice(0,e.start)))return e.skipToEnd(),h("comment","comment");if(d.test(r))return">"==r&&t.lexical&&">"==t.lexical.type||(e.eat("=")?"!"!=r&&"="!=r||e.eat("="):/[<>*+\-|&?]/.test(r)&&(e.eat(r),">"==r&&e.eat(r))),"?"==r&&e.eat(".")?h("."):h("operator","operator",e.current());if(u.test(r)){e.eatWhile(u);var i=e.current();if("."!=t.lastType){if(f.propertyIsEnumerable(i)){var o=f[i];return h(o.type,o.style,i)}if("async"==i&&e.match(/^(\s|\/\*([^*]|\*(?!\/))*?\*\/)*[\[\(\w]/,!1))return h("async","keyword",i)}return h("variable","variable",i)}}function g(e,t){for(var n,r=!1;n=e.next();){if("/"==n&&r){t.tokenize=m;break}r="*"==n}return h("comment","comment")}function v(e,t){for(var n,r=!1;null!=(n=e.next());){if(!r&&("`"==n||"$"==n&&e.eat("{"))){t.tokenize=m;break}r=!r&&"\\"==n}return h("quasi","string-2",e.current())}function y(e,t){t.fatArrowAt&&(t.fatArrowAt=null);var n=e.string.indexOf("=>",e.start);if(!(n<0)){if(c){var r=/:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(e.string.slice(e.start,n));r&&(n=r.index)}for(var i=0,o=!1,a=n-1;a>=0;--a){var s=e.string.charAt(a),l="([{}])".indexOf(s);if(l>=0&&l<3){if(!i){++a;break}if(0==--i){"("==s&&(o=!0);break}}else if(l>=3&&l<6)++i;else if(u.test(s))o=!0;else if(/["'\/`]/.test(s))for(;;--a){if(0==a)return;if(e.string.charAt(a-1)==s&&"\\"!=e.string.charAt(a-2)){a--;break}}else if(o&&!i){++a;break}}o&&!i&&(t.fatArrowAt=a)}}var b={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,this:!0,"jsonld-keyword":!0};function T(e,t,n,r,i,o){this.indented=e,this.column=t,this.type=n,this.prev=i,this.info=o,null!=r&&(this.align=r)}function E(e,t){for(var n=e.localVars;n;n=n.next)if(n.name==t)return!0;for(var r=e.context;r;r=r.prev)for(n=r.vars;n;n=n.next)if(n.name==t)return!0}var O={state:null,column:null,marked:null,cc:null};function _(){for(var e=arguments.length-1;e>=0;e--)O.cc.push(arguments[e])}function C(){return _.apply(null,arguments),!0}function x(e,t){for(var n=t;n;n=n.next)if(n.name==e)return!0;return!1}function w(e){var t=O.state;if(O.marked="def",t.context)if("var"==t.lexical.info&&t.context&&t.context.block){var r=function e(t,n){if(n){if(n.block){var r=e(t,n.prev);return r?r==n.prev?n:new S(r,n.vars,!0):null}return x(t,n.vars)?n:new S(n.prev,new N(t,n.vars),!1)}return null}(e,t.context);if(null!=r)return void(t.context=r)}else if(!x(e,t.localVars))return void(t.localVars=new N(e,t.localVars));n.globalVars&&!x(e,t.globalVars)&&(t.globalVars=new N(e,t.globalVars))}function k(e){return"public"==e||"private"==e||"protected"==e||"abstract"==e||"readonly"==e}function S(e,t,n){this.prev=e,this.vars=t,this.block=n}function N(e,t){this.name=e,this.next=t}var D=new N("this",new N("arguments",null));function I(){O.state.context=new S(O.state.context,O.state.localVars,!1),O.state.localVars=D}function A(){O.state.context=new S(O.state.context,O.state.localVars,!0),O.state.localVars=null}function L(){O.state.localVars=O.state.context.vars,O.state.context=O.state.context.prev}function F(e,t){var n=function(){var n=O.state,r=n.indented;if("stat"==n.lexical.type)r=n.lexical.indented;else for(var i=n.lexical;i&&")"==i.type&&i.align;i=i.prev)r=i.indented;n.lexical=new T(r,O.stream.column(),e,null,n.lexical,t)};return n.lex=!0,n}function j(){var e=O.state;e.lexical.prev&&(")"==e.lexical.type&&(e.indented=e.lexical.indented),e.lexical=e.lexical.prev)}function M(e){return function t(n){return n==e?C():";"==e||"}"==n||")"==n||"]"==n?_():C(t)}}function R(e,t){return"var"==e?C(F("vardef",t),ye,M(";"),j):"keyword a"==e?C(F("form"),B,R,j):"keyword b"==e?C(F("form"),R,j):"keyword d"==e?O.stream.match(/^\s*$/,!1)?C():C(F("stat"),q,M(";"),j):"debugger"==e?C(M(";")):"{"==e?C(F("}"),A,oe,j,L):";"==e?C():"if"==e?("else"==O.state.lexical.info&&O.state.cc[O.state.cc.length-1]==j&&O.state.cc.pop()(),C(F("form"),B,R,j,Ce)):"function"==e?C(Se):"for"==e?C(F("form"),xe,R,j):"class"==e||c&&"interface"==t?(O.marked="keyword",C(F("form","class"==e?e:t),Le,j)):"variable"==e?c&&"declare"==t?(O.marked="keyword",C(R)):c&&("module"==t||"enum"==t||"type"==t)&&O.stream.match(/^\s*\w/,!1)?(O.marked="keyword","enum"==t?C(Ge):"type"==t?C(De,M("operator"),ue,M(";")):C(F("form"),be,M("{"),F("}"),oe,j,j)):c&&"namespace"==t?(O.marked="keyword",C(F("form"),V,R,j)):c&&"abstract"==t?(O.marked="keyword",C(R)):C(F("stat"),X):"switch"==e?C(F("form"),B,M("{"),F("}","switch"),A,oe,j,j,L):"case"==e?C(V,M(":")):"default"==e?C(M(":")):"catch"==e?C(F("form"),I,P,R,j,L):"export"==e?C(F("stat"),Re,j):"import"==e?C(F("stat"),Ve,j):"async"==e?C(R):"@"==t?C(V,R):_(F("stat"),V,M(";"),j)}function P(e){if("("==e)return C(Ie,M(")"))}function V(e,t){return $(e,t,!1)}function U(e,t){return $(e,t,!0)}function B(e){return"("!=e?_():C(F(")"),q,M(")"),j)}function $(e,t,n){if(O.state.fatArrowAt==O.stream.start){var r=n?W:K;if("("==e)return C(I,F(")"),re(Ie,")"),j,M("=>"),r,L);if("variable"==e)return _(I,be,M("=>"),r,L)}var i=n?G:H;return b.hasOwnProperty(e)?C(i):"function"==e?C(Se,i):"class"==e||c&&"interface"==t?(O.marked="keyword",C(F("form"),Ae,j)):"keyword c"==e||"async"==e?C(n?U:V):"("==e?C(F(")"),q,M(")"),j,i):"operator"==e||"spread"==e?C(n?U:V):"["==e?C(F("]"),He,j,i):"{"==e?ie(ee,"}",null,i):"quasi"==e?_(z,i):"new"==e?C(function(e){return function(t){return"."==t?C(e?J:Y):"variable"==t&&c?C(me,e?G:H):_(e?U:V)}}(n)):"import"==e?C(V):C()}function q(e){return e.match(/[;\}\)\],]/)?_():_(V)}function H(e,t){return","==e?C(q):G(e,t,!1)}function G(e,t,n){var r=0==n?H:G,i=0==n?V:U;return"=>"==e?C(I,n?W:K,L):"operator"==e?/\+\+|--/.test(t)||c&&"!"==t?C(r):c&&"<"==t&&O.stream.match(/^([^<>]|<[^<>]*>)*>\s*\(/,!1)?C(F(">"),re(ue,">"),j,r):"?"==t?C(V,M(":"),i):C(i):"quasi"==e?_(z,r):";"!=e?"("==e?ie(U,")","call",r):"."==e?C(Z,r):"["==e?C(F("]"),q,M("]"),j,r):c&&"as"==t?(O.marked="keyword",C(ue,r)):"regexp"==e?(O.state.lastType=O.marked="operator",O.stream.backUp(O.stream.pos-O.stream.start-1),C(i)):void 0:void 0}function z(e,t){return"quasi"!=e?_():"${"!=t.slice(t.length-2)?C(z):C(V,Q)}function Q(e){if("}"==e)return O.marked="string-2",O.state.tokenize=v,C(z)}function K(e){return y(O.stream,O.state),_("{"==e?R:V)}function W(e){return y(O.stream,O.state),_("{"==e?R:U)}function Y(e,t){if("target"==t)return O.marked="keyword",C(H)}function J(e,t){if("target"==t)return O.marked="keyword",C(G)}function X(e){return":"==e?C(j,R):_(H,M(";"),j)}function Z(e){if("variable"==e)return O.marked="property",C()}function ee(e,t){return"async"==e?(O.marked="property",C(ee)):"variable"==e||"keyword"==O.style?(O.marked="property","get"==t||"set"==t?C(te):(c&&O.state.fatArrowAt==O.stream.start&&(n=O.stream.match(/^\s*:\s*/,!1))&&(O.state.fatArrowAt=O.stream.pos+n[0].length),C(ne))):"number"==e||"string"==e?(O.marked=s?"property":O.style+" property",C(ne)):"jsonld-keyword"==e?C(ne):c&&k(t)?(O.marked="keyword",C(ee)):"["==e?C(V,ae,M("]"),ne):"spread"==e?C(U,ne):"*"==t?(O.marked="keyword",C(ee)):":"==e?_(ne):void 0;var n}function te(e){return"variable"!=e?_(ne):(O.marked="property",C(Se))}function ne(e){return":"==e?C(U):"("==e?_(Se):void 0}function re(e,t,n){function r(i,o){if(n?n.indexOf(i)>-1:","==i){var a=O.state.lexical;return"call"==a.info&&(a.pos=(a.pos||0)+1),C((function(n,r){return n==t||r==t?_():_(e)}),r)}return i==t||o==t?C():n&&n.indexOf(";")>-1?_(e):C(M(t))}return function(n,i){return n==t||i==t?C():_(e,r)}}function ie(e,t,n){for(var r=3;r"),ue):void 0}function fe(e){if("=>"==e)return C(ue)}function de(e,t){return"variable"==e||"keyword"==O.style?(O.marked="property",C(de)):"?"==t||"number"==e||"string"==e?C(de):":"==e?C(ue):"["==e?C(M("variable"),se,M("]"),de):"("==e?_(Ne,de):void 0}function pe(e,t){return"variable"==e&&O.stream.match(/^\s*[?:]/,!1)||"?"==t?C(pe):":"==e?C(ue):"spread"==e?C(pe):_(ue)}function he(e,t){return"<"==t?C(F(">"),re(ue,">"),j,he):"|"==t||"."==e||"&"==t?C(ue):"["==e?C(ue,M("]"),he):"extends"==t||"implements"==t?(O.marked="keyword",C(ue)):"?"==t?C(ue,M(":"),ue):void 0}function me(e,t){if("<"==t)return C(F(">"),re(ue,">"),j,he)}function ge(){return _(ue,ve)}function ve(e,t){if("="==t)return C(ue)}function ye(e,t){return"enum"==t?(O.marked="keyword",C(Ge)):_(be,ae,Oe,_e)}function be(e,t){return c&&k(t)?(O.marked="keyword",C(be)):"variable"==e?(w(t),C()):"spread"==e?C(be):"["==e?ie(Ee,"]"):"{"==e?ie(Te,"}"):void 0}function Te(e,t){return"variable"!=e||O.stream.match(/^\s*:/,!1)?("variable"==e&&(O.marked="property"),"spread"==e?C(be):"}"==e?_():"["==e?C(V,M("]"),M(":"),Te):C(M(":"),be,Oe)):(w(t),C(Oe))}function Ee(){return _(be,Oe)}function Oe(e,t){if("="==t)return C(U)}function _e(e){if(","==e)return C(ye)}function Ce(e,t){if("keyword b"==e&&"else"==t)return C(F("form","else"),R,j)}function xe(e,t){return"await"==t?C(xe):"("==e?C(F(")"),we,j):void 0}function we(e){return"var"==e?C(ye,ke):"variable"==e?C(ke):_(ke)}function ke(e,t){return")"==e?C():";"==e?C(ke):"in"==t||"of"==t?(O.marked="keyword",C(V,ke)):_(V,ke)}function Se(e,t){return"*"==t?(O.marked="keyword",C(Se)):"variable"==e?(w(t),C(Se)):"("==e?C(I,F(")"),re(Ie,")"),j,le,R,L):c&&"<"==t?C(F(">"),re(ge,">"),j,Se):void 0}function Ne(e,t){return"*"==t?(O.marked="keyword",C(Ne)):"variable"==e?(w(t),C(Ne)):"("==e?C(I,F(")"),re(Ie,")"),j,le,L):c&&"<"==t?C(F(">"),re(ge,">"),j,Ne):void 0}function De(e,t){return"keyword"==e||"variable"==e?(O.marked="type",C(De)):"<"==t?C(F(">"),re(ge,">"),j):void 0}function Ie(e,t){return"@"==t&&C(V,Ie),"spread"==e?C(Ie):c&&k(t)?(O.marked="keyword",C(Ie)):c&&"this"==e?C(ae,Oe):_(be,ae,Oe)}function Ae(e,t){return"variable"==e?Le(e,t):Fe(e,t)}function Le(e,t){if("variable"==e)return w(t),C(Fe)}function Fe(e,t){return"<"==t?C(F(">"),re(ge,">"),j,Fe):"extends"==t||"implements"==t||c&&","==e?("implements"==t&&(O.marked="keyword"),C(c?ue:V,Fe)):"{"==e?C(F("}"),je,j):void 0}function je(e,t){return"async"==e||"variable"==e&&("static"==t||"get"==t||"set"==t||c&&k(t))&&O.stream.match(/^\s+[\w$\xa1-\uffff]/,!1)?(O.marked="keyword",C(je)):"variable"==e||"keyword"==O.style?(O.marked="property",C(Me,je)):"number"==e||"string"==e?C(Me,je):"["==e?C(V,ae,M("]"),Me,je):"*"==t?(O.marked="keyword",C(je)):c&&"("==e?_(Ne,je):";"==e||","==e?C(je):"}"==e?C():"@"==t?C(V,je):void 0}function Me(e,t){if("?"==t)return C(Me);if(":"==e)return C(ue,Oe);if("="==t)return C(U);var n=O.state.lexical.prev;return _(n&&"interface"==n.info?Ne:Se)}function Re(e,t){return"*"==t?(O.marked="keyword",C(qe,M(";"))):"default"==t?(O.marked="keyword",C(V,M(";"))):"{"==e?C(re(Pe,"}"),qe,M(";")):_(R)}function Pe(e,t){return"as"==t?(O.marked="keyword",C(M("variable"))):"variable"==e?_(U,Pe):void 0}function Ve(e){return"string"==e?C():"("==e?_(V):_(Ue,Be,qe)}function Ue(e,t){return"{"==e?ie(Ue,"}"):("variable"==e&&w(t),"*"==t&&(O.marked="keyword"),C($e))}function Be(e){if(","==e)return C(Ue,Be)}function $e(e,t){if("as"==t)return O.marked="keyword",C(Ue)}function qe(e,t){if("from"==t)return O.marked="keyword",C(V)}function He(e){return"]"==e?C():_(re(U,"]"))}function Ge(){return _(F("form"),be,M("{"),F("}"),re(ze,"}"),j,j)}function ze(){return _(be,Oe)}function Qe(e,t,n){return t.tokenize==m&&/^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\[{}\(,;:]|=>)$/.test(t.lastType)||"quasi"==t.lastType&&/\{\s*$/.test(e.string.slice(0,e.pos-(n||0)))}return L.lex=!0,j.lex=!0,{startState:function(e){var t={tokenize:m,lastType:"sof",cc:[],lexical:new T((e||0)-o,0,"block",!1),localVars:n.localVars,context:n.localVars&&new S(null,null,!1),indented:e||0};return n.globalVars&&"object"==typeof n.globalVars&&(t.globalVars=n.globalVars),t},token:function(e,t){if(e.sol()&&(t.lexical.hasOwnProperty("align")||(t.lexical.align=!1),t.indented=e.indentation(),y(e,t)),t.tokenize!=g&&e.eatSpace())return null;var n=t.tokenize(e,t);return"comment"==r?n:(t.lastType="operator"!=r||"++"!=i&&"--"!=i?r:"incdec",function(e,t,n,r,i){var o=e.cc;for(O.state=e,O.stream=i,O.marked=null,O.cc=o,O.style=t,e.lexical.hasOwnProperty("align")||(e.lexical.align=!0);;)if((o.length?o.pop():l?V:R)(n,r)){for(;o.length&&o[o.length-1].lex;)o.pop()();return O.marked?O.marked:"variable"==n&&E(e,r)?"variable-2":t}}(t,n,r,i,e))},indent:function(t,r){if(t.tokenize==g||t.tokenize==v)return e.Pass;if(t.tokenize!=m)return 0;var i,s=r&&r.charAt(0),l=t.lexical;if(!/^\s*else\b/.test(r))for(var c=t.cc.length-1;c>=0;--c){var u=t.cc[c];if(u==j)l=l.prev;else if(u!=Ce)break}for(;("stat"==l.type||"form"==l.type)&&("}"==s||(i=t.cc[t.cc.length-1])&&(i==H||i==G)&&!/^[,\.=+\-*:?[\(]/.test(r));)l=l.prev;a&&")"==l.type&&"stat"==l.prev.type&&(l=l.prev);var f=l.type,p=s==f;return"vardef"==f?l.indented+("operator"==t.lastType||","==t.lastType?l.info.length+1:0):"form"==f&&"{"==s?l.indented:"form"==f?l.indented+o:"stat"==f?l.indented+(function(e,t){return"operator"==e.lastType||","==e.lastType||d.test(t.charAt(0))||/[,.]/.test(t.charAt(0))}(t,r)?a||o:0):"switch"!=l.info||p||0==n.doubleIndentSwitch?l.align?l.column+(p?0:1):l.indented+(p?0:o):l.indented+(/^(?:case|default)\b/.test(r)?o:2*o)},electricInput:/^\s*(?:case .*?:|default:|\{|\})$/,blockCommentStart:l?null:"/*",blockCommentEnd:l?null:"*/",blockCommentContinue:l?null:" * ",lineComment:l?null:"//",fold:"brace",closeBrackets:"()[]{}''\"\"``",helperType:l?"json":"javascript",jsonldMode:s,jsonMode:l,expressionAllowed:Qe,skipExpression:function(e){var t=e.cc[e.cc.length-1];t!=V&&t!=U||e.cc.pop()}}})),e.registerHelper("wordChars","javascript",/[\w$]/),e.defineMIME("text/javascript","javascript"),e.defineMIME("text/ecmascript","javascript"),e.defineMIME("application/javascript","javascript"),e.defineMIME("application/x-javascript","javascript"),e.defineMIME("application/ecmascript","javascript"),e.defineMIME("application/json",{name:"javascript",json:!0}),e.defineMIME("application/x-json",{name:"javascript",json:!0}),e.defineMIME("application/ld+json",{name:"javascript",jsonld:!0}),e.defineMIME("text/typescript",{name:"javascript",typescript:!0}),e.defineMIME("application/typescript",{name:"javascript",typescript:!0})})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(200),n(36)],void 0===(o="function"==typeof(r=function(e,t,r,i){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}function a(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}Object.defineProperty(e,"__esModule",{value:!0}),e.ResultViewer=void 0,t=o(t),r=o(r),i=o(i);class s extends t.default.Component{constructor(...e){super(...e),a(this,"viewer",null),a(this,"_node",null)}componentDidMount(){const e=n(10);n(39),n(40),n(30),n(73),n(29),n(41),n(42),n(201);const o=this.props.ResultsTooltip,a=this.props.ImagePreview;if(o||a){n(77);const i=document.createElement("div");e.registerHelper("info","graphql-results",(e,n,s,l)=>{const c=[];return o&&c.push(t.default.createElement(o,{pos:l})),a&&"function"==typeof a.shouldRender&&a.shouldRender(e)&&c.push(t.default.createElement(a,{token:e})),c.length?(r.default.render(t.default.createElement("div",null,c),i),i):(r.default.unmountComponentAtNode(i),null)})}this.viewer=e(this._node,{lineWrapping:!0,value:this.props.value||"",readOnly:!0,theme:this.props.editorTheme||"graphiql",mode:"graphql-results",keyMap:"sublime",foldGutter:{minFoldSize:4},gutters:["CodeMirror-foldgutter"],info:Boolean(this.props.ResultsTooltip||this.props.ImagePreview),extraKeys:i.default})}shouldComponentUpdate(e){return this.props.value!==e.value}componentDidUpdate(){this.viewer&&this.viewer.setValue(this.props.value||"")}componentWillUnmount(){this.viewer=null}render(){return t.default.createElement("section",{className:"result-window","aria-label":"Result Window","aria-live":"polite","aria-atomic":"true",ref:e=>{e&&(this.props.registerRef(e),this._node=e)}})}getCodeMirror(){return this.viewer}getClientHeight(){return this._node&&this._node.clientHeight}}e.ResultViewer=s})?r.apply(t,i):r)||(e.exports=o)},function(e,t){e.exports=window.ReactDOM},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[],void 0===(o="function"==typeof(r=function(){"use strict";var e=function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=e(n(10)),i=n(28);function o(e,t){var n,r,i=e.levels;return((i&&0!==i.length?i[i.length-1]-((null===(n=this.electricInput)||void 0===n?void 0:n.test(t))?1:0):e.indentLevel)||0)*((null===(r=this.config)||void 0===r?void 0:r.indentUnit)||0)}r.default.defineMode("graphql-results",(function(e){var t=i.onlineParser({eatWhitespace:function(e){return e.eatSpace()},lexRules:a,parseRules:s,editorConfig:{tabSize:e.tabSize}});return{config:e,startState:t.startState,token:t.token,indent:o,electricInput:/^\s*[}\]]/,fold:"brace",closeBrackets:{pairs:'[]{}""',explode:"[]{}"}}}));var a={Punctuation:/^\[|]|\{|\}|:|,/,Number:/^-?(?:0|(?:[1-9][0-9]*))(?:\.[0-9]*)?(?:[eE][+-]?[0-9]+)?/,String:/^"(?:[^"\\]|\\(?:"|\/|\\|b|f|n|r|t|u[0-9a-fA-F]{4}))*"?/,Keyword:/^true|false|null/},s={Document:[i.p("{"),i.list("Entry",i.p(",")),i.p("}")],Entry:[i.t("String","def"),i.p(":"),"Value"],Value:function(e){switch(e.kind){case"Number":return"NumberValue";case"String":return"StringValue";case"Punctuation":switch(e.value){case"[":return"ListValue";case"{":return"ObjectValue"}return null;case"Keyword":switch(e.value){case"true":case"false":return"BooleanValue";case"null":return"NullValue"}return null}},NumberValue:[i.t("Number","number")],StringValue:[i.t("String","string")],BooleanValue:[i.t("Keyword","builtin")],NullValue:[i.t("Keyword","keyword")],ListValue:[i.p("["),i.list("Value",i.p(",")),i.p("]")],ObjectValue:[i.p("{"),i.list("ObjectField",i.p(",")),i.p("}")],ObjectField:[i.t("String","property"),i.p(":"),"Value"]}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(12),n(203),n(205),n(206),n(207),n(208)],void 0===(o="function"==typeof(r=function(e,t,n,r,i,o,a,s){"use strict";function l(e){return e&&e.__esModule?e:{default:e}}function c(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}Object.defineProperty(e,"__esModule",{value:!0}),e.DocExplorer=void 0,t=l(t),r=l(r),i=l(i),o=l(o),a=l(a),s=l(s);const u={name:"Schema",title:"Documentation Explorer"};class f extends t.default.Component{constructor(e){super(e),c(this,"handleNavBackClick",()=>{this.state.navStack.length>1&&this.setState({navStack:this.state.navStack.slice(0,-1)})}),c(this,"handleClickType",e=>{this.showDoc(e)}),c(this,"handleClickField",e=>{this.showDoc(e)}),c(this,"handleSearch",e=>{this.showSearch(e)}),this.state={navStack:[u]}}shouldComponentUpdate(e,t){return this.props.schema!==e.schema||this.state.navStack!==t.navStack||this.props.schemaErrors!==e.schemaErrors}render(){const{schema:e,schemaErrors:l}=this.props,c=this.state.navStack,u=c[c.length-1];let f;f=l?t.default.createElement("div",{className:"error-container"},"Error fetching schema"):void 0===e?t.default.createElement("div",{className:"spinner-container"},t.default.createElement("div",{className:"spinner"})):e?u.search?t.default.createElement(a.default,{searchValue:u.search,withinType:u.def,schema:e,onClickType:this.handleClickType,onClickField:this.handleClickField}):1===c.length?t.default.createElement(i.default,{schema:e,onClickType:this.handleClickType}):(0,n.isType)(u.def)?t.default.createElement(s.default,{schema:e,type:u.def,onClickType:this.handleClickType,onClickField:this.handleClickField}):t.default.createElement(r.default,{field:u.def,onClickType:this.handleClickType}):t.default.createElement("div",{className:"error-container"},"No Schema Available");const d=1===c.length||(0,n.isType)(u.def)&&"getFields"in u.def;let p;return c.length>1&&(p=c[c.length-2].name),t.default.createElement("section",{className:"doc-explorer",key:u.name,"aria-label":"Documentation Explorer"},t.default.createElement("div",{className:"doc-explorer-title-bar"},p&&t.default.createElement("button",{className:"doc-explorer-back",onClick:this.handleNavBackClick,"aria-label":"Go back to "+p},p),t.default.createElement("div",{className:"doc-explorer-title"},u.title||u.name),t.default.createElement("div",{className:"doc-explorer-rhs"},this.props.children)),t.default.createElement("div",{className:"doc-explorer-contents"},d&&t.default.createElement(o.default,{value:u.search,placeholder:`Search ${u.name}...`,onSearch:this.handleSearch}),f))}showDoc(e){const t=this.state.navStack;t[t.length-1].def!==e&&this.setState({navStack:t.concat([{name:e.name,def:e}])})}showDocForReference(e){e&&"Type"===e.kind?this.showDoc(e.type):"Field"===e.kind||"Argument"===e.kind&&e.field?this.showDoc(e.field):"EnumValue"===e.kind&&e.type&&this.showDoc(e.type)}showSearch(e){const t=this.state.navStack.slice(),n=t[t.length-1];t[t.length-1]={...n,search:e},this.setState({navStack:t})}reset(){this.setState({navStack:[u]})}}e.DocExplorer=f})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(53),n(204),n(54),n(34)],void 0===(o="function"==typeof(r=function(e,t,n,r,i,o){"use strict";function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=function({field:e,onClickType:a}){const[s,l]=t.default.useState(!1);let c,u,f;if(e&&"args"in e&&e.args.length>0){c=t.default.createElement("div",{id:"doc-args",className:"doc-category"},t.default.createElement("div",{className:"doc-category-title"},"arguments"),e.args.filter(e=>!e.deprecationReason).map(e=>t.default.createElement("div",{key:e.name,className:"doc-category-item"},t.default.createElement("div",null,t.default.createElement(n.default,{arg:e,onClickType:a})),t.default.createElement(i.default,{className:"doc-value-description",markdown:e.description}),e&&"deprecationReason"in e&&t.default.createElement(i.default,{className:"doc-deprecation",markdown:null==e?void 0:e.deprecationReason}))));const r=e.args.filter(e=>Boolean(e.deprecationReason));r.length>0&&(u=t.default.createElement("div",{id:"doc-deprecated-args",className:"doc-category"},t.default.createElement("div",{className:"doc-category-title"},"deprecated arguments"),s?r.map((e,r)=>t.default.createElement("div",{key:r},t.default.createElement("div",null,t.default.createElement(n.default,{arg:e,onClickType:a})),t.default.createElement(i.default,{className:"doc-value-description",markdown:e.description}),e&&"deprecationReason"in e&&t.default.createElement(i.default,{className:"doc-deprecation",markdown:null==e?void 0:e.deprecationReason}))):t.default.createElement("button",{className:"show-btn",onClick:()=>l(!s)},"Show deprecated arguments...")))}return e&&e.astNode&&e.astNode.directives&&e.astNode.directives.length>0&&(f=t.default.createElement("div",{id:"doc-directives",className:"doc-category"},t.default.createElement("div",{className:"doc-category-title"},"directives"),e.astNode.directives.map(e=>t.default.createElement("div",{key:e.name.value,className:"doc-category-item"},t.default.createElement("div",null,t.default.createElement(r.default,{directive:e})))))),t.default.createElement("div",null,t.default.createElement(i.default,{className:"doc-type-description",markdown:(null==e?void 0:e.description)||"No Description"}),e&&"deprecationReason"in e&&t.default.createElement(i.default,{className:"doc-deprecation",markdown:null==e?void 0:e.deprecationReason}),t.default.createElement("div",{className:"doc-category"},t.default.createElement("div",{className:"doc-category-title"},"type"),t.default.createElement(o.default,{type:null==e?void 0:e.type,onClick:a})),c,f,u)},t=a(t),n=a(n),r=a(r),i=a(i),o=a(o)})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14)],void 0===(o="function"==typeof(r=function(e,t){"use strict";var n;Object.defineProperty(e,"__esModule",{value:!0}),e.default=function({directive:e}){return t.default.createElement("span",{className:"doc-category-item",id:e.name.value},"@",e.name.value)},t=(n=t)&&n.__esModule?n:{default:n}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(34),n(54)],void 0===(o="function"==typeof(r=function(e,t,n,r){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=function({schema:e,onClickType:i}){const o=e.getQueryType(),a=e.getMutationType&&e.getMutationType(),s=e.getSubscriptionType&&e.getSubscriptionType();return t.default.createElement("div",null,t.default.createElement(r.default,{className:"doc-type-description",markdown:e.description||"A GraphQL schema provides a root type for each kind of operation."}),t.default.createElement("div",{className:"doc-category"},t.default.createElement("div",{className:"doc-category-title"},"root types"),t.default.createElement("div",{className:"doc-category-item"},t.default.createElement("span",{className:"keyword"},"query"),": ",t.default.createElement(n.default,{type:o,onClick:i})),a&&t.default.createElement("div",{className:"doc-category-item"},t.default.createElement("span",{className:"keyword"},"mutation"),": ",t.default.createElement(n.default,{type:a,onClick:i})),s&&t.default.createElement("div",{className:"doc-category-item"},t.default.createElement("span",{className:"keyword"},"subscription"),": ",t.default.createElement(n.default,{type:s,onClick:i}))))},t=i(t),n=i(n),r=i(r)})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(79)],void 0===(o="function"==typeof(r=function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,t=r(t),n=r(n);class o extends t.default.Component{constructor(e){super(e),i(this,"debouncedOnSearch",void 0),i(this,"handleChange",e=>{const t=e.currentTarget.value;this.setState({value:t}),this.debouncedOnSearch(t)}),i(this,"handleClear",()=>{this.setState({value:""}),this.props.onSearch("")}),this.state={value:e.value||""},this.debouncedOnSearch=(0,n.default)(200,this.props.onSearch)}render(){return t.default.createElement("label",{className:"search-box"},t.default.createElement("div",{className:"search-box-icon","aria-hidden":"true"},"⚲"),t.default.createElement("input",{value:this.state.value,onChange:this.handleChange,type:"text",placeholder:this.props.placeholder,"aria-label":this.props.placeholder}),this.state.value&&t.default.createElement("button",{className:"search-box-clear",onClick:this.handleClear,"aria-label":"Clear search input"},"✕"))}}e.default=o})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(53),n(34)],void 0===(o="function"==typeof(r=function(e,t,n,r){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,t=i(t),n=i(n),r=i(r);class o extends t.default.Component{shouldComponentUpdate(e){return this.props.schema!==e.schema||this.props.searchValue!==e.searchValue}render(){const e=this.props.searchValue,i=this.props.withinType,o=this.props.schema,s=this.props.onClickType,l=this.props.onClickField,c=[],u=[],f=[],d=o.getTypeMap();let p=Object.keys(d);i&&(p=p.filter(e=>e!==i.name),p.unshift(i.name));for(const o of p){if(c.length+u.length+f.length>=100)break;const p=d[o];if(i!==p&&a(o,e)&&u.push(t.default.createElement("div",{className:"doc-category-item",key:o},t.default.createElement(r.default,{type:p,onClick:s}))),p&&"getFields"in p){const u=p.getFields();Object.keys(u).forEach(d=>{const h=u[d];let m;if(!a(d,e)){if(!("args"in h)||!h.args.length)return;if(m=h.args.filter(t=>a(t.name,e)),0===m.length)return}const g=t.default.createElement("div",{className:"doc-category-item",key:o+"."+d},i!==p&&[t.default.createElement(r.default,{key:"type",type:p,onClick:s}),"."],t.default.createElement("a",{className:"field-name",onClick:e=>l(h,p,e)},h.name),m&&["(",t.default.createElement("span",{key:"args"},m.map(e=>t.default.createElement(n.default,{key:e.name,arg:e,onClickType:s,showDefaultValue:!1}))),")"]);i===p?c.push(g):f.push(g)})}}return c.length+u.length+f.length===0?t.default.createElement("span",{className:"doc-alert-text"},"No results found."):i&&u.length+f.length>0?t.default.createElement("div",null,c,t.default.createElement("div",{className:"doc-category"},t.default.createElement("div",{className:"doc-category-title"},"other results"),u,f)):t.default.createElement("div",{className:"doc-search-items"},c,u,f)}}function a(e,t){try{const n=t.replace(/[^_0-9A-Za-z]/g,e=>"\\"+e);return-1!==e.search(new RegExp(n,"i"))}catch(n){return-1!==e.toLowerCase().indexOf(t.toLowerCase())}}e.default=o})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(12),n(53),n(54),n(34),n(78)],void 0===(o="function"==typeof(r=function(e,t,n,r,i,o,a){"use strict";function s(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,t=s(t),r=s(r),i=s(i),o=s(o),a=s(a);class l extends t.default.Component{constructor(e){var t,n,r;super(e),r=()=>this.setState({showDeprecated:!0}),(n="handleShowDeprecated")in(t=this)?Object.defineProperty(t,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[n]=r,this.state={showDeprecated:!1}}shouldComponentUpdate(e,t){return this.props.type!==e.type||this.props.schema!==e.schema||this.state.showDeprecated!==t.showDeprecated}render(){const e=this.props.schema,r=this.props.type,a=this.props.onClickType,s=this.props.onClickField;let l,f,d,p,h,m=null,g=[];if(r instanceof n.GraphQLUnionType?(m="possible types",g=e.getPossibleTypes(r)):r instanceof n.GraphQLInterfaceType?(m="implementations",g=e.getPossibleTypes(r)):r instanceof n.GraphQLObjectType&&(m="implements",g=r.getInterfaces()),g&&g.length>0&&(l=t.default.createElement("div",{id:"doc-types",className:"doc-category"},t.default.createElement("div",{className:"doc-category-title"},m),g.map(e=>t.default.createElement("div",{key:e.name,className:"doc-category-item"},t.default.createElement(o.default,{type:e,onClick:a}))))),r&&"getFields"in r){const e=r.getFields(),n=Object.keys(e).map(t=>e[t]);f=t.default.createElement("div",{id:"doc-fields",className:"doc-category"},t.default.createElement("div",{className:"doc-category-title"},"fields"),n.filter(e=>!e.deprecationReason).map(e=>t.default.createElement(c,{key:e.name,type:r,field:e,onClickType:a,onClickField:s})));const i=n.filter(e=>Boolean(e.deprecationReason));i.length>0&&(d=t.default.createElement("div",{id:"doc-deprecated-fields",className:"doc-category"},t.default.createElement("div",{className:"doc-category-title"},"deprecated fields"),this.state.showDeprecated?i.map(e=>t.default.createElement(c,{key:e.name,type:r,field:e,onClickType:a,onClickField:s})):t.default.createElement("button",{className:"show-btn",onClick:this.handleShowDeprecated},"Show deprecated fields...")))}if(r instanceof n.GraphQLEnumType){const e=r.getValues();p=t.default.createElement("div",{className:"doc-category"},t.default.createElement("div",{className:"doc-category-title"},"values"),e.filter(e=>Boolean(!e.deprecationReason)).map(e=>t.default.createElement(u,{key:e.name,value:e})));const n=e.filter(e=>Boolean(e.deprecationReason));n.length>0&&(h=t.default.createElement("div",{className:"doc-category"},t.default.createElement("div",{className:"doc-category-title"},"deprecated values"),this.state.showDeprecated?n.map(e=>t.default.createElement(u,{key:e.name,value:e})):t.default.createElement("button",{className:"show-btn",onClick:this.handleShowDeprecated},"Show deprecated values...")))}return t.default.createElement("div",null,t.default.createElement(i.default,{className:"doc-type-description",markdown:"description"in r&&r.description||"No Description"}),r instanceof n.GraphQLObjectType&&l,f,d,p,h,!(r instanceof n.GraphQLObjectType)&&l)}}function c({type:e,field:n,onClickType:s,onClickField:l}){return t.default.createElement("div",{className:"doc-category-item"},t.default.createElement("a",{className:"field-name",onClick:t=>l(n,e,t)},n.name),"args"in n&&n.args&&n.args.length>0&&["(",t.default.createElement("span",{key:"args"},n.args.filter(e=>!e.deprecationReason).map(e=>t.default.createElement(r.default,{key:e.name,arg:e,onClickType:s}))),")"],": ",t.default.createElement(o.default,{type:n.type,onClick:s}),t.default.createElement(a.default,{field:n}),n.description&&t.default.createElement(i.default,{className:"field-short-description",markdown:n.description}),"deprecationReason"in n&&n.deprecationReason&&t.default.createElement(i.default,{className:"doc-deprecation",markdown:n.deprecationReason}))}function u({value:e}){return t.default.createElement("div",{className:"doc-category-item"},t.default.createElement("div",{className:"enum-value"},e.name),t.default.createElement(i.default,{className:"doc-value-description",markdown:e.description}),e.deprecationReason&&t.default.createElement(i.default,{className:"doc-deprecation",markdown:e.deprecationReason}))}e.default=l})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14),n(210),n(80)],void 0===(o="function"==typeof(r=function(e,t,n,r){"use strict";function i(e){return e&&e.__esModule?e:{default:e}}function o(){return(o=Object.assign||function(e){for(var t=1;t{this.historyStore.updateHistory(e,t,n,r),this.setState({queries:this.historyStore.queries})}),a(this,"onHandleEditLabel",(e,t,n,r,i,o)=>{this.historyStore.editLabel(e,t,n,r,i,o),this.setState({queries:this.historyStore.queries})}),a(this,"onToggleFavorite",(e,t,n,r,i,o)=>{this.historyStore.toggleFavorite(e,t,n,r,i,o),this.setState({queries:this.historyStore.queries})}),this.historyStore=new r.default(this.props.storage,this.props.maxHistoryLength);const t=this.historyStore.queries;this.state={queries:t}}render(){const e=this.state.queries.slice().reverse().map((e,r)=>t.default.createElement(n.default,o({handleEditLabel:this.onHandleEditLabel,handleToggleFavorite:this.onToggleFavorite,key:`${r}:${e.label||e.query}`,onSelect:this.props.onSelectQuery},e)));return t.default.createElement("section",{"aria-label":"History"},t.default.createElement("div",{className:"history-title-bar"},t.default.createElement("div",{className:"history-title"},"History"),t.default.createElement("div",{className:"doc-explorer-rhs"},this.props.children)),t.default.createElement("ul",{className:"history-contents"},e))}}e.QueryHistory=s})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(14)],void 0===(o="function"==typeof(r=function(e,t){"use strict";var n;Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,t=(n=t)&&n.__esModule?n:{default:n};class r extends t.default.Component{constructor(e){super(e),function(e,t,n){t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n}(this,"editField",void 0),this.state={editable:!1},this.editField=null}render(){var e;const n=this.props.label||this.props.operationName||(null===(e=this.props.query)||void 0===e?void 0:e.split("\n").filter(e=>0!==e.indexOf("#")).join("")),r=this.props.favorite?"★":"☆";return t.default.createElement("li",{className:this.state.editable?"editable":void 0},this.state.editable?t.default.createElement("input",{type:"text",defaultValue:this.props.label,ref:e=>{this.editField=e},onBlur:this.handleFieldBlur.bind(this),onKeyDown:this.handleFieldKeyDown.bind(this),placeholder:"Type a label"}):t.default.createElement("button",{className:"history-label",onClick:this.handleClick.bind(this)},n),t.default.createElement("button",{onClick:this.handleEditClick.bind(this),"aria-label":"Edit label"},"✎"),t.default.createElement("button",{className:this.props.favorite?"favorited":void 0,onClick:this.handleStarClick.bind(this),"aria-label":this.props.favorite?"Remove favorite":"Add favorite"},r))}handleClick(){this.props.onSelect(this.props.query,this.props.variables,this.props.headers,this.props.operationName,this.props.label)}handleStarClick(e){e.stopPropagation(),this.props.handleToggleFavorite(this.props.query,this.props.variables,this.props.headers,this.props.operationName,this.props.label,this.props.favorite)}handleFieldBlur(e){e.stopPropagation(),this.setState({editable:!1}),this.props.handleEditLabel(this.props.query,this.props.variables,this.props.headers,this.props.operationName,e.target.value,this.props.favorite)}handleFieldKeyDown(e){13===e.keyCode&&(e.stopPropagation(),this.setState({editable:!1}),this.props.handleEditLabel(this.props.query,this.props.variables,this.props.headers,this.props.operationName,e.currentTarget.value,this.props.favorite))}handleEditClick(e){e.stopPropagation(),this.setState({editable:!0},()=>{this.editField&&this.editField.focus()})}}e.default=r})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,e.default=class{constructor(e,t,n=null){this.key=e,this.storage=t,this.maxSize=n,function(e,t,n){t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n}(this,"items",void 0),this.items=this.fetchAll()}get length(){return this.items.length}contains(e){return this.items.some(t=>t.query===e.query&&t.variables===e.variables&&t.headers===e.headers&&t.operationName===e.operationName)}edit(e){const t=this.items.findIndex(t=>t.query===e.query&&t.variables===e.variables&&t.headers===e.headers&&t.operationName===e.operationName);-1!==t&&(this.items.splice(t,1,e),this.save())}delete(e){const t=this.items.findIndex(t=>t.query===e.query&&t.variables===e.variables&&t.headers===e.headers&&t.operationName===e.operationName);-1!==t&&(this.items.splice(t,1),this.save())}fetchRecent(){return this.items[this.items.length-1]}fetchAll(){const e=this.storage.get(this.key);return e?JSON.parse(e)[this.key]:[]}push(e){const t=[...this.items,e];this.maxSize&&t.length>this.maxSize&&t.shift();for(let e=0;e<5;e++){const e=this.storage.set(this.key,JSON.stringify({[this.key]:t}));if(e&&e.error){if(!e.isQuotaError||!this.maxSize)return;t.shift()}else this.items=t}}save(){this.storage.set(this.key,JSON.stringify({[this.key]:this.items}))}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,e.default=class{constructor(){var e,t,n;n=[],(t="sizes")in(e=this)?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n}updateSizes(e){e.forEach((e,t)=>{if(e){const n=e.getClientHeight();if(t<=this.sizes.length&&n!==this.sizes[t]){const t=e.getCodeMirror();t&&t.setSize(null,null)}this.sizes[t]=n}})}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,e.default=class{constructor(e){var t,n,r;r=void 0,(n="storage")in(t=this)?Object.defineProperty(t,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[n]=r,this.storage=e||("undefined"!=typeof window?window.localStorage:null)}get(e){if(this.storage){const t=this.storage.getItem("graphiql:"+e);if("null"===t||"undefined"===t)return this.storage.removeItem("graphiql:"+e),null;if(t)return t}return null}set(e,t){let n=!1,r=null;if(this.storage){const i="graphiql:"+e;if(t)try{this.storage.setItem(i,t)}catch(e){r=e,n=function(e,t){return t instanceof DOMException&&(22===t.code||1014===t.code||"QuotaExceededError"===t.name||"NS_ERROR_DOM_QUOTA_REACHED"===t.name)&&0!==e.length}(this.storage,e)}else this.storage.removeItem(i)}return{isQuotaError:n,error:r}}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=function(e,t,n){if(!n||n.length<1)return;const r=n.map(e=>e.name&&e.name.value);if(t&&-1!==r.indexOf(t))return t;if(t&&e){const n=e.map(e=>e.name&&e.name.value).indexOf(t);if(-1!==n&&n{(0,t.isLeafType)(n[e].type)&&r.push(e)}),r}function r(e,t){if(0===t.length)return e;let n="",r=0;return t.forEach(({index:t,string:i})=>{n+=e.slice(r,t)+i,r=t}),n+=e.slice(r),n}Object.defineProperty(e,"__esModule",{value:!0}),e.fillLeafs=function(e,i,o){const a=[];if(!e||!i)return{insertions:a,result:i};let s;try{s=(0,t.parse)(i)}catch(e){return{insertions:a,result:i}}const l=o||n,c=new t.TypeInfo(e);return(0,t.visit)(s,{leave(e){c.leave(e)},enter(e){if(c.enter(e),"Field"===e.kind&&!e.selectionSet){const n=function e(n,r){const i=(0,t.getNamedType)(n);if(!n||(0,t.isLeafType)(n))return;const o=r(i);return Array.isArray(o)&&0!==o.length&&"getFields"in i?{kind:t.Kind.SELECTION_SET,selections:o.map(n=>{const o=i.getFields()[n],a=o?o.type:null;return{kind:t.Kind.FIELD,name:{kind:t.Kind.NAME,value:n},selectionSet:e(a,r)}})}:void 0}(function(e){if(e)return e}(c.getType()),l);if(n&&e.loc){const r=function(e,t){let n=t,r=t;for(;n;){const t=e.charCodeAt(n-1);if(10===t||13===t||8232===t||8233===t)break;n--,9!==t&&11!==t&&12!==t&&32!==t&&160!==t&&(r=n)}return e.substring(n,r)}(i,e.loc.start);a.push({index:e.loc.end,string:" "+(0,t.print)(n).replace(/\n/g,"\n"+r)})}}}}),{insertions:a,result:r(i,a)}}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getLeft=function(e){let t=0,n=e;for(;n.offsetParent;)t+=n.offsetLeft,n=n.offsetParent;return t},e.getTop=function(e){let t=0,n=e;for(;n.offsetParent;)t+=n.offsetTop,n=n.offsetParent;return t}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t,n(12)],void 0===(o="function"==typeof(r=function(e,t){"use strict";function n(e,t){const n=new Map,r=[];for(const i of e)if("Field"===i.kind){const e=t(i),o=n.get(e);if(i.directives&&i.directives.length){const e={...i};r.push(e)}else if(o&&o.selectionSet&&i.selectionSet)o.selectionSet.selections=[...o.selectionSet.selections,...i.selectionSet.selections];else if(!o){const t={...i};n.set(e,t),r.push(t)}}else r.push(i);return r}function r(e,n,i){const o=i?(0,t.getNamedType)(i).name:null,a=[],s=[];for(let c of n){var l;if("FragmentSpread"===c.kind){const n=c.name.value;if(!c.directives||0===c.directives.length){if(s.indexOf(n)>=0)continue;s.push(n)}const r=e[c.name.value];if(r){const{typeCondition:e,directives:n,selectionSet:i}=r;c={kind:t.Kind.INLINE_FRAGMENT,typeCondition:e,directives:n,selectionSet:i}}}if(c.kind===t.Kind.INLINE_FRAGMENT&&(!c.directives||0===(null===(l=c.directives)||void 0===l?void 0:l.length))){const t=c.typeCondition?c.typeCondition.name.value:null;if(!t||t===o){a.push(...r(e,c.selectionSet.selections,i));continue}}a.push(c)}return a}Object.defineProperty(e,"__esModule",{value:!0}),e.uniqueBy=n,e.inlineRelevantFragmentSpreads=r,e.default=function(e,i){const o=i?new t.TypeInfo(i):null,a=Object.create(null);for(const n of e.definitions)n.kind===t.Kind.FRAGMENT_DEFINITION&&(a[n.name.value]=n);const s={SelectionSet(e){const t=o?o.getParentType():null;let{selections:i}=e;return i=r(a,i,t),i=n(i,e=>e.alias?e.alias.value:e.name.value),{...e,selections:i}},FragmentDefinition:()=>null};return(0,t.visit)(e,o?(0,t.visitWithTypeInfo)(o,s):s)}})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){var r,i,o;"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self&&self,i=[t],void 0===(o="function"==typeof(r=function(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.introspectionQueryName=e.staticName=void 0,e.staticName="IntrospectionQuery",e.introspectionQueryName="IntrospectionQuery"})?r.apply(t,i):r)||(e.exports=o)},function(e,t,n){"use strict";function r(e,t,n){if("object"==typeof e&&"object"==typeof t){if(Array.isArray(e)&&Array.isArray(t))for(n=0;n0?e:void 0}$.prototype.toString=function(){return"["+String(this.ofType)+"]"},$.prototype.toJSON=function(){return this.toString()},Object.defineProperty($.prototype,i.c,{get:function(){return"GraphQLList"}}),Object(m.a)($),X.prototype.toString=function(){return String(this.ofType)+"!"},X.prototype.toJSON=function(){return this.toString()},Object.defineProperty(X.prototype,i.c,{get:function(){return"GraphQLNonNull"}}),Object(m.a)(X);var ce=function(){function e(e){var t,n,r,i=null!==(t=e.parseValue)&&void 0!==t?t:h;this.name=e.name,this.description=e.description,this.specifiedByUrl=e.specifiedByUrl,this.serialize=null!==(n=e.serialize)&&void 0!==n?n:h,this.parseValue=i,this.parseLiteral=null!==(r=e.parseLiteral)&&void 0!==r?r:function(e){return i(Object(E.a)(e))},this.extensions=e.extensions&&Object(u.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=ue(e.extensionASTNodes),"string"==typeof e.name||Object(c.a)(0,"Must provide name."),null==e.specifiedByUrl||"string"==typeof e.specifiedByUrl||Object(c.a)(0,"".concat(this.name,' must provide "specifiedByUrl" as a string, ')+"but got: ".concat(Object(o.a)(e.specifiedByUrl),".")),null==e.serialize||"function"==typeof e.serialize||Object(c.a)(0,"".concat(this.name,' must provide "serialize" function. If this custom Scalar is also used as an input type, ensure "parseValue" and "parseLiteral" functions are also provided.')),e.parseLiteral&&("function"==typeof e.parseValue&&"function"==typeof e.parseLiteral||Object(c.a)(0,"".concat(this.name,' must provide both "parseValue" and "parseLiteral" functions.')))}var t=e.prototype;return t.toConfig=function(){var e;return{name:this.name,description:this.description,specifiedByUrl:this.specifiedByUrl,serialize:this.serialize,parseValue:this.parseValue,parseLiteral:this.parseLiteral,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:null!==(e=this.extensionASTNodes)&&void 0!==e?e:[]}},t.toString=function(){return this.name},t.toJSON=function(){return this.toString()},D(e,[{key:i.c,get:function(){return"GraphQLScalarType"}}]),e}();Object(m.a)(ce);var le=function(){function e(e){this.name=e.name,this.description=e.description,this.isTypeOf=e.isTypeOf,this.extensions=e.extensions&&Object(u.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=ue(e.extensionASTNodes),this._fields=fe.bind(void 0,e),this._interfaces=pe.bind(void 0,e),"string"==typeof e.name||Object(c.a)(0,"Must provide name."),null==e.isTypeOf||"function"==typeof e.isTypeOf||Object(c.a)(0,"".concat(this.name,' must provide "isTypeOf" as a function, ')+"but got: ".concat(Object(o.a)(e.isTypeOf),"."))}var t=e.prototype;return t.getFields=function(){return"function"==typeof this._fields&&(this._fields=this._fields()),this._fields},t.getInterfaces=function(){return"function"==typeof this._interfaces&&(this._interfaces=this._interfaces()),this._interfaces},t.toConfig=function(){return{name:this.name,description:this.description,interfaces:this.getInterfaces(),fields:he(this.getFields()),isTypeOf:this.isTypeOf,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes||[]}},t.toString=function(){return this.name},t.toJSON=function(){return this.toString()},D(e,[{key:i.c,get:function(){return"GraphQLObjectType"}}]),e}();function pe(e){var t,n=null!==(t=se(e.interfaces))&&void 0!==t?t:[];return Array.isArray(n)||Object(c.a)(0,"".concat(e.name," interfaces must be an Array or a function which returns an Array.")),n}function fe(e){var t=se(e.fields);return de(t)||Object(c.a)(0,"".concat(e.name," fields must be an object with field names as keys or a function which returns such an object.")),Object(s.a)(t,(function(t,n){var i;de(t)||Object(c.a)(0,"".concat(e.name,".").concat(n," field config must be an object.")),!("isDeprecated"in t)||Object(c.a)(0,"".concat(e.name,".").concat(n,' should provide "deprecationReason" instead of "isDeprecated".')),null==t.resolve||"function"==typeof t.resolve||Object(c.a)(0,"".concat(e.name,".").concat(n," field resolver must be a function if ")+"provided, but got: ".concat(Object(o.a)(t.resolve),"."));var a=null!==(i=t.args)&&void 0!==i?i:{};de(a)||Object(c.a)(0,"".concat(e.name,".").concat(n," args must be an object with argument names as keys."));var s=Object(r.a)(a).map((function(e){var t=e[0],n=e[1];return{name:t,description:n.description,type:n.type,defaultValue:n.defaultValue,extensions:n.extensions&&Object(u.a)(n.extensions),astNode:n.astNode}}));return{name:n,description:t.description,type:t.type,args:s,resolve:t.resolve,subscribe:t.subscribe,isDeprecated:null!=t.deprecationReason,deprecationReason:t.deprecationReason,extensions:t.extensions&&Object(u.a)(t.extensions),astNode:t.astNode}}))}function de(e){return Object(d.a)(e)&&!Array.isArray(e)}function he(e){return Object(s.a)(e,(function(e){return{description:e.description,type:e.type,args:me(e.args),resolve:e.resolve,subscribe:e.subscribe,deprecationReason:e.deprecationReason,extensions:e.extensions,astNode:e.astNode}}))}function me(e){return Object(l.a)(e,(function(e){return e.name}),(function(e){return{description:e.description,type:e.type,defaultValue:e.defaultValue,extensions:e.extensions,astNode:e.astNode}}))}function ge(e){return B(e.type)&&void 0===e.defaultValue}Object(m.a)(le);var ye=function(){function e(e){this.name=e.name,this.description=e.description,this.resolveType=e.resolveType,this.extensions=e.extensions&&Object(u.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=ue(e.extensionASTNodes),this._fields=fe.bind(void 0,e),this._interfaces=pe.bind(void 0,e),"string"==typeof e.name||Object(c.a)(0,"Must provide name."),null==e.resolveType||"function"==typeof e.resolveType||Object(c.a)(0,"".concat(this.name,' must provide "resolveType" as a function, ')+"but got: ".concat(Object(o.a)(e.resolveType),"."))}var t=e.prototype;return t.getFields=function(){return"function"==typeof this._fields&&(this._fields=this._fields()),this._fields},t.getInterfaces=function(){return"function"==typeof this._interfaces&&(this._interfaces=this._interfaces()),this._interfaces},t.toConfig=function(){var e;return{name:this.name,description:this.description,interfaces:this.getInterfaces(),fields:he(this.getFields()),resolveType:this.resolveType,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:null!==(e=this.extensionASTNodes)&&void 0!==e?e:[]}},t.toString=function(){return this.name},t.toJSON=function(){return this.toString()},D(e,[{key:i.c,get:function(){return"GraphQLInterfaceType"}}]),e}();Object(m.a)(ye);var ve=function(){function e(e){this.name=e.name,this.description=e.description,this.resolveType=e.resolveType,this.extensions=e.extensions&&Object(u.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=ue(e.extensionASTNodes),this._types=be.bind(void 0,e),"string"==typeof e.name||Object(c.a)(0,"Must provide name."),null==e.resolveType||"function"==typeof e.resolveType||Object(c.a)(0,"".concat(this.name,' must provide "resolveType" as a function, ')+"but got: ".concat(Object(o.a)(e.resolveType),"."))}var t=e.prototype;return t.getTypes=function(){return"function"==typeof this._types&&(this._types=this._types()),this._types},t.toConfig=function(){var e;return{name:this.name,description:this.description,types:this.getTypes(),resolveType:this.resolveType,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:null!==(e=this.extensionASTNodes)&&void 0!==e?e:[]}},t.toString=function(){return this.name},t.toJSON=function(){return this.toString()},D(e,[{key:i.c,get:function(){return"GraphQLUnionType"}}]),e}();function be(e){var t=se(e.types);return Array.isArray(t)||Object(c.a)(0,"Must provide Array of types or a function which returns such an array for Union ".concat(e.name,".")),t}Object(m.a)(ve);var Ee=function(){function e(e){var t,n;this.name=e.name,this.description=e.description,this.extensions=e.extensions&&Object(u.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=ue(e.extensionASTNodes),this._values=(t=this.name,de(n=e.values)||Object(c.a)(0,"".concat(t," values must be an object with value names as keys.")),Object(r.a)(n).map((function(e){var n=e[0],r=e[1];return de(r)||Object(c.a)(0,"".concat(t,".").concat(n,' must refer to an object with a "value" key ')+"representing an internal value but got: ".concat(Object(o.a)(r),".")),!("isDeprecated"in r)||Object(c.a)(0,"".concat(t,".").concat(n,' should provide "deprecationReason" instead of "isDeprecated".')),{name:n,description:r.description,value:void 0!==r.value?r.value:n,isDeprecated:null!=r.deprecationReason,deprecationReason:r.deprecationReason,extensions:r.extensions&&Object(u.a)(r.extensions),astNode:r.astNode}}))),this._valueLookup=new Map(this._values.map((function(e){return[e.value,e]}))),this._nameLookup=Object(a.a)(this._values,(function(e){return e.name})),"string"==typeof e.name||Object(c.a)(0,"Must provide name.")}var t=e.prototype;return t.getValues=function(){return this._values},t.getValue=function(e){return this._nameLookup[e]},t.serialize=function(e){var t=this._valueLookup.get(e);if(void 0===t)throw new y.a('Enum "'.concat(this.name,'" cannot represent value: ').concat(Object(o.a)(e)));return t.name},t.parseValue=function(e){if("string"!=typeof e){var t=Object(o.a)(e);throw new y.a('Enum "'.concat(this.name,'" cannot represent non-string value: ').concat(t,".")+xe(this,t))}var n=this.getValue(e);if(null==n)throw new y.a('Value "'.concat(e,'" does not exist in "').concat(this.name,'" enum.')+xe(this,e));return n.value},t.parseLiteral=function(e,t){if(e.kind!==v.a.ENUM){var n=Object(b.print)(e);throw new y.a('Enum "'.concat(this.name,'" cannot represent non-enum value: ').concat(n,".")+xe(this,n),e)}var r=this.getValue(e.value);if(null==r){var i=Object(b.print)(e);throw new y.a('Value "'.concat(i,'" does not exist in "').concat(this.name,'" enum.')+xe(this,i),e)}return r.value},t.toConfig=function(){var e,t=Object(l.a)(this.getValues(),(function(e){return e.name}),(function(e){return{description:e.description,value:e.value,deprecationReason:e.deprecationReason,extensions:e.extensions,astNode:e.astNode}}));return{name:this.name,description:this.description,values:t,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:null!==(e=this.extensionASTNodes)&&void 0!==e?e:[]}},t.toString=function(){return this.name},t.toJSON=function(){return this.toString()},D(e,[{key:i.c,get:function(){return"GraphQLEnumType"}}]),e}();function xe(e,t){var n=e.getValues().map((function(e){return e.name})),r=Object(g.a)(t,n);return Object(f.a)("the enum value",r)}Object(m.a)(Ee);var De=function(){function e(e){this.name=e.name,this.description=e.description,this.extensions=e.extensions&&Object(u.a)(e.extensions),this.astNode=e.astNode,this.extensionASTNodes=ue(e.extensionASTNodes),this._fields=Ce.bind(void 0,e),"string"==typeof e.name||Object(c.a)(0,"Must provide name.")}var t=e.prototype;return t.getFields=function(){return"function"==typeof this._fields&&(this._fields=this._fields()),this._fields},t.toConfig=function(){var e,t=Object(s.a)(this.getFields(),(function(e){return{description:e.description,type:e.type,defaultValue:e.defaultValue,extensions:e.extensions,astNode:e.astNode}}));return{name:this.name,description:this.description,fields:t,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:null!==(e=this.extensionASTNodes)&&void 0!==e?e:[]}},t.toString=function(){return this.name},t.toJSON=function(){return this.toString()},D(e,[{key:i.c,get:function(){return"GraphQLInputObjectType"}}]),e}();function Ce(e){var t=se(e.fields);return de(t)||Object(c.a)(0,"".concat(e.name," fields must be an object with field names as keys or a function which returns such an object.")),Object(s.a)(t,(function(t,n){return!("resolve"in t)||Object(c.a)(0,"".concat(e.name,".").concat(n," field has a resolve property, but Input Types cannot define resolvers.")),{name:n,description:t.description,type:t.type,defaultValue:t.defaultValue,extensions:t.extensions&&Object(u.a)(t.extensions),astNode:t.astNode}}))}function we(e){return B(e.type)&&void 0===e.defaultValue}Object(m.a)(De)},function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));var r=Object.freeze({NAME:"Name",DOCUMENT:"Document",OPERATION_DEFINITION:"OperationDefinition",VARIABLE_DEFINITION:"VariableDefinition",SELECTION_SET:"SelectionSet",FIELD:"Field",ARGUMENT:"Argument",FRAGMENT_SPREAD:"FragmentSpread",INLINE_FRAGMENT:"InlineFragment",FRAGMENT_DEFINITION:"FragmentDefinition",VARIABLE:"Variable",INT:"IntValue",FLOAT:"FloatValue",STRING:"StringValue",BOOLEAN:"BooleanValue",NULL:"NullValue",ENUM:"EnumValue",LIST:"ListValue",OBJECT:"ObjectValue",OBJECT_FIELD:"ObjectField",DIRECTIVE:"Directive",NAMED_TYPE:"NamedType",LIST_TYPE:"ListType",NON_NULL_TYPE:"NonNullType",SCHEMA_DEFINITION:"SchemaDefinition",OPERATION_TYPE_DEFINITION:"OperationTypeDefinition",SCALAR_TYPE_DEFINITION:"ScalarTypeDefinition",OBJECT_TYPE_DEFINITION:"ObjectTypeDefinition",FIELD_DEFINITION:"FieldDefinition",INPUT_VALUE_DEFINITION:"InputValueDefinition",INTERFACE_TYPE_DEFINITION:"InterfaceTypeDefinition",UNION_TYPE_DEFINITION:"UnionTypeDefinition",ENUM_TYPE_DEFINITION:"EnumTypeDefinition",ENUM_VALUE_DEFINITION:"EnumValueDefinition",INPUT_OBJECT_TYPE_DEFINITION:"InputObjectTypeDefinition",DIRECTIVE_DEFINITION:"DirectiveDefinition",SCHEMA_EXTENSION:"SchemaExtension",SCALAR_TYPE_EXTENSION:"ScalarTypeExtension",OBJECT_TYPE_EXTENSION:"ObjectTypeExtension",INTERFACE_TYPE_EXTENSION:"InterfaceTypeExtension",UNION_TYPE_EXTENSION:"UnionTypeExtension",ENUM_TYPE_EXTENSION:"EnumTypeExtension",INPUT_OBJECT_TYPE_EXTENSION:"InputObjectTypeExtension"})},function(e,t,n){"use strict";n.d(t,"a",(function(){return g})),n.d(t,"b",(function(){return y}));var r=n(31),i=n(25),o=n(96),a=n(137);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})(e)}function u(e,t){for(var n=0;n2)return"[Array]";for(var n=Math.min(10,e.length),r=e.length-n,i=[],o=0;o1&&i.push("... ".concat(r," more items"));return"["+i.join(", ")+"]"}(e,n);return function(e,t){var n=Object.keys(e);if(0===n.length)return"{}";if(t.length>2)return"["+function(e){var t=Object.prototype.toString.call(e).replace(/^\[object /,"").replace(/]$/,"");if("Object"===t&&"function"==typeof e.constructor){var n=e.constructor.name;if("string"==typeof n&&""!==n)return n}return t}(e)+"]";return"{ "+n.map((function(n){return n+": "+a(e[n],t)})).join(", ")+" }"}(e,n)}(e,t);default:return String(e)}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));var r=Object.freeze({SOF:"",EOF:"",BANG:"!",DOLLAR:"$",AMP:"&",PAREN_L:"(",PAREN_R:")",SPREAD:"...",COLON:":",EQUALS:"=",AT:"@",BRACKET_L:"[",BRACKET_R:"]",BRACE_L:"{",PIPE:"|",BRACE_R:"}",NAME:"Name",INT:"Int",FLOAT:"Float",STRING:"String",BLOCK_STRING:"BlockString",COMMENT:"Comment"})},function(e,t,n){"use strict";n.d(t,"a",(function(){return ae})),n.d(t,"b",(function(){return L})),n.d(t,"c",(function(){return v})),n.d(t,"d",(function(){return R})),n.d(t,"e",(function(){return x})),n.d(t,"f",(function(){return c})),n.d(t,"g",(function(){return U})),n.d(t,"h",(function(){return K})),n.d(t,"i",(function(){return I})),n.d(t,"j",(function(){return $})),n.d(t,"k",(function(){return z})),n.d(t,"l",(function(){return X})),n.d(t,"m",(function(){return ue})),n.d(t,"n",(function(){return pe})),n.d(t,"o",(function(){return oe})),n.d(t,"p",(function(){return de})),n.d(t,"q",(function(){return j})),n.d(t,"r",(function(){return F})),n.d(t,"s",(function(){return P})),n.d(t,"t",(function(){return q})),n.d(t,"u",(function(){return M})),n.d(t,"v",(function(){return ve})),n.d(t,"w",(function(){return re})),n.d(t,"x",(function(){return Q})),n.d(t,"y",(function(){return Z})),n.d(t,"z",(function(){return ee})),n.d(t,"A",(function(){return te})),n.d(t,"B",(function(){return ne})),n.d(t,"C",(function(){return B})),n.d(t,"D",(function(){return se})),n.d(t,"E",(function(){return ce})),n.d(t,"F",(function(){return le})),n.d(t,"G",(function(){return fe})),n.d(t,"H",(function(){return he})),n.d(t,"I",(function(){return me})),n.d(t,"J",(function(){return ge})),n.d(t,"K",(function(){return ye})),n.d(t,"L",(function(){return V})),n.d(t,"M",(function(){return l})),n.d(t,"N",(function(){return H})),n.d(t,"O",(function(){return N})),n.d(t,"P",(function(){return W})),n.d(t,"Q",(function(){return G})),n.d(t,"R",(function(){return J})),n.d(t,"S",(function(){return b})),n.d(t,"T",(function(){return k})),n.d(t,"U",(function(){return s})),n.d(t,"V",(function(){return S})),n.d(t,"W",(function(){return E})),n.d(t,"X",(function(){return O})),n.d(t,"Y",(function(){return h})),n.d(t,"Z",(function(){return p})),n.d(t,"ab",(function(){return y})),n.d(t,"bb",(function(){return d})),n.d(t,"cb",(function(){return w})),n.d(t,"db",(function(){return u})),n.d(t,"eb",(function(){return f})),n.d(t,"fb",(function(){return A})),n.d(t,"gb",(function(){return C})),n.d(t,"hb",(function(){return D}));var r=n(18),i=n(37),o=n(10),a=n(112),s=function(e){return function(){return e}}(!0),u=function(){};var c=function(e){return e};"function"==typeof Symbol&&Symbol.asyncIterator&&Symbol.asyncIterator;function l(e,t,n){if(!t(e))throw new Error(n)}var p=function(e,t){Object(i.a)(e,t),Object.getOwnPropertySymbols&&Object.getOwnPropertySymbols(t).forEach((function(n){e[n]=t[n]}))},f=function(e,t){var n;return(n=[]).concat.apply(n,t.map(e))};function d(e,t){var n=e.indexOf(t);n>=0&&e.splice(n,1)}function h(e){var t=!1;return function(){t||(t=!0,e())}}var m=function(e){throw e},g=function(e){return{value:e,done:!0}};function y(e,t,n){void 0===t&&(t=m),void 0===n&&(n="iterator");var r={meta:{name:n},next:e,throw:t,return:g,isSagaIterator:!0};return"undefined"!=typeof Symbol&&(r[Symbol.iterator]=function(){return r}),r}function v(e,t){var n=t.sagaStack;console.error(e),console.error(n)}var b=function(e){return new Error("\n redux-saga: Error checking hooks detected an inconsistent state. This is likely a bug\n in redux-saga code and not yours. Thanks for reporting this in the project's github repo.\n Error: "+e+"\n")},E=function(e){return Array.apply(null,new Array(e))},x=function(e){return function(t){return e(Object.defineProperty(t,r.f,{value:!0}))}},D=function(e){return e===r.k},C=function(e){return e===r.j},w=function(e){return D(e)||C(e)};function S(e,t){var n=Object.keys(e),r=n.length;var i,a=0,s=Object(o.a)(e)?E(r):{},c={};return n.forEach((function(e){var n=function(n,o){i||(o||w(n)?(t.cancel(),t(n,o)):(s[e]=n,++a===r&&(i=!0,t(s))))};n.cancel=u,c[e]=n})),t.cancel=function(){i||(i=!0,n.forEach((function(e){return c[e].cancel()})))},c}function k(e){return{name:e.name||"anonymous",location:A(e)}}function A(e){return e[r.g]}var T={isEmpty:s,put:u,take:u};function _(e,t){void 0===e&&(e=10);var n=new Array(e),r=0,i=0,o=0,a=function(t){n[i]=t,i=(i+1)%e,r++},s=function(){if(0!=r){var t=n[o];return n[o]=null,r--,o=(o+1)%e,t}},u=function(){for(var e=[];r;)e.push(s());return e};return{isEmpty:function(){return 0==r},put:function(s){var c;if(r1?t-1:0),r=1;r1?t-1:0),r=1;r1?t-1:0),r=1;r1?t-1:0),r=1;r1?t-1:0),r=1;r2147483647||n<-2147483648)throw new c.a("Int cannot represent non 32-bit signed integer value: "+Object(o.a)(t));return n},parseValue:function(e){if(!i(e))throw new c.a("Int cannot represent non-integer value: ".concat(Object(o.a)(e)));if(e>2147483647||e<-2147483648)throw new c.a("Int cannot represent non 32-bit signed integer value: ".concat(e));return e},parseLiteral:function(e){if(e.kind!==s.a.INT)throw new c.a("Int cannot represent non-integer value: ".concat(Object(u.print)(e)),e);var t=parseInt(e.value,10);if(t>2147483647||t<-2147483648)throw new c.a("Int cannot represent non 32-bit signed integer value: ".concat(e.value),e);return t}});var f=new l.g({name:"Float",description:"The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).",serialize:function(e){var t=d(e);if("boolean"==typeof t)return t?1:0;var n=t;if("string"==typeof t&&""!==t&&(n=Number(t)),!Object(r.a)(n))throw new c.a("Float cannot represent non numeric value: ".concat(Object(o.a)(t)));return n},parseValue:function(e){if(!Object(r.a)(e))throw new c.a("Float cannot represent non numeric value: ".concat(Object(o.a)(e)));return e},parseLiteral:function(e){if(e.kind!==s.a.FLOAT&&e.kind!==s.a.INT)throw new c.a("Float cannot represent non numeric value: ".concat(Object(u.print)(e)),e);return parseFloat(e.value)}});function d(e){if(Object(a.a)(e)){if("function"==typeof e.valueOf){var t=e.valueOf();if(!Object(a.a)(t))return t}if("function"==typeof e.toJSON)return e.toJSON()}return e}var h=new l.g({name:"String",description:"The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.",serialize:function(e){var t=d(e);if("string"==typeof t)return t;if("boolean"==typeof t)return t?"true":"false";if(Object(r.a)(t))return t.toString();throw new c.a("String cannot represent value: ".concat(Object(o.a)(e)))},parseValue:function(e){if("string"!=typeof e)throw new c.a("String cannot represent a non string value: ".concat(Object(o.a)(e)));return e},parseLiteral:function(e){if(e.kind!==s.a.STRING)throw new c.a("String cannot represent a non string value: ".concat(Object(u.print)(e)),e);return e.value}});var m=new l.g({name:"Boolean",description:"The `Boolean` scalar type represents `true` or `false`.",serialize:function(e){var t=d(e);if("boolean"==typeof t)return t;if(Object(r.a)(t))return 0!==t;throw new c.a("Boolean cannot represent a non boolean value: ".concat(Object(o.a)(t)))},parseValue:function(e){if("boolean"!=typeof e)throw new c.a("Boolean cannot represent a non boolean value: ".concat(Object(o.a)(e)));return e},parseLiteral:function(e){if(e.kind!==s.a.BOOLEAN)throw new c.a("Boolean cannot represent a non boolean value: ".concat(Object(u.print)(e)),e);return e.value}});var g=new l.g({name:"ID",description:'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID.',serialize:function(e){var t=d(e);if("string"==typeof t)return t;if(i(t))return String(t);throw new c.a("ID cannot represent value: ".concat(Object(o.a)(e)))},parseValue:function(e){if("string"==typeof e)return e;if(i(e))return e.toString();throw new c.a("ID cannot represent value: ".concat(Object(o.a)(e)))},parseLiteral:function(e){if(e.kind!==s.a.STRING&&e.kind!==s.a.INT)throw new c.a("ID cannot represent a non-string and non-integer value: "+Object(u.print)(e),e);return e.value}}),y=Object.freeze([h,p,f,m,g]);function v(e){return y.some((function(t){var n=t.name;return e.name===n}))}},function(e,t,n){"use strict";var r=Object.values||function(e){return Object.keys(e).map((function(t){return e[t]}))};t.a=r},function(e,t,n){"use strict";n.r(t),n.d(t,"print",(function(){return o}));var r=n(26),i=n(53);function o(e){return Object(r.c)(e,{leave:a})}var a={Name:function(e){return e.value},Variable:function(e){return"$"+e.name},Document:function(e){return u(e.definitions,"\n\n")+"\n"},OperationDefinition:function(e){var t=e.operation,n=e.name,r=l("(",u(e.variableDefinitions,", "),")"),i=u(e.directives," "),o=e.selectionSet;return n||i||r||"query"!==t?u([t,u([n,r]),i,o]," "):o},VariableDefinition:function(e){var t=e.variable,n=e.type,r=e.defaultValue,i=e.directives;return t+": "+n+l(" = ",r)+l(" ",u(i," "))},SelectionSet:function(e){return c(e.selections)},Field:function(e){var t=e.alias,n=e.name,r=e.arguments,i=e.directives,o=e.selectionSet;return u([l("",t,": ")+n+l("(",u(r,", "),")"),u(i," "),o]," ")},Argument:function(e){return e.name+": "+e.value},FragmentSpread:function(e){return"..."+e.name+l(" ",u(e.directives," "))},InlineFragment:function(e){var t=e.typeCondition,n=e.directives,r=e.selectionSet;return u(["...",l("on ",t),u(n," "),r]," ")},FragmentDefinition:function(e){var t=e.name,n=e.typeCondition,r=e.variableDefinitions,i=e.directives,o=e.selectionSet;return"fragment ".concat(t).concat(l("(",u(r,", "),")")," ")+"on ".concat(n," ").concat(l("",u(i," ")," "))+o},IntValue:function(e){return e.value},FloatValue:function(e){return e.value},StringValue:function(e,t){var n=e.value;return e.block?Object(i.c)(n,"description"===t?"":" "):JSON.stringify(n)},BooleanValue:function(e){return e.value?"true":"false"},NullValue:function(){return"null"},EnumValue:function(e){return e.value},ListValue:function(e){return"["+u(e.values,", ")+"]"},ObjectValue:function(e){return"{"+u(e.fields,", ")+"}"},ObjectField:function(e){return e.name+": "+e.value},Directive:function(e){return"@"+e.name+l("(",u(e.arguments,", "),")")},NamedType:function(e){return e.name},ListType:function(e){return"["+e.type+"]"},NonNullType:function(e){return e.type+"!"},SchemaDefinition:s((function(e){var t=e.directives,n=e.operationTypes;return u(["schema",u(t," "),c(n)]," ")})),OperationTypeDefinition:function(e){return e.operation+": "+e.type},ScalarTypeDefinition:s((function(e){return u(["scalar",e.name,u(e.directives," ")]," ")})),ObjectTypeDefinition:s((function(e){var t=e.name,n=e.interfaces,r=e.directives,i=e.fields;return u(["type",t,l("implements ",u(n," & ")),u(r," "),c(i)]," ")})),FieldDefinition:s((function(e){var t=e.name,n=e.arguments,r=e.type,i=e.directives;return t+(d(n)?l("(\n",p(u(n,"\n")),"\n)"):l("(",u(n,", "),")"))+": "+r+l(" ",u(i," "))})),InputValueDefinition:s((function(e){var t=e.name,n=e.type,r=e.defaultValue,i=e.directives;return u([t+": "+n,l("= ",r),u(i," ")]," ")})),InterfaceTypeDefinition:s((function(e){var t=e.name,n=e.interfaces,r=e.directives,i=e.fields;return u(["interface",t,l("implements ",u(n," & ")),u(r," "),c(i)]," ")})),UnionTypeDefinition:s((function(e){var t=e.name,n=e.directives,r=e.types;return u(["union",t,u(n," "),r&&0!==r.length?"= "+u(r," | "):""]," ")})),EnumTypeDefinition:s((function(e){var t=e.name,n=e.directives,r=e.values;return u(["enum",t,u(n," "),c(r)]," ")})),EnumValueDefinition:s((function(e){return u([e.name,u(e.directives," ")]," ")})),InputObjectTypeDefinition:s((function(e){var t=e.name,n=e.directives,r=e.fields;return u(["input",t,u(n," "),c(r)]," ")})),DirectiveDefinition:s((function(e){var t=e.name,n=e.arguments,r=e.repeatable,i=e.locations;return"directive @"+t+(d(n)?l("(\n",p(u(n,"\n")),"\n)"):l("(",u(n,", "),")"))+(r?" repeatable":"")+" on "+u(i," | ")})),SchemaExtension:function(e){var t=e.directives,n=e.operationTypes;return u(["extend schema",u(t," "),c(n)]," ")},ScalarTypeExtension:function(e){return u(["extend scalar",e.name,u(e.directives," ")]," ")},ObjectTypeExtension:function(e){var t=e.name,n=e.interfaces,r=e.directives,i=e.fields;return u(["extend type",t,l("implements ",u(n," & ")),u(r," "),c(i)]," ")},InterfaceTypeExtension:function(e){var t=e.name,n=e.interfaces,r=e.directives,i=e.fields;return u(["extend interface",t,l("implements ",u(n," & ")),u(r," "),c(i)]," ")},UnionTypeExtension:function(e){var t=e.name,n=e.directives,r=e.types;return u(["extend union",t,u(n," "),r&&0!==r.length?"= "+u(r," | "):""]," ")},EnumTypeExtension:function(e){var t=e.name,n=e.directives,r=e.values;return u(["extend enum",t,u(n," "),c(r)]," ")},InputObjectTypeExtension:function(e){var t=e.name,n=e.directives,r=e.fields;return u(["extend input",t,u(n," "),c(r)]," ")}};function s(e){return function(t){return u([t.description,e(t)],"\n")}}function u(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return null!==(t=null==e?void 0:e.filter((function(e){return e})).join(n))&&void 0!==t?t:""}function c(e){return e&&0!==e.length?"{\n"+p(u(e,"\n"))+"\n}":""}function l(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";return t?e+t+n:""}function p(e){return e&&" "+e.replace(/\n/g,"\n ")}function f(e){return-1!==e.indexOf("\n")}function d(e){return e&&e.some(f)}},function(e,t,n){e.exports=function(){"use strict";var e=navigator.userAgent,t=navigator.platform,n=/gecko\/\d/i.test(e),r=/MSIE \d/.test(e),i=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(e),o=/Edge\/(\d+)/.exec(e),a=r||i||o,s=a&&(r?document.documentMode||6:+(o||i)[1]),u=!o&&/WebKit\//.test(e),c=u&&/Qt\/\d+\.\d+/.test(e),l=!o&&/Chrome\//.test(e),p=/Opera\//.test(e),f=/Apple Computer/.test(navigator.vendor),d=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(e),h=/PhantomJS/.test(e),m=!o&&/AppleWebKit/.test(e)&&/Mobile\/\w+/.test(e),g=/Android/.test(e),y=m||g||/webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(e),v=m||/Mac/.test(t),b=/\bCrOS\b/.test(e),E=/win/i.test(t),x=p&&e.match(/Version\/(\d*\.\d*)/);x&&(x=Number(x[1])),x&&x>=15&&(p=!1,u=!0);var D=v&&(c||p&&(null==x||x<12.11)),C=n||a&&s>=9;function w(e){return new RegExp("(^|\\s)"+e+"(?:$|\\s)\\s*")}var S,k=function(e,t){var n=e.className,r=w(t).exec(n);if(r){var i=n.slice(r.index+r[0].length);e.className=n.slice(0,r.index)+(i?r[1]+i:"")}};function A(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function T(e,t){return A(e).appendChild(t)}function _(e,t,n,r){var i=document.createElement(e);if(n&&(i.className=n),r&&(i.style.cssText=r),"string"==typeof t)i.appendChild(document.createTextNode(t));else if(t)for(var o=0;o=t)return a+(t-o);a+=s-o,a+=n-a%n,o=s+1}}m?j=function(e){e.selectionStart=0,e.selectionEnd=e.value.length}:a&&(j=function(e){try{e.select()}catch(e){}});var B=function(){this.id=null,this.f=null,this.time=0,this.handler=L(this.onTimeout,this)};function U(e,t){for(var n=0;n=t)return r+Math.min(a,t-i);if(i+=o-r,r=o+1,(i+=n-i%n)>=t)return r}}var G=[""];function K(e){for(;G.length<=e;)G.push(J(G)+" ");return G[e]}function J(e){return e[e.length-1]}function Q(e,t){for(var n=[],r=0;r"€"&&(e.toUpperCase()!=e.toLowerCase()||X.test(e))}function ee(e,t){return t?!!(t.source.indexOf("\\w")>-1&&Z(e))||t.test(e):Z(e)}function te(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}var ne=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;function re(e){return e.charCodeAt(0)>=768&&ne.test(e)}function ie(e,t,n){for(;(n<0?t>0:tn?-1:1;;){if(t==n)return t;var i=(t+n)/2,o=r<0?Math.ceil(i):Math.floor(i);if(o==t)return e(o)?t:n;e(o)?n=o:t=o+r}}var ae=null;function se(e,t,n){var r;ae=null;for(var i=0;it)return i;o.to==t&&(o.from!=o.to&&"before"==n?r=i:ae=i),o.from==t&&(o.from!=o.to&&"before"!=n?r=i:ae=i)}return null!=r?r:ae}var ue=function(){var e=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,t=/[stwN]/,n=/[LRr]/,r=/[Lb1n]/,i=/[1n]/;function o(e,t,n){this.level=e,this.from=t,this.to=n}return function(a,s){var u="ltr"==s?"L":"R";if(0==a.length||"ltr"==s&&!e.test(a))return!1;for(var c,l=a.length,p=[],f=0;f-1&&(r[t]=i.slice(0,o).concat(i.slice(o+1)))}}}function he(e,t){var n=fe(e,t);if(n.length)for(var r=Array.prototype.slice.call(arguments,2),i=0;i0}function ve(e){e.prototype.on=function(e,t){pe(this,e,t)},e.prototype.off=function(e,t){de(this,e,t)}}function be(e){e.preventDefault?e.preventDefault():e.returnValue=!1}function Ee(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}function xe(e){return null!=e.defaultPrevented?e.defaultPrevented:0==e.returnValue}function De(e){be(e),Ee(e)}function Ce(e){return e.target||e.srcElement}function we(e){var t=e.which;return null==t&&(1&e.button?t=1:2&e.button?t=3:4&e.button&&(t=2)),v&&e.ctrlKey&&1==t&&(t=3),t}var Se,ke,Ae=function(){if(a&&s<9)return!1;var e=_("div");return"draggable"in e||"dragDrop"in e}();function Te(e){if(null==Se){var t=_("span","​");T(e,_("span",[t,document.createTextNode("x")])),0!=e.firstChild.offsetHeight&&(Se=t.offsetWidth<=1&&t.offsetHeight>2&&!(a&&s<8))}var n=Se?_("span","​"):_("span"," ",null,"display: inline-block; width: 1px; margin-right: -1px");return n.setAttribute("cm-text",""),n}function _e(e){if(null!=ke)return ke;var t=T(e,document.createTextNode("AخA")),n=S(t,0,1).getBoundingClientRect(),r=S(t,1,2).getBoundingClientRect();return A(e),!(!n||n.left==n.right)&&(ke=r.right-n.right<3)}var Oe,Fe=3!="\n\nb".split(/\n/).length?function(e){for(var t=0,n=[],r=e.length;t<=r;){var i=e.indexOf("\n",t);-1==i&&(i=e.length);var o=e.slice(t,"\r"==e.charAt(i-1)?i-1:i),a=o.indexOf("\r");-1!=a?(n.push(o.slice(0,a)),t+=a+1):(n.push(o),t=i+1)}return n}:function(e){return e.split(/\r\n?|\n/)},Ne=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch(e){return!1}}:function(e){var t;try{t=e.ownerDocument.selection.createRange()}catch(e){}return!(!t||t.parentElement()!=e)&&0!=t.compareEndPoints("StartToEnd",t)},Ie="oncopy"in(Oe=_("div"))||(Oe.setAttribute("oncopy","return;"),"function"==typeof Oe.oncopy),Me=null,je={},Le={};function Pe(e,t){arguments.length>2&&(t.dependencies=Array.prototype.slice.call(arguments,2)),je[e]=t}function Re(e){if("string"==typeof e&&Le.hasOwnProperty(e))e=Le[e];else if(e&&"string"==typeof e.name&&Le.hasOwnProperty(e.name)){var t=Le[e.name];"string"==typeof t&&(t={name:t}),(e=$(t,e)).name=t.name}else{if("string"==typeof e&&/^[\w\-]+\/[\w\-]+\+xml$/.test(e))return Re("application/xml");if("string"==typeof e&&/^[\w\-]+\/[\w\-]+\+json$/.test(e))return Re("application/json")}return"string"==typeof e?{name:e}:e||{name:"null"}}function Be(e,t){t=Re(t);var n=je[t.name];if(!n)return Be(e,"text/plain");var r=n(e,t);if(Ue.hasOwnProperty(t.name)){var i=Ue[t.name];for(var o in i)i.hasOwnProperty(o)&&(r.hasOwnProperty(o)&&(r["_"+o]=r[o]),r[o]=i[o])}if(r.name=t.name,t.helperType&&(r.helperType=t.helperType),t.modeProps)for(var a in t.modeProps)r[a]=t.modeProps[a];return r}var Ue={};function ze(e,t){P(t,Ue.hasOwnProperty(e)?Ue[e]:Ue[e]={})}function Ve(e,t){if(!0===t)return t;if(e.copyState)return e.copyState(t);var n={};for(var r in t){var i=t[r];i instanceof Array&&(i=i.concat([])),n[r]=i}return n}function qe(e,t){for(var n;e.innerMode&&(n=e.innerMode(t))&&n.mode!=e;)t=n.state,e=n.mode;return n||{mode:e,state:t}}function He(e,t,n){return!e.startState||e.startState(t,n)}var We=function(e,t,n){this.pos=this.start=0,this.string=e,this.tabSize=t||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0,this.lineOracle=n};function Ge(e,t){if((t-=e.first)<0||t>=e.size)throw new Error("There is no line "+(t+e.first)+" in the document.");for(var n=e;!n.lines;)for(var r=0;;++r){var i=n.children[r],o=i.chunkSize();if(t=e.first&&tn?et(n,Ge(e,n).text.length):function(e,t){var n=e.ch;return null==n||n>t?et(e.line,t):n<0?et(e.line,0):e}(t,Ge(e,t.line).text.length)}function ut(e,t){for(var n=[],r=0;r=this.string.length},We.prototype.sol=function(){return this.pos==this.lineStart},We.prototype.peek=function(){return this.string.charAt(this.pos)||void 0},We.prototype.next=function(){if(this.post},We.prototype.eatSpace=function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},We.prototype.skipToEnd=function(){this.pos=this.string.length},We.prototype.skipTo=function(e){var t=this.string.indexOf(e,this.pos);if(t>-1)return this.pos=t,!0},We.prototype.backUp=function(e){this.pos-=e},We.prototype.column=function(){return this.lastColumnPos0?null:(r&&!1!==t&&(this.pos+=r[0].length),r)}var i=function(e){return n?e.toLowerCase():e};if(i(this.string.substr(this.pos,e.length))==i(e))return!1!==t&&(this.pos+=e.length),!0},We.prototype.current=function(){return this.string.slice(this.start,this.pos)},We.prototype.hideFirstChars=function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}},We.prototype.lookAhead=function(e){var t=this.lineOracle;return t&&t.lookAhead(e)},We.prototype.baseToken=function(){var e=this.lineOracle;return e&&e.baseToken(this.pos)};var ct=function(e,t){this.state=e,this.lookAhead=t},lt=function(e,t,n,r){this.state=t,this.doc=e,this.line=n,this.maxLookAhead=r||0,this.baseTokens=null,this.baseTokenPos=1};function pt(e,t,n,r){var i=[e.state.modeGen],o={};Et(e,t.text,e.doc.mode,n,(function(e,t){return i.push(e,t)}),o,r);for(var a=n.state,s=function(r){n.baseTokens=i;var s=e.state.overlays[r],u=1,c=0;n.state=!0,Et(e,t.text,s.mode,n,(function(e,t){for(var n=u;ce&&i.splice(u,1,e,i[u+1],r),u+=2,c=Math.min(e,r)}if(t)if(s.opaque)i.splice(n,u-n,e,"overlay "+t),u=n+2;else for(;ne.options.maxHighlightLength&&Ve(e.doc.mode,r.state),o=pt(e,t,r);i&&(r.state=i),t.stateAfter=r.save(!i),t.styles=o.styles,o.classes?t.styleClasses=o.classes:t.styleClasses&&(t.styleClasses=null),n===e.doc.highlightFrontier&&(e.doc.modeFrontier=Math.max(e.doc.modeFrontier,++e.doc.highlightFrontier))}return t.styles}function dt(e,t,n){var r=e.doc,i=e.display;if(!r.mode.startState)return new lt(r,!0,t);var o=function(e,t,n){for(var r,i,o=e.doc,a=n?-1:t-(e.doc.mode.innerMode?1e3:100),s=t;s>a;--s){if(s<=o.first)return o.first;var u=Ge(o,s-1),c=u.stateAfter;if(c&&(!n||s+(c instanceof ct?c.lookAhead:0)<=o.modeFrontier))return s;var l=R(u.text,null,e.options.tabSize);(null==i||r>l)&&(i=s-1,r=l)}return i}(e,t,n),a=o>r.first&&Ge(r,o-1).stateAfter,s=a?lt.fromSaved(r,a,o):new lt(r,He(r.mode),o);return r.iter(o,t,(function(n){ht(e,n.text,s);var r=s.line;n.stateAfter=r==t-1||r%5==0||r>=i.viewFrom&&rt.start)return o}throw new Error("Mode "+e.name+" failed to advance stream.")}lt.prototype.lookAhead=function(e){var t=this.doc.getLine(this.line+e);return null!=t&&e>this.maxLookAhead&&(this.maxLookAhead=e),t},lt.prototype.baseToken=function(e){if(!this.baseTokens)return null;for(;this.baseTokens[this.baseTokenPos]<=e;)this.baseTokenPos+=2;var t=this.baseTokens[this.baseTokenPos+1];return{type:t&&t.replace(/( |^)overlay .*/,""),size:this.baseTokens[this.baseTokenPos]-e}},lt.prototype.nextLine=function(){this.line++,this.maxLookAhead>0&&this.maxLookAhead--},lt.fromSaved=function(e,t,n){return t instanceof ct?new lt(e,Ve(e.mode,t.state),n,t.lookAhead):new lt(e,Ve(e.mode,t),n)},lt.prototype.save=function(e){var t=!1!==e?Ve(this.doc.mode,this.state):this.state;return this.maxLookAhead>0?new ct(t,this.maxLookAhead):t};var yt=function(e,t,n){this.start=e.start,this.end=e.pos,this.string=e.current(),this.type=t||null,this.state=n};function vt(e,t,n,r){var i,o,a=e.doc,s=a.mode,u=Ge(a,(t=st(a,t)).line),c=dt(e,t.line,n),l=new We(u.text,e.options.tabSize,c);for(r&&(o=[]);(r||l.pose.options.maxHighlightLength?(s=!1,a&&ht(e,t,r,p.pos),p.pos=t.length,u=null):u=bt(gt(n,p,r.state,f),o),f){var d=f[0].name;d&&(u="m-"+(u?d+" "+u:d))}if(!s||l!=u){for(;c=t:o.to>t);(r||(r=[])).push(new Ct(a,o.from,s?null:o.to))}}return r}(n,i,a),u=function(e,t,n){var r;if(e)for(var i=0;i=t:o.to>t)||o.from==t&&"bookmark"==a.type&&(!n||o.marker.insertLeft)){var s=null==o.from||(a.inclusiveLeft?o.from<=t:o.from0&&s)for(var b=0;bt)&&(!n||Nt(n,o.marker)<0)&&(n=o.marker)}return n}function Pt(e,t,n,r,i){var o=Ge(e,t),a=Dt&&o.markedSpans;if(a)for(var s=0;s=0&&p<=0||l<=0&&p>=0)&&(l<=0&&(u.marker.inclusiveRight&&i.inclusiveLeft?tt(c.to,n)>=0:tt(c.to,n)>0)||l>=0&&(u.marker.inclusiveRight&&i.inclusiveLeft?tt(c.from,r)<=0:tt(c.from,r)<0)))return!0}}}function Rt(e){for(var t;t=Mt(e);)e=t.find(-1,!0).line;return e}function Bt(e,t){var n=Ge(e,t),r=Rt(n);return n==r?t:Ye(r)}function Ut(e,t){if(t>e.lastLine())return t;var n,r=Ge(e,t);if(!zt(e,r))return t;for(;n=jt(r);)r=n.find(1,!0).line;return Ye(r)+1}function zt(e,t){var n=Dt&&t.markedSpans;if(n)for(var r=void 0,i=0;it.maxLineLength&&(t.maxLineLength=n,t.maxLine=e)}))}var Gt=function(e,t,n){this.text=e,_t(this,t),this.height=n?n(this):1};function Kt(e){e.parent=null,Tt(e)}Gt.prototype.lineNo=function(){return Ye(this)},ve(Gt);var Jt={},Qt={};function Yt(e,t){if(!e||/^\s*$/.test(e))return null;var n=t.addModeClass?Qt:Jt;return n[e]||(n[e]=e.replace(/\S+/g,"cm-$&"))}function $t(e,t){var n=O("span",null,null,u?"padding-right: .1px":null),r={pre:O("pre",[n],"CodeMirror-line"),content:n,col:0,pos:0,cm:e,trailingSpace:!1,splitSpaces:e.getOption("lineWrapping")};t.measure={};for(var i=0;i<=(t.rest?t.rest.length:0);i++){var o=i?t.rest[i-1]:t.line,a=void 0;r.pos=0,r.addToken=Zt,_e(e.display.measure)&&(a=ce(o,e.doc.direction))&&(r.addToken=en(r.addToken,a)),r.map=[],nn(o,r,ft(e,o,t!=e.display.externalMeasured&&Ye(o))),o.styleClasses&&(o.styleClasses.bgClass&&(r.bgClass=M(o.styleClasses.bgClass,r.bgClass||"")),o.styleClasses.textClass&&(r.textClass=M(o.styleClasses.textClass,r.textClass||""))),0==r.map.length&&r.map.push(0,0,r.content.appendChild(Te(e.display.measure))),0==i?(t.measure.map=r.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(r.map),(t.measure.caches||(t.measure.caches=[])).push({}))}if(u){var s=r.content.lastChild;(/\bcm-tab\b/.test(s.className)||s.querySelector&&s.querySelector(".cm-tab"))&&(r.content.className="cm-tab-wrap-hack")}return he(e,"renderLine",e,t.line,r.pre),r.pre.className&&(r.textClass=M(r.pre.className,r.textClass||"")),r}function Xt(e){var t=_("span","•","cm-invalidchar");return t.title="\\u"+e.charCodeAt(0).toString(16),t.setAttribute("aria-label",t.title),t}function Zt(e,t,n,r,i,o,u){if(t){var c,l=e.splitSpaces?function(e,t){if(e.length>1&&!/ /.test(e))return e;for(var n=t,r="",i=0;ic&&p.from<=c);f++);if(p.to>=l)return e(n,r,i,o,a,s,u);e(n,r.slice(0,p.to-c),i,o,null,s,u),o=null,r=r.slice(p.to-c),c=p.to}}}function tn(e,t,n,r){var i=!r&&n.widgetNode;i&&e.map.push(e.pos,e.pos+t,i),!r&&e.cm.display.input.needsContentAttribute&&(i||(i=e.content.appendChild(document.createElement("span"))),i.setAttribute("cm-marker",n.id)),i&&(e.cm.display.input.setUneditable(i),e.content.appendChild(i)),e.pos+=t,e.trailingSpace=!1}function nn(e,t,n){var r=e.markedSpans,i=e.text,o=0;if(r)for(var a,s,u,c,l,p,f,d=i.length,h=0,m=1,g="",y=0;;){if(y==h){u=c=l=s="",f=null,p=null,y=1/0;for(var v=[],b=void 0,E=0;Eh||D.collapsed&&x.to==h&&x.from==h)){if(null!=x.to&&x.to!=h&&y>x.to&&(y=x.to,c=""),D.className&&(u+=" "+D.className),D.css&&(s=(s?s+";":"")+D.css),D.startStyle&&x.from==h&&(l+=" "+D.startStyle),D.endStyle&&x.to==y&&(b||(b=[])).push(D.endStyle,x.to),D.title&&((f||(f={})).title=D.title),D.attributes)for(var C in D.attributes)(f||(f={}))[C]=D.attributes[C];D.collapsed&&(!p||Nt(p.marker,D)<0)&&(p=x)}else x.from>h&&y>x.from&&(y=x.from)}if(b)for(var w=0;w=d)break;for(var k=Math.min(d,y);;){if(g){var A=h+g.length;if(!p){var T=A>k?g.slice(0,k-h):g;t.addToken(t,T,a?a+u:u,l,h+T.length==y?c:"",s,f)}if(A>=k){g=g.slice(k-h),h=k;break}h=A,l=""}g=i.slice(o,o=n[m++]),a=Yt(n[m++],t.cm.options)}}else for(var _=1;_n)return{map:e.measure.maps[i],cache:e.measure.caches[i],before:!0}}function On(e,t,n,r){return In(e,Nn(e,t),n,r)}function Fn(e,t){if(t>=e.display.viewFrom&&t=n.lineN&&t2&&o.push((u.bottom+c.top)/2-n.top)}}o.push(n.bottom-n.top)}}(e,t.view,t.rect),t.hasHeights=!0),(o=function(e,t,n,r){var i,o=Ln(t.map,n,r),u=o.node,c=o.start,l=o.end,p=o.collapse;if(3==u.nodeType){for(var f=0;f<4;f++){for(;c&&re(t.line.text.charAt(o.coverStart+c));)--c;for(;o.coverStart+l1}(e))return t;var n=screen.logicalXDPI/screen.deviceXDPI,r=screen.logicalYDPI/screen.deviceYDPI;return{left:t.left*n,right:t.right*n,top:t.top*r,bottom:t.bottom*r}}(e.display.measure,i))}else{var d;c>0&&(p=r="right"),i=e.options.lineWrapping&&(d=u.getClientRects()).length>1?d["right"==r?d.length-1:0]:u.getBoundingClientRect()}if(a&&s<9&&!c&&(!i||!i.left&&!i.right)){var h=u.parentNode.getClientRects()[0];i=h?{left:h.left,right:h.left+ir(e.display),top:h.top,bottom:h.bottom}:jn}for(var m=i.top-t.rect.top,g=i.bottom-t.rect.top,y=(m+g)/2,v=t.view.measure.heights,b=0;bt)&&(i=(o=u-s)-1,t>=u&&(a="right")),null!=i){if(r=e[c+2],s==u&&n==(r.insertLeft?"left":"right")&&(a=n),"left"==n&&0==i)for(;c&&e[c-2]==e[c-3]&&e[c-1].insertLeft;)r=e[2+(c-=3)],a="left";if("right"==n&&i==u-s)for(;c=0&&(n=e[i]).left==n.right;i--);return n}function Rn(e){if(e.measure&&(e.measure.cache={},e.measure.heights=null,e.rest))for(var t=0;t=r.text.length?(u=r.text.length,c="before"):u<=0&&(u=0,c="after"),!s)return a("before"==c?u-1:u,"before"==c);function l(e,t,n){return a(n?e-1:e,1==s[t].level!=n)}var p=se(s,u,c),f=ae,d=l(u,p,"before"==c);return null!=f&&(d.other=l(u,f,"before"!=c)),d}function Jn(e,t){var n=0;t=st(e.doc,t),e.options.lineWrapping||(n=ir(e.display)*t.ch);var r=Ge(e.doc,t.line),i=qt(r)+Cn(e.display);return{left:n,right:n,top:i,bottom:i+r.height}}function Qn(e,t,n,r,i){var o=et(e,t,n);return o.xRel=i,r&&(o.outside=r),o}function Yn(e,t,n){var r=e.doc;if((n+=e.display.viewOffset)<0)return Qn(r.first,0,null,-1,-1);var i=$e(r,n),o=r.first+r.size-1;if(i>o)return Qn(r.first+r.size-1,Ge(r,o).text.length,null,1,1);t<0&&(t=0);for(var a=Ge(r,i);;){var s=er(e,a,i,t,n),u=Lt(a,s.ch+(s.xRel>0||s.outside>0?1:0));if(!u)return s;var c=u.find(1);if(c.line==i)return c;a=Ge(r,i=c.line)}}function $n(e,t,n,r){r-=qn(t);var i=t.text.length,o=oe((function(t){return In(e,n,t-1).bottom<=r}),i,0);return{begin:o,end:i=oe((function(t){return In(e,n,t).top>r}),o,i)}}function Xn(e,t,n,r){return n||(n=Nn(e,t)),$n(e,t,n,Hn(e,t,In(e,n,r),"line").top)}function Zn(e,t,n,r){return!(e.bottom<=n)&&(e.top>n||(r?e.left:e.right)>t)}function er(e,t,n,r,i){i-=qt(t);var o=Nn(e,t),a=qn(t),s=0,u=t.text.length,c=!0,l=ce(t,e.doc.direction);if(l){var p=(e.options.lineWrapping?nr:tr)(e,t,n,o,l,r,i);s=(c=1!=p.level)?p.from:p.to-1,u=c?p.to:p.from-1}var f,d,h=null,m=null,g=oe((function(t){var n=In(e,o,t);return n.top+=a,n.bottom+=a,!!Zn(n,r,i,!1)&&(n.top<=i&&n.left<=r&&(h=t,m=n),!0)}),s,u),y=!1;if(m){var v=r-m.left=E.bottom?1:0}return Qn(n,g=ie(t.text,g,1),d,y,r-f)}function tr(e,t,n,r,i,o,a){var s=oe((function(s){var u=i[s],c=1!=u.level;return Zn(Kn(e,et(n,c?u.to:u.from,c?"before":"after"),"line",t,r),o,a,!0)}),0,i.length-1),u=i[s];if(s>0){var c=1!=u.level,l=Kn(e,et(n,c?u.from:u.to,c?"after":"before"),"line",t,r);Zn(l,o,a,!0)&&l.top>a&&(u=i[s-1])}return u}function nr(e,t,n,r,i,o,a){var s=$n(e,t,r,a),u=s.begin,c=s.end;/\s/.test(t.text.charAt(c-1))&&c--;for(var l=null,p=null,f=0;f=c||d.to<=u)){var h=In(e,r,1!=d.level?Math.min(c,d.to)-1:Math.max(u,d.from)).right,m=hm)&&(l=d,p=m)}}return l||(l=i[i.length-1]),l.fromc&&(l={from:l.from,to:c,level:l.level}),l}function rr(e){if(null!=e.cachedTextHeight)return e.cachedTextHeight;if(null==Mn){Mn=_("pre",null,"CodeMirror-line-like");for(var t=0;t<49;++t)Mn.appendChild(document.createTextNode("x")),Mn.appendChild(_("br"));Mn.appendChild(document.createTextNode("x"))}T(e.measure,Mn);var n=Mn.offsetHeight/50;return n>3&&(e.cachedTextHeight=n),A(e.measure),n||1}function ir(e){if(null!=e.cachedCharWidth)return e.cachedCharWidth;var t=_("span","xxxxxxxxxx"),n=_("pre",[t],"CodeMirror-line-like");T(e.measure,n);var r=t.getBoundingClientRect(),i=(r.right-r.left)/10;return i>2&&(e.cachedCharWidth=i),i||10}function or(e){for(var t=e.display,n={},r={},i=t.gutters.clientLeft,o=t.gutters.firstChild,a=0;o;o=o.nextSibling,++a){var s=e.display.gutterSpecs[a].className;n[s]=o.offsetLeft+o.clientLeft+i,r[s]=o.clientWidth}return{fixedPos:ar(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:n,gutterWidth:r,wrapperWidth:t.wrapper.clientWidth}}function ar(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function sr(e){var t=rr(e.display),n=e.options.lineWrapping,r=n&&Math.max(5,e.display.scroller.clientWidth/ir(e.display)-3);return function(i){if(zt(e.doc,i))return 0;var o=0;if(i.widgets)for(var a=0;a0&&(u=Ge(e.doc,c.line).text).length==c.ch){var l=R(u,u.length,e.options.tabSize)-u.length;c=et(c.line,Math.max(0,Math.round((o-Sn(e.display).left)/ir(e.display))-l))}return c}function lr(e,t){if(t>=e.display.viewTo)return null;if((t-=e.display.viewFrom)<0)return null;for(var n=e.display.view,r=0;rt)&&(i.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=i.viewTo)Dt&&Bt(e.doc,t)i.viewFrom?dr(e):(i.viewFrom+=r,i.viewTo+=r);else if(t<=i.viewFrom&&n>=i.viewTo)dr(e);else if(t<=i.viewFrom){var o=hr(e,n,n+r,1);o?(i.view=i.view.slice(o.index),i.viewFrom=o.lineN,i.viewTo+=r):dr(e)}else if(n>=i.viewTo){var a=hr(e,t,t,-1);a?(i.view=i.view.slice(0,a.index),i.viewTo=a.lineN):dr(e)}else{var s=hr(e,t,t,-1),u=hr(e,n,n+r,1);s&&u?(i.view=i.view.slice(0,s.index).concat(on(e,s.lineN,u.lineN)).concat(i.view.slice(u.index)),i.viewTo+=r):dr(e)}var c=i.externalMeasured;c&&(n=i.lineN&&t=r.viewTo)){var o=r.view[lr(e,t)];if(null!=o.node){var a=o.changes||(o.changes=[]);-1==U(a,n)&&a.push(n)}}}function dr(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function hr(e,t,n,r){var i,o=lr(e,t),a=e.display.view;if(!Dt||n==e.doc.first+e.doc.size)return{index:o,lineN:n};for(var s=e.display.viewFrom,u=0;u0){if(o==a.length-1)return null;i=s+a[o].size-t,o++}else i=s-t;t+=i,n+=i}for(;Bt(e.doc,n)!=n;){if(o==(r<0?0:a.length-1))return null;n+=r*a[o-(r<0?1:0)].size,o+=r}return{index:o,lineN:n}}function mr(e){for(var t=e.display.view,n=0,r=0;r=e.display.viewTo||s.to().linet||t==n&&a.to==t)&&(r(Math.max(a.from,t),Math.min(a.to,n),1==a.level?"rtl":"ltr",o),i=!0)}i||r(t,n,"ltr")}(m,n||0,null==r?f:r,(function(e,t,i,p){var g="ltr"==i,y=d(e,g?"left":"right"),v=d(t-1,g?"right":"left"),b=null==n&&0==e,E=null==r&&t==f,x=0==p,D=!m||p==m.length-1;if(v.top-y.top<=3){var C=(c?E:b)&&D,w=(c?b:E)&&x?s:(g?y:v).left,S=C?u:(g?v:y).right;l(w,y.top,S-w,y.bottom)}else{var k,A,T,_;g?(k=c&&b&&x?s:y.left,A=c?u:h(e,i,"before"),T=c?s:h(t,i,"after"),_=c&&E&&D?u:v.right):(k=c?h(e,i,"before"):s,A=!c&&b&&x?u:y.right,T=!c&&E&&D?s:v.left,_=c?h(t,i,"after"):u),l(k,y.top,A-k,y.bottom),y.bottom0?t.blinker=setInterval((function(){return t.cursorDiv.style.visibility=(n=!n)?"":"hidden"}),e.options.cursorBlinkRate):e.options.cursorBlinkRate<0&&(t.cursorDiv.style.visibility="hidden")}}function Dr(e){e.state.focused||(e.display.input.focus(),wr(e))}function Cr(e){e.state.delayingBlurEvent=!0,setTimeout((function(){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1,Sr(e))}),100)}function wr(e,t){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1),"nocursor"!=e.options.readOnly&&(e.state.focused||(he(e,"focus",e,t),e.state.focused=!0,I(e.display.wrapper,"CodeMirror-focused"),e.curOp||e.display.selForContextMenu==e.doc.sel||(e.display.input.reset(),u&&setTimeout((function(){return e.display.input.reset(!0)}),20)),e.display.input.receivedFocus()),xr(e))}function Sr(e,t){e.state.delayingBlurEvent||(e.state.focused&&(he(e,"blur",e,t),e.state.focused=!1,k(e.display.wrapper,"CodeMirror-focused")),clearInterval(e.display.blinker),setTimeout((function(){e.state.focused||(e.display.shift=!1)}),150))}function kr(e){for(var t=e.display,n=t.lineDiv.offsetTop,r=0;r.005||f<-.005)&&(Qe(i.line,u),Ar(i.line),i.rest))for(var d=0;de.display.sizerWidth){var h=Math.ceil(c/ir(e.display));h>e.display.maxLineLength&&(e.display.maxLineLength=h,e.display.maxLine=i.line,e.display.maxLineChanged=!0)}}}}function Ar(e){if(e.widgets)for(var t=0;t=a&&(o=$e(t,qt(Ge(t,u))-e.wrapper.clientHeight),a=u)}return{from:o,to:Math.max(a,o+1)}}function _r(e,t){var n=e.display,r=rr(e.display);t.top<0&&(t.top=0);var i=e.curOp&&null!=e.curOp.scrollTop?e.curOp.scrollTop:n.scroller.scrollTop,o=Tn(e),a={};t.bottom-t.top>o&&(t.bottom=t.top+o);var s=e.doc.height+wn(n),u=t.tops-r;if(t.topi+o){var l=Math.min(t.top,(c?s:t.bottom)-o);l!=i&&(a.scrollTop=l)}var p=e.curOp&&null!=e.curOp.scrollLeft?e.curOp.scrollLeft:n.scroller.scrollLeft,f=An(e)-(e.options.fixedGutter?n.gutters.offsetWidth:0),d=t.right-t.left>f;return d&&(t.right=t.left+f),t.left<10?a.scrollLeft=0:t.leftf+p-3&&(a.scrollLeft=t.right+(d?0:10)-f),a}function Or(e,t){null!=t&&(Ir(e),e.curOp.scrollTop=(null==e.curOp.scrollTop?e.doc.scrollTop:e.curOp.scrollTop)+t)}function Fr(e){Ir(e);var t=e.getCursor();e.curOp.scrollToPos={from:t,to:t,margin:e.options.cursorScrollMargin}}function Nr(e,t,n){null==t&&null==n||Ir(e),null!=t&&(e.curOp.scrollLeft=t),null!=n&&(e.curOp.scrollTop=n)}function Ir(e){var t=e.curOp.scrollToPos;t&&(e.curOp.scrollToPos=null,Mr(e,Jn(e,t.from),Jn(e,t.to),t.margin))}function Mr(e,t,n,r){var i=_r(e,{left:Math.min(t.left,n.left),top:Math.min(t.top,n.top)-r,right:Math.max(t.right,n.right),bottom:Math.max(t.bottom,n.bottom)+r});Nr(e,i.scrollLeft,i.scrollTop)}function jr(e,t){Math.abs(e.doc.scrollTop-t)<2||(n||ui(e,{top:t}),Lr(e,t,!0),n&&ui(e),ri(e,100))}function Lr(e,t,n){t=Math.max(0,Math.min(e.display.scroller.scrollHeight-e.display.scroller.clientHeight,t)),(e.display.scroller.scrollTop!=t||n)&&(e.doc.scrollTop=t,e.display.scrollbars.setScrollTop(t),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t))}function Pr(e,t,n,r){t=Math.max(0,Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth)),(n?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)&&!r||(e.doc.scrollLeft=t,pi(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbars.setScrollLeft(t))}function Rr(e){var t=e.display,n=t.gutters.offsetWidth,r=Math.round(e.doc.height+wn(e.display));return{clientHeight:t.scroller.clientHeight,viewHeight:t.wrapper.clientHeight,scrollWidth:t.scroller.scrollWidth,clientWidth:t.scroller.clientWidth,viewWidth:t.wrapper.clientWidth,barLeft:e.options.fixedGutter?n:0,docHeight:r,scrollHeight:r+kn(e)+t.barHeight,nativeBarWidth:t.nativeBarWidth,gutterWidth:n}}var Br=function(e,t,n){this.cm=n;var r=this.vert=_("div",[_("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),i=this.horiz=_("div",[_("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar");r.tabIndex=i.tabIndex=-1,e(r),e(i),pe(r,"scroll",(function(){r.clientHeight&&t(r.scrollTop,"vertical")})),pe(i,"scroll",(function(){i.clientWidth&&t(i.scrollLeft,"horizontal")})),this.checkedZeroWidth=!1,a&&s<8&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")};Br.prototype.update=function(e){var t=e.scrollWidth>e.clientWidth+1,n=e.scrollHeight>e.clientHeight+1,r=e.nativeBarWidth;if(n){this.vert.style.display="block",this.vert.style.bottom=t?r+"px":"0";var i=e.viewHeight-(t?r:0);this.vert.firstChild.style.height=Math.max(0,e.scrollHeight-e.clientHeight+i)+"px"}else this.vert.style.display="",this.vert.firstChild.style.height="0";if(t){this.horiz.style.display="block",this.horiz.style.right=n?r+"px":"0",this.horiz.style.left=e.barLeft+"px";var o=e.viewWidth-e.barLeft-(n?r:0);this.horiz.firstChild.style.width=Math.max(0,e.scrollWidth-e.clientWidth+o)+"px"}else this.horiz.style.display="",this.horiz.firstChild.style.width="0";return!this.checkedZeroWidth&&e.clientHeight>0&&(0==r&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:n?r:0,bottom:t?r:0}},Br.prototype.setScrollLeft=function(e){this.horiz.scrollLeft!=e&&(this.horiz.scrollLeft=e),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,"horiz")},Br.prototype.setScrollTop=function(e){this.vert.scrollTop!=e&&(this.vert.scrollTop=e),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,"vert")},Br.prototype.zeroWidthHack=function(){var e=v&&!d?"12px":"18px";this.horiz.style.height=this.vert.style.width=e,this.horiz.style.pointerEvents=this.vert.style.pointerEvents="none",this.disableHoriz=new B,this.disableVert=new B},Br.prototype.enableZeroWidthBar=function(e,t,n){e.style.pointerEvents="auto",t.set(1e3,(function r(){var i=e.getBoundingClientRect();("vert"==n?document.elementFromPoint(i.right-1,(i.top+i.bottom)/2):document.elementFromPoint((i.right+i.left)/2,i.bottom-1))!=e?e.style.pointerEvents="none":t.set(1e3,r)}))},Br.prototype.clear=function(){var e=this.horiz.parentNode;e.removeChild(this.horiz),e.removeChild(this.vert)};var Ur=function(){};function zr(e,t){t||(t=Rr(e));var n=e.display.barWidth,r=e.display.barHeight;Vr(e,t);for(var i=0;i<4&&n!=e.display.barWidth||r!=e.display.barHeight;i++)n!=e.display.barWidth&&e.options.lineWrapping&&kr(e),Vr(e,Rr(e)),n=e.display.barWidth,r=e.display.barHeight}function Vr(e,t){var n=e.display,r=n.scrollbars.update(t);n.sizer.style.paddingRight=(n.barWidth=r.right)+"px",n.sizer.style.paddingBottom=(n.barHeight=r.bottom)+"px",n.heightForcer.style.borderBottom=r.bottom+"px solid transparent",r.right&&r.bottom?(n.scrollbarFiller.style.display="block",n.scrollbarFiller.style.height=r.bottom+"px",n.scrollbarFiller.style.width=r.right+"px"):n.scrollbarFiller.style.display="",r.bottom&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(n.gutterFiller.style.display="block",n.gutterFiller.style.height=r.bottom+"px",n.gutterFiller.style.width=t.gutterWidth+"px"):n.gutterFiller.style.display=""}Ur.prototype.update=function(){return{bottom:0,right:0}},Ur.prototype.setScrollLeft=function(){},Ur.prototype.setScrollTop=function(){},Ur.prototype.clear=function(){};var qr={native:Br,null:Ur};function Hr(e){e.display.scrollbars&&(e.display.scrollbars.clear(),e.display.scrollbars.addClass&&k(e.display.wrapper,e.display.scrollbars.addClass)),e.display.scrollbars=new qr[e.options.scrollbarStyle]((function(t){e.display.wrapper.insertBefore(t,e.display.scrollbarFiller),pe(t,"mousedown",(function(){e.state.focused&&setTimeout((function(){return e.display.input.focus()}),0)})),t.setAttribute("cm-not-content","true")}),(function(t,n){"horizontal"==n?Pr(e,t):jr(e,t)}),e),e.display.scrollbars.addClass&&I(e.display.wrapper,e.display.scrollbars.addClass)}var Wr=0;function Gr(e){var t;e.curOp={cm:e,viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:0,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++Wr},t=e.curOp,an?an.ops.push(t):t.ownsGroup=an={ops:[t],delayedCallbacks:[]}}function Kr(e){var t=e.curOp;t&&function(e,t){var n=e.ownsGroup;if(n)try{!function(e){var t=e.delayedCallbacks,n=0;do{for(;n=n.viewTo)||n.maxLineChanged&&t.options.lineWrapping,e.update=e.mustUpdate&&new oi(t,e.mustUpdate&&{top:e.scrollTop,ensure:e.scrollToPos},e.forceUpdate)}function Qr(e){e.updatedDisplay=e.mustUpdate&&ai(e.cm,e.update)}function Yr(e){var t=e.cm,n=t.display;e.updatedDisplay&&kr(t),e.barMeasure=Rr(t),n.maxLineChanged&&!t.options.lineWrapping&&(e.adjustWidthTo=On(t,n.maxLine,n.maxLine.text.length).left+3,t.display.sizerWidth=e.adjustWidthTo,e.barMeasure.scrollWidth=Math.max(n.scroller.clientWidth,n.sizer.offsetLeft+e.adjustWidthTo+kn(t)+t.display.barWidth),e.maxScrollLeft=Math.max(0,n.sizer.offsetLeft+e.adjustWidthTo-An(t))),(e.updatedDisplay||e.selectionChanged)&&(e.preparedSelection=n.input.prepareSelection())}function $r(e){var t=e.cm;null!=e.adjustWidthTo&&(t.display.sizer.style.minWidth=e.adjustWidthTo+"px",e.maxScrollLeft(window.innerHeight||document.documentElement.clientHeight)&&(i=!1),null!=i&&!h){var o=_("div","​",null,"position: absolute;\n top: "+(t.top-n.viewOffset-Cn(e.display))+"px;\n height: "+(t.bottom-t.top+kn(e)+n.barHeight)+"px;\n left: "+t.left+"px; width: "+Math.max(2,t.right-t.left)+"px;");e.display.lineSpace.appendChild(o),o.scrollIntoView(i),e.display.lineSpace.removeChild(o)}}}(t,function(e,t,n,r){var i;null==r&&(r=0),e.options.lineWrapping||t!=n||(n="before"==(t=t.ch?et(t.line,"before"==t.sticky?t.ch-1:t.ch,"after"):t).sticky?et(t.line,t.ch+1,"before"):t);for(var o=0;o<5;o++){var a=!1,s=Kn(e,t),u=n&&n!=t?Kn(e,n):s,c=_r(e,i={left:Math.min(s.left,u.left),top:Math.min(s.top,u.top)-r,right:Math.max(s.left,u.left),bottom:Math.max(s.bottom,u.bottom)+r}),l=e.doc.scrollTop,p=e.doc.scrollLeft;if(null!=c.scrollTop&&(jr(e,c.scrollTop),Math.abs(e.doc.scrollTop-l)>1&&(a=!0)),null!=c.scrollLeft&&(Pr(e,c.scrollLeft),Math.abs(e.doc.scrollLeft-p)>1&&(a=!0)),!a)break}return i}(t,st(r,e.scrollToPos.from),st(r,e.scrollToPos.to),e.scrollToPos.margin));var i=e.maybeHiddenMarkers,o=e.maybeUnhiddenMarkers;if(i)for(var a=0;a=e.display.viewTo)){var n=+new Date+e.options.workTime,r=dt(e,t.highlightFrontier),i=[];t.iter(r.line,Math.min(t.first+t.size,e.display.viewTo+500),(function(o){if(r.line>=e.display.viewFrom){var a=o.styles,s=o.text.length>e.options.maxHighlightLength?Ve(t.mode,r.state):null,u=pt(e,o,r,!0);s&&(r.state=s),o.styles=u.styles;var c=o.styleClasses,l=u.classes;l?o.styleClasses=l:c&&(o.styleClasses=null);for(var p=!a||a.length!=o.styles.length||c!=l&&(!c||!l||c.bgClass!=l.bgClass||c.textClass!=l.textClass),f=0;!p&&fn)return ri(e,e.options.workDelay),!0})),t.highlightFrontier=r.line,t.modeFrontier=Math.max(t.modeFrontier,r.line),i.length&&Zr(e,(function(){for(var t=0;t=n.viewFrom&&t.visible.to<=n.viewTo&&(null==n.updateLineNumbers||n.updateLineNumbers>=n.viewTo)&&n.renderedView==n.view&&0==mr(e))return!1;fi(e)&&(dr(e),t.dims=or(e));var i=r.first+r.size,o=Math.max(t.visible.from-e.options.viewportMargin,r.first),a=Math.min(i,t.visible.to+e.options.viewportMargin);n.viewFroma&&n.viewTo-a<20&&(a=Math.min(i,n.viewTo)),Dt&&(o=Bt(e.doc,o),a=Ut(e.doc,a));var s=o!=n.viewFrom||a!=n.viewTo||n.lastWrapHeight!=t.wrapperHeight||n.lastWrapWidth!=t.wrapperWidth;!function(e,t,n){var r=e.display;0==r.view.length||t>=r.viewTo||n<=r.viewFrom?(r.view=on(e,t,n),r.viewFrom=t):(r.viewFrom>t?r.view=on(e,t,r.viewFrom).concat(r.view):r.viewFromn&&(r.view=r.view.slice(0,lr(e,n)))),r.viewTo=n}(e,o,a),n.viewOffset=qt(Ge(e.doc,n.viewFrom)),e.display.mover.style.top=n.viewOffset+"px";var c=mr(e);if(!s&&0==c&&!t.force&&n.renderedView==n.view&&(null==n.updateLineNumbers||n.updateLineNumbers>=n.viewTo))return!1;var l=function(e){if(e.hasFocus())return null;var t=N();if(!t||!F(e.display.lineDiv,t))return null;var n={activeElt:t};if(window.getSelection){var r=window.getSelection();r.anchorNode&&r.extend&&F(e.display.lineDiv,r.anchorNode)&&(n.anchorNode=r.anchorNode,n.anchorOffset=r.anchorOffset,n.focusNode=r.focusNode,n.focusOffset=r.focusOffset)}return n}(e);return c>4&&(n.lineDiv.style.display="none"),function(e,t,n){var r=e.display,i=e.options.lineNumbers,o=r.lineDiv,a=o.firstChild;function s(t){var n=t.nextSibling;return u&&v&&e.display.currentWheelTarget==t?t.style.display="none":t.parentNode.removeChild(t),n}for(var c=r.view,l=r.viewFrom,p=0;p-1&&(d=!1),ln(e,f,l,n)),d&&(A(f.lineNumber),f.lineNumber.appendChild(document.createTextNode(Ze(e.options,l)))),a=f.node.nextSibling}else{var h=yn(e,f,l,n);o.insertBefore(h,a)}l+=f.size}for(;a;)a=s(a)}(e,n.updateLineNumbers,t.dims),c>4&&(n.lineDiv.style.display=""),n.renderedView=n.view,function(e){if(e&&e.activeElt&&e.activeElt!=N()&&(e.activeElt.focus(),!/^(INPUT|TEXTAREA)$/.test(e.activeElt.nodeName)&&e.anchorNode&&F(document.body,e.anchorNode)&&F(document.body,e.focusNode))){var t=window.getSelection(),n=document.createRange();n.setEnd(e.anchorNode,e.anchorOffset),n.collapse(!1),t.removeAllRanges(),t.addRange(n),t.extend(e.focusNode,e.focusOffset)}}(l),A(n.cursorDiv),A(n.selectionDiv),n.gutters.style.height=n.sizer.style.minHeight=0,s&&(n.lastWrapHeight=t.wrapperHeight,n.lastWrapWidth=t.wrapperWidth,ri(e,400)),n.updateLineNumbers=null,!0}function si(e,t){for(var n=t.viewport,r=!0;;r=!1){if(r&&e.options.lineWrapping&&t.oldDisplayWidth!=An(e))r&&(t.visible=Tr(e.display,e.doc,n));else if(n&&null!=n.top&&(n={top:Math.min(e.doc.height+wn(e.display)-Tn(e),n.top)}),t.visible=Tr(e.display,e.doc,n),t.visible.from>=e.display.viewFrom&&t.visible.to<=e.display.viewTo)break;if(!ai(e,t))break;kr(e);var i=Rr(e);gr(e),zr(e,i),li(e,i),t.force=!1}t.signal(e,"update",e),e.display.viewFrom==e.display.reportedViewFrom&&e.display.viewTo==e.display.reportedViewTo||(t.signal(e,"viewportChange",e,e.display.viewFrom,e.display.viewTo),e.display.reportedViewFrom=e.display.viewFrom,e.display.reportedViewTo=e.display.viewTo)}function ui(e,t){var n=new oi(e,t);if(ai(e,n)){kr(e),si(e,n);var r=Rr(e);gr(e),zr(e,r),li(e,r),n.finish()}}function ci(e){var t=e.gutters.offsetWidth;e.sizer.style.marginLeft=t+"px"}function li(e,t){e.display.sizer.style.minHeight=t.docHeight+"px",e.display.heightForcer.style.top=t.docHeight+"px",e.display.gutters.style.height=t.docHeight+e.display.barHeight+kn(e)+"px"}function pi(e){var t=e.display,n=t.view;if(t.alignWidgets||t.gutters.firstChild&&e.options.fixedGutter){for(var r=ar(t)-t.scroller.scrollLeft+e.doc.scrollLeft,i=t.gutters.offsetWidth,o=r+"px",a=0;as.clientWidth,l=s.scrollHeight>s.clientHeight;if(i&&c||o&&l){if(o&&v&&u)e:for(var f=t.target,d=a.view;f!=s;f=f.parentNode)for(var h=0;h=0&&tt(e,r.to())<=0)return n}return-1};var Ci=function(e,t){this.anchor=e,this.head=t};function wi(e,t,n){var r=e&&e.options.selectionsMayTouch,i=t[n];t.sort((function(e,t){return tt(e.from(),t.from())})),n=U(t,i);for(var o=1;o0:u>=0){var c=ot(s.from(),a.from()),l=it(s.to(),a.to()),p=s.empty()?a.from()==a.head:s.from()==s.head;o<=n&&--n,t.splice(--o,2,new Ci(p?l:c,p?c:l))}}return new Di(t,n)}function Si(e,t){return new Di([new Ci(e,t||e)],0)}function ki(e){return e.text?et(e.from.line+e.text.length-1,J(e.text).length+(1==e.text.length?e.from.ch:0)):e.to}function Ai(e,t){if(tt(e,t.from)<0)return e;if(tt(e,t.to)<=0)return ki(t);var n=e.line+t.text.length-(t.to.line-t.from.line)-1,r=e.ch;return e.line==t.to.line&&(r+=ki(t).ch-t.to.ch),et(n,r)}function Ti(e,t){for(var n=[],r=0;r1&&e.remove(s.line+1,h-1),e.insert(s.line+1,y)}un(e,"change",e,t)}function Mi(e,t,n){!function e(r,i,o){if(r.linked)for(var a=0;as-(e.cm?e.cm.options.historyEventDelay:500)||"*"==t.origin.charAt(0)))&&(o=function(e,t){return t?(Bi(e.done),J(e.done)):e.done.length&&!J(e.done).ranges?J(e.done):e.done.length>1&&!e.done[e.done.length-2].ranges?(e.done.pop(),J(e.done)):void 0}(i,i.lastOp==r)))a=J(o.changes),0==tt(t.from,t.to)&&0==tt(t.from,a.to)?a.to=ki(t):o.changes.push(Ri(e,t));else{var u=J(i.done);for(u&&u.ranges||Vi(e.sel,i.done),o={changes:[Ri(e,t)],generation:i.generation},i.done.push(o);i.done.length>i.undoDepth;)i.done.shift(),i.done[0].ranges||i.done.shift()}i.done.push(n),i.generation=++i.maxGeneration,i.lastModTime=i.lastSelTime=s,i.lastOp=i.lastSelOp=r,i.lastOrigin=i.lastSelOrigin=t.origin,a||he(e,"historyAdded")}function zi(e,t,n,r){var i=e.history,o=r&&r.origin;n==i.lastSelOp||o&&i.lastSelOrigin==o&&(i.lastModTime==i.lastSelTime&&i.lastOrigin==o||function(e,t,n,r){var i=t.charAt(0);return"*"==i||"+"==i&&n.ranges.length==r.ranges.length&&n.somethingSelected()==r.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}(e,o,J(i.done),t))?i.done[i.done.length-1]=t:Vi(t,i.done),i.lastSelTime=+new Date,i.lastSelOrigin=o,i.lastSelOp=n,r&&!1!==r.clearRedo&&Bi(i.undone)}function Vi(e,t){var n=J(t);n&&n.ranges&&n.equals(e)||t.push(e)}function qi(e,t,n,r){var i=t["spans_"+e.id],o=0;e.iter(Math.max(e.first,n),Math.min(e.first+e.size,r),(function(n){n.markedSpans&&((i||(i=t["spans_"+e.id]={}))[o]=n.markedSpans),++o}))}function Hi(e){if(!e)return null;for(var t,n=0;n-1&&(J(s)[p]=c[p],delete c[p])}}}return r}function Ki(e,t,n,r){if(r){var i=e.anchor;if(n){var o=tt(t,i)<0;o!=tt(n,i)<0?(i=t,t=n):o!=tt(t,n)<0&&(t=n)}return new Ci(i,t)}return new Ci(n||t,t)}function Ji(e,t,n,r,i){null==i&&(i=e.cm&&(e.cm.display.shift||e.extend)),Zi(e,new Di([Ki(e.sel.primary(),t,n,i)],0),r)}function Qi(e,t,n){for(var r=[],i=e.cm&&(e.cm.display.shift||e.extend),o=0;o=t.ch:s.to>t.ch))){if(i&&(he(u,"beforeCursorEnter"),u.explicitlyCleared)){if(o.markedSpans){--a;continue}break}if(!u.atomic)continue;if(n){var p=u.find(r<0?1:-1),f=void 0;if((r<0?l:c)&&(p=ao(e,p,-r,p&&p.line==t.line?o:null)),p&&p.line==t.line&&(f=tt(p,n))&&(r<0?f<0:f>0))return io(e,p,t,r,i)}var d=u.find(r<0?-1:1);return(r<0?c:l)&&(d=ao(e,d,r,d.line==t.line?o:null)),d?io(e,d,t,r,i):null}}return t}function oo(e,t,n,r,i){var o=r||1,a=io(e,t,n,o,i)||!i&&io(e,t,n,o,!0)||io(e,t,n,-o,i)||!i&&io(e,t,n,-o,!0);return a||(e.cantEdit=!0,et(e.first,0))}function ao(e,t,n,r){return n<0&&0==t.ch?t.line>e.first?st(e,et(t.line-1)):null:n>0&&t.ch==(r||Ge(e,t.line)).text.length?t.line0)){var l=[u,1],p=tt(c.from,s.from),f=tt(c.to,s.to);(p<0||!a.inclusiveLeft&&!p)&&l.push({from:c.from,to:s.from}),(f>0||!a.inclusiveRight&&!f)&&l.push({from:s.to,to:c.to}),i.splice.apply(i,l),u+=l.length-3}}return i}(e,t.from,t.to);if(r)for(var i=r.length-1;i>=0;--i)lo(e,{from:r[i].from,to:r[i].to,text:i?[""]:t.text,origin:t.origin});else lo(e,t)}}function lo(e,t){if(1!=t.text.length||""!=t.text[0]||0!=tt(t.from,t.to)){var n=Ti(e,t);Ui(e,t,n,e.cm?e.cm.curOp.id:NaN),ho(e,t,n,kt(e,t));var r=[];Mi(e,(function(e,n){n||-1!=U(r,e.history)||(vo(e.history,t),r.push(e.history)),ho(e,t,null,kt(e,t))}))}}function po(e,t,n){var r=e.cm&&e.cm.state.suppressEdits;if(!r||n){for(var i,o=e.history,a=e.sel,s="undo"==t?o.done:o.undone,u="undo"==t?o.undone:o.done,c=0;c=0;--d){var h=f(d);if(h)return h.v}}}}function fo(e,t){if(0!=t&&(e.first+=t,e.sel=new Di(Q(e.sel.ranges,(function(e){return new Ci(et(e.anchor.line+t,e.anchor.ch),et(e.head.line+t,e.head.ch))})),e.sel.primIndex),e.cm)){pr(e.cm,e.first,e.first-t,t);for(var n=e.cm.display,r=n.viewFrom;re.lastLine())){if(t.from.lineo&&(t={from:t.from,to:et(o,Ge(e,o).text.length),text:[t.text[0]],origin:t.origin}),t.removed=Ke(e,t.from,t.to),n||(n=Ti(e,t)),e.cm?function(e,t,n){var r=e.doc,i=e.display,o=t.from,a=t.to,s=!1,u=o.line;e.options.lineWrapping||(u=Ye(Rt(Ge(r,o.line))),r.iter(u,a.line+1,(function(e){if(e==i.maxLine)return s=!0,!0}))),r.sel.contains(t.from,t.to)>-1&&ge(e),Ii(r,t,n,sr(e)),e.options.lineWrapping||(r.iter(u,o.line+t.text.length,(function(e){var t=Ht(e);t>i.maxLineLength&&(i.maxLine=e,i.maxLineLength=t,i.maxLineChanged=!0,s=!1)})),s&&(e.curOp.updateMaxLine=!0)),function(e,t){if(e.modeFrontier=Math.min(e.modeFrontier,t),!(e.highlightFrontiern;r--){var i=Ge(e,r).stateAfter;if(i&&(!(i instanceof ct)||r+i.lookAhead1||!(this.children[0]instanceof Eo))){var s=[];this.collapse(s),this.children=[new Eo(s)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t50){for(var a=i.lines.length%25+25,s=a;s10);e.parent.maybeSpill()}},iterN:function(e,t,n){for(var r=0;r0||0==a&&!1!==o.clearWhenEmpty)return o;if(o.replacedWith&&(o.collapsed=!0,o.widgetNode=O("span",[o.replacedWith],"CodeMirror-widget"),r.handleMouseEvents||o.widgetNode.setAttribute("cm-ignore-events","true"),r.insertLeft&&(o.widgetNode.insertLeft=!0)),o.collapsed){if(Pt(e,t.line,t,n,o)||t.line!=n.line&&Pt(e,n.line,t,n,o))throw new Error("Inserting collapsed marker partially overlapping an existing one");Dt=!0}o.addToHistory&&Ui(e,{from:t,to:n,origin:"markText"},e.sel,NaN);var s,u=t.line,c=e.cm;if(e.iter(u,n.line+1,(function(e){c&&o.collapsed&&!c.options.lineWrapping&&Rt(e)==c.display.maxLine&&(s=!0),o.collapsed&&u!=t.line&&Qe(e,0),function(e,t){e.markedSpans=e.markedSpans?e.markedSpans.concat([t]):[t],t.marker.attachLine(e)}(e,new Ct(o,u==t.line?t.ch:null,u==n.line?n.ch:null)),++u})),o.collapsed&&e.iter(t.line,n.line+1,(function(t){zt(e,t)&&Qe(t,0)})),o.clearOnEnter&&pe(o,"beforeCursorEnter",(function(){return o.clear()})),o.readOnly&&(xt=!0,(e.history.done.length||e.history.undone.length)&&e.clearHistory()),o.collapsed&&(o.id=++wo,o.atomic=!0),c){if(s&&(c.curOp.updateMaxLine=!0),o.collapsed)pr(c,t.line,n.line+1);else if(o.className||o.startStyle||o.endStyle||o.css||o.attributes||o.title)for(var l=t.line;l<=n.line;l++)fr(c,l,"text");o.atomic&&no(c.doc),un(c,"markerAdded",c,o)}return o}So.prototype.clear=function(){if(!this.explicitlyCleared){var e=this.doc.cm,t=e&&!e.curOp;if(t&&Gr(e),ye(this,"clear")){var n=this.find();n&&un(this,"clear",n.from,n.to)}for(var r=null,i=null,o=0;oe.display.maxLineLength&&(e.display.maxLine=c,e.display.maxLineLength=l,e.display.maxLineChanged=!0)}null!=r&&e&&this.collapsed&&pr(e,r,i+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&no(e.doc)),e&&un(e,"markerCleared",e,this,r,i),t&&Kr(e),this.parent&&this.parent.clear()}},So.prototype.find=function(e,t){var n,r;null==e&&"bookmark"==this.type&&(e=1);for(var i=0;i=0;u--)co(this,r[u]);s?Xi(this,s):this.cm&&Fr(this.cm)})),undo:ni((function(){po(this,"undo")})),redo:ni((function(){po(this,"redo")})),undoSelection:ni((function(){po(this,"undo",!0)})),redoSelection:ni((function(){po(this,"redo",!0)})),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,n=0,r=0;r=e.ch)&&t.push(i.marker.parent||i.marker)}return t},findMarks:function(e,t,n){e=st(this,e),t=st(this,t);var r=[],i=e.line;return this.iter(e.line,t.line+1,(function(o){var a=o.markedSpans;if(a)for(var s=0;s=u.to||null==u.from&&i!=e.line||null!=u.from&&i==t.line&&u.from>=t.ch||n&&!n(u.marker)||r.push(u.marker.parent||u.marker)}++i})),r},getAllMarks:function(){var e=[];return this.iter((function(t){var n=t.markedSpans;if(n)for(var r=0;re)return t=e,!0;e-=o,++n})),st(this,et(n,t))},indexFromPos:function(e){var t=(e=st(this,e)).ch;if(e.linet&&(t=e.from),null!=e.to&&e.to-1)return t.state.draggingText(e),void setTimeout((function(){return t.display.input.focus()}),20);try{var p=e.dataTransfer.getData("Text");if(p){var f;if(t.state.draggingText&&!t.state.draggingText.copy&&(f=t.listSelections()),eo(t.doc,Si(n,n)),f)for(var d=0;d=0;t--)mo(e.doc,"",r[t].from,r[t].to,"+delete");Fr(e)}))}function Xo(e,t,n){var r=ie(e.text,t+n,n);return r<0||r>e.text.length?null:r}function Zo(e,t,n){var r=Xo(e,t.ch,n);return null==r?null:new et(t.line,r,n<0?"after":"before")}function ea(e,t,n,r,i){if(e){"rtl"==t.doc.direction&&(i=-i);var o=ce(n,t.doc.direction);if(o){var a,s=i<0?J(o):o[0],u=i<0==(1==s.level)?"after":"before";if(s.level>0||"rtl"==t.doc.direction){var c=Nn(t,n);a=i<0?n.text.length-1:0;var l=In(t,c,a).top;a=oe((function(e){return In(t,c,e).top==l}),i<0==(1==s.level)?s.from:s.to-1,a),"before"==u&&(a=Xo(n,a,1))}else a=i<0?s.to:s.from;return new et(r,a,u)}}return new et(r,i<0?n.text.length:0,i<0?"before":"after")}qo.basic={Left:"goCharLeft",Right:"goCharRight",Up:"goLineUp",Down:"goLineDown",End:"goLineEnd",Home:"goLineStartSmart",PageUp:"goPageUp",PageDown:"goPageDown",Delete:"delCharAfter",Backspace:"delCharBefore","Shift-Backspace":"delCharBefore",Tab:"defaultTab","Shift-Tab":"indentAuto",Enter:"newlineAndIndent",Insert:"toggleOverwrite",Esc:"singleSelection"},qo.pcDefault={"Ctrl-A":"selectAll","Ctrl-D":"deleteLine","Ctrl-Z":"undo","Shift-Ctrl-Z":"redo","Ctrl-Y":"redo","Ctrl-Home":"goDocStart","Ctrl-End":"goDocEnd","Ctrl-Up":"goLineUp","Ctrl-Down":"goLineDown","Ctrl-Left":"goGroupLeft","Ctrl-Right":"goGroupRight","Alt-Left":"goLineStart","Alt-Right":"goLineEnd","Ctrl-Backspace":"delGroupBefore","Ctrl-Delete":"delGroupAfter","Ctrl-S":"save","Ctrl-F":"find","Ctrl-G":"findNext","Shift-Ctrl-G":"findPrev","Shift-Ctrl-F":"replace","Shift-Ctrl-R":"replaceAll","Ctrl-[":"indentLess","Ctrl-]":"indentMore","Ctrl-U":"undoSelection","Shift-Ctrl-U":"redoSelection","Alt-U":"redoSelection",fallthrough:"basic"},qo.emacsy={"Ctrl-F":"goCharRight","Ctrl-B":"goCharLeft","Ctrl-P":"goLineUp","Ctrl-N":"goLineDown","Alt-F":"goWordRight","Alt-B":"goWordLeft","Ctrl-A":"goLineStart","Ctrl-E":"goLineEnd","Ctrl-V":"goPageDown","Shift-Ctrl-V":"goPageUp","Ctrl-D":"delCharAfter","Ctrl-H":"delCharBefore","Alt-D":"delWordAfter","Alt-Backspace":"delWordBefore","Ctrl-K":"killLine","Ctrl-T":"transposeChars","Ctrl-O":"openLine"},qo.macDefault={"Cmd-A":"selectAll","Cmd-D":"deleteLine","Cmd-Z":"undo","Shift-Cmd-Z":"redo","Cmd-Y":"redo","Cmd-Home":"goDocStart","Cmd-Up":"goDocStart","Cmd-End":"goDocEnd","Cmd-Down":"goDocEnd","Alt-Left":"goGroupLeft","Alt-Right":"goGroupRight","Cmd-Left":"goLineLeft","Cmd-Right":"goLineRight","Alt-Backspace":"delGroupBefore","Ctrl-Alt-Backspace":"delGroupAfter","Alt-Delete":"delGroupAfter","Cmd-S":"save","Cmd-F":"find","Cmd-G":"findNext","Shift-Cmd-G":"findPrev","Cmd-Alt-F":"replace","Shift-Cmd-Alt-F":"replaceAll","Cmd-[":"indentLess","Cmd-]":"indentMore","Cmd-Backspace":"delWrappedLineLeft","Cmd-Delete":"delWrappedLineRight","Cmd-U":"undoSelection","Shift-Cmd-U":"redoSelection","Ctrl-Up":"goDocStart","Ctrl-Down":"goDocEnd",fallthrough:["basic","emacsy"]},qo.default=v?qo.macDefault:qo.pcDefault;var ta={selectAll:so,singleSelection:function(e){return e.setSelection(e.getCursor("anchor"),e.getCursor("head"),V)},killLine:function(e){return $o(e,(function(t){if(t.empty()){var n=Ge(e.doc,t.head.line).text.length;return t.head.ch==n&&t.head.line0)i=new et(i.line,i.ch+1),e.replaceRange(o.charAt(i.ch-1)+o.charAt(i.ch-2),et(i.line,i.ch-2),i,"+transpose");else if(i.line>e.doc.first){var a=Ge(e.doc,i.line-1).text;a&&(i=new et(i.line,1),e.replaceRange(o.charAt(0)+e.doc.lineSeparator()+a.charAt(a.length-1),et(i.line-1,a.length-1),i,"+transpose"))}n.push(new Ci(i,i))}e.setSelections(n)}))},newlineAndIndent:function(e){return Zr(e,(function(){for(var t=e.listSelections(),n=t.length-1;n>=0;n--)e.replaceRange(e.doc.lineSeparator(),t[n].anchor,t[n].head,"+input");t=e.listSelections();for(var r=0;r-1&&(tt((i=c.ranges[i]).from(),t)<0||t.xRel>0)&&(tt(i.to(),t)>0||t.xRel<0)?function(e,t,n,r){var i=e.display,o=!1,c=ei(e,(function(t){u&&(i.scroller.draggable=!1),e.state.draggingText=!1,de(i.wrapper.ownerDocument,"mouseup",c),de(i.wrapper.ownerDocument,"mousemove",l),de(i.scroller,"dragstart",p),de(i.scroller,"drop",c),o||(be(t),r.addNew||Ji(e.doc,n,null,null,r.extend),u&&!f||a&&9==s?setTimeout((function(){i.wrapper.ownerDocument.body.focus({preventScroll:!0}),i.input.focus()}),20):i.input.focus())})),l=function(e){o=o||Math.abs(t.clientX-e.clientX)+Math.abs(t.clientY-e.clientY)>=10},p=function(){return o=!0};u&&(i.scroller.draggable=!0),e.state.draggingText=c,c.copy=!r.moveOnDrag,i.scroller.dragDrop&&i.scroller.dragDrop(),pe(i.wrapper.ownerDocument,"mouseup",c),pe(i.wrapper.ownerDocument,"mousemove",l),pe(i.scroller,"dragstart",p),pe(i.scroller,"drop",c),Cr(e),setTimeout((function(){return i.input.focus()}),20)}(e,r,t,o):function(e,t,n,r){var i=e.display,o=e.doc;be(t);var a,s,u=o.sel,c=u.ranges;if(r.addNew&&!r.extend?(s=o.sel.contains(n),a=s>-1?c[s]:new Ci(n,n)):(a=o.sel.primary(),s=o.sel.primIndex),"rectangle"==r.unit)r.addNew||(a=new Ci(n,n)),n=cr(e,t,!0,!0),s=-1;else{var l=ya(e,n,r.unit);a=r.extend?Ki(a,l.anchor,l.head,r.extend):l}r.addNew?-1==s?(s=c.length,Zi(o,wi(e,c.concat([a]),s),{scroll:!1,origin:"*mouse"})):c.length>1&&c[s].empty()&&"char"==r.unit&&!r.extend?(Zi(o,wi(e,c.slice(0,s).concat(c.slice(s+1)),0),{scroll:!1,origin:"*mouse"}),u=o.sel):Yi(o,s,a,q):(s=0,Zi(o,new Di([a],0),q),u=o.sel);var p=n;function f(t){if(0!=tt(p,t))if(p=t,"rectangle"==r.unit){for(var i=[],c=e.options.tabSize,l=R(Ge(o,n.line).text,n.ch,c),f=R(Ge(o,t.line).text,t.ch,c),d=Math.min(l,f),h=Math.max(l,f),m=Math.min(n.line,t.line),g=Math.min(e.lastLine(),Math.max(n.line,t.line));m<=g;m++){var y=Ge(o,m).text,v=W(y,d,c);d==h?i.push(new Ci(et(m,v),et(m,v))):y.length>v&&i.push(new Ci(et(m,v),et(m,W(y,h,c))))}i.length||i.push(new Ci(n,n)),Zi(o,wi(e,u.ranges.slice(0,s).concat(i),s),{origin:"*mouse",scroll:!1}),e.scrollIntoView(t)}else{var b,E=a,x=ya(e,t,r.unit),D=E.anchor;tt(x.anchor,D)>0?(b=x.head,D=ot(E.from(),x.anchor)):(b=x.anchor,D=it(E.to(),x.head));var C=u.ranges.slice(0);C[s]=function(e,t){var n=t.anchor,r=t.head,i=Ge(e.doc,n.line);if(0==tt(n,r)&&n.sticky==r.sticky)return t;var o=ce(i);if(!o)return t;var a=se(o,n.ch,n.sticky),s=o[a];if(s.from!=n.ch&&s.to!=n.ch)return t;var u,c=a+(s.from==n.ch==(1!=s.level)?0:1);if(0==c||c==o.length)return t;if(r.line!=n.line)u=(r.line-n.line)*("ltr"==e.doc.direction?1:-1)>0;else{var l=se(o,r.ch,r.sticky),p=l-a||(r.ch-n.ch)*(1==s.level?-1:1);u=l==c-1||l==c?p<0:p>0}var f=o[c+(u?-1:0)],d=u==(1==f.level),h=d?f.from:f.to,m=d?"after":"before";return n.ch==h&&n.sticky==m?t:new Ci(new et(n.line,h,m),r)}(e,new Ci(st(o,D),b)),Zi(o,wi(e,C,s),q)}}var d=i.wrapper.getBoundingClientRect(),h=0;function m(t){e.state.selectingText=!1,h=1/0,t&&(be(t),i.input.focus()),de(i.wrapper.ownerDocument,"mousemove",g),de(i.wrapper.ownerDocument,"mouseup",y),o.history.lastSelOrigin=null}var g=ei(e,(function(t){0!==t.buttons&&we(t)?function t(n){var a=++h,s=cr(e,n,!0,"rectangle"==r.unit);if(s)if(0!=tt(s,p)){e.curOp.focus=N(),f(s);var u=Tr(i,o);(s.line>=u.to||s.lined.bottom?20:0;c&&setTimeout(ei(e,(function(){h==a&&(i.scroller.scrollTop+=c,t(n))})),50)}}(t):m(t)})),y=ei(e,m);e.state.selectingText=y,pe(i.wrapper.ownerDocument,"mousemove",g),pe(i.wrapper.ownerDocument,"mouseup",y)}(e,r,t,o)}(t,r,o,e):Ce(e)==n.scroller&&be(e):2==i?(r&&Ji(t.doc,r),setTimeout((function(){return n.input.focus()}),20)):3==i&&(C?t.display.input.onContextMenu(e):Cr(t)))}}function ya(e,t,n){if("char"==n)return new Ci(t,t);if("word"==n)return e.findWordAt(t);if("line"==n)return new Ci(et(t.line,0),st(e.doc,et(t.line+1,0)));var r=n(e,t);return new Ci(r.from,r.to)}function va(e,t,n,r){var i,o;if(t.touches)i=t.touches[0].clientX,o=t.touches[0].clientY;else try{i=t.clientX,o=t.clientY}catch(e){return!1}if(i>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;r&&be(t);var a=e.display,s=a.lineDiv.getBoundingClientRect();if(o>s.bottom||!ye(e,n))return xe(t);o-=s.top-a.viewOffset;for(var u=0;u=i)return he(e,n,e,$e(e.doc,o),e.display.gutterSpecs[u].className,t),xe(t)}}function ba(e,t){return va(e,t,"gutterClick",!0)}function Ea(e,t){Dn(e.display,t)||function(e,t){return!!ye(e,"gutterContextMenu")&&va(e,t,"gutterContextMenu",!1)}(e,t)||me(e,t,"contextmenu")||C||e.display.input.onContextMenu(t)}function xa(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+e.options.theme.replace(/(^|\s)\s*/g," cm-s-"),Un(e)}ma.prototype.compare=function(e,t,n){return this.time+400>e&&0==tt(t,this.pos)&&n==this.button};var Da={toString:function(){return"CodeMirror.Init"}},Ca={},wa={};function Sa(e,t,n){if(!t!=!(n&&n!=Da)){var r=e.display.dragFunctions,i=t?pe:de;i(e.display.scroller,"dragstart",r.start),i(e.display.scroller,"dragenter",r.enter),i(e.display.scroller,"dragover",r.over),i(e.display.scroller,"dragleave",r.leave),i(e.display.scroller,"drop",r.drop)}}function ka(e){e.options.lineWrapping?(I(e.display.wrapper,"CodeMirror-wrap"),e.display.sizer.style.minWidth="",e.display.sizerWidth=null):(k(e.display.wrapper,"CodeMirror-wrap"),Wt(e)),ur(e),pr(e),Un(e),setTimeout((function(){return zr(e)}),100)}function Aa(e,t){var n=this;if(!(this instanceof Aa))return new Aa(e,t);this.options=t=t?P(t):{},P(Ca,t,!1);var r=t.value;"string"==typeof r?r=new Fo(r,t.mode,null,t.lineSeparator,t.direction):t.mode&&(r.modeOption=t.mode),this.doc=r;var i=new Aa.inputStyles[t.inputStyle](this),o=this.display=new gi(e,r,i,t);for(var c in o.wrapper.CodeMirror=this,xa(this),t.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),Hr(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:-1,cutIncoming:-1,selectingText:!1,draggingText:!1,highlight:new B,keySeq:null,specialChars:null},t.autofocus&&!y&&o.input.focus(),a&&s<11&&setTimeout((function(){return n.display.input.reset(!0)}),20),function(e){var t=e.display;pe(t.scroller,"mousedown",ei(e,ga)),pe(t.scroller,"dblclick",a&&s<11?ei(e,(function(t){if(!me(e,t)){var n=cr(e,t);if(n&&!ba(e,t)&&!Dn(e.display,t)){be(t);var r=e.findWordAt(n);Ji(e.doc,r.anchor,r.head)}}})):function(t){return me(e,t)||be(t)}),pe(t.scroller,"contextmenu",(function(t){return Ea(e,t)})),pe(t.input.getField(),"contextmenu",(function(n){t.scroller.contains(n.target)||Ea(e,n)}));var n,r={end:0};function i(){t.activeTouch&&(n=setTimeout((function(){return t.activeTouch=null}),1e3),(r=t.activeTouch).end=+new Date)}function o(e,t){if(null==t.left)return!0;var n=t.left-e.left,r=t.top-e.top;return n*n+r*r>400}pe(t.scroller,"touchstart",(function(i){if(!me(e,i)&&!function(e){if(1!=e.touches.length)return!1;var t=e.touches[0];return t.radiusX<=1&&t.radiusY<=1}(i)&&!ba(e,i)){t.input.ensurePolled(),clearTimeout(n);var o=+new Date;t.activeTouch={start:o,moved:!1,prev:o-r.end<=300?r:null},1==i.touches.length&&(t.activeTouch.left=i.touches[0].pageX,t.activeTouch.top=i.touches[0].pageY)}})),pe(t.scroller,"touchmove",(function(){t.activeTouch&&(t.activeTouch.moved=!0)})),pe(t.scroller,"touchend",(function(n){var r=t.activeTouch;if(r&&!Dn(t,n)&&null!=r.left&&!r.moved&&new Date-r.start<300){var a,s=e.coordsChar(t.activeTouch,"page");a=!r.prev||o(r,r.prev)?new Ci(s,s):!r.prev.prev||o(r,r.prev.prev)?e.findWordAt(s):new Ci(et(s.line,0),st(e.doc,et(s.line+1,0))),e.setSelection(a.anchor,a.head),e.focus(),be(n)}i()})),pe(t.scroller,"touchcancel",i),pe(t.scroller,"scroll",(function(){t.scroller.clientHeight&&(jr(e,t.scroller.scrollTop),Pr(e,t.scroller.scrollLeft,!0),he(e,"scroll",e))})),pe(t.scroller,"mousewheel",(function(t){return xi(e,t)})),pe(t.scroller,"DOMMouseScroll",(function(t){return xi(e,t)})),pe(t.wrapper,"scroll",(function(){return t.wrapper.scrollTop=t.wrapper.scrollLeft=0})),t.dragFunctions={enter:function(t){me(e,t)||De(t)},over:function(t){me(e,t)||(function(e,t){var n=cr(e,t);if(n){var r=document.createDocumentFragment();vr(e,n,r),e.display.dragCursor||(e.display.dragCursor=_("div",null,"CodeMirror-cursors CodeMirror-dragcursors"),e.display.lineSpace.insertBefore(e.display.dragCursor,e.display.cursorDiv)),T(e.display.dragCursor,r)}}(e,t),De(t))},start:function(t){return function(e,t){if(a&&(!e.state.draggingText||+new Date-No<100))De(t);else if(!me(e,t)&&!Dn(e.display,t)&&(t.dataTransfer.setData("Text",e.getSelection()),t.dataTransfer.effectAllowed="copyMove",t.dataTransfer.setDragImage&&!f)){var n=_("img",null,null,"position: fixed; left: 0; top: 0;");n.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",p&&(n.width=n.height=1,e.display.wrapper.appendChild(n),n._top=n.offsetTop),t.dataTransfer.setDragImage(n,0,0),p&&n.parentNode.removeChild(n)}}(e,t)},drop:ei(e,Io),leave:function(t){me(e,t)||Mo(e)}};var u=t.input.getField();pe(u,"keyup",(function(t){return pa.call(e,t)})),pe(u,"keydown",ei(e,la)),pe(u,"keypress",ei(e,fa)),pe(u,"focus",(function(t){return wr(e,t)})),pe(u,"blur",(function(t){return Sr(e,t)}))}(this),Po(),Gr(this),this.curOp.forceUpdate=!0,ji(this,r),t.autofocus&&!y||this.hasFocus()?setTimeout(L(wr,this),20):Sr(this),wa)wa.hasOwnProperty(c)&&wa[c](this,t[c],Da);fi(this),t.finishInit&&t.finishInit(this);for(var l=0;l150)){if(!r)return;n="prev"}}else c=0,n="not";"prev"==n?c=t>o.first?R(Ge(o,t-1).text,null,a):0:"add"==n?c=u+e.options.indentUnit:"subtract"==n?c=u-e.options.indentUnit:"number"==typeof n&&(c=u+n),c=Math.max(0,c);var p="",f=0;if(e.options.indentWithTabs)for(var d=Math.floor(c/a);d;--d)f+=a,p+="\t";if(fa,u=Fe(t),c=null;if(s&&r.ranges.length>1)if(Oa&&Oa.text.join("\n")==t){if(r.ranges.length%Oa.text.length==0){c=[];for(var l=0;l=0;f--){var d=r.ranges[f],h=d.from(),m=d.to();d.empty()&&(n&&n>0?h=et(h.line,h.ch-n):e.state.overwrite&&!s?m=et(m.line,Math.min(Ge(o,m.line).text.length,m.ch+J(u).length)):s&&Oa&&Oa.lineWise&&Oa.text.join("\n")==u.join("\n")&&(h=m=et(h.line,0)));var g={from:h,to:m,text:c?c[f%c.length]:u,origin:i||(s?"paste":e.state.cutIncoming>a?"cut":"+input")};co(e.doc,g),un(e,"inputRead",e,g)}t&&!s&&Ma(e,t),Fr(e),e.curOp.updateInput<2&&(e.curOp.updateInput=p),e.curOp.typing=!0,e.state.pasteIncoming=e.state.cutIncoming=-1}function Ia(e,t){var n=e.clipboardData&&e.clipboardData.getData("Text");if(n)return e.preventDefault(),t.isReadOnly()||t.options.disableInput||Zr(t,(function(){return Na(t,n,0,null,"paste")})),!0}function Ma(e,t){if(e.options.electricChars&&e.options.smartIndent)for(var n=e.doc.sel,r=n.ranges.length-1;r>=0;r--){var i=n.ranges[r];if(!(i.head.ch>100||r&&n.ranges[r-1].head.line==i.head.line)){var o=e.getModeAt(i.head),a=!1;if(o.electricChars){for(var s=0;s-1){a=_a(e,i.head.line,"smart");break}}else o.electricInput&&o.electricInput.test(Ge(e.doc,i.head.line).text.slice(0,i.head.ch))&&(a=_a(e,i.head.line,"smart"));a&&un(e,"electricInput",e,i.head.line)}}}function ja(e){for(var t=[],n=[],r=0;r=t.text.length?(n.ch=t.text.length,n.sticky="before"):n.ch<=0&&(n.ch=0,n.sticky="after");var o=se(i,n.ch,n.sticky),a=i[o];if("ltr"==e.doc.direction&&a.level%2==0&&(r>0?a.to>n.ch:a.from=a.from&&f>=l.begin)){var d=p?"before":"after";return new et(n.line,f,d)}}var h=function(e,t,r){for(var o=function(e,t){return t?new et(n.line,u(e,1),"before"):new et(n.line,e,"after")};e>=0&&e0==(1!=a.level),c=s?r.begin:u(r.end,-1);if(a.from<=c&&c0?l.end:u(l.begin,-1);return null==g||r>0&&g==t.text.length||!(m=h(r>0?0:i.length-1,r,c(g)))?null:m}(e.cm,s,t,n):Zo(s,t,n))){if(r||(a=t.line+u)=e.first+e.size||(t=new et(a,t.ch,t.sticky),!(s=Ge(e,a))))return!1;t=ea(i,e.cm,s,t.line,u)}else t=o;return!0}if("char"==r)c();else if("column"==r)c(!0);else if("word"==r||"group"==r)for(var l=null,p="group"==r,f=e.cm&&e.cm.getHelper(t,"wordChars"),d=!0;!(n<0)||c(!d);d=!1){var h=s.text.charAt(t.ch)||"\n",m=ee(h,f)?"w":p&&"\n"==h?"n":!p||/\s/.test(h)?null:"p";if(!p||d||m||(m="s"),l&&l!=m){n<0&&(n=1,c(),t.sticky="after");break}if(m&&(l=m),n>0&&!c(!d))break}var g=oo(e,t,o,a,!0);return nt(o,g)&&(g.hitSide=!0),g}function Ba(e,t,n,r){var i,o,a=e.doc,s=t.left;if("page"==r){var u=Math.min(e.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight),c=Math.max(u-.5*rr(e.display),3);i=(n>0?t.bottom:t.top)+n*c}else"line"==r&&(i=n>0?t.bottom+3:t.top-3);for(;(o=Yn(e,s,i)).outside;){if(n<0?i<=0:i>=a.height){o.hitSide=!0;break}i+=5*n}return o}var Ua=function(e){this.cm=e,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new B,this.composing=null,this.gracePeriod=!1,this.readDOMTimeout=null};function za(e,t){var n=Fn(e,t.line);if(!n||n.hidden)return null;var r=Ge(e.doc,t.line),i=_n(n,r,t.line),o=ce(r,e.doc.direction),a="left";o&&(a=se(o,t.ch)%2?"right":"left");var s=Ln(i.map,t.ch,a);return s.offset="right"==s.collapse?s.end:s.start,s}function Va(e,t){return t&&(e.bad=!0),e}function qa(e,t,n){var r;if(t==e.display.lineDiv){if(!(r=e.display.lineDiv.childNodes[n]))return Va(e.clipPos(et(e.display.viewTo-1)),!0);t=null,n=0}else for(r=t;;r=r.parentNode){if(!r||r==e.display.lineDiv)return null;if(r.parentNode&&r.parentNode==e.display.lineDiv)break}for(var i=0;i=t.display.viewTo||o.line=t.display.viewFrom&&za(t,i)||{node:u[0].measure.map[2],offset:0},l=o.liner.firstLine()&&(a=et(a.line-1,Ge(r.doc,a.line-1).length)),s.ch==Ge(r.doc,s.line).text.length&&s.linei.viewTo-1)return!1;a.line==i.viewFrom||0==(e=lr(r,a.line))?(t=Ye(i.view[0].line),n=i.view[0].node):(t=Ye(i.view[e].line),n=i.view[e-1].node.nextSibling);var u,c,l=lr(r,s.line);if(l==i.view.length-1?(u=i.viewTo-1,c=i.lineDiv.lastChild):(u=Ye(i.view[l+1].line)-1,c=i.view[l+1].node.previousSibling),!n)return!1;for(var p=r.doc.splitLines(function(e,t,n,r,i){var o="",a=!1,s=e.doc.lineSeparator(),u=!1;function c(){a&&(o+=s,u&&(o+=s),a=u=!1)}function l(e){e&&(c(),o+=e)}function p(t){if(1==t.nodeType){var n=t.getAttribute("cm-text");if(n)return void l(n);var o,f=t.getAttribute("cm-marker");if(f){var d=e.findMarks(et(r,0),et(i+1,0),(g=+f,function(e){return e.id==g}));return void(d.length&&(o=d[0].find(0))&&l(Ke(e.doc,o.from,o.to).join(s)))}if("false"==t.getAttribute("contenteditable"))return;var h=/^(pre|div|p|li|table|br)$/i.test(t.nodeName);if(!/^br$/i.test(t.nodeName)&&0==t.textContent.length)return;h&&c();for(var m=0;m1&&f.length>1;)if(J(p)==J(f))p.pop(),f.pop(),u--;else{if(p[0]!=f[0])break;p.shift(),f.shift(),t++}for(var d=0,h=0,m=p[0],g=f[0],y=Math.min(m.length,g.length);da.ch&&v.charCodeAt(v.length-h-1)==b.charCodeAt(b.length-h-1);)d--,h++;p[p.length-1]=v.slice(0,v.length-h).replace(/^\u200b+/,""),p[0]=p[0].slice(d).replace(/\u200b+$/,"");var x=et(t,d),D=et(u,f.length?J(f).length-h:0);return p.length>1||p[0]||tt(x,D)?(mo(r.doc,p,x,D,"+input"),!0):void 0},Ua.prototype.ensurePolled=function(){this.forceCompositionEnd()},Ua.prototype.reset=function(){this.forceCompositionEnd()},Ua.prototype.forceCompositionEnd=function(){this.composing&&(clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())},Ua.prototype.readFromDOMSoon=function(){var e=this;null==this.readDOMTimeout&&(this.readDOMTimeout=setTimeout((function(){if(e.readDOMTimeout=null,e.composing){if(!e.composing.done)return;e.composing=null}e.updateFromDOM()}),80))},Ua.prototype.updateFromDOM=function(){var e=this;!this.cm.isReadOnly()&&this.pollContent()||Zr(this.cm,(function(){return pr(e.cm)}))},Ua.prototype.setUneditable=function(e){e.contentEditable="false"},Ua.prototype.onKeyPress=function(e){0==e.charCode||this.composing||(e.preventDefault(),this.cm.isReadOnly()||ei(this.cm,Na)(this.cm,String.fromCharCode(null==e.charCode?e.keyCode:e.charCode),0))},Ua.prototype.readOnlyChanged=function(e){this.div.contentEditable=String("nocursor"!=e)},Ua.prototype.onContextMenu=function(){},Ua.prototype.resetPosition=function(){},Ua.prototype.needsContentAttribute=!0;var Wa=function(e){this.cm=e,this.prevInput="",this.pollingFast=!1,this.polling=new B,this.hasSelection=!1,this.composing=null};Wa.prototype.init=function(e){var t=this,n=this,r=this.cm;this.createField(e);var i=this.textarea;function o(e){if(!me(r,e)){if(r.somethingSelected())Fa({lineWise:!1,text:r.getSelections()});else{if(!r.options.lineWiseCopyCut)return;var t=ja(r);Fa({lineWise:!0,text:t.text}),"cut"==e.type?r.setSelections(t.ranges,null,V):(n.prevInput="",i.value=t.text.join("\n"),j(i))}"cut"==e.type&&(r.state.cutIncoming=+new Date)}}e.wrapper.insertBefore(this.wrapper,e.wrapper.firstChild),m&&(i.style.width="0px"),pe(i,"input",(function(){a&&s>=9&&t.hasSelection&&(t.hasSelection=null),n.poll()})),pe(i,"paste",(function(e){me(r,e)||Ia(e,r)||(r.state.pasteIncoming=+new Date,n.fastPoll())})),pe(i,"cut",o),pe(i,"copy",o),pe(e.scroller,"paste",(function(t){if(!Dn(e,t)&&!me(r,t)){if(!i.dispatchEvent)return r.state.pasteIncoming=+new Date,void n.focus();var o=new Event("paste");o.clipboardData=t.clipboardData,i.dispatchEvent(o)}})),pe(e.lineSpace,"selectstart",(function(t){Dn(e,t)||be(t)})),pe(i,"compositionstart",(function(){var e=r.getCursor("from");n.composing&&n.composing.range.clear(),n.composing={start:e,range:r.markText(e,r.getCursor("to"),{className:"CodeMirror-composing"})}})),pe(i,"compositionend",(function(){n.composing&&(n.poll(),n.composing.range.clear(),n.composing=null)}))},Wa.prototype.createField=function(e){this.wrapper=Pa(),this.textarea=this.wrapper.firstChild},Wa.prototype.screenReaderLabelChanged=function(e){e?this.textarea.setAttribute("aria-label",e):this.textarea.removeAttribute("aria-label")},Wa.prototype.prepareSelection=function(){var e=this.cm,t=e.display,n=e.doc,r=yr(e);if(e.options.moveInputWithCursor){var i=Kn(e,n.sel.primary().head,"div"),o=t.wrapper.getBoundingClientRect(),a=t.lineDiv.getBoundingClientRect();r.teTop=Math.max(0,Math.min(t.wrapper.clientHeight-10,i.top+a.top-o.top)),r.teLeft=Math.max(0,Math.min(t.wrapper.clientWidth-10,i.left+a.left-o.left))}return r},Wa.prototype.showSelection=function(e){var t=this.cm.display;T(t.cursorDiv,e.cursors),T(t.selectionDiv,e.selection),null!=e.teTop&&(this.wrapper.style.top=e.teTop+"px",this.wrapper.style.left=e.teLeft+"px")},Wa.prototype.reset=function(e){if(!this.contextMenuPending&&!this.composing){var t=this.cm;if(t.somethingSelected()){this.prevInput="";var n=t.getSelection();this.textarea.value=n,t.state.focused&&j(this.textarea),a&&s>=9&&(this.hasSelection=n)}else e||(this.prevInput=this.textarea.value="",a&&s>=9&&(this.hasSelection=null))}},Wa.prototype.getField=function(){return this.textarea},Wa.prototype.supportsTouch=function(){return!1},Wa.prototype.focus=function(){if("nocursor"!=this.cm.options.readOnly&&(!y||N()!=this.textarea))try{this.textarea.focus()}catch(e){}},Wa.prototype.blur=function(){this.textarea.blur()},Wa.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0},Wa.prototype.receivedFocus=function(){this.slowPoll()},Wa.prototype.slowPoll=function(){var e=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,(function(){e.poll(),e.cm.state.focused&&e.slowPoll()}))},Wa.prototype.fastPoll=function(){var e=!1,t=this;t.pollingFast=!0,t.polling.set(20,(function n(){t.poll()||e?(t.pollingFast=!1,t.slowPoll()):(e=!0,t.polling.set(60,n))}))},Wa.prototype.poll=function(){var e=this,t=this.cm,n=this.textarea,r=this.prevInput;if(this.contextMenuPending||!t.state.focused||Ne(n)&&!r&&!this.composing||t.isReadOnly()||t.options.disableInput||t.state.keySeq)return!1;var i=n.value;if(i==r&&!t.somethingSelected())return!1;if(a&&s>=9&&this.hasSelection===i||v&&/[\uf700-\uf7ff]/.test(i))return t.display.input.reset(),!1;if(t.doc.sel==t.display.selForContextMenu){var o=i.charCodeAt(0);if(8203!=o||r||(r="​"),8666==o)return this.reset(),this.cm.execCommand("undo")}for(var u=0,c=Math.min(r.length,i.length);u1e3||i.indexOf("\n")>-1?n.value=e.prevInput="":e.prevInput=i,e.composing&&(e.composing.range.clear(),e.composing.range=t.markText(e.composing.start,t.getCursor("to"),{className:"CodeMirror-composing"}))})),!0},Wa.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},Wa.prototype.onKeyPress=function(){a&&s>=9&&(this.hasSelection=null),this.fastPoll()},Wa.prototype.onContextMenu=function(e){var t=this,n=t.cm,r=n.display,i=t.textarea;t.contextMenuPending&&t.contextMenuPending();var o=cr(n,e),c=r.scroller.scrollTop;if(o&&!p){n.options.resetSelectionOnContextMenu&&-1==n.doc.sel.contains(o)&&ei(n,Zi)(n.doc,Si(o),V);var l,f=i.style.cssText,d=t.wrapper.style.cssText,h=t.wrapper.offsetParent.getBoundingClientRect();if(t.wrapper.style.cssText="position: static",i.style.cssText="position: absolute; width: 30px; height: 30px;\n top: "+(e.clientY-h.top-5)+"px; left: "+(e.clientX-h.left-5)+"px;\n z-index: 1000; background: "+(a?"rgba(255, 255, 255, .05)":"transparent")+";\n outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);",u&&(l=window.scrollY),r.input.focus(),u&&window.scrollTo(null,l),r.input.reset(),n.somethingSelected()||(i.value=t.prevInput=" "),t.contextMenuPending=y,r.selForContextMenu=n.doc.sel,clearTimeout(r.detectingSelectAll),a&&s>=9&&g(),C){De(e);var m=function(){de(window,"mouseup",m),setTimeout(y,20)};pe(window,"mouseup",m)}else setTimeout(y,50)}function g(){if(null!=i.selectionStart){var e=n.somethingSelected(),o="​"+(e?i.value:"");i.value="⇚",i.value=o,t.prevInput=e?"":"​",i.selectionStart=1,i.selectionEnd=o.length,r.selForContextMenu=n.doc.sel}}function y(){if(t.contextMenuPending==y&&(t.contextMenuPending=!1,t.wrapper.style.cssText=d,i.style.cssText=f,a&&s<9&&r.scrollbars.setScrollTop(r.scroller.scrollTop=c),null!=i.selectionStart)){(!a||a&&s<9)&&g();var e=0,o=function(){r.selForContextMenu==n.doc.sel&&0==i.selectionStart&&i.selectionEnd>0&&"​"==t.prevInput?ei(n,so)(n):e++<10?r.detectingSelectAll=setTimeout(o,500):(r.selForContextMenu=null,r.input.reset())};r.detectingSelectAll=setTimeout(o,200)}}},Wa.prototype.readOnlyChanged=function(e){e||this.reset(),this.textarea.disabled="nocursor"==e},Wa.prototype.setUneditable=function(){},Wa.prototype.needsContentAttribute=!1,function(e){var t=e.optionHandlers;function n(n,r,i,o){e.defaults[n]=r,i&&(t[n]=o?function(e,t,n){n!=Da&&i(e,t,n)}:i)}e.defineOption=n,e.Init=Da,n("value","",(function(e,t){return e.setValue(t)}),!0),n("mode",null,(function(e,t){e.doc.modeOption=t,Oi(e)}),!0),n("indentUnit",2,Oi,!0),n("indentWithTabs",!1),n("smartIndent",!0),n("tabSize",4,(function(e){Fi(e),Un(e),pr(e)}),!0),n("lineSeparator",null,(function(e,t){if(e.doc.lineSep=t,t){var n=[],r=e.doc.first;e.doc.iter((function(e){for(var i=0;;){var o=e.text.indexOf(t,i);if(-1==o)break;i=o+t.length,n.push(et(r,o))}r++}));for(var i=n.length-1;i>=0;i--)mo(e.doc,t,n[i],et(n[i].line,n[i].ch+t.length))}})),n("specialChars",/[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b-\u200c\u200e\u200f\u2028\u2029\ufeff\ufff9-\ufffc]/g,(function(e,t,n){e.state.specialChars=new RegExp(t.source+(t.test("\t")?"":"|\t"),"g"),n!=Da&&e.refresh()})),n("specialCharPlaceholder",Xt,(function(e){return e.refresh()}),!0),n("electricChars",!0),n("inputStyle",y?"contenteditable":"textarea",(function(){throw new Error("inputStyle can not (yet) be changed in a running editor")}),!0),n("spellcheck",!1,(function(e,t){return e.getInputField().spellcheck=t}),!0),n("autocorrect",!1,(function(e,t){return e.getInputField().autocorrect=t}),!0),n("autocapitalize",!1,(function(e,t){return e.getInputField().autocapitalize=t}),!0),n("rtlMoveVisually",!E),n("wholeLineUpdateBefore",!0),n("theme","default",(function(e){xa(e),mi(e)}),!0),n("keyMap","default",(function(e,t,n){var r=Yo(t),i=n!=Da&&Yo(n);i&&i.detach&&i.detach(e,r),r.attach&&r.attach(e,i||null)})),n("extraKeys",null),n("configureMouse",null),n("lineWrapping",!1,ka,!0),n("gutters",[],(function(e,t){e.display.gutterSpecs=di(t,e.options.lineNumbers),mi(e)}),!0),n("fixedGutter",!0,(function(e,t){e.display.gutters.style.left=t?ar(e.display)+"px":"0",e.refresh()}),!0),n("coverGutterNextToScrollbar",!1,(function(e){return zr(e)}),!0),n("scrollbarStyle","native",(function(e){Hr(e),zr(e),e.display.scrollbars.setScrollTop(e.doc.scrollTop),e.display.scrollbars.setScrollLeft(e.doc.scrollLeft)}),!0),n("lineNumbers",!1,(function(e,t){e.display.gutterSpecs=di(e.options.gutters,t),mi(e)}),!0),n("firstLineNumber",1,mi,!0),n("lineNumberFormatter",(function(e){return e}),mi,!0),n("showCursorWhenSelecting",!1,gr,!0),n("resetSelectionOnContextMenu",!0),n("lineWiseCopyCut",!0),n("pasteLinesPerSelection",!0),n("selectionsMayTouch",!1),n("readOnly",!1,(function(e,t){"nocursor"==t&&(Sr(e),e.display.input.blur()),e.display.input.readOnlyChanged(t)})),n("screenReaderLabel",null,(function(e,t){t=""===t?null:t,e.display.input.screenReaderLabelChanged(t)})),n("disableInput",!1,(function(e,t){t||e.display.input.reset()}),!0),n("dragDrop",!0,Sa),n("allowDropFileTypes",null),n("cursorBlinkRate",530),n("cursorScrollMargin",0),n("cursorHeight",1,gr,!0),n("singleCursorHeightPerLine",!0,gr,!0),n("workTime",100),n("workDelay",100),n("flattenSpans",!0,Fi,!0),n("addModeClass",!1,Fi,!0),n("pollInterval",100),n("undoDepth",200,(function(e,t){return e.doc.history.undoDepth=t})),n("historyEventDelay",1250),n("viewportMargin",10,(function(e){return e.refresh()}),!0),n("maxHighlightLength",1e4,Fi,!0),n("moveInputWithCursor",!0,(function(e,t){t||e.display.input.resetPosition()})),n("tabindex",null,(function(e,t){return e.display.input.getField().tabIndex=t||""})),n("autofocus",null),n("direction","ltr",(function(e,t){return e.doc.setDirection(t)}),!0),n("phrases",null)}(Aa),function(e){var t=e.optionHandlers,n=e.helpers={};e.prototype={constructor:e,focus:function(){window.focus(),this.display.input.focus()},setOption:function(e,n){var r=this.options,i=r[e];r[e]==n&&"mode"!=e||(r[e]=n,t.hasOwnProperty(e)&&ei(this,t[e])(this,n,i),he(this,"optionChange",this,e))},getOption:function(e){return this.options[e]},getDoc:function(){return this.doc},addKeyMap:function(e,t){this.state.keyMaps[t?"push":"unshift"](Yo(e))},removeKeyMap:function(e){for(var t=this.state.keyMaps,n=0;nn&&(_a(this,i.head.line,e,!0),n=i.head.line,r==this.doc.sel.primIndex&&Fr(this));else{var o=i.from(),a=i.to(),s=Math.max(n,o.line);n=Math.min(this.lastLine(),a.line-(a.ch?0:1))+1;for(var u=s;u0&&Yi(this.doc,r,new Ci(o,c[r].to()),V)}}})),getTokenAt:function(e,t){return vt(this,e,t)},getLineTokens:function(e,t){return vt(this,et(e),t,!0)},getTokenTypeAt:function(e){e=st(this.doc,e);var t,n=ft(this,Ge(this.doc,e.line)),r=0,i=(n.length-1)/2,o=e.ch;if(0==o)t=n[2];else for(;;){var a=r+i>>1;if((a?n[2*a-1]:0)>=o)i=a;else{if(!(n[2*a+1]o&&(e=o,i=!0),r=Ge(this.doc,e)}else r=e;return Hn(this,r,{top:0,left:0},t||"page",n||i).top+(i?this.doc.height-qt(r):0)},defaultTextHeight:function(){return rr(this.display)},defaultCharWidth:function(){return ir(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(e,t,n,r,i){var o,a,s,u=this.display,c=(e=Kn(this,st(this.doc,e))).bottom,l=e.left;if(t.style.position="absolute",t.setAttribute("cm-ignore-events","true"),this.display.input.setUneditable(t),u.sizer.appendChild(t),"over"==r)c=e.top;else if("above"==r||"near"==r){var p=Math.max(u.wrapper.clientHeight,this.doc.height),f=Math.max(u.sizer.clientWidth,u.lineSpace.clientWidth);("above"==r||e.bottom+t.offsetHeight>p)&&e.top>t.offsetHeight?c=e.top-t.offsetHeight:e.bottom+t.offsetHeight<=p&&(c=e.bottom),l+t.offsetWidth>f&&(l=f-t.offsetWidth)}t.style.top=c+"px",t.style.left=t.style.right="","right"==i?(l=u.sizer.clientWidth-t.offsetWidth,t.style.right="0px"):("left"==i?l=0:"middle"==i&&(l=(u.sizer.clientWidth-t.offsetWidth)/2),t.style.left=l+"px"),n&&(o=this,a={left:l,top:c,right:l+t.offsetWidth,bottom:c+t.offsetHeight},null!=(s=_r(o,a)).scrollTop&&jr(o,s.scrollTop),null!=s.scrollLeft&&Pr(o,s.scrollLeft))},triggerOnKeyDown:ti(la),triggerOnKeyPress:ti(fa),triggerOnKeyUp:pa,triggerOnMouseDown:ti(ga),execCommand:function(e){if(ta.hasOwnProperty(e))return ta[e].call(null,this)},triggerElectric:ti((function(e){Ma(this,e)})),findPosH:function(e,t,n,r){var i=1;t<0&&(i=-1,t=-t);for(var o=st(this.doc,e),a=0;a0&&a(t.charAt(n-1));)--n;for(;r.5||this.options.lineWrapping)&&ur(this),he(this,"refresh",this)})),swapDoc:ti((function(e){var t=this.doc;return t.cm=null,this.state.selectingText&&this.state.selectingText(),ji(this,e),Un(this),this.display.input.reset(),Nr(this,e.scrollLeft,e.scrollTop),this.curOp.forceScroll=!0,un(this,"swapDoc",this,t),t})),phrase:function(e){var t=this.options.phrases;return t&&Object.prototype.hasOwnProperty.call(t,e)?t[e]:e},getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},ve(e),e.registerHelper=function(t,r,i){n.hasOwnProperty(t)||(n[t]=e[t]={_global:[]}),n[t][r]=i},e.registerGlobalHelper=function(t,r,i,o){e.registerHelper(t,r,o),n[t]._global.push({pred:i,val:o})}}(Aa);var Ga="iter insert remove copy getEditor constructor".split(" ");for(var Ka in Fo.prototype)Fo.prototype.hasOwnProperty(Ka)&&U(Ga,Ka)<0&&(Aa.prototype[Ka]=function(e){return function(){return e.apply(this.doc,arguments)}}(Fo.prototype[Ka]));return ve(Fo),Aa.inputStyles={textarea:Wa,contenteditable:Ua},Aa.defineMode=function(e){Aa.defaults.mode||"null"==e||(Aa.defaults.mode=e),Pe.apply(this,arguments)},Aa.defineMIME=function(e,t){Le[e]=t},Aa.defineMode("null",(function(){return{token:function(e){return e.skipToEnd()}}})),Aa.defineMIME("text/plain","null"),Aa.defineExtension=function(e,t){Aa.prototype[e]=t},Aa.defineDocExtension=function(e,t){Fo.prototype[e]=t},Aa.fromTextArea=function(e,t){if((t=t?P(t):{}).value=e.value,!t.tabindex&&e.tabIndex&&(t.tabindex=e.tabIndex),!t.placeholder&&e.placeholder&&(t.placeholder=e.placeholder),null==t.autofocus){var n=N();t.autofocus=n==e||null!=e.getAttribute("autofocus")&&n==document.body}function r(){e.value=s.getValue()}var i;if(e.form&&(pe(e.form,"submit",r),!t.leaveSubmitMethodAlone)){var o=e.form;i=o.submit;try{var a=o.submit=function(){r(),o.submit=i,o.submit(),o.submit=a}}catch(e){}}t.finishInit=function(n){n.save=r,n.getTextArea=function(){return e},n.toTextArea=function(){n.toTextArea=isNaN,r(),e.parentNode.removeChild(n.getWrapperElement()),e.style.display="",e.form&&(de(e.form,"submit",r),t.leaveSubmitMethodAlone||"function"!=typeof e.form.submit||(e.form.submit=i))}},e.style.display="none";var s=Aa((function(t){return e.parentNode.insertBefore(t,e.nextSibling)}),t);return s},function(e){e.off=de,e.on=pe,e.wheelEventPixels=Ei,e.Doc=Fo,e.splitLines=Fe,e.countColumn=R,e.findColumn=W,e.isWordChar=Z,e.Pass=z,e.signal=he,e.Line=Gt,e.changeEnd=ki,e.scrollbarModel=qr,e.Pos=et,e.cmpPos=tt,e.modes=je,e.mimeModes=Le,e.resolveMode=Re,e.getMode=Be,e.modeExtensions=Ue,e.extendMode=ze,e.copyState=Ve,e.startState=He,e.innerMode=qe,e.commands=ta,e.keyMap=qo,e.keyName=Qo,e.isModifierKey=Ko,e.lookupKey=Go,e.normalizeKeyMap=Wo,e.StringStream=We,e.SharedTextMarker=Ao,e.TextMarker=So,e.LineWidget=Do,e.e_preventDefault=be,e.e_stopPropagation=Ee,e.e_stop=De,e.addClass=I,e.contains=F,e.rmClass=k,e.keyNames=Bo}(Aa),Aa.version="5.57.0",Aa}()},function(e,t,n){"use strict";function r(e,t){if(!Boolean(e))throw new Error(null!=t?t:"Unexpected invariant triggered.")}n.d(t,"a",(function(){return r}))},function(e,t,n){"use strict";n.d(t,"a",(function(){return i})),n.d(t,"b",(function(){return o})),n.d(t,"c",(function(){return a})),n.d(t,"d",(function(){return s})),n.d(t,"e",(function(){return u})),n.d(t,"f",(function(){return c})),n.d(t,"g",(function(){return h})),n.d(t,"h",(function(){return l})),n.d(t,"i",(function(){return p})),n.d(t,"j",(function(){return f})),n.d(t,"k",(function(){return d}));var r=function(e){return"@@redux-saga/"+e},i=r("CANCEL_PROMISE"),o=r("CHANNEL_END"),a=r("IO"),s=r("MATCH"),u=r("MULTICAST"),c=r("SAGA_ACTION"),l=r("SELF_CANCELLATION"),p=r("TASK"),f=r("TASK_CANCEL"),d=r("TERMINATE"),h=r("LOCATION")},function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return o})),n.d(t,"c",(function(){return a})),n.d(t,"d",(function(){return s})); +/*! ***************************************************************************** +Copyright (c) Microsoft Corporation. All rights reserved. +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 + +THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +MERCHANTABLITY OR NON-INFRINGEMENT. + +See the Apache Version 2.0 License for specific language governing permissions +and limitations under the License. +***************************************************************************** */ +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)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)};function i(e,t){function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var o=function(){return(o=Object.assign||function(e){for(var t,n=1,r=arguments.length;n2&&void 0!==arguments[2]?arguments[2]:j;return L(e,t,n)}function j(e,t,n){var r="Invalid value "+Object(l.a)(t);throw e.length>0&&(r+=' at "value'.concat(A(e),'"')),n.message=r+": "+n.message,n}function L(e,t,n,r){if(Object(D.L)(t))return null!=e?L(e,t.ofType,n,r):void n(g(r),e,new y.a('Expected non-nullable type "'.concat(Object(l.a)(t),'" not to be null.')));if(null==e)return null;if(Object(D.J)(t)){var i=t.ofType;return Object(h.a)(e)?Object(c.a)(e,(function(e,t){var o=m(r,t,void 0);return L(e,i,n,o)})):[L(e,i,n,r)]}if(Object(D.F)(t)){if(!Object(d.a)(e))return void n(g(r),e,new y.a('Expected type "'.concat(t.name,'" to be an object.')));for(var o={},a=t.getFields(),s=0,u=Object(_.a)(a);s0&&(i+=' at "'.concat(s).concat(A(e),'"')),r(new y.a(i+"; "+n.message,a,void 0,void 0,void 0,n.originalError))}))},a=0;a=o)throw new y.a("Too many errors processing variables, error limit reached. Execution aborted.");i.push(e)}));if(0===i.length)return{coerced:a}}catch(e){i.push(e)}return{errors:i}}function R(e,t,n){for(var r,i={},o=null!==(r=t.arguments)&&void 0!==r?r:[],a=Object(k.a)(o,(function(e){return e.name.value})),s=0,u=e.args;s0)return{errors:d};try{t=Object(a.a)(r)}catch(e){return{errors:[e]}}var h=Object(s.c)(n,t);return h.length>0?{errors:h}:z({schema:n,document:t,rootValue:i,contextValue:o,variableValues:c,operationName:l,fieldResolver:p,typeResolver:f})}var ge=n(54),ye=n(13),ve=n(24),be=n(84),Ee=n(96),xe=n(137),De=n(85),Ce=n(5),we=n(26),Se=n(9),ke=n(46),Ae=n(25);function Te(e,t,n){var r,i,o,a,s,u,c=e[Ae.a].call(e);function l(e){return e.done?e:_e(e.value,t).then(Oe,i)}if("function"==typeof c.return&&(r=c.return,i=function(e){var t=function(){return Promise.reject(e)};return r.call(c).then(t,t)}),n){var p=n;o=function(e){return _e(e,p).then(Oe,i)}}return a={next:function(){return c.next().then(l,o)},return:function(){return r?r.call(c).then(l,o):Promise.resolve({value:void 0,done:!0})},throw:function(e){return"function"==typeof c.throw?c.throw(e).then(l,o):Promise.reject(e).catch(i)}},s=Ae.a,u=function(){return this},s in a?Object.defineProperty(a,s,{value:u,enumerable:!0,configurable:!0,writable:!0}):a[s]=u,a}function _e(e,t){return new Promise((function(n){return n(t(e))}))}function Oe(e){return{value:e,done:!1}}function Fe(e){return(Fe="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)}function Ne(e,t,n,r,i,o,a,s){return 1===arguments.length?Me(e):Me({schema:e,document:t,rootValue:n,contextValue:r,variableValues:i,operationName:o,fieldResolver:a,subscribeFieldResolver:s})}function Ie(e){if(e instanceof y.a)return{errors:[e]};throw e}function Me(e){var t=e.schema,n=e.document,r=e.rootValue,i=e.contextValue,o=e.variableValues,a=e.operationName,s=e.fieldResolver,u=e.subscribeFieldResolver,c=je(t,n,r,i,o,a,u),l=function(e){return z({schema:t,document:n,rootValue:e,contextValue:i,variableValues:o,operationName:a,fieldResolver:s})};return c.then((function(e){return Le(e)?Te(e,l,Ie):e}))}function je(e,t,n,r,i,o,a){H(e,t,i);try{var s,u=W(e,t,n,r,i,o,a);if(Array.isArray(u))return Promise.resolve({errors:u});var c=w(e,u.operation),p=K(u,c,u.operation.selectionSet,Object.create(null),Object.create(null)),f=Object.keys(p)[0],d=p[f],h=d[0].name.value,b=fe(e,c,h);if(!b)throw new y.a('The subscription field "'.concat(h,'" is not defined.'),d);var E=null!==(s=b.subscribe)&&void 0!==s?s:u.fieldResolver,x=m(void 0,f,c.name),D=$(u,b,d,c,x),C=X(u,b,d,E,n,D);return Promise.resolve(C).then((function(e){if(e instanceof Error)return{errors:[Object(v.a)(e,d,g(x))]};if(Le(e))return e;throw new Error("Subscription field must return Async Iterable. "+"Received: ".concat(Object(l.a)(e),"."))}))}catch(e){return e instanceof y.a?Promise.resolve({errors:[e]}):Promise.reject(e)}}function Le(e){return null!=e&&"object"===Fe(e)&&"function"==typeof e[Ae.a]}var Pe=n(146),Re=n(138),Be=n(219),Ue=n(226),ze=n(223),Ve=n(142),qe=n(140),He=n(228),We=n(139),Ge=n(221),Ke=n(231),Je=n(233),Qe=n(229),Ye=n(234),$e=n(237),Xe=n(230),Ze=n(144),et=n(225),tt=n(222),nt=n(143),rt=n(141),it=n(227),ot=n(145),at=n(220),st=n(232),ut=n(235),ct=n(224),lt=n(236),pt=n(238),ft=n(239),dt=n(240),ht=n(241),mt=n(242),gt=n(243),yt=n(244),vt=n(245);function bt(e){return{Field:function(t){var n=Object(D.A)(e.getType());n&&Object(E.isIntrospectionType)(n)&&e.reportError(new y.a('GraphQL introspection has been disabled, but the requested query contained the field "'.concat(t.name.value,'".'),t))}}}var Et=n(45);function xt(e){var t;e||Object(f.a)(0,"Received null or undefined error.");var n=null!==(t=e.message)&&void 0!==t?t:"An unknown error occurred.",r=e.locations,i=e.path,o=e.extensions;return o?{message:n,locations:r,path:i,extensions:o}:{message:n,locations:r,path:i}}function Dt(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 Ct(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function wt(e){var t=function(e){for(var t=1;t0?n.reverse().join("\n"):void 0}(e);if(void 0!==n)return Object(Nt.a)("\n"+n)}}function Vt(e,t){null!=e&&e.kind===b.a.DOCUMENT||Object(f.a)(0,"Must provide valid Document AST."),!0!==(null==t?void 0:t.assumeValid)&&!0!==(null==t?void 0:t.assumeValidSDL)&&Object(s.a)(e);var n=Pt({description:void 0,types:[],directives:[],extensions:void 0,extensionASTNodes:[],assumeValid:!1},e,t);if(null==n.astNode)for(var r=0,i=n.types;r2&&void 0!==arguments[2]?arguments[2]:"";return 0===t.length?"":t.every((function(e){return!e.description}))?"("+t.map(cn).join(", ")+")":"(\n"+t.map((function(t,r){return pn(e,t," "+n,!r)+" "+n+cn(t)})).join("\n")+"\n"+n+")"}function cn(e){var t=Object($t.a)(e.defaultValue,e.type),n=e.name+": "+String(e.type);return t&&(n+=" = ".concat(Object(T.print)(t))),n}function ln(e){if(!e.isDeprecated)return"";var t=e.deprecationReason,n=Object($t.a)(t,ye.e);return n&&t!==x.a?" @deprecated(reason: "+Object(T.print)(n)+")":" @deprecated"}function pn(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",r=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],i=t.description;if(null==i)return"";if(!0===(null==e?void 0:e.commentDescriptions))return fn(i,n,r);var o=i.length>70,a=Object(Nt.c)(i,"",o),s=n&&!r?"\n"+n:n;return s+a.replace(/\n/g,"\n"+n)+"\n"}function fn(e,t,n){return(t&&!n?"\n":"")+e.split("\n").map((function(e){return t+(""!==e?"# "+e:"#")})).join("\n")+"\n"}var dn=n(217),hn=n(86),mn=n(116);function gn(e){return{kind:"Document",definitions:Object(mn.a)(e,(function(e){return e.definitions}))}}function yn(e){var t,n=[],r=Object.create(null);Object(we.c)(e,{OperationDefinition:function(e){t=vn(e),n.push(e)},FragmentDefinition:function(e){t=e.name.value},FragmentSpread:function(e){var n=e.name.value,i=r[t];void 0===i&&(i=r[t]=Object.create(null)),i[n]=!0}});for(var i=Object.create(null),o=function(t){var o=n[t],a=vn(o),s=Object.create(null);!function e(t,n,r){var i=n[r];if(i)for(var o=0,a=Object.keys(i);o0&&(n="\n"+n);var i=n[n.length-1];return('"'===i&&'\\"""'!==n.slice(-4)||"\\"===i)&&(n+="\n"),'"""'+n+'"""'}var xn=n(63),Dn=n(218);function Cn(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 wn(e){for(var t=1;t=55296&&e<=57343)&&(!(e>=64976&&e<=65007)&&(65535!=(65535&e)&&65534!=(65535&e)&&(!(e>=0&&e<=8)&&(11!==e&&(!(e>=14&&e<=31)&&(!(e>=127&&e<=159)&&!(e>1114111)))))))}function a(e){if(e>65535){var t=55296+((e-=65536)>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}var s=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,u=new RegExp(s.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),c=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,l=n(170);var p=/[&<>"]/,f=/[&<>"]/g,d={"&":"&","<":"<",">":">",'"':"""};function h(e){return d[e]}var m=/[.?*+^$[\]\\(){}|-]/g;var g=n(104);t.lib={},t.lib.mdurl=n(105),t.lib.ucmicro=n(171),t.assign=function(e){var t=Array.prototype.slice.call(arguments,1);return t.forEach((function(t){if(t){if("object"!=typeof t)throw new TypeError(t+"must be object");Object.keys(t).forEach((function(n){e[n]=t[n]}))}})),e},t.isString=function(e){return"[object String]"===function(e){return Object.prototype.toString.call(e)}(e)},t.has=i,t.unescapeMd=function(e){return e.indexOf("\\")<0?e:e.replace(s,"$1")},t.unescapeAll=function(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(u,(function(e,t,n){return t||function(e,t){var n=0;return i(l,t)?l[t]:35===t.charCodeAt(0)&&c.test(t)&&o(n="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10))?a(n):e}(e,n)}))},t.isValidEntityCode=o,t.fromCodePoint=a,t.escapeHtml=function(e){return p.test(e)?e.replace(f,h):e},t.arrayReplaceAt=function(e,t,n){return[].concat(e.slice(0,t),n,e.slice(t+1))},t.isSpace=function(e){switch(e){case 9:case 32:return!0}return!1},t.isWhiteSpace=function(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},t.isMdAsciiPunct=function(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}},t.isPunctChar=function(e){return g.test(e)},t.escapeRE=function(e){return e.replace(m,"\\$&")},t.normalizeReference=function(e){return e.trim().replace(/\s+/g," ").toUpperCase()}},function(e,t,n){"use strict";var r=Object.prototype.hasOwnProperty;function i(e,t){return r.call(e,t)}function o(e){return!(e>=55296&&e<=57343)&&(!(e>=64976&&e<=65007)&&(65535!=(65535&e)&&65534!=(65535&e)&&(!(e>=0&&e<=8)&&(11!==e&&(!(e>=14&&e<=31)&&(!(e>=127&&e<=159)&&!(e>1114111)))))))}function a(e){if(e>65535){var t=55296+((e-=65536)>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}var s=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,u=new RegExp(s.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),c=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,l=n(201);var p=/[&<>"]/,f=/[&<>"]/g,d={"&":"&","<":"<",">":">",'"':"""};function h(e){return d[e]}var m=/[.?*+^$[\]\\(){}|-]/g;var g=n(104);t.lib={},t.lib.mdurl=n(105),t.lib.ucmicro=n(171),t.assign=function(e){var t=Array.prototype.slice.call(arguments,1);return t.forEach((function(t){if(t){if("object"!=typeof t)throw new TypeError(t+"must be object");Object.keys(t).forEach((function(n){e[n]=t[n]}))}})),e},t.isString=function(e){return"[object String]"===function(e){return Object.prototype.toString.call(e)}(e)},t.has=i,t.unescapeMd=function(e){return e.indexOf("\\")<0?e:e.replace(s,"$1")},t.unescapeAll=function(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(u,(function(e,t,n){return t||function(e,t){var n=0;return i(l,t)?l[t]:35===t.charCodeAt(0)&&c.test(t)&&o(n="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10))?a(n):e}(e,n)}))},t.isValidEntityCode=o,t.fromCodePoint=a,t.escapeHtml=function(e){return p.test(e)?e.replace(f,h):e},t.arrayReplaceAt=function(e,t,n){return[].concat(e.slice(0,t),n,e.slice(t+1))},t.isSpace=function(e){switch(e){case 9:case 32:return!0}return!1},t.isWhiteSpace=function(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},t.isMdAsciiPunct=function(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}},t.isPunctChar=function(e){return g.test(e)},t.escapeRE=function(e){return e.replace(m,"\\$&")},t.normalizeReference=function(e){return e=e.trim().replace(/\s+/g," "),"Ṿ"==="ẞ".toLowerCase()&&(e=e.replace(/ẞ/g,"ß")),e.toLowerCase().toUpperCase()}},function(e,t,n){"use strict";n.d(t,"a",(function(){return i})),n.d(t,"b",(function(){return o})),n.d(t,"c",(function(){return a}));var r=n(47),i=function(){function e(e,t,n){this.start=e.start,this.end=t.end,this.startToken=e,this.endToken=t,this.source=n}return e.prototype.toJSON=function(){return{start:this.start,end:this.end}},e}();Object(r.a)(i);var o=function(){function e(e,t,n,r,i,o,a){this.kind=e,this.start=t,this.end=n,this.line=r,this.column=i,this.value=a,this.prev=o,this.next=null}return e.prototype.toJSON=function(){return{kind:this.kind,value:this.value,line:this.line,column:this.column}},e}();function a(e){return null!=e&&"string"==typeof e.kind}Object(r.a)(o)},function(e,t,n){"use strict";n.d(t,"b",(function(){return r})),n.d(t,"a",(function(){return i})),n.d(t,"c",(function(){return o}));var r="function"==typeof Symbol?Symbol.iterator:"@@iterator",i="function"==typeof Symbol?Symbol.asyncIterator:"@@asyncIterator",o="function"==typeof Symbol?Symbol.toStringTag:"@@toStringTag"},function(e,t,n){"use strict";n.d(t,"a",(function(){return a})),n.d(t,"c",(function(){return s})),n.d(t,"d",(function(){return u})),n.d(t,"b",(function(){return c}));var r=n(4),i=n(24),o={Name:[],Document:["definitions"],OperationDefinition:["name","variableDefinitions","directives","selectionSet"],VariableDefinition:["variable","type","defaultValue","directives"],Variable:["name"],SelectionSet:["selections"],Field:["alias","name","arguments","directives","selectionSet"],Argument:["name","value"],FragmentSpread:["name","directives"],InlineFragment:["typeCondition","directives","selectionSet"],FragmentDefinition:["name","variableDefinitions","typeCondition","directives","selectionSet"],IntValue:[],FloatValue:[],StringValue:[],BooleanValue:[],NullValue:[],EnumValue:[],ListValue:["values"],ObjectValue:["fields"],ObjectField:["name","value"],Directive:["name","arguments"],NamedType:["name"],ListType:["type"],NonNullType:["type"],SchemaDefinition:["description","directives","operationTypes"],OperationTypeDefinition:["type"],ScalarTypeDefinition:["description","name","directives"],ObjectTypeDefinition:["description","name","interfaces","directives","fields"],FieldDefinition:["description","name","arguments","type","directives"],InputValueDefinition:["description","name","type","defaultValue","directives"],InterfaceTypeDefinition:["description","name","interfaces","directives","fields"],UnionTypeDefinition:["description","name","directives","types"],EnumTypeDefinition:["description","name","directives","values"],EnumValueDefinition:["description","name","directives"],InputObjectTypeDefinition:["description","name","directives","fields"],DirectiveDefinition:["description","name","arguments","locations"],SchemaExtension:["directives","operationTypes"],ScalarTypeExtension:["name","directives"],ObjectTypeExtension:["name","interfaces","directives","fields"],InterfaceTypeExtension:["name","interfaces","directives","fields"],UnionTypeExtension:["name","directives","types"],EnumTypeExtension:["name","directives","values"],InputObjectTypeExtension:["name","directives","fields"]},a=Object.freeze({});function s(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:o,s=void 0,u=Array.isArray(e),l=[e],p=-1,f=[],d=void 0,h=void 0,m=void 0,g=[],y=[],v=e;do{var b=++p===l.length,E=b&&0!==f.length;if(b){if(h=0===y.length?void 0:g[g.length-1],d=m,m=y.pop(),E){if(u)d=d.slice();else{for(var x={},D=0,C=Object.keys(d);D1&&void 0!==arguments[1]?arguments[1]:r,n=null,o=null;return function(){return i(t,n,arguments)||(o=e.apply(null,arguments)),n=arguments,o}}function a(e){var t=Array.isArray(e[0])?e[0]:e;if(!t.every((function(e){return"function"==typeof e}))){var n=t.map((function(e){return typeof e})).join(", ");throw new Error("Selector creators expect all input-selectors to be functions, instead received the following types: ["+n+"]")}return t}function s(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r1&&void 0!==arguments[1]?arguments[1]:u;if("object"!=typeof e)throw new Error("createStructuredSelector expects first argument to be an object where each property is a selector, instead received a "+typeof e);var n=Object.keys(e);return t(n.map((function(t){return e[t]})),(function(){for(var e=arguments.length,t=Array(e),r=0;r=0;r--){var i=t[r](e);if(i)return i}return function(t,r){throw new Error("Invalid value of type "+typeof e+" for "+n+" argument when connecting component "+r.wrappedComponentName+".")}}function B(e,t){return e===t}function U(e){var t=void 0===e?{}:e,n=t.connectHOC,r=void 0===n?w:n,i=t.mapStateToPropsFactories,o=void 0===i?N:i,a=t.mapDispatchToPropsFactories,s=void 0===a?F:a,u=t.mergePropsFactories,c=void 0===u?M:u,l=t.selectorFactory,d=void 0===l?P:l;return function(e,t,n,i){void 0===i&&(i={});var a=i,u=a.pure,l=void 0===u||u,h=a.areStatesEqual,m=void 0===h?B:h,g=a.areOwnPropsEqual,y=void 0===g?k:g,v=a.areStatePropsEqual,b=void 0===v?k:v,E=a.areMergedPropsEqual,x=void 0===E?k:E,D=Object(f.a)(a,["pure","areStatesEqual","areOwnPropsEqual","areStatePropsEqual","areMergedPropsEqual"]),C=R(e,o,"mapStateToProps"),w=R(t,s,"mapDispatchToProps"),S=R(n,c,"mergeProps");return r(d,Object(p.a)({methodName:"connect",getDisplayName:function(e){return"Connect("+e+")"},shouldHandleStateChanges:Boolean(e),initMapStateToProps:C,initMapDispatchToProps:w,initMergeProps:S,pure:l,areStatesEqual:m,areOwnPropsEqual:y,areStatePropsEqual:b,areMergedPropsEqual:x},D))}}var z=U();function V(){return Object(r.useContext)(o)}function q(e){void 0===e&&(e=o);var t=e===o?V:function(){return Object(r.useContext)(e)};return function(){return t().store}}var H=q();function W(e){void 0===e&&(e=o);var t=e===o?H:q(e);return function(){return t().dispatch}}var G=W(),K=function(e,t){return e===t};function J(e){void 0===e&&(e=o);var t=e===o?V:function(){return Object(r.useContext)(e)};return function(e,n){void 0===n&&(n=K);var i=t();return function(e,t,n,i){var o,a=Object(r.useReducer)((function(e){return e+1}),0)[1],s=Object(r.useMemo)((function(){return new c(n,i)}),[n,i]),u=Object(r.useRef)(),l=Object(r.useRef)(),p=Object(r.useRef)();try{o=e!==l.current||u.current?e(n.getState()):p.current}catch(e){throw u.current&&(e.message+="\nThe error may be correlated with this previous error:\n"+u.current.stack+"\n\n"),e}return g((function(){l.current=e,p.current=o,u.current=void 0})),g((function(){function e(){try{var e=l.current(n.getState());if(t(e,p.current))return;p.current=e}catch(e){u.current=e}a({})}return s.onStateChange=e,s.trySubscribe(),e(),function(){return s.tryUnsubscribe()}}),[n,s]),o}(e,n,i.store,i.subscription)}}var Q,Y=J(),$=n(59);Q=$.unstable_batchedUpdates,a=Q},function(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})(e)}function i(e){return"object"==r(e)&&null!==e}n.d(t,"a",(function(){return i}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(28),i=n(42);function o(e){return e.get("selectedWorkspace")}t.getSessionsState=r.createSelector([function(e){return e.getIn(["workspaces",o(e)])||i.makeWorkspace("")}],(function(e){return e.get("sessions")})),t.getSelectedSession=r.createSelector([t.getSessionsState],(function(e){var n=t.getSelectedSessionId(e);return e.getIn(["sessions",n])})),t.getSelectedSessionId=function(e){return e.selectedSessionId&&""!==e.selectedSessionId?e.selectedSessionId:e.sessions.first().id},t.getSelectedSessionIdFromRoot=r.createSelector([t.getSelectedSession],(function(e){return e.get("id")}));var a=function(e){return r.createSelector([t.getSelectedSession],(function(t){return t.get(e)}))};function s(e){return e.getIn(["settingsString"])}function u(e){try{return JSON.parse(e)}catch(e){}return{}}function c(e){var t=e.variables;try{return JSON.parse(t)}catch(e){}return{}}t.getScrollTop=a("scrollTop"),t.getEndpoint=a("endpoint"),t.getQuery=a("query"),t.getFile=a("file"),t.getVariables=a("variables"),t.getResponses=a("responses"),t.getOperationName=a("operationName"),t.getQueryRunning=a("queryRunning"),t.getSubscriptionActive=a("subscriptionActive"),t.getOperations=a("operations"),t.getVariableToType=a("variableToType"),t.getQueryTypes=a("queryTypes"),t.getDate=a("date"),t.getHasMutation=a("hasMutation"),t.getHasSubscription=a("hasSubscription"),t.getHasQuery=a("hasQuery"),t.getIsFile=a("isFile"),t.getStarred=a("starred"),t.getName=a("name"),t.getFilePath=a("filePath"),t.getSelectedUserToken=a("selectedUserToken"),t.getHeaders=a("headers"),t.getHasChanged=a("hasChanged"),t.getAbsolutePath=a("absolutePath"),t.getIsSettingsTab=a("isSettingsTab"),t.getIsConfigTab=a("isConfigTab"),t.getCurrentQueryStartTime=a("currentQueryStartTime"),t.getCurrentQueryEndTime=a("currentQueryEndTime"),t.getIsReloadingSchema=a("isReloadingSchema"),t.getIsPollingSchema=r.createSelector([t.getEndpoint,s],(function(e,t){var n=JSON.parse(t);try{return n["schema.polling.enable"]&&e.match("/"+n["schema.polling.endpointFilter"])&&!0}catch(e){return!1}})),t.getResponseExtensions=a("responseExtensions"),t.getQueryVariablesActive=a("queryVariablesActive"),t.getEndpointUnreachable=a("endpointUnreachable"),t.getEditorFlex=a("editorFlex"),t.getVariableEditorOpen=a("variableEditorOpen"),t.getVariableEditorHeight=a("variableEditorHeight"),t.getResponseTracingOpen=a("responseTracingOpen"),t.getResponseTracingHeight=a("responseTracingHeight"),t.getDocExplorerWidth=a("docExplorerWidth"),t.getNextQueryStartTime=a("nextQueryStartTime"),t.getTracingSupported=a("tracingSupported"),t.getTabWidth=r.createSelector([s],(function(e){try{return JSON.parse(e)["prettier.tabWidth"]||2}catch(e){}return 2})),t.getUseTabs=r.createSelector([s],(function(e){try{return JSON.parse(e)["prettier.useTabs"]||!1}catch(e){}return!1})),t.getHeadersCount=r.createSelector([t.getHeaders],(function(e){try{var t=JSON.parse(e);return Object.keys(t).length}catch(e){}return 0})),t.getParsedHeaders=r.createSelector([t.getSelectedSession],u),t.getParsedHeadersFromSession=u,t.getParsedVariables=r.createSelector([t.getSelectedSession],c),t.getParsedVariablesFromSession=c,t.getTracing=r.createSelector([t.getResponseExtensions],(function(e){return e&&e.tracing})),t.getSessionsArray=r.createSelector([t.getSessionsState],(function(e){return e.get("sessions").toArray().map((function(e){return e[1]}))}))},function(e,t,n){"use strict";n.d(t,"a",(function(){return s}));var r=n(4),i=n(17),o=n(1),a=n(0);function s(e,t){var n;return t.kind===o.a.LIST_TYPE?(n=s(e,t.type))&&Object(a.d)(n):t.kind===o.a.NON_NULL_TYPE?(n=s(e,t.type))&&Object(a.e)(n):t.kind===o.a.NAMED_TYPE?e.getType(t.name.value):void Object(i.a)(0,"Unexpected type node: "+Object(r.a)(t))}},function(e,t,n){"use strict";n.r(t),n.d(t,"version",(function(){return rr})),n.d(t,"Collection",(function(){return v})),n.d(t,"Iterable",(function(){return or})),n.d(t,"Seq",(function(){return R})),n.d(t,"Map",(function(){return Et})),n.d(t,"OrderedMap",(function(){return rn})),n.d(t,"List",(function(){return qt})),n.d(t,"Stack",(function(){return cn})),n.d(t,"Set",(function(){return bn})),n.d(t,"OrderedSet",(function(){return Vn})),n.d(t,"Record",(function(){return Kn})),n.d(t,"Range",(function(){return kn})),n.d(t,"Repeat",(function(){return er})),n.d(t,"is",(function(){return Z})),n.d(t,"fromJS",(function(){return tr})),n.d(t,"hash",(function(){return re})),n.d(t,"isImmutable",(function(){return w})),n.d(t,"isCollection",(function(){return h})),n.d(t,"isKeyed",(function(){return m})),n.d(t,"isIndexed",(function(){return g})),n.d(t,"isAssociative",(function(){return y})),n.d(t,"isOrdered",(function(){return k})),n.d(t,"isValueObject",(function(){return X})),n.d(t,"get",(function(){return We})),n.d(t,"getIn",(function(){return An})),n.d(t,"has",(function(){return He})),n.d(t,"hasIn",(function(){return _n})),n.d(t,"merge",(function(){return at})),n.d(t,"mergeDeep",(function(){return ut})),n.d(t,"mergeWith",(function(){return st})),n.d(t,"mergeDeepWith",(function(){return ct})),n.d(t,"remove",(function(){return Ke})),n.d(t,"removeIn",(function(){return Xe})),n.d(t,"set",(function(){return Je})),n.d(t,"setIn",(function(){return Ye})),n.d(t,"update",(function(){return et})),n.d(t,"updateIn",(function(){return Qe}));var r={};function i(e){e&&(e.value=!0)}function o(){}function a(e){return void 0===e.size&&(e.size=e.__iterate(u)),e.size}function s(e,t){if("number"!=typeof t){var n=t>>>0;if(""+n!==t||4294967295===n)return NaN;t=n}return t<0?a(e)+t:t}function u(){return!0}function c(e,t,n){return(0===e&&!d(e)||void 0!==n&&e<=-n)&&(void 0===t||void 0!==n&&t>=n)}function l(e,t){return f(e,t,0)}function p(e,t){return f(e,t,t)}function f(e,t,n){return void 0===e?n:d(e)?t===1/0?t:0|Math.max(0,t+e):void 0===t||t===e?e:0|Math.min(t,e)}function d(e){return e<0||0===e&&1/e==-1/0}function h(e){return Boolean(e&&e["@@__IMMUTABLE_ITERABLE__@@"])}function m(e){return Boolean(e&&e["@@__IMMUTABLE_KEYED__@@"])}function g(e){return Boolean(e&&e["@@__IMMUTABLE_INDEXED__@@"])}function y(e){return m(e)||g(e)}var v=function(e){return h(e)?e:R(e)},b=function(e){function t(e){return m(e)?e:B(e)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t}(v),E=function(e){function t(e){return g(e)?e:U(e)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t}(v),x=function(e){function t(e){return h(e)&&!y(e)?e:z(e)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t}(v);v.Keyed=b,v.Indexed=E,v.Set=x;function D(e){return Boolean(e&&e["@@__IMMUTABLE_SEQ__@@"])}function C(e){return Boolean(e&&e["@@__IMMUTABLE_RECORD__@@"])}function w(e){return h(e)||C(e)}var S="@@__IMMUTABLE_ORDERED__@@";function k(e){return Boolean(e&&e[S])}var A="function"==typeof Symbol&&Symbol.iterator,T=A||"@@iterator",_=function(e){this.next=e};function O(e,t,n,r){var i=0===e?t:1===e?n:[t,n];return r?r.value=i:r={value:i,done:!1},r}function F(){return{value:void 0,done:!0}}function N(e){return!!j(e)}function I(e){return e&&"function"==typeof e.next}function M(e){var t=j(e);return t&&t.call(e)}function j(e){var t=e&&(A&&e[A]||e["@@iterator"]);if("function"==typeof t)return t}_.prototype.toString=function(){return"[Iterator]"},_.KEYS=0,_.VALUES=1,_.ENTRIES=2,_.prototype.inspect=_.prototype.toSource=function(){return this.toString()},_.prototype[T]=function(){return this};var L=Object.prototype.hasOwnProperty;function P(e){return!(!Array.isArray(e)&&"string"!=typeof e)||e&&"object"==typeof e&&Number.isInteger(e.length)&&e.length>=0&&(0===e.length?1===Object.keys(e).length:e.hasOwnProperty(e.length-1))}var R=function(e){function t(e){return null==e?G():w(e)?e.toSeq():function(e){var t=Q(e);if(t)return t;if("object"==typeof e)return new q(e);throw new TypeError("Expected Array or collection object of values, or keyed object: "+e)}(e)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.toSeq=function(){return this},t.prototype.toString=function(){return this.__toString("Seq {","}")},t.prototype.cacheResult=function(){return!this._cache&&this.__iterateUncached&&(this._cache=this.entrySeq().toArray(),this.size=this._cache.length),this},t.prototype.__iterate=function(e,t){var n=this._cache;if(n){for(var r=n.length,i=0;i!==r;){var o=n[t?r-++i:i++];if(!1===e(o[1],o[0],this))break}return i}return this.__iterateUncached(e,t)},t.prototype.__iterator=function(e,t){var n=this._cache;if(n){var r=n.length,i=0;return new _((function(){if(i===r)return{value:void 0,done:!0};var o=n[t?r-++i:i++];return O(e,o[0],o[1])}))}return this.__iteratorUncached(e,t)},t}(v),B=function(e){function t(e){return null==e?G().toKeyedSeq():h(e)?m(e)?e.toSeq():e.fromEntrySeq():C(e)?e.toSeq():K(e)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.toKeyedSeq=function(){return this},t}(R),U=function(e){function t(e){return null==e?G():h(e)?m(e)?e.entrySeq():e.toIndexedSeq():C(e)?e.toSeq().entrySeq():J(e)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.of=function(){return t(arguments)},t.prototype.toIndexedSeq=function(){return this},t.prototype.toString=function(){return this.__toString("Seq [","]")},t}(R),z=function(e){function t(e){return(h(e)&&!y(e)?e:U(e)).toSetSeq()}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.of=function(){return t(arguments)},t.prototype.toSetSeq=function(){return this},t}(R);R.isSeq=D,R.Keyed=B,R.Set=z,R.Indexed=U,R.prototype["@@__IMMUTABLE_SEQ__@@"]=!0;var V=function(e){function t(e){this._array=e,this.size=e.length}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.get=function(e,t){return this.has(e)?this._array[s(this,e)]:t},t.prototype.__iterate=function(e,t){for(var n=this._array,r=n.length,i=0;i!==r;){var o=t?r-++i:i++;if(!1===e(n[o],o,this))break}return i},t.prototype.__iterator=function(e,t){var n=this._array,r=n.length,i=0;return new _((function(){if(i===r)return{value:void 0,done:!0};var o=t?r-++i:i++;return O(e,o,n[o])}))},t}(U),q=function(e){function t(e){var t=Object.keys(e);this._object=e,this._keys=t,this.size=t.length}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.get=function(e,t){return void 0===t||this.has(e)?this._object[e]:t},t.prototype.has=function(e){return L.call(this._object,e)},t.prototype.__iterate=function(e,t){for(var n=this._object,r=this._keys,i=r.length,o=0;o!==i;){var a=r[t?i-++o:o++];if(!1===e(n[a],a,this))break}return o},t.prototype.__iterator=function(e,t){var n=this._object,r=this._keys,i=r.length,o=0;return new _((function(){if(o===i)return{value:void 0,done:!0};var a=r[t?i-++o:o++];return O(e,a,n[a])}))},t}(B);q.prototype[S]=!0;var H,W=function(e){function t(e){this._collection=e,this.size=e.length||e.size}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.prototype.__iterateUncached=function(e,t){if(t)return this.cacheResult().__iterate(e,t);var n=M(this._collection),r=0;if(I(n))for(var i;!(i=n.next()).done&&!1!==e(i.value,r++,this););return r},t.prototype.__iteratorUncached=function(e,t){if(t)return this.cacheResult().__iterator(e,t);var n=M(this._collection);if(!I(n))return new _(F);var r=0;return new _((function(){var t=n.next();return t.done?t:O(e,r++,t.value)}))},t}(U);function G(){return H||(H=new V([]))}function K(e){var t=Array.isArray(e)?new V(e):N(e)?new W(e):void 0;if(t)return t.fromEntrySeq();if("object"==typeof e)return new q(e);throw new TypeError("Expected Array or collection object of [k, v] entries, or keyed object: "+e)}function J(e){var t=Q(e);if(t)return t;throw new TypeError("Expected Array or collection object of values: "+e)}function Q(e){return P(e)?new V(e):N(e)?new W(e):void 0}function Y(e){return Boolean(e&&e["@@__IMMUTABLE_MAP__@@"])}function $(e){return Y(e)&&k(e)}function X(e){return Boolean(e&&"function"==typeof e.equals&&"function"==typeof e.hashCode)}function Z(e,t){if(e===t||e!=e&&t!=t)return!0;if(!e||!t)return!1;if("function"==typeof e.valueOf&&"function"==typeof t.valueOf){if((e=e.valueOf())===(t=t.valueOf())||e!=e&&t!=t)return!0;if(!e||!t)return!1}return!!(X(e)&&X(t)&&e.equals(t))}var ee="function"==typeof Math.imul&&-2===Math.imul(4294967295,2)?Math.imul:function(e,t){var n=65535&(e|=0),r=65535&(t|=0);return n*r+((e>>>16)*r+n*(t>>>16)<<16>>>0)|0};function te(e){return e>>>1&1073741824|3221225471&e}var ne=Object.prototype.valueOf;function re(e){switch(typeof e){case"boolean":return e?1108378657:1108378656;case"number":return function(e){if(e!=e||e===1/0)return 0;var t=0|e;t!==e&&(t^=4294967295*e);for(;e>4294967295;)t^=e/=4294967295;return te(t)}(e);case"string":return e.length>pe?function(e){var t=he[e];void 0===t&&(t=ie(e),de===fe&&(de=0,he={}),de++,he[e]=t);return t}(e):ie(e);case"object":case"function":return null===e?1108378658:"function"==typeof e.hashCode?te(e.hashCode(e)):(e.valueOf!==ne&&"function"==typeof e.valueOf&&(e=e.valueOf(e)),function(e){var t;if(ue&&void 0!==(t=se.get(e)))return t;if(void 0!==(t=e[le]))return t;if(!ae){if(void 0!==(t=e.propertyIsEnumerable&&e.propertyIsEnumerable[le]))return t;if(void 0!==(t=function(e){if(e&&e.nodeType>0)switch(e.nodeType){case 1:return e.uniqueID;case 9:return e.documentElement&&e.documentElement.uniqueID}}(e)))return t}t=++ce,1073741824&ce&&(ce=0);if(ue)se.set(e,t);else{if(void 0!==oe&&!1===oe(e))throw new Error("Non-extensible objects are not allowed as keys.");if(ae)Object.defineProperty(e,le,{enumerable:!1,configurable:!1,writable:!1,value:t});else if(void 0!==e.propertyIsEnumerable&&e.propertyIsEnumerable===e.constructor.prototype.propertyIsEnumerable)e.propertyIsEnumerable=function(){return this.constructor.prototype.propertyIsEnumerable.apply(this,arguments)},e.propertyIsEnumerable[le]=t;else{if(void 0===e.nodeType)throw new Error("Unable to set a non-enumerable property on object.");e[le]=t}}return t}(e));case"undefined":return 1108378659;default:if("function"==typeof e.toString)return ie(e.toString());throw new Error("Value type "+typeof e+" cannot be hashed.")}}function ie(e){for(var t=0,n=0;n=0&&(d.get=function(t,n){return(t=s(this,t))>=0&&tu)return{value:void 0,done:!0};var e=i.next();return r||1===t||e.done?e:O(t,s-1,0===t?void 0:e.value[1],e)}))},d}function we(e,t,n,r){var i=Me(e);return i.__iterateUncached=function(i,o){var a=this;if(o)return this.cacheResult().__iterate(i,o);var s=!0,u=0;return e.__iterate((function(e,o,c){if(!s||!(s=t.call(n,e,o,c)))return u++,i(e,r?o:u-1,a)})),u},i.__iteratorUncached=function(i,o){var a=this;if(o)return this.cacheResult().__iterator(i,o);var s=e.__iterator(2,o),u=!0,c=0;return new _((function(){var e,o,l;do{if((e=s.next()).done)return r||1===i?e:O(i,c++,0===i?void 0:e.value[1],e);var p=e.value;o=p[0],l=p[1],u&&(u=t.call(n,l,o,a))}while(u);return 2===i?e:O(i,o,l,e)}))},i}function Se(e,t){var n=m(e),r=[e].concat(t).map((function(e){return h(e)?n&&(e=b(e)):e=n?K(e):J(Array.isArray(e)?e:[e]),e})).filter((function(e){return 0!==e.size}));if(0===r.length)return e;if(1===r.length){var i=r[0];if(i===e||n&&m(i)||g(e)&&g(i))return i}var o=new V(r);return n?o=o.toKeyedSeq():g(e)||(o=o.toSetSeq()),(o=o.flatten(!0)).size=r.reduce((function(e,t){if(void 0!==e){var n=t.size;if(void 0!==n)return e+n}}),0),o}function ke(e,t,n){var r=Me(e);return r.__iterateUncached=function(i,o){if(o)return this.cacheResult().__iterate(i,o);var a=0,s=!1;return function e(u,c){u.__iterate((function(o,u){return(!t||c0}function Oe(e,t,n,r){var i=Me(e),o=new V(n).map((function(e){return e.size}));return i.size=r?o.max():o.min(),i.__iterate=function(e,t){for(var n,r=this.__iterator(1,t),i=0;!(n=r.next()).done&&!1!==e(n.value,i++,this););return i},i.__iteratorUncached=function(e,i){var o=n.map((function(e){return e=v(e),M(i?e.reverse():e)})),a=0,s=!1;return new _((function(){var n;return s||(n=o.map((function(e){return e.next()})),s=r?n.every((function(e){return e.done})):n.some((function(e){return e.done}))),s?{value:void 0,done:!0}:O(e,a++,t.apply(null,n.map((function(e){return e.value}))))}))},i}function Fe(e,t){return e===t?e:D(e)?t:e.constructor(t)}function Ne(e){if(e!==Object(e))throw new TypeError("Expected [K, V] tuple: "+e)}function Ie(e){return m(e)?b:g(e)?E:x}function Me(e){return Object.create((m(e)?B:g(e)?U:z).prototype)}function je(){return this._iter.cacheResult?(this._iter.cacheResult(),this.size=this._iter.size,this):R.prototype.cacheResult.call(this)}function Le(e,t){return void 0===e&&void 0===t?0:void 0===e?1:void 0===t?-1:e>t?1:e0;)t[n]=arguments[n+1];if("function"!=typeof e)throw new TypeError("Invalid merger function: "+e);return ot(this,t,e)}function ot(e,t,n){for(var i=[],o=0;o0;)t[n]=arguments[n+1];return pt(e,t)}function st(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return pt(t,n,e)}function ut(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return lt(e,t)}function ct(e,t){for(var n=[],r=arguments.length-2;r-- >0;)n[r]=arguments[r+2];return lt(t,n,e)}function lt(e,t,n){return pt(e,t,function(e){return function t(n,r,i){return Ve(n)&&Ve(r)?pt(n,[r],t):e?e(n,r,i):r}}(n))}function pt(e,t,n){if(!Ve(e))throw new TypeError("Cannot merge into non-data-structure value: "+e);if(w(e))return"function"==typeof n&&e.mergeWith?e.mergeWith.apply(e,[n].concat(t)):e.merge?e.merge.apply(e,t):e.concat.apply(e,t);for(var r=Array.isArray(e),i=e,o=r?E:b,a=r?function(t){i===e&&(i=Ge(i)),i.push(t)}:function(t,r){var o=L.call(i,r),a=o&&n?n(i[r],t,r):t;o&&a===i[r]||(i===e&&(i=Ge(i)),i[r]=a)},s=0;s0;)t[n]=arguments[n+1];return lt(this,t,e)}function ht(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return Qe(this,e,Nt(),(function(e){return pt(e,t)}))}function mt(e){for(var t=[],n=arguments.length-1;n-- >0;)t[n]=arguments[n+1];return Qe(this,e,Nt(),(function(e){return lt(e,t)}))}function gt(e){var t=this.asMutable();return e(t),t.wasAltered()?t.__ensureOwner(this.__ownerID):this}function yt(){return this.__ownerID?this:this.__ensureOwner(new o)}function vt(){return this.__ensureOwner()}function bt(){return this.__altered}ge.prototype.cacheResult=me.prototype.cacheResult=ye.prototype.cacheResult=ve.prototype.cacheResult=je;var Et=function(e){function t(t){return null==t?Nt():Y(t)&&!k(t)?t:Nt().withMutations((function(n){var r=e(t);Be(r.size),r.forEach((function(e,t){return n.set(t,e)}))}))}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.of=function(){for(var e=[],t=arguments.length;t--;)e[t]=arguments[t];return Nt().withMutations((function(t){for(var n=0;n=e.length)throw new Error("Missing value for key: "+e[n]);t.set(e[n],e[n+1])}}))},t.prototype.toString=function(){return this.__toString("Map {","}")},t.prototype.get=function(e,t){return this._root?this._root.get(0,void 0,e,t):t},t.prototype.set=function(e,t){return It(this,e,t)},t.prototype.remove=function(e){return It(this,e,r)},t.prototype.deleteAll=function(e){var t=v(e);return 0===t.size?this:this.withMutations((function(e){t.forEach((function(t){return e.remove(t)}))}))},t.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._root=null,this.__hash=void 0,this.__altered=!0,this):Nt()},t.prototype.sort=function(e){return rn(Ae(this,e))},t.prototype.sortBy=function(e,t){return rn(Ae(this,t,e))},t.prototype.map=function(e,t){return this.withMutations((function(n){n.forEach((function(r,i){n.set(i,e.call(t,r,i,n))}))}))},t.prototype.__iterator=function(e,t){return new Tt(this,e,t)},t.prototype.__iterate=function(e,t){var n=this,r=0;return this._root&&this._root.iterate((function(t){return r++,e(t[1],t[0],n)}),t),r},t.prototype.__ensureOwner=function(e){return e===this.__ownerID?this:e?Ft(this.size,this._root,e,this.__hash):0===this.size?Nt():(this.__ownerID=e,this.__altered=!1,this)},t}(b);Et.isMap=Y;var xt=Et.prototype;xt["@@__IMMUTABLE_MAP__@@"]=!0,xt.delete=xt.remove,xt.removeAll=xt.deleteAll,xt.setIn=$e,xt.removeIn=xt.deleteIn=Ze,xt.update=tt,xt.updateIn=nt,xt.merge=xt.concat=rt,xt.mergeWith=it,xt.mergeDeep=ft,xt.mergeDeepWith=dt,xt.mergeIn=ht,xt.mergeDeepIn=mt,xt.withMutations=gt,xt.wasAltered=bt,xt.asImmutable=vt,xt["@@transducer/init"]=xt.asMutable=yt,xt["@@transducer/step"]=function(e,t){return e.set(t[0],t[1])},xt["@@transducer/result"]=function(e){return e.asImmutable()};var Dt=function(e,t){this.ownerID=e,this.entries=t};Dt.prototype.get=function(e,t,n,r){for(var i=this.entries,o=0,a=i.length;o=Bt)return function(e,t,n,r){e||(e=new o);for(var i=new kt(e,re(n),[n,r]),a=0;a>>e)),o=this.bitmap;return 0==(o&i)?r:this.nodes[Pt(o&i-1)].get(e+5,t,n,r)},Ct.prototype.update=function(e,t,n,i,o,a,s){void 0===n&&(n=re(i));var u=31&(0===t?n:n>>>t),c=1<=Ut)return function(e,t,n,r,i){for(var o=0,a=new Array(32),s=0;0!==n;s++,n>>>=1)a[s]=1&n?t[o++]:void 0;return a[r]=i,new wt(e,o+1,a)}(e,d,l,u,m);if(p&&!m&&2===d.length&&jt(d[1^f]))return d[1^f];if(p&&m&&1===d.length&&jt(m))return m;var g=e&&e===this.ownerID,y=p?m?l:l^c:l|c,v=p?m?Rt(d,f,m,g):function(e,t,n){var r=e.length-1;if(n&&t===r)return e.pop(),e;for(var i=new Array(r),o=0,a=0;a>>e),o=this.nodes[i];return o?o.get(e+5,t,n,r):r},wt.prototype.update=function(e,t,n,i,o,a,s){void 0===n&&(n=re(i));var u=31&(0===t?n:n>>>t),c=o===r,l=this.nodes,p=l[u];if(c&&!p)return this;var f=Mt(p,e,t+5,n,i,o,a,s);if(f===p)return this;var d=this.count;if(p){if(!f&&--d>>n),s=31&(0===n?r:r>>>n),u=a===s?[Lt(e,t,n+5,r,i)]:(o=new kt(t,r,i),a>1&1431655765))+(e>>2&858993459))+(e>>4)&252645135,e+=e>>8,127&(e+=e>>16)}function Rt(e,t,n,r){var i=r?e:Pe(e);return i[t]=n,i}var Bt=8,Ut=16,zt=8;function Vt(e){return Boolean(e&&e["@@__IMMUTABLE_LIST__@@"])}var qt=function(e){function t(t){var n=Yt();if(null==t)return n;if(Vt(t))return t;var r=e(t),i=r.size;return 0===i?n:(Be(i),i>0&&i<32?Qt(0,i,5,null,new Wt(r.toArray())):n.withMutations((function(e){e.setSize(i),r.forEach((function(t,n){return e.set(n,t)}))})))}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.of=function(){return this(arguments)},t.prototype.toString=function(){return this.__toString("List [","]")},t.prototype.get=function(e,t){if((e=s(this,e))>=0&&e=e.size||t<0)return e.withMutations((function(e){t<0?en(e,t).set(0,n):en(e,0,t+1).set(t,n)}));t+=e._origin;var r=e._tail,i=e._root,o={value:!1};t>=tn(e._capacity)?r=$t(r,e.__ownerID,0,t,n,o):i=$t(i,e.__ownerID,e._level,t,n,o);if(!o.value)return e;if(e.__ownerID)return e._root=i,e._tail=r,e.__hash=void 0,e.__altered=!0,e;return Qt(e._origin,e._capacity,e._level,i,r)}(this,e,t)},t.prototype.remove=function(e){return this.has(e)?0===e?this.shift():e===this.size-1?this.pop():this.splice(e,1):this},t.prototype.insert=function(e,t){return this.splice(e,0,t)},t.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=this._origin=this._capacity=0,this._level=5,this._root=this._tail=null,this.__hash=void 0,this.__altered=!0,this):Yt()},t.prototype.push=function(){var e=arguments,t=this.size;return this.withMutations((function(n){en(n,0,t+e.length);for(var r=0;r>>t&31;if(r>=this.array.length)return new Wt([],e);var i,o=0===r;if(t>0){var a=this.array[r];if((i=a&&a.removeBefore(e,t-5,n))===a&&o)return this}if(o&&!i)return this;var s=Xt(this,e);if(!o)for(var u=0;u>>t&31;if(i>=this.array.length)return this;if(t>0){var o=this.array[i];if((r=o&&o.removeAfter(e,t-5,n))===o&&i===this.array.length-1)return this}var a=Xt(this,e);return a.array.splice(i+1),r&&(a.array[i]=r),a};var Gt,Kt={};function Jt(e,t){var n=e._origin,r=e._capacity,i=tn(r),o=e._tail;return a(e._root,e._level,0);function a(e,s,u){return 0===s?function(e,a){var s=a===i?o&&o.array:e&&e.array,u=a>n?0:n-a,c=r-a;c>32&&(c=32);return function(){if(u===c)return Kt;var e=t?--c:u++;return s&&s[e]}}(e,u):function(e,i,o){var s,u=e&&e.array,c=o>n?0:n-o>>i,l=1+(r-o>>i);l>32&&(l=32);return function(){for(;;){if(s){var e=s();if(e!==Kt)return e;s=null}if(c===l)return Kt;var n=t?--l:c++;s=a(u&&u[n],i-5,o+(n<>>n&31,c=e&&u0){var l=e&&e.array[u],p=$t(l,t,n-5,r,o,a);return p===l?e:((s=Xt(e,t)).array[u]=p,s)}return c&&e.array[u]===o?e:(a&&i(a),s=Xt(e,t),void 0===o&&u===s.array.length-1?s.array.pop():s.array[u]=o,s)}function Xt(e,t){return t&&e&&t===e.ownerID?e:new Wt(e?e.array.slice():[],t)}function Zt(e,t){if(t>=tn(e._capacity))return e._tail;if(t<1<0;)n=n.array[t>>>r&31],r-=5;return n}}function en(e,t,n){void 0!==t&&(t|=0),void 0!==n&&(n|=0);var r=e.__ownerID||new o,i=e._origin,a=e._capacity,s=i+t,u=void 0===n?a:n<0?a+n:i+n;if(s===i&&u===a)return e;if(s>=u)return e.clear();for(var c=e._level,l=e._root,p=0;s+p<0;)l=new Wt(l&&l.array.length?[void 0,l]:[],r),p+=1<<(c+=5);p&&(s+=p,i+=p,u+=p,a+=p);for(var f=tn(a),d=tn(u);d>=1<f?new Wt([],r):h;if(h&&d>f&&s5;y-=5){var v=f>>>y&31;g=g.array[v]=Xt(g.array[v],r)}g.array[f>>>5&31]=h}if(u=d)s-=d,u-=d,c=5,l=null,m=m&&m.removeBefore(r,0,s);else if(s>i||d>>c&31;if(b!==d>>>c&31)break;b&&(p+=(1<i&&(l=l.removeBefore(r,c,s-p)),l&&d>>5<<5}var nn,rn=function(e){function t(e){return null==e?an():$(e)?e:an().withMutations((function(t){var n=b(e);Be(n.size),n.forEach((function(e,n){return t.set(n,e)}))}))}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.of=function(){return this(arguments)},t.prototype.toString=function(){return this.__toString("OrderedMap {","}")},t.prototype.get=function(e,t){var n=this._map.get(e);return void 0!==n?this._list.get(n)[1]:t},t.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._map.clear(),this._list.clear(),this):an()},t.prototype.set=function(e,t){return sn(this,e,t)},t.prototype.remove=function(e){return sn(this,e,r)},t.prototype.wasAltered=function(){return this._map.wasAltered()||this._list.wasAltered()},t.prototype.__iterate=function(e,t){var n=this;return this._list.__iterate((function(t){return t&&e(t[1],t[0],n)}),t)},t.prototype.__iterator=function(e,t){return this._list.fromEntrySeq().__iterator(e,t)},t.prototype.__ensureOwner=function(e){if(e===this.__ownerID)return this;var t=this._map.__ensureOwner(e),n=this._list.__ensureOwner(e);return e?on(t,n,e,this.__hash):0===this.size?an():(this.__ownerID=e,this._map=t,this._list=n,this)},t}(Et);function on(e,t,n,r){var i=Object.create(rn.prototype);return i.size=e?e.size:0,i._map=e,i._list=t,i.__ownerID=n,i.__hash=r,i}function an(){return nn||(nn=on(Nt(),Yt()))}function sn(e,t,n){var i,o,a=e._map,s=e._list,u=a.get(t),c=void 0!==u;if(n===r){if(!c)return e;s.size>=32&&s.size>=2*a.size?(i=(o=s.filter((function(e,t){return void 0!==e&&u!==t}))).toKeyedSeq().map((function(e){return e[0]})).flip().toMap(),e.__ownerID&&(i.__ownerID=o.__ownerID=e.__ownerID)):(i=a.remove(t),o=u===s.size-1?s.pop():s.set(u,void 0))}else if(c){if(n===s.get(u)[1])return e;i=a,o=s.set(u,[t,n])}else i=a.set(t,s.size),o=s.set(s.size,[t,n]);return e.__ownerID?(e.size=i.size,e._map=i,e._list=o,e.__hash=void 0,e):on(i,o)}rn.isOrderedMap=$,rn.prototype[S]=!0,rn.prototype.delete=rn.prototype.remove;function un(e){return Boolean(e&&e["@@__IMMUTABLE_STACK__@@"])}var cn=function(e){function t(e){return null==e?dn():un(e)?e:dn().pushAll(e)}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.of=function(){return this(arguments)},t.prototype.toString=function(){return this.__toString("Stack [","]")},t.prototype.get=function(e,t){var n=this._head;for(e=s(this,e);n&&e--;)n=n.next;return n?n.value:t},t.prototype.peek=function(){return this._head&&this._head.value},t.prototype.push=function(){var e=arguments;if(0===arguments.length)return this;for(var t=this.size+arguments.length,n=this._head,r=arguments.length-1;r>=0;r--)n={value:e[r],next:n};return this.__ownerID?(this.size=t,this._head=n,this.__hash=void 0,this.__altered=!0,this):fn(t,n)},t.prototype.pushAll=function(t){if(0===(t=e(t)).size)return this;if(0===this.size&&un(t))return t;Be(t.size);var n=this.size,r=this._head;return t.__iterate((function(e){n++,r={value:e,next:r}}),!0),this.__ownerID?(this.size=n,this._head=r,this.__hash=void 0,this.__altered=!0,this):fn(n,r)},t.prototype.pop=function(){return this.slice(1)},t.prototype.clear=function(){return 0===this.size?this:this.__ownerID?(this.size=0,this._head=void 0,this.__hash=void 0,this.__altered=!0,this):dn()},t.prototype.slice=function(t,n){if(c(t,n,this.size))return this;var r=l(t,this.size);if(p(n,this.size)!==this.size)return e.prototype.slice.call(this,t,n);for(var i=this.size-r,o=this._head;r--;)o=o.next;return this.__ownerID?(this.size=i,this._head=o,this.__hash=void 0,this.__altered=!0,this):fn(i,o)},t.prototype.__ensureOwner=function(e){return e===this.__ownerID?this:e?fn(this.size,this._head,e,this.__hash):0===this.size?dn():(this.__ownerID=e,this.__altered=!1,this)},t.prototype.__iterate=function(e,t){var n=this;if(t)return new V(this.toArray()).__iterate((function(t,r){return e(t,r,n)}),t);for(var r=0,i=this._head;i&&!1!==e(i.value,r++,this);)i=i.next;return r},t.prototype.__iterator=function(e,t){if(t)return new V(this.toArray()).__iterator(e,t);var n=0,r=this._head;return new _((function(){if(r){var t=r.value;return r=r.next,O(e,n++,t)}return{value:void 0,done:!0}}))},t}(E);cn.isStack=un;var ln,pn=cn.prototype;function fn(e,t,n,r){var i=Object.create(pn);return i.size=e,i._head=t,i.__ownerID=n,i.__hash=r,i.__altered=!1,i}function dn(){return ln||(ln=fn(0))}pn["@@__IMMUTABLE_STACK__@@"]=!0,pn.shift=pn.pop,pn.unshift=pn.push,pn.unshiftAll=pn.pushAll,pn.withMutations=gt,pn.wasAltered=bt,pn.asImmutable=vt,pn["@@transducer/init"]=pn.asMutable=yt,pn["@@transducer/step"]=function(e,t){return e.unshift(t)},pn["@@transducer/result"]=function(e){return e.asImmutable()};function hn(e){return Boolean(e&&e["@@__IMMUTABLE_SET__@@"])}function mn(e){return hn(e)&&k(e)}function gn(e,t){if(e===t)return!0;if(!h(t)||void 0!==e.size&&void 0!==t.size&&e.size!==t.size||void 0!==e.__hash&&void 0!==t.__hash&&e.__hash!==t.__hash||m(e)!==m(t)||g(e)!==g(t)||k(e)!==k(t))return!1;if(0===e.size&&0===t.size)return!0;var n=!y(e);if(k(e)){var i=e.entries();return t.every((function(e,t){var r=i.next().value;return r&&Z(r[1],e)&&(n||Z(r[0],t))}))&&i.next().done}var o=!1;if(void 0===e.size)if(void 0===t.size)"function"==typeof e.cacheResult&&e.cacheResult();else{o=!0;var a=e;e=t,t=a}var s=!0,u=t.__iterate((function(t,i){if(n?!e.has(t):o?!Z(t,e.get(i,r)):!Z(e.get(i,r),t))return s=!1,!1}));return s&&e.size===u}function yn(e,t){var n=function(n){e.prototype[n]=t[n]};return Object.keys(t).forEach(n),Object.getOwnPropertySymbols&&Object.getOwnPropertySymbols(t).forEach(n),e}function vn(e){if(!e||"object"!=typeof e)return e;if(!h(e)){if(!Ve(e))return e;e=R(e)}if(m(e)){var t={};return e.__iterate((function(e,n){t[n]=vn(e)})),t}var n=[];return e.__iterate((function(e){n.push(vn(e))})),n}var bn=function(e){function t(t){return null==t?wn():hn(t)&&!k(t)?t:wn().withMutations((function(n){var r=e(t);Be(r.size),r.forEach((function(e){return n.add(e)}))}))}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.of=function(){return this(arguments)},t.fromKeys=function(e){return this(b(e).keySeq())},t.intersect=function(e){return(e=v(e).toArray()).length?xn.intersect.apply(t(e.pop()),e):wn()},t.union=function(e){return(e=v(e).toArray()).length?xn.union.apply(t(e.pop()),e):wn()},t.prototype.toString=function(){return this.__toString("Set {","}")},t.prototype.has=function(e){return this._map.has(e)},t.prototype.add=function(e){return Dn(this,this._map.set(e,e))},t.prototype.remove=function(e){return Dn(this,this._map.remove(e))},t.prototype.clear=function(){return Dn(this,this._map.clear())},t.prototype.map=function(e,t){var n=this,r=[],i=[];return this.forEach((function(o){var a=e.call(t,o,o,n);a!==o&&(r.push(o),i.push(a))})),this.withMutations((function(e){r.forEach((function(t){return e.remove(t)})),i.forEach((function(t){return e.add(t)}))}))},t.prototype.union=function(){for(var t=[],n=arguments.length;n--;)t[n]=arguments[n];return 0===(t=t.filter((function(e){return 0!==e.size}))).length?this:0!==this.size||this.__ownerID||1!==t.length?this.withMutations((function(n){for(var r=0;r=0&&t=0&&n>>-15,461845907),t=ee(t<<13|t>>>-13,5),t=ee((t=(t+3864292196|0)^e)^t>>>16,2246822507),t=te((t=ee(t^t>>>13,3266489909))^t>>>16)}(e.__iterate(n?t?function(e,t){r=31*r+zn(re(e),re(t))|0}:function(e,t){r=r+zn(re(e),re(t))|0}:t?function(e){r=31*r+re(e)|0}:function(e){r=r+re(e)|0}),r)}(this))}});var Fn=v.prototype;Fn["@@__IMMUTABLE_ITERABLE__@@"]=!0,Fn[T]=Fn.values,Fn.toJSON=Fn.toArray,Fn.__toStringMapper=qe,Fn.inspect=Fn.toSource=function(){return this.toString()},Fn.chain=Fn.flatMap,Fn.contains=Fn.includes,yn(b,{flip:function(){return Fe(this,be(this))},mapEntries:function(e,t){var n=this,r=0;return Fe(this,this.toSeq().map((function(i,o){return e.call(t,[o,i],r++,n)})).fromEntrySeq())},mapKeys:function(e,t){var n=this;return Fe(this,this.toSeq().flip().map((function(r,i){return e.call(t,r,i,n)})).flip())}});var Nn=b.prototype;Nn["@@__IMMUTABLE_KEYED__@@"]=!0,Nn[T]=Fn.entries,Nn.toJSON=On,Nn.__toStringMapper=function(e,t){return qe(t)+": "+qe(e)},yn(E,{toKeyedSeq:function(){return new me(this,!1)},filter:function(e,t){return Fe(this,De(this,e,t,!1))},findIndex:function(e,t){var n=this.findEntry(e,t);return n?n[0]:-1},indexOf:function(e){var t=this.keyOf(e);return void 0===t?-1:t},lastIndexOf:function(e){var t=this.lastKeyOf(e);return void 0===t?-1:t},reverse:function(){return Fe(this,xe(this,!1))},slice:function(e,t){return Fe(this,Ce(this,e,t,!1))},splice:function(e,t){var n=arguments.length;if(t=Math.max(t||0,0),0===n||2===n&&!t)return this;e=l(e,e<0?this.count():this.size);var r=this.slice(0,e);return Fe(this,1===n?r:r.concat(Pe(arguments,2),this.slice(e+t)))},findLastIndex:function(e,t){var n=this.findLastEntry(e,t);return n?n[0]:-1},first:function(e){return this.get(0,e)},flatten:function(e){return Fe(this,ke(this,e,!1))},get:function(e,t){return(e=s(this,e))<0||this.size===1/0||void 0!==this.size&&e>this.size?t:this.find((function(t,n){return n===e}),void 0,t)},has:function(e){return(e=s(this,e))>=0&&(void 0!==this.size?this.size===1/0||et?-1:0}function zn(e,t){return e^t+2654435769+(e<<6)+(e>>2)|0}In["@@__IMMUTABLE_INDEXED__@@"]=!0,In[S]=!0,yn(x,{get:function(e,t){return this.has(e)?e:t},includes:function(e){return this.has(e)},keySeq:function(){return this.valueSeq()}}),x.prototype.has=Fn.includes,x.prototype.contains=x.prototype.includes,yn(B,b.prototype),yn(U,E.prototype),yn(z,x.prototype);var Vn=function(e){function t(e){return null==e?Gn():mn(e)?e:Gn().withMutations((function(t){var n=x(e);Be(n.size),n.forEach((function(e){return t.add(e)}))}))}return e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t,t.of=function(){return this(arguments)},t.fromKeys=function(e){return this(b(e).keySeq())},t.prototype.toString=function(){return this.__toString("OrderedSet {","}")},t}(bn);Vn.isOrderedSet=mn;var qn,Hn=Vn.prototype;function Wn(e,t){var n=Object.create(Hn);return n.size=e?e.size:0,n._map=e,n.__ownerID=t,n}function Gn(){return qn||(qn=Wn(an()))}Hn[S]=!0,Hn.zip=In.zip,Hn.zipWith=In.zipWith,Hn.__empty=Gn,Hn.__make=Wn;var Kn=function(e,t){var n,r=function(o){var a=this;if(o instanceof r)return o;if(!(this instanceof r))return new r(o);if(!n){n=!0;var s=Object.keys(e),u=i._indices={};i._name=t,i._keys=s,i._defaultValues=e;for(var c=0;c2?[]:void 0,{"":e})}function nr(e,t){return m(t)?t.toMap():t.toList()}var rr="4.0.0-rc.11",ir={version:rr,Collection:v,Iterable:v,Seq:R,Map:Et,OrderedMap:rn,List:qt,Stack:cn,Set:bn,OrderedSet:Vn,Record:Kn,Range:kn,Repeat:er,is:Z,fromJS:tr,hash:re,isImmutable:w,isCollection:h,isKeyed:m,isIndexed:g,isAssociative:y,isOrdered:k,isValueObject:X,isSeq:D,isList:Vt,isMap:Y,isOrderedMap:$,isStack:un,isSet:hn,isOrderedSet:mn,isRecord:C,get:We,getIn:An,has:He,hasIn:_n,merge:at,mergeDeep:ut,mergeWith:st,mergeDeepWith:ct,remove:Ke,removeIn:Xe,set:Je,setIn:Ye,update:et,updateIn:Qe},or=v;t.default=ir},function(e,t,n){"use strict";var r=n(93),i=["kind","resolve","construct","instanceOf","predicate","represent","defaultStyle","styleAliases"],o=["scalar","sequence","mapping"];e.exports=function(e,t){var n,a;if(t=t||{},Object.keys(t).forEach((function(t){if(-1===i.indexOf(t))throw new r('Unknown option "'+t+'" is met in definition of "'+e+'" YAML type.')})),this.tag=e,this.kind=t.kind||null,this.resolve=t.resolve||function(){return!0},this.construct=t.construct||function(e){return e},this.instanceOf=t.instanceOf||null,this.predicate=t.predicate||null,this.represent=t.represent||null,this.defaultStyle=t.defaultStyle||null,this.styleAliases=(n=t.styleAliases||null,a={},null!==n&&Object.keys(n).forEach((function(e){n[e].forEach((function(t){a[String(t)]=e}))})),a),-1===o.indexOf(this.kind))throw new r('Unknown kind "'+this.kind+'" is specified for "'+e+'" YAML type.')}},function(e,t,n){"use strict";function r(e,t){return e.reduce((function(e,n){return e[t(n)]=n,e}),Object.create(null))}n.d(t,"a",(function(){return r}))},function(e,t,n){"use strict";function r(){return(r=Object.assign||function(e){for(var t=1;tt)){for(var c=this._rows,l=0;l<=u;l++)c[0][l]=l;for(var p=1;p<=s;p++){for(var f=c[(p-1)%3],d=c[p%3],h=d[0]=p,m=1;m<=u;m++){var g=r[p-1]===i[m-1]?0:1,y=Math.min(f[m]+1,d[m-1]+1,f[m-1]+g);if(p>1&&m>1&&r[p-1]===i[m-2]&&r[p-2]===i[m-1]){var v=c[(p-2)%3][m-2];y=Math.min(y,v+1)}yt)return}var b=c[s%3][u];return b<=t?b:void 0}},e}();function o(e){for(var t=e.length,n=new Array(t),r=0;r1?n-1:0),i=1;i1?t-1:0),r=1;r2?n-2:0),a=2;a0&&a(t[0]);)t.shift();for(;t.length>0&&a(t[t.length-1]);)t.pop();return t.join("\n")}function i(e){for(var t=null,n=1;n1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=-1===e.indexOf("\n"),i=" "===e[0]||"\t"===e[0],o='"'===e[e.length-1],a="\\"===e[e.length-1],s=!r||o||a||n,u="";return!s||r&&i||(u+="\n"+t),u+=t?e.replace(/\n/g,"\n"+t):e,s&&(u+="\n"),'"""'+u.replace(/"""/g,'\\"""')+'"""'}n.d(t,"a",(function(){return r})),n.d(t,"b",(function(){return i})),n.d(t,"c",(function(){return s}))},function(e,t,n){"use strict";n.d(t,"c",(function(){return g})),n.d(t,"b",(function(){return y})),n.d(t,"a",(function(){return v}));var r=n(56),i=n(58),o=n(14),a=n(25),s=n(4),u=n(41),c=n(8),l=n(48),p=n(31),f=n(12),d=n(21),h=n(0);function m(e,t){for(var n=0;n9999999)throw new TypeError("Near-infinite iteration.");return s}var c=e.length;if("number"==typeof c&&c>=0&&c%1==0){for(var l=[],p=0;p=0||(i[n]=e[n]);return i}n.d(t,"a",(function(){return r}))},function(e,t,n){"use strict";n.r(t),n.d(t,"ApolloLink",(function(){return b})),n.d(t,"concat",(function(){return v})),n.d(t,"createOperation",(function(){return f})),n.d(t,"empty",(function(){return m})),n.d(t,"execute",(function(){return E})),n.d(t,"from",(function(){return g})),n.d(t,"fromError",(function(){return p})),n.d(t,"fromPromise",(function(){return l})),n.d(t,"makePromise",(function(){return c})),n.d(t,"split",(function(){return y})),n.d(t,"toPromise",(function(){return u}));var r=n(40);n.d(t,"Observable",(function(){return r.a}));var i=n(27),o=n(19),a=n(113);n.d(t,"getOperationName",(function(){return a.a}));!function(e){function t(t,n){var r=e.call(this,t)||this;return r.link=n,r}Object(o.b)(t,e)}(Error);function s(e){return e.request.length<=1}function u(e){var t=!1;return new Promise((function(n,r){e.subscribe({next:function(e){t||(t=!0,n(e))},error:r})}))}var c=u;function l(e){return new r.a((function(t){e.then((function(e){t.next(e),t.complete()})).catch(t.error.bind(t))}))}function p(e){return new r.a((function(t){t.error(e)}))}function f(e,t){var n=Object(o.a)({},e);return Object.defineProperty(t,"setContext",{enumerable:!1,value:function(e){n="function"==typeof e?Object(o.a)({},n,e(n)):Object(o.a)({},n,e)}}),Object.defineProperty(t,"getContext",{enumerable:!1,value:function(){return Object(o.a)({},n)}}),Object.defineProperty(t,"toKey",{enumerable:!1,value:function(){return function(e){var t=e.query,n=e.variables,r=e.operationName;return JSON.stringify([r,t,n])}(t)}}),t}function d(e,t){return t?t(e):r.a.of()}function h(e){return"function"==typeof e?new b(e):e}function m(){return new b((function(){return r.a.of()}))}function g(e){return 0===e.length?m():e.map(h).reduce((function(e,t){return e.concat(t)}))}function y(e,t,n){var i=h(t),o=h(n||new b(d));return s(i)&&s(o)?new b((function(t){return e(t)?i.request(t)||r.a.of():o.request(t)||r.a.of()})):new b((function(t,n){return e(t)?i.request(t,n)||r.a.of():o.request(t,n)||r.a.of()}))}var v=function(e,t){var n=h(e);if(s(n))return n;var i=h(t);return s(i)?new b((function(e){return n.request(e,(function(e){return i.request(e)||r.a.of()}))||r.a.of()})):new b((function(e,t){return n.request(e,(function(e){return i.request(e,t)||r.a.of()}))||r.a.of()}))},b=function(){function e(e){e&&(this.request=e)}return e.prototype.split=function(t,n,r){return this.concat(y(t,n,r||new e(d)))},e.prototype.concat=function(e){return v(this,e)},e.prototype.request=function(e,t){throw new i.a(1)},e.empty=m,e.from=g,e.split=y,e.execute=E,e}();function E(e,t){return e.request(f(t.context,function(e){var t={variables:e.variables||{},extensions:e.extensions||{},operationName:e.operationName,query:e.query};return t.operationName||(t.operationName="string"!=typeof t.query?Object(a.a)(t.query):""),t}(function(e){for(var t=["query","operationName","variables","extensions","context"],n=0,r=Object.keys(e);n + * @license MIT + */function i(e,t){if(e===t)return 0;for(var n=e.length,r=t.length,i=0,o=Math.min(n,r);i=0;c--)if(l[c]!==p[c])return!1;for(c=l.length-1;c>=0;c--)if(s=l[c],!b(e[s],t[s],n,r))return!1;return!0}(e,t,n,r))}return n?e===t:e==t}function E(e){return"[object Arguments]"==Object.prototype.toString.call(e)}function x(e,t){if(!e||!t)return!1;if("[object RegExp]"==Object.prototype.toString.call(t))return t.test(e);try{if(e instanceof t)return!0}catch(e){}return!Error.isPrototypeOf(t)&&!0===t.call({},e)}function D(e,t,n,r){var i;if("function"!=typeof t)throw new TypeError('"block" argument must be a function');"string"==typeof n&&(r=n,n=null),i=function(e){var t;try{e()}catch(e){t=e}return t}(t),r=(n&&n.name?" ("+n.name+").":".")+(r?" "+r:"."),e&&!i&&y(i,n,"Missing expected exception"+r);var o="string"==typeof r,s=!e&&i&&!n;if((!e&&a.isError(i)&&o&&x(i,n)||s)&&y(i,n,"Got unwanted exception"+r),e&&i&&n&&!x(i,n)||!e&&i)throw i}f.AssertionError=function(e){this.name="AssertionError",this.actual=e.actual,this.expected=e.expected,this.operator=e.operator,e.message?(this.message=e.message,this.generatedMessage=!1):(this.message=function(e){return m(g(e.actual),128)+" "+e.operator+" "+m(g(e.expected),128)}(this),this.generatedMessage=!0);var t=e.stackStartFunction||y;if(Error.captureStackTrace)Error.captureStackTrace(this,t);else{var n=new Error;if(n.stack){var r=n.stack,i=h(t),o=r.indexOf("\n"+i);if(o>=0){var a=r.indexOf("\n",o+1);r=r.substring(a+1)}this.stack=r}}},a.inherits(f.AssertionError,Error),f.fail=y,f.ok=v,f.equal=function(e,t,n){e!=t&&y(e,t,n,"==",f.equal)},f.notEqual=function(e,t,n){e==t&&y(e,t,n,"!=",f.notEqual)},f.deepEqual=function(e,t,n){b(e,t,!1)||y(e,t,n,"deepEqual",f.deepEqual)},f.deepStrictEqual=function(e,t,n){b(e,t,!0)||y(e,t,n,"deepStrictEqual",f.deepStrictEqual)},f.notDeepEqual=function(e,t,n){b(e,t,!1)&&y(e,t,n,"notDeepEqual",f.notDeepEqual)},f.notDeepStrictEqual=function e(t,n,r){b(t,n,!0)&&y(t,n,r,"notDeepStrictEqual",e)},f.strictEqual=function(e,t,n){e!==t&&y(e,t,n,"===",f.strictEqual)},f.notStrictEqual=function(e,t,n){e===t&&y(e,t,n,"!==",f.notStrictEqual)},f.throws=function(e,t,n){D(!0,e,t,n)},f.doesNotThrow=function(e,t,n){D(!1,e,t,n)},f.ifError=function(e){if(e)throw e},f.strict=r((function e(t,n){t||y(t,!0,n,"==",e)}),f,{equal:f.strictEqual,deepEqual:f.deepStrictEqual,notEqual:f.notStrictEqual,notDeepEqual:f.notDeepStrictEqual}),f.strict.strict=f.strict;var C=Object.keys||function(e){var t=[];for(var n in e)s.call(e,n)&&t.push(n);return t}}).call(this,n(43))},function(e,t,n){"use strict";n.d(t,"a",(function(){return f})),n.d(t,"c",(function(){return d})),n.d(t,"b",(function(){return h}));var r=n(4),i=n(8),o=n(45),a=n(1),s=n(24),u=n(84),c=n(5),l=n(9),p=n(85);function f(e,t){return new m(e,t).parseDocument()}function d(e,t){var n=new m(e,t);n.expectToken(c.a.SOF);var r=n.parseValueLiteral(!1);return n.expectToken(c.a.EOF),r}function h(e,t){var n=new m(e,t);n.expectToken(c.a.SOF);var r=n.parseTypeReference();return n.expectToken(c.a.EOF),r}var m=function(){function e(e,t){var n="string"==typeof e?new u.a(e):e;n instanceof u.a||Object(i.a)(0,"Must provide Source. Received: ".concat(Object(r.a)(n),".")),this._lexer=new p.a(n),this._options=t}var t=e.prototype;return t.parseName=function(){var e=this.expectToken(c.a.NAME);return{kind:a.a.NAME,value:e.value,loc:this.loc(e)}},t.parseDocument=function(){var e=this._lexer.token;return{kind:a.a.DOCUMENT,definitions:this.many(c.a.SOF,this.parseDefinition,c.a.EOF),loc:this.loc(e)}},t.parseDefinition=function(){if(this.peek(c.a.NAME))switch(this._lexer.token.value){case"query":case"mutation":case"subscription":return this.parseOperationDefinition();case"fragment":return this.parseFragmentDefinition();case"schema":case"scalar":case"type":case"interface":case"union":case"enum":case"input":case"directive":return this.parseTypeSystemDefinition();case"extend":return this.parseTypeSystemExtension()}else{if(this.peek(c.a.BRACE_L))return this.parseOperationDefinition();if(this.peekDescription())return this.parseTypeSystemDefinition()}throw this.unexpected()},t.parseOperationDefinition=function(){var e=this._lexer.token;if(this.peek(c.a.BRACE_L))return{kind:a.a.OPERATION_DEFINITION,operation:"query",name:void 0,variableDefinitions:[],directives:[],selectionSet:this.parseSelectionSet(),loc:this.loc(e)};var t,n=this.parseOperationType();return this.peek(c.a.NAME)&&(t=this.parseName()),{kind:a.a.OPERATION_DEFINITION,operation:n,name:t,variableDefinitions:this.parseVariableDefinitions(),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet(),loc:this.loc(e)}},t.parseOperationType=function(){var e=this.expectToken(c.a.NAME);switch(e.value){case"query":return"query";case"mutation":return"mutation";case"subscription":return"subscription"}throw this.unexpected(e)},t.parseVariableDefinitions=function(){return this.optionalMany(c.a.PAREN_L,this.parseVariableDefinition,c.a.PAREN_R)},t.parseVariableDefinition=function(){var e=this._lexer.token;return{kind:a.a.VARIABLE_DEFINITION,variable:this.parseVariable(),type:(this.expectToken(c.a.COLON),this.parseTypeReference()),defaultValue:this.expectOptionalToken(c.a.EQUALS)?this.parseValueLiteral(!0):void 0,directives:this.parseDirectives(!0),loc:this.loc(e)}},t.parseVariable=function(){var e=this._lexer.token;return this.expectToken(c.a.DOLLAR),{kind:a.a.VARIABLE,name:this.parseName(),loc:this.loc(e)}},t.parseSelectionSet=function(){var e=this._lexer.token;return{kind:a.a.SELECTION_SET,selections:this.many(c.a.BRACE_L,this.parseSelection,c.a.BRACE_R),loc:this.loc(e)}},t.parseSelection=function(){return this.peek(c.a.SPREAD)?this.parseFragment():this.parseField()},t.parseField=function(){var e,t,n=this._lexer.token,r=this.parseName();return this.expectOptionalToken(c.a.COLON)?(e=r,t=this.parseName()):t=r,{kind:a.a.FIELD,alias:e,name:t,arguments:this.parseArguments(!1),directives:this.parseDirectives(!1),selectionSet:this.peek(c.a.BRACE_L)?this.parseSelectionSet():void 0,loc:this.loc(n)}},t.parseArguments=function(e){var t=e?this.parseConstArgument:this.parseArgument;return this.optionalMany(c.a.PAREN_L,t,c.a.PAREN_R)},t.parseArgument=function(){var e=this._lexer.token,t=this.parseName();return this.expectToken(c.a.COLON),{kind:a.a.ARGUMENT,name:t,value:this.parseValueLiteral(!1),loc:this.loc(e)}},t.parseConstArgument=function(){var e=this._lexer.token;return{kind:a.a.ARGUMENT,name:this.parseName(),value:(this.expectToken(c.a.COLON),this.parseValueLiteral(!0)),loc:this.loc(e)}},t.parseFragment=function(){var e=this._lexer.token;this.expectToken(c.a.SPREAD);var t=this.expectOptionalKeyword("on");return!t&&this.peek(c.a.NAME)?{kind:a.a.FRAGMENT_SPREAD,name:this.parseFragmentName(),directives:this.parseDirectives(!1),loc:this.loc(e)}:{kind:a.a.INLINE_FRAGMENT,typeCondition:t?this.parseNamedType():void 0,directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet(),loc:this.loc(e)}},t.parseFragmentDefinition=function(){var e,t=this._lexer.token;return this.expectKeyword("fragment"),!0===(null===(e=this._options)||void 0===e?void 0:e.experimentalFragmentVariables)?{kind:a.a.FRAGMENT_DEFINITION,name:this.parseFragmentName(),variableDefinitions:this.parseVariableDefinitions(),typeCondition:(this.expectKeyword("on"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet(),loc:this.loc(t)}:{kind:a.a.FRAGMENT_DEFINITION,name:this.parseFragmentName(),typeCondition:(this.expectKeyword("on"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet(),loc:this.loc(t)}},t.parseFragmentName=function(){if("on"===this._lexer.token.value)throw this.unexpected();return this.parseName()},t.parseValueLiteral=function(e){var t=this._lexer.token;switch(t.kind){case c.a.BRACKET_L:return this.parseList(e);case c.a.BRACE_L:return this.parseObject(e);case c.a.INT:return this._lexer.advance(),{kind:a.a.INT,value:t.value,loc:this.loc(t)};case c.a.FLOAT:return this._lexer.advance(),{kind:a.a.FLOAT,value:t.value,loc:this.loc(t)};case c.a.STRING:case c.a.BLOCK_STRING:return this.parseStringLiteral();case c.a.NAME:switch(this._lexer.advance(),t.value){case"true":return{kind:a.a.BOOLEAN,value:!0,loc:this.loc(t)};case"false":return{kind:a.a.BOOLEAN,value:!1,loc:this.loc(t)};case"null":return{kind:a.a.NULL,loc:this.loc(t)};default:return{kind:a.a.ENUM,value:t.value,loc:this.loc(t)}}case c.a.DOLLAR:if(!e)return this.parseVariable()}throw this.unexpected()},t.parseStringLiteral=function(){var e=this._lexer.token;return this._lexer.advance(),{kind:a.a.STRING,value:e.value,block:e.kind===c.a.BLOCK_STRING,loc:this.loc(e)}},t.parseList=function(e){var t=this,n=this._lexer.token;return{kind:a.a.LIST,values:this.any(c.a.BRACKET_L,(function(){return t.parseValueLiteral(e)}),c.a.BRACKET_R),loc:this.loc(n)}},t.parseObject=function(e){var t=this,n=this._lexer.token;return{kind:a.a.OBJECT,fields:this.any(c.a.BRACE_L,(function(){return t.parseObjectField(e)}),c.a.BRACE_R),loc:this.loc(n)}},t.parseObjectField=function(e){var t=this._lexer.token,n=this.parseName();return this.expectToken(c.a.COLON),{kind:a.a.OBJECT_FIELD,name:n,value:this.parseValueLiteral(e),loc:this.loc(t)}},t.parseDirectives=function(e){for(var t=[];this.peek(c.a.AT);)t.push(this.parseDirective(e));return t},t.parseDirective=function(e){var t=this._lexer.token;return this.expectToken(c.a.AT),{kind:a.a.DIRECTIVE,name:this.parseName(),arguments:this.parseArguments(e),loc:this.loc(t)}},t.parseTypeReference=function(){var e,t=this._lexer.token;return this.expectOptionalToken(c.a.BRACKET_L)?(e=this.parseTypeReference(),this.expectToken(c.a.BRACKET_R),e={kind:a.a.LIST_TYPE,type:e,loc:this.loc(t)}):e=this.parseNamedType(),this.expectOptionalToken(c.a.BANG)?{kind:a.a.NON_NULL_TYPE,type:e,loc:this.loc(t)}:e},t.parseNamedType=function(){var e=this._lexer.token;return{kind:a.a.NAMED_TYPE,name:this.parseName(),loc:this.loc(e)}},t.parseTypeSystemDefinition=function(){var e=this.peekDescription()?this._lexer.lookahead():this._lexer.token;if(e.kind===c.a.NAME)switch(e.value){case"schema":return this.parseSchemaDefinition();case"scalar":return this.parseScalarTypeDefinition();case"type":return this.parseObjectTypeDefinition();case"interface":return this.parseInterfaceTypeDefinition();case"union":return this.parseUnionTypeDefinition();case"enum":return this.parseEnumTypeDefinition();case"input":return this.parseInputObjectTypeDefinition();case"directive":return this.parseDirectiveDefinition()}throw this.unexpected(e)},t.peekDescription=function(){return this.peek(c.a.STRING)||this.peek(c.a.BLOCK_STRING)},t.parseDescription=function(){if(this.peekDescription())return this.parseStringLiteral()},t.parseSchemaDefinition=function(){var e=this._lexer.token,t=this.parseDescription();this.expectKeyword("schema");var n=this.parseDirectives(!0),r=this.many(c.a.BRACE_L,this.parseOperationTypeDefinition,c.a.BRACE_R);return{kind:a.a.SCHEMA_DEFINITION,description:t,directives:n,operationTypes:r,loc:this.loc(e)}},t.parseOperationTypeDefinition=function(){var e=this._lexer.token,t=this.parseOperationType();this.expectToken(c.a.COLON);var n=this.parseNamedType();return{kind:a.a.OPERATION_TYPE_DEFINITION,operation:t,type:n,loc:this.loc(e)}},t.parseScalarTypeDefinition=function(){var e=this._lexer.token,t=this.parseDescription();this.expectKeyword("scalar");var n=this.parseName(),r=this.parseDirectives(!0);return{kind:a.a.SCALAR_TYPE_DEFINITION,description:t,name:n,directives:r,loc:this.loc(e)}},t.parseObjectTypeDefinition=function(){var e=this._lexer.token,t=this.parseDescription();this.expectKeyword("type");var n=this.parseName(),r=this.parseImplementsInterfaces(),i=this.parseDirectives(!0),o=this.parseFieldsDefinition();return{kind:a.a.OBJECT_TYPE_DEFINITION,description:t,name:n,interfaces:r,directives:i,fields:o,loc:this.loc(e)}},t.parseImplementsInterfaces=function(){var e=[];if(this.expectOptionalKeyword("implements")){this.expectOptionalToken(c.a.AMP);do{var t;e.push(this.parseNamedType())}while(this.expectOptionalToken(c.a.AMP)||!0===(null===(t=this._options)||void 0===t?void 0:t.allowLegacySDLImplementsInterfaces)&&this.peek(c.a.NAME))}return e},t.parseFieldsDefinition=function(){var e;return!0===(null===(e=this._options)||void 0===e?void 0:e.allowLegacySDLEmptyFields)&&this.peek(c.a.BRACE_L)&&this._lexer.lookahead().kind===c.a.BRACE_R?(this._lexer.advance(),this._lexer.advance(),[]):this.optionalMany(c.a.BRACE_L,this.parseFieldDefinition,c.a.BRACE_R)},t.parseFieldDefinition=function(){var e=this._lexer.token,t=this.parseDescription(),n=this.parseName(),r=this.parseArgumentDefs();this.expectToken(c.a.COLON);var i=this.parseTypeReference(),o=this.parseDirectives(!0);return{kind:a.a.FIELD_DEFINITION,description:t,name:n,arguments:r,type:i,directives:o,loc:this.loc(e)}},t.parseArgumentDefs=function(){return this.optionalMany(c.a.PAREN_L,this.parseInputValueDef,c.a.PAREN_R)},t.parseInputValueDef=function(){var e=this._lexer.token,t=this.parseDescription(),n=this.parseName();this.expectToken(c.a.COLON);var r,i=this.parseTypeReference();this.expectOptionalToken(c.a.EQUALS)&&(r=this.parseValueLiteral(!0));var o=this.parseDirectives(!0);return{kind:a.a.INPUT_VALUE_DEFINITION,description:t,name:n,type:i,defaultValue:r,directives:o,loc:this.loc(e)}},t.parseInterfaceTypeDefinition=function(){var e=this._lexer.token,t=this.parseDescription();this.expectKeyword("interface");var n=this.parseName(),r=this.parseImplementsInterfaces(),i=this.parseDirectives(!0),o=this.parseFieldsDefinition();return{kind:a.a.INTERFACE_TYPE_DEFINITION,description:t,name:n,interfaces:r,directives:i,fields:o,loc:this.loc(e)}},t.parseUnionTypeDefinition=function(){var e=this._lexer.token,t=this.parseDescription();this.expectKeyword("union");var n=this.parseName(),r=this.parseDirectives(!0),i=this.parseUnionMemberTypes();return{kind:a.a.UNION_TYPE_DEFINITION,description:t,name:n,directives:r,types:i,loc:this.loc(e)}},t.parseUnionMemberTypes=function(){var e=[];if(this.expectOptionalToken(c.a.EQUALS)){this.expectOptionalToken(c.a.PIPE);do{e.push(this.parseNamedType())}while(this.expectOptionalToken(c.a.PIPE))}return e},t.parseEnumTypeDefinition=function(){var e=this._lexer.token,t=this.parseDescription();this.expectKeyword("enum");var n=this.parseName(),r=this.parseDirectives(!0),i=this.parseEnumValuesDefinition();return{kind:a.a.ENUM_TYPE_DEFINITION,description:t,name:n,directives:r,values:i,loc:this.loc(e)}},t.parseEnumValuesDefinition=function(){return this.optionalMany(c.a.BRACE_L,this.parseEnumValueDefinition,c.a.BRACE_R)},t.parseEnumValueDefinition=function(){var e=this._lexer.token,t=this.parseDescription(),n=this.parseName(),r=this.parseDirectives(!0);return{kind:a.a.ENUM_VALUE_DEFINITION,description:t,name:n,directives:r,loc:this.loc(e)}},t.parseInputObjectTypeDefinition=function(){var e=this._lexer.token,t=this.parseDescription();this.expectKeyword("input");var n=this.parseName(),r=this.parseDirectives(!0),i=this.parseInputFieldsDefinition();return{kind:a.a.INPUT_OBJECT_TYPE_DEFINITION,description:t,name:n,directives:r,fields:i,loc:this.loc(e)}},t.parseInputFieldsDefinition=function(){return this.optionalMany(c.a.BRACE_L,this.parseInputValueDef,c.a.BRACE_R)},t.parseTypeSystemExtension=function(){var e=this._lexer.lookahead();if(e.kind===c.a.NAME)switch(e.value){case"schema":return this.parseSchemaExtension();case"scalar":return this.parseScalarTypeExtension();case"type":return this.parseObjectTypeExtension();case"interface":return this.parseInterfaceTypeExtension();case"union":return this.parseUnionTypeExtension();case"enum":return this.parseEnumTypeExtension();case"input":return this.parseInputObjectTypeExtension()}throw this.unexpected(e)},t.parseSchemaExtension=function(){var e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("schema");var t=this.parseDirectives(!0),n=this.optionalMany(c.a.BRACE_L,this.parseOperationTypeDefinition,c.a.BRACE_R);if(0===t.length&&0===n.length)throw this.unexpected();return{kind:a.a.SCHEMA_EXTENSION,directives:t,operationTypes:n,loc:this.loc(e)}},t.parseScalarTypeExtension=function(){var e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("scalar");var t=this.parseName(),n=this.parseDirectives(!0);if(0===n.length)throw this.unexpected();return{kind:a.a.SCALAR_TYPE_EXTENSION,name:t,directives:n,loc:this.loc(e)}},t.parseObjectTypeExtension=function(){var e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("type");var t=this.parseName(),n=this.parseImplementsInterfaces(),r=this.parseDirectives(!0),i=this.parseFieldsDefinition();if(0===n.length&&0===r.length&&0===i.length)throw this.unexpected();return{kind:a.a.OBJECT_TYPE_EXTENSION,name:t,interfaces:n,directives:r,fields:i,loc:this.loc(e)}},t.parseInterfaceTypeExtension=function(){var e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("interface");var t=this.parseName(),n=this.parseImplementsInterfaces(),r=this.parseDirectives(!0),i=this.parseFieldsDefinition();if(0===n.length&&0===r.length&&0===i.length)throw this.unexpected();return{kind:a.a.INTERFACE_TYPE_EXTENSION,name:t,interfaces:n,directives:r,fields:i,loc:this.loc(e)}},t.parseUnionTypeExtension=function(){var e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("union");var t=this.parseName(),n=this.parseDirectives(!0),r=this.parseUnionMemberTypes();if(0===n.length&&0===r.length)throw this.unexpected();return{kind:a.a.UNION_TYPE_EXTENSION,name:t,directives:n,types:r,loc:this.loc(e)}},t.parseEnumTypeExtension=function(){var e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("enum");var t=this.parseName(),n=this.parseDirectives(!0),r=this.parseEnumValuesDefinition();if(0===n.length&&0===r.length)throw this.unexpected();return{kind:a.a.ENUM_TYPE_EXTENSION,name:t,directives:n,values:r,loc:this.loc(e)}},t.parseInputObjectTypeExtension=function(){var e=this._lexer.token;this.expectKeyword("extend"),this.expectKeyword("input");var t=this.parseName(),n=this.parseDirectives(!0),r=this.parseInputFieldsDefinition();if(0===n.length&&0===r.length)throw this.unexpected();return{kind:a.a.INPUT_OBJECT_TYPE_EXTENSION,name:t,directives:n,fields:r,loc:this.loc(e)}},t.parseDirectiveDefinition=function(){var e=this._lexer.token,t=this.parseDescription();this.expectKeyword("directive"),this.expectToken(c.a.AT);var n=this.parseName(),r=this.parseArgumentDefs(),i=this.expectOptionalKeyword("repeatable");this.expectKeyword("on");var o=this.parseDirectiveLocations();return{kind:a.a.DIRECTIVE_DEFINITION,description:t,name:n,arguments:r,repeatable:i,locations:o,loc:this.loc(e)}},t.parseDirectiveLocations=function(){this.expectOptionalToken(c.a.PIPE);var e=[];do{e.push(this.parseDirectiveLocation())}while(this.expectOptionalToken(c.a.PIPE));return e},t.parseDirectiveLocation=function(){var e=this._lexer.token,t=this.parseName();if(void 0!==l.a[t.value])return t;throw this.unexpected(e)},t.loc=function(e){var t;if(!0!==(null===(t=this._options)||void 0===t?void 0:t.noLocation))return new s.a(e,this._lexer.lastToken,this._lexer.source)},t.peek=function(e){return this._lexer.token.kind===e},t.expectToken=function(e){var t=this._lexer.token;if(t.kind===e)return this._lexer.advance(),t;throw Object(o.a)(this._lexer.source,t.start,"Expected ".concat(y(e),", found ").concat(g(t),"."))},t.expectOptionalToken=function(e){var t=this._lexer.token;if(t.kind===e)return this._lexer.advance(),t},t.expectKeyword=function(e){var t=this._lexer.token;if(t.kind!==c.a.NAME||t.value!==e)throw Object(o.a)(this._lexer.source,t.start,'Expected "'.concat(e,'", found ').concat(g(t),"."));this._lexer.advance()},t.expectOptionalKeyword=function(e){var t=this._lexer.token;return t.kind===c.a.NAME&&t.value===e&&(this._lexer.advance(),!0)},t.unexpected=function(e){var t=null!=e?e:this._lexer.token;return Object(o.a)(this._lexer.source,t.start,"Unexpected ".concat(g(t),"."))},t.any=function(e,t,n){this.expectToken(e);for(var r=[];!this.expectOptionalToken(n);)r.push(t.call(this));return r},t.optionalMany=function(e,t,n){if(this.expectOptionalToken(e)){var r=[];do{r.push(t.call(this))}while(!this.expectOptionalToken(n));return r}return[]},t.many=function(e,t,n){this.expectToken(e);var r=[];do{r.push(t.call(this))}while(!this.expectOptionalToken(n));return r},e}();function g(e){var t=e.value;return y(e.kind)+(null!=t?' "'.concat(t,'"'):"")}function y(e){return Object(p.b)(e)?'"'.concat(e,'"'):e}},function(e,t,n){"use strict";n.d(t,"c",(function(){return l})),n.d(t,"a",(function(){return f})),n.d(t,"b",(function(){return d}));var r=n(8),i=n(2),o=n(26),a=n(81),s=n(86),u=n(138),c=n(146);function l(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:u.a,l=arguments.length>3&&void 0!==arguments[3]?arguments[3]:new s.a(e),p=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{maxErrors:void 0};t||Object(r.a)(0,"Must provide document."),Object(a.a)(e);var f=Object.freeze({}),d=[],h=new c.b(e,t,l,(function(e){if(null!=p.maxErrors&&d.length>=p.maxErrors)throw d.push(new i.a("Too many validation errors, error limit reached. Validation aborted.")),f;d.push(e)})),m=Object(o.d)(n.map((function(e){return e(h)})));try{Object(o.c)(t,Object(s.b)(l,m))}catch(e){if(e!==f)throw e}return d}function p(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:u.b,r=[],i=new c.a(e,t,(function(e){r.push(e)})),a=n.map((function(e){return e(i)}));return Object(o.c)(e,Object(o.d)(a)),r}function f(e){var t=p(e);if(0!==t.length)throw new Error(t.map((function(e){return e.message})).join("\n\n"))}function d(e,t){var n=p(e,t);if(0!==n.length)throw new Error(n.map((function(e){return e.message})).join("\n\n"))}},function(e,t,n){"use strict";n.d(t,"a",(function(){return d}));var r=n(72),i=n(58),o=n(14),a=n(4),s=n(17),u=n(31),c=n(82),l=n(1),p=n(13),f=n(0);function d(e,t){if(Object(f.L)(t)){var n=d(e,t.ofType);return(null==n?void 0:n.kind)===l.a.NULL?null:n}if(null===e)return{kind:l.a.NULL};if(void 0===e)return null;if(Object(f.J)(t)){var m=t.ofType;if(Object(c.a)(e)){for(var g=[],y=0,v=Object(i.a)(e);y