{"version":3,"file":"72421.fab2e19c.js","sources":["webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/fxp.js","webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/ignoreAttributes.js","webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/util.js","webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/validator.js","webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js","webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js","webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js","webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js","webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js","webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js","webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/xmlparser/node2json.js","webpack://app/./node_modules/.pnpm/fast-xml-parser@4.5.0/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js","webpack://app/./node_modules/.pnpm/ignore@5.3.2/node_modules/ignore/index.js","webpack://app/./node_modules/.pnpm/strnum@1.0.5/node_modules/strnum/strnum.js","webpack://app/./node_modules/.pnpm/@gera2ld+tarjs@0.3.1/node_modules/@gera2ld/tarjs/dist/index.mjs","webpack://app/./node_modules/.pnpm/@react-stately+collections@3.12.0_react@18.3.1/node_modules/@react-stately/collections/dist/getChildNodes.mjs","webpack://app/./node_modules/.pnpm/@react-stately+form@3.1.0_react@18.3.1/node_modules/@react-stately/form/dist/useFormValidationState.mjs","webpack://app/./node_modules/.pnpm/csv-parse@5.6.0/node_modules/csv-parse/lib/api/CsvError.js","webpack://app/./node_modules/.pnpm/csv-parse@5.6.0/node_modules/csv-parse/lib/api/normalize_columns_array.js","webpack://app/./node_modules/.pnpm/csv-parse@5.6.0/node_modules/csv-parse/lib/utils/is_object.js","webpack://app/./node_modules/.pnpm/csv-parse@5.6.0/node_modules/csv-parse/lib/utils/ResizeableBuffer.js","webpack://app/./node_modules/.pnpm/csv-parse@5.6.0/node_modules/csv-parse/lib/api/normalize_options.js","webpack://app/./node_modules/.pnpm/csv-parse@5.6.0/node_modules/csv-parse/lib/utils/underscore.js","webpack://app/./node_modules/.pnpm/csv-parse@5.6.0/node_modules/csv-parse/lib/api/index.js","webpack://app/./node_modules/.pnpm/csv-parse@5.6.0/node_modules/csv-parse/lib/api/init_state.js","webpack://app/./node_modules/.pnpm/csv-parse@5.6.0/node_modules/csv-parse/lib/sync.js","webpack://app/./node_modules/.pnpm/js-yaml@4.1.0/node_modules/js-yaml/dist/js-yaml.mjs","webpack://app/./node_modules/.pnpm/pako@2.1.0/node_modules/pako/dist/pako.esm.mjs"],"sourcesContent":["'use strict';\n\nconst validator = require('./validator');\nconst XMLParser = require('./xmlparser/XMLParser');\nconst XMLBuilder = require('./xmlbuilder/json2xml');\n\nmodule.exports = {\n XMLParser: XMLParser,\n XMLValidator: validator,\n XMLBuilder: XMLBuilder\n}","function getIgnoreAttributesFn(ignoreAttributes) {\n if (typeof ignoreAttributes === 'function') {\n return ignoreAttributes\n }\n if (Array.isArray(ignoreAttributes)) {\n return (attrName) => {\n for (const pattern of ignoreAttributes) {\n if (typeof pattern === 'string' && attrName === pattern) {\n return true\n }\n if (pattern instanceof RegExp && pattern.test(attrName)) {\n return true\n }\n }\n }\n }\n return () => false\n}\n\nmodule.exports = getIgnoreAttributesFn","'use strict';\n\nconst nameStartChar = ':A-Za-z_\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD';\nconst nameChar = nameStartChar + '\\\\-.\\\\d\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040';\nconst nameRegexp = '[' + nameStartChar + '][' + nameChar + ']*'\nconst regexName = new RegExp('^' + nameRegexp + '$');\n\nconst getAllMatches = function(string, regex) {\n const matches = [];\n let match = regex.exec(string);\n while (match) {\n const allmatches = [];\n allmatches.startIndex = regex.lastIndex - match[0].length;\n const len = match.length;\n for (let index = 0; index < len; index++) {\n allmatches.push(match[index]);\n }\n matches.push(allmatches);\n match = regex.exec(string);\n }\n return matches;\n};\n\nconst isName = function(string) {\n const match = regexName.exec(string);\n return !(match === null || typeof match === 'undefined');\n};\n\nexports.isExist = function(v) {\n return typeof v !== 'undefined';\n};\n\nexports.isEmptyObject = function(obj) {\n return Object.keys(obj).length === 0;\n};\n\n/**\n * Copy all the properties of a into b.\n * @param {*} target\n * @param {*} a\n */\nexports.merge = function(target, a, arrayMode) {\n if (a) {\n const keys = Object.keys(a); // will return an array of own properties\n const len = keys.length; //don't make it inline\n for (let i = 0; i < len; i++) {\n if (arrayMode === 'strict') {\n target[keys[i]] = [ a[keys[i]] ];\n } else {\n target[keys[i]] = a[keys[i]];\n }\n }\n }\n};\n/* exports.merge =function (b,a){\n return Object.assign(b,a);\n} */\n\nexports.getValue = function(v) {\n if (exports.isExist(v)) {\n return v;\n } else {\n return '';\n }\n};\n\n// const fakeCall = function(a) {return a;};\n// const fakeCallNoReturn = function() {};\n\nexports.isName = isName;\nexports.getAllMatches = getAllMatches;\nexports.nameRegexp = nameRegexp;\n","'use strict';\n\nconst util = require('./util');\n\nconst defaultOptions = {\n allowBooleanAttributes: false, //A tag can have attributes without any value\n unpairedTags: []\n};\n\n//const tagsPattern = new RegExp(\"<\\\\/?([\\\\w:\\\\-_\\.]+)\\\\s*\\/?>\",\"g\");\nexports.validate = function (xmlData, options) {\n options = Object.assign({}, defaultOptions, options);\n\n //xmlData = xmlData.replace(/(\\r\\n|\\n|\\r)/gm,\"\");//make it single line\n //xmlData = xmlData.replace(/(^\\s*<\\?xml.*?\\?>)/g,\"\");//Remove XML starting tag\n //xmlData = xmlData.replace(/()/g,\"\");//Remove DOCTYPE\n const tags = [];\n let tagFound = false;\n\n //indicates that the root tag has been closed (aka. depth 0 has been reached)\n let reachedRoot = false;\n\n if (xmlData[0] === '\\ufeff') {\n // check for byte order mark (BOM)\n xmlData = xmlData.substr(1);\n }\n \n for (let i = 0; i < xmlData.length; i++) {\n\n if (xmlData[i] === '<' && xmlData[i+1] === '?') {\n i+=2;\n i = readPI(xmlData,i);\n if (i.err) return i;\n }else if (xmlData[i] === '<') {\n //starting of tag\n //read until you reach to '>' avoiding any '>' in attribute value\n let tagStartPos = i;\n i++;\n \n if (xmlData[i] === '!') {\n i = readCommentAndCDATA(xmlData, i);\n continue;\n } else {\n let closingTag = false;\n if (xmlData[i] === '/') {\n //closing tag\n closingTag = true;\n i++;\n }\n //read tagname\n let tagName = '';\n for (; i < xmlData.length &&\n xmlData[i] !== '>' &&\n xmlData[i] !== ' ' &&\n xmlData[i] !== '\\t' &&\n xmlData[i] !== '\\n' &&\n xmlData[i] !== '\\r'; i++\n ) {\n tagName += xmlData[i];\n }\n tagName = tagName.trim();\n //console.log(tagName);\n\n if (tagName[tagName.length - 1] === '/') {\n //self closing tag without attributes\n tagName = tagName.substring(0, tagName.length - 1);\n //continue;\n i--;\n }\n if (!validateTagName(tagName)) {\n let msg;\n if (tagName.trim().length === 0) {\n msg = \"Invalid space after '<'.\";\n } else {\n msg = \"Tag '\"+tagName+\"' is an invalid name.\";\n }\n return getErrorObject('InvalidTag', msg, getLineNumberForPosition(xmlData, i));\n }\n\n const result = readAttributeStr(xmlData, i);\n if (result === false) {\n return getErrorObject('InvalidAttr', \"Attributes for '\"+tagName+\"' have open quote.\", getLineNumberForPosition(xmlData, i));\n }\n let attrStr = result.value;\n i = result.index;\n\n if (attrStr[attrStr.length - 1] === '/') {\n //self closing tag\n const attrStrStart = i - attrStr.length;\n attrStr = attrStr.substring(0, attrStr.length - 1);\n const isValid = validateAttributeString(attrStr, options);\n if (isValid === true) {\n tagFound = true;\n //continue; //text may presents after self closing tag\n } else {\n //the result from the nested function returns the position of the error within the attribute\n //in order to get the 'true' error line, we need to calculate the position where the attribute begins (i - attrStr.length) and then add the position within the attribute\n //this gives us the absolute index in the entire xml, which we can use to find the line at last\n return getErrorObject(isValid.err.code, isValid.err.msg, getLineNumberForPosition(xmlData, attrStrStart + isValid.err.line));\n }\n } else if (closingTag) {\n if (!result.tagClosed) {\n return getErrorObject('InvalidTag', \"Closing tag '\"+tagName+\"' doesn't have proper closing.\", getLineNumberForPosition(xmlData, i));\n } else if (attrStr.trim().length > 0) {\n return getErrorObject('InvalidTag', \"Closing tag '\"+tagName+\"' can't have attributes or invalid starting.\", getLineNumberForPosition(xmlData, tagStartPos));\n } else if (tags.length === 0) {\n return getErrorObject('InvalidTag', \"Closing tag '\"+tagName+\"' has not been opened.\", getLineNumberForPosition(xmlData, tagStartPos));\n } else {\n const otg = tags.pop();\n if (tagName !== otg.tagName) {\n let openPos = getLineNumberForPosition(xmlData, otg.tagStartPos);\n return getErrorObject('InvalidTag',\n \"Expected closing tag '\"+otg.tagName+\"' (opened in line \"+openPos.line+\", col \"+openPos.col+\") instead of closing tag '\"+tagName+\"'.\",\n getLineNumberForPosition(xmlData, tagStartPos));\n }\n\n //when there are no more tags, we reached the root level.\n if (tags.length == 0) {\n reachedRoot = true;\n }\n }\n } else {\n const isValid = validateAttributeString(attrStr, options);\n if (isValid !== true) {\n //the result from the nested function returns the position of the error within the attribute\n //in order to get the 'true' error line, we need to calculate the position where the attribute begins (i - attrStr.length) and then add the position within the attribute\n //this gives us the absolute index in the entire xml, which we can use to find the line at last\n return getErrorObject(isValid.err.code, isValid.err.msg, getLineNumberForPosition(xmlData, i - attrStr.length + isValid.err.line));\n }\n\n //if the root level has been reached before ...\n if (reachedRoot === true) {\n return getErrorObject('InvalidXml', 'Multiple possible root nodes found.', getLineNumberForPosition(xmlData, i));\n } else if(options.unpairedTags.indexOf(tagName) !== -1){\n //don't push into stack\n } else {\n tags.push({tagName, tagStartPos});\n }\n tagFound = true;\n }\n\n //skip tag text value\n //It may include comments and CDATA value\n for (i++; i < xmlData.length; i++) {\n if (xmlData[i] === '<') {\n if (xmlData[i + 1] === '!') {\n //comment or CADATA\n i++;\n i = readCommentAndCDATA(xmlData, i);\n continue;\n } else if (xmlData[i+1] === '?') {\n i = readPI(xmlData, ++i);\n if (i.err) return i;\n } else{\n break;\n }\n } else if (xmlData[i] === '&') {\n const afterAmp = validateAmpersand(xmlData, i);\n if (afterAmp == -1)\n return getErrorObject('InvalidChar', \"char '&' is not expected.\", getLineNumberForPosition(xmlData, i));\n i = afterAmp;\n }else{\n if (reachedRoot === true && !isWhiteSpace(xmlData[i])) {\n return getErrorObject('InvalidXml', \"Extra text at the end\", getLineNumberForPosition(xmlData, i));\n }\n }\n } //end of reading tag text value\n if (xmlData[i] === '<') {\n i--;\n }\n }\n } else {\n if ( isWhiteSpace(xmlData[i])) {\n continue;\n }\n return getErrorObject('InvalidChar', \"char '\"+xmlData[i]+\"' is not expected.\", getLineNumberForPosition(xmlData, i));\n }\n }\n\n if (!tagFound) {\n return getErrorObject('InvalidXml', 'Start tag expected.', 1);\n }else if (tags.length == 1) {\n return getErrorObject('InvalidTag', \"Unclosed tag '\"+tags[0].tagName+\"'.\", getLineNumberForPosition(xmlData, tags[0].tagStartPos));\n }else if (tags.length > 0) {\n return getErrorObject('InvalidXml', \"Invalid '\"+\n JSON.stringify(tags.map(t => t.tagName), null, 4).replace(/\\r?\\n/g, '')+\n \"' found.\", {line: 1, col: 1});\n }\n\n return true;\n};\n\nfunction isWhiteSpace(char){\n return char === ' ' || char === '\\t' || char === '\\n' || char === '\\r';\n}\n/**\n * Read Processing insstructions and skip\n * @param {*} xmlData\n * @param {*} i\n */\nfunction readPI(xmlData, i) {\n const start = i;\n for (; i < xmlData.length; i++) {\n if (xmlData[i] == '?' || xmlData[i] == ' ') {\n //tagname\n const tagname = xmlData.substr(start, i - start);\n if (i > 5 && tagname === 'xml') {\n return getErrorObject('InvalidXml', 'XML declaration allowed only at the start of the document.', getLineNumberForPosition(xmlData, i));\n } else if (xmlData[i] == '?' && xmlData[i + 1] == '>') {\n //check if valid attribut string\n i++;\n break;\n } else {\n continue;\n }\n }\n }\n return i;\n}\n\nfunction readCommentAndCDATA(xmlData, i) {\n if (xmlData.length > i + 5 && xmlData[i + 1] === '-' && xmlData[i + 2] === '-') {\n //comment\n for (i += 3; i < xmlData.length; i++) {\n if (xmlData[i] === '-' && xmlData[i + 1] === '-' && xmlData[i + 2] === '>') {\n i += 2;\n break;\n }\n }\n } else if (\n xmlData.length > i + 8 &&\n xmlData[i + 1] === 'D' &&\n xmlData[i + 2] === 'O' &&\n xmlData[i + 3] === 'C' &&\n xmlData[i + 4] === 'T' &&\n xmlData[i + 5] === 'Y' &&\n xmlData[i + 6] === 'P' &&\n xmlData[i + 7] === 'E'\n ) {\n let angleBracketsCount = 1;\n for (i += 8; i < xmlData.length; i++) {\n if (xmlData[i] === '<') {\n angleBracketsCount++;\n } else if (xmlData[i] === '>') {\n angleBracketsCount--;\n if (angleBracketsCount === 0) {\n break;\n }\n }\n }\n } else if (\n xmlData.length > i + 9 &&\n xmlData[i + 1] === '[' &&\n xmlData[i + 2] === 'C' &&\n xmlData[i + 3] === 'D' &&\n xmlData[i + 4] === 'A' &&\n xmlData[i + 5] === 'T' &&\n xmlData[i + 6] === 'A' &&\n xmlData[i + 7] === '['\n ) {\n for (i += 8; i < xmlData.length; i++) {\n if (xmlData[i] === ']' && xmlData[i + 1] === ']' && xmlData[i + 2] === '>') {\n i += 2;\n break;\n }\n }\n }\n\n return i;\n}\n\nconst doubleQuote = '\"';\nconst singleQuote = \"'\";\n\n/**\n * Keep reading xmlData until '<' is found outside the attribute value.\n * @param {string} xmlData\n * @param {number} i\n */\nfunction readAttributeStr(xmlData, i) {\n let attrStr = '';\n let startChar = '';\n let tagClosed = false;\n for (; i < xmlData.length; i++) {\n if (xmlData[i] === doubleQuote || xmlData[i] === singleQuote) {\n if (startChar === '') {\n startChar = xmlData[i];\n } else if (startChar !== xmlData[i]) {\n //if vaue is enclosed with double quote then single quotes are allowed inside the value and vice versa\n } else {\n startChar = '';\n }\n } else if (xmlData[i] === '>') {\n if (startChar === '') {\n tagClosed = true;\n break;\n }\n }\n attrStr += xmlData[i];\n }\n if (startChar !== '') {\n return false;\n }\n\n return {\n value: attrStr,\n index: i,\n tagClosed: tagClosed\n };\n}\n\n/**\n * Select all the attributes whether valid or invalid.\n */\nconst validAttrStrRegxp = new RegExp('(\\\\s*)([^\\\\s=]+)(\\\\s*=)?(\\\\s*([\\'\"])(([\\\\s\\\\S])*?)\\\\5)?', 'g');\n\n//attr, =\"sd\", a=\"amit's\", a=\"sd\"b=\"saf\", ab cd=\"\"\n\nfunction validateAttributeString(attrStr, options) {\n //console.log(\"start:\"+attrStr+\":end\");\n\n //if(attrStr.trim().length === 0) return true; //empty string\n\n const matches = util.getAllMatches(attrStr, validAttrStrRegxp);\n const attrNames = {};\n\n for (let i = 0; i < matches.length; i++) {\n if (matches[i][1].length === 0) {\n //nospace before attribute name: a=\"sd\"b=\"saf\"\n return getErrorObject('InvalidAttr', \"Attribute '\"+matches[i][2]+\"' has no space in starting.\", getPositionFromMatch(matches[i]))\n } else if (matches[i][3] !== undefined && matches[i][4] === undefined) {\n return getErrorObject('InvalidAttr', \"Attribute '\"+matches[i][2]+\"' is without value.\", getPositionFromMatch(matches[i]));\n } else if (matches[i][3] === undefined && !options.allowBooleanAttributes) {\n //independent attribute: ab\n return getErrorObject('InvalidAttr', \"boolean attribute '\"+matches[i][2]+\"' is not allowed.\", getPositionFromMatch(matches[i]));\n }\n /* else if(matches[i][6] === undefined){//attribute without value: ab=\n return { err: { code:\"InvalidAttr\",msg:\"attribute \" + matches[i][2] + \" has no value assigned.\"}};\n } */\n const attrName = matches[i][2];\n if (!validateAttrName(attrName)) {\n return getErrorObject('InvalidAttr', \"Attribute '\"+attrName+\"' is an invalid name.\", getPositionFromMatch(matches[i]));\n }\n if (!attrNames.hasOwnProperty(attrName)) {\n //check for duplicate attribute.\n attrNames[attrName] = 1;\n } else {\n return getErrorObject('InvalidAttr', \"Attribute '\"+attrName+\"' is repeated.\", getPositionFromMatch(matches[i]));\n }\n }\n\n return true;\n}\n\nfunction validateNumberAmpersand(xmlData, i) {\n let re = /\\d/;\n if (xmlData[i] === 'x') {\n i++;\n re = /[\\da-fA-F]/;\n }\n for (; i < xmlData.length; i++) {\n if (xmlData[i] === ';')\n return i;\n if (!xmlData[i].match(re))\n break;\n }\n return -1;\n}\n\nfunction validateAmpersand(xmlData, i) {\n // https://www.w3.org/TR/xml/#dt-charref\n i++;\n if (xmlData[i] === ';')\n return -1;\n if (xmlData[i] === '#') {\n i++;\n return validateNumberAmpersand(xmlData, i);\n }\n let count = 0;\n for (; i < xmlData.length; i++, count++) {\n if (xmlData[i].match(/\\w/) && count < 20)\n continue;\n if (xmlData[i] === ';')\n break;\n return -1;\n }\n return i;\n}\n\nfunction getErrorObject(code, message, lineNumber) {\n return {\n err: {\n code: code,\n msg: message,\n line: lineNumber.line || lineNumber,\n col: lineNumber.col,\n },\n };\n}\n\nfunction validateAttrName(attrName) {\n return util.isName(attrName);\n}\n\n// const startsWithXML = /^xml/i;\n\nfunction validateTagName(tagname) {\n return util.isName(tagname) /* && !tagname.match(startsWithXML) */;\n}\n\n//this function returns the line number for the character at the given index\nfunction getLineNumberForPosition(xmlData, index) {\n const lines = xmlData.substring(0, index).split(/\\r?\\n/);\n return {\n line: lines.length,\n\n // column number is last line's length + 1, because column numbering starts at 1:\n col: lines[lines.length - 1].length + 1\n };\n}\n\n//this function returns the position of the first character of match within attrStr\nfunction getPositionFromMatch(match) {\n return match.startIndex + match[1].length;\n}\n","'use strict';\n//parse Empty Node as self closing node\nconst buildFromOrderedJs = require('./orderedJs2Xml');\nconst getIgnoreAttributesFn = require('../ignoreAttributes')\n\nconst defaultOptions = {\n attributeNamePrefix: '@_',\n attributesGroupName: false,\n textNodeName: '#text',\n ignoreAttributes: true,\n cdataPropName: false,\n format: false,\n indentBy: ' ',\n suppressEmptyNode: false,\n suppressUnpairedNode: true,\n suppressBooleanAttributes: true,\n tagValueProcessor: function(key, a) {\n return a;\n },\n attributeValueProcessor: function(attrName, a) {\n return a;\n },\n preserveOrder: false,\n commentPropName: false,\n unpairedTags: [],\n entities: [\n { regex: new RegExp(\"&\", \"g\"), val: \"&\" },//it must be on top\n { regex: new RegExp(\">\", \"g\"), val: \">\" },\n { regex: new RegExp(\"<\", \"g\"), val: \"<\" },\n { regex: new RegExp(\"\\'\", \"g\"), val: \"'\" },\n { regex: new RegExp(\"\\\"\", \"g\"), val: \""\" }\n ],\n processEntities: true,\n stopNodes: [],\n // transformTagName: false,\n // transformAttributeName: false,\n oneListGroup: false\n};\n\nfunction Builder(options) {\n this.options = Object.assign({}, defaultOptions, options);\n if (this.options.ignoreAttributes === true || this.options.attributesGroupName) {\n this.isAttribute = function(/*a*/) {\n return false;\n };\n } else {\n this.ignoreAttributesFn = getIgnoreAttributesFn(this.options.ignoreAttributes)\n this.attrPrefixLen = this.options.attributeNamePrefix.length;\n this.isAttribute = isAttribute;\n }\n\n this.processTextOrObjNode = processTextOrObjNode\n\n if (this.options.format) {\n this.indentate = indentate;\n this.tagEndChar = '>\\n';\n this.newLine = '\\n';\n } else {\n this.indentate = function() {\n return '';\n };\n this.tagEndChar = '>';\n this.newLine = '';\n }\n}\n\nBuilder.prototype.build = function(jObj) {\n if(this.options.preserveOrder){\n return buildFromOrderedJs(jObj, this.options);\n }else {\n if(Array.isArray(jObj) && this.options.arrayNodeName && this.options.arrayNodeName.length > 1){\n jObj = {\n [this.options.arrayNodeName] : jObj\n }\n }\n return this.j2x(jObj, 0, []).val;\n }\n};\n\nBuilder.prototype.j2x = function(jObj, level, ajPath) {\n let attrStr = '';\n let val = '';\n const jPath = ajPath.join('.')\n for (let key in jObj) {\n if(!Object.prototype.hasOwnProperty.call(jObj, key)) continue;\n if (typeof jObj[key] === 'undefined') {\n // supress undefined node only if it is not an attribute\n if (this.isAttribute(key)) {\n val += '';\n }\n } else if (jObj[key] === null) {\n // null attribute should be ignored by the attribute list, but should not cause the tag closing\n if (this.isAttribute(key)) {\n val += '';\n } else if (key[0] === '?') {\n val += this.indentate(level) + '<' + key + '?' + this.tagEndChar;\n } else {\n val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;\n }\n // val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;\n } else if (jObj[key] instanceof Date) {\n val += this.buildTextValNode(jObj[key], key, '', level);\n } else if (typeof jObj[key] !== 'object') {\n //premitive type\n const attr = this.isAttribute(key);\n if (attr && !this.ignoreAttributesFn(attr, jPath)) {\n attrStr += this.buildAttrPairStr(attr, '' + jObj[key]);\n } else if (!attr) {\n //tag value\n if (key === this.options.textNodeName) {\n let newval = this.options.tagValueProcessor(key, '' + jObj[key]);\n val += this.replaceEntitiesValue(newval);\n } else {\n val += this.buildTextValNode(jObj[key], key, '', level);\n }\n }\n } else if (Array.isArray(jObj[key])) {\n //repeated nodes\n const arrLen = jObj[key].length;\n let listTagVal = \"\";\n let listTagAttr = \"\";\n for (let j = 0; j < arrLen; j++) {\n const item = jObj[key][j];\n if (typeof item === 'undefined') {\n // supress undefined node\n } else if (item === null) {\n if(key[0] === \"?\") val += this.indentate(level) + '<' + key + '?' + this.tagEndChar;\n else val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;\n // val += this.indentate(level) + '<' + key + '/' + this.tagEndChar;\n } else if (typeof item === 'object') {\n if(this.options.oneListGroup){\n const result = this.j2x(item, level + 1, ajPath.concat(key));\n listTagVal += result.val;\n if (this.options.attributesGroupName && item.hasOwnProperty(this.options.attributesGroupName)) {\n listTagAttr += result.attrStr\n }\n }else{\n listTagVal += this.processTextOrObjNode(item, key, level, ajPath)\n }\n } else {\n if (this.options.oneListGroup) {\n let textValue = this.options.tagValueProcessor(key, item);\n textValue = this.replaceEntitiesValue(textValue);\n listTagVal += textValue;\n } else {\n listTagVal += this.buildTextValNode(item, key, '', level);\n }\n }\n }\n if(this.options.oneListGroup){\n listTagVal = this.buildObjectNode(listTagVal, key, listTagAttr, level);\n }\n val += listTagVal;\n } else {\n //nested node\n if (this.options.attributesGroupName && key === this.options.attributesGroupName) {\n const Ks = Object.keys(jObj[key]);\n const L = Ks.length;\n for (let j = 0; j < L; j++) {\n attrStr += this.buildAttrPairStr(Ks[j], '' + jObj[key][Ks[j]]);\n }\n } else {\n val += this.processTextOrObjNode(jObj[key], key, level, ajPath)\n }\n }\n }\n return {attrStr: attrStr, val: val};\n};\n\nBuilder.prototype.buildAttrPairStr = function(attrName, val){\n val = this.options.attributeValueProcessor(attrName, '' + val);\n val = this.replaceEntitiesValue(val);\n if (this.options.suppressBooleanAttributes && val === \"true\") {\n return ' ' + attrName;\n } else return ' ' + attrName + '=\"' + val + '\"';\n}\n\nfunction processTextOrObjNode (object, key, level, ajPath) {\n const result = this.j2x(object, level + 1, ajPath.concat(key));\n if (object[this.options.textNodeName] !== undefined && Object.keys(object).length === 1) {\n return this.buildTextValNode(object[this.options.textNodeName], key, result.attrStr, level);\n } else {\n return this.buildObjectNode(result.val, key, result.attrStr, level);\n }\n}\n\nBuilder.prototype.buildObjectNode = function(val, key, attrStr, level) {\n if(val === \"\"){\n if(key[0] === \"?\") return this.indentate(level) + '<' + key + attrStr+ '?' + this.tagEndChar;\n else {\n return this.indentate(level) + '<' + key + attrStr + this.closeTag(key) + this.tagEndChar;\n }\n }else{\n\n let tagEndExp = '' + val + tagEndExp );\n } else if (this.options.commentPropName !== false && key === this.options.commentPropName && piClosingChar.length === 0) {\n return this.indentate(level) + `` + this.newLine;\n }else {\n return (\n this.indentate(level) + '<' + key + attrStr + piClosingChar + this.tagEndChar +\n val +\n this.indentate(level) + tagEndExp );\n }\n }\n}\n\nBuilder.prototype.closeTag = function(key){\n let closeTag = \"\";\n if(this.options.unpairedTags.indexOf(key) !== -1){ //unpaired\n if(!this.options.suppressUnpairedNode) closeTag = \"/\"\n }else if(this.options.suppressEmptyNode){ //empty\n closeTag = \"/\";\n }else{\n closeTag = `>` + this.newLine;\n }else if (this.options.commentPropName !== false && key === this.options.commentPropName) {\n return this.indentate(level) + `` + this.newLine;\n }else if(key[0] === \"?\") {//PI tag\n return this.indentate(level) + '<' + key + attrStr+ '?' + this.tagEndChar; \n }else{\n let textValue = this.options.tagValueProcessor(key, val);\n textValue = this.replaceEntitiesValue(textValue);\n \n if( textValue === ''){\n return this.indentate(level) + '<' + key + attrStr + this.closeTag(key) + this.tagEndChar;\n }else{\n return this.indentate(level) + '<' + key + attrStr + '>' +\n textValue +\n ' 0 && this.options.processEntities){\n for (let i=0; i 0) {\n indentation = EOL;\n }\n return arrToStr(jArray, options, \"\", indentation);\n}\n\nfunction arrToStr(arr, options, jPath, indentation) {\n let xmlStr = \"\";\n let isPreviousElementTag = false;\n\n for (let i = 0; i < arr.length; i++) {\n const tagObj = arr[i];\n const tagName = propName(tagObj);\n if(tagName === undefined) continue;\n\n let newJPath = \"\";\n if (jPath.length === 0) newJPath = tagName\n else newJPath = `${jPath}.${tagName}`;\n\n if (tagName === options.textNodeName) {\n let tagText = tagObj[tagName];\n if (!isStopNode(newJPath, options)) {\n tagText = options.tagValueProcessor(tagName, tagText);\n tagText = replaceEntitiesValue(tagText, options);\n }\n if (isPreviousElementTag) {\n xmlStr += indentation;\n }\n xmlStr += tagText;\n isPreviousElementTag = false;\n continue;\n } else if (tagName === options.cdataPropName) {\n if (isPreviousElementTag) {\n xmlStr += indentation;\n }\n xmlStr += ``;\n isPreviousElementTag = false;\n continue;\n } else if (tagName === options.commentPropName) {\n xmlStr += indentation + ``;\n isPreviousElementTag = true;\n continue;\n } else if (tagName[0] === \"?\") {\n const attStr = attr_to_str(tagObj[\":@\"], options);\n const tempInd = tagName === \"?xml\" ? \"\" : indentation;\n let piTextNodeName = tagObj[tagName][0][options.textNodeName];\n piTextNodeName = piTextNodeName.length !== 0 ? \" \" + piTextNodeName : \"\"; //remove extra spacing\n xmlStr += tempInd + `<${tagName}${piTextNodeName}${attStr}?>`;\n isPreviousElementTag = true;\n continue;\n }\n let newIdentation = indentation;\n if (newIdentation !== \"\") {\n newIdentation += options.indentBy;\n }\n const attStr = attr_to_str(tagObj[\":@\"], options);\n const tagStart = indentation + `<${tagName}${attStr}`;\n const tagValue = arrToStr(tagObj[tagName], options, newJPath, newIdentation);\n if (options.unpairedTags.indexOf(tagName) !== -1) {\n if (options.suppressUnpairedNode) xmlStr += tagStart + \">\";\n else xmlStr += tagStart + \"/>\";\n } else if ((!tagValue || tagValue.length === 0) && options.suppressEmptyNode) {\n xmlStr += tagStart + \"/>\";\n } else if (tagValue && tagValue.endsWith(\">\")) {\n xmlStr += tagStart + `>${tagValue}${indentation}`;\n } else {\n xmlStr += tagStart + \">\";\n if (tagValue && indentation !== \"\" && (tagValue.includes(\"/>\") || tagValue.includes(\"`;\n }\n isPreviousElementTag = true;\n }\n\n return xmlStr;\n}\n\nfunction propName(obj) {\n const keys = Object.keys(obj);\n for (let i = 0; i < keys.length; i++) {\n const key = keys[i];\n if(!obj.hasOwnProperty(key)) continue;\n if (key !== \":@\") return key;\n }\n}\n\nfunction attr_to_str(attrMap, options) {\n let attrStr = \"\";\n if (attrMap && !options.ignoreAttributes) {\n for (let attr in attrMap) {\n if(!attrMap.hasOwnProperty(attr)) continue;\n let attrVal = options.attributeValueProcessor(attr, attrMap[attr]);\n attrVal = replaceEntitiesValue(attrVal, options);\n if (attrVal === true && options.suppressBooleanAttributes) {\n attrStr += ` ${attr.substr(options.attributeNamePrefix.length)}`;\n } else {\n attrStr += ` ${attr.substr(options.attributeNamePrefix.length)}=\"${attrVal}\"`;\n }\n }\n }\n return attrStr;\n}\n\nfunction isStopNode(jPath, options) {\n jPath = jPath.substr(0, jPath.length - options.textNodeName.length - 1);\n let tagName = jPath.substr(jPath.lastIndexOf(\".\") + 1);\n for (let index in options.stopNodes) {\n if (options.stopNodes[index] === jPath || options.stopNodes[index] === \"*.\" + tagName) return true;\n }\n return false;\n}\n\nfunction replaceEntitiesValue(textValue, options) {\n if (textValue && textValue.length > 0 && options.processEntities) {\n for (let i = 0; i < options.entities.length; i++) {\n const entity = options.entities[i];\n textValue = textValue.replace(entity.regex, entity.val);\n }\n }\n return textValue;\n}\nmodule.exports = toXml;\n","const util = require('../util');\n\n//TODO: handle comments\nfunction readDocType(xmlData, i){\n \n const entities = {};\n if( xmlData[i + 3] === 'O' &&\n xmlData[i + 4] === 'C' &&\n xmlData[i + 5] === 'T' &&\n xmlData[i + 6] === 'Y' &&\n xmlData[i + 7] === 'P' &&\n xmlData[i + 8] === 'E')\n { \n i = i+9;\n let angleBracketsCount = 1;\n let hasBody = false, comment = false;\n let exp = \"\";\n for(;i') { //Read tag content\n if(comment){\n if( xmlData[i - 1] === \"-\" && xmlData[i - 2] === \"-\"){\n comment = false;\n angleBracketsCount--;\n }\n }else{\n angleBracketsCount--;\n }\n if (angleBracketsCount === 0) {\n break;\n }\n }else if( xmlData[i] === '['){\n hasBody = true;\n }else{\n exp += xmlData[i];\n }\n }\n if(angleBracketsCount !== 0){\n throw new Error(`Unclosed DOCTYPE`);\n }\n }else{\n throw new Error(`Invalid Tag instead of DOCTYPE`);\n }\n return {entities, i};\n}\n\nfunction readEntityExp(xmlData,i){\n //External entities are not supported\n // \n\n //Parameter entities are not supported\n // \n\n //Internal entities are supported\n // \n \n //read EntityName\n let entityName = \"\";\n for (; i < xmlData.length && (xmlData[i] !== \"'\" && xmlData[i] !== '\"' ); i++) {\n // if(xmlData[i] === \" \") continue;\n // else \n entityName += xmlData[i];\n }\n entityName = entityName.trim();\n if(entityName.indexOf(\" \") !== -1) throw new Error(\"External entites are not supported\");\n\n //read Entity Value\n const startChar = xmlData[i++];\n let val = \"\"\n for (; i < xmlData.length && xmlData[i] !== startChar ; i++) {\n val += xmlData[i];\n }\n return [entityName, val, i];\n}\n\nfunction isComment(xmlData, i){\n if(xmlData[i+1] === '!' &&\n xmlData[i+2] === '-' &&\n xmlData[i+3] === '-') return true\n return false\n}\nfunction isEntity(xmlData, i){\n if(xmlData[i+1] === '!' &&\n xmlData[i+2] === 'E' &&\n xmlData[i+3] === 'N' &&\n xmlData[i+4] === 'T' &&\n xmlData[i+5] === 'I' &&\n xmlData[i+6] === 'T' &&\n xmlData[i+7] === 'Y') return true\n return false\n}\nfunction isElement(xmlData, i){\n if(xmlData[i+1] === '!' &&\n xmlData[i+2] === 'E' &&\n xmlData[i+3] === 'L' &&\n xmlData[i+4] === 'E' &&\n xmlData[i+5] === 'M' &&\n xmlData[i+6] === 'E' &&\n xmlData[i+7] === 'N' &&\n xmlData[i+8] === 'T') return true\n return false\n}\n\nfunction isAttlist(xmlData, i){\n if(xmlData[i+1] === '!' &&\n xmlData[i+2] === 'A' &&\n xmlData[i+3] === 'T' &&\n xmlData[i+4] === 'T' &&\n xmlData[i+5] === 'L' &&\n xmlData[i+6] === 'I' &&\n xmlData[i+7] === 'S' &&\n xmlData[i+8] === 'T') return true\n return false\n}\nfunction isNotation(xmlData, i){\n if(xmlData[i+1] === '!' &&\n xmlData[i+2] === 'N' &&\n xmlData[i+3] === 'O' &&\n xmlData[i+4] === 'T' &&\n xmlData[i+5] === 'A' &&\n xmlData[i+6] === 'T' &&\n xmlData[i+7] === 'I' &&\n xmlData[i+8] === 'O' &&\n xmlData[i+9] === 'N') return true\n return false\n}\n\nfunction validateEntityName(name){\n if (util.isName(name))\n\treturn name;\n else\n throw new Error(`Invalid entity name ${name}`);\n}\n\nmodule.exports = readDocType;\n","\nconst defaultOptions = {\n preserveOrder: false,\n attributeNamePrefix: '@_',\n attributesGroupName: false,\n textNodeName: '#text',\n ignoreAttributes: true,\n removeNSPrefix: false, // remove NS from tag name or attribute name if true\n allowBooleanAttributes: false, //a tag can have attributes without any value\n //ignoreRootElement : false,\n parseTagValue: true,\n parseAttributeValue: false,\n trimValues: true, //Trim string values of tag and attributes\n cdataPropName: false,\n numberParseOptions: {\n hex: true,\n leadingZeros: true,\n eNotation: true\n },\n tagValueProcessor: function(tagName, val) {\n return val;\n },\n attributeValueProcessor: function(attrName, val) {\n return val;\n },\n stopNodes: [], //nested tags will not be parsed even for errors\n alwaysCreateTextNode: false,\n isArray: () => false,\n commentPropName: false,\n unpairedTags: [],\n processEntities: true,\n htmlEntities: false,\n ignoreDeclaration: false,\n ignorePiTags: false,\n transformTagName: false,\n transformAttributeName: false,\n updateTag: function(tagName, jPath, attrs){\n return tagName\n },\n // skipEmptyListItem: false\n};\n \nconst buildOptions = function(options) {\n return Object.assign({}, defaultOptions, options);\n};\n\nexports.buildOptions = buildOptions;\nexports.defaultOptions = defaultOptions;","'use strict';\n///@ts-check\n\nconst util = require('../util');\nconst xmlNode = require('./xmlNode');\nconst readDocType = require(\"./DocTypeReader\");\nconst toNumber = require(\"strnum\");\nconst getIgnoreAttributesFn = require('../ignoreAttributes')\n\n// const regx =\n// '<((!\\\\[CDATA\\\\[([\\\\s\\\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\\\/)(NAME)\\\\s*>))([^<]*)'\n// .replace(/NAME/g, util.nameRegexp);\n\n//const tagsRegx = new RegExp(\"<(\\\\/?[\\\\w:\\\\-\\._]+)([^>]*)>(\\\\s*\"+cdataRegx+\")*([^<]+)?\",\"g\");\n//const tagsRegx = new RegExp(\"<(\\\\/?)((\\\\w*:)?([\\\\w:\\\\-\\._]+))([^>]*)>([^<]*)(\"+cdataRegx+\"([^<]*))*([^<]+)?\",\"g\");\n\nclass OrderedObjParser{\n constructor(options){\n this.options = options;\n this.currentNode = null;\n this.tagsNodeStack = [];\n this.docTypeEntities = {};\n this.lastEntities = {\n \"apos\" : { regex: /&(apos|#39|#x27);/g, val : \"'\"},\n \"gt\" : { regex: /&(gt|#62|#x3E);/g, val : \">\"},\n \"lt\" : { regex: /&(lt|#60|#x3C);/g, val : \"<\"},\n \"quot\" : { regex: /&(quot|#34|#x22);/g, val : \"\\\"\"},\n };\n this.ampEntity = { regex: /&(amp|#38|#x26);/g, val : \"&\"};\n this.htmlEntities = {\n \"space\": { regex: /&(nbsp|#160);/g, val: \" \" },\n // \"lt\" : { regex: /&(lt|#60);/g, val: \"<\" },\n // \"gt\" : { regex: /&(gt|#62);/g, val: \">\" },\n // \"amp\" : { regex: /&(amp|#38);/g, val: \"&\" },\n // \"quot\" : { regex: /&(quot|#34);/g, val: \"\\\"\" },\n // \"apos\" : { regex: /&(apos|#39);/g, val: \"'\" },\n \"cent\" : { regex: /&(cent|#162);/g, val: \"¢\" },\n \"pound\" : { regex: /&(pound|#163);/g, val: \"£\" },\n \"yen\" : { regex: /&(yen|#165);/g, val: \"¥\" },\n \"euro\" : { regex: /&(euro|#8364);/g, val: \"€\" },\n \"copyright\" : { regex: /&(copy|#169);/g, val: \"©\" },\n \"reg\" : { regex: /&(reg|#174);/g, val: \"®\" },\n \"inr\" : { regex: /&(inr|#8377);/g, val: \"₹\" },\n \"num_dec\": { regex: /&#([0-9]{1,7});/g, val : (_, str) => String.fromCharCode(Number.parseInt(str, 10)) },\n \"num_hex\": { regex: /&#x([0-9a-fA-F]{1,6});/g, val : (_, str) => String.fromCharCode(Number.parseInt(str, 16)) },\n };\n this.addExternalEntities = addExternalEntities;\n this.parseXml = parseXml;\n this.parseTextData = parseTextData;\n this.resolveNameSpace = resolveNameSpace;\n this.buildAttributesMap = buildAttributesMap;\n this.isItStopNode = isItStopNode;\n this.replaceEntitiesValue = replaceEntitiesValue;\n this.readStopNodeData = readStopNodeData;\n this.saveTextToParentTag = saveTextToParentTag;\n this.addChild = addChild;\n this.ignoreAttributesFn = getIgnoreAttributesFn(this.options.ignoreAttributes)\n }\n\n}\n\nfunction addExternalEntities(externalEntities){\n const entKeys = Object.keys(externalEntities);\n for (let i = 0; i < entKeys.length; i++) {\n const ent = entKeys[i];\n this.lastEntities[ent] = {\n regex: new RegExp(\"&\"+ent+\";\",\"g\"),\n val : externalEntities[ent]\n }\n }\n}\n\n/**\n * @param {string} val\n * @param {string} tagName\n * @param {string} jPath\n * @param {boolean} dontTrim\n * @param {boolean} hasAttributes\n * @param {boolean} isLeafNode\n * @param {boolean} escapeEntities\n */\nfunction parseTextData(val, tagName, jPath, dontTrim, hasAttributes, isLeafNode, escapeEntities) {\n if (val !== undefined) {\n if (this.options.trimValues && !dontTrim) {\n val = val.trim();\n }\n if(val.length > 0){\n if(!escapeEntities) val = this.replaceEntitiesValue(val);\n \n const newval = this.options.tagValueProcessor(tagName, val, jPath, hasAttributes, isLeafNode);\n if(newval === null || newval === undefined){\n //don't parse\n return val;\n }else if(typeof newval !== typeof val || newval !== val){\n //overwrite\n return newval;\n }else if(this.options.trimValues){\n return parseValue(val, this.options.parseTagValue, this.options.numberParseOptions);\n }else{\n const trimmedVal = val.trim();\n if(trimmedVal === val){\n return parseValue(val, this.options.parseTagValue, this.options.numberParseOptions);\n }else{\n return val;\n }\n }\n }\n }\n}\n\nfunction resolveNameSpace(tagname) {\n if (this.options.removeNSPrefix) {\n const tags = tagname.split(':');\n const prefix = tagname.charAt(0) === '/' ? '/' : '';\n if (tags[0] === 'xmlns') {\n return '';\n }\n if (tags.length === 2) {\n tagname = prefix + tags[1];\n }\n }\n return tagname;\n}\n\n//TODO: change regex to capture NS\n//const attrsRegx = new RegExp(\"([\\\\w\\\\-\\\\.\\\\:]+)\\\\s*=\\\\s*(['\\\"])((.|\\n)*?)\\\\2\",\"gm\");\nconst attrsRegx = new RegExp('([^\\\\s=]+)\\\\s*(=\\\\s*([\\'\"])([\\\\s\\\\S]*?)\\\\3)?', 'gm');\n\nfunction buildAttributesMap(attrStr, jPath, tagName) {\n if (this.options.ignoreAttributes !== true && typeof attrStr === 'string') {\n // attrStr = attrStr.replace(/\\r?\\n/g, ' ');\n //attrStr = attrStr || attrStr.trim();\n\n const matches = util.getAllMatches(attrStr, attrsRegx);\n const len = matches.length; //don't make it inline\n const attrs = {};\n for (let i = 0; i < len; i++) {\n const attrName = this.resolveNameSpace(matches[i][1]);\n if (this.ignoreAttributesFn(attrName, jPath)) {\n continue\n }\n let oldVal = matches[i][4];\n let aName = this.options.attributeNamePrefix + attrName;\n if (attrName.length) {\n if (this.options.transformAttributeName) {\n aName = this.options.transformAttributeName(aName);\n }\n if(aName === \"__proto__\") aName = \"#__proto__\";\n if (oldVal !== undefined) {\n if (this.options.trimValues) {\n oldVal = oldVal.trim();\n }\n oldVal = this.replaceEntitiesValue(oldVal);\n const newVal = this.options.attributeValueProcessor(attrName, oldVal, jPath);\n if(newVal === null || newVal === undefined){\n //don't parse\n attrs[aName] = oldVal;\n }else if(typeof newVal !== typeof oldVal || newVal !== oldVal){\n //overwrite\n attrs[aName] = newVal;\n }else{\n //parse\n attrs[aName] = parseValue(\n oldVal,\n this.options.parseAttributeValue,\n this.options.numberParseOptions\n );\n }\n } else if (this.options.allowBooleanAttributes) {\n attrs[aName] = true;\n }\n }\n }\n if (!Object.keys(attrs).length) {\n return;\n }\n if (this.options.attributesGroupName) {\n const attrCollection = {};\n attrCollection[this.options.attributesGroupName] = attrs;\n return attrCollection;\n }\n return attrs\n }\n}\n\nconst parseXml = function(xmlData) {\n xmlData = xmlData.replace(/\\r\\n?/g, \"\\n\"); //TODO: remove this line\n const xmlObj = new xmlNode('!xml');\n let currentNode = xmlObj;\n let textData = \"\";\n let jPath = \"\";\n for(let i=0; i< xmlData.length; i++){//for each char in XML data\n const ch = xmlData[i];\n if(ch === '<'){\n // const nextIndex = i+1;\n // const _2ndChar = xmlData[nextIndex];\n if( xmlData[i+1] === '/') {//Closing Tag\n const closeIndex = findClosingIndex(xmlData, \">\", i, \"Closing Tag is not closed.\")\n let tagName = xmlData.substring(i+2,closeIndex).trim();\n\n if(this.options.removeNSPrefix){\n const colonIndex = tagName.indexOf(\":\");\n if(colonIndex !== -1){\n tagName = tagName.substr(colonIndex+1);\n }\n }\n\n if(this.options.transformTagName) {\n tagName = this.options.transformTagName(tagName);\n }\n\n if(currentNode){\n textData = this.saveTextToParentTag(textData, currentNode, jPath);\n }\n\n //check if last tag of nested tag was unpaired tag\n const lastTagName = jPath.substring(jPath.lastIndexOf(\".\")+1);\n if(tagName && this.options.unpairedTags.indexOf(tagName) !== -1 ){\n throw new Error(`Unpaired tag can not be used as closing tag: `);\n }\n let propIndex = 0\n if(lastTagName && this.options.unpairedTags.indexOf(lastTagName) !== -1 ){\n propIndex = jPath.lastIndexOf('.', jPath.lastIndexOf('.')-1)\n this.tagsNodeStack.pop();\n }else{\n propIndex = jPath.lastIndexOf(\".\");\n }\n jPath = jPath.substring(0, propIndex);\n\n currentNode = this.tagsNodeStack.pop();//avoid recursion, set the parent tag scope\n textData = \"\";\n i = closeIndex;\n } else if( xmlData[i+1] === '?') {\n\n let tagData = readTagExp(xmlData,i, false, \"?>\");\n if(!tagData) throw new Error(\"Pi Tag is not closed.\");\n\n textData = this.saveTextToParentTag(textData, currentNode, jPath);\n if( (this.options.ignoreDeclaration && tagData.tagName === \"?xml\") || this.options.ignorePiTags){\n\n }else{\n \n const childNode = new xmlNode(tagData.tagName);\n childNode.add(this.options.textNodeName, \"\");\n \n if(tagData.tagName !== tagData.tagExp && tagData.attrExpPresent){\n childNode[\":@\"] = this.buildAttributesMap(tagData.tagExp, jPath, tagData.tagName);\n }\n this.addChild(currentNode, childNode, jPath)\n\n }\n\n\n i = tagData.closeIndex + 1;\n } else if(xmlData.substr(i + 1, 3) === '!--') {\n const endIndex = findClosingIndex(xmlData, \"-->\", i+4, \"Comment is not closed.\")\n if(this.options.commentPropName){\n const comment = xmlData.substring(i + 4, endIndex - 2);\n\n textData = this.saveTextToParentTag(textData, currentNode, jPath);\n\n currentNode.add(this.options.commentPropName, [ { [this.options.textNodeName] : comment } ]);\n }\n i = endIndex;\n } else if( xmlData.substr(i + 1, 2) === '!D') {\n const result = readDocType(xmlData, i);\n this.docTypeEntities = result.entities;\n i = result.i;\n }else if(xmlData.substr(i + 1, 2) === '![') {\n const closeIndex = findClosingIndex(xmlData, \"]]>\", i, \"CDATA is not closed.\") - 2;\n const tagExp = xmlData.substring(i + 9,closeIndex);\n\n textData = this.saveTextToParentTag(textData, currentNode, jPath);\n\n let val = this.parseTextData(tagExp, currentNode.tagname, jPath, true, false, true, true);\n if(val == undefined) val = \"\";\n\n //cdata should be set even if it is 0 length string\n if(this.options.cdataPropName){\n currentNode.add(this.options.cdataPropName, [ { [this.options.textNodeName] : tagExp } ]);\n }else{\n currentNode.add(this.options.textNodeName, val);\n }\n \n i = closeIndex + 2;\n }else {//Opening tag\n let result = readTagExp(xmlData,i, this.options.removeNSPrefix);\n let tagName= result.tagName;\n const rawTagName = result.rawTagName;\n let tagExp = result.tagExp;\n let attrExpPresent = result.attrExpPresent;\n let closeIndex = result.closeIndex;\n\n if (this.options.transformTagName) {\n tagName = this.options.transformTagName(tagName);\n }\n \n //save text as child node\n if (currentNode && textData) {\n if(currentNode.tagname !== '!xml'){\n //when nested tag is found\n textData = this.saveTextToParentTag(textData, currentNode, jPath, false);\n }\n }\n\n //check if last tag was unpaired tag\n const lastTag = currentNode;\n if(lastTag && this.options.unpairedTags.indexOf(lastTag.tagname) !== -1 ){\n currentNode = this.tagsNodeStack.pop();\n jPath = jPath.substring(0, jPath.lastIndexOf(\".\"));\n }\n if(tagName !== xmlObj.tagname){\n jPath += jPath ? \".\" + tagName : tagName;\n }\n if (this.isItStopNode(this.options.stopNodes, jPath, tagName)) {\n let tagContent = \"\";\n //self-closing tag\n if(tagExp.length > 0 && tagExp.lastIndexOf(\"/\") === tagExp.length - 1){\n if(tagName[tagName.length - 1] === \"/\"){ //remove trailing '/'\n tagName = tagName.substr(0, tagName.length - 1);\n jPath = jPath.substr(0, jPath.length - 1);\n tagExp = tagName;\n }else{\n tagExp = tagExp.substr(0, tagExp.length - 1);\n }\n i = result.closeIndex;\n }\n //unpaired tag\n else if(this.options.unpairedTags.indexOf(tagName) !== -1){\n \n i = result.closeIndex;\n }\n //normal tag\n else{\n //read until closing tag is found\n const result = this.readStopNodeData(xmlData, rawTagName, closeIndex + 1);\n if(!result) throw new Error(`Unexpected end of ${rawTagName}`);\n i = result.i;\n tagContent = result.tagContent;\n }\n\n const childNode = new xmlNode(tagName);\n if(tagName !== tagExp && attrExpPresent){\n childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n }\n if(tagContent) {\n tagContent = this.parseTextData(tagContent, tagName, jPath, true, attrExpPresent, true, true);\n }\n \n jPath = jPath.substr(0, jPath.lastIndexOf(\".\"));\n childNode.add(this.options.textNodeName, tagContent);\n \n this.addChild(currentNode, childNode, jPath)\n }else{\n //selfClosing tag\n if(tagExp.length > 0 && tagExp.lastIndexOf(\"/\") === tagExp.length - 1){\n if(tagName[tagName.length - 1] === \"/\"){ //remove trailing '/'\n tagName = tagName.substr(0, tagName.length - 1);\n jPath = jPath.substr(0, jPath.length - 1);\n tagExp = tagName;\n }else{\n tagExp = tagExp.substr(0, tagExp.length - 1);\n }\n \n if(this.options.transformTagName) {\n tagName = this.options.transformTagName(tagName);\n }\n\n const childNode = new xmlNode(tagName);\n if(tagName !== tagExp && attrExpPresent){\n childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n }\n this.addChild(currentNode, childNode, jPath)\n jPath = jPath.substr(0, jPath.lastIndexOf(\".\"));\n }\n //opening tag\n else{\n const childNode = new xmlNode( tagName);\n this.tagsNodeStack.push(currentNode);\n \n if(tagName !== tagExp && attrExpPresent){\n childNode[\":@\"] = this.buildAttributesMap(tagExp, jPath, tagName);\n }\n this.addChild(currentNode, childNode, jPath)\n currentNode = childNode;\n }\n textData = \"\";\n i = closeIndex;\n }\n }\n }else{\n textData += xmlData[i];\n }\n }\n return xmlObj.child;\n}\n\nfunction addChild(currentNode, childNode, jPath){\n const result = this.options.updateTag(childNode.tagname, jPath, childNode[\":@\"])\n if(result === false){\n }else if(typeof result === \"string\"){\n childNode.tagname = result\n currentNode.addChild(childNode);\n }else{\n currentNode.addChild(childNode);\n }\n}\n\nconst replaceEntitiesValue = function(val){\n\n if(this.options.processEntities){\n for(let entityName in this.docTypeEntities){\n const entity = this.docTypeEntities[entityName];\n val = val.replace( entity.regx, entity.val);\n }\n for(let entityName in this.lastEntities){\n const entity = this.lastEntities[entityName];\n val = val.replace( entity.regex, entity.val);\n }\n if(this.options.htmlEntities){\n for(let entityName in this.htmlEntities){\n const entity = this.htmlEntities[entityName];\n val = val.replace( entity.regex, entity.val);\n }\n }\n val = val.replace( this.ampEntity.regex, this.ampEntity.val);\n }\n return val;\n}\nfunction saveTextToParentTag(textData, currentNode, jPath, isLeafNode) {\n if (textData) { //store previously collected data as textNode\n if(isLeafNode === undefined) isLeafNode = Object.keys(currentNode.child).length === 0\n \n textData = this.parseTextData(textData,\n currentNode.tagname,\n jPath,\n false,\n currentNode[\":@\"] ? Object.keys(currentNode[\":@\"]).length !== 0 : false,\n isLeafNode);\n\n if (textData !== undefined && textData !== \"\")\n currentNode.add(this.options.textNodeName, textData);\n textData = \"\";\n }\n return textData;\n}\n\n//TODO: use jPath to simplify the logic\n/**\n * \n * @param {string[]} stopNodes \n * @param {string} jPath\n * @param {string} currentTagName \n */\nfunction isItStopNode(stopNodes, jPath, currentTagName){\n const allNodesExp = \"*.\" + currentTagName;\n for (const stopNodePath in stopNodes) {\n const stopNodeExp = stopNodes[stopNodePath];\n if( allNodesExp === stopNodeExp || jPath === stopNodeExp ) return true;\n }\n return false;\n}\n\n/**\n * Returns the tag Expression and where it is ending handling single-double quotes situation\n * @param {string} xmlData \n * @param {number} i starting index\n * @returns \n */\nfunction tagExpWithClosingIndex(xmlData, i, closingChar = \">\"){\n let attrBoundary;\n let tagExp = \"\";\n for (let index = i; index < xmlData.length; index++) {\n let ch = xmlData[index];\n if (attrBoundary) {\n if (ch === attrBoundary) attrBoundary = \"\";//reset\n } else if (ch === '\"' || ch === \"'\") {\n attrBoundary = ch;\n } else if (ch === closingChar[0]) {\n if(closingChar[1]){\n if(xmlData[index + 1] === closingChar[1]){\n return {\n data: tagExp,\n index: index\n }\n }\n }else{\n return {\n data: tagExp,\n index: index\n }\n }\n } else if (ch === '\\t') {\n ch = \" \"\n }\n tagExp += ch;\n }\n}\n\nfunction findClosingIndex(xmlData, str, i, errMsg){\n const closingIndex = xmlData.indexOf(str, i);\n if(closingIndex === -1){\n throw new Error(errMsg)\n }else{\n return closingIndex + str.length - 1;\n }\n}\n\nfunction readTagExp(xmlData,i, removeNSPrefix, closingChar = \">\"){\n const result = tagExpWithClosingIndex(xmlData, i+1, closingChar);\n if(!result) return;\n let tagExp = result.data;\n const closeIndex = result.index;\n const separatorIndex = tagExp.search(/\\s/);\n let tagName = tagExp;\n let attrExpPresent = true;\n if(separatorIndex !== -1){//separate tag name and attributes expression\n tagName = tagExp.substring(0, separatorIndex);\n tagExp = tagExp.substring(separatorIndex + 1).trimStart();\n }\n\n const rawTagName = tagName;\n if(removeNSPrefix){\n const colonIndex = tagName.indexOf(\":\");\n if(colonIndex !== -1){\n tagName = tagName.substr(colonIndex+1);\n attrExpPresent = tagName !== result.data.substr(colonIndex + 1);\n }\n }\n\n return {\n tagName: tagName,\n tagExp: tagExp,\n closeIndex: closeIndex,\n attrExpPresent: attrExpPresent,\n rawTagName: rawTagName,\n }\n}\n/**\n * find paired tag for a stop node\n * @param {string} xmlData \n * @param {string} tagName \n * @param {number} i \n */\nfunction readStopNodeData(xmlData, tagName, i){\n const startIndex = i;\n // Starting at 1 since we already have an open tag\n let openTagCount = 1;\n\n for (; i < xmlData.length; i++) {\n if( xmlData[i] === \"<\"){ \n if (xmlData[i+1] === \"/\") {//close tag\n const closeIndex = findClosingIndex(xmlData, \">\", i, `${tagName} is not closed`);\n let closeTagName = xmlData.substring(i+2,closeIndex).trim();\n if(closeTagName === tagName){\n openTagCount--;\n if (openTagCount === 0) {\n return {\n tagContent: xmlData.substring(startIndex, i),\n i : closeIndex\n }\n }\n }\n i=closeIndex;\n } else if(xmlData[i+1] === '?') { \n const closeIndex = findClosingIndex(xmlData, \"?>\", i+1, \"StopNode is not closed.\")\n i=closeIndex;\n } else if(xmlData.substr(i + 1, 3) === '!--') { \n const closeIndex = findClosingIndex(xmlData, \"-->\", i+3, \"StopNode is not closed.\")\n i=closeIndex;\n } else if(xmlData.substr(i + 1, 2) === '![') { \n const closeIndex = findClosingIndex(xmlData, \"]]>\", i, \"StopNode is not closed.\") - 2;\n i=closeIndex;\n } else {\n const tagData = readTagExp(xmlData, i, '>')\n\n if (tagData) {\n const openTagName = tagData && tagData.tagName;\n if (openTagName === tagName && tagData.tagExp[tagData.tagExp.length-1] !== \"/\") {\n openTagCount++;\n }\n i=tagData.closeIndex;\n }\n }\n }\n }//end for loop\n}\n\nfunction parseValue(val, shouldParse, options) {\n if (shouldParse && typeof val === 'string') {\n //console.log(options)\n const newval = val.trim();\n if(newval === 'true' ) return true;\n else if(newval === 'false' ) return false;\n else return toNumber(val, options);\n } else {\n if (util.isExist(val)) {\n return val;\n } else {\n return '';\n }\n }\n}\n\n\nmodule.exports = OrderedObjParser;\n","const { buildOptions} = require(\"./OptionsBuilder\");\nconst OrderedObjParser = require(\"./OrderedObjParser\");\nconst { prettify} = require(\"./node2json\");\nconst validator = require('../validator');\n\nclass XMLParser{\n \n constructor(options){\n this.externalEntities = {};\n this.options = buildOptions(options);\n \n }\n /**\n * Parse XML dats to JS object \n * @param {string|Buffer} xmlData \n * @param {boolean|Object} validationOption \n */\n parse(xmlData,validationOption){\n if(typeof xmlData === \"string\"){\n }else if( xmlData.toString){\n xmlData = xmlData.toString();\n }else{\n throw new Error(\"XML data is accepted in String or Bytes[] form.\")\n }\n if( validationOption){\n if(validationOption === true) validationOption = {}; //validate with default options\n \n const result = validator.validate(xmlData, validationOption);\n if (result !== true) {\n throw Error( `${result.err.msg}:${result.err.line}:${result.err.col}` )\n }\n }\n const orderedObjParser = new OrderedObjParser(this.options);\n orderedObjParser.addExternalEntities(this.externalEntities);\n const orderedResult = orderedObjParser.parseXml(xmlData);\n if(this.options.preserveOrder || orderedResult === undefined) return orderedResult;\n else return prettify(orderedResult, this.options);\n }\n\n /**\n * Add Entity which is not by default supported by this library\n * @param {string} key \n * @param {string} value \n */\n addEntity(key, value){\n if(value.indexOf(\"&\") !== -1){\n throw new Error(\"Entity value can't have '&'\")\n }else if(key.indexOf(\"&\") !== -1 || key.indexOf(\";\") !== -1){\n throw new Error(\"An entity must be set without '&' and ';'. Eg. use '#xD' for ' '\")\n }else if(value === \"&\"){\n throw new Error(\"An entity with value '&' is not permitted\");\n }else{\n this.externalEntities[key] = value;\n }\n }\n}\n\nmodule.exports = XMLParser;","'use strict';\n\n/**\n * \n * @param {array} node \n * @param {any} options \n * @returns \n */\nfunction prettify(node, options){\n return compress( node, options);\n}\n\n/**\n * \n * @param {array} arr \n * @param {object} options \n * @param {string} jPath \n * @returns object\n */\nfunction compress(arr, options, jPath){\n let text;\n const compressedObj = {};\n for (let i = 0; i < arr.length; i++) {\n const tagObj = arr[i];\n const property = propName(tagObj);\n let newJpath = \"\";\n if(jPath === undefined) newJpath = property;\n else newJpath = jPath + \".\" + property;\n\n if(property === options.textNodeName){\n if(text === undefined) text = tagObj[property];\n else text += \"\" + tagObj[property];\n }else if(property === undefined){\n continue;\n }else if(tagObj[property]){\n \n let val = compress(tagObj[property], options, newJpath);\n const isLeaf = isLeafTag(val, options);\n\n if(tagObj[\":@\"]){\n assignAttributes( val, tagObj[\":@\"], newJpath, options);\n }else if(Object.keys(val).length === 1 && val[options.textNodeName] !== undefined && !options.alwaysCreateTextNode){\n val = val[options.textNodeName];\n }else if(Object.keys(val).length === 0){\n if(options.alwaysCreateTextNode) val[options.textNodeName] = \"\";\n else val = \"\";\n }\n\n if(compressedObj[property] !== undefined && compressedObj.hasOwnProperty(property)) {\n if(!Array.isArray(compressedObj[property])) {\n compressedObj[property] = [ compressedObj[property] ];\n }\n compressedObj[property].push(val);\n }else{\n //TODO: if a node is not an array, then check if it should be an array\n //also determine if it is a leaf node\n if (options.isArray(property, newJpath, isLeaf )) {\n compressedObj[property] = [val];\n }else{\n compressedObj[property] = val;\n }\n }\n }\n \n }\n // if(text && text.length > 0) compressedObj[options.textNodeName] = text;\n if(typeof text === \"string\"){\n if(text.length > 0) compressedObj[options.textNodeName] = text;\n }else if(text !== undefined) compressedObj[options.textNodeName] = text;\n return compressedObj;\n}\n\nfunction propName(obj){\n const keys = Object.keys(obj);\n for (let i = 0; i < keys.length; i++) {\n const key = keys[i];\n if(key !== \":@\") return key;\n }\n}\n\nfunction assignAttributes(obj, attrMap, jpath, options){\n if (attrMap) {\n const keys = Object.keys(attrMap);\n const len = keys.length; //don't make it inline\n for (let i = 0; i < len; i++) {\n const atrrName = keys[i];\n if (options.isArray(atrrName, jpath + \".\" + atrrName, true, true)) {\n obj[atrrName] = [ attrMap[atrrName] ];\n } else {\n obj[atrrName] = attrMap[atrrName];\n }\n }\n }\n}\n\nfunction isLeafTag(obj, options){\n const { textNodeName } = options;\n const propCount = Object.keys(obj).length;\n \n if (propCount === 0) {\n return true;\n }\n\n if (\n propCount === 1 &&\n (obj[textNodeName] || typeof obj[textNodeName] === \"boolean\" || obj[textNodeName] === 0)\n ) {\n return true;\n }\n\n return false;\n}\nexports.prettify = prettify;\n","'use strict';\n\nclass XmlNode{\n constructor(tagname) {\n this.tagname = tagname;\n this.child = []; //nested tags, text, cdata, comments in order\n this[\":@\"] = {}; //attributes map\n }\n add(key,val){\n // this.child.push( {name : key, val: val, isCdata: isCdata });\n if(key === \"__proto__\") key = \"#__proto__\";\n this.child.push( {[key]: val });\n }\n addChild(node) {\n if(node.tagname === \"__proto__\") node.tagname = \"#__proto__\";\n if(node[\":@\"] && Object.keys(node[\":@\"]).length > 0){\n this.child.push( { [node.tagname]: node.child, [\":@\"]: node[\":@\"] });\n }else{\n this.child.push( { [node.tagname]: node.child });\n }\n };\n};\n\n\nmodule.exports = XmlNode;","// A simple implementation of make-array\nfunction makeArray (subject) {\n return Array.isArray(subject)\n ? subject\n : [subject]\n}\n\nconst EMPTY = ''\nconst SPACE = ' '\nconst ESCAPE = '\\\\'\nconst REGEX_TEST_BLANK_LINE = /^\\s+$/\nconst REGEX_INVALID_TRAILING_BACKSLASH = /(?:[^\\\\]|^)\\\\$/\nconst REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION = /^\\\\!/\nconst REGEX_REPLACE_LEADING_EXCAPED_HASH = /^\\\\#/\nconst REGEX_SPLITALL_CRLF = /\\r?\\n/g\n// /foo,\n// ./foo,\n// ../foo,\n// .\n// ..\nconst REGEX_TEST_INVALID_PATH = /^\\.*\\/|^\\.+$/\n\nconst SLASH = '/'\n\n// Do not use ternary expression here, since \"istanbul ignore next\" is buggy\nlet TMP_KEY_IGNORE = 'node-ignore'\n/* istanbul ignore else */\nif (typeof Symbol !== 'undefined') {\n TMP_KEY_IGNORE = Symbol.for('node-ignore')\n}\nconst KEY_IGNORE = TMP_KEY_IGNORE\n\nconst define = (object, key, value) =>\n Object.defineProperty(object, key, {value})\n\nconst REGEX_REGEXP_RANGE = /([0-z])-([0-z])/g\n\nconst RETURN_FALSE = () => false\n\n// Sanitize the range of a regular expression\n// The cases are complicated, see test cases for details\nconst sanitizeRange = range => range.replace(\n REGEX_REGEXP_RANGE,\n (match, from, to) => from.charCodeAt(0) <= to.charCodeAt(0)\n ? match\n // Invalid range (out of order) which is ok for gitignore rules but\n // fatal for JavaScript regular expression, so eliminate it.\n : EMPTY\n)\n\n// See fixtures #59\nconst cleanRangeBackSlash = slashes => {\n const {length} = slashes\n return slashes.slice(0, length - length % 2)\n}\n\n// > If the pattern ends with a slash,\n// > it is removed for the purpose of the following description,\n// > but it would only find a match with a directory.\n// > In other words, foo/ will match a directory foo and paths underneath it,\n// > but will not match a regular file or a symbolic link foo\n// > (this is consistent with the way how pathspec works in general in Git).\n// '`foo/`' will not match regular file '`foo`' or symbolic link '`foo`'\n// -> ignore-rules will not deal with it, because it costs extra `fs.stat` call\n// you could use option `mark: true` with `glob`\n\n// '`foo/`' should not continue with the '`..`'\nconst REPLACERS = [\n\n [\n // remove BOM\n // TODO:\n // Other similar zero-width characters?\n /^\\uFEFF/,\n () => EMPTY\n ],\n\n // > Trailing spaces are ignored unless they are quoted with backslash (\"\\\")\n [\n // (a\\ ) -> (a )\n // (a ) -> (a)\n // (a ) -> (a)\n // (a \\ ) -> (a )\n /((?:\\\\\\\\)*?)(\\\\?\\s+)$/,\n (_, m1, m2) => m1 + (\n m2.indexOf('\\\\') === 0\n ? SPACE\n : EMPTY\n )\n ],\n\n // replace (\\ ) with ' '\n // (\\ ) -> ' '\n // (\\\\ ) -> '\\\\ '\n // (\\\\\\ ) -> '\\\\ '\n [\n /(\\\\+?)\\s/g,\n (_, m1) => {\n const {length} = m1\n return m1.slice(0, length - length % 2) + SPACE\n }\n ],\n\n // Escape metacharacters\n // which is written down by users but means special for regular expressions.\n\n // > There are 12 characters with special meanings:\n // > - the backslash \\,\n // > - the caret ^,\n // > - the dollar sign $,\n // > - the period or dot .,\n // > - the vertical bar or pipe symbol |,\n // > - the question mark ?,\n // > - the asterisk or star *,\n // > - the plus sign +,\n // > - the opening parenthesis (,\n // > - the closing parenthesis ),\n // > - and the opening square bracket [,\n // > - the opening curly brace {,\n // > These special characters are often called \"metacharacters\".\n [\n /[\\\\$.|*+(){^]/g,\n match => `\\\\${match}`\n ],\n\n [\n // > a question mark (?) matches a single character\n /(?!\\\\)\\?/g,\n () => '[^/]'\n ],\n\n // leading slash\n [\n\n // > A leading slash matches the beginning of the pathname.\n // > For example, \"/*.c\" matches \"cat-file.c\" but not \"mozilla-sha1/sha1.c\".\n // A leading slash matches the beginning of the pathname\n /^\\//,\n () => '^'\n ],\n\n // replace special metacharacter slash after the leading slash\n [\n /\\//g,\n () => '\\\\/'\n ],\n\n [\n // > A leading \"**\" followed by a slash means match in all directories.\n // > For example, \"**/foo\" matches file or directory \"foo\" anywhere,\n // > the same as pattern \"foo\".\n // > \"**/foo/bar\" matches file or directory \"bar\" anywhere that is directly\n // > under directory \"foo\".\n // Notice that the '*'s have been replaced as '\\\\*'\n /^\\^*\\\\\\*\\\\\\*\\\\\\//,\n\n // '**/foo' <-> 'foo'\n () => '^(?:.*\\\\/)?'\n ],\n\n // starting\n [\n // there will be no leading '/'\n // (which has been replaced by section \"leading slash\")\n // If starts with '**', adding a '^' to the regular expression also works\n /^(?=[^^])/,\n function startingReplacer () {\n // If has a slash `/` at the beginning or middle\n return !/\\/(?!$)/.test(this)\n // > Prior to 2.22.1\n // > If the pattern does not contain a slash /,\n // > Git treats it as a shell glob pattern\n // Actually, if there is only a trailing slash,\n // git also treats it as a shell glob pattern\n\n // After 2.22.1 (compatible but clearer)\n // > If there is a separator at the beginning or middle (or both)\n // > of the pattern, then the pattern is relative to the directory\n // > level of the particular .gitignore file itself.\n // > Otherwise the pattern may also match at any level below\n // > the .gitignore level.\n ? '(?:^|\\\\/)'\n\n // > Otherwise, Git treats the pattern as a shell glob suitable for\n // > consumption by fnmatch(3)\n : '^'\n }\n ],\n\n // two globstars\n [\n // Use lookahead assertions so that we could match more than one `'/**'`\n /\\\\\\/\\\\\\*\\\\\\*(?=\\\\\\/|$)/g,\n\n // Zero, one or several directories\n // should not use '*', or it will be replaced by the next replacer\n\n // Check if it is not the last `'/**'`\n (_, index, str) => index + 6 < str.length\n\n // case: /**/\n // > A slash followed by two consecutive asterisks then a slash matches\n // > zero or more directories.\n // > For example, \"a/**/b\" matches \"a/b\", \"a/x/b\", \"a/x/y/b\" and so on.\n // '/**/'\n ? '(?:\\\\/[^\\\\/]+)*'\n\n // case: /**\n // > A trailing `\"/**\"` matches everything inside.\n\n // #21: everything inside but it should not include the current folder\n : '\\\\/.+'\n ],\n\n // normal intermediate wildcards\n [\n // Never replace escaped '*'\n // ignore rule '\\*' will match the path '*'\n\n // 'abc.*/' -> go\n // 'abc.*' -> skip this rule,\n // coz trailing single wildcard will be handed by [trailing wildcard]\n /(^|[^\\\\]+)(\\\\\\*)+(?=.+)/g,\n\n // '*.js' matches '.js'\n // '*.js' doesn't match 'abc'\n (_, p1, p2) => {\n // 1.\n // > An asterisk \"*\" matches anything except a slash.\n // 2.\n // > Other consecutive asterisks are considered regular asterisks\n // > and will match according to the previous rules.\n const unescaped = p2.replace(/\\\\\\*/g, '[^\\\\/]*')\n return p1 + unescaped\n }\n ],\n\n [\n // unescape, revert step 3 except for back slash\n // For example, if a user escape a '\\\\*',\n // after step 3, the result will be '\\\\\\\\\\\\*'\n /\\\\\\\\\\\\(?=[$.|*+(){^])/g,\n () => ESCAPE\n ],\n\n [\n // '\\\\\\\\' -> '\\\\'\n /\\\\\\\\/g,\n () => ESCAPE\n ],\n\n [\n // > The range notation, e.g. [a-zA-Z],\n // > can be used to match one of the characters in a range.\n\n // `\\` is escaped by step 3\n /(\\\\)?\\[([^\\]/]*?)(\\\\*)($|\\])/g,\n (match, leadEscape, range, endEscape, close) => leadEscape === ESCAPE\n // '\\\\[bar]' -> '\\\\\\\\[bar\\\\]'\n ? `\\\\[${range}${cleanRangeBackSlash(endEscape)}${close}`\n : close === ']'\n ? endEscape.length % 2 === 0\n // A normal case, and it is a range notation\n // '[bar]'\n // '[bar\\\\\\\\]'\n ? `[${sanitizeRange(range)}${endEscape}]`\n // Invalid range notaton\n // '[bar\\\\]' -> '[bar\\\\\\\\]'\n : '[]'\n : '[]'\n ],\n\n // ending\n [\n // 'js' will not match 'js.'\n // 'ab' will not match 'abc'\n /(?:[^*])$/,\n\n // WTF!\n // https://git-scm.com/docs/gitignore\n // changes in [2.22.1](https://git-scm.com/docs/gitignore/2.22.1)\n // which re-fixes #24, #38\n\n // > If there is a separator at the end of the pattern then the pattern\n // > will only match directories, otherwise the pattern can match both\n // > files and directories.\n\n // 'js*' will not match 'a.js'\n // 'js/' will not match 'a.js'\n // 'js' will match 'a.js' and 'a.js/'\n match => /\\/$/.test(match)\n // foo/ will not match 'foo'\n ? `${match}$`\n // foo matches 'foo' and 'foo/'\n : `${match}(?=$|\\\\/$)`\n ],\n\n // trailing wildcard\n [\n /(\\^|\\\\\\/)?\\\\\\*$/,\n (_, p1) => {\n const prefix = p1\n // '\\^':\n // '/*' does not match EMPTY\n // '/*' does not match everything\n\n // '\\\\\\/':\n // 'abc/*' does not match 'abc/'\n ? `${p1}[^/]+`\n\n // 'a*' matches 'a'\n // 'a*' matches 'aa'\n : '[^/]*'\n\n return `${prefix}(?=$|\\\\/$)`\n }\n ],\n]\n\n// A simple cache, because an ignore rule only has only one certain meaning\nconst regexCache = Object.create(null)\n\n// @param {pattern}\nconst makeRegex = (pattern, ignoreCase) => {\n let source = regexCache[pattern]\n\n if (!source) {\n source = REPLACERS.reduce(\n (prev, [matcher, replacer]) =>\n prev.replace(matcher, replacer.bind(pattern)),\n pattern\n )\n regexCache[pattern] = source\n }\n\n return ignoreCase\n ? new RegExp(source, 'i')\n : new RegExp(source)\n}\n\nconst isString = subject => typeof subject === 'string'\n\n// > A blank line matches no files, so it can serve as a separator for readability.\nconst checkPattern = pattern => pattern\n && isString(pattern)\n && !REGEX_TEST_BLANK_LINE.test(pattern)\n && !REGEX_INVALID_TRAILING_BACKSLASH.test(pattern)\n\n // > A line starting with # serves as a comment.\n && pattern.indexOf('#') !== 0\n\nconst splitPattern = pattern => pattern.split(REGEX_SPLITALL_CRLF)\n\nclass IgnoreRule {\n constructor (\n origin,\n pattern,\n negative,\n regex\n ) {\n this.origin = origin\n this.pattern = pattern\n this.negative = negative\n this.regex = regex\n }\n}\n\nconst createRule = (pattern, ignoreCase) => {\n const origin = pattern\n let negative = false\n\n // > An optional prefix \"!\" which negates the pattern;\n if (pattern.indexOf('!') === 0) {\n negative = true\n pattern = pattern.substr(1)\n }\n\n pattern = pattern\n // > Put a backslash (\"\\\") in front of the first \"!\" for patterns that\n // > begin with a literal \"!\", for example, `\"\\!important!.txt\"`.\n .replace(REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION, '!')\n // > Put a backslash (\"\\\") in front of the first hash for patterns that\n // > begin with a hash.\n .replace(REGEX_REPLACE_LEADING_EXCAPED_HASH, '#')\n\n const regex = makeRegex(pattern, ignoreCase)\n\n return new IgnoreRule(\n origin,\n pattern,\n negative,\n regex\n )\n}\n\nconst throwError = (message, Ctor) => {\n throw new Ctor(message)\n}\n\nconst checkPath = (path, originalPath, doThrow) => {\n if (!isString(path)) {\n return doThrow(\n `path must be a string, but got \\`${originalPath}\\``,\n TypeError\n )\n }\n\n // We don't know if we should ignore EMPTY, so throw\n if (!path) {\n return doThrow(`path must not be empty`, TypeError)\n }\n\n // Check if it is a relative path\n if (checkPath.isNotRelative(path)) {\n const r = '`path.relative()`d'\n return doThrow(\n `path should be a ${r} string, but got \"${originalPath}\"`,\n RangeError\n )\n }\n\n return true\n}\n\nconst isNotRelative = path => REGEX_TEST_INVALID_PATH.test(path)\n\ncheckPath.isNotRelative = isNotRelative\ncheckPath.convert = p => p\n\nclass Ignore {\n constructor ({\n ignorecase = true,\n ignoreCase = ignorecase,\n allowRelativePaths = false\n } = {}) {\n define(this, KEY_IGNORE, true)\n\n this._rules = []\n this._ignoreCase = ignoreCase\n this._allowRelativePaths = allowRelativePaths\n this._initCache()\n }\n\n _initCache () {\n this._ignoreCache = Object.create(null)\n this._testCache = Object.create(null)\n }\n\n _addPattern (pattern) {\n // #32\n if (pattern && pattern[KEY_IGNORE]) {\n this._rules = this._rules.concat(pattern._rules)\n this._added = true\n return\n }\n\n if (checkPattern(pattern)) {\n const rule = createRule(pattern, this._ignoreCase)\n this._added = true\n this._rules.push(rule)\n }\n }\n\n // @param {Array | string | Ignore} pattern\n add (pattern) {\n this._added = false\n\n makeArray(\n isString(pattern)\n ? splitPattern(pattern)\n : pattern\n ).forEach(this._addPattern, this)\n\n // Some rules have just added to the ignore,\n // making the behavior changed.\n if (this._added) {\n this._initCache()\n }\n\n return this\n }\n\n // legacy\n addPattern (pattern) {\n return this.add(pattern)\n }\n\n // | ignored : unignored\n // negative | 0:0 | 0:1 | 1:0 | 1:1\n // -------- | ------- | ------- | ------- | --------\n // 0 | TEST | TEST | SKIP | X\n // 1 | TESTIF | SKIP | TEST | X\n\n // - SKIP: always skip\n // - TEST: always test\n // - TESTIF: only test if checkUnignored\n // - X: that never happen\n\n // @param {boolean} whether should check if the path is unignored,\n // setting `checkUnignored` to `false` could reduce additional\n // path matching.\n\n // @returns {TestResult} true if a file is ignored\n _testOne (path, checkUnignored) {\n let ignored = false\n let unignored = false\n\n this._rules.forEach(rule => {\n const {negative} = rule\n if (\n unignored === negative && ignored !== unignored\n || negative && !ignored && !unignored && !checkUnignored\n ) {\n return\n }\n\n const matched = rule.regex.test(path)\n\n if (matched) {\n ignored = !negative\n unignored = negative\n }\n })\n\n return {\n ignored,\n unignored\n }\n }\n\n // @returns {TestResult}\n _test (originalPath, cache, checkUnignored, slices) {\n const path = originalPath\n // Supports nullable path\n && checkPath.convert(originalPath)\n\n checkPath(\n path,\n originalPath,\n this._allowRelativePaths\n ? RETURN_FALSE\n : throwError\n )\n\n return this._t(path, cache, checkUnignored, slices)\n }\n\n _t (path, cache, checkUnignored, slices) {\n if (path in cache) {\n return cache[path]\n }\n\n if (!slices) {\n // path/to/a.js\n // ['path', 'to', 'a.js']\n slices = path.split(SLASH)\n }\n\n slices.pop()\n\n // If the path has no parent directory, just test it\n if (!slices.length) {\n return cache[path] = this._testOne(path, checkUnignored)\n }\n\n const parent = this._t(\n slices.join(SLASH) + SLASH,\n cache,\n checkUnignored,\n slices\n )\n\n // If the path contains a parent directory, check the parent first\n return cache[path] = parent.ignored\n // > It is not possible to re-include a file if a parent directory of\n // > that file is excluded.\n ? parent\n : this._testOne(path, checkUnignored)\n }\n\n ignores (path) {\n return this._test(path, this._ignoreCache, false).ignored\n }\n\n createFilter () {\n return path => !this.ignores(path)\n }\n\n filter (paths) {\n return makeArray(paths).filter(this.createFilter())\n }\n\n // @returns {TestResult}\n test (path) {\n return this._test(path, this._testCache, true)\n }\n}\n\nconst factory = options => new Ignore(options)\n\nconst isPathValid = path =>\n checkPath(path && checkPath.convert(path), path, RETURN_FALSE)\n\nfactory.isPathValid = isPathValid\n\n// Fixes typescript\nfactory.default = factory\n\nmodule.exports = factory\n\n// Windows\n// --------------------------------------------------------------\n/* istanbul ignore if */\nif (\n // Detect `process` so that it can run in browsers.\n typeof process !== 'undefined'\n && (\n process.env && process.env.IGNORE_TEST_WIN32\n || process.platform === 'win32'\n )\n) {\n /* eslint no-control-regex: \"off\" */\n const makePosix = str => /^\\\\\\\\\\?\\\\/.test(str)\n || /[\"<>|\\u0000-\\u001F]+/u.test(str)\n ? str\n : str.replace(/\\\\/g, '/')\n\n checkPath.convert = makePosix\n\n // 'C:\\\\foo' <- 'C:\\\\foo' has been converted to 'C:/'\n // 'd:\\\\foo'\n const REGIX_IS_WINDOWS_PATH_ABSOLUTE = /^[a-z]:\\//i\n checkPath.isNotRelative = path =>\n REGIX_IS_WINDOWS_PATH_ABSOLUTE.test(path)\n || isNotRelative(path)\n}\n","const hexRegex = /^[-+]?0x[a-fA-F0-9]+$/;\nconst numRegex = /^([\\-\\+])?(0*)(\\.[0-9]+([eE]\\-?[0-9]+)?|[0-9]+(\\.[0-9]+([eE]\\-?[0-9]+)?)?)$/;\n// const octRegex = /0x[a-z0-9]+/;\n// const binRegex = /0x[a-z0-9]+/;\n\n\n//polyfill\nif (!Number.parseInt && window.parseInt) {\n Number.parseInt = window.parseInt;\n}\nif (!Number.parseFloat && window.parseFloat) {\n Number.parseFloat = window.parseFloat;\n}\n\n \nconst consider = {\n hex : true,\n leadingZeros: true,\n decimalPoint: \"\\.\",\n eNotation: true\n //skipLike: /regex/\n};\n\nfunction toNumber(str, options = {}){\n // const options = Object.assign({}, consider);\n // if(opt.leadingZeros === false){\n // options.leadingZeros = false;\n // }else if(opt.hex === false){\n // options.hex = false;\n // }\n\n options = Object.assign({}, consider, options );\n if(!str || typeof str !== \"string\" ) return str;\n \n let trimmedStr = str.trim();\n // if(trimmedStr === \"0.0\") return 0;\n // else if(trimmedStr === \"+0.0\") return 0;\n // else if(trimmedStr === \"-0.0\") return -0;\n\n if(options.skipLike !== undefined && options.skipLike.test(trimmedStr)) return str;\n else if (options.hex && hexRegex.test(trimmedStr)) {\n return Number.parseInt(trimmedStr, 16);\n // } else if (options.parseOct && octRegex.test(str)) {\n // return Number.parseInt(val, 8);\n // }else if (options.parseBin && binRegex.test(str)) {\n // return Number.parseInt(val, 2);\n }else{\n //separate negative sign, leading zeros, and rest number\n const match = numRegex.exec(trimmedStr);\n if(match){\n const sign = match[1];\n const leadingZeros = match[2];\n let numTrimmedByZeros = trimZeros(match[3]); //complete num without leading zeros\n //trim ending zeros for floating number\n \n const eNotation = match[4] || match[6];\n if(!options.leadingZeros && leadingZeros.length > 0 && sign && trimmedStr[2] !== \".\") return str; //-0123\n else if(!options.leadingZeros && leadingZeros.length > 0 && !sign && trimmedStr[1] !== \".\") return str; //0123\n else{//no leading zeros or leading zeros are allowed\n const num = Number(trimmedStr);\n const numStr = \"\" + num;\n if(numStr.search(/[eE]/) !== -1){ //given number is long and parsed to eNotation\n if(options.eNotation) return num;\n else return str;\n }else if(eNotation){ //given number has enotation\n if(options.eNotation) return num;\n else return str;\n }else if(trimmedStr.indexOf(\".\") !== -1){ //floating number\n // const decimalPart = match[5].substr(1);\n // const intPart = trimmedStr.substr(0,trimmedStr.indexOf(\".\"));\n\n \n // const p = numStr.indexOf(\".\");\n // const givenIntPart = numStr.substr(0,p);\n // const givenDecPart = numStr.substr(p+1);\n if(numStr === \"0\" && (numTrimmedByZeros === \"\") ) return num; //0.0\n else if(numStr === numTrimmedByZeros) return num; //0.456. 0.79000\n else if( sign && numStr === \"-\"+numTrimmedByZeros) return num;\n else return str;\n }\n \n if(leadingZeros){\n // if(numTrimmedByZeros === numStr){\n // if(options.leadingZeros) return num;\n // else return str;\n // }else return str;\n if(numTrimmedByZeros === numStr) return num;\n else if(sign+numTrimmedByZeros === numStr) return num;\n else return str;\n }\n\n if(trimmedStr === numStr) return num;\n else if(trimmedStr === sign+numStr) return num;\n // else{\n // //number with +/- sign\n // trimmedStr.test(/[-+][0-9]);\n\n // }\n return str;\n }\n // else if(!eNotation && trimmedStr && trimmedStr !== Number(trimmedStr) ) return str;\n \n }else{ //non-numeric string\n return str;\n }\n }\n}\n\n/**\n * \n * @param {string} numStr without leading zeros\n * @returns \n */\nfunction trimZeros(numStr){\n if(numStr && numStr.indexOf(\".\") !== -1){//float\n numStr = numStr.replace(/0+$/, \"\"); //remove ending zeros\n if(numStr === \".\") numStr = \"0\";\n else if(numStr[0] === \".\") numStr = \"0\"+numStr;\n else if(numStr[numStr.length-1] === \".\") numStr = numStr.substr(0,numStr.length-1);\n return numStr;\n }\n return numStr;\n}\nmodule.exports = toNumber\n","/*! @gera2ld/tarjs v0.3.1 | MIT License */\nconst encoder = new TextEncoder();\nconst utf8Encode = input => encoder.encode(input);\nconst decoder = new TextDecoder();\nconst utf8Decode = input => decoder.decode(input);\nfunction getArrayBuffer(file) {\n if (typeof file === 'string') return utf8Encode(file).buffer;\n if (file instanceof ArrayBuffer) return file;\n if (ArrayBuffer.isView(file)) return new Uint8Array(file).buffer;\n return file.arrayBuffer();\n}\n\nclass TarReader {\n static async load(file) {\n const buffer = await getArrayBuffer(file);\n const fileInfos = loadTarFile(buffer);\n return new TarReader(buffer, fileInfos);\n }\n #buffer;\n constructor(buffer, fileInfos) {\n this.fileInfos = fileInfos;\n this.#buffer = buffer;\n }\n getTextFile(filename) {\n const item = this.fileInfos.find(info => info.name === filename);\n if (!item) throw new Error(`File not found: ${filename}`);\n return readTextFile(this.#buffer, item.headerOffset + 512, item.size);\n }\n getFileBlob(filename, mimetype = '') {\n const item = this.fileInfos.find(info => info.name === filename);\n if (!item) throw new Error(`File not found: ${filename}`);\n return readFileBlob(this.#buffer, item.headerOffset + 512, item.size, mimetype);\n }\n}\nfunction loadTarFile(buffer) {\n const fileInfos = [];\n let offset = 0;\n while (offset < buffer.byteLength - 512) {\n const fileName = readFileName(buffer, offset);\n if (!fileName) break;\n const fileType = readFileType(buffer, offset);\n const fileSize = readFileSize(buffer, offset);\n fileInfos.push({\n name: fileName,\n type: fileType,\n size: fileSize,\n headerOffset: offset\n });\n offset += 512 + 512 * Math.floor((fileSize + 511) / 512);\n }\n return fileInfos;\n}\nfunction readString(buffer, offset, maxSize) {\n let size = 0;\n let view = new Uint8Array(buffer, offset, maxSize);\n while (size < maxSize && view[size]) size += 1;\n view = new Uint8Array(buffer, offset, size);\n return utf8Decode(view);\n}\nfunction readFileName(buffer, offset) {\n return readString(buffer, offset, 100);\n}\nfunction readFileType(buffer, offset) {\n // offset = 156, length = 1\n const view = new Uint8Array(buffer, offset + 156, 1);\n return view[0];\n}\nfunction readFileSize(buffer, offset) {\n // offset = 124, length = 12\n const view = new Uint8Array(buffer, offset + 124, 12);\n const sizeStr = utf8Decode(view);\n return parseInt(sizeStr, 8);\n}\nfunction readFileBlob(buffer, offset, size, mimetype) {\n const view = new Uint8Array(buffer, offset, size);\n return new Blob([view], {\n type: mimetype\n });\n}\nfunction readTextFile(buffer, offset, size) {\n const view = new Uint8Array(buffer, offset, size);\n return utf8Decode(view);\n}\n\nlet TarFileType = /*#__PURE__*/function (TarFileType) {\n TarFileType[TarFileType[\"File\"] = 0] = \"File\";\n TarFileType[TarFileType[\"Dir\"] = 53] = \"Dir\";\n return TarFileType;\n}({});\n\nclass TarWriter {\n #fileData;\n constructor() {\n this.#fileData = [];\n }\n addFile(name, file, opts) {\n const data = getArrayBuffer(file);\n const size = data.byteLength ?? file.size;\n const item = {\n name,\n type: TarFileType.File,\n data,\n size,\n opts\n };\n this.#fileData.push(item);\n }\n addFolder(name, opts) {\n this.#fileData.push({\n name,\n type: TarFileType.Dir,\n data: null,\n size: 0,\n opts\n });\n }\n async write() {\n const buffer = createBuffer(this.#fileData);\n const view = new Uint8Array(buffer);\n let offset = 0;\n for (const item of this.#fileData) {\n // write header\n writeFileName(buffer, item.name, offset);\n writeFileType(buffer, item.type, offset);\n writeFileSize(buffer, item.size, offset);\n fillHeader(buffer, offset, item.opts, item.type);\n writeChecksum(buffer, offset);\n\n // write data\n const itemBuffer = await item.data;\n if (itemBuffer) {\n const data = new Uint8Array(itemBuffer);\n view.set(data, offset + 512);\n }\n offset += 512 + 512 * Math.floor((item.size + 511) / 512);\n }\n return new Blob([buffer], {\n type: 'application/x-tar'\n });\n }\n}\nfunction createBuffer(fileData) {\n const dataSize = fileData.reduce((prev, item) => prev + 512 + 512 * Math.floor((item.size + 511) / 512), 0);\n const bufSize = 10240 * Math.floor((dataSize + 10240 - 1) / 10240);\n return new ArrayBuffer(bufSize);\n}\nfunction writeString(buffer, str, offset, size) {\n const bytes = utf8Encode(str);\n const view = new Uint8Array(buffer, offset, size);\n for (let i = 0; i < size; i += 1) {\n view[i] = i < bytes.length ? bytes[i] : 0;\n }\n}\nfunction writeFileName(buffer, name, offset) {\n // offset: 0\n writeString(buffer, name, offset, 100);\n}\nfunction writeFileType(buffer, type, offset) {\n // offset: 156\n const typeView = new Uint8Array(buffer, offset + 156, 1);\n typeView[0] = type;\n}\nfunction writeFileSize(buffer, size, offset) {\n // offset: 124\n const sizeStr = size.toString(8).padStart(11, '0');\n writeString(buffer, sizeStr, offset + 124, 12);\n}\nfunction writeFileMode(buffer, mode, offset) {\n // offset: 100\n writeString(buffer, mode.toString(8).padStart(7, '0'), offset + 100, 8);\n}\nfunction writeFileUid(buffer, uid, offset) {\n // offset: 108\n writeString(buffer, uid.toString(8).padStart(7, '0'), offset + 108, 8);\n}\nfunction writeFileGid(buffer, gid, offset) {\n // offset: 116\n writeString(buffer, gid.toString(8).padStart(7, '0'), offset + 116, 8);\n}\nfunction writeFileMtime(buffer, mtime, offset) {\n // offset: 136\n writeString(buffer, mtime.toString(8).padStart(11, '0'), offset + 136, 12);\n}\nfunction writeFileUser(buffer, user, offset) {\n // offset: 265\n writeString(buffer, user, offset + 265, 32);\n}\nfunction writeFileGroup(buffer, group, offset) {\n // offset: 297\n writeString(buffer, group, offset + 297, 32);\n}\nfunction writeChecksum(buffer, offset) {\n const header = new Uint8Array(buffer, offset, 512);\n // fill checksum fields with space\n for (let i = 0; i < 8; i += 1) {\n header[148 + i] = 32;\n }\n // add up header bytes as checksum\n let chksum = 0;\n for (let i = 0; i < 512; i += 1) {\n chksum += header[i];\n }\n writeString(buffer, chksum.toString(8).padEnd(8, ' '), offset + 148, 8);\n}\nfunction fillHeader(buffer, offset, opts, fileType) {\n const {\n uid,\n gid,\n mode,\n mtime,\n user,\n group\n } = {\n uid: 1000,\n gid: 1000,\n mode: fileType === TarFileType.File ? 0o664 : 0o775,\n mtime: ~~(Date.now() / 1000),\n user: 'gera2ld',\n group: 'tarjs',\n ...opts\n };\n writeFileMode(buffer, mode, offset);\n writeFileUid(buffer, uid, offset);\n writeFileGid(buffer, gid, offset);\n writeFileMtime(buffer, mtime, offset);\n writeString(buffer, 'ustar', offset + 257, 6); // magic string\n writeString(buffer, '00', offset + 263, 2); // magic version\n\n writeFileUser(buffer, user, offset);\n writeFileGroup(buffer, group, offset);\n}\n\nexport { TarFileType, TarReader, TarWriter, createBuffer, getArrayBuffer, loadTarFile, readFileBlob, readTextFile, utf8Decode, utf8Encode };\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ function $c5a24bc478652b5f$export$1005530eda016c13(node, collection) {\n // New API: call collection.getChildren with the node key.\n if (typeof collection.getChildren === 'function') return collection.getChildren(node.key);\n // Old API: access childNodes directly.\n return node.childNodes;\n}\nfunction $c5a24bc478652b5f$export$fbdeaa6a76694f71(iterable) {\n return $c5a24bc478652b5f$export$5f3398f8733f90e2(iterable, 0);\n}\nfunction $c5a24bc478652b5f$export$5f3398f8733f90e2(iterable, index) {\n if (index < 0) return undefined;\n let i = 0;\n for (let item of iterable){\n if (i === index) return item;\n i++;\n }\n}\nfunction $c5a24bc478652b5f$export$7475b2c64539e4cf(iterable) {\n let lastItem = undefined;\n for (let value of iterable)lastItem = value;\n return lastItem;\n}\nfunction $c5a24bc478652b5f$export$8c434b3a7a4dad6(collection, a, b) {\n // If the two nodes have the same parent, compare their indices.\n if (a.parentKey === b.parentKey) return a.index - b.index;\n // Otherwise, collect all of the ancestors from each node, and find the first one that doesn't match starting from the root.\n // Include the base nodes in case we are comparing nodes of different levels so that we can compare the higher node to the lower level node's\n // ancestor of the same level\n let aAncestors = [\n ...$c5a24bc478652b5f$var$getAncestors(collection, a),\n a\n ];\n let bAncestors = [\n ...$c5a24bc478652b5f$var$getAncestors(collection, b),\n b\n ];\n let firstNonMatchingAncestor = aAncestors.slice(0, bAncestors.length).findIndex((a, i)=>a !== bAncestors[i]);\n if (firstNonMatchingAncestor !== -1) {\n // Compare the indices of two children within the common ancestor.\n a = aAncestors[firstNonMatchingAncestor];\n b = bAncestors[firstNonMatchingAncestor];\n return a.index - b.index;\n }\n // If there isn't a non matching ancestor, we might be in a case where one of the nodes is the ancestor of the other.\n if (aAncestors.findIndex((node)=>node === b) >= 0) return 1;\n else if (bAncestors.findIndex((node)=>node === a) >= 0) return -1;\n // 🤷\n return -1;\n}\nfunction $c5a24bc478652b5f$var$getAncestors(collection, node) {\n let parents = [];\n let currNode = node;\n while((currNode === null || currNode === void 0 ? void 0 : currNode.parentKey) != null){\n currNode = collection.getItem(currNode.parentKey);\n if (currNode) parents.unshift(currNode);\n }\n return parents;\n}\n\n\nexport {$c5a24bc478652b5f$export$1005530eda016c13 as getChildNodes, $c5a24bc478652b5f$export$fbdeaa6a76694f71 as getFirstItem, $c5a24bc478652b5f$export$5f3398f8733f90e2 as getNthItem, $c5a24bc478652b5f$export$7475b2c64539e4cf as getLastItem, $c5a24bc478652b5f$export$8c434b3a7a4dad6 as compareNodeOrder};\n//# sourceMappingURL=getChildNodes.module.js.map\n","import {createContext as $69F46$createContext, useMemo as $69F46$useMemo, useContext as $69F46$useContext, useState as $69F46$useState, useRef as $69F46$useRef, useEffect as $69F46$useEffect} from \"react\";\n\n/*\n * Copyright 2023 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */ \nconst $e5be200c675c3b3a$export$aca958c65c314e6c = {\n badInput: false,\n customError: false,\n patternMismatch: false,\n rangeOverflow: false,\n rangeUnderflow: false,\n stepMismatch: false,\n tooLong: false,\n tooShort: false,\n typeMismatch: false,\n valueMissing: false,\n valid: true\n};\nconst $e5be200c675c3b3a$var$CUSTOM_VALIDITY_STATE = {\n ...$e5be200c675c3b3a$export$aca958c65c314e6c,\n customError: true,\n valid: false\n};\nconst $e5be200c675c3b3a$export$dad6ae84456c676a = {\n isInvalid: false,\n validationDetails: $e5be200c675c3b3a$export$aca958c65c314e6c,\n validationErrors: []\n};\nconst $e5be200c675c3b3a$export$571b5131b7e65c11 = (0, $69F46$createContext)({});\nconst $e5be200c675c3b3a$export$a763b9476acd3eb = '__formValidationState' + Date.now();\nfunction $e5be200c675c3b3a$export$fc1a364ae1f3ff10(props) {\n // Private prop for parent components to pass state to children.\n if (props[$e5be200c675c3b3a$export$a763b9476acd3eb]) {\n let { realtimeValidation: realtimeValidation, displayValidation: displayValidation, updateValidation: updateValidation, resetValidation: resetValidation, commitValidation: commitValidation } = props[$e5be200c675c3b3a$export$a763b9476acd3eb];\n return {\n realtimeValidation: realtimeValidation,\n displayValidation: displayValidation,\n updateValidation: updateValidation,\n resetValidation: resetValidation,\n commitValidation: commitValidation\n };\n }\n // eslint-disable-next-line react-hooks/rules-of-hooks\n return $e5be200c675c3b3a$var$useFormValidationStateImpl(props);\n}\nfunction $e5be200c675c3b3a$var$useFormValidationStateImpl(props) {\n let { isInvalid: isInvalid, validationState: validationState, name: name, value: value, builtinValidation: builtinValidation, validate: validate, validationBehavior: validationBehavior = 'aria' } = props;\n // backward compatibility.\n if (validationState) isInvalid || (isInvalid = validationState === 'invalid');\n // If the isInvalid prop is controlled, update validation result in realtime.\n let controlledError = isInvalid !== undefined ? {\n isInvalid: isInvalid,\n validationErrors: [],\n validationDetails: $e5be200c675c3b3a$var$CUSTOM_VALIDITY_STATE\n } : null;\n // Perform custom client side validation.\n let clientError = (0, $69F46$useMemo)(()=>{\n if (!validate || value == null) return null;\n let validateErrors = $e5be200c675c3b3a$var$runValidate(validate, value);\n return $e5be200c675c3b3a$var$getValidationResult(validateErrors);\n }, [\n validate,\n value\n ]);\n if (builtinValidation === null || builtinValidation === void 0 ? void 0 : builtinValidation.validationDetails.valid) builtinValidation = undefined;\n // Get relevant server errors from the form.\n let serverErrors = (0, $69F46$useContext)($e5be200c675c3b3a$export$571b5131b7e65c11);\n let serverErrorMessages = (0, $69F46$useMemo)(()=>{\n if (name) return Array.isArray(name) ? name.flatMap((name)=>$e5be200c675c3b3a$var$asArray(serverErrors[name])) : $e5be200c675c3b3a$var$asArray(serverErrors[name]);\n return [];\n }, [\n serverErrors,\n name\n ]);\n // Show server errors when the form gets a new value, and clear when the user changes the value.\n let [lastServerErrors, setLastServerErrors] = (0, $69F46$useState)(serverErrors);\n let [isServerErrorCleared, setServerErrorCleared] = (0, $69F46$useState)(false);\n if (serverErrors !== lastServerErrors) {\n setLastServerErrors(serverErrors);\n setServerErrorCleared(false);\n }\n let serverError = (0, $69F46$useMemo)(()=>$e5be200c675c3b3a$var$getValidationResult(isServerErrorCleared ? [] : serverErrorMessages), [\n isServerErrorCleared,\n serverErrorMessages\n ]);\n // Track the next validation state in a ref until commitValidation is called.\n let nextValidation = (0, $69F46$useRef)($e5be200c675c3b3a$export$dad6ae84456c676a);\n let [currentValidity, setCurrentValidity] = (0, $69F46$useState)($e5be200c675c3b3a$export$dad6ae84456c676a);\n let lastError = (0, $69F46$useRef)($e5be200c675c3b3a$export$dad6ae84456c676a);\n let commitValidation = ()=>{\n if (!commitQueued) return;\n setCommitQueued(false);\n let error = clientError || builtinValidation || nextValidation.current;\n if (!$e5be200c675c3b3a$var$isEqualValidation(error, lastError.current)) {\n lastError.current = error;\n setCurrentValidity(error);\n }\n };\n let [commitQueued, setCommitQueued] = (0, $69F46$useState)(false);\n (0, $69F46$useEffect)(commitValidation);\n // realtimeValidation is used to update the native input element's state based on custom validation logic.\n // displayValidation is the currently displayed validation state that the user sees (e.g. on input change/form submit).\n // With validationBehavior=\"aria\", all errors are displayed in realtime rather than on submit.\n let realtimeValidation = controlledError || serverError || clientError || builtinValidation || $e5be200c675c3b3a$export$dad6ae84456c676a;\n let displayValidation = validationBehavior === 'native' ? controlledError || serverError || currentValidity : controlledError || serverError || clientError || builtinValidation || currentValidity;\n return {\n realtimeValidation: realtimeValidation,\n displayValidation: displayValidation,\n updateValidation (value) {\n // If validationBehavior is 'aria', update in realtime. Otherwise, store in a ref until commit.\n if (validationBehavior === 'aria' && !$e5be200c675c3b3a$var$isEqualValidation(currentValidity, value)) setCurrentValidity(value);\n else nextValidation.current = value;\n },\n resetValidation () {\n // Update the currently displayed validation state to valid on form reset,\n // even if the native validity says it isn't. It'll show again on the next form submit.\n let error = $e5be200c675c3b3a$export$dad6ae84456c676a;\n if (!$e5be200c675c3b3a$var$isEqualValidation(error, lastError.current)) {\n lastError.current = error;\n setCurrentValidity(error);\n }\n // Do not commit validation after the next render. This avoids a condition where\n // useSelect calls commitValidation inside an onReset handler.\n if (validationBehavior === 'native') setCommitQueued(false);\n setServerErrorCleared(true);\n },\n commitValidation () {\n // Commit validation state so the user sees it on blur/change/submit. Also clear any server errors.\n // Wait until after the next render to commit so that the latest value has been validated.\n if (validationBehavior === 'native') setCommitQueued(true);\n setServerErrorCleared(true);\n }\n };\n}\nfunction $e5be200c675c3b3a$var$asArray(v) {\n if (!v) return [];\n return Array.isArray(v) ? v : [\n v\n ];\n}\nfunction $e5be200c675c3b3a$var$runValidate(validate, value) {\n if (typeof validate === 'function') {\n let e = validate(value);\n if (e && typeof e !== 'boolean') return $e5be200c675c3b3a$var$asArray(e);\n }\n return [];\n}\nfunction $e5be200c675c3b3a$var$getValidationResult(errors) {\n return errors.length ? {\n isInvalid: true,\n validationErrors: errors,\n validationDetails: $e5be200c675c3b3a$var$CUSTOM_VALIDITY_STATE\n } : null;\n}\nfunction $e5be200c675c3b3a$var$isEqualValidation(a, b) {\n if (a === b) return true;\n return !!a && !!b && a.isInvalid === b.isInvalid && a.validationErrors.length === b.validationErrors.length && a.validationErrors.every((a, i)=>a === b.validationErrors[i]) && Object.entries(a.validationDetails).every(([k, v])=>b.validationDetails[k] === v);\n}\nfunction $e5be200c675c3b3a$export$75ee7c75d68f5b0e(...results) {\n let errors = new Set();\n let isInvalid = false;\n let validationDetails = {\n ...$e5be200c675c3b3a$export$aca958c65c314e6c\n };\n for (let v of results){\n var _validationDetails, _key;\n for (let e of v.validationErrors)errors.add(e);\n // Only these properties apply for checkboxes.\n isInvalid || (isInvalid = v.isInvalid);\n for(let key in validationDetails)(_validationDetails = validationDetails)[_key = key] || (_validationDetails[_key] = v.validationDetails[key]);\n }\n validationDetails.valid = !isInvalid;\n return {\n isInvalid: isInvalid,\n validationErrors: [\n ...errors\n ],\n validationDetails: validationDetails\n };\n}\n\n\nexport {$e5be200c675c3b3a$export$aca958c65c314e6c as VALID_VALIDITY_STATE, $e5be200c675c3b3a$export$dad6ae84456c676a as DEFAULT_VALIDATION_RESULT, $e5be200c675c3b3a$export$571b5131b7e65c11 as FormValidationContext, $e5be200c675c3b3a$export$a763b9476acd3eb as privateValidationStateProp, $e5be200c675c3b3a$export$fc1a364ae1f3ff10 as useFormValidationState, $e5be200c675c3b3a$export$75ee7c75d68f5b0e as mergeValidation};\n//# sourceMappingURL=useFormValidationState.module.js.map\n","class CsvError extends Error {\n constructor(code, message, options, ...contexts) {\n if (Array.isArray(message)) message = message.join(\" \").trim();\n super(message);\n if (Error.captureStackTrace !== undefined) {\n Error.captureStackTrace(this, CsvError);\n }\n this.code = code;\n for (const context of contexts) {\n for (const key in context) {\n const value = context[key];\n this[key] = Buffer.isBuffer(value)\n ? value.toString(options.encoding)\n : value == null\n ? value\n : JSON.parse(JSON.stringify(value));\n }\n }\n }\n}\n\nexport { CsvError };\n","import { CsvError } from \"./CsvError.js\";\nimport { is_object } from \"../utils/is_object.js\";\n\nconst normalize_columns_array = function (columns) {\n const normalizedColumns = [];\n for (let i = 0, l = columns.length; i < l; i++) {\n const column = columns[i];\n if (column === undefined || column === null || column === false) {\n normalizedColumns[i] = { disabled: true };\n } else if (typeof column === \"string\") {\n normalizedColumns[i] = { name: column };\n } else if (is_object(column)) {\n if (typeof column.name !== \"string\") {\n throw new CsvError(\"CSV_OPTION_COLUMNS_MISSING_NAME\", [\n \"Option columns missing name:\",\n `property \"name\" is required at position ${i}`,\n \"when column is an object literal\",\n ]);\n }\n normalizedColumns[i] = column;\n } else {\n throw new CsvError(\"CSV_INVALID_COLUMN_DEFINITION\", [\n \"Invalid column definition:\",\n \"expect a string or a literal object,\",\n `got ${JSON.stringify(column)} at position ${i}`,\n ]);\n }\n }\n return normalizedColumns;\n};\n\nexport { normalize_columns_array };\n","const is_object = function (obj) {\n return typeof obj === \"object\" && obj !== null && !Array.isArray(obj);\n};\n\nexport { is_object };\n","class ResizeableBuffer {\n constructor(size = 100) {\n this.size = size;\n this.length = 0;\n this.buf = Buffer.allocUnsafe(size);\n }\n prepend(val) {\n if (Buffer.isBuffer(val)) {\n const length = this.length + val.length;\n if (length >= this.size) {\n this.resize();\n if (length >= this.size) {\n throw Error(\"INVALID_BUFFER_STATE\");\n }\n }\n const buf = this.buf;\n this.buf = Buffer.allocUnsafe(this.size);\n val.copy(this.buf, 0);\n buf.copy(this.buf, val.length);\n this.length += val.length;\n } else {\n const length = this.length++;\n if (length === this.size) {\n this.resize();\n }\n const buf = this.clone();\n this.buf[0] = val;\n buf.copy(this.buf, 1, 0, length);\n }\n }\n append(val) {\n const length = this.length++;\n if (length === this.size) {\n this.resize();\n }\n this.buf[length] = val;\n }\n clone() {\n return Buffer.from(this.buf.slice(0, this.length));\n }\n resize() {\n const length = this.length;\n this.size = this.size * 2;\n const buf = Buffer.allocUnsafe(this.size);\n this.buf.copy(buf, 0, 0, length);\n this.buf = buf;\n }\n toString(encoding) {\n if (encoding) {\n return this.buf.slice(0, this.length).toString(encoding);\n } else {\n return Uint8Array.prototype.slice.call(this.buf.slice(0, this.length));\n }\n }\n toJSON() {\n return this.toString(\"utf8\");\n }\n reset() {\n this.length = 0;\n }\n}\n\nexport default ResizeableBuffer;\n","import { normalize_columns_array } from \"./normalize_columns_array.js\";\nimport { CsvError } from \"./CsvError.js\";\nimport { underscore } from \"../utils/underscore.js\";\n\nconst normalize_options = function (opts) {\n const options = {};\n // Merge with user options\n for (const opt in opts) {\n options[underscore(opt)] = opts[opt];\n }\n // Normalize option `encoding`\n // Note: defined first because other options depends on it\n // to convert chars/strings into buffers.\n if (options.encoding === undefined || options.encoding === true) {\n options.encoding = \"utf8\";\n } else if (options.encoding === null || options.encoding === false) {\n options.encoding = null;\n } else if (\n typeof options.encoding !== \"string\" &&\n options.encoding !== null\n ) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_ENCODING\",\n [\n \"Invalid option encoding:\",\n \"encoding must be a string or null to return a buffer,\",\n `got ${JSON.stringify(options.encoding)}`,\n ],\n options,\n );\n }\n // Normalize option `bom`\n if (\n options.bom === undefined ||\n options.bom === null ||\n options.bom === false\n ) {\n options.bom = false;\n } else if (options.bom !== true) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_BOM\",\n [\n \"Invalid option bom:\",\n \"bom must be true,\",\n `got ${JSON.stringify(options.bom)}`,\n ],\n options,\n );\n }\n // Normalize option `cast`\n options.cast_function = null;\n if (\n options.cast === undefined ||\n options.cast === null ||\n options.cast === false ||\n options.cast === \"\"\n ) {\n options.cast = undefined;\n } else if (typeof options.cast === \"function\") {\n options.cast_function = options.cast;\n options.cast = true;\n } else if (options.cast !== true) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_CAST\",\n [\n \"Invalid option cast:\",\n \"cast must be true or a function,\",\n `got ${JSON.stringify(options.cast)}`,\n ],\n options,\n );\n }\n // Normalize option `cast_date`\n if (\n options.cast_date === undefined ||\n options.cast_date === null ||\n options.cast_date === false ||\n options.cast_date === \"\"\n ) {\n options.cast_date = false;\n } else if (options.cast_date === true) {\n options.cast_date = function (value) {\n const date = Date.parse(value);\n return !isNaN(date) ? new Date(date) : value;\n };\n } else if (typeof options.cast_date !== \"function\") {\n throw new CsvError(\n \"CSV_INVALID_OPTION_CAST_DATE\",\n [\n \"Invalid option cast_date:\",\n \"cast_date must be true or a function,\",\n `got ${JSON.stringify(options.cast_date)}`,\n ],\n options,\n );\n }\n // Normalize option `columns`\n options.cast_first_line_to_header = null;\n if (options.columns === true) {\n // Fields in the first line are converted as-is to columns\n options.cast_first_line_to_header = undefined;\n } else if (typeof options.columns === \"function\") {\n options.cast_first_line_to_header = options.columns;\n options.columns = true;\n } else if (Array.isArray(options.columns)) {\n options.columns = normalize_columns_array(options.columns);\n } else if (\n options.columns === undefined ||\n options.columns === null ||\n options.columns === false\n ) {\n options.columns = false;\n } else {\n throw new CsvError(\n \"CSV_INVALID_OPTION_COLUMNS\",\n [\n \"Invalid option columns:\",\n \"expect an array, a function or true,\",\n `got ${JSON.stringify(options.columns)}`,\n ],\n options,\n );\n }\n // Normalize option `group_columns_by_name`\n if (\n options.group_columns_by_name === undefined ||\n options.group_columns_by_name === null ||\n options.group_columns_by_name === false\n ) {\n options.group_columns_by_name = false;\n } else if (options.group_columns_by_name !== true) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_GROUP_COLUMNS_BY_NAME\",\n [\n \"Invalid option group_columns_by_name:\",\n \"expect an boolean,\",\n `got ${JSON.stringify(options.group_columns_by_name)}`,\n ],\n options,\n );\n } else if (options.columns === false) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_GROUP_COLUMNS_BY_NAME\",\n [\n \"Invalid option group_columns_by_name:\",\n \"the `columns` mode must be activated.\",\n ],\n options,\n );\n }\n // Normalize option `comment`\n if (\n options.comment === undefined ||\n options.comment === null ||\n options.comment === false ||\n options.comment === \"\"\n ) {\n options.comment = null;\n } else {\n if (typeof options.comment === \"string\") {\n options.comment = Buffer.from(options.comment, options.encoding);\n }\n if (!Buffer.isBuffer(options.comment)) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_COMMENT\",\n [\n \"Invalid option comment:\",\n \"comment must be a buffer or a string,\",\n `got ${JSON.stringify(options.comment)}`,\n ],\n options,\n );\n }\n }\n // Normalize option `comment_no_infix`\n if (\n options.comment_no_infix === undefined ||\n options.comment_no_infix === null ||\n options.comment_no_infix === false\n ) {\n options.comment_no_infix = false;\n } else if (options.comment_no_infix !== true) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_COMMENT\",\n [\n \"Invalid option comment_no_infix:\",\n \"value must be a boolean,\",\n `got ${JSON.stringify(options.comment_no_infix)}`,\n ],\n options,\n );\n }\n // Normalize option `delimiter`\n const delimiter_json = JSON.stringify(options.delimiter);\n if (!Array.isArray(options.delimiter))\n options.delimiter = [options.delimiter];\n if (options.delimiter.length === 0) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_DELIMITER\",\n [\n \"Invalid option delimiter:\",\n \"delimiter must be a non empty string or buffer or array of string|buffer,\",\n `got ${delimiter_json}`,\n ],\n options,\n );\n }\n options.delimiter = options.delimiter.map(function (delimiter) {\n if (delimiter === undefined || delimiter === null || delimiter === false) {\n return Buffer.from(\",\", options.encoding);\n }\n if (typeof delimiter === \"string\") {\n delimiter = Buffer.from(delimiter, options.encoding);\n }\n if (!Buffer.isBuffer(delimiter) || delimiter.length === 0) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_DELIMITER\",\n [\n \"Invalid option delimiter:\",\n \"delimiter must be a non empty string or buffer or array of string|buffer,\",\n `got ${delimiter_json}`,\n ],\n options,\n );\n }\n return delimiter;\n });\n // Normalize option `escape`\n if (options.escape === undefined || options.escape === true) {\n options.escape = Buffer.from('\"', options.encoding);\n } else if (typeof options.escape === \"string\") {\n options.escape = Buffer.from(options.escape, options.encoding);\n } else if (options.escape === null || options.escape === false) {\n options.escape = null;\n }\n if (options.escape !== null) {\n if (!Buffer.isBuffer(options.escape)) {\n throw new Error(\n `Invalid Option: escape must be a buffer, a string or a boolean, got ${JSON.stringify(options.escape)}`,\n );\n }\n }\n // Normalize option `from`\n if (options.from === undefined || options.from === null) {\n options.from = 1;\n } else {\n if (typeof options.from === \"string\" && /\\d+/.test(options.from)) {\n options.from = parseInt(options.from);\n }\n if (Number.isInteger(options.from)) {\n if (options.from < 0) {\n throw new Error(\n `Invalid Option: from must be a positive integer, got ${JSON.stringify(opts.from)}`,\n );\n }\n } else {\n throw new Error(\n `Invalid Option: from must be an integer, got ${JSON.stringify(options.from)}`,\n );\n }\n }\n // Normalize option `from_line`\n if (options.from_line === undefined || options.from_line === null) {\n options.from_line = 1;\n } else {\n if (\n typeof options.from_line === \"string\" &&\n /\\d+/.test(options.from_line)\n ) {\n options.from_line = parseInt(options.from_line);\n }\n if (Number.isInteger(options.from_line)) {\n if (options.from_line <= 0) {\n throw new Error(\n `Invalid Option: from_line must be a positive integer greater than 0, got ${JSON.stringify(opts.from_line)}`,\n );\n }\n } else {\n throw new Error(\n `Invalid Option: from_line must be an integer, got ${JSON.stringify(opts.from_line)}`,\n );\n }\n }\n // Normalize options `ignore_last_delimiters`\n if (\n options.ignore_last_delimiters === undefined ||\n options.ignore_last_delimiters === null\n ) {\n options.ignore_last_delimiters = false;\n } else if (typeof options.ignore_last_delimiters === \"number\") {\n options.ignore_last_delimiters = Math.floor(options.ignore_last_delimiters);\n if (options.ignore_last_delimiters === 0) {\n options.ignore_last_delimiters = false;\n }\n } else if (typeof options.ignore_last_delimiters !== \"boolean\") {\n throw new CsvError(\n \"CSV_INVALID_OPTION_IGNORE_LAST_DELIMITERS\",\n [\n \"Invalid option `ignore_last_delimiters`:\",\n \"the value must be a boolean value or an integer,\",\n `got ${JSON.stringify(options.ignore_last_delimiters)}`,\n ],\n options,\n );\n }\n if (options.ignore_last_delimiters === true && options.columns === false) {\n throw new CsvError(\n \"CSV_IGNORE_LAST_DELIMITERS_REQUIRES_COLUMNS\",\n [\n \"The option `ignore_last_delimiters`\",\n \"requires the activation of the `columns` option\",\n ],\n options,\n );\n }\n // Normalize option `info`\n if (\n options.info === undefined ||\n options.info === null ||\n options.info === false\n ) {\n options.info = false;\n } else if (options.info !== true) {\n throw new Error(\n `Invalid Option: info must be true, got ${JSON.stringify(options.info)}`,\n );\n }\n // Normalize option `max_record_size`\n if (\n options.max_record_size === undefined ||\n options.max_record_size === null ||\n options.max_record_size === false\n ) {\n options.max_record_size = 0;\n } else if (\n Number.isInteger(options.max_record_size) &&\n options.max_record_size >= 0\n ) {\n // Great, nothing to do\n } else if (\n typeof options.max_record_size === \"string\" &&\n /\\d+/.test(options.max_record_size)\n ) {\n options.max_record_size = parseInt(options.max_record_size);\n } else {\n throw new Error(\n `Invalid Option: max_record_size must be a positive integer, got ${JSON.stringify(options.max_record_size)}`,\n );\n }\n // Normalize option `objname`\n if (\n options.objname === undefined ||\n options.objname === null ||\n options.objname === false\n ) {\n options.objname = undefined;\n } else if (Buffer.isBuffer(options.objname)) {\n if (options.objname.length === 0) {\n throw new Error(`Invalid Option: objname must be a non empty buffer`);\n }\n if (options.encoding === null) {\n // Don't call `toString`, leave objname as a buffer\n } else {\n options.objname = options.objname.toString(options.encoding);\n }\n } else if (typeof options.objname === \"string\") {\n if (options.objname.length === 0) {\n throw new Error(`Invalid Option: objname must be a non empty string`);\n }\n // Great, nothing to do\n } else if (typeof options.objname === \"number\") {\n // if(options.objname.length === 0){\n // throw new Error(`Invalid Option: objname must be a non empty string`);\n // }\n // Great, nothing to do\n } else {\n throw new Error(\n `Invalid Option: objname must be a string or a buffer, got ${options.objname}`,\n );\n }\n if (options.objname !== undefined) {\n if (typeof options.objname === \"number\") {\n if (options.columns !== false) {\n throw Error(\n \"Invalid Option: objname index cannot be combined with columns or be defined as a field\",\n );\n }\n } else {\n // A string or a buffer\n if (options.columns === false) {\n throw Error(\n \"Invalid Option: objname field must be combined with columns or be defined as an index\",\n );\n }\n }\n }\n // Normalize option `on_record`\n if (options.on_record === undefined || options.on_record === null) {\n options.on_record = undefined;\n } else if (typeof options.on_record !== \"function\") {\n throw new CsvError(\n \"CSV_INVALID_OPTION_ON_RECORD\",\n [\n \"Invalid option `on_record`:\",\n \"expect a function,\",\n `got ${JSON.stringify(options.on_record)}`,\n ],\n options,\n );\n }\n // Normalize option `on_skip`\n // options.on_skip ??= (err, chunk) => {\n // this.emit('skip', err, chunk);\n // };\n if (\n options.on_skip !== undefined &&\n options.on_skip !== null &&\n typeof options.on_skip !== \"function\"\n ) {\n throw new Error(\n `Invalid Option: on_skip must be a function, got ${JSON.stringify(options.on_skip)}`,\n );\n }\n // Normalize option `quote`\n if (\n options.quote === null ||\n options.quote === false ||\n options.quote === \"\"\n ) {\n options.quote = null;\n } else {\n if (options.quote === undefined || options.quote === true) {\n options.quote = Buffer.from('\"', options.encoding);\n } else if (typeof options.quote === \"string\") {\n options.quote = Buffer.from(options.quote, options.encoding);\n }\n if (!Buffer.isBuffer(options.quote)) {\n throw new Error(\n `Invalid Option: quote must be a buffer or a string, got ${JSON.stringify(options.quote)}`,\n );\n }\n }\n // Normalize option `raw`\n if (\n options.raw === undefined ||\n options.raw === null ||\n options.raw === false\n ) {\n options.raw = false;\n } else if (options.raw !== true) {\n throw new Error(\n `Invalid Option: raw must be true, got ${JSON.stringify(options.raw)}`,\n );\n }\n // Normalize option `record_delimiter`\n if (options.record_delimiter === undefined) {\n options.record_delimiter = [];\n } else if (\n typeof options.record_delimiter === \"string\" ||\n Buffer.isBuffer(options.record_delimiter)\n ) {\n if (options.record_delimiter.length === 0) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_RECORD_DELIMITER\",\n [\n \"Invalid option `record_delimiter`:\",\n \"value must be a non empty string or buffer,\",\n `got ${JSON.stringify(options.record_delimiter)}`,\n ],\n options,\n );\n }\n options.record_delimiter = [options.record_delimiter];\n } else if (!Array.isArray(options.record_delimiter)) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_RECORD_DELIMITER\",\n [\n \"Invalid option `record_delimiter`:\",\n \"value must be a string, a buffer or array of string|buffer,\",\n `got ${JSON.stringify(options.record_delimiter)}`,\n ],\n options,\n );\n }\n options.record_delimiter = options.record_delimiter.map(function (rd, i) {\n if (typeof rd !== \"string\" && !Buffer.isBuffer(rd)) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_RECORD_DELIMITER\",\n [\n \"Invalid option `record_delimiter`:\",\n \"value must be a string, a buffer or array of string|buffer\",\n `at index ${i},`,\n `got ${JSON.stringify(rd)}`,\n ],\n options,\n );\n } else if (rd.length === 0) {\n throw new CsvError(\n \"CSV_INVALID_OPTION_RECORD_DELIMITER\",\n [\n \"Invalid option `record_delimiter`:\",\n \"value must be a non empty string or buffer\",\n `at index ${i},`,\n `got ${JSON.stringify(rd)}`,\n ],\n options,\n );\n }\n if (typeof rd === \"string\") {\n rd = Buffer.from(rd, options.encoding);\n }\n return rd;\n });\n // Normalize option `relax_column_count`\n if (typeof options.relax_column_count === \"boolean\") {\n // Great, nothing to do\n } else if (\n options.relax_column_count === undefined ||\n options.relax_column_count === null\n ) {\n options.relax_column_count = false;\n } else {\n throw new Error(\n `Invalid Option: relax_column_count must be a boolean, got ${JSON.stringify(options.relax_column_count)}`,\n );\n }\n if (typeof options.relax_column_count_less === \"boolean\") {\n // Great, nothing to do\n } else if (\n options.relax_column_count_less === undefined ||\n options.relax_column_count_less === null\n ) {\n options.relax_column_count_less = false;\n } else {\n throw new Error(\n `Invalid Option: relax_column_count_less must be a boolean, got ${JSON.stringify(options.relax_column_count_less)}`,\n );\n }\n if (typeof options.relax_column_count_more === \"boolean\") {\n // Great, nothing to do\n } else if (\n options.relax_column_count_more === undefined ||\n options.relax_column_count_more === null\n ) {\n options.relax_column_count_more = false;\n } else {\n throw new Error(\n `Invalid Option: relax_column_count_more must be a boolean, got ${JSON.stringify(options.relax_column_count_more)}`,\n );\n }\n // Normalize option `relax_quotes`\n if (typeof options.relax_quotes === \"boolean\") {\n // Great, nothing to do\n } else if (\n options.relax_quotes === undefined ||\n options.relax_quotes === null\n ) {\n options.relax_quotes = false;\n } else {\n throw new Error(\n `Invalid Option: relax_quotes must be a boolean, got ${JSON.stringify(options.relax_quotes)}`,\n );\n }\n // Normalize option `skip_empty_lines`\n if (typeof options.skip_empty_lines === \"boolean\") {\n // Great, nothing to do\n } else if (\n options.skip_empty_lines === undefined ||\n options.skip_empty_lines === null\n ) {\n options.skip_empty_lines = false;\n } else {\n throw new Error(\n `Invalid Option: skip_empty_lines must be a boolean, got ${JSON.stringify(options.skip_empty_lines)}`,\n );\n }\n // Normalize option `skip_records_with_empty_values`\n if (typeof options.skip_records_with_empty_values === \"boolean\") {\n // Great, nothing to do\n } else if (\n options.skip_records_with_empty_values === undefined ||\n options.skip_records_with_empty_values === null\n ) {\n options.skip_records_with_empty_values = false;\n } else {\n throw new Error(\n `Invalid Option: skip_records_with_empty_values must be a boolean, got ${JSON.stringify(options.skip_records_with_empty_values)}`,\n );\n }\n // Normalize option `skip_records_with_error`\n if (typeof options.skip_records_with_error === \"boolean\") {\n // Great, nothing to do\n } else if (\n options.skip_records_with_error === undefined ||\n options.skip_records_with_error === null\n ) {\n options.skip_records_with_error = false;\n } else {\n throw new Error(\n `Invalid Option: skip_records_with_error must be a boolean, got ${JSON.stringify(options.skip_records_with_error)}`,\n );\n }\n // Normalize option `rtrim`\n if (\n options.rtrim === undefined ||\n options.rtrim === null ||\n options.rtrim === false\n ) {\n options.rtrim = false;\n } else if (options.rtrim !== true) {\n throw new Error(\n `Invalid Option: rtrim must be a boolean, got ${JSON.stringify(options.rtrim)}`,\n );\n }\n // Normalize option `ltrim`\n if (\n options.ltrim === undefined ||\n options.ltrim === null ||\n options.ltrim === false\n ) {\n options.ltrim = false;\n } else if (options.ltrim !== true) {\n throw new Error(\n `Invalid Option: ltrim must be a boolean, got ${JSON.stringify(options.ltrim)}`,\n );\n }\n // Normalize option `trim`\n if (\n options.trim === undefined ||\n options.trim === null ||\n options.trim === false\n ) {\n options.trim = false;\n } else if (options.trim !== true) {\n throw new Error(\n `Invalid Option: trim must be a boolean, got ${JSON.stringify(options.trim)}`,\n );\n }\n // Normalize options `trim`, `ltrim` and `rtrim`\n if (options.trim === true && opts.ltrim !== false) {\n options.ltrim = true;\n } else if (options.ltrim !== true) {\n options.ltrim = false;\n }\n if (options.trim === true && opts.rtrim !== false) {\n options.rtrim = true;\n } else if (options.rtrim !== true) {\n options.rtrim = false;\n }\n // Normalize option `to`\n if (options.to === undefined || options.to === null) {\n options.to = -1;\n } else {\n if (typeof options.to === \"string\" && /\\d+/.test(options.to)) {\n options.to = parseInt(options.to);\n }\n if (Number.isInteger(options.to)) {\n if (options.to <= 0) {\n throw new Error(\n `Invalid Option: to must be a positive integer greater than 0, got ${JSON.stringify(opts.to)}`,\n );\n }\n } else {\n throw new Error(\n `Invalid Option: to must be an integer, got ${JSON.stringify(opts.to)}`,\n );\n }\n }\n // Normalize option `to_line`\n if (options.to_line === undefined || options.to_line === null) {\n options.to_line = -1;\n } else {\n if (typeof options.to_line === \"string\" && /\\d+/.test(options.to_line)) {\n options.to_line = parseInt(options.to_line);\n }\n if (Number.isInteger(options.to_line)) {\n if (options.to_line <= 0) {\n throw new Error(\n `Invalid Option: to_line must be a positive integer greater than 0, got ${JSON.stringify(opts.to_line)}`,\n );\n }\n } else {\n throw new Error(\n `Invalid Option: to_line must be an integer, got ${JSON.stringify(opts.to_line)}`,\n );\n }\n }\n return options;\n};\n\nexport { normalize_options };\n","const underscore = function (str) {\n return str.replace(/([A-Z])/g, function (_, match) {\n return \"_\" + match.toLowerCase();\n });\n};\n\nexport { underscore };\n","import { normalize_columns_array } from \"./normalize_columns_array.js\";\nimport { init_state } from \"./init_state.js\";\nimport { normalize_options } from \"./normalize_options.js\";\nimport { CsvError } from \"./CsvError.js\";\n\nconst isRecordEmpty = function (record) {\n return record.every(\n (field) =>\n field == null || (field.toString && field.toString().trim() === \"\"),\n );\n};\n\nconst cr = 13; // `\\r`, carriage return, 0x0D in hexadécimal, 13 in decimal\nconst nl = 10; // `\\n`, newline, 0x0A in hexadecimal, 10 in decimal\n\nconst boms = {\n // Note, the following are equals:\n // Buffer.from(\"\\ufeff\")\n // Buffer.from([239, 187, 191])\n // Buffer.from('EFBBBF', 'hex')\n utf8: Buffer.from([239, 187, 191]),\n // Note, the following are equals:\n // Buffer.from \"\\ufeff\", 'utf16le\n // Buffer.from([255, 254])\n utf16le: Buffer.from([255, 254]),\n};\n\nconst transform = function (original_options = {}) {\n const info = {\n bytes: 0,\n comment_lines: 0,\n empty_lines: 0,\n invalid_field_length: 0,\n lines: 1,\n records: 0,\n };\n const options = normalize_options(original_options);\n return {\n info: info,\n original_options: original_options,\n options: options,\n state: init_state(options),\n __needMoreData: function (i, bufLen, end) {\n if (end) return false;\n const { encoding, escape, quote } = this.options;\n const { quoting, needMoreDataSize, recordDelimiterMaxLength } =\n this.state;\n const numOfCharLeft = bufLen - i - 1;\n const requiredLength = Math.max(\n needMoreDataSize,\n // Skip if the remaining buffer smaller than record delimiter\n // If \"record_delimiter\" is yet to be discovered:\n // 1. It is equals to `[]` and \"recordDelimiterMaxLength\" equals `0`\n // 2. We set the length to windows line ending in the current encoding\n // Note, that encoding is known from user or bom discovery at that point\n // recordDelimiterMaxLength,\n recordDelimiterMaxLength === 0\n ? Buffer.from(\"\\r\\n\", encoding).length\n : recordDelimiterMaxLength,\n // Skip if remaining buffer can be an escaped quote\n quoting ? (escape === null ? 0 : escape.length) + quote.length : 0,\n // Skip if remaining buffer can be record delimiter following the closing quote\n quoting ? quote.length + recordDelimiterMaxLength : 0,\n );\n return numOfCharLeft < requiredLength;\n },\n // Central parser implementation\n parse: function (nextBuf, end, push, close) {\n const {\n bom,\n comment_no_infix,\n encoding,\n from_line,\n ltrim,\n max_record_size,\n raw,\n relax_quotes,\n rtrim,\n skip_empty_lines,\n to,\n to_line,\n } = this.options;\n let { comment, escape, quote, record_delimiter } = this.options;\n const { bomSkipped, previousBuf, rawBuffer, escapeIsQuote } = this.state;\n let buf;\n if (previousBuf === undefined) {\n if (nextBuf === undefined) {\n // Handle empty string\n close();\n return;\n } else {\n buf = nextBuf;\n }\n } else if (previousBuf !== undefined && nextBuf === undefined) {\n buf = previousBuf;\n } else {\n buf = Buffer.concat([previousBuf, nextBuf]);\n }\n // Handle UTF BOM\n if (bomSkipped === false) {\n if (bom === false) {\n this.state.bomSkipped = true;\n } else if (buf.length < 3) {\n // No enough data\n if (end === false) {\n // Wait for more data\n this.state.previousBuf = buf;\n return;\n }\n } else {\n for (const encoding in boms) {\n if (boms[encoding].compare(buf, 0, boms[encoding].length) === 0) {\n // Skip BOM\n const bomLength = boms[encoding].length;\n this.state.bufBytesStart += bomLength;\n buf = buf.slice(bomLength);\n // Renormalize original options with the new encoding\n this.options = normalize_options({\n ...this.original_options,\n encoding: encoding,\n });\n // Options will re-evaluate the Buffer with the new encoding\n ({ comment, escape, quote } = this.options);\n break;\n }\n }\n this.state.bomSkipped = true;\n }\n }\n const bufLen = buf.length;\n let pos;\n for (pos = 0; pos < bufLen; pos++) {\n // Ensure we get enough space to look ahead\n // There should be a way to move this out of the loop\n if (this.__needMoreData(pos, bufLen, end)) {\n break;\n }\n if (this.state.wasRowDelimiter === true) {\n this.info.lines++;\n this.state.wasRowDelimiter = false;\n }\n if (to_line !== -1 && this.info.lines > to_line) {\n this.state.stop = true;\n close();\n return;\n }\n // Auto discovery of record_delimiter, unix, mac and windows supported\n if (this.state.quoting === false && record_delimiter.length === 0) {\n const record_delimiterCount = this.__autoDiscoverRecordDelimiter(\n buf,\n pos,\n );\n if (record_delimiterCount) {\n record_delimiter = this.options.record_delimiter;\n }\n }\n const chr = buf[pos];\n if (raw === true) {\n rawBuffer.append(chr);\n }\n if (\n (chr === cr || chr === nl) &&\n this.state.wasRowDelimiter === false\n ) {\n this.state.wasRowDelimiter = true;\n }\n // Previous char was a valid escape char\n // treat the current char as a regular char\n if (this.state.escaping === true) {\n this.state.escaping = false;\n } else {\n // Escape is only active inside quoted fields\n // We are quoting, the char is an escape chr and there is a chr to escape\n // if(escape !== null && this.state.quoting === true && chr === escape && pos + 1 < bufLen){\n if (\n escape !== null &&\n this.state.quoting === true &&\n this.__isEscape(buf, pos, chr) &&\n pos + escape.length < bufLen\n ) {\n if (escapeIsQuote) {\n if (this.__isQuote(buf, pos + escape.length)) {\n this.state.escaping = true;\n pos += escape.length - 1;\n continue;\n }\n } else {\n this.state.escaping = true;\n pos += escape.length - 1;\n continue;\n }\n }\n // Not currently escaping and chr is a quote\n // TODO: need to compare bytes instead of single char\n if (this.state.commenting === false && this.__isQuote(buf, pos)) {\n if (this.state.quoting === true) {\n const nextChr = buf[pos + quote.length];\n const isNextChrTrimable =\n rtrim && this.__isCharTrimable(buf, pos + quote.length);\n const isNextChrComment =\n comment !== null &&\n this.__compareBytes(comment, buf, pos + quote.length, nextChr);\n const isNextChrDelimiter = this.__isDelimiter(\n buf,\n pos + quote.length,\n nextChr,\n );\n const isNextChrRecordDelimiter =\n record_delimiter.length === 0\n ? this.__autoDiscoverRecordDelimiter(buf, pos + quote.length)\n : this.__isRecordDelimiter(nextChr, buf, pos + quote.length);\n // Escape a quote\n // Treat next char as a regular character\n if (\n escape !== null &&\n this.__isEscape(buf, pos, chr) &&\n this.__isQuote(buf, pos + escape.length)\n ) {\n pos += escape.length - 1;\n } else if (\n !nextChr ||\n isNextChrDelimiter ||\n isNextChrRecordDelimiter ||\n isNextChrComment ||\n isNextChrTrimable\n ) {\n this.state.quoting = false;\n this.state.wasQuoting = true;\n pos += quote.length - 1;\n continue;\n } else if (relax_quotes === false) {\n const err = this.__error(\n new CsvError(\n \"CSV_INVALID_CLOSING_QUOTE\",\n [\n \"Invalid Closing Quote:\",\n `got \"${String.fromCharCode(nextChr)}\"`,\n `at line ${this.info.lines}`,\n \"instead of delimiter, record delimiter, trimable character\",\n \"(if activated) or comment\",\n ],\n this.options,\n this.__infoField(),\n ),\n );\n if (err !== undefined) return err;\n } else {\n this.state.quoting = false;\n this.state.wasQuoting = true;\n this.state.field.prepend(quote);\n pos += quote.length - 1;\n }\n } else {\n if (this.state.field.length !== 0) {\n // In relax_quotes mode, treat opening quote preceded by chrs as regular\n if (relax_quotes === false) {\n const info = this.__infoField();\n const bom = Object.keys(boms)\n .map((b) =>\n boms[b].equals(this.state.field.toString()) ? b : false,\n )\n .filter(Boolean)[0];\n const err = this.__error(\n new CsvError(\n \"INVALID_OPENING_QUOTE\",\n [\n \"Invalid Opening Quote:\",\n `a quote is found on field ${JSON.stringify(info.column)} at line ${info.lines}, value is ${JSON.stringify(this.state.field.toString(encoding))}`,\n bom ? `(${bom} bom)` : undefined,\n ],\n this.options,\n info,\n {\n field: this.state.field,\n },\n ),\n );\n if (err !== undefined) return err;\n }\n } else {\n this.state.quoting = true;\n pos += quote.length - 1;\n continue;\n }\n }\n }\n if (this.state.quoting === false) {\n const recordDelimiterLength = this.__isRecordDelimiter(\n chr,\n buf,\n pos,\n );\n if (recordDelimiterLength !== 0) {\n // Do not emit comments which take a full line\n const skipCommentLine =\n this.state.commenting &&\n this.state.wasQuoting === false &&\n this.state.record.length === 0 &&\n this.state.field.length === 0;\n if (skipCommentLine) {\n this.info.comment_lines++;\n // Skip full comment line\n } else {\n // Activate records emition if above from_line\n if (\n this.state.enabled === false &&\n this.info.lines +\n (this.state.wasRowDelimiter === true ? 1 : 0) >=\n from_line\n ) {\n this.state.enabled = true;\n this.__resetField();\n this.__resetRecord();\n pos += recordDelimiterLength - 1;\n continue;\n }\n // Skip if line is empty and skip_empty_lines activated\n if (\n skip_empty_lines === true &&\n this.state.wasQuoting === false &&\n this.state.record.length === 0 &&\n this.state.field.length === 0\n ) {\n this.info.empty_lines++;\n pos += recordDelimiterLength - 1;\n continue;\n }\n this.info.bytes = this.state.bufBytesStart + pos;\n const errField = this.__onField();\n if (errField !== undefined) return errField;\n this.info.bytes =\n this.state.bufBytesStart + pos + recordDelimiterLength;\n const errRecord = this.__onRecord(push);\n if (errRecord !== undefined) return errRecord;\n if (to !== -1 && this.info.records >= to) {\n this.state.stop = true;\n close();\n return;\n }\n }\n this.state.commenting = false;\n pos += recordDelimiterLength - 1;\n continue;\n }\n if (this.state.commenting) {\n continue;\n }\n if (\n comment !== null &&\n (comment_no_infix === false ||\n (this.state.record.length === 0 &&\n this.state.field.length === 0))\n ) {\n const commentCount = this.__compareBytes(comment, buf, pos, chr);\n if (commentCount !== 0) {\n this.state.commenting = true;\n continue;\n }\n }\n const delimiterLength = this.__isDelimiter(buf, pos, chr);\n if (delimiterLength !== 0) {\n this.info.bytes = this.state.bufBytesStart + pos;\n const errField = this.__onField();\n if (errField !== undefined) return errField;\n pos += delimiterLength - 1;\n continue;\n }\n }\n }\n if (this.state.commenting === false) {\n if (\n max_record_size !== 0 &&\n this.state.record_length + this.state.field.length > max_record_size\n ) {\n return this.__error(\n new CsvError(\n \"CSV_MAX_RECORD_SIZE\",\n [\n \"Max Record Size:\",\n \"record exceed the maximum number of tolerated bytes\",\n `of ${max_record_size}`,\n `at line ${this.info.lines}`,\n ],\n this.options,\n this.__infoField(),\n ),\n );\n }\n }\n const lappend =\n ltrim === false ||\n this.state.quoting === true ||\n this.state.field.length !== 0 ||\n !this.__isCharTrimable(buf, pos);\n // rtrim in non quoting is handle in __onField\n const rappend = rtrim === false || this.state.wasQuoting === false;\n if (lappend === true && rappend === true) {\n this.state.field.append(chr);\n } else if (rtrim === true && !this.__isCharTrimable(buf, pos)) {\n return this.__error(\n new CsvError(\n \"CSV_NON_TRIMABLE_CHAR_AFTER_CLOSING_QUOTE\",\n [\n \"Invalid Closing Quote:\",\n \"found non trimable byte after quote\",\n `at line ${this.info.lines}`,\n ],\n this.options,\n this.__infoField(),\n ),\n );\n } else {\n if (lappend === false) {\n pos += this.__isCharTrimable(buf, pos) - 1;\n }\n continue;\n }\n }\n if (end === true) {\n // Ensure we are not ending in a quoting state\n if (this.state.quoting === true) {\n const err = this.__error(\n new CsvError(\n \"CSV_QUOTE_NOT_CLOSED\",\n [\n \"Quote Not Closed:\",\n `the parsing is finished with an opening quote at line ${this.info.lines}`,\n ],\n this.options,\n this.__infoField(),\n ),\n );\n if (err !== undefined) return err;\n } else {\n // Skip last line if it has no characters\n if (\n this.state.wasQuoting === true ||\n this.state.record.length !== 0 ||\n this.state.field.length !== 0\n ) {\n this.info.bytes = this.state.bufBytesStart + pos;\n const errField = this.__onField();\n if (errField !== undefined) return errField;\n const errRecord = this.__onRecord(push);\n if (errRecord !== undefined) return errRecord;\n } else if (this.state.wasRowDelimiter === true) {\n this.info.empty_lines++;\n } else if (this.state.commenting === true) {\n this.info.comment_lines++;\n }\n }\n } else {\n this.state.bufBytesStart += pos;\n this.state.previousBuf = buf.slice(pos);\n }\n if (this.state.wasRowDelimiter === true) {\n this.info.lines++;\n this.state.wasRowDelimiter = false;\n }\n },\n __onRecord: function (push) {\n const {\n columns,\n group_columns_by_name,\n encoding,\n info,\n from,\n relax_column_count,\n relax_column_count_less,\n relax_column_count_more,\n raw,\n skip_records_with_empty_values,\n } = this.options;\n const { enabled, record } = this.state;\n if (enabled === false) {\n return this.__resetRecord();\n }\n // Convert the first line into column names\n const recordLength = record.length;\n if (columns === true) {\n if (skip_records_with_empty_values === true && isRecordEmpty(record)) {\n this.__resetRecord();\n return;\n }\n return this.__firstLineToColumns(record);\n }\n if (columns === false && this.info.records === 0) {\n this.state.expectedRecordLength = recordLength;\n }\n if (recordLength !== this.state.expectedRecordLength) {\n const err =\n columns === false\n ? new CsvError(\n \"CSV_RECORD_INCONSISTENT_FIELDS_LENGTH\",\n [\n \"Invalid Record Length:\",\n `expect ${this.state.expectedRecordLength},`,\n `got ${recordLength} on line ${this.info.lines}`,\n ],\n this.options,\n this.__infoField(),\n {\n record: record,\n },\n )\n : new CsvError(\n \"CSV_RECORD_INCONSISTENT_COLUMNS\",\n [\n \"Invalid Record Length:\",\n `columns length is ${columns.length},`, // rename columns\n `got ${recordLength} on line ${this.info.lines}`,\n ],\n this.options,\n this.__infoField(),\n {\n record: record,\n },\n );\n if (\n relax_column_count === true ||\n (relax_column_count_less === true &&\n recordLength < this.state.expectedRecordLength) ||\n (relax_column_count_more === true &&\n recordLength > this.state.expectedRecordLength)\n ) {\n this.info.invalid_field_length++;\n this.state.error = err;\n // Error is undefined with skip_records_with_error\n } else {\n const finalErr = this.__error(err);\n if (finalErr) return finalErr;\n }\n }\n if (skip_records_with_empty_values === true && isRecordEmpty(record)) {\n this.__resetRecord();\n return;\n }\n if (this.state.recordHasError === true) {\n this.__resetRecord();\n this.state.recordHasError = false;\n return;\n }\n this.info.records++;\n if (from === 1 || this.info.records >= from) {\n const { objname } = this.options;\n // With columns, records are object\n if (columns !== false) {\n const obj = {};\n // Transform record array to an object\n for (let i = 0, l = record.length; i < l; i++) {\n if (columns[i] === undefined || columns[i].disabled) continue;\n // Turn duplicate columns into an array\n if (\n group_columns_by_name === true &&\n obj[columns[i].name] !== undefined\n ) {\n if (Array.isArray(obj[columns[i].name])) {\n obj[columns[i].name] = obj[columns[i].name].concat(record[i]);\n } else {\n obj[columns[i].name] = [obj[columns[i].name], record[i]];\n }\n } else {\n obj[columns[i].name] = record[i];\n }\n }\n // Without objname (default)\n if (raw === true || info === true) {\n const extRecord = Object.assign(\n { record: obj },\n raw === true\n ? { raw: this.state.rawBuffer.toString(encoding) }\n : {},\n info === true ? { info: this.__infoRecord() } : {},\n );\n const err = this.__push(\n objname === undefined ? extRecord : [obj[objname], extRecord],\n push,\n );\n if (err) {\n return err;\n }\n } else {\n const err = this.__push(\n objname === undefined ? obj : [obj[objname], obj],\n push,\n );\n if (err) {\n return err;\n }\n }\n // Without columns, records are array\n } else {\n if (raw === true || info === true) {\n const extRecord = Object.assign(\n { record: record },\n raw === true\n ? { raw: this.state.rawBuffer.toString(encoding) }\n : {},\n info === true ? { info: this.__infoRecord() } : {},\n );\n const err = this.__push(\n objname === undefined ? extRecord : [record[objname], extRecord],\n push,\n );\n if (err) {\n return err;\n }\n } else {\n const err = this.__push(\n objname === undefined ? record : [record[objname], record],\n push,\n );\n if (err) {\n return err;\n }\n }\n }\n }\n this.__resetRecord();\n },\n __firstLineToColumns: function (record) {\n const { firstLineToHeaders } = this.state;\n try {\n const headers =\n firstLineToHeaders === undefined\n ? record\n : firstLineToHeaders.call(null, record);\n if (!Array.isArray(headers)) {\n return this.__error(\n new CsvError(\n \"CSV_INVALID_COLUMN_MAPPING\",\n [\n \"Invalid Column Mapping:\",\n \"expect an array from column function,\",\n `got ${JSON.stringify(headers)}`,\n ],\n this.options,\n this.__infoField(),\n {\n headers: headers,\n },\n ),\n );\n }\n const normalizedHeaders = normalize_columns_array(headers);\n this.state.expectedRecordLength = normalizedHeaders.length;\n this.options.columns = normalizedHeaders;\n this.__resetRecord();\n return;\n } catch (err) {\n return err;\n }\n },\n __resetRecord: function () {\n if (this.options.raw === true) {\n this.state.rawBuffer.reset();\n }\n this.state.error = undefined;\n this.state.record = [];\n this.state.record_length = 0;\n },\n __onField: function () {\n const { cast, encoding, rtrim, max_record_size } = this.options;\n const { enabled, wasQuoting } = this.state;\n // Short circuit for the from_line options\n if (enabled === false) {\n return this.__resetField();\n }\n let field = this.state.field.toString(encoding);\n if (rtrim === true && wasQuoting === false) {\n field = field.trimRight();\n }\n if (cast === true) {\n const [err, f] = this.__cast(field);\n if (err !== undefined) return err;\n field = f;\n }\n this.state.record.push(field);\n // Increment record length if record size must not exceed a limit\n if (max_record_size !== 0 && typeof field === \"string\") {\n this.state.record_length += field.length;\n }\n this.__resetField();\n },\n __resetField: function () {\n this.state.field.reset();\n this.state.wasQuoting = false;\n },\n __push: function (record, push) {\n const { on_record } = this.options;\n if (on_record !== undefined) {\n const info = this.__infoRecord();\n try {\n record = on_record.call(null, record, info);\n } catch (err) {\n return err;\n }\n if (record === undefined || record === null) {\n return;\n }\n }\n push(record);\n },\n // Return a tuple with the error and the casted value\n __cast: function (field) {\n const { columns, relax_column_count } = this.options;\n const isColumns = Array.isArray(columns);\n // Dont loose time calling cast\n // because the final record is an object\n // and this field can't be associated to a key present in columns\n if (\n isColumns === true &&\n relax_column_count &&\n this.options.columns.length <= this.state.record.length\n ) {\n return [undefined, undefined];\n }\n if (this.state.castField !== null) {\n try {\n const info = this.__infoField();\n return [undefined, this.state.castField.call(null, field, info)];\n } catch (err) {\n return [err];\n }\n }\n if (this.__isFloat(field)) {\n return [undefined, parseFloat(field)];\n } else if (this.options.cast_date !== false) {\n const info = this.__infoField();\n return [undefined, this.options.cast_date.call(null, field, info)];\n }\n return [undefined, field];\n },\n // Helper to test if a character is a space or a line delimiter\n __isCharTrimable: function (buf, pos) {\n const isTrim = (buf, pos) => {\n const { timchars } = this.state;\n loop1: for (let i = 0; i < timchars.length; i++) {\n const timchar = timchars[i];\n for (let j = 0; j < timchar.length; j++) {\n if (timchar[j] !== buf[pos + j]) continue loop1;\n }\n return timchar.length;\n }\n return 0;\n };\n return isTrim(buf, pos);\n },\n // Keep it in case we implement the `cast_int` option\n // __isInt(value){\n // // return Number.isInteger(parseInt(value))\n // // return !isNaN( parseInt( obj ) );\n // return /^(\\-|\\+)?[1-9][0-9]*$/.test(value)\n // }\n __isFloat: function (value) {\n return value - parseFloat(value) + 1 >= 0; // Borrowed from jquery\n },\n __compareBytes: function (sourceBuf, targetBuf, targetPos, firstByte) {\n if (sourceBuf[0] !== firstByte) return 0;\n const sourceLength = sourceBuf.length;\n for (let i = 1; i < sourceLength; i++) {\n if (sourceBuf[i] !== targetBuf[targetPos + i]) return 0;\n }\n return sourceLength;\n },\n __isDelimiter: function (buf, pos, chr) {\n const { delimiter, ignore_last_delimiters } = this.options;\n if (\n ignore_last_delimiters === true &&\n this.state.record.length === this.options.columns.length - 1\n ) {\n return 0;\n } else if (\n ignore_last_delimiters !== false &&\n typeof ignore_last_delimiters === \"number\" &&\n this.state.record.length === ignore_last_delimiters - 1\n ) {\n return 0;\n }\n loop1: for (let i = 0; i < delimiter.length; i++) {\n const del = delimiter[i];\n if (del[0] === chr) {\n for (let j = 1; j < del.length; j++) {\n if (del[j] !== buf[pos + j]) continue loop1;\n }\n return del.length;\n }\n }\n return 0;\n },\n __isRecordDelimiter: function (chr, buf, pos) {\n const { record_delimiter } = this.options;\n const recordDelimiterLength = record_delimiter.length;\n loop1: for (let i = 0; i < recordDelimiterLength; i++) {\n const rd = record_delimiter[i];\n const rdLength = rd.length;\n if (rd[0] !== chr) {\n continue;\n }\n for (let j = 1; j < rdLength; j++) {\n if (rd[j] !== buf[pos + j]) {\n continue loop1;\n }\n }\n return rd.length;\n }\n return 0;\n },\n __isEscape: function (buf, pos, chr) {\n const { escape } = this.options;\n if (escape === null) return false;\n const l = escape.length;\n if (escape[0] === chr) {\n for (let i = 0; i < l; i++) {\n if (escape[i] !== buf[pos + i]) {\n return false;\n }\n }\n return true;\n }\n return false;\n },\n __isQuote: function (buf, pos) {\n const { quote } = this.options;\n if (quote === null) return false;\n const l = quote.length;\n for (let i = 0; i < l; i++) {\n if (quote[i] !== buf[pos + i]) {\n return false;\n }\n }\n return true;\n },\n __autoDiscoverRecordDelimiter: function (buf, pos) {\n const { encoding } = this.options;\n // Note, we don't need to cache this information in state,\n // It is only called on the first line until we find out a suitable\n // record delimiter.\n const rds = [\n // Important, the windows line ending must be before mac os 9\n Buffer.from(\"\\r\\n\", encoding),\n Buffer.from(\"\\n\", encoding),\n Buffer.from(\"\\r\", encoding),\n ];\n loop: for (let i = 0; i < rds.length; i++) {\n const l = rds[i].length;\n for (let j = 0; j < l; j++) {\n if (rds[i][j] !== buf[pos + j]) {\n continue loop;\n }\n }\n this.options.record_delimiter.push(rds[i]);\n this.state.recordDelimiterMaxLength = rds[i].length;\n return rds[i].length;\n }\n return 0;\n },\n __error: function (msg) {\n const { encoding, raw, skip_records_with_error } = this.options;\n const err = typeof msg === \"string\" ? new Error(msg) : msg;\n if (skip_records_with_error) {\n this.state.recordHasError = true;\n if (this.options.on_skip !== undefined) {\n this.options.on_skip(\n err,\n raw ? this.state.rawBuffer.toString(encoding) : undefined,\n );\n }\n // this.emit('skip', err, raw ? this.state.rawBuffer.toString(encoding) : undefined);\n return undefined;\n } else {\n return err;\n }\n },\n __infoDataSet: function () {\n return {\n ...this.info,\n columns: this.options.columns,\n };\n },\n __infoRecord: function () {\n const { columns, raw, encoding } = this.options;\n return {\n ...this.__infoDataSet(),\n error: this.state.error,\n header: columns === true,\n index: this.state.record.length,\n raw: raw ? this.state.rawBuffer.toString(encoding) : undefined,\n };\n },\n __infoField: function () {\n const { columns } = this.options;\n const isColumns = Array.isArray(columns);\n return {\n ...this.__infoRecord(),\n column:\n isColumns === true\n ? columns.length > this.state.record.length\n ? columns[this.state.record.length].name\n : null\n : this.state.record.length,\n quoting: this.state.wasQuoting,\n };\n },\n };\n};\n\nexport { transform, CsvError };\n","import ResizeableBuffer from \"../utils/ResizeableBuffer.js\";\n\n// white space characters\n// https://en.wikipedia.org/wiki/Whitespace_character\n// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions/Character_Classes#Types\n// \\f\\n\\r\\t\\v\\u00a0\\u1680\\u2000-\\u200a\\u2028\\u2029\\u202f\\u205f\\u3000\\ufeff\nconst np = 12;\nconst cr = 13; // `\\r`, carriage return, 0x0D in hexadécimal, 13 in decimal\nconst nl = 10; // `\\n`, newline, 0x0A in hexadecimal, 10 in decimal\nconst space = 32;\nconst tab = 9;\n\nconst init_state = function (options) {\n return {\n bomSkipped: false,\n bufBytesStart: 0,\n castField: options.cast_function,\n commenting: false,\n // Current error encountered by a record\n error: undefined,\n enabled: options.from_line === 1,\n escaping: false,\n escapeIsQuote:\n Buffer.isBuffer(options.escape) &&\n Buffer.isBuffer(options.quote) &&\n Buffer.compare(options.escape, options.quote) === 0,\n // columns can be `false`, `true`, `Array`\n expectedRecordLength: Array.isArray(options.columns)\n ? options.columns.length\n : undefined,\n field: new ResizeableBuffer(20),\n firstLineToHeaders: options.cast_first_line_to_header,\n needMoreDataSize: Math.max(\n // Skip if the remaining buffer smaller than comment\n options.comment !== null ? options.comment.length : 0,\n // Skip if the remaining buffer can be delimiter\n ...options.delimiter.map((delimiter) => delimiter.length),\n // Skip if the remaining buffer can be escape sequence\n options.quote !== null ? options.quote.length : 0,\n ),\n previousBuf: undefined,\n quoting: false,\n stop: false,\n rawBuffer: new ResizeableBuffer(100),\n record: [],\n recordHasError: false,\n record_length: 0,\n recordDelimiterMaxLength:\n options.record_delimiter.length === 0\n ? 0\n : Math.max(...options.record_delimiter.map((v) => v.length)),\n trimChars: [\n Buffer.from(\" \", options.encoding)[0],\n Buffer.from(\"\\t\", options.encoding)[0],\n ],\n wasQuoting: false,\n wasRowDelimiter: false,\n timchars: [\n Buffer.from(Buffer.from([cr], \"utf8\").toString(), options.encoding),\n Buffer.from(Buffer.from([nl], \"utf8\").toString(), options.encoding),\n Buffer.from(Buffer.from([np], \"utf8\").toString(), options.encoding),\n Buffer.from(Buffer.from([space], \"utf8\").toString(), options.encoding),\n Buffer.from(Buffer.from([tab], \"utf8\").toString(), options.encoding),\n ],\n };\n};\n\nexport { init_state };\n","import { CsvError, transform } from \"./api/index.js\";\n\nconst parse = function (data, opts = {}) {\n if (typeof data === \"string\") {\n data = Buffer.from(data);\n }\n const records = opts && opts.objname ? {} : [];\n const parser = transform(opts);\n const push = (record) => {\n if (parser.options.objname === undefined) records.push(record);\n else {\n records[record[0]] = record[1];\n }\n };\n const close = () => {};\n const err1 = parser.parse(data, false, push, close);\n if (err1 !== undefined) throw err1;\n const err2 = parser.parse(undefined, true, push, close);\n if (err2 !== undefined) throw err2;\n return records;\n};\n\n// export default parse\nexport { parse };\nexport { CsvError };\n","\n/*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT */\nfunction isNothing(subject) {\n return (typeof subject === 'undefined') || (subject === null);\n}\n\n\nfunction isObject(subject) {\n return (typeof subject === 'object') && (subject !== null);\n}\n\n\nfunction toArray(sequence) {\n if (Array.isArray(sequence)) return sequence;\n else if (isNothing(sequence)) return [];\n\n return [ sequence ];\n}\n\n\nfunction extend(target, source) {\n var index, length, key, sourceKeys;\n\n if (source) {\n sourceKeys = Object.keys(source);\n\n for (index = 0, length = sourceKeys.length; index < length; index += 1) {\n key = sourceKeys[index];\n target[key] = source[key];\n }\n }\n\n return target;\n}\n\n\nfunction repeat(string, count) {\n var result = '', cycle;\n\n for (cycle = 0; cycle < count; cycle += 1) {\n result += string;\n }\n\n return result;\n}\n\n\nfunction isNegativeZero(number) {\n return (number === 0) && (Number.NEGATIVE_INFINITY === 1 / number);\n}\n\n\nvar isNothing_1 = isNothing;\nvar isObject_1 = isObject;\nvar toArray_1 = toArray;\nvar repeat_1 = repeat;\nvar isNegativeZero_1 = isNegativeZero;\nvar extend_1 = extend;\n\nvar common = {\n\tisNothing: isNothing_1,\n\tisObject: isObject_1,\n\ttoArray: toArray_1,\n\trepeat: repeat_1,\n\tisNegativeZero: isNegativeZero_1,\n\textend: extend_1\n};\n\n// YAML error class. http://stackoverflow.com/questions/8458984\n\n\nfunction formatError(exception, compact) {\n var where = '', message = exception.reason || '(unknown reason)';\n\n if (!exception.mark) return message;\n\n if (exception.mark.name) {\n where += 'in \"' + exception.mark.name + '\" ';\n }\n\n where += '(' + (exception.mark.line + 1) + ':' + (exception.mark.column + 1) + ')';\n\n if (!compact && exception.mark.snippet) {\n where += '\\n\\n' + exception.mark.snippet;\n }\n\n return message + ' ' + where;\n}\n\n\nfunction YAMLException$1(reason, mark) {\n // Super constructor\n Error.call(this);\n\n this.name = 'YAMLException';\n this.reason = reason;\n this.mark = mark;\n this.message = formatError(this, false);\n\n // Include stack trace in error object\n if (Error.captureStackTrace) {\n // Chrome and NodeJS\n Error.captureStackTrace(this, this.constructor);\n } else {\n // FF, IE 10+ and Safari 6+. Fallback for others\n this.stack = (new Error()).stack || '';\n }\n}\n\n\n// Inherit from Error\nYAMLException$1.prototype = Object.create(Error.prototype);\nYAMLException$1.prototype.constructor = YAMLException$1;\n\n\nYAMLException$1.prototype.toString = function toString(compact) {\n return this.name + ': ' + formatError(this, compact);\n};\n\n\nvar exception = YAMLException$1;\n\n// get snippet for a single line, respecting maxLength\nfunction getLine(buffer, lineStart, lineEnd, position, maxLineLength) {\n var head = '';\n var tail = '';\n var maxHalfLength = Math.floor(maxLineLength / 2) - 1;\n\n if (position - lineStart > maxHalfLength) {\n head = ' ... ';\n lineStart = position - maxHalfLength + head.length;\n }\n\n if (lineEnd - position > maxHalfLength) {\n tail = ' ...';\n lineEnd = position + maxHalfLength - tail.length;\n }\n\n return {\n str: head + buffer.slice(lineStart, lineEnd).replace(/\\t/g, '→') + tail,\n pos: position - lineStart + head.length // relative position\n };\n}\n\n\nfunction padStart(string, max) {\n return common.repeat(' ', max - string.length) + string;\n}\n\n\nfunction makeSnippet(mark, options) {\n options = Object.create(options || null);\n\n if (!mark.buffer) return null;\n\n if (!options.maxLength) options.maxLength = 79;\n if (typeof options.indent !== 'number') options.indent = 1;\n if (typeof options.linesBefore !== 'number') options.linesBefore = 3;\n if (typeof options.linesAfter !== 'number') options.linesAfter = 2;\n\n var re = /\\r?\\n|\\r|\\0/g;\n var lineStarts = [ 0 ];\n var lineEnds = [];\n var match;\n var foundLineNo = -1;\n\n while ((match = re.exec(mark.buffer))) {\n lineEnds.push(match.index);\n lineStarts.push(match.index + match[0].length);\n\n if (mark.position <= match.index && foundLineNo < 0) {\n foundLineNo = lineStarts.length - 2;\n }\n }\n\n if (foundLineNo < 0) foundLineNo = lineStarts.length - 1;\n\n var result = '', i, line;\n var lineNoLength = Math.min(mark.line + options.linesAfter, lineEnds.length).toString().length;\n var maxLineLength = options.maxLength - (options.indent + lineNoLength + 3);\n\n for (i = 1; i <= options.linesBefore; i++) {\n if (foundLineNo - i < 0) break;\n line = getLine(\n mark.buffer,\n lineStarts[foundLineNo - i],\n lineEnds[foundLineNo - i],\n mark.position - (lineStarts[foundLineNo] - lineStarts[foundLineNo - i]),\n maxLineLength\n );\n result = common.repeat(' ', options.indent) + padStart((mark.line - i + 1).toString(), lineNoLength) +\n ' | ' + line.str + '\\n' + result;\n }\n\n line = getLine(mark.buffer, lineStarts[foundLineNo], lineEnds[foundLineNo], mark.position, maxLineLength);\n result += common.repeat(' ', options.indent) + padStart((mark.line + 1).toString(), lineNoLength) +\n ' | ' + line.str + '\\n';\n result += common.repeat('-', options.indent + lineNoLength + 3 + line.pos) + '^' + '\\n';\n\n for (i = 1; i <= options.linesAfter; i++) {\n if (foundLineNo + i >= lineEnds.length) break;\n line = getLine(\n mark.buffer,\n lineStarts[foundLineNo + i],\n lineEnds[foundLineNo + i],\n mark.position - (lineStarts[foundLineNo] - lineStarts[foundLineNo + i]),\n maxLineLength\n );\n result += common.repeat(' ', options.indent) + padStart((mark.line + i + 1).toString(), lineNoLength) +\n ' | ' + line.str + '\\n';\n }\n\n return result.replace(/\\n$/, '');\n}\n\n\nvar snippet = makeSnippet;\n\nvar TYPE_CONSTRUCTOR_OPTIONS = [\n 'kind',\n 'multi',\n 'resolve',\n 'construct',\n 'instanceOf',\n 'predicate',\n 'represent',\n 'representName',\n 'defaultStyle',\n 'styleAliases'\n];\n\nvar YAML_NODE_KINDS = [\n 'scalar',\n 'sequence',\n 'mapping'\n];\n\nfunction compileStyleAliases(map) {\n var result = {};\n\n if (map !== null) {\n Object.keys(map).forEach(function (style) {\n map[style].forEach(function (alias) {\n result[String(alias)] = style;\n });\n });\n }\n\n return result;\n}\n\nfunction Type$1(tag, options) {\n options = options || {};\n\n Object.keys(options).forEach(function (name) {\n if (TYPE_CONSTRUCTOR_OPTIONS.indexOf(name) === -1) {\n throw new exception('Unknown option \"' + name + '\" is met in definition of \"' + tag + '\" YAML type.');\n }\n });\n\n // TODO: Add tag format check.\n this.options = options; // keep original options in case user wants to extend this type later\n this.tag = tag;\n this.kind = options['kind'] || null;\n this.resolve = options['resolve'] || function () { return true; };\n this.construct = options['construct'] || function (data) { return data; };\n this.instanceOf = options['instanceOf'] || null;\n this.predicate = options['predicate'] || null;\n this.represent = options['represent'] || null;\n this.representName = options['representName'] || null;\n this.defaultStyle = options['defaultStyle'] || null;\n this.multi = options['multi'] || false;\n this.styleAliases = compileStyleAliases(options['styleAliases'] || null);\n\n if (YAML_NODE_KINDS.indexOf(this.kind) === -1) {\n throw new exception('Unknown kind \"' + this.kind + '\" is specified for \"' + tag + '\" YAML type.');\n }\n}\n\nvar type = Type$1;\n\n/*eslint-disable max-len*/\n\n\n\n\n\nfunction compileList(schema, name) {\n var result = [];\n\n schema[name].forEach(function (currentType) {\n var newIndex = result.length;\n\n result.forEach(function (previousType, previousIndex) {\n if (previousType.tag === currentType.tag &&\n previousType.kind === currentType.kind &&\n previousType.multi === currentType.multi) {\n\n newIndex = previousIndex;\n }\n });\n\n result[newIndex] = currentType;\n });\n\n return result;\n}\n\n\nfunction compileMap(/* lists... */) {\n var result = {\n scalar: {},\n sequence: {},\n mapping: {},\n fallback: {},\n multi: {\n scalar: [],\n sequence: [],\n mapping: [],\n fallback: []\n }\n }, index, length;\n\n function collectType(type) {\n if (type.multi) {\n result.multi[type.kind].push(type);\n result.multi['fallback'].push(type);\n } else {\n result[type.kind][type.tag] = result['fallback'][type.tag] = type;\n }\n }\n\n for (index = 0, length = arguments.length; index < length; index += 1) {\n arguments[index].forEach(collectType);\n }\n return result;\n}\n\n\nfunction Schema$1(definition) {\n return this.extend(definition);\n}\n\n\nSchema$1.prototype.extend = function extend(definition) {\n var implicit = [];\n var explicit = [];\n\n if (definition instanceof type) {\n // Schema.extend(type)\n explicit.push(definition);\n\n } else if (Array.isArray(definition)) {\n // Schema.extend([ type1, type2, ... ])\n explicit = explicit.concat(definition);\n\n } else if (definition && (Array.isArray(definition.implicit) || Array.isArray(definition.explicit))) {\n // Schema.extend({ explicit: [ type1, type2, ... ], implicit: [ type1, type2, ... ] })\n if (definition.implicit) implicit = implicit.concat(definition.implicit);\n if (definition.explicit) explicit = explicit.concat(definition.explicit);\n\n } else {\n throw new exception('Schema.extend argument should be a Type, [ Type ], ' +\n 'or a schema definition ({ implicit: [...], explicit: [...] })');\n }\n\n implicit.forEach(function (type$1) {\n if (!(type$1 instanceof type)) {\n throw new exception('Specified list of YAML types (or a single Type object) contains a non-Type object.');\n }\n\n if (type$1.loadKind && type$1.loadKind !== 'scalar') {\n throw new exception('There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.');\n }\n\n if (type$1.multi) {\n throw new exception('There is a multi type in the implicit list of a schema. Multi tags can only be listed as explicit.');\n }\n });\n\n explicit.forEach(function (type$1) {\n if (!(type$1 instanceof type)) {\n throw new exception('Specified list of YAML types (or a single Type object) contains a non-Type object.');\n }\n });\n\n var result = Object.create(Schema$1.prototype);\n\n result.implicit = (this.implicit || []).concat(implicit);\n result.explicit = (this.explicit || []).concat(explicit);\n\n result.compiledImplicit = compileList(result, 'implicit');\n result.compiledExplicit = compileList(result, 'explicit');\n result.compiledTypeMap = compileMap(result.compiledImplicit, result.compiledExplicit);\n\n return result;\n};\n\n\nvar schema = Schema$1;\n\nvar str = new type('tag:yaml.org,2002:str', {\n kind: 'scalar',\n construct: function (data) { return data !== null ? data : ''; }\n});\n\nvar seq = new type('tag:yaml.org,2002:seq', {\n kind: 'sequence',\n construct: function (data) { return data !== null ? data : []; }\n});\n\nvar map = new type('tag:yaml.org,2002:map', {\n kind: 'mapping',\n construct: function (data) { return data !== null ? data : {}; }\n});\n\nvar failsafe = new schema({\n explicit: [\n str,\n seq,\n map\n ]\n});\n\nfunction resolveYamlNull(data) {\n if (data === null) return true;\n\n var max = data.length;\n\n return (max === 1 && data === '~') ||\n (max === 4 && (data === 'null' || data === 'Null' || data === 'NULL'));\n}\n\nfunction constructYamlNull() {\n return null;\n}\n\nfunction isNull(object) {\n return object === null;\n}\n\nvar _null = new type('tag:yaml.org,2002:null', {\n kind: 'scalar',\n resolve: resolveYamlNull,\n construct: constructYamlNull,\n predicate: isNull,\n represent: {\n canonical: function () { return '~'; },\n lowercase: function () { return 'null'; },\n uppercase: function () { return 'NULL'; },\n camelcase: function () { return 'Null'; },\n empty: function () { return ''; }\n },\n defaultStyle: 'lowercase'\n});\n\nfunction resolveYamlBoolean(data) {\n if (data === null) return false;\n\n var max = data.length;\n\n return (max === 4 && (data === 'true' || data === 'True' || data === 'TRUE')) ||\n (max === 5 && (data === 'false' || data === 'False' || data === 'FALSE'));\n}\n\nfunction constructYamlBoolean(data) {\n return data === 'true' ||\n data === 'True' ||\n data === 'TRUE';\n}\n\nfunction isBoolean(object) {\n return Object.prototype.toString.call(object) === '[object Boolean]';\n}\n\nvar bool = new type('tag:yaml.org,2002:bool', {\n kind: 'scalar',\n resolve: resolveYamlBoolean,\n construct: constructYamlBoolean,\n predicate: isBoolean,\n represent: {\n lowercase: function (object) { return object ? 'true' : 'false'; },\n uppercase: function (object) { return object ? 'TRUE' : 'FALSE'; },\n camelcase: function (object) { return object ? 'True' : 'False'; }\n },\n defaultStyle: 'lowercase'\n});\n\nfunction isHexCode(c) {\n return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) ||\n ((0x41/* A */ <= c) && (c <= 0x46/* F */)) ||\n ((0x61/* a */ <= c) && (c <= 0x66/* f */));\n}\n\nfunction isOctCode(c) {\n return ((0x30/* 0 */ <= c) && (c <= 0x37/* 7 */));\n}\n\nfunction isDecCode(c) {\n return ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */));\n}\n\nfunction resolveYamlInteger(data) {\n if (data === null) return false;\n\n var max = data.length,\n index = 0,\n hasDigits = false,\n ch;\n\n if (!max) return false;\n\n ch = data[index];\n\n // sign\n if (ch === '-' || ch === '+') {\n ch = data[++index];\n }\n\n if (ch === '0') {\n // 0\n if (index + 1 === max) return true;\n ch = data[++index];\n\n // base 2, base 8, base 16\n\n if (ch === 'b') {\n // base 2\n index++;\n\n for (; index < max; index++) {\n ch = data[index];\n if (ch === '_') continue;\n if (ch !== '0' && ch !== '1') return false;\n hasDigits = true;\n }\n return hasDigits && ch !== '_';\n }\n\n\n if (ch === 'x') {\n // base 16\n index++;\n\n for (; index < max; index++) {\n ch = data[index];\n if (ch === '_') continue;\n if (!isHexCode(data.charCodeAt(index))) return false;\n hasDigits = true;\n }\n return hasDigits && ch !== '_';\n }\n\n\n if (ch === 'o') {\n // base 8\n index++;\n\n for (; index < max; index++) {\n ch = data[index];\n if (ch === '_') continue;\n if (!isOctCode(data.charCodeAt(index))) return false;\n hasDigits = true;\n }\n return hasDigits && ch !== '_';\n }\n }\n\n // base 10 (except 0)\n\n // value should not start with `_`;\n if (ch === '_') return false;\n\n for (; index < max; index++) {\n ch = data[index];\n if (ch === '_') continue;\n if (!isDecCode(data.charCodeAt(index))) {\n return false;\n }\n hasDigits = true;\n }\n\n // Should have digits and should not end with `_`\n if (!hasDigits || ch === '_') return false;\n\n return true;\n}\n\nfunction constructYamlInteger(data) {\n var value = data, sign = 1, ch;\n\n if (value.indexOf('_') !== -1) {\n value = value.replace(/_/g, '');\n }\n\n ch = value[0];\n\n if (ch === '-' || ch === '+') {\n if (ch === '-') sign = -1;\n value = value.slice(1);\n ch = value[0];\n }\n\n if (value === '0') return 0;\n\n if (ch === '0') {\n if (value[1] === 'b') return sign * parseInt(value.slice(2), 2);\n if (value[1] === 'x') return sign * parseInt(value.slice(2), 16);\n if (value[1] === 'o') return sign * parseInt(value.slice(2), 8);\n }\n\n return sign * parseInt(value, 10);\n}\n\nfunction isInteger(object) {\n return (Object.prototype.toString.call(object)) === '[object Number]' &&\n (object % 1 === 0 && !common.isNegativeZero(object));\n}\n\nvar int = new type('tag:yaml.org,2002:int', {\n kind: 'scalar',\n resolve: resolveYamlInteger,\n construct: constructYamlInteger,\n predicate: isInteger,\n represent: {\n binary: function (obj) { return obj >= 0 ? '0b' + obj.toString(2) : '-0b' + obj.toString(2).slice(1); },\n octal: function (obj) { return obj >= 0 ? '0o' + obj.toString(8) : '-0o' + obj.toString(8).slice(1); },\n decimal: function (obj) { return obj.toString(10); },\n /* eslint-disable max-len */\n hexadecimal: function (obj) { return obj >= 0 ? '0x' + obj.toString(16).toUpperCase() : '-0x' + obj.toString(16).toUpperCase().slice(1); }\n },\n defaultStyle: 'decimal',\n styleAliases: {\n binary: [ 2, 'bin' ],\n octal: [ 8, 'oct' ],\n decimal: [ 10, 'dec' ],\n hexadecimal: [ 16, 'hex' ]\n }\n});\n\nvar YAML_FLOAT_PATTERN = new RegExp(\n // 2.5e4, 2.5 and integers\n '^(?:[-+]?(?:[0-9][0-9_]*)(?:\\\\.[0-9_]*)?(?:[eE][-+]?[0-9]+)?' +\n // .2e4, .2\n // special case, seems not from spec\n '|\\\\.[0-9_]+(?:[eE][-+]?[0-9]+)?' +\n // .inf\n '|[-+]?\\\\.(?:inf|Inf|INF)' +\n // .nan\n '|\\\\.(?:nan|NaN|NAN))$');\n\nfunction resolveYamlFloat(data) {\n if (data === null) return false;\n\n if (!YAML_FLOAT_PATTERN.test(data) ||\n // Quick hack to not allow integers end with `_`\n // Probably should update regexp & check speed\n data[data.length - 1] === '_') {\n return false;\n }\n\n return true;\n}\n\nfunction constructYamlFloat(data) {\n var value, sign;\n\n value = data.replace(/_/g, '').toLowerCase();\n sign = value[0] === '-' ? -1 : 1;\n\n if ('+-'.indexOf(value[0]) >= 0) {\n value = value.slice(1);\n }\n\n if (value === '.inf') {\n return (sign === 1) ? Number.POSITIVE_INFINITY : Number.NEGATIVE_INFINITY;\n\n } else if (value === '.nan') {\n return NaN;\n }\n return sign * parseFloat(value, 10);\n}\n\n\nvar SCIENTIFIC_WITHOUT_DOT = /^[-+]?[0-9]+e/;\n\nfunction representYamlFloat(object, style) {\n var res;\n\n if (isNaN(object)) {\n switch (style) {\n case 'lowercase': return '.nan';\n case 'uppercase': return '.NAN';\n case 'camelcase': return '.NaN';\n }\n } else if (Number.POSITIVE_INFINITY === object) {\n switch (style) {\n case 'lowercase': return '.inf';\n case 'uppercase': return '.INF';\n case 'camelcase': return '.Inf';\n }\n } else if (Number.NEGATIVE_INFINITY === object) {\n switch (style) {\n case 'lowercase': return '-.inf';\n case 'uppercase': return '-.INF';\n case 'camelcase': return '-.Inf';\n }\n } else if (common.isNegativeZero(object)) {\n return '-0.0';\n }\n\n res = object.toString(10);\n\n // JS stringifier can build scientific format without dots: 5e-100,\n // while YAML requres dot: 5.e-100. Fix it with simple hack\n\n return SCIENTIFIC_WITHOUT_DOT.test(res) ? res.replace('e', '.e') : res;\n}\n\nfunction isFloat(object) {\n return (Object.prototype.toString.call(object) === '[object Number]') &&\n (object % 1 !== 0 || common.isNegativeZero(object));\n}\n\nvar float = new type('tag:yaml.org,2002:float', {\n kind: 'scalar',\n resolve: resolveYamlFloat,\n construct: constructYamlFloat,\n predicate: isFloat,\n represent: representYamlFloat,\n defaultStyle: 'lowercase'\n});\n\nvar json = failsafe.extend({\n implicit: [\n _null,\n bool,\n int,\n float\n ]\n});\n\nvar core = json;\n\nvar YAML_DATE_REGEXP = new RegExp(\n '^([0-9][0-9][0-9][0-9])' + // [1] year\n '-([0-9][0-9])' + // [2] month\n '-([0-9][0-9])$'); // [3] day\n\nvar YAML_TIMESTAMP_REGEXP = new RegExp(\n '^([0-9][0-9][0-9][0-9])' + // [1] year\n '-([0-9][0-9]?)' + // [2] month\n '-([0-9][0-9]?)' + // [3] day\n '(?:[Tt]|[ \\\\t]+)' + // ...\n '([0-9][0-9]?)' + // [4] hour\n ':([0-9][0-9])' + // [5] minute\n ':([0-9][0-9])' + // [6] second\n '(?:\\\\.([0-9]*))?' + // [7] fraction\n '(?:[ \\\\t]*(Z|([-+])([0-9][0-9]?)' + // [8] tz [9] tz_sign [10] tz_hour\n '(?::([0-9][0-9]))?))?$'); // [11] tz_minute\n\nfunction resolveYamlTimestamp(data) {\n if (data === null) return false;\n if (YAML_DATE_REGEXP.exec(data) !== null) return true;\n if (YAML_TIMESTAMP_REGEXP.exec(data) !== null) return true;\n return false;\n}\n\nfunction constructYamlTimestamp(data) {\n var match, year, month, day, hour, minute, second, fraction = 0,\n delta = null, tz_hour, tz_minute, date;\n\n match = YAML_DATE_REGEXP.exec(data);\n if (match === null) match = YAML_TIMESTAMP_REGEXP.exec(data);\n\n if (match === null) throw new Error('Date resolve error');\n\n // match: [1] year [2] month [3] day\n\n year = +(match[1]);\n month = +(match[2]) - 1; // JS month starts with 0\n day = +(match[3]);\n\n if (!match[4]) { // no hour\n return new Date(Date.UTC(year, month, day));\n }\n\n // match: [4] hour [5] minute [6] second [7] fraction\n\n hour = +(match[4]);\n minute = +(match[5]);\n second = +(match[6]);\n\n if (match[7]) {\n fraction = match[7].slice(0, 3);\n while (fraction.length < 3) { // milli-seconds\n fraction += '0';\n }\n fraction = +fraction;\n }\n\n // match: [8] tz [9] tz_sign [10] tz_hour [11] tz_minute\n\n if (match[9]) {\n tz_hour = +(match[10]);\n tz_minute = +(match[11] || 0);\n delta = (tz_hour * 60 + tz_minute) * 60000; // delta in mili-seconds\n if (match[9] === '-') delta = -delta;\n }\n\n date = new Date(Date.UTC(year, month, day, hour, minute, second, fraction));\n\n if (delta) date.setTime(date.getTime() - delta);\n\n return date;\n}\n\nfunction representYamlTimestamp(object /*, style*/) {\n return object.toISOString();\n}\n\nvar timestamp = new type('tag:yaml.org,2002:timestamp', {\n kind: 'scalar',\n resolve: resolveYamlTimestamp,\n construct: constructYamlTimestamp,\n instanceOf: Date,\n represent: representYamlTimestamp\n});\n\nfunction resolveYamlMerge(data) {\n return data === '<<' || data === null;\n}\n\nvar merge = new type('tag:yaml.org,2002:merge', {\n kind: 'scalar',\n resolve: resolveYamlMerge\n});\n\n/*eslint-disable no-bitwise*/\n\n\n\n\n\n// [ 64, 65, 66 ] -> [ padding, CR, LF ]\nvar BASE64_MAP = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\\n\\r';\n\n\nfunction resolveYamlBinary(data) {\n if (data === null) return false;\n\n var code, idx, bitlen = 0, max = data.length, map = BASE64_MAP;\n\n // Convert one by one.\n for (idx = 0; idx < max; idx++) {\n code = map.indexOf(data.charAt(idx));\n\n // Skip CR/LF\n if (code > 64) continue;\n\n // Fail on illegal characters\n if (code < 0) return false;\n\n bitlen += 6;\n }\n\n // If there are any bits left, source was corrupted\n return (bitlen % 8) === 0;\n}\n\nfunction constructYamlBinary(data) {\n var idx, tailbits,\n input = data.replace(/[\\r\\n=]/g, ''), // remove CR/LF & padding to simplify scan\n max = input.length,\n map = BASE64_MAP,\n bits = 0,\n result = [];\n\n // Collect by 6*4 bits (3 bytes)\n\n for (idx = 0; idx < max; idx++) {\n if ((idx % 4 === 0) && idx) {\n result.push((bits >> 16) & 0xFF);\n result.push((bits >> 8) & 0xFF);\n result.push(bits & 0xFF);\n }\n\n bits = (bits << 6) | map.indexOf(input.charAt(idx));\n }\n\n // Dump tail\n\n tailbits = (max % 4) * 6;\n\n if (tailbits === 0) {\n result.push((bits >> 16) & 0xFF);\n result.push((bits >> 8) & 0xFF);\n result.push(bits & 0xFF);\n } else if (tailbits === 18) {\n result.push((bits >> 10) & 0xFF);\n result.push((bits >> 2) & 0xFF);\n } else if (tailbits === 12) {\n result.push((bits >> 4) & 0xFF);\n }\n\n return new Uint8Array(result);\n}\n\nfunction representYamlBinary(object /*, style*/) {\n var result = '', bits = 0, idx, tail,\n max = object.length,\n map = BASE64_MAP;\n\n // Convert every three bytes to 4 ASCII characters.\n\n for (idx = 0; idx < max; idx++) {\n if ((idx % 3 === 0) && idx) {\n result += map[(bits >> 18) & 0x3F];\n result += map[(bits >> 12) & 0x3F];\n result += map[(bits >> 6) & 0x3F];\n result += map[bits & 0x3F];\n }\n\n bits = (bits << 8) + object[idx];\n }\n\n // Dump tail\n\n tail = max % 3;\n\n if (tail === 0) {\n result += map[(bits >> 18) & 0x3F];\n result += map[(bits >> 12) & 0x3F];\n result += map[(bits >> 6) & 0x3F];\n result += map[bits & 0x3F];\n } else if (tail === 2) {\n result += map[(bits >> 10) & 0x3F];\n result += map[(bits >> 4) & 0x3F];\n result += map[(bits << 2) & 0x3F];\n result += map[64];\n } else if (tail === 1) {\n result += map[(bits >> 2) & 0x3F];\n result += map[(bits << 4) & 0x3F];\n result += map[64];\n result += map[64];\n }\n\n return result;\n}\n\nfunction isBinary(obj) {\n return Object.prototype.toString.call(obj) === '[object Uint8Array]';\n}\n\nvar binary = new type('tag:yaml.org,2002:binary', {\n kind: 'scalar',\n resolve: resolveYamlBinary,\n construct: constructYamlBinary,\n predicate: isBinary,\n represent: representYamlBinary\n});\n\nvar _hasOwnProperty$3 = Object.prototype.hasOwnProperty;\nvar _toString$2 = Object.prototype.toString;\n\nfunction resolveYamlOmap(data) {\n if (data === null) return true;\n\n var objectKeys = [], index, length, pair, pairKey, pairHasKey,\n object = data;\n\n for (index = 0, length = object.length; index < length; index += 1) {\n pair = object[index];\n pairHasKey = false;\n\n if (_toString$2.call(pair) !== '[object Object]') return false;\n\n for (pairKey in pair) {\n if (_hasOwnProperty$3.call(pair, pairKey)) {\n if (!pairHasKey) pairHasKey = true;\n else return false;\n }\n }\n\n if (!pairHasKey) return false;\n\n if (objectKeys.indexOf(pairKey) === -1) objectKeys.push(pairKey);\n else return false;\n }\n\n return true;\n}\n\nfunction constructYamlOmap(data) {\n return data !== null ? data : [];\n}\n\nvar omap = new type('tag:yaml.org,2002:omap', {\n kind: 'sequence',\n resolve: resolveYamlOmap,\n construct: constructYamlOmap\n});\n\nvar _toString$1 = Object.prototype.toString;\n\nfunction resolveYamlPairs(data) {\n if (data === null) return true;\n\n var index, length, pair, keys, result,\n object = data;\n\n result = new Array(object.length);\n\n for (index = 0, length = object.length; index < length; index += 1) {\n pair = object[index];\n\n if (_toString$1.call(pair) !== '[object Object]') return false;\n\n keys = Object.keys(pair);\n\n if (keys.length !== 1) return false;\n\n result[index] = [ keys[0], pair[keys[0]] ];\n }\n\n return true;\n}\n\nfunction constructYamlPairs(data) {\n if (data === null) return [];\n\n var index, length, pair, keys, result,\n object = data;\n\n result = new Array(object.length);\n\n for (index = 0, length = object.length; index < length; index += 1) {\n pair = object[index];\n\n keys = Object.keys(pair);\n\n result[index] = [ keys[0], pair[keys[0]] ];\n }\n\n return result;\n}\n\nvar pairs = new type('tag:yaml.org,2002:pairs', {\n kind: 'sequence',\n resolve: resolveYamlPairs,\n construct: constructYamlPairs\n});\n\nvar _hasOwnProperty$2 = Object.prototype.hasOwnProperty;\n\nfunction resolveYamlSet(data) {\n if (data === null) return true;\n\n var key, object = data;\n\n for (key in object) {\n if (_hasOwnProperty$2.call(object, key)) {\n if (object[key] !== null) return false;\n }\n }\n\n return true;\n}\n\nfunction constructYamlSet(data) {\n return data !== null ? data : {};\n}\n\nvar set = new type('tag:yaml.org,2002:set', {\n kind: 'mapping',\n resolve: resolveYamlSet,\n construct: constructYamlSet\n});\n\nvar _default = core.extend({\n implicit: [\n timestamp,\n merge\n ],\n explicit: [\n binary,\n omap,\n pairs,\n set\n ]\n});\n\n/*eslint-disable max-len,no-use-before-define*/\n\n\n\n\n\n\n\nvar _hasOwnProperty$1 = Object.prototype.hasOwnProperty;\n\n\nvar CONTEXT_FLOW_IN = 1;\nvar CONTEXT_FLOW_OUT = 2;\nvar CONTEXT_BLOCK_IN = 3;\nvar CONTEXT_BLOCK_OUT = 4;\n\n\nvar CHOMPING_CLIP = 1;\nvar CHOMPING_STRIP = 2;\nvar CHOMPING_KEEP = 3;\n\n\nvar PATTERN_NON_PRINTABLE = /[\\x00-\\x08\\x0B\\x0C\\x0E-\\x1F\\x7F-\\x84\\x86-\\x9F\\uFFFE\\uFFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/;\nvar PATTERN_NON_ASCII_LINE_BREAKS = /[\\x85\\u2028\\u2029]/;\nvar PATTERN_FLOW_INDICATORS = /[,\\[\\]\\{\\}]/;\nvar PATTERN_TAG_HANDLE = /^(?:!|!!|![a-z\\-]+!)$/i;\nvar PATTERN_TAG_URI = /^(?:!|[^,\\[\\]\\{\\}])(?:%[0-9a-f]{2}|[0-9a-z\\-#;\\/\\?:@&=\\+\\$,_\\.!~\\*'\\(\\)\\[\\]])*$/i;\n\n\nfunction _class(obj) { return Object.prototype.toString.call(obj); }\n\nfunction is_EOL(c) {\n return (c === 0x0A/* LF */) || (c === 0x0D/* CR */);\n}\n\nfunction is_WHITE_SPACE(c) {\n return (c === 0x09/* Tab */) || (c === 0x20/* Space */);\n}\n\nfunction is_WS_OR_EOL(c) {\n return (c === 0x09/* Tab */) ||\n (c === 0x20/* Space */) ||\n (c === 0x0A/* LF */) ||\n (c === 0x0D/* CR */);\n}\n\nfunction is_FLOW_INDICATOR(c) {\n return c === 0x2C/* , */ ||\n c === 0x5B/* [ */ ||\n c === 0x5D/* ] */ ||\n c === 0x7B/* { */ ||\n c === 0x7D/* } */;\n}\n\nfunction fromHexCode(c) {\n var lc;\n\n if ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) {\n return c - 0x30;\n }\n\n /*eslint-disable no-bitwise*/\n lc = c | 0x20;\n\n if ((0x61/* a */ <= lc) && (lc <= 0x66/* f */)) {\n return lc - 0x61 + 10;\n }\n\n return -1;\n}\n\nfunction escapedHexLen(c) {\n if (c === 0x78/* x */) { return 2; }\n if (c === 0x75/* u */) { return 4; }\n if (c === 0x55/* U */) { return 8; }\n return 0;\n}\n\nfunction fromDecimalCode(c) {\n if ((0x30/* 0 */ <= c) && (c <= 0x39/* 9 */)) {\n return c - 0x30;\n }\n\n return -1;\n}\n\nfunction simpleEscapeSequence(c) {\n /* eslint-disable indent */\n return (c === 0x30/* 0 */) ? '\\x00' :\n (c === 0x61/* a */) ? '\\x07' :\n (c === 0x62/* b */) ? '\\x08' :\n (c === 0x74/* t */) ? '\\x09' :\n (c === 0x09/* Tab */) ? '\\x09' :\n (c === 0x6E/* n */) ? '\\x0A' :\n (c === 0x76/* v */) ? '\\x0B' :\n (c === 0x66/* f */) ? '\\x0C' :\n (c === 0x72/* r */) ? '\\x0D' :\n (c === 0x65/* e */) ? '\\x1B' :\n (c === 0x20/* Space */) ? ' ' :\n (c === 0x22/* \" */) ? '\\x22' :\n (c === 0x2F/* / */) ? '/' :\n (c === 0x5C/* \\ */) ? '\\x5C' :\n (c === 0x4E/* N */) ? '\\x85' :\n (c === 0x5F/* _ */) ? '\\xA0' :\n (c === 0x4C/* L */) ? '\\u2028' :\n (c === 0x50/* P */) ? '\\u2029' : '';\n}\n\nfunction charFromCodepoint(c) {\n if (c <= 0xFFFF) {\n return String.fromCharCode(c);\n }\n // Encode UTF-16 surrogate pair\n // https://en.wikipedia.org/wiki/UTF-16#Code_points_U.2B010000_to_U.2B10FFFF\n return String.fromCharCode(\n ((c - 0x010000) >> 10) + 0xD800,\n ((c - 0x010000) & 0x03FF) + 0xDC00\n );\n}\n\nvar simpleEscapeCheck = new Array(256); // integer, for fast access\nvar simpleEscapeMap = new Array(256);\nfor (var i = 0; i < 256; i++) {\n simpleEscapeCheck[i] = simpleEscapeSequence(i) ? 1 : 0;\n simpleEscapeMap[i] = simpleEscapeSequence(i);\n}\n\n\nfunction State$1(input, options) {\n this.input = input;\n\n this.filename = options['filename'] || null;\n this.schema = options['schema'] || _default;\n this.onWarning = options['onWarning'] || null;\n // (Hidden) Remove? makes the loader to expect YAML 1.1 documents\n // if such documents have no explicit %YAML directive\n this.legacy = options['legacy'] || false;\n\n this.json = options['json'] || false;\n this.listener = options['listener'] || null;\n\n this.implicitTypes = this.schema.compiledImplicit;\n this.typeMap = this.schema.compiledTypeMap;\n\n this.length = input.length;\n this.position = 0;\n this.line = 0;\n this.lineStart = 0;\n this.lineIndent = 0;\n\n // position of first leading tab in the current line,\n // used to make sure there are no tabs in the indentation\n this.firstTabInLine = -1;\n\n this.documents = [];\n\n /*\n this.version;\n this.checkLineBreaks;\n this.tagMap;\n this.anchorMap;\n this.tag;\n this.anchor;\n this.kind;\n this.result;*/\n\n}\n\n\nfunction generateError(state, message) {\n var mark = {\n name: state.filename,\n buffer: state.input.slice(0, -1), // omit trailing \\0\n position: state.position,\n line: state.line,\n column: state.position - state.lineStart\n };\n\n mark.snippet = snippet(mark);\n\n return new exception(message, mark);\n}\n\nfunction throwError(state, message) {\n throw generateError(state, message);\n}\n\nfunction throwWarning(state, message) {\n if (state.onWarning) {\n state.onWarning.call(null, generateError(state, message));\n }\n}\n\n\nvar directiveHandlers = {\n\n YAML: function handleYamlDirective(state, name, args) {\n\n var match, major, minor;\n\n if (state.version !== null) {\n throwError(state, 'duplication of %YAML directive');\n }\n\n if (args.length !== 1) {\n throwError(state, 'YAML directive accepts exactly one argument');\n }\n\n match = /^([0-9]+)\\.([0-9]+)$/.exec(args[0]);\n\n if (match === null) {\n throwError(state, 'ill-formed argument of the YAML directive');\n }\n\n major = parseInt(match[1], 10);\n minor = parseInt(match[2], 10);\n\n if (major !== 1) {\n throwError(state, 'unacceptable YAML version of the document');\n }\n\n state.version = args[0];\n state.checkLineBreaks = (minor < 2);\n\n if (minor !== 1 && minor !== 2) {\n throwWarning(state, 'unsupported YAML version of the document');\n }\n },\n\n TAG: function handleTagDirective(state, name, args) {\n\n var handle, prefix;\n\n if (args.length !== 2) {\n throwError(state, 'TAG directive accepts exactly two arguments');\n }\n\n handle = args[0];\n prefix = args[1];\n\n if (!PATTERN_TAG_HANDLE.test(handle)) {\n throwError(state, 'ill-formed tag handle (first argument) of the TAG directive');\n }\n\n if (_hasOwnProperty$1.call(state.tagMap, handle)) {\n throwError(state, 'there is a previously declared suffix for \"' + handle + '\" tag handle');\n }\n\n if (!PATTERN_TAG_URI.test(prefix)) {\n throwError(state, 'ill-formed tag prefix (second argument) of the TAG directive');\n }\n\n try {\n prefix = decodeURIComponent(prefix);\n } catch (err) {\n throwError(state, 'tag prefix is malformed: ' + prefix);\n }\n\n state.tagMap[handle] = prefix;\n }\n};\n\n\nfunction captureSegment(state, start, end, checkJson) {\n var _position, _length, _character, _result;\n\n if (start < end) {\n _result = state.input.slice(start, end);\n\n if (checkJson) {\n for (_position = 0, _length = _result.length; _position < _length; _position += 1) {\n _character = _result.charCodeAt(_position);\n if (!(_character === 0x09 ||\n (0x20 <= _character && _character <= 0x10FFFF))) {\n throwError(state, 'expected valid JSON character');\n }\n }\n } else if (PATTERN_NON_PRINTABLE.test(_result)) {\n throwError(state, 'the stream contains non-printable characters');\n }\n\n state.result += _result;\n }\n}\n\nfunction mergeMappings(state, destination, source, overridableKeys) {\n var sourceKeys, key, index, quantity;\n\n if (!common.isObject(source)) {\n throwError(state, 'cannot merge mappings; the provided source object is unacceptable');\n }\n\n sourceKeys = Object.keys(source);\n\n for (index = 0, quantity = sourceKeys.length; index < quantity; index += 1) {\n key = sourceKeys[index];\n\n if (!_hasOwnProperty$1.call(destination, key)) {\n destination[key] = source[key];\n overridableKeys[key] = true;\n }\n }\n}\n\nfunction storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode,\n startLine, startLineStart, startPos) {\n\n var index, quantity;\n\n // The output is a plain object here, so keys can only be strings.\n // We need to convert keyNode to a string, but doing so can hang the process\n // (deeply nested arrays that explode exponentially using aliases).\n if (Array.isArray(keyNode)) {\n keyNode = Array.prototype.slice.call(keyNode);\n\n for (index = 0, quantity = keyNode.length; index < quantity; index += 1) {\n if (Array.isArray(keyNode[index])) {\n throwError(state, 'nested arrays are not supported inside keys');\n }\n\n if (typeof keyNode === 'object' && _class(keyNode[index]) === '[object Object]') {\n keyNode[index] = '[object Object]';\n }\n }\n }\n\n // Avoid code execution in load() via toString property\n // (still use its own toString for arrays, timestamps,\n // and whatever user schema extensions happen to have @@toStringTag)\n if (typeof keyNode === 'object' && _class(keyNode) === '[object Object]') {\n keyNode = '[object Object]';\n }\n\n\n keyNode = String(keyNode);\n\n if (_result === null) {\n _result = {};\n }\n\n if (keyTag === 'tag:yaml.org,2002:merge') {\n if (Array.isArray(valueNode)) {\n for (index = 0, quantity = valueNode.length; index < quantity; index += 1) {\n mergeMappings(state, _result, valueNode[index], overridableKeys);\n }\n } else {\n mergeMappings(state, _result, valueNode, overridableKeys);\n }\n } else {\n if (!state.json &&\n !_hasOwnProperty$1.call(overridableKeys, keyNode) &&\n _hasOwnProperty$1.call(_result, keyNode)) {\n state.line = startLine || state.line;\n state.lineStart = startLineStart || state.lineStart;\n state.position = startPos || state.position;\n throwError(state, 'duplicated mapping key');\n }\n\n // used for this specific key only because Object.defineProperty is slow\n if (keyNode === '__proto__') {\n Object.defineProperty(_result, keyNode, {\n configurable: true,\n enumerable: true,\n writable: true,\n value: valueNode\n });\n } else {\n _result[keyNode] = valueNode;\n }\n delete overridableKeys[keyNode];\n }\n\n return _result;\n}\n\nfunction readLineBreak(state) {\n var ch;\n\n ch = state.input.charCodeAt(state.position);\n\n if (ch === 0x0A/* LF */) {\n state.position++;\n } else if (ch === 0x0D/* CR */) {\n state.position++;\n if (state.input.charCodeAt(state.position) === 0x0A/* LF */) {\n state.position++;\n }\n } else {\n throwError(state, 'a line break is expected');\n }\n\n state.line += 1;\n state.lineStart = state.position;\n state.firstTabInLine = -1;\n}\n\nfunction skipSeparationSpace(state, allowComments, checkIndent) {\n var lineBreaks = 0,\n ch = state.input.charCodeAt(state.position);\n\n while (ch !== 0) {\n while (is_WHITE_SPACE(ch)) {\n if (ch === 0x09/* Tab */ && state.firstTabInLine === -1) {\n state.firstTabInLine = state.position;\n }\n ch = state.input.charCodeAt(++state.position);\n }\n\n if (allowComments && ch === 0x23/* # */) {\n do {\n ch = state.input.charCodeAt(++state.position);\n } while (ch !== 0x0A/* LF */ && ch !== 0x0D/* CR */ && ch !== 0);\n }\n\n if (is_EOL(ch)) {\n readLineBreak(state);\n\n ch = state.input.charCodeAt(state.position);\n lineBreaks++;\n state.lineIndent = 0;\n\n while (ch === 0x20/* Space */) {\n state.lineIndent++;\n ch = state.input.charCodeAt(++state.position);\n }\n } else {\n break;\n }\n }\n\n if (checkIndent !== -1 && lineBreaks !== 0 && state.lineIndent < checkIndent) {\n throwWarning(state, 'deficient indentation');\n }\n\n return lineBreaks;\n}\n\nfunction testDocumentSeparator(state) {\n var _position = state.position,\n ch;\n\n ch = state.input.charCodeAt(_position);\n\n // Condition state.position === state.lineStart is tested\n // in parent on each call, for efficiency. No needs to test here again.\n if ((ch === 0x2D/* - */ || ch === 0x2E/* . */) &&\n ch === state.input.charCodeAt(_position + 1) &&\n ch === state.input.charCodeAt(_position + 2)) {\n\n _position += 3;\n\n ch = state.input.charCodeAt(_position);\n\n if (ch === 0 || is_WS_OR_EOL(ch)) {\n return true;\n }\n }\n\n return false;\n}\n\nfunction writeFoldedLines(state, count) {\n if (count === 1) {\n state.result += ' ';\n } else if (count > 1) {\n state.result += common.repeat('\\n', count - 1);\n }\n}\n\n\nfunction readPlainScalar(state, nodeIndent, withinFlowCollection) {\n var preceding,\n following,\n captureStart,\n captureEnd,\n hasPendingContent,\n _line,\n _lineStart,\n _lineIndent,\n _kind = state.kind,\n _result = state.result,\n ch;\n\n ch = state.input.charCodeAt(state.position);\n\n if (is_WS_OR_EOL(ch) ||\n is_FLOW_INDICATOR(ch) ||\n ch === 0x23/* # */ ||\n ch === 0x26/* & */ ||\n ch === 0x2A/* * */ ||\n ch === 0x21/* ! */ ||\n ch === 0x7C/* | */ ||\n ch === 0x3E/* > */ ||\n ch === 0x27/* ' */ ||\n ch === 0x22/* \" */ ||\n ch === 0x25/* % */ ||\n ch === 0x40/* @ */ ||\n ch === 0x60/* ` */) {\n return false;\n }\n\n if (ch === 0x3F/* ? */ || ch === 0x2D/* - */) {\n following = state.input.charCodeAt(state.position + 1);\n\n if (is_WS_OR_EOL(following) ||\n withinFlowCollection && is_FLOW_INDICATOR(following)) {\n return false;\n }\n }\n\n state.kind = 'scalar';\n state.result = '';\n captureStart = captureEnd = state.position;\n hasPendingContent = false;\n\n while (ch !== 0) {\n if (ch === 0x3A/* : */) {\n following = state.input.charCodeAt(state.position + 1);\n\n if (is_WS_OR_EOL(following) ||\n withinFlowCollection && is_FLOW_INDICATOR(following)) {\n break;\n }\n\n } else if (ch === 0x23/* # */) {\n preceding = state.input.charCodeAt(state.position - 1);\n\n if (is_WS_OR_EOL(preceding)) {\n break;\n }\n\n } else if ((state.position === state.lineStart && testDocumentSeparator(state)) ||\n withinFlowCollection && is_FLOW_INDICATOR(ch)) {\n break;\n\n } else if (is_EOL(ch)) {\n _line = state.line;\n _lineStart = state.lineStart;\n _lineIndent = state.lineIndent;\n skipSeparationSpace(state, false, -1);\n\n if (state.lineIndent >= nodeIndent) {\n hasPendingContent = true;\n ch = state.input.charCodeAt(state.position);\n continue;\n } else {\n state.position = captureEnd;\n state.line = _line;\n state.lineStart = _lineStart;\n state.lineIndent = _lineIndent;\n break;\n }\n }\n\n if (hasPendingContent) {\n captureSegment(state, captureStart, captureEnd, false);\n writeFoldedLines(state, state.line - _line);\n captureStart = captureEnd = state.position;\n hasPendingContent = false;\n }\n\n if (!is_WHITE_SPACE(ch)) {\n captureEnd = state.position + 1;\n }\n\n ch = state.input.charCodeAt(++state.position);\n }\n\n captureSegment(state, captureStart, captureEnd, false);\n\n if (state.result) {\n return true;\n }\n\n state.kind = _kind;\n state.result = _result;\n return false;\n}\n\nfunction readSingleQuotedScalar(state, nodeIndent) {\n var ch,\n captureStart, captureEnd;\n\n ch = state.input.charCodeAt(state.position);\n\n if (ch !== 0x27/* ' */) {\n return false;\n }\n\n state.kind = 'scalar';\n state.result = '';\n state.position++;\n captureStart = captureEnd = state.position;\n\n while ((ch = state.input.charCodeAt(state.position)) !== 0) {\n if (ch === 0x27/* ' */) {\n captureSegment(state, captureStart, state.position, true);\n ch = state.input.charCodeAt(++state.position);\n\n if (ch === 0x27/* ' */) {\n captureStart = state.position;\n state.position++;\n captureEnd = state.position;\n } else {\n return true;\n }\n\n } else if (is_EOL(ch)) {\n captureSegment(state, captureStart, captureEnd, true);\n writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent));\n captureStart = captureEnd = state.position;\n\n } else if (state.position === state.lineStart && testDocumentSeparator(state)) {\n throwError(state, 'unexpected end of the document within a single quoted scalar');\n\n } else {\n state.position++;\n captureEnd = state.position;\n }\n }\n\n throwError(state, 'unexpected end of the stream within a single quoted scalar');\n}\n\nfunction readDoubleQuotedScalar(state, nodeIndent) {\n var captureStart,\n captureEnd,\n hexLength,\n hexResult,\n tmp,\n ch;\n\n ch = state.input.charCodeAt(state.position);\n\n if (ch !== 0x22/* \" */) {\n return false;\n }\n\n state.kind = 'scalar';\n state.result = '';\n state.position++;\n captureStart = captureEnd = state.position;\n\n while ((ch = state.input.charCodeAt(state.position)) !== 0) {\n if (ch === 0x22/* \" */) {\n captureSegment(state, captureStart, state.position, true);\n state.position++;\n return true;\n\n } else if (ch === 0x5C/* \\ */) {\n captureSegment(state, captureStart, state.position, true);\n ch = state.input.charCodeAt(++state.position);\n\n if (is_EOL(ch)) {\n skipSeparationSpace(state, false, nodeIndent);\n\n // TODO: rework to inline fn with no type cast?\n } else if (ch < 256 && simpleEscapeCheck[ch]) {\n state.result += simpleEscapeMap[ch];\n state.position++;\n\n } else if ((tmp = escapedHexLen(ch)) > 0) {\n hexLength = tmp;\n hexResult = 0;\n\n for (; hexLength > 0; hexLength--) {\n ch = state.input.charCodeAt(++state.position);\n\n if ((tmp = fromHexCode(ch)) >= 0) {\n hexResult = (hexResult << 4) + tmp;\n\n } else {\n throwError(state, 'expected hexadecimal character');\n }\n }\n\n state.result += charFromCodepoint(hexResult);\n\n state.position++;\n\n } else {\n throwError(state, 'unknown escape sequence');\n }\n\n captureStart = captureEnd = state.position;\n\n } else if (is_EOL(ch)) {\n captureSegment(state, captureStart, captureEnd, true);\n writeFoldedLines(state, skipSeparationSpace(state, false, nodeIndent));\n captureStart = captureEnd = state.position;\n\n } else if (state.position === state.lineStart && testDocumentSeparator(state)) {\n throwError(state, 'unexpected end of the document within a double quoted scalar');\n\n } else {\n state.position++;\n captureEnd = state.position;\n }\n }\n\n throwError(state, 'unexpected end of the stream within a double quoted scalar');\n}\n\nfunction readFlowCollection(state, nodeIndent) {\n var readNext = true,\n _line,\n _lineStart,\n _pos,\n _tag = state.tag,\n _result,\n _anchor = state.anchor,\n following,\n terminator,\n isPair,\n isExplicitPair,\n isMapping,\n overridableKeys = Object.create(null),\n keyNode,\n keyTag,\n valueNode,\n ch;\n\n ch = state.input.charCodeAt(state.position);\n\n if (ch === 0x5B/* [ */) {\n terminator = 0x5D;/* ] */\n isMapping = false;\n _result = [];\n } else if (ch === 0x7B/* { */) {\n terminator = 0x7D;/* } */\n isMapping = true;\n _result = {};\n } else {\n return false;\n }\n\n if (state.anchor !== null) {\n state.anchorMap[state.anchor] = _result;\n }\n\n ch = state.input.charCodeAt(++state.position);\n\n while (ch !== 0) {\n skipSeparationSpace(state, true, nodeIndent);\n\n ch = state.input.charCodeAt(state.position);\n\n if (ch === terminator) {\n state.position++;\n state.tag = _tag;\n state.anchor = _anchor;\n state.kind = isMapping ? 'mapping' : 'sequence';\n state.result = _result;\n return true;\n } else if (!readNext) {\n throwError(state, 'missed comma between flow collection entries');\n } else if (ch === 0x2C/* , */) {\n // \"flow collection entries can never be completely empty\", as per YAML 1.2, section 7.4\n throwError(state, \"expected the node content, but found ','\");\n }\n\n keyTag = keyNode = valueNode = null;\n isPair = isExplicitPair = false;\n\n if (ch === 0x3F/* ? */) {\n following = state.input.charCodeAt(state.position + 1);\n\n if (is_WS_OR_EOL(following)) {\n isPair = isExplicitPair = true;\n state.position++;\n skipSeparationSpace(state, true, nodeIndent);\n }\n }\n\n _line = state.line; // Save the current line.\n _lineStart = state.lineStart;\n _pos = state.position;\n composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true);\n keyTag = state.tag;\n keyNode = state.result;\n skipSeparationSpace(state, true, nodeIndent);\n\n ch = state.input.charCodeAt(state.position);\n\n if ((isExplicitPair || state.line === _line) && ch === 0x3A/* : */) {\n isPair = true;\n ch = state.input.charCodeAt(++state.position);\n skipSeparationSpace(state, true, nodeIndent);\n composeNode(state, nodeIndent, CONTEXT_FLOW_IN, false, true);\n valueNode = state.result;\n }\n\n if (isMapping) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos);\n } else if (isPair) {\n _result.push(storeMappingPair(state, null, overridableKeys, keyTag, keyNode, valueNode, _line, _lineStart, _pos));\n } else {\n _result.push(keyNode);\n }\n\n skipSeparationSpace(state, true, nodeIndent);\n\n ch = state.input.charCodeAt(state.position);\n\n if (ch === 0x2C/* , */) {\n readNext = true;\n ch = state.input.charCodeAt(++state.position);\n } else {\n readNext = false;\n }\n }\n\n throwError(state, 'unexpected end of the stream within a flow collection');\n}\n\nfunction readBlockScalar(state, nodeIndent) {\n var captureStart,\n folding,\n chomping = CHOMPING_CLIP,\n didReadContent = false,\n detectedIndent = false,\n textIndent = nodeIndent,\n emptyLines = 0,\n atMoreIndented = false,\n tmp,\n ch;\n\n ch = state.input.charCodeAt(state.position);\n\n if (ch === 0x7C/* | */) {\n folding = false;\n } else if (ch === 0x3E/* > */) {\n folding = true;\n } else {\n return false;\n }\n\n state.kind = 'scalar';\n state.result = '';\n\n while (ch !== 0) {\n ch = state.input.charCodeAt(++state.position);\n\n if (ch === 0x2B/* + */ || ch === 0x2D/* - */) {\n if (CHOMPING_CLIP === chomping) {\n chomping = (ch === 0x2B/* + */) ? CHOMPING_KEEP : CHOMPING_STRIP;\n } else {\n throwError(state, 'repeat of a chomping mode identifier');\n }\n\n } else if ((tmp = fromDecimalCode(ch)) >= 0) {\n if (tmp === 0) {\n throwError(state, 'bad explicit indentation width of a block scalar; it cannot be less than one');\n } else if (!detectedIndent) {\n textIndent = nodeIndent + tmp - 1;\n detectedIndent = true;\n } else {\n throwError(state, 'repeat of an indentation width identifier');\n }\n\n } else {\n break;\n }\n }\n\n if (is_WHITE_SPACE(ch)) {\n do { ch = state.input.charCodeAt(++state.position); }\n while (is_WHITE_SPACE(ch));\n\n if (ch === 0x23/* # */) {\n do { ch = state.input.charCodeAt(++state.position); }\n while (!is_EOL(ch) && (ch !== 0));\n }\n }\n\n while (ch !== 0) {\n readLineBreak(state);\n state.lineIndent = 0;\n\n ch = state.input.charCodeAt(state.position);\n\n while ((!detectedIndent || state.lineIndent < textIndent) &&\n (ch === 0x20/* Space */)) {\n state.lineIndent++;\n ch = state.input.charCodeAt(++state.position);\n }\n\n if (!detectedIndent && state.lineIndent > textIndent) {\n textIndent = state.lineIndent;\n }\n\n if (is_EOL(ch)) {\n emptyLines++;\n continue;\n }\n\n // End of the scalar.\n if (state.lineIndent < textIndent) {\n\n // Perform the chomping.\n if (chomping === CHOMPING_KEEP) {\n state.result += common.repeat('\\n', didReadContent ? 1 + emptyLines : emptyLines);\n } else if (chomping === CHOMPING_CLIP) {\n if (didReadContent) { // i.e. only if the scalar is not empty.\n state.result += '\\n';\n }\n }\n\n // Break this `while` cycle and go to the funciton's epilogue.\n break;\n }\n\n // Folded style: use fancy rules to handle line breaks.\n if (folding) {\n\n // Lines starting with white space characters (more-indented lines) are not folded.\n if (is_WHITE_SPACE(ch)) {\n atMoreIndented = true;\n // except for the first content line (cf. Example 8.1)\n state.result += common.repeat('\\n', didReadContent ? 1 + emptyLines : emptyLines);\n\n // End of more-indented block.\n } else if (atMoreIndented) {\n atMoreIndented = false;\n state.result += common.repeat('\\n', emptyLines + 1);\n\n // Just one line break - perceive as the same line.\n } else if (emptyLines === 0) {\n if (didReadContent) { // i.e. only if we have already read some scalar content.\n state.result += ' ';\n }\n\n // Several line breaks - perceive as different lines.\n } else {\n state.result += common.repeat('\\n', emptyLines);\n }\n\n // Literal style: just add exact number of line breaks between content lines.\n } else {\n // Keep all line breaks except the header line break.\n state.result += common.repeat('\\n', didReadContent ? 1 + emptyLines : emptyLines);\n }\n\n didReadContent = true;\n detectedIndent = true;\n emptyLines = 0;\n captureStart = state.position;\n\n while (!is_EOL(ch) && (ch !== 0)) {\n ch = state.input.charCodeAt(++state.position);\n }\n\n captureSegment(state, captureStart, state.position, false);\n }\n\n return true;\n}\n\nfunction readBlockSequence(state, nodeIndent) {\n var _line,\n _tag = state.tag,\n _anchor = state.anchor,\n _result = [],\n following,\n detected = false,\n ch;\n\n // there is a leading tab before this token, so it can't be a block sequence/mapping;\n // it can still be flow sequence/mapping or a scalar\n if (state.firstTabInLine !== -1) return false;\n\n if (state.anchor !== null) {\n state.anchorMap[state.anchor] = _result;\n }\n\n ch = state.input.charCodeAt(state.position);\n\n while (ch !== 0) {\n if (state.firstTabInLine !== -1) {\n state.position = state.firstTabInLine;\n throwError(state, 'tab characters must not be used in indentation');\n }\n\n if (ch !== 0x2D/* - */) {\n break;\n }\n\n following = state.input.charCodeAt(state.position + 1);\n\n if (!is_WS_OR_EOL(following)) {\n break;\n }\n\n detected = true;\n state.position++;\n\n if (skipSeparationSpace(state, true, -1)) {\n if (state.lineIndent <= nodeIndent) {\n _result.push(null);\n ch = state.input.charCodeAt(state.position);\n continue;\n }\n }\n\n _line = state.line;\n composeNode(state, nodeIndent, CONTEXT_BLOCK_IN, false, true);\n _result.push(state.result);\n skipSeparationSpace(state, true, -1);\n\n ch = state.input.charCodeAt(state.position);\n\n if ((state.line === _line || state.lineIndent > nodeIndent) && (ch !== 0)) {\n throwError(state, 'bad indentation of a sequence entry');\n } else if (state.lineIndent < nodeIndent) {\n break;\n }\n }\n\n if (detected) {\n state.tag = _tag;\n state.anchor = _anchor;\n state.kind = 'sequence';\n state.result = _result;\n return true;\n }\n return false;\n}\n\nfunction readBlockMapping(state, nodeIndent, flowIndent) {\n var following,\n allowCompact,\n _line,\n _keyLine,\n _keyLineStart,\n _keyPos,\n _tag = state.tag,\n _anchor = state.anchor,\n _result = {},\n overridableKeys = Object.create(null),\n keyTag = null,\n keyNode = null,\n valueNode = null,\n atExplicitKey = false,\n detected = false,\n ch;\n\n // there is a leading tab before this token, so it can't be a block sequence/mapping;\n // it can still be flow sequence/mapping or a scalar\n if (state.firstTabInLine !== -1) return false;\n\n if (state.anchor !== null) {\n state.anchorMap[state.anchor] = _result;\n }\n\n ch = state.input.charCodeAt(state.position);\n\n while (ch !== 0) {\n if (!atExplicitKey && state.firstTabInLine !== -1) {\n state.position = state.firstTabInLine;\n throwError(state, 'tab characters must not be used in indentation');\n }\n\n following = state.input.charCodeAt(state.position + 1);\n _line = state.line; // Save the current line.\n\n //\n // Explicit notation case. There are two separate blocks:\n // first for the key (denoted by \"?\") and second for the value (denoted by \":\")\n //\n if ((ch === 0x3F/* ? */ || ch === 0x3A/* : */) && is_WS_OR_EOL(following)) {\n\n if (ch === 0x3F/* ? */) {\n if (atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos);\n keyTag = keyNode = valueNode = null;\n }\n\n detected = true;\n atExplicitKey = true;\n allowCompact = true;\n\n } else if (atExplicitKey) {\n // i.e. 0x3A/* : */ === character after the explicit key.\n atExplicitKey = false;\n allowCompact = true;\n\n } else {\n throwError(state, 'incomplete explicit mapping pair; a key node is missed; or followed by a non-tabulated empty line');\n }\n\n state.position += 1;\n ch = following;\n\n //\n // Implicit notation case. Flow-style node as the key first, then \":\", and the value.\n //\n } else {\n _keyLine = state.line;\n _keyLineStart = state.lineStart;\n _keyPos = state.position;\n\n if (!composeNode(state, flowIndent, CONTEXT_FLOW_OUT, false, true)) {\n // Neither implicit nor explicit notation.\n // Reading is done. Go to the epilogue.\n break;\n }\n\n if (state.line === _line) {\n ch = state.input.charCodeAt(state.position);\n\n while (is_WHITE_SPACE(ch)) {\n ch = state.input.charCodeAt(++state.position);\n }\n\n if (ch === 0x3A/* : */) {\n ch = state.input.charCodeAt(++state.position);\n\n if (!is_WS_OR_EOL(ch)) {\n throwError(state, 'a whitespace character is expected after the key-value separator within a block mapping');\n }\n\n if (atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos);\n keyTag = keyNode = valueNode = null;\n }\n\n detected = true;\n atExplicitKey = false;\n allowCompact = false;\n keyTag = state.tag;\n keyNode = state.result;\n\n } else if (detected) {\n throwError(state, 'can not read an implicit mapping pair; a colon is missed');\n\n } else {\n state.tag = _tag;\n state.anchor = _anchor;\n return true; // Keep the result of `composeNode`.\n }\n\n } else if (detected) {\n throwError(state, 'can not read a block mapping entry; a multiline key may not be an implicit key');\n\n } else {\n state.tag = _tag;\n state.anchor = _anchor;\n return true; // Keep the result of `composeNode`.\n }\n }\n\n //\n // Common reading code for both explicit and implicit notations.\n //\n if (state.line === _line || state.lineIndent > nodeIndent) {\n if (atExplicitKey) {\n _keyLine = state.line;\n _keyLineStart = state.lineStart;\n _keyPos = state.position;\n }\n\n if (composeNode(state, nodeIndent, CONTEXT_BLOCK_OUT, true, allowCompact)) {\n if (atExplicitKey) {\n keyNode = state.result;\n } else {\n valueNode = state.result;\n }\n }\n\n if (!atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valueNode, _keyLine, _keyLineStart, _keyPos);\n keyTag = keyNode = valueNode = null;\n }\n\n skipSeparationSpace(state, true, -1);\n ch = state.input.charCodeAt(state.position);\n }\n\n if ((state.line === _line || state.lineIndent > nodeIndent) && (ch !== 0)) {\n throwError(state, 'bad indentation of a mapping entry');\n } else if (state.lineIndent < nodeIndent) {\n break;\n }\n }\n\n //\n // Epilogue.\n //\n\n // Special case: last mapping's node contains only the key in explicit notation.\n if (atExplicitKey) {\n storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, null, _keyLine, _keyLineStart, _keyPos);\n }\n\n // Expose the resulting mapping.\n if (detected) {\n state.tag = _tag;\n state.anchor = _anchor;\n state.kind = 'mapping';\n state.result = _result;\n }\n\n return detected;\n}\n\nfunction readTagProperty(state) {\n var _position,\n isVerbatim = false,\n isNamed = false,\n tagHandle,\n tagName,\n ch;\n\n ch = state.input.charCodeAt(state.position);\n\n if (ch !== 0x21/* ! */) return false;\n\n if (state.tag !== null) {\n throwError(state, 'duplication of a tag property');\n }\n\n ch = state.input.charCodeAt(++state.position);\n\n if (ch === 0x3C/* < */) {\n isVerbatim = true;\n ch = state.input.charCodeAt(++state.position);\n\n } else if (ch === 0x21/* ! */) {\n isNamed = true;\n tagHandle = '!!';\n ch = state.input.charCodeAt(++state.position);\n\n } else {\n tagHandle = '!';\n }\n\n _position = state.position;\n\n if (isVerbatim) {\n do { ch = state.input.charCodeAt(++state.position); }\n while (ch !== 0 && ch !== 0x3E/* > */);\n\n if (state.position < state.length) {\n tagName = state.input.slice(_position, state.position);\n ch = state.input.charCodeAt(++state.position);\n } else {\n throwError(state, 'unexpected end of the stream within a verbatim tag');\n }\n } else {\n while (ch !== 0 && !is_WS_OR_EOL(ch)) {\n\n if (ch === 0x21/* ! */) {\n if (!isNamed) {\n tagHandle = state.input.slice(_position - 1, state.position + 1);\n\n if (!PATTERN_TAG_HANDLE.test(tagHandle)) {\n throwError(state, 'named tag handle cannot contain such characters');\n }\n\n isNamed = true;\n _position = state.position + 1;\n } else {\n throwError(state, 'tag suffix cannot contain exclamation marks');\n }\n }\n\n ch = state.input.charCodeAt(++state.position);\n }\n\n tagName = state.input.slice(_position, state.position);\n\n if (PATTERN_FLOW_INDICATORS.test(tagName)) {\n throwError(state, 'tag suffix cannot contain flow indicator characters');\n }\n }\n\n if (tagName && !PATTERN_TAG_URI.test(tagName)) {\n throwError(state, 'tag name cannot contain such characters: ' + tagName);\n }\n\n try {\n tagName = decodeURIComponent(tagName);\n } catch (err) {\n throwError(state, 'tag name is malformed: ' + tagName);\n }\n\n if (isVerbatim) {\n state.tag = tagName;\n\n } else if (_hasOwnProperty$1.call(state.tagMap, tagHandle)) {\n state.tag = state.tagMap[tagHandle] + tagName;\n\n } else if (tagHandle === '!') {\n state.tag = '!' + tagName;\n\n } else if (tagHandle === '!!') {\n state.tag = 'tag:yaml.org,2002:' + tagName;\n\n } else {\n throwError(state, 'undeclared tag handle \"' + tagHandle + '\"');\n }\n\n return true;\n}\n\nfunction readAnchorProperty(state) {\n var _position,\n ch;\n\n ch = state.input.charCodeAt(state.position);\n\n if (ch !== 0x26/* & */) return false;\n\n if (state.anchor !== null) {\n throwError(state, 'duplication of an anchor property');\n }\n\n ch = state.input.charCodeAt(++state.position);\n _position = state.position;\n\n while (ch !== 0 && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) {\n ch = state.input.charCodeAt(++state.position);\n }\n\n if (state.position === _position) {\n throwError(state, 'name of an anchor node must contain at least one character');\n }\n\n state.anchor = state.input.slice(_position, state.position);\n return true;\n}\n\nfunction readAlias(state) {\n var _position, alias,\n ch;\n\n ch = state.input.charCodeAt(state.position);\n\n if (ch !== 0x2A/* * */) return false;\n\n ch = state.input.charCodeAt(++state.position);\n _position = state.position;\n\n while (ch !== 0 && !is_WS_OR_EOL(ch) && !is_FLOW_INDICATOR(ch)) {\n ch = state.input.charCodeAt(++state.position);\n }\n\n if (state.position === _position) {\n throwError(state, 'name of an alias node must contain at least one character');\n }\n\n alias = state.input.slice(_position, state.position);\n\n if (!_hasOwnProperty$1.call(state.anchorMap, alias)) {\n throwError(state, 'unidentified alias \"' + alias + '\"');\n }\n\n state.result = state.anchorMap[alias];\n skipSeparationSpace(state, true, -1);\n return true;\n}\n\nfunction composeNode(state, parentIndent, nodeContext, allowToSeek, allowCompact) {\n var allowBlockStyles,\n allowBlockScalars,\n allowBlockCollections,\n indentStatus = 1, // 1: this>parent, 0: this=parent, -1: this parentIndent) {\n indentStatus = 1;\n } else if (state.lineIndent === parentIndent) {\n indentStatus = 0;\n } else if (state.lineIndent < parentIndent) {\n indentStatus = -1;\n }\n }\n }\n\n if (indentStatus === 1) {\n while (readTagProperty(state) || readAnchorProperty(state)) {\n if (skipSeparationSpace(state, true, -1)) {\n atNewLine = true;\n allowBlockCollections = allowBlockStyles;\n\n if (state.lineIndent > parentIndent) {\n indentStatus = 1;\n } else if (state.lineIndent === parentIndent) {\n indentStatus = 0;\n } else if (state.lineIndent < parentIndent) {\n indentStatus = -1;\n }\n } else {\n allowBlockCollections = false;\n }\n }\n }\n\n if (allowBlockCollections) {\n allowBlockCollections = atNewLine || allowCompact;\n }\n\n if (indentStatus === 1 || CONTEXT_BLOCK_OUT === nodeContext) {\n if (CONTEXT_FLOW_IN === nodeContext || CONTEXT_FLOW_OUT === nodeContext) {\n flowIndent = parentIndent;\n } else {\n flowIndent = parentIndent + 1;\n }\n\n blockIndent = state.position - state.lineStart;\n\n if (indentStatus === 1) {\n if (allowBlockCollections &&\n (readBlockSequence(state, blockIndent) ||\n readBlockMapping(state, blockIndent, flowIndent)) ||\n readFlowCollection(state, flowIndent)) {\n hasContent = true;\n } else {\n if ((allowBlockScalars && readBlockScalar(state, flowIndent)) ||\n readSingleQuotedScalar(state, flowIndent) ||\n readDoubleQuotedScalar(state, flowIndent)) {\n hasContent = true;\n\n } else if (readAlias(state)) {\n hasContent = true;\n\n if (state.tag !== null || state.anchor !== null) {\n throwError(state, 'alias node should not have any properties');\n }\n\n } else if (readPlainScalar(state, flowIndent, CONTEXT_FLOW_IN === nodeContext)) {\n hasContent = true;\n\n if (state.tag === null) {\n state.tag = '?';\n }\n }\n\n if (state.anchor !== null) {\n state.anchorMap[state.anchor] = state.result;\n }\n }\n } else if (indentStatus === 0) {\n // Special case: block sequences are allowed to have same indentation level as the parent.\n // http://www.yaml.org/spec/1.2/spec.html#id2799784\n hasContent = allowBlockCollections && readBlockSequence(state, blockIndent);\n }\n }\n\n if (state.tag === null) {\n if (state.anchor !== null) {\n state.anchorMap[state.anchor] = state.result;\n }\n\n } else if (state.tag === '?') {\n // Implicit resolving is not allowed for non-scalar types, and '?'\n // non-specific tag is only automatically assigned to plain scalars.\n //\n // We only need to check kind conformity in case user explicitly assigns '?'\n // tag, for example like this: \"! [0]\"\n //\n if (state.result !== null && state.kind !== 'scalar') {\n throwError(state, 'unacceptable node kind for ! tag; it should be \"scalar\", not \"' + state.kind + '\"');\n }\n\n for (typeIndex = 0, typeQuantity = state.implicitTypes.length; typeIndex < typeQuantity; typeIndex += 1) {\n type = state.implicitTypes[typeIndex];\n\n if (type.resolve(state.result)) { // `state.result` updated in resolver if matched\n state.result = type.construct(state.result);\n state.tag = type.tag;\n if (state.anchor !== null) {\n state.anchorMap[state.anchor] = state.result;\n }\n break;\n }\n }\n } else if (state.tag !== '!') {\n if (_hasOwnProperty$1.call(state.typeMap[state.kind || 'fallback'], state.tag)) {\n type = state.typeMap[state.kind || 'fallback'][state.tag];\n } else {\n // looking for multi type\n type = null;\n typeList = state.typeMap.multi[state.kind || 'fallback'];\n\n for (typeIndex = 0, typeQuantity = typeList.length; typeIndex < typeQuantity; typeIndex += 1) {\n if (state.tag.slice(0, typeList[typeIndex].tag.length) === typeList[typeIndex].tag) {\n type = typeList[typeIndex];\n break;\n }\n }\n }\n\n if (!type) {\n throwError(state, 'unknown tag !<' + state.tag + '>');\n }\n\n if (state.result !== null && type.kind !== state.kind) {\n throwError(state, 'unacceptable node kind for !<' + state.tag + '> tag; it should be \"' + type.kind + '\", not \"' + state.kind + '\"');\n }\n\n if (!type.resolve(state.result, state.tag)) { // `state.result` updated in resolver if matched\n throwError(state, 'cannot resolve a node with !<' + state.tag + '> explicit tag');\n } else {\n state.result = type.construct(state.result, state.tag);\n if (state.anchor !== null) {\n state.anchorMap[state.anchor] = state.result;\n }\n }\n }\n\n if (state.listener !== null) {\n state.listener('close', state);\n }\n return state.tag !== null || state.anchor !== null || hasContent;\n}\n\nfunction readDocument(state) {\n var documentStart = state.position,\n _position,\n directiveName,\n directiveArgs,\n hasDirectives = false,\n ch;\n\n state.version = null;\n state.checkLineBreaks = state.legacy;\n state.tagMap = Object.create(null);\n state.anchorMap = Object.create(null);\n\n while ((ch = state.input.charCodeAt(state.position)) !== 0) {\n skipSeparationSpace(state, true, -1);\n\n ch = state.input.charCodeAt(state.position);\n\n if (state.lineIndent > 0 || ch !== 0x25/* % */) {\n break;\n }\n\n hasDirectives = true;\n ch = state.input.charCodeAt(++state.position);\n _position = state.position;\n\n while (ch !== 0 && !is_WS_OR_EOL(ch)) {\n ch = state.input.charCodeAt(++state.position);\n }\n\n directiveName = state.input.slice(_position, state.position);\n directiveArgs = [];\n\n if (directiveName.length < 1) {\n throwError(state, 'directive name must not be less than one character in length');\n }\n\n while (ch !== 0) {\n while (is_WHITE_SPACE(ch)) {\n ch = state.input.charCodeAt(++state.position);\n }\n\n if (ch === 0x23/* # */) {\n do { ch = state.input.charCodeAt(++state.position); }\n while (ch !== 0 && !is_EOL(ch));\n break;\n }\n\n if (is_EOL(ch)) break;\n\n _position = state.position;\n\n while (ch !== 0 && !is_WS_OR_EOL(ch)) {\n ch = state.input.charCodeAt(++state.position);\n }\n\n directiveArgs.push(state.input.slice(_position, state.position));\n }\n\n if (ch !== 0) readLineBreak(state);\n\n if (_hasOwnProperty$1.call(directiveHandlers, directiveName)) {\n directiveHandlers[directiveName](state, directiveName, directiveArgs);\n } else {\n throwWarning(state, 'unknown document directive \"' + directiveName + '\"');\n }\n }\n\n skipSeparationSpace(state, true, -1);\n\n if (state.lineIndent === 0 &&\n state.input.charCodeAt(state.position) === 0x2D/* - */ &&\n state.input.charCodeAt(state.position + 1) === 0x2D/* - */ &&\n state.input.charCodeAt(state.position + 2) === 0x2D/* - */) {\n state.position += 3;\n skipSeparationSpace(state, true, -1);\n\n } else if (hasDirectives) {\n throwError(state, 'directives end mark is expected');\n }\n\n composeNode(state, state.lineIndent - 1, CONTEXT_BLOCK_OUT, false, true);\n skipSeparationSpace(state, true, -1);\n\n if (state.checkLineBreaks &&\n PATTERN_NON_ASCII_LINE_BREAKS.test(state.input.slice(documentStart, state.position))) {\n throwWarning(state, 'non-ASCII line breaks are interpreted as content');\n }\n\n state.documents.push(state.result);\n\n if (state.position === state.lineStart && testDocumentSeparator(state)) {\n\n if (state.input.charCodeAt(state.position) === 0x2E/* . */) {\n state.position += 3;\n skipSeparationSpace(state, true, -1);\n }\n return;\n }\n\n if (state.position < (state.length - 1)) {\n throwError(state, 'end of the stream or a document separator is expected');\n } else {\n return;\n }\n}\n\n\nfunction loadDocuments(input, options) {\n input = String(input);\n options = options || {};\n\n if (input.length !== 0) {\n\n // Add tailing `\\n` if not exists\n if (input.charCodeAt(input.length - 1) !== 0x0A/* LF */ &&\n input.charCodeAt(input.length - 1) !== 0x0D/* CR */) {\n input += '\\n';\n }\n\n // Strip BOM\n if (input.charCodeAt(0) === 0xFEFF) {\n input = input.slice(1);\n }\n }\n\n var state = new State$1(input, options);\n\n var nullpos = input.indexOf('\\0');\n\n if (nullpos !== -1) {\n state.position = nullpos;\n throwError(state, 'null byte is not allowed in input');\n }\n\n // Use 0 as string terminator. That significantly simplifies bounds check.\n state.input += '\\0';\n\n while (state.input.charCodeAt(state.position) === 0x20/* Space */) {\n state.lineIndent += 1;\n state.position += 1;\n }\n\n while (state.position < (state.length - 1)) {\n readDocument(state);\n }\n\n return state.documents;\n}\n\n\nfunction loadAll$1(input, iterator, options) {\n if (iterator !== null && typeof iterator === 'object' && typeof options === 'undefined') {\n options = iterator;\n iterator = null;\n }\n\n var documents = loadDocuments(input, options);\n\n if (typeof iterator !== 'function') {\n return documents;\n }\n\n for (var index = 0, length = documents.length; index < length; index += 1) {\n iterator(documents[index]);\n }\n}\n\n\nfunction load$1(input, options) {\n var documents = loadDocuments(input, options);\n\n if (documents.length === 0) {\n /*eslint-disable no-undefined*/\n return undefined;\n } else if (documents.length === 1) {\n return documents[0];\n }\n throw new exception('expected a single document in the stream, but found more');\n}\n\n\nvar loadAll_1 = loadAll$1;\nvar load_1 = load$1;\n\nvar loader = {\n\tloadAll: loadAll_1,\n\tload: load_1\n};\n\n/*eslint-disable no-use-before-define*/\n\n\n\n\n\nvar _toString = Object.prototype.toString;\nvar _hasOwnProperty = Object.prototype.hasOwnProperty;\n\nvar CHAR_BOM = 0xFEFF;\nvar CHAR_TAB = 0x09; /* Tab */\nvar CHAR_LINE_FEED = 0x0A; /* LF */\nvar CHAR_CARRIAGE_RETURN = 0x0D; /* CR */\nvar CHAR_SPACE = 0x20; /* Space */\nvar CHAR_EXCLAMATION = 0x21; /* ! */\nvar CHAR_DOUBLE_QUOTE = 0x22; /* \" */\nvar CHAR_SHARP = 0x23; /* # */\nvar CHAR_PERCENT = 0x25; /* % */\nvar CHAR_AMPERSAND = 0x26; /* & */\nvar CHAR_SINGLE_QUOTE = 0x27; /* ' */\nvar CHAR_ASTERISK = 0x2A; /* * */\nvar CHAR_COMMA = 0x2C; /* , */\nvar CHAR_MINUS = 0x2D; /* - */\nvar CHAR_COLON = 0x3A; /* : */\nvar CHAR_EQUALS = 0x3D; /* = */\nvar CHAR_GREATER_THAN = 0x3E; /* > */\nvar CHAR_QUESTION = 0x3F; /* ? */\nvar CHAR_COMMERCIAL_AT = 0x40; /* @ */\nvar CHAR_LEFT_SQUARE_BRACKET = 0x5B; /* [ */\nvar CHAR_RIGHT_SQUARE_BRACKET = 0x5D; /* ] */\nvar CHAR_GRAVE_ACCENT = 0x60; /* ` */\nvar CHAR_LEFT_CURLY_BRACKET = 0x7B; /* { */\nvar CHAR_VERTICAL_LINE = 0x7C; /* | */\nvar CHAR_RIGHT_CURLY_BRACKET = 0x7D; /* } */\n\nvar ESCAPE_SEQUENCES = {};\n\nESCAPE_SEQUENCES[0x00] = '\\\\0';\nESCAPE_SEQUENCES[0x07] = '\\\\a';\nESCAPE_SEQUENCES[0x08] = '\\\\b';\nESCAPE_SEQUENCES[0x09] = '\\\\t';\nESCAPE_SEQUENCES[0x0A] = '\\\\n';\nESCAPE_SEQUENCES[0x0B] = '\\\\v';\nESCAPE_SEQUENCES[0x0C] = '\\\\f';\nESCAPE_SEQUENCES[0x0D] = '\\\\r';\nESCAPE_SEQUENCES[0x1B] = '\\\\e';\nESCAPE_SEQUENCES[0x22] = '\\\\\"';\nESCAPE_SEQUENCES[0x5C] = '\\\\\\\\';\nESCAPE_SEQUENCES[0x85] = '\\\\N';\nESCAPE_SEQUENCES[0xA0] = '\\\\_';\nESCAPE_SEQUENCES[0x2028] = '\\\\L';\nESCAPE_SEQUENCES[0x2029] = '\\\\P';\n\nvar DEPRECATED_BOOLEANS_SYNTAX = [\n 'y', 'Y', 'yes', 'Yes', 'YES', 'on', 'On', 'ON',\n 'n', 'N', 'no', 'No', 'NO', 'off', 'Off', 'OFF'\n];\n\nvar DEPRECATED_BASE60_SYNTAX = /^[-+]?[0-9_]+(?::[0-9_]+)+(?:\\.[0-9_]*)?$/;\n\nfunction compileStyleMap(schema, map) {\n var result, keys, index, length, tag, style, type;\n\n if (map === null) return {};\n\n result = {};\n keys = Object.keys(map);\n\n for (index = 0, length = keys.length; index < length; index += 1) {\n tag = keys[index];\n style = String(map[tag]);\n\n if (tag.slice(0, 2) === '!!') {\n tag = 'tag:yaml.org,2002:' + tag.slice(2);\n }\n type = schema.compiledTypeMap['fallback'][tag];\n\n if (type && _hasOwnProperty.call(type.styleAliases, style)) {\n style = type.styleAliases[style];\n }\n\n result[tag] = style;\n }\n\n return result;\n}\n\nfunction encodeHex(character) {\n var string, handle, length;\n\n string = character.toString(16).toUpperCase();\n\n if (character <= 0xFF) {\n handle = 'x';\n length = 2;\n } else if (character <= 0xFFFF) {\n handle = 'u';\n length = 4;\n } else if (character <= 0xFFFFFFFF) {\n handle = 'U';\n length = 8;\n } else {\n throw new exception('code point within a string may not be greater than 0xFFFFFFFF');\n }\n\n return '\\\\' + handle + common.repeat('0', length - string.length) + string;\n}\n\n\nvar QUOTING_TYPE_SINGLE = 1,\n QUOTING_TYPE_DOUBLE = 2;\n\nfunction State(options) {\n this.schema = options['schema'] || _default;\n this.indent = Math.max(1, (options['indent'] || 2));\n this.noArrayIndent = options['noArrayIndent'] || false;\n this.skipInvalid = options['skipInvalid'] || false;\n this.flowLevel = (common.isNothing(options['flowLevel']) ? -1 : options['flowLevel']);\n this.styleMap = compileStyleMap(this.schema, options['styles'] || null);\n this.sortKeys = options['sortKeys'] || false;\n this.lineWidth = options['lineWidth'] || 80;\n this.noRefs = options['noRefs'] || false;\n this.noCompatMode = options['noCompatMode'] || false;\n this.condenseFlow = options['condenseFlow'] || false;\n this.quotingType = options['quotingType'] === '\"' ? QUOTING_TYPE_DOUBLE : QUOTING_TYPE_SINGLE;\n this.forceQuotes = options['forceQuotes'] || false;\n this.replacer = typeof options['replacer'] === 'function' ? options['replacer'] : null;\n\n this.implicitTypes = this.schema.compiledImplicit;\n this.explicitTypes = this.schema.compiledExplicit;\n\n this.tag = null;\n this.result = '';\n\n this.duplicates = [];\n this.usedDuplicates = null;\n}\n\n// Indents every line in a string. Empty lines (\\n only) are not indented.\nfunction indentString(string, spaces) {\n var ind = common.repeat(' ', spaces),\n position = 0,\n next = -1,\n result = '',\n line,\n length = string.length;\n\n while (position < length) {\n next = string.indexOf('\\n', position);\n if (next === -1) {\n line = string.slice(position);\n position = length;\n } else {\n line = string.slice(position, next + 1);\n position = next + 1;\n }\n\n if (line.length && line !== '\\n') result += ind;\n\n result += line;\n }\n\n return result;\n}\n\nfunction generateNextLine(state, level) {\n return '\\n' + common.repeat(' ', state.indent * level);\n}\n\nfunction testImplicitResolving(state, str) {\n var index, length, type;\n\n for (index = 0, length = state.implicitTypes.length; index < length; index += 1) {\n type = state.implicitTypes[index];\n\n if (type.resolve(str)) {\n return true;\n }\n }\n\n return false;\n}\n\n// [33] s-white ::= s-space | s-tab\nfunction isWhitespace(c) {\n return c === CHAR_SPACE || c === CHAR_TAB;\n}\n\n// Returns true if the character can be printed without escaping.\n// From YAML 1.2: \"any allowed characters known to be non-printable\n// should also be escaped. [However,] This isn’t mandatory\"\n// Derived from nb-char - \\t - #x85 - #xA0 - #x2028 - #x2029.\nfunction isPrintable(c) {\n return (0x00020 <= c && c <= 0x00007E)\n || ((0x000A1 <= c && c <= 0x00D7FF) && c !== 0x2028 && c !== 0x2029)\n || ((0x0E000 <= c && c <= 0x00FFFD) && c !== CHAR_BOM)\n || (0x10000 <= c && c <= 0x10FFFF);\n}\n\n// [34] ns-char ::= nb-char - s-white\n// [27] nb-char ::= c-printable - b-char - c-byte-order-mark\n// [26] b-char ::= b-line-feed | b-carriage-return\n// Including s-white (for some reason, examples doesn't match specs in this aspect)\n// ns-char ::= c-printable - b-line-feed - b-carriage-return - c-byte-order-mark\nfunction isNsCharOrWhitespace(c) {\n return isPrintable(c)\n && c !== CHAR_BOM\n // - b-char\n && c !== CHAR_CARRIAGE_RETURN\n && c !== CHAR_LINE_FEED;\n}\n\n// [127] ns-plain-safe(c) ::= c = flow-out ⇒ ns-plain-safe-out\n// c = flow-in ⇒ ns-plain-safe-in\n// c = block-key ⇒ ns-plain-safe-out\n// c = flow-key ⇒ ns-plain-safe-in\n// [128] ns-plain-safe-out ::= ns-char\n// [129] ns-plain-safe-in ::= ns-char - c-flow-indicator\n// [130] ns-plain-char(c) ::= ( ns-plain-safe(c) - “:” - “#” )\n// | ( /* An ns-char preceding */ “#” )\n// | ( “:” /* Followed by an ns-plain-safe(c) */ )\nfunction isPlainSafe(c, prev, inblock) {\n var cIsNsCharOrWhitespace = isNsCharOrWhitespace(c);\n var cIsNsChar = cIsNsCharOrWhitespace && !isWhitespace(c);\n return (\n // ns-plain-safe\n inblock ? // c = flow-in\n cIsNsCharOrWhitespace\n : cIsNsCharOrWhitespace\n // - c-flow-indicator\n && c !== CHAR_COMMA\n && c !== CHAR_LEFT_SQUARE_BRACKET\n && c !== CHAR_RIGHT_SQUARE_BRACKET\n && c !== CHAR_LEFT_CURLY_BRACKET\n && c !== CHAR_RIGHT_CURLY_BRACKET\n )\n // ns-plain-char\n && c !== CHAR_SHARP // false on '#'\n && !(prev === CHAR_COLON && !cIsNsChar) // false on ': '\n || (isNsCharOrWhitespace(prev) && !isWhitespace(prev) && c === CHAR_SHARP) // change to true on '[^ ]#'\n || (prev === CHAR_COLON && cIsNsChar); // change to true on ':[^ ]'\n}\n\n// Simplified test for values allowed as the first character in plain style.\nfunction isPlainSafeFirst(c) {\n // Uses a subset of ns-char - c-indicator\n // where ns-char = nb-char - s-white.\n // No support of ( ( “?” | “:” | “-” ) /* Followed by an ns-plain-safe(c)) */ ) part\n return isPrintable(c) && c !== CHAR_BOM\n && !isWhitespace(c) // - s-white\n // - (c-indicator ::=\n // “-” | “?” | “:” | “,” | “[” | “]” | “{” | “}”\n && c !== CHAR_MINUS\n && c !== CHAR_QUESTION\n && c !== CHAR_COLON\n && c !== CHAR_COMMA\n && c !== CHAR_LEFT_SQUARE_BRACKET\n && c !== CHAR_RIGHT_SQUARE_BRACKET\n && c !== CHAR_LEFT_CURLY_BRACKET\n && c !== CHAR_RIGHT_CURLY_BRACKET\n // | “#” | “&” | “*” | “!” | “|” | “=” | “>” | “'” | “\"”\n && c !== CHAR_SHARP\n && c !== CHAR_AMPERSAND\n && c !== CHAR_ASTERISK\n && c !== CHAR_EXCLAMATION\n && c !== CHAR_VERTICAL_LINE\n && c !== CHAR_EQUALS\n && c !== CHAR_GREATER_THAN\n && c !== CHAR_SINGLE_QUOTE\n && c !== CHAR_DOUBLE_QUOTE\n // | “%” | “@” | “`”)\n && c !== CHAR_PERCENT\n && c !== CHAR_COMMERCIAL_AT\n && c !== CHAR_GRAVE_ACCENT;\n}\n\n// Simplified test for values allowed as the last character in plain style.\nfunction isPlainSafeLast(c) {\n // just not whitespace or colon, it will be checked to be plain character later\n return !isWhitespace(c) && c !== CHAR_COLON;\n}\n\n// Same as 'string'.codePointAt(pos), but works in older browsers.\nfunction codePointAt(string, pos) {\n var first = string.charCodeAt(pos), second;\n if (first >= 0xD800 && first <= 0xDBFF && pos + 1 < string.length) {\n second = string.charCodeAt(pos + 1);\n if (second >= 0xDC00 && second <= 0xDFFF) {\n // https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n return (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000;\n }\n }\n return first;\n}\n\n// Determines whether block indentation indicator is required.\nfunction needIndentIndicator(string) {\n var leadingSpaceRe = /^\\n* /;\n return leadingSpaceRe.test(string);\n}\n\nvar STYLE_PLAIN = 1,\n STYLE_SINGLE = 2,\n STYLE_LITERAL = 3,\n STYLE_FOLDED = 4,\n STYLE_DOUBLE = 5;\n\n// Determines which scalar styles are possible and returns the preferred style.\n// lineWidth = -1 => no limit.\n// Pre-conditions: str.length > 0.\n// Post-conditions:\n// STYLE_PLAIN or STYLE_SINGLE => no \\n are in the string.\n// STYLE_LITERAL => no lines are suitable for folding (or lineWidth is -1).\n// STYLE_FOLDED => a line > lineWidth and can be folded (and lineWidth != -1).\nfunction chooseScalarStyle(string, singleLineOnly, indentPerLevel, lineWidth,\n testAmbiguousType, quotingType, forceQuotes, inblock) {\n\n var i;\n var char = 0;\n var prevChar = null;\n var hasLineBreak = false;\n var hasFoldableLine = false; // only checked if shouldTrackWidth\n var shouldTrackWidth = lineWidth !== -1;\n var previousLineBreak = -1; // count the first line correctly\n var plain = isPlainSafeFirst(codePointAt(string, 0))\n && isPlainSafeLast(codePointAt(string, string.length - 1));\n\n if (singleLineOnly || forceQuotes) {\n // Case: no block styles.\n // Check for disallowed characters to rule out plain and single.\n for (i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {\n char = codePointAt(string, i);\n if (!isPrintable(char)) {\n return STYLE_DOUBLE;\n }\n plain = plain && isPlainSafe(char, prevChar, inblock);\n prevChar = char;\n }\n } else {\n // Case: block styles permitted.\n for (i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {\n char = codePointAt(string, i);\n if (char === CHAR_LINE_FEED) {\n hasLineBreak = true;\n // Check if any line can be folded.\n if (shouldTrackWidth) {\n hasFoldableLine = hasFoldableLine ||\n // Foldable line = too long, and not more-indented.\n (i - previousLineBreak - 1 > lineWidth &&\n string[previousLineBreak + 1] !== ' ');\n previousLineBreak = i;\n }\n } else if (!isPrintable(char)) {\n return STYLE_DOUBLE;\n }\n plain = plain && isPlainSafe(char, prevChar, inblock);\n prevChar = char;\n }\n // in case the end is missing a \\n\n hasFoldableLine = hasFoldableLine || (shouldTrackWidth &&\n (i - previousLineBreak - 1 > lineWidth &&\n string[previousLineBreak + 1] !== ' '));\n }\n // Although every style can represent \\n without escaping, prefer block styles\n // for multiline, since they're more readable and they don't add empty lines.\n // Also prefer folding a super-long line.\n if (!hasLineBreak && !hasFoldableLine) {\n // Strings interpretable as another type have to be quoted;\n // e.g. the string 'true' vs. the boolean true.\n if (plain && !forceQuotes && !testAmbiguousType(string)) {\n return STYLE_PLAIN;\n }\n return quotingType === QUOTING_TYPE_DOUBLE ? STYLE_DOUBLE : STYLE_SINGLE;\n }\n // Edge case: block indentation indicator can only have one digit.\n if (indentPerLevel > 9 && needIndentIndicator(string)) {\n return STYLE_DOUBLE;\n }\n // At this point we know block styles are valid.\n // Prefer literal style unless we want to fold.\n if (!forceQuotes) {\n return hasFoldableLine ? STYLE_FOLDED : STYLE_LITERAL;\n }\n return quotingType === QUOTING_TYPE_DOUBLE ? STYLE_DOUBLE : STYLE_SINGLE;\n}\n\n// Note: line breaking/folding is implemented for only the folded style.\n// NB. We drop the last trailing newline (if any) of a returned block scalar\n// since the dumper adds its own newline. This always works:\n// • No ending newline => unaffected; already using strip \"-\" chomping.\n// • Ending newline => removed then restored.\n// Importantly, this keeps the \"+\" chomp indicator from gaining an extra line.\nfunction writeScalar(state, string, level, iskey, inblock) {\n state.dump = (function () {\n if (string.length === 0) {\n return state.quotingType === QUOTING_TYPE_DOUBLE ? '\"\"' : \"''\";\n }\n if (!state.noCompatMode) {\n if (DEPRECATED_BOOLEANS_SYNTAX.indexOf(string) !== -1 || DEPRECATED_BASE60_SYNTAX.test(string)) {\n return state.quotingType === QUOTING_TYPE_DOUBLE ? ('\"' + string + '\"') : (\"'\" + string + \"'\");\n }\n }\n\n var indent = state.indent * Math.max(1, level); // no 0-indent scalars\n // As indentation gets deeper, let the width decrease monotonically\n // to the lower bound min(state.lineWidth, 40).\n // Note that this implies\n // state.lineWidth ≤ 40 + state.indent: width is fixed at the lower bound.\n // state.lineWidth > 40 + state.indent: width decreases until the lower bound.\n // This behaves better than a constant minimum width which disallows narrower options,\n // or an indent threshold which causes the width to suddenly increase.\n var lineWidth = state.lineWidth === -1\n ? -1 : Math.max(Math.min(state.lineWidth, 40), state.lineWidth - indent);\n\n // Without knowing if keys are implicit/explicit, assume implicit for safety.\n var singleLineOnly = iskey\n // No block styles in flow mode.\n || (state.flowLevel > -1 && level >= state.flowLevel);\n function testAmbiguity(string) {\n return testImplicitResolving(state, string);\n }\n\n switch (chooseScalarStyle(string, singleLineOnly, state.indent, lineWidth,\n testAmbiguity, state.quotingType, state.forceQuotes && !iskey, inblock)) {\n\n case STYLE_PLAIN:\n return string;\n case STYLE_SINGLE:\n return \"'\" + string.replace(/'/g, \"''\") + \"'\";\n case STYLE_LITERAL:\n return '|' + blockHeader(string, state.indent)\n + dropEndingNewline(indentString(string, indent));\n case STYLE_FOLDED:\n return '>' + blockHeader(string, state.indent)\n + dropEndingNewline(indentString(foldString(string, lineWidth), indent));\n case STYLE_DOUBLE:\n return '\"' + escapeString(string) + '\"';\n default:\n throw new exception('impossible error: invalid scalar style');\n }\n }());\n}\n\n// Pre-conditions: string is valid for a block scalar, 1 <= indentPerLevel <= 9.\nfunction blockHeader(string, indentPerLevel) {\n var indentIndicator = needIndentIndicator(string) ? String(indentPerLevel) : '';\n\n // note the special case: the string '\\n' counts as a \"trailing\" empty line.\n var clip = string[string.length - 1] === '\\n';\n var keep = clip && (string[string.length - 2] === '\\n' || string === '\\n');\n var chomp = keep ? '+' : (clip ? '' : '-');\n\n return indentIndicator + chomp + '\\n';\n}\n\n// (See the note for writeScalar.)\nfunction dropEndingNewline(string) {\n return string[string.length - 1] === '\\n' ? string.slice(0, -1) : string;\n}\n\n// Note: a long line without a suitable break point will exceed the width limit.\n// Pre-conditions: every char in str isPrintable, str.length > 0, width > 0.\nfunction foldString(string, width) {\n // In folded style, $k$ consecutive newlines output as $k+1$ newlines—\n // unless they're before or after a more-indented line, or at the very\n // beginning or end, in which case $k$ maps to $k$.\n // Therefore, parse each chunk as newline(s) followed by a content line.\n var lineRe = /(\\n+)([^\\n]*)/g;\n\n // first line (possibly an empty line)\n var result = (function () {\n var nextLF = string.indexOf('\\n');\n nextLF = nextLF !== -1 ? nextLF : string.length;\n lineRe.lastIndex = nextLF;\n return foldLine(string.slice(0, nextLF), width);\n }());\n // If we haven't reached the first content line yet, don't add an extra \\n.\n var prevMoreIndented = string[0] === '\\n' || string[0] === ' ';\n var moreIndented;\n\n // rest of the lines\n var match;\n while ((match = lineRe.exec(string))) {\n var prefix = match[1], line = match[2];\n moreIndented = (line[0] === ' ');\n result += prefix\n + (!prevMoreIndented && !moreIndented && line !== ''\n ? '\\n' : '')\n + foldLine(line, width);\n prevMoreIndented = moreIndented;\n }\n\n return result;\n}\n\n// Greedy line breaking.\n// Picks the longest line under the limit each time,\n// otherwise settles for the shortest line over the limit.\n// NB. More-indented lines *cannot* be folded, as that would add an extra \\n.\nfunction foldLine(line, width) {\n if (line === '' || line[0] === ' ') return line;\n\n // Since a more-indented line adds a \\n, breaks can't be followed by a space.\n var breakRe = / [^ ]/g; // note: the match index will always be <= length-2.\n var match;\n // start is an inclusive index. end, curr, and next are exclusive.\n var start = 0, end, curr = 0, next = 0;\n var result = '';\n\n // Invariants: 0 <= start <= length-1.\n // 0 <= curr <= next <= max(0, length-2). curr - start <= width.\n // Inside the loop:\n // A match implies length >= 2, so curr and next are <= length-2.\n while ((match = breakRe.exec(line))) {\n next = match.index;\n // maintain invariant: curr - start <= width\n if (next - start > width) {\n end = (curr > start) ? curr : next; // derive end <= length-2\n result += '\\n' + line.slice(start, end);\n // skip the space that was output as \\n\n start = end + 1; // derive start <= length-1\n }\n curr = next;\n }\n\n // By the invariants, start <= length-1, so there is something left over.\n // It is either the whole string or a part starting from non-whitespace.\n result += '\\n';\n // Insert a break if the remainder is too long and there is a break available.\n if (line.length - start > width && curr > start) {\n result += line.slice(start, curr) + '\\n' + line.slice(curr + 1);\n } else {\n result += line.slice(start);\n }\n\n return result.slice(1); // drop extra \\n joiner\n}\n\n// Escapes a double-quoted string.\nfunction escapeString(string) {\n var result = '';\n var char = 0;\n var escapeSeq;\n\n for (var i = 0; i < string.length; char >= 0x10000 ? i += 2 : i++) {\n char = codePointAt(string, i);\n escapeSeq = ESCAPE_SEQUENCES[char];\n\n if (!escapeSeq && isPrintable(char)) {\n result += string[i];\n if (char >= 0x10000) result += string[i + 1];\n } else {\n result += escapeSeq || encodeHex(char);\n }\n }\n\n return result;\n}\n\nfunction writeFlowSequence(state, level, object) {\n var _result = '',\n _tag = state.tag,\n index,\n length,\n value;\n\n for (index = 0, length = object.length; index < length; index += 1) {\n value = object[index];\n\n if (state.replacer) {\n value = state.replacer.call(object, String(index), value);\n }\n\n // Write only valid elements, put null instead of invalid elements.\n if (writeNode(state, level, value, false, false) ||\n (typeof value === 'undefined' &&\n writeNode(state, level, null, false, false))) {\n\n if (_result !== '') _result += ',' + (!state.condenseFlow ? ' ' : '');\n _result += state.dump;\n }\n }\n\n state.tag = _tag;\n state.dump = '[' + _result + ']';\n}\n\nfunction writeBlockSequence(state, level, object, compact) {\n var _result = '',\n _tag = state.tag,\n index,\n length,\n value;\n\n for (index = 0, length = object.length; index < length; index += 1) {\n value = object[index];\n\n if (state.replacer) {\n value = state.replacer.call(object, String(index), value);\n }\n\n // Write only valid elements, put null instead of invalid elements.\n if (writeNode(state, level + 1, value, true, true, false, true) ||\n (typeof value === 'undefined' &&\n writeNode(state, level + 1, null, true, true, false, true))) {\n\n if (!compact || _result !== '') {\n _result += generateNextLine(state, level);\n }\n\n if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {\n _result += '-';\n } else {\n _result += '- ';\n }\n\n _result += state.dump;\n }\n }\n\n state.tag = _tag;\n state.dump = _result || '[]'; // Empty sequence if no valid values.\n}\n\nfunction writeFlowMapping(state, level, object) {\n var _result = '',\n _tag = state.tag,\n objectKeyList = Object.keys(object),\n index,\n length,\n objectKey,\n objectValue,\n pairBuffer;\n\n for (index = 0, length = objectKeyList.length; index < length; index += 1) {\n\n pairBuffer = '';\n if (_result !== '') pairBuffer += ', ';\n\n if (state.condenseFlow) pairBuffer += '\"';\n\n objectKey = objectKeyList[index];\n objectValue = object[objectKey];\n\n if (state.replacer) {\n objectValue = state.replacer.call(object, objectKey, objectValue);\n }\n\n if (!writeNode(state, level, objectKey, false, false)) {\n continue; // Skip this pair because of invalid key;\n }\n\n if (state.dump.length > 1024) pairBuffer += '? ';\n\n pairBuffer += state.dump + (state.condenseFlow ? '\"' : '') + ':' + (state.condenseFlow ? '' : ' ');\n\n if (!writeNode(state, level, objectValue, false, false)) {\n continue; // Skip this pair because of invalid value.\n }\n\n pairBuffer += state.dump;\n\n // Both key and value are valid.\n _result += pairBuffer;\n }\n\n state.tag = _tag;\n state.dump = '{' + _result + '}';\n}\n\nfunction writeBlockMapping(state, level, object, compact) {\n var _result = '',\n _tag = state.tag,\n objectKeyList = Object.keys(object),\n index,\n length,\n objectKey,\n objectValue,\n explicitPair,\n pairBuffer;\n\n // Allow sorting keys so that the output file is deterministic\n if (state.sortKeys === true) {\n // Default sorting\n objectKeyList.sort();\n } else if (typeof state.sortKeys === 'function') {\n // Custom sort function\n objectKeyList.sort(state.sortKeys);\n } else if (state.sortKeys) {\n // Something is wrong\n throw new exception('sortKeys must be a boolean or a function');\n }\n\n for (index = 0, length = objectKeyList.length; index < length; index += 1) {\n pairBuffer = '';\n\n if (!compact || _result !== '') {\n pairBuffer += generateNextLine(state, level);\n }\n\n objectKey = objectKeyList[index];\n objectValue = object[objectKey];\n\n if (state.replacer) {\n objectValue = state.replacer.call(object, objectKey, objectValue);\n }\n\n if (!writeNode(state, level + 1, objectKey, true, true, true)) {\n continue; // Skip this pair because of invalid key.\n }\n\n explicitPair = (state.tag !== null && state.tag !== '?') ||\n (state.dump && state.dump.length > 1024);\n\n if (explicitPair) {\n if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {\n pairBuffer += '?';\n } else {\n pairBuffer += '? ';\n }\n }\n\n pairBuffer += state.dump;\n\n if (explicitPair) {\n pairBuffer += generateNextLine(state, level);\n }\n\n if (!writeNode(state, level + 1, objectValue, true, explicitPair)) {\n continue; // Skip this pair because of invalid value.\n }\n\n if (state.dump && CHAR_LINE_FEED === state.dump.charCodeAt(0)) {\n pairBuffer += ':';\n } else {\n pairBuffer += ': ';\n }\n\n pairBuffer += state.dump;\n\n // Both key and value are valid.\n _result += pairBuffer;\n }\n\n state.tag = _tag;\n state.dump = _result || '{}'; // Empty mapping if no valid pairs.\n}\n\nfunction detectType(state, object, explicit) {\n var _result, typeList, index, length, type, style;\n\n typeList = explicit ? state.explicitTypes : state.implicitTypes;\n\n for (index = 0, length = typeList.length; index < length; index += 1) {\n type = typeList[index];\n\n if ((type.instanceOf || type.predicate) &&\n (!type.instanceOf || ((typeof object === 'object') && (object instanceof type.instanceOf))) &&\n (!type.predicate || type.predicate(object))) {\n\n if (explicit) {\n if (type.multi && type.representName) {\n state.tag = type.representName(object);\n } else {\n state.tag = type.tag;\n }\n } else {\n state.tag = '?';\n }\n\n if (type.represent) {\n style = state.styleMap[type.tag] || type.defaultStyle;\n\n if (_toString.call(type.represent) === '[object Function]') {\n _result = type.represent(object, style);\n } else if (_hasOwnProperty.call(type.represent, style)) {\n _result = type.represent[style](object, style);\n } else {\n throw new exception('!<' + type.tag + '> tag resolver accepts not \"' + style + '\" style');\n }\n\n state.dump = _result;\n }\n\n return true;\n }\n }\n\n return false;\n}\n\n// Serializes `object` and writes it to global `result`.\n// Returns true on success, or false on invalid object.\n//\nfunction writeNode(state, level, object, block, compact, iskey, isblockseq) {\n state.tag = null;\n state.dump = object;\n\n if (!detectType(state, object, false)) {\n detectType(state, object, true);\n }\n\n var type = _toString.call(state.dump);\n var inblock = block;\n var tagStr;\n\n if (block) {\n block = (state.flowLevel < 0 || state.flowLevel > level);\n }\n\n var objectOrArray = type === '[object Object]' || type === '[object Array]',\n duplicateIndex,\n duplicate;\n\n if (objectOrArray) {\n duplicateIndex = state.duplicates.indexOf(object);\n duplicate = duplicateIndex !== -1;\n }\n\n if ((state.tag !== null && state.tag !== '?') || duplicate || (state.indent !== 2 && level > 0)) {\n compact = false;\n }\n\n if (duplicate && state.usedDuplicates[duplicateIndex]) {\n state.dump = '*ref_' + duplicateIndex;\n } else {\n if (objectOrArray && duplicate && !state.usedDuplicates[duplicateIndex]) {\n state.usedDuplicates[duplicateIndex] = true;\n }\n if (type === '[object Object]') {\n if (block && (Object.keys(state.dump).length !== 0)) {\n writeBlockMapping(state, level, state.dump, compact);\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + state.dump;\n }\n } else {\n writeFlowMapping(state, level, state.dump);\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + ' ' + state.dump;\n }\n }\n } else if (type === '[object Array]') {\n if (block && (state.dump.length !== 0)) {\n if (state.noArrayIndent && !isblockseq && level > 0) {\n writeBlockSequence(state, level - 1, state.dump, compact);\n } else {\n writeBlockSequence(state, level, state.dump, compact);\n }\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + state.dump;\n }\n } else {\n writeFlowSequence(state, level, state.dump);\n if (duplicate) {\n state.dump = '&ref_' + duplicateIndex + ' ' + state.dump;\n }\n }\n } else if (type === '[object String]') {\n if (state.tag !== '?') {\n writeScalar(state, state.dump, level, iskey, inblock);\n }\n } else if (type === '[object Undefined]') {\n return false;\n } else {\n if (state.skipInvalid) return false;\n throw new exception('unacceptable kind of an object to dump ' + type);\n }\n\n if (state.tag !== null && state.tag !== '?') {\n // Need to encode all characters except those allowed by the spec:\n //\n // [35] ns-dec-digit ::= [#x30-#x39] /* 0-9 */\n // [36] ns-hex-digit ::= ns-dec-digit\n // | [#x41-#x46] /* A-F */ | [#x61-#x66] /* a-f */\n // [37] ns-ascii-letter ::= [#x41-#x5A] /* A-Z */ | [#x61-#x7A] /* a-z */\n // [38] ns-word-char ::= ns-dec-digit | ns-ascii-letter | “-”\n // [39] ns-uri-char ::= “%” ns-hex-digit ns-hex-digit | ns-word-char | “#”\n // | “;” | “/” | “?” | “:” | “@” | “&” | “=” | “+” | “$” | “,”\n // | “_” | “.” | “!” | “~” | “*” | “'” | “(” | “)” | “[” | “]”\n //\n // Also need to encode '!' because it has special meaning (end of tag prefix).\n //\n tagStr = encodeURI(\n state.tag[0] === '!' ? state.tag.slice(1) : state.tag\n ).replace(/!/g, '%21');\n\n if (state.tag[0] === '!') {\n tagStr = '!' + tagStr;\n } else if (tagStr.slice(0, 18) === 'tag:yaml.org,2002:') {\n tagStr = '!!' + tagStr.slice(18);\n } else {\n tagStr = '!<' + tagStr + '>';\n }\n\n state.dump = tagStr + ' ' + state.dump;\n }\n }\n\n return true;\n}\n\nfunction getDuplicateReferences(object, state) {\n var objects = [],\n duplicatesIndexes = [],\n index,\n length;\n\n inspectNode(object, objects, duplicatesIndexes);\n\n for (index = 0, length = duplicatesIndexes.length; index < length; index += 1) {\n state.duplicates.push(objects[duplicatesIndexes[index]]);\n }\n state.usedDuplicates = new Array(length);\n}\n\nfunction inspectNode(object, objects, duplicatesIndexes) {\n var objectKeyList,\n index,\n length;\n\n if (object !== null && typeof object === 'object') {\n index = objects.indexOf(object);\n if (index !== -1) {\n if (duplicatesIndexes.indexOf(index) === -1) {\n duplicatesIndexes.push(index);\n }\n } else {\n objects.push(object);\n\n if (Array.isArray(object)) {\n for (index = 0, length = object.length; index < length; index += 1) {\n inspectNode(object[index], objects, duplicatesIndexes);\n }\n } else {\n objectKeyList = Object.keys(object);\n\n for (index = 0, length = objectKeyList.length; index < length; index += 1) {\n inspectNode(object[objectKeyList[index]], objects, duplicatesIndexes);\n }\n }\n }\n }\n}\n\nfunction dump$1(input, options) {\n options = options || {};\n\n var state = new State(options);\n\n if (!state.noRefs) getDuplicateReferences(input, state);\n\n var value = input;\n\n if (state.replacer) {\n value = state.replacer.call({ '': value }, '', value);\n }\n\n if (writeNode(state, 0, value, true, true)) return state.dump + '\\n';\n\n return '';\n}\n\nvar dump_1 = dump$1;\n\nvar dumper = {\n\tdump: dump_1\n};\n\nfunction renamed(from, to) {\n return function () {\n throw new Error('Function yaml.' + from + ' is removed in js-yaml 4. ' +\n 'Use yaml.' + to + ' instead, which is now safe by default.');\n };\n}\n\n\nvar Type = type;\nvar Schema = schema;\nvar FAILSAFE_SCHEMA = failsafe;\nvar JSON_SCHEMA = json;\nvar CORE_SCHEMA = core;\nvar DEFAULT_SCHEMA = _default;\nvar load = loader.load;\nvar loadAll = loader.loadAll;\nvar dump = dumper.dump;\nvar YAMLException = exception;\n\n// Re-export all types in case user wants to create custom schema\nvar types = {\n binary: binary,\n float: float,\n map: map,\n null: _null,\n pairs: pairs,\n set: set,\n timestamp: timestamp,\n bool: bool,\n int: int,\n merge: merge,\n omap: omap,\n seq: seq,\n str: str\n};\n\n// Removed functions from JS-YAML 3.0.x\nvar safeLoad = renamed('safeLoad', 'load');\nvar safeLoadAll = renamed('safeLoadAll', 'loadAll');\nvar safeDump = renamed('safeDump', 'dump');\n\nvar jsYaml = {\n\tType: Type,\n\tSchema: Schema,\n\tFAILSAFE_SCHEMA: FAILSAFE_SCHEMA,\n\tJSON_SCHEMA: JSON_SCHEMA,\n\tCORE_SCHEMA: CORE_SCHEMA,\n\tDEFAULT_SCHEMA: DEFAULT_SCHEMA,\n\tload: load,\n\tloadAll: loadAll,\n\tdump: dump,\n\tYAMLException: YAMLException,\n\ttypes: types,\n\tsafeLoad: safeLoad,\n\tsafeLoadAll: safeLoadAll,\n\tsafeDump: safeDump\n};\n\nexport default jsYaml;\nexport { CORE_SCHEMA, DEFAULT_SCHEMA, FAILSAFE_SCHEMA, JSON_SCHEMA, Schema, Type, YAMLException, dump, load, loadAll, safeDump, safeLoad, safeLoadAll, types };\n","\n/*! pako 2.1.0 https://github.com/nodeca/pako @license (MIT AND Zlib) */\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n/* eslint-disable space-unary-ops */\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\n\n//const Z_FILTERED = 1;\n//const Z_HUFFMAN_ONLY = 2;\n//const Z_RLE = 3;\nconst Z_FIXED$1 = 4;\n//const Z_DEFAULT_STRATEGY = 0;\n\n/* Possible values of the data_type field (though see inflate()) */\nconst Z_BINARY = 0;\nconst Z_TEXT = 1;\n//const Z_ASCII = 1; // = Z_TEXT\nconst Z_UNKNOWN$1 = 2;\n\n/*============================================================================*/\n\n\nfunction zero$1(buf) { let len = buf.length; while (--len >= 0) { buf[len] = 0; } }\n\n// From zutil.h\n\nconst STORED_BLOCK = 0;\nconst STATIC_TREES = 1;\nconst DYN_TREES = 2;\n/* The three kinds of block type */\n\nconst MIN_MATCH$1 = 3;\nconst MAX_MATCH$1 = 258;\n/* The minimum and maximum match lengths */\n\n// From deflate.h\n/* ===========================================================================\n * Internal compression state.\n */\n\nconst LENGTH_CODES$1 = 29;\n/* number of length codes, not counting the special END_BLOCK code */\n\nconst LITERALS$1 = 256;\n/* number of literal bytes 0..255 */\n\nconst L_CODES$1 = LITERALS$1 + 1 + LENGTH_CODES$1;\n/* number of Literal or Length codes, including the END_BLOCK code */\n\nconst D_CODES$1 = 30;\n/* number of distance codes */\n\nconst BL_CODES$1 = 19;\n/* number of codes used to transfer the bit lengths */\n\nconst HEAP_SIZE$1 = 2 * L_CODES$1 + 1;\n/* maximum heap size */\n\nconst MAX_BITS$1 = 15;\n/* All codes must not exceed MAX_BITS bits */\n\nconst Buf_size = 16;\n/* size of bit buffer in bi_buf */\n\n\n/* ===========================================================================\n * Constants\n */\n\nconst MAX_BL_BITS = 7;\n/* Bit length codes must not exceed MAX_BL_BITS bits */\n\nconst END_BLOCK = 256;\n/* end of block literal code */\n\nconst REP_3_6 = 16;\n/* repeat previous bit length 3-6 times (2 bits of repeat count) */\n\nconst REPZ_3_10 = 17;\n/* repeat a zero length 3-10 times (3 bits of repeat count) */\n\nconst REPZ_11_138 = 18;\n/* repeat a zero length 11-138 times (7 bits of repeat count) */\n\n/* eslint-disable comma-spacing,array-bracket-spacing */\nconst extra_lbits = /* extra bits for each length code */\n new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]);\n\nconst extra_dbits = /* extra bits for each distance code */\n new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]);\n\nconst extra_blbits = /* extra bits for each bit length code */\n new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]);\n\nconst bl_order =\n new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);\n/* eslint-enable comma-spacing,array-bracket-spacing */\n\n/* The lengths of the bit length codes are sent in order of decreasing\n * probability, to avoid transmitting the lengths for unused bit length codes.\n */\n\n/* ===========================================================================\n * Local data. These are initialized only once.\n */\n\n// We pre-fill arrays with 0 to avoid uninitialized gaps\n\nconst DIST_CODE_LEN = 512; /* see definition of array dist_code below */\n\n// !!!! Use flat array instead of structure, Freq = i*2, Len = i*2+1\nconst static_ltree = new Array((L_CODES$1 + 2) * 2);\nzero$1(static_ltree);\n/* The static literal tree. Since the bit lengths are imposed, there is no\n * need for the L_CODES extra codes used during heap construction. However\n * The codes 286 and 287 are needed to build a canonical tree (see _tr_init\n * below).\n */\n\nconst static_dtree = new Array(D_CODES$1 * 2);\nzero$1(static_dtree);\n/* The static distance tree. (Actually a trivial tree since all codes use\n * 5 bits.)\n */\n\nconst _dist_code = new Array(DIST_CODE_LEN);\nzero$1(_dist_code);\n/* Distance codes. The first 256 values correspond to the distances\n * 3 .. 258, the last 256 values correspond to the top 8 bits of\n * the 15 bit distances.\n */\n\nconst _length_code = new Array(MAX_MATCH$1 - MIN_MATCH$1 + 1);\nzero$1(_length_code);\n/* length code for each normalized match length (0 == MIN_MATCH) */\n\nconst base_length = new Array(LENGTH_CODES$1);\nzero$1(base_length);\n/* First normalized length for each code (0 = MIN_MATCH) */\n\nconst base_dist = new Array(D_CODES$1);\nzero$1(base_dist);\n/* First normalized distance for each code (0 = distance of 1) */\n\n\nfunction StaticTreeDesc(static_tree, extra_bits, extra_base, elems, max_length) {\n\n this.static_tree = static_tree; /* static tree or NULL */\n this.extra_bits = extra_bits; /* extra bits for each code or NULL */\n this.extra_base = extra_base; /* base index for extra_bits */\n this.elems = elems; /* max number of elements in the tree */\n this.max_length = max_length; /* max bit length for the codes */\n\n // show if `static_tree` has data or dummy - needed for monomorphic objects\n this.has_stree = static_tree && static_tree.length;\n}\n\n\nlet static_l_desc;\nlet static_d_desc;\nlet static_bl_desc;\n\n\nfunction TreeDesc(dyn_tree, stat_desc) {\n this.dyn_tree = dyn_tree; /* the dynamic tree */\n this.max_code = 0; /* largest code with non zero frequency */\n this.stat_desc = stat_desc; /* the corresponding static tree */\n}\n\n\n\nconst d_code = (dist) => {\n\n return dist < 256 ? _dist_code[dist] : _dist_code[256 + (dist >>> 7)];\n};\n\n\n/* ===========================================================================\n * Output a short LSB first on the stream.\n * IN assertion: there is enough room in pendingBuf.\n */\nconst put_short = (s, w) => {\n// put_byte(s, (uch)((w) & 0xff));\n// put_byte(s, (uch)((ush)(w) >> 8));\n s.pending_buf[s.pending++] = (w) & 0xff;\n s.pending_buf[s.pending++] = (w >>> 8) & 0xff;\n};\n\n\n/* ===========================================================================\n * Send a value on a given number of bits.\n * IN assertion: length <= 16 and value fits in length bits.\n */\nconst send_bits = (s, value, length) => {\n\n if (s.bi_valid > (Buf_size - length)) {\n s.bi_buf |= (value << s.bi_valid) & 0xffff;\n put_short(s, s.bi_buf);\n s.bi_buf = value >> (Buf_size - s.bi_valid);\n s.bi_valid += length - Buf_size;\n } else {\n s.bi_buf |= (value << s.bi_valid) & 0xffff;\n s.bi_valid += length;\n }\n};\n\n\nconst send_code = (s, c, tree) => {\n\n send_bits(s, tree[c * 2]/*.Code*/, tree[c * 2 + 1]/*.Len*/);\n};\n\n\n/* ===========================================================================\n * Reverse the first len bits of a code, using straightforward code (a faster\n * method would use a table)\n * IN assertion: 1 <= len <= 15\n */\nconst bi_reverse = (code, len) => {\n\n let res = 0;\n do {\n res |= code & 1;\n code >>>= 1;\n res <<= 1;\n } while (--len > 0);\n return res >>> 1;\n};\n\n\n/* ===========================================================================\n * Flush the bit buffer, keeping at most 7 bits in it.\n */\nconst bi_flush = (s) => {\n\n if (s.bi_valid === 16) {\n put_short(s, s.bi_buf);\n s.bi_buf = 0;\n s.bi_valid = 0;\n\n } else if (s.bi_valid >= 8) {\n s.pending_buf[s.pending++] = s.bi_buf & 0xff;\n s.bi_buf >>= 8;\n s.bi_valid -= 8;\n }\n};\n\n\n/* ===========================================================================\n * Compute the optimal bit lengths for a tree and update the total bit length\n * for the current block.\n * IN assertion: the fields freq and dad are set, heap[heap_max] and\n * above are the tree nodes sorted by increasing frequency.\n * OUT assertions: the field len is set to the optimal bit length, the\n * array bl_count contains the frequencies for each bit length.\n * The length opt_len is updated; static_len is also updated if stree is\n * not null.\n */\nconst gen_bitlen = (s, desc) => {\n// deflate_state *s;\n// tree_desc *desc; /* the tree descriptor */\n\n const tree = desc.dyn_tree;\n const max_code = desc.max_code;\n const stree = desc.stat_desc.static_tree;\n const has_stree = desc.stat_desc.has_stree;\n const extra = desc.stat_desc.extra_bits;\n const base = desc.stat_desc.extra_base;\n const max_length = desc.stat_desc.max_length;\n let h; /* heap index */\n let n, m; /* iterate over the tree elements */\n let bits; /* bit length */\n let xbits; /* extra bits */\n let f; /* frequency */\n let overflow = 0; /* number of elements with bit length too large */\n\n for (bits = 0; bits <= MAX_BITS$1; bits++) {\n s.bl_count[bits] = 0;\n }\n\n /* In a first pass, compute the optimal bit lengths (which may\n * overflow in the case of the bit length tree).\n */\n tree[s.heap[s.heap_max] * 2 + 1]/*.Len*/ = 0; /* root of the heap */\n\n for (h = s.heap_max + 1; h < HEAP_SIZE$1; h++) {\n n = s.heap[h];\n bits = tree[tree[n * 2 + 1]/*.Dad*/ * 2 + 1]/*.Len*/ + 1;\n if (bits > max_length) {\n bits = max_length;\n overflow++;\n }\n tree[n * 2 + 1]/*.Len*/ = bits;\n /* We overwrite tree[n].Dad which is no longer needed */\n\n if (n > max_code) { continue; } /* not a leaf node */\n\n s.bl_count[bits]++;\n xbits = 0;\n if (n >= base) {\n xbits = extra[n - base];\n }\n f = tree[n * 2]/*.Freq*/;\n s.opt_len += f * (bits + xbits);\n if (has_stree) {\n s.static_len += f * (stree[n * 2 + 1]/*.Len*/ + xbits);\n }\n }\n if (overflow === 0) { return; }\n\n // Tracev((stderr,\"\\nbit length overflow\\n\"));\n /* This happens for example on obj2 and pic of the Calgary corpus */\n\n /* Find the first bit length which could increase: */\n do {\n bits = max_length - 1;\n while (s.bl_count[bits] === 0) { bits--; }\n s.bl_count[bits]--; /* move one leaf down the tree */\n s.bl_count[bits + 1] += 2; /* move one overflow item as its brother */\n s.bl_count[max_length]--;\n /* The brother of the overflow item also moves one step up,\n * but this does not affect bl_count[max_length]\n */\n overflow -= 2;\n } while (overflow > 0);\n\n /* Now recompute all bit lengths, scanning in increasing frequency.\n * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all\n * lengths instead of fixing only the wrong ones. This idea is taken\n * from 'ar' written by Haruhiko Okumura.)\n */\n for (bits = max_length; bits !== 0; bits--) {\n n = s.bl_count[bits];\n while (n !== 0) {\n m = s.heap[--h];\n if (m > max_code) { continue; }\n if (tree[m * 2 + 1]/*.Len*/ !== bits) {\n // Tracev((stderr,\"code %d bits %d->%d\\n\", m, tree[m].Len, bits));\n s.opt_len += (bits - tree[m * 2 + 1]/*.Len*/) * tree[m * 2]/*.Freq*/;\n tree[m * 2 + 1]/*.Len*/ = bits;\n }\n n--;\n }\n }\n};\n\n\n/* ===========================================================================\n * Generate the codes for a given tree and bit counts (which need not be\n * optimal).\n * IN assertion: the array bl_count contains the bit length statistics for\n * the given tree and the field len is set for all tree elements.\n * OUT assertion: the field code is set for all tree elements of non\n * zero code length.\n */\nconst gen_codes = (tree, max_code, bl_count) => {\n// ct_data *tree; /* the tree to decorate */\n// int max_code; /* largest code with non zero frequency */\n// ushf *bl_count; /* number of codes at each bit length */\n\n const next_code = new Array(MAX_BITS$1 + 1); /* next code value for each bit length */\n let code = 0; /* running code value */\n let bits; /* bit index */\n let n; /* code index */\n\n /* The distribution counts are first used to generate the code values\n * without bit reversal.\n */\n for (bits = 1; bits <= MAX_BITS$1; bits++) {\n code = (code + bl_count[bits - 1]) << 1;\n next_code[bits] = code;\n }\n /* Check that the bit counts in bl_count are consistent. The last code\n * must be all ones.\n */\n //Assert (code + bl_count[MAX_BITS]-1 == (1< {\n\n let n; /* iterates over tree elements */\n let bits; /* bit counter */\n let length; /* length value */\n let code; /* code value */\n let dist; /* distance index */\n const bl_count = new Array(MAX_BITS$1 + 1);\n /* number of codes at each bit length for an optimal tree */\n\n // do check in _tr_init()\n //if (static_init_done) return;\n\n /* For some embedded targets, global variables are not initialized: */\n/*#ifdef NO_INIT_GLOBAL_POINTERS\n static_l_desc.static_tree = static_ltree;\n static_l_desc.extra_bits = extra_lbits;\n static_d_desc.static_tree = static_dtree;\n static_d_desc.extra_bits = extra_dbits;\n static_bl_desc.extra_bits = extra_blbits;\n#endif*/\n\n /* Initialize the mapping length (0..255) -> length code (0..28) */\n length = 0;\n for (code = 0; code < LENGTH_CODES$1 - 1; code++) {\n base_length[code] = length;\n for (n = 0; n < (1 << extra_lbits[code]); n++) {\n _length_code[length++] = code;\n }\n }\n //Assert (length == 256, \"tr_static_init: length != 256\");\n /* Note that the length 255 (match length 258) can be represented\n * in two different ways: code 284 + 5 bits or code 285, so we\n * overwrite length_code[255] to use the best encoding:\n */\n _length_code[length - 1] = code;\n\n /* Initialize the mapping dist (0..32K) -> dist code (0..29) */\n dist = 0;\n for (code = 0; code < 16; code++) {\n base_dist[code] = dist;\n for (n = 0; n < (1 << extra_dbits[code]); n++) {\n _dist_code[dist++] = code;\n }\n }\n //Assert (dist == 256, \"tr_static_init: dist != 256\");\n dist >>= 7; /* from now on, all distances are divided by 128 */\n for (; code < D_CODES$1; code++) {\n base_dist[code] = dist << 7;\n for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {\n _dist_code[256 + dist++] = code;\n }\n }\n //Assert (dist == 256, \"tr_static_init: 256+dist != 512\");\n\n /* Construct the codes of the static literal tree */\n for (bits = 0; bits <= MAX_BITS$1; bits++) {\n bl_count[bits] = 0;\n }\n\n n = 0;\n while (n <= 143) {\n static_ltree[n * 2 + 1]/*.Len*/ = 8;\n n++;\n bl_count[8]++;\n }\n while (n <= 255) {\n static_ltree[n * 2 + 1]/*.Len*/ = 9;\n n++;\n bl_count[9]++;\n }\n while (n <= 279) {\n static_ltree[n * 2 + 1]/*.Len*/ = 7;\n n++;\n bl_count[7]++;\n }\n while (n <= 287) {\n static_ltree[n * 2 + 1]/*.Len*/ = 8;\n n++;\n bl_count[8]++;\n }\n /* Codes 286 and 287 do not exist, but we must include them in the\n * tree construction to get a canonical Huffman tree (longest code\n * all ones)\n */\n gen_codes(static_ltree, L_CODES$1 + 1, bl_count);\n\n /* The static distance tree is trivial: */\n for (n = 0; n < D_CODES$1; n++) {\n static_dtree[n * 2 + 1]/*.Len*/ = 5;\n static_dtree[n * 2]/*.Code*/ = bi_reverse(n, 5);\n }\n\n // Now data ready and we can init static trees\n static_l_desc = new StaticTreeDesc(static_ltree, extra_lbits, LITERALS$1 + 1, L_CODES$1, MAX_BITS$1);\n static_d_desc = new StaticTreeDesc(static_dtree, extra_dbits, 0, D_CODES$1, MAX_BITS$1);\n static_bl_desc = new StaticTreeDesc(new Array(0), extra_blbits, 0, BL_CODES$1, MAX_BL_BITS);\n\n //static_init_done = true;\n};\n\n\n/* ===========================================================================\n * Initialize a new block.\n */\nconst init_block = (s) => {\n\n let n; /* iterates over tree elements */\n\n /* Initialize the trees. */\n for (n = 0; n < L_CODES$1; n++) { s.dyn_ltree[n * 2]/*.Freq*/ = 0; }\n for (n = 0; n < D_CODES$1; n++) { s.dyn_dtree[n * 2]/*.Freq*/ = 0; }\n for (n = 0; n < BL_CODES$1; n++) { s.bl_tree[n * 2]/*.Freq*/ = 0; }\n\n s.dyn_ltree[END_BLOCK * 2]/*.Freq*/ = 1;\n s.opt_len = s.static_len = 0;\n s.sym_next = s.matches = 0;\n};\n\n\n/* ===========================================================================\n * Flush the bit buffer and align the output on a byte boundary\n */\nconst bi_windup = (s) =>\n{\n if (s.bi_valid > 8) {\n put_short(s, s.bi_buf);\n } else if (s.bi_valid > 0) {\n //put_byte(s, (Byte)s->bi_buf);\n s.pending_buf[s.pending++] = s.bi_buf;\n }\n s.bi_buf = 0;\n s.bi_valid = 0;\n};\n\n/* ===========================================================================\n * Compares to subtrees, using the tree depth as tie breaker when\n * the subtrees have equal frequency. This minimizes the worst case length.\n */\nconst smaller = (tree, n, m, depth) => {\n\n const _n2 = n * 2;\n const _m2 = m * 2;\n return (tree[_n2]/*.Freq*/ < tree[_m2]/*.Freq*/ ||\n (tree[_n2]/*.Freq*/ === tree[_m2]/*.Freq*/ && depth[n] <= depth[m]));\n};\n\n/* ===========================================================================\n * Restore the heap property by moving down the tree starting at node k,\n * exchanging a node with the smallest of its two sons if necessary, stopping\n * when the heap property is re-established (each father smaller than its\n * two sons).\n */\nconst pqdownheap = (s, tree, k) => {\n// deflate_state *s;\n// ct_data *tree; /* the tree to restore */\n// int k; /* node to move down */\n\n const v = s.heap[k];\n let j = k << 1; /* left son of k */\n while (j <= s.heap_len) {\n /* Set j to the smallest of the two sons: */\n if (j < s.heap_len &&\n smaller(tree, s.heap[j + 1], s.heap[j], s.depth)) {\n j++;\n }\n /* Exit if v is smaller than both sons */\n if (smaller(tree, v, s.heap[j], s.depth)) { break; }\n\n /* Exchange v with the smallest son */\n s.heap[k] = s.heap[j];\n k = j;\n\n /* And continue down the tree, setting j to the left son of k */\n j <<= 1;\n }\n s.heap[k] = v;\n};\n\n\n// inlined manually\n// const SMALLEST = 1;\n\n/* ===========================================================================\n * Send the block data compressed using the given Huffman trees\n */\nconst compress_block = (s, ltree, dtree) => {\n// deflate_state *s;\n// const ct_data *ltree; /* literal tree */\n// const ct_data *dtree; /* distance tree */\n\n let dist; /* distance of matched string */\n let lc; /* match length or unmatched char (if dist == 0) */\n let sx = 0; /* running index in sym_buf */\n let code; /* the code to send */\n let extra; /* number of extra bits to send */\n\n if (s.sym_next !== 0) {\n do {\n dist = s.pending_buf[s.sym_buf + sx++] & 0xff;\n dist += (s.pending_buf[s.sym_buf + sx++] & 0xff) << 8;\n lc = s.pending_buf[s.sym_buf + sx++];\n if (dist === 0) {\n send_code(s, lc, ltree); /* send a literal byte */\n //Tracecv(isgraph(lc), (stderr,\" '%c' \", lc));\n } else {\n /* Here, lc is the match length - MIN_MATCH */\n code = _length_code[lc];\n send_code(s, code + LITERALS$1 + 1, ltree); /* send the length code */\n extra = extra_lbits[code];\n if (extra !== 0) {\n lc -= base_length[code];\n send_bits(s, lc, extra); /* send the extra length bits */\n }\n dist--; /* dist is now the match distance - 1 */\n code = d_code(dist);\n //Assert (code < D_CODES, \"bad d_code\");\n\n send_code(s, code, dtree); /* send the distance code */\n extra = extra_dbits[code];\n if (extra !== 0) {\n dist -= base_dist[code];\n send_bits(s, dist, extra); /* send the extra distance bits */\n }\n } /* literal or match pair ? */\n\n /* Check that the overlay between pending_buf and sym_buf is ok: */\n //Assert(s->pending < s->lit_bufsize + sx, \"pendingBuf overflow\");\n\n } while (sx < s.sym_next);\n }\n\n send_code(s, END_BLOCK, ltree);\n};\n\n\n/* ===========================================================================\n * Construct one Huffman tree and assigns the code bit strings and lengths.\n * Update the total bit length for the current block.\n * IN assertion: the field freq is set for all tree elements.\n * OUT assertions: the fields len and code are set to the optimal bit length\n * and corresponding code. The length opt_len is updated; static_len is\n * also updated if stree is not null. The field max_code is set.\n */\nconst build_tree = (s, desc) => {\n// deflate_state *s;\n// tree_desc *desc; /* the tree descriptor */\n\n const tree = desc.dyn_tree;\n const stree = desc.stat_desc.static_tree;\n const has_stree = desc.stat_desc.has_stree;\n const elems = desc.stat_desc.elems;\n let n, m; /* iterate over heap elements */\n let max_code = -1; /* largest code with non zero frequency */\n let node; /* new node being created */\n\n /* Construct the initial heap, with least frequent element in\n * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].\n * heap[0] is not used.\n */\n s.heap_len = 0;\n s.heap_max = HEAP_SIZE$1;\n\n for (n = 0; n < elems; n++) {\n if (tree[n * 2]/*.Freq*/ !== 0) {\n s.heap[++s.heap_len] = max_code = n;\n s.depth[n] = 0;\n\n } else {\n tree[n * 2 + 1]/*.Len*/ = 0;\n }\n }\n\n /* The pkzip format requires that at least one distance code exists,\n * and that at least one bit should be sent even if there is only one\n * possible code. So to avoid special checks later on we force at least\n * two codes of non zero frequency.\n */\n while (s.heap_len < 2) {\n node = s.heap[++s.heap_len] = (max_code < 2 ? ++max_code : 0);\n tree[node * 2]/*.Freq*/ = 1;\n s.depth[node] = 0;\n s.opt_len--;\n\n if (has_stree) {\n s.static_len -= stree[node * 2 + 1]/*.Len*/;\n }\n /* node is 0 or 1 so it does not have extra bits */\n }\n desc.max_code = max_code;\n\n /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,\n * establish sub-heaps of increasing lengths:\n */\n for (n = (s.heap_len >> 1/*int /2*/); n >= 1; n--) { pqdownheap(s, tree, n); }\n\n /* Construct the Huffman tree by repeatedly combining the least two\n * frequent nodes.\n */\n node = elems; /* next internal node of the tree */\n do {\n //pqremove(s, tree, n); /* n = node of least frequency */\n /*** pqremove ***/\n n = s.heap[1/*SMALLEST*/];\n s.heap[1/*SMALLEST*/] = s.heap[s.heap_len--];\n pqdownheap(s, tree, 1/*SMALLEST*/);\n /***/\n\n m = s.heap[1/*SMALLEST*/]; /* m = node of next least frequency */\n\n s.heap[--s.heap_max] = n; /* keep the nodes sorted by frequency */\n s.heap[--s.heap_max] = m;\n\n /* Create a new node father of n and m */\n tree[node * 2]/*.Freq*/ = tree[n * 2]/*.Freq*/ + tree[m * 2]/*.Freq*/;\n s.depth[node] = (s.depth[n] >= s.depth[m] ? s.depth[n] : s.depth[m]) + 1;\n tree[n * 2 + 1]/*.Dad*/ = tree[m * 2 + 1]/*.Dad*/ = node;\n\n /* and insert the new node in the heap */\n s.heap[1/*SMALLEST*/] = node++;\n pqdownheap(s, tree, 1/*SMALLEST*/);\n\n } while (s.heap_len >= 2);\n\n s.heap[--s.heap_max] = s.heap[1/*SMALLEST*/];\n\n /* At this point, the fields freq and dad are set. We can now\n * generate the bit lengths.\n */\n gen_bitlen(s, desc);\n\n /* The field len is now set, we can generate the bit codes */\n gen_codes(tree, max_code, s.bl_count);\n};\n\n\n/* ===========================================================================\n * Scan a literal or distance tree to determine the frequencies of the codes\n * in the bit length tree.\n */\nconst scan_tree = (s, tree, max_code) => {\n// deflate_state *s;\n// ct_data *tree; /* the tree to be scanned */\n// int max_code; /* and its largest code of non zero frequency */\n\n let n; /* iterates over all tree elements */\n let prevlen = -1; /* last emitted length */\n let curlen; /* length of current code */\n\n let nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */\n\n let count = 0; /* repeat count of the current code */\n let max_count = 7; /* max repeat count */\n let min_count = 4; /* min repeat count */\n\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n }\n tree[(max_code + 1) * 2 + 1]/*.Len*/ = 0xffff; /* guard */\n\n for (n = 0; n <= max_code; n++) {\n curlen = nextlen;\n nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;\n\n if (++count < max_count && curlen === nextlen) {\n continue;\n\n } else if (count < min_count) {\n s.bl_tree[curlen * 2]/*.Freq*/ += count;\n\n } else if (curlen !== 0) {\n\n if (curlen !== prevlen) { s.bl_tree[curlen * 2]/*.Freq*/++; }\n s.bl_tree[REP_3_6 * 2]/*.Freq*/++;\n\n } else if (count <= 10) {\n s.bl_tree[REPZ_3_10 * 2]/*.Freq*/++;\n\n } else {\n s.bl_tree[REPZ_11_138 * 2]/*.Freq*/++;\n }\n\n count = 0;\n prevlen = curlen;\n\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n\n } else if (curlen === nextlen) {\n max_count = 6;\n min_count = 3;\n\n } else {\n max_count = 7;\n min_count = 4;\n }\n }\n};\n\n\n/* ===========================================================================\n * Send a literal or distance tree in compressed form, using the codes in\n * bl_tree.\n */\nconst send_tree = (s, tree, max_code) => {\n// deflate_state *s;\n// ct_data *tree; /* the tree to be scanned */\n// int max_code; /* and its largest code of non zero frequency */\n\n let n; /* iterates over all tree elements */\n let prevlen = -1; /* last emitted length */\n let curlen; /* length of current code */\n\n let nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */\n\n let count = 0; /* repeat count of the current code */\n let max_count = 7; /* max repeat count */\n let min_count = 4; /* min repeat count */\n\n /* tree[max_code+1].Len = -1; */ /* guard already set */\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n }\n\n for (n = 0; n <= max_code; n++) {\n curlen = nextlen;\n nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;\n\n if (++count < max_count && curlen === nextlen) {\n continue;\n\n } else if (count < min_count) {\n do { send_code(s, curlen, s.bl_tree); } while (--count !== 0);\n\n } else if (curlen !== 0) {\n if (curlen !== prevlen) {\n send_code(s, curlen, s.bl_tree);\n count--;\n }\n //Assert(count >= 3 && count <= 6, \" 3_6?\");\n send_code(s, REP_3_6, s.bl_tree);\n send_bits(s, count - 3, 2);\n\n } else if (count <= 10) {\n send_code(s, REPZ_3_10, s.bl_tree);\n send_bits(s, count - 3, 3);\n\n } else {\n send_code(s, REPZ_11_138, s.bl_tree);\n send_bits(s, count - 11, 7);\n }\n\n count = 0;\n prevlen = curlen;\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n\n } else if (curlen === nextlen) {\n max_count = 6;\n min_count = 3;\n\n } else {\n max_count = 7;\n min_count = 4;\n }\n }\n};\n\n\n/* ===========================================================================\n * Construct the Huffman tree for the bit lengths and return the index in\n * bl_order of the last bit length code to send.\n */\nconst build_bl_tree = (s) => {\n\n let max_blindex; /* index of last bit length code of non zero freq */\n\n /* Determine the bit length frequencies for literal and distance trees */\n scan_tree(s, s.dyn_ltree, s.l_desc.max_code);\n scan_tree(s, s.dyn_dtree, s.d_desc.max_code);\n\n /* Build the bit length tree: */\n build_tree(s, s.bl_desc);\n /* opt_len now includes the length of the tree representations, except\n * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.\n */\n\n /* Determine the number of bit length codes to send. The pkzip format\n * requires that at least 4 bit length codes be sent. (appnote.txt says\n * 3 but the actual value used is 4.)\n */\n for (max_blindex = BL_CODES$1 - 1; max_blindex >= 3; max_blindex--) {\n if (s.bl_tree[bl_order[max_blindex] * 2 + 1]/*.Len*/ !== 0) {\n break;\n }\n }\n /* Update opt_len to include the bit length tree and counts */\n s.opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;\n //Tracev((stderr, \"\\ndyn trees: dyn %ld, stat %ld\",\n // s->opt_len, s->static_len));\n\n return max_blindex;\n};\n\n\n/* ===========================================================================\n * Send the header for a block using dynamic Huffman trees: the counts, the\n * lengths of the bit length codes, the literal tree and the distance tree.\n * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.\n */\nconst send_all_trees = (s, lcodes, dcodes, blcodes) => {\n// deflate_state *s;\n// int lcodes, dcodes, blcodes; /* number of codes for each tree */\n\n let rank; /* index in bl_order */\n\n //Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, \"not enough codes\");\n //Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,\n // \"too many codes\");\n //Tracev((stderr, \"\\nbl counts: \"));\n send_bits(s, lcodes - 257, 5); /* not +255 as stated in appnote.txt */\n send_bits(s, dcodes - 1, 5);\n send_bits(s, blcodes - 4, 4); /* not -3 as stated in appnote.txt */\n for (rank = 0; rank < blcodes; rank++) {\n //Tracev((stderr, \"\\nbl code %2d \", bl_order[rank]));\n send_bits(s, s.bl_tree[bl_order[rank] * 2 + 1]/*.Len*/, 3);\n }\n //Tracev((stderr, \"\\nbl tree: sent %ld\", s->bits_sent));\n\n send_tree(s, s.dyn_ltree, lcodes - 1); /* literal tree */\n //Tracev((stderr, \"\\nlit tree: sent %ld\", s->bits_sent));\n\n send_tree(s, s.dyn_dtree, dcodes - 1); /* distance tree */\n //Tracev((stderr, \"\\ndist tree: sent %ld\", s->bits_sent));\n};\n\n\n/* ===========================================================================\n * Check if the data type is TEXT or BINARY, using the following algorithm:\n * - TEXT if the two conditions below are satisfied:\n * a) There are no non-portable control characters belonging to the\n * \"block list\" (0..6, 14..25, 28..31).\n * b) There is at least one printable character belonging to the\n * \"allow list\" (9 {TAB}, 10 {LF}, 13 {CR}, 32..255).\n * - BINARY otherwise.\n * - The following partially-portable control characters form a\n * \"gray list\" that is ignored in this detection algorithm:\n * (7 {BEL}, 8 {BS}, 11 {VT}, 12 {FF}, 26 {SUB}, 27 {ESC}).\n * IN assertion: the fields Freq of dyn_ltree are set.\n */\nconst detect_data_type = (s) => {\n /* block_mask is the bit mask of block-listed bytes\n * set bits 0..6, 14..25, and 28..31\n * 0xf3ffc07f = binary 11110011111111111100000001111111\n */\n let block_mask = 0xf3ffc07f;\n let n;\n\n /* Check for non-textual (\"block-listed\") bytes. */\n for (n = 0; n <= 31; n++, block_mask >>>= 1) {\n if ((block_mask & 1) && (s.dyn_ltree[n * 2]/*.Freq*/ !== 0)) {\n return Z_BINARY;\n }\n }\n\n /* Check for textual (\"allow-listed\") bytes. */\n if (s.dyn_ltree[9 * 2]/*.Freq*/ !== 0 || s.dyn_ltree[10 * 2]/*.Freq*/ !== 0 ||\n s.dyn_ltree[13 * 2]/*.Freq*/ !== 0) {\n return Z_TEXT;\n }\n for (n = 32; n < LITERALS$1; n++) {\n if (s.dyn_ltree[n * 2]/*.Freq*/ !== 0) {\n return Z_TEXT;\n }\n }\n\n /* There are no \"block-listed\" or \"allow-listed\" bytes:\n * this stream either is empty or has tolerated (\"gray-listed\") bytes only.\n */\n return Z_BINARY;\n};\n\n\nlet static_init_done = false;\n\n/* ===========================================================================\n * Initialize the tree data structures for a new zlib stream.\n */\nconst _tr_init$1 = (s) =>\n{\n\n if (!static_init_done) {\n tr_static_init();\n static_init_done = true;\n }\n\n s.l_desc = new TreeDesc(s.dyn_ltree, static_l_desc);\n s.d_desc = new TreeDesc(s.dyn_dtree, static_d_desc);\n s.bl_desc = new TreeDesc(s.bl_tree, static_bl_desc);\n\n s.bi_buf = 0;\n s.bi_valid = 0;\n\n /* Initialize the first block of the first file: */\n init_block(s);\n};\n\n\n/* ===========================================================================\n * Send a stored block\n */\nconst _tr_stored_block$1 = (s, buf, stored_len, last) => {\n//DeflateState *s;\n//charf *buf; /* input block */\n//ulg stored_len; /* length of input block */\n//int last; /* one if this is the last block for a file */\n\n send_bits(s, (STORED_BLOCK << 1) + (last ? 1 : 0), 3); /* send block type */\n bi_windup(s); /* align on byte boundary */\n put_short(s, stored_len);\n put_short(s, ~stored_len);\n if (stored_len) {\n s.pending_buf.set(s.window.subarray(buf, buf + stored_len), s.pending);\n }\n s.pending += stored_len;\n};\n\n\n/* ===========================================================================\n * Send one empty static block to give enough lookahead for inflate.\n * This takes 10 bits, of which 7 may remain in the bit buffer.\n */\nconst _tr_align$1 = (s) => {\n send_bits(s, STATIC_TREES << 1, 3);\n send_code(s, END_BLOCK, static_ltree);\n bi_flush(s);\n};\n\n\n/* ===========================================================================\n * Determine the best encoding for the current block: dynamic trees, static\n * trees or store, and write out the encoded block.\n */\nconst _tr_flush_block$1 = (s, buf, stored_len, last) => {\n//DeflateState *s;\n//charf *buf; /* input block, or NULL if too old */\n//ulg stored_len; /* length of input block */\n//int last; /* one if this is the last block for a file */\n\n let opt_lenb, static_lenb; /* opt_len and static_len in bytes */\n let max_blindex = 0; /* index of last bit length code of non zero freq */\n\n /* Build the Huffman trees unless a stored block is forced */\n if (s.level > 0) {\n\n /* Check if the file is binary or text */\n if (s.strm.data_type === Z_UNKNOWN$1) {\n s.strm.data_type = detect_data_type(s);\n }\n\n /* Construct the literal and distance trees */\n build_tree(s, s.l_desc);\n // Tracev((stderr, \"\\nlit data: dyn %ld, stat %ld\", s->opt_len,\n // s->static_len));\n\n build_tree(s, s.d_desc);\n // Tracev((stderr, \"\\ndist data: dyn %ld, stat %ld\", s->opt_len,\n // s->static_len));\n /* At this point, opt_len and static_len are the total bit lengths of\n * the compressed block data, excluding the tree representations.\n */\n\n /* Build the bit length tree for the above two trees, and get the index\n * in bl_order of the last bit length code to send.\n */\n max_blindex = build_bl_tree(s);\n\n /* Determine the best encoding. Compute the block lengths in bytes. */\n opt_lenb = (s.opt_len + 3 + 7) >>> 3;\n static_lenb = (s.static_len + 3 + 7) >>> 3;\n\n // Tracev((stderr, \"\\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u \",\n // opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,\n // s->sym_next / 3));\n\n if (static_lenb <= opt_lenb) { opt_lenb = static_lenb; }\n\n } else {\n // Assert(buf != (char*)0, \"lost buf\");\n opt_lenb = static_lenb = stored_len + 5; /* force a stored block */\n }\n\n if ((stored_len + 4 <= opt_lenb) && (buf !== -1)) {\n /* 4: two words for the lengths */\n\n /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.\n * Otherwise we can't have processed more than WSIZE input bytes since\n * the last block flush, because compression would have been\n * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to\n * transform a block into a stored block.\n */\n _tr_stored_block$1(s, buf, stored_len, last);\n\n } else if (s.strategy === Z_FIXED$1 || static_lenb === opt_lenb) {\n\n send_bits(s, (STATIC_TREES << 1) + (last ? 1 : 0), 3);\n compress_block(s, static_ltree, static_dtree);\n\n } else {\n send_bits(s, (DYN_TREES << 1) + (last ? 1 : 0), 3);\n send_all_trees(s, s.l_desc.max_code + 1, s.d_desc.max_code + 1, max_blindex + 1);\n compress_block(s, s.dyn_ltree, s.dyn_dtree);\n }\n // Assert (s->compressed_len == s->bits_sent, \"bad compressed size\");\n /* The above check is made mod 2^32, for files larger than 512 MB\n * and uLong implemented on 32 bits.\n */\n init_block(s);\n\n if (last) {\n bi_windup(s);\n }\n // Tracev((stderr,\"\\ncomprlen %lu(%lu) \", s->compressed_len>>3,\n // s->compressed_len-7*last));\n};\n\n/* ===========================================================================\n * Save the match info and tally the frequency counts. Return true if\n * the current block must be flushed.\n */\nconst _tr_tally$1 = (s, dist, lc) => {\n// deflate_state *s;\n// unsigned dist; /* distance of matched string */\n// unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */\n\n s.pending_buf[s.sym_buf + s.sym_next++] = dist;\n s.pending_buf[s.sym_buf + s.sym_next++] = dist >> 8;\n s.pending_buf[s.sym_buf + s.sym_next++] = lc;\n if (dist === 0) {\n /* lc is the unmatched char */\n s.dyn_ltree[lc * 2]/*.Freq*/++;\n } else {\n s.matches++;\n /* Here, lc is the match length - MIN_MATCH */\n dist--; /* dist = match distance - 1 */\n //Assert((ush)dist < (ush)MAX_DIST(s) &&\n // (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&\n // (ush)d_code(dist) < (ush)D_CODES, \"_tr_tally: bad match\");\n\n s.dyn_ltree[(_length_code[lc] + LITERALS$1 + 1) * 2]/*.Freq*/++;\n s.dyn_dtree[d_code(dist) * 2]/*.Freq*/++;\n }\n\n return (s.sym_next === s.sym_end);\n};\n\nvar _tr_init_1 = _tr_init$1;\nvar _tr_stored_block_1 = _tr_stored_block$1;\nvar _tr_flush_block_1 = _tr_flush_block$1;\nvar _tr_tally_1 = _tr_tally$1;\nvar _tr_align_1 = _tr_align$1;\n\nvar trees = {\n\t_tr_init: _tr_init_1,\n\t_tr_stored_block: _tr_stored_block_1,\n\t_tr_flush_block: _tr_flush_block_1,\n\t_tr_tally: _tr_tally_1,\n\t_tr_align: _tr_align_1\n};\n\n// Note: adler32 takes 12% for level 0 and 2% for level 6.\n// It isn't worth it to make additional optimizations as in original.\n// Small size is preferable.\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nconst adler32 = (adler, buf, len, pos) => {\n let s1 = (adler & 0xffff) |0,\n s2 = ((adler >>> 16) & 0xffff) |0,\n n = 0;\n\n while (len !== 0) {\n // Set limit ~ twice less than 5552, to keep\n // s2 in 31-bits, because we force signed ints.\n // in other case %= will fail.\n n = len > 2000 ? 2000 : len;\n len -= n;\n\n do {\n s1 = (s1 + buf[pos++]) |0;\n s2 = (s2 + s1) |0;\n } while (--n);\n\n s1 %= 65521;\n s2 %= 65521;\n }\n\n return (s1 | (s2 << 16)) |0;\n};\n\n\nvar adler32_1 = adler32;\n\n// Note: we can't get significant speed boost here.\n// So write code to minimize size - no pregenerated tables\n// and array tools dependencies.\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n// Use ordinary array, since untyped makes no boost here\nconst makeTable = () => {\n let c, table = [];\n\n for (var n = 0; n < 256; n++) {\n c = n;\n for (var k = 0; k < 8; k++) {\n c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));\n }\n table[n] = c;\n }\n\n return table;\n};\n\n// Create table on load. Just 255 signed longs. Not a problem.\nconst crcTable = new Uint32Array(makeTable());\n\n\nconst crc32 = (crc, buf, len, pos) => {\n const t = crcTable;\n const end = pos + len;\n\n crc ^= -1;\n\n for (let i = pos; i < end; i++) {\n crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];\n }\n\n return (crc ^ (-1)); // >>> 0;\n};\n\n\nvar crc32_1 = crc32;\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nvar messages = {\n 2: 'need dictionary', /* Z_NEED_DICT 2 */\n 1: 'stream end', /* Z_STREAM_END 1 */\n 0: '', /* Z_OK 0 */\n '-1': 'file error', /* Z_ERRNO (-1) */\n '-2': 'stream error', /* Z_STREAM_ERROR (-2) */\n '-3': 'data error', /* Z_DATA_ERROR (-3) */\n '-4': 'insufficient memory', /* Z_MEM_ERROR (-4) */\n '-5': 'buffer error', /* Z_BUF_ERROR (-5) */\n '-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nvar constants$2 = {\n\n /* Allowed flush values; see deflate() and inflate() below for details */\n Z_NO_FLUSH: 0,\n Z_PARTIAL_FLUSH: 1,\n Z_SYNC_FLUSH: 2,\n Z_FULL_FLUSH: 3,\n Z_FINISH: 4,\n Z_BLOCK: 5,\n Z_TREES: 6,\n\n /* Return codes for the compression/decompression functions. Negative values\n * are errors, positive values are used for special but normal events.\n */\n Z_OK: 0,\n Z_STREAM_END: 1,\n Z_NEED_DICT: 2,\n Z_ERRNO: -1,\n Z_STREAM_ERROR: -2,\n Z_DATA_ERROR: -3,\n Z_MEM_ERROR: -4,\n Z_BUF_ERROR: -5,\n //Z_VERSION_ERROR: -6,\n\n /* compression levels */\n Z_NO_COMPRESSION: 0,\n Z_BEST_SPEED: 1,\n Z_BEST_COMPRESSION: 9,\n Z_DEFAULT_COMPRESSION: -1,\n\n\n Z_FILTERED: 1,\n Z_HUFFMAN_ONLY: 2,\n Z_RLE: 3,\n Z_FIXED: 4,\n Z_DEFAULT_STRATEGY: 0,\n\n /* Possible values of the data_type field (though see inflate()) */\n Z_BINARY: 0,\n Z_TEXT: 1,\n //Z_ASCII: 1, // = Z_TEXT (deprecated)\n Z_UNKNOWN: 2,\n\n /* The deflate compression method */\n Z_DEFLATED: 8\n //Z_NULL: null // Use -1 or null inline, depending on var type\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nconst { _tr_init, _tr_stored_block, _tr_flush_block, _tr_tally, _tr_align } = trees;\n\n\n\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_NO_FLUSH: Z_NO_FLUSH$2, Z_PARTIAL_FLUSH, Z_FULL_FLUSH: Z_FULL_FLUSH$1, Z_FINISH: Z_FINISH$3, Z_BLOCK: Z_BLOCK$1,\n Z_OK: Z_OK$3, Z_STREAM_END: Z_STREAM_END$3, Z_STREAM_ERROR: Z_STREAM_ERROR$2, Z_DATA_ERROR: Z_DATA_ERROR$2, Z_BUF_ERROR: Z_BUF_ERROR$1,\n Z_DEFAULT_COMPRESSION: Z_DEFAULT_COMPRESSION$1,\n Z_FILTERED, Z_HUFFMAN_ONLY, Z_RLE, Z_FIXED, Z_DEFAULT_STRATEGY: Z_DEFAULT_STRATEGY$1,\n Z_UNKNOWN,\n Z_DEFLATED: Z_DEFLATED$2\n} = constants$2;\n\n/*============================================================================*/\n\n\nconst MAX_MEM_LEVEL = 9;\n/* Maximum value for memLevel in deflateInit2 */\nconst MAX_WBITS$1 = 15;\n/* 32K LZ77 window */\nconst DEF_MEM_LEVEL = 8;\n\n\nconst LENGTH_CODES = 29;\n/* number of length codes, not counting the special END_BLOCK code */\nconst LITERALS = 256;\n/* number of literal bytes 0..255 */\nconst L_CODES = LITERALS + 1 + LENGTH_CODES;\n/* number of Literal or Length codes, including the END_BLOCK code */\nconst D_CODES = 30;\n/* number of distance codes */\nconst BL_CODES = 19;\n/* number of codes used to transfer the bit lengths */\nconst HEAP_SIZE = 2 * L_CODES + 1;\n/* maximum heap size */\nconst MAX_BITS = 15;\n/* All codes must not exceed MAX_BITS bits */\n\nconst MIN_MATCH = 3;\nconst MAX_MATCH = 258;\nconst MIN_LOOKAHEAD = (MAX_MATCH + MIN_MATCH + 1);\n\nconst PRESET_DICT = 0x20;\n\nconst INIT_STATE = 42; /* zlib header -> BUSY_STATE */\n//#ifdef GZIP\nconst GZIP_STATE = 57; /* gzip header -> BUSY_STATE | EXTRA_STATE */\n//#endif\nconst EXTRA_STATE = 69; /* gzip extra block -> NAME_STATE */\nconst NAME_STATE = 73; /* gzip file name -> COMMENT_STATE */\nconst COMMENT_STATE = 91; /* gzip comment -> HCRC_STATE */\nconst HCRC_STATE = 103; /* gzip header CRC -> BUSY_STATE */\nconst BUSY_STATE = 113; /* deflate -> FINISH_STATE */\nconst FINISH_STATE = 666; /* stream complete */\n\nconst BS_NEED_MORE = 1; /* block not completed, need more input or more output */\nconst BS_BLOCK_DONE = 2; /* block flush performed */\nconst BS_FINISH_STARTED = 3; /* finish started, need only more output at next deflate */\nconst BS_FINISH_DONE = 4; /* finish done, accept no more input or output */\n\nconst OS_CODE = 0x03; // Unix :) . Don't detect, use this default.\n\nconst err = (strm, errorCode) => {\n strm.msg = messages[errorCode];\n return errorCode;\n};\n\nconst rank = (f) => {\n return ((f) * 2) - ((f) > 4 ? 9 : 0);\n};\n\nconst zero = (buf) => {\n let len = buf.length; while (--len >= 0) { buf[len] = 0; }\n};\n\n/* ===========================================================================\n * Slide the hash table when sliding the window down (could be avoided with 32\n * bit values at the expense of memory usage). We slide even when level == 0 to\n * keep the hash table consistent if we switch back to level > 0 later.\n */\nconst slide_hash = (s) => {\n let n, m;\n let p;\n let wsize = s.w_size;\n\n n = s.hash_size;\n p = n;\n do {\n m = s.head[--p];\n s.head[p] = (m >= wsize ? m - wsize : 0);\n } while (--n);\n n = wsize;\n//#ifndef FASTEST\n p = n;\n do {\n m = s.prev[--p];\n s.prev[p] = (m >= wsize ? m - wsize : 0);\n /* If n is not on any hash chain, prev[n] is garbage but\n * its value will never be used.\n */\n } while (--n);\n//#endif\n};\n\n/* eslint-disable new-cap */\nlet HASH_ZLIB = (s, prev, data) => ((prev << s.hash_shift) ^ data) & s.hash_mask;\n// This hash causes less collisions, https://github.com/nodeca/pako/issues/135\n// But breaks binary compatibility\n//let HASH_FAST = (s, prev, data) => ((prev << 8) + (prev >> 8) + (data << 4)) & s.hash_mask;\nlet HASH = HASH_ZLIB;\n\n\n/* =========================================================================\n * Flush as much pending output as possible. All deflate() output, except for\n * some deflate_stored() output, goes through this function so some\n * applications may wish to modify it to avoid allocating a large\n * strm->next_out buffer and copying into it. (See also read_buf()).\n */\nconst flush_pending = (strm) => {\n const s = strm.state;\n\n //_tr_flush_bits(s);\n let len = s.pending;\n if (len > strm.avail_out) {\n len = strm.avail_out;\n }\n if (len === 0) { return; }\n\n strm.output.set(s.pending_buf.subarray(s.pending_out, s.pending_out + len), strm.next_out);\n strm.next_out += len;\n s.pending_out += len;\n strm.total_out += len;\n strm.avail_out -= len;\n s.pending -= len;\n if (s.pending === 0) {\n s.pending_out = 0;\n }\n};\n\n\nconst flush_block_only = (s, last) => {\n _tr_flush_block(s, (s.block_start >= 0 ? s.block_start : -1), s.strstart - s.block_start, last);\n s.block_start = s.strstart;\n flush_pending(s.strm);\n};\n\n\nconst put_byte = (s, b) => {\n s.pending_buf[s.pending++] = b;\n};\n\n\n/* =========================================================================\n * Put a short in the pending buffer. The 16-bit value is put in MSB order.\n * IN assertion: the stream state is correct and there is enough room in\n * pending_buf.\n */\nconst putShortMSB = (s, b) => {\n\n // put_byte(s, (Byte)(b >> 8));\n// put_byte(s, (Byte)(b & 0xff));\n s.pending_buf[s.pending++] = (b >>> 8) & 0xff;\n s.pending_buf[s.pending++] = b & 0xff;\n};\n\n\n/* ===========================================================================\n * Read a new buffer from the current input stream, update the adler32\n * and total number of bytes read. All deflate() input goes through\n * this function so some applications may wish to modify it to avoid\n * allocating a large strm->input buffer and copying from it.\n * (See also flush_pending()).\n */\nconst read_buf = (strm, buf, start, size) => {\n\n let len = strm.avail_in;\n\n if (len > size) { len = size; }\n if (len === 0) { return 0; }\n\n strm.avail_in -= len;\n\n // zmemcpy(buf, strm->next_in, len);\n buf.set(strm.input.subarray(strm.next_in, strm.next_in + len), start);\n if (strm.state.wrap === 1) {\n strm.adler = adler32_1(strm.adler, buf, len, start);\n }\n\n else if (strm.state.wrap === 2) {\n strm.adler = crc32_1(strm.adler, buf, len, start);\n }\n\n strm.next_in += len;\n strm.total_in += len;\n\n return len;\n};\n\n\n/* ===========================================================================\n * Set match_start to the longest match starting at the given string and\n * return its length. Matches shorter or equal to prev_length are discarded,\n * in which case the result is equal to prev_length and match_start is\n * garbage.\n * IN assertions: cur_match is the head of the hash chain for the current\n * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1\n * OUT assertion: the match length is not greater than s->lookahead.\n */\nconst longest_match = (s, cur_match) => {\n\n let chain_length = s.max_chain_length; /* max hash chain length */\n let scan = s.strstart; /* current string */\n let match; /* matched string */\n let len; /* length of current match */\n let best_len = s.prev_length; /* best match length so far */\n let nice_match = s.nice_match; /* stop if match long enough */\n const limit = (s.strstart > (s.w_size - MIN_LOOKAHEAD)) ?\n s.strstart - (s.w_size - MIN_LOOKAHEAD) : 0/*NIL*/;\n\n const _win = s.window; // shortcut\n\n const wmask = s.w_mask;\n const prev = s.prev;\n\n /* Stop when cur_match becomes <= limit. To simplify the code,\n * we prevent matches with the string of window index 0.\n */\n\n const strend = s.strstart + MAX_MATCH;\n let scan_end1 = _win[scan + best_len - 1];\n let scan_end = _win[scan + best_len];\n\n /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.\n * It is easy to get rid of this optimization if necessary.\n */\n // Assert(s->hash_bits >= 8 && MAX_MATCH == 258, \"Code too clever\");\n\n /* Do not waste too much time if we already have a good match: */\n if (s.prev_length >= s.good_match) {\n chain_length >>= 2;\n }\n /* Do not look for matches beyond the end of the input. This is necessary\n * to make deflate deterministic.\n */\n if (nice_match > s.lookahead) { nice_match = s.lookahead; }\n\n // Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, \"need lookahead\");\n\n do {\n // Assert(cur_match < s->strstart, \"no future\");\n match = cur_match;\n\n /* Skip to next match if the match length cannot increase\n * or if the match length is less than 2. Note that the checks below\n * for insufficient lookahead only occur occasionally for performance\n * reasons. Therefore uninitialized memory will be accessed, and\n * conditional jumps will be made that depend on those values.\n * However the length of the match is limited to the lookahead, so\n * the output of deflate is not affected by the uninitialized values.\n */\n\n if (_win[match + best_len] !== scan_end ||\n _win[match + best_len - 1] !== scan_end1 ||\n _win[match] !== _win[scan] ||\n _win[++match] !== _win[scan + 1]) {\n continue;\n }\n\n /* The check at best_len-1 can be removed because it will be made\n * again later. (This heuristic is not always a win.)\n * It is not necessary to compare scan[2] and match[2] since they\n * are always equal when the other bytes match, given that\n * the hash keys are equal and that HASH_BITS >= 8.\n */\n scan += 2;\n match++;\n // Assert(*scan == *match, \"match[2]?\");\n\n /* We check for insufficient lookahead only every 8th comparison;\n * the 256th check will be made at strstart+258.\n */\n do {\n /*jshint noempty:false*/\n } while (_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n scan < strend);\n\n // Assert(scan <= s->window+(unsigned)(s->window_size-1), \"wild scan\");\n\n len = MAX_MATCH - (strend - scan);\n scan = strend - MAX_MATCH;\n\n if (len > best_len) {\n s.match_start = cur_match;\n best_len = len;\n if (len >= nice_match) {\n break;\n }\n scan_end1 = _win[scan + best_len - 1];\n scan_end = _win[scan + best_len];\n }\n } while ((cur_match = prev[cur_match & wmask]) > limit && --chain_length !== 0);\n\n if (best_len <= s.lookahead) {\n return best_len;\n }\n return s.lookahead;\n};\n\n\n/* ===========================================================================\n * Fill the window when the lookahead becomes insufficient.\n * Updates strstart and lookahead.\n *\n * IN assertion: lookahead < MIN_LOOKAHEAD\n * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD\n * At least one byte has been read, or avail_in == 0; reads are\n * performed for at least two bytes (required for the zip translate_eol\n * option -- not supported here).\n */\nconst fill_window = (s) => {\n\n const _w_size = s.w_size;\n let n, more, str;\n\n //Assert(s->lookahead < MIN_LOOKAHEAD, \"already enough lookahead\");\n\n do {\n more = s.window_size - s.lookahead - s.strstart;\n\n // JS ints have 32 bit, block below not needed\n /* Deal with !@#$% 64K limit: */\n //if (sizeof(int) <= 2) {\n // if (more == 0 && s->strstart == 0 && s->lookahead == 0) {\n // more = wsize;\n //\n // } else if (more == (unsigned)(-1)) {\n // /* Very unlikely, but possible on 16 bit machine if\n // * strstart == 0 && lookahead == 1 (input done a byte at time)\n // */\n // more--;\n // }\n //}\n\n\n /* If the window is almost full and there is insufficient lookahead,\n * move the upper half to the lower one to make room in the upper half.\n */\n if (s.strstart >= _w_size + (_w_size - MIN_LOOKAHEAD)) {\n\n s.window.set(s.window.subarray(_w_size, _w_size + _w_size - more), 0);\n s.match_start -= _w_size;\n s.strstart -= _w_size;\n /* we now have strstart >= MAX_DIST */\n s.block_start -= _w_size;\n if (s.insert > s.strstart) {\n s.insert = s.strstart;\n }\n slide_hash(s);\n more += _w_size;\n }\n if (s.strm.avail_in === 0) {\n break;\n }\n\n /* If there was no sliding:\n * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&\n * more == window_size - lookahead - strstart\n * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)\n * => more >= window_size - 2*WSIZE + 2\n * In the BIG_MEM or MMAP case (not yet supported),\n * window_size == input_size + MIN_LOOKAHEAD &&\n * strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.\n * Otherwise, window_size == 2*WSIZE so more >= 2.\n * If there was sliding, more >= WSIZE. So in all cases, more >= 2.\n */\n //Assert(more >= 2, \"more < 2\");\n n = read_buf(s.strm, s.window, s.strstart + s.lookahead, more);\n s.lookahead += n;\n\n /* Initialize the hash value now that we have some input: */\n if (s.lookahead + s.insert >= MIN_MATCH) {\n str = s.strstart - s.insert;\n s.ins_h = s.window[str];\n\n /* UPDATE_HASH(s, s->ins_h, s->window[str + 1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[str + 1]);\n//#if MIN_MATCH != 3\n// Call update_hash() MIN_MATCH-3 more times\n//#endif\n while (s.insert) {\n /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[str + MIN_MATCH - 1]);\n\n s.prev[str & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = str;\n str++;\n s.insert--;\n if (s.lookahead + s.insert < MIN_MATCH) {\n break;\n }\n }\n }\n /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,\n * but this is not important since only literal bytes will be emitted.\n */\n\n } while (s.lookahead < MIN_LOOKAHEAD && s.strm.avail_in !== 0);\n\n /* If the WIN_INIT bytes after the end of the current data have never been\n * written, then zero those bytes in order to avoid memory check reports of\n * the use of uninitialized (or uninitialised as Julian writes) bytes by\n * the longest match routines. Update the high water mark for the next\n * time through here. WIN_INIT is set to MAX_MATCH since the longest match\n * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.\n */\n// if (s.high_water < s.window_size) {\n// const curr = s.strstart + s.lookahead;\n// let init = 0;\n//\n// if (s.high_water < curr) {\n// /* Previous high water mark below current data -- zero WIN_INIT\n// * bytes or up to end of window, whichever is less.\n// */\n// init = s.window_size - curr;\n// if (init > WIN_INIT)\n// init = WIN_INIT;\n// zmemzero(s->window + curr, (unsigned)init);\n// s->high_water = curr + init;\n// }\n// else if (s->high_water < (ulg)curr + WIN_INIT) {\n// /* High water mark at or above current data, but below current data\n// * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up\n// * to end of window, whichever is less.\n// */\n// init = (ulg)curr + WIN_INIT - s->high_water;\n// if (init > s->window_size - s->high_water)\n// init = s->window_size - s->high_water;\n// zmemzero(s->window + s->high_water, (unsigned)init);\n// s->high_water += init;\n// }\n// }\n//\n// Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,\n// \"not enough room for search\");\n};\n\n/* ===========================================================================\n * Copy without compression as much as possible from the input stream, return\n * the current block state.\n *\n * In case deflateParams() is used to later switch to a non-zero compression\n * level, s->matches (otherwise unused when storing) keeps track of the number\n * of hash table slides to perform. If s->matches is 1, then one hash table\n * slide will be done when switching. If s->matches is 2, the maximum value\n * allowed here, then the hash table will be cleared, since two or more slides\n * is the same as a clear.\n *\n * deflate_stored() is written to minimize the number of times an input byte is\n * copied. It is most efficient with large input and output buffers, which\n * maximizes the opportunites to have a single copy from next_in to next_out.\n */\nconst deflate_stored = (s, flush) => {\n\n /* Smallest worthy block size when not flushing or finishing. By default\n * this is 32K. This can be as small as 507 bytes for memLevel == 1. For\n * large input and output buffers, the stored block size will be larger.\n */\n let min_block = s.pending_buf_size - 5 > s.w_size ? s.w_size : s.pending_buf_size - 5;\n\n /* Copy as many min_block or larger stored blocks directly to next_out as\n * possible. If flushing, copy the remaining available input to next_out as\n * stored blocks, if there is enough space.\n */\n let len, left, have, last = 0;\n let used = s.strm.avail_in;\n do {\n /* Set len to the maximum size block that we can copy directly with the\n * available input data and output space. Set left to how much of that\n * would be copied from what's left in the window.\n */\n len = 65535/* MAX_STORED */; /* maximum deflate stored block length */\n have = (s.bi_valid + 42) >> 3; /* number of header bytes */\n if (s.strm.avail_out < have) { /* need room for header */\n break;\n }\n /* maximum stored block length that will fit in avail_out: */\n have = s.strm.avail_out - have;\n left = s.strstart - s.block_start; /* bytes left in window */\n if (len > left + s.strm.avail_in) {\n len = left + s.strm.avail_in; /* limit len to the input */\n }\n if (len > have) {\n len = have; /* limit len to the output */\n }\n\n /* If the stored block would be less than min_block in length, or if\n * unable to copy all of the available input when flushing, then try\n * copying to the window and the pending buffer instead. Also don't\n * write an empty block when flushing -- deflate() does that.\n */\n if (len < min_block && ((len === 0 && flush !== Z_FINISH$3) ||\n flush === Z_NO_FLUSH$2 ||\n len !== left + s.strm.avail_in)) {\n break;\n }\n\n /* Make a dummy stored block in pending to get the header bytes,\n * including any pending bits. This also updates the debugging counts.\n */\n last = flush === Z_FINISH$3 && len === left + s.strm.avail_in ? 1 : 0;\n _tr_stored_block(s, 0, 0, last);\n\n /* Replace the lengths in the dummy stored block with len. */\n s.pending_buf[s.pending - 4] = len;\n s.pending_buf[s.pending - 3] = len >> 8;\n s.pending_buf[s.pending - 2] = ~len;\n s.pending_buf[s.pending - 1] = ~len >> 8;\n\n /* Write the stored block header bytes. */\n flush_pending(s.strm);\n\n//#ifdef ZLIB_DEBUG\n// /* Update debugging counts for the data about to be copied. */\n// s->compressed_len += len << 3;\n// s->bits_sent += len << 3;\n//#endif\n\n /* Copy uncompressed bytes from the window to next_out. */\n if (left) {\n if (left > len) {\n left = len;\n }\n //zmemcpy(s->strm->next_out, s->window + s->block_start, left);\n s.strm.output.set(s.window.subarray(s.block_start, s.block_start + left), s.strm.next_out);\n s.strm.next_out += left;\n s.strm.avail_out -= left;\n s.strm.total_out += left;\n s.block_start += left;\n len -= left;\n }\n\n /* Copy uncompressed bytes directly from next_in to next_out, updating\n * the check value.\n */\n if (len) {\n read_buf(s.strm, s.strm.output, s.strm.next_out, len);\n s.strm.next_out += len;\n s.strm.avail_out -= len;\n s.strm.total_out += len;\n }\n } while (last === 0);\n\n /* Update the sliding window with the last s->w_size bytes of the copied\n * data, or append all of the copied data to the existing window if less\n * than s->w_size bytes were copied. Also update the number of bytes to\n * insert in the hash tables, in the event that deflateParams() switches to\n * a non-zero compression level.\n */\n used -= s.strm.avail_in; /* number of input bytes directly copied */\n if (used) {\n /* If any input was used, then no unused input remains in the window,\n * therefore s->block_start == s->strstart.\n */\n if (used >= s.w_size) { /* supplant the previous history */\n s.matches = 2; /* clear hash */\n //zmemcpy(s->window, s->strm->next_in - s->w_size, s->w_size);\n s.window.set(s.strm.input.subarray(s.strm.next_in - s.w_size, s.strm.next_in), 0);\n s.strstart = s.w_size;\n s.insert = s.strstart;\n }\n else {\n if (s.window_size - s.strstart <= used) {\n /* Slide the window down. */\n s.strstart -= s.w_size;\n //zmemcpy(s->window, s->window + s->w_size, s->strstart);\n s.window.set(s.window.subarray(s.w_size, s.w_size + s.strstart), 0);\n if (s.matches < 2) {\n s.matches++; /* add a pending slide_hash() */\n }\n if (s.insert > s.strstart) {\n s.insert = s.strstart;\n }\n }\n //zmemcpy(s->window + s->strstart, s->strm->next_in - used, used);\n s.window.set(s.strm.input.subarray(s.strm.next_in - used, s.strm.next_in), s.strstart);\n s.strstart += used;\n s.insert += used > s.w_size - s.insert ? s.w_size - s.insert : used;\n }\n s.block_start = s.strstart;\n }\n if (s.high_water < s.strstart) {\n s.high_water = s.strstart;\n }\n\n /* If the last block was written to next_out, then done. */\n if (last) {\n return BS_FINISH_DONE;\n }\n\n /* If flushing and all input has been consumed, then done. */\n if (flush !== Z_NO_FLUSH$2 && flush !== Z_FINISH$3 &&\n s.strm.avail_in === 0 && s.strstart === s.block_start) {\n return BS_BLOCK_DONE;\n }\n\n /* Fill the window with any remaining input. */\n have = s.window_size - s.strstart;\n if (s.strm.avail_in > have && s.block_start >= s.w_size) {\n /* Slide the window down. */\n s.block_start -= s.w_size;\n s.strstart -= s.w_size;\n //zmemcpy(s->window, s->window + s->w_size, s->strstart);\n s.window.set(s.window.subarray(s.w_size, s.w_size + s.strstart), 0);\n if (s.matches < 2) {\n s.matches++; /* add a pending slide_hash() */\n }\n have += s.w_size; /* more space now */\n if (s.insert > s.strstart) {\n s.insert = s.strstart;\n }\n }\n if (have > s.strm.avail_in) {\n have = s.strm.avail_in;\n }\n if (have) {\n read_buf(s.strm, s.window, s.strstart, have);\n s.strstart += have;\n s.insert += have > s.w_size - s.insert ? s.w_size - s.insert : have;\n }\n if (s.high_water < s.strstart) {\n s.high_water = s.strstart;\n }\n\n /* There was not enough avail_out to write a complete worthy or flushed\n * stored block to next_out. Write a stored block to pending instead, if we\n * have enough input for a worthy block, or if flushing and there is enough\n * room for the remaining input as a stored block in the pending buffer.\n */\n have = (s.bi_valid + 42) >> 3; /* number of header bytes */\n /* maximum stored block length that will fit in pending: */\n have = s.pending_buf_size - have > 65535/* MAX_STORED */ ? 65535/* MAX_STORED */ : s.pending_buf_size - have;\n min_block = have > s.w_size ? s.w_size : have;\n left = s.strstart - s.block_start;\n if (left >= min_block ||\n ((left || flush === Z_FINISH$3) && flush !== Z_NO_FLUSH$2 &&\n s.strm.avail_in === 0 && left <= have)) {\n len = left > have ? have : left;\n last = flush === Z_FINISH$3 && s.strm.avail_in === 0 &&\n len === left ? 1 : 0;\n _tr_stored_block(s, s.block_start, len, last);\n s.block_start += len;\n flush_pending(s.strm);\n }\n\n /* We've done all we can with the available input and output. */\n return last ? BS_FINISH_STARTED : BS_NEED_MORE;\n};\n\n\n/* ===========================================================================\n * Compress as much as possible from the input stream, return the current\n * block state.\n * This function does not perform lazy evaluation of matches and inserts\n * new strings in the dictionary only for unmatched strings or for short\n * matches. It is used only for the fast compression options.\n */\nconst deflate_fast = (s, flush) => {\n\n let hash_head; /* head of the hash chain */\n let bflush; /* set if current block must be flushed */\n\n for (;;) {\n /* Make sure that we always have enough lookahead, except\n * at the end of the input file. We need MAX_MATCH bytes\n * for the next match, plus MIN_MATCH bytes to insert the\n * string following the next match.\n */\n if (s.lookahead < MIN_LOOKAHEAD) {\n fill_window(s);\n if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n if (s.lookahead === 0) {\n break; /* flush the current block */\n }\n }\n\n /* Insert the string window[strstart .. strstart+2] in the\n * dictionary, and set hash_head to the head of the hash chain:\n */\n hash_head = 0/*NIL*/;\n if (s.lookahead >= MIN_MATCH) {\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n }\n\n /* Find the longest match, discarding those <= prev_length.\n * At this point we have always match_length < MIN_MATCH\n */\n if (hash_head !== 0/*NIL*/ && ((s.strstart - hash_head) <= (s.w_size - MIN_LOOKAHEAD))) {\n /* To simplify the code, we prevent matches with the string\n * of window index 0 (in particular we have to avoid a match\n * of the string with itself at the start of the input file).\n */\n s.match_length = longest_match(s, hash_head);\n /* longest_match() sets match_start */\n }\n if (s.match_length >= MIN_MATCH) {\n // check_match(s, s.strstart, s.match_start, s.match_length); // for debug only\n\n /*** _tr_tally_dist(s, s.strstart - s.match_start,\n s.match_length - MIN_MATCH, bflush); ***/\n bflush = _tr_tally(s, s.strstart - s.match_start, s.match_length - MIN_MATCH);\n\n s.lookahead -= s.match_length;\n\n /* Insert new strings in the hash table only if the match length\n * is not too large. This saves time but degrades compression.\n */\n if (s.match_length <= s.max_lazy_match/*max_insert_length*/ && s.lookahead >= MIN_MATCH) {\n s.match_length--; /* string at strstart already in table */\n do {\n s.strstart++;\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n /* strstart never exceeds WSIZE-MAX_MATCH, so there are\n * always MIN_MATCH bytes ahead.\n */\n } while (--s.match_length !== 0);\n s.strstart++;\n } else\n {\n s.strstart += s.match_length;\n s.match_length = 0;\n s.ins_h = s.window[s.strstart];\n /* UPDATE_HASH(s, s.ins_h, s.window[s.strstart+1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + 1]);\n\n//#if MIN_MATCH != 3\n// Call UPDATE_HASH() MIN_MATCH-3 more times\n//#endif\n /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not\n * matter since it will be recomputed at next deflate call.\n */\n }\n } else {\n /* No match, output a literal byte */\n //Tracevv((stderr,\"%c\", s.window[s.strstart]));\n /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart]);\n\n s.lookahead--;\n s.strstart++;\n }\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n }\n s.insert = ((s.strstart < (MIN_MATCH - 1)) ? s.strstart : MIN_MATCH - 1);\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n return BS_BLOCK_DONE;\n};\n\n/* ===========================================================================\n * Same as above, but achieves better compression. We use a lazy\n * evaluation for matches: a match is finally adopted only if there is\n * no better match at the next window position.\n */\nconst deflate_slow = (s, flush) => {\n\n let hash_head; /* head of hash chain */\n let bflush; /* set if current block must be flushed */\n\n let max_insert;\n\n /* Process the input block. */\n for (;;) {\n /* Make sure that we always have enough lookahead, except\n * at the end of the input file. We need MAX_MATCH bytes\n * for the next match, plus MIN_MATCH bytes to insert the\n * string following the next match.\n */\n if (s.lookahead < MIN_LOOKAHEAD) {\n fill_window(s);\n if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n if (s.lookahead === 0) { break; } /* flush the current block */\n }\n\n /* Insert the string window[strstart .. strstart+2] in the\n * dictionary, and set hash_head to the head of the hash chain:\n */\n hash_head = 0/*NIL*/;\n if (s.lookahead >= MIN_MATCH) {\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n }\n\n /* Find the longest match, discarding those <= prev_length.\n */\n s.prev_length = s.match_length;\n s.prev_match = s.match_start;\n s.match_length = MIN_MATCH - 1;\n\n if (hash_head !== 0/*NIL*/ && s.prev_length < s.max_lazy_match &&\n s.strstart - hash_head <= (s.w_size - MIN_LOOKAHEAD)/*MAX_DIST(s)*/) {\n /* To simplify the code, we prevent matches with the string\n * of window index 0 (in particular we have to avoid a match\n * of the string with itself at the start of the input file).\n */\n s.match_length = longest_match(s, hash_head);\n /* longest_match() sets match_start */\n\n if (s.match_length <= 5 &&\n (s.strategy === Z_FILTERED || (s.match_length === MIN_MATCH && s.strstart - s.match_start > 4096/*TOO_FAR*/))) {\n\n /* If prev_match is also MIN_MATCH, match_start is garbage\n * but we will ignore the current match anyway.\n */\n s.match_length = MIN_MATCH - 1;\n }\n }\n /* If there was a match at the previous step and the current\n * match is not better, output the previous match:\n */\n if (s.prev_length >= MIN_MATCH && s.match_length <= s.prev_length) {\n max_insert = s.strstart + s.lookahead - MIN_MATCH;\n /* Do not insert strings in hash table beyond this. */\n\n //check_match(s, s.strstart-1, s.prev_match, s.prev_length);\n\n /***_tr_tally_dist(s, s.strstart - 1 - s.prev_match,\n s.prev_length - MIN_MATCH, bflush);***/\n bflush = _tr_tally(s, s.strstart - 1 - s.prev_match, s.prev_length - MIN_MATCH);\n /* Insert in hash table all strings up to the end of the match.\n * strstart-1 and strstart are already inserted. If there is not\n * enough lookahead, the last two strings are not inserted in\n * the hash table.\n */\n s.lookahead -= s.prev_length - 1;\n s.prev_length -= 2;\n do {\n if (++s.strstart <= max_insert) {\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n }\n } while (--s.prev_length !== 0);\n s.match_available = 0;\n s.match_length = MIN_MATCH - 1;\n s.strstart++;\n\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n\n } else if (s.match_available) {\n /* If there was no match at the previous position, output a\n * single literal. If there was a match but the current match\n * is longer, truncate the previous match to a single literal.\n */\n //Tracevv((stderr,\"%c\", s->window[s->strstart-1]));\n /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart - 1]);\n\n if (bflush) {\n /*** FLUSH_BLOCK_ONLY(s, 0) ***/\n flush_block_only(s, false);\n /***/\n }\n s.strstart++;\n s.lookahead--;\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n } else {\n /* There is no previous match to compare with, wait for\n * the next step to decide.\n */\n s.match_available = 1;\n s.strstart++;\n s.lookahead--;\n }\n }\n //Assert (flush != Z_NO_FLUSH, \"no flush?\");\n if (s.match_available) {\n //Tracevv((stderr,\"%c\", s->window[s->strstart-1]));\n /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart - 1]);\n\n s.match_available = 0;\n }\n s.insert = s.strstart < MIN_MATCH - 1 ? s.strstart : MIN_MATCH - 1;\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n\n return BS_BLOCK_DONE;\n};\n\n\n/* ===========================================================================\n * For Z_RLE, simply look for runs of bytes, generate matches only of distance\n * one. Do not maintain a hash table. (It will be regenerated if this run of\n * deflate switches away from Z_RLE.)\n */\nconst deflate_rle = (s, flush) => {\n\n let bflush; /* set if current block must be flushed */\n let prev; /* byte at distance one to match */\n let scan, strend; /* scan goes up to strend for length of run */\n\n const _win = s.window;\n\n for (;;) {\n /* Make sure that we always have enough lookahead, except\n * at the end of the input file. We need MAX_MATCH bytes\n * for the longest run, plus one for the unrolled loop.\n */\n if (s.lookahead <= MAX_MATCH) {\n fill_window(s);\n if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n if (s.lookahead === 0) { break; } /* flush the current block */\n }\n\n /* See how many times the previous byte repeats */\n s.match_length = 0;\n if (s.lookahead >= MIN_MATCH && s.strstart > 0) {\n scan = s.strstart - 1;\n prev = _win[scan];\n if (prev === _win[++scan] && prev === _win[++scan] && prev === _win[++scan]) {\n strend = s.strstart + MAX_MATCH;\n do {\n /*jshint noempty:false*/\n } while (prev === _win[++scan] && prev === _win[++scan] &&\n prev === _win[++scan] && prev === _win[++scan] &&\n prev === _win[++scan] && prev === _win[++scan] &&\n prev === _win[++scan] && prev === _win[++scan] &&\n scan < strend);\n s.match_length = MAX_MATCH - (strend - scan);\n if (s.match_length > s.lookahead) {\n s.match_length = s.lookahead;\n }\n }\n //Assert(scan <= s->window+(uInt)(s->window_size-1), \"wild scan\");\n }\n\n /* Emit match if have run of MIN_MATCH or longer, else emit literal */\n if (s.match_length >= MIN_MATCH) {\n //check_match(s, s.strstart, s.strstart - 1, s.match_length);\n\n /*** _tr_tally_dist(s, 1, s.match_length - MIN_MATCH, bflush); ***/\n bflush = _tr_tally(s, 1, s.match_length - MIN_MATCH);\n\n s.lookahead -= s.match_length;\n s.strstart += s.match_length;\n s.match_length = 0;\n } else {\n /* No match, output a literal byte */\n //Tracevv((stderr,\"%c\", s->window[s->strstart]));\n /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart]);\n\n s.lookahead--;\n s.strstart++;\n }\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n }\n s.insert = 0;\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n return BS_BLOCK_DONE;\n};\n\n/* ===========================================================================\n * For Z_HUFFMAN_ONLY, do not look for matches. Do not maintain a hash table.\n * (It will be regenerated if this run of deflate switches away from Huffman.)\n */\nconst deflate_huff = (s, flush) => {\n\n let bflush; /* set if current block must be flushed */\n\n for (;;) {\n /* Make sure that we have a literal to write. */\n if (s.lookahead === 0) {\n fill_window(s);\n if (s.lookahead === 0) {\n if (flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n break; /* flush the current block */\n }\n }\n\n /* Output a literal byte */\n s.match_length = 0;\n //Tracevv((stderr,\"%c\", s->window[s->strstart]));\n /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart]);\n s.lookahead--;\n s.strstart++;\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n }\n s.insert = 0;\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n return BS_BLOCK_DONE;\n};\n\n/* Values for max_lazy_match, good_match and max_chain_length, depending on\n * the desired pack level (0..9). The values given below have been tuned to\n * exclude worst case performance for pathological files. Better values may be\n * found for specific files.\n */\nfunction Config(good_length, max_lazy, nice_length, max_chain, func) {\n\n this.good_length = good_length;\n this.max_lazy = max_lazy;\n this.nice_length = nice_length;\n this.max_chain = max_chain;\n this.func = func;\n}\n\nconst configuration_table = [\n /* good lazy nice chain */\n new Config(0, 0, 0, 0, deflate_stored), /* 0 store only */\n new Config(4, 4, 8, 4, deflate_fast), /* 1 max speed, no lazy matches */\n new Config(4, 5, 16, 8, deflate_fast), /* 2 */\n new Config(4, 6, 32, 32, deflate_fast), /* 3 */\n\n new Config(4, 4, 16, 16, deflate_slow), /* 4 lazy matches */\n new Config(8, 16, 32, 32, deflate_slow), /* 5 */\n new Config(8, 16, 128, 128, deflate_slow), /* 6 */\n new Config(8, 32, 128, 256, deflate_slow), /* 7 */\n new Config(32, 128, 258, 1024, deflate_slow), /* 8 */\n new Config(32, 258, 258, 4096, deflate_slow) /* 9 max compression */\n];\n\n\n/* ===========================================================================\n * Initialize the \"longest match\" routines for a new zlib stream\n */\nconst lm_init = (s) => {\n\n s.window_size = 2 * s.w_size;\n\n /*** CLEAR_HASH(s); ***/\n zero(s.head); // Fill with NIL (= 0);\n\n /* Set the default configuration parameters:\n */\n s.max_lazy_match = configuration_table[s.level].max_lazy;\n s.good_match = configuration_table[s.level].good_length;\n s.nice_match = configuration_table[s.level].nice_length;\n s.max_chain_length = configuration_table[s.level].max_chain;\n\n s.strstart = 0;\n s.block_start = 0;\n s.lookahead = 0;\n s.insert = 0;\n s.match_length = s.prev_length = MIN_MATCH - 1;\n s.match_available = 0;\n s.ins_h = 0;\n};\n\n\nfunction DeflateState() {\n this.strm = null; /* pointer back to this zlib stream */\n this.status = 0; /* as the name implies */\n this.pending_buf = null; /* output still pending */\n this.pending_buf_size = 0; /* size of pending_buf */\n this.pending_out = 0; /* next pending byte to output to the stream */\n this.pending = 0; /* nb of bytes in the pending buffer */\n this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip */\n this.gzhead = null; /* gzip header information to write */\n this.gzindex = 0; /* where in extra, name, or comment */\n this.method = Z_DEFLATED$2; /* can only be DEFLATED */\n this.last_flush = -1; /* value of flush param for previous deflate call */\n\n this.w_size = 0; /* LZ77 window size (32K by default) */\n this.w_bits = 0; /* log2(w_size) (8..16) */\n this.w_mask = 0; /* w_size - 1 */\n\n this.window = null;\n /* Sliding window. Input bytes are read into the second half of the window,\n * and move to the first half later to keep a dictionary of at least wSize\n * bytes. With this organization, matches are limited to a distance of\n * wSize-MAX_MATCH bytes, but this ensures that IO is always\n * performed with a length multiple of the block size.\n */\n\n this.window_size = 0;\n /* Actual size of window: 2*wSize, except when the user input buffer\n * is directly used as sliding window.\n */\n\n this.prev = null;\n /* Link to older string with same hash index. To limit the size of this\n * array to 64K, this link is maintained only for the last 32K strings.\n * An index in this array is thus a window index modulo 32K.\n */\n\n this.head = null; /* Heads of the hash chains or NIL. */\n\n this.ins_h = 0; /* hash index of string to be inserted */\n this.hash_size = 0; /* number of elements in hash table */\n this.hash_bits = 0; /* log2(hash_size) */\n this.hash_mask = 0; /* hash_size-1 */\n\n this.hash_shift = 0;\n /* Number of bits by which ins_h must be shifted at each input\n * step. It must be such that after MIN_MATCH steps, the oldest\n * byte no longer takes part in the hash key, that is:\n * hash_shift * MIN_MATCH >= hash_bits\n */\n\n this.block_start = 0;\n /* Window position at the beginning of the current output block. Gets\n * negative when the window is moved backwards.\n */\n\n this.match_length = 0; /* length of best match */\n this.prev_match = 0; /* previous match */\n this.match_available = 0; /* set if previous match exists */\n this.strstart = 0; /* start of string to insert */\n this.match_start = 0; /* start of matching string */\n this.lookahead = 0; /* number of valid bytes ahead in window */\n\n this.prev_length = 0;\n /* Length of the best match at previous step. Matches not greater than this\n * are discarded. This is used in the lazy match evaluation.\n */\n\n this.max_chain_length = 0;\n /* To speed up deflation, hash chains are never searched beyond this\n * length. A higher limit improves compression ratio but degrades the\n * speed.\n */\n\n this.max_lazy_match = 0;\n /* Attempt to find a better match only when the current match is strictly\n * smaller than this value. This mechanism is used only for compression\n * levels >= 4.\n */\n // That's alias to max_lazy_match, don't use directly\n //this.max_insert_length = 0;\n /* Insert new strings in the hash table only if the match length is not\n * greater than this length. This saves time but degrades compression.\n * max_insert_length is used only for compression levels <= 3.\n */\n\n this.level = 0; /* compression level (1..9) */\n this.strategy = 0; /* favor or force Huffman coding*/\n\n this.good_match = 0;\n /* Use a faster search when the previous match is longer than this */\n\n this.nice_match = 0; /* Stop searching when current match exceeds this */\n\n /* used by trees.c: */\n\n /* Didn't use ct_data typedef below to suppress compiler warning */\n\n // struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */\n // struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */\n // struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */\n\n // Use flat array of DOUBLE size, with interleaved fata,\n // because JS does not support effective\n this.dyn_ltree = new Uint16Array(HEAP_SIZE * 2);\n this.dyn_dtree = new Uint16Array((2 * D_CODES + 1) * 2);\n this.bl_tree = new Uint16Array((2 * BL_CODES + 1) * 2);\n zero(this.dyn_ltree);\n zero(this.dyn_dtree);\n zero(this.bl_tree);\n\n this.l_desc = null; /* desc. for literal tree */\n this.d_desc = null; /* desc. for distance tree */\n this.bl_desc = null; /* desc. for bit length tree */\n\n //ush bl_count[MAX_BITS+1];\n this.bl_count = new Uint16Array(MAX_BITS + 1);\n /* number of codes at each bit length for an optimal tree */\n\n //int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */\n this.heap = new Uint16Array(2 * L_CODES + 1); /* heap used to build the Huffman trees */\n zero(this.heap);\n\n this.heap_len = 0; /* number of elements in the heap */\n this.heap_max = 0; /* element of largest frequency */\n /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.\n * The same heap array is used to build all trees.\n */\n\n this.depth = new Uint16Array(2 * L_CODES + 1); //uch depth[2*L_CODES+1];\n zero(this.depth);\n /* Depth of each subtree used as tie breaker for trees of equal frequency\n */\n\n this.sym_buf = 0; /* buffer for distances and literals/lengths */\n\n this.lit_bufsize = 0;\n /* Size of match buffer for literals/lengths. There are 4 reasons for\n * limiting lit_bufsize to 64K:\n * - frequencies can be kept in 16 bit counters\n * - if compression is not successful for the first block, all input\n * data is still in the window so we can still emit a stored block even\n * when input comes from standard input. (This can also be done for\n * all blocks if lit_bufsize is not greater than 32K.)\n * - if compression is not successful for a file smaller than 64K, we can\n * even emit a stored file instead of a stored block (saving 5 bytes).\n * This is applicable only for zip (not gzip or zlib).\n * - creating new Huffman trees less frequently may not provide fast\n * adaptation to changes in the input data statistics. (Take for\n * example a binary file with poorly compressible code followed by\n * a highly compressible string table.) Smaller buffer sizes give\n * fast adaptation but have of course the overhead of transmitting\n * trees more frequently.\n * - I can't count above 4\n */\n\n this.sym_next = 0; /* running index in sym_buf */\n this.sym_end = 0; /* symbol table full when sym_next reaches this */\n\n this.opt_len = 0; /* bit length of current block with optimal trees */\n this.static_len = 0; /* bit length of current block with static trees */\n this.matches = 0; /* number of string matches in current block */\n this.insert = 0; /* bytes at end of window left to insert */\n\n\n this.bi_buf = 0;\n /* Output buffer. bits are inserted starting at the bottom (least\n * significant bits).\n */\n this.bi_valid = 0;\n /* Number of valid bits in bi_buf. All bits above the last valid bit\n * are always zero.\n */\n\n // Used for window memory init. We safely ignore it for JS. That makes\n // sense only for pointers and memory check tools.\n //this.high_water = 0;\n /* High water mark offset in window for initialized bytes -- bytes above\n * this are set to zero in order to avoid memory check warnings when\n * longest match routines access bytes past the input. This is then\n * updated to the new high water mark.\n */\n}\n\n\n/* =========================================================================\n * Check for a valid deflate stream state. Return 0 if ok, 1 if not.\n */\nconst deflateStateCheck = (strm) => {\n\n if (!strm) {\n return 1;\n }\n const s = strm.state;\n if (!s || s.strm !== strm || (s.status !== INIT_STATE &&\n//#ifdef GZIP\n s.status !== GZIP_STATE &&\n//#endif\n s.status !== EXTRA_STATE &&\n s.status !== NAME_STATE &&\n s.status !== COMMENT_STATE &&\n s.status !== HCRC_STATE &&\n s.status !== BUSY_STATE &&\n s.status !== FINISH_STATE)) {\n return 1;\n }\n return 0;\n};\n\n\nconst deflateResetKeep = (strm) => {\n\n if (deflateStateCheck(strm)) {\n return err(strm, Z_STREAM_ERROR$2);\n }\n\n strm.total_in = strm.total_out = 0;\n strm.data_type = Z_UNKNOWN;\n\n const s = strm.state;\n s.pending = 0;\n s.pending_out = 0;\n\n if (s.wrap < 0) {\n s.wrap = -s.wrap;\n /* was made negative by deflate(..., Z_FINISH); */\n }\n s.status =\n//#ifdef GZIP\n s.wrap === 2 ? GZIP_STATE :\n//#endif\n s.wrap ? INIT_STATE : BUSY_STATE;\n strm.adler = (s.wrap === 2) ?\n 0 // crc32(0, Z_NULL, 0)\n :\n 1; // adler32(0, Z_NULL, 0)\n s.last_flush = -2;\n _tr_init(s);\n return Z_OK$3;\n};\n\n\nconst deflateReset = (strm) => {\n\n const ret = deflateResetKeep(strm);\n if (ret === Z_OK$3) {\n lm_init(strm.state);\n }\n return ret;\n};\n\n\nconst deflateSetHeader = (strm, head) => {\n\n if (deflateStateCheck(strm) || strm.state.wrap !== 2) {\n return Z_STREAM_ERROR$2;\n }\n strm.state.gzhead = head;\n return Z_OK$3;\n};\n\n\nconst deflateInit2 = (strm, level, method, windowBits, memLevel, strategy) => {\n\n if (!strm) { // === Z_NULL\n return Z_STREAM_ERROR$2;\n }\n let wrap = 1;\n\n if (level === Z_DEFAULT_COMPRESSION$1) {\n level = 6;\n }\n\n if (windowBits < 0) { /* suppress zlib wrapper */\n wrap = 0;\n windowBits = -windowBits;\n }\n\n else if (windowBits > 15) {\n wrap = 2; /* write gzip wrapper instead */\n windowBits -= 16;\n }\n\n\n if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method !== Z_DEFLATED$2 ||\n windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||\n strategy < 0 || strategy > Z_FIXED || (windowBits === 8 && wrap !== 1)) {\n return err(strm, Z_STREAM_ERROR$2);\n }\n\n\n if (windowBits === 8) {\n windowBits = 9;\n }\n /* until 256-byte window bug fixed */\n\n const s = new DeflateState();\n\n strm.state = s;\n s.strm = strm;\n s.status = INIT_STATE; /* to pass state test in deflateReset() */\n\n s.wrap = wrap;\n s.gzhead = null;\n s.w_bits = windowBits;\n s.w_size = 1 << s.w_bits;\n s.w_mask = s.w_size - 1;\n\n s.hash_bits = memLevel + 7;\n s.hash_size = 1 << s.hash_bits;\n s.hash_mask = s.hash_size - 1;\n s.hash_shift = ~~((s.hash_bits + MIN_MATCH - 1) / MIN_MATCH);\n\n s.window = new Uint8Array(s.w_size * 2);\n s.head = new Uint16Array(s.hash_size);\n s.prev = new Uint16Array(s.w_size);\n\n // Don't need mem init magic for JS.\n //s.high_water = 0; /* nothing written to s->window yet */\n\n s.lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */\n\n /* We overlay pending_buf and sym_buf. This works since the average size\n * for length/distance pairs over any compressed block is assured to be 31\n * bits or less.\n *\n * Analysis: The longest fixed codes are a length code of 8 bits plus 5\n * extra bits, for lengths 131 to 257. The longest fixed distance codes are\n * 5 bits plus 13 extra bits, for distances 16385 to 32768. The longest\n * possible fixed-codes length/distance pair is then 31 bits total.\n *\n * sym_buf starts one-fourth of the way into pending_buf. So there are\n * three bytes in sym_buf for every four bytes in pending_buf. Each symbol\n * in sym_buf is three bytes -- two for the distance and one for the\n * literal/length. As each symbol is consumed, the pointer to the next\n * sym_buf value to read moves forward three bytes. From that symbol, up to\n * 31 bits are written to pending_buf. The closest the written pending_buf\n * bits gets to the next sym_buf symbol to read is just before the last\n * code is written. At that time, 31*(n-2) bits have been written, just\n * after 24*(n-2) bits have been consumed from sym_buf. sym_buf starts at\n * 8*n bits into pending_buf. (Note that the symbol buffer fills when n-1\n * symbols are written.) The closest the writing gets to what is unread is\n * then n+14 bits. Here n is lit_bufsize, which is 16384 by default, and\n * can range from 128 to 32768.\n *\n * Therefore, at a minimum, there are 142 bits of space between what is\n * written and what is read in the overlain buffers, so the symbols cannot\n * be overwritten by the compressed data. That space is actually 139 bits,\n * due to the three-bit fixed-code block header.\n *\n * That covers the case where either Z_FIXED is specified, forcing fixed\n * codes, or when the use of fixed codes is chosen, because that choice\n * results in a smaller compressed block than dynamic codes. That latter\n * condition then assures that the above analysis also covers all dynamic\n * blocks. A dynamic-code block will only be chosen to be emitted if it has\n * fewer bits than a fixed-code block would for the same set of symbols.\n * Therefore its average symbol length is assured to be less than 31. So\n * the compressed data for a dynamic block also cannot overwrite the\n * symbols from which it is being constructed.\n */\n\n s.pending_buf_size = s.lit_bufsize * 4;\n s.pending_buf = new Uint8Array(s.pending_buf_size);\n\n // It is offset from `s.pending_buf` (size is `s.lit_bufsize * 2`)\n //s->sym_buf = s->pending_buf + s->lit_bufsize;\n s.sym_buf = s.lit_bufsize;\n\n //s->sym_end = (s->lit_bufsize - 1) * 3;\n s.sym_end = (s.lit_bufsize - 1) * 3;\n /* We avoid equality with lit_bufsize*3 because of wraparound at 64K\n * on 16 bit machines and because stored blocks are restricted to\n * 64K-1 bytes.\n */\n\n s.level = level;\n s.strategy = strategy;\n s.method = method;\n\n return deflateReset(strm);\n};\n\nconst deflateInit = (strm, level) => {\n\n return deflateInit2(strm, level, Z_DEFLATED$2, MAX_WBITS$1, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY$1);\n};\n\n\n/* ========================================================================= */\nconst deflate$2 = (strm, flush) => {\n\n if (deflateStateCheck(strm) || flush > Z_BLOCK$1 || flush < 0) {\n return strm ? err(strm, Z_STREAM_ERROR$2) : Z_STREAM_ERROR$2;\n }\n\n const s = strm.state;\n\n if (!strm.output ||\n (strm.avail_in !== 0 && !strm.input) ||\n (s.status === FINISH_STATE && flush !== Z_FINISH$3)) {\n return err(strm, (strm.avail_out === 0) ? Z_BUF_ERROR$1 : Z_STREAM_ERROR$2);\n }\n\n const old_flush = s.last_flush;\n s.last_flush = flush;\n\n /* Flush as much pending output as possible */\n if (s.pending !== 0) {\n flush_pending(strm);\n if (strm.avail_out === 0) {\n /* Since avail_out is 0, deflate will be called again with\n * more output space, but possibly with both pending and\n * avail_in equal to zero. There won't be anything to do,\n * but this is not an error situation so make sure we\n * return OK instead of BUF_ERROR at next call of deflate:\n */\n s.last_flush = -1;\n return Z_OK$3;\n }\n\n /* Make sure there is something to do and avoid duplicate consecutive\n * flushes. For repeated and useless calls with Z_FINISH, we keep\n * returning Z_STREAM_END instead of Z_BUF_ERROR.\n */\n } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) &&\n flush !== Z_FINISH$3) {\n return err(strm, Z_BUF_ERROR$1);\n }\n\n /* User must not provide more input after the first FINISH: */\n if (s.status === FINISH_STATE && strm.avail_in !== 0) {\n return err(strm, Z_BUF_ERROR$1);\n }\n\n /* Write the header */\n if (s.status === INIT_STATE && s.wrap === 0) {\n s.status = BUSY_STATE;\n }\n if (s.status === INIT_STATE) {\n /* zlib header */\n let header = (Z_DEFLATED$2 + ((s.w_bits - 8) << 4)) << 8;\n let level_flags = -1;\n\n if (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2) {\n level_flags = 0;\n } else if (s.level < 6) {\n level_flags = 1;\n } else if (s.level === 6) {\n level_flags = 2;\n } else {\n level_flags = 3;\n }\n header |= (level_flags << 6);\n if (s.strstart !== 0) { header |= PRESET_DICT; }\n header += 31 - (header % 31);\n\n putShortMSB(s, header);\n\n /* Save the adler32 of the preset dictionary: */\n if (s.strstart !== 0) {\n putShortMSB(s, strm.adler >>> 16);\n putShortMSB(s, strm.adler & 0xffff);\n }\n strm.adler = 1; // adler32(0L, Z_NULL, 0);\n s.status = BUSY_STATE;\n\n /* Compression must start with an empty pending buffer */\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n//#ifdef GZIP\n if (s.status === GZIP_STATE) {\n /* gzip header */\n strm.adler = 0; //crc32(0L, Z_NULL, 0);\n put_byte(s, 31);\n put_byte(s, 139);\n put_byte(s, 8);\n if (!s.gzhead) { // s->gzhead == Z_NULL\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, s.level === 9 ? 2 :\n (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?\n 4 : 0));\n put_byte(s, OS_CODE);\n s.status = BUSY_STATE;\n\n /* Compression must start with an empty pending buffer */\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n else {\n put_byte(s, (s.gzhead.text ? 1 : 0) +\n (s.gzhead.hcrc ? 2 : 0) +\n (!s.gzhead.extra ? 0 : 4) +\n (!s.gzhead.name ? 0 : 8) +\n (!s.gzhead.comment ? 0 : 16)\n );\n put_byte(s, s.gzhead.time & 0xff);\n put_byte(s, (s.gzhead.time >> 8) & 0xff);\n put_byte(s, (s.gzhead.time >> 16) & 0xff);\n put_byte(s, (s.gzhead.time >> 24) & 0xff);\n put_byte(s, s.level === 9 ? 2 :\n (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?\n 4 : 0));\n put_byte(s, s.gzhead.os & 0xff);\n if (s.gzhead.extra && s.gzhead.extra.length) {\n put_byte(s, s.gzhead.extra.length & 0xff);\n put_byte(s, (s.gzhead.extra.length >> 8) & 0xff);\n }\n if (s.gzhead.hcrc) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending, 0);\n }\n s.gzindex = 0;\n s.status = EXTRA_STATE;\n }\n }\n if (s.status === EXTRA_STATE) {\n if (s.gzhead.extra/* != Z_NULL*/) {\n let beg = s.pending; /* start of bytes to update crc */\n let left = (s.gzhead.extra.length & 0xffff) - s.gzindex;\n while (s.pending + left > s.pending_buf_size) {\n let copy = s.pending_buf_size - s.pending;\n // zmemcpy(s.pending_buf + s.pending,\n // s.gzhead.extra + s.gzindex, copy);\n s.pending_buf.set(s.gzhead.extra.subarray(s.gzindex, s.gzindex + copy), s.pending);\n s.pending = s.pending_buf_size;\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n s.gzindex += copy;\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n beg = 0;\n left -= copy;\n }\n // JS specific: s.gzhead.extra may be TypedArray or Array for backward compatibility\n // TypedArray.slice and TypedArray.from don't exist in IE10-IE11\n let gzhead_extra = new Uint8Array(s.gzhead.extra);\n // zmemcpy(s->pending_buf + s->pending,\n // s->gzhead->extra + s->gzindex, left);\n s.pending_buf.set(gzhead_extra.subarray(s.gzindex, s.gzindex + left), s.pending);\n s.pending += left;\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n s.gzindex = 0;\n }\n s.status = NAME_STATE;\n }\n if (s.status === NAME_STATE) {\n if (s.gzhead.name/* != Z_NULL*/) {\n let beg = s.pending; /* start of bytes to update crc */\n let val;\n do {\n if (s.pending === s.pending_buf_size) {\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n beg = 0;\n }\n // JS specific: little magic to add zero terminator to end of string\n if (s.gzindex < s.gzhead.name.length) {\n val = s.gzhead.name.charCodeAt(s.gzindex++) & 0xff;\n } else {\n val = 0;\n }\n put_byte(s, val);\n } while (val !== 0);\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n s.gzindex = 0;\n }\n s.status = COMMENT_STATE;\n }\n if (s.status === COMMENT_STATE) {\n if (s.gzhead.comment/* != Z_NULL*/) {\n let beg = s.pending; /* start of bytes to update crc */\n let val;\n do {\n if (s.pending === s.pending_buf_size) {\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n beg = 0;\n }\n // JS specific: little magic to add zero terminator to end of string\n if (s.gzindex < s.gzhead.comment.length) {\n val = s.gzhead.comment.charCodeAt(s.gzindex++) & 0xff;\n } else {\n val = 0;\n }\n put_byte(s, val);\n } while (val !== 0);\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n }\n s.status = HCRC_STATE;\n }\n if (s.status === HCRC_STATE) {\n if (s.gzhead.hcrc) {\n if (s.pending + 2 > s.pending_buf_size) {\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n put_byte(s, strm.adler & 0xff);\n put_byte(s, (strm.adler >> 8) & 0xff);\n strm.adler = 0; //crc32(0L, Z_NULL, 0);\n }\n s.status = BUSY_STATE;\n\n /* Compression must start with an empty pending buffer */\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n//#endif\n\n /* Start a new block or continue the current one.\n */\n if (strm.avail_in !== 0 || s.lookahead !== 0 ||\n (flush !== Z_NO_FLUSH$2 && s.status !== FINISH_STATE)) {\n let bstate = s.level === 0 ? deflate_stored(s, flush) :\n s.strategy === Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :\n s.strategy === Z_RLE ? deflate_rle(s, flush) :\n configuration_table[s.level].func(s, flush);\n\n if (bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) {\n s.status = FINISH_STATE;\n }\n if (bstate === BS_NEED_MORE || bstate === BS_FINISH_STARTED) {\n if (strm.avail_out === 0) {\n s.last_flush = -1;\n /* avoid BUF_ERROR next call, see above */\n }\n return Z_OK$3;\n /* If flush != Z_NO_FLUSH && avail_out == 0, the next call\n * of deflate should use the same flush parameter to make sure\n * that the flush is complete. So we don't have to output an\n * empty block here, this will be done at next call. This also\n * ensures that for a very small output buffer, we emit at most\n * one empty block.\n */\n }\n if (bstate === BS_BLOCK_DONE) {\n if (flush === Z_PARTIAL_FLUSH) {\n _tr_align(s);\n }\n else if (flush !== Z_BLOCK$1) { /* FULL_FLUSH or SYNC_FLUSH */\n\n _tr_stored_block(s, 0, 0, false);\n /* For a full flush, this empty block will be recognized\n * as a special marker by inflate_sync().\n */\n if (flush === Z_FULL_FLUSH$1) {\n /*** CLEAR_HASH(s); ***/ /* forget history */\n zero(s.head); // Fill with NIL (= 0);\n\n if (s.lookahead === 0) {\n s.strstart = 0;\n s.block_start = 0;\n s.insert = 0;\n }\n }\n }\n flush_pending(strm);\n if (strm.avail_out === 0) {\n s.last_flush = -1; /* avoid BUF_ERROR at next call, see above */\n return Z_OK$3;\n }\n }\n }\n\n if (flush !== Z_FINISH$3) { return Z_OK$3; }\n if (s.wrap <= 0) { return Z_STREAM_END$3; }\n\n /* Write the trailer */\n if (s.wrap === 2) {\n put_byte(s, strm.adler & 0xff);\n put_byte(s, (strm.adler >> 8) & 0xff);\n put_byte(s, (strm.adler >> 16) & 0xff);\n put_byte(s, (strm.adler >> 24) & 0xff);\n put_byte(s, strm.total_in & 0xff);\n put_byte(s, (strm.total_in >> 8) & 0xff);\n put_byte(s, (strm.total_in >> 16) & 0xff);\n put_byte(s, (strm.total_in >> 24) & 0xff);\n }\n else\n {\n putShortMSB(s, strm.adler >>> 16);\n putShortMSB(s, strm.adler & 0xffff);\n }\n\n flush_pending(strm);\n /* If avail_out is zero, the application will call deflate again\n * to flush the rest.\n */\n if (s.wrap > 0) { s.wrap = -s.wrap; }\n /* write the trailer only once! */\n return s.pending !== 0 ? Z_OK$3 : Z_STREAM_END$3;\n};\n\n\nconst deflateEnd = (strm) => {\n\n if (deflateStateCheck(strm)) {\n return Z_STREAM_ERROR$2;\n }\n\n const status = strm.state.status;\n\n strm.state = null;\n\n return status === BUSY_STATE ? err(strm, Z_DATA_ERROR$2) : Z_OK$3;\n};\n\n\n/* =========================================================================\n * Initializes the compression dictionary from the given byte\n * sequence without producing any compressed output.\n */\nconst deflateSetDictionary = (strm, dictionary) => {\n\n let dictLength = dictionary.length;\n\n if (deflateStateCheck(strm)) {\n return Z_STREAM_ERROR$2;\n }\n\n const s = strm.state;\n const wrap = s.wrap;\n\n if (wrap === 2 || (wrap === 1 && s.status !== INIT_STATE) || s.lookahead) {\n return Z_STREAM_ERROR$2;\n }\n\n /* when using zlib wrappers, compute Adler-32 for provided dictionary */\n if (wrap === 1) {\n /* adler32(strm->adler, dictionary, dictLength); */\n strm.adler = adler32_1(strm.adler, dictionary, dictLength, 0);\n }\n\n s.wrap = 0; /* avoid computing Adler-32 in read_buf */\n\n /* if dictionary would fill window, just replace the history */\n if (dictLength >= s.w_size) {\n if (wrap === 0) { /* already empty otherwise */\n /*** CLEAR_HASH(s); ***/\n zero(s.head); // Fill with NIL (= 0);\n s.strstart = 0;\n s.block_start = 0;\n s.insert = 0;\n }\n /* use the tail */\n // dictionary = dictionary.slice(dictLength - s.w_size);\n let tmpDict = new Uint8Array(s.w_size);\n tmpDict.set(dictionary.subarray(dictLength - s.w_size, dictLength), 0);\n dictionary = tmpDict;\n dictLength = s.w_size;\n }\n /* insert dictionary into window and hash */\n const avail = strm.avail_in;\n const next = strm.next_in;\n const input = strm.input;\n strm.avail_in = dictLength;\n strm.next_in = 0;\n strm.input = dictionary;\n fill_window(s);\n while (s.lookahead >= MIN_MATCH) {\n let str = s.strstart;\n let n = s.lookahead - (MIN_MATCH - 1);\n do {\n /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[str + MIN_MATCH - 1]);\n\n s.prev[str & s.w_mask] = s.head[s.ins_h];\n\n s.head[s.ins_h] = str;\n str++;\n } while (--n);\n s.strstart = str;\n s.lookahead = MIN_MATCH - 1;\n fill_window(s);\n }\n s.strstart += s.lookahead;\n s.block_start = s.strstart;\n s.insert = s.lookahead;\n s.lookahead = 0;\n s.match_length = s.prev_length = MIN_MATCH - 1;\n s.match_available = 0;\n strm.next_in = next;\n strm.input = input;\n strm.avail_in = avail;\n s.wrap = wrap;\n return Z_OK$3;\n};\n\n\nvar deflateInit_1 = deflateInit;\nvar deflateInit2_1 = deflateInit2;\nvar deflateReset_1 = deflateReset;\nvar deflateResetKeep_1 = deflateResetKeep;\nvar deflateSetHeader_1 = deflateSetHeader;\nvar deflate_2$1 = deflate$2;\nvar deflateEnd_1 = deflateEnd;\nvar deflateSetDictionary_1 = deflateSetDictionary;\nvar deflateInfo = 'pako deflate (from Nodeca project)';\n\n/* Not implemented\nmodule.exports.deflateBound = deflateBound;\nmodule.exports.deflateCopy = deflateCopy;\nmodule.exports.deflateGetDictionary = deflateGetDictionary;\nmodule.exports.deflateParams = deflateParams;\nmodule.exports.deflatePending = deflatePending;\nmodule.exports.deflatePrime = deflatePrime;\nmodule.exports.deflateTune = deflateTune;\n*/\n\nvar deflate_1$2 = {\n\tdeflateInit: deflateInit_1,\n\tdeflateInit2: deflateInit2_1,\n\tdeflateReset: deflateReset_1,\n\tdeflateResetKeep: deflateResetKeep_1,\n\tdeflateSetHeader: deflateSetHeader_1,\n\tdeflate: deflate_2$1,\n\tdeflateEnd: deflateEnd_1,\n\tdeflateSetDictionary: deflateSetDictionary_1,\n\tdeflateInfo: deflateInfo\n};\n\nconst _has = (obj, key) => {\n return Object.prototype.hasOwnProperty.call(obj, key);\n};\n\nvar assign = function (obj /*from1, from2, from3, ...*/) {\n const sources = Array.prototype.slice.call(arguments, 1);\n while (sources.length) {\n const source = sources.shift();\n if (!source) { continue; }\n\n if (typeof source !== 'object') {\n throw new TypeError(source + 'must be non-object');\n }\n\n for (const p in source) {\n if (_has(source, p)) {\n obj[p] = source[p];\n }\n }\n }\n\n return obj;\n};\n\n\n// Join array of chunks to single array.\nvar flattenChunks = (chunks) => {\n // calculate data length\n let len = 0;\n\n for (let i = 0, l = chunks.length; i < l; i++) {\n len += chunks[i].length;\n }\n\n // join chunks\n const result = new Uint8Array(len);\n\n for (let i = 0, pos = 0, l = chunks.length; i < l; i++) {\n let chunk = chunks[i];\n result.set(chunk, pos);\n pos += chunk.length;\n }\n\n return result;\n};\n\nvar common = {\n\tassign: assign,\n\tflattenChunks: flattenChunks\n};\n\n// String encode/decode helpers\n\n\n// Quick check if we can use fast array to bin string conversion\n//\n// - apply(Array) can fail on Android 2.2\n// - apply(Uint8Array) can fail on iOS 5.1 Safari\n//\nlet STR_APPLY_UIA_OK = true;\n\ntry { String.fromCharCode.apply(null, new Uint8Array(1)); } catch (__) { STR_APPLY_UIA_OK = false; }\n\n\n// Table with utf8 lengths (calculated by first byte of sequence)\n// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,\n// because max possible codepoint is 0x10ffff\nconst _utf8len = new Uint8Array(256);\nfor (let q = 0; q < 256; q++) {\n _utf8len[q] = (q >= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1);\n}\n_utf8len[254] = _utf8len[254] = 1; // Invalid sequence start\n\n\n// convert string to array (typed, when possible)\nvar string2buf = (str) => {\n if (typeof TextEncoder === 'function' && TextEncoder.prototype.encode) {\n return new TextEncoder().encode(str);\n }\n\n let buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;\n\n // count binary size\n for (m_pos = 0; m_pos < str_len; m_pos++) {\n c = str.charCodeAt(m_pos);\n if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {\n c2 = str.charCodeAt(m_pos + 1);\n if ((c2 & 0xfc00) === 0xdc00) {\n c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);\n m_pos++;\n }\n }\n buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;\n }\n\n // allocate buffer\n buf = new Uint8Array(buf_len);\n\n // convert\n for (i = 0, m_pos = 0; i < buf_len; m_pos++) {\n c = str.charCodeAt(m_pos);\n if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {\n c2 = str.charCodeAt(m_pos + 1);\n if ((c2 & 0xfc00) === 0xdc00) {\n c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);\n m_pos++;\n }\n }\n if (c < 0x80) {\n /* one byte */\n buf[i++] = c;\n } else if (c < 0x800) {\n /* two bytes */\n buf[i++] = 0xC0 | (c >>> 6);\n buf[i++] = 0x80 | (c & 0x3f);\n } else if (c < 0x10000) {\n /* three bytes */\n buf[i++] = 0xE0 | (c >>> 12);\n buf[i++] = 0x80 | (c >>> 6 & 0x3f);\n buf[i++] = 0x80 | (c & 0x3f);\n } else {\n /* four bytes */\n buf[i++] = 0xf0 | (c >>> 18);\n buf[i++] = 0x80 | (c >>> 12 & 0x3f);\n buf[i++] = 0x80 | (c >>> 6 & 0x3f);\n buf[i++] = 0x80 | (c & 0x3f);\n }\n }\n\n return buf;\n};\n\n// Helper\nconst buf2binstring = (buf, len) => {\n // On Chrome, the arguments in a function call that are allowed is `65534`.\n // If the length of the buffer is smaller than that, we can use this optimization,\n // otherwise we will take a slower path.\n if (len < 65534) {\n if (buf.subarray && STR_APPLY_UIA_OK) {\n return String.fromCharCode.apply(null, buf.length === len ? buf : buf.subarray(0, len));\n }\n }\n\n let result = '';\n for (let i = 0; i < len; i++) {\n result += String.fromCharCode(buf[i]);\n }\n return result;\n};\n\n\n// convert array to string\nvar buf2string = (buf, max) => {\n const len = max || buf.length;\n\n if (typeof TextDecoder === 'function' && TextDecoder.prototype.decode) {\n return new TextDecoder().decode(buf.subarray(0, max));\n }\n\n let i, out;\n\n // Reserve max possible length (2 words per char)\n // NB: by unknown reasons, Array is significantly faster for\n // String.fromCharCode.apply than Uint16Array.\n const utf16buf = new Array(len * 2);\n\n for (out = 0, i = 0; i < len;) {\n let c = buf[i++];\n // quick process ascii\n if (c < 0x80) { utf16buf[out++] = c; continue; }\n\n let c_len = _utf8len[c];\n // skip 5 & 6 byte codes\n if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; }\n\n // apply mask on first byte\n c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;\n // join the rest\n while (c_len > 1 && i < len) {\n c = (c << 6) | (buf[i++] & 0x3f);\n c_len--;\n }\n\n // terminated by end of string?\n if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }\n\n if (c < 0x10000) {\n utf16buf[out++] = c;\n } else {\n c -= 0x10000;\n utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);\n utf16buf[out++] = 0xdc00 | (c & 0x3ff);\n }\n }\n\n return buf2binstring(utf16buf, out);\n};\n\n\n// Calculate max possible position in utf8 buffer,\n// that will not break sequence. If that's not possible\n// - (very small limits) return max size as is.\n//\n// buf[] - utf8 bytes array\n// max - length limit (mandatory);\nvar utf8border = (buf, max) => {\n\n max = max || buf.length;\n if (max > buf.length) { max = buf.length; }\n\n // go back from last position, until start of sequence found\n let pos = max - 1;\n while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }\n\n // Very small and broken sequence,\n // return max, because we should return something anyway.\n if (pos < 0) { return max; }\n\n // If we came to start of buffer - that means buffer is too small,\n // return max too.\n if (pos === 0) { return max; }\n\n return (pos + _utf8len[buf[pos]] > max) ? pos : max;\n};\n\nvar strings = {\n\tstring2buf: string2buf,\n\tbuf2string: buf2string,\n\tutf8border: utf8border\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nfunction ZStream() {\n /* next input byte */\n this.input = null; // JS specific, because we have no pointers\n this.next_in = 0;\n /* number of bytes available at input */\n this.avail_in = 0;\n /* total number of input bytes read so far */\n this.total_in = 0;\n /* next output byte should be put there */\n this.output = null; // JS specific, because we have no pointers\n this.next_out = 0;\n /* remaining free space at output */\n this.avail_out = 0;\n /* total number of bytes output so far */\n this.total_out = 0;\n /* last error message, NULL if no error */\n this.msg = ''/*Z_NULL*/;\n /* not visible by applications */\n this.state = null;\n /* best guess about the data type: binary or text */\n this.data_type = 2/*Z_UNKNOWN*/;\n /* adler32 value of the uncompressed data */\n this.adler = 0;\n}\n\nvar zstream = ZStream;\n\nconst toString$1 = Object.prototype.toString;\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_NO_FLUSH: Z_NO_FLUSH$1, Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH: Z_FINISH$2,\n Z_OK: Z_OK$2, Z_STREAM_END: Z_STREAM_END$2,\n Z_DEFAULT_COMPRESSION,\n Z_DEFAULT_STRATEGY,\n Z_DEFLATED: Z_DEFLATED$1\n} = constants$2;\n\n/* ===========================================================================*/\n\n\n/**\n * class Deflate\n *\n * Generic JS-style wrapper for zlib calls. If you don't need\n * streaming behaviour - use more simple functions: [[deflate]],\n * [[deflateRaw]] and [[gzip]].\n **/\n\n/* internal\n * Deflate.chunks -> Array\n *\n * Chunks of output data, if [[Deflate#onData]] not overridden.\n **/\n\n/**\n * Deflate.result -> Uint8Array\n *\n * Compressed result, generated by default [[Deflate#onData]]\n * and [[Deflate#onEnd]] handlers. Filled after you push last chunk\n * (call [[Deflate#push]] with `Z_FINISH` / `true` param).\n **/\n\n/**\n * Deflate.err -> Number\n *\n * Error code after deflate finished. 0 (Z_OK) on success.\n * You will not need it in real life, because deflate errors\n * are possible only on wrong options or bad `onData` / `onEnd`\n * custom handlers.\n **/\n\n/**\n * Deflate.msg -> String\n *\n * Error message, if [[Deflate.err]] != 0\n **/\n\n\n/**\n * new Deflate(options)\n * - options (Object): zlib deflate options.\n *\n * Creates new deflator instance with specified params. Throws exception\n * on bad params. Supported options:\n *\n * - `level`\n * - `windowBits`\n * - `memLevel`\n * - `strategy`\n * - `dictionary`\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information on these.\n *\n * Additional options, for internal needs:\n *\n * - `chunkSize` - size of generated data chunks (16K by default)\n * - `raw` (Boolean) - do raw deflate\n * - `gzip` (Boolean) - create gzip wrapper\n * - `header` (Object) - custom header for gzip\n * - `text` (Boolean) - true if compressed data believed to be text\n * - `time` (Number) - modification time, unix timestamp\n * - `os` (Number) - operation system code\n * - `extra` (Array) - array of bytes with extra data (max 65536)\n * - `name` (String) - file name (binary string)\n * - `comment` (String) - comment (binary string)\n * - `hcrc` (Boolean) - true if header crc should be added\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako')\n * , chunk1 = new Uint8Array([1,2,3,4,5,6,7,8,9])\n * , chunk2 = new Uint8Array([10,11,12,13,14,15,16,17,18,19]);\n *\n * const deflate = new pako.Deflate({ level: 3});\n *\n * deflate.push(chunk1, false);\n * deflate.push(chunk2, true); // true -> last chunk\n *\n * if (deflate.err) { throw new Error(deflate.err); }\n *\n * console.log(deflate.result);\n * ```\n **/\nfunction Deflate$1(options) {\n this.options = common.assign({\n level: Z_DEFAULT_COMPRESSION,\n method: Z_DEFLATED$1,\n chunkSize: 16384,\n windowBits: 15,\n memLevel: 8,\n strategy: Z_DEFAULT_STRATEGY\n }, options || {});\n\n let opt = this.options;\n\n if (opt.raw && (opt.windowBits > 0)) {\n opt.windowBits = -opt.windowBits;\n }\n\n else if (opt.gzip && (opt.windowBits > 0) && (opt.windowBits < 16)) {\n opt.windowBits += 16;\n }\n\n this.err = 0; // error code, if happens (0 = Z_OK)\n this.msg = ''; // error message\n this.ended = false; // used to avoid multiple onEnd() calls\n this.chunks = []; // chunks of compressed data\n\n this.strm = new zstream();\n this.strm.avail_out = 0;\n\n let status = deflate_1$2.deflateInit2(\n this.strm,\n opt.level,\n opt.method,\n opt.windowBits,\n opt.memLevel,\n opt.strategy\n );\n\n if (status !== Z_OK$2) {\n throw new Error(messages[status]);\n }\n\n if (opt.header) {\n deflate_1$2.deflateSetHeader(this.strm, opt.header);\n }\n\n if (opt.dictionary) {\n let dict;\n // Convert data if needed\n if (typeof opt.dictionary === 'string') {\n // If we need to compress text, change encoding to utf8.\n dict = strings.string2buf(opt.dictionary);\n } else if (toString$1.call(opt.dictionary) === '[object ArrayBuffer]') {\n dict = new Uint8Array(opt.dictionary);\n } else {\n dict = opt.dictionary;\n }\n\n status = deflate_1$2.deflateSetDictionary(this.strm, dict);\n\n if (status !== Z_OK$2) {\n throw new Error(messages[status]);\n }\n\n this._dict_set = true;\n }\n}\n\n/**\n * Deflate#push(data[, flush_mode]) -> Boolean\n * - data (Uint8Array|ArrayBuffer|String): input data. Strings will be\n * converted to utf8 byte sequence.\n * - flush_mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.\n * See constants. Skipped or `false` means Z_NO_FLUSH, `true` means Z_FINISH.\n *\n * Sends input data to deflate pipe, generating [[Deflate#onData]] calls with\n * new compressed chunks. Returns `true` on success. The last data block must\n * have `flush_mode` Z_FINISH (or `true`). That will flush internal pending\n * buffers and call [[Deflate#onEnd]].\n *\n * On fail call [[Deflate#onEnd]] with error code and return false.\n *\n * ##### Example\n *\n * ```javascript\n * push(chunk, false); // push one of data chunks\n * ...\n * push(chunk, true); // push last chunk\n * ```\n **/\nDeflate$1.prototype.push = function (data, flush_mode) {\n const strm = this.strm;\n const chunkSize = this.options.chunkSize;\n let status, _flush_mode;\n\n if (this.ended) { return false; }\n\n if (flush_mode === ~~flush_mode) _flush_mode = flush_mode;\n else _flush_mode = flush_mode === true ? Z_FINISH$2 : Z_NO_FLUSH$1;\n\n // Convert data if needed\n if (typeof data === 'string') {\n // If we need to compress text, change encoding to utf8.\n strm.input = strings.string2buf(data);\n } else if (toString$1.call(data) === '[object ArrayBuffer]') {\n strm.input = new Uint8Array(data);\n } else {\n strm.input = data;\n }\n\n strm.next_in = 0;\n strm.avail_in = strm.input.length;\n\n for (;;) {\n if (strm.avail_out === 0) {\n strm.output = new Uint8Array(chunkSize);\n strm.next_out = 0;\n strm.avail_out = chunkSize;\n }\n\n // Make sure avail_out > 6 to avoid repeating markers\n if ((_flush_mode === Z_SYNC_FLUSH || _flush_mode === Z_FULL_FLUSH) && strm.avail_out <= 6) {\n this.onData(strm.output.subarray(0, strm.next_out));\n strm.avail_out = 0;\n continue;\n }\n\n status = deflate_1$2.deflate(strm, _flush_mode);\n\n // Ended => flush and finish\n if (status === Z_STREAM_END$2) {\n if (strm.next_out > 0) {\n this.onData(strm.output.subarray(0, strm.next_out));\n }\n status = deflate_1$2.deflateEnd(this.strm);\n this.onEnd(status);\n this.ended = true;\n return status === Z_OK$2;\n }\n\n // Flush if out buffer full\n if (strm.avail_out === 0) {\n this.onData(strm.output);\n continue;\n }\n\n // Flush if requested and has data\n if (_flush_mode > 0 && strm.next_out > 0) {\n this.onData(strm.output.subarray(0, strm.next_out));\n strm.avail_out = 0;\n continue;\n }\n\n if (strm.avail_in === 0) break;\n }\n\n return true;\n};\n\n\n/**\n * Deflate#onData(chunk) -> Void\n * - chunk (Uint8Array): output data.\n *\n * By default, stores data blocks in `chunks[]` property and glue\n * those in `onEnd`. Override this handler, if you need another behaviour.\n **/\nDeflate$1.prototype.onData = function (chunk) {\n this.chunks.push(chunk);\n};\n\n\n/**\n * Deflate#onEnd(status) -> Void\n * - status (Number): deflate status. 0 (Z_OK) on success,\n * other if not.\n *\n * Called once after you tell deflate that the input stream is\n * complete (Z_FINISH). By default - join collected chunks,\n * free memory and fill `results` / `err` properties.\n **/\nDeflate$1.prototype.onEnd = function (status) {\n // On success - join\n if (status === Z_OK$2) {\n this.result = common.flattenChunks(this.chunks);\n }\n this.chunks = [];\n this.err = status;\n this.msg = this.strm.msg;\n};\n\n\n/**\n * deflate(data[, options]) -> Uint8Array\n * - data (Uint8Array|ArrayBuffer|String): input data to compress.\n * - options (Object): zlib deflate options.\n *\n * Compress `data` with deflate algorithm and `options`.\n *\n * Supported options are:\n *\n * - level\n * - windowBits\n * - memLevel\n * - strategy\n * - dictionary\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information on these.\n *\n * Sugar (options):\n *\n * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify\n * negative windowBits implicitly.\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako')\n * const data = new Uint8Array([1,2,3,4,5,6,7,8,9]);\n *\n * console.log(pako.deflate(data));\n * ```\n **/\nfunction deflate$1(input, options) {\n const deflator = new Deflate$1(options);\n\n deflator.push(input, true);\n\n // That will never happens, if you don't cheat with options :)\n if (deflator.err) { throw deflator.msg || messages[deflator.err]; }\n\n return deflator.result;\n}\n\n\n/**\n * deflateRaw(data[, options]) -> Uint8Array\n * - data (Uint8Array|ArrayBuffer|String): input data to compress.\n * - options (Object): zlib deflate options.\n *\n * The same as [[deflate]], but creates raw data, without wrapper\n * (header and adler32 crc).\n **/\nfunction deflateRaw$1(input, options) {\n options = options || {};\n options.raw = true;\n return deflate$1(input, options);\n}\n\n\n/**\n * gzip(data[, options]) -> Uint8Array\n * - data (Uint8Array|ArrayBuffer|String): input data to compress.\n * - options (Object): zlib deflate options.\n *\n * The same as [[deflate]], but create gzip wrapper instead of\n * deflate one.\n **/\nfunction gzip$1(input, options) {\n options = options || {};\n options.gzip = true;\n return deflate$1(input, options);\n}\n\n\nvar Deflate_1$1 = Deflate$1;\nvar deflate_2 = deflate$1;\nvar deflateRaw_1$1 = deflateRaw$1;\nvar gzip_1$1 = gzip$1;\nvar constants$1 = constants$2;\n\nvar deflate_1$1 = {\n\tDeflate: Deflate_1$1,\n\tdeflate: deflate_2,\n\tdeflateRaw: deflateRaw_1$1,\n\tgzip: gzip_1$1,\n\tconstants: constants$1\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n// See state defs from inflate.js\nconst BAD$1 = 16209; /* got a data error -- remain here until reset */\nconst TYPE$1 = 16191; /* i: waiting for type bits, including last-flag bit */\n\n/*\n Decode literal, length, and distance codes and write out the resulting\n literal and match bytes until either not enough input or output is\n available, an end-of-block is encountered, or a data error is encountered.\n When large enough input and output buffers are supplied to inflate(), for\n example, a 16K input buffer and a 64K output buffer, more than 95% of the\n inflate execution time is spent in this routine.\n\n Entry assumptions:\n\n state.mode === LEN\n strm.avail_in >= 6\n strm.avail_out >= 258\n start >= strm.avail_out\n state.bits < 8\n\n On return, state.mode is one of:\n\n LEN -- ran out of enough output space or enough available input\n TYPE -- reached end of block code, inflate() to interpret next block\n BAD -- error in block data\n\n Notes:\n\n - The maximum input bits used by a length/distance pair is 15 bits for the\n length code, 5 bits for the length extra, 15 bits for the distance code,\n and 13 bits for the distance extra. This totals 48 bits, or six bytes.\n Therefore if strm.avail_in >= 6, then there is enough input to avoid\n checking for available input while decoding.\n\n - The maximum bytes that a single length/distance pair can output is 258\n bytes, which is the maximum length that can be coded. inflate_fast()\n requires strm.avail_out >= 258 for each loop to avoid checking for\n output space.\n */\nvar inffast = function inflate_fast(strm, start) {\n let _in; /* local strm.input */\n let last; /* have enough input while in < last */\n let _out; /* local strm.output */\n let beg; /* inflate()'s initial strm.output */\n let end; /* while out < end, enough space available */\n//#ifdef INFLATE_STRICT\n let dmax; /* maximum distance from zlib header */\n//#endif\n let wsize; /* window size or zero if not using window */\n let whave; /* valid bytes in the window */\n let wnext; /* window write index */\n // Use `s_window` instead `window`, avoid conflict with instrumentation tools\n let s_window; /* allocated sliding window, if wsize != 0 */\n let hold; /* local strm.hold */\n let bits; /* local strm.bits */\n let lcode; /* local strm.lencode */\n let dcode; /* local strm.distcode */\n let lmask; /* mask for first level of length codes */\n let dmask; /* mask for first level of distance codes */\n let here; /* retrieved table entry */\n let op; /* code bits, operation, extra bits, or */\n /* window position, window bytes to copy */\n let len; /* match length, unused bytes */\n let dist; /* match distance */\n let from; /* where to copy match from */\n let from_source;\n\n\n let input, output; // JS specific, because we have no pointers\n\n /* copy state to local variables */\n const state = strm.state;\n //here = state.here;\n _in = strm.next_in;\n input = strm.input;\n last = _in + (strm.avail_in - 5);\n _out = strm.next_out;\n output = strm.output;\n beg = _out - (start - strm.avail_out);\n end = _out + (strm.avail_out - 257);\n//#ifdef INFLATE_STRICT\n dmax = state.dmax;\n//#endif\n wsize = state.wsize;\n whave = state.whave;\n wnext = state.wnext;\n s_window = state.window;\n hold = state.hold;\n bits = state.bits;\n lcode = state.lencode;\n dcode = state.distcode;\n lmask = (1 << state.lenbits) - 1;\n dmask = (1 << state.distbits) - 1;\n\n\n /* decode literals and length/distances until end-of-block or not enough\n input data or output space */\n\n top:\n do {\n if (bits < 15) {\n hold += input[_in++] << bits;\n bits += 8;\n hold += input[_in++] << bits;\n bits += 8;\n }\n\n here = lcode[hold & lmask];\n\n dolen:\n for (;;) { // Goto emulation\n op = here >>> 24/*here.bits*/;\n hold >>>= op;\n bits -= op;\n op = (here >>> 16) & 0xff/*here.op*/;\n if (op === 0) { /* literal */\n //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?\n // \"inflate: literal '%c'\\n\" :\n // \"inflate: literal 0x%02x\\n\", here.val));\n output[_out++] = here & 0xffff/*here.val*/;\n }\n else if (op & 16) { /* length base */\n len = here & 0xffff/*here.val*/;\n op &= 15; /* number of extra bits */\n if (op) {\n if (bits < op) {\n hold += input[_in++] << bits;\n bits += 8;\n }\n len += hold & ((1 << op) - 1);\n hold >>>= op;\n bits -= op;\n }\n //Tracevv((stderr, \"inflate: length %u\\n\", len));\n if (bits < 15) {\n hold += input[_in++] << bits;\n bits += 8;\n hold += input[_in++] << bits;\n bits += 8;\n }\n here = dcode[hold & dmask];\n\n dodist:\n for (;;) { // goto emulation\n op = here >>> 24/*here.bits*/;\n hold >>>= op;\n bits -= op;\n op = (here >>> 16) & 0xff/*here.op*/;\n\n if (op & 16) { /* distance base */\n dist = here & 0xffff/*here.val*/;\n op &= 15; /* number of extra bits */\n if (bits < op) {\n hold += input[_in++] << bits;\n bits += 8;\n if (bits < op) {\n hold += input[_in++] << bits;\n bits += 8;\n }\n }\n dist += hold & ((1 << op) - 1);\n//#ifdef INFLATE_STRICT\n if (dist > dmax) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD$1;\n break top;\n }\n//#endif\n hold >>>= op;\n bits -= op;\n //Tracevv((stderr, \"inflate: distance %u\\n\", dist));\n op = _out - beg; /* max distance in output */\n if (dist > op) { /* see if copy from window */\n op = dist - op; /* distance back in window */\n if (op > whave) {\n if (state.sane) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD$1;\n break top;\n }\n\n// (!) This block is disabled in zlib defaults,\n// don't enable it for binary compatibility\n//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR\n// if (len <= op - whave) {\n// do {\n// output[_out++] = 0;\n// } while (--len);\n// continue top;\n// }\n// len -= op - whave;\n// do {\n// output[_out++] = 0;\n// } while (--op > whave);\n// if (op === 0) {\n// from = _out - dist;\n// do {\n// output[_out++] = output[from++];\n// } while (--len);\n// continue top;\n// }\n//#endif\n }\n from = 0; // window index\n from_source = s_window;\n if (wnext === 0) { /* very common case */\n from += wsize - op;\n if (op < len) { /* some from window */\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = _out - dist; /* rest from output */\n from_source = output;\n }\n }\n else if (wnext < op) { /* wrap around window */\n from += wsize + wnext - op;\n op -= wnext;\n if (op < len) { /* some from end of window */\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = 0;\n if (wnext < len) { /* some from start of window */\n op = wnext;\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = _out - dist; /* rest from output */\n from_source = output;\n }\n }\n }\n else { /* contiguous in window */\n from += wnext - op;\n if (op < len) { /* some from window */\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = _out - dist; /* rest from output */\n from_source = output;\n }\n }\n while (len > 2) {\n output[_out++] = from_source[from++];\n output[_out++] = from_source[from++];\n output[_out++] = from_source[from++];\n len -= 3;\n }\n if (len) {\n output[_out++] = from_source[from++];\n if (len > 1) {\n output[_out++] = from_source[from++];\n }\n }\n }\n else {\n from = _out - dist; /* copy direct from output */\n do { /* minimum length is three */\n output[_out++] = output[from++];\n output[_out++] = output[from++];\n output[_out++] = output[from++];\n len -= 3;\n } while (len > 2);\n if (len) {\n output[_out++] = output[from++];\n if (len > 1) {\n output[_out++] = output[from++];\n }\n }\n }\n }\n else if ((op & 64) === 0) { /* 2nd level distance code */\n here = dcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];\n continue dodist;\n }\n else {\n strm.msg = 'invalid distance code';\n state.mode = BAD$1;\n break top;\n }\n\n break; // need to emulate goto via \"continue\"\n }\n }\n else if ((op & 64) === 0) { /* 2nd level length code */\n here = lcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];\n continue dolen;\n }\n else if (op & 32) { /* end-of-block */\n //Tracevv((stderr, \"inflate: end of block\\n\"));\n state.mode = TYPE$1;\n break top;\n }\n else {\n strm.msg = 'invalid literal/length code';\n state.mode = BAD$1;\n break top;\n }\n\n break; // need to emulate goto via \"continue\"\n }\n } while (_in < last && _out < end);\n\n /* return unused bytes (on entry, bits < 8, so in won't go too far back) */\n len = bits >> 3;\n _in -= len;\n bits -= len << 3;\n hold &= (1 << bits) - 1;\n\n /* update state and return */\n strm.next_in = _in;\n strm.next_out = _out;\n strm.avail_in = (_in < last ? 5 + (last - _in) : 5 - (_in - last));\n strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end));\n state.hold = hold;\n state.bits = bits;\n return;\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nconst MAXBITS = 15;\nconst ENOUGH_LENS$1 = 852;\nconst ENOUGH_DISTS$1 = 592;\n//const ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);\n\nconst CODES$1 = 0;\nconst LENS$1 = 1;\nconst DISTS$1 = 2;\n\nconst lbase = new Uint16Array([ /* Length codes 257..285 base */\n 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,\n 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0\n]);\n\nconst lext = new Uint8Array([ /* Length codes 257..285 extra */\n 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18,\n 19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78\n]);\n\nconst dbase = new Uint16Array([ /* Distance codes 0..29 base */\n 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,\n 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,\n 8193, 12289, 16385, 24577, 0, 0\n]);\n\nconst dext = new Uint8Array([ /* Distance codes 0..29 extra */\n 16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22,\n 23, 23, 24, 24, 25, 25, 26, 26, 27, 27,\n 28, 28, 29, 29, 64, 64\n]);\n\nconst inflate_table = (type, lens, lens_index, codes, table, table_index, work, opts) =>\n{\n const bits = opts.bits;\n //here = opts.here; /* table entry for duplication */\n\n let len = 0; /* a code's length in bits */\n let sym = 0; /* index of code symbols */\n let min = 0, max = 0; /* minimum and maximum code lengths */\n let root = 0; /* number of index bits for root table */\n let curr = 0; /* number of index bits for current table */\n let drop = 0; /* code bits to drop for sub-table */\n let left = 0; /* number of prefix codes available */\n let used = 0; /* code entries in table used */\n let huff = 0; /* Huffman code */\n let incr; /* for incrementing code, index */\n let fill; /* index for replicating entries */\n let low; /* low bits for current root entry */\n let mask; /* mask for low root bits */\n let next; /* next available space in table */\n let base = null; /* base value table to use */\n// let shoextra; /* extra bits table to use */\n let match; /* use base and extra for symbol >= match */\n const count = new Uint16Array(MAXBITS + 1); //[MAXBITS+1]; /* number of codes of each length */\n const offs = new Uint16Array(MAXBITS + 1); //[MAXBITS+1]; /* offsets in table for each length */\n let extra = null;\n\n let here_bits, here_op, here_val;\n\n /*\n Process a set of code lengths to create a canonical Huffman code. The\n code lengths are lens[0..codes-1]. Each length corresponds to the\n symbols 0..codes-1. The Huffman code is generated by first sorting the\n symbols by length from short to long, and retaining the symbol order\n for codes with equal lengths. Then the code starts with all zero bits\n for the first code of the shortest length, and the codes are integer\n increments for the same length, and zeros are appended as the length\n increases. For the deflate format, these bits are stored backwards\n from their more natural integer increment ordering, and so when the\n decoding tables are built in the large loop below, the integer codes\n are incremented backwards.\n\n This routine assumes, but does not check, that all of the entries in\n lens[] are in the range 0..MAXBITS. The caller must assure this.\n 1..MAXBITS is interpreted as that code length. zero means that that\n symbol does not occur in this code.\n\n The codes are sorted by computing a count of codes for each length,\n creating from that a table of starting indices for each length in the\n sorted table, and then entering the symbols in order in the sorted\n table. The sorted table is work[], with that space being provided by\n the caller.\n\n The length counts are used for other purposes as well, i.e. finding\n the minimum and maximum length codes, determining if there are any\n codes at all, checking for a valid set of lengths, and looking ahead\n at length counts to determine sub-table sizes when building the\n decoding tables.\n */\n\n /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */\n for (len = 0; len <= MAXBITS; len++) {\n count[len] = 0;\n }\n for (sym = 0; sym < codes; sym++) {\n count[lens[lens_index + sym]]++;\n }\n\n /* bound code lengths, force root to be within code lengths */\n root = bits;\n for (max = MAXBITS; max >= 1; max--) {\n if (count[max] !== 0) { break; }\n }\n if (root > max) {\n root = max;\n }\n if (max === 0) { /* no symbols to code at all */\n //table.op[opts.table_index] = 64; //here.op = (var char)64; /* invalid code marker */\n //table.bits[opts.table_index] = 1; //here.bits = (var char)1;\n //table.val[opts.table_index++] = 0; //here.val = (var short)0;\n table[table_index++] = (1 << 24) | (64 << 16) | 0;\n\n\n //table.op[opts.table_index] = 64;\n //table.bits[opts.table_index] = 1;\n //table.val[opts.table_index++] = 0;\n table[table_index++] = (1 << 24) | (64 << 16) | 0;\n\n opts.bits = 1;\n return 0; /* no symbols, but wait for decoding to report error */\n }\n for (min = 1; min < max; min++) {\n if (count[min] !== 0) { break; }\n }\n if (root < min) {\n root = min;\n }\n\n /* check for an over-subscribed or incomplete set of lengths */\n left = 1;\n for (len = 1; len <= MAXBITS; len++) {\n left <<= 1;\n left -= count[len];\n if (left < 0) {\n return -1;\n } /* over-subscribed */\n }\n if (left > 0 && (type === CODES$1 || max !== 1)) {\n return -1; /* incomplete set */\n }\n\n /* generate offsets into symbol table for each length for sorting */\n offs[1] = 0;\n for (len = 1; len < MAXBITS; len++) {\n offs[len + 1] = offs[len] + count[len];\n }\n\n /* sort symbols by length, by symbol order within each length */\n for (sym = 0; sym < codes; sym++) {\n if (lens[lens_index + sym] !== 0) {\n work[offs[lens[lens_index + sym]]++] = sym;\n }\n }\n\n /*\n Create and fill in decoding tables. In this loop, the table being\n filled is at next and has curr index bits. The code being used is huff\n with length len. That code is converted to an index by dropping drop\n bits off of the bottom. For codes where len is less than drop + curr,\n those top drop + curr - len bits are incremented through all values to\n fill the table with replicated entries.\n\n root is the number of index bits for the root table. When len exceeds\n root, sub-tables are created pointed to by the root entry with an index\n of the low root bits of huff. This is saved in low to check for when a\n new sub-table should be started. drop is zero when the root table is\n being filled, and drop is root when sub-tables are being filled.\n\n When a new sub-table is needed, it is necessary to look ahead in the\n code lengths to determine what size sub-table is needed. The length\n counts are used for this, and so count[] is decremented as codes are\n entered in the tables.\n\n used keeps track of how many table entries have been allocated from the\n provided *table space. It is checked for LENS and DIST tables against\n the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in\n the initial root table size constants. See the comments in inftrees.h\n for more information.\n\n sym increments through all symbols, and the loop terminates when\n all codes of length max, i.e. all codes, have been processed. This\n routine permits incomplete codes, so another loop after this one fills\n in the rest of the decoding tables with invalid code markers.\n */\n\n /* set up for code type */\n // poor man optimization - use if-else instead of switch,\n // to avoid deopts in old v8\n if (type === CODES$1) {\n base = extra = work; /* dummy value--not used */\n match = 20;\n\n } else if (type === LENS$1) {\n base = lbase;\n extra = lext;\n match = 257;\n\n } else { /* DISTS */\n base = dbase;\n extra = dext;\n match = 0;\n }\n\n /* initialize opts for loop */\n huff = 0; /* starting code */\n sym = 0; /* starting code symbol */\n len = min; /* starting code length */\n next = table_index; /* current table to fill in */\n curr = root; /* current table index bits */\n drop = 0; /* current bits to drop from code for index */\n low = -1; /* trigger new sub-table when len > root */\n used = 1 << root; /* use root table entries */\n mask = used - 1; /* mask for comparing low */\n\n /* check available table space */\n if ((type === LENS$1 && used > ENOUGH_LENS$1) ||\n (type === DISTS$1 && used > ENOUGH_DISTS$1)) {\n return 1;\n }\n\n /* process all codes and make table entries */\n for (;;) {\n /* create table entry */\n here_bits = len - drop;\n if (work[sym] + 1 < match) {\n here_op = 0;\n here_val = work[sym];\n }\n else if (work[sym] >= match) {\n here_op = extra[work[sym] - match];\n here_val = base[work[sym] - match];\n }\n else {\n here_op = 32 + 64; /* end of block */\n here_val = 0;\n }\n\n /* replicate for those indices with low len bits equal to huff */\n incr = 1 << (len - drop);\n fill = 1 << curr;\n min = fill; /* save offset to next table */\n do {\n fill -= incr;\n table[next + (huff >> drop) + fill] = (here_bits << 24) | (here_op << 16) | here_val |0;\n } while (fill !== 0);\n\n /* backwards increment the len-bit code huff */\n incr = 1 << (len - 1);\n while (huff & incr) {\n incr >>= 1;\n }\n if (incr !== 0) {\n huff &= incr - 1;\n huff += incr;\n } else {\n huff = 0;\n }\n\n /* go to next symbol, update count, len */\n sym++;\n if (--count[len] === 0) {\n if (len === max) { break; }\n len = lens[lens_index + work[sym]];\n }\n\n /* create new sub-table if needed */\n if (len > root && (huff & mask) !== low) {\n /* if first time, transition to sub-tables */\n if (drop === 0) {\n drop = root;\n }\n\n /* increment past last table */\n next += min; /* here min is 1 << curr */\n\n /* determine length of next table */\n curr = len - drop;\n left = 1 << curr;\n while (curr + drop < max) {\n left -= count[curr + drop];\n if (left <= 0) { break; }\n curr++;\n left <<= 1;\n }\n\n /* check for enough space */\n used += 1 << curr;\n if ((type === LENS$1 && used > ENOUGH_LENS$1) ||\n (type === DISTS$1 && used > ENOUGH_DISTS$1)) {\n return 1;\n }\n\n /* point entry in root table to sub-table */\n low = huff & mask;\n /*table.op[low] = curr;\n table.bits[low] = root;\n table.val[low] = next - opts.table_index;*/\n table[low] = (root << 24) | (curr << 16) | (next - table_index) |0;\n }\n }\n\n /* fill in remaining table entry if code is incomplete (guaranteed to have\n at most one remaining entry, since if the code is incomplete, the\n maximum code length that was allowed to get this far is one bit) */\n if (huff !== 0) {\n //table.op[next + huff] = 64; /* invalid code marker */\n //table.bits[next + huff] = len - drop;\n //table.val[next + huff] = 0;\n table[next + huff] = ((len - drop) << 24) | (64 << 16) |0;\n }\n\n /* set return parameters */\n //opts.table_index += used;\n opts.bits = root;\n return 0;\n};\n\n\nvar inftrees = inflate_table;\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n\n\n\n\n\nconst CODES = 0;\nconst LENS = 1;\nconst DISTS = 2;\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_FINISH: Z_FINISH$1, Z_BLOCK, Z_TREES,\n Z_OK: Z_OK$1, Z_STREAM_END: Z_STREAM_END$1, Z_NEED_DICT: Z_NEED_DICT$1, Z_STREAM_ERROR: Z_STREAM_ERROR$1, Z_DATA_ERROR: Z_DATA_ERROR$1, Z_MEM_ERROR: Z_MEM_ERROR$1, Z_BUF_ERROR,\n Z_DEFLATED\n} = constants$2;\n\n\n/* STATES ====================================================================*/\n/* ===========================================================================*/\n\n\nconst HEAD = 16180; /* i: waiting for magic header */\nconst FLAGS = 16181; /* i: waiting for method and flags (gzip) */\nconst TIME = 16182; /* i: waiting for modification time (gzip) */\nconst OS = 16183; /* i: waiting for extra flags and operating system (gzip) */\nconst EXLEN = 16184; /* i: waiting for extra length (gzip) */\nconst EXTRA = 16185; /* i: waiting for extra bytes (gzip) */\nconst NAME = 16186; /* i: waiting for end of file name (gzip) */\nconst COMMENT = 16187; /* i: waiting for end of comment (gzip) */\nconst HCRC = 16188; /* i: waiting for header crc (gzip) */\nconst DICTID = 16189; /* i: waiting for dictionary check value */\nconst DICT = 16190; /* waiting for inflateSetDictionary() call */\nconst TYPE = 16191; /* i: waiting for type bits, including last-flag bit */\nconst TYPEDO = 16192; /* i: same, but skip check to exit inflate on new block */\nconst STORED = 16193; /* i: waiting for stored size (length and complement) */\nconst COPY_ = 16194; /* i/o: same as COPY below, but only first time in */\nconst COPY = 16195; /* i/o: waiting for input or output to copy stored block */\nconst TABLE = 16196; /* i: waiting for dynamic block table lengths */\nconst LENLENS = 16197; /* i: waiting for code length code lengths */\nconst CODELENS = 16198; /* i: waiting for length/lit and distance code lengths */\nconst LEN_ = 16199; /* i: same as LEN below, but only first time in */\nconst LEN = 16200; /* i: waiting for length/lit/eob code */\nconst LENEXT = 16201; /* i: waiting for length extra bits */\nconst DIST = 16202; /* i: waiting for distance code */\nconst DISTEXT = 16203; /* i: waiting for distance extra bits */\nconst MATCH = 16204; /* o: waiting for output space to copy string */\nconst LIT = 16205; /* o: waiting for output space to write literal */\nconst CHECK = 16206; /* i: waiting for 32-bit check value */\nconst LENGTH = 16207; /* i: waiting for 32-bit length (gzip) */\nconst DONE = 16208; /* finished check, done -- remain here until reset */\nconst BAD = 16209; /* got a data error -- remain here until reset */\nconst MEM = 16210; /* got an inflate() memory error -- remain here until reset */\nconst SYNC = 16211; /* looking for synchronization bytes to restart inflate() */\n\n/* ===========================================================================*/\n\n\n\nconst ENOUGH_LENS = 852;\nconst ENOUGH_DISTS = 592;\n//const ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);\n\nconst MAX_WBITS = 15;\n/* 32K LZ77 window */\nconst DEF_WBITS = MAX_WBITS;\n\n\nconst zswap32 = (q) => {\n\n return (((q >>> 24) & 0xff) +\n ((q >>> 8) & 0xff00) +\n ((q & 0xff00) << 8) +\n ((q & 0xff) << 24));\n};\n\n\nfunction InflateState() {\n this.strm = null; /* pointer back to this zlib stream */\n this.mode = 0; /* current inflate mode */\n this.last = false; /* true if processing last block */\n this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip,\n bit 2 true to validate check value */\n this.havedict = false; /* true if dictionary provided */\n this.flags = 0; /* gzip header method and flags (0 if zlib), or\n -1 if raw or no header yet */\n this.dmax = 0; /* zlib header max distance (INFLATE_STRICT) */\n this.check = 0; /* protected copy of check value */\n this.total = 0; /* protected copy of output count */\n // TODO: may be {}\n this.head = null; /* where to save gzip header information */\n\n /* sliding window */\n this.wbits = 0; /* log base 2 of requested window size */\n this.wsize = 0; /* window size or zero if not using window */\n this.whave = 0; /* valid bytes in the window */\n this.wnext = 0; /* window write index */\n this.window = null; /* allocated sliding window, if needed */\n\n /* bit accumulator */\n this.hold = 0; /* input bit accumulator */\n this.bits = 0; /* number of bits in \"in\" */\n\n /* for string and stored block copying */\n this.length = 0; /* literal or length of data to copy */\n this.offset = 0; /* distance back to copy string from */\n\n /* for table and code decoding */\n this.extra = 0; /* extra bits needed */\n\n /* fixed and dynamic code tables */\n this.lencode = null; /* starting table for length/literal codes */\n this.distcode = null; /* starting table for distance codes */\n this.lenbits = 0; /* index bits for lencode */\n this.distbits = 0; /* index bits for distcode */\n\n /* dynamic table building */\n this.ncode = 0; /* number of code length code lengths */\n this.nlen = 0; /* number of length code lengths */\n this.ndist = 0; /* number of distance code lengths */\n this.have = 0; /* number of code lengths in lens[] */\n this.next = null; /* next available space in codes[] */\n\n this.lens = new Uint16Array(320); /* temporary storage for code lengths */\n this.work = new Uint16Array(288); /* work area for code table building */\n\n /*\n because we don't have pointers in js, we use lencode and distcode directly\n as buffers so we don't need codes\n */\n //this.codes = new Int32Array(ENOUGH); /* space for code tables */\n this.lendyn = null; /* dynamic table for length/literal codes (JS specific) */\n this.distdyn = null; /* dynamic table for distance codes (JS specific) */\n this.sane = 0; /* if false, allow invalid distance too far */\n this.back = 0; /* bits back of last unprocessed length/lit */\n this.was = 0; /* initial length of match */\n}\n\n\nconst inflateStateCheck = (strm) => {\n\n if (!strm) {\n return 1;\n }\n const state = strm.state;\n if (!state || state.strm !== strm ||\n state.mode < HEAD || state.mode > SYNC) {\n return 1;\n }\n return 0;\n};\n\n\nconst inflateResetKeep = (strm) => {\n\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n strm.total_in = strm.total_out = state.total = 0;\n strm.msg = ''; /*Z_NULL*/\n if (state.wrap) { /* to support ill-conceived Java test suite */\n strm.adler = state.wrap & 1;\n }\n state.mode = HEAD;\n state.last = 0;\n state.havedict = 0;\n state.flags = -1;\n state.dmax = 32768;\n state.head = null/*Z_NULL*/;\n state.hold = 0;\n state.bits = 0;\n //state.lencode = state.distcode = state.next = state.codes;\n state.lencode = state.lendyn = new Int32Array(ENOUGH_LENS);\n state.distcode = state.distdyn = new Int32Array(ENOUGH_DISTS);\n\n state.sane = 1;\n state.back = -1;\n //Tracev((stderr, \"inflate: reset\\n\"));\n return Z_OK$1;\n};\n\n\nconst inflateReset = (strm) => {\n\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n state.wsize = 0;\n state.whave = 0;\n state.wnext = 0;\n return inflateResetKeep(strm);\n\n};\n\n\nconst inflateReset2 = (strm, windowBits) => {\n let wrap;\n\n /* get the state */\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n\n /* extract wrap request from windowBits parameter */\n if (windowBits < 0) {\n wrap = 0;\n windowBits = -windowBits;\n }\n else {\n wrap = (windowBits >> 4) + 5;\n if (windowBits < 48) {\n windowBits &= 15;\n }\n }\n\n /* set number of window bits, free window if different */\n if (windowBits && (windowBits < 8 || windowBits > 15)) {\n return Z_STREAM_ERROR$1;\n }\n if (state.window !== null && state.wbits !== windowBits) {\n state.window = null;\n }\n\n /* update state and reset the rest of it */\n state.wrap = wrap;\n state.wbits = windowBits;\n return inflateReset(strm);\n};\n\n\nconst inflateInit2 = (strm, windowBits) => {\n\n if (!strm) { return Z_STREAM_ERROR$1; }\n //strm.msg = Z_NULL; /* in case we return an error */\n\n const state = new InflateState();\n\n //if (state === Z_NULL) return Z_MEM_ERROR;\n //Tracev((stderr, \"inflate: allocated\\n\"));\n strm.state = state;\n state.strm = strm;\n state.window = null/*Z_NULL*/;\n state.mode = HEAD; /* to pass state test in inflateReset2() */\n const ret = inflateReset2(strm, windowBits);\n if (ret !== Z_OK$1) {\n strm.state = null/*Z_NULL*/;\n }\n return ret;\n};\n\n\nconst inflateInit = (strm) => {\n\n return inflateInit2(strm, DEF_WBITS);\n};\n\n\n/*\n Return state with length and distance decoding tables and index sizes set to\n fixed code decoding. Normally this returns fixed tables from inffixed.h.\n If BUILDFIXED is defined, then instead this routine builds the tables the\n first time it's called, and returns those tables the first time and\n thereafter. This reduces the size of the code by about 2K bytes, in\n exchange for a little execution time. However, BUILDFIXED should not be\n used for threaded applications, since the rewriting of the tables and virgin\n may not be thread-safe.\n */\nlet virgin = true;\n\nlet lenfix, distfix; // We have no pointers in JS, so keep tables separate\n\n\nconst fixedtables = (state) => {\n\n /* build fixed huffman tables if first call (may not be thread safe) */\n if (virgin) {\n lenfix = new Int32Array(512);\n distfix = new Int32Array(32);\n\n /* literal/length table */\n let sym = 0;\n while (sym < 144) { state.lens[sym++] = 8; }\n while (sym < 256) { state.lens[sym++] = 9; }\n while (sym < 280) { state.lens[sym++] = 7; }\n while (sym < 288) { state.lens[sym++] = 8; }\n\n inftrees(LENS, state.lens, 0, 288, lenfix, 0, state.work, { bits: 9 });\n\n /* distance table */\n sym = 0;\n while (sym < 32) { state.lens[sym++] = 5; }\n\n inftrees(DISTS, state.lens, 0, 32, distfix, 0, state.work, { bits: 5 });\n\n /* do this just once */\n virgin = false;\n }\n\n state.lencode = lenfix;\n state.lenbits = 9;\n state.distcode = distfix;\n state.distbits = 5;\n};\n\n\n/*\n Update the window with the last wsize (normally 32K) bytes written before\n returning. If window does not exist yet, create it. This is only called\n when a window is already in use, or when output has been written during this\n inflate call, but the end of the deflate stream has not been reached yet.\n It is also called to create a window for dictionary data when a dictionary\n is loaded.\n\n Providing output buffers larger than 32K to inflate() should provide a speed\n advantage, since only the last 32K of output is copied to the sliding window\n upon return from inflate(), and since all distances after the first 32K of\n output will fall in the output data, making match copies simpler and faster.\n The advantage may be dependent on the size of the processor's data caches.\n */\nconst updatewindow = (strm, src, end, copy) => {\n\n let dist;\n const state = strm.state;\n\n /* if it hasn't been done already, allocate space for the window */\n if (state.window === null) {\n state.wsize = 1 << state.wbits;\n state.wnext = 0;\n state.whave = 0;\n\n state.window = new Uint8Array(state.wsize);\n }\n\n /* copy state->wsize or less output bytes into the circular window */\n if (copy >= state.wsize) {\n state.window.set(src.subarray(end - state.wsize, end), 0);\n state.wnext = 0;\n state.whave = state.wsize;\n }\n else {\n dist = state.wsize - state.wnext;\n if (dist > copy) {\n dist = copy;\n }\n //zmemcpy(state->window + state->wnext, end - copy, dist);\n state.window.set(src.subarray(end - copy, end - copy + dist), state.wnext);\n copy -= dist;\n if (copy) {\n //zmemcpy(state->window, end - copy, copy);\n state.window.set(src.subarray(end - copy, end), 0);\n state.wnext = copy;\n state.whave = state.wsize;\n }\n else {\n state.wnext += dist;\n if (state.wnext === state.wsize) { state.wnext = 0; }\n if (state.whave < state.wsize) { state.whave += dist; }\n }\n }\n return 0;\n};\n\n\nconst inflate$2 = (strm, flush) => {\n\n let state;\n let input, output; // input/output buffers\n let next; /* next input INDEX */\n let put; /* next output INDEX */\n let have, left; /* available input and output */\n let hold; /* bit buffer */\n let bits; /* bits in bit buffer */\n let _in, _out; /* save starting available input and output */\n let copy; /* number of stored or match bytes to copy */\n let from; /* where to copy match bytes from */\n let from_source;\n let here = 0; /* current decoding table entry */\n let here_bits, here_op, here_val; // paked \"here\" denormalized (JS specific)\n //let last; /* parent table entry */\n let last_bits, last_op, last_val; // paked \"last\" denormalized (JS specific)\n let len; /* length to copy for repeats, bits to drop */\n let ret; /* return code */\n const hbuf = new Uint8Array(4); /* buffer for gzip header crc calculation */\n let opts;\n\n let n; // temporary variable for NEED_BITS\n\n const order = /* permutation of code lengths */\n new Uint8Array([ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ]);\n\n\n if (inflateStateCheck(strm) || !strm.output ||\n (!strm.input && strm.avail_in !== 0)) {\n return Z_STREAM_ERROR$1;\n }\n\n state = strm.state;\n if (state.mode === TYPE) { state.mode = TYPEDO; } /* skip check */\n\n\n //--- LOAD() ---\n put = strm.next_out;\n output = strm.output;\n left = strm.avail_out;\n next = strm.next_in;\n input = strm.input;\n have = strm.avail_in;\n hold = state.hold;\n bits = state.bits;\n //---\n\n _in = have;\n _out = left;\n ret = Z_OK$1;\n\n inf_leave: // goto emulation\n for (;;) {\n switch (state.mode) {\n case HEAD:\n if (state.wrap === 0) {\n state.mode = TYPEDO;\n break;\n }\n //=== NEEDBITS(16);\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((state.wrap & 2) && hold === 0x8b1f) { /* gzip header */\n if (state.wbits === 0) {\n state.wbits = 15;\n }\n state.check = 0/*crc32(0L, Z_NULL, 0)*/;\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = FLAGS;\n break;\n }\n if (state.head) {\n state.head.done = false;\n }\n if (!(state.wrap & 1) || /* check if zlib header allowed */\n (((hold & 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) {\n strm.msg = 'incorrect header check';\n state.mode = BAD;\n break;\n }\n if ((hold & 0x0f)/*BITS(4)*/ !== Z_DEFLATED) {\n strm.msg = 'unknown compression method';\n state.mode = BAD;\n break;\n }\n //--- DROPBITS(4) ---//\n hold >>>= 4;\n bits -= 4;\n //---//\n len = (hold & 0x0f)/*BITS(4)*/ + 8;\n if (state.wbits === 0) {\n state.wbits = len;\n }\n if (len > 15 || len > state.wbits) {\n strm.msg = 'invalid window size';\n state.mode = BAD;\n break;\n }\n\n // !!! pako patch. Force use `options.windowBits` if passed.\n // Required to always use max window size by default.\n state.dmax = 1 << state.wbits;\n //state.dmax = 1 << len;\n\n state.flags = 0; /* indicate zlib header */\n //Tracev((stderr, \"inflate: zlib header ok\\n\"));\n strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;\n state.mode = hold & 0x200 ? DICTID : TYPE;\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n break;\n case FLAGS:\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.flags = hold;\n if ((state.flags & 0xff) !== Z_DEFLATED) {\n strm.msg = 'unknown compression method';\n state.mode = BAD;\n break;\n }\n if (state.flags & 0xe000) {\n strm.msg = 'unknown header flags set';\n state.mode = BAD;\n break;\n }\n if (state.head) {\n state.head.text = ((hold >> 8) & 1);\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = TIME;\n /* falls through */\n case TIME:\n //=== NEEDBITS(32); */\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if (state.head) {\n state.head.time = hold;\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC4(state.check, hold)\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n hbuf[2] = (hold >>> 16) & 0xff;\n hbuf[3] = (hold >>> 24) & 0xff;\n state.check = crc32_1(state.check, hbuf, 4, 0);\n //===\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = OS;\n /* falls through */\n case OS:\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if (state.head) {\n state.head.xflags = (hold & 0xff);\n state.head.os = (hold >> 8);\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = EXLEN;\n /* falls through */\n case EXLEN:\n if (state.flags & 0x0400) {\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.length = hold;\n if (state.head) {\n state.head.extra_len = hold;\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n }\n else if (state.head) {\n state.head.extra = null/*Z_NULL*/;\n }\n state.mode = EXTRA;\n /* falls through */\n case EXTRA:\n if (state.flags & 0x0400) {\n copy = state.length;\n if (copy > have) { copy = have; }\n if (copy) {\n if (state.head) {\n len = state.head.extra_len - state.length;\n if (!state.head.extra) {\n // Use untyped array for more convenient processing later\n state.head.extra = new Uint8Array(state.head.extra_len);\n }\n state.head.extra.set(\n input.subarray(\n next,\n // extra field is limited to 65536 bytes\n // - no need for additional size check\n next + copy\n ),\n /*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/\n len\n );\n //zmemcpy(state.head.extra + len, next,\n // len + copy > state.head.extra_max ?\n // state.head.extra_max - len : copy);\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n state.check = crc32_1(state.check, input, copy, next);\n }\n have -= copy;\n next += copy;\n state.length -= copy;\n }\n if (state.length) { break inf_leave; }\n }\n state.length = 0;\n state.mode = NAME;\n /* falls through */\n case NAME:\n if (state.flags & 0x0800) {\n if (have === 0) { break inf_leave; }\n copy = 0;\n do {\n // TODO: 2 or 1 bytes?\n len = input[next + copy++];\n /* use constant limit because in js we should not preallocate memory */\n if (state.head && len &&\n (state.length < 65536 /*state.head.name_max*/)) {\n state.head.name += String.fromCharCode(len);\n }\n } while (len && copy < have);\n\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n state.check = crc32_1(state.check, input, copy, next);\n }\n have -= copy;\n next += copy;\n if (len) { break inf_leave; }\n }\n else if (state.head) {\n state.head.name = null;\n }\n state.length = 0;\n state.mode = COMMENT;\n /* falls through */\n case COMMENT:\n if (state.flags & 0x1000) {\n if (have === 0) { break inf_leave; }\n copy = 0;\n do {\n len = input[next + copy++];\n /* use constant limit because in js we should not preallocate memory */\n if (state.head && len &&\n (state.length < 65536 /*state.head.comm_max*/)) {\n state.head.comment += String.fromCharCode(len);\n }\n } while (len && copy < have);\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n state.check = crc32_1(state.check, input, copy, next);\n }\n have -= copy;\n next += copy;\n if (len) { break inf_leave; }\n }\n else if (state.head) {\n state.head.comment = null;\n }\n state.mode = HCRC;\n /* falls through */\n case HCRC:\n if (state.flags & 0x0200) {\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((state.wrap & 4) && hold !== (state.check & 0xffff)) {\n strm.msg = 'header crc mismatch';\n state.mode = BAD;\n break;\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n }\n if (state.head) {\n state.head.hcrc = ((state.flags >> 9) & 1);\n state.head.done = true;\n }\n strm.adler = state.check = 0;\n state.mode = TYPE;\n break;\n case DICTID:\n //=== NEEDBITS(32); */\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n strm.adler = state.check = zswap32(hold);\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = DICT;\n /* falls through */\n case DICT:\n if (state.havedict === 0) {\n //--- RESTORE() ---\n strm.next_out = put;\n strm.avail_out = left;\n strm.next_in = next;\n strm.avail_in = have;\n state.hold = hold;\n state.bits = bits;\n //---\n return Z_NEED_DICT$1;\n }\n strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;\n state.mode = TYPE;\n /* falls through */\n case TYPE:\n if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; }\n /* falls through */\n case TYPEDO:\n if (state.last) {\n //--- BYTEBITS() ---//\n hold >>>= bits & 7;\n bits -= bits & 7;\n //---//\n state.mode = CHECK;\n break;\n }\n //=== NEEDBITS(3); */\n while (bits < 3) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.last = (hold & 0x01)/*BITS(1)*/;\n //--- DROPBITS(1) ---//\n hold >>>= 1;\n bits -= 1;\n //---//\n\n switch ((hold & 0x03)/*BITS(2)*/) {\n case 0: /* stored block */\n //Tracev((stderr, \"inflate: stored block%s\\n\",\n // state.last ? \" (last)\" : \"\"));\n state.mode = STORED;\n break;\n case 1: /* fixed block */\n fixedtables(state);\n //Tracev((stderr, \"inflate: fixed codes block%s\\n\",\n // state.last ? \" (last)\" : \"\"));\n state.mode = LEN_; /* decode codes */\n if (flush === Z_TREES) {\n //--- DROPBITS(2) ---//\n hold >>>= 2;\n bits -= 2;\n //---//\n break inf_leave;\n }\n break;\n case 2: /* dynamic block */\n //Tracev((stderr, \"inflate: dynamic codes block%s\\n\",\n // state.last ? \" (last)\" : \"\"));\n state.mode = TABLE;\n break;\n case 3:\n strm.msg = 'invalid block type';\n state.mode = BAD;\n }\n //--- DROPBITS(2) ---//\n hold >>>= 2;\n bits -= 2;\n //---//\n break;\n case STORED:\n //--- BYTEBITS() ---// /* go to byte boundary */\n hold >>>= bits & 7;\n bits -= bits & 7;\n //---//\n //=== NEEDBITS(32); */\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) {\n strm.msg = 'invalid stored block lengths';\n state.mode = BAD;\n break;\n }\n state.length = hold & 0xffff;\n //Tracev((stderr, \"inflate: stored length %u\\n\",\n // state.length));\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = COPY_;\n if (flush === Z_TREES) { break inf_leave; }\n /* falls through */\n case COPY_:\n state.mode = COPY;\n /* falls through */\n case COPY:\n copy = state.length;\n if (copy) {\n if (copy > have) { copy = have; }\n if (copy > left) { copy = left; }\n if (copy === 0) { break inf_leave; }\n //--- zmemcpy(put, next, copy); ---\n output.set(input.subarray(next, next + copy), put);\n //---//\n have -= copy;\n next += copy;\n left -= copy;\n put += copy;\n state.length -= copy;\n break;\n }\n //Tracev((stderr, \"inflate: stored end\\n\"));\n state.mode = TYPE;\n break;\n case TABLE:\n //=== NEEDBITS(14); */\n while (bits < 14) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.nlen = (hold & 0x1f)/*BITS(5)*/ + 257;\n //--- DROPBITS(5) ---//\n hold >>>= 5;\n bits -= 5;\n //---//\n state.ndist = (hold & 0x1f)/*BITS(5)*/ + 1;\n //--- DROPBITS(5) ---//\n hold >>>= 5;\n bits -= 5;\n //---//\n state.ncode = (hold & 0x0f)/*BITS(4)*/ + 4;\n //--- DROPBITS(4) ---//\n hold >>>= 4;\n bits -= 4;\n //---//\n//#ifndef PKZIP_BUG_WORKAROUND\n if (state.nlen > 286 || state.ndist > 30) {\n strm.msg = 'too many length or distance symbols';\n state.mode = BAD;\n break;\n }\n//#endif\n //Tracev((stderr, \"inflate: table sizes ok\\n\"));\n state.have = 0;\n state.mode = LENLENS;\n /* falls through */\n case LENLENS:\n while (state.have < state.ncode) {\n //=== NEEDBITS(3);\n while (bits < 3) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.lens[order[state.have++]] = (hold & 0x07);//BITS(3);\n //--- DROPBITS(3) ---//\n hold >>>= 3;\n bits -= 3;\n //---//\n }\n while (state.have < 19) {\n state.lens[order[state.have++]] = 0;\n }\n // We have separate tables & no pointers. 2 commented lines below not needed.\n //state.next = state.codes;\n //state.lencode = state.next;\n // Switch to use dynamic table\n state.lencode = state.lendyn;\n state.lenbits = 7;\n\n opts = { bits: state.lenbits };\n ret = inftrees(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts);\n state.lenbits = opts.bits;\n\n if (ret) {\n strm.msg = 'invalid code lengths set';\n state.mode = BAD;\n break;\n }\n //Tracev((stderr, \"inflate: code lengths ok\\n\"));\n state.have = 0;\n state.mode = CODELENS;\n /* falls through */\n case CODELENS:\n while (state.have < state.nlen + state.ndist) {\n for (;;) {\n here = state.lencode[hold & ((1 << state.lenbits) - 1)];/*BITS(state.lenbits)*/\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n if (here_val < 16) {\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n state.lens[state.have++] = here_val;\n }\n else {\n if (here_val === 16) {\n //=== NEEDBITS(here.bits + 2);\n n = here_bits + 2;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n if (state.have === 0) {\n strm.msg = 'invalid bit length repeat';\n state.mode = BAD;\n break;\n }\n len = state.lens[state.have - 1];\n copy = 3 + (hold & 0x03);//BITS(2);\n //--- DROPBITS(2) ---//\n hold >>>= 2;\n bits -= 2;\n //---//\n }\n else if (here_val === 17) {\n //=== NEEDBITS(here.bits + 3);\n n = here_bits + 3;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n len = 0;\n copy = 3 + (hold & 0x07);//BITS(3);\n //--- DROPBITS(3) ---//\n hold >>>= 3;\n bits -= 3;\n //---//\n }\n else {\n //=== NEEDBITS(here.bits + 7);\n n = here_bits + 7;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n len = 0;\n copy = 11 + (hold & 0x7f);//BITS(7);\n //--- DROPBITS(7) ---//\n hold >>>= 7;\n bits -= 7;\n //---//\n }\n if (state.have + copy > state.nlen + state.ndist) {\n strm.msg = 'invalid bit length repeat';\n state.mode = BAD;\n break;\n }\n while (copy--) {\n state.lens[state.have++] = len;\n }\n }\n }\n\n /* handle error breaks in while */\n if (state.mode === BAD) { break; }\n\n /* check for end-of-block code (better have one) */\n if (state.lens[256] === 0) {\n strm.msg = 'invalid code -- missing end-of-block';\n state.mode = BAD;\n break;\n }\n\n /* build code tables -- note: do not change the lenbits or distbits\n values here (9 and 6) without reading the comments in inftrees.h\n concerning the ENOUGH constants, which depend on those values */\n state.lenbits = 9;\n\n opts = { bits: state.lenbits };\n ret = inftrees(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts);\n // We have separate tables & no pointers. 2 commented lines below not needed.\n // state.next_index = opts.table_index;\n state.lenbits = opts.bits;\n // state.lencode = state.next;\n\n if (ret) {\n strm.msg = 'invalid literal/lengths set';\n state.mode = BAD;\n break;\n }\n\n state.distbits = 6;\n //state.distcode.copy(state.codes);\n // Switch to use dynamic table\n state.distcode = state.distdyn;\n opts = { bits: state.distbits };\n ret = inftrees(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts);\n // We have separate tables & no pointers. 2 commented lines below not needed.\n // state.next_index = opts.table_index;\n state.distbits = opts.bits;\n // state.distcode = state.next;\n\n if (ret) {\n strm.msg = 'invalid distances set';\n state.mode = BAD;\n break;\n }\n //Tracev((stderr, 'inflate: codes ok\\n'));\n state.mode = LEN_;\n if (flush === Z_TREES) { break inf_leave; }\n /* falls through */\n case LEN_:\n state.mode = LEN;\n /* falls through */\n case LEN:\n if (have >= 6 && left >= 258) {\n //--- RESTORE() ---\n strm.next_out = put;\n strm.avail_out = left;\n strm.next_in = next;\n strm.avail_in = have;\n state.hold = hold;\n state.bits = bits;\n //---\n inffast(strm, _out);\n //--- LOAD() ---\n put = strm.next_out;\n output = strm.output;\n left = strm.avail_out;\n next = strm.next_in;\n input = strm.input;\n have = strm.avail_in;\n hold = state.hold;\n bits = state.bits;\n //---\n\n if (state.mode === TYPE) {\n state.back = -1;\n }\n break;\n }\n state.back = 0;\n for (;;) {\n here = state.lencode[hold & ((1 << state.lenbits) - 1)]; /*BITS(state.lenbits)*/\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if (here_bits <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n if (here_op && (here_op & 0xf0) === 0) {\n last_bits = here_bits;\n last_op = here_op;\n last_val = here_val;\n for (;;) {\n here = state.lencode[last_val +\n ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((last_bits + here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n //--- DROPBITS(last.bits) ---//\n hold >>>= last_bits;\n bits -= last_bits;\n //---//\n state.back += last_bits;\n }\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n state.back += here_bits;\n state.length = here_val;\n if (here_op === 0) {\n //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?\n // \"inflate: literal '%c'\\n\" :\n // \"inflate: literal 0x%02x\\n\", here.val));\n state.mode = LIT;\n break;\n }\n if (here_op & 32) {\n //Tracevv((stderr, \"inflate: end of block\\n\"));\n state.back = -1;\n state.mode = TYPE;\n break;\n }\n if (here_op & 64) {\n strm.msg = 'invalid literal/length code';\n state.mode = BAD;\n break;\n }\n state.extra = here_op & 15;\n state.mode = LENEXT;\n /* falls through */\n case LENEXT:\n if (state.extra) {\n //=== NEEDBITS(state.extra);\n n = state.extra;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.length += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;\n //--- DROPBITS(state.extra) ---//\n hold >>>= state.extra;\n bits -= state.extra;\n //---//\n state.back += state.extra;\n }\n //Tracevv((stderr, \"inflate: length %u\\n\", state.length));\n state.was = state.length;\n state.mode = DIST;\n /* falls through */\n case DIST:\n for (;;) {\n here = state.distcode[hold & ((1 << state.distbits) - 1)];/*BITS(state.distbits)*/\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n if ((here_op & 0xf0) === 0) {\n last_bits = here_bits;\n last_op = here_op;\n last_val = here_val;\n for (;;) {\n here = state.distcode[last_val +\n ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((last_bits + here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n //--- DROPBITS(last.bits) ---//\n hold >>>= last_bits;\n bits -= last_bits;\n //---//\n state.back += last_bits;\n }\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n state.back += here_bits;\n if (here_op & 64) {\n strm.msg = 'invalid distance code';\n state.mode = BAD;\n break;\n }\n state.offset = here_val;\n state.extra = (here_op) & 15;\n state.mode = DISTEXT;\n /* falls through */\n case DISTEXT:\n if (state.extra) {\n //=== NEEDBITS(state.extra);\n n = state.extra;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.offset += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;\n //--- DROPBITS(state.extra) ---//\n hold >>>= state.extra;\n bits -= state.extra;\n //---//\n state.back += state.extra;\n }\n//#ifdef INFLATE_STRICT\n if (state.offset > state.dmax) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD;\n break;\n }\n//#endif\n //Tracevv((stderr, \"inflate: distance %u\\n\", state.offset));\n state.mode = MATCH;\n /* falls through */\n case MATCH:\n if (left === 0) { break inf_leave; }\n copy = _out - left;\n if (state.offset > copy) { /* copy from window */\n copy = state.offset - copy;\n if (copy > state.whave) {\n if (state.sane) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD;\n break;\n }\n// (!) This block is disabled in zlib defaults,\n// don't enable it for binary compatibility\n//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR\n// Trace((stderr, \"inflate.c too far\\n\"));\n// copy -= state.whave;\n// if (copy > state.length) { copy = state.length; }\n// if (copy > left) { copy = left; }\n// left -= copy;\n// state.length -= copy;\n// do {\n// output[put++] = 0;\n// } while (--copy);\n// if (state.length === 0) { state.mode = LEN; }\n// break;\n//#endif\n }\n if (copy > state.wnext) {\n copy -= state.wnext;\n from = state.wsize - copy;\n }\n else {\n from = state.wnext - copy;\n }\n if (copy > state.length) { copy = state.length; }\n from_source = state.window;\n }\n else { /* copy from output */\n from_source = output;\n from = put - state.offset;\n copy = state.length;\n }\n if (copy > left) { copy = left; }\n left -= copy;\n state.length -= copy;\n do {\n output[put++] = from_source[from++];\n } while (--copy);\n if (state.length === 0) { state.mode = LEN; }\n break;\n case LIT:\n if (left === 0) { break inf_leave; }\n output[put++] = state.length;\n left--;\n state.mode = LEN;\n break;\n case CHECK:\n if (state.wrap) {\n //=== NEEDBITS(32);\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n // Use '|' instead of '+' to make sure that result is signed\n hold |= input[next++] << bits;\n bits += 8;\n }\n //===//\n _out -= left;\n strm.total_out += _out;\n state.total += _out;\n if ((state.wrap & 4) && _out) {\n strm.adler = state.check =\n /*UPDATE_CHECK(state.check, put - _out, _out);*/\n (state.flags ? crc32_1(state.check, output, _out, put - _out) : adler32_1(state.check, output, _out, put - _out));\n\n }\n _out = left;\n // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too\n if ((state.wrap & 4) && (state.flags ? hold : zswap32(hold)) !== state.check) {\n strm.msg = 'incorrect data check';\n state.mode = BAD;\n break;\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n //Tracev((stderr, \"inflate: check matches trailer\\n\"));\n }\n state.mode = LENGTH;\n /* falls through */\n case LENGTH:\n if (state.wrap && state.flags) {\n //=== NEEDBITS(32);\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((state.wrap & 4) && hold !== (state.total & 0xffffffff)) {\n strm.msg = 'incorrect length check';\n state.mode = BAD;\n break;\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n //Tracev((stderr, \"inflate: length matches trailer\\n\"));\n }\n state.mode = DONE;\n /* falls through */\n case DONE:\n ret = Z_STREAM_END$1;\n break inf_leave;\n case BAD:\n ret = Z_DATA_ERROR$1;\n break inf_leave;\n case MEM:\n return Z_MEM_ERROR$1;\n case SYNC:\n /* falls through */\n default:\n return Z_STREAM_ERROR$1;\n }\n }\n\n // inf_leave <- here is real place for \"goto inf_leave\", emulated via \"break inf_leave\"\n\n /*\n Return from inflate(), updating the total counts and the check value.\n If there was no progress during the inflate() call, return a buffer\n error. Call updatewindow() to create and/or update the window state.\n Note: a memory error from inflate() is non-recoverable.\n */\n\n //--- RESTORE() ---\n strm.next_out = put;\n strm.avail_out = left;\n strm.next_in = next;\n strm.avail_in = have;\n state.hold = hold;\n state.bits = bits;\n //---\n\n if (state.wsize || (_out !== strm.avail_out && state.mode < BAD &&\n (state.mode < CHECK || flush !== Z_FINISH$1))) {\n if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) ;\n }\n _in -= strm.avail_in;\n _out -= strm.avail_out;\n strm.total_in += _in;\n strm.total_out += _out;\n state.total += _out;\n if ((state.wrap & 4) && _out) {\n strm.adler = state.check = /*UPDATE_CHECK(state.check, strm.next_out - _out, _out);*/\n (state.flags ? crc32_1(state.check, output, _out, strm.next_out - _out) : adler32_1(state.check, output, _out, strm.next_out - _out));\n }\n strm.data_type = state.bits + (state.last ? 64 : 0) +\n (state.mode === TYPE ? 128 : 0) +\n (state.mode === LEN_ || state.mode === COPY_ ? 256 : 0);\n if (((_in === 0 && _out === 0) || flush === Z_FINISH$1) && ret === Z_OK$1) {\n ret = Z_BUF_ERROR;\n }\n return ret;\n};\n\n\nconst inflateEnd = (strm) => {\n\n if (inflateStateCheck(strm)) {\n return Z_STREAM_ERROR$1;\n }\n\n let state = strm.state;\n if (state.window) {\n state.window = null;\n }\n strm.state = null;\n return Z_OK$1;\n};\n\n\nconst inflateGetHeader = (strm, head) => {\n\n /* check state */\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n if ((state.wrap & 2) === 0) { return Z_STREAM_ERROR$1; }\n\n /* save header structure */\n state.head = head;\n head.done = false;\n return Z_OK$1;\n};\n\n\nconst inflateSetDictionary = (strm, dictionary) => {\n const dictLength = dictionary.length;\n\n let state;\n let dictid;\n let ret;\n\n /* check state */\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n state = strm.state;\n\n if (state.wrap !== 0 && state.mode !== DICT) {\n return Z_STREAM_ERROR$1;\n }\n\n /* check for correct dictionary identifier */\n if (state.mode === DICT) {\n dictid = 1; /* adler32(0, null, 0)*/\n /* dictid = adler32(dictid, dictionary, dictLength); */\n dictid = adler32_1(dictid, dictionary, dictLength, 0);\n if (dictid !== state.check) {\n return Z_DATA_ERROR$1;\n }\n }\n /* copy dictionary to window using updatewindow(), which will amend the\n existing dictionary if appropriate */\n ret = updatewindow(strm, dictionary, dictLength, dictLength);\n if (ret) {\n state.mode = MEM;\n return Z_MEM_ERROR$1;\n }\n state.havedict = 1;\n // Tracev((stderr, \"inflate: dictionary set\\n\"));\n return Z_OK$1;\n};\n\n\nvar inflateReset_1 = inflateReset;\nvar inflateReset2_1 = inflateReset2;\nvar inflateResetKeep_1 = inflateResetKeep;\nvar inflateInit_1 = inflateInit;\nvar inflateInit2_1 = inflateInit2;\nvar inflate_2$1 = inflate$2;\nvar inflateEnd_1 = inflateEnd;\nvar inflateGetHeader_1 = inflateGetHeader;\nvar inflateSetDictionary_1 = inflateSetDictionary;\nvar inflateInfo = 'pako inflate (from Nodeca project)';\n\n/* Not implemented\nmodule.exports.inflateCodesUsed = inflateCodesUsed;\nmodule.exports.inflateCopy = inflateCopy;\nmodule.exports.inflateGetDictionary = inflateGetDictionary;\nmodule.exports.inflateMark = inflateMark;\nmodule.exports.inflatePrime = inflatePrime;\nmodule.exports.inflateSync = inflateSync;\nmodule.exports.inflateSyncPoint = inflateSyncPoint;\nmodule.exports.inflateUndermine = inflateUndermine;\nmodule.exports.inflateValidate = inflateValidate;\n*/\n\nvar inflate_1$2 = {\n\tinflateReset: inflateReset_1,\n\tinflateReset2: inflateReset2_1,\n\tinflateResetKeep: inflateResetKeep_1,\n\tinflateInit: inflateInit_1,\n\tinflateInit2: inflateInit2_1,\n\tinflate: inflate_2$1,\n\tinflateEnd: inflateEnd_1,\n\tinflateGetHeader: inflateGetHeader_1,\n\tinflateSetDictionary: inflateSetDictionary_1,\n\tinflateInfo: inflateInfo\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nfunction GZheader() {\n /* true if compressed data believed to be text */\n this.text = 0;\n /* modification time */\n this.time = 0;\n /* extra flags (not used when writing a gzip file) */\n this.xflags = 0;\n /* operating system */\n this.os = 0;\n /* pointer to extra field or Z_NULL if none */\n this.extra = null;\n /* extra field length (valid if extra != Z_NULL) */\n this.extra_len = 0; // Actually, we don't need it in JS,\n // but leave for few code modifications\n\n //\n // Setup limits is not necessary because in js we should not preallocate memory\n // for inflate use constant limit in 65536 bytes\n //\n\n /* space at extra (only when reading header) */\n // this.extra_max = 0;\n /* pointer to zero-terminated file name or Z_NULL */\n this.name = '';\n /* space at name (only when reading header) */\n // this.name_max = 0;\n /* pointer to zero-terminated comment or Z_NULL */\n this.comment = '';\n /* space at comment (only when reading header) */\n // this.comm_max = 0;\n /* true if there was or will be a header crc */\n this.hcrc = 0;\n /* true when done reading gzip header (not used when writing a gzip file) */\n this.done = false;\n}\n\nvar gzheader = GZheader;\n\nconst toString = Object.prototype.toString;\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_NO_FLUSH, Z_FINISH,\n Z_OK, Z_STREAM_END, Z_NEED_DICT, Z_STREAM_ERROR, Z_DATA_ERROR, Z_MEM_ERROR\n} = constants$2;\n\n/* ===========================================================================*/\n\n\n/**\n * class Inflate\n *\n * Generic JS-style wrapper for zlib calls. If you don't need\n * streaming behaviour - use more simple functions: [[inflate]]\n * and [[inflateRaw]].\n **/\n\n/* internal\n * inflate.chunks -> Array\n *\n * Chunks of output data, if [[Inflate#onData]] not overridden.\n **/\n\n/**\n * Inflate.result -> Uint8Array|String\n *\n * Uncompressed result, generated by default [[Inflate#onData]]\n * and [[Inflate#onEnd]] handlers. Filled after you push last chunk\n * (call [[Inflate#push]] with `Z_FINISH` / `true` param).\n **/\n\n/**\n * Inflate.err -> Number\n *\n * Error code after inflate finished. 0 (Z_OK) on success.\n * Should be checked if broken data possible.\n **/\n\n/**\n * Inflate.msg -> String\n *\n * Error message, if [[Inflate.err]] != 0\n **/\n\n\n/**\n * new Inflate(options)\n * - options (Object): zlib inflate options.\n *\n * Creates new inflator instance with specified params. Throws exception\n * on bad params. Supported options:\n *\n * - `windowBits`\n * - `dictionary`\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information on these.\n *\n * Additional options, for internal needs:\n *\n * - `chunkSize` - size of generated data chunks (16K by default)\n * - `raw` (Boolean) - do raw inflate\n * - `to` (String) - if equal to 'string', then result will be converted\n * from utf8 to utf16 (javascript) string. When string output requested,\n * chunk length can differ from `chunkSize`, depending on content.\n *\n * By default, when no options set, autodetect deflate/gzip data format via\n * wrapper header.\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako')\n * const chunk1 = new Uint8Array([1,2,3,4,5,6,7,8,9])\n * const chunk2 = new Uint8Array([10,11,12,13,14,15,16,17,18,19]);\n *\n * const inflate = new pako.Inflate({ level: 3});\n *\n * inflate.push(chunk1, false);\n * inflate.push(chunk2, true); // true -> last chunk\n *\n * if (inflate.err) { throw new Error(inflate.err); }\n *\n * console.log(inflate.result);\n * ```\n **/\nfunction Inflate$1(options) {\n this.options = common.assign({\n chunkSize: 1024 * 64,\n windowBits: 15,\n to: ''\n }, options || {});\n\n const opt = this.options;\n\n // Force window size for `raw` data, if not set directly,\n // because we have no header for autodetect.\n if (opt.raw && (opt.windowBits >= 0) && (opt.windowBits < 16)) {\n opt.windowBits = -opt.windowBits;\n if (opt.windowBits === 0) { opt.windowBits = -15; }\n }\n\n // If `windowBits` not defined (and mode not raw) - set autodetect flag for gzip/deflate\n if ((opt.windowBits >= 0) && (opt.windowBits < 16) &&\n !(options && options.windowBits)) {\n opt.windowBits += 32;\n }\n\n // Gzip header has no info about windows size, we can do autodetect only\n // for deflate. So, if window size not set, force it to max when gzip possible\n if ((opt.windowBits > 15) && (opt.windowBits < 48)) {\n // bit 3 (16) -> gzipped data\n // bit 4 (32) -> autodetect gzip/deflate\n if ((opt.windowBits & 15) === 0) {\n opt.windowBits |= 15;\n }\n }\n\n this.err = 0; // error code, if happens (0 = Z_OK)\n this.msg = ''; // error message\n this.ended = false; // used to avoid multiple onEnd() calls\n this.chunks = []; // chunks of compressed data\n\n this.strm = new zstream();\n this.strm.avail_out = 0;\n\n let status = inflate_1$2.inflateInit2(\n this.strm,\n opt.windowBits\n );\n\n if (status !== Z_OK) {\n throw new Error(messages[status]);\n }\n\n this.header = new gzheader();\n\n inflate_1$2.inflateGetHeader(this.strm, this.header);\n\n // Setup dictionary\n if (opt.dictionary) {\n // Convert data if needed\n if (typeof opt.dictionary === 'string') {\n opt.dictionary = strings.string2buf(opt.dictionary);\n } else if (toString.call(opt.dictionary) === '[object ArrayBuffer]') {\n opt.dictionary = new Uint8Array(opt.dictionary);\n }\n if (opt.raw) { //In raw mode we need to set the dictionary early\n status = inflate_1$2.inflateSetDictionary(this.strm, opt.dictionary);\n if (status !== Z_OK) {\n throw new Error(messages[status]);\n }\n }\n }\n}\n\n/**\n * Inflate#push(data[, flush_mode]) -> Boolean\n * - data (Uint8Array|ArrayBuffer): input data\n * - flush_mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE\n * flush modes. See constants. Skipped or `false` means Z_NO_FLUSH,\n * `true` means Z_FINISH.\n *\n * Sends input data to inflate pipe, generating [[Inflate#onData]] calls with\n * new output chunks. Returns `true` on success. If end of stream detected,\n * [[Inflate#onEnd]] will be called.\n *\n * `flush_mode` is not needed for normal operation, because end of stream\n * detected automatically. You may try to use it for advanced things, but\n * this functionality was not tested.\n *\n * On fail call [[Inflate#onEnd]] with error code and return false.\n *\n * ##### Example\n *\n * ```javascript\n * push(chunk, false); // push one of data chunks\n * ...\n * push(chunk, true); // push last chunk\n * ```\n **/\nInflate$1.prototype.push = function (data, flush_mode) {\n const strm = this.strm;\n const chunkSize = this.options.chunkSize;\n const dictionary = this.options.dictionary;\n let status, _flush_mode, last_avail_out;\n\n if (this.ended) return false;\n\n if (flush_mode === ~~flush_mode) _flush_mode = flush_mode;\n else _flush_mode = flush_mode === true ? Z_FINISH : Z_NO_FLUSH;\n\n // Convert data if needed\n if (toString.call(data) === '[object ArrayBuffer]') {\n strm.input = new Uint8Array(data);\n } else {\n strm.input = data;\n }\n\n strm.next_in = 0;\n strm.avail_in = strm.input.length;\n\n for (;;) {\n if (strm.avail_out === 0) {\n strm.output = new Uint8Array(chunkSize);\n strm.next_out = 0;\n strm.avail_out = chunkSize;\n }\n\n status = inflate_1$2.inflate(strm, _flush_mode);\n\n if (status === Z_NEED_DICT && dictionary) {\n status = inflate_1$2.inflateSetDictionary(strm, dictionary);\n\n if (status === Z_OK) {\n status = inflate_1$2.inflate(strm, _flush_mode);\n } else if (status === Z_DATA_ERROR) {\n // Replace code with more verbose\n status = Z_NEED_DICT;\n }\n }\n\n // Skip snyc markers if more data follows and not raw mode\n while (strm.avail_in > 0 &&\n status === Z_STREAM_END &&\n strm.state.wrap > 0 &&\n data[strm.next_in] !== 0)\n {\n inflate_1$2.inflateReset(strm);\n status = inflate_1$2.inflate(strm, _flush_mode);\n }\n\n switch (status) {\n case Z_STREAM_ERROR:\n case Z_DATA_ERROR:\n case Z_NEED_DICT:\n case Z_MEM_ERROR:\n this.onEnd(status);\n this.ended = true;\n return false;\n }\n\n // Remember real `avail_out` value, because we may patch out buffer content\n // to align utf8 strings boundaries.\n last_avail_out = strm.avail_out;\n\n if (strm.next_out) {\n if (strm.avail_out === 0 || status === Z_STREAM_END) {\n\n if (this.options.to === 'string') {\n\n let next_out_utf8 = strings.utf8border(strm.output, strm.next_out);\n\n let tail = strm.next_out - next_out_utf8;\n let utf8str = strings.buf2string(strm.output, next_out_utf8);\n\n // move tail & realign counters\n strm.next_out = tail;\n strm.avail_out = chunkSize - tail;\n if (tail) strm.output.set(strm.output.subarray(next_out_utf8, next_out_utf8 + tail), 0);\n\n this.onData(utf8str);\n\n } else {\n this.onData(strm.output.length === strm.next_out ? strm.output : strm.output.subarray(0, strm.next_out));\n }\n }\n }\n\n // Must repeat iteration if out buffer is full\n if (status === Z_OK && last_avail_out === 0) continue;\n\n // Finalize if end of stream reached.\n if (status === Z_STREAM_END) {\n status = inflate_1$2.inflateEnd(this.strm);\n this.onEnd(status);\n this.ended = true;\n return true;\n }\n\n if (strm.avail_in === 0) break;\n }\n\n return true;\n};\n\n\n/**\n * Inflate#onData(chunk) -> Void\n * - chunk (Uint8Array|String): output data. When string output requested,\n * each chunk will be string.\n *\n * By default, stores data blocks in `chunks[]` property and glue\n * those in `onEnd`. Override this handler, if you need another behaviour.\n **/\nInflate$1.prototype.onData = function (chunk) {\n this.chunks.push(chunk);\n};\n\n\n/**\n * Inflate#onEnd(status) -> Void\n * - status (Number): inflate status. 0 (Z_OK) on success,\n * other if not.\n *\n * Called either after you tell inflate that the input stream is\n * complete (Z_FINISH). By default - join collected chunks,\n * free memory and fill `results` / `err` properties.\n **/\nInflate$1.prototype.onEnd = function (status) {\n // On success - join\n if (status === Z_OK) {\n if (this.options.to === 'string') {\n this.result = this.chunks.join('');\n } else {\n this.result = common.flattenChunks(this.chunks);\n }\n }\n this.chunks = [];\n this.err = status;\n this.msg = this.strm.msg;\n};\n\n\n/**\n * inflate(data[, options]) -> Uint8Array|String\n * - data (Uint8Array|ArrayBuffer): input data to decompress.\n * - options (Object): zlib inflate options.\n *\n * Decompress `data` with inflate/ungzip and `options`. Autodetect\n * format via wrapper header by default. That's why we don't provide\n * separate `ungzip` method.\n *\n * Supported options are:\n *\n * - windowBits\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information.\n *\n * Sugar (options):\n *\n * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify\n * negative windowBits implicitly.\n * - `to` (String) - if equal to 'string', then result will be converted\n * from utf8 to utf16 (javascript) string. When string output requested,\n * chunk length can differ from `chunkSize`, depending on content.\n *\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako');\n * const input = pako.deflate(new Uint8Array([1,2,3,4,5,6,7,8,9]));\n * let output;\n *\n * try {\n * output = pako.inflate(input);\n * } catch (err) {\n * console.log(err);\n * }\n * ```\n **/\nfunction inflate$1(input, options) {\n const inflator = new Inflate$1(options);\n\n inflator.push(input);\n\n // That will never happens, if you don't cheat with options :)\n if (inflator.err) throw inflator.msg || messages[inflator.err];\n\n return inflator.result;\n}\n\n\n/**\n * inflateRaw(data[, options]) -> Uint8Array|String\n * - data (Uint8Array|ArrayBuffer): input data to decompress.\n * - options (Object): zlib inflate options.\n *\n * The same as [[inflate]], but creates raw data, without wrapper\n * (header and adler32 crc).\n **/\nfunction inflateRaw$1(input, options) {\n options = options || {};\n options.raw = true;\n return inflate$1(input, options);\n}\n\n\n/**\n * ungzip(data[, options]) -> Uint8Array|String\n * - data (Uint8Array|ArrayBuffer): input data to decompress.\n * - options (Object): zlib inflate options.\n *\n * Just shortcut to [[inflate]], because it autodetects format\n * by header.content. Done for convenience.\n **/\n\n\nvar Inflate_1$1 = Inflate$1;\nvar inflate_2 = inflate$1;\nvar inflateRaw_1$1 = inflateRaw$1;\nvar ungzip$1 = inflate$1;\nvar constants = constants$2;\n\nvar inflate_1$1 = {\n\tInflate: Inflate_1$1,\n\tinflate: inflate_2,\n\tinflateRaw: inflateRaw_1$1,\n\tungzip: ungzip$1,\n\tconstants: constants\n};\n\nconst { Deflate, deflate, deflateRaw, gzip } = deflate_1$1;\n\nconst { Inflate, inflate, inflateRaw, ungzip } = inflate_1$1;\n\n\n\nvar Deflate_1 = Deflate;\nvar deflate_1 = deflate;\nvar deflateRaw_1 = deflateRaw;\nvar gzip_1 = gzip;\nvar Inflate_1 = Inflate;\nvar inflate_1 = inflate;\nvar inflateRaw_1 = inflateRaw;\nvar ungzip_1 = ungzip;\nvar constants_1 = constants$2;\n\nvar pako = {\n\tDeflate: Deflate_1,\n\tdeflate: deflate_1,\n\tdeflateRaw: deflateRaw_1,\n\tgzip: gzip_1,\n\tInflate: Inflate_1,\n\tinflate: inflate_1,\n\tinflateRaw: inflateRaw_1,\n\tungzip: ungzip_1,\n\tconstants: constants_1\n};\n\nexport { Deflate_1 as Deflate, Inflate_1 as Inflate, constants_1 as constants, pako as default, deflate_1 as deflate, deflateRaw_1 as deflateRaw, gzip_1 as gzip, inflate_1 as inflate, inflateRaw_1 as inflateRaw, ungzip_1 as ungzip };\n"],"names":["validator","XMLParser","XMLBuilder","module","ignoreAttributes","Array","attrName","pattern","RegExp","nameStartChar","nameRegexp","regexName","exports","v","obj","Object","target","a","arrayMode","keys","len","i","string","match","regex","matches","allmatches","index","util","defaultOptions","isWhiteSpace","char","readPI","xmlData","start","tagname","getErrorObject","getLineNumberForPosition","readCommentAndCDATA","angleBracketsCount","options","tags","tagFound","reachedRoot","tagStartPos","closingTag","tagName","msg","result","readAttributeStr","attrStr","startChar","tagClosed","attrStrStart","isValid","validateAttributeString","otg","openPos","afterAmp","validateAmpersand","validateNumberAmpersand","re","count","JSON","t","validAttrStrRegxp","attrNames","getPositionFromMatch","undefined","code","message","lineNumber","lines","buildFromOrderedJs","getIgnoreAttributesFn","key","Builder","isAttribute","processTextOrObjNode","indentate","object","level","ajPath","name","jObj","val","jPath","Date","attr","newval","arrLen","listTagVal","listTagAttr","j","item","textValue","Ks","L","tagEndExp","piClosingChar","closeTag","entity","attr_to_str","attrMap","attrVal","replaceEntitiesValue","jArray","indentation","arrToStr","arr","xmlStr","isPreviousElementTag","tagObj","propName","newJPath","tagText","isStopNode","attStr","tempInd","piTextNodeName","newIdentation","tagStart","tagValue","isComment","entities","hasBody","comment","exp","entityName","readEntityExp","Error","validateEntityName","attrs","xmlNode","readDocType","toNumber","addExternalEntities","externalEntities","entKeys","ent","parseTextData","dontTrim","hasAttributes","isLeafNode","escapeEntities","parseValue","trimmedVal","resolveNameSpace","prefix","attrsRegx","buildAttributesMap","oldVal","aName","newVal","attrCollection","parseXml","xmlObj","currentNode","textData","ch","closeIndex","findClosingIndex","colonIndex","lastTagName","propIndex","tagData","readTagExp","childNode","endIndex","tagExp","rawTagName","attrExpPresent","lastTag","tagContent","addChild","saveTextToParentTag","isItStopNode","stopNodes","currentTagName","allNodesExp","stopNodePath","stopNodeExp","str","errMsg","closingIndex","removeNSPrefix","closingChar","tagExpWithClosingIndex","attrBoundary","separatorIndex","readStopNodeData","startIndex","openTagCount","closeTagName","shouldParse","_","String","Number","buildOptions","OrderedObjParser","prettify","validationOption","orderedObjParser","orderedResult","value","node","compress","text","compressedObj","property","newJpath","isLeaf","isLeafTag","textNodeName","propCount","assignAttributes","jpath","atrrName","makeArray","subject","REGEX_TEST_BLANK_LINE","REGEX_INVALID_TRAILING_BACKSLASH","REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION","REGEX_REPLACE_LEADING_EXCAPED_HASH","REGEX_SPLITALL_CRLF","REGEX_TEST_INVALID_PATH","TMP_KEY_IGNORE","Symbol","KEY_IGNORE","define","REGEX_REGEXP_RANGE","RETURN_FALSE","sanitizeRange","range","from","to","cleanRangeBackSlash","slashes","length","REPLACERS","m1","m2","p1","p2","leadEscape","endEscape","close","regexCache","makeRegex","ignoreCase","source","prev","matcher","replacer","isString","checkPattern","splitPattern","IgnoreRule","origin","negative","createRule","throwError","Ctor","checkPath","path","originalPath","doThrow","RangeError","TypeError","isNotRelative","p","Ignore","ignorecase","allowRelativePaths","rule","checkUnignored","ignored","unignored","cache","slices","parent","paths","factory","process","REGIX_IS_WINDOWS_PATH_ABSOLUTE","hexRegex","numRegex","window","consider","trimmedStr","numStr","sign","leadingZeros","numTrimmedByZeros","eNotation","num","TarFileType","encoder","TextEncoder","utf8Encode","input","TextDecoder","TarWriter","file","opts","data","ArrayBuffer","Uint8Array","size","buffer","Math","dataSize","fileData","view","offset","type","writeString","typeView","fillHeader","fileType","uid","gid","mode","mtime","user","group","writeChecksum","header","chksum","itemBuffer","Blob","bytes","$c5a24bc478652b5f$export$1005530eda016c13","collection","$c5a24bc478652b5f$export$fbdeaa6a76694f71","iterable","$c5a24bc478652b5f$export$5f3398f8733f90e2","$c5a24bc478652b5f$export$8c434b3a7a4dad6","b","aAncestors","$c5a24bc478652b5f$var$getAncestors","bAncestors","firstNonMatchingAncestor","parents","currNode","$e5be200c675c3b3a$export$aca958c65c314e6c","$e5be200c675c3b3a$var$CUSTOM_VALIDITY_STATE","$e5be200c675c3b3a$export$dad6ae84456c676a","$e5be200c675c3b3a$export$571b5131b7e65c11","$e5be200c675c3b3a$export$a763b9476acd3eb","$e5be200c675c3b3a$export$fc1a364ae1f3ff10","props","realtimeValidation","displayValidation","updateValidation","resetValidation","commitValidation","$e5be200c675c3b3a$var$useFormValidationStateImpl","isInvalid","validationState","builtinValidation","validate","validationBehavior","controlledError","clientError","$e5be200c675c3b3a$var$getValidationResult","$e5be200c675c3b3a$var$runValidate","e","$e5be200c675c3b3a$var$asArray","serverErrors","serverErrorMessages","lastServerErrors","setLastServerErrors","isServerErrorCleared","setServerErrorCleared","serverError","nextValidation","currentValidity","setCurrentValidity","lastError","commitQueued","setCommitQueued","error","$e5be200c675c3b3a$var$isEqualValidation","errors","k","CsvError","contexts","context","Buffer","normalize_columns_array","columns","normalizedColumns","l","column","buf","encoding","normalize_options","opt","date","isNaN","delimiter_json","delimiter","parseInt","rd","isRecordEmpty","record","field","boms","transform","original_options","bufLen","end","escape","quote","quoting","needMoreDataSize","recordDelimiterMaxLength","numOfCharLeft","nextBuf","push","pos","bom","comment_no_infix","from_line","ltrim","max_record_size","raw","relax_quotes","rtrim","skip_empty_lines","to_line","record_delimiter","bomSkipped","previousBuf","rawBuffer","escapeIsQuote","bomLength","chr","nextChr","isNextChrTrimable","isNextChrComment","isNextChrDelimiter","isNextChrRecordDelimiter","err","info","Boolean","recordDelimiterLength","errField","errRecord","commentCount","delimiterLength","lappend","rappend","group_columns_by_name","relax_column_count","relax_column_count_less","relax_column_count_more","skip_records_with_empty_values","enabled","recordLength","finalErr","objname","extRecord","firstLineToHeaders","headers","normalizedHeaders","cast","wasQuoting","f","on_record","isColumns","parseFloat","isTrim","timchars","loop1","timchar","sourceBuf","targetBuf","targetPos","firstByte","sourceLength","ignore_last_delimiters","del","rdLength","rds","loop","skip_records_with_error","parse","records","parser","err1","err2","common","cycle","number","formatError","exception","compact","where","YAMLException$1","reason","mark","getLine","lineStart","lineEnd","position","maxLineLength","head","tail","maxHalfLength","padStart","max","snippet","lineStarts","lineEnds","foundLineNo","line","lineNoLength","TYPE_CONSTRUCTOR_OPTIONS","YAML_NODE_KINDS","tag","map","style","alias","compileList","schema","currentType","newIndex","previousType","previousIndex","Schema$1","definition","implicit","explicit","type$1","compileMap","collectType","arguments","failsafe","_null","bool","int","c","hasDigits","YAML_FLOAT_PATTERN","SCIENTIFIC_WITHOUT_DOT","float","NaN","res","json","YAML_DATE_REGEXP","YAML_TIMESTAMP_REGEXP","timestamp","year","month","day","hour","minute","second","fraction","delta","tz_hour","merge","BASE64_MAP","binary","idx","bitlen","tailbits","bits","_hasOwnProperty$3","_toString$2","omap","pair","pairKey","pairHasKey","objectKeys","_toString$1","pairs","_hasOwnProperty$2","set","_default","core","_hasOwnProperty$1","PATTERN_NON_PRINTABLE","PATTERN_NON_ASCII_LINE_BREAKS","PATTERN_FLOW_INDICATORS","PATTERN_TAG_HANDLE","PATTERN_TAG_URI","_class","is_EOL","is_WHITE_SPACE","is_WS_OR_EOL","is_FLOW_INDICATOR","simpleEscapeSequence","simpleEscapeCheck","simpleEscapeMap","State$1","generateError","state","throwWarning","directiveHandlers","args","major","minor","handle","decodeURIComponent","captureSegment","checkJson","_position","_length","_character","_result","mergeMappings","destination","overridableKeys","sourceKeys","quantity","storeMappingPair","keyTag","keyNode","valueNode","startLine","startLineStart","startPos","readLineBreak","skipSeparationSpace","allowComments","checkIndent","lineBreaks","testDocumentSeparator","writeFoldedLines","readBlockSequence","nodeIndent","_line","_tag","_anchor","detected","composeNode","parentIndent","nodeContext","allowToSeek","allowCompact","allowBlockStyles","allowBlockScalars","allowBlockCollections","typeIndex","typeQuantity","typeList","flowIndent","blockIndent","indentStatus","atNewLine","hasContent","CONTEXT_BLOCK_OUT","CONTEXT_BLOCK_IN","readTagProperty","tagHandle","isVerbatim","isNamed","readAnchorProperty","CONTEXT_FLOW_IN","CONTEXT_FLOW_OUT","readBlockMapping","following","_keyLine","_keyLineStart","_keyPos","atExplicitKey","readFlowCollection","_lineStart","_pos","terminator","isPair","isExplicitPair","isMapping","readNext","readBlockScalar","captureStart","folding","tmp","chomping","didReadContent","detectedIndent","textIndent","emptyLines","atMoreIndented","CHOMPING_CLIP","readSingleQuotedScalar","captureEnd","readDoubleQuotedScalar","hexLength","hexResult","fromHexCode","lc","readAlias","readPlainScalar","withinFlowCollection","hasPendingContent","_lineIndent","_kind","loadDocuments","nullpos","readDocument","directiveName","directiveArgs","documentStart","hasDirectives","_toString","_hasOwnProperty","ESCAPE_SEQUENCES","DEPRECATED_BOOLEANS_SYNTAX","DEPRECATED_BASE60_SYNTAX","indentString","spaces","ind","next","generateNextLine","isWhitespace","isPrintable","isNsCharOrWhitespace","isPlainSafe","inblock","cIsNsCharOrWhitespace","cIsNsChar","codePointAt","first","needIndentIndicator","leadingSpaceRe","blockHeader","indentPerLevel","indentIndicator","clip","keep","dropEndingNewline","foldLine","width","breakRe","curr","writeBlockSequence","writeNode","CHAR_LINE_FEED","detectType","block","iskey","isblockseq","tagStr","duplicateIndex","duplicate","objectOrArray","writeBlockMapping","objectKey","objectValue","explicitPair","pairBuffer","objectKeyList","writeFlowMapping","writeFlowSequence","indent","lineWidth","chooseScalarStyle","singleLineOnly","testAmbiguousType","quotingType","forceQuotes","prevChar","hasLineBreak","hasFoldableLine","shouldTrackWidth","previousLineBreak","plain","isPlainSafeFirst","testImplicitResolving","foldString","nextLF","moreIndented","lineRe","prevMoreIndented","escapeString","escapeSeq","encodeHex","character","encodeURI","renamed","load","documents","static_l_desc","static_d_desc","static_bl_desc","lenfix","distfix","zero$1","HEAP_SIZE$1","extra_lbits","extra_dbits","extra_blbits","bl_order","static_ltree","static_dtree","D_CODES$1","_dist_code","_length_code","MAX_MATCH$1","base_length","base_dist","StaticTreeDesc","static_tree","extra_bits","extra_base","elems","max_length","TreeDesc","dyn_tree","stat_desc","d_code","dist","put_short","s","w","send_bits","Buf_size","send_code","tree","bi_reverse","bi_flush","gen_bitlen","desc","h","n","m","xbits","max_code","stree","has_stree","extra","base","overflow","gen_codes","bl_count","next_code","MAX_BITS$1","tr_static_init","LENGTH_CODES$1","L_CODES$1","LITERALS$1","init_block","END_BLOCK","bi_windup","smaller","depth","_n2","_m2","pqdownheap","compress_block","ltree","dtree","sx","build_tree","scan_tree","curlen","prevlen","nextlen","max_count","min_count","REP_3_6","REPZ_3_10","REPZ_11_138","send_tree","build_bl_tree","max_blindex","BL_CODES$1","send_all_trees","lcodes","dcodes","blcodes","rank","detect_data_type","block_mask","static_init_done","_tr_stored_block$1","stored_len","last","STORED_BLOCK","trees","opt_lenb","static_lenb","STATIC_TREES","DYN_TREES","adler32_1","adler","s1","s2","crcTable","Uint32Array","makeTable","table","crc32_1","crc","messages","constants$2","_tr_init","_tr_stored_block","_tr_flush_block","_tr_tally","_tr_align","Z_NO_FLUSH$2","Z_PARTIAL_FLUSH","Z_FULL_FLUSH$1","Z_FINISH$3","Z_BLOCK$1","Z_OK$3","Z_STREAM_END$3","Z_STREAM_ERROR$2","Z_DATA_ERROR$2","Z_BUF_ERROR$1","Z_DEFAULT_COMPRESSION$1","Z_FILTERED","Z_HUFFMAN_ONLY","Z_RLE","Z_FIXED","Z_DEFAULT_STRATEGY$1","Z_UNKNOWN","Z_DEFLATED$2","HEAP_SIZE","strm","errorCode","zero","slide_hash","wsize","HASH","flush_pending","flush_block_only","put_byte","putShortMSB","read_buf","longest_match","cur_match","chain_length","scan","best_len","nice_match","limit","MAX_MATCH","_win","wmask","strend","scan_end1","scan_end","fill_window","more","_w_size","deflate_stored","flush","min_block","left","have","used","deflate_fast","hash_head","bflush","MIN_MATCH","deflate_slow","max_insert","deflate_rle","deflate_huff","Config","good_length","max_lazy","nice_length","max_chain","func","configuration_table","lm_init","DeflateState","Uint16Array","MAX_BITS","deflateStateCheck","deflateResetKeep","deflateReset","ret","deflate_1$2","method","windowBits","memLevel","strategy","wrap","old_flush","level_flags","beg","copy","gzhead_extra","bstate","status","dictionary","dictLength","tmpDict","avail","_has","sources","chunks","chunk","STR_APPLY_UIA_OK","__","_utf8len","q","buf2binstring","strings","c2","m_pos","str_len","buf_len","out","utf16buf","c_len","zstream","toString$1","Z_NO_FLUSH$1","Z_SYNC_FLUSH","Z_FULL_FLUSH","Z_FINISH$2","Z_OK$2","Z_STREAM_END$2","Z_DEFAULT_COMPRESSION","Z_DEFAULT_STRATEGY","Z_DEFLATED$1","Deflate$1","dict","deflate$1","deflator","flush_mode","_flush_mode","chunkSize","inffast","_in","_out","dmax","whave","wnext","s_window","hold","lcode","dcode","lmask","dmask","here","op","from_source","output","top","lbase","lext","dbase","dext","inftrees","lens","lens_index","codes","table_index","work","incr","fill","low","mask","here_bits","here_op","here_val","sym","min","root","drop","huff","MAXBITS","offs","Z_FINISH$1","Z_BLOCK","Z_TREES","Z_OK$1","Z_STREAM_END$1","Z_NEED_DICT$1","Z_STREAM_ERROR$1","Z_DATA_ERROR$1","Z_MEM_ERROR$1","Z_BUF_ERROR","Z_DEFLATED","zswap32","InflateState","inflateStateCheck","inflateResetKeep","Int32Array","inflateReset","inflateReset2","virgin","fixedtables","updatewindow","src","inflate_1$2","put","last_bits","last_op","last_val","hbuf","order","inf_leave","dictid","gzheader","toString","Z_NO_FLUSH","Z_FINISH","Z_OK","Z_STREAM_END","Z_NEED_DICT","Z_STREAM_ERROR","Z_DATA_ERROR","Z_MEM_ERROR","Inflate$1","inflate$1","inflator","last_avail_out","next_out_utf8","utf8str","Deflate","deflate","deflateRaw","gzip","Inflate","inflate","inflateRaw","ungzip","pako"],"mappings":"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"}