pdf.image_decoders.min.js 165 KB

12345678910111213141516171819202122
  1. /**
  2. * @licstart The following is the entire license notice for the
  3. * Javascript code in this page
  4. *
  5. * Copyright 2021 Mozilla Foundation
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS,
  15. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. *
  19. * @licend The above is the entire license notice for the
  20. * Javascript code in this page
  21. */
  22. !function webpackUniversalModuleDefinition(t,r){"object"==typeof exports&&"object"==typeof module?module.exports=r():"function"==typeof define&&define.amd?define("pdfjs-dist/image_decoders/pdf.image_decoders",[],r):"object"==typeof exports?exports["pdfjs-dist/image_decoders/pdf.image_decoders"]=r():t["pdfjs-dist/image_decoders/pdf.image_decoders"]=t.pdfjsImageDecoders=r()}(this,(function(){return(()=>{var t=[,(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.arrayByteLength=arrayByteLength;r.arraysToBytes=function arraysToBytes(t){var r=t.length;if(1===r&&t[0]instanceof Uint8Array)return t[0];for(var i=0,o=0;o<r;o++)i+=arrayByteLength(t[o]);for(var a=0,c=new Uint8Array(i),l=0;l<r;l++){var u=t[l];u instanceof Uint8Array||(u="string"==typeof u?stringToBytes(u):new Uint8Array(u));var h=u.byteLength;c.set(u,a);a+=h}return c};r.assert=assert;r.bytesToString=function bytesToString(t){assert(null!==t&&"object"===_typeof(t)&&void 0!==t.length,"Invalid argument for bytesToString");var r=t.length,i=8192;if(r<i)return String.fromCharCode.apply(null,t);for(var o=[],a=0;a<r;a+=i){var c=Math.min(a+i,r),l=t.subarray(a,c);o.push(String.fromCharCode.apply(null,l))}return o.join("")};r.createObjectURL=function createObjectURL(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if(URL.createObjectURL&&!i)return URL.createObjectURL(new Blob([t],{type:r}));for(var o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",a="data:".concat(r,";base64,"),c=0,l=t.length;c<l;c+=3){var u=255&t[c],h=255&t[c+1],d=255&t[c+2],p=u>>2,m=(3&u)<<4|h>>4,y=c+1<l?(15&h)<<2|d>>6:64,v=c+2<l?63&d:64;a+=o[p]+o[m]+o[y]+o[v]}return a};r.createPromiseCapability=function createPromiseCapability(){var t=Object.create(null),r=!1;Object.defineProperty(t,"settled",{get:function get(){return r}});t.promise=new Promise((function(i,o){t.resolve=function(t){r=!0;i(t)};t.reject=function(t){r=!0;o(t)}}));return t};r.createValidAbsoluteUrl=function createValidAbsoluteUrl(t,r){if(!t)return null;try{var i=r?new URL(t,r):new URL(t);if(function _isValidProtocol(t){if(!t)return!1;switch(t.protocol){case"http:":case"https:":case"ftp:":case"mailto:":case"tel:":return!0;default:return!1}}(i))return i}catch(t){}return null};r.escapeString=function escapeString(t){return t.replace(/([()\\\n\r])/g,(function(t){return"\n"===t?"\\n":"\r"===t?"\\r":"\\".concat(t)}))};r.getModificationDate=function getModificationDate(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:new Date,r=[t.getUTCFullYear().toString(),(t.getUTCMonth()+1).toString().padStart(2,"0"),t.getUTCDate().toString().padStart(2,"0"),t.getUTCHours().toString().padStart(2,"0"),t.getUTCMinutes().toString().padStart(2,"0"),t.getUTCSeconds().toString().padStart(2,"0")];return r.join("")};r.getVerbosityLevel=function getVerbosityLevel(){return a};r.info=function info(t){a>=o.INFOS&&console.log("Info: ".concat(t))};r.isArrayBuffer=function isArrayBuffer(t){return"object"===_typeof(t)&&null!==t&&void 0!==t.byteLength};r.isArrayEqual=function isArrayEqual(t,r){if(t.length!==r.length)return!1;for(var i=0,o=t.length;i<o;i++)if(t[i]!==r[i])return!1;return!0};r.isAscii=function isAscii(t){return/^[\x00-\x7F]*$/.test(t)};r.isBool=function isBool(t){return"boolean"==typeof t};r.isNum=function isNum(t){return"number"==typeof t};r.isSameOrigin=function isSameOrigin(t,r){var i;try{if(!(i=new URL(t)).origin||"null"===i.origin)return!1}catch(t){return!1}var o=new URL(r,i);return i.origin===o.origin};r.isString=function isString(t){return"string"==typeof t};r.objectFromMap=function objectFromMap(t){var r,i=Object.create(null),o=function _createForOfIteratorHelper(t,r){var i="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!i){if(Array.isArray(t)||(i=_unsupportedIterableToArray(t))||r&&t&&"number"==typeof t.length){i&&(t=i);var o=0,a=function F(){};return{s:a,n:function n(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}},e:function e(t){throw t},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var c,l=!0,u=!1;return{s:function s(){i=i.call(t)},n:function n(){var t=i.next();l=t.done;return t},e:function e(t){u=!0;c=t},f:function f(){try{l||null==i.return||i.return()}finally{if(u)throw c}}}}(t);try{for(o.s();!(r=o.n()).done;){var a=(u=r.value,h=2,function _arrayWithHoles(t){if(Array.isArray(t))return t}(u)||function _iterableToArrayLimit(t,r){var i=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null==i)return;var o,a,c=[],l=!0,u=!1;try{for(i=i.call(t);!(l=(o=i.next()).done);l=!0){c.push(o.value);if(r&&c.length===r)break}}catch(t){u=!0;a=t}finally{try{l||null==i.return||i.return()}finally{if(u)throw a}}return c}(u,h)||_unsupportedIterableToArray(u,h)||function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),c=a[0],l=a[1];i[c]=l}}catch(t){o.e(t)}finally{o.f()}var u,h;return i};r.objectSize=function objectSize(t){return Object.keys(t).length};r.removeNullCharacters=function removeNullCharacters(t){if("string"!=typeof t){warn("The argument for removeNullCharacters must be a string.");return t}return t.replace(v,"")};r.setVerbosityLevel=function setVerbosityLevel(t){Number.isInteger(t)&&(a=t)};r.shadow=shadow;r.string32=function string32(t){return String.fromCharCode(t>>24&255,t>>16&255,t>>8&255,255&t)};r.stringToBytes=stringToBytes;r.stringToPDFString=function stringToPDFString(t){var r=t.length,i=[];if("þ"===t[0]&&"ÿ"===t[1])for(var o=2;o<r;o+=2)i.push(String.fromCharCode(t.charCodeAt(o)<<8|t.charCodeAt(o+1)));else if("ÿ"===t[0]&&"þ"===t[1])for(var a=2;a<r;a+=2)i.push(String.fromCharCode(t.charCodeAt(a+1)<<8|t.charCodeAt(a)));else for(var c=0;c<r;++c){var l=_[t.charCodeAt(c)];i.push(l?String.fromCharCode(l):t.charAt(c))}return i.join("")};r.stringToUTF16BEString=function stringToUTF16BEString(t){for(var r=["þÿ"],i=0,o=t.length;i<o;i++){var a=t.charCodeAt(i);r.push(String.fromCharCode(a>>8&255),String.fromCharCode(255&a))}return r.join("")};r.stringToUTF8String=function stringToUTF8String(t){return decodeURIComponent(escape(t))};r.unreachable=unreachable;r.utf8StringToString=function utf8StringToString(t){return unescape(encodeURIComponent(t))};r.warn=warn;r.VerbosityLevel=r.Util=r.UNSUPPORTED_FEATURES=r.UnknownErrorException=r.UnexpectedResponseException=r.TextRenderingMode=r.StreamType=r.PermissionFlag=r.PasswordResponses=r.PasswordException=r.PageActionEventType=r.OPS=r.MissingPDFException=r.IsLittleEndianCached=r.IsEvalSupportedCached=r.InvalidPDFException=r.ImageKind=r.IDENTITY_MATRIX=r.FormatError=r.FontType=r.FONT_IDENTITY_MATRIX=r.DocumentActionEventType=r.CMapCompressionType=r.BaseException=r.AnnotationType=r.AnnotationStateModelType=r.AnnotationReviewState=r.AnnotationReplyType=r.AnnotationMarkedState=r.AnnotationFlag=r.AnnotationFieldFlag=r.AnnotationBorderStyleType=r.AnnotationActionEventType=r.AbortException=void 0;i(2);function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}function _unsupportedIterableToArray(t,r){if(t){if("string"==typeof t)return _arrayLikeToArray(t,r);var i=Object.prototype.toString.call(t).slice(8,-1);"Object"===i&&t.constructor&&(i=t.constructor.name);return"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?_arrayLikeToArray(t,r):void 0}}function _arrayLikeToArray(t,r){(null==r||r>t.length)&&(r=t.length);for(var i=0,o=new Array(r);i<r;i++)o[i]=t[i];return o}function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _inherits(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}});r&&_setPrototypeOf(t,r)}function _setPrototypeOf(t,r){return(_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(t,r){t.__proto__=r;return t})(t,r)}function _createSuper(t){var r=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})));return!0}catch(t){return!1}}();return function _createSuperInternal(){var i,o=_getPrototypeOf(t);if(r){var a=_getPrototypeOf(this).constructor;i=Reflect.construct(o,arguments,a)}else i=o.apply(this,arguments);return _possibleConstructorReturn(this,i)}}function _possibleConstructorReturn(t,r){return!r||"object"!==_typeof(r)&&"function"!=typeof r?function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):r}function _getPrototypeOf(t){return(_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}r.IDENTITY_MATRIX=[1,0,0,1,0,0];r.FONT_IDENTITY_MATRIX=[.001,0,0,.001,0,0];r.PermissionFlag={PRINT:4,MODIFY_CONTENTS:8,COPY:16,MODIFY_ANNOTATIONS:32,FILL_INTERACTIVE_FORMS:256,COPY_FOR_ACCESSIBILITY:512,ASSEMBLE:1024,PRINT_HIGH_QUALITY:2048};r.TextRenderingMode={FILL:0,STROKE:1,FILL_STROKE:2,INVISIBLE:3,FILL_ADD_TO_PATH:4,STROKE_ADD_TO_PATH:5,FILL_STROKE_ADD_TO_PATH:6,ADD_TO_PATH:7,FILL_STROKE_MASK:3,ADD_TO_PATH_FLAG:4};r.ImageKind={GRAYSCALE_1BPP:1,RGB_24BPP:2,RGBA_32BPP:3};r.AnnotationType={TEXT:1,LINK:2,FREETEXT:3,LINE:4,SQUARE:5,CIRCLE:6,POLYGON:7,POLYLINE:8,HIGHLIGHT:9,UNDERLINE:10,SQUIGGLY:11,STRIKEOUT:12,STAMP:13,CARET:14,INK:15,POPUP:16,FILEATTACHMENT:17,SOUND:18,MOVIE:19,WIDGET:20,SCREEN:21,PRINTERMARK:22,TRAPNET:23,WATERMARK:24,THREED:25,REDACT:26};r.AnnotationStateModelType={MARKED:"Marked",REVIEW:"Review"};r.AnnotationMarkedState={MARKED:"Marked",UNMARKED:"Unmarked"};r.AnnotationReviewState={ACCEPTED:"Accepted",REJECTED:"Rejected",CANCELLED:"Cancelled",COMPLETED:"Completed",NONE:"None"};r.AnnotationReplyType={GROUP:"Group",REPLY:"R"};r.AnnotationFlag={INVISIBLE:1,HIDDEN:2,PRINT:4,NOZOOM:8,NOROTATE:16,NOVIEW:32,READONLY:64,LOCKED:128,TOGGLENOVIEW:256,LOCKEDCONTENTS:512};r.AnnotationFieldFlag={READONLY:1,REQUIRED:2,NOEXPORT:4,MULTILINE:4096,PASSWORD:8192,NOTOGGLETOOFF:16384,RADIO:32768,PUSHBUTTON:65536,COMBO:131072,EDIT:262144,SORT:524288,FILESELECT:1048576,MULTISELECT:2097152,DONOTSPELLCHECK:4194304,DONOTSCROLL:8388608,COMB:16777216,RICHTEXT:33554432,RADIOSINUNISON:33554432,COMMITONSELCHANGE:67108864};r.AnnotationBorderStyleType={SOLID:1,DASHED:2,BEVELED:3,INSET:4,UNDERLINE:5};r.AnnotationActionEventType={E:"Mouse Enter",X:"Mouse Exit",D:"Mouse Down",U:"Mouse Up",Fo:"Focus",Bl:"Blur",PO:"PageOpen",PC:"PageClose",PV:"PageVisible",PI:"PageInvisible",K:"Keystroke",F:"Format",V:"Validate",C:"Calculate"};r.DocumentActionEventType={WC:"WillClose",WS:"WillSave",DS:"DidSave",WP:"WillPrint",DP:"DidPrint"};r.PageActionEventType={O:"PageOpen",C:"PageClose"};r.StreamType={UNKNOWN:"UNKNOWN",FLATE:"FLATE",LZW:"LZW",DCT:"DCT",JPX:"JPX",JBIG:"JBIG",A85:"A85",AHX:"AHX",CCF:"CCF",RLX:"RLX"};r.FontType={UNKNOWN:"UNKNOWN",TYPE1:"TYPE1",TYPE1STANDARD:"TYPE1STANDARD",TYPE1C:"TYPE1C",CIDFONTTYPE0:"CIDFONTTYPE0",CIDFONTTYPE0C:"CIDFONTTYPE0C",TRUETYPE:"TRUETYPE",CIDFONTTYPE2:"CIDFONTTYPE2",TYPE3:"TYPE3",OPENTYPE:"OPENTYPE",TYPE0:"TYPE0",MMTYPE1:"MMTYPE1"};var o={ERRORS:0,WARNINGS:1,INFOS:5};r.VerbosityLevel=o;r.CMapCompressionType={NONE:0,BINARY:1,STREAM:2};r.OPS={dependency:1,setLineWidth:2,setLineCap:3,setLineJoin:4,setMiterLimit:5,setDash:6,setRenderingIntent:7,setFlatness:8,setGState:9,save:10,restore:11,transform:12,moveTo:13,lineTo:14,curveTo:15,curveTo2:16,curveTo3:17,closePath:18,rectangle:19,stroke:20,closeStroke:21,fill:22,eoFill:23,fillStroke:24,eoFillStroke:25,closeFillStroke:26,closeEOFillStroke:27,endPath:28,clip:29,eoClip:30,beginText:31,endText:32,setCharSpacing:33,setWordSpacing:34,setHScale:35,setLeading:36,setFont:37,setTextRenderingMode:38,setTextRise:39,moveText:40,setLeadingMoveText:41,setTextMatrix:42,nextLine:43,showText:44,showSpacedText:45,nextLineShowText:46,nextLineSetSpacingShowText:47,setCharWidth:48,setCharWidthAndBounds:49,setStrokeColorSpace:50,setFillColorSpace:51,setStrokeColor:52,setStrokeColorN:53,setFillColor:54,setFillColorN:55,setStrokeGray:56,setFillGray:57,setStrokeRGBColor:58,setFillRGBColor:59,setStrokeCMYKColor:60,setFillCMYKColor:61,shadingFill:62,beginInlineImage:63,beginImageData:64,endInlineImage:65,paintXObject:66,markPoint:67,markPointProps:68,beginMarkedContent:69,beginMarkedContentProps:70,endMarkedContent:71,beginCompat:72,endCompat:73,paintFormXObjectBegin:74,paintFormXObjectEnd:75,beginGroup:76,endGroup:77,beginAnnotations:78,endAnnotations:79,beginAnnotation:80,endAnnotation:81,paintJpegXObject:82,paintImageMaskXObject:83,paintImageMaskXObjectGroup:84,paintImageXObject:85,paintInlineImageXObject:86,paintInlineImageXObjectGroup:87,paintImageXObjectRepeat:88,paintImageMaskXObjectRepeat:89,paintSolidColorImageMask:90,constructPath:91};r.UNSUPPORTED_FEATURES={unknown:"unknown",forms:"forms",javaScript:"javaScript",signatures:"signatures",smask:"smask",shadingPattern:"shadingPattern",font:"font",errorTilingPattern:"errorTilingPattern",errorExtGState:"errorExtGState",errorXObject:"errorXObject",errorFontLoadType3:"errorFontLoadType3",errorFontState:"errorFontState",errorFontMissing:"errorFontMissing",errorFontTranslate:"errorFontTranslate",errorColorSpace:"errorColorSpace",errorOperatorList:"errorOperatorList",errorFontToUnicode:"errorFontToUnicode",errorFontLoadNative:"errorFontLoadNative",errorFontBuildPath:"errorFontBuildPath",errorFontGetPath:"errorFontGetPath",errorMarkedContent:"errorMarkedContent"};r.PasswordResponses={NEED_PASSWORD:1,INCORRECT_PASSWORD:2};var a=o.WARNINGS;function warn(t){a>=o.WARNINGS&&console.log("Warning: ".concat(t))}function unreachable(t){throw new Error(t)}function assert(t,r){t||unreachable(r)}function shadow(t,r,i){Object.defineProperty(t,r,{value:i,enumerable:!0,configurable:!0,writable:!1});return i}var c=function BaseExceptionClosure(){function BaseException(t){this.constructor===BaseException&&unreachable("Cannot initialize BaseException.");this.message=t;this.name=this.constructor.name}BaseException.prototype=new Error;BaseException.constructor=BaseException;return BaseException}();r.BaseException=c;var l=function(t){_inherits(PasswordException,t);var r=_createSuper(PasswordException);function PasswordException(t,i){var o;_classCallCheck(this,PasswordException);(o=r.call(this,t)).code=i;return o}return PasswordException}(c);r.PasswordException=l;var u=function(t){_inherits(UnknownErrorException,t);var r=_createSuper(UnknownErrorException);function UnknownErrorException(t,i){var o;_classCallCheck(this,UnknownErrorException);(o=r.call(this,t)).details=i;return o}return UnknownErrorException}(c);r.UnknownErrorException=u;var h=function(t){_inherits(InvalidPDFException,t);var r=_createSuper(InvalidPDFException);function InvalidPDFException(){_classCallCheck(this,InvalidPDFException);return r.apply(this,arguments)}return InvalidPDFException}(c);r.InvalidPDFException=h;var d=function(t){_inherits(MissingPDFException,t);var r=_createSuper(MissingPDFException);function MissingPDFException(){_classCallCheck(this,MissingPDFException);return r.apply(this,arguments)}return MissingPDFException}(c);r.MissingPDFException=d;var p=function(t){_inherits(UnexpectedResponseException,t);var r=_createSuper(UnexpectedResponseException);function UnexpectedResponseException(t,i){var o;_classCallCheck(this,UnexpectedResponseException);(o=r.call(this,t)).status=i;return o}return UnexpectedResponseException}(c);r.UnexpectedResponseException=p;var m=function(t){_inherits(FormatError,t);var r=_createSuper(FormatError);function FormatError(){_classCallCheck(this,FormatError);return r.apply(this,arguments)}return FormatError}(c);r.FormatError=m;var y=function(t){_inherits(AbortException,t);var r=_createSuper(AbortException);function AbortException(){_classCallCheck(this,AbortException);return r.apply(this,arguments)}return AbortException}(c);r.AbortException=y;var v=/\x00/g;function stringToBytes(t){assert("string"==typeof t,"Invalid argument for stringToBytes");for(var r=t.length,i=new Uint8Array(r),o=0;o<r;++o)i[o]=255&t.charCodeAt(o);return i}function arrayByteLength(t){if(void 0!==t.length)return t.length;assert(void 0!==t.byteLength,"arrayByteLength - invalid argument.");return t.byteLength}var g={get value(){return shadow(this,"value",function isLittleEndian(){var t=new Uint8Array(4);t[0]=1;return 1===new Uint32Array(t.buffer,0,1)[0]}())}};r.IsLittleEndianCached=g;var b={get value(){return shadow(this,"value",function isEvalSupported(){try{new Function("");return!0}catch(t){return!1}}())}};r.IsEvalSupportedCached=b;var x=function _toConsumableArray(t){return function _arrayWithoutHoles(t){if(Array.isArray(t))return _arrayLikeToArray(t)}(t)||function _iterableToArray(t){if("undefined"!=typeof Symbol&&null!=t[Symbol.iterator]||null!=t["@@iterator"])return Array.from(t)}(t)||_unsupportedIterableToArray(t)||function _nonIterableSpread(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(Array(256).keys()).map((function(t){return t.toString(16).padStart(2,"0")})),w=function(){function Util(){_classCallCheck(this,Util)}!function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}(Util,null,[{key:"makeHexColor",value:function makeHexColor(t,r,i){return"#".concat(x[t]).concat(x[r]).concat(x[i])}},{key:"transform",value:function transform(t,r){return[t[0]*r[0]+t[2]*r[1],t[1]*r[0]+t[3]*r[1],t[0]*r[2]+t[2]*r[3],t[1]*r[2]+t[3]*r[3],t[0]*r[4]+t[2]*r[5]+t[4],t[1]*r[4]+t[3]*r[5]+t[5]]}},{key:"applyTransform",value:function applyTransform(t,r){return[t[0]*r[0]+t[1]*r[2]+r[4],t[0]*r[1]+t[1]*r[3]+r[5]]}},{key:"applyInverseTransform",value:function applyInverseTransform(t,r){var i=r[0]*r[3]-r[1]*r[2];return[(t[0]*r[3]-t[1]*r[2]+r[2]*r[5]-r[4]*r[3])/i,(-t[0]*r[1]+t[1]*r[0]+r[4]*r[1]-r[5]*r[0])/i]}},{key:"getAxialAlignedBoundingBox",value:function getAxialAlignedBoundingBox(t,r){var i=Util.applyTransform(t,r),o=Util.applyTransform(t.slice(2,4),r),a=Util.applyTransform([t[0],t[3]],r),c=Util.applyTransform([t[2],t[1]],r);return[Math.min(i[0],o[0],a[0],c[0]),Math.min(i[1],o[1],a[1],c[1]),Math.max(i[0],o[0],a[0],c[0]),Math.max(i[1],o[1],a[1],c[1])]}},{key:"inverseTransform",value:function inverseTransform(t){var r=t[0]*t[3]-t[1]*t[2];return[t[3]/r,-t[1]/r,-t[2]/r,t[0]/r,(t[2]*t[5]-t[4]*t[3])/r,(t[4]*t[1]-t[5]*t[0])/r]}},{key:"apply3dTransform",value:function apply3dTransform(t,r){return[t[0]*r[0]+t[1]*r[1]+t[2]*r[2],t[3]*r[0]+t[4]*r[1]+t[5]*r[2],t[6]*r[0]+t[7]*r[1]+t[8]*r[2]]}},{key:"singularValueDecompose2dScale",value:function singularValueDecompose2dScale(t){var r=[t[0],t[2],t[1],t[3]],i=t[0]*r[0]+t[1]*r[2],o=t[0]*r[1]+t[1]*r[3],a=t[2]*r[0]+t[3]*r[2],c=t[2]*r[1]+t[3]*r[3],l=(i+c)/2,u=Math.sqrt(Math.pow(i+c,2)-4*(i*c-a*o))/2,h=l+u||1,d=l-u||1;return[Math.sqrt(h),Math.sqrt(d)]}},{key:"normalizeRect",value:function normalizeRect(t){var r=t.slice(0);if(t[0]>t[2]){r[0]=t[2];r[2]=t[0]}if(t[1]>t[3]){r[1]=t[3];r[3]=t[1]}return r}},{key:"intersect",value:function intersect(t,r){function compare(t,r){return t-r}var i=[t[0],t[2],r[0],r[2]].sort(compare),o=[t[1],t[3],r[1],r[3]].sort(compare),a=[];t=Util.normalizeRect(t);r=Util.normalizeRect(r);if(!(i[0]===t[0]&&i[1]===r[0]||i[0]===r[0]&&i[1]===t[0]))return null;a[0]=i[1];a[2]=i[2];if(!(o[0]===t[1]&&o[1]===r[1]||o[0]===r[1]&&o[1]===t[1]))return null;a[1]=o[1];a[3]=o[2];return a}}]);return Util}();r.Util=w;var _=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,711,710,729,733,731,730,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8226,8224,8225,8230,8212,8211,402,8260,8249,8250,8722,8240,8222,8220,8221,8216,8217,8218,8482,64257,64258,321,338,352,376,381,305,322,339,353,382,0,8364]},(t,r,i)=>{"use strict";var o=i(3);if("undefined"==typeof globalThis||!globalThis._pdfjsCompatibilityChecked){"undefined"!=typeof globalThis&&globalThis.Math===Math||(globalThis=i(4));globalThis._pdfjsCompatibilityChecked=!0;!function checkNodeBtoa(){!globalThis.btoa&&o.isNodeJS&&(globalThis.btoa=function(t){return Buffer.from(t,"binary").toString("base64")})}();!function checkNodeAtob(){!globalThis.atob&&o.isNodeJS&&(globalThis.atob=function(t){return Buffer.from(t,"base64").toString("binary")})}();!function checkDOMMatrix(){!globalThis.DOMMatrix&&o.isNodeJS&&(globalThis.DOMMatrix=i(50))}();!function checkObjectFromEntries(){Object.fromEntries||i(51)}()}},(t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.isNodeJS=void 0;function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var i=!("object"!==("undefined"==typeof process?"undefined":_typeof(process))||process+""!="[object process]"||process.versions.nw||process.versions.electron&&process.type&&"browser"!==process.type);r.isNodeJS=i},(t,r,i)=>{i(5);t.exports=i(7)},(t,r,i)=>{i(6)({global:!0},{globalThis:i(7)})},(t,r,i)=>{var o=i(7),a=i(8).f,c=i(23),l=i(26),u=i(27),h=i(37),d=i(49);t.exports=function(t,r){var i,p,m,y,v,g=t.target,b=t.global,x=t.stat;if(i=b?o:x?o[g]||u(g,{}):(o[g]||{}).prototype)for(p in r){y=r[p];m=t.noTargetGet?(v=a(i,p))&&v.value:i[p];if(!d(b?p:g+(x?".":"#")+p,t.forced)&&void 0!==m){if(typeof y==typeof m)continue;h(y,m)}(t.sham||m&&m.sham)&&c(y,"sham",!0);l(i,p,y,t)}}},t=>{var check=function(t){return t&&t.Math==Math&&t};t.exports=check("object"==typeof globalThis&&globalThis)||check("object"==typeof window&&window)||check("object"==typeof self&&self)||check("object"==typeof global&&global)||function(){return this}()||Function("return this")()},(t,r,i)=>{var o=i(9),a=i(11),c=i(12),l=i(13),u=i(17),h=i(19),d=i(21),p=Object.getOwnPropertyDescriptor;r.f=o?p:function getOwnPropertyDescriptor(t,r){t=l(t);r=u(r,!0);if(d)try{return p(t,r)}catch(t){}if(h(t,r))return c(!a.f.call(t,r),t[r])}},(t,r,i)=>{var o=i(10);t.exports=!o((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},t=>{t.exports=function(t){try{return!!t()}catch(t){return!0}}},(t,r)=>{"use strict";var i={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,a=o&&!i.call({1:2},1);r.f=a?function propertyIsEnumerable(t){var r=o(this,t);return!!r&&r.enumerable}:i},t=>{t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},(t,r,i)=>{var o=i(14),a=i(16);t.exports=function(t){return o(a(t))}},(t,r,i)=>{var o=i(10),a=i(15),c="".split;t.exports=o((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==a(t)?c.call(t,""):Object(t)}:Object},t=>{var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},t=>{t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},(t,r,i)=>{var o=i(18);t.exports=function(t,r){if(!o(t))return t;var i,a;if(r&&"function"==typeof(i=t.toString)&&!o(a=i.call(t)))return a;if("function"==typeof(i=t.valueOf)&&!o(a=i.call(t)))return a;if(!r&&"function"==typeof(i=t.toString)&&!o(a=i.call(t)))return a;throw TypeError("Can't convert object to primitive value")}},t=>{t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},(t,r,i)=>{var o=i(20),a={}.hasOwnProperty;t.exports=Object.hasOwn||function hasOwn(t,r){return a.call(o(t),r)}},(t,r,i)=>{var o=i(16);t.exports=function(t){return Object(o(t))}},(t,r,i)=>{var o=i(9),a=i(10),c=i(22);t.exports=!o&&!a((function(){return 7!=Object.defineProperty(c("div"),"a",{get:function(){return 7}}).a}))},(t,r,i)=>{var o=i(7),a=i(18),c=o.document,l=a(c)&&a(c.createElement);t.exports=function(t){return l?c.createElement(t):{}}},(t,r,i)=>{var o=i(9),a=i(24),c=i(12);t.exports=o?function(t,r,i){return a.f(t,r,c(1,i))}:function(t,r,i){t[r]=i;return t}},(t,r,i)=>{var o=i(9),a=i(21),c=i(25),l=i(17),u=Object.defineProperty;r.f=o?u:function defineProperty(t,r,i){c(t);r=l(r,!0);c(i);if(a)try{return u(t,r,i)}catch(t){}if("get"in i||"set"in i)throw TypeError("Accessors not supported");"value"in i&&(t[r]=i.value);return t}},(t,r,i)=>{var o=i(18);t.exports=function(t){if(!o(t))throw TypeError(String(t)+" is not an object");return t}},(t,r,i)=>{var o=i(7),a=i(23),c=i(19),l=i(27),u=i(28),h=i(30),d=h.get,p=h.enforce,m=String(String).split("String");(t.exports=function(t,r,i,u){var h,d=!!u&&!!u.unsafe,y=!!u&&!!u.enumerable,v=!!u&&!!u.noTargetGet;if("function"==typeof i){"string"!=typeof r||c(i,"name")||a(i,"name",r);(h=p(i)).source||(h.source=m.join("string"==typeof r?r:""))}if(t!==o){d?!v&&t[r]&&(y=!0):delete t[r];y?t[r]=i:a(t,r,i)}else y?t[r]=i:l(r,i)})(Function.prototype,"toString",(function toString(){return"function"==typeof this&&d(this).source||u(this)}))},(t,r,i)=>{var o=i(7),a=i(23);t.exports=function(t,r){try{a(o,t,r)}catch(i){o[t]=r}return r}},(t,r,i)=>{var o=i(29),a=Function.toString;"function"!=typeof o.inspectSource&&(o.inspectSource=function(t){return a.call(t)});t.exports=o.inspectSource},(t,r,i)=>{var o=i(7),a=i(27),c="__core-js_shared__",l=o[c]||a(c,{});t.exports=l},(t,r,i)=>{var o,a,c,l=i(31),u=i(7),h=i(18),d=i(23),p=i(19),m=i(29),y=i(32),v=i(36),g="Object already initialized",b=u.WeakMap;if(l||m.state){var x=m.state||(m.state=new b),w=x.get,_=x.has,C=x.set;o=function(t,r){if(_.call(x,t))throw new TypeError(g);r.facade=t;C.call(x,t,r);return r};a=function(t){return w.call(x,t)||{}};c=function(t){return _.call(x,t)}}else{var k=y("state");v[k]=!0;o=function(t,r){if(p(t,k))throw new TypeError(g);r.facade=t;d(t,k,r);return r};a=function(t){return p(t,k)?t[k]:{}};c=function(t){return p(t,k)}}t.exports={set:o,get:a,has:c,enforce:function(t){return c(t)?a(t):o(t,{})},getterFor:function(t){return function(r){var i;if(!h(r)||(i=a(r)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return i}}}},(t,r,i)=>{var o=i(7),a=i(28),c=o.WeakMap;t.exports="function"==typeof c&&/native code/.test(a(c))},(t,r,i)=>{var o=i(33),a=i(35),c=o("keys");t.exports=function(t){return c[t]||(c[t]=a(t))}},(t,r,i)=>{var o=i(34),a=i(29);(t.exports=function(t,r){return a[t]||(a[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.15.2",mode:o?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},t=>{t.exports=!1},t=>{var r=0,i=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++r+i).toString(36)}},t=>{t.exports={}},(t,r,i)=>{var o=i(19),a=i(38),c=i(8),l=i(24);t.exports=function(t,r){for(var i=a(r),u=l.f,h=c.f,d=0;d<i.length;d++){var p=i[d];o(t,p)||u(t,p,h(r,p))}}},(t,r,i)=>{var o=i(39),a=i(41),c=i(48),l=i(25);t.exports=o("Reflect","ownKeys")||function ownKeys(t){var r=a.f(l(t)),i=c.f;return i?r.concat(i(t)):r}},(t,r,i)=>{var o=i(40),a=i(7),aFunction=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,r){return arguments.length<2?aFunction(o[t])||aFunction(a[t]):o[t]&&o[t][r]||a[t]&&a[t][r]}},(t,r,i)=>{var o=i(7);t.exports=o},(t,r,i)=>{var o=i(42),a=i(47).concat("length","prototype");r.f=Object.getOwnPropertyNames||function getOwnPropertyNames(t){return o(t,a)}},(t,r,i)=>{var o=i(19),a=i(13),c=i(43).indexOf,l=i(36);t.exports=function(t,r){var i,u=a(t),h=0,d=[];for(i in u)!o(l,i)&&o(u,i)&&d.push(i);for(;r.length>h;)o(u,i=r[h++])&&(~c(d,i)||d.push(i));return d}},(t,r,i)=>{var o=i(13),a=i(44),c=i(46),createMethod=function(t){return function(r,i,l){var u,h=o(r),d=a(h.length),p=c(l,d);if(t&&i!=i){for(;d>p;)if((u=h[p++])!=u)return!0}else for(;d>p;p++)if((t||p in h)&&h[p]===i)return t||p||0;return!t&&-1}};t.exports={includes:createMethod(!0),indexOf:createMethod(!1)}},(t,r,i)=>{var o=i(45),a=Math.min;t.exports=function(t){return t>0?a(o(t),9007199254740991):0}},t=>{var r=Math.ceil,i=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?i:r)(t)}},(t,r,i)=>{var o=i(45),a=Math.max,c=Math.min;t.exports=function(t,r){var i=o(t);return i<0?a(i+r,0):c(i,r)}},t=>{t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},(t,r)=>{r.f=Object.getOwnPropertySymbols},(t,r,i)=>{var o=i(10),a=/#|\.prototype\./,isForced=function(t,r){var i=l[c(t)];return i==h||i!=u&&("function"==typeof r?o(r):!!r)},c=isForced.normalize=function(t){return String(t).replace(a,".").toLowerCase()},l=isForced.data={},u=isForced.NATIVE="N",h=isForced.POLYFILL="P";t.exports=isForced},(t,r,i)=>{"use strict";var o,a,c;function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}c=function(){var t=function CSSMatrix(){for(var t=[],r=arguments.length;r--;)t[r]=arguments[r];this.setIdentity();return t&&t.length&&this.setMatrixValue(t)},r={isIdentity:{configurable:!0},is2D:{configurable:!0}};r.isIdentity.get=function(){var t=this;return 1===t.m11&&0===t.m12&&0===t.m13&&0===t.m14&&0===t.m21&&1===t.m22&&0===t.m23&&0===t.m24&&0===t.m31&&0===t.m32&&1===t.m33&&0===t.m34&&0===t.m41&&0===t.m42&&0===t.m43&&1===t.m44};r.isIdentity.set=function(t){this.isIdentity=t};r.is2D.get=function(){var t=this;return 0===t.m31&&0===t.m32&&1===t.m33&&0===t.m34&&0===t.m43&&1===t.m44};r.is2D.set=function(t){this.is2D=t};Object.defineProperties(t.prototype,r);var i=t.prototype;function Translate(r,i,o){var a=new t;a.m41=r;a.e=r;a.m42=i;a.f=i;a.m43=o;return a}function Rotate(r,i,o){var a=new t,c=r*Math.PI/180,l=i*Math.PI/180,u=o*Math.PI/180,h=Math.cos(c),d=-Math.sin(c),p=Math.cos(l),m=-Math.sin(l),y=Math.cos(u),v=-Math.sin(u),g=p*y,b=-p*v;a.m11=g;a.a=g;a.m12=b;a.b=b;a.m13=m;var x=d*m*y+h*v;a.m21=x;a.c=x;var w=h*y-d*m*v;a.m22=w;a.d=w;a.m23=-d*p;a.m31=d*v-h*m*y;a.m32=d*y+h*m*v;a.m33=h*p;return a}function RotateAxisAngle(r,i,o,a){var c=new t,l=a*Math.PI/360,u=Math.sin(l),h=Math.cos(l),d=u*u,p=Math.sqrt(r*r+i*i+o*o),m=0,y=0,v=1;if(0!==p){m=r/p;y=i/p;v=o/p}var g=m*m,b=y*y,x=v*v,w=1-2*(b+x)*d;c.m11=w;c.a=w;var _=2*(r*i*d+o*u*h);c.m12=_;c.b=_;c.m13=2*(r*o*d-i*u*h);var C=2*(i*r*d-o*u*h);c.m21=C;c.c=C;var k=1-2*(x+g)*d;c.m22=k;c.d=k;c.m23=2*(i*o*d+r*u*h);c.m31=2*(o*r*d+i*u*h);c.m32=2*(o*i*d-r*u*h);c.m33=1-2*(g+b)*d;c.m14=0;c.m24=0;c.m34=0;c.m41=0;c.e=0;c.m42=0;c.f=0;c.m43=0;c.m44=1;return c}function Scale(r,i,o){var a=new t;a.m11=r;a.a=r;a.m22=i;a.d=i;a.m33=o;return a}function SkewX(r){var i=r*Math.PI/180,o=new t,a=Math.tan(i);o.m21=a;o.c=a;return o}function SkewY(r){var i=r*Math.PI/180,o=new t,a=Math.tan(i);o.m12=a;o.b=a;return o}function Multiply(r,i){var o=i.m11*r.m11+i.m12*r.m21+i.m13*r.m31+i.m14*r.m41,a=i.m11*r.m12+i.m12*r.m22+i.m13*r.m32+i.m14*r.m42,c=i.m11*r.m13+i.m12*r.m23+i.m13*r.m33+i.m14*r.m43,l=i.m11*r.m14+i.m12*r.m24+i.m13*r.m34+i.m14*r.m44,u=i.m21*r.m11+i.m22*r.m21+i.m23*r.m31+i.m24*r.m41,h=i.m21*r.m12+i.m22*r.m22+i.m23*r.m32+i.m24*r.m42,d=i.m21*r.m13+i.m22*r.m23+i.m23*r.m33+i.m24*r.m43,p=i.m21*r.m14+i.m22*r.m24+i.m23*r.m34+i.m24*r.m44,m=i.m31*r.m11+i.m32*r.m21+i.m33*r.m31+i.m34*r.m41,y=i.m31*r.m12+i.m32*r.m22+i.m33*r.m32+i.m34*r.m42,v=i.m31*r.m13+i.m32*r.m23+i.m33*r.m33+i.m34*r.m43,g=i.m31*r.m14+i.m32*r.m24+i.m33*r.m34+i.m34*r.m44,b=i.m41*r.m11+i.m42*r.m21+i.m43*r.m31+i.m44*r.m41,x=i.m41*r.m12+i.m42*r.m22+i.m43*r.m32+i.m44*r.m42,w=i.m41*r.m13+i.m42*r.m23+i.m43*r.m33+i.m44*r.m43,_=i.m41*r.m14+i.m42*r.m24+i.m43*r.m34+i.m44*r.m44;return new t([o,u,m,b,a,h,y,x,c,d,v,w,l,p,g,_])}function feedFromArray(t,r){var i=Array.from(r);if(16===i.length){var o=i[0],a=i[1],c=i[2],l=i[3],u=i[4],h=i[5],d=i[6],p=i[7],m=i[8],y=i[9],v=i[10],g=i[11],b=i[12],x=i[13],w=i[14],_=i[15];t.m11=o;t.a=o;t.m21=a;t.c=a;t.m31=c;t.m41=l;t.e=l;t.m12=u;t.b=u;t.m22=h;t.d=h;t.m32=d;t.m42=p;t.f=p;t.m13=m;t.m23=y;t.m33=v;t.m43=g;t.m14=b;t.m24=x;t.m34=w;t.m44=_}else{if(6!==i.length)throw new TypeError("CSSMatrix: expecting a 6/16 values Array");var C=i[0],k=i[1],S=i[2],P=i[3],T=i[4],I=i[5];t.m11=C;t.a=C;t.m12=k;t.b=k;t.m21=S;t.c=S;t.m22=P;t.d=P;t.m14=T;t.e=T;t.m24=I;t.f=I}return t}i.setMatrixValue=function setMatrixValue(r){var i=this;if(!r||!r.length)return i;if(r.length&&"string"==typeof r[0]&&r[0].length){var o,a,c=String(r[0]).trim();if("none"===c)return i;o=c.slice(0,c.indexOf("("));a=c.slice("matrix"===o?7:9,-1).split(",").map((function(t){return Math.abs(t)<1e-6?0:+t}));if(!([6,16].indexOf(a.length)>-1))throw new TypeError("CSSMatrix: expecting valid CSS matrix() / matrix3d() syntax");feedFromArray(i,a)}else r[0]instanceof t?feedFromArray(i,r[0].toArray()):Array.isArray(r[0])?feedFromArray(i,r[0]):Array.isArray(r)&&feedFromArray(i,r);return i};i.toString=function toString(){return(this.is2D?"matrix":"matrix3d")+"("+this.toArray(1).join(",")+")"};i.toArray=function toArray(t){var r=this;return r.is2D?[r.a,r.b,r.c,r.d,r.e,r.f]:t?[r.m11,r.m12,r.m13,r.m14,r.m21,r.m22,r.m23,r.m24,r.m31,r.m32,r.m33,r.m34,r.m41,r.m42,r.m43,r.m44]:[r.m11,r.m21,r.m31,r.m41,r.m12,r.m22,r.m32,r.m42,r.m13,r.m23,r.m33,r.m43,r.m14,r.m24,r.m34,r.m44]};i.multiply=function multiply(t){return Multiply(this,t)};i.translate=function translate(t,r,i){var o=r,a=i;null==a&&(a=0);null==o&&(o=0);return Multiply(this,Translate(t,o,a))};i.scale=function scale(t,r,i){var o=r,a=i;null==o&&(o=t);null==a&&(a=t);return Multiply(this,Scale(t,o,a))};i.rotate=function rotate(t,r,i){var o=t,a=r,c=i;null==a&&(a=0);if(null==c){c=o;o=0}return Multiply(this,Rotate(o,a,c))};i.rotateAxisAngle=function rotateAxisAngle(t,r,i,o){if(4!==arguments.length)throw new TypeError("CSSMatrix: expecting 4 values");return Multiply(this,RotateAxisAngle(t,r,i,o))};i.skewX=function skewX(t){return Multiply(this,SkewX(t))};i.skewY=function skewY(t){return Multiply(this,SkewY(t))};i.setIdentity=function setIdentity(){return feedFromArray(this,[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1])};i.transformPoint=function transformPoint(t){var r=Translate(t.x,t.y,t.z);r.m44=t.w||1;return{x:(r=this.multiply(r)).m41,y:r.m42,z:r.m43,w:r.m44}};i.transform=function transform(t){var r=this,i=r.m11*t.x+r.m12*t.y+r.m13*t.z+r.m14*t.w,o=r.m21*t.x+r.m22*t.y+r.m23*t.z+r.m24*t.w,a=r.m31*t.x+r.m32*t.y+r.m33*t.z+r.m34*t.w,c=r.m41*t.x+r.m42*t.y+r.m43*t.z+r.m44*t.w;return{x:i/c,y:o/c,z:a/c,w:c}};t.Translate=Translate;t.Rotate=Rotate;t.RotateAxisAngle=RotateAxisAngle;t.Scale=Scale;t.SkewX=SkewX;t.SkewY=SkewY;t.Multiply=Multiply;t.fromMatrix=function fromMatrix(r){return new t([r.m11,r.m21,r.m31,r.m41,r.m12,r.m22,r.m32,r.m42,r.m13,r.m23,r.m33,r.m43,r.m14,r.m24,r.m34,r.m44])};t.fromArray=function fromArray(r){return feedFromArray(new t,r)};t.feedFromArray=feedFromArray;return t},"object"===_typeof(r)?t.exports=c():void 0!==(a="function"==typeof(o=c)?o.call(r,i,r,t):o)&&(t.exports=a)},(t,r,i)=>{i(52);i(72);var o=i(40);t.exports=o.Object.fromEntries},(t,r,i)=>{"use strict";var o=i(13),a=i(53),c=i(63),l=i(30),u=i(64),h="Array Iterator",d=l.set,p=l.getterFor(h);t.exports=u(Array,"Array",(function(t,r){d(this,{type:h,target:o(t),index:0,kind:r})}),(function(){var t=p(this),r=t.target,i=t.kind,o=t.index++;if(!r||o>=r.length){t.target=void 0;return{value:void 0,done:!0}}return"keys"==i?{value:o,done:!1}:"values"==i?{value:r[o],done:!1}:{value:[o,r[o]],done:!1}}),"values");c.Arguments=c.Array;a("keys");a("values");a("entries")},(t,r,i)=>{var o=i(54),a=i(59),c=i(24),l=o("unscopables"),u=Array.prototype;null==u[l]&&c.f(u,l,{configurable:!0,value:a(null)});t.exports=function(t){u[l][t]=!0}},(t,r,i)=>{var o=i(7),a=i(33),c=i(19),l=i(35),u=i(55),h=i(58),d=a("wks"),p=o.Symbol,m=h?p:p&&p.withoutSetter||l;t.exports=function(t){c(d,t)&&(u||"string"==typeof d[t])||(u&&c(p,t)?d[t]=p[t]:d[t]=m("Symbol."+t));return d[t]}},(t,r,i)=>{var o=i(56),a=i(10);t.exports=!!Object.getOwnPropertySymbols&&!a((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&o&&o<41}))},(t,r,i)=>{var o,a,c=i(7),l=i(57),u=c.process,h=u&&u.versions,d=h&&h.v8;d?a=(o=d.split("."))[0]<4?1:o[0]+o[1]:l&&(!(o=l.match(/Edge\/(\d+)/))||o[1]>=74)&&(o=l.match(/Chrome\/(\d+)/))&&(a=o[1]);t.exports=a&&+a},(t,r,i)=>{var o=i(39);t.exports=o("navigator","userAgent")||""},(t,r,i)=>{var o=i(55);t.exports=o&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},(t,r,i)=>{var o,a=i(25),c=i(60),l=i(47),u=i(36),h=i(62),d=i(22),p=i(32),m=p("IE_PROTO"),EmptyConstructor=function(){},scriptTag=function(t){return"<script>"+t+"</"+"script>"},NullProtoObject=function(){try{o=document.domain&&new ActiveXObject("htmlfile")}catch(t){}NullProtoObject=o?function(t){t.write(scriptTag(""));t.close();var r=t.parentWindow.Object;t=null;return r}(o):function(){var t,r=d("iframe");r.style.display="none";h.appendChild(r);r.src=String("javascript:");(t=r.contentWindow.document).open();t.write(scriptTag("document.F=Object"));t.close();return t.F}();for(var t=l.length;t--;)delete NullProtoObject.prototype[l[t]];return NullProtoObject()};u[m]=!0;t.exports=Object.create||function create(t,r){var i;if(null!==t){EmptyConstructor.prototype=a(t);i=new EmptyConstructor;EmptyConstructor.prototype=null;i[m]=t}else i=NullProtoObject();return void 0===r?i:c(i,r)}},(t,r,i)=>{var o=i(9),a=i(24),c=i(25),l=i(61);t.exports=o?Object.defineProperties:function defineProperties(t,r){c(t);for(var i,o=l(r),u=o.length,h=0;u>h;)a.f(t,i=o[h++],r[i]);return t}},(t,r,i)=>{var o=i(42),a=i(47);t.exports=Object.keys||function keys(t){return o(t,a)}},(t,r,i)=>{var o=i(39);t.exports=o("document","documentElement")},t=>{t.exports={}},(t,r,i)=>{"use strict";var o=i(6),a=i(65),c=i(67),l=i(70),u=i(69),h=i(23),d=i(26),p=i(54),m=i(34),y=i(63),v=i(66),g=v.IteratorPrototype,b=v.BUGGY_SAFARI_ITERATORS,x=p("iterator"),w="keys",_="values",C="entries",returnThis=function(){return this};t.exports=function(t,r,i,p,v,k,S){a(i,r,p);var P,T,I,getIterationMethod=function(t){if(t===v&&B)return B;if(!b&&t in A)return A[t];switch(t){case w:return function keys(){return new i(this,t)};case _:return function values(){return new i(this,t)};case C:return function entries(){return new i(this,t)}}return function(){return new i(this)}},O=r+" Iterator",E=!1,A=t.prototype,R=A[x]||A["@@iterator"]||v&&A[v],B=!b&&R||getIterationMethod(v),M="Array"==r&&A.entries||R;if(M){P=c(M.call(new t));if(g!==Object.prototype&&P.next){m||c(P)===g||(l?l(P,g):"function"!=typeof P[x]&&h(P,x,returnThis));u(P,O,!0,!0);m&&(y[O]=returnThis)}}if(v==_&&R&&R.name!==_){E=!0;B=function values(){return R.call(this)}}m&&!S||A[x]===B||h(A,x,B);y[r]=B;if(v){T={values:getIterationMethod(_),keys:k?B:getIterationMethod(w),entries:getIterationMethod(C)};if(S)for(I in T)(b||E||!(I in A))&&d(A,I,T[I]);else o({target:r,proto:!0,forced:b||E},T)}return T}},(t,r,i)=>{"use strict";var o=i(66).IteratorPrototype,a=i(59),c=i(12),l=i(69),u=i(63),returnThis=function(){return this};t.exports=function(t,r,i){var h=r+" Iterator";t.prototype=a(o,{next:c(1,i)});l(t,h,!1,!0);u[h]=returnThis;return t}},(t,r,i)=>{"use strict";var o,a,c,l=i(10),u=i(67),h=i(23),d=i(19),p=i(54),m=i(34),y=p("iterator"),v=!1;[].keys&&("next"in(c=[].keys())?(a=u(u(c)))!==Object.prototype&&(o=a):v=!0);var g=null==o||l((function(){var t={};return o[y].call(t)!==t}));g&&(o={});m&&!g||d(o,y)||h(o,y,(function(){return this}));t.exports={IteratorPrototype:o,BUGGY_SAFARI_ITERATORS:v}},(t,r,i)=>{var o=i(19),a=i(20),c=i(32),l=i(68),u=c("IE_PROTO"),h=Object.prototype;t.exports=l?Object.getPrototypeOf:function(t){t=a(t);return o(t,u)?t[u]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?h:null}},(t,r,i)=>{var o=i(10);t.exports=!o((function(){function F(){}F.prototype.constructor=null;return Object.getPrototypeOf(new F)!==F.prototype}))},(t,r,i)=>{var o=i(24).f,a=i(19),c=i(54)("toStringTag");t.exports=function(t,r,i){t&&!a(t=i?t:t.prototype,c)&&o(t,c,{configurable:!0,value:r})}},(t,r,i)=>{var o=i(25),a=i(71);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,i={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(i,[]);r=i instanceof Array}catch(t){}return function setPrototypeOf(i,c){o(i);a(c);r?t.call(i,c):i.__proto__=c;return i}}():void 0)},(t,r,i)=>{var o=i(18);t.exports=function(t){if(!o(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},(t,r,i)=>{var o=i(6),a=i(73),c=i(81);o({target:"Object",stat:!0},{fromEntries:function fromEntries(t){var r={};a(t,(function(t,i){c(r,t,i)}),{AS_ENTRIES:!0});return r}})},(t,r,i)=>{var o=i(25),a=i(74),c=i(44),l=i(75),u=i(77),h=i(80),Result=function(t,r){this.stopped=t;this.result=r};t.exports=function(t,r,i){var d,p,m,y,v,g,b,x=i&&i.that,w=!(!i||!i.AS_ENTRIES),_=!(!i||!i.IS_ITERATOR),C=!(!i||!i.INTERRUPTED),k=l(r,x,1+w+C),stop=function(t){d&&h(d);return new Result(!0,t)},callFn=function(t){if(w){o(t);return C?k(t[0],t[1],stop):k(t[0],t[1])}return C?k(t,stop):k(t)};if(_)d=t;else{if("function"!=typeof(p=u(t)))throw TypeError("Target is not iterable");if(a(p)){for(m=0,y=c(t.length);y>m;m++)if((v=callFn(t[m]))&&v instanceof Result)return v;return new Result(!1)}d=p.call(t)}g=d.next;for(;!(b=g.call(d)).done;){try{v=callFn(b.value)}catch(t){h(d);throw t}if("object"==typeof v&&v&&v instanceof Result)return v}return new Result(!1)}},(t,r,i)=>{var o=i(54),a=i(63),c=o("iterator"),l=Array.prototype;t.exports=function(t){return void 0!==t&&(a.Array===t||l[c]===t)}},(t,r,i)=>{var o=i(76);t.exports=function(t,r,i){o(t);if(void 0===r)return t;switch(i){case 0:return function(){return t.call(r)};case 1:return function(i){return t.call(r,i)};case 2:return function(i,o){return t.call(r,i,o)};case 3:return function(i,o,a){return t.call(r,i,o,a)}}return function(){return t.apply(r,arguments)}}},t=>{t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},(t,r,i)=>{var o=i(78),a=i(63),c=i(54)("iterator");t.exports=function(t){if(null!=t)return t[c]||t["@@iterator"]||a[o(t)]}},(t,r,i)=>{var o=i(79),a=i(15),c=i(54)("toStringTag"),l="Arguments"==a(function(){return arguments}());t.exports=o?a:function(t){var r,i,o;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(i=function(t,r){try{return t[r]}catch(t){}}(r=Object(t),c))?i:l?a(r):"Object"==(o=a(r))&&"function"==typeof r.callee?"Arguments":o}},(t,r,i)=>{var o={};o[i(54)("toStringTag")]="z";t.exports="[object z]"===String(o)},(t,r,i)=>{var o=i(25);t.exports=function(t){var r=t.return;if(void 0!==r)return o(r.call(t)).value}},(t,r,i)=>{"use strict";var o=i(17),a=i(24),c=i(12);t.exports=function(t,r,i){var l=o(r);l in t?a.f(t,l,c(0,i)):t[l]=i}},(t,r,i)=>{"use strict";function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}Object.defineProperty(r,"__esModule",{value:!0});r.Jbig2Image=void 0;var o=i(1),a=i(83),c=i(88),l=i(89);function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _setPrototypeOf(t,r){return(_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(t,r){t.__proto__=r;return t})(t,r)}function _createSuper(t){var r=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})));return!0}catch(t){return!1}}();return function _createSuperInternal(){var i,o=_getPrototypeOf(t);if(r){var a=_getPrototypeOf(this).constructor;i=Reflect.construct(o,arguments,a)}else i=o.apply(this,arguments);return _possibleConstructorReturn(this,i)}}function _possibleConstructorReturn(t,r){return!r||"object"!==_typeof(r)&&"function"!=typeof r?function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):r}function _getPrototypeOf(t){return(_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var u=function(t){!function _inherits(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}});r&&_setPrototypeOf(t,r)}(Jbig2Error,t);var r=_createSuper(Jbig2Error);function Jbig2Error(t){_classCallCheck(this,Jbig2Error);return r.call(this,"JBIG2 error: ".concat(t))}return Jbig2Error}(o.BaseException),h=function(){function ContextCache(){_classCallCheck(this,ContextCache)}_createClass(ContextCache,[{key:"getContexts",value:function getContexts(t){return t in this?this[t]:this[t]=new Int8Array(65536)}}]);return ContextCache}(),d=function(){function DecodingContext(t,r,i){_classCallCheck(this,DecodingContext);this.data=t;this.start=r;this.end=i}_createClass(DecodingContext,[{key:"decoder",get:function get(){var t=new c.ArithmeticDecoder(this.data,this.start,this.end);return(0,o.shadow)(this,"decoder",t)}},{key:"contextCache",get:function get(){var t=new h;return(0,o.shadow)(this,"contextCache",t)}}]);return DecodingContext}();function decodeInteger(t,r,i){var o=t.getContexts(r),a=1;function readBits(t){for(var r=0,c=0;c<t;c++){var l=i.readBit(o,a);a=a<256?a<<1|l:511&(a<<1|l)|256;r=r<<1|l}return r>>>0}var c=readBits(1),l=readBits(1)?readBits(1)?readBits(1)?readBits(1)?readBits(1)?readBits(32)+4436:readBits(12)+340:readBits(8)+84:readBits(6)+20:readBits(4)+4:readBits(2);return 0===c?l:l>0?-l:null}function decodeIAID(t,r,i){for(var o=t.getContexts("IAID"),a=1,c=0;c<i;c++){a=a<<1|r.readBit(o,a)}return i<31?a&(1<<i)-1:2147483647&a}var p=["SymbolDictionary",null,null,null,"IntermediateTextRegion",null,"ImmediateTextRegion","ImmediateLosslessTextRegion",null,null,null,null,null,null,null,null,"PatternDictionary",null,null,null,"IntermediateHalftoneRegion",null,"ImmediateHalftoneRegion","ImmediateLosslessHalftoneRegion",null,null,null,null,null,null,null,null,null,null,null,null,"IntermediateGenericRegion",null,"ImmediateGenericRegion","ImmediateLosslessGenericRegion","IntermediateGenericRefinementRegion",null,"ImmediateGenericRefinementRegion","ImmediateLosslessGenericRefinementRegion",null,null,null,null,"PageInformation","EndOfPage","EndOfStripe","EndOfFile","Profiles","Tables",null,null,null,null,null,null,null,null,"Extension"],m=[[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:2,y:-1},{x:-4,y:0},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}],[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:2,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:2,y:-1},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}],[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-2,y:0},{x:-1,y:0}],[{x:-3,y:-1},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-4,y:0},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}]],y=[{coding:[{x:0,y:-1},{x:1,y:-1},{x:-1,y:0}],reference:[{x:0,y:-1},{x:1,y:-1},{x:-1,y:0},{x:0,y:0},{x:1,y:0},{x:-1,y:1},{x:0,y:1},{x:1,y:1}]},{coding:[{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-1,y:0}],reference:[{x:0,y:-1},{x:-1,y:0},{x:0,y:0},{x:1,y:0},{x:0,y:1},{x:1,y:1}]}],v=[39717,1941,229,405],g=[32,8];function decodeBitmap(t,r,i,o,a,c,l,u){if(t){return decodeMMRBitmap(new S(u.data,u.start,u.end),r,i,!1)}if(0===o&&!c&&!a&&4===l.length&&3===l[0].x&&-1===l[0].y&&-3===l[1].x&&-1===l[1].y&&2===l[2].x&&-2===l[2].y&&-2===l[3].x&&-2===l[3].y)return function decodeBitmapTemplate0(t,r,i){var o,a,c,l,u,h,d,p=i.decoder,m=i.contextCache.getContexts("GB"),y=[];for(a=0;a<r;a++){u=y[a]=new Uint8Array(t);h=a<1?u:y[a-1];o=(d=a<2?u:y[a-2])[0]<<13|d[1]<<12|d[2]<<11|h[0]<<7|h[1]<<6|h[2]<<5|h[3]<<4;for(c=0;c<t;c++){u[c]=l=p.readBit(m,o);o=(31735&o)<<1|(c+3<t?d[c+3]<<11:0)|(c+4<t?h[c+4]<<4:0)|l}}return y}(r,i,u);var h=!!c,d=m[o].concat(l);d.sort((function(t,r){return t.y-r.y||t.x-r.x}));var p,y,g=d.length,b=new Int8Array(g),x=new Int8Array(g),w=[],_=0,C=0,k=0,P=0;for(y=0;y<g;y++){b[y]=d[y].x;x[y]=d[y].y;C=Math.min(C,d[y].x);k=Math.max(k,d[y].x);P=Math.min(P,d[y].y);y<g-1&&d[y].y===d[y+1].y&&d[y].x===d[y+1].x-1?_|=1<<g-1-y:w.push(y)}var T=w.length,I=new Int8Array(T),O=new Int8Array(T),E=new Uint16Array(T);for(p=0;p<T;p++){y=w[p];I[p]=d[y].x;O[p]=d[y].y;E[p]=1<<g-1-y}for(var A,R,B,M,D,L=-C,U=-P,N=r-k,j=v[o],H=new Uint8Array(r),z=[],X=u.decoder,Y=u.contextCache.getContexts("GB"),G=0,q=0,J=0;J<i;J++){if(a){if(G^=X.readBit(Y,j)){z.push(H);continue}}H=new Uint8Array(H);z.push(H);for(A=0;A<r;A++)if(h&&c[J][A])H[A]=0;else{if(A>=L&&A<N&&J>=U){q=q<<1&_;for(y=0;y<T;y++){R=J+O[y];B=A+I[y];(M=z[R][B])&&(q|=M=E[y])}}else{q=0;D=g-1;for(y=0;y<g;y++,D--)(B=A+b[y])>=0&&B<r&&(R=J+x[y])>=0&&(M=z[R][B])&&(q|=M<<D)}var W=X.readBit(Y,q);H[A]=W}}return z}function decodeRefinement(t,r,i,o,a,c,l,h,d){var p=y[i].coding;0===i&&(p=p.concat([h[0]]));var m,v=p.length,b=new Int32Array(v),x=new Int32Array(v);for(m=0;m<v;m++){b[m]=p[m].x;x[m]=p[m].y}var w=y[i].reference;0===i&&(w=w.concat([h[1]]));var _=w.length,C=new Int32Array(_),k=new Int32Array(_);for(m=0;m<_;m++){C[m]=w[m].x;k[m]=w[m].y}for(var S=o[0].length,P=o.length,T=g[i],I=[],O=d.decoder,E=d.contextCache.getContexts("GR"),A=0,R=0;R<r;R++){if(l){if(A^=O.readBit(E,T))throw new u("prediction is not supported")}var B=new Uint8Array(t);I.push(B);for(var M=0;M<t;M++){var D=void 0,L=void 0,U=0;for(m=0;m<v;m++){D=R+x[m];L=M+b[m];D<0||L<0||L>=t?U<<=1:U=U<<1|I[D][L]}for(m=0;m<_;m++){D=R+k[m]-c;L=M+C[m]-a;D<0||D>=P||L<0||L>=S?U<<=1:U=U<<1|o[D][L]}var N=O.readBit(E,U);B[M]=N}}return I}function decodeTextRegion(t,r,i,o,a,c,l,h,d,p,m,y,v,g,b,x,w,_,C){if(t&&r)throw new u("refinement with Huffman is not supported");var k,S,P=[];for(k=0;k<o;k++){S=new Uint8Array(i);if(a)for(var T=0;T<i;T++)S[T]=a;P.push(S)}var I=w.decoder,O=w.contextCache,E=t?-g.tableDeltaT.decode(C):-decodeInteger(O,"IADT",I),A=0;k=0;for(;k<c;){E+=t?g.tableDeltaT.decode(C):decodeInteger(O,"IADT",I);for(var R=A+=t?g.tableFirstS.decode(C):decodeInteger(O,"IAFS",I);;){var B=0;l>1&&(B=t?C.readBits(_):decodeInteger(O,"IAIT",I));var M=l*E+B,D=t?g.symbolIDTable.decode(C):decodeIAID(O,I,d),L=r&&(t?C.readBit():decodeInteger(O,"IARI",I)),U=h[D],N=U[0].length,j=U.length;if(L){var H=decodeInteger(O,"IARDW",I),z=decodeInteger(O,"IARDH",I);U=decodeRefinement(N+=H,j+=z,b,U,(H>>1)+decodeInteger(O,"IARDX",I),(z>>1)+decodeInteger(O,"IARDY",I),!1,x,w)}var X=M-(1&y?0:j-1),Y=R-(2&y?N-1:0),G=void 0,q=void 0,J=void 0;if(p){for(G=0;G<j;G++)if(S=P[Y+G]){J=U[G];var W=Math.min(i-X,N);switch(v){case 0:for(q=0;q<W;q++)S[X+q]|=J[q];break;case 2:for(q=0;q<W;q++)S[X+q]^=J[q];break;default:throw new u("operator ".concat(v," is not supported"))}}R+=j-1}else{for(q=0;q<j;q++)if(S=P[X+q]){J=U[q];switch(v){case 0:for(G=0;G<N;G++)S[Y+G]|=J[G];break;case 2:for(G=0;G<N;G++)S[Y+G]^=J[G];break;default:throw new u("operator ".concat(v," is not supported"))}}R+=N-1}k++;var V=t?g.tableDeltaS.decode(C):decodeInteger(O,"IADS",I);if(null===V)break;R+=V+m}}return P}function readSegmentHeader(t,r){var i={};i.number=(0,a.readUint32)(t,r);var o=t[r+4],c=63&o;if(!p[c])throw new u("invalid segment type: "+c);i.type=c;i.typeName=p[c];i.deferredNonRetain=!!(128&o);var l=!!(64&o),h=t[r+5],d=h>>5&7,m=[31&h],y=r+6;if(7===h){d=536870911&(0,a.readUint32)(t,y-1);y+=3;var v=d+7>>3;m[0]=t[y++];for(;--v>0;)m.push(t[y++])}else if(5===h||6===h)throw new u("invalid referred-to flags");i.retainBits=m;var g=4;i.number<=256?g=1:i.number<=65536&&(g=2);var x,w,_=[];for(x=0;x<d;x++){var C=void 0;C=1===g?t[y]:2===g?(0,a.readUint16)(t,y):(0,a.readUint32)(t,y);_.push(C);y+=g}i.referredTo=_;if(l){i.pageAssociation=(0,a.readUint32)(t,y);y+=4}else i.pageAssociation=t[y++];i.length=(0,a.readUint32)(t,y);y+=4;if(4294967295===i.length){if(38!==c)throw new u("invalid unknown segment length");var k=readRegionSegmentInformation(t,y),S=!!(1&t[y+b]),P=new Uint8Array(6);if(!S){P[0]=255;P[1]=172}P[2]=k.height>>>24&255;P[3]=k.height>>16&255;P[4]=k.height>>8&255;P[5]=255&k.height;for(x=y,w=t.length;x<w;x++){for(var T=0;T<6&&P[T]===t[x+T];)T++;if(6===T){i.length=x+6;break}}if(4294967295===i.length)throw new u("segment end was not found")}i.headerEnd=y;return i}function readSegments(t,r,i,o){for(var a=[],c=i;c<o;){var l=readSegmentHeader(r,c);c=l.headerEnd;var u={header:l,data:r};if(!t.randomAccess){u.start=c;c+=l.length;u.end=c}a.push(u);if(51===l.type)break}if(t.randomAccess)for(var h=0,d=a.length;h<d;h++){a[h].start=c;c+=a[h].header.length;a[h].end=c}return a}function readRegionSegmentInformation(t,r){return{width:(0,a.readUint32)(t,r),height:(0,a.readUint32)(t,r+4),x:(0,a.readUint32)(t,r+8),y:(0,a.readUint32)(t,r+12),combinationOperator:7&t[r+16]}}var b=17;function processSegment(t,r){var i,o,c,l,h=t.header,d=t.data,p=t.end,m=t.start;switch(h.type){case 0:var y={},v=(0,a.readUint16)(d,m);y.huffman=!!(1&v);y.refinement=!!(2&v);y.huffmanDHSelector=v>>2&3;y.huffmanDWSelector=v>>4&3;y.bitmapSizeSelector=v>>6&1;y.aggregationInstancesSelector=v>>7&1;y.bitmapCodingContextUsed=!!(256&v);y.bitmapCodingContextRetained=!!(512&v);y.template=v>>10&3;y.refinementTemplate=v>>12&1;m+=2;if(!y.huffman){l=0===y.template?4:1;o=[];for(c=0;c<l;c++){o.push({x:(0,a.readInt8)(d,m),y:(0,a.readInt8)(d,m+1)});m+=2}y.at=o}if(y.refinement&&!y.refinementTemplate){o=[];for(c=0;c<2;c++){o.push({x:(0,a.readInt8)(d,m),y:(0,a.readInt8)(d,m+1)});m+=2}y.refinementAt=o}y.numberOfExportedSymbols=(0,a.readUint32)(d,m);m+=4;y.numberOfNewSymbols=(0,a.readUint32)(d,m);m+=4;i=[y,h.number,h.referredTo,d,m,p];break;case 6:case 7:var g={};g.info=readRegionSegmentInformation(d,m);m+=b;var x=(0,a.readUint16)(d,m);m+=2;g.huffman=!!(1&x);g.refinement=!!(2&x);g.logStripSize=x>>2&3;g.stripSize=1<<g.logStripSize;g.referenceCorner=x>>4&3;g.transposed=!!(64&x);g.combinationOperator=x>>7&3;g.defaultPixelValue=x>>9&1;g.dsOffset=x<<17>>27;g.refinementTemplate=x>>15&1;if(g.huffman){var w=(0,a.readUint16)(d,m);m+=2;g.huffmanFS=3&w;g.huffmanDS=w>>2&3;g.huffmanDT=w>>4&3;g.huffmanRefinementDW=w>>6&3;g.huffmanRefinementDH=w>>8&3;g.huffmanRefinementDX=w>>10&3;g.huffmanRefinementDY=w>>12&3;g.huffmanRefinementSizeSelector=!!(16384&w)}if(g.refinement&&!g.refinementTemplate){o=[];for(c=0;c<2;c++){o.push({x:(0,a.readInt8)(d,m),y:(0,a.readInt8)(d,m+1)});m+=2}g.refinementAt=o}g.numberOfSymbolInstances=(0,a.readUint32)(d,m);m+=4;i=[g,h.referredTo,d,m,p];break;case 16:var _={},C=d[m++];_.mmr=!!(1&C);_.template=C>>1&3;_.patternWidth=d[m++];_.patternHeight=d[m++];_.maxPatternIndex=(0,a.readUint32)(d,m);m+=4;i=[_,h.number,d,m,p];break;case 22:case 23:var k={};k.info=readRegionSegmentInformation(d,m);m+=b;var S=d[m++];k.mmr=!!(1&S);k.template=S>>1&3;k.enableSkip=!!(8&S);k.combinationOperator=S>>4&7;k.defaultPixelValue=S>>7&1;k.gridWidth=(0,a.readUint32)(d,m);m+=4;k.gridHeight=(0,a.readUint32)(d,m);m+=4;k.gridOffsetX=4294967295&(0,a.readUint32)(d,m);m+=4;k.gridOffsetY=4294967295&(0,a.readUint32)(d,m);m+=4;k.gridVectorX=(0,a.readUint16)(d,m);m+=2;k.gridVectorY=(0,a.readUint16)(d,m);m+=2;i=[k,h.referredTo,d,m,p];break;case 38:case 39:var P={};P.info=readRegionSegmentInformation(d,m);m+=b;var T=d[m++];P.mmr=!!(1&T);P.template=T>>1&3;P.prediction=!!(8&T);if(!P.mmr){l=0===P.template?4:1;o=[];for(c=0;c<l;c++){o.push({x:(0,a.readInt8)(d,m),y:(0,a.readInt8)(d,m+1)});m+=2}P.at=o}i=[P,d,m,p];break;case 48:var I={width:(0,a.readUint32)(d,m),height:(0,a.readUint32)(d,m+4),resolutionX:(0,a.readUint32)(d,m+8),resolutionY:(0,a.readUint32)(d,m+12)};4294967295===I.height&&delete I.height;var O=d[m+16];(0,a.readUint16)(d,m+17);I.lossless=!!(1&O);I.refinement=!!(2&O);I.defaultPixelValue=O>>2&1;I.combinationOperator=O>>3&3;I.requiresBuffer=!!(32&O);I.combinationOperatorOverride=!!(64&O);i=[I];break;case 49:case 50:case 51:break;case 53:i=[h.number,d,m,p];break;case 62:break;default:throw new u("segment type ".concat(h.typeName,"(").concat(h.type,")")+" is not implemented")}var E="on"+h.typeName;E in r&&r[E].apply(r,i)}function processSegments(t,r){for(var i=0,o=t.length;i<o;i++)processSegment(t[i],r)}var x=function(){function SimpleSegmentVisitor(){_classCallCheck(this,SimpleSegmentVisitor)}_createClass(SimpleSegmentVisitor,[{key:"onPageInformation",value:function onPageInformation(t){this.currentPageInfo=t;var r=t.width+7>>3,i=new Uint8ClampedArray(r*t.height);if(t.defaultPixelValue)for(var o=0,a=i.length;o<a;o++)i[o]=255;this.buffer=i}},{key:"drawBitmap",value:function drawBitmap(t,r){var i,o,a,c,l=this.currentPageInfo,h=t.width,d=t.height,p=l.width+7>>3,m=l.combinationOperatorOverride?t.combinationOperator:l.combinationOperator,y=this.buffer,v=128>>(7&t.x),g=t.y*p+(t.x>>3);switch(m){case 0:for(i=0;i<d;i++){a=v;c=g;for(o=0;o<h;o++){r[i][o]&&(y[c]|=a);if(!(a>>=1)){a=128;c++}}g+=p}break;case 2:for(i=0;i<d;i++){a=v;c=g;for(o=0;o<h;o++){r[i][o]&&(y[c]^=a);if(!(a>>=1)){a=128;c++}}g+=p}break;default:throw new u("operator ".concat(m," is not supported"))}}},{key:"onImmediateGenericRegion",value:function onImmediateGenericRegion(t,r,i,o){var a=t.info,c=new d(r,i,o),l=decodeBitmap(t.mmr,a.width,a.height,t.template,t.prediction,null,t.at,c);this.drawBitmap(a,l)}},{key:"onImmediateLosslessGenericRegion",value:function onImmediateLosslessGenericRegion(){this.onImmediateGenericRegion.apply(this,arguments)}},{key:"onSymbolDictionary",value:function onSymbolDictionary(t,r,i,o,c,l){var h,p;if(t.huffman){h=function getSymbolDictionaryHuffmanTables(t,r,i){var o,a,c,l,h=0;switch(t.huffmanDHSelector){case 0:case 1:o=getStandardTable(t.huffmanDHSelector+4);break;case 3:o=getCustomHuffmanTable(h,r,i);h++;break;default:throw new u("invalid Huffman DH selector")}switch(t.huffmanDWSelector){case 0:case 1:a=getStandardTable(t.huffmanDWSelector+2);break;case 3:a=getCustomHuffmanTable(h,r,i);h++;break;default:throw new u("invalid Huffman DW selector")}if(t.bitmapSizeSelector){c=getCustomHuffmanTable(h,r,i);h++}else c=getStandardTable(1);l=t.aggregationInstancesSelector?getCustomHuffmanTable(h,r,i):getStandardTable(1);return{tableDeltaHeight:o,tableDeltaWidth:a,tableBitmapSize:c,tableAggregateInstances:l}}(t,i,this.customTables);p=new S(o,c,l)}var m=this.symbols;m||(this.symbols=m={});for(var y=[],v=0,g=i.length;v<g;v++){var b=m[i[v]];b&&(y=y.concat(b))}var x=new d(o,c,l);m[r]=function decodeSymbolDictionary(t,r,i,o,c,l,h,d,p,m,y,v){if(t&&r)throw new u("symbol refinement with Huffman is not supported");var g,b,x=[],w=0,_=(0,a.log2)(i.length+o),C=y.decoder,k=y.contextCache;if(t){g=getStandardTable(1);b=[];_=Math.max(_,1)}for(;x.length<o;){w+=t?l.tableDeltaHeight.decode(v):decodeInteger(k,"IADH",C);for(var S=0,P=0,T=t?b.length:0;;){var I=t?l.tableDeltaWidth.decode(v):decodeInteger(k,"IADW",C);if(null===I)break;P+=S+=I;var O=void 0;if(r){var E=decodeInteger(k,"IAAI",C);if(E>1)O=decodeTextRegion(t,r,S,w,0,E,1,i.concat(x),_,0,0,1,0,l,p,m,y,0,v);else{var A=decodeIAID(k,C,_),R=decodeInteger(k,"IARDX",C),B=decodeInteger(k,"IARDY",C);O=decodeRefinement(S,w,p,A<i.length?i[A]:x[A-i.length],R,B,!1,m,y)}x.push(O)}else if(t)b.push(S);else{O=decodeBitmap(!1,S,w,h,!1,null,d,y);x.push(O)}}if(t&&!r){var M=l.tableBitmapSize.decode(v);v.byteAlign();var D=void 0;if(0===M)D=readUncompressedBitmap(v,P,w);else{var L=v.end,U=v.position+M;v.end=U;D=decodeMMRBitmap(v,P,w,!1);v.end=L;v.position=U}var N=b.length;if(T===N-1)x.push(D);else{var j=void 0,H=void 0,z=0,X=void 0,Y=void 0;for(j=T;j<N;j++){X=z+b[j];Y=[];for(H=0;H<w;H++)Y.push(D[H].subarray(z,X));x.push(Y);z=X}}}}for(var G,q,J=[],W=[],V=!1,K=i.length+o;W.length<K;){for(var Q=t?g.decode(v):decodeInteger(k,"IAEX",C);Q--;)W.push(V);V=!V}for(G=0,q=i.length;G<q;G++)W[G]&&J.push(i[G]);for(var Z=0;Z<o;G++,Z++)W[G]&&J.push(x[Z]);return J}(t.huffman,t.refinement,y,t.numberOfNewSymbols,t.numberOfExportedSymbols,h,t.template,t.at,t.refinementTemplate,t.refinementAt,x,p)}},{key:"onImmediateTextRegion",value:function onImmediateTextRegion(t,r,i,o,c){for(var l,h,p=t.info,m=this.symbols,y=[],v=0,g=r.length;v<g;v++){var b=m[r[v]];b&&(y=y.concat(b))}var x=(0,a.log2)(y.length);if(t.huffman){h=new S(i,o,c);l=function getTextRegionHuffmanTables(t,r,i,o,a){for(var c=[],l=0;l<=34;l++){var h=a.readBits(4);c.push(new w([l,h,0,0]))}var d=new C(c,!1);c.length=0;for(var p=0;p<o;){var m=d.decode(a);if(m>=32){var y=void 0,v=void 0,g=void 0;switch(m){case 32:if(0===p)throw new u("no previous value in symbol ID table");v=a.readBits(2)+3;y=c[p-1].prefixLength;break;case 33:v=a.readBits(3)+3;y=0;break;case 34:v=a.readBits(7)+11;y=0;break;default:throw new u("invalid code length in symbol ID table")}for(g=0;g<v;g++){c.push(new w([p,y,0,0]));p++}}else{c.push(new w([p,m,0,0]));p++}}a.byteAlign();var b,x,_,k=new C(c,!1),S=0;switch(t.huffmanFS){case 0:case 1:b=getStandardTable(t.huffmanFS+6);break;case 3:b=getCustomHuffmanTable(S,r,i);S++;break;default:throw new u("invalid Huffman FS selector")}switch(t.huffmanDS){case 0:case 1:case 2:x=getStandardTable(t.huffmanDS+8);break;case 3:x=getCustomHuffmanTable(S,r,i);S++;break;default:throw new u("invalid Huffman DS selector")}switch(t.huffmanDT){case 0:case 1:case 2:_=getStandardTable(t.huffmanDT+11);break;case 3:_=getCustomHuffmanTable(S,r,i);S++;break;default:throw new u("invalid Huffman DT selector")}if(t.refinement)throw new u("refinement with Huffman is not supported");return{symbolIDTable:k,tableFirstS:b,tableDeltaS:x,tableDeltaT:_}}(t,r,this.customTables,y.length,h)}var _=new d(i,o,c),k=decodeTextRegion(t.huffman,t.refinement,p.width,p.height,t.defaultPixelValue,t.numberOfSymbolInstances,t.stripSize,y,x,t.transposed,t.dsOffset,t.referenceCorner,t.combinationOperator,l,t.refinementTemplate,t.refinementAt,_,t.logStripSize,h);this.drawBitmap(p,k)}},{key:"onImmediateLosslessTextRegion",value:function onImmediateLosslessTextRegion(){this.onImmediateTextRegion.apply(this,arguments)}},{key:"onPatternDictionary",value:function onPatternDictionary(t,r,i,o,a){var c=this.patterns;c||(this.patterns=c={});var l=new d(i,o,a);c[r]=function decodePatternDictionary(t,r,i,o,a,c){var l=[];if(!t){l.push({x:-r,y:0});0===a&&l.push({x:-3,y:-1},{x:2,y:-2},{x:-2,y:-2})}for(var u=decodeBitmap(t,(o+1)*r,i,a,!1,null,l,c),h=[],d=0;d<=o;d++){for(var p=[],m=r*d,y=m+r,v=0;v<i;v++)p.push(u[v].subarray(m,y));h.push(p)}return h}(t.mmr,t.patternWidth,t.patternHeight,t.maxPatternIndex,t.template,l)}},{key:"onImmediateHalftoneRegion",value:function onImmediateHalftoneRegion(t,r,i,o,c){var l=this.patterns[r[0]],h=t.info,p=new d(i,o,c),m=function decodeHalftoneRegion(t,r,i,o,c,l,h,d,p,m,y,v,g,b,x){if(h)throw new u("skip is not supported");if(0!==d)throw new u('operator "'.concat(d,'" is not supported in halftone region'));var w,_,C,k=[];for(w=0;w<c;w++){C=new Uint8Array(o);if(l)for(_=0;_<o;_++)C[_]=l;k.push(C)}var P=r.length,T=r[0],I=T[0].length,O=T.length,E=(0,a.log2)(P),A=[];if(!t){A.push({x:i<=1?3:2,y:-1});0===i&&A.push({x:-3,y:-1},{x:2,y:-2},{x:-2,y:-2})}var R,B,M,D,L,U,N,j,H,z,X,Y=[];t&&(R=new S(x.data,x.start,x.end));for(w=E-1;w>=0;w--){B=t?decodeMMRBitmap(R,p,m,!0):decodeBitmap(!1,p,m,i,!1,null,A,x);Y[w]=B}for(M=0;M<m;M++)for(D=0;D<p;D++){L=0;U=0;for(_=E-1;_>=0;_--)U|=(L^=Y[_][M][D])<<_;N=r[U];H=v+M*g-D*b>>8;if((j=y+M*b+D*g>>8)>=0&&j+I<=o&&H>=0&&H+O<=c)for(w=0;w<O;w++){X=k[H+w];z=N[w];for(_=0;_<I;_++)X[j+_]|=z[_]}else{var G=void 0,q=void 0;for(w=0;w<O;w++)if(!((q=H+w)<0||q>=c)){X=k[q];z=N[w];for(_=0;_<I;_++)(G=j+_)>=0&&G<o&&(X[G]|=z[_])}}}return k}(t.mmr,l,t.template,h.width,h.height,t.defaultPixelValue,t.enableSkip,t.combinationOperator,t.gridWidth,t.gridHeight,t.gridOffsetX,t.gridOffsetY,t.gridVectorX,t.gridVectorY,p);this.drawBitmap(h,m)}},{key:"onImmediateLosslessHalftoneRegion",value:function onImmediateLosslessHalftoneRegion(){this.onImmediateHalftoneRegion.apply(this,arguments)}},{key:"onTables",value:function onTables(t,r,i,o){var c=this.customTables;c||(this.customTables=c={});c[t]=function decodeTablesSegment(t,r,i){var o,c,l=t[r],u=4294967295&(0,a.readUint32)(t,r+1),h=4294967295&(0,a.readUint32)(t,r+5),d=new S(t,r+9,i),p=1+(l>>1&7),m=1+(l>>4&7),y=[],v=u;do{o=d.readBits(p);c=d.readBits(m);y.push(new w([v,o,c,0]));v+=1<<c}while(v<h);o=d.readBits(p);y.push(new w([u-1,o,32,0,"lower"]));o=d.readBits(p);y.push(new w([h,o,32,0]));if(1&l){o=d.readBits(p);y.push(new w([o,0]))}return new C(y,!1)}(r,i,o)}}]);return SimpleSegmentVisitor}(),w=function HuffmanLine(t){_classCallCheck(this,HuffmanLine);if(2===t.length){this.isOOB=!0;this.rangeLow=0;this.prefixLength=t[0];this.rangeLength=0;this.prefixCode=t[1];this.isLowerRange=!1}else{this.isOOB=!1;this.rangeLow=t[0];this.prefixLength=t[1];this.rangeLength=t[2];this.prefixCode=t[3];this.isLowerRange="lower"===t[4]}},_=function(){function HuffmanTreeNode(t){_classCallCheck(this,HuffmanTreeNode);this.children=[];if(t){this.isLeaf=!0;this.rangeLength=t.rangeLength;this.rangeLow=t.rangeLow;this.isLowerRange=t.isLowerRange;this.isOOB=t.isOOB}else this.isLeaf=!1}_createClass(HuffmanTreeNode,[{key:"buildTree",value:function buildTree(t,r){var i=t.prefixCode>>r&1;if(r<=0)this.children[i]=new HuffmanTreeNode(t);else{var o=this.children[i];o||(this.children[i]=o=new HuffmanTreeNode(null));o.buildTree(t,r-1)}}},{key:"decodeNode",value:function decodeNode(t){if(this.isLeaf){if(this.isOOB)return null;var r=t.readBits(this.rangeLength);return this.rangeLow+(this.isLowerRange?-r:r)}var i=this.children[t.readBit()];if(!i)throw new u("invalid Huffman data");return i.decodeNode(t)}}]);return HuffmanTreeNode}(),C=function(){function HuffmanTable(t,r){_classCallCheck(this,HuffmanTable);r||this.assignPrefixCodes(t);this.rootNode=new _(null);for(var i=0,o=t.length;i<o;i++){var a=t[i];a.prefixLength>0&&this.rootNode.buildTree(a,a.prefixLength-1)}}_createClass(HuffmanTable,[{key:"decode",value:function decode(t){return this.rootNode.decodeNode(t)}},{key:"assignPrefixCodes",value:function assignPrefixCodes(t){for(var r=t.length,i=0,o=0;o<r;o++)i=Math.max(i,t[o].prefixLength);for(var a=new Uint32Array(i+1),c=0;c<r;c++)a[t[c].prefixLength]++;var l,u,h,d=1,p=0;a[0]=0;for(;d<=i;){l=p=p+a[d-1]<<1;u=0;for(;u<r;){if((h=t[u]).prefixLength===d){h.prefixCode=l;l++}u++}d++}}}]);return HuffmanTable}();var k={};function getStandardTable(t){var r,i=k[t];if(i)return i;switch(t){case 1:r=[[0,1,4,0],[16,2,8,2],[272,3,16,6],[65808,3,32,7]];break;case 2:r=[[0,1,0,0],[1,2,0,2],[2,3,0,6],[3,4,3,14],[11,5,6,30],[75,6,32,62],[6,63]];break;case 3:r=[[-256,8,8,254],[0,1,0,0],[1,2,0,2],[2,3,0,6],[3,4,3,14],[11,5,6,30],[-257,8,32,255,"lower"],[75,7,32,126],[6,62]];break;case 4:r=[[1,1,0,0],[2,2,0,2],[3,3,0,6],[4,4,3,14],[12,5,6,30],[76,5,32,31]];break;case 5:r=[[-255,7,8,126],[1,1,0,0],[2,2,0,2],[3,3,0,6],[4,4,3,14],[12,5,6,30],[-256,7,32,127,"lower"],[76,6,32,62]];break;case 6:r=[[-2048,5,10,28],[-1024,4,9,8],[-512,4,8,9],[-256,4,7,10],[-128,5,6,29],[-64,5,5,30],[-32,4,5,11],[0,2,7,0],[128,3,7,2],[256,3,8,3],[512,4,9,12],[1024,4,10,13],[-2049,6,32,62,"lower"],[2048,6,32,63]];break;case 7:r=[[-1024,4,9,8],[-512,3,8,0],[-256,4,7,9],[-128,5,6,26],[-64,5,5,27],[-32,4,5,10],[0,4,5,11],[32,5,5,28],[64,5,6,29],[128,4,7,12],[256,3,8,1],[512,3,9,2],[1024,3,10,3],[-1025,5,32,30,"lower"],[2048,5,32,31]];break;case 8:r=[[-15,8,3,252],[-7,9,1,508],[-5,8,1,253],[-3,9,0,509],[-2,7,0,124],[-1,4,0,10],[0,2,1,0],[2,5,0,26],[3,6,0,58],[4,3,4,4],[20,6,1,59],[22,4,4,11],[38,4,5,12],[70,5,6,27],[134,5,7,28],[262,6,7,60],[390,7,8,125],[646,6,10,61],[-16,9,32,510,"lower"],[1670,9,32,511],[2,1]];break;case 9:r=[[-31,8,4,252],[-15,9,2,508],[-11,8,2,253],[-7,9,1,509],[-5,7,1,124],[-3,4,1,10],[-1,3,1,2],[1,3,1,3],[3,5,1,26],[5,6,1,58],[7,3,5,4],[39,6,2,59],[43,4,5,11],[75,4,6,12],[139,5,7,27],[267,5,8,28],[523,6,8,60],[779,7,9,125],[1291,6,11,61],[-32,9,32,510,"lower"],[3339,9,32,511],[2,0]];break;case 10:r=[[-21,7,4,122],[-5,8,0,252],[-4,7,0,123],[-3,5,0,24],[-2,2,2,0],[2,5,0,25],[3,6,0,54],[4,7,0,124],[5,8,0,253],[6,2,6,1],[70,5,5,26],[102,6,5,55],[134,6,6,56],[198,6,7,57],[326,6,8,58],[582,6,9,59],[1094,6,10,60],[2118,7,11,125],[-22,8,32,254,"lower"],[4166,8,32,255],[2,2]];break;case 11:r=[[1,1,0,0],[2,2,1,2],[4,4,0,12],[5,4,1,13],[7,5,1,28],[9,5,2,29],[13,6,2,60],[17,7,2,122],[21,7,3,123],[29,7,4,124],[45,7,5,125],[77,7,6,126],[141,7,32,127]];break;case 12:r=[[1,1,0,0],[2,2,0,2],[3,3,1,6],[5,5,0,28],[6,5,1,29],[8,6,1,60],[10,7,0,122],[11,7,1,123],[13,7,2,124],[17,7,3,125],[25,7,4,126],[41,8,5,254],[73,8,32,255]];break;case 13:r=[[1,1,0,0],[2,3,0,4],[3,4,0,12],[4,5,0,28],[5,4,1,13],[7,3,3,5],[15,6,1,58],[17,6,2,59],[21,6,3,60],[29,6,4,61],[45,6,5,62],[77,7,6,126],[141,7,32,127]];break;case 14:r=[[-2,3,0,4],[-1,3,0,5],[0,1,0,0],[1,3,0,6],[2,3,0,7]];break;case 15:r=[[-24,7,4,124],[-8,6,2,60],[-4,5,1,28],[-2,4,0,12],[-1,3,0,4],[0,1,0,0],[1,3,0,5],[2,4,0,13],[3,5,1,29],[5,6,2,61],[9,7,4,125],[-25,7,32,126,"lower"],[25,7,32,127]];break;default:throw new u("standard table B.".concat(t," does not exist"))}for(var o=0,a=r.length;o<a;o++)r[o]=new w(r[o]);i=new C(r,!0);k[t]=i;return i}var S=function(){function Reader(t,r,i){_classCallCheck(this,Reader);this.data=t;this.start=r;this.end=i;this.position=r;this.shift=-1;this.currentByte=0}_createClass(Reader,[{key:"readBit",value:function readBit(){if(this.shift<0){if(this.position>=this.end)throw new u("end of data while reading bit");this.currentByte=this.data[this.position++];this.shift=7}var t=this.currentByte>>this.shift&1;this.shift--;return t}},{key:"readBits",value:function readBits(t){var r,i=0;for(r=t-1;r>=0;r--)i|=this.readBit()<<r;return i}},{key:"byteAlign",value:function byteAlign(){this.shift=-1}},{key:"next",value:function next(){return this.position>=this.end?-1:this.data[this.position++]}}]);return Reader}();function getCustomHuffmanTable(t,r,i){for(var o=0,a=0,c=r.length;a<c;a++){var l=i[r[a]];if(l){if(t===o)return l;o++}}throw new u("can't find custom Huffman table")}function readUncompressedBitmap(t,r,i){for(var o=[],a=0;a<i;a++){var c=new Uint8Array(r);o.push(c);for(var l=0;l<r;l++)c[l]=t.readBit();t.byteAlign()}return o}function decodeMMRBitmap(t,r,i,o){for(var a,c={K:-1,Columns:r,Rows:i,BlackIs1:!0,EndOfBlock:o},u=new l.CCITTFaxDecoder(t,c),h=[],d=!1,p=0;p<i;p++){var m=new Uint8Array(r);h.push(m);for(var y=-1,v=0;v<r;v++){if(y<0){if(-1===(a=u.readNextChar())){a=0;d=!0}y=7}m[v]=a>>y&1;y--}}if(o&&!d)for(var g=0;g<5&&-1!==u.readNextChar();g++);return h}var P=function(){function Jbig2Image(){_classCallCheck(this,Jbig2Image)}_createClass(Jbig2Image,[{key:"parseChunks",value:function parseChunks(t){return function parseJbig2Chunks(t){for(var r=new x,i=0,o=t.length;i<o;i++){var a=t[i];processSegments(readSegments({},a.data,a.start,a.end),r)}return r.buffer}(t)}},{key:"parse",value:function parse(t){var r=function parseJbig2(t){var r=t.length,i=0;if(151!==t[i]||74!==t[i+1]||66!==t[i+2]||50!==t[i+3]||13!==t[i+4]||10!==t[i+5]||26!==t[i+6]||10!==t[i+7])throw new u("parseJbig2 - invalid header.");var o=Object.create(null);i+=8;var c=t[i++];o.randomAccess=!(1&c);if(!(2&c)){o.numberOfPages=(0,a.readUint32)(t,i);i+=4}var l=readSegments(o,t,i,r),h=new x;processSegments(l,h);for(var d=h.currentPageInfo,p=d.width,m=d.height,y=h.buffer,v=new Uint8ClampedArray(p*m),g=0,b=0,w=0;w<m;w++)for(var _=0,C=void 0,k=0;k<p;k++){if(!_){_=128;C=y[b++]}v[g++]=C&_?0:255;_>>=1}return{imgData:v,width:p,height:m}}(t),i=r.imgData,o=r.width,c=r.height;this.width=o;this.height=c;return i}}]);return Jbig2Image}();r.Jbig2Image=P},(t,r,i)=>{"use strict";function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}Object.defineProperty(r,"__esModule",{value:!0});r.collectActions=function collectActions(t,r,i){var c=Object.create(null),l=getInheritableProperty({dict:r,key:"AA",stopWhenFound:!1});if(l)for(var u=l.length-1;u>=0;u--){var h=l[u];if(h instanceof a.Dict){var d,p=_createForOfIteratorHelper(h.getKeys());try{for(p.s();!(d=p.n()).done;){var m=d.value,y=i[m];if(y){var v=h.getRaw(m),g=new a.RefSet,b=[];_collectJS(v,t,b,g);b.length>0&&(c[y]=b)}}}catch(t){p.e(t)}finally{p.f()}}}if(r.has("A")){var x=r.get("A"),w=new a.RefSet,_=[];_collectJS(x,t,_,w);_.length>0&&(c.Action=_)}return(0,o.objectSize)(c)>0?c:null};r.encodeToXmlString=function encodeToXmlString(t){for(var r=[],i=0,o=0,a=t.length;o<a;o++){var c=t.codePointAt(o);if(32<=c&&c<=126){var l=p[c];if(l){i<o&&r.push(t.substring(i,o));r.push(l);i=o+1}}else{i<o&&r.push(t.substring(i,o));r.push("&#x".concat(c.toString(16).toUpperCase(),";"));c>55295&&(c<57344||c>65533)&&o++;i=o+1}}if(0===r.length)return t;i<t.length&&r.push(t.substring(i,t.length));return r.join("")};r.escapePDFName=function escapePDFName(t){for(var r=[],i=0,o=0,a=t.length;o<a;o++){var c=t.charCodeAt(o);if(c<33||c>126||35===c||40===c||41===c||60===c||62===c||91===c||93===c||123===c||125===c||47===c||37===c){i<o&&r.push(t.substring(i,o));r.push("#".concat(c.toString(16)));i=o+1}}if(0===r.length)return t;i<t.length&&r.push(t.substring(i,t.length));return r.join("")};r.getArrayLookupTableFactory=function getArrayLookupTableFactory(t){var r;return function(){if(t){var i=t();t=null;r=Object.create(null);for(var o=0,a=i.length;o<a;o+=2)r[i[o]]=i[o+1];i=null}return r}};r.getInheritableProperty=getInheritableProperty;r.getLookupTableFactory=function getLookupTableFactory(t){var r;return function(){if(t){r=Object.create(null);t(r);t=null}return r}};r.isWhiteSpace=function isWhiteSpace(t){return 32===t||9===t||13===t||10===t};r.log2=function log2(t){if(t<=0)return 0;return Math.ceil(Math.log2(t))};r.parseXFAPath=function parseXFAPath(t){var r=/(.+)\[([0-9]+)\]$/;return t.split(".").map((function(t){var i=t.match(r);return i?{name:i[1],pos:parseInt(i[2],10)}:{name:t,pos:0}}))};r.readInt8=function readInt8(t,r){return t[r]<<24>>24};r.readUint16=function readUint16(t,r){return t[r]<<8|t[r+1]};r.readUint32=function readUint32(t,r){return(t[r]<<24|t[r+1]<<16|t[r+2]<<8|t[r+3])>>>0};r.toRomanNumerals=function toRomanNumerals(t){var r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];(0,o.assert)(Number.isInteger(t)&&t>0,"The number should be a positive integer.");var i,a=[];for(;t>=1e3;){t-=1e3;a.push("M")}i=t/100|0;t%=100;a.push(d[i]);i=t/10|0;t%=10;a.push(d[10+i]);a.push(d[20+t]);var c=a.join("");return r?c.toLowerCase():c};r.validateCSSFont=function validateCSSFont(t){var r=new Set(["100","200","300","400","500","600","700","800","900","1000","normal","bold","bolder","lighter"]),i=t.fontFamily,a=t.fontWeight,c=t.italicAngle;if(/^".*"$/.test(i)){if(/[^\\]"/.test(i.slice(1,i.length-1))){(0,o.warn)('XFA - FontFamily contains some unescaped ": '.concat(i,"."));return!1}}else if(/^'.*'$/.test(i)){if(/[^\\]'/.test(i.slice(1,i.length-1))){(0,o.warn)("XFA - FontFamily contains some unescaped ': ".concat(i,"."));return!1}}else{var l,u=_createForOfIteratorHelper(i.split(/[ \t]+/));try{for(u.s();!(l=u.n()).done;){var h=l.value;if(/^([0-9]|(-([0-9]|-)))/.test(h)||!/^[a-zA-Z0-9\-_\\]+$/.test(h)){(0,o.warn)("XFA - FontFamily contains some invalid <custom-ident>: ".concat(i,"."));return!1}}}catch(t){u.e(t)}finally{u.f()}}var d=a?a.toString():"";t.fontWeight=r.has(d)?d:"400";var p=parseFloat(c);t.italicAngle=isNaN(p)||p<-90||p>90?"14":c.toString();return!0};r.XRefParseException=r.XRefEntryException=r.ParserEOFException=r.MissingDataException=void 0;var o=i(1),a=i(84);function _createForOfIteratorHelper(t,r){var i="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!i){if(Array.isArray(t)||(i=function _unsupportedIterableToArray(t,r){if(!t)return;if("string"==typeof t)return _arrayLikeToArray(t,r);var i=Object.prototype.toString.call(t).slice(8,-1);"Object"===i&&t.constructor&&(i=t.constructor.name);if("Map"===i||"Set"===i)return Array.from(t);if("Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i))return _arrayLikeToArray(t,r)}(t))||r&&t&&"number"==typeof t.length){i&&(t=i);var o=0,a=function F(){};return{s:a,n:function n(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}},e:function e(t){throw t},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var c,l=!0,u=!1;return{s:function s(){i=i.call(t)},n:function n(){var t=i.next();l=t.done;return t},e:function e(t){u=!0;c=t},f:function f(){try{l||null==i.return||i.return()}finally{if(u)throw c}}}}function _arrayLikeToArray(t,r){(null==r||r>t.length)&&(r=t.length);for(var i=0,o=new Array(r);i<r;i++)o[i]=t[i];return o}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _inherits(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}});r&&_setPrototypeOf(t,r)}function _setPrototypeOf(t,r){return(_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(t,r){t.__proto__=r;return t})(t,r)}function _createSuper(t){var r=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})));return!0}catch(t){return!1}}();return function _createSuperInternal(){var i,o=_getPrototypeOf(t);if(r){var a=_getPrototypeOf(this).constructor;i=Reflect.construct(o,arguments,a)}else i=o.apply(this,arguments);return _possibleConstructorReturn(this,i)}}function _possibleConstructorReturn(t,r){return!r||"object"!==_typeof(r)&&"function"!=typeof r?function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):r}function _getPrototypeOf(t){return(_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var c=function(t){_inherits(MissingDataException,t);var r=_createSuper(MissingDataException);function MissingDataException(t,i){var o;_classCallCheck(this,MissingDataException);(o=r.call(this,"Missing data [".concat(t,", ").concat(i,")"))).begin=t;o.end=i;return o}return MissingDataException}(o.BaseException);r.MissingDataException=c;var l=function(t){_inherits(ParserEOFException,t);var r=_createSuper(ParserEOFException);function ParserEOFException(){_classCallCheck(this,ParserEOFException);return r.apply(this,arguments)}return ParserEOFException}(o.BaseException);r.ParserEOFException=l;var u=function(t){_inherits(XRefEntryException,t);var r=_createSuper(XRefEntryException);function XRefEntryException(){_classCallCheck(this,XRefEntryException);return r.apply(this,arguments)}return XRefEntryException}(o.BaseException);r.XRefEntryException=u;var h=function(t){_inherits(XRefParseException,t);var r=_createSuper(XRefParseException);function XRefParseException(){_classCallCheck(this,XRefParseException);return r.apply(this,arguments)}return XRefParseException}(o.BaseException);r.XRefParseException=h;function getInheritableProperty(t){for(var r,i=t.dict,o=t.key,c=t.getArray,l=void 0!==c&&c,u=t.stopWhenFound,h=void 0===u||u,d=new a.RefSet;i instanceof a.Dict&&(!i.objId||!d.has(i.objId));){i.objId&&d.put(i.objId);var p=l?i.getArray(o):i.get(o);if(void 0!==p){if(h)return p;r||(r=[]);r.push(p)}i=i.get("Parent")}return r}var d=["","C","CC","CCC","CD","D","DC","DCC","DCCC","CM","","X","XX","XXX","XL","L","LX","LXX","LXXX","XC","","I","II","III","IV","V","VI","VII","VIII","IX"];function _collectJS(t,r,i,c){if(t){var l=null;if((0,a.isRef)(t)){if(c.has(t))return;l=t;c.put(l);t=r.fetch(t)}if(Array.isArray(t)){var u,h=_createForOfIteratorHelper(t);try{for(h.s();!(u=h.n()).done;){_collectJS(u.value,r,i,c)}}catch(t){h.e(t)}finally{h.f()}}else if(t instanceof a.Dict){if((0,a.isName)(t.get("S"),"JavaScript")&&t.has("JS")){var d,p=t.get("JS");d=(0,a.isStream)(p)?p.getString():p;(d=(0,o.stringToPDFString)(d))&&i.push(d)}_collectJS(t.getRaw("Next"),r,i,c)}l&&c.remove(l)}}var p={60:"&lt;",62:"&gt;",38:"&amp;",34:"&quot;",39:"&apos;"}},(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.clearPrimitiveCaches=function clearPrimitiveCaches(){h._clearCache();u._clearCache();m._clearCache()};r.isCmd=function isCmd(t,r){return t instanceof h&&(void 0===r||t.cmd===r)};r.isDict=function isDict(t,r){return t instanceof p&&(void 0===r||isName(t.get("Type"),r))};r.isEOF=function isEOF(t){return t===l};r.isName=isName;r.isRef=function isRef(t){return t instanceof m};r.isRefsEqual=function isRefsEqual(t,r){return t.num===r.num&&t.gen===r.gen};r.isStream=function isStream(t){return t instanceof c.BaseStream};r.RefSetCache=r.RefSet=r.Ref=r.Name=r.EOF=r.Dict=r.Cmd=void 0;var o=function _interopRequireDefault(t){return t&&t.__esModule?t:{default:t}}(i(85)),a=i(1),c=i(87);function _slicedToArray(t,r){return function _arrayWithHoles(t){if(Array.isArray(t))return t}(t)||function _iterableToArrayLimit(t,r){var i=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null==i)return;var o,a,c=[],l=!0,u=!1;try{for(i=i.call(t);!(l=(o=i.next()).done);l=!0){c.push(o.value);if(r&&c.length===r)break}}catch(t){u=!0;a=t}finally{try{l||null==i.return||i.return()}finally{if(u)throw a}}return c}(t,r)||_unsupportedIterableToArray(t,r)||function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function _createForOfIteratorHelper(t,r){var i="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(!i){if(Array.isArray(t)||(i=_unsupportedIterableToArray(t))||r&&t&&"number"==typeof t.length){i&&(t=i);var o=0,a=function F(){};return{s:a,n:function n(){return o>=t.length?{done:!0}:{done:!1,value:t[o++]}},e:function e(t){throw t},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var c,l=!0,u=!1;return{s:function s(){i=i.call(t)},n:function n(){var t=i.next();l=t.done;return t},e:function e(t){u=!0;c=t},f:function f(){try{l||null==i.return||i.return()}finally{if(u)throw c}}}}function _unsupportedIterableToArray(t,r){if(t){if("string"==typeof t)return _arrayLikeToArray(t,r);var i=Object.prototype.toString.call(t).slice(8,-1);"Object"===i&&t.constructor&&(i=t.constructor.name);return"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?_arrayLikeToArray(t,r):void 0}}function _arrayLikeToArray(t,r){(null==r||r>t.length)&&(r=t.length);for(var i=0,o=new Array(r);i<r;i++)o[i]=t[i];return o}function asyncGeneratorStep(t,r,i,o,a,c,l){try{var u=t[c](l),h=u.value}catch(t){i(t);return}u.done?r(h):Promise.resolve(h).then(o,a)}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}var l={};r.EOF=l;var u=function NameClosure(){var t=Object.create(null);return function(){function Name(t){_classCallCheck(this,Name);this.name=t}_createClass(Name,null,[{key:"get",value:function get(r){var i=t[r];return i||(t[r]=new Name(r))}},{key:"_clearCache",value:function _clearCache(){t=Object.create(null)}}]);return Name}()}();r.Name=u;var h=function CmdClosure(){var t=Object.create(null);return function(){function Cmd(t){_classCallCheck(this,Cmd);this.cmd=t}_createClass(Cmd,null,[{key:"get",value:function get(r){var i=t[r];return i||(t[r]=new Cmd(r))}},{key:"_clearCache",value:function _clearCache(){t=Object.create(null)}}]);return Cmd}()}();r.Cmd=h;var d=function nonSerializableClosure(){return d},p=function(){function Dict(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;_classCallCheck(this,Dict);this._map=Object.create(null);this.xref=t;this.objId=null;this.suppressEncryption=!1;this.__nonSerializable__=d}_createClass(Dict,[{key:"assignXref",value:function assignXref(t){this.xref=t}},{key:"size",get:function get(){return Object.keys(this._map).length}},{key:"get",value:function get(t,r,i){var o=this._map[t];void 0===o&&void 0!==r&&void 0===(o=this._map[r])&&void 0!==i&&(o=this._map[i]);return o instanceof m&&this.xref?this.xref.fetch(o,this.suppressEncryption):o}},{key:"getAsync",value:(t=function _asyncToGenerator(t){return function(){var r=this,i=arguments;return new Promise((function(o,a){var c=t.apply(r,i);function _next(t){asyncGeneratorStep(c,o,a,_next,_throw,"next",t)}function _throw(t){asyncGeneratorStep(c,o,a,_next,_throw,"throw",t)}_next(void 0)}))}}(o.default.mark((function _callee(t,r,i){var a;return o.default.wrap((function _callee$(o){for(;;)switch(o.prev=o.next){case 0:void 0===(a=this._map[t])&&void 0!==r&&void 0===(a=this._map[r])&&void 0!==i&&(a=this._map[i]);if(!(a instanceof m&&this.xref)){o.next=4;break}return o.abrupt("return",this.xref.fetchAsync(a,this.suppressEncryption));case 4:return o.abrupt("return",a);case 5:case"end":return o.stop()}}),_callee,this)}))),function getAsync(r,i,o){return t.apply(this,arguments)})},{key:"getArray",value:function getArray(t,r,i){var o=this._map[t];void 0===o&&void 0!==r&&void 0===(o=this._map[r])&&void 0!==i&&(o=this._map[i]);o instanceof m&&this.xref&&(o=this.xref.fetch(o,this.suppressEncryption));if(Array.isArray(o))for(var a=0,c=(o=o.slice()).length;a<c;a++)o[a]instanceof m&&this.xref&&(o[a]=this.xref.fetch(o[a],this.suppressEncryption));return o}},{key:"getRaw",value:function getRaw(t){return this._map[t]}},{key:"getKeys",value:function getKeys(){return Object.keys(this._map)}},{key:"getRawValues",value:function getRawValues(){return Object.values(this._map)}},{key:"set",value:function set(t,r){this._map[t]=r}},{key:"has",value:function has(t){return void 0!==this._map[t]}},{key:"forEach",value:function forEach(t){for(var r in this._map)t(r,this.get(r))}}],[{key:"empty",get:function get(){var t=new Dict(null);t.set=function(t,r){(0,a.unreachable)("Should not call `set` on the empty dictionary.")};return(0,a.shadow)(this,"empty",t)}},{key:"merge",value:function merge(t){var r,i=t.xref,o=t.dictArray,a=t.mergeSubDicts,c=void 0!==a&&a,l=new Dict(i),u=new Map,h=_createForOfIteratorHelper(o);try{for(h.s();!(r=h.n()).done;){var d=r.value;if(d instanceof Dict)for(var p=0,m=Object.entries(d._map);p<m.length;p++){var y=_slicedToArray(m[p],2),v=y[0],g=y[1],b=u.get(v);if(void 0===b){b=[];u.set(v,b)}else if(!c)continue;b.push(g)}}}catch(t){h.e(t)}finally{h.f()}var x,w=_createForOfIteratorHelper(u);try{for(w.s();!(x=w.n()).done;){var _=_slicedToArray(x.value,2),C=_[0],k=_[1];if(1!==k.length&&k[0]instanceof Dict){var S,P=new Dict(i),T=_createForOfIteratorHelper(k);try{for(T.s();!(S=T.n()).done;){var I=S.value;if(I instanceof Dict)for(var O=0,E=Object.entries(I._map);O<E.length;O++){var A=_slicedToArray(E[O],2),R=A[0],B=A[1];void 0===P._map[R]&&(P._map[R]=B)}}}catch(t){T.e(t)}finally{T.f()}P.size>0&&(l._map[C]=P)}else l._map[C]=k[0]}}catch(t){w.e(t)}finally{w.f()}u.clear();return l.size>0?l:Dict.empty}}]);var t;return Dict}();r.Dict=p;var m=function RefClosure(){var t=Object.create(null);return function(){function Ref(t,r){_classCallCheck(this,Ref);this.num=t;this.gen=r}_createClass(Ref,[{key:"toString",value:function toString(){return 0===this.gen?"".concat(this.num,"R"):"".concat(this.num,"R").concat(this.gen)}}],[{key:"get",value:function get(r,i){var o=0===i?"".concat(r,"R"):"".concat(r,"R").concat(i),a=t[o];return a||(t[o]=new Ref(r,i))}},{key:"_clearCache",value:function _clearCache(){t=Object.create(null)}}]);return Ref}()}();r.Ref=m;var y=function(){function RefSet(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;_classCallCheck(this,RefSet);this._set=new Set(t&&t._set)}_createClass(RefSet,[{key:"has",value:function has(t){return this._set.has(t.toString())}},{key:"put",value:function put(t){this._set.add(t.toString())}},{key:"remove",value:function remove(t){this._set.delete(t.toString())}},{key:"forEach",value:function forEach(t){var r,i=_createForOfIteratorHelper(this._set.values());try{for(i.s();!(r=i.n()).done;){t(r.value)}}catch(t){i.e(t)}finally{i.f()}}},{key:"clear",value:function clear(){this._set.clear()}}]);return RefSet}();r.RefSet=y;var v=function(){function RefSetCache(){_classCallCheck(this,RefSetCache);this._map=new Map}_createClass(RefSetCache,[{key:"size",get:function get(){return this._map.size}},{key:"get",value:function get(t){return this._map.get(t.toString())}},{key:"has",value:function has(t){return this._map.has(t.toString())}},{key:"put",value:function put(t,r){this._map.set(t.toString(),r)}},{key:"putAlias",value:function putAlias(t,r){this._map.set(t.toString(),this.get(r))}},{key:"forEach",value:function forEach(t){var r,i=_createForOfIteratorHelper(this._map.values());try{for(i.s();!(r=i.n()).done;){t(r.value)}}catch(t){i.e(t)}finally{i.f()}}},{key:"clear",value:function clear(){this._map.clear()}}]);return RefSetCache}();r.RefSetCache=v;function isName(t,r){return t instanceof u&&(void 0===r||t.name===r)}},(t,r,i)=>{"use strict";t.exports=i(86)},(t,r,i)=>{"use strict";function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var o=function(t){var r,i=Object.prototype,o=i.hasOwnProperty,a="function"==typeof Symbol?Symbol:{},c=a.iterator||"@@iterator",l=a.asyncIterator||"@@asyncIterator",u=a.toStringTag||"@@toStringTag";function define(t,r,i){Object.defineProperty(t,r,{value:i,enumerable:!0,configurable:!0,writable:!0});return t[r]}try{define({},"")}catch(t){define=function define(t,r,i){return t[r]=i}}function wrap(t,r,i,o){var a=r&&r.prototype instanceof Generator?r:Generator,c=Object.create(a.prototype),l=new Context(o||[]);c._invoke=function makeInvokeMethod(t,r,i){var o=h;return function invoke(a,c){if(o===p)throw new Error("Generator is already running");if(o===m){if("throw"===a)throw c;return doneResult()}i.method=a;i.arg=c;for(;;){var l=i.delegate;if(l){var u=maybeInvokeDelegate(l,i);if(u){if(u===y)continue;return u}}if("next"===i.method)i.sent=i._sent=i.arg;else if("throw"===i.method){if(o===h){o=m;throw i.arg}i.dispatchException(i.arg)}else"return"===i.method&&i.abrupt("return",i.arg);o=p;var v=tryCatch(t,r,i);if("normal"===v.type){o=i.done?m:d;if(v.arg===y)continue;return{value:v.arg,done:i.done}}if("throw"===v.type){o=m;i.method="throw";i.arg=v.arg}}}}(t,i,l);return c}t.wrap=wrap;function tryCatch(t,r,i){try{return{type:"normal",arg:t.call(r,i)}}catch(t){return{type:"throw",arg:t}}}var h="suspendedStart",d="suspendedYield",p="executing",m="completed",y={};function Generator(){}function GeneratorFunction(){}function GeneratorFunctionPrototype(){}var v={};define(v,c,(function(){return this}));var g=Object.getPrototypeOf,b=g&&g(g(values([])));b&&b!==i&&o.call(b,c)&&(v=b);var x=GeneratorFunctionPrototype.prototype=Generator.prototype=Object.create(v);GeneratorFunction.prototype=GeneratorFunctionPrototype;define(x,"constructor",GeneratorFunctionPrototype);define(GeneratorFunctionPrototype,"constructor",GeneratorFunction);GeneratorFunction.displayName=define(GeneratorFunctionPrototype,u,"GeneratorFunction");function defineIteratorMethods(t){["next","throw","return"].forEach((function(r){define(t,r,(function(t){return this._invoke(r,t)}))}))}t.isGeneratorFunction=function(t){var r="function"==typeof t&&t.constructor;return!!r&&(r===GeneratorFunction||"GeneratorFunction"===(r.displayName||r.name))};t.mark=function(t){if(Object.setPrototypeOf)Object.setPrototypeOf(t,GeneratorFunctionPrototype);else{t.__proto__=GeneratorFunctionPrototype;define(t,u,"GeneratorFunction")}t.prototype=Object.create(x);return t};t.awrap=function(t){return{__await:t}};function AsyncIterator(t,r){function invoke(i,a,c,l){var u=tryCatch(t[i],t,a);if("throw"!==u.type){var h=u.arg,d=h.value;return d&&"object"===_typeof(d)&&o.call(d,"__await")?r.resolve(d.__await).then((function(t){invoke("next",t,c,l)}),(function(t){invoke("throw",t,c,l)})):r.resolve(d).then((function(t){h.value=t;c(h)}),(function(t){return invoke("throw",t,c,l)}))}l(u.arg)}var i;this._invoke=function enqueue(t,o){function callInvokeWithMethodAndArg(){return new r((function(r,i){invoke(t,o,r,i)}))}return i=i?i.then(callInvokeWithMethodAndArg,callInvokeWithMethodAndArg):callInvokeWithMethodAndArg()}}defineIteratorMethods(AsyncIterator.prototype);define(AsyncIterator.prototype,l,(function(){return this}));t.AsyncIterator=AsyncIterator;t.async=function(r,i,o,a,c){void 0===c&&(c=Promise);var l=new AsyncIterator(wrap(r,i,o,a),c);return t.isGeneratorFunction(i)?l:l.next().then((function(t){return t.done?t.value:l.next()}))};function maybeInvokeDelegate(t,i){var o=t.iterator[i.method];if(o===r){i.delegate=null;if("throw"===i.method){if(t.iterator.return){i.method="return";i.arg=r;maybeInvokeDelegate(t,i);if("throw"===i.method)return y}i.method="throw";i.arg=new TypeError("The iterator does not provide a 'throw' method")}return y}var a=tryCatch(o,t.iterator,i.arg);if("throw"===a.type){i.method="throw";i.arg=a.arg;i.delegate=null;return y}var c=a.arg;if(!c){i.method="throw";i.arg=new TypeError("iterator result is not an object");i.delegate=null;return y}if(!c.done)return c;i[t.resultName]=c.value;i.next=t.nextLoc;if("return"!==i.method){i.method="next";i.arg=r}i.delegate=null;return y}defineIteratorMethods(x);define(x,u,"Generator");define(x,c,(function(){return this}));define(x,"toString",(function(){return"[object Generator]"}));function pushTryEntry(t){var r={tryLoc:t[0]};1 in t&&(r.catchLoc=t[1]);if(2 in t){r.finallyLoc=t[2];r.afterLoc=t[3]}this.tryEntries.push(r)}function resetTryEntry(t){var r=t.completion||{};r.type="normal";delete r.arg;t.completion=r}function Context(t){this.tryEntries=[{tryLoc:"root"}];t.forEach(pushTryEntry,this);this.reset(!0)}t.keys=function(t){var r=[];for(var i in t)r.push(i);r.reverse();return function next(){for(;r.length;){var i=r.pop();if(i in t){next.value=i;next.done=!1;return next}}next.done=!0;return next}};function values(t){if(t){var i=t[c];if(i)return i.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var a=-1,l=function next(){for(;++a<t.length;)if(o.call(t,a)){next.value=t[a];next.done=!1;return next}next.value=r;next.done=!0;return next};return l.next=l}}return{next:doneResult}}t.values=values;function doneResult(){return{value:r,done:!0}}Context.prototype={constructor:Context,reset:function reset(t){this.prev=0;this.next=0;this.sent=this._sent=r;this.done=!1;this.delegate=null;this.method="next";this.arg=r;this.tryEntries.forEach(resetTryEntry);if(!t)for(var i in this)"t"===i.charAt(0)&&o.call(this,i)&&!isNaN(+i.slice(1))&&(this[i]=r)},stop:function stop(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function dispatchException(t){if(this.done)throw t;var i=this;function handle(o,a){l.type="throw";l.arg=t;i.next=o;if(a){i.method="next";i.arg=r}return!!a}for(var a=this.tryEntries.length-1;a>=0;--a){var c=this.tryEntries[a],l=c.completion;if("root"===c.tryLoc)return handle("end");if(c.tryLoc<=this.prev){var u=o.call(c,"catchLoc"),h=o.call(c,"finallyLoc");if(u&&h){if(this.prev<c.catchLoc)return handle(c.catchLoc,!0);if(this.prev<c.finallyLoc)return handle(c.finallyLoc)}else if(u){if(this.prev<c.catchLoc)return handle(c.catchLoc,!0)}else{if(!h)throw new Error("try statement without catch or finally");if(this.prev<c.finallyLoc)return handle(c.finallyLoc)}}}},abrupt:function abrupt(t,r){for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i];if(a.tryLoc<=this.prev&&o.call(a,"finallyLoc")&&this.prev<a.finallyLoc){var c=a;break}}c&&("break"===t||"continue"===t)&&c.tryLoc<=r&&r<=c.finallyLoc&&(c=null);var l=c?c.completion:{};l.type=t;l.arg=r;if(c){this.method="next";this.next=c.finallyLoc;return y}return this.complete(l)},complete:function complete(t,r){if("throw"===t.type)throw t.arg;if("break"===t.type||"continue"===t.type)this.next=t.arg;else if("return"===t.type){this.rval=this.arg=t.arg;this.method="return";this.next="end"}else"normal"===t.type&&r&&(this.next=r);return y},finish:function finish(t){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.finallyLoc===t){this.complete(i.completion,i.afterLoc);resetTryEntry(i);return y}}},catch:function _catch(t){for(var r=this.tryEntries.length-1;r>=0;--r){var i=this.tryEntries[r];if(i.tryLoc===t){var o=i.completion;if("throw"===o.type){var a=o.arg;resetTryEntry(i)}return a}}throw new Error("illegal catch attempt")},delegateYield:function delegateYield(t,i,o){this.delegate={iterator:values(t),resultName:i,nextLoc:o};"next"===this.method&&(this.arg=r);return y}};return t}("object"===_typeof(t=i.nmd(t))?t.exports:{});try{regeneratorRuntime=o}catch(t){"object"===("undefined"==typeof globalThis?"undefined":_typeof(globalThis))?globalThis.regeneratorRuntime=o:Function("r","regeneratorRuntime = r")(o)}},(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.BaseStream=void 0;var o=i(1);function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}var a=function(){function BaseStream(){!function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}(this,BaseStream);this.constructor===BaseStream&&(0,o.unreachable)("Cannot initialize BaseStream.")}!function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}(BaseStream,[{key:"length",get:function get(){(0,o.unreachable)("Abstract getter `length` accessed")}},{key:"isEmpty",get:function get(){(0,o.unreachable)("Abstract getter `isEmpty` accessed")}},{key:"isDataLoaded",get:function get(){return(0,o.shadow)(this,"isDataLoaded",!0)}},{key:"getByte",value:function getByte(){(0,o.unreachable)("Abstract method `getByte` called")}},{key:"getBytes",value:function getBytes(t){(0,o.unreachable)("Abstract method `getBytes` called")}},{key:"peekByte",value:function peekByte(){var t=this.getByte();-1!==t&&this.pos--;return t}},{key:"peekBytes",value:function peekBytes(t){var r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=this.getBytes(t,r);this.pos-=i.length;return i}},{key:"getUint16",value:function getUint16(){var t=this.getByte(),r=this.getByte();return-1===t||-1===r?-1:(t<<8)+r}},{key:"getInt32",value:function getInt32(){return(this.getByte()<<24)+(this.getByte()<<16)+(this.getByte()<<8)+this.getByte()}},{key:"getByteRange",value:function getByteRange(t,r){(0,o.unreachable)("Abstract method `getByteRange` called")}},{key:"getString",value:function getString(t){return(0,o.bytesToString)(this.getBytes(t,!1))}},{key:"skip",value:function skip(t){this.pos+=t||1}},{key:"reset",value:function reset(){(0,o.unreachable)("Abstract method `reset` called")}},{key:"moveStart",value:function moveStart(){(0,o.unreachable)("Abstract method `moveStart` called")}},{key:"makeSubStream",value:function makeSubStream(t,r){(0,o.unreachable)("Abstract method `makeSubStream` called")}},{key:"getBaseStreams",value:function getBaseStreams(){return null}}]);return BaseStream}();r.BaseStream=a},(t,r)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.ArithmeticDecoder=void 0;function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}var i=[{qe:22017,nmps:1,nlps:1,switchFlag:1},{qe:13313,nmps:2,nlps:6,switchFlag:0},{qe:6145,nmps:3,nlps:9,switchFlag:0},{qe:2753,nmps:4,nlps:12,switchFlag:0},{qe:1313,nmps:5,nlps:29,switchFlag:0},{qe:545,nmps:38,nlps:33,switchFlag:0},{qe:22017,nmps:7,nlps:6,switchFlag:1},{qe:21505,nmps:8,nlps:14,switchFlag:0},{qe:18433,nmps:9,nlps:14,switchFlag:0},{qe:14337,nmps:10,nlps:14,switchFlag:0},{qe:12289,nmps:11,nlps:17,switchFlag:0},{qe:9217,nmps:12,nlps:18,switchFlag:0},{qe:7169,nmps:13,nlps:20,switchFlag:0},{qe:5633,nmps:29,nlps:21,switchFlag:0},{qe:22017,nmps:15,nlps:14,switchFlag:1},{qe:21505,nmps:16,nlps:14,switchFlag:0},{qe:20737,nmps:17,nlps:15,switchFlag:0},{qe:18433,nmps:18,nlps:16,switchFlag:0},{qe:14337,nmps:19,nlps:17,switchFlag:0},{qe:13313,nmps:20,nlps:18,switchFlag:0},{qe:12289,nmps:21,nlps:19,switchFlag:0},{qe:10241,nmps:22,nlps:19,switchFlag:0},{qe:9217,nmps:23,nlps:20,switchFlag:0},{qe:8705,nmps:24,nlps:21,switchFlag:0},{qe:7169,nmps:25,nlps:22,switchFlag:0},{qe:6145,nmps:26,nlps:23,switchFlag:0},{qe:5633,nmps:27,nlps:24,switchFlag:0},{qe:5121,nmps:28,nlps:25,switchFlag:0},{qe:4609,nmps:29,nlps:26,switchFlag:0},{qe:4353,nmps:30,nlps:27,switchFlag:0},{qe:2753,nmps:31,nlps:28,switchFlag:0},{qe:2497,nmps:32,nlps:29,switchFlag:0},{qe:2209,nmps:33,nlps:30,switchFlag:0},{qe:1313,nmps:34,nlps:31,switchFlag:0},{qe:1089,nmps:35,nlps:32,switchFlag:0},{qe:673,nmps:36,nlps:33,switchFlag:0},{qe:545,nmps:37,nlps:34,switchFlag:0},{qe:321,nmps:38,nlps:35,switchFlag:0},{qe:273,nmps:39,nlps:36,switchFlag:0},{qe:133,nmps:40,nlps:37,switchFlag:0},{qe:73,nmps:41,nlps:38,switchFlag:0},{qe:37,nmps:42,nlps:39,switchFlag:0},{qe:21,nmps:43,nlps:40,switchFlag:0},{qe:9,nmps:44,nlps:41,switchFlag:0},{qe:5,nmps:45,nlps:42,switchFlag:0},{qe:1,nmps:45,nlps:43,switchFlag:0},{qe:22017,nmps:46,nlps:46,switchFlag:0}],o=function(){function ArithmeticDecoder(t,r,i){!function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}(this,ArithmeticDecoder);this.data=t;this.bp=r;this.dataEnd=i;this.chigh=t[r];this.clow=0;this.byteIn();this.chigh=this.chigh<<7&65535|this.clow>>9&127;this.clow=this.clow<<7&65535;this.ct-=7;this.a=32768}!function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}(ArithmeticDecoder,[{key:"byteIn",value:function byteIn(){var t=this.data,r=this.bp;if(255===t[r])if(t[r+1]>143){this.clow+=65280;this.ct=8}else{r++;this.clow+=t[r]<<9;this.ct=7;this.bp=r}else{r++;this.clow+=r<this.dataEnd?t[r]<<8:65280;this.ct=8;this.bp=r}if(this.clow>65535){this.chigh+=this.clow>>16;this.clow&=65535}}},{key:"readBit",value:function readBit(t,r){var o,a=t[r]>>1,c=1&t[r],l=i[a],u=l.qe,h=this.a-u;if(this.chigh<u)if(h<u){h=u;o=c;a=l.nmps}else{h=u;o=1^c;1===l.switchFlag&&(c=o);a=l.nlps}else{this.chigh-=u;if(0!=(32768&h)){this.a=h;return c}if(h<u){o=1^c;1===l.switchFlag&&(c=o);a=l.nlps}else{o=c;a=l.nmps}}do{0===this.ct&&this.byteIn();h<<=1;this.chigh=this.chigh<<1&65535|this.clow>>15&1;this.clow=this.clow<<1&65535;this.ct--}while(0==(32768&h));this.a=h;t[r]=a<<1|c;return o}}]);return ArithmeticDecoder}();r.ArithmeticDecoder=o},(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.CCITTFaxDecoder=void 0;var o=i(1);function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}var a=-1,c=[[-1,-1],[-1,-1],[7,8],[7,7],[6,6],[6,6],[6,5],[6,5],[4,0],[4,0],[4,0],[4,0],[4,0],[4,0],[4,0],[4,0],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2]],l=[[-1,-1],[12,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[11,1792],[11,1792],[12,1984],[12,2048],[12,2112],[12,2176],[12,2240],[12,2304],[11,1856],[11,1856],[11,1920],[11,1920],[12,2368],[12,2432],[12,2496],[12,2560]],u=[[-1,-1],[-1,-1],[-1,-1],[-1,-1],[8,29],[8,29],[8,30],[8,30],[8,45],[8,45],[8,46],[8,46],[7,22],[7,22],[7,22],[7,22],[7,23],[7,23],[7,23],[7,23],[8,47],[8,47],[8,48],[8,48],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[7,20],[7,20],[7,20],[7,20],[8,33],[8,33],[8,34],[8,34],[8,35],[8,35],[8,36],[8,36],[8,37],[8,37],[8,38],[8,38],[7,19],[7,19],[7,19],[7,19],[8,31],[8,31],[8,32],[8,32],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[8,53],[8,53],[8,54],[8,54],[7,26],[7,26],[7,26],[7,26],[8,39],[8,39],[8,40],[8,40],[8,41],[8,41],[8,42],[8,42],[8,43],[8,43],[8,44],[8,44],[7,21],[7,21],[7,21],[7,21],[7,28],[7,28],[7,28],[7,28],[8,61],[8,61],[8,62],[8,62],[8,63],[8,63],[8,0],[8,0],[8,320],[8,320],[8,384],[8,384],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[7,27],[7,27],[7,27],[7,27],[8,59],[8,59],[8,60],[8,60],[9,1472],[9,1536],[9,1600],[9,1728],[7,18],[7,18],[7,18],[7,18],[7,24],[7,24],[7,24],[7,24],[8,49],[8,49],[8,50],[8,50],[8,51],[8,51],[8,52],[8,52],[7,25],[7,25],[7,25],[7,25],[8,55],[8,55],[8,56],[8,56],[8,57],[8,57],[8,58],[8,58],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[8,448],[8,448],[8,512],[8,512],[9,704],[9,768],[8,640],[8,640],[8,576],[8,576],[9,832],[9,896],[9,960],[9,1024],[9,1088],[9,1152],[9,1216],[9,1280],[9,1344],[9,1408],[7,256],[7,256],[7,256],[7,256],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7]],h=[[-1,-1],[-1,-1],[12,-2],[12,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[11,1792],[11,1792],[11,1792],[11,1792],[12,1984],[12,1984],[12,2048],[12,2048],[12,2112],[12,2112],[12,2176],[12,2176],[12,2240],[12,2240],[12,2304],[12,2304],[11,1856],[11,1856],[11,1856],[11,1856],[11,1920],[11,1920],[11,1920],[11,1920],[12,2368],[12,2368],[12,2432],[12,2432],[12,2496],[12,2496],[12,2560],[12,2560],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[12,52],[12,52],[13,640],[13,704],[13,768],[13,832],[12,55],[12,55],[12,56],[12,56],[13,1280],[13,1344],[13,1408],[13,1472],[12,59],[12,59],[12,60],[12,60],[13,1536],[13,1600],[11,24],[11,24],[11,24],[11,24],[11,25],[11,25],[11,25],[11,25],[13,1664],[13,1728],[12,320],[12,320],[12,384],[12,384],[12,448],[12,448],[13,512],[13,576],[12,53],[12,53],[12,54],[12,54],[13,896],[13,960],[13,1024],[13,1088],[13,1152],[13,1216],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64]],d=[[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[11,23],[11,23],[12,50],[12,51],[12,44],[12,45],[12,46],[12,47],[12,57],[12,58],[12,61],[12,256],[10,16],[10,16],[10,16],[10,16],[10,17],[10,17],[10,17],[10,17],[12,48],[12,49],[12,62],[12,63],[12,30],[12,31],[12,32],[12,33],[12,40],[12,41],[11,22],[11,22],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[12,128],[12,192],[12,26],[12,27],[12,28],[12,29],[11,19],[11,19],[11,20],[11,20],[12,34],[12,35],[12,36],[12,37],[12,38],[12,39],[11,21],[11,21],[12,42],[12,43],[10,0],[10,0],[10,0],[10,0],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12]],p=[[-1,-1],[-1,-1],[-1,-1],[-1,-1],[6,9],[6,8],[5,7],[5,7],[4,6],[4,6],[4,6],[4,6],[4,5],[4,5],[4,5],[4,5],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2]],m=function(){function CCITTFaxDecoder(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};_classCallCheck(this,CCITTFaxDecoder);if(!t||"function"!=typeof t.next)throw new Error('CCITTFaxDecoder - invalid "source" parameter.');this.source=t;this.eof=!1;this.encoding=r.K||0;this.eoline=r.EndOfLine||!1;this.byteAlign=r.EncodedByteAlign||!1;this.columns=r.Columns||1728;this.rows=r.Rows||0;var i,o=r.EndOfBlock;null==o&&(o=!0);this.eoblock=o;this.black=r.BlackIs1||!1;this.codingLine=new Uint32Array(this.columns+1);this.refLine=new Uint32Array(this.columns+2);this.codingLine[0]=this.columns;this.codingPos=0;this.row=0;this.nextLine2D=this.encoding<0;this.inputBits=0;this.inputBuf=0;this.outputBits=0;this.rowsDone=!1;for(;0===(i=this._lookBits(12));)this._eatBits(1);1===i&&this._eatBits(12);if(this.encoding>0){this.nextLine2D=!this._lookBits(1);this._eatBits(1)}}!function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}(CCITTFaxDecoder,[{key:"readNextChar",value:function readNextChar(){if(this.eof)return-1;var t,r,i,c,l,u=this.refLine,h=this.codingLine,d=this.columns;if(0===this.outputBits){this.rowsDone&&(this.eof=!0);if(this.eof)return-1;this.err=!1;var p,m,y;if(this.nextLine2D){for(c=0;h[c]<d;++c)u[c]=h[c];u[c++]=d;u[c]=d;h[0]=0;this.codingPos=0;t=0;r=0;for(;h[this.codingPos]<d;)switch(p=this._getTwoDimCode()){case 0:this._addPixels(u[t+1],r);u[t+1]<d&&(t+=2);break;case 1:p=m=0;if(r){do{p+=y=this._getBlackCode()}while(y>=64);do{m+=y=this._getWhiteCode()}while(y>=64)}else{do{p+=y=this._getWhiteCode()}while(y>=64);do{m+=y=this._getBlackCode()}while(y>=64)}this._addPixels(h[this.codingPos]+p,r);h[this.codingPos]<d&&this._addPixels(h[this.codingPos]+m,1^r);for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2;break;case 7:this._addPixels(u[t]+3,r);r^=1;if(h[this.codingPos]<d){++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 5:this._addPixels(u[t]+2,r);r^=1;if(h[this.codingPos]<d){++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 3:this._addPixels(u[t]+1,r);r^=1;if(h[this.codingPos]<d){++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 2:this._addPixels(u[t],r);r^=1;if(h[this.codingPos]<d){++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 8:this._addPixelsNeg(u[t]-3,r);r^=1;if(h[this.codingPos]<d){t>0?--t:++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 6:this._addPixelsNeg(u[t]-2,r);r^=1;if(h[this.codingPos]<d){t>0?--t:++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case 4:this._addPixelsNeg(u[t]-1,r);r^=1;if(h[this.codingPos]<d){t>0?--t:++t;for(;u[t]<=h[this.codingPos]&&u[t]<d;)t+=2}break;case a:this._addPixels(d,0);this.eof=!0;break;default:(0,o.info)("bad 2d code");this._addPixels(d,0);this.err=!0}}else{h[0]=0;this.codingPos=0;r=0;for(;h[this.codingPos]<d;){p=0;if(r)do{p+=y=this._getBlackCode()}while(y>=64);else do{p+=y=this._getWhiteCode()}while(y>=64);this._addPixels(h[this.codingPos]+p,r);r^=1}}var v=!1;this.byteAlign&&(this.inputBits&=-8);if(this.eoblock||this.row!==this.rows-1){p=this._lookBits(12);if(this.eoline)for(;p!==a&&1!==p;){this._eatBits(1);p=this._lookBits(12)}else for(;0===p;){this._eatBits(1);p=this._lookBits(12)}if(1===p){this._eatBits(12);v=!0}else p===a&&(this.eof=!0)}else this.rowsDone=!0;if(!this.eof&&this.encoding>0&&!this.rowsDone){this.nextLine2D=!this._lookBits(1);this._eatBits(1)}if(this.eoblock&&v&&this.byteAlign){if(1===(p=this._lookBits(12))){this._eatBits(12);if(this.encoding>0){this._lookBits(1);this._eatBits(1)}if(this.encoding>=0)for(c=0;c<4;++c){1!==(p=this._lookBits(12))&&(0,o.info)("bad rtc code: "+p);this._eatBits(12);if(this.encoding>0){this._lookBits(1);this._eatBits(1)}}this.eof=!0}}else if(this.err&&this.eoline){for(;;){if((p=this._lookBits(13))===a){this.eof=!0;return-1}if(p>>1==1)break;this._eatBits(1)}this._eatBits(12);if(this.encoding>0){this._eatBits(1);this.nextLine2D=!(1&p)}}h[0]>0?this.outputBits=h[this.codingPos=0]:this.outputBits=h[this.codingPos=1];this.row++}if(this.outputBits>=8){l=1&this.codingPos?0:255;this.outputBits-=8;if(0===this.outputBits&&h[this.codingPos]<d){this.codingPos++;this.outputBits=h[this.codingPos]-h[this.codingPos-1]}}else{i=8;l=0;do{if(this.outputBits>i){l<<=i;1&this.codingPos||(l|=255>>8-i);this.outputBits-=i;i=0}else{l<<=this.outputBits;1&this.codingPos||(l|=255>>8-this.outputBits);i-=this.outputBits;this.outputBits=0;if(h[this.codingPos]<d){this.codingPos++;this.outputBits=h[this.codingPos]-h[this.codingPos-1]}else if(i>0){l<<=i;i=0}}}while(i)}this.black&&(l^=255);return l}},{key:"_addPixels",value:function _addPixels(t,r){var i=this.codingLine,a=this.codingPos;if(t>i[a]){if(t>this.columns){(0,o.info)("row is wrong length");this.err=!0;t=this.columns}1&a^r&&++a;i[a]=t}this.codingPos=a}},{key:"_addPixelsNeg",value:function _addPixelsNeg(t,r){var i=this.codingLine,a=this.codingPos;if(t>i[a]){if(t>this.columns){(0,o.info)("row is wrong length");this.err=!0;t=this.columns}1&a^r&&++a;i[a]=t}else if(t<i[a]){if(t<0){(0,o.info)("invalid code");this.err=!0;t=0}for(;a>0&&t<i[a-1];)--a;i[a]=t}this.codingPos=a}},{key:"_findTableCode",value:function _findTableCode(t,r,i,o){for(var c=o||0,l=t;l<=r;++l){var u=this._lookBits(l);if(u===a)return[!0,1,!1];l<r&&(u<<=r-l);if(!c||u>=c){var h=i[u-c];if(h[0]===l){this._eatBits(l);return[!0,h[1],!0]}}}return[!1,0,!1]}},{key:"_getTwoDimCode",value:function _getTwoDimCode(){var t,r=0;if(this.eoblock){r=this._lookBits(7);if((t=c[r])&&t[0]>0){this._eatBits(t[0]);return t[1]}}else{var i=this._findTableCode(1,7,c);if(i[0]&&i[2])return i[1]}(0,o.info)("Bad two dim code");return a}},{key:"_getWhiteCode",value:function _getWhiteCode(){var t,r=0;if(this.eoblock){if((r=this._lookBits(12))===a)return 1;if((t=r>>5==0?l[r]:u[r>>3])[0]>0){this._eatBits(t[0]);return t[1]}}else{var i=this._findTableCode(1,9,u);if(i[0])return i[1];if((i=this._findTableCode(11,12,l))[0])return i[1]}(0,o.info)("bad white code");this._eatBits(1);return 1}},{key:"_getBlackCode",value:function _getBlackCode(){var t,r;if(this.eoblock){if((t=this._lookBits(13))===a)return 1;if((r=t>>7==0?h[t]:t>>9==0&&t>>7!=0?d[(t>>1)-64]:p[t>>7])[0]>0){this._eatBits(r[0]);return r[1]}}else{var i=this._findTableCode(2,6,p);if(i[0])return i[1];if((i=this._findTableCode(7,12,d,64))[0])return i[1];if((i=this._findTableCode(10,13,h))[0])return i[1]}(0,o.info)("bad black code");this._eatBits(1);return 1}},{key:"_lookBits",value:function _lookBits(t){for(var r;this.inputBits<t;){if(-1===(r=this.source.next()))return 0===this.inputBits?a:this.inputBuf<<t-this.inputBits&65535>>16-t;this.inputBuf=this.inputBuf<<8|r;this.inputBits+=8}return this.inputBuf>>this.inputBits-t&65535>>16-t}},{key:"_eatBits",value:function _eatBits(t){(this.inputBits-=t)<0&&(this.inputBits=0)}}]);return CCITTFaxDecoder}();r.CCITTFaxDecoder=m},(t,r,i)=>{"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.JpegImage=void 0;var o=i(1),a=i(83);function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _inherits(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}});r&&_setPrototypeOf(t,r)}function _setPrototypeOf(t,r){return(_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(t,r){t.__proto__=r;return t})(t,r)}function _createSuper(t){var r=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})));return!0}catch(t){return!1}}();return function _createSuperInternal(){var i,o=_getPrototypeOf(t);if(r){var a=_getPrototypeOf(this).constructor;i=Reflect.construct(o,arguments,a)}else i=o.apply(this,arguments);return _possibleConstructorReturn(this,i)}}function _possibleConstructorReturn(t,r){return!r||"object"!==_typeof(r)&&"function"!=typeof r?function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):r}function _getPrototypeOf(t){return(_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var c=function(t){_inherits(JpegError,t);var r=_createSuper(JpegError);function JpegError(t){_classCallCheck(this,JpegError);return r.call(this,"JPEG error: ".concat(t))}return JpegError}(o.BaseException),l=function(t){_inherits(DNLMarkerError,t);var r=_createSuper(DNLMarkerError);function DNLMarkerError(t,i){var o;_classCallCheck(this,DNLMarkerError);(o=r.call(this,t)).scanLines=i;return o}return DNLMarkerError}(o.BaseException),u=function(t){_inherits(EOIMarkerError,t);var r=_createSuper(EOIMarkerError);function EOIMarkerError(){_classCallCheck(this,EOIMarkerError);return r.apply(this,arguments)}return EOIMarkerError}(o.BaseException),h=new Uint8Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]),d=4017,p=799,m=3406,y=2276,v=1567,g=3784,b=5793,x=2896;function buildHuffmanTable(t,r){for(var i,o,a=0,c=16;c>0&&!t[c-1];)c--;var l,u=[{children:[],index:0}],h=u[0];for(i=0;i<c;i++){for(o=0;o<t[i];o++){(h=u.pop()).children[h.index]=r[a];for(;h.index>0;)h=u.pop();h.index++;u.push(h);for(;u.length<=i;){u.push(l={children:[],index:0});h.children[h.index]=l.children;h=l}a++}if(i+1<c){u.push(l={children:[],index:0});h.children[h.index]=l.children;h=l}}return u[0].children}function getBlockBufferOffset(t,r,i){return 64*((t.blocksPerLine+1)*r+i)}function decodeScan(t,r,i,d,p,m,y,v,g){var b=arguments.length>9&&void 0!==arguments[9]&&arguments[9],x=i.mcusPerLine,w=i.progressive,_=r,C=0,k=0;function readBit(){if(k>0){k--;return C>>k&1}if(255===(C=t[r++])){var o=t[r++];if(o){if(220===o&&b){r+=2;var h=(0,a.readUint16)(t,r);r+=2;if(h>0&&h!==i.scanLines)throw new l("Found DNL marker (0xFFDC) while parsing scan data",h)}else if(217===o){if(b){var d=I*(8===i.precision?8:0);if(d>0&&Math.round(i.scanLines/d)>=10)throw new l("Found EOI marker (0xFFD9) while parsing scan data, possibly caused by incorrect `scanLines` parameter",d)}throw new u("Found EOI marker (0xFFD9) while parsing scan data")}throw new c("unexpected marker ".concat((C<<8|o).toString(16)))}}k=7;return C>>>7}function decodeHuffman(t){for(var r=t;;){switch(_typeof(r=r[readBit()])){case"number":return r;case"object":continue}throw new c("invalid huffman sequence")}}function receive(t){for(var r=0;t>0;){r=r<<1|readBit();t--}return r}function receiveAndExtend(t){if(1===t)return 1===readBit()?1:-1;var r=receive(t);return r>=1<<t-1?r:r+(-1<<t)+1}function decodeBaseline(t,r){var i=decodeHuffman(t.huffmanTableDC),o=0===i?0:receiveAndExtend(i);t.blockData[r]=t.pred+=o;for(var a=1;a<64;){var c=decodeHuffman(t.huffmanTableAC),l=15&c,u=c>>4;if(0!==l){var d=h[a+=u];t.blockData[r+d]=receiveAndExtend(l);a++}else{if(u<15)break;a+=16}}}function decodeDCFirst(t,r){var i=decodeHuffman(t.huffmanTableDC),o=0===i?0:receiveAndExtend(i)<<g;t.blockData[r]=t.pred+=o}function decodeDCSuccessive(t,r){t.blockData[r]|=readBit()<<g}var S=0;function decodeACFirst(t,r){if(S>0)S--;else for(var i=m,o=y;i<=o;){var a=decodeHuffman(t.huffmanTableAC),c=15&a,l=a>>4;if(0!==c){var u=h[i+=l];t.blockData[r+u]=receiveAndExtend(c)*(1<<g);i++}else{if(l<15){S=receive(l)+(1<<l)-1;break}i+=16}}}var P,T=0;function decodeACSuccessive(t,r){for(var i,o,a=m,l=y,u=0;a<=l;){var d=r+h[a],p=t.blockData[d]<0?-1:1;switch(T){case 0:u=(o=decodeHuffman(t.huffmanTableAC))>>4;if(0===(i=15&o))if(u<15){S=receive(u)+(1<<u);T=4}else{u=16;T=1}else{if(1!==i)throw new c("invalid ACn encoding");P=receiveAndExtend(i);T=u?2:3}continue;case 1:case 2:t.blockData[d]?t.blockData[d]+=p*(readBit()<<g):0===--u&&(T=2===T?3:0);break;case 3:if(t.blockData[d])t.blockData[d]+=p*(readBit()<<g);else{t.blockData[d]=P<<g;T=0}break;case 4:t.blockData[d]&&(t.blockData[d]+=p*(readBit()<<g))}a++}4===T&&0===--S&&(T=0)}var I=0;function decodeMcu(t,r,i,o,a){var c=i%x;I=(i/x|0)*t.v+o;var l=c*t.h+a;r(t,getBlockBufferOffset(t,I,l))}function decodeBlock(t,r,i){I=i/t.blocksPerLine|0;var o=i%t.blocksPerLine;r(t,getBlockBufferOffset(t,I,o))}var O,E,A,R,B,M,D=d.length;M=w?0===m?0===v?decodeDCFirst:decodeDCSuccessive:0===v?decodeACFirst:decodeACSuccessive:decodeBaseline;var L,U,N,j,H=0;U=1===D?d[0].blocksPerLine*d[0].blocksPerColumn:x*i.mcusPerColumn;for(;H<=U;){var z=p?Math.min(U-H,p):U;if(z>0){for(E=0;E<D;E++)d[E].pred=0;S=0;if(1===D){O=d[0];for(B=0;B<z;B++){decodeBlock(O,M,H);H++}}else for(B=0;B<z;B++){for(E=0;E<D;E++){N=(O=d[E]).h;j=O.v;for(A=0;A<j;A++)for(R=0;R<N;R++)decodeMcu(O,M,H,A,R)}H++}}k=0;if(!(L=findNextFileMarker(t,r)))break;if(L.invalid){var X=z>0?"unexpected":"excessive";(0,o.warn)("decodeScan - ".concat(X," MCU data, current marker is: ").concat(L.invalid));r=L.offset}if(!(L.marker>=65488&&L.marker<=65495))break;r+=2}return r-_}function quantizeAndInverse(t,r,i){var o,a,l,u,h,w,_,C,k,S,P,T,I,O,E,A,R,B=t.quantizationTable,M=t.blockData;if(!B)throw new c("missing required Quantization Table.");for(var D=0;D<64;D+=8){k=M[r+D];S=M[r+D+1];P=M[r+D+2];T=M[r+D+3];I=M[r+D+4];O=M[r+D+5];E=M[r+D+6];A=M[r+D+7];k*=B[D];if(0!=(S|P|T|I|O|E|A)){S*=B[D+1];P*=B[D+2];T*=B[D+3];I*=B[D+4];O*=B[D+5];E*=B[D+6];A*=B[D+7];a=(o=(o=b*k+128>>8)+(a=b*I+128>>8)+1>>1)-a;R=(l=P)*g+(u=E)*v+128>>8;l=l*v-u*g+128>>8;_=(h=(h=x*(S-A)+128>>8)+(_=O<<4)+1>>1)-_;w=(C=(C=x*(S+A)+128>>8)+(w=T<<4)+1>>1)-w;u=(o=o+(u=R)+1>>1)-u;l=(a=a+l+1>>1)-l;R=h*y+C*m+2048>>12;h=h*m-C*y+2048>>12;C=R;R=w*p+_*d+2048>>12;w=w*d-_*p+2048>>12;_=R;i[D]=o+C;i[D+7]=o-C;i[D+1]=a+_;i[D+6]=a-_;i[D+2]=l+w;i[D+5]=l-w;i[D+3]=u+h;i[D+4]=u-h}else{R=b*k+512>>10;i[D]=R;i[D+1]=R;i[D+2]=R;i[D+3]=R;i[D+4]=R;i[D+5]=R;i[D+6]=R;i[D+7]=R}}for(var L=0;L<8;++L){k=i[L];if(0!=((S=i[L+8])|(P=i[L+16])|(T=i[L+24])|(I=i[L+32])|(O=i[L+40])|(E=i[L+48])|(A=i[L+56]))){a=(o=4112+((o=b*k+2048>>12)+(a=b*I+2048>>12)+1>>1))-a;R=(l=P)*g+(u=E)*v+2048>>12;l=l*v-u*g+2048>>12;u=R;_=(h=(h=x*(S-A)+2048>>12)+(_=O)+1>>1)-_;w=(C=(C=x*(S+A)+2048>>12)+(w=T)+1>>1)-w;R=h*y+C*m+2048>>12;h=h*m-C*y+2048>>12;C=R;R=w*p+_*d+2048>>12;w=w*d-_*p+2048>>12;(k=(o=o+u+1>>1)+C)<16?k=0:k>=4080?k=255:k>>=4;(S=(a=a+l+1>>1)+(_=R))<16?S=0:S>=4080?S=255:S>>=4;(P=(l=a-l)+w)<16?P=0:P>=4080?P=255:P>>=4;(T=(u=o-u)+h)<16?T=0:T>=4080?T=255:T>>=4;(I=u-h)<16?I=0:I>=4080?I=255:I>>=4;(O=l-w)<16?O=0:O>=4080?O=255:O>>=4;(E=a-_)<16?E=0:E>=4080?E=255:E>>=4;(A=o-C)<16?A=0:A>=4080?A=255:A>>=4;M[r+L]=k;M[r+L+8]=S;M[r+L+16]=P;M[r+L+24]=T;M[r+L+32]=I;M[r+L+40]=O;M[r+L+48]=E;M[r+L+56]=A}else{R=(R=b*k+8192>>14)<-2040?0:R>=2024?255:R+2056>>4;M[r+L]=R;M[r+L+8]=R;M[r+L+16]=R;M[r+L+24]=R;M[r+L+32]=R;M[r+L+40]=R;M[r+L+48]=R;M[r+L+56]=R}}}function buildComponentData(t,r){for(var i=r.blocksPerLine,o=r.blocksPerColumn,a=new Int16Array(64),c=0;c<o;c++)for(var l=0;l<i;l++){quantizeAndInverse(r,getBlockBufferOffset(r,c,l),a)}return r.blockData}function findNextFileMarker(t,r){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:r,o=t.length-1,c=i<r?i:r;if(r>=o)return null;var l=(0,a.readUint16)(t,r);if(l>=65472&&l<=65534)return{invalid:null,marker:l,offset:r};for(var u=(0,a.readUint16)(t,c);!(u>=65472&&u<=65534);){if(++c>=o)return null;u=(0,a.readUint16)(t,c)}return{invalid:l.toString(16),marker:u,offset:c}}var w=function(){function JpegImage(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=t.decodeTransform,i=void 0===r?null:r,o=t.colorTransform,a=void 0===o?-1:o;_classCallCheck(this,JpegImage);this._decodeTransform=i;this._colorTransform=a}!function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}(JpegImage,[{key:"parse",value:function parse(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=r.dnlScanLines,d=void 0===i?null:i;function readDataBlock(){var r=(0,a.readUint16)(t,y),i=(y+=2)+r-2,c=findNextFileMarker(t,i,y);if(c&&c.invalid){(0,o.warn)("readDataBlock - incorrect length, current marker is: "+c.invalid);i=c.offset}var l=t.subarray(y,i);y+=l.length;return l}function prepareComponents(t){for(var r=Math.ceil(t.samplesPerLine/8/t.maxH),i=Math.ceil(t.scanLines/8/t.maxV),o=0,a=t.components.length;o<a;o++){var c=t.components[o],l=Math.ceil(Math.ceil(t.samplesPerLine/8)*c.h/t.maxH),u=Math.ceil(Math.ceil(t.scanLines/8)*c.v/t.maxV),h=r*c.h,d=64*(i*c.v)*(h+1);c.blockData=new Int16Array(d);c.blocksPerLine=l;c.blocksPerColumn=u}t.mcusPerLine=r;t.mcusPerColumn=i}var p,m,y=0,v=null,g=null,b=0,x=[],w=[],_=[],C=(0,a.readUint16)(t,y);y+=2;if(65496!==C)throw new c("SOI not found");C=(0,a.readUint16)(t,y);y+=2;e:for(;65497!==C;){var k=void 0,S=void 0,P=void 0;switch(C){case 65504:case 65505:case 65506:case 65507:case 65508:case 65509:case 65510:case 65511:case 65512:case 65513:case 65514:case 65515:case 65516:case 65517:case 65518:case 65519:case 65534:var T=readDataBlock();65504===C&&74===T[0]&&70===T[1]&&73===T[2]&&70===T[3]&&0===T[4]&&(v={version:{major:T[5],minor:T[6]},densityUnits:T[7],xDensity:T[8]<<8|T[9],yDensity:T[10]<<8|T[11],thumbWidth:T[12],thumbHeight:T[13],thumbData:T.subarray(14,14+3*T[12]*T[13])});65518===C&&65===T[0]&&100===T[1]&&111===T[2]&&98===T[3]&&101===T[4]&&(g={version:T[5]<<8|T[6],flags0:T[7]<<8|T[8],flags1:T[9]<<8|T[10],transformCode:T[11]});break;case 65499:for(var I=(0,a.readUint16)(t,y),O=I+(y+=2)-2;y<O;){var E=t[y++],A=new Uint16Array(64);if(E>>4==0)for(S=0;S<64;S++)A[h[S]]=t[y++];else{if(E>>4!=1)throw new c("DQT - invalid table spec");for(S=0;S<64;S++){A[h[S]]=(0,a.readUint16)(t,y);y+=2}}x[15&E]=A}break;case 65472:case 65473:case 65474:if(p)throw new c("Only single frame JPEGs supported");y+=2;(p={}).extended=65473===C;p.progressive=65474===C;p.precision=t[y++];var R=(0,a.readUint16)(t,y);y+=2;p.scanLines=d||R;p.samplesPerLine=(0,a.readUint16)(t,y);y+=2;p.components=[];p.componentIds={};var B=t[y++],M=0,D=0;for(k=0;k<B;k++){var L=t[y],U=t[y+1]>>4,N=15&t[y+1];M<U&&(M=U);D<N&&(D=N);var j=t[y+2];P=p.components.push({h:U,v:N,quantizationId:j,quantizationTable:null});p.componentIds[L]=P-1;y+=3}p.maxH=M;p.maxV=D;prepareComponents(p);break;case 65476:var H=(0,a.readUint16)(t,y);y+=2;for(k=2;k<H;){var z=t[y++],X=new Uint8Array(16),Y=0;for(S=0;S<16;S++,y++)Y+=X[S]=t[y];var G=new Uint8Array(Y);for(S=0;S<Y;S++,y++)G[S]=t[y];k+=17+Y;(z>>4==0?_:w)[15&z]=buildHuffmanTable(X,G)}break;case 65501:y+=2;m=(0,a.readUint16)(t,y);y+=2;break;case 65498:var q=1==++b&&!d;y+=2;var J=t[y++],W=[];for(k=0;k<J;k++){var V=t[y++],K=p.componentIds[V],Q=p.components[K];Q.index=V;var Z=t[y++];Q.huffmanTableDC=_[Z>>4];Q.huffmanTableAC=w[15&Z];W.push(Q)}var $=t[y++],ee=t[y++],te=t[y++];try{var re=decodeScan(t,y,p,W,m,$,ee,te>>4,15&te,q);y+=re}catch(r){if(r instanceof l){(0,o.warn)("".concat(r.message," -- attempting to re-parse the JPEG image."));return this.parse(t,{dnlScanLines:r.scanLines})}if(r instanceof u){(0,o.warn)("".concat(r.message," -- ignoring the rest of the image data."));break e}throw r}break;case 65500:y+=4;break;case 65535:255!==t[y]&&y--;break;default:var ne=findNextFileMarker(t,y-2,y-3);if(ne&&ne.invalid){(0,o.warn)("JpegImage.parse - unexpected data, current marker is: "+ne.invalid);y=ne.offset;break}if(!ne||y>=t.length-1){(0,o.warn)("JpegImage.parse - reached the end of the image data without finding an EOI marker (0xFFD9).");break e}throw new c("JpegImage.parse - unknown marker: "+C.toString(16))}C=(0,a.readUint16)(t,y);y+=2}this.width=p.samplesPerLine;this.height=p.scanLines;this.jfif=v;this.adobe=g;this.components=[];for(var ie=0,oe=p.components.length;ie<oe;ie++){var ae=p.components[ie],se=x[ae.quantizationId];se&&(ae.quantizationTable=se);this.components.push({index:ae.index,output:buildComponentData(0,ae),scaleX:ae.h/p.maxH,scaleY:ae.v/p.maxV,blocksPerLine:ae.blocksPerLine,blocksPerColumn:ae.blocksPerColumn})}this.numComponents=this.components.length}},{key:"_getLinearizedBlockData",value:function _getLinearizedBlockData(t,r){var i,o,a,c,l,u,h,d,p,m,y,v,g=arguments.length>2&&void 0!==arguments[2]&&arguments[2],b=this.width/t,x=this.height/r,w=0,_=this.components.length,C=t*r*_,k=new Uint8ClampedArray(C),S=new Uint32Array(t),P=4294967288;for(h=0;h<_;h++){o=(i=this.components[h]).scaleX*b;a=i.scaleY*x;w=h;y=i.output;c=i.blocksPerLine+1<<3;if(o!==v){for(l=0;l<t;l++){d=0|l*o;S[l]=(d&P)<<3|7&d}v=o}for(u=0;u<r;u++){m=c*((d=0|u*a)&P)|(7&d)<<3;for(l=0;l<t;l++){k[w]=y[m+S[l]];w+=_}}}var T=this._decodeTransform;g||4!==_||T||(T=new Int32Array([-256,255,-256,255,-256,255,-256,255]));if(T)for(h=0;h<C;)for(d=0,p=0;d<_;d++,h++,p+=2)k[h]=(k[h]*T[p]>>8)+T[p+1];return k}},{key:"_isColorConversionNeeded",get:function get(){return this.adobe?!!this.adobe.transformCode:3===this.numComponents?0!==this._colorTransform&&(82!==this.components[0].index||71!==this.components[1].index||66!==this.components[2].index):1===this._colorTransform}},{key:"_convertYccToRgb",value:function _convertYccToRgb(t){for(var r,i,o,a=0,c=t.length;a<c;a+=3){r=t[a];i=t[a+1];o=t[a+2];t[a]=r-179.456+1.402*o;t[a+1]=r+135.459-.344*i-.714*o;t[a+2]=r-226.816+1.772*i}return t}},{key:"_convertYcckToRgb",value:function _convertYcckToRgb(t){for(var r,i,o,a,c=0,l=0,u=t.length;l<u;l+=4){r=t[l];i=t[l+1];o=t[l+2];a=t[l+3];t[c++]=i*(-660635669420364e-19*i+.000437130475926232*o-54080610064599e-18*r+.00048449797120281*a-.154362151871126)-122.67195406894+o*(-.000957964378445773*o+.000817076911346625*r-.00477271405408747*a+1.53380253221734)+r*(.000961250184130688*r-.00266257332283933*a+.48357088451265)+a*(-.000336197177618394*a+.484791561490776);t[c++]=107.268039397724+i*(219927104525741e-19*i-.000640992018297945*o+.000659397001245577*r+.000426105652938837*a-.176491792462875)+o*(-.000778269941513683*o+.00130872261408275*r+.000770482631801132*a-.151051492775562)+r*(.00126935368114843*r-.00265090189010898*a+.25802910206845)+a*(-.000318913117588328*a-.213742400323665);t[c++]=i*(-.000570115196973677*i-263409051004589e-19*o+.0020741088115012*r-.00288260236853442*a+.814272968359295)-20.810012546947+o*(-153496057440975e-19*o-.000132689043961446*r+.000560833691242812*a-.195152027534049)+r*(.00174418132927582*r-.00255243321439347*a+.116935020465145)+a*(-.000343531996510555*a+.24165260232407)}return t.subarray(0,c)}},{key:"_convertYcckToCmyk",value:function _convertYcckToCmyk(t){for(var r,i,o,a=0,c=t.length;a<c;a+=4){r=t[a];i=t[a+1];o=t[a+2];t[a]=434.456-r-1.402*o;t[a+1]=119.541-r+.344*i+.714*o;t[a+2]=481.816-r-1.772*i}return t}},{key:"_convertCmykToRgb",value:function _convertCmykToRgb(t){for(var r,i,o,a,c=0,l=0,u=t.length;l<u;l+=4){r=t[l];i=t[l+1];o=t[l+2];a=t[l+3];t[c++]=255+r*(-6747147073602441e-20*r+.0008379262121013727*i+.0002894718188643294*o+.003264231057537806*a-1.1185611867203937)+i*(26374107616089405e-21*i-8626949158638572e-20*o-.0002748769067499491*a-.02155688794978967)+o*(-3878099212869363e-20*o-.0003267808279485286*a+.0686742238595345)-a*(.0003361971776183937*a+.7430659151342254);t[c++]=255+r*(.00013596372813588848*r+.000924537132573585*i+.00010567359618683593*o+.0004791864687436512*a-.3109689587515875)+i*(-.00023545346108370344*i+.0002702845253534714*o+.0020200308977307156*a-.7488052167015494)+o*(6834815998235662e-20*o+.00015168452363460973*a-.09751927774728933)-a*(.0003189131175883281*a+.7364883807733168);t[c++]=255+r*(13598650411385307e-21*r+.00012423956175490851*i+.0004751985097583589*o-36729317476630422e-22*a-.05562186980264034)+i*(.00016141380598724676*i+.0009692239130725186*o+.0007782692450036253*a-.44015232367526463)+o*(5.068882914068769e-7*o+.0017778369011375071*a-.7591454649749609)-a*(.0003435319965105553*a+.7063770186160144)}return t.subarray(0,c)}},{key:"getData",value:function getData(t){var r=t.width,i=t.height,o=t.forceRGB,a=void 0!==o&&o,l=t.isSourcePDF,u=void 0!==l&&l;if(this.numComponents>4)throw new c("Unsupported color mode");var h=this._getLinearizedBlockData(r,i,u);if(1===this.numComponents&&a){for(var d=h.length,p=new Uint8ClampedArray(3*d),m=0,y=0;y<d;y++){var v=h[y];p[m++]=v;p[m++]=v;p[m++]=v}return p}if(3===this.numComponents&&this._isColorConversionNeeded)return this._convertYccToRgb(h);if(4===this.numComponents){if(this._isColorConversionNeeded)return a?this._convertYcckToRgb(h):this._convertYcckToCmyk(h);if(a)return this._convertCmykToRgb(h)}return h}}]);return JpegImage}();r.JpegImage=w},(t,r,i)=>{"use strict";function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}Object.defineProperty(r,"__esModule",{value:!0});r.JpxImage=void 0;var o=i(1),a=i(83),c=i(88);function _defineProperties(t,r){for(var i=0;i<r.length;i++){var o=r[i];o.enumerable=o.enumerable||!1;o.configurable=!0;"value"in o&&(o.writable=!0);Object.defineProperty(t,o.key,o)}}function _createClass(t,r,i){r&&_defineProperties(t.prototype,r);i&&_defineProperties(t,i);return t}function _classCallCheck(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function _inherits(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}});r&&_setPrototypeOf(t,r)}function _setPrototypeOf(t,r){return(_setPrototypeOf=Object.setPrototypeOf||function _setPrototypeOf(t,r){t.__proto__=r;return t})(t,r)}function _createSuper(t){var r=function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})));return!0}catch(t){return!1}}();return function _createSuperInternal(){var i,o=_getPrototypeOf(t);if(r){var a=_getPrototypeOf(this).constructor;i=Reflect.construct(o,arguments,a)}else i=o.apply(this,arguments);return _possibleConstructorReturn(this,i)}}function _possibleConstructorReturn(t,r){return!r||"object"!==_typeof(r)&&"function"!=typeof r?function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):r}function _getPrototypeOf(t){return(_getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf:function _getPrototypeOf(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var l=function(t){_inherits(JpxError,t);var r=_createSuper(JpxError);function JpxError(t){_classCallCheck(this,JpxError);return r.call(this,"JPX error: ".concat(t))}return JpxError}(o.BaseException),u={LL:0,LH:1,HL:1,HH:2},h=function(){function JpxImage(){_classCallCheck(this,JpxImage);this.failOnCorruptedImage=!1}_createClass(JpxImage,[{key:"parse",value:function parse(t){if(65359!==(0,a.readUint16)(t,0))for(var r=t.length,i=0;i<r;){var c=8,u=(0,a.readUint32)(t,i),h=(0,a.readUint32)(t,i+4);i+=c;if(1===u){u=4294967296*(0,a.readUint32)(t,i)+(0,a.readUint32)(t,i+4);i+=8;c+=8}0===u&&(u=r-i+c);if(u<c)throw new l("Invalid box field size");var d=u-c,p=!0;switch(h){case 1785737832:p=!1;break;case 1668246642:var m=t[i];if(1===m){var y=(0,a.readUint32)(t,i+3);switch(y){case 16:case 17:case 18:break;default:(0,o.warn)("Unknown colorspace "+y)}}else 2===m&&(0,o.info)("ICC profile not supported");break;case 1785737827:this.parseCodestream(t,i,i+d);break;case 1783636e3:218793738!==(0,a.readUint32)(t,i)&&(0,o.warn)("Invalid JP2 signature");break;case 1783634458:case 1718909296:case 1920099697:case 1919251232:case 1768449138:break;default:var v=String.fromCharCode(h>>24&255,h>>16&255,h>>8&255,255&h);(0,o.warn)("Unsupported header type ".concat(h," (").concat(v,")."))}p&&(i+=d)}else this.parseCodestream(t,0,t.length)}},{key:"parseImageProperties",value:function parseImageProperties(t){for(var r=t.getByte();r>=0;){if(65361===(r<<8|(r=t.getByte()))){t.skip(4);var i=t.getInt32()>>>0,o=t.getInt32()>>>0,a=t.getInt32()>>>0,c=t.getInt32()>>>0;t.skip(16);var u=t.getUint16();this.width=i-a;this.height=o-c;this.componentsCount=u;this.bitsPerComponent=8;return}}throw new l("No size marker found in JPX stream")}},{key:"parseCodestream",value:function parseCodestream(t,r,i){var c={},u=!1;try{for(var h=r;h+1<i;){var d=(0,a.readUint16)(t,h);h+=2;var p=0,m=void 0,y=void 0,v=void 0,g=void 0,b=void 0,x=void 0;switch(d){case 65359:c.mainHeader=!0;break;case 65497:break;case 65361:p=(0,a.readUint16)(t,h);var w={};w.Xsiz=(0,a.readUint32)(t,h+4);w.Ysiz=(0,a.readUint32)(t,h+8);w.XOsiz=(0,a.readUint32)(t,h+12);w.YOsiz=(0,a.readUint32)(t,h+16);w.XTsiz=(0,a.readUint32)(t,h+20);w.YTsiz=(0,a.readUint32)(t,h+24);w.XTOsiz=(0,a.readUint32)(t,h+28);w.YTOsiz=(0,a.readUint32)(t,h+32);var _=(0,a.readUint16)(t,h+36);w.Csiz=_;var C=[];m=h+38;for(var k=0;k<_;k++){var S={precision:1+(127&t[m]),isSigned:!!(128&t[m]),XRsiz:t[m+1],YRsiz:t[m+2]};m+=3;calculateComponentDimensions(S,w);C.push(S)}c.SIZ=w;c.components=C;calculateTileGrids(c,C);c.QCC=[];c.COC=[];break;case 65372:p=(0,a.readUint16)(t,h);var P={};m=h+2;switch(31&(y=t[m++])){case 0:g=8;b=!0;break;case 1:g=16;b=!1;break;case 2:g=16;b=!0;break;default:throw new Error("Invalid SQcd value "+y)}P.noQuantization=8===g;P.scalarExpounded=b;P.guardBits=y>>5;v=[];for(;m<p+h;){var T={};if(8===g){T.epsilon=t[m++]>>3;T.mu=0}else{T.epsilon=t[m]>>3;T.mu=(7&t[m])<<8|t[m+1];m+=2}v.push(T)}P.SPqcds=v;if(c.mainHeader)c.QCD=P;else{c.currentTile.QCD=P;c.currentTile.QCC=[]}break;case 65373:p=(0,a.readUint16)(t,h);var I={};m=h+2;var O=void 0;if(c.SIZ.Csiz<257)O=t[m++];else{O=(0,a.readUint16)(t,m);m+=2}switch(31&(y=t[m++])){case 0:g=8;b=!0;break;case 1:g=16;b=!1;break;case 2:g=16;b=!0;break;default:throw new Error("Invalid SQcd value "+y)}I.noQuantization=8===g;I.scalarExpounded=b;I.guardBits=y>>5;v=[];for(;m<p+h;){var E={};if(8===g){E.epsilon=t[m++]>>3;E.mu=0}else{E.epsilon=t[m]>>3;E.mu=(7&t[m])<<8|t[m+1];m+=2}v.push(E)}I.SPqcds=v;c.mainHeader?c.QCC[O]=I:c.currentTile.QCC[O]=I;break;case 65362:p=(0,a.readUint16)(t,h);var A={};m=h+2;var R=t[m++];A.entropyCoderWithCustomPrecincts=!!(1&R);A.sopMarkerUsed=!!(2&R);A.ephMarkerUsed=!!(4&R);A.progressionOrder=t[m++];A.layersCount=(0,a.readUint16)(t,m);m+=2;A.multipleComponentTransform=t[m++];A.decompositionLevelsCount=t[m++];A.xcb=2+(15&t[m++]);A.ycb=2+(15&t[m++]);var B=t[m++];A.selectiveArithmeticCodingBypass=!!(1&B);A.resetContextProbabilities=!!(2&B);A.terminationOnEachCodingPass=!!(4&B);A.verticallyStripe=!!(8&B);A.predictableTermination=!!(16&B);A.segmentationSymbolUsed=!!(32&B);A.reversibleTransformation=t[m++];if(A.entropyCoderWithCustomPrecincts){for(var M=[];m<p+h;){var D=t[m++];M.push({PPx:15&D,PPy:D>>4})}A.precinctsSizes=M}var L=[];A.selectiveArithmeticCodingBypass&&L.push("selectiveArithmeticCodingBypass");A.resetContextProbabilities&&L.push("resetContextProbabilities");A.terminationOnEachCodingPass&&L.push("terminationOnEachCodingPass");A.verticallyStripe&&L.push("verticallyStripe");A.predictableTermination&&L.push("predictableTermination");if(L.length>0){u=!0;(0,o.warn)("JPX: Unsupported COD options (".concat(L.join(", "),")."))}if(c.mainHeader)c.COD=A;else{c.currentTile.COD=A;c.currentTile.COC=[]}break;case 65424:p=(0,a.readUint16)(t,h);(x={}).index=(0,a.readUint16)(t,h+2);x.length=(0,a.readUint32)(t,h+4);x.dataEnd=x.length+h-2;x.partIndex=t[h+8];x.partsCount=t[h+9];c.mainHeader=!1;if(0===x.partIndex){x.COD=c.COD;x.COC=c.COC.slice(0);x.QCD=c.QCD;x.QCC=c.QCC.slice(0)}c.currentTile=x;break;case 65427:if(0===(x=c.currentTile).partIndex){initializeTile(c,x.index);buildPackets(c)}parseTilePackets(c,t,h,p=x.dataEnd-h);break;case 65363:(0,o.warn)("JPX: Codestream code 0xFF53 (COC) is not implemented.");case 65365:case 65367:case 65368:case 65380:p=(0,a.readUint16)(t,h);break;default:throw new Error("Unknown codestream code: "+d.toString(16))}h+=p}}catch(t){if(u||this.failOnCorruptedImage)throw new l(t.message);(0,o.warn)('JPX: Trying to recover from: "'.concat(t.message,'".'))}this.tiles=function transformComponents(t){for(var r=t.SIZ,i=t.components,o=r.Csiz,a=[],c=0,l=t.tiles.length;c<l;c++){for(var u=t.tiles[c],h=[],d=0;d<o;d++)h[d]=transformTile(t,u,d);var p=h[0],m=new Uint8ClampedArray(p.items.length*o),y={left:p.left,top:p.top,width:p.width,height:p.height,items:m},v=void 0,g=void 0,b=0,x=void 0,w=void 0,_=void 0,C=void 0,k=void 0;if(u.codingStyleDefaultParameters.multipleComponentTransform){var S=4===o,P=h[0].items,T=h[1].items,I=h[2].items,O=S?h[3].items:null;g=.5+(128<<(v=i[0].precision-8));var E=u.components[0],A=o-3;w=P.length;if(E.codingStyleParameters.reversibleTransformation)for(x=0;x<w;x++,b+=A){_=P[x]+g;C=T[x];var R=_-((k=I[x])+C>>2);m[b++]=R+k>>v;m[b++]=R>>v;m[b++]=R+C>>v}else for(x=0;x<w;x++,b+=A){_=P[x]+g;C=T[x];k=I[x];m[b++]=_+1.402*k>>v;m[b++]=_-.34413*C-.71414*k>>v;m[b++]=_+1.772*C>>v}if(S)for(x=0,b=3;x<w;x++,b+=4)m[b]=O[x]+g>>v}else for(var B=0;B<o;B++){var M=h[B].items;g=.5+(128<<(v=i[B].precision-8));for(b=B,x=0,w=M.length;x<w;x++){m[b]=M[x]+g>>v;b+=o}}a.push(y)}return a}(c);this.width=c.SIZ.Xsiz-c.SIZ.XOsiz;this.height=c.SIZ.Ysiz-c.SIZ.YOsiz;this.componentsCount=c.SIZ.Csiz}}]);return JpxImage}();r.JpxImage=h;function calculateComponentDimensions(t,r){t.x0=Math.ceil(r.XOsiz/t.XRsiz);t.x1=Math.ceil(r.Xsiz/t.XRsiz);t.y0=Math.ceil(r.YOsiz/t.YRsiz);t.y1=Math.ceil(r.Ysiz/t.YRsiz);t.width=t.x1-t.x0;t.height=t.y1-t.y0}function calculateTileGrids(t,r){for(var i,o=t.SIZ,a=[],c=Math.ceil((o.Xsiz-o.XTOsiz)/o.XTsiz),l=Math.ceil((o.Ysiz-o.YTOsiz)/o.YTsiz),u=0;u<l;u++)for(var h=0;h<c;h++){(i={}).tx0=Math.max(o.XTOsiz+h*o.XTsiz,o.XOsiz);i.ty0=Math.max(o.YTOsiz+u*o.YTsiz,o.YOsiz);i.tx1=Math.min(o.XTOsiz+(h+1)*o.XTsiz,o.Xsiz);i.ty1=Math.min(o.YTOsiz+(u+1)*o.YTsiz,o.Ysiz);i.width=i.tx1-i.tx0;i.height=i.ty1-i.ty0;i.components=[];a.push(i)}t.tiles=a;for(var d=0,p=o.Csiz;d<p;d++)for(var m=r[d],y=0,v=a.length;y<v;y++){var g={};i=a[y];g.tcx0=Math.ceil(i.tx0/m.XRsiz);g.tcy0=Math.ceil(i.ty0/m.YRsiz);g.tcx1=Math.ceil(i.tx1/m.XRsiz);g.tcy1=Math.ceil(i.ty1/m.YRsiz);g.width=g.tcx1-g.tcx0;g.height=g.tcy1-g.tcy0;i.components[d]=g}}function getBlocksDimensions(t,r,i){var o=r.codingStyleParameters,a={};if(o.entropyCoderWithCustomPrecincts){a.PPx=o.precinctsSizes[i].PPx;a.PPy=o.precinctsSizes[i].PPy}else{a.PPx=15;a.PPy=15}a.xcb_=i>0?Math.min(o.xcb,a.PPx-1):Math.min(o.xcb,a.PPx);a.ycb_=i>0?Math.min(o.ycb,a.PPy-1):Math.min(o.ycb,a.PPy);return a}function buildPrecincts(t,r,i){var o=1<<i.PPx,a=1<<i.PPy,c=0===r.resLevel,l=1<<i.PPx+(c?0:-1),u=1<<i.PPy+(c?0:-1),h=r.trx1>r.trx0?Math.ceil(r.trx1/o)-Math.floor(r.trx0/o):0,d=r.try1>r.try0?Math.ceil(r.try1/a)-Math.floor(r.try0/a):0,p=h*d;r.precinctParameters={precinctWidth:o,precinctHeight:a,numprecinctswide:h,numprecinctshigh:d,numprecincts:p,precinctWidthInSubband:l,precinctHeightInSubband:u}}function buildCodeblocks(t,r,i){var o,a,c,l,u=i.xcb_,h=i.ycb_,d=1<<u,p=1<<h,m=r.tbx0>>u,y=r.tby0>>h,v=r.tbx1+d-1>>u,g=r.tby1+p-1>>h,b=r.resolution.precinctParameters,x=[],w=[];for(a=y;a<g;a++)for(o=m;o<v;o++){(c={cbx:o,cby:a,tbx0:d*o,tby0:p*a,tbx1:d*(o+1),tby1:p*(a+1)}).tbx0_=Math.max(r.tbx0,c.tbx0);c.tby0_=Math.max(r.tby0,c.tby0);c.tbx1_=Math.min(r.tbx1,c.tbx1);c.tby1_=Math.min(r.tby1,c.tby1);l=Math.floor((c.tbx0_-r.tbx0)/b.precinctWidthInSubband)+Math.floor((c.tby0_-r.tby0)/b.precinctHeightInSubband)*b.numprecinctswide;c.precinctNumber=l;c.subbandType=r.type;c.Lblock=3;if(!(c.tbx1_<=c.tbx0_||c.tby1_<=c.tby0_)){x.push(c);var _=w[l];if(void 0!==_){o<_.cbxMin?_.cbxMin=o:o>_.cbxMax&&(_.cbxMax=o);a<_.cbyMin?_.cbxMin=a:a>_.cbyMax&&(_.cbyMax=a)}else w[l]=_={cbxMin:o,cbyMin:a,cbxMax:o,cbyMax:a};c.precinct=_}}r.codeblockParameters={codeblockWidth:u,codeblockHeight:h,numcodeblockwide:v-m+1,numcodeblockhigh:g-y+1};r.codeblocks=x;r.precincts=w}function createPacket(t,r,i){for(var o=[],a=t.subbands,c=0,l=a.length;c<l;c++)for(var u=a[c].codeblocks,h=0,d=u.length;h<d;h++){var p=u[h];p.precinctNumber===r&&o.push(p)}return{layerNumber:i,codeblocks:o}}function LayerResolutionComponentPositionIterator(t){for(var r=t.SIZ,i=t.currentTile.index,o=t.tiles[i],a=o.codingStyleDefaultParameters.layersCount,c=r.Csiz,u=0,h=0;h<c;h++)u=Math.max(u,o.components[h].codingStyleParameters.decompositionLevelsCount);var d=0,p=0,m=0,y=0;this.nextPacket=function JpxImage_nextPacket(){for(;d<a;d++){for(;p<=u;p++){for(;m<c;m++){var t=o.components[m];if(!(p>t.codingStyleParameters.decompositionLevelsCount)){for(var r=t.resolutions[p],i=r.precinctParameters.numprecincts;y<i;){var h=createPacket(r,y,d);y++;return h}y=0}}m=0}p=0}throw new l("Out of packets")}}function ResolutionLayerComponentPositionIterator(t){for(var r=t.SIZ,i=t.currentTile.index,o=t.tiles[i],a=o.codingStyleDefaultParameters.layersCount,c=r.Csiz,u=0,h=0;h<c;h++)u=Math.max(u,o.components[h].codingStyleParameters.decompositionLevelsCount);var d=0,p=0,m=0,y=0;this.nextPacket=function JpxImage_nextPacket(){for(;d<=u;d++){for(;p<a;p++){for(;m<c;m++){var t=o.components[m];if(!(d>t.codingStyleParameters.decompositionLevelsCount)){for(var r=t.resolutions[d],i=r.precinctParameters.numprecincts;y<i;){var h=createPacket(r,y,p);y++;return h}y=0}}m=0}p=0}throw new l("Out of packets")}}function ResolutionPositionComponentLayerIterator(t){var r,i,o,a,c=t.SIZ,u=t.currentTile.index,h=t.tiles[u],d=h.codingStyleDefaultParameters.layersCount,p=c.Csiz,m=0;for(o=0;o<p;o++){var y=h.components[o];m=Math.max(m,y.codingStyleParameters.decompositionLevelsCount)}var v=new Int32Array(m+1);for(i=0;i<=m;++i){var g=0;for(o=0;o<p;++o){var b=h.components[o].resolutions;i<b.length&&(g=Math.max(g,b[i].precinctParameters.numprecincts))}v[i]=g}r=0;i=0;o=0;a=0;this.nextPacket=function JpxImage_nextPacket(){for(;i<=m;i++){for(;a<v[i];a++){for(;o<p;o++){var t=h.components[o];if(!(i>t.codingStyleParameters.decompositionLevelsCount)){var c=t.resolutions[i],u=c.precinctParameters.numprecincts;if(!(a>=u)){for(;r<d;){var y=createPacket(c,a,r);r++;return y}r=0}}}o=0}a=0}throw new l("Out of packets")}}function PositionComponentResolutionLayerIterator(t){var r=t.SIZ,i=t.currentTile.index,o=t.tiles[i],a=o.codingStyleDefaultParameters.layersCount,c=r.Csiz,u=getPrecinctSizesInImageScale(o),h=u,d=0,p=0,m=0,y=0,v=0;this.nextPacket=function JpxImage_nextPacket(){for(;v<h.maxNumHigh;v++){for(;y<h.maxNumWide;y++){for(;m<c;m++){for(var t=o.components[m],r=t.codingStyleParameters.decompositionLevelsCount;p<=r;p++){var i=t.resolutions[p],g=u.components[m].resolutions[p],b=getPrecinctIndexIfExist(y,v,g,h,i);if(null!==b){for(;d<a;){var x=createPacket(i,b,d);d++;return x}d=0}}p=0}m=0}y=0}throw new l("Out of packets")}}function ComponentPositionResolutionLayerIterator(t){var r=t.SIZ,i=t.currentTile.index,o=t.tiles[i],a=o.codingStyleDefaultParameters.layersCount,c=r.Csiz,u=getPrecinctSizesInImageScale(o),h=0,d=0,p=0,m=0,y=0;this.nextPacket=function JpxImage_nextPacket(){for(;p<c;++p){for(var t=o.components[p],r=u.components[p],i=t.codingStyleParameters.decompositionLevelsCount;y<r.maxNumHigh;y++){for(;m<r.maxNumWide;m++){for(;d<=i;d++){var v=t.resolutions[d],g=r.resolutions[d],b=getPrecinctIndexIfExist(m,y,g,r,v);if(null!==b){for(;h<a;){var x=createPacket(v,b,h);h++;return x}h=0}}d=0}m=0}y=0}throw new l("Out of packets")}}function getPrecinctIndexIfExist(t,r,i,o,a){var c=t*o.minWidth,l=r*o.minHeight;if(c%i.width!=0||l%i.height!=0)return null;var u=l/i.width*a.precinctParameters.numprecinctswide;return c/i.height+u}function getPrecinctSizesInImageScale(t){for(var r=t.components.length,i=Number.MAX_VALUE,o=Number.MAX_VALUE,a=0,c=0,l=new Array(r),u=0;u<r;u++){for(var h=t.components[u],d=h.codingStyleParameters.decompositionLevelsCount,p=new Array(d+1),m=Number.MAX_VALUE,y=Number.MAX_VALUE,v=0,g=0,b=1,x=d;x>=0;--x){var w=h.resolutions[x],_=b*w.precinctParameters.precinctWidth,C=b*w.precinctParameters.precinctHeight;m=Math.min(m,_);y=Math.min(y,C);v=Math.max(v,w.precinctParameters.numprecinctswide);g=Math.max(g,w.precinctParameters.numprecinctshigh);p[x]={width:_,height:C};b<<=1}i=Math.min(i,m);o=Math.min(o,y);a=Math.max(a,v);c=Math.max(c,g);l[u]={resolutions:p,minWidth:m,minHeight:y,maxNumWide:v,maxNumHigh:g}}return{components:l,minWidth:i,minHeight:o,maxNumWide:a,maxNumHigh:c}}function buildPackets(t){for(var r=t.SIZ,i=t.currentTile.index,o=t.tiles[i],a=r.Csiz,c=0;c<a;c++){for(var u=o.components[c],h=u.codingStyleParameters.decompositionLevelsCount,d=[],p=[],m=0;m<=h;m++){var y=getBlocksDimensions(0,u,m),v={},g=1<<h-m;v.trx0=Math.ceil(u.tcx0/g);v.try0=Math.ceil(u.tcy0/g);v.trx1=Math.ceil(u.tcx1/g);v.try1=Math.ceil(u.tcy1/g);v.resLevel=m;buildPrecincts(0,v,y);d.push(v);var b=void 0;if(0===m){(b={}).type="LL";b.tbx0=Math.ceil(u.tcx0/g);b.tby0=Math.ceil(u.tcy0/g);b.tbx1=Math.ceil(u.tcx1/g);b.tby1=Math.ceil(u.tcy1/g);b.resolution=v;buildCodeblocks(0,b,y);p.push(b);v.subbands=[b]}else{var x=1<<h-m+1,w=[];(b={}).type="HL";b.tbx0=Math.ceil(u.tcx0/x-.5);b.tby0=Math.ceil(u.tcy0/x);b.tbx1=Math.ceil(u.tcx1/x-.5);b.tby1=Math.ceil(u.tcy1/x);b.resolution=v;buildCodeblocks(0,b,y);p.push(b);w.push(b);(b={}).type="LH";b.tbx0=Math.ceil(u.tcx0/x);b.tby0=Math.ceil(u.tcy0/x-.5);b.tbx1=Math.ceil(u.tcx1/x);b.tby1=Math.ceil(u.tcy1/x-.5);b.resolution=v;buildCodeblocks(0,b,y);p.push(b);w.push(b);(b={}).type="HH";b.tbx0=Math.ceil(u.tcx0/x-.5);b.tby0=Math.ceil(u.tcy0/x-.5);b.tbx1=Math.ceil(u.tcx1/x-.5);b.tby1=Math.ceil(u.tcy1/x-.5);b.resolution=v;buildCodeblocks(0,b,y);p.push(b);w.push(b);v.subbands=w}}u.resolutions=d;u.subbands=p}var _=o.codingStyleDefaultParameters.progressionOrder;switch(_){case 0:o.packetsIterator=new LayerResolutionComponentPositionIterator(t);break;case 1:o.packetsIterator=new ResolutionLayerComponentPositionIterator(t);break;case 2:o.packetsIterator=new ResolutionPositionComponentLayerIterator(t);break;case 3:o.packetsIterator=new PositionComponentResolutionLayerIterator(t);break;case 4:o.packetsIterator=new ComponentPositionResolutionLayerIterator(t);break;default:throw new l("Unsupported progression order ".concat(_))}}function parseTilePackets(t,r,i,o){var c,l=0,u=0,h=!1;function readBits(t){for(;u<t;){var o=r[i+l];l++;if(h){c=c<<7|o;u+=7;h=!1}else{c=c<<8|o;u+=8}255===o&&(h=!0)}return c>>>(u-=t)&(1<<t)-1}function skipMarkerIfEqual(t){if(255===r[i+l-1]&&r[i+l]===t){skipBytes(1);return!0}if(255===r[i+l]&&r[i+l+1]===t){skipBytes(2);return!0}return!1}function skipBytes(t){l+=t}function alignToByte(){u=0;if(h){l++;h=!1}}function readCodingpasses(){if(0===readBits(1))return 1;if(0===readBits(1))return 2;var t=readBits(2);return t<3?t+3:(t=readBits(5))<31?t+6:(t=readBits(7))+37}for(var m=t.currentTile.index,y=t.tiles[m],v=t.COD.sopMarkerUsed,g=t.COD.ephMarkerUsed,b=y.packetsIterator;l<o;){alignToByte();v&&skipMarkerIfEqual(145)&&skipBytes(4);var x=b.nextPacket();if(readBits(1)){for(var w=x.layerNumber,_=[],C=void 0,k=0,S=x.codeblocks.length;k<S;k++){var P=(C=x.codeblocks[k]).precinct,T=C.cbx-P.cbxMin,I=C.cby-P.cbyMin,O=!1,E=!1,A=void 0;if(void 0!==C.included)O=!!readBits(1);else{var R=void 0;if(void 0!==(P=C.precinct).inclusionTree)R=P.inclusionTree;else{var B=P.cbxMax-P.cbxMin+1,M=P.cbyMax-P.cbyMin+1;R=new p(B,M,w);A=new d(B,M);P.inclusionTree=R;P.zeroBitPlanesTree=A}if(R.reset(T,I,w))for(;;){if(!readBits(1)){R.incrementValue(w);break}if(!R.nextLevel()){C.included=!0;O=E=!0;break}}}if(O){if(E){(A=P.zeroBitPlanesTree).reset(T,I);for(;;)if(readBits(1)){if(!A.nextLevel())break}else A.incrementValue();C.zeroBitPlanes=A.value}for(var D=readCodingpasses();readBits(1);)C.Lblock++;var L=(0,a.log2)(D),U=readBits((D<1<<L?L-1:L)+C.Lblock);_.push({codeblock:C,codingpasses:D,dataLength:U})}}alignToByte();g&&skipMarkerIfEqual(146);for(;_.length>0;){var N=_.shift();void 0===(C=N.codeblock).data&&(C.data=[]);C.data.push({data:r,start:i+l,end:i+l+N.dataLength,codingpasses:N.codingpasses});l+=N.dataLength}}}return l}function copyCoefficients(t,r,i,o,a,l,u,h){for(var d=o.tbx0,p=o.tby0,y=o.tbx1-o.tbx0,v=o.codeblocks,g="H"===o.type.charAt(0)?1:0,b="H"===o.type.charAt(1)?r:0,x=0,w=v.length;x<w;++x){var _=v[x],C=_.tbx1_-_.tbx0_,k=_.tby1_-_.tby0_;if(0!==C&&0!==k&&void 0!==_.data){var S=new m(C,k,_.subbandType,_.zeroBitPlanes,l),P=2,T=_.data,I=0,O=0,E=void 0,A=void 0,R=void 0;for(E=0,A=T.length;E<A;E++){I+=(R=T[E]).end-R.start;O+=R.codingpasses}var B=new Uint8Array(I),M=0;for(E=0,A=T.length;E<A;E++){var D=(R=T[E]).data.subarray(R.start,R.end);B.set(D,M);M+=D.length}var L=new c.ArithmeticDecoder(B,0,I);S.setDecoder(L);for(E=0;E<O;E++){switch(P){case 0:S.runSignificancePropagationPass();break;case 1:S.runMagnitudeRefinementPass();break;case 2:S.runCleanupPass();h&&S.checkSegmentationSymbol()}P=(P+1)%3}var U=_.tbx0_-d+(_.tby0_-p)*y,N=S.coefficentsSign,j=S.coefficentsMagnitude,H=S.bitsDecoded,z=u?0:.5,X=void 0,Y=void 0,G=void 0;M=0;var q="LL"!==o.type;for(E=0;E<k;E++){var J=2*(U/y|0)*(r-y)+g+b;for(X=0;X<C;X++){if(0!==(Y=j[M])){Y=(Y+z)*a;0!==N[M]&&(Y=-Y);G=H[M];var W=q?J+(U<<1):U;t[W]=u&&G>=l?Y:Y*(1<<l-G)}U++;M++}U+=y-C}}}}function transformTile(t,r,i){for(var o=r.components[i],a=o.codingStyleParameters,c=o.quantizationParameters,l=a.decompositionLevelsCount,h=c.SPqcds,d=c.scalarExpounded,p=c.guardBits,m=a.segmentationSymbolUsed,y=t.components[i].precision,b=a.reversibleTransformation,x=b?new g:new v,w=[],_=0,C=0;C<=l;C++){for(var k=o.resolutions[C],S=k.trx1-k.trx0,P=k.try1-k.try0,T=new Float32Array(S*P),I=0,O=k.subbands.length;I<O;I++){var E=void 0,A=void 0;if(d){E=h[_].mu;A=h[_].epsilon;_++}else{E=h[0].mu;A=h[0].epsilon+(C>0?1-C:0)}var R=k.subbands[I],B=u[R.type];copyCoefficients(T,S,0,R,b?1:Math.pow(2,y+B-A)*(1+E/2048),p+A-1,b,m)}w.push({width:S,height:P,items:T})}var M=x.calculate(w,o.tcx0,o.tcy0);return{left:o.tcx0,top:o.tcy0,width:M.width,height:M.height,items:M.items}}function initializeTile(t,r){for(var i=t.SIZ.Csiz,o=t.tiles[r],a=0;a<i;a++){var c=o.components[a],l=void 0!==t.currentTile.QCC[a]?t.currentTile.QCC[a]:t.currentTile.QCD;c.quantizationParameters=l;var u=void 0!==t.currentTile.COC[a]?t.currentTile.COC[a]:t.currentTile.COD;c.codingStyleParameters=u}o.codingStyleDefaultParameters=t.currentTile.COD}var d=function(){function TagTree(t,r){_classCallCheck(this,TagTree);var i=(0,a.log2)(Math.max(t,r))+1;this.levels=[];for(var o=0;o<i;o++){var c={width:t,height:r,items:[]};this.levels.push(c);t=Math.ceil(t/2);r=Math.ceil(r/2)}}_createClass(TagTree,[{key:"reset",value:function reset(t,r){for(var i,o=0,a=0;o<this.levels.length;){var c=t+r*(i=this.levels[o]).width;if(void 0!==i.items[c]){a=i.items[c];break}i.index=c;t>>=1;r>>=1;o++}o--;(i=this.levels[o]).items[i.index]=a;this.currentLevel=o;delete this.value}},{key:"incrementValue",value:function incrementValue(){var t=this.levels[this.currentLevel];t.items[t.index]++}},{key:"nextLevel",value:function nextLevel(){var t=this.currentLevel,r=this.levels[t],i=r.items[r.index];if(--t<0){this.value=i;return!1}this.currentLevel=t;(r=this.levels[t]).items[r.index]=i;return!0}}]);return TagTree}(),p=function(){function InclusionTree(t,r,i){_classCallCheck(this,InclusionTree);var o=(0,a.log2)(Math.max(t,r))+1;this.levels=[];for(var c=0;c<o;c++){for(var l=new Uint8Array(t*r),u=0,h=l.length;u<h;u++)l[u]=i;var d={width:t,height:r,items:l};this.levels.push(d);t=Math.ceil(t/2);r=Math.ceil(r/2)}}_createClass(InclusionTree,[{key:"reset",value:function reset(t,r,i){for(var o=0;o<this.levels.length;){var a=this.levels[o],c=t+r*a.width;a.index=c;var l=a.items[c];if(255===l)break;if(l>i){this.currentLevel=o;this.propagateValues();return!1}t>>=1;r>>=1;o++}this.currentLevel=o-1;return!0}},{key:"incrementValue",value:function incrementValue(t){var r=this.levels[this.currentLevel];r.items[r.index]=t+1;this.propagateValues()}},{key:"propagateValues",value:function propagateValues(){for(var t=this.currentLevel,r=this.levels[t],i=r.items[r.index];--t>=0;)(r=this.levels[t]).items[r.index]=i}},{key:"nextLevel",value:function nextLevel(){var t=this.currentLevel,r=this.levels[t],i=r.items[r.index];r.items[r.index]=255;if(--t<0)return!1;this.currentLevel=t;(r=this.levels[t]).items[r.index]=i;return!0}}]);return InclusionTree}(),m=function BitModelClosure(){var t=17,r=new Uint8Array([0,5,8,0,3,7,8,0,4,7,8,0,0,0,0,0,1,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8]),i=new Uint8Array([0,3,4,0,5,7,7,0,8,8,8,0,0,0,0,0,1,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8]),o=new Uint8Array([0,1,2,0,1,2,2,0,2,2,2,0,0,0,0,0,3,4,5,0,4,5,5,0,5,5,5,0,0,0,0,0,6,7,7,0,7,7,7,0,7,7,7,0,0,0,0,0,8,8,8,0,8,8,8,0,8,8,8,0,0,0,0,0,8,8,8,0,8,8,8,0,8,8,8]);return function(){function BitModel(t,a,c,l,u){_classCallCheck(this,BitModel);this.width=t;this.height=a;var h;h="HH"===c?o:"HL"===c?i:r;this.contextLabelTable=h;var d,p=t*a;this.neighborsSignificance=new Uint8Array(p);this.coefficentsSign=new Uint8Array(p);d=u>14?new Uint32Array(p):u>6?new Uint16Array(p):new Uint8Array(p);this.coefficentsMagnitude=d;this.processingFlags=new Uint8Array(p);var m=new Uint8Array(p);if(0!==l)for(var y=0;y<p;y++)m[y]=l;this.bitsDecoded=m;this.reset()}_createClass(BitModel,[{key:"setDecoder",value:function setDecoder(t){this.decoder=t}},{key:"reset",value:function reset(){this.contexts=new Int8Array(19);this.contexts[0]=8;this.contexts[17]=92;this.contexts[18]=6}},{key:"setNeighborsSignificance",value:function setNeighborsSignificance(t,r,i){var o,a=this.neighborsSignificance,c=this.width,l=this.height,u=r>0,h=r+1<c;if(t>0){o=i-c;u&&(a[o-1]+=16);h&&(a[o+1]+=16);a[o]+=4}if(t+1<l){o=i+c;u&&(a[o-1]+=16);h&&(a[o+1]+=16);a[o]+=4}u&&(a[i-1]+=1);h&&(a[i+1]+=1);a[i]|=128}},{key:"runSignificancePropagationPass",value:function runSignificancePropagationPass(){for(var t=this.decoder,r=this.width,i=this.height,o=this.coefficentsMagnitude,a=this.coefficentsSign,c=this.neighborsSignificance,l=this.processingFlags,u=this.contexts,h=this.contextLabelTable,d=this.bitsDecoded,p=0;p<i;p+=4)for(var m=0;m<r;m++)for(var y=p*r+m,v=0;v<4;v++,y+=r){var g=p+v;if(g>=i)break;l[y]&=-2;if(!o[y]&&c[y]){var b=h[c[y]];if(t.readBit(u,b)){var x=this.decodeSignBit(g,m,y);a[y]=x;o[y]=1;this.setNeighborsSignificance(g,m,y);l[y]|=2}d[y]++;l[y]|=1}}}},{key:"decodeSignBit",value:function decodeSignBit(t,r,i){var o,a,c,l,u,h,d=this.width,p=this.height,m=this.coefficentsMagnitude,y=this.coefficentsSign;l=r>0&&0!==m[i-1];if(r+1<d&&0!==m[i+1]){c=y[i+1];o=l?1-c-(a=y[i-1]):1-c-c}else o=l?1-(a=y[i-1])-a:0;var v=3*o;l=t>0&&0!==m[i-d];if(t+1<p&&0!==m[i+d]){c=y[i+d];o=l?1-c-(a=y[i-d])+v:1-c-c+v}else o=l?1-(a=y[i-d])-a+v:v;if(o>=0){u=9+o;h=this.decoder.readBit(this.contexts,u)}else{u=9-o;h=1^this.decoder.readBit(this.contexts,u)}return h}},{key:"runMagnitudeRefinementPass",value:function runMagnitudeRefinementPass(){for(var t,r=this.decoder,i=this.width,o=this.height,a=this.coefficentsMagnitude,c=this.neighborsSignificance,l=this.contexts,u=this.bitsDecoded,h=this.processingFlags,d=i*o,p=4*i,m=0;m<d;m=t){t=Math.min(d,m+p);for(var y=0;y<i;y++)for(var v=m+y;v<t;v+=i)if(a[v]&&0==(1&h[v])){var g=16;if(0!=(2&h[v])){h[v]^=2;g=0===(127&c[v])?15:14}var b=r.readBit(l,g);a[v]=a[v]<<1|b;u[v]++;h[v]|=1}}}},{key:"runCleanupPass",value:function runCleanupPass(){for(var r,i=this.decoder,o=this.width,a=this.height,c=this.neighborsSignificance,l=this.coefficentsMagnitude,u=this.coefficentsSign,h=this.contexts,d=this.contextLabelTable,p=this.bitsDecoded,m=this.processingFlags,y=o,v=2*o,g=3*o,b=0;b<a;b=r){r=Math.min(b+4,a);for(var x=b*o,w=b+3<a,_=0;_<o;_++){var C=x+_,k=0,S=C,P=b,T=void 0;if(w&&0===m[C]&&0===m[C+y]&&0===m[C+v]&&0===m[C+g]&&0===c[C]&&0===c[C+y]&&0===c[C+v]&&0===c[C+g]){if(!i.readBit(h,18)){p[C]++;p[C+y]++;p[C+v]++;p[C+g]++;continue}if(0!==(k=i.readBit(h,t)<<1|i.readBit(h,t))){P=b+k;S+=k*o}T=this.decodeSignBit(P,_,S);u[S]=T;l[S]=1;this.setNeighborsSignificance(P,_,S);m[S]|=2;S=C;for(var I=b;I<=P;I++,S+=o)p[S]++;k++}for(P=b+k;P<r;P++,S+=o)if(!l[S]&&0==(1&m[S])){var O=d[c[S]];if(1===i.readBit(h,O)){T=this.decodeSignBit(P,_,S);u[S]=T;l[S]=1;this.setNeighborsSignificance(P,_,S);m[S]|=2}p[S]++}}}}},{key:"checkSegmentationSymbol",value:function checkSegmentationSymbol(){var r=this.decoder,i=this.contexts;if(10!==(r.readBit(i,t)<<3|r.readBit(i,t)<<2|r.readBit(i,t)<<1|r.readBit(i,t)))throw new l("Invalid segmentation symbol")}}]);return BitModel}()}(),y=function(){function Transform(){_classCallCheck(this,Transform);this.constructor===Transform&&(0,o.unreachable)("Cannot initialize Transform.")}_createClass(Transform,[{key:"calculate",value:function calculate(t,r,i){for(var o=t[0],a=1,c=t.length;a<c;a++)o=this.iterate(o,t[a],r,i);return o}},{key:"extend",value:function extend(t,r,i){var o=r-1,a=r+1,c=r+i-2,l=r+i;t[o--]=t[a++];t[l++]=t[c--];t[o--]=t[a++];t[l++]=t[c--];t[o--]=t[a++];t[l++]=t[c--];t[o]=t[a];t[l]=t[c]}},{key:"filter",value:function filter(t,r,i){(0,o.unreachable)("Abstract method `filter` called")}},{key:"iterate",value:function iterate(t,r,i,o){var a,c,l,u,h,d,p=t.width,m=t.height,y=t.items,v=r.width,g=r.height,b=r.items;for(l=0,a=0;a<m;a++){u=2*a*v;for(c=0;c<p;c++,l++,u+=2)b[u]=y[l]}y=t.items=null;var x=new Float32Array(v+8);if(1===v){if(0!=(1&i))for(d=0,l=0;d<g;d++,l+=v)b[l]*=.5}else for(d=0,l=0;d<g;d++,l+=v){x.set(b.subarray(l,l+v),4);this.extend(x,4,v);this.filter(x,4,v);b.set(x.subarray(4,4+v),l)}var w=16,_=[];for(a=0;a<w;a++)_.push(new Float32Array(g+8));var C,k=0;t=4+g;if(1===g){if(0!=(1&o))for(h=0;h<v;h++)b[h]*=.5}else for(h=0;h<v;h++){if(0===k){w=Math.min(v-h,w);for(l=h,u=4;u<t;l+=v,u++)for(C=0;C<w;C++)_[C][u]=b[l+C];k=w}var S=_[--k];this.extend(S,4,g);this.filter(S,4,g);if(0===k){l=h-w+1;for(u=4;u<t;l+=v,u++)for(C=0;C<w;C++)b[l+C]=_[C][u]}}return{width:v,height:g,items:b}}}]);return Transform}(),v=function(t){_inherits(IrreversibleTransform,t);var r=_createSuper(IrreversibleTransform);function IrreversibleTransform(){_classCallCheck(this,IrreversibleTransform);return r.apply(this,arguments)}_createClass(IrreversibleTransform,[{key:"filter",value:function filter(t,r,i){var o,a,c,l,u=i>>1,h=-1.586134342059924,d=-.052980118572961,p=.882911075530934,m=.443506852043971,y=1.230174104914001;o=(r|=0)-3;for(a=u+4;a--;o+=2)t[o]*=.8128930661159609;c=m*t[(o=r-2)-1];for(a=u+3;a--;o+=2){l=m*t[o+1];t[o]=y*t[o]-c-l;if(!a--)break;c=m*t[(o+=2)+1];t[o]=y*t[o]-c-l}c=p*t[(o=r-1)-1];for(a=u+2;a--;o+=2){l=p*t[o+1];t[o]-=c+l;if(!a--)break;c=p*t[(o+=2)+1];t[o]-=c+l}c=d*t[(o=r)-1];for(a=u+1;a--;o+=2){l=d*t[o+1];t[o]-=c+l;if(!a--)break;c=d*t[(o+=2)+1];t[o]-=c+l}if(0!==u){c=h*t[(o=r+1)-1];for(a=u;a--;o+=2){l=h*t[o+1];t[o]-=c+l;if(!a--)break;c=h*t[(o+=2)+1];t[o]-=c+l}}}}]);return IrreversibleTransform}(y),g=function(t){_inherits(ReversibleTransform,t);var r=_createSuper(ReversibleTransform);function ReversibleTransform(){_classCallCheck(this,ReversibleTransform);return r.apply(this,arguments)}_createClass(ReversibleTransform,[{key:"filter",value:function filter(t,r,i){var o,a,c=i>>1;for(o=r|=0,a=c+1;a--;o+=2)t[o]-=t[o-1]+t[o+1]+2>>2;for(o=r+1,a=c;a--;o+=2)t[o]+=t[o-1]+t[o+1]>>1}}]);return ReversibleTransform}(y)}],r={};function __w_pdfjs_require__(i){var o=r[i];if(void 0!==o)return o.exports;var a=r[i]={id:i,loaded:!1,exports:{}};t[i](a,a.exports,__w_pdfjs_require__);a.loaded=!0;return a.exports}__w_pdfjs_require__.nmd=t=>{t.paths=[];t.children||(t.children=[]);return t};var i={};(()=>{"use strict";var t=i;Object.defineProperty(t,"__esModule",{value:!0});Object.defineProperty(t,"getVerbosityLevel",{enumerable:!0,get:function get(){return r.getVerbosityLevel}});Object.defineProperty(t,"setVerbosityLevel",{enumerable:!0,get:function get(){return r.setVerbosityLevel}});Object.defineProperty(t,"Jbig2Image",{enumerable:!0,get:function get(){return o.Jbig2Image}});Object.defineProperty(t,"JpegImage",{enumerable:!0,get:function get(){return a.JpegImage}});Object.defineProperty(t,"JpxImage",{enumerable:!0,get:function get(){return c.JpxImage}});var r=__w_pdfjs_require__(1),o=__w_pdfjs_require__(82),a=__w_pdfjs_require__(90),c=__w_pdfjs_require__(91)})();return i})()}));