dompdf.js 1.1.1 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.versionrc +8 -0
- package/CHANGELOG.md +32 -543
- package/README.md +172 -160
- package/README_CN.md +233 -238
- package/dist/dompdf.esm.js +124 -124
- package/dist/dompdf.esm.js.map +1 -1
- package/dist/dompdf.js +124 -124
- package/dist/dompdf.js.map +1 -1
- package/dist/dompdf.min.js +67 -0
- package/dist/index.d.ts +2 -1
- package/dist/lib/__tests__/index.js +144 -0
- package/dist/lib/__tests__/index.js.map +1 -0
- package/dist/lib/core/__mocks__/cache-storage.js +10 -0
- package/dist/lib/core/__mocks__/cache-storage.js.map +1 -0
- package/dist/lib/core/__mocks__/context.js +22 -0
- package/dist/lib/core/__mocks__/context.js.map +1 -0
- package/dist/lib/core/__mocks__/features.js +12 -0
- package/dist/lib/core/__mocks__/features.js.map +1 -0
- package/dist/lib/core/__mocks__/logger.js +24 -0
- package/dist/lib/core/__mocks__/logger.js.map +1 -0
- package/dist/lib/core/__tests__/cache-storage.js +420 -0
- package/dist/lib/core/__tests__/cache-storage.js.map +1 -0
- package/dist/lib/core/__tests__/logger.js +28 -0
- package/dist/lib/core/__tests__/logger.js.map +1 -0
- package/dist/lib/core/bitwise.js +6 -0
- package/dist/lib/core/bitwise.js.map +1 -0
- package/dist/lib/core/cache-storage.js +198 -0
- package/dist/lib/core/cache-storage.js.map +1 -0
- package/dist/lib/core/context.js +18 -0
- package/dist/lib/core/context.js.map +1 -0
- package/dist/lib/core/debugger.js +25 -0
- package/dist/lib/core/debugger.js.map +1 -0
- package/dist/lib/core/features.js +193 -0
- package/dist/lib/core/features.js.map +1 -0
- package/dist/lib/core/logger.js +92 -0
- package/dist/lib/core/logger.js.map +1 -0
- package/dist/lib/core/util.js +5 -0
- package/dist/lib/core/util.js.map +1 -0
- package/dist/lib/css/IPropertyDescriptor.js +3 -0
- package/dist/lib/css/IPropertyDescriptor.js.map +1 -0
- package/dist/lib/css/ITypeDescriptor.js +3 -0
- package/dist/lib/css/ITypeDescriptor.js.map +1 -0
- package/dist/lib/css/index.js +216 -0
- package/dist/lib/css/index.js.map +1 -0
- package/dist/lib/css/layout/__mocks__/bounds.js +9 -0
- package/dist/lib/css/layout/__mocks__/bounds.js.map +1 -0
- package/dist/lib/css/layout/bounds.js +42 -0
- package/dist/lib/css/layout/bounds.js.map +1 -0
- package/dist/lib/css/layout/text.js +137 -0
- package/dist/lib/css/layout/text.js.map +1 -0
- package/dist/lib/css/property-descriptors/__tests__/background-tests.js +48 -0
- package/dist/lib/css/property-descriptors/__tests__/background-tests.js.map +1 -0
- package/dist/lib/css/property-descriptors/__tests__/font-family.js +25 -0
- package/dist/lib/css/property-descriptors/__tests__/font-family.js.map +1 -0
- package/dist/lib/css/property-descriptors/__tests__/paint-order.js +88 -0
- package/dist/lib/css/property-descriptors/__tests__/paint-order.js.map +1 -0
- package/dist/lib/css/property-descriptors/__tests__/text-shadow.js +94 -0
- package/dist/lib/css/property-descriptors/__tests__/text-shadow.js.map +1 -0
- package/dist/lib/css/property-descriptors/__tests__/transform-tests.js +18 -0
- package/dist/lib/css/property-descriptors/__tests__/transform-tests.js.map +1 -0
- package/dist/lib/css/property-descriptors/background-clip.js +24 -0
- package/dist/lib/css/property-descriptors/background-clip.js.map +1 -0
- package/dist/lib/css/property-descriptors/background-color.js +11 -0
- package/dist/lib/css/property-descriptors/background-color.js.map +1 -0
- package/dist/lib/css/property-descriptors/background-image.js +24 -0
- package/dist/lib/css/property-descriptors/background-image.js.map +1 -0
- package/dist/lib/css/property-descriptors/background-origin.js +24 -0
- package/dist/lib/css/property-descriptors/background-origin.js.map +1 -0
- package/dist/lib/css/property-descriptors/background-position.js +17 -0
- package/dist/lib/css/property-descriptors/background-position.js.map +1 -0
- package/dist/lib/css/property-descriptors/background-repeat.js +36 -0
- package/dist/lib/css/property-descriptors/background-repeat.js.map +1 -0
- package/dist/lib/css/property-descriptors/background-size.js +24 -0
- package/dist/lib/css/property-descriptors/background-size.js.map +1 -0
- package/dist/lib/css/property-descriptors/border-color.js +15 -0
- package/dist/lib/css/property-descriptors/border-color.js.map +1 -0
- package/dist/lib/css/property-descriptors/border-radius.js +18 -0
- package/dist/lib/css/property-descriptors/border-radius.js.map +1 -0
- package/dist/lib/css/property-descriptors/border-style.js +30 -0
- package/dist/lib/css/property-descriptors/border-style.js.map +1 -0
- package/dist/lib/css/property-descriptors/border-width.js +21 -0
- package/dist/lib/css/property-descriptors/border-width.js.map +1 -0
- package/dist/lib/css/property-descriptors/box-shadow.js +55 -0
- package/dist/lib/css/property-descriptors/box-shadow.js.map +1 -0
- package/dist/lib/css/property-descriptors/color.js +11 -0
- package/dist/lib/css/property-descriptors/color.js.map +1 -0
- package/dist/lib/css/property-descriptors/content.js +20 -0
- package/dist/lib/css/property-descriptors/content.js.map +1 -0
- package/dist/lib/css/property-descriptors/counter-increment.js +31 -0
- package/dist/lib/css/property-descriptors/counter-increment.js.map +1 -0
- package/dist/lib/css/property-descriptors/counter-reset.js +27 -0
- package/dist/lib/css/property-descriptors/counter-reset.js.map +1 -0
- package/dist/lib/css/property-descriptors/direction.js +19 -0
- package/dist/lib/css/property-descriptors/direction.js.map +1 -0
- package/dist/lib/css/property-descriptors/display.js +82 -0
- package/dist/lib/css/property-descriptors/display.js.map +1 -0
- package/dist/lib/css/property-descriptors/duration.js +15 -0
- package/dist/lib/css/property-descriptors/duration.js.map +1 -0
- package/dist/lib/css/property-descriptors/float.js +23 -0
- package/dist/lib/css/property-descriptors/float.js.map +1 -0
- package/dist/lib/css/property-descriptors/font-family.js +33 -0
- package/dist/lib/css/property-descriptors/font-family.js.map +1 -0
- package/dist/lib/css/property-descriptors/font-size.js +11 -0
- package/dist/lib/css/property-descriptors/font-size.js.map +1 -0
- package/dist/lib/css/property-descriptors/font-style.js +21 -0
- package/dist/lib/css/property-descriptors/font-style.js.map +1 -0
- package/dist/lib/css/property-descriptors/font-variant.js +14 -0
- package/dist/lib/css/property-descriptors/font-variant.js.map +1 -0
- package/dist/lib/css/property-descriptors/font-weight.js +26 -0
- package/dist/lib/css/property-descriptors/font-weight.js.map +1 -0
- package/dist/lib/css/property-descriptors/letter-spacing.js +22 -0
- package/dist/lib/css/property-descriptors/letter-spacing.js.map +1 -0
- package/dist/lib/css/property-descriptors/line-break.js +24 -0
- package/dist/lib/css/property-descriptors/line-break.js.map +1 -0
- package/dist/lib/css/property-descriptors/line-height.js +25 -0
- package/dist/lib/css/property-descriptors/line-height.js.map +1 -0
- package/dist/lib/css/property-descriptors/list-style-image.js +17 -0
- package/dist/lib/css/property-descriptors/list-style-image.js.map +1 -0
- package/dist/lib/css/property-descriptors/list-style-position.js +19 -0
- package/dist/lib/css/property-descriptors/list-style-position.js.map +1 -0
- package/dist/lib/css/property-descriptors/list-style-type.js +123 -0
- package/dist/lib/css/property-descriptors/list-style-type.js.map +1 -0
- package/dist/lib/css/property-descriptors/margin.js +14 -0
- package/dist/lib/css/property-descriptors/margin.js.map +1 -0
- package/dist/lib/css/property-descriptors/opacity.js +17 -0
- package/dist/lib/css/property-descriptors/opacity.js.map +1 -0
- package/dist/lib/css/property-descriptors/overflow-wrap.js +19 -0
- package/dist/lib/css/property-descriptors/overflow-wrap.js.map +1 -0
- package/dist/lib/css/property-descriptors/overflow.js +28 -0
- package/dist/lib/css/property-descriptors/overflow.js.map +1 -0
- package/dist/lib/css/property-descriptors/padding.js +15 -0
- package/dist/lib/css/property-descriptors/padding.js.map +1 -0
- package/dist/lib/css/property-descriptors/paint-order.js +34 -0
- package/dist/lib/css/property-descriptors/paint-order.js.map +1 -0
- package/dist/lib/css/property-descriptors/position.js +23 -0
- package/dist/lib/css/property-descriptors/position.js.map +1 -0
- package/dist/lib/css/property-descriptors/quotes.js +42 -0
- package/dist/lib/css/property-descriptors/quotes.js.map +1 -0
- package/dist/lib/css/property-descriptors/text-align.js +22 -0
- package/dist/lib/css/property-descriptors/text-align.js.map +1 -0
- package/dist/lib/css/property-descriptors/text-decoration-color.js +11 -0
- package/dist/lib/css/property-descriptors/text-decoration-color.js.map +1 -0
- package/dist/lib/css/property-descriptors/text-decoration-line.js +29 -0
- package/dist/lib/css/property-descriptors/text-decoration-line.js.map +1 -0
- package/dist/lib/css/property-descriptors/text-shadow.js +47 -0
- package/dist/lib/css/property-descriptors/text-shadow.js.map +1 -0
- package/dist/lib/css/property-descriptors/text-transform.js +21 -0
- package/dist/lib/css/property-descriptors/text-transform.js.map +1 -0
- package/dist/lib/css/property-descriptors/transform-origin.js +25 -0
- package/dist/lib/css/property-descriptors/transform-origin.js.map +1 -0
- package/dist/lib/css/property-descriptors/transform.js +37 -0
- package/dist/lib/css/property-descriptors/transform.js.map +1 -0
- package/dist/lib/css/property-descriptors/visibility.js +21 -0
- package/dist/lib/css/property-descriptors/visibility.js.map +1 -0
- package/dist/lib/css/property-descriptors/webkit-text-stroke-color.js +11 -0
- package/dist/lib/css/property-descriptors/webkit-text-stroke-color.js.map +1 -0
- package/dist/lib/css/property-descriptors/webkit-text-stroke-width.js +17 -0
- package/dist/lib/css/property-descriptors/webkit-text-stroke-width.js.map +1 -0
- package/dist/lib/css/property-descriptors/word-break.js +27 -0
- package/dist/lib/css/property-descriptors/word-break.js.map +1 -0
- package/dist/lib/css/property-descriptors/z-index.js +20 -0
- package/dist/lib/css/property-descriptors/z-index.js.map +1 -0
- package/dist/lib/css/syntax/__tests__/tokernizer-tests.js +34 -0
- package/dist/lib/css/syntax/__tests__/tokernizer-tests.js.map +1 -0
- package/dist/lib/css/syntax/parser.js +147 -0
- package/dist/lib/css/syntax/parser.js.map +1 -0
- package/dist/lib/css/syntax/tokenizer.js +630 -0
- package/dist/lib/css/syntax/tokenizer.js.map +1 -0
- package/dist/lib/css/types/__tests__/color-tests.js +66 -0
- package/dist/lib/css/types/__tests__/color-tests.js.map +1 -0
- package/dist/lib/css/types/__tests__/image-tests.js +233 -0
- package/dist/lib/css/types/__tests__/image-tests.js.map +1 -0
- package/dist/lib/css/types/angle.js +81 -0
- package/dist/lib/css/types/angle.js.map +1 -0
- package/dist/lib/css/types/color.js +311 -0
- package/dist/lib/css/types/color.js.map +1 -0
- package/dist/lib/css/types/functions/-prefix-linear-gradient.js +33 -0
- package/dist/lib/css/types/functions/-prefix-linear-gradient.js.map +1 -0
- package/dist/lib/css/types/functions/-prefix-radial-gradient.js +84 -0
- package/dist/lib/css/types/functions/-prefix-radial-gradient.js.map +1 -0
- package/dist/lib/css/types/functions/-webkit-gradient.js +60 -0
- package/dist/lib/css/types/functions/-webkit-gradient.js.map +1 -0
- package/dist/lib/css/types/functions/__tests__/radial-gradient.js +68 -0
- package/dist/lib/css/types/functions/__tests__/radial-gradient.js.map +1 -0
- package/dist/lib/css/types/functions/counter.js +374 -0
- package/dist/lib/css/types/functions/counter.js.map +1 -0
- package/dist/lib/css/types/functions/gradient.js +165 -0
- package/dist/lib/css/types/functions/gradient.js.map +1 -0
- package/dist/lib/css/types/functions/linear-gradient.js +28 -0
- package/dist/lib/css/types/functions/linear-gradient.js.map +1 -0
- package/dist/lib/css/types/functions/radial-gradient.js +91 -0
- package/dist/lib/css/types/functions/radial-gradient.js.map +1 -0
- package/dist/lib/css/types/image.js +53 -0
- package/dist/lib/css/types/image.js.map +1 -0
- package/dist/lib/css/types/index.js +3 -0
- package/dist/lib/css/types/index.js.map +1 -0
- package/dist/lib/css/types/length-percentage.js +52 -0
- package/dist/lib/css/types/length-percentage.js.map +1 -0
- package/dist/lib/css/types/length.js +8 -0
- package/dist/lib/css/types/length.js.map +1 -0
- package/dist/lib/css/types/time.js +18 -0
- package/dist/lib/css/types/time.js.map +1 -0
- package/dist/lib/dom/__mocks__/document-cloner.js +24 -0
- package/dist/lib/dom/__mocks__/document-cloner.js.map +1 -0
- package/dist/lib/dom/document-cloner.js +530 -0
- package/dist/lib/dom/document-cloner.js.map +1 -0
- package/dist/lib/dom/element-container.js +39 -0
- package/dist/lib/dom/element-container.js.map +1 -0
- package/dist/lib/dom/elements/li-element-container.js +30 -0
- package/dist/lib/dom/elements/li-element-container.js.map +1 -0
- package/dist/lib/dom/elements/ol-element-container.js +31 -0
- package/dist/lib/dom/elements/ol-element-container.js.map +1 -0
- package/dist/lib/dom/elements/select-element-container.js +31 -0
- package/dist/lib/dom/elements/select-element-container.js.map +1 -0
- package/dist/lib/dom/elements/textarea-element-container.js +30 -0
- package/dist/lib/dom/elements/textarea-element-container.js.map +1 -0
- package/dist/lib/dom/node-parser.js +306 -0
- package/dist/lib/dom/node-parser.js.map +1 -0
- package/dist/lib/dom/replaced-elements/canvas-element-container.js +32 -0
- package/dist/lib/dom/replaced-elements/canvas-element-container.js.map +1 -0
- package/dist/lib/dom/replaced-elements/iframe-element-container.js +54 -0
- package/dist/lib/dom/replaced-elements/iframe-element-container.js.map +1 -0
- package/dist/lib/dom/replaced-elements/image-element-container.js +33 -0
- package/dist/lib/dom/replaced-elements/image-element-container.js.map +1 -0
- package/dist/lib/dom/replaced-elements/index.js +3 -0
- package/dist/lib/dom/replaced-elements/index.js.map +1 -0
- package/dist/lib/dom/replaced-elements/input-element-container.js +102 -0
- package/dist/lib/dom/replaced-elements/input-element-container.js.map +1 -0
- package/dist/lib/dom/replaced-elements/pseudo-elements.js +1 -0
- package/dist/lib/dom/replaced-elements/pseudo-elements.js.map +1 -0
- package/dist/lib/dom/replaced-elements/svg-element-container.js +38 -0
- package/dist/lib/dom/replaced-elements/svg-element-container.js.map +1 -0
- package/dist/lib/dom/text-container.js +32 -0
- package/dist/lib/dom/text-container.js.map +1 -0
- package/dist/lib/index.js +274 -0
- package/dist/lib/index.js.map +1 -0
- package/dist/lib/invariant.js +10 -0
- package/dist/lib/invariant.js.map +1 -0
- package/dist/lib/render/background.js +187 -0
- package/dist/lib/render/background.js.map +1 -0
- package/dist/lib/render/bezier-curve.js +36 -0
- package/dist/lib/render/bezier-curve.js.map +1 -0
- package/dist/lib/render/border.js +105 -0
- package/dist/lib/render/border.js.map +1 -0
- package/dist/lib/render/bound-curves.js +190 -0
- package/dist/lib/render/bound-curves.js.map +1 -0
- package/dist/lib/render/box-sizing.js +21 -0
- package/dist/lib/render/box-sizing.js.map +1 -0
- package/dist/lib/render/canvas/foreignobject-renderer.js +108 -0
- package/dist/lib/render/canvas/foreignobject-renderer.js.map +1 -0
- package/dist/lib/render/canvas/pdf-renderer.js +1340 -0
- package/dist/lib/render/canvas/pdf-renderer.js.map +1 -0
- package/dist/lib/render/effects.js +41 -0
- package/dist/lib/render/effects.js.map +1 -0
- package/dist/lib/render/font-metrics.js +55 -0
- package/dist/lib/render/font-metrics.js.map +1 -0
- package/dist/lib/render/page-format-map.js +54 -0
- package/dist/lib/render/page-format-map.js.map +1 -0
- package/dist/lib/render/paginate copy 2.js +178 -0
- package/dist/lib/render/paginate copy 2.js.map +1 -0
- package/dist/lib/render/paginate.js +211 -0
- package/dist/lib/render/paginate.js.map +1 -0
- package/dist/lib/render/path.js +27 -0
- package/dist/lib/render/path.js.map +1 -0
- package/dist/lib/render/renderer.js +12 -0
- package/dist/lib/render/renderer.js.map +1 -0
- package/dist/lib/render/stacking-context.js +172 -0
- package/dist/lib/render/stacking-context.js.map +1 -0
- package/dist/lib/render/vector.js +18 -0
- package/dist/lib/render/vector.js.map +1 -0
- package/dist/lib/utils/css-utils.js +19 -0
- package/dist/lib/utils/css-utils.js.map +1 -0
- package/dist/lib/utils/element-utils.js +25 -0
- package/dist/lib/utils/element-utils.js.map +1 -0
- package/dist/lib/utils/font-utils.js +70 -0
- package/dist/lib/utils/font-utils.js.map +1 -0
- package/dist/lib/utils/index.js +22 -0
- package/dist/lib/utils/index.js.map +1 -0
- package/dist/lib/utils/type-utils.js +40 -0
- package/dist/lib/utils/type-utils.js.map +1 -0
- package/dist/lib/utils/url-path.js +22 -0
- package/dist/lib/utils/url-path.js.map +1 -0
- package/dist/render/canvas/pdf-renderer.d.ts +2 -2
- package/dist/render/paginate copy 2.d.ts +3 -0
- package/dist/render/paginate.d.ts +1 -1
- package/dist/types/__tests__/index.d.ts +1 -0
- package/dist/types/core/__mocks__/cache-storage.d.ts +2 -0
- package/dist/types/core/__mocks__/context.d.ts +9 -0
- package/dist/types/core/__mocks__/features.d.ts +8 -0
- package/dist/types/core/__mocks__/logger.d.ts +9 -0
- package/dist/types/core/__tests__/cache-storage.d.ts +1 -0
- package/dist/types/core/__tests__/logger.d.ts +1 -0
- package/dist/types/core/bitwise.d.ts +1 -0
- package/dist/types/core/cache-storage.d.ts +26 -0
- package/dist/types/core/context.d.ts +15 -0
- package/dist/types/core/debugger.d.ts +8 -0
- package/dist/types/core/features.d.ts +12 -0
- package/dist/types/core/logger.d.ts +18 -0
- package/dist/types/core/util.d.ts +1 -0
- package/dist/types/css/IPropertyDescriptor.d.ts +36 -0
- package/dist/types/css/ITypeDescriptor.d.ts +6 -0
- package/dist/types/css/index.d.ts +132 -0
- package/dist/types/css/layout/__mocks__/bounds.d.ts +2 -0
- package/dist/types/css/layout/bounds.d.ts +14 -0
- package/dist/types/css/layout/text.d.ts +10 -0
- package/dist/types/css/property-descriptors/__tests__/background-tests.d.ts +1 -0
- package/dist/types/css/property-descriptors/__tests__/font-family.d.ts +1 -0
- package/dist/types/css/property-descriptors/__tests__/paint-order.d.ts +1 -0
- package/dist/types/css/property-descriptors/__tests__/text-shadow.d.ts +1 -0
- package/dist/types/css/property-descriptors/__tests__/transform-tests.d.ts +1 -0
- package/dist/types/css/property-descriptors/background-clip.d.ts +8 -0
- package/dist/types/css/property-descriptors/background-color.d.ts +2 -0
- package/dist/types/css/property-descriptors/background-image.d.ts +3 -0
- package/dist/types/css/property-descriptors/background-origin.d.ts +8 -0
- package/dist/types/css/property-descriptors/background-position.d.ts +5 -0
- package/dist/types/css/property-descriptors/background-repeat.d.ts +9 -0
- package/dist/types/css/property-descriptors/background-size.d.ts +11 -0
- package/dist/types/css/property-descriptors/border-color.d.ts +5 -0
- package/dist/types/css/property-descriptors/border-radius.d.ts +7 -0
- package/dist/types/css/property-descriptors/border-style.d.ts +12 -0
- package/dist/types/css/property-descriptors/border-width.d.ts +5 -0
- package/dist/types/css/property-descriptors/box-shadow.d.ts +14 -0
- package/dist/types/css/property-descriptors/color.d.ts +2 -0
- package/dist/types/css/property-descriptors/content.d.ts +4 -0
- package/dist/types/css/property-descriptors/counter-increment.d.ts +7 -0
- package/dist/types/css/property-descriptors/counter-reset.d.ts +7 -0
- package/dist/types/css/property-descriptors/direction.d.ts +6 -0
- package/dist/types/css/property-descriptors/display.d.ts +35 -0
- package/dist/types/css/property-descriptors/duration.d.ts +2 -0
- package/dist/types/css/property-descriptors/float.d.ts +9 -0
- package/dist/types/css/property-descriptors/font-family.d.ts +4 -0
- package/dist/types/css/property-descriptors/font-size.d.ts +2 -0
- package/dist/types/css/property-descriptors/font-style.d.ts +7 -0
- package/dist/types/css/property-descriptors/font-variant.d.ts +2 -0
- package/dist/types/css/property-descriptors/font-weight.d.ts +2 -0
- package/dist/types/css/property-descriptors/letter-spacing.d.ts +2 -0
- package/dist/types/css/property-descriptors/line-break.d.ts +6 -0
- package/dist/types/css/property-descriptors/line-height.d.ts +4 -0
- package/dist/types/css/property-descriptors/list-style-image.d.ts +3 -0
- package/dist/types/css/property-descriptors/list-style-position.d.ts +6 -0
- package/dist/types/css/property-descriptors/list-style-type.d.ts +58 -0
- package/dist/types/css/property-descriptors/margin.d.ts +5 -0
- package/dist/types/css/property-descriptors/opacity.d.ts +2 -0
- package/dist/types/css/property-descriptors/overflow-wrap.d.ts +6 -0
- package/dist/types/css/property-descriptors/overflow.d.ts +9 -0
- package/dist/types/css/property-descriptors/padding.d.ts +5 -0
- package/dist/types/css/property-descriptors/paint-order.d.ts +8 -0
- package/dist/types/css/property-descriptors/position.d.ts +9 -0
- package/dist/types/css/property-descriptors/quotes.d.ts +8 -0
- package/dist/types/css/property-descriptors/text-align.d.ts +7 -0
- package/dist/types/css/property-descriptors/text-decoration-color.d.ts +2 -0
- package/dist/types/css/property-descriptors/text-decoration-line.d.ts +10 -0
- package/dist/types/css/property-descriptors/text-shadow.d.ts +12 -0
- package/dist/types/css/property-descriptors/text-transform.d.ts +8 -0
- package/dist/types/css/property-descriptors/transform-origin.d.ts +4 -0
- package/dist/types/css/property-descriptors/transform.d.ts +4 -0
- package/dist/types/css/property-descriptors/visibility.d.ts +7 -0
- package/dist/types/css/property-descriptors/webkit-text-stroke-color.d.ts +2 -0
- package/dist/types/css/property-descriptors/webkit-text-stroke-width.d.ts +2 -0
- package/dist/types/css/property-descriptors/word-break.d.ts +7 -0
- package/dist/types/css/property-descriptors/z-index.d.ts +7 -0
- package/dist/types/css/syntax/__tests__/tokernizer-tests.d.ts +1 -0
- package/dist/types/css/syntax/parser.d.ts +34 -0
- package/dist/types/css/syntax/tokenizer.d.ts +94 -0
- package/dist/types/css/types/__tests__/color-tests.d.ts +1 -0
- package/dist/types/css/types/__tests__/image-tests.d.ts +1 -0
- package/dist/types/css/types/angle.d.ts +7 -0
- package/dist/types/css/types/color.d.ts +11 -0
- package/dist/types/css/types/functions/-prefix-linear-gradient.d.ts +4 -0
- package/dist/types/css/types/functions/-prefix-radial-gradient.d.ts +4 -0
- package/dist/types/css/types/functions/-webkit-gradient.d.ts +4 -0
- package/dist/types/css/types/functions/__tests__/radial-gradient.d.ts +1 -0
- package/dist/types/css/types/functions/counter.d.ts +10 -0
- package/dist/types/css/types/functions/gradient.d.ts +7 -0
- package/dist/types/css/types/functions/linear-gradient.d.ts +4 -0
- package/dist/types/css/types/functions/radial-gradient.d.ts +12 -0
- package/dist/types/css/types/image.d.ts +54 -0
- package/dist/types/css/types/index.d.ts +1 -0
- package/dist/types/css/types/length-percentage.d.ts +11 -0
- package/dist/types/css/types/length.d.ts +4 -0
- package/dist/types/css/types/time.d.ts +2 -0
- package/dist/types/dom/__mocks__/document-cloner.d.ts +6 -0
- package/dist/types/dom/document-cloner.d.ts +45 -0
- package/dist/types/dom/element-container.d.ts +23 -0
- package/dist/types/dom/elements/li-element-container.d.ts +6 -0
- package/dist/types/dom/elements/ol-element-container.d.ts +7 -0
- package/dist/types/dom/elements/select-element-container.d.ts +6 -0
- package/dist/types/dom/elements/textarea-element-container.d.ts +6 -0
- package/dist/types/dom/node-parser.d.ts +23 -0
- package/dist/types/dom/replaced-elements/canvas-element-container.d.ts +8 -0
- package/dist/types/dom/replaced-elements/iframe-element-container.d.ts +11 -0
- package/dist/types/dom/replaced-elements/image-element-container.d.ts +8 -0
- package/dist/types/dom/replaced-elements/index.d.ts +4 -0
- package/dist/types/dom/replaced-elements/input-element-container.d.ts +12 -0
- package/dist/types/dom/replaced-elements/pseudo-elements.d.ts +0 -0
- package/dist/types/dom/replaced-elements/svg-element-container.d.ts +8 -0
- package/dist/types/dom/text-container.d.ts +8 -0
- package/dist/types/index.d.ts +17 -0
- package/dist/types/invariant.d.ts +1 -0
- package/dist/types/render/background.d.ts +16 -0
- package/dist/types/render/bezier-curve.d.ts +14 -0
- package/dist/types/render/border.d.ts +6 -0
- package/dist/types/render/bound-curves.d.ts +32 -0
- package/dist/types/render/box-sizing.d.ts +4 -0
- package/dist/types/render/canvas/foreignobject-renderer.d.ts +11 -0
- package/dist/types/render/canvas/pdf-renderer.d.ts +110 -0
- package/dist/types/render/effects.d.ts +38 -0
- package/dist/types/render/font-metrics.d.ts +11 -0
- package/dist/types/render/page-format-map.d.ts +4 -0
- package/dist/types/render/paginate copy 2.d.ts +3 -0
- package/dist/types/render/paginate.d.ts +3 -0
- package/dist/types/render/path.d.ts +13 -0
- package/dist/types/render/renderer.d.ts +7 -0
- package/dist/types/render/stacking-context.d.ts +24 -0
- package/dist/types/render/vector.d.ts +9 -0
- package/dist/types/utils/css-utils.d.ts +2 -0
- package/dist/types/utils/element-utils.d.ts +7 -0
- package/dist/types/utils/font-utils.d.ts +9 -0
- package/dist/types/utils/index.d.ts +5 -0
- package/dist/types/utils/type-utils.d.ts +4 -0
- package/dist/types/utils/url-path.d.ts +7 -0
- package/dist/utils/font-utils.d.ts +2 -0
- package/fontconverter/fontconverter.html +2 -2
- package/package.json +135 -135
- package/page_sizes.md +50 -0
- package/.vscode/settings.json +0 -5
- package/html2pdf-userscript.js +0 -936
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* dompdf.js 1.2.0 <https://dompdfjs.lisky.com.cn>
|
|
3
|
+
* Copyright (c) 2026 lfc <https://dompdfjs.lisky.com.cn/>
|
|
4
|
+
* Released under MIT License
|
|
5
|
+
*/
|
|
6
|
+
((A,t)=>{"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(A="undefined"!=typeof globalThis?globalThis:A||self).dompdf=t()})(this,function(){var N=function(A,t){return(N=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(A,t){A.__proto__=t}:function(A,t){for(var e in t)Object.prototype.hasOwnProperty.call(t,e)&&(A[e]=t[e])}))(A,t)};function _(A,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function e(){this.constructor=A}N(A,t),A.prototype=null===t?Object.create(t):(e.prototype=t.prototype,new e)}var T=function(){return(T=Object.assign||function(A){for(var t,e=1,r=arguments.length;e<r;e++)for(var n in t=arguments[e])Object.prototype.hasOwnProperty.call(t,n)&&(A[n]=t[n]);return A}).apply(this,arguments)};function D(A,s,o,a){return new(o=o||Promise)(function(e,t){function r(A){try{i(a.next(A))}catch(A){t(A)}}function n(A){try{i(a.throw(A))}catch(A){t(A)}}function i(A){var t;A.done?e(A.value):((t=A.value)instanceof o?t:new o(function(A){A(t)})).then(r,n)}i((a=a.apply(A,s||[])).next())})}function R(r,n){var i,s,o,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},c=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return c.next=A(0),c.throw=A(1),c.return=A(2),"function"==typeof Symbol&&(c[Symbol.iterator]=function(){return this}),c;function A(e){return function(A){var t=[e,A];if(i)throw new TypeError("Generator is already executing.");for(;a=c&&t[c=0]?0:a;)try{if(i=1,s&&(o=2&t[0]?s.return:t[0]?s.throw||((o=s.return)&&o.call(s),0):s.next)&&!(o=o.call(s,t[1])).done)return o;switch(s=0,(t=o?[2&t[0],o.value]:t)[0]){case 0:case 1:o=t;break;case 4:return a.label++,{value:t[1],done:!1};case 5:a.label++,s=t[1],t=[0];continue;case 7:t=a.ops.pop(),a.trys.pop();continue;default:if(!(o=0<(o=a.trys).length&&o[o.length-1])&&(6===t[0]||2===t[0])){a=0;continue}if(3===t[0]&&(!o||t[1]>o[0]&&t[1]<o[3]))a.label=t[1];else if(6===t[0]&&a.label<o[1])a.label=o[1],o=t;else{if(!(o&&a.label<o[2])){o[2]&&a.ops.pop(),a.trys.pop();continue}a.label=o[2],a.ops.push(t)}}t=n.call(r,a)}catch(A){t=[6,A],s=0}finally{i=o=0}if(5&t[0])throw t[1];return{value:t[0]?t[1]:void 0,done:!0}}}}function O(A,t,e){if(e||2===arguments.length)for(var r,n=0,i=t.length;n<i;n++)!r&&n in t||((r=r||Array.prototype.slice.call(t,0,n))[n]=t[n]);return A.concat(r||Array.prototype.slice.call(t))}for(var P=function(A){for(var t=[],e=0,r=A.length;e<r;){var n,i=A.charCodeAt(e++);55296<=i&&i<=56319&&e<r?56320==(64512&(n=A.charCodeAt(e++)))?t.push(((1023&i)<<10)+(1023&n)+65536):(t.push(i),e--):t.push(i)}return t},M=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,i="";++n<e;){var s=A[n];s<=65535?r.push(s):r.push(55296+((s-=65536)>>10),s%1024+56320),(n+1===e||16384<r.length)&&(i+=String.fromCharCode.apply(String,r),r.length=0)}return i},k="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",K="undefined"==typeof Uint8Array?[]:new Uint8Array(256),V=0;V<k.length;V++)K[k.charCodeAt(V)]=V;for(var G="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",j="undefined"==typeof Uint8Array?[]:new Uint8Array(256),X=0;X<G.length;X++)j[G.charCodeAt(X)]=X;function W(A,t,e){return A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e))}J.prototype.get=function(A){var t;if(0<=A){if(A<55296||56319<A&&A<=65535)return t=this.index[A>>5],this.data[t=(t<<2)+(31&A)];if(A<=65535)return t=this.index[2048+(A-55296>>5)],this.data[t=(t<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],t=this.index[t+=A>>5&63],this.data[t=(t<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue};var A=J;function J(A,t,e,r,n,i){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=i}for(var Y="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",q="undefined"==typeof Uint8Array?[]:new Uint8Array(256),z=0;z<Y.length;z++)q[Y.charCodeAt(z)]=z;var Z=50,$=2,AA=3,tA=4,eA=7,rA=8,nA=9,iA=10,sA=11,oA=12,aA=13,cA=14,lA=15,uA=16,hA=17,BA=18,gA=19,fA=20,dA=21,pA=22,wA=23,mA=24,CA=25,QA=26,yA=27,FA=28,UA=29,bA=30,vA=31,EA=32,xA=33,IA=34,HA=35,LA=36,SA=37,NA=38,_A=39,TA=40,DA=41,OA=42,PA=43,MA=[9001,65288],kA="!",B="×",KA="÷",RA=(n=(A=>{for(var t,e,r,n,i=.75*A.length,s=A.length,o=0,i=("="===A[A.length-1]&&(i--,"="===A[A.length-2])&&i--,new("undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?ArrayBuffer:Array)(i)),a=Array.isArray(i)?i:new Uint8Array(i),c=0;c<s;c+=4)t=j[A.charCodeAt(c)],e=j[A.charCodeAt(c+1)],r=j[A.charCodeAt(c+2)],n=j[A.charCodeAt(c+3)],a[o++]=t<<2|e>>4,a[o++]=(15&e)<<4|r>>2,a[o++]=(3&r)<<6|63&n;return i})(n="KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA=="),e=Array.isArray(n)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(n):new Uint32Array(n),n=Array.isArray(n)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(n):new Uint16Array(n),ms=W(n,12,e[4]/2),n=2===e[5]?W(n,(24+e[4])/2):(n=e,on=Math.ceil((24+e[4])/4),n.slice?n.slice(on,t):new Uint32Array(Array.prototype.slice.call(n,on,t))),new A(e[0],e[1],e[2],e[3],ms,n)),VA=[bA,LA],GA=[1,$,AA,5],XA=[iA,rA],WA=[yA,QA],JA=GA.concat(XA),YA=[NA,_A,TA,IA,HA],qA=[lA,aA],zA=function(A,r){void 0===r&&(r="strict");var n=[],i=[],s=[];return A.forEach(function(A,t){var e=RA.get(A);if(Z<e?(s.push(!0),e-=Z):s.push(!1),-1!==["normal","auto","loose"].indexOf(r)&&-1!==[8208,8211,12316,12448].indexOf(A))return i.push(t),n.push(uA);if(e!==tA&&e!==sA)return i.push(t),e===vA?n.push("strict"===r?dA:SA):e===OA||e===UA?n.push(bA):e===PA?n.push(131072<=A&&A<=196605||196608<=A&&A<=262141?SA:bA):void n.push(e);if(0!==t&&-1===JA.indexOf(A=n[t-1]))return i.push(i[t-1]),n.push(A);return i.push(t),n.push(bA)}),[i,n,s]},ZA=function(A,t,e,r){var n=r[e];if(Array.isArray(A)?-1!==A.indexOf(n):A===n)for(var i=e;i<=r.length;){if((o=r[++i])===t)return!0;if(o!==iA)break}if(n===iA)for(i=e;0<i;){var s=r[--i];if(Array.isArray(A)?-1!==A.indexOf(s):A===s)for(var o,a=e;a<=r.length;){if((o=r[++a])===t)return!0;if(o!==iA)break}if(s!==iA)break}return!1},$A=function(A,t){for(var e=A;0<=e;){var r=t[e];if(r!==iA)return r;e--}return 0},At=function(A,t,e,r,n){if(0===e[r])return B;r-=1;if(Array.isArray(n)&&!0===n[r])return B;var n=r-1,i=1+r,s=t[r],o=0<=n?t[n]:0,a=t[i];if(s===$&&a===AA)return B;if(-1!==GA.indexOf(s))return kA;if(-1!==GA.indexOf(a))return B;if(-1!==XA.indexOf(a))return B;if($A(r,t)===rA)return KA;if(RA.get(A[r])===sA)return B;if((s===EA||s===xA)&&RA.get(A[i])===sA)return B;if(s===eA||a===eA)return B;if(s===nA)return B;if(-1===[iA,aA,lA].indexOf(s)&&a===nA)return B;
|
|
7
|
+
// LB13 Do not break before ‘]’ or ‘!’ or ‘;’ or ‘/’, even after spaces.
|
|
8
|
+
if(-1!==[hA,BA,gA,mA,FA].indexOf(a))return B;if($A(r,t)===pA)return B;if(ZA(wA,pA,r,t))return B;if(ZA([hA,BA],dA,r,t))return B;if(ZA(oA,oA,r,t))return B;if(s===iA)return KA;if(s===wA||a===wA)return B;if(a===uA||s===uA)return KA;if(-1!==[aA,lA,dA].indexOf(a)||s===cA)return B;if(o===LA&&-1!==qA.indexOf(s))return B;if(s===FA&&a===LA)return B;if(a===fA)return B;if(-1!==VA.indexOf(a)&&s===CA||-1!==VA.indexOf(s)&&a===CA)return B;if(s===yA&&-1!==[SA,EA,xA].indexOf(a)||-1!==[SA,EA,xA].indexOf(s)&&a===QA)return B;if(-1!==VA.indexOf(s)&&-1!==WA.indexOf(a)||-1!==WA.indexOf(s)&&-1!==VA.indexOf(a))return B;if(-1!==[yA,QA].indexOf(s)&&(a===CA||-1!==[pA,lA].indexOf(a)&&t[1+i]===CA)||-1!==[pA,lA].indexOf(s)&&a===CA||s===CA&&-1!==[CA,FA,mA].indexOf(a))return B;if(-1!==[CA,FA,mA,hA,BA].indexOf(a))for(var c=r;0<=c;){if((l=t[c])===CA)return B;if(-1===[FA,mA].indexOf(l))break;c--}if(-1!==[yA,QA].indexOf(a))for(var l,c=-1!==[hA,BA].indexOf(s)?n:r;0<=c;){if((l=t[c])===CA)return B;if(-1===[FA,mA].indexOf(l))break;c--}if(NA===s&&-1!==[NA,_A,IA,HA].indexOf(a)||-1!==[_A,IA].indexOf(s)&&-1!==[_A,TA].indexOf(a)||-1!==[TA,HA].indexOf(s)&&a===TA)return B;if(-1!==YA.indexOf(s)&&-1!==[fA,QA].indexOf(a)||-1!==YA.indexOf(a)&&s===yA)return B;if(-1!==VA.indexOf(s)&&-1!==VA.indexOf(a))return B;if(s===mA&&-1!==VA.indexOf(a))return B;if(-1!==VA.concat(CA).indexOf(s)&&a===pA&&-1===MA.indexOf(A[i])||-1!==VA.concat(CA).indexOf(a)&&s===BA)return B;if(s===DA&&a===DA){for(var u=e[r],h=1;0<u&&t[--u]===DA;)h++;if(h%2!=0)return B}return s===EA&&a===xA?B:KA},tt=function(e,A){var t=zA(e,(A=A||{lineBreak:"normal",wordBreak:"normal"}).lineBreak),r=t[0],n=t[1],t=t[2],A=("break-all"!==A.wordBreak&&"break-word"!==A.wordBreak||(n=n.map(function(A){return-1!==[CA,bA,OA].indexOf(A)?SA:A})),"keep-all"===A.wordBreak?t.map(function(A,t){return A&&19968<=e[t]&&e[t]<=40959}):void 0);return[r,n,A]},et=(rt.prototype.slice=function(){return M.apply(void 0,this.codePoints.slice(this.start,this.end))},rt);function rt(A,t,e,r){this.codePoints=A,this.required=t===kA,this.start=e,this.end=r}function nt(A){return 0===A[0]&&255===A[1]&&0===A[2]&&255===A[3]}function it(A,t,e,r,n){var i="http://www.w3.org/2000/svg",s=document.createElementNS(i,"svg"),i=document.createElementNS(i,"foreignObject");return s.setAttributeNS(null,"width",A.toString()),s.setAttributeNS(null,"height",t.toString()),i.setAttributeNS(null,"width","100%"),i.setAttributeNS(null,"height","100%"),i.setAttributeNS(null,"x",e.toString()),i.setAttributeNS(null,"y",r.toString()),i.setAttributeNS(null,"externalResourcesRequired","true"),s.appendChild(i),i.appendChild(n),s}function st(r){return new Promise(function(A,t){var e=new Image;e.onload=function(){return A(e)},e.onerror=t,e.src="data:image/svg+xml;charset=utf-8,".concat(encodeURIComponent((new XMLSerializer).serializeToString(r)))})}var ot=function(A,t){var e=P(A),A=tt(e,t),r=A[0],n=A[1],i=A[2],s=e.length,o=0,a=0;return{next:function(){if(s<=a)return{done:!0,value:null};for(var A,t=B;a<s&&(t=At(e,n,r,++a,i))===B;);return t!==B||a===s?(A=new et(e,t,o,a),o=a,{value:A,done:!1}):{done:!0,value:null}}}},at={get SUPPORT_RANGE_BOUNDS(){var A=(A=>{if(A.createRange){var t=A.createRange();if(t.getBoundingClientRect){var e=A.createElement("boundtest"),t=(e.style.height="".concat(123,"px"),e.style.display="block",A.body.appendChild(e),t.selectNode(e),t.getBoundingClientRect()),t=Math.round(t.height);if(A.body.removeChild(e),123===t)return!0}}return!1})(document);return Object.defineProperty(at,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){var A,r,n,t,i,s,e=at.SUPPORT_RANGE_BOUNDS&&(e=document,(A=e.createElement("boundtest")).style.width="50px",A.style.display="block",A.style.fontSize="12px",A.style.letterSpacing="0px",A.style.wordSpacing="0px",e.body.appendChild(A),r=e.createRange(),A.innerHTML="function"==typeof"".repeat?"👨".repeat(10):"",n=A.firstChild,t=P(n.data).map(function(A){return M(A)}),i=0,s={},t=t.every(function(A,t){r.setStart(n,i),r.setEnd(n,i+A.length);var e=r.getBoundingClientRect(),A=(i+=A.length,e.x>s.x||e.y>s.y);return s=e,0===t||A}),e.body.removeChild(A),t);return Object.defineProperty(at,"SUPPORT_WORD_BREAKING",{value:e}),e},get SUPPORT_SVG_DRAWING(){var A=(A=>{var t=new Image,e=(A=A.createElement("canvas")).getContext("2d");if(!e)return!1;t.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{e.drawImage(t,0,0),A.toDataURL()}catch(A){return!1}return!0})(document);return Object.defineProperty(at,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){var A="function"==typeof Array.from&&"function"==typeof window.fetch?(e=>{(t=e.createElement("canvas")).width=100,t.height=100;var r=t.getContext("2d");if(!r)return Promise.reject(!1);r.fillStyle="rgb(0, 255, 0)",r.fillRect(0,0,100,100);var A=new Image,n=t.toDataURL(),t=(A.src=n,it(100,100,0,0,A));return r.fillStyle="red",r.fillRect(0,0,100,100),st(t).then(function(A){r.drawImage(A,0,0);var A=r.getImageData(0,0,100,100).data,t=(r.fillStyle="red",r.fillRect(0,0,100,100),e.createElement("div"));return t.style.backgroundImage="url(".concat(n,")"),t.style.height="".concat(100,"px"),nt(A)?st(it(100,100,0,0,t)):Promise.reject(!1)}).then(function(A){return r.drawImage(A,0,0),nt(r.getImageData(0,0,100,100).data)}).catch(function(){return!1})})(document):Promise.resolve(!1);return Object.defineProperty(at,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){var A=void 0!==(new Image).crossOrigin;return Object.defineProperty(at,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){var A="string"==typeof(new XMLHttpRequest).responseType;return Object.defineProperty(at,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){var A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(at,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var A=!("undefined"==typeof Intl||!Intl.Segmenter);return Object.defineProperty(at,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}},ct=(lt.getOrigin=function(A){var t=lt._link;return t?(t.href=A,t.href=t.href,t.protocol+t.hostname+t.port):"about:blank"},lt.isSameOrigin=function(A){return lt.getOrigin(A)===lt._origin},lt.setContext=function(A){lt._link=A.document.createElement("a"),lt._origin=lt.getOrigin(A.location.href)},lt._origin="about:blank",lt);function lt(){}ht.prototype.addImage=function(A){var t=Promise.resolve();return this.has(A)||(mt(A)||dt(A))&&(this._cache[A]=this.loadImage(A)).catch(function(){}),t},ht.prototype.match=function(A){return this._cache[A]},ht.prototype.loadImage=function(s){return D(this,void 0,void 0,function(){var t,r,e,n,i=this;return R(this,function(A){switch(A.label){case 0:return(t=ct.isSameOrigin(s),r=!pt(s)&&!0===this._options.useCORS&&at.SUPPORT_CORS_IMAGES&&!t,e=!pt(s)&&!t&&!mt(s)&&"string"==typeof this._options.proxy&&at.SUPPORT_CORS_XHR&&!r,t||!1!==this._options.allowTaint||pt(s)||mt(s)||e||r)?(n=s,e?[4,this.proxy(n)]:[3,2]):[2];case 1:n=A.sent(),A.label=2;case 2:return this.context.logger.debug("Added image ".concat(s.substring(0,256))),[4,new Promise(function(A,t){var e=new Image;e.onload=function(){return A(e)},e.onerror=t,(wt(n)||r)&&(e.crossOrigin="anonymous"),e.src=n,!0===e.complete&&setTimeout(function(){return A(e)},500),0<i._options.imageTimeout&&setTimeout(function(){return t("Timed out (".concat(i._options.imageTimeout,"ms) loading image"))},i._options.imageTimeout)})];case 3:return[2,A.sent()]}})})},ht.prototype.has=function(A){return void 0!==this._cache[A]},ht.prototype.keys=function(){return Promise.resolve(Object.keys(this._cache))},ht.prototype.proxy=function(s){var o,a=this,c=this._options.proxy;if(c)return o=s.substring(0,256),new Promise(function(t,e){var A,r=at.SUPPORT_RESPONSE_TYPE?"blob":"text",n=new XMLHttpRequest,i=(n.onload=function(){var A;200===n.status?"text"==r?t(n.response):((A=new FileReader).addEventListener("load",function(){return t(A.result)},!1),A.addEventListener("error",function(A){return e(A)},!1),A.readAsDataURL(n.response)):e("Failed to proxy resource ".concat(o," with status code ").concat(n.status))},n.onerror=e,-1<c.indexOf("?")?"&":"?");n.open("GET","".concat(c).concat(i,"url=").concat(encodeURIComponent(s),"&responseType=").concat(r)),"text"!=r&&n instanceof XMLHttpRequest&&(n.responseType=r),a._options.imageTimeout&&(A=a._options.imageTimeout,n.timeout=A,n.ontimeout=function(){return e("Timed out (".concat(A,"ms) proxying ").concat(o))}),n.send()});throw new Error("No proxy defined")};var ut=ht;function ht(A,t){this.context=A,this._options=t,this._cache={}}var Bt=/^data:image\/svg\+xml/i,gt=/^data:image\/.*;base64,/i,ft=/^data:image\/.*/i,dt=function(A){return at.SUPPORT_SVG_DRAWING||!Ct(A)},pt=function(A){return ft.test(A)},wt=function(A){return gt.test(A)},mt=function(A){return"blob"===A.substr(0,4)},Ct=function(A){return"svg"===A.substr(-3).toLowerCase()||Bt.test(A)},Qt=(yt.prototype.debug=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.debug?console.debug.apply(console,O([this.id,"".concat(this.getTime(),"ms")],A,!1)):this.info.apply(this,A))},yt.prototype.getTime=function(){return Date.now()-this.start},yt.prototype.info=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&"undefined"!=typeof window&&window.console&&"function"==typeof console.info&&console.info.apply(console,O([this.id,"".concat(this.getTime(),"ms")],A,!1))},yt.prototype.warn=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.warn?console.warn.apply(console,O([this.id,"".concat(this.getTime(),"ms")],A,!1)):this.info.apply(this,A))},yt.prototype.error=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.error?console.error.apply(console,O([this.id,"".concat(this.getTime(),"ms")],A,!1)):this.info.apply(this,A))},yt.instances={},yt);function yt(A){var t=A.id,A=A.enabled;this.id=t,this.enabled=A,this.start=Date.now()}Ut.instanceCount=1;var Ft=Ut;function Ut(A,t){this.windowBounds=t,this.instanceName="#".concat(Ut.instanceCount++),this.logger=new Qt({id:this.instanceName,enabled:A.logging}),this.cache=null!=(t=A.cache)?t:new ut(this,A)}vt.prototype.add=function(A,t,e,r){return new vt(this.left+A,this.top+t,this.width+e,this.height+r)},vt.fromClientRect=function(A,t){return new vt(t.left+A.windowBounds.left,t.top+A.windowBounds.top,t.width,t.height)},vt.fromDOMRectList=function(A,t){t=Array.from(t).find(function(A){return 0!==A.width});return t?new vt(t.left+A.windowBounds.left,t.top+A.windowBounds.top,t.width,t.height):vt.EMPTY},vt.EMPTY=new vt(0,0,0,0);var bt=vt;function vt(A,t,e,r){this.left=A,this.top=t,this.width=e,this.height=r}function Et(A){return Mt<=A&&A<=57}function xt(A){return Et(A)||Rt<=A&&A<=70||kt<=A&&A<=102}function It(A){return 10===A||9===A||32===A}function Ht(A){return Xt(A)||Wt(A)||A===Ot}function Lt(A){return Ht(A)||Et(A)||45===A}function St(A,t){return 92===A&&10!==t}function Nt(A,t,e){return 45===A?Ht(t)||St(t,e):!!Ht(A)||92===A&&10!==t}function _t(A,t,e){return 43===A||45===A?!!Et(t)||46===t&&Et(e):Et(46===A?t:A)}var Tt=function(A,t){return bt.fromClientRect(A,t.getBoundingClientRect())},Dt=function(A){var t,e=A.body,A=A.documentElement;if(e&&A)return t=Math.max(Math.max(e.scrollWidth,A.scrollWidth),Math.max(e.offsetWidth,A.offsetWidth),Math.max(e.clientWidth,A.clientWidth)),e=Math.max(Math.max(e.scrollHeight,A.scrollHeight),Math.max(e.offsetHeight,A.offsetHeight),Math.max(e.clientHeight,A.clientHeight)),new bt(0,0,t,e);throw new Error("Unable to get document size")},Ot=95,Pt=128,Mt=48,kt=97,Kt=122,Rt=65,Vt=90,Gt=function(A){return kt<=A&&A<=Kt},jt=function(A){return Rt<=A&&A<=Vt},Xt=function(A){return Gt(A)||jt(A)},Wt=function(A){return Pt<=A},Jt={type:2},Yt={type:3},qt={type:4},zt={type:13},Zt={type:8},$t={type:21},Ae={type:9},te={type:10},ee={type:11},re={type:12},ne={type:14},ie={type:23},se={type:1},oe={type:25},ae={type:24},ce={type:26},he={type:27},Be={type:28},ge={type:29},fe={type:31},de={type:32},pe=(we.prototype.write=function(A){this._value=this._value.concat(P(A))},we.prototype.read=function(){for(var A=[],t=this.consumeToken();t!==de;)A.push(t),t=this.consumeToken();return A},we.prototype.consumeToken=function(){var A=this.consumeCodePoint();switch(A){case 34:return this.consumeStringToken(34);case 35:var t=this.peekCodePoint(0),e=this.peekCodePoint(1),r=this.peekCodePoint(2);if(Lt(t)||St(e,r))return t=Nt(t,e,r)?2:1,{type:5,value:this.consumeName(),flags:t};break;case 36:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),zt;break;case 39:return this.consumeStringToken(39);case 40:return Jt;case 41:return Yt;case 42:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),ne;break;case 43:if(_t(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 44:return qt;case 45:e=A,r=this.peekCodePoint(0),t=this.peekCodePoint(1);if(_t(e,r,t))return this.reconsumeCodePoint(A),this.consumeNumericToken();if(Nt(e,r,t))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();if(45===r&&62===t)return this.consumeCodePoint(),this.consumeCodePoint(),ae;break;case 46:if(_t(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 47:if(42===this.peekCodePoint(0))for(this.consumeCodePoint();;){var n=this.consumeCodePoint();if(42===n&&47===(n=this.consumeCodePoint()))return this.consumeToken();if(-1===n)return this.consumeToken()}break;case 58:return ce;case 59:return he;case 60:if(33===this.peekCodePoint(0)&&45===this.peekCodePoint(1)&&45===this.peekCodePoint(2))return this.consumeCodePoint(),this.consumeCodePoint(),oe;break;case 64:e=this.peekCodePoint(0),r=this.peekCodePoint(1),t=this.peekCodePoint(2);if(Nt(e,r,t))return{type:7,value:this.consumeName()};break;case 91:return Be;case 92:if(St(A,this.peekCodePoint(0)))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();break;case 93:return ge;case 61:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),Zt;break;case 123:return ee;case 125:return re;case 117:case 85:e=this.peekCodePoint(0),r=this.peekCodePoint(1);return 43!==e||!xt(r)&&63!==r||(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(A),this.consumeIdentLikeToken();case 124:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),Ae;if(124===this.peekCodePoint(0))return this.consumeCodePoint(),$t;break;case 126:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),te;break;case-1:return de}return It(A)?(this.consumeWhiteSpace(),fe):Et(A)?(this.reconsumeCodePoint(A),this.consumeNumericToken()):Ht(A)?(this.reconsumeCodePoint(A),this.consumeIdentLikeToken()):{type:6,value:M(A)}},we.prototype.consumeCodePoint=function(){var A=this._value.shift();return void 0===A?-1:A},we.prototype.reconsumeCodePoint=function(A){this._value.unshift(A)},we.prototype.peekCodePoint=function(A){return A>=this._value.length?-1:this._value[A]},we.prototype.consumeUnicodeRangeToken=function(){for(var A=[],t=this.consumeCodePoint();xt(t)&&A.length<6;)A.push(t),t=this.consumeCodePoint();for(var e=!1;63===t&&A.length<6;)A.push(t),t=this.consumeCodePoint(),e=!0;if(e)return{type:30,start:parseInt(M.apply(void 0,A.map(function(A){return 63===A?Mt:A})),16),end:parseInt(M.apply(void 0,A.map(function(A){return 63===A?70:A})),16)};var r=parseInt(M.apply(void 0,A),16);if(45===this.peekCodePoint(0)&&xt(this.peekCodePoint(1))){this.consumeCodePoint();for(var t=this.consumeCodePoint(),n=[];xt(t)&&n.length<6;)n.push(t),t=this.consumeCodePoint();return{type:30,start:r,end:parseInt(M.apply(void 0,n),16)}}return{type:30,start:r,end:r}},we.prototype.consumeIdentLikeToken=function(){var A=this.consumeName();return"url"===A.toLowerCase()&&40===this.peekCodePoint(0)?(this.consumeCodePoint(),this.consumeUrlToken()):40===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:19,value:A}):{type:20,value:A}},we.prototype.consumeUrlToken=function(){var A=[];if(this.consumeWhiteSpace(),-1===this.peekCodePoint(0))return{type:22,value:""};var t,e=this.peekCodePoint(0);if(39===e||34===e)return 0===(e=this.consumeStringToken(this.consumeCodePoint())).type&&(this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0))?(this.consumeCodePoint(),{type:22,value:e.value}):(this.consumeBadUrlRemnants(),ie);for(;;){var r=this.consumeCodePoint();if(-1===r||41===r)return{type:22,value:M.apply(void 0,A)};if(It(r))return this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:22,value:M.apply(void 0,A)}):(this.consumeBadUrlRemnants(),ie);if(34===r||39===r||40===r||0<=(t=r)&&t<=8||11===t||14<=t&&t<=31||127===t)return this.consumeBadUrlRemnants(),ie;if(92===r){if(!St(r,this.peekCodePoint(0)))return this.consumeBadUrlRemnants(),ie;A.push(this.consumeEscapedCodePoint())}else A.push(r)}},we.prototype.consumeWhiteSpace=function(){for(;It(this.peekCodePoint(0));)this.consumeCodePoint()},we.prototype.consumeBadUrlRemnants=function(){for(;;){var A=this.consumeCodePoint();if(41===A||-1===A)return;St(A,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}},we.prototype.consumeStringSlice=function(A){for(var t="";0<A;){var e=Math.min(5e4,A);t+=M.apply(void 0,this._value.splice(0,e)),A-=e}return this._value.shift(),t},we.prototype.consumeStringToken=function(A){for(var t="",e=0;;){var r,n=this._value[e];if(-1===n||void 0===n||n===A)return{type:0,value:t+=this.consumeStringSlice(e)};if(10===n)return this._value.splice(0,e),se;92===n&&-1!==(r=this._value[e+1])&&void 0!==r&&(10===r?(t+=this.consumeStringSlice(e),e=-1,this._value.shift()):St(n,r)&&(t=(t+=this.consumeStringSlice(e))+M(this.consumeEscapedCodePoint()),e=-1)),e++}},we.prototype.consumeNumber=function(){var A=[],t=4;for(43!==(e=this.peekCodePoint(0))&&45!==e||A.push(this.consumeCodePoint());Et(this.peekCodePoint(0));)A.push(this.consumeCodePoint());var e=this.peekCodePoint(0),r=this.peekCodePoint(1);if(46===e&&Et(r))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;Et(this.peekCodePoint(0));)A.push(this.consumeCodePoint());e=this.peekCodePoint(0);var r=this.peekCodePoint(1),n=this.peekCodePoint(2);if((69===e||101===e)&&((43===r||45===r)&&Et(n)||Et(r)))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;Et(this.peekCodePoint(0));)A.push(this.consumeCodePoint());return[(A=>{for(var t=0,e=1,r=(43!==A[t]&&45!==A[t]||(45===A[t]&&(e=-1),t++),[]);Et(A[t]);)r.push(A[t++]);for(var n=r.length?parseInt(M.apply(void 0,r),10):0,i=(46===A[t]&&t++,[]);Et(A[t]);)i.push(A[t++]);for(var s=i.length,o=s?parseInt(M.apply(void 0,i),10):0,a=(69!==A[t]&&101!==A[t]||t++,1),c=(43!==A[t]&&45!==A[t]||(45===A[t]&&(a=-1),t++),[]);Et(A[t]);)c.push(A[t++]);var l=c.length?parseInt(M.apply(void 0,c),10):0;return e*(n+o*Math.pow(10,-s))*Math.pow(10,a*l)})(A),t]},we.prototype.consumeNumericToken=function(){var A=this.consumeNumber(),t=A[0],A=A[1],e=this.peekCodePoint(0),r=this.peekCodePoint(1),n=this.peekCodePoint(2);return Nt(e,r,n)?{type:15,number:t,flags:A,unit:this.consumeName()}:37===e?(this.consumeCodePoint(),{type:16,number:t,flags:A}):{type:17,number:t,flags:A}},we.prototype.consumeEscapedCodePoint=function(){var A,t=this.consumeCodePoint();if(xt(t)){for(var e=M(t);xt(this.peekCodePoint(0))&&e.length<6;)e+=M(this.consumeCodePoint());It(this.peekCodePoint(0))&&this.consumeCodePoint();var r=parseInt(e,16);return 0===r||55296<=(A=r)&&A<=57343||1114111<r?65533:r}return-1===t?65533:t},we.prototype.consumeName=function(){for(var A="";;){var t=this.consumeCodePoint();if(Lt(t))A+=M(t);else{if(!St(t,this.peekCodePoint(0)))return this.reconsumeCodePoint(t),A;A+=M(this.consumeEscapedCodePoint())}}},we);function we(){this._value=[]}Ce.create=function(A){var t=new pe;return t.write(A),new Ce(t.read())},Ce.parseValue=function(A){return Ce.create(A).parseComponentValue()},Ce.parseValues=function(A){return Ce.create(A).parseComponentValues()},Ce.prototype.parseComponentValue=function(){for(var A=this.consumeToken();31===A.type;)A=this.consumeToken();if(32===A.type)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(A);for(var t=this.consumeComponentValue();31===(A=this.consumeToken()).type;);if(32===A.type)return t;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")},Ce.prototype.parseComponentValues=function(){for(var A=[];;){var t=this.consumeComponentValue();if(32===t.type)return A;A.push(t),A.push()}},Ce.prototype.consumeComponentValue=function(){var A=this.consumeToken();switch(A.type){case 11:case 28:case 2:return this.consumeSimpleBlock(A.type);case 19:return this.consumeFunction(A)}return A},Ce.prototype.consumeSimpleBlock=function(A){for(var t={type:A,values:[]},e=this.consumeToken();;){if(32===e.type||Te(e,A))return t;this.reconsumeToken(e),t.values.push(this.consumeComponentValue()),e=this.consumeToken()}},Ce.prototype.consumeFunction=function(A){for(var t={name:A.value,values:[],type:18};;){var e=this.consumeToken();if(32===e.type||3===e.type)return t;this.reconsumeToken(e),t.values.push(this.consumeComponentValue())}},Ce.prototype.consumeToken=function(){var A=this._tokens.shift();return void 0===A?de:A},Ce.prototype.reconsumeToken=function(A){this._tokens.unshift(A)};var me=Ce;function Ce(A){this._tokens=A}function Qe(A){return 17===A.type}function ye(A){return 0===A.type}function Fe(A,t){return _e(A)&&A.value===t}function Ue(A){return 31!==A.type}function be(A){return 31!==A.type&&4!==A.type}function ve(A){var t=[],e=[];return A.forEach(function(A){if(4===A.type){if(0===e.length)throw new Error("Error parsing function args, zero tokens for arg");t.push(e),e=[]}else 31!==A.type&&e.push(A)}),e.length&&t.push(e),t}function Ee(A){return 1<A.length?[A[0],A[1]]:[A[0]]}function xe(A){return 15===A.type&&(A.unit===Ve||A.unit===Ge||A.unit===je||A.unit===Xe)}function Ie(A){switch(A.filter(_e).map(function(A){return A.value}).join(" ")){case"to bottom right":case"to right bottom":case"left top":case"top left":return[Pe,Pe];case"to top":case"bottom":return Je(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[Pe,ke];case"to right":case"left":return Je(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[ke,ke];case"to bottom":case"top":return Je(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[ke,Pe];case"to left":case"right":return Je(270)}return 0}function He(A){var t=255&A,e=255&A>>8,r=255&A>>16,A=255&A>>24;return t<255?"rgba(".concat(A,",").concat(r,",").concat(e,",").concat(t/255,")"):"rgb(".concat(A,",").concat(r,",").concat(e,")")}function Le(A,t){var e;return 17===A.type?A.number:16===A.type?(e=3===t?1:255,3===t?A.number/100*e:Math.round(A.number/100*e)):0}function Se(A,t){var e,r;return 3===(t=t.filter(be)).length?(r=(e=t.map(Le))[0],ze(r,e[1],e[2],1)):4===t.length?(r=(e=t.map(Le))[0],ze(r,e[1],e[2],e[3])):0}var Ne=function(A){return 15===A.type},_e=function(A){return 20===A.type},Te=function(A,t){return 11===t&&12===A.type||28===t&&29===A.type||2===t&&3===A.type},De=function(A){return 17===A.type||15===A.type},Oe=function(A){return 16===A.type||De(A)},Pe={type:17,number:0,flags:4},Me={type:16,number:50,flags:4},ke={type:16,number:100,flags:4},Ke=function(A,t,e){var r=A[0],A=A[1];return[Re(r,t),Re(void 0!==A?A:r,e)]},Re=function(A,t){if(16===A.type)return A.number/100*t;if(Ne(A))switch(A.unit){case"rem":case"em":return 16*A.number;default:return A.number}return A.number},Ve="deg",Ge="grad",je="rad",Xe="turn",We=function(A,t){if(15===t.type)switch(t.unit){case Ve:return Math.PI*t.number/180;case Ge:return Math.PI/200*t.number;case je:return t.number;case Xe:return 2*Math.PI*t.number}throw new Error("Unsupported angle type")},Je=function(A){return Math.PI*A/180},Ye={name:"color",parse:function(A,t){if(18===t.type){var e=Ar[t.name];if(void 0===e)throw new Error('Attempting to parse an unsupported color function "'.concat(t.name,'"'));return e(A,t.values)}if(5===t.type){var r,n,i,s;if(3===t.value.length)return r=t.value.substring(0,1),n=t.value.substring(1,2),i=t.value.substring(2,3),ze(parseInt(r+r,16),parseInt(n+n,16),parseInt(i+i,16),1);if(4===t.value.length)return r=t.value.substring(0,1),n=t.value.substring(1,2),i=t.value.substring(2,3),s=t.value.substring(3,4),ze(parseInt(r+r,16),parseInt(n+n,16),parseInt(i+i,16),parseInt(s+s,16)/255);if(6===t.value.length)return r=t.value.substring(0,2),n=t.value.substring(2,4),i=t.value.substring(4,6),ze(parseInt(r,16),parseInt(n,16),parseInt(i,16),1);if(8===t.value.length)return r=t.value.substring(0,2),n=t.value.substring(2,4),i=t.value.substring(4,6),s=t.value.substring(6,8),ze(parseInt(r,16),parseInt(n,16),parseInt(i,16),parseInt(s,16)/255)}if(20===t.type){e=er[t.value.toUpperCase()];if(void 0!==e)return e}return er.TRANSPARENT}},qe=function(A){return 0==(255&A)},ze=function(A,t,e,r){return(A<<24|t<<16|e<<8|Math.round(255*r)<<0)>>>0};function Ze(A,t,e){return e<0&&(e+=1),1<=e&&--e,e<1/6?(t-A)*e*6+A:e<.5?t:e<2/3?6*(t-A)*(2/3-e)+A:A}function $e(A,t){var e,r=(t=t.filter(be))[0],n=t[1],i=t[2],t=t[3],A=(17===r.type?Je(r.number):We(A,r))/(2*Math.PI),r=Oe(n)?n.number/100:0,n=Oe(i)?i.number/100:0,i=void 0!==t&&Oe(t)?Re(t,1):1;return 0==r?ze(255*n,255*n,255*n,1):(r=Ze(n=2*n-(t=n<=.5?n*(1+r):n+r-n*r),t,A+1/3),e=Ze(n,t,A),n=Ze(n,t,A-1/3),ze(255*r,255*e,255*n,i))}var Ar={hsl:$e,hsla:$e,rgb:Se,rgba:Se},tr=function(A,t){return Ye.parse(A,me.create(t).parseComponentValue())},er={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},rr=new Map,nr=new Map,ir=new Map,sr=new Map,or=new Map,ar=new WeakMap,cr=new Set;function lr(A,t,e=!1){var r,n,i,s=[],o=(A=>{if(sr.has(A))return sr.get(A);if(new Set(["script","style","meta","link","noscript","template"]).has(A))return sr.set(A,r={}),r;let t=document.getElementById("snapdom-sandbox");t||((t=document.createElement("div")).id="snapdom-sandbox",t.style.position="absolute",t.style.left="-9999px",t.style.top="-9999px",t.style.width="0",t.style.height="0",t.style.overflow="hidden",document.body.appendChild(t));var e,r=document.createElement(A),n=(r.style.all="initial",t.appendChild(r),getComputedStyle(r)),i={};for(e of n)i[e]=n.getPropertyValue(e);return t.removeChild(r),sr.set(A,i),i})(t);for([r,n]of Object.entries(A))e?(i=o[r],n&&n!==i&&s.push(r+":"+n)):n&&s.push(r+":"+n);return s.sort().join(";")}async function ur(A,t={}){var e,r=A.startsWith("url(");/^((repeating-)?(linear|radial|conic)-gradient)\(/i.test(A);return(r=r&&gr(A))?(r=mr(r),nr.has(r)?t.skipInline?void 0:`url(${nr.get(r)})`:(e=await dr(r,3e3,t.crossOrigin?t.crossOrigin(r):"anonymous"),nr.set(r,e),t.skipInline?void 0:`url(${e})`)):A}function hr(A,{fast:t=!1}={}){if(t)return A();"requestIdleCallback"in window?requestIdleCallback(A,{timeout:50}):setTimeout(A,1)}function Br(A,t=null){if(!(A instanceof Element))return window.getComputedStyle(A,t);let e=ar.get(A);return e||(e=new Map,ar.set(A,e)),e.has(t)||(A=window.getComputedStyle(A,t),e.set(t,A)),e.get(t)}function gr(A){var t=A.indexOf("url(");if(-1===t)return null;let e=A.slice(t+4).trim();return e=(e=e.endsWith(")")?e.slice(0,-1).trim():e).startsWith('"')&&e.endsWith('"')||e.startsWith("'")&&e.endsWith("'")?e.slice(1,-1):e}function fr(t){return[/font\s*awesome/i,/material\s*icons/i,/ionicons/i,/glyphicons/i,/feather/i,/bootstrap\s*icons/i,/remix\s*icons/i,/heroicons/i,/lucide/i].some(A=>A.test(t))}function dr(s,A=3e3,t="anonymous"){return rr.has(s)?Promise.resolve(rr.get(s)):new Promise((e,r)=>{let n=setTimeout(()=>{r(new Error("Image load timed out"))},A),i=new Image;i.crossOrigin=t,i.onload=async()=>{clearTimeout(n);try{await i.decode();var A=document.createElement("canvas");A.width=i.width,A.height=i.height,A.getContext("2d").drawImage(i,0,0,A.width,A.height);try{var t=A.toDataURL("image/png");rr.set(s,t),e(t)}catch(A){r(new Error("CORS restrictions prevented image capture"))}}catch(A){r(A)}},i.onerror=A=>{clearTimeout(n),r(new Error("Failed to load image: "+(A.message||"Unknown error")))},i.src=s})}function pr(A){var t,e={};for(t of A)e[t]=A.getPropertyValue(t);return e}function wr(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}function mr(A){try{var t=decodeURI(A);return encodeURI(t)}catch{return A}}function Cr(t){var e=[];let r=0,n=0;for(let A=0;A<t.length;A++){var i=t[A];"("===i&&r++,")"===i&&r--,","===i&&0===r&&(e.push(t.slice(n,A).trim()),n=A+1)}return e.push(t.slice(n).trim()),e}function Qr(A,t,e,r,n){"STYLE"!==A.tagName&&(r.has(A)||r.set(A,Br(A)),r=lr(pr(r.get(A)),A.tagName?.toLowerCase()||"div",n),e.set(t,r))}function yr(t){return Array.from(document.styleSheets).some(A=>A.href===t)}function Fr(e){return new Promise(A=>{if(yr(e))return A(null);let t=document.createElement("link");t.rel="stylesheet",t.href=e,t.setAttribute("data-snapdom","injected-import"),t.onload=()=>A(t),t.onerror=()=>A(null),document.head.appendChild(t)})}async function Ur(t,A,e,D,r,n=!1){if(t instanceof Element&&A instanceof Element){for(var i of["::before","::after","::first-letter"])try{var s=Br(t,i);if(s&&"function"==typeof s[Symbol.iterator])if("::first-letter"===i){var o,a,c,l,u,h,B,g=getComputedStyle(t);s.color===g.color&&s.fontSize===g.fontSize&&s.fontWeight===g.fontWeight||!(o=Array.from(A.childNodes).find(A=>A.nodeType===Node.TEXT_NODE&&A.textContent&&0<A.textContent.trim().length))||(c=(a=o.textContent).match(/^([^\p{L}\p{N}\s]*[\p{L}\p{N}](?:['’])?)/u)?.[0],l=a.slice(c?.length||0),!c)||/[\uD800-\uDFFF]/.test(c)||((u=document.createElement("span")).textContent=c,u.dataset.snapdomPseudo="::first-letter",h=lr(pr(s),"span",r),e.set(u,h),B=document.createTextNode(l),A.replaceChild(B,o),A.insertBefore(u,B))}else{var f=s.getPropertyValue("content"),d=s.getPropertyValue("background-image"),p=s.getPropertyValue("background-color"),w=d&&"none"!==d,m=p&&"transparent"!==p&&"rgba(0, 0, 0, 0)"!==p;if("none"!==f||w||m){var C=s.getPropertyValue("font-family"),O=parseInt(s.getPropertyValue("font-size"))||32,P=parseInt(s.getPropertyValue("font-weight"))||!1,M=s.getPropertyValue("color")||"#000",Q=document.createElement("span"),k=(Q.dataset.snapdomPseudo=i,pr(s)),K=lr(k,"span",r),y=(e.set(Q,K),C&&/font.*awesome|material|bootstrap|glyphicons|ionicons|remixicon|simple-line-icons|octicons|feather|typicons|weathericons|lucide/i.test(C)),F=(A=>{if((A=A.replace(/^['"]|['"]$/g,"")).startsWith("\\"))try{return String.fromCharCode(parseInt(A.replace("\\",""),16))}catch{}return A})(f);if(!n&&y&&1===F.length){var U=document.createElement("img");U.src=(E=F,I=P,H=O,L=M,_=N=S=void 0,x=(x=C).replace(/^['"]+|['"]+$/g,""),S=window.devicePixelRatio||1,(N=document.createElement("canvas").getContext("2d")).font=I?I+` ${H}px "${x}"`:H+`px "${x}"`,I=N.measureText(E),H=(x=I.actualBoundingBoxAscent||.8*H)+(I.actualBoundingBoxDescent||.2*H),I=I.width,(_=document.createElement("canvas")).width=Math.ceil(I*S),_.height=Math.ceil(H*S),(I=_.getContext("2d")).scale(S,S),I.font=N.font,I.textAlign="left",I.textBaseline="alphabetic",I.fillStyle=L,I.fillText(E,0,x),await _.toDataURL()),U.style="display:block;width:100%;height:100%;object-fit:contain;",Q.appendChild(U)}else if(F.startsWith("url(")){var b=gr(F);if(b&&""!==b.trim())try{var v=document.createElement("img"),R=await dr(mr(b));v.src=R,v.style="display:block;width:100%;height:100%;object-fit:contain;",Q.appendChild(v)}catch(A){console.error(`[snapdom] Error in pseudo ${i} for`,t,A)}}else!y&&F&&"none"!==F&&(Q.textContent=F);if(w)try{var V=Cr(d),G=await Promise.all(V.map(A=>ur(A)));Q.style.backgroundImage=G.join(", ")}catch(A){console.warn("[snapdom] Failed to inline background-image for "+i,A)}m&&(Q.style.backgroundColor=p),(0<Q.childNodes.length||Q.textContent&&""!==Q.textContent.trim()||w||m)&&("::before"===i?A.insertBefore(Q,A.firstChild):A.appendChild(Q))}}}catch(A){console.warn(`[snapdom] Failed to capture ${i} for`,t,A)}var E,x,I,H,L,S,N,_,T=Array.from(t.children),j=Array.from(A.children).filter(A=>!A.dataset.snapdomPseudo);for(let A=0;A<Math.min(T.length,j.length);A++)await Ur(T[A],j[A],e,D,r,n)}}async function br(A,t=!1,e=!1){var r,n,i=new Map,s=new WeakMap,o=new Map;let a;try{a=function e(r,n,i,s,t){if(r.nodeType===Node.ELEMENT_NODE&&"exclude"===r.getAttribute("data-capture"))return o=document.createElement("div"),A=r.getBoundingClientRect(),o.style.cssText=`display: inline-block; width: ${A.width}px; height: ${A.height}px; visibility: hidden;`,o;if("IFRAME"===r.tagName)return(A=document.createElement("div")).textContent="",A.style.cssText=`width: ${r.offsetWidth}px; height: ${r.offsetHeight}px; background-image: repeating-linear-gradient(45deg, #ddd, #ddd 5px, #f9f9f9 5px, #f9f9f9 10px);display: flex;align-items: center;justify-content: center;font-size: 12px;color: #555; border: 1px solid #aaa;`,A;if(r.nodeType===Node.ELEMENT_NODE&&"placeholder"===r.getAttribute("data-capture"))return o=r.cloneNode(!1),s.set(o,r),Qr(r,o,n,i,t),(A=document.createElement("div")).textContent=r.getAttribute("data-placeholder-text")||"",A.style.cssText="color: #666;font-size: 12px;text-align: center;line-height: 1.4;padding: 0.5em;box-sizing: border-box;",o.appendChild(A),o;if("CANVAS"===r.tagName)return A=r.toDataURL(),(o=document.createElement("img")).src=A,o.width=r.width,o.height=r.height,o.style.display="inline-block",o.style.width=r.style.width||r.width+"px",o.style.height=r.style.height||r.height+"px",o;if(r.nodeType===Node.TEXT_NODE){if(r.parentElement?.shadowRoot){var A=r.parentElement.tagName.toLowerCase();if(customElements.get(A))return null}return r.cloneNode(!0)}if(r.nodeType!==Node.ELEMENT_NODE)return r.cloneNode(!0);var o=r.cloneNode(!1);s.set(o,r),r instanceof HTMLInputElement?(o.value=r.value,o.setAttribute("value",r.value),void 0!==r.checked&&(o.checked=r.checked,r.checked)&&o.setAttribute("checked","")):r instanceof HTMLTextAreaElement?(o.value=r.value,o.textContent=r.value):r instanceof HTMLSelectElement&&(o.value=r.value,Array.from(o.options).forEach(A=>{A.value===r.value?A.setAttribute("selected",""):A.removeAttribute("selected")})),Qr(r,o,n,i,t);let a=document.createDocumentFragment();if(r.childNodes.forEach(A=>{(A=e(A,n,i,s,t))&&a.appendChild(A)}),o.appendChild(a),r.shadowRoot){A=Array.from(r.shadowRoot.children).filter(A=>"STYLE"!==A.tagName).map(A=>e(A,n,i,s)).filter(Boolean);let t=document.createDocumentFragment();A.forEach(A=>t.appendChild(A)),o.appendChild(t)}return o}(A,i,s,o,t)}catch(A){throw console.warn("deepClone failed:",A),A}try{await Ur(A,a,i,s,t,e)}catch(A){console.warn("inlinePseudoElements failed:",A)}let c="";if(t){var l,u,h,B=(A=>{var t,A=new Set(A.values()),e=new Map;let r=1;for(t of A)e.set(t,"c"+r++);return e})(i);c=Array.from(B.entries()).map(([A,t])=>`.${t}{${A}}`).join("");for([l,u]of i.entries())"STYLE"!==l.tagName&&((h=B.get(u))&&l.classList.add(h),h=l.style?.backgroundImage,l.removeAttribute("style"),h&&"none"!==h)&&(l.style.backgroundImage=h)}else for(var[g,f]of i.entries())"STYLE"!==g.tagName&&g.setAttribute("style",f.replace(/;/g,"; "));for([r,n]of o.entries()){var d=n.scrollLeft,p=n.scrollTop;if((d||p)&&r instanceof HTMLElement){r.style.overflow="hidden",r.style.scrollbarWidth="none",r.style.msOverflowStyle="none";var w=document.createElement("div");for(w.style.transform=`translate(${-d}px, ${-p}px)`,w.style.willChange="transform",w.style.display="inline-block",w.style.width="100%";r.firstChild;)w.appendChild(r.firstChild);r.appendChild(w)}}return A===o.get(a)&&(e=s.get(A)||window.getComputedStyle(A),s.set(A,e),t=(A=>{if(!A||"none"===A)return"";let t=A.replace(/translate[XY]?\([^)]*\)/g,"");return(t=(t=t.replace(/matrix\(([^)]+)\)/g,(A,t)=>{var e=t.split(",").map(A=>A.trim());return 6!==e.length?`matrix(${t})`:(e[4]="0",e[5]="0",`matrix(${e.join(", ")})`)})).replace(/matrix3d\(([^)]+)\)/g,(A,t)=>{var e=t.split(",").map(A=>A.trim());return 16!==e.length?`matrix3d(${t})`:(e[12]="0",e[13]="0",`matrix3d(${e.join(", ")})`)})).trim().replace(/\s{2,}/g," ")})(e.transform),a.style.margin="0",a.style.position="static",a.style.top="auto",a.style.left="auto",a.style.right="auto",a.style.bottom="auto",a.style.zIndex="auto",a.style.float="none",a.style.clear="none",a.style.transform=t||""),{clone:a,classCSS:c,styleCache:s}}async function vr(g,f={}){if(!g)throw new Error("Element cannot be null or undefined");if(!(g instanceof Element))throw new Error("captureDOM: Only Element nodes are supported");let{compress:A=!0,embedFonts:t=!1,fast:r=!0,scale:a=1}=f,d,c,p,l="",u="",h,B;if({clone:d,classCSS:c,styleCache:p}=await br(g,A,t),await new Promise(i=>{hr(async()=>{var[A,r={}]=[d,f],t=Array.from(A.querySelectorAll("img")),e=async A=>{var t=A.src;try{var e=await dr(t,3e3,r.crossOrigin?r.crossOrigin(t):"anonymous");A.src=e,A.width||(A.width=A.naturalWidth||100),A.height||(A.height=A.naturalHeight||100)}catch{t=document.createElement("div");t.style=`width: ${A.width||100}px; height: ${A.height||100}px; background: #ccc; display: inline-block; text-align: center; line-height: ${A.height||100}px; color: #666; font-size: 12px;`,t.innerText="img",A.replaceWith(t)}};for(let A=0;A<t.length;A+=4){var n=t.slice(A,A+4).map(e);await Promise.allSettled(n)}await 0,i()},{fast:r})}),await new Promise(B=>{hr(async()=>{for(var[A,t,e,r={}]=[g,d,p,f],n=[[A,t]];n.length;){var[i,s]=n.shift(),o=e.get(i)||Br(i),a=(e.has(i)||e.set(i,o),o.getPropertyValue("background-image")),o=o.getPropertyValue("background-color");if(a&&"none"!==a){var a=Cr(a),a=await Promise.all(a.map(A=>ur(A,r))),c=(a.some(A=>A&&"none"!==A&&!/^url\(undefined\)/.test(A))&&(s.style.backgroundImage=a.join(", ")),o&&"transparent"!==o&&"rgba(0, 0, 0, 0)"!==o&&(s.style.backgroundColor=o),Array.from(i.children)),l=Array.from(s.children);for(let A=0;A<Math.min(c.length,l.length);A++)n.push([c[A],l[A]])}else{var u=Array.from(i.children),h=Array.from(s.children);for(let A=0;A<Math.min(u.length,h.length);A++)n.push([u[A],h[A]])}}await 0,B()},{fast:r})}),t&&await new Promise(A=>{hr(async()=>{l=await(async({ignoreIconFonts:i,preCached:A=!1})=>{if(ir.has("fonts-embed-css"))return A&&((c=document.createElement("style")).setAttribute("data-snapdom","embedFonts"),c.textContent=ir.get("fonts-embed-css"),document.head.appendChild(c)),ir.get("fonts-embed-css");var t,e=/@import\s+url\(["']?([^"')]+)["']?\)/g,r=[];for(t of document.querySelectorAll("style")){var n,s=t.textContent||"";for(n of Array.from(s.matchAll(e))){var o=n[1];yr(o)||r.push(o)}}await Promise.all(r.map(Fr));var a,c,l=Array.from(document.querySelectorAll('link[rel="stylesheet"]')).filter(A=>A.href);let u="";for(let e of l)try{var h=await(await fetch(e.href)).text();if(!i||!fr(e.href)&&!fr(h)){var B,g=/url\((["']?)([^"')]+)\1\)/g,f=await Promise.all(Array.from(h.matchAll(g)).map(async A=>{var t=gr(A[0]);if(!t)return null;let r=t;if(r.startsWith("http")||r.startsWith("data:")||(r=new URL(r,e.href).href),i&&fr(r))return null;if(ir.has(r))return cr.add(r),{original:A[0],inlined:`url(${ir.get(r)})`};if(cr.has(r))return null;try{let e=await(await fetch(r)).blob();var n=await new Promise(A=>{let t=new FileReader;t.onload=()=>A(t.result),t.readAsDataURL(e)});return ir.set(r,n),cr.add(r),{original:A[0],inlined:`url(${n})`}}catch(A){return console.warn("[snapdom] Failed to fetch font resource:",r),null}}));let A=h;for(B of f)B&&(A=A.replace(B.original,B.inlined));u+=A+"\n"}}catch(A){console.warn("[snapdom] Failed to fetch CSS:",e.href)}for(let e of document.styleSheets)try{if(!e.href||l.every(A=>A.href!==e.href))for(var d of e.cssRules)if(d.type===CSSRule.FONT_FACE_RULE){var p=d.style.getPropertyValue("src");if(p){var w,m=/url\((["']?)([^"')]+)\1\)/g;let A=p;for(w of Array.from(p.matchAll(m))){var C=w[2].trim();if(C){let t=C;if(t.startsWith("http")||t.startsWith("data:")||(t=new URL(t,e.href||location.href).href),!i||!fr(t))if(ir.has(t))cr.add(t),A=A.replace(w[0],`url(${ir.get(t)})`);else if(!cr.has(t))try{let e=await(await fetch(t)).blob();var Q=await new Promise(A=>{let t=new FileReader;t.onload=()=>A(t.result),t.readAsDataURL(e)});ir.set(t,Q),cr.add(t),A=A.replace(w[0],`url(${Q})`)}catch(A){console.warn("[snapdom] Failed to fetch font URL:",t)}}}u+=`@font-face {
|
|
9
|
+
font-family: ${d.style.getPropertyValue("font-family")};
|
|
10
|
+
src: ${A};
|
|
11
|
+
font-style: ${d.style.getPropertyValue("font-style")||"normal"};
|
|
12
|
+
font-weight: ${d.style.getPropertyValue("font-weight")||"normal"};
|
|
13
|
+
}
|
|
14
|
+
`}}}catch(A){console.warn("[snapdom] Cannot access stylesheet",e.href,A)}for(a of document.fonts)if(a.family&&"loaded"===a.status&&a._snapdomSrc){let A=a._snapdomSrc;if(!A.startsWith("data:"))if(ir.has(a._snapdomSrc))A=ir.get(a._snapdomSrc),cr.add(a._snapdomSrc);else if(!cr.has(a._snapdomSrc))try{let e=await(await fetch(a._snapdomSrc)).blob();A=await new Promise(A=>{let t=new FileReader;t.onload=()=>A(t.result),t.readAsDataURL(e)}),ir.set(a._snapdomSrc,A),cr.add(a._snapdomSrc)}catch(A){console.warn("[snapdom] Failed to fetch dynamic font src:",a._snapdomSrc);continue}u+=`@font-face {
|
|
15
|
+
font-family: '${a.family}';
|
|
16
|
+
src: url(${A});
|
|
17
|
+
font-style: ${a.style||"normal"};
|
|
18
|
+
font-weight: ${a.weight||"normal"};
|
|
19
|
+
}
|
|
20
|
+
`}return u&&(ir.set("fonts-embed-css",u),A)&&((c=document.createElement("style")).setAttribute("data-snapdom","embedFonts"),c.textContent=u,document.head.appendChild(c)),u})({ignoreIconFonts:!t}),A()},{fast:r})}),A){let t=(A=>{let t=new Set;return A.nodeType!==Node.ELEMENT_NODE&&A.nodeType!==Node.DOCUMENT_FRAGMENT_NODE?[]:(A.tagName&&t.add(A.tagName.toLowerCase()),"function"==typeof A.querySelectorAll&&A.querySelectorAll("*").forEach(A=>t.add(A.tagName.toLowerCase())),Array.from(t))})(d).sort(),e=t.join(",");or.has(e)?u=or.get(e):await new Promise(A=>{hr(()=>{u=(A=>{var t,e,r,n=new Map;for(t of A){var i=sr.get(t);i&&(i=Object.entries(i).map(([A,t])=>A+`:${t};`).sort().join(""),n.has(i)||n.set(i,[]),n.get(i).push(t))}let s="";for([e,r]of n.entries())s+=`${r.join(",")} { ${e} }
|
|
21
|
+
`;return s})(t),or.set(e,u),A()},{fast:r})})}await new Promise(o=>{hr(()=>{var A=g.getBoundingClientRect();let t=A.width,e=A.height;var r=Number.isFinite(f.width),n=Number.isFinite(f.height),i="number"==typeof a&&1!==a,r=(i||(s=A.width/A.height,r&&n?(t=f.width,e=f.height):r?(t=f.width,e=t/s):n&&(e=f.height,t=e*s)),t=Math.ceil(t),e=Math.ceil(e),d.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),d.style.transformOrigin="top left",i||!r&&!n?i&&wr()&&(d.style.scale=""+a):(s=A.width,r=A.height,n=t/s,i=e/r,A=d.style.transform||"",s=`scale(${n}, ${i})`,d.style.transform=(s+" "+A).trim()),"http://www.w3.org/2000/svg"),n=document.createElementNS(r,"foreignObject"),i=(n.setAttribute("width","100%"),n.setAttribute("height","100%"),document.createElement("style"));i.textContent=u+l+"svg{overflow:visible;}"+c,n.appendChild(i),n.appendChild(d);var s=(new XMLSerializer).serializeToString(n),A=`<svg xmlns="${r}" width="${t}" height="${e}" viewBox="0 0 ${t} ${e}">`;B=A+s+"</svg>",h="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(B),o()},{fast:r})});var e=document.getElementById("snapdom-sandbox");return e&&"absolute"===e.style.position&&e.remove(),h}async function Er(A,{dpr:t=1,scale:e=1}={}){var r=new Image,A=(r.src=A,await r.decode(),document.createElement("canvas")),n=r.width*e,e=r.height*e,i=(A.width=Math.ceil(n*t),A.height=Math.ceil(e*t),A.getContext("2d"));return i.scale(t,t),i.drawImage(r,0,0,n,e),A.style.width=n+"px",A.style.height=e+"px",A}async function xr(A){A=decodeURIComponent(A.split(",")[1]);return new Blob([A],{type:"image/svg+xml"})}async function Ir(A,{dpr:t=1,scale:e=1},r){A=await Er(A,{dpr:t,scale:e});return r?((t=document.createElement("canvas")).width=A.width,t.height=A.height,(e=t.getContext("2d")).fillStyle=r,e.fillRect(0,0,t.width,t.height),e.drawImage(A,0,0),t):A}async function Hr(A,{dpr:t=1,scale:e=1,backgroundColor:r="#fff",quality:n},i="png"){A=await Ir(A,{dpr:t,scale:e},r),e=new Image;return e.src=A.toDataURL("image/"+i,n),await e.decode(),e.style.width=A.width/t+"px",e.style.height=A.height/t+"px",e}async function Lr(A,t={}){if(t={scale:1,...t},A)return Lr.capture(A,t);throw new Error("Element cannot be null or undefined")}Lr.capture=async(A,t={})=>{let r=await vr(A,t),n=window.devicePixelRatio||1,i=t.scale||1;return{url:r,options:t,toRaw:()=>r,toImg:()=>(async(A,{scale:t})=>{var e=new Image;return e.src=A,await e.decode(),e.width=e.width*t,e.height=e.height*t,e})(r,{dpr:n,scale:i}),toCanvas:()=>Er(r,{dpr:n,scale:i}),toBlob:()=>xr(r),toPng:A=>Hr(r,{dpr:n,scale:i,...A},"png"),toJpg:A=>Hr(r,{dpr:n,scale:i,...A},"jpeg"),toWebp:A=>Hr(r,{dpr:n,scale:i,...A},"webp"),download:({format:A="png",filename:t="capture",backgroundColor:e}={})=>(async(A,{dpr:t,scale:e,backgroundColor:r="#fff",format:n="png",filename:i="capture"})=>{var s,o;"svg"===n?(o=await xr(A),o=URL.createObjectURL(o),(s=document.createElement("a")).href=o,s.download=i+".svg",s.click(),URL.revokeObjectURL(o)):(s=["jpg","jpeg","webp"].includes(n)?"#fff":void 0,o=(await Ir(A,{dpr:t,scale:e},r??s)).toDataURL({jpg:"image/jpeg",jpeg:"image/jpeg",png:"image/png",webp:"image/webp"}[n]||"image/png"),(A=document.createElement("a")).href=o,A.download=i+"."+n,A.click())})(r,{dpr:n,scale:i,backgroundColor:e,format:A,filename:t})}},Lr.toRaw=async(A,t)=>(await Lr.capture(A,t)).toRaw(),Lr.toImg=async(A,t)=>(await Lr.capture(A,t)).toImg(),Lr.toCanvas=async(A,t)=>(await Lr.capture(A,t)).toCanvas(),Lr.toBlob=async(A,t)=>(await Lr.capture(A,t)).toBlob(),Lr.toPng=async(A,t)=>(await Lr.capture(A,t)).toPng(t),Lr.toJpg=async(A,t)=>(await Lr.capture(A,t)).toJpg(t),Lr.toWebp=async(A,t)=>(await Lr.capture(A,t)).toWebp(t);function Sr(A,t){return 1===(A=Pr(A))||t===A}function Nr(A,t){return A=Ye.parse(A,t[0]),(t=t[1])&&Oe(t)?{color:A,stop:t}:{color:A,stop:null}}function _r(A,e){for(var t=A[0],r=A[A.length-1],n=(null===t.stop&&(t.stop=Pe),null===r.stop&&(r.stop=ke),[]),i=0,s=0;s<A.length;s++){var o=A[s].stop;null!==o?(o=Re(o,e),n.push(i<o?o:i),i=o):n.push(null)}for(var a=null,s=0;s<n.length;s++){var c=n[s];if(null===c)null===a&&(a=s);else if(null!==a){for(var l=s-a,u=(c-n[a-1])/(1+l),h=1;h<=l;h++)n[a+h-1]=u*h;a=null}}return A.map(function(A,t){return{color:A.color,stop:Math.max(Math.min(1,n[t]/e),0)}})}function Tr(e,A){var r=Je(180),n=[];return ve(A).forEach(function(A,t){if(0===t){t=A[0];if(20===t.type&&-1!==["top","left","right","bottom"].indexOf(t.value))return void(r=Ie(A));if(xe(t))return void(r=(We(e,t)+Je(270))%Je(360))}t=Nr(e,A);n.push(t)}),{angle:r,stops:n,type:1}}function Dr(r,A){var n=0,i=3,s=[],o=[];return ve(A).forEach(function(A,t){var e=!0;0===t?e=A.reduce(function(A,t){if(_e(t))switch(t.value){case"center":return o.push(Me),!1;case"top":case"left":return o.push(Pe),!1;case"right":case"bottom":return o.push(ke),!1}else if(Oe(t)||De(t))return o.push(t),!1;return A},e):1===t&&(e=A.reduce(function(A,t){if(_e(t))switch(t.value){case"circle":return n=0,!1;case Jr:return!(n=1);case Yr:case Gr:return i=0,!1;case jr:return!(i=1);case Xr:return!(i=2);case"cover":case Wr:return!(i=3)}else if(De(t)||Oe(t))return(i=Array.isArray(i)?i:[]).push(t),!1;return A},e)),e&&(t=Nr(r,A),s.push(t))}),{size:i,shape:n,stops:s,position:o,type:2}}var Or="data-html2canvas-debug",Pr=function(A){switch(A.getAttribute(Or)){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}},Mr={name:"background-clip",initialValue:"border-box",prefix:!(Lr.download=async(A,t={})=>{let{format:e="png",filename:r="capture",backgroundColor:n,...i}=t;return(await Lr.capture(A,i)).download({format:e,filename:r,backgroundColor:n})}),type:1,parse:function(A,t){return t.map(function(A){if(_e(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},kr={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Kr=function(A,t,e){var r=t/2,n=e/2,t=Re(A[0],t)-r,r=n-Re(A[1],e);return(Math.atan2(r,t)+2*Math.PI)%(2*Math.PI)},Rr=function(A,t){return Math.sqrt(A*A+t*t)},Vr=function(A,t,r,n,i){return[[0,0],[0,t],[A,0],[A,t]].reduce(function(A,t){var e=t[0],e=Rr(r-e,n-t[1]);return(i?e<A.optimumDistance:e>A.optimumDistance)?{optimumCorner:t,optimumDistance:e}:A},{optimumDistance:i?1/0:-1/0,optimumCorner:null}).optimumCorner},Gr="closest-side",jr="farthest-side",Xr="closest-corner",Wr="farthest-corner",Jr="ellipse",Yr="contain",qr=function(A,t){if(22===t.type)return e={url:t.value,type:0},A.cache.addImage(t.value),e;if(18!==t.type)throw new Error("Unsupported image type ".concat(t.type));var e=ln[t.name];if(void 0===e)throw new Error('Attempting to parse an unsupported image function "'.concat(t.name,'"'));return e(A,t.values)};function zr(A){return{name:"border-".concat(A,"-color"),initialValue:"transparent",prefix:!1,type:3,format:"color"}}function Zr(A){return{name:"border-radius-".concat(A),initialValue:"0 0",prefix:!1,type:1,parse:function(A,t){return Ee(t.filter(Oe))}}}function $r(A){return{name:"border-".concat(A,"-style"),initialValue:"solid",prefix:!1,type:2,parse:function(A,t){switch(t){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}}function An(A){return{name:"border-".concat(A,"-width"),initialValue:"0",type:0,prefix:!1,parse:function(A,t){return Ne(t)?t.number:0}}}function tn(A,t){return _e(A)&&"normal"===A.value?1.2*t:17===A.type?t*A.number:Oe(A)?Re(A,t):t}function en(A){return{name:"margin-".concat(A),initialValue:"0",prefix:!1,type:4}}function rn(A){return{name:"padding-".concat(A),initialValue:"0",prefix:!1,type:3,format:"length-percentage"}}function nn(A,t,e){return A&&(t=A[Math.min(t,A.length-1)])?e?t.open:t.close:""}var sn,on,an,cn,ln={"linear-gradient":function(e,A){var r=Je(180),n=[];return ve(A).forEach(function(A,t){if(0===t){t=A[0];if(20===t.type&&"to"===t.value)return void(r=Ie(A));if(xe(t))return void(r=We(e,t))}t=Nr(e,A);n.push(t)}),{angle:r,stops:n,type:1}},"-moz-linear-gradient":Tr,"-ms-linear-gradient":Tr,"-o-linear-gradient":Tr,"-webkit-linear-gradient":Tr,"radial-gradient":function(n,A){var i=0,s=3,o=[],a=[];return ve(A).forEach(function(A,t){var e,r=!0;0===t&&(e=!1,r=A.reduce(function(A,t){if(e)if(_e(t))switch(t.value){case"center":return a.push(Me),A;case"top":case"left":return a.push(Pe),A;case"right":case"bottom":return a.push(ke),A}else(Oe(t)||De(t))&&a.push(t);else if(_e(t))switch(t.value){case"circle":return i=0,!1;case Jr:return!(i=1);case"at":return!(e=!0);case Gr:return s=0,!1;case"cover":case jr:return!(s=1);case Yr:case Xr:return!(s=2);case Wr:return!(s=3)}else if(De(t)||Oe(t))return(s=Array.isArray(s)?s:[]).push(t),!1;return A},r)),r&&(t=Nr(n,A),o.push(t))}),{size:s,shape:i,stops:o,position:a,type:2}},"-moz-radial-gradient":Dr,"-ms-radial-gradient":Dr,"-o-radial-gradient":Dr,"-webkit-radial-gradient":Dr,"-webkit-gradient":function(r,A){var t=Je(180),n=[],i=1;return ve(A).forEach(function(A,t){var e,A=A[0];if(0===t){if(_e(A)&&"linear"===A.value)return void(i=1);if(_e(A)&&"radial"===A.value)return void(i=2)}18===A.type&&("from"===A.name?(e=Ye.parse(r,A.values[0]),n.push({stop:Pe,color:e})):"to"===A.name?(e=Ye.parse(r,A.values[0]),n.push({stop:ke,color:e})):"color-stop"===A.name&&2===(t=A.values.filter(be)).length&&(e=Ye.parse(r,t[1]),A=t[0],Qe(A))&&n.push({stop:{type:16,number:100*A.number,flags:A.flags},color:e}))}),1===i?{angle:(t+Je(180))%Je(360),stops:n,type:i}:{size:3,shape:0,stops:n,position:[],type:i}}},un={name:"background-image",initialValue:"none",type:1,prefix:!1,parse:function(t,A){var e;return 0===A.length||20===(e=A[0]).type&&"none"===e.value?[]:A.filter(function(A){return be(A)&&!(20===(A=A).type&&"none"===A.value||18===A.type&&!ln[A.name])}).map(function(A){return qr(t,A)})}},hn={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(A,t){return t.map(function(A){if(_e(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},Bn={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(A,t){return ve(t).map(function(A){return A.filter(Oe)}).map(Ee)}},gn={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(A,t){return ve(t).map(function(A){return A.filter(_e).map(function(A){return A.value}).join(" ")}).map(fn)}},fn=function(A){switch(A){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;default:return 0}},dn=((on=sn=sn||{}).AUTO="auto",on.CONTAIN="contain",{name:"background-size",initialValue:"0",prefix:!(on.COVER="cover"),type:1,parse:function(A,t){return ve(t).map(function(A){return A.filter(pn)})}}),pn=function(A){return _e(A)||Oe(A)},wn=zr("top"),mn=zr("right"),Cn=zr("bottom"),Qn=zr("left"),yn=Zr("top-left"),Fn=Zr("top-right"),Un=Zr("bottom-right"),bn=Zr("bottom-left"),vn=$r("top"),En=$r("right"),xn=$r("bottom"),In=$r("left"),Hn=An("top"),Ln=An("right"),Sn=An("bottom"),Nn=An("left"),_n={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Tn={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(A,t){return"rtl"!==t?0:1}},Dn={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(A,t){return t.filter(_e).reduce(function(A,t){return A|On(t.value)},0)}},On=function(A){switch(A){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},Pn={name:"float",initialValue:"none",prefix:!1,type:2,parse:function(A,t){switch(t){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},Mn={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:function(A,t){return!(20===t.type&&"normal"===t.value||17!==t.type&&15!==t.type)?t.number:0}},kn={name:"line-break",initialValue:(t=an=an||{}).NORMAL="normal",prefix:!(t.STRICT="strict"),type:2,parse:function(A,t){return"strict"!==t?an.NORMAL:an.STRICT}},Kn={name:"line-height",initialValue:"normal",prefix:!1,type:4},Rn={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(A,t){return 20===t.type&&"none"===t.value?null:qr(A,t)}},Vn={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(A,t){return"inside"!==t?1:0}},Gn={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:function(A,t){switch(t){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":case"hebrew":return 22;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;default:return-1}}},jn=en("top"),Xn=en("right"),Wn=en("bottom"),Jn=en("left"),Yn={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(A,t){return t.filter(_e).map(function(A){switch(A.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;default:return 0}})}},qn={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:function(A,t){return"break-word"!==t?"normal":"break-word"}},zn=rn("top"),Zn=rn("right"),$n=rn("bottom"),Ai=rn("left"),ti={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:function(A,t){switch(t){case"right":return 2;case"center":case"justify":return 1;default:return 0}}},ei={name:"position",initialValue:"static",prefix:!1,type:2,parse:function(A,t){switch(t){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},ri={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(i,A){return 1===A.length&&Fe(A[0],"none")?[]:ve(A).map(function(A){for(var t={color:er.TRANSPARENT,offsetX:Pe,offsetY:Pe,blur:Pe},e=0,r=0;r<A.length;r++){var n=A[r];De(n)?(0===e?t.offsetX=n:1===e?t.offsetY=n:t.blur=n,e++):t.color=Ye.parse(i,n)}return t})}},ni={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:function(A,t){switch(t){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},ii={name:"transform",initialValue:"none",prefix:!0,type:0,parse:function(A,t){if(20===t.type&&"none"===t.value)return null;if(18!==t.type)return null;var e=si[t.name];if(void 0===e)throw new Error('Attempting to parse an unsupported transform function "'.concat(t.name,'"'));return e(t.values)}},si={matrix:function(A){A=A.filter(function(A){return 17===A.type}).map(function(A){return A.number});return 6===A.length?A:null},matrix3d:function(A){var A=A.filter(function(A){return 17===A.type}).map(function(A){return A.number}),t=A[0];return 16===A.length?[t,A[1],A[4],A[5],A[12],A[13]]:null}},A={type:16,number:50,flags:4},oi=[A,A],ai={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:function(A,t){t=t.filter(Oe);return 2!==t.length?oi:[t[0],t[1]]}},ci={name:"visible",initialValue:"none",prefix:!1,type:2,parse:function(A,t){switch(t){case"hidden":return 1;case"collapse":return 2;default:return 0}}},li=((e=cn=cn||{}).NORMAL="normal",e.BREAK_ALL="break-all",{name:"word-break",initialValue:"normal",prefix:!(e.KEEP_ALL="keep-all"),type:2,parse:function(A,t){switch(t){case"break-all":return cn.BREAK_ALL;case"keep-all":return cn.KEEP_ALL;default:return cn.NORMAL}}}),ui={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:function(A,t){if(20===t.type)return{auto:!0,order:0};if(Qe(t))return{auto:!1,order:t.number};throw new Error("Invalid z-index number parsed")}},hi=function(A,t){if(15===t.type)switch(t.unit.toLowerCase()){case"s":return 1e3*t.number;case"ms":return t.number}throw new Error("Unsupported time type")},Bi={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:function(A,t){return Qe(t)?t.number:1}},gi={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},fi={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:function(A,t){return t.filter(_e).map(function(A){switch(A.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(function(A){return 0!==A})}},di={name:"font-family",initialValue:"",prefix:!1,type:1,parse:function(A,t){var e=[],r=[];return t.forEach(function(A){switch(A.type){case 20:case 0:e.push(A.value);break;case 17:e.push(A.number.toString());break;case 4:r.push(e.join(" ")),e.length=0}}),e.length&&r.push(e.join(" ")),r.map(function(A){return-1===A.indexOf(" ")?A:"'".concat(A,"'")})}},pi={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},wi={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:function(A,t){return Qe(t)?t.number:!_e(t)||"bold"!==t.value?400:700}},mi={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:function(A,t){return t.filter(_e).map(function(A){return A.value})}},Ci={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:function(A,t){switch(t){case"oblique":return"oblique";case"italic":return"italic";default:return"normal"}}},Qi=function(A,t){return 0!=(A&t)},yi={name:"content",initialValue:"none",type:1,prefix:!1,parse:function(A,t){var e;return 0===t.length||20===(e=t[0]).type&&"none"===e.value?[]:t}},Fi={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:function(A,t){if(0===t.length)return null;var e=t[0];if(20===e.type&&"none"===e.value)return null;for(var r=[],n=t.filter(Ue),i=0;i<n.length;i++){var s=n[i],o=n[i+1];20===s.type&&(o=o&&Qe(o)?o.number:1,r.push({counter:s.value,increment:o}))}return r}},Ui={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:function(A,t){if(0===t.length)return[];for(var e=[],r=t.filter(Ue),n=0;n<r.length;n++){var i=r[n],s=r[n+1];_e(i)&&"none"!==i.value&&(s=s&&Qe(s)?s.number:0,e.push({counter:i.value,reset:s}))}return e}},bi={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:function(t,A){return A.filter(Ne).map(function(A){return hi(t,A)})}},vi={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:function(A,t){if(0===t.length)return null;var e=t[0];if(20===e.type&&"none"===e.value)return null;var r=[],n=t.filter(ye);if(n.length%2!=0)return null;for(var i=0;i<n.length;i+=2){var s=n[i].value,o=n[i+1].value;r.push({open:s,close:o})}return r}},Ei={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:function(i,A){return 1===A.length&&Fe(A[0],"none")?[]:ve(A).map(function(A){for(var t={color:255,offsetX:Pe,offsetY:Pe,blur:Pe,spread:Pe,inset:!1},e=0,r=0;r<A.length;r++){var n=A[r];Fe(n,"inset")?t.inset=!0:De(n)?(0===e?t.offsetX=n:1===e?t.offsetY=n:2===e?t.blur=n:t.spread=n,e++):t.color=Ye.parse(i,n)}return t})}},xi={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:function(A,t){var e=[];return t.filter(_e).forEach(function(A){switch(A.value){case"stroke":e.push(1);break;case"fill":e.push(0);break;case"markers":e.push(2)}}),[0,1,2].forEach(function(A){-1===e.indexOf(A)&&e.push(A)}),e}},Ii={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},Hi={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:function(A,t){return Ne(t)?t.number:0}},Li=(Si.prototype.isVisible=function(){return 0<this.display&&0<this.opacity&&0===this.visibility},Si.prototype.isTransparent=function(){return qe(this.backgroundColor)},Si.prototype.isTransformed=function(){return null!==this.transform},Si.prototype.isPositioned=function(){return 0!==this.position},Si.prototype.isPositionedWithZIndex=function(){return this.isPositioned()&&!this.zIndex.auto},Si.prototype.isFloating=function(){return 0!==this.float},Si.prototype.isInlineLevel=function(){return Qi(this.display,4)||Qi(this.display,33554432)||Qi(this.display,268435456)||Qi(this.display,536870912)||Qi(this.display,67108864)||Qi(this.display,134217728)},Si);function Si(A,t){this.animationDuration=r(A,bi,t.animationDuration),this.backgroundClip=r(A,Mr,t.backgroundClip),this.backgroundColor=r(A,kr,t.backgroundColor),this.backgroundImage=r(A,un,t.backgroundImage),this.backgroundOrigin=r(A,hn,t.backgroundOrigin),this.backgroundPosition=r(A,Bn,t.backgroundPosition),this.backgroundRepeat=r(A,gn,t.backgroundRepeat),this.backgroundSize=r(A,dn,t.backgroundSize),this.borderTopColor=r(A,wn,t.borderTopColor),this.borderRightColor=r(A,mn,t.borderRightColor),this.borderBottomColor=r(A,Cn,t.borderBottomColor),this.borderLeftColor=r(A,Qn,t.borderLeftColor),this.borderTopLeftRadius=r(A,yn,t.borderTopLeftRadius),this.borderTopRightRadius=r(A,Fn,t.borderTopRightRadius),this.borderBottomRightRadius=r(A,Un,t.borderBottomRightRadius),this.borderBottomLeftRadius=r(A,bn,t.borderBottomLeftRadius),this.borderTopStyle=r(A,vn,t.borderTopStyle),this.borderRightStyle=r(A,En,t.borderRightStyle),this.borderBottomStyle=r(A,xn,t.borderBottomStyle),this.borderLeftStyle=r(A,In,t.borderLeftStyle),this.borderTopWidth=r(A,Hn,t.borderTopWidth),this.borderRightWidth=r(A,Ln,t.borderRightWidth),this.borderBottomWidth=r(A,Sn,t.borderBottomWidth),this.borderLeftWidth=r(A,Nn,t.borderLeftWidth),this.boxShadow=r(A,Ei,t.boxShadow),this.color=r(A,_n,t.color),this.direction=r(A,Tn,t.direction),this.display=r(A,Dn,t.display),this.float=r(A,Pn,t.cssFloat),this.fontFamily=r(A,di,t.fontFamily),this.fontSize=r(A,pi,t.fontSize),this.fontStyle=r(A,Ci,t.fontStyle),this.fontVariant=r(A,mi,t.fontVariant),this.fontWeight=r(A,wi,t.fontWeight),this.letterSpacing=r(A,Mn,t.letterSpacing),this.lineBreak=r(A,kn,t.lineBreak),this.lineHeight=r(A,Kn,t.lineHeight),this.listStyleImage=r(A,Rn,t.listStyleImage),this.listStylePosition=r(A,Vn,t.listStylePosition),this.listStyleType=r(A,Gn,t.listStyleType),this.marginTop=r(A,jn,t.marginTop),this.marginRight=r(A,Xn,t.marginRight),this.marginBottom=r(A,Wn,t.marginBottom),this.marginLeft=r(A,Jn,t.marginLeft),this.opacity=r(A,Bi,t.opacity);var e=r(A,Yn,t.overflow);this.overflowX=e[0],this.overflowY=e[1<e.length?1:0],this.overflowWrap=r(A,qn,t.overflowWrap),this.paddingTop=r(A,zn,t.paddingTop),this.paddingRight=r(A,Zn,t.paddingRight),this.paddingBottom=r(A,$n,t.paddingBottom),this.paddingLeft=r(A,Ai,t.paddingLeft),this.paintOrder=r(A,xi,t.paintOrder),this.position=r(A,ei,t.position),this.textAlign=r(A,ti,t.textAlign),this.textDecorationColor=r(A,gi,null!=(e=t.textDecorationColor)?e:t.color),this.textDecorationLine=r(A,fi,null!=(e=t.textDecorationLine)?e:t.textDecoration),this.textShadow=r(A,ri,t.textShadow),this.textTransform=r(A,ni,t.textTransform),this.transform=r(A,ii,t.transform),this.transformOrigin=r(A,ai,t.transformOrigin),this.visibility=r(A,ci,t.visibility),this.webkitTextStrokeColor=r(A,Ii,t.webkitTextStrokeColor),this.webkitTextStrokeWidth=r(A,Hi,t.webkitTextStrokeWidth),this.wordBreak=r(A,li,t.wordBreak),this.zIndex=r(A,ui,t.zIndex)}var Ni,_i=function(A,t){this.content=r(A,yi,t.content),this.quotes=r(A,vi,t.quotes)},Ti=function(A,t){this.counterIncrement=r(A,Fi,t.counterIncrement),this.counterReset=r(A,Ui,t.counterReset)},r=function(A,t,e){var r=new pe,e=null!=e?e.toString():t.initialValue,n=(r.write(e),new me(r.read()));switch(t.type){case 2:var i=n.parseComponentValue();return t.parse(A,_e(i)?i.value:t.initialValue);case 0:return t.parse(A,n.parseComponentValue());case 1:return t.parse(A,n.parseComponentValues());case 4:return n.parseComponentValue();case 3:switch(t.format){case"angle":return We(A,n.parseComponentValue());case"color":return Ye.parse(A,n.parseComponentValue());case"image":return qr(A,n.parseComponentValue());case"length":var s=n.parseComponentValue();return De(s)?s:Pe;case"length-percentage":s=n.parseComponentValue();return Oe(s)?s:Pe;case"time":return hi(A,n.parseComponentValue())}}},Di=function(A,t){this.context=A,this.textNodes=[],this.elements=[],this.flags=0,this.foreignobjectrendering=!1,this.parentforeignobjectrendering=!1,this.divisionDisable=!1,this.offset=0,Sr(t,3),this.styles=new Li(A,window.getComputedStyle(t,null)),mo(t)&&(this.styles.animationDuration.some(function(A){return 0<A})&&(t.style.animationDuration="0s"),null!==this.styles.transform)&&(t.style.transform="none"),this.bounds=Tt(this.context,t),Sr(t,4)&&(this.flags|=16)},Oi=(_(Pi,Ni=Di),Pi);function Pi(A,t){A=Ni.call(this,A,t)||this;return A.value=t.value,A}_(Ki,Mi=Di);var Mi,ki=Ki;function Ki(A,t){A=Mi.call(this,A,t)||this;return A.start=t.start,A.reversed="boolean"==typeof t.reversed&&!0===t.reversed,A}_(Gi,Ri=Di);var Ri,Vi=Gi;function Gi(A,t){A=Ri.call(this,A,t)||this,t=t.options[t.selectedIndex||0];return A.value=t&&t.text||"",A}_(Wi,ji=Di);var ji,Xi=Wi;function Wi(A,t){A=ji.call(this,A,t)||this;return A.value=t.value,A}_(qi,Ji=Di);var Ji,Yi=qi;function qi(A,t){A=Ji.call(this,A,t)||this;return A.canvas=t,A.intrinsicWidth=t.width,A.intrinsicHeight=t.height,A}_($i,zi=Di);var zi,Zi=$i;function $i(A,t){var e,r,n=zi.call(this,A,t)||this;n.src=t.src,n.width=parseInt(t.width,10)||0,n.height=parseInt(t.height,10)||0,n.backgroundColor=n.styles.backgroundColor;try{t.contentWindow&&t.contentWindow.document&&t.contentWindow.document.documentElement&&(e=t.contentWindow.document.documentElement?tr(A,getComputedStyle(t.contentWindow.document.documentElement).backgroundColor):er.TRANSPARENT,r=t.contentWindow.document.body?tr(A,getComputedStyle(t.contentWindow.document.body).backgroundColor):er.TRANSPARENT,n.backgroundColor=qe(e)?qe(r)?n.styles.backgroundColor:r:e)}catch(A){}return n}_(es,As=Di);var As,ts=es;function es(A,t){A=As.call(this,A,t)||this;return A.src=t.currentSrc||t.src,A.intrinsicWidth=t.naturalWidth,A.intrinsicHeight=t.naturalHeight,A.context.cache.addImage(A.src),A}var rs,ns=[{type:15,flags:0,unit:"px",number:3}],is=[{type:16,flags:0,number:50}],ss="checkbox",os="radio",as="password",cs=707406591,ls=(_(us,rs=Di),us);function us(A,t){var e=rs.call(this,A,t)||this;switch(e.type=t.type.toLowerCase(),e.checked=t.checked,e.value=0===(t=(A=t).type===as?new Array(A.value.length+1).join("•"):A.value).length?A.placeholder||"":t,e.type!==ss&&e.type!==os||(e.styles.backgroundColor=3739148031,e.styles.borderTopColor=e.styles.borderRightColor=e.styles.borderBottomColor=e.styles.borderLeftColor=2779096575,e.styles.borderTopWidth=e.styles.borderRightWidth=e.styles.borderBottomWidth=e.styles.borderLeftWidth=1,e.styles.borderTopStyle=e.styles.borderRightStyle=e.styles.borderBottomStyle=e.styles.borderLeftStyle=1,e.styles.backgroundClip=[0],e.styles.backgroundOrigin=[0],e.bounds=(A=e.bounds).width>A.height?new bt(A.left+(A.width-A.height)/2,A.top,A.height,A.height):A.width<A.height?new bt(A.left,A.top+(A.height-A.width)/2,A.width,A.width):A),e.type){case ss:e.styles.borderTopRightRadius=e.styles.borderTopLeftRadius=e.styles.borderBottomRightRadius=e.styles.borderBottomLeftRadius=ns;break;case os:e.styles.borderTopRightRadius=e.styles.borderTopLeftRadius=e.styles.borderBottomRightRadius=e.styles.borderBottomLeftRadius=is}return e}_(gs,hs=Di);var hs,Bs=gs;function gs(A,t){var e=hs.call(this,A,t)||this,r=new XMLSerializer,A=Tt(A,t);return t.setAttribute("width","".concat(A.width,"px")),t.setAttribute("height","".concat(A.height,"px")),e.svg="data:image/svg+xml,".concat(encodeURIComponent(r.serializeToString(t))),e.intrinsicWidth=t.width.baseVal.value,e.intrinsicHeight=t.height.baseVal.value,e.context.cache.addImage(e.svg),e}for(var fs="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ds="undefined"==typeof Uint8Array?[]:new Uint8Array(256),ps=0;ps<fs.length;ps++)ds[fs.charCodeAt(ps)]=ps;function ws(A,t,e){return A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e))}Cs.prototype.get=function(A){var t;if(0<=A){if(A<55296||56319<A&&A<=65535)return t=this.index[A>>5],this.data[t=(t<<2)+(31&A)];if(A<=65535)return t=this.index[2048+(A-55296>>5)],this.data[t=(t<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],t=this.index[t+=A>>5&63],this.data[t=(t<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue};var ms=Cs;function Cs(A,t,e,r,n,i){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=i}for(var Qs="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ys="undefined"==typeof Uint8Array?[]:new Uint8Array(256),Fs=0;Fs<Qs.length;Fs++)ys[Qs.charCodeAt(Fs)]=Fs;function Us(A){for(var t,e=Ys(A),r=[];!(t=e.next()).done;)t.value&&r.push(t.value.slice());return r}function bs(A){return"VIDEO"===A.tagName}function vs(A){return"STYLE"===A.tagName}function Es(A){return 0<A.tagName.indexOf("-")}var xs=1,Is=2,Hs=3,Ls=4,Ss=5,Ns=7,_s=8,Ts=9,Ds=10,Os=11,Ps=12,Ms=13,ks=14,Ks=15,Rs=function(A){for(var t=[],e=0,r=A.length;e<r;){var n,i=A.charCodeAt(e++);55296<=i&&i<=56319&&e<r?56320==(64512&(n=A.charCodeAt(e++)))?t.push(((1023&i)<<10)+(1023&n)+65536):(t.push(i),e--):t.push(i)}return t},Vs=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,i="";++n<e;){var s=A[n];s<=65535?r.push(s):r.push(55296+((s-=65536)>>10),s%1024+56320),(n+1===e||16384<r.length)&&(i+=String.fromCharCode.apply(String,r),r.length=0)}return i},Gs=(n=(A=>{for(var t,e,r,n,i=.75*A.length,s=A.length,o=0,i=("="===A[A.length-1]&&(i--,"="===A[A.length-2])&&i--,new("undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?ArrayBuffer:Array)(i)),a=Array.isArray(i)?i:new Uint8Array(i),c=0;c<s;c+=4)t=ds[A.charCodeAt(c)],e=ds[A.charCodeAt(c+1)],r=ds[A.charCodeAt(c+2)],n=ds[A.charCodeAt(c+3)],a[o++]=t<<2|e>>4,a[o++]=(15&e)<<4|r>>2,a[o++]=(3&r)<<6|63&n;return i})(n="AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA="),t=Array.isArray(n)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(n):new Uint32Array(n),n=Array.isArray(n)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(n):new Uint16Array(n),A=ws(n,12,t[4]/2),n=2===t[5]?ws(n,(24+t[4])/2):(n=t,e=Math.ceil((24+t[4])/4),n.slice?n.slice(e,ya):new Uint32Array(Array.prototype.slice.call(n,e,ya))),new ms(t[0],t[1],t[2],t[3],A,n)),js="×",Xs="÷",Ws=function(A){return Gs.get(A)},Js=function(A,t,e){var r=e-2,n=t[r],i=t[e-1],e=t[e];if(i===Is&&e===Hs)return js;if(i!==Is&&i!==Hs&&i!==Ls&&e!==Is&&e!==Hs&&e!==Ls){if(i===_s&&-1!==[_s,Ts,Os,Ps].indexOf(e))return js;if(!(i!==Os&&i!==Ts||e!==Ts&&e!==Ds))return js;if((i===Ps||i===Ds)&&e===Ds)return js;if(e===Ms||e===Ss)return js;if(e===Ns)return js;if(i===xs)return js;if(i===Ms&&e===ks){for(;n===Ss;)n=t[--r];if(n===ks)return js}if(i===Ks&&e===Ks){for(var s=0;n===Ks;)s++,n=t[--r];if(s%2==0)return js}}return Xs},Ys=function(A){var e=Rs(A),r=e.length,n=0,i=0,s=e.map(Ws);return{next:function(){if(r<=n)return{done:!0,value:null};for(var A,t=js;n<r&&(t=Js(e,s,++n))===js;);return t!==js||n===r?(A=Vs.apply(null,e.slice(i,n)),i=n,{value:A,done:!1}):{done:!0,value:null}}}},qs=function(A,t){this.text=A,this.bounds=t},zs=function(A,t){var e=t.ownerDocument;if(e){var e=e.createElement("html2canvaswrapper"),r=(e.appendChild(t.cloneNode(!0)),t.parentNode);if(r)return r.replaceChild(e,t),t=Tt(A,e),e.firstChild&&r.replaceChild(e.firstChild,e),t}return bt.EMPTY},Zs=function(A,t,e){var r=A.ownerDocument;if(r)return(r=r.createRange()).setStart(A,t),r.setEnd(A,t+e),r;throw new Error("Node has no owner document")},$s=function(A){var t;return at.SUPPORT_NATIVE_TEXT_SEGMENTATION?(t=new Intl.Segmenter(void 0,{granularity:"grapheme"}),Array.from(t.segment(A)).map(function(A){return A.segment})):Us(A)},Ao=function(A,t){var e;return at.SUPPORT_NATIVE_TEXT_SEGMENTATION?(e=new Intl.Segmenter(void 0,{granularity:"word"}),Array.from(e.segment(A)).map(function(A){return A.segment})):ro(A,t)},to=function(A,t){return 0!==t.letterSpacing?$s(A):Ao(A,t)},eo=[32,160,4961,65792,65793,4153,4241],ro=function(A,t){for(var e,r=ot(A,{lineBreak:t.lineBreak,wordBreak:"break-word"===t.overflowWrap?"break-word":t.wordBreak}),n=[];!(e=r.next()).done;)(()=>{var A,t;e.value&&(A=e.value.slice(),A=P(A),t="",A.forEach(function(A){-1===eo.indexOf(A)?t+=M(A):(t.length&&n.push(t),n.push(M(A)),t="")}),t.length)&&n.push(t)})();return n},no=function(A,t,e){var n,i,s,o,a;this.text=io(t.data,e.textTransform),this.textBounds=(n=A,A=this.text,s=t,A=to(A,i=e),o=[],a=0,A.forEach(function(A){var t,e,r;i.textDecorationLine.length||0<A.trim().length?at.SUPPORT_RANGE_BOUNDS?1<(t=Zs(s,a,A.length).getClientRects()).length?(r=$s(A),e=0,r.forEach(function(A){o.push(new qs(A,bt.fromDOMRectList(n,Zs(s,e+a,A.length).getClientRects()))),e+=A.length})):o.push(new qs(A,bt.fromDOMRectList(n,t))):(r=s.splitText(A.length),o.push(new qs(A,zs(n,s))),s=r):at.SUPPORT_RANGE_BOUNDS||(s=s.splitText(A.length)),a+=A.length}),o)},io=function(A,t){switch(t){case 1:return A.toLowerCase();case 3:return A.replace(so,oo);case 2:return A.toUpperCase();default:return A}},so=/(^|\s|:|-|\(|\))([a-z])/g,oo=function(A,t,e){return 0<A.length?t+e.toUpperCase():A},ao=["OL","UL","MENU"],co=function(t,A,e,r,n){for(var i=A.firstChild;i;i=o){var s,o=i.nextSibling;po(i)&&0<i.data.trim().length?(e.textNodes.push(new no(t,i,e.styles)),wo(A)&&A.hasAttribute("foreignobjectrendering")&&n.push(A)):wo(i)&&(So(i)&&i.assignedNodes?i.assignedNodes().forEach(function(A){return co(t,A,e,r,n)}):(s=lo(t,i)).styles.isVisible()&&(uo(i,s,r)?s.flags|=4:fo(s.styles)&&(s.flags|=2),wo(i)&&(i.hasAttribute("foreignobjectrendering")||e.foreignobjectrendering)&&(s.foreignobjectrendering=!0),wo(i)&&(i.hasAttribute("divisionDisable")||e.divisionDisable)&&(s.divisionDisable=!0),-1!==ao.indexOf(i.tagName)&&(s.flags|=8),wo(A)&&A.hasAttribute("foreignobjectrendering")&&n.push(A),e.elements.push(s),i.slot,i.shadowRoot?co(t,i.shadowRoot,s,r,n):Ho(i)||bo(i)||Lo(i)||co(t,i,s,r,n)))}},lo=function(A,t){return new(xo(t)?ts:Eo(t)?Yi:bo(t)?Bs:Qo(t)?Oi:yo(t)?ki:Fo(t)?ls:Lo(t)?Vi:Ho(t)?Xi:Io(t)?Zi:Di)(A,t)},uo=function(A,t,e){return t.styles.isPositionedWithZIndex()||t.styles.opacity<1||t.styles.isTransformed()||vo(A)&&e.styles.isTransparent()},ho=function(o,e){return D(void 0,void 0,void 0,function(){var i,s,t;return R(this,function(A){switch(A.label){case 0:return(i=lo(o,e)).flags|=4,co(o,e,i,i,t=[]),s=t.filter(function(t,A,e){return A===e.findIndex(function(A){return A===t})}),t=s.map(function(A){return go(A)}),[4,Promise.all(t)];case 1:return A.sent().forEach(function(A,t){var e,r,n;A&&(e=(t=s[t]).offsetWidth||t.getBoundingClientRect().width||100,r=t.offsetHeight||t.getBoundingClientRect().height||100,(n=document.createElement("div")).style.width=Math.ceil(e)+"px",n.style.height=Math.ceil(r)+"px",n.style.backgroundImage="url(".concat(A.src,")"),n.style.backgroundSize="contain",n.style.backgroundPosition="center",n.style.backgroundRepeat="no-repeat",(A=document.createElement("div")).style.position="absolute",A.style.left="-9999px",A.appendChild(n),document.body.appendChild(A),(n=lo(o,n)).bounds.left=t.offsetLeft,n.bounds.top=t.offsetTop,n.bounds.width=e,n.bounds.height=r,n.flags=0,document.body.removeChild(A),i.elements.unshift(n))}),[2,i]}})})},Bo=function(r){return D(void 0,void 0,void 0,function(){var t,e;return R(this,function(A){return r.nodeType===Node.TEXT_NODE&&""!==(null==(t=r.textContent)?void 0:t.trim())?((t=document.createElement("span")).style.color="transparent",t.style.backgroundColor="transparent",t.textContent=r.textContent,null!=(e=r.parentNode)&&e.replaceChild(t,r)):r.childNodes.forEach(Bo),[2]})})},go=function(n){return D(void 0,void 0,void 0,function(){var t,e,r;return R(this,function(A){switch(A.label){case 0:return Bo(r=n),0===(e=r.getBoundingClientRect()).width||0===e.height?(console.warn("元素宽度或高度为0,无法截图"),[2]):[4,Lr(r,{})];case 1:t=A.sent(),A.label=2;case 2:return A.trys.push([2,4,,5]),[4,t.toPng({quality:.1})];case 3:return(e=A.sent())?[2,e]:[3,5];case 4:return r=A.sent(),console.error("导出PNG格式失败:",r),[3,5];case 5:return[2]}})})},fo=function(A){return A.isPositioned()||A.isFloating()},po=function(A){return A.nodeType===Node.TEXT_NODE},wo=function(A){return A.nodeType===Node.ELEMENT_NODE},mo=function(A){return wo(A)&&void 0!==A.style&&!Co(A)},Co=function(A){return"object"==typeof A.className},Qo=function(A){return"LI"===A.tagName},yo=function(A){return"OL"===A.tagName},Fo=function(A){return"INPUT"===A.tagName},Uo=function(A){return"HTML"===A.tagName},bo=function(A){return"svg"===A.tagName},vo=function(A){return"BODY"===A.tagName},Eo=function(A){return"CANVAS"===A.tagName},xo=function(A){return"IMG"===A.tagName},Io=function(A){return"IFRAME"===A.tagName},Ho=function(A){return"TEXTAREA"===A.tagName},Lo=function(A){return"SELECT"===A.tagName},So=function(A){return"SLOT"===A.tagName},No=(_o.prototype.getCounterValue=function(A){A=this.counters[A];return A&&A.length?A[A.length-1]:1},_o.prototype.getCounterValues=function(A){A=this.counters[A];return A||[]},_o.prototype.pop=function(A){var t=this;A.forEach(function(A){return t.counters[A].pop()})},_o.prototype.parse=function(A){var e=this,t=A.counterIncrement,A=A.counterReset,r=!0,n=(null!==t&&t.forEach(function(A){var t=e.counters[A.counter];t&&0!==A.increment&&(r=!1,t.length||t.push(1),t[Math.max(0,t.length-1)]+=A.increment)}),[]);return r&&A.forEach(function(A){var t=e.counters[A.counter];n.push(A.counter),(t=t||(e.counters[A.counter]=[])).push(A.reset)}),n},_o);function _o(){this.counters={}}function To(r,A,t,n,e,i){return r<A||t<r?$o(r,e,0<i.length):n.integers.reduce(function(A,t,e){for(;t<=r;)r-=t,A+=n.values[e];return A},"")+i}function Do(A,t,e,r,n){var i=e-t+1;return(A<0?"-":"")+(Go(Math.abs(A),i,r,function(A){return M(Math.floor(A%i)+t)})+n)}function Oo(A,t,e){void 0===e&&(e=". ");var r=t.length;return Go(Math.abs(A),r,!1,function(A){return t[Math.floor(A%r)]})+e}function Po(A,t,e,r,n,i){if(A<-9999||9999<A)return $o(A,4,0<n.length);var s=Math.abs(A),o=n;if(0===s)return t[0]+o;for(var a=0;0<s&&a<=4;a++){var c=s%10;0==c&&Qi(i,jo)&&""!==o?o=t[c]+o:1<c||1==c&&0===a||1==c&&1===a&&Qi(i,Xo)||1==c&&1===a&&Qi(i,Wo)&&100<A||1==c&&1<a&&Qi(i,Jo)?o=t[c]+(0<a?e[a-1]:"")+o:1==c&&0<a&&(o=e[a-1]+o),s=Math.floor(s/10)}return(A<0?r:"")+o}var Mo,ko={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},Ko={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["Ք","Փ","Ւ","Ց","Ր","Տ","Վ","Ս","Ռ","Ջ","Պ","Չ","Ո","Շ","Ն","Յ","Մ","Ճ","Ղ","Ձ","Հ","Կ","Ծ","Խ","Լ","Ի","Ժ","Թ","Ը","Է","Զ","Ե","Դ","Գ","Բ","Ա"]},Ro={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["י׳","ט׳","ח׳","ז׳","ו׳","ה׳","ד׳","ג׳","ב׳","א׳","ת","ש","ר","ק","צ","פ","ע","ס","נ","מ","ל","כ","יט","יח","יז","טז","טו","י","ט","ח","ז","ו","ה","ד","ג","ב","א"]},Vo={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["ჵ","ჰ","ჯ","ჴ","ხ","ჭ","წ","ძ","ც","ჩ","შ","ყ","ღ","ქ","ფ","ჳ","ტ","ს","რ","ჟ","პ","ო","ჲ","ნ","მ","ლ","კ","ი","თ","ჱ","ზ","ვ","ე","დ","გ","ბ","ა"]},Go=function(A,t,e,r){for(var n="";e||A--,n=r(A)+n,t<=(A/=t)*t;);return n},jo=1,Xo=2,Wo=4,Jo=8,Yo="十百千萬",qo="拾佰仟萬",zo="マイナス",Zo="마이너스",$o=function(A,t,e){var r=e?". ":"",n=e?"、":"",i=e?", ":"",s=e?" ":"";switch(t){case 0:return"•"+s;case 1:return"◦"+s;case 2:return"◾"+s;case 5:var o=Do(A,48,57,!0,r);return o.length<4?"0".concat(o):o;case 4:return Oo(A,"〇一二三四五六七八九",n);case 6:return To(A,1,3999,ko,3,r).toLowerCase();case 7:return To(A,1,3999,ko,3,r);case 8:return Do(A,945,969,!1,r);case 9:return Do(A,97,122,!1,r);case 10:return Do(A,65,90,!1,r);case 11:return Do(A,1632,1641,!0,r);case 12:case 49:return To(A,1,9999,Ko,3,r);case 35:return To(A,1,9999,Ko,3,r).toLowerCase();case 13:return Do(A,2534,2543,!0,r);case 14:case 30:return Do(A,6112,6121,!0,r);case 15:return Oo(A,"子丑寅卯辰巳午未申酉戌亥",n);case 16:return Oo(A,"甲乙丙丁戊己庚辛壬癸",n);case 17:case 48:return Po(A,"零一二三四五六七八九",Yo,"負",n,Xo|Wo|Jo);case 47:return Po(A,"零壹貳參肆伍陸柒捌玖",qo,"負",n,jo|Xo|Wo|Jo);case 42:return Po(A,"零一二三四五六七八九",Yo,"负",n,Xo|Wo|Jo);case 41:return Po(A,"零壹贰叁肆伍陆柒捌玖",qo,"负",n,jo|Xo|Wo|Jo);case 26:return Po(A,"〇一二三四五六七八九","十百千万",zo,n,0);case 25:return Po(A,"零壱弐参四伍六七八九","拾百千万",zo,n,jo|Xo|Wo);case 31:return Po(A,"영일이삼사오육칠팔구","십백천만",Zo,i,jo|Xo|Wo);case 33:return Po(A,"零一二三四五六七八九","十百千萬",Zo,i,0);case 32:return Po(A,"零壹貳參四五六七八九","拾百千",Zo,i,jo|Xo|Wo);case 18:return Do(A,2406,2415,!0,r);case 20:return To(A,1,19999,Vo,3,r);case 21:return Do(A,2790,2799,!0,r);case 22:return Do(A,2662,2671,!0,r);case 22:return To(A,1,10999,Ro,3,r);case 23:return Oo(A,"あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん");case 24:return Oo(A,"いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす");case 27:return Do(A,3302,3311,!0,r);case 28:return Oo(A,"アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン",n);case 29:return Oo(A,"イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス",n);case 34:return Do(A,3792,3801,!0,r);case 37:return Do(A,6160,6169,!0,r);case 38:return Do(A,4160,4169,!0,r);case 39:return Do(A,2918,2927,!0,r);case 40:return Do(A,1776,1785,!0,r);case 43:return Do(A,3046,3055,!0,r);case 44:return Do(A,3174,3183,!0,r);case 45:return Do(A,3664,3673,!0,r);case 46:return Do(A,3872,3881,!0,r);default:return Do(A,48,57,!0,r)}},Aa="data-html2canvas-ignore",ta=(ea.prototype.toIFrame=function(A,r){var t,n,i,e,s=this,o=sa(A,r);return o.contentWindow?(t=A.defaultView.pageXOffset,A=A.defaultView.pageYOffset,i=(n=o.contentWindow).document,e=aa(o).then(function(){return D(s,void 0,void 0,function(){var t,e;return R(this,function(A){switch(A.label){case 0:return(this.scrolledElements.forEach(Ba),n&&(n.scrollTo(r.left,r.top),!/(iPad|iPhone|iPod)/g.test(navigator.userAgent)||n.scrollY===r.top&&n.scrollX===r.left||(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(n.scrollX-r.left,n.scrollY-r.top,0,0))),t=this.options.onclone,void 0===(e=this.clonedReferenceElement))?[2,Promise.reject("Error finding the ".concat(this.referenceElement.nodeName," in the cloned document"))]:i.fonts&&i.fonts.ready?[4,i.fonts.ready]:[3,2];case 1:A.sent(),A.label=2;case 2:return/(AppleWebKit)/g.test(navigator.userAgent)?[4,oa(i)]:[3,4];case 3:A.sent(),A.label=4;case 4:return"function"==typeof t?[2,Promise.resolve().then(function(){return t(i,e)}).then(function(){return o})]:[2,o]}})})}),i.open(),i.write("".concat(ua(document.doctype),"<html></html>")),ha(this.referenceElement.ownerDocument,t,A),i.replaceChild(i.adoptNode(this.documentElement),i.documentElement),i.close(),e):Promise.reject("Unable to find iframe window")},ea.prototype.createElementClone=function(A){var t;return Sr(A,2),Eo(A)?this.createCanvasClone(A):bs(A)?this.createVideoClone(A):vs(A)?this.createStyleClone(A):(t=A.cloneNode(!1),xo(t)&&(xo(A)&&A.currentSrc&&A.currentSrc!==A.src&&(t.src=A.currentSrc,t.srcset=""),"lazy"===t.loading)&&(t.loading="eager"),Es(t)?this.createCustomElementClone(t):t)},ea.prototype.createCustomElementClone=function(A){var t=document.createElement("html2canvascustomelement");return la(A.style,t),t},ea.prototype.createStyleClone=function(A){try{var t,e,r=A.sheet;if(r&&r.cssRules)return t=[].slice.call(r.cssRules,0).reduce(function(A,t){return t&&"string"==typeof t.cssText?A+t.cssText:A},""),(e=A.cloneNode(!1)).textContent=t,e}catch(A){if(this.context.logger.error("Unable to access cssRules property",A),"SecurityError"!==A.name)throw A}return A.cloneNode(!1)},ea.prototype.createCanvasClone=function(t){var A;if(this.options.inlineImages&&t.ownerDocument){var e=t.ownerDocument.createElement("img");try{return e.src=t.toDataURL(),e}catch(A){this.context.logger.info("Unable to inline canvas contents, canvas is tainted",t)}}e=t.cloneNode(!1);try{e.width=t.width,e.height=t.height;var r,n,i=t.getContext("2d"),s=e.getContext("2d");s&&(!this.options.allowTaint&&i?s.putImageData(i.getImageData(0,0,t.width,t.height),0,0):((r=null!=(A=t.getContext("webgl2"))?A:t.getContext("webgl"))&&!1===(null==(n=r.getContextAttributes())?void 0:n.preserveDrawingBuffer)&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",t),s.drawImage(t,0,0)))}catch(A){this.context.logger.info("Unable to clone canvas as it is tainted",t)}return e},ea.prototype.createVideoClone=function(t){var A=t.ownerDocument.createElement("canvas"),e=(A.width=t.offsetWidth,A.height=t.offsetHeight,A.getContext("2d"));try{return e&&(e.drawImage(t,0,0,A.width,A.height),this.options.allowTaint||e.getImageData(0,0,A.width,A.height)),A}catch(A){this.context.logger.info("Unable to clone video as it is tainted",t)}e=t.ownerDocument.createElement("canvas");return e.width=t.offsetWidth,e.height=t.offsetHeight,e},ea.prototype.appendChildNode=function(A,t,e){wo(t)&&("SCRIPT"===t.tagName||t.hasAttribute(Aa)||"function"==typeof this.options.ignoreElements&&this.options.ignoreElements(t))||this.options.copyStyles&&wo(t)&&vs(t)||A.appendChild(this.cloneNode(t,e))},ea.prototype.cloneChildNodes=function(A,t,e){for(var r,n=this,i=(A.shadowRoot||A).firstChild;i;i=i.nextSibling)wo(i)&&So(i)&&"function"==typeof i.assignedNodes?(r=i.assignedNodes()).length&&r.forEach(function(A){return n.appendChildNode(t,A,e)}):this.appendChildNode(t,i,e)},ea.prototype.cloneNode=function(A,t){var e,r,n,i,s;return po(A)?document.createTextNode(A.data):A.ownerDocument&&(n=A.ownerDocument.defaultView)&&wo(A)&&(mo(A)||Co(A))?((e=this.createElementClone(A)).style.transitionProperty="none",r=n.getComputedStyle(A),s=n.getComputedStyle(A,":before"),n=n.getComputedStyle(A,":after"),this.referenceElement===A&&mo(e)&&(this.clonedReferenceElement=e),vo(e)&&pa(e),i=this.counters.parse(new Ti(this.context,r)),s=this.resolvePseudoContent(A,e,s,Mo.BEFORE),Es(A)&&(t=!0),bs(A)||this.cloneChildNodes(A,e,t),s&&e.insertBefore(s,e.firstChild),(s=this.resolvePseudoContent(A,e,n,Mo.AFTER))&&e.appendChild(s),this.counters.pop(i),(r&&(this.options.copyStyles||Co(A))&&!Io(A)||t)&&la(r,e),0===A.scrollTop&&0===A.scrollLeft||this.scrolledElements.push([e,A.scrollLeft,A.scrollTop]),(Ho(A)||Lo(A))&&(Ho(e)||Lo(e))&&(e.value=A.value),e):A.cloneNode(!1)},ea.prototype.resolvePseudoContent=function(s,A,t,e){var o=this;if(t){var a,c,r=t.content,l=A.ownerDocument;if(l&&r&&"none"!==r&&"-moz-alt-content"!==r&&"none"!==t.display)return this.counters.parse(new Ti(this.context,t)),a=new _i(this.context,t),c=l.createElement("html2canvaspseudoelement"),la(t,c),a.content.forEach(function(A){if(0===A.type)c.appendChild(l.createTextNode(A.value));else if(22===A.type){var t=l.createElement("img");t.src=A.value,t.style.opacity="1",c.appendChild(t)}else if(18===A.type){var e,r,n,i;"attr"===A.name?(t=A.values.filter(_e)).length&&c.appendChild(l.createTextNode(s.getAttribute(t[0].value)||"")):"counter"===A.name?(n=(t=A.values.filter(be))[0],i=t[1],n&&_e(n)&&(t=o.counters.getCounterValue(n.value),e=i&&_e(i)?Gn.parse(o.context,i.value):3,c.appendChild(l.createTextNode($o(t,e,!1))))):"counters"===A.name&&(n=(t=A.values.filter(be))[0],e=t[1],i=t[2],n)&&_e(n)&&(t=o.counters.getCounterValues(n.value),r=i&&_e(i)?Gn.parse(o.context,i.value):3,n=e&&0===e.type?e.value:"",i=t.map(function(A){return $o(A,r,!1)}).join(n),c.appendChild(l.createTextNode(i)))}else if(20===A.type)switch(A.value){case"open-quote":c.appendChild(l.createTextNode(nn(a.quotes,o.quoteDepth++,!0)));break;case"close-quote":c.appendChild(l.createTextNode(nn(a.quotes,--o.quoteDepth,!1)));break;default:c.appendChild(l.createTextNode(A.value))}}),c.className="".concat(ga," ").concat(fa),r=e===Mo.BEFORE?" ".concat(ga):" ".concat(fa),Co(A)?A.className.baseValue+=r:A.className+=r,c}},ea.destroy=function(A){return!!A.parentNode&&(A.parentNode.removeChild(A),!0)},ea);function ea(A,t,e){if(this.context=A,this.options=e,this.scrolledElements=[],this.referenceElement=t,this.counters=new No,this.quoteDepth=0,!t.ownerDocument)throw new Error("Cloned element does not have an owner document");this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}(e=Mo=Mo||{})[e.BEFORE=0]="BEFORE",e[e.AFTER=1]="AFTER";function ra(t){return new Promise(function(A){!t.complete&&t.src?(t.onload=A,t.onerror=A):A()})}function na(A,t){this.context=A,this.options=t}var ia,sa=function(A,t){var e=A.createElement("iframe");return e.className="html2canvas-container",e.style.visibility="hidden",e.style.position="fixed",e.style.left="-10000px",e.style.top="0px",e.style.border="0",e.width=t.width.toString(),e.height=t.height.toString(),e.scrolling="no",e.setAttribute(Aa,"true"),A.body.appendChild(e),e},oa=function(A){return Promise.all([].slice.call(A.images,0).map(ra))},aa=function(n){return new Promise(function(t,A){var e=n.contentWindow;if(!e)return A("No window assigned for iframe");var r=e.document;e.onload=n.onload=function(){e.onload=n.onload=null;var A=setInterval(function(){0<r.body.childNodes.length&&"complete"===r.readyState&&(clearInterval(A),t(n))},50)}})},ca=["all","d","content"],la=function(A,t){for(var e=A.length-1;0<=e;e--){var r=A.item(e);-1===ca.indexOf(r)&&t.style.setProperty(r,A.getPropertyValue(r))}return t},ua=function(A){var t="";return A&&(t+="<!DOCTYPE ",A.name&&(t+=A.name),A.internalSubset&&(t+=A.internalSubset),A.publicId&&(t+='"'.concat(A.publicId,'"')),A.systemId&&(t+='"'.concat(A.systemId,'"')),t+=">"),t},ha=function(A,t,e){A&&A.defaultView&&(t!==A.defaultView.pageXOffset||e!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(t,e)},Ba=function(A){var t=A[0],e=A[2];t.scrollLeft=A[1],t.scrollTop=e},ga="___html2canvas___pseudoelement_before",fa="___html2canvas___pseudoelement_after",da='{\n content: "" !important;\n display: none !important;\n}',pa=function(A){wa(A,".".concat(ga).concat(":before").concat(da,"\n .").concat(fa).concat(":after").concat(da))},wa=function(A,t){var e=A.ownerDocument;e&&((e=e.createElement("style")).textContent=t,A.appendChild(e))},ma=(_(Ca,ia=na),Ca.prototype.render=function(e){return D(this,void 0,void 0,function(){var t;return R(this,function(A){switch(A.label){case 0:return t=it(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,e),[4,Qa(t)];case 1:return t=A.sent(),this.options.backgroundColor&&(this.ctx.fillStyle=He(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(t,-this.options.x*this.options.scale,-this.options.y*this.options.scale),[2,this.canvas]}})})},Ca);function Ca(A,t){A=ia.call(this,A,t)||this;return A.canvas=t.canvas||document.createElement("canvas"),A.ctx=A.canvas.getContext("2d"),A.options=t,A.canvas.width=Math.floor(t.width*t.scale),A.canvas.height=Math.floor(t.height*t.scale),A.canvas.style.width="".concat(t.width,"px"),A.canvas.style.height="".concat(t.height,"px"),A.ctx.scale(A.options.scale,A.options.scale),A.ctx.translate(-t.x,-t.y),A.context.logger.debug("EXPERIMENTAL ForeignObject renderer initialized (".concat(t.width,"x").concat(t.height," at ").concat(t.x,",").concat(t.y,") with scale ").concat(t.scale)),A}var Qa=function(r){return new Promise(function(A,t){var e=new Image;e.onload=function(){A(e)},e.onerror=t,e.src="data:image/svg+xml;charset=utf-8,".concat(encodeURIComponent((new XMLSerializer).serializeToString(r)))})},ya="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function Fa(A){return A&&A.__esModule&&Object.prototype.hasOwnProperty.call(A,"default")?A.default:A}var Ua,ms={exports:{}};function ba(A){return Ua.exports=ba="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(A){return typeof A}:function(A){return A&&"function"==typeof Symbol&&A.constructor===Symbol&&A!==Symbol.prototype?"symbol":typeof A},Ua.exports.__esModule=!0,Ua.exports.default=Ua.exports,ba(A)}(Ua=ms).exports=ba,Ua.exports.__esModule=!0,Ua.exports.default=Ua.exports;function va(A,t){for(var e=new Ia(31),r=0;r<31;++r)e[r]=t+=1<<A[r-1];for(var n=new Ha(e[30]),r=1;r<30;++r)for(var i=e[r];i<e[r+1];++i)n[i]=i-e[r]<<5|r;return{b:e,r:n}}var Ea=Fa(ms.exports),xa=Uint8Array,Ia=Uint16Array,Ha=Int32Array,La=new xa([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0,0]),Sa=new xa([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,0,0]),Na=new xa([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),t=va(La,2),A=t.b,_a=t.r;A[28]=258,_a[258]=28;for(var Ta=va(Sa,0).r,Da=new Ia(32768),Oa=0;Oa<32768;++Oa){var Pa=(43690&Oa)>>1|(21845&Oa)<<1;Da[Oa]=((65280&(Pa=(61680&(Pa=(52428&Pa)>>2|(13107&Pa)<<2))>>4|(3855&Pa)<<4))>>8|(255&Pa)<<8)>>1}for(var Ma=function(A,t,e){for(var r=A.length,n=0,i=new Ia(t);n<r;++n)A[n]&&++i[A[n]-1];var s=new Ia(t);for(n=1;n<t;++n)s[n]=s[n-1]+i[n-1]<<1;if(e){for(var o=new Ia(1<<t),a=15-t,n=0;n<r;++n)if(A[n])for(var c=n<<4|A[n],l=t-A[n],u=s[A[n]-1]++<<l,h=u|(1<<l)-1;u<=h;++u)o[Da[u]>>a]=c}else for(o=new Ia(r),n=0;n<r;++n)A[n]&&(o[n]=Da[s[A[n]-1]++]>>15-A[n]);return o},ka=new xa(288),Oa=0;Oa<144;++Oa)ka[Oa]=8;for(Oa=144;Oa<256;++Oa)ka[Oa]=9;for(Oa=256;Oa<280;++Oa)ka[Oa]=7;for(Oa=280;Oa<288;++Oa)ka[Oa]=8;for(var Ka=new xa(32),Oa=0;Oa<32;++Oa)Ka[Oa]=5;var Ra=Ma(ka,9,0),Va=Ma(Ka,5,0),Ga=function(A){return(A+7)/8|0},ja=function(A,t,e){return(null==e||e>A.length)&&(e=A.length),new xa(A.subarray(t=null==t||t<0?0:t,e))},Xa=function(A,t,e){var r=t/8|0;A[r]|=e<<=7&t,A[1+r]|=e>>8},Wa=function(A,t,e){var r=t/8|0;A[r]|=e<<=7&t,A[1+r]|=e>>8,A[2+r]|=e>>16},Ja=function(A,t){for(var e=[],r=0;r<A.length;++r)A[r]&&e.push({s:r,f:A[r]});var n=e.length,i=e.slice();if(!n)return{t:tc,l:0};if(1==n)return(f=new xa(e[0].s+1))[e[0].s]=1,{t:f,l:1};e.sort(function(A,t){return A.f-t.f}),e.push({s:-1,f:25001});var s=e[0],o=e[1],a=0,c=1,l=2;for(e[0]={s:-1,f:s.f+o.f,l:s,r:o};c!=n-1;)s=e[e[a].f<e[l].f?a++:l++],o=e[a!=c&&e[a].f<e[l].f?a++:l++],e[c++]={s:-1,f:s.f+o.f,l:s,r:o};for(var u=i[0].s,r=1;r<n;++r)i[r].s>u&&(u=i[r].s);var h=new Ia(u+1),B=Ya(e[c-1],h,0);if(t<B){var r=0,g=0,f=B-t,d=1<<f;for(i.sort(function(A,t){return h[t.s]-h[A.s]||A.f-t.f});r<n;++r){var p=i[r].s;if(!(h[p]>t))break;g+=d-(1<<B-h[p]),h[p]=t}for(g>>=f;0<g;){var w=i[r].s;h[w]<t?g-=1<<t-h[w]++-1:++r}for(;0<=r&&g;--r){var m=i[r].s;h[m]==t&&(--h[m],++g)}B=t}return{t:new xa(h),l:B}},Ya=function(A,t,e){return-1==A.s?Math.max(Ya(A.l,t,e+1),Ya(A.r,t,e+1)):t[A.s]=e},qa=function(A){for(var t=A.length;t&&!A[--t];);for(var e=new Ia(++t),r=0,n=A[0],i=1,s=function(A){e[r++]=A},o=1;o<=t;++o)if(A[o]==n&&o!=t)++i;else{if(!n&&2<i){for(;138<i;i-=138)s(32754);2<i&&(s(10<i?i-11<<5|28690:i-3<<5|12305),i=0)}else if(3<i){for(s(n),--i;6<i;i-=6)s(8304);2<i&&(s(i-3<<5|8208),i=0)}for(;i--;)s(n);i=1,n=A[o]}return{c:e.subarray(0,r),n:t}},za=function(A,t){for(var e=0,r=0;r<t.length;++r)e+=A[r]*t[r];return e},Za=function(A,t,e){var r=e.length,n=Ga(t+2);A[n]=255&r,A[n+1]=r>>8,A[n+2]=255^A[n],A[n+3]=255^A[n+1];for(var i=0;i<r;++i)A[n+i+4]=e[i];return 8*(n+4+r)},$a=function(A,t,e,r,n,i,s,o,a,c,l){Xa(t,l++,e),++n[256];for(var e=Ja(n,15),u=e.t,e=e.l,h=Ja(i,15),B=h.t,h=h.l,g=qa(u),f=g.c,g=g.n,d=qa(B),p=d.c,d=d.n,w=new Ia(19),m=0;m<f.length;++m)++w[31&f[m]];for(m=0;m<p.length;++m)++w[31&p[m]];for(var C=Ja(w,7),Q=C.t,C=C.l,y=19;4<y&&!Q[Na[y-1]];--y);var F=c+5<<3,U=za(n,ka)+za(i,Ka)+s,n=za(n,u)+za(i,B)+s+14+3*y+za(w,Q)+2*w[16]+3*w[17]+7*w[18];if(0<=a&&F<=U&&F<=n)return Za(t,l,A.subarray(a,a+c));if(Xa(t,l,1+(n<U)),l+=2,n<U){var b=Ma(u,e,0),v=u,E=Ma(B,h,0),x=B,I=Ma(Q,C,0);Xa(t,l,g-257),Xa(t,l+5,d-1),Xa(t,l+10,y-4),l+=14;for(m=0;m<y;++m)Xa(t,l+3*m,Q[Na[m]]);l+=3*y;for(var H=[f,p],L=0;L<2;++L)for(var S=H[L],m=0;m<S.length;++m){var N=31&S[m];Xa(t,l,I[N]),l+=Q[N],15<N&&(Xa(t,l,S[m]>>5&127),l+=S[m]>>12)}}else b=Ra,v=ka,E=Va,x=Ka;for(m=0;m<o;++m){var _,T=r[m];255<T?(Wa(t,l,b[(N=T>>18&31)+257]),l+=v[N+257],7<N&&(Xa(t,l,T>>23&31),l+=La[N]),Wa(t,l,E[_=31&T]),l+=x[_],3<_&&(Wa(t,l,T>>5&8191),l+=Sa[_])):(Wa(t,l,b[T]),l+=v[T])}return Wa(t,l,b[256]),l+v[256]},Ac=new Ha([65540,131080,131088,131104,262176,1048704,1048832,2114560,2117632]),tc=new xa(0),ec=function(t,A,e,r,n,i){var s=i.z||t.length,o=new xa(r+s+5*(1+Math.ceil(s/7e3))+n),a=o.subarray(r,o.length-n),c=i.l,l=7&(i.r||0);if(A){l&&(a[0]=i.r>>3);for(var A=Ac[A-1],D=A>>13,O=8191&A,u=(1<<e)-1,h=i.p||new Ia(32768),B=i.h||new Ia(1+u),g=Math.ceil(e/3),P=2*g,f=function(A){return(t[A]^t[A+1]<<g^t[A+2]<<P)&u},d=new Ha(25e3),p=new Ia(288),w=new Ia(32),m=0,C=0,Q=i.i||0,y=0,F=i.w||0,U=0;Q+2<s;++Q){var b=f(Q),v=32767&Q,E=B[b];if(h[v]=E,B[b]=v,F<=Q){var x=s-Q;if((7e3<m||24576<y)&&(423<x||!c)){for(var l=$a(t,a,0,d,p,w,C,y,U,Q-U,l),y=m=C=0,U=Q,I=0;I<286;++I)p[I]=0;for(I=0;I<30;++I)w[I]=0}var H=2,L=0,M=O,S=v-E&32767;if(2<x&&b==f(Q-S))for(var k=Math.min(D,x)-1,K=Math.min(32767,Q),R=Math.min(258,x);S<=K&&--M&&v!=E;){if(t[Q+H]==t[Q+H-S]){for(var N=0;N<R&&t[Q+N]==t[Q+N-S];++N);if(H<N){if(L=S,k<(H=N))break;for(var V=Math.min(S,N-2),G=0,I=0;I<V;++I){var _=Q-S+I&32767,j=_-h[_]&32767;G<j&&(G=j,E=_)}}}S+=(v=E)-(E=h[v])&32767}L?(d[y++]=268435456|_a[H]<<18|Ta[L],b=31&_a[H],x=31&Ta[L],C+=La[b]+Sa[x],++p[257+b],++w[x],F=Q+H,++m):(d[y++]=t[Q],++p[t[Q]])}}for(Q=Math.max(Q,F);Q<s;++Q)d[y++]=t[Q],++p[t[Q]];l=$a(t,a,c,d,p,w,C,y,U,Q-U,l),c||(i.r=7&l|a[l/8|0]<<3,
|
|
22
|
+
// shft(pos) now 1 less if pos & 7 != 0
|
|
23
|
+
l-=7,i.h=B,i.p=h,i.i=Q,i.w=F)}else{for(Q=i.w||0;Q<s+c;Q+=65535){var T=Q+65535;s<=T&&(a[l/8|0]=c,T=s),l=Za(a,l+1,t.subarray(Q,T))}i.i=s}return ja(o,0,r+Ga(l)+n)},rc=function(){var s=1,o=0;return{p:function(A){for(var t=s,e=o,r=0|A.length,n=0;n!=r;){for(var i=Math.min(n+2655,r);n<i;++n)e+=t+=A[n];t=(65535&t)+15*(t>>16),e=(65535&e)+15*(e>>16)}s=t,o=e},d:function(){return(255&(s%=65521))<<24|(65280&s)<<8|(255&(o%=65521))<<8|o>>8}}},nc=function(A,t,e,r,n){var i,s;return n||(n={l:1},t.dictionary&&(i=t.dictionary.subarray(-32768),(s=new xa(i.length+A.length)).set(i),s.set(A,i.length),A=s,n.w=i.length)),ec(A,null==t.level?6:t.level,null==t.mem?n.l?Math.ceil(1.5*Math.max(8,Math.min(13,Math.log(A.length)))):20:12+t.mem,e,r,n)},ic=function(A,t,e){for(;e;++t)A[t]=e,e>>>=8},sc=function(A,t){var e=t.level,e=0==e?0:e<6?1:9==e?3:2;A[0]=120,A[1]=e<<6|(t.dictionary&&32),A[1]|=31-(A[0]<<8|A[1])%31,t.dictionary&&((e=rc()).p(t.dictionary),ic(A,2,e.d()))};function oc(A,t){t=t||{};var e=rc(),A=(e.p(A),nc(A,t,t.dictionary?6:2,4));return sc(A,t),ic(A,A.length-4,e.d()),A}n="undefined"!=typeof TextDecoder&&new TextDecoder;try{n.decode(tc,{stream:!0})}catch(A){}var ac,cc,lc,uc,hc,e={exports:{}},t={exports:{}},n=((A=t).exports=function(A){if(Array.isArray(A))return A},A.exports.__esModule=!0,A.exports.default=A.exports,{exports:{}}),A=((A=n).exports=function(A,t){var e=null==A?null:"undefined"!=typeof Symbol&&A[Symbol.iterator]||A["@@iterator"];if(null!=e){var r,n,i,s,o=[],a=!0,c=!1;try{if(i=(e=e.call(A)).next,0===t){if(Object(e)!==e)return;a=!1}else for(;!(a=(r=i.call(e)).done)&&(o.push(r.value),o.length!==t);a=!0);}catch(A){c=!0,n=A}finally{try{if(!a&&null!=e.return&&(s=e.return(),Object(s)!==s))return}finally{if(c)throw n}}return o}},A.exports.__esModule=!0,A.exports.default=A.exports,{exports:{}}),i={exports:{}},i=((s=i).exports=function(A,t){(null==t||t>A.length)&&(t=A.length);for(var e=0,r=Array(t);e<t;e++)r[e]=A[e];return r},s.exports.__esModule=!0,s.exports.default=s.exports,ac=i.exports,(s=A).exports=function(A,t){var e;if(A)return"string"==typeof A?ac(A,t):"Map"===(e="Object"===(e={}.toString.call(A).slice(8,-1))&&A.constructor?A.constructor.name:e)||"Set"===e?Array.from(A):"Arguments"===e||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(e)?ac(A,t):void 0},s.exports.__esModule=!0,s.exports.default=s.exports,{exports:{}}),Bc=((s=i).exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},s.exports.__esModule=!0,s.exports.default=s.exports,cc=t.exports,lc=n.exports,uc=A.exports,hc=i.exports,(s=e).exports=function(A,t){return cc(A)||lc(A,t)||uc(A,t)||hc()},s.exports.__esModule=!0,s.exports.default=s.exports,Fa(e.exports));function gc(A,t="utf8"){return new TextDecoder(t).decode(A)}let fc=new TextEncoder;t=new Uint8Array(4);let dc=!((new Uint32Array(t.buffer)[0]=1)&t[0]),pc={int8:globalThis.Int8Array,uint8:globalThis.Uint8Array,int16:globalThis.Int16Array,uint16:globalThis.Uint16Array,int32:globalThis.Int32Array,uint32:globalThis.Uint32Array,uint64:globalThis.BigUint64Array,int64:globalThis.BigInt64Array,float32:globalThis.Float32Array,float64:globalThis.Float64Array};class wc{buffer;byteLength;byteOffset;length;offset;lastWrittenByte;littleEndian;_data;_mark;_marks;constructor(A=8192,t={}){let e=!1;"number"==typeof A?A=new ArrayBuffer(A):(e=!0,this.lastWrittenByte=A.byteLength);var t=t.offset?t.offset>>>0:0,r=A.byteLength-t;let n=t;(ArrayBuffer.isView(A)||A instanceof wc)&&(A.byteLength!==A.buffer.byteLength&&(n=A.byteOffset+t),A=A.buffer),e?this.lastWrittenByte=r:this.lastWrittenByte=0,this.buffer=A,this.length=r,this.byteLength=r,this.byteOffset=n,this.offset=0,this.littleEndian=!0,this._data=new DataView(this.buffer,n,r),this._mark=0,this._marks=[]}available(A=1){return this.offset+A<=this.length}isLittleEndian(){return this.littleEndian}setLittleEndian(){return this.littleEndian=!0,this}isBigEndian(){return!this.littleEndian}setBigEndian(){return this.littleEndian=!1,this}skip(A=1){return this.offset+=A,this}back(A=1){return this.offset-=A,this}seek(A){return this.offset=A,this}mark(){return this._mark=this.offset,this}reset(){return this.offset=this._mark,this}pushMark(){return this._marks.push(this.offset),this}popMark(){var A=this._marks.pop();if(void 0===A)throw new Error("Mark stack empty");return this.seek(A),this}rewind(){return this.offset=0,this}ensureAvailable(A=1){var t;return this.available(A)||(A=2*(this.offset+A),(t=new Uint8Array(A)).set(new Uint8Array(this.buffer)),this.buffer=t.buffer,this.length=A,this.byteLength=A,this._data=new DataView(this.buffer)),this}readBoolean(){return 0!==this.readUint8()}readInt8(){return this._data.getInt8(this.offset++)}readUint8(){return this._data.getUint8(this.offset++)}readByte(){return this.readUint8()}readBytes(A=1){return this.readArray(A,"uint8")}readArray(e,r){var e=pc[r].BYTES_PER_ELEMENT*e,n=this.byteOffset+this.offset;let A=this.buffer.slice(n,n+e);if(this.littleEndian===dc&&"uint8"!==r&&"int8"!==r){let A=new Uint8Array(this.buffer.slice(n,n+e)),t=(A.reverse(),new pc[r](A.buffer));return this.offset+=e,t.reverse(),t}let t=new pc[r](A);return this.offset+=e,t}readInt16(){var A=this._data.getInt16(this.offset,this.littleEndian);return this.offset+=2,A}readUint16(){var A=this._data.getUint16(this.offset,this.littleEndian);return this.offset+=2,A}readInt32(){var A=this._data.getInt32(this.offset,this.littleEndian);return this.offset+=4,A}readUint32(){var A=this._data.getUint32(this.offset,this.littleEndian);return this.offset+=4,A}readFloat32(){var A=this._data.getFloat32(this.offset,this.littleEndian);return this.offset+=4,A}readFloat64(){var A=this._data.getFloat64(this.offset,this.littleEndian);return this.offset+=8,A}readBigInt64(){var A=this._data.getBigInt64(this.offset,this.littleEndian);return this.offset+=8,A}readBigUint64(){var A=this._data.getBigUint64(this.offset,this.littleEndian);return this.offset+=8,A}readChar(){return String.fromCharCode(this.readInt8())}readChars(t=1){let e="";for(let A=0;A<t;A++)e+=this.readChar();return e}readUtf8(A=1){return gc(this.readBytes(A))}decodeText(A=1,t="utf8"){return gc(this.readBytes(A),t)}writeBoolean(A){return this.writeUint8(A?255:0),this}writeInt8(A){return this.ensureAvailable(1),this._data.setInt8(this.offset++,A),this._updateLastWrittenByte(),this}writeUint8(A){return this.ensureAvailable(1),this._data.setUint8(this.offset++,A),this._updateLastWrittenByte(),this}writeByte(A){return this.writeUint8(A)}writeBytes(t){this.ensureAvailable(t.length);for(let A=0;A<t.length;A++)this._data.setUint8(this.offset++,t[A]);return this._updateLastWrittenByte(),this}writeInt16(A){return this.ensureAvailable(2),this._data.setInt16(this.offset,A,this.littleEndian),this.offset+=2,this._updateLastWrittenByte(),this}writeUint16(A){return this.ensureAvailable(2),this._data.setUint16(this.offset,A,this.littleEndian),this.offset+=2,this._updateLastWrittenByte(),this}writeInt32(A){return this.ensureAvailable(4),this._data.setInt32(this.offset,A,this.littleEndian),this.offset+=4,this._updateLastWrittenByte(),this}writeUint32(A){return this.ensureAvailable(4),this._data.setUint32(this.offset,A,this.littleEndian),this.offset+=4,this._updateLastWrittenByte(),this}writeFloat32(A){return this.ensureAvailable(4),this._data.setFloat32(this.offset,A,this.littleEndian),this.offset+=4,this._updateLastWrittenByte(),this}writeFloat64(A){return this.ensureAvailable(8),this._data.setFloat64(this.offset,A,this.littleEndian),this.offset+=8,this._updateLastWrittenByte(),this}writeBigInt64(A){return this.ensureAvailable(8),this._data.setBigInt64(this.offset,A,this.littleEndian),this.offset+=8,this._updateLastWrittenByte(),this}writeBigUint64(A){return this.ensureAvailable(8),this._data.setBigUint64(this.offset,A,this.littleEndian),this.offset+=8,this._updateLastWrittenByte(),this}writeChar(A){return this.writeUint8(A.charCodeAt(0))}writeChars(t){for(let A=0;A<t.length;A++)this.writeUint8(t.charCodeAt(A));return this}writeUtf8(A){return this.writeBytes((A=A,fc.encode(A)))}toArray(){return new Uint8Array(this.buffer,this.byteOffset,this.lastWrittenByte)}getWrittenByteLength(){return this.lastWrittenByte-this.byteOffset}_updateLastWrittenByte(){this.offset>this.lastWrittenByte&&(this.lastWrittenByte=this.offset)}}
|
|
24
|
+
/*! pako 2.1.0 https://github.com/nodeca/pako @license (MIT AND Zlib) */let mc=0,Cc=1;function Qc(A){let t=A.length;for(;0<=--t;)A[t]=0}let yc=29,Fc=256,Uc=Fc+1+yc,bc=30,vc=19,Ec=2*Uc+1,xc=15,Ic=16,Hc=7,Lc=256,Sc=16,Nc=17,_c=18,Tc=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),Dc=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),Oc=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),Pc=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);
|
|
25
|
+
// !!!! Use flat array instead of structure, Freq = i*2, Len = i*2+1
|
|
26
|
+
let Mc=new Array(2*(Uc+2)),kc=(Qc(Mc),new Array(2*bc)),Kc=(Qc(kc),new Array(512)),Rc=(Qc(Kc),new Array(256)),Vc=(Qc(Rc),new Array(yc)),Gc=(Qc(Vc),new Array(bc));function jc(A,t,e,r,n){this.static_tree=A,this.extra_bits=t,this.extra_base=e,this.elems=r,this.max_length=n,this.has_stree=A&&A.length}Qc(Gc);let Xc,Wc,Jc;function Yc(A,t){this.dyn_tree=A,this.max_code=0,this.stat_desc=t}let qc=A=>A<256?Kc[A]:Kc[256+(A>>>7)],zc=(A,t)=>{A.pending_buf[A.pending++]=255&t,A.pending_buf[A.pending++]=t>>>8&255},Zc=(A,t,e)=>{A.bi_valid>Ic-e?(A.bi_buf|=t<<A.bi_valid&65535,zc(A,A.bi_buf),A.bi_buf=t>>Ic-A.bi_valid,A.bi_valid+=e-Ic):(A.bi_buf|=t<<A.bi_valid&65535,A.bi_valid+=e)},$c=(A,t,e)=>{Zc(A,e[2*t],e[2*t+1])},Al=(A,t)=>{let e=0;for(;e|=1&A,A>>>=1,e<<=1,0<--t;);return e>>>1},tl=(A,t)=>{var e,r=t.dyn_tree,n=t.max_code,i=t.stat_desc.static_tree,s=t.stat_desc.has_stree,o=t.stat_desc.extra_bits,a=t.stat_desc.extra_base,c=t.stat_desc.max_length;let l,u,h,B,g,f=0;for(B=0;B<=xc;B++)A.bl_count[B]=0;for(r[2*A.heap[A.heap_max]+1]=0,l=A.heap_max+1;l<Ec;l++)u=A.heap[l],(B=r[2*r[2*u+1]+1]+1)>c&&(B=c,f++),r[2*u+1]=B,u>n||(A.bl_count[B]++,g=0,u>=a&&(g=o[u-a]),e=r[2*u],A.opt_len+=e*(B+g),s&&(A.static_len+=e*(i[2*u+1]+g)));if(0!==f){do{for(B=c-1;0===A.bl_count[B];)B--}while(A.bl_count[B]--,A.bl_count[B+1]+=2,A.bl_count[c]--,0<(f-=2));for(B=c;0!==B;B--)for(u=A.bl_count[B];0!==u;)n<(h=A.heap[--l])||(r[2*h+1]!==B&&(A.opt_len+=(B-r[2*h+1])*r[2*h],r[2*h+1]=B),u--)}},el=(A,t,e)=>{var r=new Array(xc+1);let n=0,i,s;for(i=1;i<=xc;i++)n=n+e[i-1]<<1,r[i]=n;for(s=0;s<=t;s++){var o=A[2*s+1];0!==o&&(A[2*s]=Al(r[o]++,o))}},rl=A=>{let t;for(t=0;t<Uc;t++)A.dyn_ltree[2*t]=0;for(t=0;t<bc;t++)A.dyn_dtree[2*t]=0;for(t=0;t<vc;t++)A.bl_tree[2*t]=0;A.dyn_ltree[2*Lc]=1,A.opt_len=A.static_len=0,A.sym_next=A.matches=0},nl=A=>{8<A.bi_valid?zc(A,A.bi_buf):0<A.bi_valid&&(A.pending_buf[A.pending++]=A.bi_buf),A.bi_buf=0,A.bi_valid=0},il=(A,t,e,r)=>{var n=2*t,i=2*e;return A[n]<A[i]||A[n]===A[i]&&r[t]<=r[e]},sl=(A,t,e)=>{var r=A.heap[e];let n=e<<1;for(;n<=A.heap_len&&(n<A.heap_len&&il(t,A.heap[n+1],A.heap[n],A.depth)&&n++,!il(t,r,A.heap[n],A.depth));)A.heap[e]=A.heap[n],e=n,n<<=1;A.heap[e]=r},ol=(A,t,e)=>{var r,n,i,s;let o=0;if(0!==A.sym_next)for(;r=255&A.pending_buf[A.sym_buf+o++],r+=(255&A.pending_buf[A.sym_buf+o++])<<8,n=A.pending_buf[A.sym_buf+o++],0==r?$c(A,n,t):(i=Rc[n],$c(A,i+Fc+1,t),0!==(s=Tc[i])&&(n-=Vc[i],Zc(A,n,s)),r--,i=qc(r),$c(A,i,e),0!==(s=Dc[i])&&(r-=Gc[i],Zc(A,r,s))),o<A.sym_next;);$c(A,Lc,t)},al=(A,t)=>{var e=t.dyn_tree,r=t.stat_desc.static_tree,n=t.stat_desc.has_stree,i=t.stat_desc.elems;let s,o,a=-1,c;for(A.heap_len=0,A.heap_max=Ec,s=0;s<i;s++)0!==e[2*s]?(A.heap[++A.heap_len]=a=s,A.depth[s]=0):e[2*s+1]=0;for(;A.heap_len<2;)e[2*(c=A.heap[++A.heap_len]=a<2?++a:0)]=1,A.depth[c]=0,A.opt_len--,n&&(A.static_len-=r[2*c+1]);for(t.max_code=a,s=A.heap_len>>1;1<=s;s--)sl(A,e,s);for(c=i;s=A.heap[1],A.heap[1]=A.heap[A.heap_len--],sl(A,e,1),o=A.heap[1],A.heap[--A.heap_max]=s,A.heap[--A.heap_max]=o,e[2*c]=e[2*s]+e[2*o],A.depth[c]=(A.depth[s]>=A.depth[o]?A.depth[s]:A.depth[o])+1,e[2*s+1]=e[2*o+1]=c,A.heap[1]=c++,sl(A,e,1),2<=A.heap_len;);A.heap[--A.heap_max]=A.heap[1],tl(A,t),el(e,a,A.bl_count)},cl=(A,t,e)=>{let r,n=-1;var i;let s=t[1],o=0,a=7,c=4;for(0===s&&(a=138,c=3),t[2*(e+1)+1]=65535,r=0;r<=e;r++)i=s,s=t[2*(r+1)+1],++o<a&&i===s||(o<c?A.bl_tree[2*i]+=o:0!==i?(i!==n&&A.bl_tree[2*i]++,A.bl_tree[2*Sc]++):o<=10?A.bl_tree[2*Nc]++:A.bl_tree[2*_c]++,o=0,n=i,c=0===s?(a=138,3):i===s?(a=6,3):(a=7,4))},ll=(A,t,e)=>{let r,n=-1;var i;let s=t[1],o=0,a=7,c=4;for(0===s&&(a=138,c=3),r=0;r<=e;r++)if(i=s,s=t[2*(r+1)+1],!(++o<a&&i===s)){if(o<c)for(;$c(A,i,A.bl_tree),0!=--o;);else 0!==i?(i!==n&&($c(A,i,A.bl_tree),o--),$c(A,Sc,A.bl_tree),Zc(A,o-3,2)):o<=10?($c(A,Nc,A.bl_tree),Zc(A,o-3,3)):($c(A,_c,A.bl_tree),Zc(A,o-11,7));o=0,n=i,c=0===s?(a=138,3):i===s?(a=6,3):(a=7,4)}},ul=!1;let hl=(A,t,e,r)=>{Zc(A,0+(r?1:0),3),nl(A),zc(A,e),zc(A,~e),e&&A.pending_buf.set(A.window.subarray(t,t+e),A.pending),A.pending+=e};var n={_tr_init:A=>{ul||((()=>{let A,t,e,r,n;var i=new Array(xc+1);for(e=0,r=0;r<yc-1;r++)for(Vc[r]=e,A=0;A<1<<Tc[r];A++)Rc[e++]=r;
|
|
27
|
+
//Assert (length == 256, "tr_static_init: length != 256");
|
|
28
|
+
for(Rc[e-1]=r,n=0,r=0;r<16;r++)for(Gc[r]=n,A=0;A<1<<Dc[r];A++)Kc[n++]=r;
|
|
29
|
+
//Assert (dist == 256, "tr_static_init: dist != 256");
|
|
30
|
+
for(n>>=7;r<bc;r++)for(Gc[r]=n<<7,A=0;A<1<<Dc[r]-7;A++)Kc[256+n++]=r;
|
|
31
|
+
//Assert (dist == 256, "tr_static_init: 256+dist != 512");
|
|
32
|
+
for(t=0;t<=xc;t++)i[t]=0;for(A=0;A<=143;)Mc[2*A+1]=8,A++,i[8]++;for(;A<=255;)Mc[2*A+1]=9,A++,i[9]++;for(;A<=279;)Mc[2*A+1]=7,A++,i[7]++;for(;A<=287;)Mc[2*A+1]=8,A++,i[8]++;for(el(Mc,Uc+1,i),A=0;A<bc;A++)kc[2*A+1]=5,kc[2*A]=Al(A,5);Xc=new jc(Mc,Tc,Fc+1,Uc,xc),Wc=new jc(kc,Dc,0,bc,xc),Jc=new jc(new Array(0),Oc,0,vc,Hc)})(),ul=!0),A.l_desc=new Yc(A.dyn_ltree,Xc),A.d_desc=new Yc(A.dyn_dtree,Wc),A.bl_desc=new Yc(A.bl_tree,Jc),A.bi_buf=0,A.bi_valid=0,rl(A)},_tr_stored_block:hl,_tr_flush_block:(A,t,e,r)=>{let n,i,s=0;0<A.level?(2===A.strm.data_type&&(A.strm.data_type=(A=>{let t=4093624447,e;for(e=0;e<=31;e++,t>>>=1)if(1&t&&0!==A.dyn_ltree[2*e])return mc;if(0!==A.dyn_ltree[18]||0!==A.dyn_ltree[20]||0!==A.dyn_ltree[26])return Cc;for(e=32;e<Fc;e++)if(0!==A.dyn_ltree[2*e])return Cc;return mc})(A)),al(A,A.l_desc),al(A,A.d_desc),s=(A=>{let t;for(cl(A,A.dyn_ltree,A.l_desc.max_code),cl(A,A.dyn_dtree,A.d_desc.max_code),al(A,A.bl_desc),t=vc-1;3<=t&&0===A.bl_tree[2*Pc[t]+1];t--);return A.opt_len+=3*(t+1)+5+5+4,t})(A),n=A.opt_len+3+7>>>3,(i=A.static_len+3+7>>>3)<=n&&(n=i)):
|
|
33
|
+
// Assert(buf != (char*)0, "lost buf");
|
|
34
|
+
n=i=e+5,e+4<=n&&-1!==t?
|
|
35
|
+
/* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
|
|
36
|
+
* Otherwise we can't have processed more than WSIZE input bytes since
|
|
37
|
+
* the last block flush, because compression would have been
|
|
38
|
+
* successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
|
|
39
|
+
* transform a block into a stored block.
|
|
40
|
+
*/
|
|
41
|
+
hl(A,t,e,r):4===A.strategy||i===n?(Zc(A,2+(r?1:0),3),ol(A,Mc,kc)):(Zc(A,4+(r?1:0),3),((A,t,e,r)=>{let n;for(Zc(A,t-257,5),Zc(A,e-1,5),Zc(A,r-4,4),n=0;n<r;n++)Zc(A,A.bl_tree[2*Pc[n]+1],3);ll(A,A.dyn_ltree,t-1),ll(A,A.dyn_dtree,e-1)})(A,A.l_desc.max_code+1,A.d_desc.max_code+1,s+1),ol(A,A.dyn_ltree,A.dyn_dtree)),rl(A),r&&nl(A)},_tr_tally:(A,t,e)=>(A.pending_buf[A.sym_buf+A.sym_next++]=t,A.pending_buf[A.sym_buf+A.sym_next++]=t>>8,A.pending_buf[A.sym_buf+A.sym_next++]=e,0===t?A.dyn_ltree[2*e]++:(A.matches++,t--,A.dyn_ltree[2*(Rc[e]+Fc+1)]++,A.dyn_dtree[2*qc(t)]++),A.sym_next===A.sym_end),_tr_align:A=>{Zc(A,2,3),$c(A,Lc,Mc),16===(A=A).bi_valid?(zc(A,A.bi_buf),A.bi_buf=0,A.bi_valid=0):8<=A.bi_valid&&(A.pending_buf[A.pending++]=255&A.bi_buf,A.bi_buf>>=8,A.bi_valid-=8)}},Bl=(A,t,e,r)=>{let n=65535&A|0,i=A>>>16&65535|0,s=0;for(;0!==e;){for(e-=s=2e3<e?2e3:e;n=n+t[r++]|0,i=i+n|0,--s;);n%=65521,i%=65521}return n|i<<16|0};let gl=new Uint32Array((()=>{let A,t=[];for(var e=0;e<256;e++){A=e;for(var r=0;r<8;r++)A=1&A?3988292384^A>>>1:A>>>1;t[e]=A}return t})());var fl=(t,e,A,r)=>{var n=gl,i=r+A;t^=-1;for(let A=r;A<i;A++)t=t>>>8^n[255&(t^e[A])];return-1^t},dl={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},A={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8};let{_tr_init:pl,_tr_stored_block:wl,_tr_flush_block:ml,_tr_tally:Cl,_tr_align:Ql}=n,{Z_NO_FLUSH:yl,Z_PARTIAL_FLUSH:Fl,Z_FULL_FLUSH:Ul,Z_FINISH:bl,Z_BLOCK:vl,Z_OK:El,Z_STREAM_END:xl,Z_STREAM_ERROR:Il,Z_DATA_ERROR:Hl,Z_BUF_ERROR:Ll,Z_DEFAULT_COMPRESSION:Sl,Z_FILTERED:Nl,Z_HUFFMAN_ONLY:_l,Z_RLE:Tl,Z_FIXED:Dl,Z_DEFAULT_STRATEGY:Ol,Z_UNKNOWN:Pl,Z_DEFLATED:Ml}=A,kl=9;let Kl=286,Rl=30,Vl=19,Gl=2*Kl+1,jl=15,Xl=3,Wl=258,Jl=Wl+Xl+1,Yl=42,ql=57,zl=69,Zl=73,$l=91,Au=103,tu=113,eu=666,ru=1,nu=2,iu=3,su=4,ou=(A,t)=>(A.msg=dl[t],t),au=A=>2*A-(4<A?9:0),cu=A=>{let t=A.length;for(;0<=--t;)A[t]=0},lu=A=>{let t,e,r;var n=A.w_size;for(t=A.hash_size,r=t;e=A.head[--r],A.head[r]=e>=n?e-n:0,--t;);for(t=n,r=t;e=A.prev[--r],A.prev[r]=e>=n?e-n:0,--t;);};let uu=(A,t,e)=>(t<<A.hash_shift^e)&A.hash_mask,hu=A=>{var t=A.state;let e=t.pending;0!==(e=e>A.avail_out?A.avail_out:e)&&(A.output.set(t.pending_buf.subarray(t.pending_out,t.pending_out+e),A.next_out),A.next_out+=e,t.pending_out+=e,A.total_out+=e,A.avail_out-=e,t.pending-=e,0===t.pending)&&(t.pending_out=0)},Bu=(A,t)=>{ml(A,0<=A.block_start?A.block_start:-1,A.strstart-A.block_start,t),A.block_start=A.strstart,hu(A.strm)},gu=(A,t)=>{A.pending_buf[A.pending++]=t},fu=(A,t)=>{A.pending_buf[A.pending++]=t>>>8&255,A.pending_buf[A.pending++]=255&t},du=(A,t,e,r)=>{let n=A.avail_in;return 0===(n=n>r?r:n)?0:(A.avail_in-=n,t.set(A.input.subarray(A.next_in,A.next_in+n),e),1===A.state.wrap?A.adler=Bl(A.adler,t,n,e):2===A.state.wrap&&(A.adler=fl(A.adler,t,n,e)),A.next_in+=n,A.total_in+=n,n)},pu=(A,t)=>{let e=A.max_chain_length,r=A.strstart,n;var i;let s=A.prev_length,o=A.nice_match;var a=A.strstart>A.w_size-Jl?A.strstart-(A.w_size-Jl):0,c=A.window,l=A.w_mask,u=A.prev,h=A.strstart+Wl;let B=c[r+s-1],g=c[r+s];A.good_match<=A.prev_length&&(e>>=2),o>A.lookahead&&(o=A.lookahead);do{if(c[(n=t)+s]===g&&c[n+s-1]===B&&c[n]===c[r]&&c[++n]===c[r+1]){for(r+=2,n++;c[++r]===c[++n]&&c[++r]===c[++n]&&c[++r]===c[++n]&&c[++r]===c[++n]&&c[++r]===c[++n]&&c[++r]===c[++n]&&c[++r]===c[++n]&&c[++r]===c[++n]&&r<h;);if(i=Wl-(h-r),r=h-Wl,i>s){if(A.match_start=t,(s=i)>=o)break;B=c[r+s-1],g=c[r+s]}}}while((t=u[t&l])>a&&0!=--e);return s<=A.lookahead?s:A.lookahead},wu=A=>{var t=A.w_size;let e,r,n;do{if(r=A.window_size-A.lookahead-A.strstart,
|
|
42
|
+
/* Deal with !@#$% 64K limit: */
|
|
43
|
+
A.strstart>=t+(t-Jl)&&(A.window.set(A.window.subarray(t,t+t-r),0),A.match_start-=t,A.strstart-=t,A.block_start-=t,A.strstart<A.insert&&(A.insert=A.strstart),lu(A),r+=t),0===A.strm.avail_in)break;if(e=du(A.strm,A.window,A.strstart+A.lookahead,r),A.lookahead+=e,A.lookahead+A.insert>=Xl)
|
|
44
|
+
//#if MIN_MATCH != 3
|
|
45
|
+
for(n=A.strstart-A.insert,A.ins_h=A.window[n],A.ins_h=uu(A,A.ins_h,A.window[n+1]);A.insert&&(A.ins_h=uu(A,A.ins_h,A.window[n+Xl-1]),A.prev[n&A.w_mask]=A.head[A.ins_h],A.head[A.ins_h]=n,n++,A.insert--,!(A.lookahead+A.insert<Xl)););}while(A.lookahead<Jl&&0!==A.strm.avail_in)},mu=(A,t)=>{let e=A.pending_buf_size-5>A.w_size?A.w_size:A.pending_buf_size-5,r,n,i,s=0;for(var o=A.strm.avail_in;r=65535,i=A.bi_valid+42>>3,!(A.strm.avail_out<i||(i=A.strm.avail_out-i,n=A.strstart-A.block_start,(r=(r=r>n+A.strm.avail_in?n+A.strm.avail_in:r)>i?i:r)<e&&(0===r&&t!==bl||t===yl||r!==n+A.strm.avail_in))||(s=t===bl&&r===n+A.strm.avail_in?1:0,wl(A,0,0,s),A.pending_buf[A.pending-4]=r,A.pending_buf[A.pending-3]=r>>8,A.pending_buf[A.pending-2]=~r,A.pending_buf[A.pending-1]=~r>>8,hu(A.strm),n&&(n>r&&(n=r),A.strm.output.set(A.window.subarray(A.block_start,A.block_start+n),A.strm.next_out),A.strm.next_out+=n,A.strm.avail_out-=n,A.strm.total_out+=n,A.block_start+=n,r-=n),r&&(du(A.strm,A.strm.output,A.strm.next_out,r),A.strm.next_out+=r,A.strm.avail_out-=r,A.strm.total_out+=r),0!==s)););return(o-=A.strm.avail_in)&&(o>=A.w_size?(A.matches=2,A.window.set(A.strm.input.subarray(A.strm.next_in-A.w_size,A.strm.next_in),0),A.strstart=A.w_size,A.insert=A.strstart):(A.window_size-A.strstart<=o&&(A.strstart-=A.w_size,A.window.set(A.window.subarray(A.w_size,A.w_size+A.strstart),0),A.matches<2&&A.matches++,A.strstart<A.insert)&&(A.insert=A.strstart),A.window.set(A.strm.input.subarray(A.strm.next_in-o,A.strm.next_in),A.strstart),A.strstart+=o,A.insert+=A.w_size-A.insert<o?A.w_size-A.insert:o),A.block_start=A.strstart),A.high_water<A.strstart&&(A.high_water=A.strstart),s?su:t!==yl&&t!==bl&&0===A.strm.avail_in&&A.strstart===A.block_start?nu:(i=A.window_size-A.strstart,A.strm.avail_in>i&&A.block_start>=A.w_size&&(A.block_start-=A.w_size,A.strstart-=A.w_size,A.window.set(A.window.subarray(A.w_size,A.w_size+A.strstart),0),A.matches<2&&A.matches++,i+=A.w_size,A.strstart<A.insert)&&(A.insert=A.strstart),(i=i>A.strm.avail_in?A.strm.avail_in:i)&&(du(A.strm,A.window,A.strstart,i),A.strstart+=i,A.insert+=i>A.w_size-A.insert?A.w_size-A.insert:i),A.high_water<A.strstart&&(A.high_water=A.strstart),i=A.bi_valid+42>>3,i=65535<A.pending_buf_size-i?65535:A.pending_buf_size-i,e=i>A.w_size?A.w_size:i,((n=A.strstart-A.block_start)>=e||(n||t===bl)&&t!==yl&&0===A.strm.avail_in&&n<=i)&&(r=n>i?i:n,s=t===bl&&0===A.strm.avail_in&&r===n?1:0,wl(A,A.block_start,r,s),A.block_start+=r,hu(A.strm)),s?iu:ru)};var i=(A,t)=>{let e,r;for(;;){if(A.lookahead<Jl){if(wu(A),A.lookahead<Jl&&t===yl)return ru;if(0===A.lookahead)break}if(e=0,A.lookahead>=Xl&&(A.ins_h=uu(A,A.ins_h,A.window[A.strstart+Xl-1]),e=A.prev[A.strstart&A.w_mask]=A.head[A.ins_h],A.head[A.ins_h]=A.strstart),0!==e&&A.strstart-e<=A.w_size-Jl&&(A.match_length=pu(A,e)),A.match_length>=Xl)if(r=Cl(A,A.strstart-A.match_start,A.match_length-Xl),A.lookahead-=A.match_length,A.match_length<=A.max_lazy_match&&A.lookahead>=Xl){for(A.match_length--;A.strstart++,A.ins_h=uu(A,A.ins_h,A.window[A.strstart+Xl-1]),e=A.prev[A.strstart&A.w_mask]=A.head[A.ins_h],A.head[A.ins_h]=A.strstart,0!=--A.match_length;);A.strstart++}else A.strstart+=A.match_length,A.match_length=0,A.ins_h=A.window[A.strstart],A.ins_h=uu(A,A.ins_h,A.window[A.strstart+1]);else r=Cl(A,0,A.window[A.strstart]),A.lookahead--,A.strstart++;if(r&&(Bu(A,!1),0===A.strm.avail_out))return ru}return A.insert=A.strstart<Xl-1?A.strstart:Xl-1,t===bl?(Bu(A,!0),0===A.strm.avail_out?iu:su):A.sym_next&&(Bu(A,!1),0===A.strm.avail_out)?ru:nu},s=(A,t)=>{let e,r;for(var n;;){if(A.lookahead<Jl){if(wu(A),A.lookahead<Jl&&t===yl)return ru;if(0===A.lookahead)break}if(e=0,A.lookahead>=Xl&&(A.ins_h=uu(A,A.ins_h,A.window[A.strstart+Xl-1]),e=A.prev[A.strstart&A.w_mask]=A.head[A.ins_h],A.head[A.ins_h]=A.strstart),A.prev_length=A.match_length,A.prev_match=A.match_start,A.match_length=Xl-1,0!==e&&A.prev_length<A.max_lazy_match&&A.strstart-e<=A.w_size-Jl&&(A.match_length=pu(A,e),A.match_length<=5)&&(A.strategy===Nl||A.match_length===Xl&&4096<A.strstart-A.match_start)&&(A.match_length=Xl-1),A.prev_length>=Xl&&A.match_length<=A.prev_length){for(n=A.strstart+A.lookahead-Xl,r=Cl(A,A.strstart-1-A.prev_match,A.prev_length-Xl),A.lookahead-=A.prev_length-1,A.prev_length-=2;++A.strstart<=n&&(A.ins_h=uu(A,A.ins_h,A.window[A.strstart+Xl-1]),e=A.prev[A.strstart&A.w_mask]=A.head[A.ins_h],A.head[A.ins_h]=A.strstart),0!=--A.prev_length;);if(A.match_available=0,A.match_length=Xl-1,A.strstart++,r&&(Bu(A,!1),0===A.strm.avail_out))return ru}else if(A.match_available){if((r=Cl(A,0,A.window[A.strstart-1]))&&Bu(A,!1),A.strstart++,A.lookahead--,0===A.strm.avail_out)return ru}else A.match_available=1,A.strstart++,A.lookahead--}
|
|
46
|
+
//Assert (flush != Z_NO_FLUSH, "no flush?");
|
|
47
|
+
return A.match_available&&(r=Cl(A,0,A.window[A.strstart-1]),A.match_available=0),A.insert=A.strstart<Xl-1?A.strstart:Xl-1,t===bl?(Bu(A,!0),0===A.strm.avail_out?iu:su):A.sym_next&&(Bu(A,!1),0===A.strm.avail_out)?ru:nu};function Cu(A,t,e,r,n){this.good_length=A,this.max_lazy=t,this.nice_length=e,this.max_chain=r,this.func=n}let Qu=[new Cu(0,0,0,0,mu),new Cu(4,4,8,4,i),new Cu(4,5,16,8,i),new Cu(4,6,32,32,i),new Cu(4,4,16,16,s),new Cu(8,16,32,32,s),new Cu(8,16,128,128,s),new Cu(8,32,128,256,s),new Cu(32,128,258,1024,s),new Cu(32,258,258,4096,s)],yu=A=>{A.window_size=2*A.w_size,cu(A.head),A.max_lazy_match=Qu[A.level].max_lazy,A.good_match=Qu[A.level].good_length,A.nice_match=Qu[A.level].nice_length,A.max_chain_length=Qu[A.level].max_chain,A.strstart=0,A.block_start=0,A.lookahead=0,A.insert=0,A.match_length=A.prev_length=Xl-1,A.match_available=0,A.ins_h=0};function Fu(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=Ml,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(2*Gl),this.dyn_dtree=new Uint16Array(2*(2*Rl+1)),this.bl_tree=new Uint16Array(2*(2*Vl+1)),cu(this.dyn_ltree),cu(this.dyn_dtree),cu(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(jl+1),this.heap=new Uint16Array(2*Kl+1),cu(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(2*Kl+1),cu(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}let Uu=A=>{var t;return!A||!(t=A.state)||t.strm!==A||t.status!==Yl&&t.status!==ql&&t.status!==zl&&t.status!==Zl&&t.status!==$l&&t.status!==Au&&t.status!==tu&&t.status!==eu?1:0},bu=A=>{if(Uu(A))return ou(A,Il);A.total_in=A.total_out=0,A.data_type=Pl;var t=A.state;return t.pending=0,t.pending_out=0,t.wrap<0&&(t.wrap=-t.wrap),t.status=2===t.wrap?ql:t.wrap?Yl:tu,A.adler=2===t.wrap?0:1,t.last_flush=-2,pl(t),El},vu=A=>{var t=bu(A);return t===El&&yu(A.state),t};let Eu=(A,t,e,r,n,i)=>{if(!A)return Il;let s=1;if(t===Sl&&(t=6),r<0?(s=0,r=-r):15<r&&(s=2,r-=16),n<1||n>kl||e!==Ml||r<8||15<r||t<0||9<t||i<0||i>Dl||8===r&&1!==s)return ou(A,Il);8===r&&(r=9);var o=new Fu;return(A.state=o).strm=A,o.status=Yl,o.wrap=s,o.gzhead=null,o.w_bits=r,o.w_size=1<<o.w_bits,o.w_mask=o.w_size-1,o.hash_bits=n+7,o.hash_size=1<<o.hash_bits,o.hash_mask=o.hash_size-1,o.hash_shift=~~((o.hash_bits+Xl-1)/Xl),o.window=new Uint8Array(2*o.w_size),o.head=new Uint16Array(o.hash_size),o.prev=new Uint16Array(o.w_size),o.lit_bufsize=1<<n+6,o.pending_buf_size=4*o.lit_bufsize,o.pending_buf=new Uint8Array(o.pending_buf_size),o.sym_buf=o.lit_bufsize,o.sym_end=3*(o.lit_bufsize-1),o.level=t,o.strategy=i,o.method=e,vu(A)};Eu,vu,bu;var xu=function(A){for(var t,e,r=Array.prototype.slice.call(arguments,1);r.length;){var n=r.shift();if(n){if("object"!=typeof n)throw new TypeError(n+"must be non-object");for(var i in n)t=n,e=i,Object.prototype.hasOwnProperty.call(t,e)&&(A[i]=n[i])}}return A},Iu=r=>{let e=0;for(let A=0,t=r.length;A<t;A++)e+=r[A].length;var n=new Uint8Array(e);for(let A=0,t=0,e=r.length;A<e;A++){var i=r[A];n.set(i,t),t+=i.length}return n};let Hu=!0;try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(A){Hu=!1}let Lu=new Uint8Array(256);for(let A=0;A<256;A++)Lu[A]=252<=A?6:248<=A?5:240<=A?4:224<=A?3:192<=A?2:1;Lu[254]=Lu[254]=1;var Su=A=>{if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(A);let t,e,r,n,i,s=A.length,o=0;for(n=0;n<s;n++)55296==(64512&(e=A.charCodeAt(n)))&&n+1<s&&56320==(64512&(r=A.charCodeAt(n+1)))&&(e=65536+(e-55296<<10)+(r-56320),n++),o+=e<128?1:e<2048?2:e<65536?3:4;for(t=new Uint8Array(o),i=0,n=0;i<o;n++)55296==(64512&(e=A.charCodeAt(n)))&&n+1<s&&56320==(64512&(r=A.charCodeAt(n+1)))&&(e=65536+(e-55296<<10)+(r-56320),n++),e<128?t[i++]=e:(e<2048?t[i++]=192|e>>>6:(e<65536?t[i++]=224|e>>>12:(t[i++]=240|e>>>18,t[i++]=128|e>>>12&63),t[i++]=128|e>>>6&63),t[i++]=128|63&e);return t},Nu=(e,A)=>{var r=A||e.length;if("function"==typeof TextDecoder&&TextDecoder.prototype.decode)return(new TextDecoder).decode(e.subarray(0,A));let n,i;var s=new Array(2*r);for(i=0,n=0;n<r;){let t=e[n++];if(t<128)s[i++]=t;else{let A=Lu[t];if(4<A)s[i++]=65533,n+=A-1;else{for(t&=2===A?31:3===A?15:7;1<A&&n<r;)t=t<<6|63&e[n++],A--;1<A?s[i++]=65533:t<65536?s[i++]=t:(t-=65536,s[i++]=55296|t>>10&1023,s[i++]=56320|1023&t)}}}return((t,e)=>{if(e<65534&&t.subarray&&Hu)return String.fromCharCode.apply(null,t.length===e?t:t.subarray(0,e));let r="";for(let A=0;A<e;A++)r+=String.fromCharCode(t[A]);return r})(s,i)},_u=(A,t)=>{let e=(t=(t=t||A.length)>A.length?A.length:t)-1;for(;0<=e&&128==(192&A[e]);)e--;return!(e<0)&&0!==e&&e+Lu[A[e]]>t?e:t};var Tu=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0};Object.prototype.toString;let{}=A;let Du=16209,Ou=16191;let Pu=new Uint16Array([3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0]),Mu=new Uint8Array([16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78]),ku=new Uint16Array([1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0]),Ku=new Uint8Array([16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64]);var Ru=(A,t,e,r,n,i,s,o)=>{var a,c=o.bits;let l=0,u=0,h=0,B=0,g=0,f=0,d=0,p=0,w=0,m=0,C,Q,y,F,U=null,b;var v=new Uint16Array(16),E=new Uint16Array(16);let x=null,I,H,L;for(l=0;l<=15;l++)v[l]=0;for(u=0;u<r;u++)v[t[e+u]]++;for(g=c,B=15;1<=B&&0===v[B];B--);if(g>B&&(g=B),0===B)n[i++]=20971520,n[i++]=20971520,o.bits=1;else{for(h=1;h<B&&0===v[h];h++);for(g<h&&(g=h),p=1,l=1;l<=15;l++)if((p=(p<<=1)-v[l])<0)return-1;if(0<p&&(0===A||1!==B))return-1;for(E[1]=0,l=1;l<15;l++)E[l+1]=E[l]+v[l];for(u=0;u<r;u++)0!==t[e+u]&&(s[E[t[e+u]]++]=u);if(b=0===A?(U=x=s,20):1===A?(U=Pu,x=Mu,257):(U=ku,x=Ku,0),m=0,u=0,l=h,F=i,f=g,d=0,y=-1,a=(w=1<<g)-1,1===A&&852<w||2===A&&592<w)return 1;for(;;){for(I=l-d,L=s[u]+1<b?(H=0,s[u]):s[u]>=b?(H=x[s[u]-b],U[s[u]-b]):(H=96,0),C=1<<l-d,Q=1<<f,h=Q;Q-=C,n[F+(m>>d)+Q]=I<<24|H<<16|L|0,0!==Q;);for(C=1<<l-1;m&C;)C>>=1;if(m=0!==C?(m&=C-1)+C:0,u++,0==--v[l]){if(l===B)break;l=t[e+s[u]]}if(l>g&&(m&a)!==y){for(0===d&&(d=g),F+=h,f=l-d,p=1<<f;f+d<B&&!((p-=v[f+d])<=0);)f++,p<<=1;if(w+=1<<f,1===A&&852<w||2===A&&592<w)return 1;n[y=m&a]=g<<24|f<<16|F-i|0}}0!==m&&(n[F+m]=l-d<<24|64<<16|0),o.bits=g}return 0};let Vu=1,Gu=2,{Z_FINISH:ju,Z_BLOCK:Xu,Z_TREES:Wu,Z_OK:Ju,Z_STREAM_END:Yu,Z_NEED_DICT:qu,Z_STREAM_ERROR:zu,Z_DATA_ERROR:Zu,Z_MEM_ERROR:$u,Z_BUF_ERROR:Ah,Z_DEFLATED:th}=A,eh=16180,rh=16190,nh=16191,ih=16199,sh=16200,oh=16209,ah=16211,ch=852,lh=592;let uh=A=>(A>>>24&255)+(A>>>8&65280)+((65280&A)<<8)+((255&A)<<24);function hh(){this.strm=null,this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}let Bh=A=>{var t;return!A||!(t=A.state)||t.strm!==A||t.mode<eh||t.mode>ah?1:0},gh=A=>{var t;return Bh(A)?zu:(t=A.state,A.total_in=A.total_out=t.total=0,A.msg="",t.wrap&&(A.adler=1&t.wrap),t.mode=eh,t.last=0,t.havedict=0,t.flags=-1,t.dmax=32768,t.head=null,t.hold=0,t.bits=0,t.lencode=t.lendyn=new Int32Array(ch),t.distcode=t.distdyn=new Int32Array(lh),t.sane=1,t.back=-1,Ju)},fh=A=>{var t;return Bh(A)?zu:((t=A.state).wsize=0,t.whave=0,t.wnext=0,gh(A))},dh=(A,t)=>{let e;var r;return Bh(A)||(r=A.state,t<0?(e=0,t=-t):(e=5+(t>>4),t<48&&(t&=15)),t&&(t<8||15<t))?zu:(null!==r.window&&r.wbits!==t&&(r.window=null),r.wrap=e,r.wbits=t,fh(A))},ph=(A,t)=>{var e;return A?(e=new hh,(A.state=e).strm=A,e.window=null,e.mode=eh,(e=dh(A,t))!==Ju&&(A.state=null),e):zu};let wh=!0,mh,Ch,Qh=(A,t,e,r)=>{let n;A=A.state;return null===A.window&&(A.wsize=1<<A.wbits,A.wnext=0,A.whave=0,A.window=new Uint8Array(A.wsize)),A.wsize<=r?(A.window.set(t.subarray(e-A.wsize,e),0),A.wnext=0,A.whave=A.wsize):((n=A.wsize-A.wnext)>r&&(n=r),A.window.set(t.subarray(e-r,e-r+n),A.wnext),(r-=n)?(A.window.set(t.subarray(e-r,e),0),A.wnext=r,A.whave=A.wsize):(A.wnext+=n,A.wnext===A.wsize&&(A.wnext=0),A.whave<A.wsize&&(A.whave+=n))),0};var yh={inflateReset:fh,inflateReset2:dh,inflateResetKeep:gh,inflateInit:A=>ph(A,15),inflateInit2:ph,inflate:(c,A)=>{var t;let e,r,n,i,s,o,a,l,u,h,B,D,O,g=0,f,d,p,w,m,C,Q,y;var F=new Uint8Array(4);let U,b;var v,P,E,M,x,k,I,H,K,R,V,G,L,S,N,j=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);if(Bh(c)||!c.output||!c.input&&0!==c.avail_in)return zu;(t=c.state).mode===nh&&(t.mode=16192),i=c.next_out,r=c.output,o=c.avail_out,n=c.next_in,e=c.input,s=c.avail_in,a=t.hold,l=t.bits,u=s,h=o,y=Ju;A:for(;;)switch(t.mode){case eh:if(0===t.wrap)t.mode=16192;else{for(;l<16;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}2&t.wrap&&35615===a?(0===t.wbits&&(t.wbits=15),F[t.check=0]=255&a,F[1]=a>>>8&255,t.check=fl(t.check,F,2,0),a=0,l=0,t.mode=16181):(t.head&&(t.head.done=!1),!(1&t.wrap)||(((255&a)<<8)+(a>>8))%31?(c.msg="incorrect header check",t.mode=oh):(15&a)!==th?(c.msg="unknown compression method",t.mode=oh):(a>>>=4,l-=4,Q=8+(15&a),0===t.wbits&&(t.wbits=Q),15<Q||Q>t.wbits?(c.msg="invalid window size",t.mode=oh):(
|
|
48
|
+
// !!! pako patch. Force use `options.windowBits` if passed.
|
|
49
|
+
t.dmax=1<<t.wbits,t.flags=0,c.adler=t.check=1,t.mode=512&a?16189:nh,a=0,l=0)))}break;case 16181:for(;l<16;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}if(t.flags=a,(255&t.flags)!==th){c.msg="unknown compression method",t.mode=oh;break}if(57344&t.flags){c.msg="unknown header flags set",t.mode=oh;break}t.head&&(t.head.text=a>>8&1),512&t.flags&&4&t.wrap&&(F[0]=255&a,F[1]=a>>>8&255,t.check=fl(t.check,F,2,0)),a=0,l=0,t.mode=16182;case 16182:for(;l<32;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}t.head&&(t.head.time=a),512&t.flags&&4&t.wrap&&(F[0]=255&a,F[1]=a>>>8&255,F[2]=a>>>16&255,F[3]=a>>>24&255,t.check=fl(t.check,F,4,0)),a=0,l=0,t.mode=16183;case 16183:for(;l<16;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}t.head&&(t.head.xflags=255&a,t.head.os=a>>8),512&t.flags&&4&t.wrap&&(F[0]=255&a,F[1]=a>>>8&255,t.check=fl(t.check,F,2,0)),a=0,l=0,t.mode=16184;case 16184:if(1024&t.flags){for(;l<16;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}t.length=a,t.head&&(t.head.extra_len=a),512&t.flags&&4&t.wrap&&(F[0]=255&a,F[1]=a>>>8&255,t.check=fl(t.check,F,2,0)),a=0,l=0}else t.head&&(t.head.extra=null);t.mode=16185;case 16185:if(1024&t.flags&&((B=(B=t.length)>s?s:B)&&(t.head&&(Q=t.head.extra_len-t.length,t.head.extra||(t.head.extra=new Uint8Array(t.head.extra_len)),t.head.extra.set(e.subarray(n,n+B),Q)),512&t.flags&&4&t.wrap&&(t.check=fl(t.check,e,B,n)),s-=B,n+=B,t.length-=B),t.length))break A;t.length=0,t.mode=16186;case 16186:if(2048&t.flags){if(0===s)break A;for(B=0;Q=e[n+B++],t.head&&Q&&t.length<65536&&(t.head.name+=String.fromCharCode(Q)),Q&&B<s;);if(512&t.flags&&4&t.wrap&&(t.check=fl(t.check,e,B,n)),s-=B,n+=B,Q)break A}else t.head&&(t.head.name=null);t.length=0,t.mode=16187;case 16187:if(4096&t.flags){if(0===s)break A;for(B=0;Q=e[n+B++],t.head&&Q&&t.length<65536&&(t.head.comment+=String.fromCharCode(Q)),Q&&B<s;);if(512&t.flags&&4&t.wrap&&(t.check=fl(t.check,e,B,n)),s-=B,n+=B,Q)break A}else t.head&&(t.head.comment=null);t.mode=16188;case 16188:if(512&t.flags){for(;l<16;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}if(4&t.wrap&&a!==(65535&t.check)){c.msg="header crc mismatch",t.mode=oh;break}a=0,l=0}t.head&&(t.head.hcrc=t.flags>>9&1,t.head.done=!0),c.adler=t.check=0,t.mode=nh;break;case 16189:for(;l<32;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}c.adler=t.check=uh(a),a=0,l=0,t.mode=rh;case rh:if(0===t.havedict)return c.next_out=i,c.avail_out=o,c.next_in=n,c.avail_in=s,t.hold=a,t.bits=l,qu;c.adler=t.check=1,t.mode=nh;case nh:if(A===Xu||A===Wu)break A;case 16192:if(t.last)a>>>=7&l,l-=7&l,t.mode=16206;else{for(;l<3;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}switch(t.last=1&a,a>>>=1,--l,3&a){case 0:t.mode=16193;break;case 1:if((t=>{if(wh){mh=new Int32Array(512),Ch=new Int32Array(32);let A=0;for(;A<144;)t.lens[A++]=8;for(;A<256;)t.lens[A++]=9;for(;A<280;)t.lens[A++]=7;for(;A<288;)t.lens[A++]=8;for(Ru(Vu,t.lens,0,288,mh,0,t.work,{bits:9}),A=0;A<32;)t.lens[A++]=5;Ru(Gu,t.lens,0,32,Ch,0,t.work,{bits:5}),wh=!1}t.lencode=mh,t.lenbits=9,t.distcode=Ch,t.distbits=5})(t),t.mode=ih,A!==Wu)break;a>>>=2,l-=2;break A;case 2:t.mode=16196;break;case 3:c.msg="invalid block type",t.mode=oh}a>>>=2,l-=2}break;case 16193:for(a>>>=7&l,l-=7&l;l<32;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}if((65535&a)!=(a>>>16^65535)){c.msg="invalid stored block lengths",t.mode=oh;break}if(t.length=65535&a,a=0,l=0,t.mode=16194,A===Wu)break A;case 16194:t.mode=16195;case 16195:if(B=t.length){if(0===(B=(B=B>s?s:B)>o?o:B))break A;r.set(e.subarray(n,n+B),i),s-=B,n+=B,o-=B,i+=B,t.length-=B}else t.mode=nh;break;case 16196:for(;l<14;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}if(t.nlen=257+(31&a),a>>>=5,l-=5,t.ndist=1+(31&a),a>>>=5,l-=5,t.ncode=4+(15&a),a>>>=4,l-=4,286<t.nlen||30<t.ndist){c.msg="too many length or distance symbols",t.mode=oh;break}t.have=0,t.mode=16197;case 16197:for(;t.have<t.ncode;){for(;l<3;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}t.lens[j[t.have++]]=7&a,a>>>=3,l-=3}for(;t.have<19;)t.lens[j[t.have++]]=0;if(t.lencode=t.lendyn,t.lenbits=7,U={bits:t.lenbits},y=Ru(0,t.lens,0,19,t.lencode,0,t.work,U),t.lenbits=U.bits,y){c.msg="invalid code lengths set",t.mode=oh;break}t.have=0,t.mode=16198;case 16198:for(;t.have<t.nlen+t.ndist;){for(;g=t.lencode[a&(1<<t.lenbits)-1],f=g>>>24,d=g>>>16&255,p=65535&g,!(f<=l);){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}if(p<16)a>>>=f,l-=f,t.lens[t.have++]=p;else{if(16===p){for(b=f+2;l<b;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}if(a>>>=f,l-=f,0===t.have){c.msg="invalid bit length repeat",t.mode=oh;break}Q=t.lens[t.have-1],B=3+(3&a),a>>>=2,l-=2}else if(17===p){for(b=f+3;l<b;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}a>>>=f,l-=f,Q=0,B=3+(7&a),a>>>=3,l-=3}else{for(b=f+7;l<b;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}a>>>=f,l-=f,Q=0,B=11+(127&a),a>>>=7,l-=7}if(t.have+B>t.nlen+t.ndist){c.msg="invalid bit length repeat",t.mode=oh;break}for(;B--;)t.lens[t.have++]=Q}}if(t.mode===oh)break;if(0===t.lens[256]){c.msg="invalid code -- missing end-of-block",t.mode=oh;break}if(t.lenbits=9,U={bits:t.lenbits},y=Ru(Vu,t.lens,0,t.nlen,t.lencode,0,t.work,U),t.lenbits=U.bits,y){c.msg="invalid literal/lengths set",t.mode=oh;break}if(t.distbits=6,t.distcode=t.distdyn,U={bits:t.distbits},y=Ru(Gu,t.lens,t.nlen,t.ndist,t.distcode,0,t.work,U),t.distbits=U.bits,y){c.msg="invalid distances set",t.mode=oh;break}if(t.mode=ih,A===Wu)break A;case ih:t.mode=sh;case sh:if(6<=s&&258<=o){c.next_out=i,c.avail_out=o,c.next_in=n,c.avail_in=s,t.hold=a,t.bits=l;{_=void 0;X=void 0;v=void 0;P=void 0;E=void 0;M=void 0;x=void 0;k=void 0;I=void 0;H=void 0;K=void 0;R=void 0;V=void 0;G=void 0;L=void 0;S=void 0;N=void 0;T=void 0;var _=c;var X=h;let A;let t,e,r,n,i,s,o,a;var T=_.state;A=_.next_in,S=_.input,v=A+(_.avail_in-5),t=_.next_out,N=_.output,P=t-(X-_.avail_out),E=t+(_.avail_out-257),M=T.dmax,x=T.wsize,k=T.whave,I=T.wnext,H=T.window,e=T.hold,r=T.bits,K=T.lencode,R=T.distcode,V=(1<<T.lenbits)-1,G=(1<<T.distbits)-1;t:do{for(r<15&&(e+=S[A++]<<r,r+=8,e+=S[A++]<<r,r+=8),n=K[e&V];;){if(i=n>>>24,e>>>=i,r-=i,0===(i=n>>>16&255))N[t++]=65535&n;else{if(!(16&i)){if(0==(64&i)){n=K[(65535&n)+(e&(1<<i)-1)];continue}if(32&i){T.mode=Ou;break t}_.msg="invalid literal/length code",T.mode=Du;break t}for(s=65535&n,(i&=15)&&(r<i&&(e+=S[A++]<<r,r+=8),s+=e&(1<<i)-1,e>>>=i,r-=i),r<15&&(e+=S[A++]<<r,r+=8,e+=S[A++]<<r,r+=8),n=R[e&G];;){if(i=n>>>24,e>>>=i,r-=i,!(16&(i=n>>>16&255))){if(0==(64&i)){n=R[(65535&n)+(e&(1<<i)-1)];continue}_.msg="invalid distance code",T.mode=Du;break t}if(L=65535&n,i&=15,r<i&&(e+=S[A++]<<r,(r+=8)<i)&&(e+=S[A++]<<r,r+=8),M<(L+=e&(1<<i)-1)){_.msg="invalid distance too far back",T.mode=Du;break t}if(e>>>=i,r-=i,L>(i=t-P)){if((i=L-i)>k&&T.sane){_.msg="invalid distance too far back",T.mode=Du;break t}
|
|
50
|
+
// (!) This block is disabled in zlib defaults,
|
|
51
|
+
if(o=0,a=H,0===I){if(o+=x-i,i<s){for(s-=i;N[t++]=H[o++],--i;);o=t-L,a=N}}else if(I<i){if(o+=x+I-i,(i-=I)<s){for(s-=i;N[t++]=H[o++],--i;);if(o=0,I<s){for(i=I,s-=i;N[t++]=H[o++],--i;);o=t-L,a=N}}}else if(o+=I-i,i<s){for(s-=i;N[t++]=H[o++],--i;);o=t-L,a=N}for(;2<s;)N[t++]=a[o++],N[t++]=a[o++],N[t++]=a[o++],s-=3;s&&(N[t++]=a[o++],1<s)&&(N[t++]=a[o++])}else{for(o=t-L;N[t++]=N[o++],N[t++]=N[o++],N[t++]=N[o++],2<(s-=3););s&&(N[t++]=N[o++],1<s)&&(N[t++]=N[o++])}break}}break}}while(A<v&&t<E);s=r>>3,A-=s,r-=s<<3,e&=(1<<r)-1,_.next_in=A,_.next_out=t,_.avail_in=A<v?v-A+5:5-(A-v),_.avail_out=t<E?E-t+257:257-(t-E),T.hold=e,T.bits=r}i=c.next_out,r=c.output,o=c.avail_out,n=c.next_in,e=c.input,s=c.avail_in,a=t.hold,l=t.bits,t.mode===nh&&(t.back=-1);break}for(t.back=0;g=t.lencode[a&(1<<t.lenbits)-1],f=g>>>24,d=g>>>16&255,p=65535&g,!(f<=l);){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}if(d&&0==(240&d)){for(w=f,m=d,C=p;g=t.lencode[C+((a&(1<<w+m)-1)>>w)],f=g>>>24,d=g>>>16&255,p=65535&g,!(w+f<=l);){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}a>>>=w,l-=w,t.back+=w}if(a>>>=f,l-=f,t.back+=f,t.length=p,0===d){t.mode=16205;break}if(32&d){t.back=-1,t.mode=nh;break}if(64&d){c.msg="invalid literal/length code",t.mode=oh;break}t.extra=15&d,t.mode=16201;case 16201:if(t.extra){for(b=t.extra;l<b;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}t.length+=a&(1<<t.extra)-1,a>>>=t.extra,l-=t.extra,t.back+=t.extra}t.was=t.length,t.mode=16202;case 16202:for(;g=t.distcode[a&(1<<t.distbits)-1],f=g>>>24,d=g>>>16&255,p=65535&g,!(f<=l);){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}if(0==(240&d)){for(w=f,m=d,C=p;g=t.distcode[C+((a&(1<<w+m)-1)>>w)],f=g>>>24,d=g>>>16&255,p=65535&g,!(w+f<=l);){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}a>>>=w,l-=w,t.back+=w}if(a>>>=f,l-=f,t.back+=f,64&d){c.msg="invalid distance code",t.mode=oh;break}t.offset=p,t.extra=15&d,t.mode=16203;case 16203:if(t.extra){for(b=t.extra;l<b;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}t.offset+=a&(1<<t.extra)-1,a>>>=t.extra,l-=t.extra,t.back+=t.extra}if(t.offset>t.dmax){c.msg="invalid distance too far back",t.mode=oh;break}t.mode=16204;case 16204:if(0===o)break A;if(B=h-o,t.offset>B){if((B=t.offset-B)>t.whave&&t.sane){c.msg="invalid distance too far back",t.mode=oh;break}
|
|
52
|
+
// (!) This block is disabled in zlib defaults,
|
|
53
|
+
D=B>t.wnext?(B-=t.wnext,t.wsize-B):t.wnext-B,B>t.length&&(B=t.length),O=t.window}else O=r,D=i-t.offset,B=t.length;for(B>o&&(B=o),o-=B,t.length-=B;r[i++]=O[D++],--B;);0===t.length&&(t.mode=sh);break;case 16205:if(0===o)break A;r[i++]=t.length,o--,t.mode=sh;break;case 16206:if(t.wrap){for(;l<32;){if(0===s)break A;s--,a|=e[n++]<<l,l+=8}if(h-=o,c.total_out+=h,t.total+=h,4&t.wrap&&h&&(c.adler=t.check=(t.flags?fl:Bl)(t.check,r,h,i-h)),h=o,4&t.wrap&&(t.flags?a:uh(a))!==t.check){c.msg="incorrect data check",t.mode=oh;break}a=0,l=0}t.mode=16207;case 16207:if(t.wrap&&t.flags){for(;l<32;){if(0===s)break A;s--,a+=e[n++]<<l,l+=8}if(4&t.wrap&&a!==(4294967295&t.total)){c.msg="incorrect length check",t.mode=oh;break}a=0,l=0}t.mode=16208;case 16208:y=Yu;break A;case oh:y=Zu;break A;case 16210:return $u;default:ah;return zu}return c.next_out=i,c.avail_out=o,c.next_in=n,c.avail_in=s,t.hold=a,t.bits=l,(t.wsize||h!==c.avail_out&&t.mode<oh&&(t.mode<16206||A!==ju))&&Qh(c,c.output,c.next_out,h-c.avail_out),u-=c.avail_in,h-=c.avail_out,c.total_in+=u,c.total_out+=h,t.total+=h,4&t.wrap&&h&&(c.adler=t.check=(t.flags?fl:Bl)(t.check,r,h,c.next_out-h)),c.data_type=t.bits+(t.last?64:0)+(t.mode===nh?128:0)+(t.mode===ih||16194===t.mode?256:0),y=(0==u&&0===h||A===ju)&&y===Ju?Ah:y},inflateEnd:A=>{var t;return Bh(A)?zu:((t=A.state).window&&(t.window=null),A.state=null,Ju)},inflateGetHeader:(A,t)=>Bh(A)||0==(2&(A=A.state).wrap)?zu:((A.head=t).done=!1,Ju),inflateSetDictionary:(A,t)=>{var e,r=t.length;return Bh(A)||0!==(e=A.state).wrap&&e.mode!==rh?zu:e.mode===rh&&Bl(1,t,r,0)!==e.check?Zu:Qh(A,t,r,r)?(e.mode=16210,$u):(e.havedict=1,Ju)},inflateInfo:"pako inflate (from Nodeca project)"};var Fh=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,
|
|
54
|
+
/* extra field length (valid if extra != Z_NULL) */
|
|
55
|
+
this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1};let Uh=Object.prototype.toString,{Z_NO_FLUSH:bh,Z_FINISH:vh,Z_OK:Eh,Z_STREAM_END:xh,Z_NEED_DICT:Ih,Z_STREAM_ERROR:Hh,Z_DATA_ERROR:Lh,Z_MEM_ERROR:Sh}=A;
|
|
56
|
+
/**
|
|
57
|
+
* Inflate.msg -> String
|
|
58
|
+
*
|
|
59
|
+
* Error message, if [[Inflate.err]] != 0
|
|
60
|
+
**/
|
|
61
|
+
function Nh(A){this.options=xu({chunkSize:65536,windowBits:15,to:""},A||{});var t=this.options,A=(t.raw&&0<=t.windowBits&&t.windowBits<16&&(t.windowBits=-t.windowBits,0===t.windowBits)&&(t.windowBits=-15),!(0<=t.windowBits&&t.windowBits<16)||A&&A.windowBits||(t.windowBits+=32),15<t.windowBits&&t.windowBits<48&&0==(15&t.windowBits)&&(t.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new Tu,this.strm.avail_out=0,yh.inflateInit2(this.strm,t.windowBits));if(A!==Eh)throw new Error(dl[A]);if(this.header=new Fh,yh.inflateGetHeader(this.strm,this.header),t.dictionary&&("string"==typeof t.dictionary?t.dictionary=Su(t.dictionary):"[object ArrayBuffer]"===Uh.call(t.dictionary)&&(t.dictionary=new Uint8Array(t.dictionary)),t.raw)&&(A=yh.inflateSetDictionary(this.strm,t.dictionary))!==Eh)throw new Error(dl[A])}function _h(A,t){t=new Nh(t);if(t.push(A),t.err)throw t.msg||dl[t.err];return t.result}Nh.prototype.push=function(A,t){var e,r,n,i=this.strm,s=this.options.chunkSize,o=this.options.dictionary;let a,c,l;if(this.ended)return!1;for(c=t===~~t?t:!0===t?vh:bh,"[object ArrayBuffer]"===Uh.call(A)?i.input=new Uint8Array(A):i.input=A,i.next_in=0,i.avail_in=i.input.length;;){for(0===i.avail_out&&(i.output=new Uint8Array(s),i.next_out=0,i.avail_out=s),(a=yh.inflate(i,c))===Ih&&o&&((a=yh.inflateSetDictionary(i,o))===Eh?a=yh.inflate(i,c):a===Lh&&(a=Ih));0<i.avail_in&&a===xh&&0<i.state.wrap&&0!==A[i.next_in];)yh.inflateReset(i),a=yh.inflate(i,c);switch(a){case Hh:case Lh:case Ih:case Sh:return this.onEnd(a),!(this.ended=!0)}if(l=i.avail_out,!i.next_out||0!==i.avail_out&&a!==xh||("string"===this.options.to?(e=_u(i.output,i.next_out),r=i.next_out-e,n=Nu(i.output,e),i.next_out=r,i.avail_out=s-r,r&&i.output.set(i.output.subarray(e,e+r),0),this.onData(n)):this.onData(i.output.length===i.next_out?i.output:i.output.subarray(0,i.next_out))),a!==Eh||0!==l){if(a===xh)return a=yh.inflateEnd(this.strm),this.onEnd(a),this.ended=!0;if(0===i.avail_in)break}}return!0},Nh.prototype.onData=function(A){this.chunks.push(A)},Nh.prototype.onEnd=function(A){A===Eh&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=Iu(this.chunks)),this.chunks=[],this.err=A,this.msg=this.strm.msg};var{Inflate:e,inflate:t}={Inflate:Nh,inflate:_h},Th=e,Dh=t;let Oh=[];for(let A=0;A<256;A++){let t=A;for(let A=0;A<8;A++)1&t?t=3988292384^t>>>1:t>>>=1;Oh[A]=t}let Ph=4294967295;function Mh(A,t){return(((A,t,e)=>{let r=A;for(let A=0;A<e;A++)r=Oh[255&(r^t[A])]^r>>>8;return r})(Ph,A,t)^Ph)>>>0}function kh(A,t,e){var r=A.readUint32(),A=Mh(new Uint8Array(A.buffer,A.byteOffset+A.offset-t-4,t),t);if(A!==r)throw new Error(`CRC mismatch for chunk ${e}. Expected ${r}, found `+A)}function Kh(t,e,r){for(let A=0;A<r;A++)e[A]=t[A]}function Rh(A,t,e,r){let n=0;for(;n<r;n++)t[n]=A[n];for(;n<e;n++)t[n]=A[n]+t[n-r]&255}function Vh(A,t,e,r){let n=0;if(0===e.length)for(;n<r;n++)t[n]=A[n];else for(;n<r;n++)t[n]=A[n]+e[n]&255}function Gh(A,t,e,r,n){let i=0;if(0===e.length){for(;i<n;i++)t[i]=A[i];for(;i<r;i++)t[i]=A[i]+(t[i-n]>>1)&255}else{for(;i<n;i++)t[i]=A[i]+(e[i]>>1)&255;for(;i<r;i++)t[i]=A[i]+(t[i-n]+e[i]>>1)&255}}function jh(A,t,e,r,n){let i=0;if(0===e.length){for(;i<n;i++)t[i]=A[i];for(;i<r;i++)t[i]=A[i]+t[i-n]&255}else{for(;i<n;i++)t[i]=A[i]+e[i]&255;for(;i<r;i++)t[i]=A[i]+(s=t[i-n],o=e[i],a=e[i-n],c=u=l=c=void 0,c=s+o-a,l=Math.abs(c-s),u=Math.abs(c-o),c=Math.abs(c-a),l<=u&&l<=c?s:u<=c?o:a)&255}var s,o,a,c,l,u}n=new Uint16Array([255]);let Xh=255===new Uint8Array(n.buffer)[0];function Wh(A){var{data:t,width:e,height:r,channels:A,depth:n}=A,i=[{x:0,y:0,xStep:8,yStep:8},{x:4,y:0,xStep:8,yStep:8},{x:0,y:4,xStep:4,yStep:8},{x:2,y:0,xStep:4,yStep:4},{x:0,y:2,xStep:2,yStep:4},{x:1,y:0,xStep:2,yStep:2},{x:0,y:1,xStep:1,yStep:2}],s=Math.ceil(n/8)*A,o=new Uint8Array(r*e*s);let a=0;for(let A=0;A<7;A++){var c=i[A],l=Math.ceil((e-c.x)/c.xStep),u=Math.ceil((r-c.y)/c.yStep);if(!(l<=0||u<=0)){var h=l*s,B=new Uint8Array(h);for(let A=0;A<u;A++){var g=t[a++],f=t.subarray(a,a+h),d=(a+=h,new Uint8Array(h)),p=(y=Q=C=m=w=p=void 0,g),w=f,m=d,C=B,Q=h,y=s;switch(p){case 0:Kh(w,m,Q);break;case 1:Rh(w,m,Q,y);break;case 2:Vh(w,m,C,Q);break;case 3:Gh(w,m,C,Q,y);break;case 4:jh(w,m,C,Q,y);break;default:throw new Error("Unsupported filter: "+p)}B.set(d);for(let t=0;t<l;t++){var F=c.x+t*c.xStep,U=c.y+A*c.yStep;if(!(e<=F||r<=U))for(let A=0;A<s;A++)o[(U*e+F)*s+A]=d[t*s+A]}}}}if(16!==n)return o;var b,v=new Uint16Array(o.buffer);if(Xh)for(let A=0;A<v.length;A++)v[A]=(255&(b=v[A]))<<8|b>>8&255;return v}i=new Uint16Array([255]);let Jh=255===new Uint8Array(i.buffer)[0],Yh=new Uint8Array(0);function qh(A){var t,e,{data:r,width:A,height:n,channels:i,depth:s}=A,o=Math.ceil(s/8)*i,a=Math.ceil(s/8*i*A),c=new Uint8Array(n*a);let l=Yh,u=0;for(let A=0;A<n;A++){switch(t=r.subarray(u+1,u+1+a),e=c.subarray(A*a,(A+1)*a),r[u]){case 0:Kh(t,e,a);break;case 1:Rh(t,e,a,o);break;case 2:Vh(t,e,l,a);break;case 3:Gh(t,e,l,a,o);break;case 4:jh(t,e,l,a,o);break;default:throw new Error("Unsupported filter: "+r[u])}l=e,u+=a+1}if(16!==s)return c;var h,B=new Uint16Array(c.buffer);if(Jh)for(let A=0;A<B.length;A++)B[A]=(255&(h=B[A]))<<8|h>>8&255;return B}let zh=Uint8Array.of(137,80,78,71,13,10,26,10);function Zh(A){if(!(t=>{if(!(t.length<zh.length)){for(let A=0;A<zh.length;A++)if(t[A]!==zh[A])return;return 1}})(A.readBytes(zh.length)))throw new Error("wrong PNG signature")}let $h=0,AB=new TextDecoder("latin1");function tB(A){var t=A;if(!eB.test(t))throw new Error("invalid latin1 text");if(0===A.length||79<A.length)throw new Error("keyword length must be between 1 and 79")}let eB=/^[\u0000-\u00FF]*$/;function rB(A,t,e){var r=nB(t);A[r]=(A=t,t=e-r.length-1,AB.decode(A.readBytes(t)))}function nB(A){for(A.mark();A.readByte()!==$h;);var t=A.offset,t=(A.reset(),AB.decode(A.readBytes(t-A.offset-1)));return A.skip(1),tB(t),t}let iB={UNKNOWN:-1,GREYSCALE:0,TRUECOLOUR:2,INDEXED_COLOUR:3,GREYSCALE_ALPHA:4,TRUECOLOUR_ALPHA:6},sB={UNKNOWN:-1,DEFLATE:0},oB={UNKNOWN:-1,ADAPTIVE:0},aB={UNKNOWN:-1,NO_INTERLACE:0,ADAM7:1},cB={NONE:0,BACKGROUND:1,PREVIOUS:2},lB={SOURCE:0,OVER:1};class uB extends wc{_checkCrc;_inflator;_png;_apng;_end;_hasPalette;_palette;_hasTransparency;_transparency;_compressionMethod;_filterMethod;_interlaceMethod;_colorType;_isAnimated;_numberOfFrames;_numberOfPlays;_frames;_writingDataChunks;constructor(A,t={}){super(A);var{checkCrc:A=!1}=t;this._checkCrc=A,this._inflator=new Th,this._png={width:-1,height:-1,channels:-1,data:new Uint8Array(0),depth:1,text:{}},this._apng={width:-1,height:-1,channels:-1,depth:1,numberOfFrames:1,numberOfPlays:0,text:{},frames:[]},this._end=!1,this._hasPalette=!1,this._palette=[],this._hasTransparency=!1,this._transparency=new Uint16Array(0),this._compressionMethod=sB.UNKNOWN,this._filterMethod=oB.UNKNOWN,this._interlaceMethod=aB.UNKNOWN,this._colorType=iB.UNKNOWN,this._isAnimated=!1,this._numberOfFrames=1,this._numberOfPlays=0,this._frames=[],this._writingDataChunks=!1,this.setBigEndian()}decode(){for(Zh(this);!this._end;){var A=this.readUint32(),t=this.readChars(4);this.decodeChunk(A,t)}return this.decodeImage(),this._png}decodeApng(){for(Zh(this);!this._end;){var A=this.readUint32(),t=this.readChars(4);this.decodeApngChunk(A,t)}return this.decodeApngImage(),this._apng}decodeChunk(A,t){var e=this.offset;switch(t){case"IHDR":this.decodeIHDR();break;case"PLTE":this.decodePLTE(A);break;case"IDAT":this.decodeIDAT(A);break;case"IEND":this._end=!0;break;case"tRNS":this.decodetRNS(A);break;case"iCCP":this.decodeiCCP(A);break;case"tEXt":rB(this._png.text,this,A);break;case"pHYs":this.decodepHYs();break;default:this.skip(A)}if(this.offset-e!==A)throw new Error("Length mismatch while decoding chunk "+t);this._checkCrc?kh(this,A+4,t):this.skip(4)}decodeApngChunk(A,t){var e=this.offset;switch("fdAT"!==t&&"IDAT"!==t&&this._writingDataChunks&&this.pushDataToFrame(),t){case"acTL":this.decodeACTL();break;case"fcTL":this.decodeFCTL();break;case"fdAT":this.decodeFDAT(A);break;default:this.decodeChunk(A,t),this.offset=e+A}if(this.offset-e!==A)throw new Error("Length mismatch while decoding chunk "+t);this._checkCrc?kh(this,A+4,t):this.skip(4)}decodeIHDR(){var A=this._png,t=(A.width=this.readUint32(),A.height=this.readUint32(),A.depth=(A=>{if(1===A||2===A||4===A||8===A||16===A)return A;throw new Error("invalid bit depth: "+A)})(this.readUint8()),this.readUint8());let e;switch(this._colorType=t){case iB.GREYSCALE:e=1;break;case iB.TRUECOLOUR:e=3;break;case iB.INDEXED_COLOUR:e=1;break;case iB.GREYSCALE_ALPHA:e=2;break;case iB.TRUECOLOUR_ALPHA:e=4;break;default:iB.UNKNOWN;throw new Error("Unknown color type: "+t)}if(this._png.channels=e,this._compressionMethod=this.readUint8(),this._compressionMethod!==sB.DEFLATE)throw new Error("Unsupported compression method: "+this._compressionMethod);this._filterMethod=this.readUint8(),this._interlaceMethod=this.readUint8()}decodeACTL(){this._numberOfFrames=this.readUint32(),this._numberOfPlays=this.readUint32(),this._isAnimated=!0}decodeFCTL(){var A={sequenceNumber:this.readUint32(),width:this.readUint32(),height:this.readUint32(),xOffset:this.readUint32(),yOffset:this.readUint32(),delayNumber:this.readUint16(),delayDenominator:this.readUint16(),disposeOp:this.readUint8(),blendOp:this.readUint8(),data:new Uint8Array(0)};this._frames.push(A)}decodePLTE(A){if(A%3!=0)throw new RangeError("PLTE field length must be a multiple of 3. Got "+A);var t=A/3,e=(this._hasPalette=!0,[]);this._palette=e;for(let A=0;A<t;A++)e.push([this.readUint8(),this.readUint8(),this.readUint8()])}decodeIDAT(A){this._writingDataChunks=!0;var t=this.offset+this.byteOffset;if(this._inflator.push(new Uint8Array(this.buffer,t,A)),this._inflator.err)throw new Error("Error while decompressing the data: "+this._inflator.err);this.skip(A)}decodeFDAT(A){this._writingDataChunks=!0;var t=A,e=this.offset+this.byteOffset;if(e+=4,t-=4,this._inflator.push(new Uint8Array(this.buffer,e,t)),this._inflator.err)throw new Error("Error while decompressing the data: "+this._inflator.err);this.skip(A)}decodetRNS(t){switch(this._colorType){case iB.GREYSCALE:case iB.TRUECOLOUR:if(t%2!=0)throw new RangeError("tRNS chunk length must be a multiple of 2. Got "+t);if(t/2>this._png.width*this._png.height)throw new Error(`tRNS chunk contains more alpha values than there are pixels (${t/2} vs ${this._png.width*this._png.height})`);this._hasTransparency=!0,this._transparency=new Uint16Array(t/2);for(let A=0;A<t/2;A++)this._transparency[A]=this.readUint16();break;case iB.INDEXED_COLOUR:{if(t>this._palette.length)throw new Error(`tRNS chunk contains more alpha values than there are palette colors (${t} vs ${this._palette.length})`);let A=0;for(;A<t;A++){var e=this.readByte();this._palette[A].push(e)}for(;A<this._palette.length;A++)this._palette[A].push(255);break}case iB.UNKNOWN:case iB.GREYSCALE_ALPHA:case iB.TRUECOLOUR_ALPHA:default:throw new Error("tRNS chunk is not supported for color type "+this._colorType)}}decodeiCCP(A){var t=nB(this),e=this.readUint8();if(e!==sB.DEFLATE)throw new Error("Unsupported iCCP compression method: "+e);e=this.readBytes(A-t.length-2);this._png.iccEmbeddedProfile={name:t,profile:Dh(e)}}decodepHYs(){var A=this.readUint32(),t=this.readUint32(),e=this.readByte();this._png.resolution={x:A,y:t,unit:e}}decodeApngImage(){this._apng.width=this._png.width,this._apng.height=this._png.height,this._apng.channels=this._png.channels,this._apng.depth=this._png.depth,this._apng.numberOfFrames=this._numberOfFrames,this._apng.numberOfPlays=this._numberOfPlays,this._apng.text=this._png.text,this._apng.resolution=this._png.resolution;for(let A=0;A<this._numberOfFrames;A++){var t,e={sequenceNumber:this._frames[A].sequenceNumber,delayNumber:this._frames[A].delayNumber,delayDenominator:this._frames[A].delayDenominator,data:new(8===this._apng.depth?Uint8Array:Uint16Array)(this._apng.width*this._apng.height*this._apng.channels)},r=this._frames.at(A);r&&(r.data=qh({data:r.data,width:r.width,height:r.height,channels:this._apng.channels,depth:this._apng.depth}),this._hasPalette&&(this._apng.palette=this._palette),this._hasTransparency&&(this._apng.transparency=this._transparency),0===A||0===r.xOffset&&0===r.yOffset&&r.width===this._png.width&&r.height===this._png.height?e.data=r.data:(t=this._apng.frames.at(A-1),this.disposeFrame(r,t,e),this.addFrameDataToCanvas(e,r)),this._apng.frames.push(e))}return this._apng}disposeFrame(e,A,r){switch(e.disposeOp){case cB.NONE:break;case cB.BACKGROUND:for(let t=0;t<this._png.height;t++)for(let A=0;A<this._png.width;A++){var n=(t*e.width+A)*this._png.channels;for(let A=0;A<this._png.channels;A++)r.data[n+A]=0}break;case cB.PREVIOUS:r.data.set(A.data);break;default:throw new Error("Unknown disposeOp")}}addFrameDataToCanvas(e,r){var n=1<<this._png.depth,i=(A,t)=>({index:((A+r.yOffset)*this._png.width+r.xOffset+t)*this._png.channels,frameIndex:(A*r.width+t)*this._png.channels});switch(r.blendOp){case lB.SOURCE:for(let t=0;t<r.height;t++)for(let A=0;A<r.width;A++){var{index:s,frameIndex:o}=i(t,A);for(let A=0;A<this._png.channels;A++)e.data[s+A]=r.data[o+A]}break;case lB.OVER:for(let t=0;t<r.height;t++)for(let A=0;A<r.width;A++){var{index:a,frameIndex:c}=i(t,A);for(let A=0;A<this._png.channels;A++){var l=r.data[c+this._png.channels-1]/n,u=A%(this._png.channels-1)==0?1:r.data[c+A],u=Math.floor(l*u+(1-l)*e.data[a+A]);e.data[a+A]+=u}}break;default:throw new Error("Unknown blendOp")}}decodeImage(){if(this._inflator.err)throw new Error("Error while decompressing the data: "+this._inflator.err);var A=this._isAnimated?(this._frames?.at(0)).data:this._inflator.result;if(this._filterMethod!==oB.ADAPTIVE)throw new Error(`Filter method ${this._filterMethod} not supported`);if(this._interlaceMethod===aB.NO_INTERLACE)this._png.data=qh({data:A,width:this._png.width,height:this._png.height,channels:this._png.channels,depth:this._png.depth});else{if(this._interlaceMethod!==aB.ADAM7)throw new Error(`Interlace method ${this._interlaceMethod} not supported`);this._png.data=Wh({data:A,width:this._png.width,height:this._png.height,channels:this._png.channels,depth:this._png.depth})}this._hasPalette&&(this._png.palette=this._palette),this._hasTransparency&&(this._png.transparency=this._transparency)}pushDataToFrame(){var A=this._inflator.result,t=this._frames.at(-1);t?t.data=A:this._frames.push({sequenceNumber:0,width:this._png.width,height:this._png.height,xOffset:0,yOffset:0,delayNumber:0,delayDenominator:0,disposeOp:cB.NONE,blendOp:lB.SOURCE,data:A}),this._inflator=new Th,this._writingDataChunks=!1}}var le=function(){return"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this}();function hB(){le.console&&"function"==typeof le.console.log&&le.console.log.apply(le.console,arguments)}var BB={log:hB,warn:function(A){le.console&&("function"==typeof le.console.warn?le.console.warn.apply(le.console,arguments):hB.call(null,arguments))},error:function(A){le.console&&("function"==typeof le.console.error?le.console.error.apply(le.console,arguments):hB(A))}};function gB(A,t,e){var r=new XMLHttpRequest;r.open("GET",A),r.responseType="blob",r.onload=function(){pB(r.response,t,e)},r.onerror=function(){BB.error("could not download file")},r.send()}function fB(A){var t=new XMLHttpRequest;t.open("HEAD",A,!1);try{t.send()}catch(A){}return 200<=t.status&&t.status<=299}function dB(t){try{t.dispatchEvent(new MouseEvent("click"))}catch(A){var e=document.createEvent("MouseEvents");e.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),t.dispatchEvent(e)}}var pB=le.saveAs||("object"!==("undefined"==typeof window?"undefined":Ea(window))||window!==le?function(){}:"undefined"!=typeof HTMLAnchorElement&&"download"in HTMLAnchorElement.prototype?function(A,t,e){var r=le.URL||le.webkitURL,n=document.createElement("a");t=t||A.name||"download",n.download=t,n.rel="noopener","string"==typeof A?(n.href=A,n.origin!==location.origin?fB(n.href)?gB(A,t,e):dB(n,n.target="_blank"):dB(n)):(n.href=r.createObjectURL(A),setTimeout(function(){r.revokeObjectURL(n.href)},4e4),setTimeout(function(){dB(n)},0))}:"msSaveOrOpenBlob"in navigator?function(A,t,e){var r;t=t||A.name||"download","string"==typeof A?fB(A)?gB(A,t,e):((r=document.createElement("a")).href=A,r.target="_blank",setTimeout(function(){dB(r)})):navigator.msSaveOrOpenBlob((A=A,void 0===(e=e)?e={autoBom:!1}:"object"!==Ea(e)&&(BB.warn("Deprecated: Expected third argument to be a object"),e={autoBom:!e}),e.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(A.type)?new Blob([String.fromCharCode(65279),A],{type:A.type}):A),t)}:function(A,t,e,r){if((r=r||open("","_blank"))&&(r.document.title=r.document.body.innerText="downloading..."),"string"==typeof A)return gB(A,t,e);var n,i,s,t="application/octet-stream"===A.type,e=/constructor/i.test(le.HTMLElement)||le.safari,o=/CriOS\/[\d]+/.test(navigator.userAgent);(o||t&&e)&&"object"===("undefined"==typeof FileReader?"undefined":Ea(FileReader))?((n=new FileReader).onloadend=function(){var A=n.result,A=o?A:A.replace(/^data:[^;]*;/,"data:attachment/file;");r?r.location.href=A:location=A,r=null},n.readAsDataURL(A)):(i=le.URL||le.webkitURL,s=i.createObjectURL(A),r?r.location=s:location.href=s,r=null,setTimeout(function(){i.revokeObjectURL(s)},4e4))});function wB(A){A=A||"",this.ok=!1,A={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dodgerblue:"1e90ff",feldspar:"d19275",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgrey:"d3d3d3",lightgreen:"90ee90",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslateblue:"8470ff",lightslategray:"778899",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"00ff00",limegreen:"32cd32",linen:"faf0e6",magenta:"ff00ff",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370d8",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"d87093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",red:"ff0000",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",violetred:"d02090",wheat:"f5deb3",white:"ffffff",whitesmoke:"f5f5f5",yellow:"ffff00",yellowgreen:"9acd32"}[A=(A=(A="#"==A.charAt(0)?A.substr(1,6):A).replace(/ /g,"")).toLowerCase()]||A;for(var t=[{re:/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/,example:["rgb(123, 234, 45)","rgb(255,234,245)"],process:function(A){return[parseInt(A[1]),parseInt(A[2]),parseInt(A[3])]}},{re:/^(\w{2})(\w{2})(\w{2})$/,example:["#00ff00","336699"],process:function(A){return[parseInt(A[1],16),parseInt(A[2],16),parseInt(A[3],16)]}},{re:/^(\w{1})(\w{1})(\w{1})$/,example:["#fb0","f0f"],process:function(A){return[parseInt(A[1]+A[1],16),parseInt(A[2]+A[2],16),parseInt(A[3]+A[3],16)]}}],e=0;e<t.length;e++){var r=t[e].re,n=t[e].process,r=r.exec(A);r&&(n=n(r),this.r=n[0],this.g=n[1],this.b=n[2],this.ok=!0)}this.r=this.r<0||isNaN(this.r)?0:255<this.r?255:this.r,this.g=this.g<0||isNaN(this.g)?0:255<this.g?255:this.g,this.b=this.b<0||isNaN(this.b)?0:255<this.b?255:this.b,this.toRGB=function(){return"rgb("+this.r+", "+this.g+", "+this.b+")"},this.toHex=function(){var A=this.r.toString(16),t=this.g.toString(16),e=this.b.toString(16);return"#"+(A=1==A.length?"0"+A:A)+(t=1==t.length?"0"+t:t)+(e=1==e.length?"0"+e:e)}}var mB=le.atob.bind(le),CB=le.btoa.bind(le);function QB(A,t){var e=FB(A[0],i=A[1],n=A[2],r=A[3],t[0],7,-680876936),r=FB(r,e,i,n,t[1],12,-389564586),n=FB(n,r,e,i,t[2],17,606105819),i=FB(i,n,r,e,t[3],22,-1044525330);e=FB(e,i,n,r,t[4],7,-176418897),r=FB(r,e,i,n,t[5],12,1200080426),n=FB(n,r,e,i,t[6],17,-1473231341),i=FB(i,n,r,e,t[7],22,-45705983),e=FB(e,i,n,r,t[8],7,1770035416),r=FB(r,e,i,n,t[9],12,-1958414417),n=FB(n,r,e,i,t[10],17,-42063),i=FB(i,n,r,e,t[11],22,-1990404162),e=FB(e,i,n,r,t[12],7,1804603682),r=FB(r,e,i,n,t[13],12,-40341101),n=FB(n,r,e,i,t[14],17,-1502002290),e=UB(e,i=FB(i,n,r,e,t[15],22,1236535329),n,r,t[1],5,-165796510),r=UB(r,e,i,n,t[6],9,-1069501632),n=UB(n,r,e,i,t[11],14,643717713),i=UB(i,n,r,e,t[0],20,-373897302),e=UB(e,i,n,r,t[5],5,-701558691),r=UB(r,e,i,n,t[10],9,38016083),n=UB(n,r,e,i,t[15],14,-660478335),i=UB(i,n,r,e,t[4],20,-405537848),e=UB(e,i,n,r,t[9],5,568446438),r=UB(r,e,i,n,t[14],9,-1019803690),n=UB(n,r,e,i,t[3],14,-187363961),i=UB(i,n,r,e,t[8],20,1163531501),e=UB(e,i,n,r,t[13],5,-1444681467),r=UB(r,e,i,n,t[2],9,-51403784),n=UB(n,r,e,i,t[7],14,1735328473),e=bB(e,i=UB(i,n,r,e,t[12],20,-1926607734),n,r,t[5],4,-378558),r=bB(r,e,i,n,t[8],11,-2022574463),n=bB(n,r,e,i,t[11],16,1839030562),i=bB(i,n,r,e,t[14],23,-35309556),e=bB(e,i,n,r,t[1],4,-1530992060),r=bB(r,e,i,n,t[4],11,1272893353),n=bB(n,r,e,i,t[7],16,-155497632),i=bB(i,n,r,e,t[10],23,-1094730640),e=bB(e,i,n,r,t[13],4,681279174),r=bB(r,e,i,n,t[0],11,-358537222),n=bB(n,r,e,i,t[3],16,-722521979),i=bB(i,n,r,e,t[6],23,76029189),e=bB(e,i,n,r,t[9],4,-640364487),r=bB(r,e,i,n,t[12],11,-421815835),n=bB(n,r,e,i,t[15],16,530742520),e=vB(e,i=bB(i,n,r,e,t[2],23,-995338651),n,r,t[0],6,-198630844),r=vB(r,e,i,n,t[7],10,1126891415),n=vB(n,r,e,i,t[14],15,-1416354905),i=vB(i,n,r,e,t[5],21,-57434055),e=vB(e,i,n,r,t[12],6,1700485571),r=vB(r,e,i,n,t[3],10,-1894986606),n=vB(n,r,e,i,t[10],15,-1051523),i=vB(i,n,r,e,t[1],21,-2054922799),e=vB(e,i,n,r,t[8],6,1873313359),r=vB(r,e,i,n,t[15],10,-30611744),n=vB(n,r,e,i,t[6],15,-1560198380),i=vB(i,n,r,e,t[13],21,1309151649),e=vB(e,i,n,r,t[4],6,-145523070),r=vB(r,e,i,n,t[11],10,-1120210379),n=vB(n,r,e,i,t[2],15,718787259),i=vB(i,n,r,e,t[9],21,-343485551),A[0]=SB(e,A[0]),A[1]=SB(i,A[1]),A[2]=SB(n,A[2]),A[3]=SB(r,A[3])}function yB(A,t,e,r,n,i){return t=SB(SB(t,A),SB(r,i)),SB(t<<n|t>>>32-n,e)}function FB(A,t,e,r,n,i,s){return yB(t&e|~t&r,A,t,n,i,s)}function UB(A,t,e,r,n,i,s){return yB(t&r|e&~r,A,t,n,i,s)}function bB(A,t,e,r,n,i,s){return yB(t^e^r,A,t,n,i,s)}function vB(A,t,e,r,n,i,s){return yB(e^(t|~r),A,t,n,i,s)}function EB(A){for(var t=A.length,e=[1732584193,-271733879,-1732584194,271733878],r=64;r<=A.length;r+=64)QB(e,(A=>{var t,e=[];for(t=0;t<64;t+=4)e[t>>2]=A.charCodeAt(t)+(A.charCodeAt(t+1)<<8)+(A.charCodeAt(t+2)<<16)+(A.charCodeAt(t+3)<<24);return e})(A.substring(r-64,r)));A=A.substring(r-64);var n=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];for(r=0;r<A.length;r++)n[r>>2]|=A.charCodeAt(r)<<(r%4<<3);if(n[r>>2]|=128<<(r%4<<3),55<r)for(QB(e,n),r=0;r<16;r++)n[r]=0;return n[14]=8*t,QB(e,n),e}var xB="0123456789abcdef".split("");function IB(A){return String.fromCharCode(255&A,(65280&A)>>8,(16711680&A)>>16,(4278190080&A)>>24)}function HB(A){return EB(A).map(IB).join("")}var LB="5d41402abc4b2a76b9719d911017c592"!=(A=>{for(var t=0;t<A.length;t++)A[t]=(A=>{for(var t="",e=0;e<4;e++)t+=xB[A>>8*e+4&15]+xB[A>>8*e&15];return t})(A[t]);return A.join("")})(EB("hello"));function SB(A,t){var e;return LB?(A>>16)+(t>>16)+((e=(65535&A)+(65535&t))>>16)<<16|65535&e:A+t&4294967295}function NB(A,t){var e;if(void 0!==A){e=1+(256/(A=A).length|0);for(var r=new Array(1+e).join(A),n=[],i=0;i<256;i++)n[i]=i;for(var s=0,i=0;i<256;i++){var o=n[i],s=(s+o+r.charCodeAt(i))%256;n[i]=n[s],n[s]=o}e=n}else n=e;var a=t.length,c=0,l=0,u="";for(i=0;i<a;i++)l=(l+(o=n[c=(c+1)%256]))%256,n[c]=n[l],n[l]=o,r=n[(n[c]+n[l])%256],u+=String.fromCharCode(t.charCodeAt(i)^r);return u}var _B={print:4,modify:8,copy:16,"annot-forms":32};function TB(A,t,e,r){this.v=1,this.r=2;var n=192,A=(A.forEach(function(A){if(void 0!==_B.perm)throw new Error("Invalid permission: "+A);n+=_B[A]}),this.padding="(¿N^NuAd\0NVÿú\b..\0¶Ðh>/\f©þdSiz",(t+this.padding).substr(0,32)),t=(e+this.padding).substr(0,32);this.O=this.processOwnerPassword(A,t),this.P=-(1+(255^n)),this.encryptionKey=HB(A+this.O+this.lsbFirstWord(this.P)+this.hexToBytes(r)).substr(0,5),this.U=NB(this.encryptionKey,this.padding)}function DB(A){if(/[^\u0000-\u00ff]/.test(A))throw new Error("Invalid PDF Name Object: "+A+", Only accept ASCII characters.");for(var t="",e=A.length,r=0;r<e;r++){var n=A.charCodeAt(r);t+=n<33||35===n||37===n||40===n||41===n||47===n||60===n||62===n||91===n||93===n||123===n||125===n||126<n?"#"+("0"+n.toString(16)).slice(-2):A[r]}return t}function OB(i){if("object"!==Ea(i))throw new Error("Invalid Context passed to initialize PubSub (jsPDF-module)");var s={};this.subscribe=function(A,t,e){if(e=e||!1,"string"!=typeof A||"function"!=typeof t||"boolean"!=typeof e)throw new Error("Invalid arguments passed to PubSub.subscribe (jsPDF-module)");s.hasOwnProperty(A)||(s[A]={});var r=Math.random().toString(35);return s[A][r]=[t,!!e],r},this.unsubscribe=function(A){for(var t in s)if(s[t][A])return delete s[t][A],0===Object.keys(s[t]).length&&delete s[t],!0;return!1},this.publish=function(A){if(s.hasOwnProperty(A)){var t,e=Array.prototype.slice.call(arguments,1),r=[];for(t in s[A]){var n=s[A][t];try{n[0].apply(i,e)}catch(A){le.console&&BB.error("jsPDF PubSub Error",A.message,A)}n[1]&&r.push(t)}r.length&&r.forEach(this.unsubscribe)}},this.getTopics=function(){return s}}function PB(A){if(!(this instanceof PB))return new PB(A);var t,e="opacity,stroke-opacity".split(",");for(t in A)A.hasOwnProperty(t)&&0<=e.indexOf(t)&&(this[t]=A[t]);this.id="",this.objectNumber=-1}function MB(A,t){this.gState=A,this.matrix=t,this.id="",this.objectNumber=-1}function kB(A,t,e,r,n){if(!(this instanceof kB))return new kB(A,t,e,r,n);this.type="axial"===A?2:3,this.coords=t,this.colors=e,MB.call(this,r,n)}function KB(A,t,e,r,n){if(!(this instanceof KB))return new KB(A,t,e,r,n);this.boundingBox=A,this.xStep=t,this.yStep=e,this.stream="",this.cloneIndex=0,MB.call(this,r,n)}function ue(A){var g,n="string"==typeof arguments[0]?arguments[0]:"p",t=arguments[1],i=arguments[2],f=arguments[3],x=[],I=1,H=16,L="S",d=null,S=("object"===Ea(A=A||{})&&(n=A.orientation,t=A.unit||t,i=A.format||i,f=A.compress||A.compressPdf||f,null!==(d=A.encryption||null)&&(d.userPassword=d.userPassword||"",d.ownerPassword=d.ownerPassword||"",d.userPermissions=d.userPermissions||[]),I="number"==typeof A.userUnit?Math.abs(A.userUnit):1,void 0!==A.precision&&(g=A.precision),void 0!==A.floatPrecision&&(H=A.floatPrecision),L=A.defaultPathOperation||"S"),x=A.filters||(!0===f?["FlateEncode"]:x),t=t||"mm",n=(""+(n||"P")).toLowerCase(),A.putOnlyUsedFonts||!1),cA={},o={internal:{},__private__:{}},N=(o.__private__.PubSub=OB,"1.3"),f=o.__private__.getPdfVersion=function(){return N},_=(o.__private__.setPdfVersion=function(A){N=A},{a0:[2383.94,3370.39],a1:[1683.78,2383.94],a2:[1190.55,1683.78],a3:[841.89,1190.55],a4:[595.28,841.89],a5:[419.53,595.28],a6:[297.64,419.53],a7:[209.76,297.64],a8:[147.4,209.76],a9:[104.88,147.4],a10:[73.7,104.88],b0:[2834.65,4008.19],b1:[2004.09,2834.65],b2:[1417.32,2004.09],b3:[1000.63,1417.32],b4:[708.66,1000.63],b5:[498.9,708.66],b6:[354.33,498.9],b7:[249.45,354.33],b8:[175.75,249.45],b9:[124.72,175.75],b10:[87.87,124.72],c0:[2599.37,3676.54],c1:[1836.85,2599.37],c2:[1298.27,1836.85],c3:[918.43,1298.27],c4:[649.13,918.43],c5:[459.21,649.13],c6:[323.15,459.21],c7:[229.61,323.15],c8:[161.57,229.61],c9:[113.39,161.57],c10:[79.37,113.39],dl:[311.81,623.62],letter:[612,792],"government-letter":[576,756],legal:[612,1008],"junior-legal":[576,360],ledger:[1224,792],tabloid:[792,1224],"credit-card":[153,243]}),T=(o.__private__.getPageFormats=function(){return _},o.__private__.getPageFormat=function(A){return _[A]}),i=i||"a4",s="compat",$="advanced",AA=s;function D(){this.saveGraphicsState(),rA(new aA(l,0,0,-l,0,ae()*l).toString()+" cm"),this.setFontSize(this.getFontSize()/l),L="n",AA=$}function O(){this.restoreGraphicsState(),L="S",AA=s}var P=o.__private__.combineFontStyleAndFontWeight=function(A,t){if("bold"==A&&"normal"==t||"bold"==A&&400==t||"normal"==A&&"italic"==t||"bold"==A&&"italic"==t)throw new Error("Invalid Combination of fontweight and fontstyle");return A=t?400==t||"normal"===t?"italic"===A?"italic":"normal":700!=t&&"bold"!==t||"normal"!==A?(700==t?"bold":t)+""+A:"bold":A};o.advancedAPI=function(A){var t=AA===s;return t&&D.call(this),"function"==typeof A&&(A(this),t)&&O.call(this),this},o.compatAPI=function(A){var t=AA===$;return t&&O.call(this),"function"==typeof A&&(A(this),t)&&D.call(this),this},o.isAdvancedAPI=function(){return AA===$};function lA(A){if(AA!==$)throw new Error(A+" is only available in 'advanced' API mode. You need to call advancedAPI() first.")}function M(A){return eA((A=A,AA===s?ae()-A:AA===$?A:void 0))}var k=o.roundToPrecision=o.__private__.roundToPrecision=function(A,t){t=g||t;if(isNaN(A)||isNaN(t))throw new Error("Invalid argument passed to jsPDF.roundToPrecision");return A.toFixed(t).replace(/0+$/,"")},tA=o.hpf=o.__private__.hpf="number"==typeof H?function(A){if(isNaN(A))throw new Error("Invalid argument passed to jsPDF.hpf");return k(A,H)}:"smart"===H?function(A){if(isNaN(A))throw new Error("Invalid argument passed to jsPDF.hpf");return k(A,-1<A&&A<1?16:5)}:function(A){if(isNaN(A))throw new Error("Invalid argument passed to jsPDF.hpf");return k(A,16)},p=o.f2=o.__private__.f2=function(A){if(isNaN(A))throw new Error("Invalid argument passed to jsPDF.f2");return k(A,2)},a=o.__private__.f3=function(A){if(isNaN(A))throw new Error("Invalid argument passed to jsPDF.f3");return k(A,3)},eA=o.scale=o.__private__.scale=function(A){if(isNaN(A))throw new Error("Invalid argument passed to jsPDF.scale");return AA===s?A*l:AA===$?A:void 0};o.__private__.setPrecision=o.setPrecision=function(A){"number"==typeof parseInt(A,10)&&(g=parseInt(A,10))};var K,e="00000000000000000000000000000000",R=o.__private__.getFileId=function(){return e},V=o.__private__.setFileId=function(A){return e=void 0!==A&&/^[a-fA-F0-9]{32}$/.test(A)?A.toUpperCase():e.split("").map(function(){return"ABCDEF0123456789".charAt(Math.floor(16*Math.random()))}).join(""),null!==d&&(v=new TB(d.userPermissions,d.userPassword,d.ownerPassword,e)),e},G=(o.setFileId=function(A){return V(A),this},o.getFileId=function(){return R()},o.__private__.convertDateToPDFDate=function(A){var t=A.getTimezoneOffset(),e=t<0?"+":"-",r=Math.floor(Math.abs(t/60)),t=Math.abs(t%60),e=[e,Y(r),"'",Y(t),"'"].join("");return["D:",A.getFullYear(),Y(A.getMonth()+1),Y(A.getDate()),Y(A.getHours()),Y(A.getMinutes()),Y(A.getSeconds()),e].join("")}),j=o.__private__.convertPDFDateToDate=function(A){var t=parseInt(A.substr(2,4),10),e=parseInt(A.substr(6,2),10)-1,r=parseInt(A.substr(8,2),10),n=parseInt(A.substr(10,2),10),i=parseInt(A.substr(12,2),10),A=parseInt(A.substr(14,2),10);return new Date(t,e,r,n,i,A,0)},X=o.__private__.setCreationDate=function(A){var t;if((A=void 0===A?new Date:A)instanceof Date)t=G(A);else{if(!/^D:(20[0-2][0-9]|203[0-7]|19[7-9][0-9])(0[0-9]|1[0-2])([0-2][0-9]|3[0-1])(0[0-9]|1[0-9]|2[0-3])(0[0-9]|[1-5][0-9])(0[0-9]|[1-5][0-9])(\+0[0-9]|\+1[0-4]|-0[0-9]|-1[0-1])'(0[0-9]|[1-5][0-9])'?$/.test(A))throw new Error("Invalid argument passed to jsPDF.setCreationDate");t=A}return K=t},W=o.__private__.getCreationDate=function(A){var t=K;return t="jsDate"===A?j(K):t};o.setCreationDate=function(A){return X(A),this},o.getCreationDate=function(A){return W(A)};function J(A){BA||(gA=A)}var w,Y=o.__private__.padd2=function(A){return("0"+parseInt(A)).slice(-2)},q=o.__private__.padd2Hex=function(A){return("00"+(A=A.toString())).substr(A.length)},m=0,z=[],Z=[],uA=0,hA=[],C=[],BA=!1,gA=Z,rA=(o.__private__.setCustomOutputDestination=function(A){BA=!0,gA=A},o.__private__.resetCustomOutputDestination=function(){BA=!1,gA=Z},o.__private__.out=function(A){return A=A.toString(),uA+=A.length+1,gA.push(A),gA}),fA=o.__private__.write=function(A){return rA(1===arguments.length?A.toString():Array.prototype.join.call(arguments," "))},dA=o.__private__.getArrayBuffer=function(A){for(var t=A.length,e=new ArrayBuffer(t),r=new Uint8Array(e);t--;)r[t]=A.charCodeAt(t);return e},pA=[["Helvetica","helvetica","normal","WinAnsiEncoding"],["Helvetica-Bold","helvetica","bold","WinAnsiEncoding"],["Helvetica-Oblique","helvetica","italic","WinAnsiEncoding"],["Helvetica-BoldOblique","helvetica","bolditalic","WinAnsiEncoding"],["Courier","courier","normal","WinAnsiEncoding"],["Courier-Bold","courier","bold","WinAnsiEncoding"],["Courier-Oblique","courier","italic","WinAnsiEncoding"],["Courier-BoldOblique","courier","bolditalic","WinAnsiEncoding"],["Times-Roman","times","normal","WinAnsiEncoding"],["Times-Bold","times","bold","WinAnsiEncoding"],["Times-Italic","times","italic","WinAnsiEncoding"],["Times-BoldItalic","times","bolditalic","WinAnsiEncoding"],["ZapfDingbats","zapfdingbats","normal",null],["Symbol","symbol","normal",null]],nA=(o.__private__.getStandardFonts=function(){return pA},A.fontSize||16);o.__private__.setFontSize=o.setFontSize=function(A){return nA=AA===$?A/l:A,this};var r,wA=o.__private__.getFontSize=o.getFontSize=function(){return AA===s?nA:nA*l},mA=A.R2L||!1;o.__private__.setR2L=o.setR2L=function(A){return mA=A,this},o.__private__.getR2L=o.getR2L=function(){return mA};var CA,QA=o.__private__.setZoomMode=function(A){if(/^(?:\d+\.\d*|\d*\.\d+|\d+)%$/.test(A))r=A;else if(isNaN(A)){if(-1===[void 0,null,"fullwidth","fullheight","fullpage","original"].indexOf(A))throw new Error('zoom must be Integer (e.g. 2), a percentage Value (e.g. 300%) or fullwidth, fullheight, fullpage, original. "'+A+'" is not recognized.');r=A}else r=parseInt(A,10)};o.__private__.getZoomMode=function(){return r};var yA,FA=o.__private__.setPageMode=function(A){if(-1==[void 0,null,"UseNone","UseOutlines","UseThumbs","FullScreen"].indexOf(A))throw new Error('Page mode must be one of UseNone, UseOutlines, UseThumbs, or FullScreen. "'+A+'" is not recognized.');CA=A},UA=(o.__private__.getPageMode=function(){return CA},o.__private__.setLayoutMode=function(A){if(-1==[void 0,null,"continuous","single","twoleft","tworight","two"].indexOf(A))throw new Error('Layout mode must be one of continuous, single, twoleft, tworight. "'+A+'" is not recognized.');yA=A}),c=(o.__private__.getLayoutMode=function(){return yA},o.__private__.setDisplayMode=o.setDisplayMode=function(A,t,e){return QA(A),UA(t),FA(e),this},{title:"",subject:"",author:"",keywords:"",creator:""});o.__private__.getDocumentProperty=function(A){if(-1===Object.keys(c).indexOf(A))throw new Error("Invalid argument passed to jsPDF.getDocumentProperty");return c[A]},o.__private__.getDocumentProperties=function(){return c},o.__private__.setDocumentProperties=o.setProperties=o.setDocumentProperties=function(A){for(var t in c)c.hasOwnProperty(t)&&A[t]&&(c[t]=A[t]);return this},o.__private__.setDocumentProperty=function(A,t){if(-1===Object.keys(c).indexOf(A))throw new Error("Invalid arguments passed to jsPDF.setDocumentProperty");return c[A]=t};var iA,l,bA,vA,EA,sA={},u={},xA=[],Q={},IA={},y={},HA={},LA=null,h=0,B=[],oA=new OB(o),SA=A.hotfixes||[],F={},NA={},_A=[],aA=function A(t,e,r,n,i,s){if(!(this instanceof A))return new A(t,e,r,n,i,s);isNaN(t)&&(t=1),isNaN(e)&&(e=0),isNaN(r)&&(r=0),isNaN(n)&&(n=1),isNaN(i)&&(i=0),isNaN(s)&&(s=0),this._matrix=[t,e,r,n,i,s]},TA=(Object.defineProperty(aA.prototype,"sx",{get:function(){return this._matrix[0]},set:function(A){this._matrix[0]=A}}),Object.defineProperty(aA.prototype,"shy",{get:function(){return this._matrix[1]},set:function(A){this._matrix[1]=A}}),Object.defineProperty(aA.prototype,"shx",{get:function(){return this._matrix[2]},set:function(A){this._matrix[2]=A}}),Object.defineProperty(aA.prototype,"sy",{get:function(){return this._matrix[3]},set:function(A){this._matrix[3]=A}}),Object.defineProperty(aA.prototype,"tx",{get:function(){return this._matrix[4]},set:function(A){this._matrix[4]=A}}),Object.defineProperty(aA.prototype,"ty",{get:function(){return this._matrix[5]},set:function(A){this._matrix[5]=A}}),Object.defineProperty(aA.prototype,"a",{get:function(){return this._matrix[0]},set:function(A){this._matrix[0]=A}}),Object.defineProperty(aA.prototype,"b",{get:function(){return this._matrix[1]},set:function(A){this._matrix[1]=A}}),Object.defineProperty(aA.prototype,"c",{get:function(){return this._matrix[2]},set:function(A){this._matrix[2]=A}}),Object.defineProperty(aA.prototype,"d",{get:function(){return this._matrix[3]},set:function(A){this._matrix[3]=A}}),Object.defineProperty(aA.prototype,"e",{get:function(){return this._matrix[4]},set:function(A){this._matrix[4]=A}}),Object.defineProperty(aA.prototype,"f",{get:function(){return this._matrix[5]},set:function(A){this._matrix[5]=A}}),Object.defineProperty(aA.prototype,"rotation",{get:function(){return Math.atan2(this.shx,this.sx)}}),Object.defineProperty(aA.prototype,"scaleX",{get:function(){return this.decompose().scale.sx}}),Object.defineProperty(aA.prototype,"scaleY",{get:function(){return this.decompose().scale.sy}}),Object.defineProperty(aA.prototype,"isIdentity",{get:function(){return 1===this.sx&&0===this.shy&&0===this.shx&&1===this.sy&&0===this.tx&&0===this.ty}}),aA.prototype.join=function(A){return[this.sx,this.shy,this.shx,this.sy,this.tx,this.ty].map(tA).join(A)},aA.prototype.multiply=function(A){var t=A.sx*this.sx+A.shy*this.shx,e=A.sx*this.shy+A.shy*this.sy,r=A.shx*this.sx+A.sy*this.shx,n=A.shx*this.shy+A.sy*this.sy,i=A.tx*this.sx+A.ty*this.shx+this.tx,A=A.tx*this.shy+A.ty*this.sy+this.ty;return new aA(t,e,r,n,i,A)},aA.prototype.decompose=function(){var A=this.sx,t=this.shy,e=this.shx,r=this.sy,n=this.tx,i=this.ty,s=Math.sqrt(A*A+t*t),o=(A/=s)*e+(t/=s)*r,a=(e-=A*o,r-=t*o,Math.sqrt(e*e+r*r));return o/=a,A*(r/=a)<t*(e/=a)&&(A=-A,t=-t,o=-o,s=-s),{scale:new aA(s,0,0,a,0,0),translate:new aA(1,0,0,1,n,i),rotate:new aA(A,t,-t,A,0,0),skew:new aA(1,0,o,1,0,0)}},aA.prototype.toString=function(A){return this.join(" ")},aA.prototype.inversed=function(){var A=this.sx,t=this.shy,e=this.shx,r=this.sy,n=this.tx,i=this.ty,s=1/(A*r-t*e),r=r*s,t=-t*s,e=-e*s,A=A*s;return new aA(r,t,e,A,-r*n-e*i,-t*n-A*i)},aA.prototype.applyToPoint=function(A){var t=A.x*this.sx+A.y*this.shx+this.tx,A=A.x*this.shy+A.y*this.sy+this.ty;return new Jt(t,A)},aA.prototype.applyToRectangle=function(A){var t=this.applyToPoint(A),A=this.applyToPoint(new Jt(A.x+A.w,A.y+A.h));return new Yt(t.x,t.y,A.x-t.x,A.y-t.y)},aA.prototype.clone=function(){var A=this.sx,t=this.shy,e=this.shx,r=this.sy,n=this.tx,i=this.ty;return new aA(A,t,e,r,n,i)},o.Matrix=aA,o.matrixMult=function(A,t){return t.multiply(A)}),DA=new aA(1,0,0,1,0,0),OA=(o.unitMatrix=o.identityMatrix=DA,function(A,t){var e;IA[A]||(e=(t instanceof kB?"Sh":"P")+(Object.keys(Q).length+1).toString(10),t.id=e,IA[A]=e,Q[e]=t,oA.publish("addPattern",t))});o.ShadingPattern=kB,o.TilingPattern=KB,o.addShadingPattern=function(A,t){return lA("addShadingPattern()"),OA(A,t),this},o.beginTilingPattern=function(A){lA("beginTilingPattern()"),qt(A.boundingBox[0],A.boundingBox[1],A.boundingBox[2]-A.boundingBox[0],A.boundingBox[3]-A.boundingBox[1],A.matrix)},o.endTilingPattern=function(A,t){lA("endTilingPattern()"),t.stream=C[w].join("\n"),OA(A,t),oA.publish("endTilingPattern",t),_A.pop().restore()};function PA(A,u){u=u||21;var t=U(),e=(A=>{for(var t,e=[],r=1/(u-1),n=0;n<1;n+=r)e.push(n);e.push(1),0!=A[0].offset&&(t={offset:0,color:A[0].color},A.unshift(t)),1!=A[A.length-1].offset&&(t={offset:1,color:A[A.length-1].color},A.push(t));for(var i="",s=0,o=0;o<e.length;o++){for(n=e[o];n>A[s+1].offset;)s++;var a=A[s].offset,a=(n-a)/(A[s+1].offset-a),c=A[s].color,l=A[s+1].color;i+=q(Math.round((1-a)*c[0]+a*l[0]).toString(16))+q(Math.round((1-a)*c[1]+a*l[1]).toString(16))+q(Math.round((1-a)*c[2]+a*l[2]).toString(16))}return i.trim()})(A.colors),r=[],e=(r.push({key:"FunctionType",value:"0"}),r.push({key:"Domain",value:"[0.0 1.0]"}),r.push({key:"Size",value:"["+u+"]"}),r.push({key:"BitsPerSample",value:"8"}),r.push({key:"Range",value:"[0.0 1.0 0.0 1.0 0.0 1.0]"}),r.push({key:"Decode",value:"[0.0 1.0 0.0 1.0 0.0 1.0]"}),$A({data:e,additionalKeyValues:r,alreadyAppliedFilters:["/ASCIIHexDecode"],objectId:t}),rA("endobj"),A.objectNumber=U(),rA("<< /ShadingType "+A.type),rA("/ColorSpace /DeviceRGB"),"/Coords ["+tA(parseFloat(A.coords[0]))+" "+tA(parseFloat(A.coords[1]))+" ");2===A.type?e+=tA(parseFloat(A.coords[2]))+" "+tA(parseFloat(A.coords[3])):e+=tA(parseFloat(A.coords[2]))+" "+tA(parseFloat(A.coords[3]))+" "+tA(parseFloat(A.coords[4]))+" "+tA(parseFloat(A.coords[5])),rA(e+="]"),A.matrix&&rA("/Matrix ["+A.matrix.toString()+"]"),rA("/Function "+t+" 0 R"),rA("/Extend [true true]"),rA(">>"),rA("endobj")}function MA(A){for(var t in XA(A.resourcesOid,!0),rA("<<"),rA("/ProcSet [/PDF /Text /ImageB /ImageC /ImageI]"),rA("/Font <<"),sA)sA.hasOwnProperty(t)&&(!1===S||!0===S&&cA.hasOwnProperty(t))&&rA("/"+t+" "+sA[t].objectNumber+" 0 R");if(rA(">>"),0<Object.keys(Q).length){for(var e in rA("/Shading <<"),Q)Q.hasOwnProperty(e)&&Q[e]instanceof kB&&0<=Q[e].objectNumber&&rA("/"+e+" "+Q[e].objectNumber+" 0 R");oA.publish("putShadingPatternDict"),rA(">>")}var r,n=A.objectOid;if(0<Object.keys(Q).length){for(var i in rA("/Pattern <<"),Q)Q.hasOwnProperty(i)&&Q[i]instanceof o.TilingPattern&&0<=Q[i].objectNumber&&Q[i].objectNumber<n&&rA("/"+i+" "+Q[i].objectNumber+" 0 R");oA.publish("putTilingPatternDict"),rA(">>")}if(0<Object.keys(y).length){for(var s in rA("/ExtGState <<"),y)y.hasOwnProperty(s)&&0<=y[s].objectNumber&&rA("/"+s+" "+y[s].objectNumber+" 0 R");oA.publish("putGStateDict"),rA(">>")}for(r in rA("/XObject <<"),F)F.hasOwnProperty(r)&&0<=F[r].objectNumber&&rA("/"+r+" "+F[r].objectNumber+" 0 R");oA.publish("putXobjectDict"),rA(">>"),rA(">>"),rA("endobj")}function kA(A){u[A.fontName]=u[A.fontName]||{},u[A.fontName][A.fontStyle]=A.id}function KA(A,t,e,r,n){return A={id:"F"+(Object.keys(sA).length+1).toString(10),postScriptName:A,fontName:t,fontStyle:e,encoding:r,isStandardFont:n||!1,metadata:{}},oA.publish("addFont",{font:A,instance:this}),sA[A.id]=A,kA(A),A.id}function RA(A,t){var e,r;switch(n=t||n,"string"==typeof A&&(t=T(A.toLowerCase()),Array.isArray(t))&&(e=t[0],r=t[1]),Array.isArray(A)&&(e=A[0]*l,r=A[1]*l),isNaN(e)&&(e=i[0],r=i[1]),(14400<e||14400<r)&&(BB.warn("A page in a PDF can not be wider or taller than 14400 userUnit. jsPDF limits the width/height to 14400"),e=Math.min(14400,e),r=Math.min(14400,r)),i=[e,r],n.substr(0,1)){case"l":e<r&&(i=[r,e]);break;case"p":r<e&&(i=[r,e])}rt(i),Nt(Lt),rA(kt),0!==jt&&rA(jt+" J"),0!==Xt&&rA(Xt+" j"),oA.publish("addPage",{pageNumber:h})}function VA(A,t,e){var r,n=void 0;return e=e||{},A=void 0!==A?A:sA[iA].fontName,t=void 0!==t?t:sA[iA].fontStyle,r=A.toLowerCase(),void 0!==u[r]&&void 0!==u[r][t]?n=u[r][t]:void 0!==u[A]&&void 0!==u[A][t]?n=u[A][t]:!1===e.disableWarning&&BB.warn("Unable to look up font label for font '"+A+"', '"+t+"'. Refer to getFontList() for available fonts."),n||e.noFallback||null==(n=u.times[t])&&(n=u.times.normal),n}function GA(A){return!0===Array.isArray(SA)&&-1<SA.indexOf(A)}var jA,U=o.__private__.newObject=function(){var A=b();return XA(A,!0),A},b=o.__private__.newObjectDeferred=function(){return z[++m]=function(){return uA},m},XA=function(A,t){return t="boolean"==typeof t&&t,z[A]=uA,t&&rA(A+" 0 obj"),A},WA=o.__private__.newAdditionalObject=function(){var A={objId:b(),content:""};return hA.push(A),A},JA=b(),YA=b(),qA=o.__private__.decodeColorString=function(A){var t=A.split(" ");2!==t.length||"g"!==t[1]&&"G"!==t[1]?5!==t.length||"k"!==t[4]&&"K"!==t[4]||(t=[(1-t[0])*(1-t[3]),(1-t[1])*(1-t[3]),(1-t[2])*(1-t[3]),"r"]):t=[A=parseFloat(t[0]),A,A,"r"];for(var e="#",r=0;r<3;r++)e+=("0"+Math.floor(255*parseFloat(t[r])).toString(16)).slice(-2);return e},zA=o.__private__.encodeColorString=function(A){var t,e=(A="string"==typeof A?{ch1:A}:A).ch1,r=A.ch2,n=A.ch3,i=A.ch4,s="draw"===A.pdfColorType?["G","RG","K"]:["g","rg","k"];if("string"==typeof e&&"#"!==e.charAt(0)){var o=new wB(e);if(o.ok)e=o.toHex();else if(!/^\d*\.?\d*$/.test(e))throw new Error('Invalid color "'+e+'" passed to jsPDF.encodeColorString.')}if("string"==typeof(e="string"==typeof e&&/^#[0-9A-Fa-f]{3}$/.test(e)?"#"+e[1]+e[1]+e[2]+e[2]+e[3]+e[3]:e)&&/^#[0-9A-Fa-f]{6}$/.test(e)&&(e=(o=parseInt(e.substr(1),16))>>16&255,r=o>>8&255,n=255&o),void 0===r||void 0===i&&e===r&&r===n)t="string"==typeof e?e+" "+s[0]:2===A.precision?p(e/255)+" "+s[0]:a(e/255)+" "+s[0];else if(void 0===i||"object"===Ea(i)){if(i&&!isNaN(i.a)&&0===i.a)return["1.","1.","1.",s[1]].join(" ");t=("string"==typeof e?[e,r,n,s[1]]:2===A.precision?[p(e/255),p(r/255),p(n/255),s[1]]:[a(e/255),a(r/255),a(n/255),s[1]]).join(" ")}else t=("string"==typeof e?[e,r,n,i,s[2]]:2===A.precision?[p(e),p(r),p(n),p(i),s[2]]:[a(e),a(r),a(n),a(i),s[2]]).join(" ");return t},ZA=o.__private__.getFilters=function(){return x},$A=o.__private__.putStream=function(A){var t=(A=A||{}).data||"",e=A.filters||ZA(),r=A.alreadyAppliedFilters||[],n=A.addLength1||!1,i=t.length,s=A.objectId,o=function(A){return A};if(null!==d&&void 0===s)throw new Error("ObjectId must be passed to putStream for file encryption");null!==d&&(o=v.encryptor(s,0));var a={},c=(!0===e&&(e=["FlateEncode"]),A.additionalKeyValues||[]),s=(a=void 0!==ue.API.processDataByFilters?ue.API.processDataByFilters(t,e):{data:t,reverseChain:[]}).reverseChain+(Array.isArray(r)?r.join(" "):r.toString());if(0!==a.data.length&&(c.push({key:"Length",value:a.data.length}),!0===n)&&c.push({key:"Length1",value:i}),0!=s.length)if(s.split("/").length-1==1)c.push({key:"Filter",value:s});else{c.push({key:"Filter",value:"["+s+"]"});for(var l=0;l<c.length;l+=1)if("DecodeParms"===c[l].key){for(var u=[],h=0;h<a.reverseChain.split("/").length-1;h+=1)u.push("null");u.push(c[l].value),c[l].value="["+u.join(" ")+"]"}}rA("<<");for(var B=0;B<c.length;B++)rA("/"+c[B].key+" "+c[B].value);rA(">>"),0!==a.data.length&&(rA("stream"),rA(o(a.data)),rA("endstream"))},At=o.__private__.putPage=function(A){var t=A.number,e=A.data,r=A.objId,n=A.contentsObjId,A=(XA(r,!0),rA("<</Type /Page"),rA("/Parent "+A.rootDictionaryObjId+" 0 R"),rA("/Resources "+A.resourceDictionaryObjId+" 0 R"),rA("/MediaBox ["+parseFloat(tA(A.mediaBox.bottomLeftX))+" "+parseFloat(tA(A.mediaBox.bottomLeftY))+" "+tA(A.mediaBox.topRightX)+" "+tA(A.mediaBox.topRightY)+"]"),null!==A.cropBox&&rA("/CropBox ["+tA(A.cropBox.bottomLeftX)+" "+tA(A.cropBox.bottomLeftY)+" "+tA(A.cropBox.topRightX)+" "+tA(A.cropBox.topRightY)+"]"),null!==A.bleedBox&&rA("/BleedBox ["+tA(A.bleedBox.bottomLeftX)+" "+tA(A.bleedBox.bottomLeftY)+" "+tA(A.bleedBox.topRightX)+" "+tA(A.bleedBox.topRightY)+"]"),null!==A.trimBox&&rA("/TrimBox ["+tA(A.trimBox.bottomLeftX)+" "+tA(A.trimBox.bottomLeftY)+" "+tA(A.trimBox.topRightX)+" "+tA(A.trimBox.topRightY)+"]"),null!==A.artBox&&rA("/ArtBox ["+tA(A.artBox.bottomLeftX)+" "+tA(A.artBox.bottomLeftY)+" "+tA(A.artBox.topRightX)+" "+tA(A.artBox.topRightY)+"]"),"number"==typeof A.userUnit&&1!==A.userUnit&&rA("/UserUnit "+A.userUnit),oA.publish("putPage",{objId:r,pageContext:B[t],pageNumber:t,page:e}),rA("/Contents "+n+" 0 R"),rA(">>"),rA("endobj"),e.join("\n"));return AA===$&&(A+="\nQ"),XA(n,!0),$A({data:A,filters:ZA(),objectId:n}),rA("endobj"),r},tt=o.__private__.putPages=function(){for(var A=[],t=1;t<=h;t++)B[t].objId=b(),B[t].contentsObjId=b();for(t=1;t<=h;t++)A.push(At({number:t,data:C[t],objId:B[t].objId,contentsObjId:B[t].contentsObjId,mediaBox:B[t].mediaBox,cropBox:B[t].cropBox,bleedBox:B[t].bleedBox,trimBox:B[t].trimBox,artBox:B[t].artBox,userUnit:B[t].userUnit,rootDictionaryObjId:JA,resourceDictionaryObjId:YA}));XA(JA,!0),rA("<</Type /Pages");for(var e="/Kids [",r=0;r<h;r++)e+=A[r]+" 0 R ";rA(e+"]"),rA("/Count "+h),rA(">>"),rA("endobj"),oA.publish("postPutPages")},et=o.__private__.pdfEscape=o.pdfEscape=function(A,l){return((A,t)=>{var e,r,n,i,s,o,a=(t=l||{}).sourceEncoding||"Unicode",c=t.outputEncoding;if((t.autoencode||c)&&sA[iA].metadata&&sA[iA].metadata[a]&&sA[iA].metadata[a].encoding&&(a=sA[iA].metadata[a].encoding,c="string"==typeof(c=!(c=!c&&sA[iA].encoding?sA[iA].encoding:c)&&a.codePages?a.codePages[0]:c)?a[c]:c)){for(i=!1,n=[],e=0,r=A.length;e<r;e++)(s=c[A.charCodeAt(e)])?n.push(String.fromCharCode(s)):n.push(A[e]),n[e].charCodeAt(0)>>8&&(i=!0);A=n.join("")}for(e=A.length;void 0===i&&0!==e;)A.charCodeAt(e-1)>>8&&(i=!0),e--;if(!i)return A;for(n=t.noBOM?[]:[254,255],e=0,r=A.length;e<r;e++){if((o=(s=A.charCodeAt(e))>>8)>>8)throw new Error("Character at position "+e+" of string '"+A+"' exceeds 16bits. Cannot be encoded into UCS-2 BE");n.push(o),n.push(s-(o<<8))}return String.fromCharCode.apply(void 0,n)})(A).replace(/\\/g,"\\\\").replace(/\(/g,"\\(").replace(/\)/g,"\\)")},rt=o.__private__.beginPage=function(A){C[++h]=[],B[h]={objId:0,contentsObjId:0,userUnit:Number(I),artBox:null,bleedBox:null,cropBox:null,trimBox:null,mediaBox:{bottomLeftX:0,bottomLeftY:0,topRightX:Number(A[0]),topRightY:Number(A[1])}},nt(h),J(C[w])},nt=function(A){0<A&&A<=h&&(w=A)},it=o.__private__.getNumberOfPages=o.getNumberOfPages=function(){return C.length-1},st=o.__private__.putInfo=function(){var A,t=U(),e=function(A){return A};for(A in null!==d&&(e=v.encryptor(t,0)),rA("<<"),rA("/Producer ("+et(e("jsPDF "+ue.version))+")"),c)c.hasOwnProperty(A)&&c[A]&&rA("/"+A.substr(0,1).toUpperCase()+A.substr(1)+" ("+et(e(c[A]))+")");rA("/CreationDate ("+et(e(K))+")"),rA(">>"),rA("endobj")},ot=o.__private__.putCatalog=function(A){A=(A=A||{}).rootDictionaryObjId||JA;switch(U(),rA("<<"),rA("/Type /Catalog"),rA("/Pages "+A+" 0 R"),r=r||"fullwidth"){case"fullwidth":rA("/OpenAction [3 0 R /FitH null]");break;case"fullheight":rA("/OpenAction [3 0 R /FitV null]");break;case"fullpage":rA("/OpenAction [3 0 R /Fit]");break;case"original":rA("/OpenAction [3 0 R /XYZ null null 1]");break;default:var t=""+r;"number"==typeof(r="%"===t.substr(t.length-1)?parseInt(r)/100:r)&&rA("/OpenAction [3 0 R /XYZ null null "+p(r)+"]")}switch(yA=yA||"continuous"){case"continuous":rA("/PageLayout /OneColumn");break;case"single":rA("/PageLayout /SinglePage");break;case"two":case"twoleft":rA("/PageLayout /TwoColumnLeft");break;case"tworight":rA("/PageLayout /TwoColumnRight")}CA&&rA("/PageMode /"+CA),oA.publish("putCatalog"),rA(">>"),rA("endobj")},at=o.__private__.putTrailer=function(){rA("trailer"),rA("<<"),rA("/Size "+(m+1)),rA("/Root "+m+" 0 R"),rA("/Info "+(m-1)+" 0 R"),null!==d&&rA("/Encrypt "+v.oid+" 0 R"),rA("/ID [ <"+e+"> <"+e+"> ]"),rA(">>")},ct=o.__private__.putHeader=function(){rA("%PDF-"+N),rA("%ºß¬à")},lt=o.__private__.putXRef=function(){var A="0000000000";rA("xref"),rA("0 "+(m+1)),rA("0000000000 65535 f ");for(var t=1;t<=m;t++)"function"==typeof z[t]?rA((A+z[t]()).slice(-10)+" 00000 n "):void 0!==z[t]?rA((A+z[t]).slice(-10)+" 00000 n "):rA("0000000000 00000 n ")},ut=o.__private__.buildDocument=function(){var A,t,e,r,n,i,s;uA=m=0,Z=[],z=[],hA=[],JA=b(),YA=b(),J(Z),oA.publish("buildDocument"),ct(),tt(),oA.publish("putAdditionalObjects");for(var o,a,c,l=0;l<hA.length;l++){var u=hA[l];XA(u.objId,!0),rA(u.content),rA("endobj")}for(o in oA.publish("postPutAdditionalObjects"),f=[],sA)sA.hasOwnProperty(o)&&(!1===S||!0===S&&cA.hasOwnProperty(o))&&(o=sA[o],oA.publish("putFont",{font:o,out:rA,newObject:U,putStream:$A}),!0!==o.isAlreadyPutted)&&(o.objectNumber=U(),rA("<<"),rA("/Type /Font"),rA("/BaseFont /"+DB(o.postScriptName)),rA("/Subtype /Type1"),"string"==typeof o.encoding&&rA("/Encoding /"+o.encoding),rA("/FirstChar 32"),rA("/LastChar 255"),rA(">>"),rA("endobj"));for(a in y)if(y.hasOwnProperty(a)){h=void 0;B=void 0;var h=y[a];for(var B in h.objectNumber=U(),rA("<<"),h)switch(B){case"opacity":rA("/ca "+p(h[B]));break;case"stroke-opacity":rA("/CA "+p(h[B]))}rA(">>"),rA("endobj")}for(c in F)F.hasOwnProperty(c)&&(c=F[c],A=void 0,t=void 0,c.objectNumber=U(),A=[],A.push({key:"Type",value:"/XObject"}),A.push({key:"Subtype",value:"/Form"}),A.push({key:"BBox",value:"["+[tA(c.x),tA(c.y),tA(c.x+c.width),tA(c.y+c.height)].join(" ")+"]"}),A.push({key:"Matrix",value:"["+c.matrix.toString()+"]"}),t=c.pages[1].join("\n"),$A({data:t,additionalKeyValues:A,objectId:c.objectNumber}),rA("endobj"));var g=f;for(e in Q)Q.hasOwnProperty(e)&&(Q[e]instanceof kB?PA(Q[e]):Q[e]instanceof KB&&(r=Q[e],n=g,i=void 0,s=void 0,i=b(),s=U(),n.push({resourcesOid:i,objectOid:s}),r.objectNumber=s,n=[],n.push({key:"Type",value:"/Pattern"}),n.push({key:"PatternType",value:"1"}),n.push({key:"PaintType",value:"1"}),n.push({key:"TilingType",value:"1"}),n.push({key:"BBox",value:"["+r.boundingBox.map(tA).join(" ")+"]"}),n.push({key:"XStep",value:tA(r.xStep)}),n.push({key:"YStep",value:tA(r.yStep)}),n.push({key:"Resources",value:i+" 0 R"}),r.matrix&&n.push({key:"Matrix",value:"["+r.matrix.toString()+"]"}),$A({data:r.stream,additionalKeyValues:n,objectId:r.objectNumber}),rA("endobj")));oA.publish("putResources"),f.forEach(MA),MA({resourcesOid:YA,objectOid:Number.MAX_SAFE_INTEGER}),oA.publish("postPutResources"),null!==d&&(v.oid=U(),rA("<<"),rA("/Filter /Standard"),rA("/V "+v.v),rA("/R "+v.r),rA("/U <"+v.toHexString(v.U)+">"),rA("/O <"+v.toHexString(v.O)+">"),rA("/P "+v.P),rA(">>"),rA("endobj")),st(),ot();var f=uA;return lt(),at(),rA("startxref"),rA(""+f),rA("%%EOF"),J(C[w]),Z.join("\n")},ht=o.__private__.getBlob=function(A){return new Blob([dA(A)],{type:"application/pdf"})},Bt=o.output=o.__private__.output=(((jA=function(A,t){switch("string"==typeof(t=t||{})?t={filename:t}:t.filename=t.filename||"generated.pdf",A){case void 0:return ut();case"save":o.save(t.filename);break;case"arraybuffer":return dA(ut());case"blob":return ht(ut());case"bloburi":case"bloburl":if(void 0!==le.URL&&"function"==typeof le.URL.createObjectURL)return le.URL&&le.URL.createObjectURL(ht(ut()))||void 0;BB.warn("bloburl is not supported by your system, because URL.createObjectURL is not supported by your browser.");break;case"datauristring":case"dataurlstring":var e="",r=ut();try{e=CB(r)}catch(A){e=CB(unescape(encodeURIComponent(r)))}return"data:application/pdf;filename="+t.filename+";base64,"+e;case"pdfobjectnewwindow":if("[object Window]"===Object.prototype.toString.call(le))return r="https://cdnjs.cloudflare.com/ajax/libs/pdfobject/2.1.1/pdfobject.min.js",e=' integrity="sha512-4ze/a9/4jqu+tX9dfOqJYSvyYd5M6qum/3HpCLr+/Jqf0whc37VUbkpNGHR7/8pSnCFw47T1fmIpwBV7UySh3g==" crossorigin="anonymous"',t.pdfObjectUrl&&(r=t.pdfObjectUrl,e=""),r='<html><style>html, body { padding: 0; margin: 0; } iframe { width: 100%; height: 100%; border: 0;} </style><body><script src="'+r+'"'+e+'><\/script><script >PDFObject.embed("'+this.output("dataurlstring")+'", '+JSON.stringify(t)+");<\/script></body></html>",null!==(e=le.open())&&e.document.write(r),e;throw new Error("The option pdfobjectnewwindow just works in a browser-environment.");case"pdfjsnewwindow":var n,i;if("[object Window]"===Object.prototype.toString.call(le))return r='<html><style>html, body { padding: 0; margin: 0; } iframe { width: 100%; height: 100%; border: 0;} </style><body><iframe id="pdfViewer" src="'+(t.pdfJsUrl||"examples/PDF.js/web/viewer.html")+"?file=&downloadName="+t.filename+'" width="500px" height="400px" /></body></html>',null!==(n=le.open())&&(n.document.write(r),i=this,n.document.documentElement.querySelector("#pdfViewer").onload=function(){n.document.title=t.filename,n.document.documentElement.querySelector("#pdfViewer").contentWindow.PDFViewerApplication.open(i.output("bloburl"))}),n;throw new Error("The option pdfjsnewwindow just works in a browser-environment.");case"dataurlnewwindow":if("[object Window]"!==Object.prototype.toString.call(le))throw new Error("The option dataurlnewwindow just works in a browser-environment.");e='<html><style>html, body { padding: 0; margin: 0; } iframe { width: 100%; height: 100%; border: 0;} </style><body><iframe src="'+this.output("datauristring",t)+'"></iframe></body></html>',r=le.open();if(null!==r&&(r.document.write(e),r.document.title=t.filename),r||"undefined"==typeof safari)return r;break;case"datauri":case"dataurl":return le.document.location.href=this.output("datauristring",t);default:return null}}).foo=function(){try{return jA.apply(this,arguments)}catch(A){var t=A.stack||"",t="Error in function "+(t=~t.indexOf(" at ")?t.split(" at ")[1]:t).split("\n")[0].split("<")[0]+": "+A.message;if(!le.console)throw new Error(t);le.console.error(t,A),le.alert&&alert(t)}}).bar=jA).foo;switch(t){case"pt":l=1;break;case"mm":l=72/25.4;break;case"cm":l=72/2.54;break;case"in":l=72;break;case"px":l=1==GA("px_scaling")?.75:96/72;break;case"pc":case"em":l=12;break;case"ex":l=6;break;default:if("number"!=typeof t)throw new Error("Invalid unit: "+t);l=t}function gt(A){null===A||AA===$&&void 0===A||(A=mt(A),rA(A))}var v=null,ft=(X(),V(),o.__private__.getPageInfo=o.getPageInfo=function(A){if(isNaN(A)||A%1!=0)throw new Error("Invalid argument passed to jsPDF.getPageInfo");return{objId:B[A].objId,pageNumber:A,pageContext:B[A]}}),dt=o.__private__.getPageInfoByObjId=function(A){if(isNaN(A)||A%1!=0)throw new Error("Invalid argument passed to jsPDF.getPageInfoByObjId");for(var t in B)if(B[t].objId===A)break;return ft(t)},pt=o.__private__.getCurrentPageInfo=o.getCurrentPageInfo=function(){return{objId:B[w].objId,pageNumber:w,pageContext:B[w]}},wt=(o.addPage=function(){return RA.apply(this,arguments),this},o.setPage=function(){return nt.apply(this,arguments),J.call(this,C[w]),this},o.insertPage=function(A){return this.addPage(),this.movePage(w,A),this},o.movePage=function(A,t){if(t<A){for(var e=C[A],r=B[A],n=A;t<n;n--)C[n]=C[n-1],B[n]=B[n-1];C[t]=e,B[t]=r,this.setPage(t)}else if(A<t){e=C[A],r=B[A];for(var i=A;i<t;i++)C[i]=C[i+1],B[i]=B[i+1];C[t]=e,B[t]=r,this.setPage(t)}return this},o.deletePage=function(){return function(A){0<A&&A<=h&&(C.splice(A,1),B.splice(A,1),--h<w&&(w=h),this.setPage(w))}.apply(this,arguments),this},o.__private__.text=o.text=function(A,t,e,r,n){var i=(r=r||{}).scope||this;if("number"!=typeof A||"number"!=typeof t||"string"!=typeof e&&!Array.isArray(e)||(s=e,e=t,t=A,A=s),arguments[3]instanceof aA==0?(f=n,w=arguments[5],"object"===Ea(C=arguments[3])&&null!==C||("string"==typeof f&&(w=f,f=null),"string"==typeof C&&(w=C,C=null),"number"==typeof C&&(f=C,C=null),r={flags:C,angle:f,align:w})):(lA("The transform parameter of text() with a Matrix value"),l=n),isNaN(t)||isNaN(e)||null==A)throw new Error("Invalid arguments passed to jsPDF.text");if(0!==A.length){var s="",n="number"==typeof r.lineHeightFactor?r.lineHeightFactor:It,D=i.internal.scaleFactor,o=!1,O=!0;if("string"==typeof A)o=!0;else if(Array.isArray(A)){for(var P,M=A.concat(),a=[],c=M.length;c--;)("string"!=typeof(P=M.shift())||Array.isArray(P)&&"string"!=typeof P[0])&&(O=!1);o=O}if(!1===o)throw new Error('Type of text must be string or Array. "'+A+'" is not recognized.');"string"==typeof A&&(A=A.match(/[\r?\n]/)?A.split(/\r\n|\r|\n/g):[A]);var l,u=nA/i.internal.scaleFactor,h=u*(n-1);switch(r.baseline){case"bottom":e-=h;break;case"top":e+=u-h;break;case"hanging":e+=u-2*h;break;case"middle":e+=u/2-h}0<(b=r.maxWidth||0)&&("string"==typeof A?A=i.splitTextToSize(A,b):"[object Array]"===Object.prototype.toString.call(A)&&(A=A.reduce(function(A,t){return A.concat(i.splitTextToSize(t,b))},[]))),o={text:A,x:t,y:e,options:r,mutex:{pdfEscape:et,activeFontKey:iA,fonts:sA,activeFontSize:nA}},oA.publish("preProcessText",o),A=o.text,f=(r=o.options).angle,l instanceof aA==0&&f&&"number"==typeof f?(f*=Math.PI/180,0===r.rotationDirection&&(f=-f),AA===$&&(f=-f),g=Math.cos(f),p=Math.sin(f),l=new aA(g,p,-p,g,0,0)):f&&f instanceof aA&&(l=f),AA===$&&(l=l||DA),void 0!==(K=r.charSpace||Gt)&&(s+=tA(eA(K))+" Tc\n",this.setCharSpace(this.getCharSpace()||0)),void 0!==(p=r.horizontalScale)&&(s+=tA(100*p)+" Tz\n");var B=-1,g=void 0!==r.renderingMode?r.renderingMode:r.stroke,f=i.internal.getCurrentPageInfo().pageContext;switch(g){case 0:case!1:case"fill":B=0;break;case 1:case!0:case"stroke":B=1;break;case 2:case"fillThenStroke":B=2;break;case 3:case"invisible":B=3;break;case 4:case"fillAndAddForClipping":B=4;break;case 5:case"strokeAndAddPathForClipping":B=5;break;case 6:case"fillThenStrokeAndAddToPathForClipping":B=6;break;case 7:case"addToPathForClipping":B=7}var d,p=void 0!==f.usedRenderingMode?f.usedRenderingMode:-1,w=(-1!==B?s+=B+" Tr\n":-1!==p&&(s+="0 Tr\n"),-1!==B&&(f.usedRenderingMode=B),r.align||"left"),m=nA*n,g=i.internal.pageSize.getWidth(),k=sA[iA],K=r.charSpace||Gt,C=(b=r.maxWidth||0,Object.assign({autoencode:!0,noBOM:!0},r.flags)),Q=[],R=function(A){return i.getStringUnitWidth(A,{font:k,charSpace:K,fontSize:nA,doKerning:!1})*nA/D};if("[object Array]"===Object.prototype.toString.call(A)){a=z(A),"left"!==w&&(d=a.map(R));var y=0;if("right"===w){t-=d[0],A=[];for(var c=a.length,F=0;F<c;F++)I=0===F?(H=Ot(t),Pt(e)):(H=eA(y-d[F]),-m),A.push([a[F],H,I]),y=d[F]}else if("center"===w){t-=d[0]/2,A=[],c=a.length;for(var U=0;U<c;U++)I=0===U?(H=Ot(t),Pt(e)):(H=eA((y-d[U])/2),-m),A.push([a[U],H,I]),y=d[U]}else if("left"===w){A=[],c=a.length;for(var V=0;V<c;V++)A.push(a[V])}else if("justify"===w&&"Identity-H"===k.encoding){A=[],c=a.length;for(var b=0!==b?b:g,G=0,v=0;v<c;v++)if(I=0===v?Pt(e):-m,H=0===v?Ot(t):G,v<c-1){var j=eA((b-d[v])/(a[v].split(" ").length-1)),E=a[v].split(" ");A.push([E[0]+" ",H,I]);for(var G=0,x=1;x<E.length;x++){var X=(R(E[x-1]+" "+E[x])-R(E[x]))*D+j;x==E.length-1?A.push([E[x],X,0]):A.push([E[x]+" ",X,0]),G-=X}}else A.push([a[v],H,I]);A.push(["",G,0])}else{if("justify"!==w)throw new Error('Unrecognized alignment option, use "left", "center", "right" or "justify".');for(A=[],c=a.length,b=0!==b?b:g,v=0;v<c;v++){var I=0===v?Pt(e):-m,H=0===v?Ot(t):0,W=a[v].split(" ").length-1,W=0<W?(b-d[v])/W:0;Q.push(v<c-1?tA(eA(W)):0),A.push([a[v],H,I])}}}o={text:A=!0===("boolean"==typeof r.R2L?r.R2L:mA)?Z(A,function(A,t,e){return[A.split("").reverse().join(""),t,e]}):A,x:t,y:e,options:r,mutex:{pdfEscape:et,activeFontKey:iA,fonts:sA,activeFontSize:nA}},oA.publish("postProcessText",o),A=o.text;var L=o.mutex.isHex||!1,p=sA[iA].encoding;a=z(A="WinAnsiEncoding"!==p&&"StandardEncoding"!==p?A:Z(A,function(A,t,e){return[(A=(A=A).split("\t").join(Array(r.TabLen||9).join(" ")),et(A,C)),t,e]})),A=[];for(var S,J,N,Y=Array.isArray(a[0])?1:0,_="",q=function(A,t,e){return e instanceof aA?(e="number"==typeof r.angle?TA(e,new aA(1,0,0,1,A,t)):TA(new aA(1,0,0,1,A,t),e),(e=AA===$?TA(new aA(1,0,0,-1,0,0),e):e).join(" ")+" Tm\n"):tA(A)+" "+tA(t)+" Td\n"},T=0;T<a.length;T++){switch(_="",Y){case 1:N=(L?"<":"(")+a[T][0]+(L?">":")"),S=parseFloat(a[T][1]),J=parseFloat(a[T][2]);break;case 0:N=(L?"<":"(")+a[T]+(L?">":")"),S=Ot(t),J=Pt(e)}void 0!==Q&&void 0!==Q[T]&&(_=Q[T]+" Tw\n"),0===T?A.push(_+q(S,J,l)+N):0==Y?A.push(_+N):1==Y&&A.push(_+q(S,J,l)+N)}A=0==Y?A.join(" Tj\nT* "):A.join(" Tj\n"),A+=" Tj\n";f="BT\n/",f=(f+=iA+" "+nA+" Tf\n")+(tA(nA*n)+" TL\n");rA(f=(f=f+(Rt+"\n")+s)+A+"ET"),cA[iA]=!0}return i;function z(A){for(var t,e=A.concat(),r=[],n=e.length;n--;)"string"==typeof(t=e.shift())?r.push(t):Array.isArray(A)&&(1===t.length||void 0===t[1]&&void 0===t[2])?r.push(t[0]):r.push([t[0],t[1],t[2]]);return r}function Z(A,t){var e;if("string"==typeof A)e=t(A)[0];else if(Array.isArray(A)){for(var r,n=A.concat(),i=[],s=n.length;s--;)"string"==typeof(r=n.shift())?i.push(t(r)[0]):Array.isArray(r)&&"string"==typeof r[0]&&(r=t(r[0],r[1],r[2]),i.push([r[0],r[1],r[2]]));e=i}return e}},o.__private__.clip=o.clip=function(A){return rA("evenodd"===A?"W*":"W"),this}),E=(o.clipEvenOdd=function(){return wt("evenodd")},o.__private__.discardPath=o.discardPath=function(){return rA("n"),this},o.__private__.isValidStyle=function(A){var t=!1;return t=-1!==[void 0,null,"S","D","F","DF","FD","f","f*","B","B*","n"].indexOf(A)?!0:t}),mt=(o.__private__.setDefaultPathOperation=o.setDefaultPathOperation=function(A){return E(A)&&(L=A),this},o.__private__.getStyle=o.getStyle=function(A){var t=L;switch(A){case"D":case"S":t="S";break;case"F":t="f";break;case"FD":case"DF":t="B";break;case"f":case"f*":case"B":case"B*":t=A}return t}),Ct=o.close=function(){return rA("h"),this},Qt=(o.stroke=function(){return rA("S"),this},o.fill=function(A){return Qt("f",A),this},o.fillEvenOdd=function(A){return Qt("f*",A),this},o.fillStroke=function(A){return Qt("B",A),this},o.fillStrokeEvenOdd=function(A){return Qt("B*",A),this},function(A,t){"object"===Ea(t)?yt(t,A):rA(A)});var yt=function(A,t){var e,r=IA[A.key],n=Q[r];n instanceof kB?(rA("q"),rA(Ft(t)),n.gState&&o.setGState(n.gState),rA(A.matrix.toString()+" cm"),rA("/"+r+" sh"),rA("Q")):n instanceof KB&&(e=new aA(1,0,0,-1,0,ae()),A.matrix&&(e=e.multiply(A.matrix||DA),r=function(A,t,e,r,n){return(t=new KB(t||this.boundingBox,e||this.xStep,r||this.yStep,this.gState,n||this.matrix)).stream=this.stream,e=A+"$$"+this.cloneIndex+++"$$",OA(e,t),t}.call(n,A.key,A.boundingBox,A.xStep,A.yStep,e).id),rA("q"),rA("/Pattern cs"),rA("/"+r+" scn"),n.gState&&o.setGState(n.gState),rA(t),rA("Q"))},Ft=function(A){switch(A){case"f":case"F":case"n":return"W n";case"f*":return"W* n";case"B":case"S":return"W S";case"B*":return"W* S"}},Ut=o.moveTo=function(A,t){return rA(tA(eA(A))+" "+tA(M(t))+" m"),this},bt=o.lineTo=function(A,t){return rA(tA(eA(A))+" "+tA(M(t))+" l"),this},vt=o.curveTo=function(A,t,e,r,n,i){return rA([tA(eA(A)),tA(M(t)),tA(eA(e)),tA(M(r)),tA(eA(n)),tA(M(i)),"c"].join(" ")),this},Et=(o.__private__.line=o.line=function(A,t,e,r,n){if(isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r)||!E(n))throw new Error("Invalid arguments passed to jsPDF.line");return AA===s?this.lines([[e-A,r-t]],A,t,[1,1],n||"S"):this.lines([[e-A,r-t]],A,t,[1,1]).stroke()},o.__private__.lines=o.lines=function(A,t,e,r,n,i){var s,o,a,c,l,u,h,B,g,f,d,p;if("number"==typeof A&&(p=e,e=t,t=A,A=p),r=r||[1,1],i=i||!1,isNaN(t)||isNaN(e)||!Array.isArray(A)||!Array.isArray(r)||!E(n)||"boolean"!=typeof i)throw new Error("Invalid arguments passed to jsPDF.lines");for(Ut(t,e),s=r[0],o=r[1],c=A.length,f=t,d=e,a=0;a<c;a++)2===(l=A[a]).length?(f=l[0]*s+f,d=l[1]*o+d,bt(f,d)):(u=l[0]*s+f,h=l[1]*o+d,B=l[2]*s+f,g=l[3]*o+d,f=l[4]*s+f,d=l[5]*o+d,vt(u,h,B,g,f,d));return i&&Ct(),gt(n),this},o.path=function(A){for(var t=0;t<A.length;t++){var e=A[t],r=e.c;switch(e.op){case"m":Ut(r[0],r[1]);break;case"l":bt(r[0],r[1]);break;case"c":vt.apply(this,r);break;case"h":Ct()}}return this},o.__private__.rect=o.rect=function(A,t,e,r,n){if(isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r)||!E(n))throw new Error("Invalid arguments passed to jsPDF.rect");return AA===s&&(r=-r),rA([tA(eA(A)),tA(M(t)),tA(eA(e)),tA(eA(r)),"re"].join(" ")),gt(n),this},o.__private__.triangle=o.triangle=function(A,t,e,r,n,i,s){if(isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r)||isNaN(n)||isNaN(i)||!E(s))throw new Error("Invalid arguments passed to jsPDF.triangle");return this.lines([[e-A,r-t],[n-e,i-r],[A-n,t-i]],A,t,[1,1],s,!0),this},o.__private__.roundedRect=o.roundedRect=function(A,t,e,r,n,i,s){if(isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r)||isNaN(n)||isNaN(i)||!E(s))throw new Error("Invalid arguments passed to jsPDF.roundedRect");var o=4/3*(Math.SQRT2-1);return n=Math.min(n,.5*e),i=Math.min(i,.5*r),this.lines([[e-2*n,0],[n*o,0,n,i-i*o,n,i],[0,r-2*i],[0,i*o,-n*o,i,-n,i],[2*n-e,0],[-n*o,0,-n,-i*o,-n,-i],[0,2*i-r],[0,-i*o,n*o,-i,n,-i]],A+n,t,[1,1],s,!0),this},o.__private__.ellipse=o.ellipse=function(A,t,e,r,n){if(isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r)||!E(n))throw new Error("Invalid arguments passed to jsPDF.ellipse");var i=4/3*(Math.SQRT2-1)*e,s=4/3*(Math.SQRT2-1)*r;return Ut(A+e,t),vt(A+e,t-s,A+i,t-r,A,t-r),vt(A-i,t-r,A-e,t-s,A-e,t),vt(A-e,t+s,A-i,t+r,A,t+r),vt(A+i,t+r,A+e,t+s,A+e,t),gt(n),this},o.__private__.circle=o.circle=function(A,t,e,r){if(isNaN(A)||isNaN(t)||isNaN(e)||!E(r))throw new Error("Invalid arguments passed to jsPDF.circle");return this.ellipse(A,t,e,e,r)},o.setFont=function(A,t,e){return e&&(t=P(t,e)),iA=VA(A,t,{disableWarning:!1}),this},o.__private__.getFont=o.getFont=function(){return sA[VA.apply(o,arguments)]});o.__private__.getFontList=o.getFontList=function(){var A,t,e={};for(A in u)if(u.hasOwnProperty(A))for(t in e[A]=[],u[A])u[A].hasOwnProperty(t)&&e[A].push(t);return e},o.addFont=function(A,t,e,r,n){var i=["StandardEncoding","MacRomanEncoding","Identity-H","WinAnsiEncoding"];return r&&-1!==i.indexOf(r)?n=r:r&&-1==i.indexOf(r)&&(e=P(e,r)),KA.call(this,A,t,e,n=n||"Identity-H")};function xt(){this.page=h,this.currentPage=w,this.pages=C.slice(0),this.pagesContext=B.slice(0),this.x=bA,this.y=vA,this.matrix=EA,this.width=ee(w),this.height=ne(w),this.outputDestination=gA,this.id="",this.objectNumber=-1}var It,Ht,Lt=A.lineWidth||.200025,St=o.__private__.getLineWidth=o.getLineWidth=function(){return Lt},Nt=o.__private__.setLineWidth=o.setLineWidth=function(A){return rA(tA(eA(Lt=A))+" w"),this},_t=(o.__private__.setLineDash=ue.API.setLineDash=ue.API.setLineDashPattern=function(A,t){if(A=A||[],t=t||0,isNaN(t)||!Array.isArray(A))throw new Error("Invalid arguments passed to jsPDF.setLineDash");return A=A.map(function(A){return tA(eA(A))}).join(" "),t=tA(eA(t)),rA("["+A+"] "+t+" d"),this},o.__private__.getLineHeight=o.getLineHeight=function(){return nA*It}),Tt=(o.__private__.getLineHeight=o.getLineHeight=function(){return nA*It},o.__private__.setLineHeightFactor=o.setLineHeightFactor=function(A){return"number"==typeof(A=A||1.15)&&(It=A),this}),Dt=o.__private__.getLineHeightFactor=o.getLineHeightFactor=function(){return It},Ot=(Tt(A.lineHeight),o.__private__.getHorizontalCoordinate=function(A){return eA(A)}),Pt=o.__private__.getVerticalCoordinate=function(A){return AA===$?A:B[w].mediaBox.topRightY-B[w].mediaBox.bottomLeftY-eA(A)},Tt=o.__private__.getHorizontalCoordinateString=o.getHorizontalCoordinateString=function(A){return tA(Ot(A))},Mt=o.__private__.getVerticalCoordinateString=o.getVerticalCoordinateString=function(A){return tA(Pt(A))},kt=A.strokeColor||"0 G",Kt=(o.__private__.getStrokeColor=o.getDrawColor=function(){return qA(kt)},o.__private__.setStrokeColor=o.setDrawColor=function(A,t,e,r){return kt=zA({ch1:A,ch2:t,ch3:e,ch4:r,pdfColorType:"draw",precision:2}),rA(kt),this},A.fillColor||"0 g"),Rt=(o.__private__.getFillColor=o.getFillColor=function(){return qA(Kt)},o.__private__.setFillColor=o.setFillColor=function(A,t,e,r){return Kt=zA({ch1:A,ch2:t,ch3:e,ch4:r,pdfColorType:"fill",precision:2}),rA(Kt),this},A.textColor||"0 g"),Vt=o.__private__.getTextColor=o.getTextColor=function(){return qA(Rt)},Gt=(o.__private__.setTextColor=o.setTextColor=function(A,t,e,r){return Rt=zA({ch1:A,ch2:t,ch3:e,ch4:r,pdfColorType:"text",precision:3}),this},A.charSpace),A=o.__private__.getCharSpace=o.getCharSpace=function(){return parseFloat(Gt||0)},jt=(o.__private__.setCharSpace=o.setCharSpace=function(A){if(isNaN(A))throw new Error("Invalid argument passed to jsPDF.setCharSpace");return Gt=A,this},0),Xt=(o.CapJoinStyles={0:0,butt:0,but:0,miter:0,1:1,round:1,rounded:1,circle:1,2:2,projecting:2,project:2,square:2,bevel:2},o.__private__.setLineCap=o.setLineCap=function(A){var t=o.CapJoinStyles[A];if(void 0===t)throw new Error("Line cap style of '"+A+"' is not recognized. See or extend .CapJoinStyles property for valid styles");return rA((jt=t)+" J"),this},0),Wt=(o.__private__.setLineJoin=o.setLineJoin=function(A){var t=o.CapJoinStyles[A];if(void 0===t)throw new Error("Line join style of '"+A+"' is not recognized. See or extend .CapJoinStyles property for valid styles");return rA((Xt=t)+" j"),this},o.__private__.setLineMiterLimit=o.__private__.setMiterLimit=o.setLineMiterLimit=o.setMiterLimit=function(A){if(A=A||0,isNaN(A))throw new Error("Invalid argument passed to jsPDF.setLineMiterLimit");return rA(tA(eA(A))+" M"),this},o.GState=PB,o.setGState=function(A){(A="string"==typeof A?y[HA[A]]:Wt(null,A)).equals(LA)||(rA("/"+A.id+" gs"),LA=A)},function(A,t){if(!A||!HA[A]){var e,r,n=!1;for(e in y)if(y.hasOwnProperty(e)&&y[e].equals(t)){n=!0;break}return n?t=y[e]:(r="GS"+(Object.keys(y).length+1).toString(10),(y[r]=t).id=r),A&&(HA[A]=t.id),oA.publish("addGState",t),t}}),Jt=(o.addGState=function(A,t){return Wt(A,t),this},o.saveGraphicsState=function(){return rA("q"),xA.push({key:iA,size:nA,color:Rt}),this},o.restoreGraphicsState=function(){rA("Q");var A=xA.pop();return iA=A.key,nA=A.size,Rt=A.color,LA=null,this},o.setCurrentTransformationMatrix=function(A){return rA(A.toString()+" cm"),this},o.comment=function(A){return rA("#"+A),this},function(A,t){var e=A||0,r=(Object.defineProperty(this,"x",{enumerable:!0,get:function(){return e},set:function(A){isNaN(A)||(e=parseFloat(A))}}),t||0),n=(Object.defineProperty(this,"y",{enumerable:!0,get:function(){return r},set:function(A){isNaN(A)||(r=parseFloat(A))}}),"pt");return Object.defineProperty(this,"type",{enumerable:!0,get:function(){return n},set:function(A){n=A.toString()}}),this}),Yt=function(A,t,e,r){Jt.call(this,A,t),this.type="rect";var n=e||0,i=(Object.defineProperty(this,"w",{enumerable:!0,get:function(){return n},set:function(A){isNaN(A)||(n=parseFloat(A))}}),r||0);return Object.defineProperty(this,"h",{enumerable:!0,get:function(){return i},set:function(A){isNaN(A)||(i=parseFloat(A))}}),this},qt=(xt.prototype.restore=function(){h=this.page,w=this.currentPage,B=this.pagesContext,C=this.pages,bA=this.x,vA=this.y,EA=this.matrix,re(w,this.width),ie(w,this.height),gA=this.outputDestination},function(A,t,e,r,n){_A.push(new xt),h=w=0,C=[],bA=A,vA=t,EA=n,rt([e,r])});for(Ht in o.beginFormObject=function(A,t,e,r,n){return qt(A,t,e,r,n),this},o.endFormObject=function(A){return NA[A=A]||(t=new xt,e="Xo"+(Object.keys(F).length+1).toString(10),t.id=e,F[NA[A]=e]=t,oA.publish("addFormObject",t)),_A.pop().restore(),this;var t,e},o.doFormObject=function(A,t){A=F[NA[A]];return rA("q"),rA(t.toString()+" cm"),rA("/"+A.id+" Do"),rA("Q"),this},o.getFormObject=function(A){A=F[NA[A]];return{x:A.x,y:A.y,width:A.width,height:A.height,matrix:A.matrix}},o.save=function(r,A){return r=r||"generated.pdf",(A=A||{}).returnPromise=A.returnPromise||!1,!1===A.returnPromise?(pB(ht(ut()),r),"function"==typeof pB.unload&&le.setTimeout&&setTimeout(pB.unload,911),this):new Promise(function(A,t){try{var e=pB(ht(ut()),r);"function"==typeof pB.unload&&le.setTimeout&&setTimeout(pB.unload,911),A(e)}catch(A){t(A.message)}})},ue.API)if(ue.API.hasOwnProperty(Ht))if("events"===Ht&&ue.API.events.length){zt=void 0;Zt=void 0;$t=void 0;Ae=void 0;te=void 0;var zt=oA;var Zt=ue.API.events;for(var $t,Ae,te=Zt.length-1;-1!==te;te--)$t=Zt[te][0],Ae=Zt[te][1],zt.subscribe.apply(zt,[$t].concat("function"==typeof Ae?[Ae]:Ae))}else o[Ht]=ue.API[Ht];function ee(A){return B[A].mediaBox.topRightX-B[A].mediaBox.bottomLeftX}function re(A,t){B[A].mediaBox.topRightX=t+B[A].mediaBox.bottomLeftX}function ne(A){return B[A].mediaBox.topRightY-B[A].mediaBox.bottomLeftY}function ie(A,t){B[A].mediaBox.topRightY=t+B[A].mediaBox.bottomLeftY}var se=o.getPageWidth=function(A){return ee(A=A||w)/l},oe=o.setPageWidth=function(A,t){re(A,t*l)},ae=o.getPageHeight=function(A){return ne(A=A||w)/l},ce=o.setPageHeight=function(A,t){ie(A,t*l)};return o.internal={pdfEscape:et,getStyle:mt,getFont:Et,getFontSize:wA,getCharSpace:A,getTextColor:Vt,getLineHeight:_t,getLineHeightFactor:Dt,getLineWidth:St,write:fA,getHorizontalCoordinate:Ot,getVerticalCoordinate:Pt,getCoordinateString:Tt,getVerticalCoordinateString:Mt,collections:{},newObject:U,newAdditionalObject:WA,newObjectDeferred:b,newObjectDeferredBegin:XA,getFilters:ZA,putStream:$A,events:oA,scaleFactor:l,pageSize:{getWidth:function(){return se(w)},setWidth:function(A){oe(w,A)},getHeight:function(){return ae(w)},setHeight:function(A){ce(w,A)}},encryptionOptions:d,encryption:v,getEncryptor:function(A){return null!==d?v.encryptor(A,0):function(A){return A}},output:Bt,getNumberOfPages:it,get pages(){return C},out:rA,f2:p,f3:a,getPageInfo:ft,getPageInfoByObjId:dt,getCurrentPageInfo:pt,getPDFVersion:f,Point:Jt,Rectangle:Yt,Matrix:aA,hasHotfix:GA},Object.defineProperty(o.internal.pageSize,"width",{get:function(){return se(w)},set:function(A){oe(w,A)},enumerable:!0,configurable:!0}),Object.defineProperty(o.internal.pageSize,"height",{get:function(){return ae(w)},set:function(A){ce(w,A)},enumerable:!0,configurable:!0}),function(A){for(var t=0,e=pA.length;t<e;t++){var r=KA.call(this,A[t][0],A[t][1],A[t][2],pA[t][3],!0),n=(!1===S&&(cA[r]=!0),A[t][0].split("-"));kA({id:r,fontName:n[0],fontStyle:n[1]||""})}oA.publish("addFonts",{fonts:sA,dictionary:u})}.call(o,pA),iA="F1",RA(i,n),oA.publish("initialized"),o}TB.prototype.lsbFirstWord=function(A){return String.fromCharCode(255&A,A>>8&255,A>>16&255,A>>24&255)},TB.prototype.toHexString=function(A){return A.split("").map(function(A){return("0"+(255&A.charCodeAt(0)).toString(16)).slice(-2)}).join("")},TB.prototype.hexToBytes=function(A){for(var t=[],e=0;e<A.length;e+=2)t.push(String.fromCharCode(parseInt(A.substr(e,2),16)));return t.join("")},TB.prototype.processOwnerPassword=function(A,t){return NB(HB(t).substr(0,5),A)},TB.prototype.encryptor=function(A,t){var e=HB(this.encryptionKey+String.fromCharCode(255&A,A>>8&255,A>>16&255,255&t,t>>8&255)).substr(0,10);return function(A){return NB(e,A)}},PB.prototype.equals=function(A){var t,e="id,objectNumber,equals";if(!A||Ea(A)!==Ea(this))return!1;var r=0;for(t in this)if(!(0<=e.indexOf(t))){if(this.hasOwnProperty(t)&&!A.hasOwnProperty(t))return!1;if(this[t]!==A[t])return!1;r++}for(t in A)A.hasOwnProperty(t)&&e.indexOf(t)<0&&r--;return 0===r},ue.API={events:[]},ue.version="4.0.0";function RB(A){return A.replace(/\\\\/g,"\\").replace(/\\\(/g,"(").replace(/\\\)/g,")")}function VB(A){return A.toFixed(5)}function GB(A,t){A.prototype=Object.create(t.prototype),A.prototype.constructor=A}function jB(A){return A*Kg}function XB(A,t,e){var r=t.scope.internal.getFont(t.fontName,t.fontStyle),A=t.scope.getStringUnitWidth(A,{font:r,fontSize:parseFloat(e),charSpace:0})*parseFloat(e);return{height:t.scope.getStringUnitWidth("3",{font:r,fontSize:parseFloat(e),charSpace:0})*parseFloat(e)*1.5,width:A}}function WB(w,A){if(void 0!==(A.scope=w).internal&&(void 0===w.internal.acroformPlugin||!1===w.internal.acroformPlugin.isInitialized)){if(ZB.FieldNum=0,w.internal.acroformPlugin=JSON.parse(JSON.stringify(Zg)),w.internal.acroformPlugin.acroFormDictionaryRoot)throw new Error("Exception while creating AcroformDictionary");Kg=w.internal.scaleFactor,w.internal.acroformPlugin.acroFormDictionaryRoot=new zB,(w.internal.acroformPlugin.acroFormDictionaryRoot.scope=w).internal.acroformPlugin.acroFormDictionaryRoot._eventID=w.internal.events.subscribe("postPutResources",function(){var A;(A=w).internal.events.unsubscribe(A.internal.acroformPlugin.acroFormDictionaryRoot._eventID),delete A.internal.acroformPlugin.acroFormDictionaryRoot._eventID,A.internal.acroformPlugin.printedOut=!0}),w.internal.events.subscribe("buildDocument",function(){var A=w;A.internal.acroformPlugin.acroFormDictionaryRoot.objId=void 0;var t,e,r=A.internal.acroformPlugin.acroFormDictionaryRoot.Fields;for(t in r)r.hasOwnProperty(t)&&((e=r[t]).objId=void 0,e.hasAnnotation)&&((A,t)=>{var e={type:"reference",object:A};void 0===t.internal.getPageInfo(A.page).pageContext.annotations.find(function(A){return A.type===e.type&&A.object===e.object})&&t.internal.getPageInfo(A.page).pageContext.annotations.push(e)})(e,A)}),w.internal.events.subscribe("putCatalog",function(){var A=w;if(void 0===A.internal.acroformPlugin.acroFormDictionaryRoot)throw new Error("putCatalogCallback: Root missing.");A.internal.write("/AcroForm "+A.internal.acroformPlugin.acroFormDictionaryRoot.objId+" 0 R")}),w.internal.events.subscribe("postPutPages",function(A){var t,e,r,n=A,i=w,A=!n;for(g in n||(i.internal.newObjectDeferredBegin(i.internal.acroformPlugin.acroFormDictionaryRoot.objId,!0),i.internal.acroformPlugin.acroFormDictionaryRoot.putStream()),n=n||i.internal.acroformPlugin.acroFormDictionaryRoot.Kids)if(n.hasOwnProperty(g)){var s,o=n[g],a=[],c=o.Rect;if(o.Rect&&(o.Rect=qg(o.Rect,i)),i.internal.newObjectDeferredBegin(o.objId,!0),o.DA=x.createDefaultAppearanceStream(o),"object"===Ea(o)&&"function"==typeof o.getKeyValueListForStream&&(a=o.getKeyValueListForStream()),o.Rect=c,o.hasAppearanceStream&&!o.appearanceStreamContent&&(e=s=c=void 0,s=(t=o).appearanceStreamContent||(t.V||t.DV?(c=[],s=t._V||t.DV,s=zg(t,s),e=t.scope.internal.getFont(t.fontName,t.fontStyle).id,c.push("/Tx BMC"),c.push("q"),c.push("BT"),c.push(t.scope.__private__.encodeColorString(t.color)),c.push("/"+e+" "+E(s.fontSize)+" Tf"),c.push("1 0 0 1 0 0 Tm"),c.push(s.text),c.push("ET"),c.push("Q"),c.push("EMC"),(e=Vg(t)).scope=t.scope,e.stream=c.join("\n"),e):void 0),a.push({key:"AP",value:"<</N "+s+">>"}),i.internal.acroformPlugin.xForms.push(s)),o.appearanceStreamContent){var l,u="";for(l in o.appearanceStreamContent)if(o.appearanceStreamContent.hasOwnProperty(l)){var h,B=o.appearanceStreamContent[l],u=u+("/"+l+" ")+"<<";if(1<=Object.keys(B).length||Array.isArray(B))for(var g in B)B.hasOwnProperty(g)&&(u+="/"+g+" "+(h="function"==typeof(h=B[g])?h.call(i,o):h)+" ",0<=i.internal.acroformPlugin.xForms.indexOf(h)||i.internal.acroformPlugin.xForms.push(h));else u+="/"+g+" "+(h="function"==typeof(h=B)?h.call(i,o):h),0<=i.internal.acroformPlugin.xForms.indexOf(h)||i.internal.acroformPlugin.xForms.push(h);u+=">>"}a.push({key:"AP",value:"<<\n"+u+">>"})}i.internal.putStream({additionalKeyValues:a,objectId:o.objId}),i.internal.out("endobj")}if(A){var f,d=i.internal.acroformPlugin.xForms,p=i;for(f in d)d.hasOwnProperty(f)&&(r=d[f=f],p.internal.newObjectDeferredBegin(r.objId,!0),"object"===Ea(r)&&"function"==typeof r.putStream&&r.putStream(),delete d[f])}}),w.internal.acroformPlugin.isInitialized=!0}}function JB(A,t,e){var r=function(A){return A};return void 0!==t&&e&&(r=e.internal.getEncryptor(t)),(A=A||"").toString(),"("+Rg(r(A))+")"}function YB(){this._objId=void 0,this._scope=void 0,Object.defineProperty(this,"objId",{get:function(){if(void 0===this._objId){if(void 0===this.scope)return;this._objId=this.scope.internal.newObjectDeferred()}return this._objId},set:function(A){this._objId=A}}),Object.defineProperty(this,"scope",{value:this._scope,writable:!0})}function qB(){YB.call(this),Object.defineProperty(this,"Type",{value:"/XObject",configurable:!1,writable:!0}),Object.defineProperty(this,"Subtype",{value:"/Form",configurable:!1,writable:!0}),Object.defineProperty(this,"FormType",{value:1,configurable:!1,writable:!0});var t,e=[];Object.defineProperty(this,"BBox",{configurable:!1,get:function(){return e},set:function(A){e=A}}),Object.defineProperty(this,"Resources",{value:"2 0 R",configurable:!1,writable:!0}),Object.defineProperty(this,"stream",{enumerable:!1,configurable:!0,set:function(A){t=A.trim()},get:function(){return t||null}})}function zB(){YB.call(this);var t,A=[];Object.defineProperty(this,"Kids",{enumerable:!1,configurable:!0,get:function(){return 0<A.length?A:void 0}}),Object.defineProperty(this,"Fields",{enumerable:!1,configurable:!1,get:function(){return A}}),Object.defineProperty(this,"DA",{enumerable:!1,configurable:!1,get:function(){var A;if(t)return A=function(A){return A},this.scope&&(A=this.scope.internal.getEncryptor(this.objId)),"("+Rg(A(t))+")"},set:function(A){t=A}})}function ZB(){YB.call(this);var t=4,e=(Object.defineProperty(this,"F",{enumerable:!1,configurable:!1,get:function(){return t},set:function(A){if(isNaN(A))throw new Error('Invalid value "'+A+'" for attribute F supplied.');t=A}}),Object.defineProperty(this,"showWhenPrinted",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(t,3))},set:function(A){!0===Boolean(A)?this.F=Jg(t,3):this.F=Yg(t,3)}}),0),r=(Object.defineProperty(this,"Ff",{enumerable:!1,configurable:!1,get:function(){return e},set:function(A){if(isNaN(A))throw new Error('Invalid value "'+A+'" for attribute Ff supplied.');e=A}}),[]),n=(Object.defineProperty(this,"Rect",{enumerable:!1,configurable:!1,get:function(){if(0!==r.length)return r},set:function(A){r=void 0!==A?A:[]}}),Object.defineProperty(this,"x",{enumerable:!0,configurable:!0,get:function(){return!r||isNaN(r[0])?0:r[0]},set:function(A){r[0]=A}}),Object.defineProperty(this,"y",{enumerable:!0,configurable:!0,get:function(){return!r||isNaN(r[1])?0:r[1]},set:function(A){r[1]=A}}),Object.defineProperty(this,"width",{enumerable:!0,configurable:!0,get:function(){return!r||isNaN(r[2])?0:r[2]},set:function(A){r[2]=A}}),Object.defineProperty(this,"height",{enumerable:!0,configurable:!0,get:function(){return!r||isNaN(r[3])?0:r[3]},set:function(A){r[3]=A}}),""),i=(Object.defineProperty(this,"FT",{enumerable:!0,configurable:!1,get:function(){return n},set:function(A){switch(A){case"/Btn":case"/Tx":case"/Ch":case"/Sig":n=A;break;default:throw new Error('Invalid value "'+A+'" for attribute FT supplied.')}}}),null),s=(Object.defineProperty(this,"T",{enumerable:!0,configurable:!1,get:function(){if(!i||i.length<1){if(this instanceof tf)return;i="FieldObject"+ZB.FieldNum++}var A=function(A){return A};return this.scope&&(A=this.scope.internal.getEncryptor(this.objId)),"("+Rg(A(i))+")"},set:function(A){i=A.toString()}}),Object.defineProperty(this,"fieldName",{configurable:!0,enumerable:!0,get:function(){return i},set:function(A){i=A}}),"helvetica"),o=(Object.defineProperty(this,"fontName",{enumerable:!0,configurable:!0,get:function(){return s},set:function(A){s=A}}),"normal"),a=(Object.defineProperty(this,"fontStyle",{enumerable:!0,configurable:!0,get:function(){return o},set:function(A){o=A}}),0),c=(Object.defineProperty(this,"fontSize",{enumerable:!0,configurable:!0,get:function(){return a},set:function(A){a=A}}),void 0),l=(Object.defineProperty(this,"maxFontSize",{enumerable:!0,configurable:!0,get:function(){return void 0===c?50/Kg:c},set:function(A){c=A}}),"black"),u=(Object.defineProperty(this,"color",{enumerable:!0,configurable:!0,get:function(){return l},set:function(A){l=A}}),"/F1 0 Tf 0 g"),h=(Object.defineProperty(this,"DA",{enumerable:!0,configurable:!1,get:function(){if(!(!u||this instanceof tf||this instanceof ef))return JB(u,this.objId,this.scope)},set:function(A){A=A.toString(),u=A}}),null),B=(Object.defineProperty(this,"DV",{enumerable:!1,configurable:!1,get:function(){if(h)return this instanceof Af==0?JB(h,this.objId,this.scope):h},set:function(A){A=A.toString(),h=this instanceof Af==0?"("===A.substr(0,1)?RB(A.substr(1,A.length-2)):RB(A):A}}),Object.defineProperty(this,"defaultValue",{enumerable:!0,configurable:!0,get:function(){return this instanceof Af==1?RB(h.substr(1,h.length-1)):h},set:function(A){A=A.toString(),h=this instanceof Af==1?"/"+A:A}}),null);Object.defineProperty(this,"_V",{enumerable:!1,configurable:!1,get:function(){if(B)return B},set:function(A){this.V=A}}),Object.defineProperty(this,"V",{enumerable:!1,configurable:!1,get:function(){if(B)return this instanceof Af==0?JB(B,this.objId,this.scope):B},set:function(A){A=A.toString(),B=this instanceof Af==0?"("===A.substr(0,1)?RB(A.substr(1,A.length-2)):RB(A):A}}),Object.defineProperty(this,"value",{enumerable:!0,configurable:!0,get:function(){return this instanceof Af==1?RB(B.substr(1,B.length-1)):B},set:function(A){A=A.toString(),B=this instanceof Af==1?"/"+A:A}}),Object.defineProperty(this,"hasAnnotation",{enumerable:!0,configurable:!0,get:function(){return this.Rect}}),Object.defineProperty(this,"Type",{enumerable:!0,configurable:!1,get:function(){return this.hasAnnotation?"/Annot":null}}),Object.defineProperty(this,"Subtype",{enumerable:!0,configurable:!1,get:function(){return this.hasAnnotation?"/Widget":null}});var g,f=!1,d=(Object.defineProperty(this,"hasAppearanceStream",{enumerable:!0,configurable:!0,get:function(){return f},set:function(A){A=Boolean(A),f=A}}),Object.defineProperty(this,"page",{enumerable:!0,configurable:!0,get:function(){if(g)return g},set:function(A){g=A}}),Object.defineProperty(this,"readOnly",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,1))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,1):this.Ff=Yg(this.Ff,1)}}),Object.defineProperty(this,"required",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,2))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,2):this.Ff=Yg(this.Ff,2)}}),Object.defineProperty(this,"noExport",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,3))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,3):this.Ff=Yg(this.Ff,3)}}),null);Object.defineProperty(this,"Q",{enumerable:!0,configurable:!1,get:function(){if(null!==d)return d},set:function(A){if(-1===[0,1,2].indexOf(A))throw new Error('Invalid value "'+A+'" for attribute Q supplied.');d=A}}),Object.defineProperty(this,"textAlign",{get:function(){var A;switch(d){case 0:default:A="left";break;case 1:A="center";break;case 2:A="right"}return A},configurable:!0,enumerable:!0,set:function(A){switch(A){case"right":case 2:d=2;break;case"center":case 1:d=1;break;default:d=0}}})}function $B(){ZB.call(this),this.FT="/Ch",this.V="()",this.fontName="zapfdingbats";var t=0,e=(Object.defineProperty(this,"TI",{enumerable:!0,configurable:!1,get:function(){return t},set:function(A){t=A}}),Object.defineProperty(this,"topIndex",{enumerable:!0,configurable:!0,get:function(){return t},set:function(A){t=A}}),[]);Object.defineProperty(this,"Opt",{enumerable:!0,configurable:!1,get:function(){return $g(e,this.objId,this.scope)},set:function(A){var t=[];"string"==typeof A&&(t=((A,t,e)=>{e=e||1;for(var r,n=[];r=t.exec(A);)n.push(r[e]);return n})(A,/\((.*?)\)/g)),e=t}}),this.getOptions=function(){return e},this.setOptions=function(A){e=A,this.sort&&e.sort()},this.addOption=function(A){A=(A=A||"").toString(),e.push(A),this.sort&&e.sort()},this.removeOption=function(A,t){for(t=t||!1,A=(A=A||"").toString();-1!==e.indexOf(A)&&(e.splice(e.indexOf(A),1),!1!==t););},Object.defineProperty(this,"combo",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,18))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,18):this.Ff=Yg(this.Ff,18)}}),Object.defineProperty(this,"edit",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,19))},set:function(A){!0===this.combo&&(!0===Boolean(A)?this.Ff=Jg(this.Ff,19):this.Ff=Yg(this.Ff,19))}}),Object.defineProperty(this,"sort",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,20))},set:function(A){!0===Boolean(A)?(this.Ff=Jg(this.Ff,20),e.sort()):this.Ff=Yg(this.Ff,20)}}),Object.defineProperty(this,"multiSelect",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,22))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,22):this.Ff=Yg(this.Ff,22)}}),Object.defineProperty(this,"doNotSpellCheck",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,23))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,23):this.Ff=Yg(this.Ff,23)}}),Object.defineProperty(this,"commitOnSelChange",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,27))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,27):this.Ff=Yg(this.Ff,27)}}),this.hasAppearanceStream=!1}function Ag(){$B.call(this),this.fontName="helvetica",this.combo=!1}function tg(){Ag.call(this),this.combo=!0}function eg(){tg.call(this),this.edit=!0}function rg(){Af.call(this),this.pushButton=!0}function ng(){Af.call(this),this.radio=!0,this.pushButton=!1;var t=[];Object.defineProperty(this,"Kids",{enumerable:!0,configurable:!1,get:function(){return t},set:function(A){t=void 0!==A?A:[]}})}function ig(){Af.call(this),this.fontName="zapfdingbats",this.caption="3",this.appearanceState="On",this.value="On",this.textAlign="center",this.appearanceStreamContent=x.CheckBox.createAppearanceStream()}function sg(){ef.call(this),Object.defineProperty(this,"password",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,14))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,14):this.Ff=Yg(this.Ff,14)}}),this.password=!0}var og,ag,cg,lg,ug,hg,Bg,gg,fg,dg,pg,wg,mg,Cg,Qg,yg,Fg,Ug,bg,vg,Eg,xg,Ig,Hg,Lg,Sg,Ng,_g,Tg,Dg,Og,Pg,Mg,kg,s=ue.API,Kg=1,Rg=function(A){return A.replace(/\\/g,"\\\\").replace(/\(/g,"\\(").replace(/\)/g,"\\)")},E=function(A){return A.toFixed(2)},Vg=(s.__acroform__={},function(A){var t=new qB,e=x.internal.getHeight(A)||0,A=x.internal.getWidth(A)||0;return t.BBox=[0,0,Number(E(A)),Number(E(e))],t}),Gg=s.__acroform__.setBit=function(A,t){if(A=A||0,t=t||0,isNaN(A)||isNaN(t))throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.setBit");return A|1<<t},jg=s.__acroform__.clearBit=function(A,t){if(A=A||0,t=t||0,isNaN(A)||isNaN(t))throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.clearBit");return A&~(1<<t)},Xg=s.__acroform__.getBit=function(A,t){if(isNaN(A)||isNaN(t))throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.getBit");return A&1<<t?1:0},Wg=s.__acroform__.getBitForPdf=function(A,t){if(isNaN(A)||isNaN(t))throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.getBitForPdf");return Xg(A,t-1)},Jg=s.__acroform__.setBitForPdf=function(A,t){if(isNaN(A)||isNaN(t))throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.setBitForPdf");return Gg(A,t-1)},Yg=s.__acroform__.clearBitForPdf=function(A,t){if(isNaN(A)||isNaN(t))throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.clearBitForPdf");return jg(A,t-1)},qg=s.__acroform__.calculateCoordinates=function(A,t){var e=t.internal.getHorizontalCoordinate,t=t.internal.getVerticalCoordinate,r=A[0],n=A[1],i=A[2],A=A[3],s={};return s.lowerLeft_X=e(r)||0,s.lowerLeft_Y=t(n+A)||0,s.upperRight_X=e(r+i)||0,s.upperRight_Y=t(n)||0,[Number(E(s.lowerLeft_X)),Number(E(s.lowerLeft_Y)),Number(E(s.upperRight_X)),Number(E(s.upperRight_Y))]},zg=function(A,t){var e,r=0===A.fontSize?A.maxFontSize:A.fontSize,n={text:"",fontSize:""},i=(t=")"==(t="("==t.substr(0,1)?t.substr(1):t).substr(t.length-1)?t.substr(0,t.length-1):t).split(" "),i=A.multiline?i.map(function(A){return A.split("\n")}):i.map(function(A){return[A]}),s=r,o=(o=x.internal.getHeight(A)||0)<0?-o:o,a=(a=x.internal.getWidth(A)||0)<0?-a:a;s++;A:for(;0<s;){t="";var c,l,u=XB("3",A,--s).height,h=A.multiline?o-s:(o-u)/2,B=h+=2,g=0,f=0,d=0;if(s<=0){t="(...) Tj\n",t+="% Width of Text: "+XB(t,A,s=12).width+", FieldWidth:"+a+"\n";break}for(var p="",w=0,m=0;m<i.length;m++)if(i.hasOwnProperty(m)){var C=!1;if(1!==i[m].length&&d!==i[m].length-1){if(o<(u+2)*(w+2)+2)continue A;p+=i[m][d],C=!0,f=m,m--}else{var p=" "==(p+=i[m][d]+" ").substr(p.length-1)?p.substr(0,p.length-1):p,Q=parseInt(m),y=(F=p,e=s,(y=Q)+1<i.length&&(F=F+" "+i[y+1][0],XB(F,A,e).width<=a-4)),F=m>=i.length-1;if(y&&!F){p+=" ",d=0;continue}if(y||F){if(F)f=Q;else if(A.multiline&&o<(u+2)*(w+2)+2)continue A}else{if(!A.multiline)continue A;if(o<(u+2)*(w+2)+2)continue A;f=Q}}for(var U="",b=g;b<=f;b++){var v=i[b];if(A.multiline){if(b===f){U+=v[d]+" ",d=(d+1)%v.length;continue}if(b===g){U+=v[v.length-1]+" ";continue}}U+=v[0]+" "}switch(U=" "==U.substr(U.length-1)?U.substr(0,U.length-1):U,l=XB(U,A,s).width,A.textAlign){case"right":c=a-l-2;break;case"center":c=(a-l)/2;break;default:c=2}t=(t=(t+=E(c)+" "+E(B)+" Td\n")+("("+Rg(U)+") Tj\n"))+(-E(c)+" 0 Td\n"),B=-(s+2),g=C?f:f+1,w++,p=""}break}return n.text=t,n.fontSize=s,n},Zg={fields:[],xForms:[],acroFormDictionaryRoot:null,printedOut:!1,internal:null,isInitialized:!1},$g=s.__acroform__.arrayToPdfArray=function(A,t,e){var r=function(A){return A};if(Array.isArray(A)){for(var n="[",i=0;i<A.length;i++)switch(0!==i&&(n+=" "),Ea(A[i])){case"boolean":case"number":case"object":n+=A[i].toString();break;case"string":"/"!==A[i].substr(0,1)?(void 0!==t&&e&&(r=e.internal.getEncryptor(t)),n+="("+Rg(r(A[i].toString()))+")"):n+=A[i].toString()}return n+"]"}throw new Error("Invalid argument passed to jsPDF.__acroform__.arrayToPdfArray")},Af=(YB.prototype.toString=function(){return this.objId+" 0 R"},YB.prototype.putStream=function(){var A=this.getKeyValueListForStream();this.scope.internal.putStream({data:this.stream,additionalKeyValues:A,objectId:this.objId}),this.scope.internal.out("endobj")},YB.prototype.getKeyValueListForStream=function(){var A,t,e,r=[],n=Object.getOwnPropertyNames(this).filter(function(A){return"content"!=A&&"appearanceStreamContent"!=A&&"scope"!=A&&"objId"!=A&&"_"!=A.substring(0,1)});for(A in n)!1===Object.getOwnPropertyDescriptor(this,n[A]).configurable&&(e=this[t=n[A]])&&(Array.isArray(e)?r.push({key:t,value:$g(e,this.objId,this.scope)}):e instanceof YB?(e.scope=this.scope,r.push({key:t,value:e.objId+" 0 R"})):"function"!=typeof e&&r.push({key:t,value:e}));return r},GB(qB,YB),GB(zB,YB),GB(ZB,YB),GB($B,ZB),GB(Ag,$B),GB(tg,Ag),GB(eg,tg),function(){ZB.call(this),this.FT="/Btn",Object.defineProperty(this,"noToggleToOff",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,15))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,15):this.Ff=Yg(this.Ff,15)}}),Object.defineProperty(this,"radio",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,16))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,16):this.Ff=Yg(this.Ff,16)}}),Object.defineProperty(this,"pushButton",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,17))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,17):this.Ff=Yg(this.Ff,17)}}),Object.defineProperty(this,"radioIsUnison",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,26))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,26):this.Ff=Yg(this.Ff,26)}});var t,r={};Object.defineProperty(this,"MK",{enumerable:!1,configurable:!1,get:function(){var A=function(A){return A};if(this.scope&&(A=this.scope.internal.getEncryptor(this.objId)),0!==Object.keys(r).length){var t,e=[];for(t in e.push("<<"),r)e.push("/"+t+" ("+Rg(A(r[t]))+")");return e.push(">>"),e.join("\n")}},set:function(A){"object"===Ea(A)&&(r=A)}}),Object.defineProperty(this,"caption",{enumerable:!0,configurable:!0,get:function(){return r.CA||""},set:function(A){"string"==typeof A&&(r.CA=A)}}),Object.defineProperty(this,"AS",{enumerable:!1,configurable:!1,get:function(){return t},set:function(A){t=A}}),Object.defineProperty(this,"appearanceState",{enumerable:!0,configurable:!0,get:function(){return t.substr(1,t.length-1)},set:function(A){t="/"+A}})}),tf=(GB(Af,ZB),GB(rg,Af),GB(ng,Af),function(){var t,e;ZB.call(this),Object.defineProperty(this,"Parent",{enumerable:!1,configurable:!1,get:function(){return t},set:function(A){t=A}}),Object.defineProperty(this,"optionName",{enumerable:!1,configurable:!0,get:function(){return e},set:function(A){e=A}});var r,n={};Object.defineProperty(this,"MK",{enumerable:!1,configurable:!1,get:function(){var A=function(A){return A};this.scope&&(A=this.scope.internal.getEncryptor(this.objId));var t,e=[];for(t in e.push("<<"),n)e.push("/"+t+" ("+Rg(A(n[t]))+")");return e.push(">>"),e.join("\n")},set:function(A){"object"===Ea(A)&&(n=A)}}),Object.defineProperty(this,"caption",{enumerable:!0,configurable:!0,get:function(){return n.CA||""},set:function(A){"string"==typeof A&&(n.CA=A)}}),Object.defineProperty(this,"AS",{enumerable:!1,configurable:!1,get:function(){return r},set:function(A){r=A}}),Object.defineProperty(this,"appearanceState",{enumerable:!0,configurable:!0,get:function(){return r.substr(1,r.length-1)},set:function(A){r="/"+A}}),this.caption="l",this.appearanceState="Off",this._AppearanceType=x.RadioButton.Circle,this.appearanceStreamContent=this._AppearanceType.createAppearanceStream(this.optionName)}),ef=(GB(tf,ZB),ng.prototype.setAppearance=function(A){if(!("createAppearanceStream"in A&&"getCA"in A))throw new Error("Couldn't assign Appearance to RadioButton. Appearance was Invalid!");for(var t in this.Kids)this.Kids.hasOwnProperty(t)&&((t=this.Kids[t]).appearanceStreamContent=A.createAppearanceStream(t.optionName),t.caption=A.getCA())},ng.prototype.createOption=function(A){var t=new tf;return t.Parent=this,t.optionName=A,this.Kids.push(t),rf.call(this.scope,t),t},GB(ig,Af),function(){ZB.call(this),this.FT="/Tx",Object.defineProperty(this,"multiline",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,13))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,13):this.Ff=Yg(this.Ff,13)}}),Object.defineProperty(this,"fileSelect",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,21))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,21):this.Ff=Yg(this.Ff,21)}}),Object.defineProperty(this,"doNotSpellCheck",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,23))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,23):this.Ff=Yg(this.Ff,23)}}),Object.defineProperty(this,"doNotScroll",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,24))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,24):this.Ff=Yg(this.Ff,24)}}),Object.defineProperty(this,"comb",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,25))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,25):this.Ff=Yg(this.Ff,25)}}),Object.defineProperty(this,"richText",{enumerable:!0,configurable:!0,get:function(){return Boolean(Wg(this.Ff,26))},set:function(A){!0===Boolean(A)?this.Ff=Jg(this.Ff,26):this.Ff=Yg(this.Ff,26)}});var t=null;Object.defineProperty(this,"MaxLen",{enumerable:!0,configurable:!1,get:function(){return t},set:function(A){t=A}}),Object.defineProperty(this,"maxLength",{enumerable:!0,configurable:!0,get:function(){return t},set:function(A){Number.isInteger(A)&&(t=A)}}),Object.defineProperty(this,"hasAppearanceStream",{enumerable:!0,configurable:!0,get:function(){return this.V||this.DV}})}),x=(GB(ef,ZB),GB(sg,ef),{CheckBox:{createAppearanceStream:function(){return{N:{On:x.CheckBox.YesNormal},D:{On:x.CheckBox.YesPushDown,Off:x.CheckBox.OffPushDown}}},YesPushDown:function(A){var t=Vg(A),e=(t.scope=A.scope,[]),r=A.scope.internal.getFont(A.fontName,A.fontStyle).id,n=A.scope.__private__.encodeColorString(A.color),i=zg(A,A.caption);return e.push("0.749023 g"),e.push("0 0 "+E(x.internal.getWidth(A))+" "+E(x.internal.getHeight(A))+" re"),e.push("f"),e.push("BMC"),e.push("q"),e.push("0 0 1 rg"),e.push("/"+r+" "+E(i.fontSize)+" Tf "+n),e.push("BT"),e.push(i.text),e.push("ET"),e.push("Q"),e.push("EMC"),t.stream=e.join("\n"),t},YesNormal:function(A){var t=Vg(A),e=(t.scope=A.scope,A.scope.internal.getFont(A.fontName,A.fontStyle).id),r=A.scope.__private__.encodeColorString(A.color),n=[],i=x.internal.getHeight(A),s=x.internal.getWidth(A),A=zg(A,A.caption);return n.push("1 g"),n.push("0 0 "+E(s)+" "+E(i)+" re"),n.push("f"),n.push("q"),n.push("0 0 1 rg"),n.push("0 0 "+E(s-1)+" "+E(i-1)+" re"),n.push("W"),n.push("n"),n.push("0 g"),n.push("BT"),n.push("/"+e+" "+E(A.fontSize)+" Tf "+r),n.push(A.text),n.push("ET"),n.push("Q"),t.stream=n.join("\n"),t},OffPushDown:function(A){var t=Vg(A),e=(t.scope=A.scope,[]);return e.push("0.749023 g"),e.push("0 0 "+E(x.internal.getWidth(A))+" "+E(x.internal.getHeight(A))+" re"),e.push("f"),t.stream=e.join("\n"),t}},RadioButton:{Circle:{createAppearanceStream:function(A){var t={D:{Off:x.RadioButton.Circle.OffPushDown},N:{}};return t.N[A]=x.RadioButton.Circle.YesNormal,t.D[A]=x.RadioButton.Circle.YesPushDown,t},getCA:function(){return"l"},YesNormal:function(A){var t=Vg(A),e=(t.scope=A.scope,[]),r=x.internal.getWidth(A)<=x.internal.getHeight(A)?x.internal.getWidth(A)/4:x.internal.getHeight(A)/4,r=Number((.9*r).toFixed(5)),n=x.internal.Bezier_C,n=Number((r*n).toFixed(5));return e.push("q"),e.push("1 0 0 1 "+VB(x.internal.getWidth(A)/2)+" "+VB(x.internal.getHeight(A)/2)+" cm"),e.push(r+" 0 m"),e.push(r+" "+n+" "+n+" "+r+" 0 "+r+" c"),e.push("-"+n+" "+r+" -"+r+" "+n+" -"+r+" 0 c"),e.push("-"+r+" -"+n+" -"+n+" -"+r+" 0 -"+r+" c"),e.push(n+" -"+r+" "+r+" -"+n+" "+r+" 0 c"),e.push("f"),e.push("Q"),t.stream=e.join("\n"),t},YesPushDown:function(A){var t=Vg(A),e=(t.scope=A.scope,[]),r=x.internal.getWidth(A)<=x.internal.getHeight(A)?x.internal.getWidth(A)/4:x.internal.getHeight(A)/4,r=Number((.9*r).toFixed(5)),n=Number((2*r).toFixed(5)),i=Number((n*x.internal.Bezier_C).toFixed(5)),s=Number((r*x.internal.Bezier_C).toFixed(5));return e.push("0.749023 g"),e.push("q"),e.push("1 0 0 1 "+VB(x.internal.getWidth(A)/2)+" "+VB(x.internal.getHeight(A)/2)+" cm"),e.push(n+" 0 m"),e.push(n+" "+i+" "+i+" "+n+" 0 "+n+" c"),e.push("-"+i+" "+n+" -"+n+" "+i+" -"+n+" 0 c"),e.push("-"+n+" -"+i+" -"+i+" -"+n+" 0 -"+n+" c"),e.push(i+" -"+n+" "+n+" -"+i+" "+n+" 0 c"),e.push("f"),e.push("Q"),e.push("0 g"),e.push("q"),e.push("1 0 0 1 "+VB(x.internal.getWidth(A)/2)+" "+VB(x.internal.getHeight(A)/2)+" cm"),e.push(r+" 0 m"),e.push(r+" "+s+" "+s+" "+r+" 0 "+r+" c"),e.push("-"+s+" "+r+" -"+r+" "+s+" -"+r+" 0 c"),e.push("-"+r+" -"+s+" -"+s+" -"+r+" 0 -"+r+" c"),e.push(s+" -"+r+" "+r+" -"+s+" "+r+" 0 c"),e.push("f"),e.push("Q"),t.stream=e.join("\n"),t},OffPushDown:function(A){var t=Vg(A),e=(t.scope=A.scope,[]),r=x.internal.getWidth(A)<=x.internal.getHeight(A)?x.internal.getWidth(A)/4:x.internal.getHeight(A)/4,r=Number((.9*r).toFixed(5)),r=Number((2*r).toFixed(5)),n=Number((r*x.internal.Bezier_C).toFixed(5));return e.push("0.749023 g"),e.push("q"),e.push("1 0 0 1 "+VB(x.internal.getWidth(A)/2)+" "+VB(x.internal.getHeight(A)/2)+" cm"),e.push(r+" 0 m"),e.push(r+" "+n+" "+n+" "+r+" 0 "+r+" c"),e.push("-"+n+" "+r+" -"+r+" "+n+" -"+r+" 0 c"),e.push("-"+r+" -"+n+" -"+n+" -"+r+" 0 -"+r+" c"),e.push(n+" -"+r+" "+r+" -"+n+" "+r+" 0 c"),e.push("f"),e.push("Q"),t.stream=e.join("\n"),t}},Cross:{createAppearanceStream:function(A){var t={D:{Off:x.RadioButton.Cross.OffPushDown},N:{}};return t.N[A]=x.RadioButton.Cross.YesNormal,t.D[A]=x.RadioButton.Cross.YesPushDown,t},getCA:function(){return"8"},YesNormal:function(A){var t=Vg(A),e=(t.scope=A.scope,[]),r=x.internal.calculateCross(A);return e.push("q"),e.push("1 1 "+E(x.internal.getWidth(A)-2)+" "+E(x.internal.getHeight(A)-2)+" re"),e.push("W"),e.push("n"),e.push(E(r.x1.x)+" "+E(r.x1.y)+" m"),e.push(E(r.x2.x)+" "+E(r.x2.y)+" l"),e.push(E(r.x4.x)+" "+E(r.x4.y)+" m"),e.push(E(r.x3.x)+" "+E(r.x3.y)+" l"),e.push("s"),e.push("Q"),t.stream=e.join("\n"),t},YesPushDown:function(A){var t=Vg(A),e=(t.scope=A.scope,x.internal.calculateCross(A)),r=[];return r.push("0.749023 g"),r.push("0 0 "+E(x.internal.getWidth(A))+" "+E(x.internal.getHeight(A))+" re"),r.push("f"),r.push("q"),r.push("1 1 "+E(x.internal.getWidth(A)-2)+" "+E(x.internal.getHeight(A)-2)+" re"),r.push("W"),r.push("n"),r.push(E(e.x1.x)+" "+E(e.x1.y)+" m"),r.push(E(e.x2.x)+" "+E(e.x2.y)+" l"),r.push(E(e.x4.x)+" "+E(e.x4.y)+" m"),r.push(E(e.x3.x)+" "+E(e.x3.y)+" l"),r.push("s"),r.push("Q"),t.stream=r.join("\n"),t},OffPushDown:function(A){var t=Vg(A),e=(t.scope=A.scope,[]);return e.push("0.749023 g"),e.push("0 0 "+E(x.internal.getWidth(A))+" "+E(x.internal.getHeight(A))+" re"),e.push("f"),t.stream=e.join("\n"),t}}},createDefaultAppearanceStream:function(A){var t=A.scope.internal.getFont(A.fontName,A.fontStyle).id,e=A.scope.__private__.encodeColorString(A.color);return"/"+t+" "+A.fontSize+" Tf "+e}}),rf=(x.internal={Bezier_C:.551915024494,calculateCross:function(A){var t=x.internal.getWidth(A),A=x.internal.getHeight(A),e=Math.min(t,A);return{x1:{x:(t-e)/2,y:(A-e)/2+e},x2:{x:(t-e)/2+e,y:(A-e)/2},x3:{x:(t-e)/2,y:(A-e)/2},x4:{x:(t-e)/2+e,y:(A-e)/2+e}}}},x.internal.getWidth=function(A){var t=0;return t="object"===Ea(A)?jB(A.Rect[2]):t},x.internal.getHeight=function(A){var t=0;return t="object"===Ea(A)?jB(A.Rect[3]):t},s.addField=function(A){var t;if(WB(this,A),A instanceof ZB)return(t=A).scope.internal.acroformPlugin.printedOut&&(t.scope.internal.acroformPlugin.printedOut=!1,t.scope.internal.acroformPlugin.acroFormDictionaryRoot=null),t.scope.internal.acroformPlugin.acroFormDictionaryRoot.Fields.push(t),A.page=A.scope.internal.getCurrentPageInfo().pageNumber,this;throw new Error("Invalid argument passed to jsPDF.addField.")});function nf(A){return A.reduce(function(A,t,e){return A[t]=e,A},{})}function sf(){void 0===this.internal.__cell__&&(this.internal.__cell__={},this.internal.__cell__.padding=3,this.internal.__cell__.headerFunction=void 0,this.internal.__cell__.margins=Object.assign({},og),this.internal.__cell__.margins.width=this.getPageWidth(),of.call(this))}function of(){this.internal.__cell__.lastCell=new cg,this.internal.__cell__.pages=1}function af(){var t=void 0,e=(Object.defineProperty(this,"pdf",{get:function(){return t},set:function(A){t=A}}),150),r=(Object.defineProperty(this,"width",{get:function(){return e},set:function(A){e=isNaN(A)||!1===Number.isInteger(A)||A<0?150:A,this.getContext("2d").pageWrapXEnabled&&(this.getContext("2d").pageWrapX=e+1)}}),300),n=(Object.defineProperty(this,"height",{get:function(){return r},set:function(A){r=isNaN(A)||!1===Number.isInteger(A)||A<0?300:A,this.getContext("2d").pageWrapYEnabled&&(this.getContext("2d").pageWrapY=r+1)}}),[]),i=(Object.defineProperty(this,"childNodes",{get:function(){return n},set:function(A){n=A}}),{});Object.defineProperty(this,"style",{get:function(){return i},set:function(A){i=A}}),Object.defineProperty(this,"parentNode",{})}function cf(A){for(var t,e,r=0,n=0,i="",s=(A=A||"").split("\\s+"),o=[],r=0;r<s.length;r+=1){for(o.push(""),n=0;n<s[r].length;n+=1)i=s[r][n],t=s[r][n-1],e=s[r][n+1],pg(i)?(t=Fg(i,t,e),o[r]+=-1!==t?String.fromCharCode(hg[i.charCodeAt(0)][t]):i):o[r]+=i;o[r]=yg(o[r])}return o.join(" ")}function lf(A){return void 0!==A&&""!=A}function uf(){var A,t=this.internal.collections[bg+"images"];for(A in t)Ig.call(this,t[A])}function hf(){var A,t,e=this.internal.collections[bg+"images"],r=this.internal.write;for(t in e)r("/I"+(A=e[t]).index,A.objectId,"0","R")}function Bf(A){return"function"==typeof Ug["process"+A.toUpperCase()]}function gf(A){return"object"===Ea(A)&&1===A.nodeType}function ff(A,t){if("IMG"===A.nodeName&&A.hasAttribute("src")){var e=""+A.getAttribute("src");if(0===e.indexOf("data:image/"))return mB(unescape(e).split("base64,").pop());e=Ug.loadFile(e,!0);if(void 0!==e)return e}if("CANVAS"===A.nodeName){if(0===A.width||0===A.height)throw new Error("Given canvas must have data. Canvas width: "+A.width+", height: "+A.height);var r;switch(t){case"PNG":r="image/png";break;case"WEBP":r="image/webp";break;default:r="image/jpeg"}return mB(A.toDataURL(r,1).split("base64,").pop())}}function df(A,t,e,r,n,i){var s,o=function(A,t,e){return A||t||(t=A=-96),A<0&&(A=-1*e.width*72/A/this.internal.scaleFactor),t<0&&(t=-1*e.height*72/t/this.internal.scaleFactor),[A=0===A?t*e.width/e.height:A,t=0===t?A*e.height/e.width:t]}.call(this,e,r,n),a=this.internal.getCoordinateString,c=this.internal.getVerticalCoordinateString,l=function(){var A=this.internal.collections[bg+"images"];return Hg.call(this),A}.call(this);e=o[0],r=o[1],l[n.index]=n,i&&(i*=Math.PI/180,o=Math.cos(i),l=Math.sin(i),s=[(s=function(A){return A.toFixed(4)})(o),s(l),s(-1*l),s(o),0,0,"cm"]),this.internal.write("q"),i?(this.internal.write([1,"0","0",1,a(A),c(t+r),"cm"].join(" ")),this.internal.write(s.join(" ")),this.internal.write([a(e),"0","0",a(r),"0","0","cm"].join(" "))):this.internal.write([a(e),"0","0",a(r),a(A),c(t+r),"cm"].join(" ")),this.isAdvancedAPI()&&this.internal.write([1,0,0,-1,0,0,"cm"].join(" ")),this.internal.write("/I"+n.index+" Do"),this.internal.write("Q")}s.AcroFormChoiceField=$B,s.AcroFormListBox=Ag,s.AcroFormComboBox=tg,s.AcroFormEditBox=eg,s.AcroFormButton=Af,s.AcroFormPushButton=rg,s.AcroFormRadioButton=ng,s.AcroFormCheckBox=ig,s.AcroFormTextField=ef,s.AcroFormPasswordField=sg,s.AcroFormAppearance=x,s.AcroForm={ChoiceField:$B,ListBox:Ag,ComboBox:tg,EditBox:eg,Button:Af,PushButton:rg,RadioButton:ng,CheckBox:ig,TextField:ef,PasswordField:sg,Appearance:x},ue.AcroForm={ChoiceField:$B,ListBox:Ag,ComboBox:tg,EditBox:eg,Button:Af,PushButton:rg,RadioButton:ng,CheckBox:ig,TextField:ef,PasswordField:sg,Appearance:x},bg="addImage_",(Ug=ue.API).__addimage__={},vg="UNKNOWN",Eg={PNG:[[137,80,78,71]],TIFF:[[77,77,0,42],[73,73,42,0]],JPEG:[[255,216,255,224,void 0,void 0,74,70,73,70,0],[255,216,255,225,void 0,void 0,69,120,105,102,0,0],[255,216,255,219],[255,216,255,238]],JPEG2000:[[0,0,0,12,106,80,32,32]],GIF87a:[[71,73,70,56,55,97]],GIF89a:[[71,73,70,56,57,97]],WEBP:[[82,73,70,70,void 0,void 0,void 0,void 0,87,69,66,80]],BMP:[[66,77],[66,65],[67,73],[67,80],[73,67],[80,84]]},xg=Ug.__addimage__.getImageFileTypeByImageData=function(A,t){var e,r,n,i,s,o=vg;if("RGBA"===(t=t||vg)||void 0!==A.data&&A.data instanceof Uint8ClampedArray&&"height"in A&&"width"in A)return"RGBA";if(Dg(A))for(s in Eg)for(n=Eg[s],e=0;e<n.length;e+=1){for(i=!0,r=0;r<n[e].length;r+=1)if(void 0!==n[e][r]&&n[e][r]!==A[r]){i=!1;break}if(!0===i){o=s;break}}else for(s in Eg)for(n=Eg[s],e=0;e<n.length;e+=1){for(i=!0,r=0;r<n[e].length;r+=1)if(void 0!==n[e][r]&&n[e][r]!==A.charCodeAt(r)){i=!1;break}if(!0===i){o=s;break}}return o=o===vg&&t!==vg?t:o},Ig=function A(t){for(var e=this.internal.write,r=this.internal.putStream,n=(0,this.internal.getFilters)();-1!==n.indexOf("FlateEncode");)n.splice(n.indexOf("FlateEncode"),1);t.objectId=this.internal.newObject();var i=[];if(i.push({key:"Type",value:"/XObject"}),i.push({key:"Subtype",value:"/Image"}),i.push({key:"Width",value:t.width}),i.push({key:"Height",value:t.height}),t.colorSpace===Lg.INDEXED?i.push({key:"ColorSpace",value:"[/Indexed /DeviceRGB "+(t.palette.length/3-1)+" "+("sMask"in t&&void 0!==t.sMask?t.objectId+2:t.objectId+1)+" 0 R]"}):(i.push({key:"ColorSpace",value:"/"+t.colorSpace}),t.colorSpace===Lg.DEVICE_CMYK&&i.push({key:"Decode",value:"[1 0 1 0 1 0 1 0]"})),i.push({key:"BitsPerComponent",value:t.bitsPerComponent}),"decodeParameters"in t&&void 0!==t.decodeParameters&&i.push({key:"DecodeParms",value:"<<"+t.decodeParameters+">>"}),"transparency"in t&&Array.isArray(t.transparency)&&0<t.transparency.length){for(var s="",o=0,a=t.transparency.length;o<a;o++)s+=t.transparency[o]+" "+t.transparency[o]+" ";i.push({key:"Mask",value:"["+s+"]"})}void 0!==t.sMask&&i.push({key:"SMask",value:t.objectId+1+" 0 R"});var c=void 0!==t.filter?["/"+t.filter]:void 0;r({data:t.data,additionalKeyValues:i,alreadyAppliedFilters:c,objectId:t.objectId}),e("endobj"),"sMask"in t&&void 0!==t.sMask&&(c=null!=(i=t.sMaskBitsPerComponent)?i:t.bitsPerComponent,i={width:t.width,height:t.height,colorSpace:"DeviceGray",bitsPerComponent:c,data:t.sMask},"filter"in t&&(i.decodeParameters="/Predictor ".concat(t.predictor," /Colors 1 /BitsPerComponent ").concat(c," /Columns ").concat(t.width),i.filter=t.filter),A.call(this,i)),t.colorSpace===Lg.INDEXED&&(c=this.internal.newObject(),r({data:Pg(new Uint8Array(t.palette)),objectId:c}),e("endobj"))},Hg=function(){this.internal.collections[bg+"images"]||(this.internal.collections[bg+"images"]={},this.internal.events.subscribe("putResources",uf),this.internal.events.subscribe("putXobjectDict",hf))},Lg=Ug.color_spaces={DEVICE_RGB:"DeviceRGB",DEVICE_GRAY:"DeviceGray",DEVICE_CMYK:"DeviceCMYK",CAL_GREY:"CalGray",CAL_RGB:"CalRGB",LAB:"Lab",ICC_BASED:"ICCBased",INDEXED:"Indexed",PATTERN:"Pattern",SEPARATION:"Separation",DEVICE_N:"DeviceN"},Ug.decode={DCT_DECODE:"DCTDecode",FLATE_DECODE:"FlateDecode",LZW_DECODE:"LZWDecode",JPX_DECODE:"JPXDecode",JBIG2_DECODE:"JBIG2Decode",ASCII85_DECODE:"ASCII85Decode",ASCII_HEX_DECODE:"ASCIIHexDecode",RUN_LENGTH_DECODE:"RunLengthDecode",CCITT_FAX_DECODE:"CCITTFaxDecode"},Sg=Ug.image_compression={NONE:"NONE",FAST:"FAST",MEDIUM:"MEDIUM",SLOW:"SLOW"},Ng=Ug.__addimage__.sHashCode=function(A){var t,e,r=0;if("string"==typeof A)for(e=A.length,t=0;t<e;t++)r=(r<<5)-r+A.charCodeAt(t),r|=0;else if(Dg(A))for(e=A.byteLength/2,t=0;t<e;t++)r=(r<<5)-r+A[t],r|=0;return r},_g=Ug.__addimage__.validateStringAsBase64=function(A){(A=A||"").toString().trim();var t=!0;return 0===A.length&&(t=!1),A.length%4!=0&&(t=!1),!1===/^[A-Za-z0-9+/]+$/.test(A.substr(0,A.length-2))&&(t=!1),t=!1===/^[A-Za-z0-9/][A-Za-z0-9+/]|[A-Za-z0-9+/]=|==$/.test(A.substr(-2))?!1:t},Tg=Ug.__addimage__.extractImageFromDataUrl=function(A){var t;return null!=A&&(A=A.trim()).startsWith("data:")&&!((t=A.indexOf(","))<0)&&A.substring(0,t).trim().endsWith("base64")?A.substring(t+1):null},Ug.__addimage__.isArrayBuffer=function(A){return A instanceof ArrayBuffer},Dg=Ug.__addimage__.isArrayBufferView=function(A){return A instanceof Int8Array||A instanceof Uint8Array||A instanceof Uint8ClampedArray||A instanceof Int16Array||A instanceof Uint16Array||A instanceof Int32Array||A instanceof Uint32Array||A instanceof Float32Array||A instanceof Float64Array},Og=Ug.__addimage__.binaryStringToUint8Array=function(A){for(var t=A.length,e=new Uint8Array(t),r=0;r<t;r++)e[r]=A.charCodeAt(r);return e},Pg=Ug.__addimage__.arrayBufferToBinaryString=function(A){for(var t="",e=Dg(A)?A:new Uint8Array(A),r=0;r<e.length;r+=8192)t+=String.fromCharCode.apply(null,e.subarray(r,r+8192));return t},Ug.addImage=function(){a="number"==typeof arguments[1]?(t=vg,e=arguments[1],r=arguments[2],n=arguments[3],i=arguments[4],s=arguments[5],o=arguments[6],arguments[7]):(t=arguments[1],e=arguments[2],r=arguments[3],n=arguments[4],i=arguments[5],s=arguments[6],o=arguments[7],arguments[8]),"object"===Ea(A=arguments[0])&&!gf(A)&&"imageData"in A&&(A=(c=A).imageData,t=c.format||t||vg,e=c.x||e||0,r=c.y||r||0,n=c.w||c.width||n,i=c.h||c.height||i,s=c.alias||s,o=c.compression||o,a=c.rotation||c.angle||a);var A,t,e,r,n,i,s,o,a,c=this.internal.getFilters();if(void 0===o&&-1!==c.indexOf("FlateEncode")&&(o="SLOW"),isNaN(e)||isNaN(r))throw new Error("Invalid coordinates passed to jsPDF.addImage");Hg.call(this);c=Mg.call(this,A,t,s,o);return df.call(this,e,r,n,i,c,a),this},Mg=function(A,t,e,r){var n,i,s;if("string"==typeof A&&xg(A)===vg&&(A=unescape(A),""===(s=kg(A,!1))&&void 0===(s=Ug.loadFile(A,!0))||(A=s)),gf(A)&&(A=ff(A,t)),t=xg(A,t),!Bf(t))throw new Error("addImage does not support files of type '"+t+"', please ensure that a plugin for '"+t+"' support is added.");if(null!=e&&0!==e.length||(e="string"==typeof(s=A)||Dg(s)?Ng(s):Dg(s.data)?Ng(s.data):null),(n=function(A){var t=this.internal.collections[bg+"images"];if(t)for(var e in t)if(A===t[e].alias)return t[e]}.call(this,e))||(A instanceof Uint8Array||"RGBA"===t||(A=Og(i=A)),n=this["process"+t.toUpperCase()](A,function(){return Object.keys(this.internal.collections[bg+"images"]).length}.call(this),e,(t=(t=r)&&"string"==typeof t?t.toUpperCase():t)in Ug.image_compression?t:Sg.NONE,i)),n)return n;throw new Error("An unknown error occurred whilst processing the image.")},kg=Ug.__addimage__.convertBase64ToBinaryString=function(A,t){t="boolean"!=typeof t||t;var e="";if("string"==typeof A){var r=null!=(r=Tg(A))?r:A;try{e=mB(r)}catch(A){if(t)throw _g(r)?new Error("atob-Error in jsPDF.convertBase64ToBinaryString "+A.message):new Error("Supplied Data is not a valid base64-String jsPDF.convertBase64ToBinaryString ")}}return e},Ug.getImageProperties=function(A){var t="";if("string"==typeof(A=gf(A)?ff(A):A)&&xg(A)===vg&&(A=t=""===(t=kg(A,!1))?Ug.loadFile(A)||"":t),t=xg(A),!Bf(t))throw new Error("addImage does not support files of type '"+t+"', please ensure that a plugin for '"+t+"' support is added.");if(A instanceof Uint8Array||(A=Og(A)),A=this["process"+t.toUpperCase()](A))return A.fileType=t,A;throw new Error("An unknown error occurred whilst processing the image")},(A=ue.API).events.push(["addPage",function(A){this.internal.getPageInfo(A.pageNumber).pageContext.annotations=[]}]),A.events.push(["putPage",function(A){for(var t=this.internal.getCoordinateString,e=this.internal.getVerticalCoordinateString,r=this.internal.getPageInfoByObjId(A.objId),n=A.pageContext.annotations,i=!1,s=0;s<n.length&&!i;s++)switch((a=n[s]).type){case"link":(lf(a.options.url)||lf(a.options.pageNumber))&&(i=!0);break;case"reference":case"text":case"freetext":i=!0}if(0!=i){this.internal.write("/Annots [");for(var o=0;o<n.length;o++){var a=n[o],c=this.internal.pdfEscape,l=this.internal.getEncryptor(A.objId);switch(a.type){case"reference":this.internal.write(" "+a.object.objId+" 0 R ");break;case"text":var u=this.internal.newAdditionalObject(),h=this.internal.newAdditionalObject(),B=this.internal.getEncryptor(u.objId),g=a.title||"Note",f="<</Type /Annot /Subtype /Text "+(d="/Rect ["+t(a.bounds.x)+" "+e(a.bounds.y+a.bounds.h)+" "+t(a.bounds.x+a.bounds.w)+" "+e(a.bounds.y)+"] ")+"/Contents ("+c(B(a.contents))+")",B=(f=(f=(f+=" /Popup "+h.objId+" 0 R")+(" /P "+r.objId+" 0 R"))+(" /T ("+c(B(g))+") >>"),u.content=f,u.objId+" 0 R");f="<</Type /Annot /Subtype /Popup "+(d="/Rect ["+t(a.bounds.x+30)+" "+e(a.bounds.y+a.bounds.h)+" "+t(a.bounds.x+a.bounds.w+30)+" "+e(a.bounds.y)+"] ")+" /Parent "+B,a.open&&(f+=" /Open true"),f+=" >>",h.content=f,this.internal.write(u.objId,"0 R",h.objId,"0 R");break;case"freetext":var d="/Rect ["+t(a.bounds.x)+" "+e(a.bounds.y)+" "+t(a.bounds.x+a.bounds.w)+" "+e(a.bounds.y+a.bounds.h)+"] ",g=a.color||"#000000";f="<</Type /Annot /Subtype /FreeText "+d+"/Contents ("+c(l(a.contents))+")",f=(f+=" /DS(font: Helvetica,sans-serif 12.0pt; text-align:left; color:#"+g+")")+" /Border [0 0 0]"+" >>",this.internal.write(f);break;case"link":if(a.options.name?(B=this.annotations._nameMap[a.options.name],a.options.pageNumber=B.page,a.options.top=B.y):a.options.top||(a.options.top=0),d="/Rect ["+a.finalBounds.x+" "+a.finalBounds.y+" "+a.finalBounds.w+" "+a.finalBounds.h+"] ",f="",a.options.url)f="<</Type /Annot /Subtype /Link "+d+"/Border [0 0 0] /A <</S /URI /URI ("+c(l(a.options.url))+") >>";else if(a.options.pageNumber)switch(f="<</Type /Annot /Subtype /Link "+d+"/Border [0 0 0] /Dest ["+this.internal.getPageInfo(a.options.pageNumber).objId+" 0 R",a.options.magFactor=a.options.magFactor||"XYZ",a.options.magFactor){case"Fit":f+=" /Fit]";break;case"FitH":f+=" /FitH "+a.options.top+"]";break;case"FitV":a.options.left=a.options.left||0,f+=" /FitV "+a.options.left+"]";break;default:var p=e(a.options.top);a.options.left=a.options.left||0,void 0===a.options.zoom&&(a.options.zoom=0),f+=" /XYZ "+a.options.left+" "+p+" "+a.options.zoom+"]"}""!=f&&(f+=" >>",this.internal.write(f))}}this.internal.write("]")}}]),A.createAnnotation=function(A){var t=this.internal.getCurrentPageInfo();switch(A.type){case"link":this.link(A.bounds.x,A.bounds.y,A.bounds.w,A.bounds.h,A);break;case"text":case"freetext":t.pageContext.annotations.push(A)}},A.link=function(A,t,e,r,n){var i=this.internal.getCurrentPageInfo(),s=this.internal.getCoordinateString,o=this.internal.getVerticalCoordinateString;i.pageContext.annotations.push({finalBounds:{x:s(A),y:o(t),w:s(A+e),h:o(t+r)},options:n,type:"link"})},A.textWithLink=function(A,t,e,r){var n,i,s=this.getTextWidth(A),o=this.internal.getLineHeight()/this.internal.scaleFactor;return i=void 0!==r.maxWidth?(n=r.maxWidth,i=this.splitTextToSize(A,n).length,Math.ceil(o*i)):(n=s,o),this.text(A,t,e,r),"center"===r.align&&(t-=s/2),"right"===r.align&&(t-=s),this.link(t,(e+=.2*o)-o,n,i,r),s},A.getTextWidth=function(A){var t=this.internal.getFontSize();return this.getStringUnitWidth(A)*t/this.internal.scaleFactor},hg={1569:[65152],1570:[65153,65154],1571:[65155,65156],1572:[65157,65158],1573:[65159,65160],1574:[65161,65162,65163,65164],1575:[65165,65166],1576:[65167,65168,65169,65170],1577:[65171,65172],1578:[65173,65174,65175,65176],1579:[65177,65178,65179,65180],1580:[65181,65182,65183,65184],1581:[65185,65186,65187,65188],1582:[65189,65190,65191,65192],1583:[65193,65194],1584:[65195,65196],1585:[65197,65198],1586:[65199,65200],1587:[65201,65202,65203,65204],1588:[65205,65206,65207,65208],1589:[65209,65210,65211,65212],1590:[65213,65214,65215,65216],1591:[65217,65218,65219,65220],1592:[65221,65222,65223,65224],1593:[65225,65226,65227,65228],1594:[65229,65230,65231,65232],1601:[65233,65234,65235,65236],1602:[65237,65238,65239,65240],1603:[65241,65242,65243,65244],1604:[65245,65246,65247,65248],1605:[65249,65250,65251,65252],1606:[65253,65254,65255,65256],1607:[65257,65258,65259,65260],1608:[65261,65262],1609:[65263,65264,64488,64489],1610:[65265,65266,65267,65268],1649:[64336,64337],1655:[64477],1657:[64358,64359,64360,64361],1658:[64350,64351,64352,64353],1659:[64338,64339,64340,64341],1662:[64342,64343,64344,64345],1663:[64354,64355,64356,64357],1664:[64346,64347,64348,64349],1667:[64374,64375,64376,64377],1668:[64370,64371,64372,64373],1670:[64378,64379,64380,64381],1671:[64382,64383,64384,64385],1672:[64392,64393],1676:[64388,64389],1677:[64386,64387],1678:[64390,64391],1681:[64396,64397],1688:[64394,64395],1700:[64362,64363,64364,64365],1702:[64366,64367,64368,64369],1705:[64398,64399,64400,64401],1709:[64467,64468,64469,64470],1711:[64402,64403,64404,64405],1713:[64410,64411,64412,64413],1715:[64406,64407,64408,64409],1722:[64414,64415],1723:[64416,64417,64418,64419],1726:[64426,64427,64428,64429],1728:[64420,64421],1729:[64422,64423,64424,64425],1733:[64480,64481],1734:[64473,64474],1735:[64471,64472],1736:[64475,64476],1737:[64482,64483],1739:[64478,64479],1740:[64508,64509,64510,64511],1744:[64484,64485,64486,64487],1746:[64430,64431],1747:[64432,64433]},Bg={65247:{65154:65269,65156:65271,65160:65273,65166:65275},65248:{65154:65270,65156:65272,65160:65274,65166:65276},65165:{65247:{65248:{65258:65010}}},1617:{1612:64606,1613:64607,1614:64608,1615:64609,1616:64610}},gg={1612:64606,1613:64607,1614:64608,1615:64609,1616:64610},fg=[1570,1571,1573,1575],(e=ue.API).__arabicParser__={},dg=e.__arabicParser__.isInArabicSubstitutionA=function(A){return void 0!==hg[A.charCodeAt(0)]},pg=e.__arabicParser__.isArabicLetter=function(A){return"string"==typeof A&&/^[\u0600-\u06FF\u0750-\u077F\u08A0-\u08FF\uFB50-\uFDFF\uFE70-\uFEFF]+$/.test(A)},wg=e.__arabicParser__.isArabicEndLetter=function(A){return pg(A)&&dg(A)&&hg[A.charCodeAt(0)].length<=2},mg=e.__arabicParser__.isArabicAlfLetter=function(A){return pg(A)&&0<=fg.indexOf(A.charCodeAt(0))},e.__arabicParser__.arabicLetterHasIsolatedForm=function(A){return pg(A)&&dg(A)&&1<=hg[A.charCodeAt(0)].length},Cg=e.__arabicParser__.arabicLetterHasFinalForm=function(A){return pg(A)&&dg(A)&&2<=hg[A.charCodeAt(0)].length},e.__arabicParser__.arabicLetterHasInitialForm=function(A){return pg(A)&&dg(A)&&3<=hg[A.charCodeAt(0)].length},Qg=e.__arabicParser__.arabicLetterHasMedialForm=function(A){return pg(A)&&dg(A)&&4==hg[A.charCodeAt(0)].length},yg=e.__arabicParser__.resolveLigatures=function(A){for(var t=0,e=Bg,r="",n=0,t=0;t<A.length;t+=1)void 0!==e[A.charCodeAt(t)]?(n++,"number"==typeof(e=e[A.charCodeAt(t)])&&(r+=String.fromCharCode(e),e=Bg,n=0),t===A.length-1&&(e=Bg,r+=A.charAt(t-(n-1)),t-=n-1,n=0)):(e=Bg,r+=A.charAt(t-n),t-=n,n=0);return r},e.__arabicParser__.isArabicDiacritic=function(A){return void 0!==A&&void 0!==gg[A.charCodeAt(0)]},Fg=e.__arabicParser__.getCorrectForm=function(A,t,e){return!pg(A)||!1===dg(A)?-1:!Cg(A)||!pg(t)&&!pg(e)||!pg(e)&&wg(t)||wg(A)&&!pg(t)||wg(A)&&mg(t)||wg(A)&&wg(t)?0:Qg(A)&&pg(t)&&!wg(t)&&pg(e)&&Cg(e)?3:wg(A)||!pg(e)?1:2},t=e.__arabicParser__.processArabic=e.processArabic=function(){var A,t="string"==typeof arguments[0]?arguments[0]:arguments[0].text,e=[];if(Array.isArray(t)){for(var r=0,e=[],r=0;r<t.length;r+=1)Array.isArray(t[r])?e.push([cf(t[r][0]),t[r][1],t[r][2]]):e.push([cf(t[r])]);A=e}else A=cf(t);return"string"==typeof arguments[0]?A:(arguments[0].text=A,arguments[0])},e.events.push(["preProcessText",t]),ue.API.autoPrint=function(A){var t;return(A=A||{}).variant=A.variant||"non-conform","javascript"===A.variant?this.addJS("print({});"):(this.internal.events.subscribe("postPutResources",function(){t=this.internal.newObject(),this.internal.out("<<"),this.internal.out("/S /Named"),this.internal.out("/Type /Action"),this.internal.out("/N /Print"),this.internal.out(">>"),this.internal.out("endobj")}),this.internal.events.subscribe("putCatalog",function(){this.internal.out("/OpenAction "+t+" 0 R")})),this},n=ue.API,af.prototype.getContext=function(A,t){if("2d"!==(A=A||"2d"))return null;for(var e in t)this.pdf.context2d.hasOwnProperty(e)&&(this.pdf.context2d[e]=t[e]);return(this.pdf.context2d._canvas=this).pdf.context2d},af.prototype.toDataURL=function(){throw new Error("toDataURL is not implemented.")},n.events.push(["initialized",function(){this.canvas=new af,this.canvas.pdf=this}]),i=ue.API,ag=!(og={left:0,top:0,bottom:0,right:0}),(cg=function(){var t=arguments[0],e=(Object.defineProperty(this,"x",{enumerable:!0,get:function(){return t},set:function(A){t=A}}),arguments[1]),r=(Object.defineProperty(this,"y",{enumerable:!0,get:function(){return e},set:function(A){e=A}}),arguments[2]),n=(Object.defineProperty(this,"width",{enumerable:!0,get:function(){return r},set:function(A){r=A}}),arguments[3]),i=(Object.defineProperty(this,"height",{enumerable:!0,get:function(){return n},set:function(A){n=A}}),arguments[4]),s=(Object.defineProperty(this,"text",{enumerable:!0,get:function(){return i},set:function(A){i=A}}),arguments[5]),o=(Object.defineProperty(this,"lineNumber",{enumerable:!0,get:function(){return s},set:function(A){s=A}}),arguments[6]);return Object.defineProperty(this,"align",{enumerable:!0,get:function(){return o},set:function(A){o=A}}),this}).prototype.clone=function(){return new cg(this.x,this.y,this.width,this.height,this.text,this.lineNumber,this.align)},cg.prototype.toArray=function(){return[this.x,this.y,this.width,this.height,this.text,this.lineNumber,this.align]},i.setHeaderFunction=function(A){return sf.call(this),this.internal.__cell__.headerFunction="function"==typeof A?A:void 0,this},i.getTextDimensions=function(A,t){sf.call(this);var e,r=(t=t||{}).fontSize||this.getFontSize(),n=t.font||this.getFont(),i=t.scaleFactor||this.internal.scaleFactor,s=0,o=0,a=this;if(!Array.isArray(A)&&"string"!=typeof A){if("number"!=typeof A)throw new Error("getTextDimensions expects text-parameter to be of type String or type Number or an Array of Strings.");A=String(A)}var c=t.maxWidth;0<c?"string"==typeof A?A=this.splitTextToSize(A,c):"[object Array]"===Object.prototype.toString.call(A)&&(A=A.reduce(function(A,t){return A.concat(a.splitTextToSize(t,c))},[])):A=Array.isArray(A)?A:[A];for(var l=0;l<A.length;l++)s<(e=this.getStringUnitWidth(A[l],{font:n})*r)&&(s=e);return 0!==s&&(o=A.length),{w:s/=i,h:Math.max((o*r*this.getLineHeightFactor()-r*(this.getLineHeightFactor()-1))/i,0)}},i.cellAddPage=function(){sf.call(this),this.addPage();var A=this.internal.__cell__.margins||og;return this.internal.__cell__.lastCell=new cg(A.left,A.top,void 0,void 0),this.internal.__cell__.pages+=1,this},lg=i.cell=function(){var A=arguments[0]instanceof cg?arguments[0]:new cg(arguments[0],arguments[1],arguments[2],arguments[3],arguments[4],arguments[5],arguments[6]),t=(sf.call(this),this.internal.__cell__.lastCell),e=this.internal.__cell__.padding,r=this.internal.__cell__.margins||og,n=this.internal.__cell__.tableHeaderRow,i=this.internal.__cell__.printHeaders;return void 0!==t.lineNumber&&(t.lineNumber===A.lineNumber?(A.x=(t.x||0)+(t.width||0),A.y=t.y||0):t.y+t.height+A.height+r.bottom>this.getPageHeight()?(this.cellAddPage(),A.y=r.top,i&&n&&(this.printHeaderRow(A.lineNumber,!0),A.y+=n[0].height)):A.y=t.y+t.height||A.y),void 0!==A.text[0]&&(this.rect(A.x,A.y,A.width,A.height,!0===ag?"FD":void 0),"right"===A.align?this.text(A.text,A.x+A.width-e,A.y+e,{align:"right",baseline:"top"}):"center"===A.align?this.text(A.text,A.x+A.width/2,A.y+e,{align:"center",baseline:"top",maxWidth:A.width-e-e}):this.text(A.text,A.x+e,A.y+e,{align:"left",baseline:"top",maxWidth:A.width-e-e})),this.internal.__cell__.lastCell=A,this},i.table=function(t,e,A,r,n){if(sf.call(this),!A)throw new Error("No data for PDF table.");var i,s,o=[],a=[],c=[],l={},u={},h=[],B=(n=n||{}).autoSize||!1,g=!1!==n.printHeaders,f=n.css&&void 0!==n.css["font-size"]?16*n.css["font-size"]:n.fontSize||12,d=n.margins||Object.assign({width:this.getPageWidth()},og),p="number"==typeof n.padding?n.padding:3,w=n.headerBackgroundColor||"#c8c8c8",m=n.headerTextColor||"#000";if(of.call(this),this.internal.__cell__.printHeaders=g,this.internal.__cell__.margins=d,this.internal.__cell__.table_font_size=f,this.internal.__cell__.padding=p,this.internal.__cell__.headerBackgroundColor=w,this.internal.__cell__.headerTextColor=m,this.setFontSize(f),null==r)a=o=Object.keys(A[0]),c=o.map(function(){return"left"});else if(Array.isArray(r)&&"object"===Ea(r[0]))for(o=r.map(function(A){return A.name}),a=r.map(function(A){return A.prompt||A.name||""}),c=r.map(function(A){return A.align||"left"}),Q=0;Q<r.length;Q+=1)u[r[Q].name]=.7499990551181103*r[Q].width;else Array.isArray(r)&&"string"==typeof r[0]&&(a=o=r,c=o.map(function(){return"left"}));if(B||Array.isArray(r)&&"string"==typeof r[0])for(Q=0;Q<o.length;Q+=1){for(l[s=o[Q]]=A.map(function(A){return A[s]}),this.setFont(void 0,"bold"),h.push(this.getTextDimensions(a[Q],{fontSize:this.internal.__cell__.table_font_size,scaleFactor:this.internal.scaleFactor}).w),i=l[s],this.setFont(void 0,"normal"),b=0;b<i.length;b+=1)h.push(this.getTextDimensions(i[b],{fontSize:this.internal.__cell__.table_font_size,scaleFactor:this.internal.scaleFactor}).w);u[s]=Math.max.apply(null,h)+p+p,h=[]}if(g){for(var C={},Q=0;Q<o.length;Q+=1)C[o[Q]]={},C[o[Q]].text=a[Q],C[o[Q]].align=c[Q];var y=ug.call(this,C,u),d=o.map(function(A){return new cg(t,e,u[A],y,C[A].text,void 0,C[A].align)});this.setTableHeaderRow(d),this.printHeaderRow(1,!1)}var F=r.reduce(function(A,t){return A[t.name]=t.align,A},{});for(Q=0;Q<A.length;Q+=1){"rowStart"in n&&n.rowStart instanceof Function&&n.rowStart({row:Q,data:A[Q]},this);for(var U=ug.call(this,A[Q],u),b=0;b<o.length;b+=1){var v=A[Q][o[b]];"cellStart"in n&&n.cellStart instanceof Function&&n.cellStart({row:Q,col:b,data:v},this),lg.call(this,new cg(t,e,u[o[b]],U,v,Q+2,F[o[b]]))}}return this.internal.__cell__.table_x=t,this.internal.__cell__.table_y=e,this},ug=function(e,r){var n=this.internal.__cell__.padding,t=this.internal.__cell__.table_font_size,i=this.internal.scaleFactor;return Object.keys(e).map(function(A){var t=e[A];return this.splitTextToSize(t.hasOwnProperty("text")?t.text:t,r[A]-n-n)},this).map(function(A){return this.getLineHeightFactor()*A.length*t/i+n+n},this).reduce(function(A,t){return Math.max(A,t)},0)},i.setTableHeaderRow=function(A){sf.call(this),this.internal.__cell__.tableHeaderRow=A},i.printHeaderRow=function(A,t){if(sf.call(this),!this.internal.__cell__.tableHeaderRow)throw new Error("Property tableHeaderRow does not exist.");var e,r;ag=!0,"function"==typeof this.internal.__cell__.headerFunction&&(r=this.internal.__cell__.headerFunction(this,this.internal.__cell__.pages),this.internal.__cell__.lastCell=new cg(r[0],r[1],r[2],r[3],void 0,-1)),this.setFont(void 0,"bold");for(var n=[],i=0;i<this.internal.__cell__.tableHeaderRow.length;i+=1){e=this.internal.__cell__.tableHeaderRow[i].clone(),t&&(e.y=this.internal.__cell__.margins.top||0,n.push(e)),e.lineNumber=A;var s=this.getTextColor();this.setTextColor(this.internal.__cell__.headerTextColor),this.setFillColor(this.internal.__cell__.headerBackgroundColor),lg.call(this,e),this.setTextColor(s)}0<n.length&&this.setTableHeaderRow(n),this.setFont(void 0,"normal"),ag=!1};var pf={italic:["italic","oblique","normal"],oblique:["oblique","italic","normal"],normal:["normal","oblique","italic"]},wf=["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded"],mf=nf(wf),Cf=[100,200,300,400,500,600,700,800,900],Qf=nf(Cf);function yf(A){var t=A.family.replace(/"|'/g,"").toLowerCase(),e=(e=A.style,pf[e=e||"normal"]?e:"normal"),r=(r=A.weight)?"number"==typeof r?100<=r&&r<=900&&r%100==0?r:400:/^\d00$/.test(r)?parseInt(r):"bold"===r?700:400:400,n="number"==typeof mf[n=A.stretch||"normal"]?n:"normal";return{family:t,style:e,weight:r,stretch:n,src:A.src||[],ref:A.ref||{name:t,style:[n,e,r].join(" ")}}}function Ff(A,t,e,r){for(var n=e;0<=n&&n<t.length;n+=r)if(A[t[n]])return A[t[n]];for(n=e;0<=n&&n<t.length;n-=r)if(A[t[n]])return A[t[n]]}var Uf={"sans-serif":"helvetica",fixed:"courier",monospace:"courier",terminal:"courier",cursive:"times",fantasy:"times",serif:"times"},bf={caption:"times",icon:"times",menu:"times","message-box":"times","small-caption":"times","status-bar":"times"};function vf(A){return[A.stretch,A.style,A.weight,A.family].join(" ")}function Ef(A){return A.trimLeft()}var xf,If,Hf,Lf,Sf,Nf,_f,Tf,Df,Of,Pf,Mf,kf,Kf,Rf,Vf,Gf,jf,Xf,Wf,Jf,Yf,qf,zf,Zf,$f,Ad,td,ed,rd,nd,id,sd,od,ad,cd,ld,ud,hd,Bd,gd,fd,dd,pd,wd,md,Cd,Qd,yd,Fd=["times"];function Ud(A,t,e,r,n){var i=4,s=Ed;switch(n){case ue.API.image_compression.FAST:i=1,s=vd;break;case ue.API.image_compression.MEDIUM:i=6,s=xd;break;case ue.API.image_compression.SLOW:i=9,s=Id}n=oc(A=((A,t,e,r)=>{for(var n,i=A.length/t,s=new Uint8Array(A.length+i),o=[bd,vd,Ed,xd,Id],a=0;a<i;a+=1){var c=a*t,l=A.subarray(c,c+t);if(r)s.set(r(l,e,n),c+a);else{for(var u=o.length,h=[],B=0;B<u;B+=1)h[B]=o[B](l,e,n);var g=(A=>(A=A.map(function(A){return A.reduce(function(A,t){return A+Math.abs(t)},0)})).indexOf(Math.min.apply(null,A)))(h.concat());s.set(h[g],c+a)}n=l}return s})(A,t,Math.ceil(e*r/8),s),{level:i});return ue.API.__addimage__.arrayBufferToBinaryString(n)}function bd(A){A=Array.apply([],A);return A.unshift(0),A}function vd(A,t){for(var e=A.length,r=[1],n=0;n<e;n+=1){var i=A[n-t]||0;r[n+1]=A[n]-i+256&255}return r}function Ed(A,t,e){for(var r=A.length,n=[2],i=0;i<r;i+=1){var s=e&&e[i]||0;n[i+1]=A[i]-s+256&255}return n}function xd(A,t,e){for(var r=A.length,n=[3],i=0;i<r;i+=1){var s=A[i-t]||0,o=e&&e[i]||0;n[i+1]=A[i]+256-(s+o>>>1)&255}return n}function Id(A,t,e){for(var r,n,i,s,o,a=A.length,c=[4],l=0;l<a;l+=1){r=A[l-t]||0,n=e&&e[l]||0,i=e&&e[l-t]||0,o=s=u=void 0;var u=r===n&&n===i||(u=Math.abs(n-i),s=Math.abs(r-i),o=Math.abs(r+n-i-i),u<=s&&u<=o)?r:s<=o?n:i;c[l+1]=A[l]-u+256&255}return c}function Hd(A,t,e){var t=t*e,r=Math.floor(t/8),t=16-(t-8*r+e),e=(1<<e)-1;return Sd(A,r)>>t&e}function Ld(A,t,e,r){var e=e*r,n=Math.floor(e/8),e=16-(e-8*n+r),r=(1<<r)-1,t=(t&r)<<e;r=Sd(A=A,n=n)&~(r<<e)&65535|t,n+1<A.byteLength?A.setUint16(n,r,!1):A.setUint8(n,r>>8&255)}function Sd(A,t){return t+1<A.byteLength?A.getUint16(t,!1):A.getUint8(t)<<8}function Nd(m){var A=0;if(71!==m[A++]||73!==m[A++]||70!==m[A++]||56!==m[A++]||56!=(m[A++]+1&253)||97!==m[A++])throw new Error("Invalid GIF 87a/89a header.");var C=m[A++]|m[A++]<<8,t=m[A++]|m[A++]<<8,e=m[A++],r=1<<1+(7&e),n=(A++,A++,null),i=null,s=(e>>7&&(n=A,A+=3*(i=r)),!0),o=[],a=0,c=null,l=0,u=null;for(this.width=C,this.height=t;s&&A<m.length;)switch(m[A++]){case 33:switch(m[A++]){case 255:if(11!==m[A]||78==m[A+1]&&69==m[A+2]&&84==m[A+3]&&83==m[A+4]&&67==m[A+5]&&65==m[A+6]&&80==m[A+7]&&69==m[A+8]&&50==m[A+9]&&46==m[A+10]&&48==m[A+11]&&3==m[A+12]&&1==m[A+13]&&0==m[A+16])A+=14,u=m[A++]|m[A++]<<8,A++;else for(A+=12;;){if(!(0<=(B=m[A++])))throw Error("Invalid block size");if(0===B)break;A+=B}break;case 249:if(4!==m[A++]||0!==m[A+4])throw new Error("Invalid graphics extension block.");var h=m[A++],a=m[A++]|m[A++]<<8,c=m[A++];1&h||(c=null),l=h>>2&7,A++;break;case 254:for(;;){if(!(0<=(B=m[A++])))throw Error("Invalid block size");if(0===B)break;A+=B}break;default:throw new Error("Unknown graphic control label: 0x"+m[A-1].toString(16))}break;case 44:var B,g=m[A++]|m[A++]<<8,f=m[A++]|m[A++]<<8,d=m[A++]|m[A++]<<8,p=m[A++]|m[A++]<<8,w=m[A++],Q=w>>6&1,y=1<<1+(7&w),F=n,U=i,b=!1,w=(w>>7&&(b=!0,F=A,A+=3*(U=y)),A);for(A++;;){if(!(0<=(B=m[A++])))throw Error("Invalid block size");if(0===B)break;A+=B}o.push({x:g,y:f,width:d,height:p,has_local_palette:b,palette_offset:F,palette_size:U,data_offset:w,data_length:A-w,transparent_index:c,interlaced:!!Q,delay:a,disposal:l});break;case 59:s=!1;break;default:throw new Error("Unknown gif block: 0x"+m[A-1].toString(16))}this.numFrames=function(){return o.length},this.loopCount=function(){return u},this.frameInfo=function(A){if(A<0||o.length<=A)throw new Error("Frame index out of range.");return o[A]},this.decodeAndBlitFrameBGRA=function(A,t){var A=this.frameInfo(A),e=A.width*A.height,r=new Uint8Array(e),n=(_d(m,A.data_offset,r,e),A.palette_offset),i=A.transparent_index,s=(null===i&&(i=256),A.width),o=C-s,a=s,c=4*(A.y*C+A.x),l=4*((A.y+A.height)*C+A.x),u=c,h=4*o;!0===A.interlaced&&(h+=4*C*7);for(var B=8,g=0,f=r.length;g<f;++g){var d,p,w=r[g];0===a&&(a=s,(u+=h)>=l)&&(h=4*o+4*C*(B-1),u=c+(s+o)*(B<<1),B>>=1),w===i?u+=4:(d=m[n+3*w],p=m[n+3*w+1],t[u++]=m[n+3*w+2],t[u++]=p,t[u++]=d,t[u++]=255),--a}},this.decodeAndBlitFrameRGBA=function(A,t){var A=this.frameInfo(A),e=A.width*A.height,r=new Uint8Array(e),n=(_d(m,A.data_offset,r,e),A.palette_offset),i=A.transparent_index,s=(null===i&&(i=256),A.width),o=C-s,a=s,c=4*(A.y*C+A.x),l=4*((A.y+A.height)*C+A.x),u=c,h=4*o;!0===A.interlaced&&(h+=4*C*7);for(var B=8,g=0,f=r.length;g<f;++g){var d,p,w=r[g];0===a&&(a=s,(u+=h)>=l)&&(h=4*o+4*C*(B-1),u=c+(s+o)*(B<<1),B>>=1),w===i?u+=4:(d=m[n+3*w],p=m[n+3*w+1],w=m[n+3*w+2],t[u++]=d,t[u++]=p,t[u++]=w,t[u++]=255),--a}}}function _d(A,t,e,r){for(var n=A[t++],i=1<<n,s=1+i,o=1+s,a=n+1,c=(1<<a)-1,l=0,u=0,h=0,B=A[t++],g=new Int32Array(4096),f=null;;){for(;l<16&&0!==B;)u|=A[t++]<<l,l+=8,1===B?B=A[t++]:--B;if(l<a)break;var d=u&c;if(u>>=a,l-=a,d!=i){if(d==s)break;for(var p=d<o?d:f,w=0,m=p;i<m;)m=g[m]>>8,++w;var C=m;if(r<h+w+(p!==d?1:0))return BB.log("Warning, gif stream longer than expected.");e[h++]=C;var Q=h+=w;for(p!==d&&(e[h++]=C),m=p;w--;)m=g[m],e[--Q]=255&m,m>>=8;null!==f&&o<4096&&(g[o++]=f<<8|C,c+1<=o)&&a<12&&(++a,c=c<<1|1),f=d}else o=1+s,c=(1<<(a=n+1))-1,f=null}h!==r&&BB.log("Warning, gif stream shorter than expected.")}function Td(A){var h,B=Math.floor,v=new Array(64),E=new Array(64),x=new Array(64),I=new Array(64),f=new Array(65535),d=new Array(65535),L=new Array(64),p=new Array(64),H=[],S=0,N=7,_=new Array(64),T=new Array(64),D=new Array(64),c=new Array(256),O=new Array(2048),w=[0,1,5,6,14,15,27,28,2,4,7,13,16,26,29,42,3,8,12,17,25,30,41,43,9,11,18,24,31,40,44,53,10,19,23,32,39,45,52,54,20,22,33,38,46,51,55,60,21,34,37,47,50,56,59,61,35,36,48,49,57,58,62,63],P=[0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0],M=[0,1,2,3,4,5,6,7,8,9,10,11],k=[0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,125],K=[1,2,3,0,4,17,5,18,33,49,65,6,19,81,97,7,34,113,20,50,129,145,161,8,35,66,177,193,21,82,209,240,36,51,98,114,130,9,10,22,23,24,25,26,37,38,39,40,41,42,52,53,54,55,56,57,58,67,68,69,70,71,72,73,74,83,84,85,86,87,88,89,90,99,100,101,102,103,104,105,106,115,116,117,118,119,120,121,122,131,132,133,134,135,136,137,138,146,147,148,149,150,151,152,153,154,162,163,164,165,166,167,168,169,170,178,179,180,181,182,183,184,185,186,194,195,196,197,198,199,200,201,202,210,211,212,213,214,215,216,217,218,225,226,227,228,229,230,231,232,233,234,241,242,243,244,245,246,247,248,249,250],R=[0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0],W=[0,1,2,3,4,5,6,7,8,9,10,11],J=[0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,119],Y=[0,1,2,3,17,4,5,33,49,6,18,65,81,7,97,113,19,34,50,129,8,20,66,145,161,177,193,9,35,51,82,240,21,98,114,209,10,22,36,52,225,37,241,23,24,25,26,38,39,40,41,42,53,54,55,56,57,58,67,68,69,70,71,72,73,74,83,84,85,86,87,88,89,90,99,100,101,102,103,104,105,106,115,116,117,118,119,120,121,122,130,131,132,133,134,135,136,137,138,146,147,148,149,150,151,152,153,154,162,163,164,165,166,167,168,169,170,178,179,180,181,182,183,184,185,186,194,195,196,197,198,199,200,201,202,210,211,212,213,214,215,216,217,218,226,227,228,229,230,231,232,233,234,242,243,244,245,246,247,248,249,250];function t(A,t){for(var e=0,r=0,n=new Array,i=1;i<=16;i++){for(var s=1;s<=A[i];s++)n[t[r]]=[],n[t[r]][0]=e,n[t[r]][1]=i,r++,e++;e*=2}return n}function V(A){for(var t=A[0],e=A[1]-1;0<=e;)t&1<<e&&(S|=1<<N),e--,--N<0&&(255==S?(G(255),G(0)):G(S),N=7,S=0)}function G(A){H.push(A)}function j(A){G(A>>8&255),G(255&A)}function X(A,t,e,r,n){for(var i,s=n[0],o=n[240],a=((A,t)=>{for(var e,r,n=0,i=0;i<8;++i){var s=A[n],o=A[n+1],a=A[n+2],c=A[n+3],l=A[n+4],u=A[n+5],h=A[n+6],B=s+(e=A[n+7]),g=s-e,f=o+h,d=o-h,p=a+u,w=a-u,m=c+l,C=c-l,Q=B+m,B=B-m,m=f+p,f=f-p,p=(A[n]=Q+m,A[n+4]=Q-m,.707106781*(f+B)),m=(A[n+2]=B+p,A[n+6]=B-p,.382683433*((Q=C+w)-(f=d+g))),B=.5411961*Q+m,p=1.306562965*f+m,C=.707106781*(w+d),Q=g+C,f=g-C;A[n+5]=f+B,A[n+3]=f-B,A[n+1]=Q+p,A[n+7]=Q-p,n+=8}for(i=n=0;i<8;++i){var y=(s=A[n])+(e=A[n+56]),F=s-e,U=(o=A[n+8])+(h=A[n+48]),b=o-h,v=(a=A[n+16])+(u=A[n+40]),E=a-u,x=(c=A[n+24])+(l=A[n+32]),I=c-l,H=y+x,y=y-x,x=U+v,U=U-v,v=(A[n]=H+x,A[n+32]=H-x,.707106781*(U+y)),x=(A[n+16]=y+v,A[n+48]=y-v,.382683433*((H=I+E)-(U=b+F))),y=.5411961*H+x,v=1.306562965*U+x,I=.707106781*(E+b),H=F+I,U=F-I;A[n+40]=U+y,A[n+24]=U-y,A[n+8]=H+v,A[n+56]=H-v,n++}for(i=0;i<64;++i)r=A[i]*t[i],L[i]=0<r?.5+r|0:r-.5|0;return L})(A,t),c=0;c<64;++c)p[w[c]]=a[c];A=p[0]-e;e=p[0],0==A?V(r[0]):(V(r[d[i=32767+A]]),V(f[i]));for(var l=63;0<l&&0==p[l];)l--;if(0==l)V(s);else{for(var u=1;u<=l;){for(var h=u;0==p[u]&&u<=l;)++u;h=u-h;if(16<=h){for(var B=h>>4,g=1;g<=B;++g)V(o);h&=15}i=32767+p[u],V(n[(h<<4)+d[i]]),V(f[i]),u++}63!=l&&V(s)}return e}function q(A){if(A=Math.min(Math.max(A,1),100),h!=A){for(var t=A<50?Math.floor(5e3/A):Math.floor(200-2*A),e=[16,11,10,16,24,40,51,61,12,12,14,19,26,58,60,55,14,13,16,24,40,57,69,56,14,17,22,29,51,87,80,62,18,22,37,56,68,109,103,77,24,35,55,64,81,104,113,92,49,64,78,87,103,121,120,101,72,92,95,98,112,100,103,99],r=0;r<64;r++){var n=B((e[r]*t+50)/100),n=Math.min(Math.max(n,1),255);v[w[r]]=n}for(var i=[17,18,24,47,99,99,99,99,18,21,26,66,99,99,99,99,24,26,56,99,99,99,99,99,47,66,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99],s=0;s<64;s++){var o=B((i[s]*t+50)/100),o=Math.min(Math.max(o,1),255);E[w[s]]=o}for(var a=[1,1.387039845,1.306562965,1.175875602,1,.785694958,.5411961,.275899379],c=0,l=0;l<8;l++)for(var u=0;u<8;u++)x[c]=1/(v[w[c]]*a[l]*a[u]*8),I[c]=1/(E[w[c]]*a[l]*a[u]*8),c++;h=A}}this.encode=function(A,t){t&&q(t),H=new Array,S=0,N=7,j(65496),j(65504),j(16),G(74),G(70),G(73),G(70),G(0),G(1),G(1),G(0),j(1),j(1),G(0),G(0),j(65499),j(132),G(0);for(var e=0;e<64;e++)G(v[e]);G(1);for(var r=0;r<64;r++)G(E[r]);t=A.width,Q=A.height,j(65472),j(17),G(8),j(Q),j(t),G(3),G(1),G(17),G(0),G(2),G(17),G(1),G(3),G(17),G(1),j(65476),j(418),G(0);for(var n=0;n<16;n++)G(P[n+1]);for(var i=0;i<=11;i++)G(M[i]);G(16);for(var s=0;s<16;s++)G(k[s+1]);for(var o=0;o<=161;o++)G(K[o]);G(1);for(var a=0;a<16;a++)G(R[a+1]);for(var c=0;c<=11;c++)G(W[c]);G(17);for(var l=0;l<16;l++)G(J[l+1]);for(var u=0;u<=161;u++)G(Y[u]);j(65498),j(12),G(3),G(1),G(0),G(2),G(17),G(3),G(17),G(0),G(63),G(0);var h=0,B=0,g=0;S=0,N=7,this.encode.displayName="_encode_";for(var f,d,p,w,m,C,Q,y=A.data,F=A.height,U=4*A.width,b=0;b<F;){for(f=0;f<U;){for(d=U*b+f,C=0;C<64;C++)p=d+(m=C>>3)*U+(w=4*(7&C)),F<=b+m&&(p-=U*(b+1+m-F)),U<=f+w&&(p-=f+w-U+4),m=y[p++],w=y[p++],p=y[p++],_[C]=(O[m]+O[w+256|0]+O[p+512|0]>>16)-128,T[C]=(O[m+768|0]+O[w+1024|0]+O[p+1280|0]>>16)-128,D[C]=(O[m+1280|0]+O[w+1536|0]+O[p+1792|0]>>16)-128;h=X(_,x,h,z,$),B=X(T,I,B,Z,AA),g=X(D,I,g,Z,AA),f+=32}b+=8}return 0<=N&&((Q=[])[1]=N+1,Q[0]=(1<<N+1)-1,V(Q)),j(65497),new Uint8Array(H)},A=A||50;for(var l=String.fromCharCode,e=0;e<256;e++)c[e]=l(e);for(var z=t(P,M),Z=t(R,W),$=t(k,K),AA=t(J,Y),r=1,n=2,i=1;i<=15;i++){for(var s=r;s<n;s++)d[32767+s]=i,f[32767+s]=[],f[32767+s][1]=i,f[32767+s][0]=s;for(var o=-(n-1);o<=-r;o++)d[32767+o]=i,f[32767+o]=[],f[32767+o][1]=i,f[32767+o][0]=n-1+o;r<<=1,n<<=1}for(var a=0;a<256;a++)O[a]=19595*a,O[a+256|0]=38470*a,O[a+512|0]=7471*a+32768,O[a+768|0]=-11059*a,O[a+1024|0]=-21709*a,O[a+1280|0]=32768*a+8421375,O[a+1536|0]=-27439*a,O[a+1792|0]=-5329*a;q(A)}function Dd(A,t){if(this.pos=0,this.buffer=A,this.datav=new DataView(A.buffer),this.is_with_alpha=!!t,this.bottom_up=!0,this.flag=String.fromCharCode(this.buffer[0])+String.fromCharCode(this.buffer[1]),this.pos+=2,-1===["BM","BA","CI","CP","IC","PT"].indexOf(this.flag))throw new Error("Invalid BMP File");this.parseHeader(),this.parseBGR()}function Od(A){function En(A){if(!A)throw Error("assert :P")}function xn(A,t,e){for(var r=0;r<4;r++)if(A[t+r]!=e.charCodeAt(r))return 1}function In(A,t,e,r,n){for(var i=0;i<n;i++)A[t+i]=e[r+i]}function Hn(A,t,e,r){for(var n=0;n<r;n++)A[t+n]=e}function Ln(A){return new Int32Array(A)}function Sn(A,t){for(var e=[],r=0;r<A;r++)e.push(new t);return e}function Nn(A,s){var t=[];return function A(t,e,r){for(var n=r[e],i=0;i<n&&(t.push(r.length>e+1?[]:new s),!(r.length<e+1));i++)A(t[i],e+1,r)}(t,0,A),t}function t(){var d=this;function b(A,t){for(var e=1<<t-1>>>0;A&e;)e>>>=1;return e?(A&e-1)+e:A}function v(A,t,e,r,n){for(En(!(r%e));A[t+(r-=e)]=n,0<r;);}function qA(A,t,e,r,n){if(En(n<=2328),n<=512)var i=Ln(512);else if(null==(i=Ln(n)))return 0;var s=A,o=t,a=e,c=r,l=n,u=i,h=o,B=1<<a,g=Ln(16),f=Ln(16);for(En(0!=l),En(null!=c),En(null!=s),En(0<a),F=0;F<l;++F){if(15<c[F])return 0;++g[c[F]]}if(g[0]==l)return 0;for(f[1]=0,U=1;U<15;++U){if(g[U]>1<<U)return 0;f[U+1]=f[U]+g[U]}for(F=0;F<l;++F)U=c[F],0<c[F]&&(u[f[U]++]=F);if(1==f[15])return(c=new VA).g=0,c.value=u[0],v(s,h,1,B,c),B;var d,p=-1,w=B-1,m=0,C=1,Q=1,y=1<<a,F=0,U=1;for(l=2;U<=a;++U,l<<=1){if(C+=Q<<=1,(Q-=g[U])<0)return 0;for(;0<g[U];--g[U])(c=new VA).g=U,c.value=u[F++],v(s,h+m,l,y,c),m=b(m,U)}for(U=a+1,l=2;U<=15;++U,l<<=1){if(C+=Q<<=1,(Q-=g[U])<0)return 0;for(;0<g[U];--g[U]){if(c=new VA,(m&w)!=p){for(h+=y,d=1<<(p=U)-a;p<15&&!((d-=g[p])<=0);)++p,d<<=1;B+=y=1<<(d=p-a),s[o+(p=m&w)].g=d+a,s[o+p].value=h-o-p}c.g=U-a,c.value=u[F++],v(s,h+(m>>a),l,y,c),m=b(m,U)}}return C!=2*f[15]-1?0:B}function VA(){this.value=this.g=0}function r(){this.value=this.g=0}function zA(){this.G=Sn(5,VA),this.H=Ln(5),this.jc=this.Qb=this.qb=this.nd=0,this.pd=Sn(Oe,r)}function E(A,t,e,r){En(null!=A),En(null!=t),En(r<2147483648),A.Ca=254,A.I=0,A.b=-8,A.Ka=0,A.oa=t,A.pa=e,A.Jd=t,A.Yc=e+r,A.Zc=4<=r?e+r-4+1:e,L(A)}function g(A,t){for(var e=0;0<t--;)e|=O(A,128)<<t;return e}function f(A,t){t=g(A,t);return p(A)?-t:t}function R(A,t,e,r){var n,i=0;for(En(null!=A),En(null!=t),En(r<4294967288),A.Sb=r,A.Ra=0,A.u=0,4<r&&(r=4),n=A.h=0;n<r;++n)i+=t[e+n]<<8*n;A.Ra=i,A.bb=r,A.oa=t,A.pa=e}function o(A){for(;8<=A.u&&A.bb<A.Sb;)A.Ra>>>=8,A.Ra+=A.oa[A.pa+A.bb]<<ke-8>>>0,++A.bb,A.u-=8;V(A)&&(A.h=1,A.u=0)}function GA(A,t){var e;return En(0<=t),!A.h&&t<=Me?(e=jA(A)&Pe[t],A.u+=t,o(A),e):(A.h=1,A.u=0)}function I(){this.b=this.Ca=this.I=0,this.oa=[],this.pa=0,this.Jd=[],this.Yc=0,this.Zc=[],this.Ka=0}function H(){this.Ra=0,this.oa=[],this.h=this.u=this.bb=this.Sb=this.pa=0}function jA(A){return A.Ra>>>(A.u&ke-1)>>>0}function V(A){return En(A.bb<=A.Sb),A.h||A.bb==A.Sb&&A.u>ke}function XA(A,t){A.u=t,A.h=V(A)}function WA(A){A.u>=Ke&&(En(A.u>=Ke),o(A))}function L(A){En(null!=A&&null!=A.oa),A.pa<A.Zc?(A.I=(A.oa[A.pa++]|A.I<<8)>>>0,A.b+=8):(En(null!=A&&null!=A.oa),A.pa<A.Yc?(A.b+=8,A.I=A.oa[A.pa++]|A.I<<8):A.Ka?A.b=0:(A.I<<=8,A.b+=8,A.Ka=1))}function p(A){return g(A,1)}function O(A,t){var e=A.Ca,r=(A.b<0&&L(A),A.b),n=e*t>>>8,t=+(n<A.I>>>r);for(t?(e-=n,A.I-=n+1<<r>>>0):e=n+1,r=e,n=0;256<=r;)n+=8,r>>=8;return r=7^n+Re[r],A.b-=r,A.Ca=(e<<r)-1,t}function s(A,t,e){A[t+0]=e>>24&255,A[t+1]=e>>16&255,A[t+2]=e>>8&255,A[t+3]=255&e}function S(A,t){return A[t+0]|A[t+1]<<8}function N(A,t){return S(A,t)|A[t+2]<<16}function x(A,t){return S(A,t)|S(A,t+2)<<16}function ZA(A,t){var e=1<<t;return En(null!=A),En(0<t),A.X=Ln(e),null!=A.X&&(A.Mb=32-t,A.Xa=t,1)}function _(A,t){En(null!=A),En(null!=t),En(A.Xa==t.Xa),In(t.X,0,A.X,0,1<<t.Xa)}function T(){this.X=[],this.Xa=this.Mb=0}function D(A,t,e,r){En(null!=e),En(null!=r);var n=e[0],i=r[0];return 0==n&&(n=(A*i+t/2)/t),0==i&&(i=(t*n+A/2)/A),!(n<=0||i<=0)&&(e[0]=n,r[0]=i,1)}function JA(A,t){return A+(1<<t)-1>>>t}function $A(A,t){return((4278255360&A)+(4278255360&t)>>>0&4278255360)+((16711935&A)+(16711935&t)>>>0&16711935)>>>0}function A(c,A){d[A]=function(A,t,e,r,n,i,s){for(var o=0;o<n;++o){var a=d[c](i[s+o-1],e,r+o);i[s+o]=$A(A[t+o],a)}}}function G(){this.ud=this.hd=this.jd=0}function n(A,t){return((4278124286&(A^t))>>>1)+(A&t)>>>0}function i(A){return 0<=A&&A<256?A:A<0?0:255<A?255:void 0}function j(A,t){return i(A+(A-t+.5>>1))}function X(A,t,e){return Math.abs(t-e)-Math.abs(A-e)}function W(A,t,e,r,n,i,s){for(r=i[s-1],e=0;e<n;++e)i[s+e]=r=$A(A[t+e],r)}function J(A,t,e,r,n){for(var i=0;i<e;++i){var s=A[t+i],o=s>>8&255,a=16711935&(a=16711935&s)+((o<<16)+o);r[n+i]=(4278255360&s)+a>>>0}}function Y(A,t){t.jd=255&A,t.hd=A>>8&255,t.ud=A>>16&255}function q(A,t,e,r,n,i){for(var s=0;s<r;++s){var o=t[e+s],a=o>>>8,c=o,l=255&(l=o>>>16)+((A.jd<<24>>24)*(a<<24>>24)>>>5),c=255&(c+=(A.hd<<24>>24)*(a<<24>>24)>>>5)+((A.ud<<24>>24)*(l<<24>>24)>>>5);n[i+s]=(4278255360&o)+(l<<16)+c}}function z(A,t,B,g,f){d[t]=function(A,t,e,r,n,i,s,o,a){for(r=s;r<o;++r)for(s=0;s<a;++s)n[i++]=f(e[g(A[t++])])},d[A]=function(A,t,e,r,n,i,s){var o=8>>A.b,a=A.Ea,c=A.K[0],l=A.w;if(o<8)for(A=(1<<A.b)-1,l=(1<<o)-1;t<e;++t)for(var u=0,h=0;h<a;++h)h&A||(u=g(r[n++])),i[s++]=f(c[u&l]),u>>=o;else d["VP8LMapColor"+B](r,n,c,l,i,s,t,e,a)}}function Z(A,t,e,r,n){for(e=t+e;t<e;){var i=A[t++];r[n++]=i>>16&255,r[n++]=i>>8&255,r[n++]=255&i}}function $(A,t,e,r,n){for(e=t+e;t<e;){var i=A[t++];r[n++]=i>>16&255,r[n++]=i>>8&255,r[n++]=255&i,r[n++]=i>>24&255}}function AA(A,t,e,r,n){for(e=t+e;t<e;){var i=(s=A[t++])>>16&240|s>>12&15,s=240&s|s>>28&15;r[n++]=i,r[n++]=s}}function tA(A,t,e,r,n){for(e=t+e;t<e;){var i=(s=A[t++])>>16&248|s>>13&7,s=s>>5&224|s>>3&31;r[n++]=i,r[n++]=s}}function eA(A,t,e,r,n){for(e=t+e;t<e;){var i=A[t++];r[n++]=255&i,r[n++]=i>>8&255,r[n++]=i>>16&255}}function rA(A,t,e,r,n,i){if(0==i)for(e=t+e;t<e;)s(r,((i=A[t++])[0]>>24|i[1]>>8&65280|i[2]<<8&16711680|i[3]<<24)>>>0),n+=32;else In(r,n,A,t,e)}function nA(A,t){d[t][0]=d[A+"0"],d[t][1]=d[A+"1"],d[t][2]=d[A+"2"],d[t][3]=d[A+"3"],d[t][4]=d[A+"4"],d[t][5]=d[A+"5"],d[t][6]=d[A+"6"],d[t][7]=d[A+"7"],d[t][8]=d[A+"8"],d[t][9]=d[A+"9"],d[t][10]=d[A+"10"],d[t][11]=d[A+"11"],d[t][12]=d[A+"12"],d[t][13]=d[A+"13"],d[t][14]=d[A+"0"],d[t][15]=d[A+"0"]}function iA(A){return A==Pr||A==Mr||A==kr||A==Kr}function sA(){this.eb=[],this.size=this.A=this.fb=0}function oA(){this.y=[],this.f=[],this.ea=[],this.F=[],this.Tc=this.Ed=this.Cd=this.Fd=this.lb=this.Db=this.Ab=this.fa=this.J=this.W=this.N=this.O=0}function aA(){this.Rd=this.height=this.width=this.S=0,this.f={},this.f.RGBA=new sA,this.f.kb=new oA,this.sd=null}function cA(){this.width=[0],this.height=[0],this.Pd=[0],this.Qd=[0],this.format=[0]}function lA(){this.Id=this.fd=this.Md=this.hb=this.ib=this.da=this.bd=this.cd=this.j=this.v=this.Da=this.Sd=this.ob=0}function uA(A){return alert("todo:WebPSamplerProcessPlane"),A.T}function hA(A,t){var e=A.T,r=t.ba.f.RGBA,n=r.eb,i=r.fb+A.ka*r.A,s=U[t.ba.S],o=A.y,a=A.O,c=A.f,l=A.N,u=A.ea,h=A.W,B=t.cc,g=t.dc,f=t.Mc,d=t.Nc,p=A.ka,w=A.ka+A.T,m=A.U,C=m+1>>1;for(0==p?s(o,a,null,null,c,l,u,h,c,l,u,h,n,i,null,null,m):(s(t.ec,t.fc,o,a,B,g,f,d,c,l,u,h,n,i-r.A,n,i,m),++e);p+2<w;p+=2)g=l,d=h,l+=A.Rc,i+=2*r.A,s(o,(a+=2*A.fa)-A.fa,o,a,B=c,g,f=u,d,c,l,u,h+=A.Rc,n,i-r.A,n,i,m);return a+=A.fa,A.j+w<A.o?(In(t.ec,t.fc,o,a,m),In(t.cc,t.dc,c,l,C),In(t.Mc,t.Nc,u,h,C),e--):1&w||s(o,a,null,null,c,l,u,h,c,l,u,h,n,i+r.A,null,null,m),e}function BA(A,t,e){var r,n,i,s,o,a,c=A.F,l=[A.J];return null!=c&&(r=A.U,i=(n=t.ba.S)==Tr||n==kr,t=t.ba.f.RGBA,a=A.ka,(s=[0])[0]=A.T,A.Kb&&(0==a?--s[0]:(--a,l[0]-=A.width),A.j+A.ka+A.T==A.o)&&(s[0]=A.o-A.j-a),o=t.eb,A=yr(c,l[0],A.width,r,s,o,(a=t.fb+a*t.A)+(i?0:3),t.A),En(e==s),A)&&iA(n)&&Cr(o,a,i,r,s,t.A),0}function gA(A){var t=A.ma,e=t.ba.S,r=e<11,n=e==Sr||e==_r||e==Tr||e==Dr||12==e||iA(e);if(t.memory=null,t.Ib=null,t.Jb=null,t.Nd=null,!_e(t.Oa,A,n?11:12))return 0;if(n&&iA(e)&&we(),A.da)alert("todo:use_scaling");else{if(r){if(t.Ib=uA,A.Kb){if(e=A.U+1>>1,t.memory=Ln(A.U+2*e),null==t.memory)return 0;t.ec=t.memory,t.fc=0,t.cc=t.ec,t.dc=t.fc+A.U,t.Mc=t.cc,t.Nc=t.dc+e,t.Ib=hA,we()}}else alert("todo:EmitYUV");n&&(t.Jb=BA,r)&&pe()}if(r&&!dn){for(A=0;A<256;++A)pn[A]=89858*(A-128)+32768>>16,Cn[A]=-22014*(A-128)+32768,mn[A]=-45773*(A-128),wn[A]=113618*(A-128)+32768>>16;for(A=-227;A<482;++A)Qn[A- -227]=w(t=76283*(A-16)+32768>>16,255),yn[A- -227]=w(t+8>>4,15);dn=1}return 1}function fA(A){var t=A.ma,e=A.U,r=A.T;return En(!(1&A.ka)),e<=0||r<=0?0:(e=t.Ib(A,t),null!=t.Jb&&t.Jb(A,t,e),t.Dc+=e,1)}function dA(A){A.ma.memory=null}function pA(A,t,e,r){return 47==GA(A,8)&&(t[0]=GA(A,14)+1,e[0]=GA(A,14)+1,r[0]=GA(A,1),0==GA(A,3))&&!A.h}function wA(A,t){return A<4?A+1:(2+(1&A)<<(A=A-2>>1))+GA(t,A)+1}function mA(A,t){return 120<t?t-120:1<=(t=((t=Wr[t-1])>>4)*A+(8-(15&t)))?t:1}function P(A,t,e){var r,n=A[t+=255&jA(e)].g-8;return 0<n&&(XA(e,e.u+8),r=jA(e),t=t+A[t].value+(r&(1<<n)-1)),XA(e,e.u+A[t].g),A[t].value}function At(A,t,e){return e.g+=A.g,e.value+=A.value<<t>>>0,En(e.g<=8),A.g}function M(A,t,e){var r=A.xc;return En((t=0==r?0:A.vc[A.md*(e>>r)+(t>>r)])<A.Wb),A.Ya[t]}function CA(A,t,e,r){var n=A.ab,i=A.c*t,s=A.C,o=(t=s+t,e),a=r;for(r=A.Ta,e=A.Ua;0<n--;){var c=A.gc[n],l=s,u=t,h=o,B=a,g=(a=r,o=e,c.Ea);switch(En(l<u),En(u<=c.nc),c.hc){case 2:je(h,B,(u-l)*g,a,o);break;case 0:var f=l,d=u,p=a,w=o,m=(U=c).Ea;0==f&&(Ve(h,B,null,null,1,p,w),W(h,B+1,0,0,m-1,p,w+1),B+=m,w+=m,++f);for(var C=1<<U.b,Q=C-1,y=JA(m,U.b),F=U.K,U=U.w+(f>>U.b)*y;f<d;){var b=F,v=U,E=1;for(Ge(h,B,p,w-m,1,p,w);E<m;){var x=(E&~Q)+C;m<x&&(x=m),(0,qe[b[v++]>>8&15])(h,B+ +E,p,w+E-m,x-E,p,w+E),E=x}B+=m,w+=m,++f&Q||(U+=y)}u!=c.nc&&In(a,o-g,a,o+(u-l-1)*g,g);break;case 1:for(g=h,d=B,m=(h=c.Ea)-(w=h&~(p=(B=1<<c.b)-1)),f=JA(h,c.b),C=c.K,c=c.w+(l>>c.b)*f;l<u;){for(Q=C,y=c,F=new G,U=d+w,b=d+h;d<U;)Y(Q[y++],F),ze(F,g,d,B,a,o),d+=B,o+=B;d<b&&(Y(Q[y++],F),ze(F,g,d,m,a,o),d+=m,o+=m),++l&p||(c+=f)}break;case 3:if(h==a&&B==o&&0<c.b){for(d=a,h=g=o+(u-l)*g-(w=(u-l)*JA(c.Ea,c.b)),B=a,p=o,f=[],w=(m=w)-1;0<=w;--w)f[w]=B[p+w];for(w=m-1;0<=w;--w)d[h+w]=f[w];Xe(c,l,u,a,g,a,o)}else Xe(c,l,u,h,B,a,o)}o=r,a=e}a!=e&&In(r,e,o,a,i)}function QA(A,t){var e=A.V,r=A.Ba+A.c*A.C,n=t-A.C;if(En(t<=A.l.o),En(n<=16),0<n){var i,s=A.l,o=A.Ta,a=A.Ua,c=s.width;if(CA(A,n,e,r),n=a=[a],En((e=A.C)<(r=t)),En(s.v<s.va),s.o<r&&(r=s.o),e<s.j&&(i=s.j-e,e=s.j,n[0]+=i*c),e=r<=e?0:(n[0]+=4*s.v,s.ka=e-s.j,s.U=s.va-s.v,s.T=r-e,1)){if(a=a[0],(e=A.ca).S<11){for(var l=e.f.RGBA,u=(r=e.S,n=s.U,s=s.T,i=l.eb,l.A),h=s,l=l.fb+A.Ma*l.A;0<h--;){var B=o,g=a,f=n,d=i,p=l;switch(r){case Lr:Ze(B,g,f,d,p);break;case Sr:$e(B,g,f,d,p);break;case Pr:$e(B,g,f,d,p),Cr(d,p,0,f,1,0);break;case Nr:er(B,g,f,d,p);break;case _r:rA(B,g,f,d,p,1);break;case Mr:rA(B,g,f,d,p,1),Cr(d,p,0,f,1,0);break;case Tr:rA(B,g,f,d,p,0);break;case kr:rA(B,g,f,d,p,0),Cr(d,p,1,f,1,0);break;case Dr:Ar(B,g,f,d,p);break;case Kr:Ar(B,g,f,d,p),Qr(d,p,f,1,0);break;case Or:tr(B,g,f,d,p);break;default:En(0)}a+=c,l+=u}A.Ma+=s}else alert("todo:EmitRescaledRowsYUVA");En(A.Ma<=e.height)}}A.C=t,En(A.C<=A.i)}function yA(A){var t;if(0<A.ua)return 0;for(t=0;t<A.Wb;++t){var e=A.Ya[t].G,r=A.Ya[t].H;if(0<e[1][r[1]+0].g||0<e[2][r[2]+0].g||0<e[3][r[3]+0].g)return 0}return 1}function FA(A,t,e,r,n,i){if(0!=A.Z){var s=A.qd,o=A.rd;for(En(null!=K[A.Z]);t<e;++t)K[A.Z](s,o,r,n,r,n,i),s=r,o=n,n+=i;A.qd=s,A.rd=o}}function UA(A,t){var e,r,n,i,s,o,a=A.l.ma,c=0==a.Z||1==a.Z?A.l.j:A.C,c=A.C<c?c:A.C;En(t<=A.l.o),c<t&&(e=A.l.width,r=a.ca,n=a.tb+e*c,i=A.V,s=A.Ba+A.c*c,o=A.gc,En(1==A.ab),En(3==o[0].hc),Je(o[0],c,t,i,s,r,n),FA(a,c,t,r,n,e)),A.C=A.Ma=t}function tt(A,t,e,r,n,i,s){var o=A.$/r,a=A.$%r,c=A.m,l=A.s,u=e+A.$,h=u,B=(n=e+r*n,e+r*i),g=280+l.ua,f=A.Pb?o:16777216,d=0<l.ua?l.Wa:null,p=l.wc,w=u<B?M(l,a,o):null,m=(En(A.C<i),En(B<=n),!1);A:for(;;){for(;m||u<B;){var C,Q,y,F=0;if(f<=o&&(C=u-e,En((f=A).Pb),f.wd=f.m,f.xd=C,0<f.s.ua&&_(f.s.Wa,f.s.vb),f=o+Yr),En(null!=(w=a&p?w:M(l,a,o))),w.Qb&&(t[u]=w.qb,m=!0),m||(WA(c),w.jc?(C=t,Q=u,y=w.pd[jA(F=c)&Oe-1],En(w.jc),0==(F=y.g<256?(XA(F,F.u+y.g),C[Q]=y.value,0):(XA(F,F.u+y.g-256),En(256<=y.value),y.value))&&(m=!0)):F=P(w.G[0],w.H[0],c)),c.h)break;if(m||F<256){if(!m)if(w.nd)t[u]=(w.qb|F<<8)>>>0;else{if(WA(c),m=P(w.G[1],w.H[1],c),WA(c),C=P(w.G[2],w.H[2],c),Q=P(w.G[3],w.H[3],c),c.h)break;t[u]=(Q<<24|m<<16|F<<8|C)>>>0}if(m=!1,++u,++a>=r&&(a=0,++o,null!=s&&o<=i&&!(o%16)&&s(A,o),null!=d))for(;h<u;)F=t[h++],d.X[(506832829*F&4294967295)>>>d.Mb]=F}else if(F<280){if(F=wA(F-256,c),C=P(w.G[4],w.H[4],c),WA(c),C=mA(r,C=wA(C,c)),c.h)break;if(u-e<C||n-u<F)break A;for(Q=0;Q<F;++Q)t[u+Q]=t[u+Q-C];for(u+=F,a+=F;r<=a;)a-=r,++o,null!=s&&o<=i&&!(o%16)&&s(A,o);if(En(u<=n),a&p&&(w=M(l,a,o)),null!=d)for(;h<u;)F=t[h++],d.X[(506832829*F&4294967295)>>>d.Mb]=F}else{if(!(F<g))break A;for(m=F-280,En(null!=d);h<u;)F=t[h++],d.X[(506832829*F&4294967295)>>>d.Mb]=F;F=u,En(!(m>>>(C=d).Xa)),t[F]=C.X[m],m=!0}m||En(c.h==V(c))}if(A.Pb&&c.h&&u<n)En(A.m.h),A.a=5,A.m=A.wd,A.$=A.xd,0<A.s.ua&&_(A.s.vb,A.s.Wa);else{if(c.h)break;null!=s&&s(A,i<o?i:o),A.a=0,A.$=u-e}return 1}return A.a=3,0}function et(A){En(null!=A),A.vc=null,A.yc=null,A.Ya=null;var t=A.Wa;null!=t&&(t.X=null),En((A.vb=null)!=A)}function bA(){var A=new ae;return null==A?null:(A.a=0,A.xb=2,nA("Predictor","VP8LPredictors"),nA("Predictor","VP8LPredictors_C"),nA("PredictorAdd","VP8LPredictorsAdd"),nA("PredictorAdd","VP8LPredictorsAdd_C"),je=J,ze=q,Ze=Z,$e=$,Ar=AA,tr=tA,er=eA,d.VP8LMapColor32b=We,d.VP8LMapColor8b=Ye,A)}function YA(D,O,A,t,P){for(var M,e=1,r=[D],n=[O],k=t.m,K=t.s,R=null,i=0;;){if(A)for(;e&&GA(k,1);){var V=r,G=n,s=t,j=1,X=s.m,o=s.gc[s.ab],W=GA(X,2);if(s.Oc&1<<W)e=0;else{switch(s.Oc|=1<<W,o.hc=W,o.Ea=V[0],o.nc=G[0],o.K=[null],++s.ab,En(s.ab<=4),W){case 0:case 1:o.b=GA(X,3)+2,j=YA(JA(o.Ea,o.b),JA(o.nc,o.b),0,s,o.K),o.K=o.K[0];break;case 3:var a=GA(X,8)+1,c=16<a?0:4<a?1:2<a?2:3;if(V[0]=JA(o.Ea,c),o.b=c,c=j=YA(a,1,0,s,o.K)){var l,J=a,a=o,Y=1<<(8>>a.b),u=Ln(Y);if(null==u)c=0;else{var q=a.K[0],z=a.w;for(u[0]=a.K[0][0],l=1;l<+J;++l)u[l]=$A(q[z+l],u[l-1]);for(;l<4*Y;++l)u[l]=0;a.K[0]=null,a.K[0]=u,c=1}}j=c;break;case 2:break;default:En(0)}e=j}}if(r=r[0],n=n[0],e&&GA(k,1)&&!(e=1<=(i=GA(k,4))&&i<=11)){t.a=3;break}if(M=e)A:{var h,B=t,Z=r,$=n,g=i,AA=A,tA=B.m,f=B.s,d=[null],p=1,eA=0,rA=Jr[g];t:for(;;){if(AA&&GA(tA,1)){var w=GA(tA,3)+2,m=JA(Z,w),nA=JA($,w),iA=m*nA;if(!YA(m,nA,0,B,d))break;for(d=d[0],f.xc=w,y=0;y<iA;++y){var sA=d[y]>>8&65535;p<=(d[y]=sA)&&(p=1+sA)}}if(tA.h)break;for(v=0;v<5;++v){var C=Gr[v];!v&&0<g&&(C+=1<<g),eA<C&&(eA=C)}var m=Sn(p*rA,VA),nA=p,w=Sn(nA,zA),oA=null==w?null:(En(nA<=65536),w),Q=Ln(eA);if(null==oA||null==Q||null==m){B.a=1;break}for(var aA=m,y=h=0;y<p;++y){for(var F=oA[y],U=F.G,b=F.H,cA=0,lA=1,uA=0,v=0;v<5;++v){C=Gr[v],!v&&0<g&&(C+=1<<g);e:{var hA,BA=C,gA=B,E=Q,fA=U[v]=aA,dA=b[v]=h,pA=0,x=gA.m,wA=GA(x,1);if(Hn(E,0,0,BA),wA)var wA=GA(x,1)+1,I=GA(x,1),I=(E[GA(x,0==I?1:8)]=1,2==wA&&(E[GA(x,8)]=1),1);else{var mA=Ln(19),CA=GA(x,4)+4;if(19<CA){gA.a=3;var QA=0;break e}for(hA=0;hA<CA;++hA)mA[Xr[hA]]=GA(x,3);var yA=void 0,H=void 0,wA=gA,FA=mA,UA=BA,bA=E,vA=0,L=wA.m,EA=8,xA=Sn(128,VA);r:for(;qA(xA,0,7,FA,19);){if(GA(L,1)){var IA=2+2*GA(L,3);if((yA=2+GA(L,IA))>UA)break}else yA=UA;for(H=0;H<UA&&yA--;){WA(L);var S=xA[127&jA(L)],S=(XA(L,L.u+S.g),S.value);if(S<16)0!=(bA[H++]=S)&&(EA=S);else{var HA=16==S,S=S-16,LA=Vr[S],SA=GA(L,Rr[S])+LA;if(UA<H+SA)break r;for(var NA=HA?EA:0;0<SA--;)bA[H++]=NA}}vA=1;break}vA||(wA.a=3),I=vA}(I=I&&!x.h)&&(pA=qA(fA,dA,8,E,BA)),QA=I&&0!=pA?pA:(gA.a=3,0)}if(0==QA)break t;if(lA&&1==jr[v]&&(lA=0==aA[h].g),cA+=aA[h].g,h+=QA,v<=3){for(var _A=Q[0],TA=1;TA<C;++TA)Q[TA]>_A&&(_A=Q[TA]);uA+=_A}}if(F.nd=lA,F.Qb=0,lA&&(F.qb=(U[3][b[3]+0].value<<24|U[1][b[1]+0].value<<16|U[2][b[2]+0].value)>>>0,0==cA)&&U[0][b[0]+0].value<256&&(F.Qb=1,F.qb+=U[0][b[0]+0].value<<8),F.jc=!F.Qb&&uA<6,F.jc)for(var N=F,DA=0;DA<Oe;++DA){var _=DA,T=N.pd[_],OA=N.G[0][N.H[0]+_];256<=OA.value?(T.g=OA.g+256,T.value=OA.value):(T.g=0,T.value=0,_=(_=(_>>=At(OA,8,T))>>At(N.G[1][N.H[1]+_],16,T))>>At(N.G[2][N.H[2]+_],0,T),At(N.G[3][N.H[3]+_],24,T))}}f.vc=d,f.Wb=p,f.Ya=oA,f.yc=m,M=1;break A}M=0}if(!(e=M)){t.a=3;break}if(0<i){if(K.ua=1<<i,!ZA(K.Wa,i)){t.a=1,e=0;break}}else K.ua=0;var PA=t,MA=r,kA=n,KA=PA.s,RA=KA.xc;if(PA.c=MA,PA.i=kA,KA.md=JA(MA,RA),KA.wc=0==RA?-1:(1<<RA)-1,A){t.xb=1;break}if(null==(R=Ln(r*n))){t.a=1,e=0;break}e=(e=tt(t,R,0,r,n,n,null))&&!k.h;break}return e&&(null!=P?P[0]=R:(En(null==R),En(A)),t.$=0,A)||et(K),e}function vA(A,t){var e=A.c*A.i,r=e+t+16*t;return En(A.c<=t),A.V=Ln(r),null==A.V?(A.Ta=null,A.Ua=0,A.a=1,0):(A.Ta=A.V,A.Ua=A.Ba+e+t,1)}function EA(A,t){var e=A.C,r=t-e,n=A.V,i=A.Ba+A.c*e;for(En(t<=A.l.o);0<r;){var s=16<r?16:r,o=A.l.ma,a=A.l.width,c=a*s,l=o.ca,u=o.tb+a*e,h=A.Ta,B=A.Ua;CA(A,s,n,i),Fr(h,B,l,u,c),FA(o,e,e+s,l,u,a),r-=s,n+=s*A.c,e+=s}En(e==t),A.C=A.Ma=t}function xA(){this.ub=this.yd=this.td=this.Rb=0}function IA(){this.Kd=this.Ld=this.Ud=this.Td=this.i=this.c=0}function HA(){this.Fb=this.Bb=this.Cb=0,this.Zb=Ln(4),this.Lb=Ln(4)}function LA(){var A;this.Yb=(function A(t,e,r){for(var n=r[e],i=0;i<n&&(t.push(r.length>e+1?[]:0),!(r.length<e+1));i++)A(t[i],e+1,r)}(A=[],0,[3,11]),A)}function SA(){this.jb=Ln(3),this.Wc=Nn([4,8],LA),this.Xc=Nn([4,17],LA)}function NA(){this.Pc=this.wb=this.Tb=this.zd=0,this.vd=new Ln(4),this.od=new Ln(4)}function _A(){this.ld=this.La=this.dd=this.tc=0}function TA(){this.Na=this.la=0}function DA(){this.Sc=[0,0],this.Eb=[0,0],this.Qc=[0,0],this.ia=this.lc=0}function OA(){this.ad=Ln(384),this.Za=0,this.Ob=Ln(16),this.$b=this.Ad=this.ia=this.Gc=this.Hc=this.Dd=0}function PA(){this.uc=this.M=this.Nb=0,this.wa=Array(new _A),this.Y=0,this.ya=Array(new OA),this.aa=0,this.l=new KA}function MA(){this.y=Ln(16),this.f=Ln(8),this.ea=Ln(8)}function kA(){this.cb=this.a=0,this.sc="",this.m=new I,this.Od=new xA,this.Kc=new IA,this.ed=new NA,this.Qa=new HA,this.Ic=this.$c=this.Aa=0,this.D=new PA,this.Xb=this.Va=this.Hb=this.zb=this.yb=this.Ub=this.za=0,this.Jc=Sn(8,I),this.ia=0,this.pb=Sn(4,DA),this.Pa=new SA,this.Bd=this.kc=0,this.Ac=[],this.Bc=0,this.zc=[0,0,0,0],this.Gd=Array(new MA),this.Hd=0,this.rb=Array(new TA),this.sb=0,this.wa=Array(new _A),this.Y=0,this.oc=[],this.pc=0,this.sa=[],this.ta=0,this.qa=[],this.ra=0,this.Ha=[],this.B=this.R=this.Ia=0,this.Ec=[],this.M=this.ja=this.Vb=this.Fc=0,this.ya=Array(new OA),this.L=this.aa=0,this.gd=Nn([4,2],_A),this.ga=null,this.Fa=[],this.Cc=this.qc=this.P=0,this.Gb=[],this.Uc=0,this.mb=[],this.nb=0,this.rc=[],this.Ga=this.Vc=0}function w(A,t){return A<0?0:t<A?t:A}function KA(){this.T=this.U=this.ka=this.height=this.width=0,this.y=[],this.f=[],this.ea=[],this.Rc=this.fa=this.W=this.N=this.O=0,this.ma="void",this.put="VP8IoPutHook",this.ac="VP8IoSetupHook",this.bc="VP8IoTeardownHook",this.ha=this.Kb=0,this.data=[],this.hb=this.ib=this.da=this.o=this.j=this.va=this.v=this.Da=this.ob=this.w=0,this.F=[],this.J=0}function RA(){var A=new kA;return null!=A&&(A.a=0,A.sc="OK",A.cb=0,A.Xb=0,Zr=Zr||it),A}function k(A,t,e){return 0==A.a&&(A.a=t,A.sc=e,A.cb=0),0}function rt(A,t,e){return 3<=e&&157==A[t+0]&&1==A[t+1]&&42==A[t+2]}function nt(A,t){if(null!=A){if(A.a=0,A.sc="OK",null==t)return k(A,2,"null VP8Io passed to VP8GetHeaders()"),0;var e=t.data,r=t.w;if((l=t.ha)<4)return k(A,7,"Truncated header."),0;var n=e[r+0]|e[r+1]<<8|e[r+2]<<16,i=A.Od;if(i.Rb=!(1&n),i.td=n>>1&7,i.yd=n>>4&1,i.ub=n>>5,3<i.td)return k(A,3,"Incorrect keyframe parameters."),0;if(!i.yd)return k(A,4,"Frame not displayable."),0;r+=3,l-=3;var s=A.Kc;if(i.Rb){if(l<7)return k(A,7,"cannot parse picture header"),0;if(!rt(e,r,l))return k(A,3,"Bad code word"),0;s.c=16383&(e[r+4]<<8|e[r+3]),s.Td=e[r+4]>>6,s.i=16383&(e[r+6]<<8|e[r+5]),s.Ud=e[r+6]>>6,r+=7,l-=7,A.za=s.c+15>>4,A.Ub=s.i+15>>4,t.width=s.c,t.height=s.i,t.Da=0,t.j=0,t.v=0,t.va=t.width,t.o=t.height,t.da=0,t.ib=t.width,t.hb=t.height,t.U=t.width,t.T=t.height,Hn((n=A.Pa).jb,0,255,n.jb.length),En(null!=(n=A.Qa)),n.Cb=0,n.Bb=0,n.Fb=1,Hn(n.Zb,0,0,n.Zb.length),Hn(n.Lb,0,0,n.Lb)}if(l<i.ub)return k(A,7,"bad partition length"),0;E(n=A.m,e,r,i.ub),r+=i.ub,l-=i.ub,i.Rb&&(s.Ld=p(n),s.Kd=p(n));var o,s=A.Qa,a=A.Pa;if(En(null!=n),En(null!=s),s.Cb=p(n),s.Cb){if(s.Bb=p(n),p(n)){for(s.Fb=p(n),o=0;o<4;++o)s.Zb[o]=p(n)?f(n,7):0;for(o=0;o<4;++o)s.Lb[o]=p(n)?f(n,6):0}if(s.Bb)for(o=0;o<3;++o)a.jb[o]=p(n)?g(n,8):255}else s.Bb=0;if(n.Ka)return k(A,3,"cannot parse segment header"),0;if((s=A.ed).zd=p(n),s.Tb=g(n,6),s.wb=g(n,3),s.Pc=p(n),s.Pc&&p(n)){for(a=0;a<4;++a)p(n)&&(s.vd[a]=f(n,6));for(a=0;a<4;++a)p(n)&&(s.od[a]=f(n,6))}if(A.L=0==s.Tb?0:s.zd?1:2,n.Ka)return k(A,3,"cannot parse filter header"),0;var c=l,l=o=r,r=o+c;if(s=c,A.Xb=(1<<g(A.m,2))-1,c<3*(a=A.Xb))e=7;else{for(o+=3*a,s-=3*a,c=0;c<a;++c){var u=e[l+0]|e[l+1]<<8|e[l+2]<<16;s<u&&(u=s),E(A.Jc[+c],e,o,u),o+=u,s-=u,l+=3}E(A.Jc[+a],e,o,s),e=o<r?0:5}if(0!=e)return k(A,e,"cannot parse partitions"),0;for(e=g(o=A.m,7),l=p(o)?f(o,4):0,r=p(o)?f(o,4):0,s=p(o)?f(o,4):0,a=p(o)?f(o,4):0,o=p(o)?f(o,4):0,c=A.Qa,u=0;u<4;++u){if(c.Cb){var h=c.Zb[u];c.Fb||(h+=e)}else{if(0<u){A.pb[u]=A.pb[0];continue}h=e}var B=A.pb[u];B.Sc[0]=qr[w(h+l,127)],B.Sc[1]=zr[w(h+0,127)],B.Eb[0]=2*qr[w(h+r,127)],B.Eb[1]=101581*zr[w(h+s,127)]>>16,B.Eb[1]<8&&(B.Eb[1]=8),B.Qc[0]=qr[w(h+a,117)],B.Qc[1]=zr[w(h+o,127)],B.lc=h+o}if(!i.Rb)return k(A,4,"Not a key frame."),0;for(p(n),i=A.Pa,e=0;e<4;++e){for(l=0;l<8;++l)for(r=0;r<3;++r)for(s=0;s<11;++s)a=O(n,nn[e][l][r][s])?g(n,8):en[e][l][r][s],i.Wc[e][l].Yb[r][s]=a;for(l=0;l<17;++l)i.Xc[e][l]=i.Wc[e][sn[l]]}return A.kc=p(n),A.kc&&(A.Bd=g(n,8)),A.cb=1}}function it(A,t,e,r,n,i,s){var o=t[n].Yb[e];for(e=0;n<16;++n){if(!O(A,o[e+0]))return n;for(;!O(A,o[e+1]);)if(o=t[++n].Yb[0],e=0,16==n)return 16;var a=t[n+1].Yb;if(O(A,o[e+2])){var c=A,l=0;if(O(c,(h=o)[(u=e)+3]))if(O(c,h[u+6])){for(o=0,u=2*(l=O(c,h[u+8]))+(h=O(c,h[u+9+l])),l=0,h=$r[u];h[o];++o)l+=l+O(c,h[o]);l+=3+(8<<u)}else O(c,h[u+7])?(l=7+2*O(c,165),l+=O(c,145)):l=5+O(c,159);else l=O(c,h[u+4])?3+O(c,h[u+5]):2;o=a[2]}else o=a[l=1];a=s+An[n],(c=A).b<0&&L(c);var u,h=c.b,B=(u=c.Ca>>1)-(c.I>>h)>>31;--c.b,c.Ca+=B,c.Ca|=1,c.I-=(u+1&B)<<h,i[a]=((l^B)-B)*r[+(0<n)]}return 16}function st(A){var t=A.rb[A.sb-1];t.la=0,Hn(A.zc,t.Na=0,0,A.zc.length),A.ja=0}function u(A,t,e,r,n){n=A[t+e+32*r]+(n>>3),A[t+e+32*r]=-256&n?n<0?0:255:n}function ot(A,t,e,r,n,i){u(A,t,0,e,r+n),u(A,t,1,e,r+i),u(A,t,2,e,r-i),u(A,t,3,e,r-n)}function h(A){return(20091*A>>16)+A}function at(A,t,e,r){for(var n=0,i=Ln(16),s=0;s<4;++s){var o=A[t+0]+A[t+8],a=A[t+0]-A[t+8],c=(35468*A[t+4]>>16)-h(A[t+12]),l=h(A[t+4])+(35468*A[t+12]>>16);i[n+0]=o+l,i[n+1]=a+c,i[n+2]=a-c,i[n+3]=o-l,n+=4,t++}for(s=n=0;s<4;++s)o=(A=i[n+0]+4)+i[n+8],a=A-i[n+8],c=(35468*i[n+4]>>16)-h(i[n+12]),u(e,r,0,0,o+(l=h(i[n+4])+(35468*i[n+12]>>16))),u(e,r,1,0,a+c),u(e,r,2,0,a-c),u(e,r,3,0,o-l),n++,r+=32}function ct(A,t,e,r){var n=A[t+0]+4,i=35468*A[t+4]>>16,s=h(A[t+4]),o=35468*A[t+1]>>16;ot(e,r,0,n+s,A=h(A[t+1]),o),ot(e,r,1,n+i,A,o),ot(e,r,2,n-i,A,o),ot(e,r,3,n-s,A,o)}function lt(A,t,e,r,n){at(A,t,e,r),n&&at(A,t+16,e,r+4)}function ut(A,t,e,r){nr(A,t+0,e,r,1),nr(A,t+32,e,r+128,1)}function ht(A,t,e,r){var n;for(A=A[t+0]+4,n=0;n<4;++n)for(t=0;t<4;++t)u(e,r,t,n,A)}function Bt(A,t,e,r){A[t+0]&&B(A,t+0,e,r),A[t+16]&&B(A,t+16,e,r+4),A[t+32]&&B(A,t+32,e,r+128),A[t+48]&&B(A,t+48,e,r+128+4)}function gt(A,t,e,r){for(var n=Ln(16),i=0;i<4;++i){var s=A[t+0+i]+A[t+12+i],o=A[t+4+i]+A[t+8+i],a=A[t+4+i]-A[t+8+i],c=A[t+0+i]-A[t+12+i];n[0+i]=s+o,n[8+i]=s-o,n[4+i]=c+a,n[12+i]=c-a}for(i=0;i<4;++i)s=(A=n[0+4*i]+3)+n[3+4*i],o=n[1+4*i]+n[2+4*i],a=n[1+4*i]-n[2+4*i],c=A-n[3+4*i],e[r+0]=s+o>>3,e[r+16]=c+a>>3,e[r+32]=s-o>>3,e[r+48]=c-a>>3,r+=64}function ft(A,t,e){for(var r=t-32,n=m,i=255-A[r-1],s=0;s<e;++s){for(var o=n,a=i+A[t-1],c=0;c<e;++c)A[t+c]=o[a+A[r+c]];t+=32}}function dt(A,t){ft(A,t,4)}function pt(A,t){ft(A,t,8)}function wt(A,t){ft(A,t,16)}function mt(A,t){for(var e=0;e<16;++e)In(A,t+32*e,A,t-32,16)}function Ct(A,t){for(var e=16;0<e;--e)Hn(A,t,A[t-1],16),t+=32}function Qt(A,t,e){for(var r=0;r<16;++r)Hn(t,e+32*r,A,16)}function yt(A,t){for(var e=16,r=0;r<16;++r)e+=A[t-1+32*r]+A[t+r-32];Qt(e>>5,A,t)}function Ft(A,t){for(var e=8,r=0;r<16;++r)e+=A[t-1+32*r];Qt(e>>4,A,t)}function Ut(A,t){for(var e=8,r=0;r<16;++r)e+=A[t+r-32];Qt(e>>4,A,t)}function bt(A,t){Qt(128,A,t)}function l(A,t,e){return A+2*t+e+2>>2}function vt(A,t){for(var e=t-32,e=new Uint8Array([l(A[e-1],A[e],A[1+e]),l(A[e],A[1+e],A[2+e]),l(A[1+e],A[2+e],A[3+e]),l(A[2+e],A[3+e],A[4+e])]),r=0;r<4;++r)In(A,t+32*r,e,0,e.length)}function Et(A,t){var e=A[t-1],r=A[t-1+32],n=A[t-1+64],i=A[t-1+96];s(A,t+0,16843009*l(A[t-1-32],e,r)),s(A,t+32,16843009*l(e,r,n)),s(A,t+64,16843009*l(r,n,i)),s(A,t+96,16843009*l(n,i,i))}function xt(A,t){for(var e=4,r=0;r<4;++r)e+=A[t+r-32]+A[t-1+32*r];for(e>>=3,r=0;r<4;++r)Hn(A,t+32*r,e,4)}function It(A,t){var e=A[t-1],r=A[t-1+32],n=A[t-1+64],i=A[t-1-32],s=A[t+0-32],o=A[t+1-32],a=A[t+2-32],c=A[t+3-32];A[t+0+96]=l(r,n,A[t-1+96]),A[t+1+96]=A[t+0+64]=l(e,r,n),A[t+2+96]=A[t+1+64]=A[t+0+32]=l(i,e,r),A[t+3+96]=A[t+2+64]=A[t+1+32]=A[t+0+0]=l(s,i,e),A[t+3+64]=A[t+2+32]=A[t+1+0]=l(o,s,i),A[t+3+32]=A[t+2+0]=l(a,o,s),A[t+3+0]=l(c,a,o)}function Ht(A,t){var e=A[t+1-32],r=A[t+2-32],n=A[t+3-32],i=A[t+4-32],s=A[t+5-32],o=A[t+6-32],a=A[t+7-32];A[t+0+0]=l(A[t+0-32],e,r),A[t+1+0]=A[t+0+32]=l(e,r,n),A[t+2+0]=A[t+1+32]=A[t+0+64]=l(r,n,i),A[t+3+0]=A[t+2+32]=A[t+1+64]=A[t+0+96]=l(n,i,s),A[t+3+32]=A[t+2+64]=A[t+1+96]=l(i,s,o),A[t+3+64]=A[t+2+96]=l(s,o,a),A[t+3+96]=l(o,a,a)}function Lt(A,t){var e=A[t-1],r=A[t-1+32],n=A[t-1+64],i=A[t-1-32],s=A[t+0-32],o=A[t+1-32],a=A[t+2-32],c=A[t+3-32];A[t+0+0]=A[t+1+64]=i+s+1>>1,A[t+1+0]=A[t+2+64]=s+o+1>>1,A[t+2+0]=A[t+3+64]=o+a+1>>1,A[t+3+0]=a+c+1>>1,A[t+0+96]=l(n,r,e),A[t+0+64]=l(r,e,i),A[t+0+32]=A[t+1+96]=l(e,i,s),A[t+1+32]=A[t+2+96]=l(i,s,o),A[t+2+32]=A[t+3+96]=l(s,o,a),A[t+3+32]=l(o,a,c)}function St(A,t){var e=A[t+0-32],r=A[t+1-32],n=A[t+2-32],i=A[t+3-32],s=A[t+4-32],o=A[t+5-32],a=A[t+6-32],c=A[t+7-32];A[t+0+0]=e+r+1>>1,A[t+1+0]=A[t+0+64]=r+n+1>>1,A[t+2+0]=A[t+1+64]=n+i+1>>1,A[t+3+0]=A[t+2+64]=i+s+1>>1,A[t+0+32]=l(e,r,n),A[t+1+32]=A[t+0+96]=l(r,n,i),A[t+2+32]=A[t+1+96]=l(n,i,s),A[t+3+32]=A[t+2+96]=l(i,s,o),A[t+3+64]=l(s,o,a),A[t+3+96]=l(o,a,c)}function Nt(A,t){var e=A[t-1],r=A[t-1+32],n=A[t-1+64],i=A[t-1+96];A[t+0+0]=e+r+1>>1,A[t+2+0]=A[t+0+32]=r+n+1>>1,A[t+2+32]=A[t+0+64]=n+i+1>>1,A[t+1+0]=l(e,r,n),A[t+3+0]=A[t+1+32]=l(r,n,i),A[t+3+32]=A[t+1+64]=l(n,i,i),A[t+3+64]=A[t+2+64]=A[t+0+96]=A[t+1+96]=A[t+2+96]=A[t+3+96]=i}function _t(A,t){var e=A[t-1],r=A[t-1+32],n=A[t-1+64],i=A[t-1+96],s=A[t-1-32],o=A[t+0-32],a=A[t+1-32],c=A[t+2-32];A[t+0+0]=A[t+2+32]=e+s+1>>1,A[t+0+32]=A[t+2+64]=r+e+1>>1,A[t+0+64]=A[t+2+96]=n+r+1>>1,A[t+0+96]=i+n+1>>1,A[t+3+0]=l(o,a,c),A[t+2+0]=l(s,o,a),A[t+1+0]=A[t+3+32]=l(e,s,o),A[t+1+32]=A[t+3+64]=l(r,e,s),A[t+1+64]=A[t+3+96]=l(n,r,e),A[t+1+96]=l(i,n,r)}function Tt(A,t){for(var e=0;e<8;++e)In(A,t+32*e,A,t-32,8)}function Dt(A,t){for(var e=0;e<8;++e)Hn(A,t,A[t-1],8),t+=32}function Ot(A,t,e){for(var r=0;r<8;++r)Hn(t,e+32*r,A,8)}function Pt(A,t){for(var e=8,r=0;r<8;++r)e+=A[t+r-32]+A[t-1+32*r];Ot(e>>4,A,t)}function Mt(A,t){for(var e=4,r=0;r<8;++r)e+=A[t+r-32];Ot(e>>3,A,t)}function kt(A,t){for(var e=4,r=0;r<8;++r)e+=A[t-1+32*r];Ot(e>>3,A,t)}function Kt(A,t){Ot(128,A,t)}function Rt(A,t,e){var r=A[t-e],n=A[t+0],i=3*(n-r)+Ir[1020+A[t-2*e]-A[t+e]],s=Hr[112+(i+4>>3)];A[t-e]=m[255+r+Hr[112+(i+3>>3)]],A[t+0]=m[255+n-s]}function Vt(A,t,e,r){var n=A[t+0];return C[255+A[t-2*e]-A[t-e]]>r||C[255+A[t+e]-n]>r}function Gt(A,t,e,r){return 4*C[255+A[t-e]-A[t+0]]+C[255+A[t-2*e]-A[t+e]]<=r}function jt(A,t,e,r,n){var i=A[t-3*e],s=A[t-2*e],o=A[t-e],a=A[t+0],c=A[t+e],l=A[t+2*e];return!(4*C[255+o-a]+C[255+s-c]>r)&&C[255+A[t-4*e]-i]<=n&&C[255+i-s]<=n&&C[255+s-o]<=n&&C[255+A[t+3*e]-l]<=n&&C[255+l-c]<=n&&C[255+c-a]<=n}function Xt(A,t,e,r){var n=2*r+1;for(r=0;r<16;++r)Gt(A,t+r,e,n)&&Rt(A,t+r,e)}function Wt(A,t,e,r){var n=2*r+1;for(r=0;r<16;++r)Gt(A,t+r*e,1,n)&&Rt(A,t+r*e,1)}function Jt(A,t,e,r){for(var n=3;0<n;--n)Xt(A,t+=4*e,e,r)}function Yt(A,t,e,r){for(var n=3;0<n;--n)Wt(A,t+=4,e,r)}function a(A,t,e,r,n,i,s,o){for(i=2*i+1;0<n--;){var a,c,l,u,h,B,g,f,d,p,w;jt(A,t,e,i,s)&&(Vt(A,t,e,o)?Rt(A,t,e):(u=(a=A)[(c=t)-2*(l=e)],f=a[c+2*l],d=27*(w=Ir[1020+3*((B=a[c+0])-(h=a[c-l]))+Ir[1020+u-(g=a[c+l])]])+63>>7,p=18*w+63>>7,a[c-3*l]=m[255+a[c-3*l]+(w=9*w+63>>7)],a[c-2*l]=m[255+u+p],a[c-l]=m[255+h+d],a[c+0]=m[255+B-d],a[c+l]=m[255+g-p],a[c+2*l]=m[255+f-w])),t+=r}}function c(A,t,e,r,n,i,s,o){for(i=2*i+1;0<n--;){var a,c,l,u,h,B,g,f,d;jt(A,t,e,i,s)&&(Vt(A,t,e,o)?Rt(A,t,e):(u=(a=A)[(c=t)-(l=e)],B=a[c+l],g=Hr[112+(4+(f=3*((h=a[c+0])-u))>>3)],f=Hr[112+(3+f>>3)],a[c-2*l]=m[255+a[c-2*l]+(d=g+1>>1)],a[c-l]=m[255+u+f],a[c+0]=m[255+h-g],a[c+l]=m[255+B-d])),t+=r}}function qt(A,t,e,r,n,i){a(A,t,e,1,16,r,n,i)}function zt(A,t,e,r,n,i){a(A,t,1,e,16,r,n,i)}function Zt(A,t,e,r,n,i){for(var s=3;0<s;--s)c(A,t+=4*e,e,1,16,r,n,i)}function $t(A,t,e,r,n,i){for(var s=3;0<s;--s)c(A,t+=4,1,e,16,r,n,i)}function Ae(A,t,e,r,n,i,s,o){a(A,t,n,1,8,i,s,o),a(e,r,n,1,8,i,s,o)}function te(A,t,e,r,n,i,s,o){a(A,t,1,n,8,i,s,o),a(e,r,1,n,8,i,s,o)}function ee(A,t,e,r,n,i,s,o){c(A,t+4*n,n,1,8,i,s,o),c(e,r+4*n,n,1,8,i,s,o)}function re(A,t,e,r,n,i,s,o){c(A,t+4,1,n,8,i,s,o),c(e,r+4,1,n,8,i,s,o)}function ne(){this.ba=new aA,this.ec=[],this.cc=[],this.Mc=[],this.Dc=this.Nc=this.dc=this.fc=0,this.Oa=new lA,this.memory=0,this.Ib="OutputFunc",this.Jb="OutputAlphaFunc",this.Nd="OutputRowFunc"}function ie(){this.data=[],this.offset=this.kd=this.ha=this.w=0,this.na=[],this.xa=this.gb=this.Ja=this.Sa=this.P=0}function se(){this.nc=this.Ea=this.b=this.hc=0,this.K=[],this.w=0}function oe(){this.ua=0,this.Wa=new T,this.vb=new T,this.md=this.xc=this.wc=0,this.vc=[],this.Wb=0,this.Ya=new zA,this.yc=new VA}function ae(){this.xb=this.a=0,this.l=new KA,this.ca=new aA,this.V=[],this.Ba=0,this.Ta=[],this.Ua=0,this.m=new H,this.Pb=0,this.wd=new H,this.Ma=this.$=this.C=this.i=this.c=this.xd=0,this.s=new oe,this.ab=0,this.gc=Sn(4,se),this.Oc=0}function ce(){this.Lc=this.Z=this.$a=this.i=this.c=0,this.l=new KA,this.ic=0,this.ca=[],this.tb=0,this.qd=null,this.rd=0}function le(A,t,e,r,n,i,s){for(A=null==A?0:A[t+0],t=0;t<s;++t)n[i+t]=A+e[r+t]&255,A=n[i+t]}function ue(A,t,e,r,n,i,s){var o;if(null==A)le(null,null,e,r,n,i,s);else for(o=0;o<s;++o)n[i+o]=A[t+o]+e[r+o]&255}function he(A,t,e,r,n,i,s){if(null==A)le(null,null,e,r,n,i,s);else for(var o=A[t+0],a=o,c=o,l=0;l<s;++l)a=c+(o=A[t+l])-a,c=e[r+l]+(-256&a?a<0?0:255:a)&255,a=o,n[i+l]=c}function Be(A,t,e,r,n,i){for(;0<n--;){for(var s=A,o=t+(e?1:0),a=A,c=t+(e?0:3),l=0;l<r;++l){var u=a[c+4*l];255!=u&&(u*=32897,s[o+4*l+0]=s[o+4*l+0]*u>>23,s[o+4*l+1]=s[o+4*l+1]*u>>23,s[o+4*l+2]=s[o+4*l+2]*u>>23)}t+=i}}function ge(A,t,e,r,n){for(;0<r--;){for(var i=0;i<e;++i){var s=A[t+2*i+0],o=15&(c=A[t+2*i+1]),a=4369*o,c=(240&c|c>>4)*a>>16;A[t+2*i+0]=(240&s|s>>4)*a>>16&240|(15&s|s<<4)*a>>16>>4&15,A[t+2*i+1]=240&c|o}t+=n}}function fe(A,t,e,r,n,i,s,o){for(var a,c=255,l=0;l<n;++l){for(a=0;a<r;++a){var u=A[t+a];c&=i[s+4*a]=u}t+=e,s+=o}return 255!=c}function de(A,t,e,r,n){for(var i=0;i<n;++i)e[r+i]=A[t+i]>>8}function pe(){Cr=Be,Qr=ge,yr=fe,Fr=de}function t(A,v,E){d[A]=function(A,t,e,r,n,i,s,o,a,c,l,u,h,B,g,f,d){var p,w=d-1>>1,m=n[i+0]|s[o+0]<<16,C=a[c+0]|l[u+0]<<16,Q=(En(null!=A),3*m+C+131074>>2);for(v(A[t+0],255&Q,Q>>16,h,B),null!=e&&v(e[r+0],255&(Q=3*C+m+131074>>2),Q>>16,g,f),p=1;p<=w;++p){var y=n[i+p]|s[o+p]<<16,F=a[c+p]|l[u+p]<<16,U=m+y+C+F+524296,b=U+2*(y+C)>>3,Q=b+m>>1,m=(U=U+2*(m+F)>>3)+y>>1;v(A[t+2*p-1],255&Q,Q>>16,h,B+(2*p-1)*E),v(A[+(t+2*p)],255&m,m>>16,h,B+2*p*E),null!=e&&(m=b+F>>1,v(e[r+2*p-1],255&(Q=U+C>>1),Q>>16,g,f+(2*p-1)*E),v(e[r+2*p+0],255&m,m>>16,g,f+(2*p+0)*E)),m=y,C=F}1&d||(v(A[t+d-1],255&(Q=3*m+C+131074>>2),Q>>16,h,B+(d-1)*E),null!=e&&v(e[r+d-1],255&(Q=3*C+m+131074>>2),Q>>16,g,f+(d-1)*E))}}function we(){U[Lr]=on,U[Sr]=cn,U[Nr]=an,U[_r]=ln,U[Tr]=un,U[Dr]=hn,U[Or]=Bn,U[Pr]=cn,U[Mr]=ln,U[kr]=un,U[Kr]=hn}function me(A){return A&~fn?A<0?0:255:A>>gn}function Ce(A,t){return me((19077*A>>8)+(26149*t>>8)-14234)}function Qe(A,t,e){return me((19077*A>>8)-(6419*t>>8)-(13320*e>>8)+8708)}function ye(A,t){return me((19077*A>>8)+(33050*t>>8)-17685)}function Fe(A,t,e,r,n){r[n+0]=Ce(A,e),r[n+1]=Qe(A,t,e),r[n+2]=ye(A,t)}function Ue(A,t,e,r,n){r[n+0]=ye(A,t),r[n+1]=Qe(A,t,e),r[n+2]=Ce(A,e)}function be(A,t,e,r,n){var i=Qe(A,t,e);t=i<<3&224|ye(A,t)>>3,r[n+0]=248&Ce(A,e)|i>>5,r[n+1]=t}function ve(A,t,e,r,n){var i=240&ye(A,t)|15;r[n+0]=240&Ce(A,e)|Qe(A,t,e)>>4,r[n+1]=i}function Ee(A,t,e,r,n){r[n+0]=255,Fe(A,t,e,r,n+1)}function xe(A,t,e,r,n){Ue(A,t,e,r,n),r[n+3]=255}function Ie(A,t,e,r,n){Fe(A,t,e,r,n),r[n+3]=255}function e(A,l,u){d[A]=function(A,t,e,r,n,i,s,o,a){for(var c=o+(-2&a)*u;o!=c;)l(A[t+0],e[r+0],n[i+0],s,o),l(A[t+1],e[r+0],n[i+0],s,o+u),t+=2,++r,++i,o+=2*u;1&a&&l(A[t+0],e[r+0],n[i+0],s,o)}}function He(A,t,e){return 0==e?0==A?0==t?6:5:0==t?4:0:e}function Le(A,t,e,r,n){switch(A>>>30){case 3:nr(t,e,r,n,0);break;case 2:ir(t,e,r,n);break;case 1:B(t,e,r,n)}}function Se(A,t){for(var e,r=t.M,n=t.Nb,i=A.oc,s=A.pc+40,o=A.oc,a=A.pc+584,c=A.oc,l=A.pc+600,u=0;u<16;++u)i[s+32*u-1]=129;for(u=0;u<8;++u)o[a+32*u-1]=129,c[l+32*u-1]=129;for(0<r?i[s-1-32]=o[a-1-32]=c[l-1-32]=129:(Hn(i,s-32-1,127,21),Hn(o,a-32-1,127,9),Hn(c,l-32-1,127,9)),e=0;e<A.za;++e){var h=t.ya[t.aa+e];if(0<e){for(u=-1;u<16;++u)In(i,s+32*u-4,i,s+32*u+12,4);for(u=-1;u<8;++u)In(o,a+32*u-4,o,a+32*u+4,4),In(c,l+32*u-4,c,l+32*u+4,4)}var B=A.Gd,g=A.Hd+e,f=h.ad,d=h.Hc;if(0<r&&(In(i,s-32,B[g].y,0,16),In(o,a-32,B[g].f,0,8),In(c,l-32,B[g].ea,0,8)),h.Za){var p=i,w=s-32+16;for(0<r&&(e>=A.za-1?Hn(p,w,B[g].y[15],4):In(p,w,B[g+1].y,0,4)),u=0;u<4;u++)p[w+128+u]=p[w+256+u]=p[w+384+u]=p[w+0+u];for(u=0;u<16;++u,d<<=2)y[h.Ob[u]](p=i,w=s+Fn[u]),Le(d,f,16*+u,p,w)}else if(p=He(e,r,h.Ob[0]),Q[p](i,s),0!=d)for(u=0;u<16;++u,d<<=2)Le(d,f,16*+u,i,s+Fn[u]);for(u=h.Gc,p=He(e,r,h.Dd),F[p](o,a),F[p](c,l),d=f,p=o,w=a,255&(h=0|u)&&(170&h?sr:or)(d,256,p,w),h=c,d=l,255&(u>>=8)&&(170&u?sr:or)(f,320,h,d),r<A.Ub-1&&(In(B[g].y,0,i,s+480,16),In(B[g].f,0,o,a+224,8),In(B[g].ea,0,c,l+224,8)),B=A.sa,g=A.ta+16*e+16*n*A.R,f=A.qa,h=A.ra+8*e+(u=8*n*A.B),d=A.Ha,p=A.Ia+8*e+u,u=0;u<16;++u)In(B,g+u*A.R,i,s+32*u,16);for(u=0;u<8;++u)In(f,h+u*A.B,o,a+32*u,8),In(d,p+u*A.B,c,l+32*u,8)}}function Ne(A,t,e,r,n,i,s,o,a){var c=[0],l=[0],u=0,h=null!=a?a.kd:0,B=null!=a?a:new ie;if(null==A||e<12)return 7;B.data=A,t=[B.w=t],e=[B.ha=e],B.gb=[B.gb];A:{var g=t,f=e,d=B.gb;if(En(null!=A),En(null!=f),En(null!=d),12<=f[d[0]=0]&&!xn(A,g[0],"RIFF")){if(xn(A,g[0]+8,"WEBP")){d=3;break A}var p=x(A,g[0]+4);if(p<12||4294967286<p){d=3;break A}if(h&&p>f[0]-8){d=7;break A}d[0]=p,g[0]+=12,f[0]-=12}d=0}if(0!=d)return d;for(p=0<B.gb[0],e=e[0];;){A:{var w=A,f=t,m=c,C=l,Q=g=[0],y=u=[0];if((d=e)[0]<8)d=7;else{if(!xn(w,f[0],"VP8X")){if(10!=x(w,f[0]+4)){d=3;break A}if(d[0]<18){d=7;break A}var F=x(w,f[0]+8),U=1+N(w,f[0]+12);if(2147483648<=U*(w=1+N(w,f[0]+15))){d=3;break A}null!=Q&&(Q[0]=F),null!=m&&(m[0]=U),null!=C&&(C[0]=w),f[0]+=18,d[0]-=18,y[0]=1}d=0}}if(u=u[0],g=g[0],0!=d)return d;if(f=!!(2&g),!p&&u)return 3;if(null!=i&&(i[0]=!!(16&g)),null!=s&&(s[0]=f),null!=o&&(o[0]=0),s=c[0],g=l[0],u&&f&&null==a){d=0;break}if(e<4){d=7;break}if(p&&u||!p&&!u&&!xn(A,t[0],"ALPH")){e=[e],B.na=[B.na],B.P=[B.P],B.Sa=[B.Sa];A:{F=A,d=t;var p=e,y=B.gb,m=B.na,C=B.P,Q=B.Sa,U=22,w=(En(null!=F),En(null!=p),d[0]),b=p[0];for(En(null!=m),En(null!=Q),m[0]=null,C[0]=null,Q[0]=0;;){if(d[0]=w,(p[0]=b)<8){d=7;break A}var v=x(F,w+4);if(4294967286<v){d=3;break A}var E=8+v+1&-2;if(U+=E,0<y&&y<U){d=3;break A}if(!xn(F,w,"VP8 ")||!xn(F,w,"VP8L")){d=0;break A}if(b[0]<E){d=7;break A}xn(F,w,"ALPH")||(m[0]=F,C[0]=w+8,Q[0]=v),w+=E,b-=E}}if(e=e[0],B.na=B.na[0],B.P=B.P[0],B.Sa=B.Sa[0],0!=d)break}e=[e],B.Ja=[B.Ja],B.xa=[B.xa];A:if(y=A,d=t,p=e,m=B.gb[0],C=B.Ja,Q=B.xa,w=!xn(y,F=d[0],"VP8 "),U=!xn(y,F,"VP8L"),En(null!=y),En(null!=p),En(null!=C),En(null!=Q),p[0]<8)d=7;else{if(w||U){if(y=x(y,F+4),12<=m&&m-12<y){d=3;break A}if(h&&y>p[0]-8){d=7;break A}C[0]=y,d[0]+=8,p[0]-=8,Q[0]=U}else Q[0]=5<=p[0]&&47==y[F+0]&&!(y[F+4]>>5),C[0]=p[0];d=0}if(e=e[0],B.Ja=B.Ja[0],B.xa=B.xa[0],t=t[0],0!=d)break;if(4294967286<B.Ja)return 3;if(null==o||f||(o[0]=B.xa?2:1),s=[s],g=[g],B.xa){if(e<5){d=7;break}o=s,h=g,f=i,A=!(null==A||e<5)&&5<=e&&47==A[t+0]&&!(A[t+4]>>5)&&(p=[0],y=[0],m=[0],R(C=new H,A,t,e),pA(C,p,y,m))?(null!=o&&(o[0]=p[0]),null!=h&&(h[0]=y[0]),null!=f&&(f[0]=m[0]),1):0}else{if(e<10){d=7;break}o=g,A=null==A||e<10||!rt(A,t+3,e-3)||(h=A[t+0]|A[t+1]<<8|A[t+2]<<16,f=16383&(A[t+7]<<8|A[t+6]),A=16383&(A[t+9]<<8|A[t+8]),1&h)||3<(h>>1&7)||!(h>>4&1)||h>>5>=B.Ja||!f||!A?0:(s&&(s[0]=f),o&&(o[0]=A),1)}if(!A)return 3;if(s=s[0],g=g[0],u&&(c[0]!=s||l[0]!=g))return 3;null!=a&&(a[0]=B,a.offset=t-a.w,En(t-a.w<4294967286),En(a.offset==a.ha-e));break}return 0==d||7==d&&u&&null==a?(null!=i&&(i[0]|=null!=B.na&&0<B.na.length),null!=r&&(r[0]=s),null!=n&&(n[0]=g),0):d}function _e(A,t,e){var r=t.width,n=t.height,i=0,s=0,o=r,a=n;if(t.Da=null!=A&&0<A.Da,!(t.Da&&(o=A.cd,a=A.bd,i=A.v,s=A.j,e<11||(i&=-2,s&=-2),i<0||s<0||o<=0||a<=0||r<i+o||n<s+a))){if(t.v=i,t.j=s,t.va=i+o,t.o=s+a,t.U=o,t.T=a,t.da=null!=A&&0<A.da,t.da){if(!D(o,a,e=[A.ib],i=[A.hb]))return;t.ib=e[0],t.hb=i[0]}return t.ob=null!=A&&A.ob,t.Kb=null==A||!A.Sd,t.da&&(t.ob=t.ib<3*r/4&&t.hb<3*n/4,t.Kb=0),1}}function Te(A){var t;return null==A?2:(A.S<11?((t=A.f.RGBA).fb+=(A.height-1)*t.A,t.A=-t.A):((t=A.f.kb).O+=((A=A.height)-1)*t.fa,t.fa=-t.fa,t.N+=(A-1>>1)*t.Ab,t.Ab=-t.Ab,t.W+=(A-1>>1)*t.Db,t.Db=-t.Db,null!=t.F&&(t.J+=(A-1)*t.lb,t.lb=-t.lb)),0)}function De(A,t,e,r){if(null==r||A<=0||t<=0)return 2;if(null!=e){if(e.Da){var n=e.cd,i=e.bd,s=-2&e.v,o=-2&e.j;if(s<0||o<0||n<=0||i<=0||A<s+n||t<o+i)return 2;A=n,t=i}if(e.da){if(!D(A,t,n=[e.ib],i=[e.hb]))return 2;A=n[0],t=i[0]}}r.width=A,r.height=t;A:{var a,c,l=r.width,u=r.height;if(A=r.S,l<=0||u<=0||!(Lr<=A&&A<13))A=2;else{if(r.Rd<=0&&null==r.sd){var s=i=n=t=0,h=(o=l*vn[A])*u;if(A<11||(i=(u+1)/2*(t=(l+1)/2),12==A&&(s=(n=l)*u)),null==(u=Ln(h+2*i+s))){A=1;break A}r.sd=u,A<11?((l=r.f.RGBA).eb=u,l.fb=0,l.A=o,l.size=h):((l=r.f.kb).y=u,l.O=0,l.fa=o,l.Fd=h,l.f=u,l.N=0+h,l.Ab=t,l.Cd=i,l.ea=u,l.W=0+h+i,l.Db=t,l.Ed=i,12==A&&(l.F=u,l.J=0+h+2*i),l.Tc=s,l.lb=n)}t=1,i=r.width,s=r.height,Lr<=(n=r.S)&&n<13?n<11?(A=r.f.RGBA,t=(t=(t&=(o=Math.abs(A.A))*(s-1)+i<=A.size)&o>=i*vn[n])&null!=A.eb):(A=r.f.kb,o=(i+1)/2,h=(s+1)/2,l=Math.abs(A.fa),u=Math.abs(A.Ab),a=Math.abs(A.Db),c=Math.abs(A.lb),t=(t=(t=(t&=l*(s-1)+i<=A.Fd)&u*(h-1)+o<=A.Cd)&a*(h-1)+o<=A.Ed)&i<=l&o<=u&o<=a,t=(t=(t&=null!=A.y)&null!=A.f)&null!=A.ea,12==n&&(t=(t=t&i<=c&c*(s-1)+i<=A.Tc)&null!=A.F)):t=0,A=t?0:2}}return A=0==A&&null!=e&&e.fd?Te(r):A}var Oe=64,Pe=[0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535,131071,262143,524287,1048575,2097151,4194303,8388607,16777215],Me=24,ke=32,Ke=8,Re=[0,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7],Ve=(A("Predictor0","PredictorAdd0"),d.Predictor0=function(){return 4278190080},d.Predictor1=function(A){return A},d.Predictor2=function(A,t,e){return t[e+0]},d.Predictor3=function(A,t,e){return t[e+1]},d.Predictor4=function(A,t,e){return t[e-1]},d.Predictor5=function(A,t,e){return n(n(A,t[e+1]),t[e+0])},d.Predictor6=function(A,t,e){return n(A,t[e-1])},d.Predictor7=function(A,t,e){return n(A,t[e+0])},d.Predictor8=function(A,t,e){return n(t[e-1],t[e+0])},d.Predictor9=function(A,t,e){return n(t[e+0],t[e+1])},d.Predictor10=function(A,t,e){return n(n(A,t[e-1]),n(t[e+0],t[e+1]))},d.Predictor11=function(A,t,e){var r=t[e+0];return X(r>>24&255,A>>24&255,(t=t[e-1])>>24&255)+X(r>>16&255,A>>16&255,t>>16&255)+X(r>>8&255,A>>8&255,t>>8&255)+X(255&r,255&A,255&t)<=0?r:A},d.Predictor12=function(A,t,e){var r=t[e+0];return(i((A>>24&255)+(r>>24&255)-((t=t[e-1])>>24&255))<<24|i((A>>16&255)+(r>>16&255)-(t>>16&255))<<16|i((A>>8&255)+(r>>8&255)-(t>>8&255))<<8|i((255&A)+(255&r)-(255&t)))>>>0},d.Predictor13=function(A,t,e){var r=t[e-1];return(j((A=n(A,t[e+0]))>>24&255,r>>24&255)<<24|j(A>>16&255,r>>16&255)<<16|j(A>>8&255,r>>8&255)<<8|j(255&A,255&r))>>>0},d.PredictorAdd0),Ge=(d.PredictorAdd1=W,A("Predictor2","PredictorAdd2"),A("Predictor3","PredictorAdd3"),A("Predictor4","PredictorAdd4"),A("Predictor5","PredictorAdd5"),A("Predictor6","PredictorAdd6"),A("Predictor7","PredictorAdd7"),A("Predictor8","PredictorAdd8"),A("Predictor9","PredictorAdd9"),A("Predictor10","PredictorAdd10"),A("Predictor11","PredictorAdd11"),A("Predictor12","PredictorAdd12"),A("Predictor13","PredictorAdd13"),d.PredictorAdd2);z("ColorIndexInverseTransform","MapARGB","32b",function(A){return A>>8&255},function(A){return A}),z("VP8LColorIndexInverseTransformAlpha","MapAlpha","8b",function(A){return A},function(A){return A>>8&255});var je,Xe=d.ColorIndexInverseTransform,We=d.MapARGB,Je=d.VP8LColorIndexInverseTransformAlpha,Ye=d.MapAlpha,qe=d.VP8LPredictorsAdd=[];qe.length=16,(d.VP8LPredictors=[]).length=16,(d.VP8LPredictorsAdd_C=[]).length=16,(d.VP8LPredictors_C=[]).length=16;var ze,Ze,$e,Ar,tr,er,rr,nr,ir,sr,B,or,ar,cr,lr,ur,hr,Br,gr,fr,dr,pr,wr,mr,Cr,Qr,yr,Fr,Ur=Ln(511),br=Ln(2041),vr=Ln(225),Er=Ln(767),xr=0,Ir=br,Hr=vr,m=Er,C=Ur,Lr=0,Sr=1,Nr=2,_r=3,Tr=4,Dr=5,Or=6,Pr=7,Mr=8,kr=9,Kr=10,Rr=[2,3,7],Vr=[3,3,11],Gr=[280,256,256,256,40],jr=[0,1,1,1,0],Xr=[17,18,0,1,2,3,4,5,16,6,7,8,9,10,11,12,13,14,15],Wr=[24,7,23,25,40,6,39,41,22,26,38,42,56,5,55,57,21,27,54,58,37,43,72,4,71,73,20,28,53,59,70,74,36,44,88,69,75,52,60,3,87,89,19,29,86,90,35,45,68,76,85,91,51,61,104,2,103,105,18,30,102,106,34,46,84,92,67,77,101,107,50,62,120,1,119,121,83,93,17,31,100,108,66,78,118,122,33,47,117,123,49,63,99,109,82,94,0,116,124,65,79,16,32,98,110,48,115,125,81,95,64,114,126,97,111,80,113,127,96,112],Jr=[2954,2956,2958,2962,2970,2986,3018,3082,3212,3468,3980,5004],Yr=8,qr=[4,5,6,7,8,9,10,10,11,12,13,14,15,16,17,17,18,19,20,20,21,21,22,22,23,23,24,25,25,26,27,28,29,30,31,32,33,34,35,36,37,37,38,39,40,41,42,43,44,45,46,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,76,77,78,79,80,81,82,83,84,85,86,87,88,89,91,93,95,96,98,100,101,102,104,106,108,110,112,114,116,118,122,124,126,128,130,132,134,136,138,140,143,145,148,151,154,157],zr=[4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,119,122,125,128,131,134,137,140,143,146,149,152,155,158,161,164,167,170,173,177,181,185,189,193,197,201,205,209,213,217,221,225,229,234,239,245,249,254,259,264,269,274,279,284],Zr=null,$r=[[173,148,140,0],[176,155,140,135,0],[180,157,141,134,130,0],[254,254,243,230,196,177,153,140,133,130,129,0]],An=[0,1,4,8,5,2,3,6,9,12,13,10,7,11,14,15],tn=[-0,1,-1,2,-2,3,4,6,-3,5,-4,-5,-6,7,-7,8,-8,-9],en=[[[[128,128,128,128,128,128,128,128,128,128,128],[128,128,128,128,128,128,128,128,128,128,128],[128,128,128,128,128,128,128,128,128,128,128]],[[253,136,254,255,228,219,128,128,128,128,128],[189,129,242,255,227,213,255,219,128,128,128],[106,126,227,252,214,209,255,255,128,128,128]],[[1,98,248,255,236,226,255,255,128,128,128],[181,133,238,254,221,234,255,154,128,128,128],[78,134,202,247,198,180,255,219,128,128,128]],[[1,185,249,255,243,255,128,128,128,128,128],[184,150,247,255,236,224,128,128,128,128,128],[77,110,216,255,236,230,128,128,128,128,128]],[[1,101,251,255,241,255,128,128,128,128,128],[170,139,241,252,236,209,255,255,128,128,128],[37,116,196,243,228,255,255,255,128,128,128]],[[1,204,254,255,245,255,128,128,128,128,128],[207,160,250,255,238,128,128,128,128,128,128],[102,103,231,255,211,171,128,128,128,128,128]],[[1,152,252,255,240,255,128,128,128,128,128],[177,135,243,255,234,225,128,128,128,128,128],[80,129,211,255,194,224,128,128,128,128,128]],[[1,1,255,128,128,128,128,128,128,128,128],[246,1,255,128,128,128,128,128,128,128,128],[255,128,128,128,128,128,128,128,128,128,128]]],[[[198,35,237,223,193,187,162,160,145,155,62],[131,45,198,221,172,176,220,157,252,221,1],[68,47,146,208,149,167,221,162,255,223,128]],[[1,149,241,255,221,224,255,255,128,128,128],[184,141,234,253,222,220,255,199,128,128,128],[81,99,181,242,176,190,249,202,255,255,128]],[[1,129,232,253,214,197,242,196,255,255,128],[99,121,210,250,201,198,255,202,128,128,128],[23,91,163,242,170,187,247,210,255,255,128]],[[1,200,246,255,234,255,128,128,128,128,128],[109,178,241,255,231,245,255,255,128,128,128],[44,130,201,253,205,192,255,255,128,128,128]],[[1,132,239,251,219,209,255,165,128,128,128],[94,136,225,251,218,190,255,255,128,128,128],[22,100,174,245,186,161,255,199,128,128,128]],[[1,182,249,255,232,235,128,128,128,128,128],[124,143,241,255,227,234,128,128,128,128,128],[35,77,181,251,193,211,255,205,128,128,128]],[[1,157,247,255,236,231,255,255,128,128,128],[121,141,235,255,225,227,255,255,128,128,128],[45,99,188,251,195,217,255,224,128,128,128]],[[1,1,251,255,213,255,128,128,128,128,128],[203,1,248,255,255,128,128,128,128,128,128],[137,1,177,255,224,255,128,128,128,128,128]]],[[[253,9,248,251,207,208,255,192,128,128,128],[175,13,224,243,193,185,249,198,255,255,128],[73,17,171,221,161,179,236,167,255,234,128]],[[1,95,247,253,212,183,255,255,128,128,128],[239,90,244,250,211,209,255,255,128,128,128],[155,77,195,248,188,195,255,255,128,128,128]],[[1,24,239,251,218,219,255,205,128,128,128],[201,51,219,255,196,186,128,128,128,128,128],[69,46,190,239,201,218,255,228,128,128,128]],[[1,191,251,255,255,128,128,128,128,128,128],[223,165,249,255,213,255,128,128,128,128,128],[141,124,248,255,255,128,128,128,128,128,128]],[[1,16,248,255,255,128,128,128,128,128,128],[190,36,230,255,236,255,128,128,128,128,128],[149,1,255,128,128,128,128,128,128,128,128]],[[1,226,255,128,128,128,128,128,128,128,128],[247,192,255,128,128,128,128,128,128,128,128],[240,128,255,128,128,128,128,128,128,128,128]],[[1,134,252,255,255,128,128,128,128,128,128],[213,62,250,255,255,128,128,128,128,128,128],[55,93,255,128,128,128,128,128,128,128,128]],[[128,128,128,128,128,128,128,128,128,128,128],[128,128,128,128,128,128,128,128,128,128,128],[128,128,128,128,128,128,128,128,128,128,128]]],[[[202,24,213,235,186,191,220,160,240,175,255],[126,38,182,232,169,184,228,174,255,187,128],[61,46,138,219,151,178,240,170,255,216,128]],[[1,112,230,250,199,191,247,159,255,255,128],[166,109,228,252,211,215,255,174,128,128,128],[39,77,162,232,172,180,245,178,255,255,128]],[[1,52,220,246,198,199,249,220,255,255,128],[124,74,191,243,183,193,250,221,255,255,128],[24,71,130,219,154,170,243,182,255,255,128]],[[1,182,225,249,219,240,255,224,128,128,128],[149,150,226,252,216,205,255,171,128,128,128],[28,108,170,242,183,194,254,223,255,255,128]],[[1,81,230,252,204,203,255,192,128,128,128],[123,102,209,247,188,196,255,233,128,128,128],[20,95,153,243,164,173,255,203,128,128,128]],[[1,222,248,255,216,213,128,128,128,128,128],[168,175,246,252,235,205,255,255,128,128,128],[47,116,215,255,211,212,255,255,128,128,128]],[[1,121,236,253,212,214,255,255,128,128,128],[141,84,213,252,201,202,255,219,128,128,128],[42,80,160,240,162,185,255,205,128,128,128]],[[1,1,255,128,128,128,128,128,128,128,128],[244,1,255,128,128,128,128,128,128,128,128],[238,1,255,128,128,128,128,128,128,128,128]]]],rn=[[[231,120,48,89,115,113,120,152,112],[152,179,64,126,170,118,46,70,95],[175,69,143,80,85,82,72,155,103],[56,58,10,171,218,189,17,13,152],[114,26,17,163,44,195,21,10,173],[121,24,80,195,26,62,44,64,85],[144,71,10,38,171,213,144,34,26],[170,46,55,19,136,160,33,206,71],[63,20,8,114,114,208,12,9,226],[81,40,11,96,182,84,29,16,36]],[[134,183,89,137,98,101,106,165,148],[72,187,100,130,157,111,32,75,80],[66,102,167,99,74,62,40,234,128],[41,53,9,178,241,141,26,8,107],[74,43,26,146,73,166,49,23,157],[65,38,105,160,51,52,31,115,128],[104,79,12,27,217,255,87,17,7],[87,68,71,44,114,51,15,186,23],[47,41,14,110,182,183,21,17,194],[66,45,25,102,197,189,23,18,22]],[[88,88,147,150,42,46,45,196,205],[43,97,183,117,85,38,35,179,61],[39,53,200,87,26,21,43,232,171],[56,34,51,104,114,102,29,93,77],[39,28,85,171,58,165,90,98,64],[34,22,116,206,23,34,43,166,73],[107,54,32,26,51,1,81,43,31],[68,25,106,22,64,171,36,225,114],[34,19,21,102,132,188,16,76,124],[62,18,78,95,85,57,50,48,51]],[[193,101,35,159,215,111,89,46,111],[60,148,31,172,219,228,21,18,111],[112,113,77,85,179,255,38,120,114],[40,42,1,196,245,209,10,25,109],[88,43,29,140,166,213,37,43,154],[61,63,30,155,67,45,68,1,209],[100,80,8,43,154,1,51,26,71],[142,78,78,16,255,128,34,197,171],[41,40,5,102,211,183,4,1,221],[51,50,17,168,209,192,23,25,82]],[[138,31,36,171,27,166,38,44,229],[67,87,58,169,82,115,26,59,179],[63,59,90,180,59,166,93,73,154],[40,40,21,116,143,209,34,39,175],[47,15,16,183,34,223,49,45,183],[46,17,33,183,6,98,15,32,183],[57,46,22,24,128,1,54,17,37],[65,32,73,115,28,128,23,128,205],[40,3,9,115,51,192,18,6,223],[87,37,9,115,59,77,64,21,47]],[[104,55,44,218,9,54,53,130,226],[64,90,70,205,40,41,23,26,57],[54,57,112,184,5,41,38,166,213],[30,34,26,133,152,116,10,32,134],[39,19,53,221,26,114,32,73,255],[31,9,65,234,2,15,1,118,73],[75,32,12,51,192,255,160,43,51],[88,31,35,67,102,85,55,186,85],[56,21,23,111,59,205,45,37,192],[55,38,70,124,73,102,1,34,98]],[[125,98,42,88,104,85,117,175,82],[95,84,53,89,128,100,113,101,45],[75,79,123,47,51,128,81,171,1],[57,17,5,71,102,57,53,41,49],[38,33,13,121,57,73,26,1,85],[41,10,67,138,77,110,90,47,114],[115,21,2,10,102,255,166,23,6],[101,29,16,10,85,128,101,196,26],[57,18,10,102,102,213,34,20,43],[117,20,15,36,163,128,68,1,26]],[[102,61,71,37,34,53,31,243,192],[69,60,71,38,73,119,28,222,37],[68,45,128,34,1,47,11,245,171],[62,17,19,70,146,85,55,62,70],[37,43,37,154,100,163,85,160,1],[63,9,92,136,28,64,32,201,85],[75,15,9,9,64,255,184,119,16],[86,6,28,5,64,255,25,248,1],[56,8,17,132,137,255,55,116,128],[58,15,20,82,135,57,26,121,40]],[[164,50,31,137,154,133,25,35,218],[51,103,44,131,131,123,31,6,158],[86,40,64,135,148,224,45,183,128],[22,26,17,131,240,154,14,1,209],[45,16,21,91,64,222,7,1,197],[56,21,39,155,60,138,23,102,213],[83,12,13,54,192,255,68,47,28],[85,26,85,85,128,128,32,146,171],[18,11,7,63,144,171,4,4,246],[35,27,10,146,174,171,12,26,128]],[[190,80,35,99,180,80,126,54,45],[85,126,47,87,176,51,41,20,32],[101,75,128,139,118,146,116,128,85],[56,41,15,176,236,85,37,9,62],[71,30,17,119,118,255,17,18,138],[101,38,60,138,55,70,43,26,142],[146,36,19,30,171,255,97,27,20],[138,45,61,62,219,1,81,188,64],[32,41,20,117,151,142,20,21,163],[112,19,12,61,195,128,48,4,24]]],nn=[[[[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]],[[176,246,255,255,255,255,255,255,255,255,255],[223,241,252,255,255,255,255,255,255,255,255],[249,253,253,255,255,255,255,255,255,255,255]],[[255,244,252,255,255,255,255,255,255,255,255],[234,254,254,255,255,255,255,255,255,255,255],[253,255,255,255,255,255,255,255,255,255,255]],[[255,246,254,255,255,255,255,255,255,255,255],[239,253,254,255,255,255,255,255,255,255,255],[254,255,254,255,255,255,255,255,255,255,255]],[[255,248,254,255,255,255,255,255,255,255,255],[251,255,254,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]],[[255,253,254,255,255,255,255,255,255,255,255],[251,254,254,255,255,255,255,255,255,255,255],[254,255,254,255,255,255,255,255,255,255,255]],[[255,254,253,255,254,255,255,255,255,255,255],[250,255,254,255,254,255,255,255,255,255,255],[254,255,255,255,255,255,255,255,255,255,255]],[[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]]],[[[217,255,255,255,255,255,255,255,255,255,255],[225,252,241,253,255,255,254,255,255,255,255],[234,250,241,250,253,255,253,254,255,255,255]],[[255,254,255,255,255,255,255,255,255,255,255],[223,254,254,255,255,255,255,255,255,255,255],[238,253,254,254,255,255,255,255,255,255,255]],[[255,248,254,255,255,255,255,255,255,255,255],[249,254,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]],[[255,253,255,255,255,255,255,255,255,255,255],[247,254,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]],[[255,253,254,255,255,255,255,255,255,255,255],[252,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]],[[255,254,254,255,255,255,255,255,255,255,255],[253,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]],[[255,254,253,255,255,255,255,255,255,255,255],[250,255,255,255,255,255,255,255,255,255,255],[254,255,255,255,255,255,255,255,255,255,255]],[[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]]],[[[186,251,250,255,255,255,255,255,255,255,255],[234,251,244,254,255,255,255,255,255,255,255],[251,251,243,253,254,255,254,255,255,255,255]],[[255,253,254,255,255,255,255,255,255,255,255],[236,253,254,255,255,255,255,255,255,255,255],[251,253,253,254,254,255,255,255,255,255,255]],[[255,254,254,255,255,255,255,255,255,255,255],[254,254,254,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]],[[255,254,255,255,255,255,255,255,255,255,255],[254,254,255,255,255,255,255,255,255,255,255],[254,255,255,255,255,255,255,255,255,255,255]],[[255,255,255,255,255,255,255,255,255,255,255],[254,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]],[[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]],[[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]],[[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]]],[[[248,255,255,255,255,255,255,255,255,255,255],[250,254,252,254,255,255,255,255,255,255,255],[248,254,249,253,255,255,255,255,255,255,255]],[[255,253,253,255,255,255,255,255,255,255,255],[246,253,253,255,255,255,255,255,255,255,255],[252,254,251,254,254,255,255,255,255,255,255]],[[255,254,252,255,255,255,255,255,255,255,255],[248,254,253,255,255,255,255,255,255,255,255],[253,255,254,254,255,255,255,255,255,255,255]],[[255,251,254,255,255,255,255,255,255,255,255],[245,251,254,255,255,255,255,255,255,255,255],[253,253,254,255,255,255,255,255,255,255,255]],[[255,251,253,255,255,255,255,255,255,255,255],[252,253,254,255,255,255,255,255,255,255,255],[255,254,255,255,255,255,255,255,255,255,255]],[[255,252,255,255,255,255,255,255,255,255,255],[249,255,254,255,255,255,255,255,255,255,255],[255,255,254,255,255,255,255,255,255,255,255]],[[255,255,253,255,255,255,255,255,255,255,255],[250,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]],[[255,255,255,255,255,255,255,255,255,255,255],[254,255,255,255,255,255,255,255,255,255,255],[255,255,255,255,255,255,255,255,255,255,255]]]],sn=[0,1,2,3,6,4,5,6,6,6,6,6,6,6,6,7,0],Q=[],y=[],F=[],K=[],U=[],on=(t("UpsampleRgbLinePair",Fe,3),t("UpsampleBgrLinePair",Ue,3),t("UpsampleRgbaLinePair",Ie,4),t("UpsampleBgraLinePair",xe,4),t("UpsampleArgbLinePair",Ee,4),t("UpsampleRgba4444LinePair",ve,2),t("UpsampleRgb565LinePair",be,2),d.UpsampleRgbLinePair),an=d.UpsampleBgrLinePair,cn=d.UpsampleRgbaLinePair,ln=d.UpsampleBgraLinePair,un=d.UpsampleArgbLinePair,hn=d.UpsampleRgba4444LinePair,Bn=d.UpsampleRgb565LinePair,gn=6,fn=(256<<gn)-1,dn=0,pn=Ln(256),wn=Ln(256),mn=Ln(256),Cn=Ln(256),Qn=Ln(709),yn=Ln(709),Fn=(e("YuvToRgbRow",Fe,3),e("YuvToBgrRow",Ue,3),e("YuvToRgbaRow",Ie,4),e("YuvToBgraRow",xe,4),e("YuvToArgbRow",Ee,4),e("YuvToRgba4444Row",ve,2),e("YuvToRgb565Row",be,2),[0,4,8,12,128,132,136,140,256,260,264,268,384,388,392,396]),Un=[0,2,8],bn=[8,7,6,4,4,2,2,2,1,1,1,1],vn=(this.WebPDecodeRGBA=function(A,t,e,r,n){var i=Sr,s=new ne,o=new aA,a=((s.ba=o).S=i,o.width=[o.width],o.height=[o.height],o.width),c=o.height,l=new cA,u=null==l||null==A?2:(En(null!=l),Ne(A,t,e,l.width,l.height,l.Pd,l.Qd,l.format,null));if(a=0!=u?0:(null!=a&&(a[0]=l.width[0]),null!=c&&(c[0]=l.height[0]),1)){o.width=o.width[0],o.height=o.height[0],null!=r&&(r[0]=o.width),null!=n&&(n[0]=o.height);A:{if(r=new KA,(n=new ie).data=A,n.w=t,n.ha=e,n.kd=1,t=[0],En(null!=n),0==(t=A=0!=(A=Ne(n.data,n.w,n.ha,null,null,null,t,null,n))&&7!=A||!t[0]?A:4)){if(En(null!=s),r.data=n.data,r.w=n.w+n.offset,r.ha=n.ha-n.offset,r.put=fA,r.ac=gA,r.bc=dA,r.ma=s,n.xa){if(null==(A=bA())){s=1;break A}if(((A,t)=>{for(var e=[0],r=[0],n=[0];;){if(null==A)return;if(null==t)return A.a=2,0;if(A.l=t,A.a=0,R(A.m,t.data,t.w,t.ha),!pA(A.m,e,r,n)){A.a=3;break}if(A.xb=2,t.width=e[0],t.height=r[0],YA(e[0],r[0],1,A,null))return 1;break}return En(0!=A.a),0})(A,r)){if(r=0==(t=De(r.width,r.height,s.Oa,s.ba))){t:{for(r=A;;){if(null==r){r=0;break t}if(En(null!=r.s.yc),En(null!=r.s.Ya),En(0<r.s.Wb),En(null!=(e=r.l)),En(null!=(n=e.ma)),0!=r.xb){if(r.ca=n.ba,r.tb=n.tb,En(null!=r.ca),!_e(n.Oa,e,_r)){r.a=2;break}if(!vA(r,e.width))break;if(e.da)break;if((e.da||iA(r.ca.S))&&pe(),r.ca.S<11||(alert("todo:WebPInitConvertARGBToYUV"),null!=r.ca.f.kb.F&&pe()),r.Pb&&0<r.s.ua&&null==r.s.vb.X&&!ZA(r.s.vb,r.s.Wa.Xa)){r.a=1;break}r.xb=0}if(!tt(r,r.V,r.Ba,r.c,r.i,e.o,QA))break;n.Dc=r.Ma,r=1;break t}En(0!=r.a),r=0}r=!r}r&&(t=A.a)}else t=A.a}else{if(null==(A=new RA)){s=1;break A}if(A.Fa=n.na,A.P=n.P,A.qc=n.Sa,nt(A,r)){if(0==(t=De(r.width,r.height,s.Oa,s.ba))){if(A.Aa=0,e=s.Oa,En(null!=(n=A)),null!=e){if(0<(a=(a=e.Md)<0?0:100<a?255:255*a/100)){for(c=l=0;c<4;++c)(u=n.pb[c]).lc<12&&(u.ia=a*bn[u.lc<0?0:u.lc]>>3),l|=u.ia;l&&(alert("todo:VP8InitRandom"),n.ia=1)}n.Ga=e.Id,100<n.Ga?n.Ga=100:n.Ga<0&&(n.Ga=0)}((A,t)=>{if(null!=A){if(null==t)return k(A,2,"NULL VP8Io parameter in VP8Decode()."),0;if(A.cb||nt(A,t)){if(En(A.cb),null==t.ac||t.ac(t)){t.ob&&(A.L=0);var e=Un[A.L];if(2==A.L?(A.yb=0,A.zb=0):(A.yb=t.v-e>>4,A.zb=t.j-e>>4,A.yb<0&&(A.yb=0),A.zb<0&&(A.zb=0)),A.Va=t.o+15+e>>4,A.Hb=t.va+15+e>>4,A.za<A.Hb&&(A.Hb=A.za),A.Ub<A.Va&&(A.Va=A.Ub),0<A.L)for(var r,n,i=A.ed,e=0;e<4;++e)for(A.Qa.Cb?(n=A.Qa.Lb[e],A.Qa.Fb||(n+=i.Tb)):n=i.Tb,r=0;r<=1;++r){var s,o=A.gd[e][r],a=n;i.Pc&&(a+=i.vd[0],r)&&(a+=i.od[0]),0<(a=a<0?0:63<a?63:a)?(s=a,(s=0<i.wb&&(s=4<i.wb?s>>2:s>>1)>9-i.wb?9-i.wb:s)<1&&(s=1),o.dd=s,o.tc=2*a+s,o.ld=40<=a?2:15<=a?1:0):o.tc=0,o.La=r}e=0}else k(A,6,"Frame setup failed"),e=A.a;if(e=0==e){if(e){(A.$c=0)<A.Aa||(A.Ic=1);t:{var i=4*(s=A.za),c=32*s,l=s+1,u=0<A.L?s*(0<A.Aa?2:1):0,h=(2==A.Aa?2:1)*s;if((o=i+832+(r=3*(16*(e=A.Ic)+Un[A.L])/2*c)+(n=null!=A.Fa&&0<A.Fa.length?A.Kc.c*A.Kc.i:0))!=o)e=0;else{if(o>A.Vb){if(A.Vb=0,A.Ec=Ln(o),A.Fc=0,null==A.Ec){e=k(A,1,"no memory during frame initialization.");break t}A.Vb=o}a=A.Fc,A.Ac=o=A.Ec,A.Bc=a,a+=i,A.Gd=Sn(c,MA),A.Hd=0,A.rb=Sn(l+1,TA),A.sb=1,A.wa=u?Sn(u,_A):null,A.Y=0,A.D.Nb=0,A.D.wa=A.wa,A.D.Y=A.Y,0<A.Aa&&(A.D.Y+=s),En(!0),A.oc=o,A.pc=a,a+=832,A.ya=Sn(h,OA),A.aa=0,A.D.ya=A.ya,A.D.aa=A.aa,2==A.Aa&&(A.D.aa+=s),A.R=16*s,A.B=8*s,s=(c=Un[A.L])*A.R,c=c/2*A.B,A.sa=o,A.ta=a+s,A.qa=A.sa,A.ra=A.ta+16*e*A.R+c,A.Ha=A.qa,A.Ia=A.ra+8*e*A.B+c,A.$c=0,a+=r,A.mb=n?o:null,A.nb=n?a:null,En(a+n<=A.Fc+A.Vb),st(A),Hn(A.Ac,A.Bc,0,i),e=1}}if(e){if(t.ka=0,t.y=A.sa,t.O=A.ta,t.f=A.qa,t.N=A.ra,t.ea=A.Ha,t.Vd=A.Ia,t.fa=A.R,t.Rc=A.B,t.F=null,t.J=0,!xr){for(e=-255;e<=255;++e)Ur[255+e]=e<0?-e:e;for(e=-1020;e<=1020;++e)br[1020+e]=e<-128?-128:127<e?127:e;for(e=-112;e<=112;++e)vr[112+e]=e<-16?-16:15<e?15:e;for(e=-255;e<=510;++e)Er[255+e]=e<0?0:255<e?255:e;xr=1}rr=gt,nr=lt,sr=ut,B=ht,or=Bt,ir=ct,ar=qt,cr=zt,lr=Ae,ur=te,hr=Zt,Br=$t,gr=ee,fr=re,dr=Xt,pr=Wt,wr=Jt,mr=Yt,y[0]=xt,y[1]=dt,y[2]=vt,y[3]=Et,y[4]=It,y[5]=Lt,y[6]=Ht,y[7]=St,y[8]=_t,y[9]=Nt,Q[0]=yt,Q[1]=wt,Q[2]=mt,Q[3]=Ct,Q[4]=Ft,Q[5]=Ut,Q[6]=bt,F[0]=Pt,F[1]=pt,F[2]=Tt,F[3]=Dt,F[4]=kt,F[5]=Mt,F[6]=Kt,e=1}else e=0}e=e&&((A,D)=>{for(A.M=0;A.M<A.Va;++A.M){for(var t=A.Jc[A.M&A.Xb],e=A.m,r=A,n=0;n<r.za;++n){var i=e,s=(h=r).Ac,o=h.Bc+4*n,a=h.zc,c=h.ya[h.aa+n];if(h.Qa.Bb?c.$b=O(i,h.Pa.jb[0])?2+O(i,h.Pa.jb[2]):O(i,h.Pa.jb[1]):c.$b=0,h.kc&&(c.Ad=O(i,h.Bd)),c.Za=+!O(i,145),c.Za)for(var l=c.Ob,u=0,h=0;h<4;++h){for(var B=a[0+h],g=0;g<4;++g){for(var B=rn[s[o+g]][B],f=tn[O(i,B[0])];0<f;)f=tn[2*f+O(i,B[f])];s[o+g]=B=-f}In(l,u,s,o,4),u+=4,a[0+h]=B}else B=O(i,156)?O(i,128)?1:3:O(i,163)?2:0,Hn(s,o,c.Ob[0]=B,4),Hn(a,0,B,4);c.Dd=O(i,142)?O(i,114)?O(i,183)?1:3:2:0}if(r.m.Ka)return k(A,7,"Premature end-of-partition0 encountered.");for(;A.ja<A.za;++A.ja){if(r=t,i=(e=A).rb[e.sb-1],s=e.rb[e.sb+e.ja],n=e.ya[e.aa+e.ja],o=e.kc?n.Ad:0)i.la=s.la=0,n.Za||(i.Na=s.Na=0),n.Hc=0,n.Gc=0,n.ia=0;else{var d,i=s,s=r,o=e.Pa.Xc,a=e.ya[e.aa+e.ja],c=e.pb[a.$b],u=e.rb[e.sb-1];if(Hn(h=a.ad,l=0,B=g=0,384),a.Za)var p=0,w=o[3];else{f=Ln(16);var m=i.Na+u.Na,m=Zr(s,o[1],m,c.Eb,0,f,0);if(i.Na=u.Na=+(0<m),1<m)rr(f,0,h,l);else for(var C=f[0]+3>>3,f=0;f<256;f+=16)h[l+f]=C;p=1,w=o[0]}var Q=15&i.la,y=15&u.la;for(f=0;f<4;++f){for(var F=1&y,C=d=0;C<4;++C)Q=Q>>1|(F=(m=Zr(s,w,m=F+(1&Q),c.Sc,p,h,l))>p)<<7,d=d<<2|(3<m?3:1<m?2:0!=h[l+0]),l+=16;Q>>=4,y=y>>1|F<<7,g=(g<<8|d)>>>0}for(w=Q,p=y>>4,H=0;H<4;H+=2){for(Q=i.la>>4+H,y=u.la>>4+H,f=d=0;f<2;++f){for(F=1&y,C=0;C<2;++C)Q=Q>>1|(F=0<(m=Zr(s,o[2],m=F+(1&Q),c.Qc,0,h,l)))<<3,d=d<<2|(3<m?3:1<m?2:0!=h[l+0]),l+=16;Q>>=2,y=y>>1|F<<5}B|=d<<4*H,w|=Q<<4<<H,p|=(240&y)<<H}i.la=w,u.la=p,a.Hc=g,a.Gc=B,a.ia=43690&B?0:c.ia,o=!(g|B)}if(0<e.L&&(e.wa[e.Y+e.ja]=e.gd[n.$b][n.Za],e.wa[e.Y+e.ja].La|=!o),r.Ka)return k(A,7,"Premature end-of-file encountered.")}if(st(A),e=D,r=1,n=(t=A).D,i=0<t.L&&t.M>=t.zb&&t.M<=t.Va,0==t.Aa)t:{if(n.M=t.M,n.uc=i,Se(t,n),n=(d=t.D).Nb,i=(B=Un[t.L])*t.R,s=B/2*t.B,f=16*n*t.R,C=8*n*t.B,o=t.sa,a=t.ta-i+f,c=t.qa,h=t.ra-s+C,l=t.Ha,u=t.Ia-s+C,y=0==(Q=d.M),g=Q>=t.Va-(r=1),2==t.Aa&&Se(t,d),d.uc)for(F=(m=t).D.M,En(m.D.uc),d=m.yb;d<m.Hb;++d){var U,b,v,E,x,p=d,w=F,I=(L=(x=m).D).Nb,H=x.R,L=L.wa[L.Y+p],S=x.sa,N=x.ta+16*I*H+16*p,_=L.dd,T=L.tc;0!=T&&(En(3<=T),1==x.L?(0<p&&pr(S,N,H,T+4),L.La&&mr(S,N,H,T),0<w&&dr(S,N,H,T+4),L.La&&wr(S,N,H,T)):(U=x.B,b=x.qa,v=x.ra+8*I*U+8*p,E=x.Ha,x=x.Ia+8*I*U+8*p,I=L.ld,0<p&&(cr(S,N,H,T+4,_,I),ur(b,v,E,x,U,T+4,_,I)),L.La&&(Br(S,N,H,T,_,I),fr(b,v,E,x,U,T,_,I)),0<w&&(ar(S,N,H,T+4,_,I),lr(b,v,E,x,U,T+4,_,I)),L.La&&(hr(S,N,H,T,_,I),gr(b,v,E,x,U,T,_,I))))}if(t.ia&&alert("todo:DitherRow"),null!=e.put){if(d=16*Q,Q=16*(Q+1),y?(e.y=t.sa,e.O=t.ta+f,e.f=t.qa,e.N=t.ra+C,e.ea=t.Ha,e.W=t.Ia+C):(d-=B,e.y=o,e.O=a,e.f=c,e.N=h,e.ea=l,e.W=u),g||(Q-=B),Q>e.o&&(Q=e.o),e.F=null,(e.J=null)!=t.Fa&&0<t.Fa.length&&d<Q&&(e.J=((A,t,e,r)=>{var n=t.width,i=t.o;if(En(null!=A&&null!=t),e<0||r<=0||i<e+r)return null;if(!A.Cc){if(null==A.ga){if(A.ga=new ce,(s=null==A.ga)||(s=t.width*t.o,En(0==A.Gb.length),A.Gb=Ln(s),A.Uc=0,s=!(s=null==A.Gb?0:(A.mb=A.Gb,A.nb=A.Uc,A.rc=null,1))),!s){var s=A.ga,o=A.Fa,a=A.P,c=A.qc,l=A.mb,u=A.nb,h=a+1,B=c-1,g=s.l;if(En(null!=o&&null!=l&&null!=t),K[0]=null,K[1]=le,K[2]=ue,K[3]=he,s.ca=l,s.tb=u,s.c=t.width,s.i=t.height,En(0<s.c&&0<s.i),c<=1)t=0;else if(s.$a=3&o[a+0],s.Z=o[a+0]>>2&3,s.Lc=o[a+0]>>4&3,a=o[a+0]>>6&3,s.$a<0||1<s.$a||4<=s.Z||1<s.Lc||a)t=0;else if(g.put=fA,g.ac=gA,g.bc=dA,g.ma=s,g.width=t.width,g.height=t.height,g.Da=t.Da,g.v=t.v,g.va=t.va,g.j=t.j,g.o=t.o,s.$a)e:{for(En(1==s.$a),t=bA();;){if(null==t){t=0;break e}if(En(null!=s),(s.mc=t).c=s.c,t.i=s.i,t.l=s.l,t.l.ma=s,t.l.width=s.c,t.l.height=s.i,t.a=0,R(t.m,o,h,B),!YA(s.c,s.i,1,t,null))break;if(!(t=1==t.ab&&3==t.gc[0].hc&&yA(t.s)?(s.ic=1,o=t.c*t.i,t.Ta=null,t.Ua=0,t.V=Ln(o),t.Ba=0,null==t.V?(t.a=1,0):1):(s.ic=0,vA(t,s.c))))break;t=1;break e}s.mc=null,t=0}else t=B>=s.c*s.i;s=!t}if(s)return null;1!=A.ga.Lc?A.Ga=0:r=i-e}En(null!=A.ga),En(e+r<=i);e:{if(t=(o=A.ga).c,i=o.l.o,0==o.$a){if(h=A.rc,B=A.Vc,g=A.Fa,c=A.mb,l=A.nb+e*t,En((a=A.P+1+e*t)<=A.P+A.qc),0!=o.Z)for(En(null!=K[o.Z]),s=0;s<r;++s)K[o.Z](h,B,g,a,c,l,t),h=c,B=l,l+=t,a+=t;else for(s=0;s<r;++s)In(c,l,g,a,t),h=c,B=l,l+=t,a+=t;A.rc=h,A.Vc=B}else{if(En(null!=o.mc),t=e+r,En(null!=(s=o.mc)),En(t<=s.i),t<=s.C)t=1;else if(o.ic||pe(),o.ic){var o=s.V,h=s.Ba,B=s.c,f=s.i,d=(g=1,a=s.$/B,c=s.$%B,l=s.m,u=s.s,s.$),p=B*f,w=B*t,m=u.wc,C=d<w?M(u,c,a):null;En(d<=p),En(t<=f),En(yA(u));r:for(;;){for(;!l.h&&d<w;){if(En(null!=(C=c&m?C:M(u,c,a))),WA(l),(f=P(C.G[0],C.H[0],l))<256)o[h+d]=f,++d,++c>=B&&(c=0,++a<=t)&&!(a%16)&&UA(s,a);else{if(!(f<280)){g=0;break r}var Q,f=wA(f-256,l),y=P(C.G[4],C.H[4],l);if(WA(l),!(d>=(y=mA(B,wA(y,l)))&&f<=p-d)){g=0;break r}for(Q=0;Q<f;++Q)o[h+d+Q]=o[h+d+Q-y];for(d+=f,c+=f;B<=c;)c-=B,++a<=t&&!(a%16)&&UA(s,a);d<w&&c&m&&(C=M(u,c,a))}En(l.h==V(l))}UA(s,t<a?t:a);break}!g||l.h&&d<p?(g=0,s.a=l.h?5:3):s.$=d,t=g}else t=tt(s,s.V,s.Ba,s.c,s.i,t,EA);if(!t){r=0;break e}}i<=e+r&&(A.Cc=1),r=1}if(!r)return null;if(A.Cc&&(null!=(r=A.ga)&&(r.mc=null),A.ga=null,0<A.Ga))return alert("todo:WebPDequantizeLevels"),null}return A.nb+e*n})(t,e,d,Q-d),e.F=t.mb,null==e.F)&&0==e.F.length){r=k(t,3,"Could not decode alpha data.");break t}d<e.j&&(B=e.j-d,d=e.j,En(!(1&B)),e.O+=t.R*B,e.N+=t.B*(B>>1),e.W+=t.B*(B>>1),null!=e.F)&&(e.J+=e.width*B),d<Q&&(e.O+=e.v,e.N+=e.v>>1,e.W+=e.v>>1,null!=e.F&&(e.J+=e.v),e.ka=d-e.j,e.U=e.va-e.v,e.T=Q-d,r=e.put(e))}n+1!=t.Ic||g||(In(t.sa,t.ta-i,o,a+16*t.R,i),In(t.qa,t.ra-s,c,h+8*t.B,s),In(t.Ha,t.Ia-s,l,u+8*t.B,s))}if(!r)return k(A,6,"Output aborted.")}return 1})(A,t),null!=t.bc&&t.bc(t),e&=1}return e&&(A.cb=0,e)}}})(A,r)||(t=A.a)}}else t=A.a}0==t&&null!=s.Oa&&s.Oa.fd&&(t=Te(s.ba))}s=t}i=0!=s?null:i<11?o.f.RGBA.eb:o.f.kb.y}else i=null;return i},[3,4,3,4,4,2,2,4,4,4,2,1,1])}function B(A,t){return(A[t+0]|A[t+1]<<8|A[t+2]<<16)>>>0}function g(A,t){return(A[t+0]|A[t+1]<<8|A[t+2]<<16|A[t+3]<<24)>>>0}new t;var e=[0],r=[0],n=[],i=new t,s=((A,t)=>{var e={},r=0,n=!1,i=0,s=0;if(e.frames=[],!((A,t)=>{for(var e=0;e<4;e++)if(A[t+e]!="RIFF".charCodeAt(e))return 1})(A,t)){for(g(A,t+=4),t+=8;t<A.length;){var o,a,c=((A,t)=>{for(var e="",r=0;r<4;r++)e+=String.fromCharCode(A[t++]);return e})(A,t),l=g(A,t+=4),u=(t+=4,l+(1&l));switch(c){case"VP8 ":case"VP8L":void 0===e.frames[r]&&(e.frames[r]={}),(a=e.frames[r]).src_off=n?s:t-8,a.src_size=i+l+8,r++,n&&(n=!1,s=i=0);break;case"VP8X":(a=e.header={}).feature_flags=A[t];var h=t+4;a.canvas_width=1+B(A,h),a.canvas_height=1+B(A,h+=3),h+=3;break;case"ALPH":n=!0,i=u+8,s=t-8;break;case"ANIM":(a=e.header).bgcolor=g(A,t),h=t+4,a.loop_count=A[(o=h)+0]|A[o+1]<<8,h+=2;break;case"ANMF":(a=e.frames[r]={}).offset_x=2*B(A,t),a.offset_y=2*B(A,t+=3),a.width=1+B(A,t+=3),a.height=1+B(A,t+=3),a.duration=B(A,t+=3),t+=3,o=A[t++],a.dispose=1&o,a.blend=o>>1&1}"ANMF"!=c&&(t+=u)}return e}})(A,0),o=(s.response=A,s.rgbaoutput=!0,s.dataurl=!1,s.header||null),a=s.frames||null;if(o){o.loop_counter=o.loop_count;for(var e=[o.canvas_height],r=[o.canvas_width],c=0;c<a.length&&0!=a[c].blend;c++);}var s=a[0],l=i.WebPDecodeRGBA(A,s.src_off,s.src_size,r,e);s.rgba=l,s.imgwidth=r[0],s.imgheight=e[0];for(var u=0;u<r[0]*e[0]*4;u++)n[u]=l[u];return this.width=r,this.height=e,this.data=n,this}ue.API.events.push(["initialized",function(){this.context2d=new $f(this),Gf=this.internal.f2,jf=this.internal.getCoordinateString,Xf=this.internal.getVerticalCoordinateString,Wf=this.internal.getHorizontalCoordinate,Jf=this.internal.getVerticalCoordinate,Yf=this.internal.Point,qf=this.internal.Rectangle,zf=this.internal.Matrix,Zf=new op}]),($f=function(A){Object.defineProperty(this,"canvas",{get:function(){return{parentNode:!1,style:!1}}});var t=A,e=(Object.defineProperty(this,"pdf",{get:function(){return t}}),!1),r=(Object.defineProperty(this,"pageWrapXEnabled",{get:function(){return e},set:function(A){e=Boolean(A)}}),!1),n=(Object.defineProperty(this,"pageWrapYEnabled",{get:function(){return r},set:function(A){r=Boolean(A)}}),0),i=(Object.defineProperty(this,"posX",{get:function(){return n},set:function(A){isNaN(A)||(n=A)}}),0),s=(Object.defineProperty(this,"posY",{get:function(){return i},set:function(A){isNaN(A)||(i=A)}}),Object.defineProperty(this,"margin",{get:function(){return Zf.margin},set:function(A){var t;"number"==typeof A?t=[A,A,A,A]:((t=new Array(4))[0]=A[0],t[1]=2<=A.length?A[1]:t[0],t[2]=3<=A.length?A[2]:t[0],t[3]=4<=A.length?A[3]:t[1]),Zf.margin=t}}),!1),o=(Object.defineProperty(this,"autoPaging",{get:function(){return s},set:function(A){s=A}}),0),a=(Object.defineProperty(this,"lastBreak",{get:function(){return o},set:function(A){o=A}}),[]),c=(Object.defineProperty(this,"pageBreaks",{get:function(){return a},set:function(A){a=A}}),Object.defineProperty(this,"ctx",{get:function(){return Zf},set:function(A){A instanceof op&&(Zf=A)}}),Object.defineProperty(this,"path",{get:function(){return Zf.path},set:function(A){Zf.path=A}}),[]),g=(Object.defineProperty(this,"ctxStack",{get:function(){return c},set:function(A){c=A}}),Object.defineProperty(this,"fillStyle",{get:function(){return this.ctx.fillStyle},set:function(A){A=Ad(A);this.ctx.fillStyle=A.style,this.ctx.isFillTransparent=0===A.a,this.ctx.fillOpacity=A.a,this.pdf.setFillColor(A.r,A.g,A.b,{a:A.a}),this.pdf.setTextColor(A.r,A.g,A.b,{a:A.a})}}),Object.defineProperty(this,"strokeStyle",{get:function(){return this.ctx.strokeStyle},set:function(A){A=Ad(A);this.ctx.strokeStyle=A.style,this.ctx.isStrokeTransparent=0===A.a,this.ctx.strokeOpacity=A.a,0===A.a?this.pdf.setDrawColor(255,255,255):(A.a,this.pdf.setDrawColor(A.r,A.g,A.b))}}),Object.defineProperty(this,"lineCap",{get:function(){return this.ctx.lineCap},set:function(A){-1!==["butt","round","square"].indexOf(A)&&(this.ctx.lineCap=A,this.pdf.setLineCap(A))}}),Object.defineProperty(this,"lineWidth",{get:function(){return this.ctx.lineWidth},set:function(A){isNaN(A)||(this.ctx.lineWidth=A,this.pdf.setLineWidth(A))}}),Object.defineProperty(this,"lineJoin",{get:function(){return this.ctx.lineJoin},set:function(A){-1!==["bevel","round","miter"].indexOf(A)&&(this.ctx.lineJoin=A,this.pdf.setLineJoin(A))}}),Object.defineProperty(this,"miterLimit",{get:function(){return this.ctx.miterLimit},set:function(A){isNaN(A)||(this.ctx.miterLimit=A,this.pdf.setMiterLimit(A))}}),Object.defineProperty(this,"textBaseline",{get:function(){return this.ctx.textBaseline},set:function(A){this.ctx.textBaseline=A}}),Object.defineProperty(this,"textAlign",{get:function(){return this.ctx.textAlign},set:function(A){-1!==["right","end","center","left","start"].indexOf(A)&&(this.ctx.textAlign=A)}}),null),f=null,l=null;Object.defineProperty(this,"fontFaces",{get:function(){return l},set:function(A){f=g=null,l=A}}),Object.defineProperty(this,"font",{get:function(){return this.ctx.font},set:function(A){var t,r,e;if(this.ctx.font=A,null!==(A=/^\s*(?=(?:(?:[-a-z]+\s*){0,2}(italic|oblique))?)(?=(?:(?:[-a-z]+\s*){0,2}(small-caps))?)(?=(?:(?:[-a-z]+\s*){0,2}(bold(?:er)?|lighter|[1-9]00))?)(?:(?:normal|\1|\2|\3)\s*){0,3}((?:xx?-)?(?:small|large)|medium|smaller|larger|[.\d]+(?:\%|in|[cem]m|ex|p[ctx]))(?:\s*\/\s*(normal|[.\d]+(?:\%|in|[cem]m|ex|p[ctx])))?\s*([-_,\"\'\sa-z0-9]+?)\s*$/i.exec(A))){var n=A[1],i=(A[2],A[3]),s=A[4],o=(A[5],A[6]),A=/^([.\d]+)((?:%|in|[cem]m|ex|p[ctx]))$/i.exec(s)[2],s="px"!==A&&"em"===A?Math.floor(parseFloat(s)*this.pdf.getFontSize()):Math.floor(parseFloat(s)*this.pdf.internal.scaleFactor),a=(this.pdf.setFontSize(s),(()=>{var A,t,e,r,n=[],i=o.trim();if(""===i)return Fd;if(i in bf)return[bf[i]];for(;""!==i;){switch(t=null,A=(i=Ef(i)).charAt(0)){case'"':case"'":t=((A,t)=>{for(var e=0;e<A.length;){if(A.charAt(e)===t)return[A.substring(0,e),A.substring(e+1)];e+=1}return null})(i.substring(1),A);break;default:r=void 0,t=null===(r=(e=i).match(/^(-[a-z_]|[a-z_])[a-z0-9_-]*/i))?null:[r[0],e.substring(r[0].length)]}if(null===t)return Fd;if(n.push(t[0]),""!==(i=Ef(t[1]))&&","!==i.charAt(0))return Fd;i=i.replace(/^,/,"")}return n})());if(this.fontFaces){A=this.pdf,s=this.fontFaces,A=A.getFontList(),e=JSON.stringify(A),null!==g&&f===e||(t=A,r=[],Object.keys(t).forEach(function(e){t[e].forEach(function(A){var t=null;switch(A){case"bold":t={family:e,weight:"bold"};break;case"italic":t={family:e,style:"italic"};break;case"bolditalic":t={family:e,weight:"bold",style:"italic"};break;case"":case"normal":t={family:e}}null!==t&&(t.ref={name:e,style:A},r.push(t))})}),g=(A=>{for(var t={},e=0;e<A.length;++e){var r=yf(A[e]),n=r.family,i=r.stretch,s=r.style,o=r.weight;t[n]=t[n]||{},t[n][i]=t[n][i]||{},t[n][i][s]=t[n][i][s]||{},t[n][i][s][o]=r}return t})(r.concat(s)),f=e);A=((A,t,e)=>{for(var r=(e={}).defaultFontFamily||"times",n=Object.assign({},Uf,e.genericFontFamilies||{}),i=null,s=null,o=0;o<t.length;++o)if(n[(i=yf(t[o])).family]&&(i.family=n[i.family]),A.hasOwnProperty(i.family)){s=A[i.family];break}if(!(s=s||A[r]))throw new Error("Could not find a font-family for the rule '"+vf(i)+"' and default family '"+r+"'.");if(s=((A,t)=>{if(t[A])return t[A];var e=mf[A],r=e<=mf.normal?-1:1;if(t=Ff(t,wf,e,r))return t;throw new Error("Could not find a matching font-stretch value for "+A)})(i.stretch,s),s=((A,t)=>{if(t[A])return t[A];for(var e=pf[A],r=0;r<e.length;++r)if(t[e[r]])return t[e[r]];throw new Error("Could not find a matching font-style for "+A)})(i.style,s),s=((A,t)=>{if(t[A])return t[A];if(400===A&&t[500])return t[500];if(500===A&&t[400])return t[400];var e=Qf[A];if(t=Ff(t,Cf,e,A<400?-1:1))return t;throw new Error("Could not find a matching font-weight for value "+A)})(i.weight,s))return s;throw new Error("Failed to resolve a font for the rule '"+vf(i)+"'.")})(g,a.map(function(A){return{family:A,stretch:"normal",weight:i,style:n}}));this.pdf.setFont(A.ref.name,A.ref.style)}else{var c="";("bold"===i||700<=parseInt(i,10)||"bold"===n)&&(c="bold"),"italic"===n&&(c+="italic"),0===c.length&&(c="normal");for(var l="",u={arial:"Helvetica",Arial:"Helvetica",verdana:"Helvetica",Verdana:"Helvetica",helvetica:"Helvetica",Helvetica:"Helvetica","sans-serif":"Helvetica",fixed:"Courier",monospace:"Courier",terminal:"Courier",cursive:"Times",fantasy:"Times",serif:"Times"},h=0;h<a.length;h++){if(void 0!==this.pdf.internal.getFont(a[h],c,{noFallback:!0,disableWarning:!0})){l=a[h];break}if("bolditalic"===c&&void 0!==this.pdf.internal.getFont(a[h],"bold",{noFallback:!0,disableWarning:!0}))l=a[h],c="bold";else if(void 0!==this.pdf.internal.getFont(a[h],"normal",{noFallback:!0,disableWarning:!0})){l=a[h],c="normal";break}}if(""===l)for(var B=0;B<a.length;B++)if(u[a[B]]){l=u[a[B]];break}this.pdf.setFont(l=""===l?"Times":l,c)}}}}),Object.defineProperty(this,"globalCompositeOperation",{get:function(){return this.ctx.globalCompositeOperation},set:function(A){this.ctx.globalCompositeOperation=A}}),Object.defineProperty(this,"globalAlpha",{get:function(){return this.ctx.globalAlpha},set:function(A){this.ctx.globalAlpha=A}}),Object.defineProperty(this,"lineDashOffset",{get:function(){return this.ctx.lineDashOffset},set:function(A){this.ctx.lineDashOffset=A,yd.call(this)}}),Object.defineProperty(this,"lineDash",{get:function(){return this.ctx.lineDash},set:function(A){this.ctx.lineDash=A,yd.call(this)}}),Object.defineProperty(this,"ignoreClearRect",{get:function(){return this.ctx.ignoreClearRect},set:function(A){this.ctx.ignoreClearRect=Boolean(A)}})}).prototype.setLineDash=function(A){this.lineDash=A},$f.prototype.getLineDash=function(){return this.lineDash.length%2?this.lineDash.concat(this.lineDash):this.lineDash.slice()},$f.prototype.fill=function(){od.call(this,"fill",!1)},$f.prototype.stroke=function(){od.call(this,"stroke",!1)},$f.prototype.beginPath=function(){this.path=[{type:"begin"}]},$f.prototype.moveTo=function(A,t){if(isNaN(A)||isNaN(t))throw BB.error("jsPDF.context2d.moveTo: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.moveTo");var e=this.ctx.transform.applyToPoint(new Yf(A,t));this.path.push({type:"mt",x:e.x,y:e.y}),this.ctx.lastPoint=new Yf(A,t)},$f.prototype.closePath=function(){for(var A=new Yf(0,0),t=0,t=this.path.length-1;-1!==t;t--)if("begin"===this.path[t].type&&"object"===Ea(this.path[t+1])&&"number"==typeof this.path[t+1].x){A=new Yf(this.path[t+1].x,this.path[t+1].y);break}this.path.push({type:"close"}),this.ctx.lastPoint=new Yf(A.x,A.y)},$f.prototype.lineTo=function(A,t){if(isNaN(A)||isNaN(t))throw BB.error("jsPDF.context2d.lineTo: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.lineTo");A=this.ctx.transform.applyToPoint(new Yf(A,t));this.path.push({type:"lt",x:A.x,y:A.y}),this.ctx.lastPoint=new Yf(A.x,A.y)},$f.prototype.clip=function(){this.ctx.clip_path=JSON.parse(JSON.stringify(this.path)),od.call(this,null,!0)},$f.prototype.quadraticCurveTo=function(A,t,e,r){if(isNaN(e)||isNaN(r)||isNaN(A)||isNaN(t))throw BB.error("jsPDF.context2d.quadraticCurveTo: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.quadraticCurveTo");e=this.ctx.transform.applyToPoint(new Yf(e,r)),r=this.ctx.transform.applyToPoint(new Yf(A,t));this.path.push({type:"qct",x1:r.x,y1:r.y,x:e.x,y:e.y}),this.ctx.lastPoint=new Yf(e.x,e.y)},$f.prototype.bezierCurveTo=function(A,t,e,r,n,i){if(isNaN(n)||isNaN(i)||isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r))throw BB.error("jsPDF.context2d.bezierCurveTo: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.bezierCurveTo");n=this.ctx.transform.applyToPoint(new Yf(n,i)),i=this.ctx.transform.applyToPoint(new Yf(A,t)),A=this.ctx.transform.applyToPoint(new Yf(e,r));this.path.push({type:"bct",x1:i.x,y1:i.y,x2:A.x,y2:A.y,x:n.x,y:n.y}),this.ctx.lastPoint=new Yf(n.x,n.y)},$f.prototype.arc=function(A,t,e,r,n,i){if(isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r)||isNaN(n))throw BB.error("jsPDF.context2d.arc: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.arc");var s,o;i=Boolean(i),this.ctx.transform.isIdentity||(A=(s=this.ctx.transform.applyToPoint(new Yf(A,t))).x,t=s.y,s=this.ctx.transform.applyToPoint(new Yf(0,e)),o=this.ctx.transform.applyToPoint(new Yf(0,0)),e=Math.sqrt(Math.pow(s.x-o.x,2)+Math.pow(s.y-o.y,2))),Math.abs(n-r)>=2*Math.PI&&(r=0,n=2*Math.PI),this.path.push({type:"arc",x:A,y:t,radius:e,startAngle:r,endAngle:n,counterclockwise:i})},$f.prototype.arcTo=function(A,t,e,r,n){throw new Error("arcTo not implemented.")},$f.prototype.rect=function(A,t,e,r){if(isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r))throw BB.error("jsPDF.context2d.rect: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.rect");this.moveTo(A,t),this.lineTo(A+e,t),this.lineTo(A+e,t+r),this.lineTo(A,t+r),this.lineTo(A,t),this.lineTo(A+e,t),this.lineTo(A,t)},$f.prototype.fillRect=function(A,t,e,r){if(isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r))throw BB.error("jsPDF.context2d.fillRect: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.fillRect");var n;td.call(this)||(n={},"butt"!==this.lineCap&&(n.lineCap=this.lineCap,this.lineCap="butt"),"miter"!==this.lineJoin&&(n.lineJoin=this.lineJoin,this.lineJoin="miter"),this.beginPath(),this.rect(A,t,e,r),this.fill(),n.hasOwnProperty("lineCap")&&(this.lineCap=n.lineCap),n.hasOwnProperty("lineJoin")&&(this.lineJoin=n.lineJoin))},$f.prototype.strokeRect=function(A,t,e,r){if(isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r))throw BB.error("jsPDF.context2d.strokeRect: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.strokeRect");ed.call(this)||(this.beginPath(),this.rect(A,t,e,r),this.stroke())},$f.prototype.clearRect=function(A,t,e,r){if(isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r))throw BB.error("jsPDF.context2d.clearRect: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.clearRect");this.ignoreClearRect||(this.fillStyle="#ffffff",this.fillRect(A,t,e,r))},$f.prototype.save=function(A){A="boolean"!=typeof A||A;for(var t=this.pdf.internal.getCurrentPageInfo().pageNumber,e=0;e<this.pdf.internal.getNumberOfPages();e++)this.pdf.setPage(e+1),this.pdf.internal.out("q");this.pdf.setPage(t),A&&(this.ctx.fontSize=this.pdf.internal.getFontSize(),t=new op(this.ctx),this.ctxStack.push(this.ctx),this.ctx=t)},$f.prototype.restore=function(A){A="boolean"!=typeof A||A;for(var t=this.pdf.internal.getCurrentPageInfo().pageNumber,e=0;e<this.pdf.internal.getNumberOfPages();e++)this.pdf.setPage(e+1),this.pdf.internal.out("Q");this.pdf.setPage(t),A&&0!==this.ctxStack.length&&(this.ctx=this.ctxStack.pop(),this.fillStyle=this.ctx.fillStyle,this.strokeStyle=this.ctx.strokeStyle,this.font=this.ctx.font,this.lineCap=this.ctx.lineCap,this.lineWidth=this.ctx.lineWidth,this.lineJoin=this.ctx.lineJoin,this.lineDash=this.ctx.lineDash,this.lineDashOffset=this.ctx.lineDashOffset)},$f.prototype.toDataURL=function(){throw new Error("toDataUrl not implemented.")},Ad=function(A){var t,e,r,n,i;return(A=!0===A.isCanvasGradient?A.getColor():A)?(/transparent|rgba\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*0+\s*\)/.test(A)?i=r=e=t=0:null!==(n=/rgb\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)/.exec(A))?(t=parseInt(n[1]),e=parseInt(n[2]),r=parseInt(n[3]),i=1):null!==(n=/rgba\s*\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*([\d.]+)\s*\)/.exec(A))?(t=parseInt(n[1]),e=parseInt(n[2]),r=parseInt(n[3]),i=parseFloat(n[4])):(i=1,4===(A="string"==typeof A&&"#"!==A.charAt(0)?(n=new wB(A)).ok?n.toHex():"#000000":A).length?(t=A.substring(1,2),t+=t,e=A.substring(2,3),e+=e,r=A.substring(3,4),r+=r):(t=A.substring(1,3),e=A.substring(3,5),r=A.substring(5,7)),t=parseInt(t,16),e=parseInt(e,16),r=parseInt(r,16)),{r:t,g:e,b:r,a:i,style:A}):{r:0,g:0,b:0,a:0,style:A}},td=function(){return this.ctx.isFillTransparent||0==this.globalAlpha},ed=function(){return Boolean(this.ctx.isStrokeTransparent||0==this.globalAlpha)},$f.prototype.fillText=function(A,t,e,r){if(isNaN(t)||isNaN(e)||"string"!=typeof A)throw BB.error("jsPDF.context2d.fillText: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.fillText");var n,i;r=isNaN(r)?void 0:r,td.call(this)||(n=md(this.ctx.transform.rotation),i=this.ctx.transform.scaleX,Bd.call(this,{text:A,x:t,y:e,scale:i,angle:n,align:this.textAlign,maxWidth:r}))},$f.prototype.strokeText=function(A,t,e,r){if(isNaN(t)||isNaN(e)||"string"!=typeof A)throw BB.error("jsPDF.context2d.strokeText: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.strokeText");var n,i;ed.call(this)||(r=isNaN(r)?void 0:r,n=md(this.ctx.transform.rotation),i=this.ctx.transform.scaleX,Bd.call(this,{text:A,x:t,y:e,scale:i,renderingMode:"stroke",angle:n,align:this.textAlign,maxWidth:r}))},$f.prototype.measureText=function(A){if("string"!=typeof A)throw BB.error("jsPDF.context2d.measureText: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.measureText");var t=this.pdf,e=this.pdf.internal.scaleFactor,r=t.internal.getFontSize(),n=t.getStringUnitWidth(A)*r/t.internal.scaleFactor;return new function(A){var t={width:n*=Math.round(96*e/72*1e4)/1e4}.width||0;return Object.defineProperty(this,"width",{get:function(){return t}}),this}},$f.prototype.scale=function(A,t){if(isNaN(A)||isNaN(t))throw BB.error("jsPDF.context2d.scale: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.scale");A=new zf(A,0,0,t,0,0);this.ctx.transform=this.ctx.transform.multiply(A)},$f.prototype.rotate=function(A){if(isNaN(A))throw BB.error("jsPDF.context2d.rotate: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.rotate");A=new zf(Math.cos(A),Math.sin(A),-Math.sin(A),Math.cos(A),0,0);this.ctx.transform=this.ctx.transform.multiply(A)},$f.prototype.translate=function(A,t){if(isNaN(A)||isNaN(t))throw BB.error("jsPDF.context2d.translate: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.translate");A=new zf(1,0,0,1,A,t);this.ctx.transform=this.ctx.transform.multiply(A)},$f.prototype.transform=function(A,t,e,r,n,i){if(isNaN(A)||isNaN(t)||isNaN(e)||isNaN(r)||isNaN(n)||isNaN(i))throw BB.error("jsPDF.context2d.transform: Invalid arguments",arguments),new Error("Invalid arguments passed to jsPDF.context2d.transform");A=new zf(A,t,e,r,n,i);this.ctx.transform=this.ctx.transform.multiply(A)},$f.prototype.setTransform=function(A,t,e,r,n,i){A=isNaN(A)?1:A,t=isNaN(t)?0:t,e=isNaN(e)?0:e,r=isNaN(r)?1:r,n=isNaN(n)?0:n,i=isNaN(i)?0:i,this.ctx.transform=new zf(A,t,e,r,n,i)},$f.prototype.drawImage=function(A,t,e,r,n,i,s,o,a){var c=this.pdf.getImageProperties(A),l=1,u=1,h=1,B=1,o=(void 0!==r&&void 0!==o&&(h=o/r,B=a/n,l=c.width/r*o/r,u=c.height/n*a/n),void 0===i&&(i=t,s=e,e=t=0),void 0!==r&&void 0===o&&(o=r,a=n),void 0===r&&void 0===o&&(o=c.width,a=c.height),this.ctx.transform.decompose()),g=md(o.rotate.shx),f=(new zf).multiply(o.translate).multiply(o.skew).multiply(o.scale).applyToRectangle(new qf(i-t*h,s-e*B,r*l,n*u));if(this.autoPaging){for(var d=rd.call(this,f),p=[],w=0;w<d.length;w+=1)-1===p.indexOf(d[w])&&p.push(d[w]);sd(p);for(var m=p[0],C=p[p.length-1],Q=m;Q<C+1;Q++){this.pdf.setPage(Q);var y=this.pdf.internal.pageSize.width-this.margin[3]-this.margin[1],F=1===Q?this.posY+this.margin[0]:this.margin[0],U=this.pdf.internal.pageSize.height-this.posY-this.margin[0]-this.margin[2],b=this.pdf.internal.pageSize.height-this.margin[0]-this.margin[2],U=1===Q?0:U+(Q-2)*b,v=(0!==this.ctx.clip_path.length&&(E=this.path,v=JSON.parse(JSON.stringify(this.ctx.clip_path)),this.path=id(v,this.posX+this.margin[3],-U+F+this.ctx.prevPageLastElemOffset),ad.call(this,"fill",!0),this.path=E),JSON.parse(JSON.stringify(f))),v=id([v],this.posX+this.margin[3],-U+F+this.ctx.prevPageLastElemOffset)[0],E=(m<Q||Q<C)&&ap.call(this);E&&(this.pdf.saveGraphicsState(),this.pdf.rect(this.margin[3],this.margin[0],y,b,null).clip().discardPath()),this.pdf.addImage(A,"JPEG",v.x,v.y,v.w,v.h,null,null,g),E&&this.pdf.restoreGraphicsState()}}else this.pdf.addImage(A,"JPEG",f.x,f.y,f.w,f.h,null,null,g)},rd=function(A,t,e){var r=[],n=(t=t||this.pdf.internal.pageSize.width,e=e||this.pdf.internal.pageSize.height-this.margin[0]-this.margin[2],this.posY+this.ctx.prevPageLastElemOffset);switch(A.type){default:case"mt":case"lt":r.push(Math.floor((A.y+n)/e)+1);break;case"arc":r.push(Math.floor((A.y+n-A.radius)/e)+1),r.push(Math.floor((A.y+n+A.radius)/e)+1);break;case"qct":var i=Cd(this.ctx.lastPoint.x,this.ctx.lastPoint.y,A.x1,A.y1,A.x,A.y);r.push(Math.floor((i.y+n)/e)+1),r.push(Math.floor((i.y+i.h+n)/e)+1);break;case"bct":i=Qd(this.ctx.lastPoint.x,this.ctx.lastPoint.y,A.x1,A.y1,A.x2,A.y2,A.x,A.y);r.push(Math.floor((i.y+n)/e)+1),r.push(Math.floor((i.y+i.h+n)/e)+1);break;case"rect":r.push(Math.floor((A.y+n)/e)+1),r.push(Math.floor((A.y+A.h+n)/e)+1)}for(var s=0;s<r.length;s+=1)for(;this.pdf.internal.getNumberOfPages()<r[s];)nd.call(this);return r},nd=function(){var A=this.fillStyle,t=this.strokeStyle,e=this.font,r=this.lineCap,n=this.lineWidth,i=this.lineJoin;this.pdf.addPage(),this.fillStyle=A,this.strokeStyle=t,this.font=e,this.lineCap=r,this.lineWidth=n,this.lineJoin=i},id=function(A,t,e){for(var r=0;r<A.length;r++)switch(A[r].type){case"bct":A[r].x2+=t,A[r].y2+=e;case"qct":A[r].x1+=t,A[r].y1+=e;default:A[r].x+=t,A[r].y+=e}return A},sd=function(A){return A.sort(function(A,t){return A-t})},od=function(A,t){var e=this.fillStyle,r=this.strokeStyle,n=this.lineCap,i=this.lineWidth,s=Math.abs(i*this.ctx.transform.scaleX),o=this.lineJoin;if(this.autoPaging){for(var a=JSON.parse(JSON.stringify(this.path)),c=JSON.parse(JSON.stringify(this.path)),l=[],u=0;u<c.length;u++)if(void 0!==c[u].x)for(var h=rd.call(this,c[u]),B=0;B<h.length;B+=1)-1===l.indexOf(h[B])&&l.push(h[B]);for(var g=0;g<l.length;g++)for(;this.pdf.internal.getNumberOfPages()<l[g];)nd.call(this);sd(l);for(var f=l[0],d=l[l.length-1],p=f;p<d+1;p++){this.pdf.setPage(p),this.fillStyle=e,this.strokeStyle=r,this.lineCap=n,this.lineWidth=s,this.lineJoin=o;var w=this.pdf.internal.pageSize.width-this.margin[3]-this.margin[1],m=1===p?this.posY+this.margin[0]:this.margin[0],C=this.pdf.internal.pageSize.height-this.posY-this.margin[0]-this.margin[2],Q=this.pdf.internal.pageSize.height-this.margin[0]-this.margin[2],C=1===p?0:C+(p-2)*Q;0!==this.ctx.clip_path.length&&(y=this.path,F=JSON.parse(JSON.stringify(this.ctx.clip_path)),this.path=id(F,this.posX+this.margin[3],-C+m+this.ctx.prevPageLastElemOffset),ad.call(this,A,!0),this.path=y);var y,F=JSON.parse(JSON.stringify(a));this.path=id(F,this.posX+this.margin[3],-C+m+this.ctx.prevPageLastElemOffset),!1!==t&&0!==p||((y=(f<p||p<d)&&ap.call(this))&&(this.pdf.saveGraphicsState(),this.pdf.rect(this.margin[3],this.margin[0],w,Q,null).clip().discardPath()),ad.call(this,A,t),y&&this.pdf.restoreGraphicsState()),this.lineWidth=i}this.path=a}else this.lineWidth=s,ad.call(this,A,t),this.lineWidth=i},ad=function(A,t){if(("stroke"!==A||t||!ed.call(this))&&("stroke"===A||t||!td.call(this))){for(var e=[],r=this.path,n=0;n<r.length;n++){var i=r[n];switch(i.type){case"begin":e.push({begin:!0});break;case"close":e.push({close:!0});break;case"mt":e.push({start:i,deltas:[],abs:[]});break;case"lt":var s=e.length;if(r[n-1]&&!isNaN(r[n-1].x)&&(B=[i.x-r[n-1].x,i.y-r[n-1].y],0<s))for(;0<=s;s--)if(!0!==e[s-1].close&&!0!==e[s-1].begin){e[s-1].deltas.push(B),e[s-1].abs.push(i);break}break;case"bct":B=[i.x1-r[n-1].x,i.y1-r[n-1].y,i.x2-r[n-1].x,i.y2-r[n-1].y,i.x-r[n-1].x,i.y-r[n-1].y],e[e.length-1].deltas.push(B);break;case"qct":var o=r[n-1].x+2/3*(i.x1-r[n-1].x),a=r[n-1].y+2/3*(i.y1-r[n-1].y),c=i.x+2/3*(i.x1-i.x),l=i.y+2/3*(i.y1-i.y),u=i.x,h=i.y,B=[o-r[n-1].x,a-r[n-1].y,c-r[n-1].x,l-r[n-1].y,u-r[n-1].x,h-r[n-1].y];e[e.length-1].deltas.push(B);break;case"arc":e.push({deltas:[],abs:[],arc:!0}),Array.isArray(e[e.length-1].abs)&&e[e.length-1].abs.push(i)}}for(var g,f,A=t?null:"stroke"===A?"stroke":"fill",d=!1,p=0;p<e.length;p++)if(e[p].arc)for(var w=e[p].abs,m=0;m<w.length;m++){var C=w[m];"arc"===C.type?cd.call(this,C.x,C.y,C.radius,C.startAngle,C.endAngle,C.counterclockwise,void 0,t,!d):gd.call(this,C.x,C.y),d=!0}else!0===e[p].close?(this.pdf.internal.out("h"),d=!1):!0!==e[p].begin&&(g=e[p].start.x,f=e[p].start.y,fd.call(this,e[p].deltas,g,f),d=!0);A&&ld.call(this,A),t&&ud.call(this)}},$f.prototype.createLinearGradient=function(){function A(){}return A.colorStops=[],A.addColorStop=function(A,t){this.colorStops.push([A,t])},A.getColor=function(){return 0===this.colorStops.length?"#000000":this.colorStops[0][1]},A.isCanvasGradient=!0,A},$f.prototype.createPattern=function(){return this.createLinearGradient()},$f.prototype.createRadialGradient=function(){return this.createLinearGradient()},cd=function(A,t,e,r,n,i,s,o,a){for(var c=pd.call(this,e,r,n,i),l=0;l<c.length;l++){var u=c[l];0===l&&(a?hd:gd).call(this,u.x1+A,u.y1+t),dd.call(this,A,t,u.x2,u.y2,u.x3,u.y3,u.x4,u.y4)}o?ud.call(this):ld.call(this,s)},ld=function(A){switch(A){case"stroke":this.pdf.internal.out("S");break;case"fill":this.pdf.internal.out("f")}},ud=function(){this.pdf.clip(),this.pdf.discardPath()},hd=function(A,t){this.pdf.internal.out(jf(A)+" "+Xf(t)+" m")},Bd=function(A){var t;switch(A.align){case"right":case"end":t="right";break;case"center":t="center";break;default:t="left"}var e,r,n=this.pdf.getTextDimensions(A.text),i=function(A){var t=this.pdf.internal.getFontSize()/this.pdf.internal.scaleFactor,e=t*(this.pdf.internal.getLineHeightFactor()-1);switch(this.ctx.textBaseline){case"bottom":return A-e;case"top":return A+t-e;case"hanging":return A+t-2*e;case"middle":return A+t/2-e;default:return A}}.call(this,A.y),s=function(A){return A+this.pdf.internal.getFontSize()/this.pdf.internal.scaleFactor*(this.pdf.internal.getLineHeightFactor()-1)}.call(this,i)-n.h,o=this.ctx.transform.applyToPoint(new Yf(A.x,i));if(this.autoPaging){for(var a=this.ctx.transform.decompose(),c=(c=(c=(c=new zf).multiply(a.translate)).multiply(a.skew)).multiply(a.scale),l=this.ctx.transform.applyToRectangle(new qf(A.x,i,n.w,n.h)),u=c.applyToRectangle(new qf(A.x,s,n.w,n.h)),h=rd.call(this,u),B=[],g=0;g<h.length;g+=1)-1===B.indexOf(h[g])&&B.push(h[g]);sd(B);for(var f=B[0],d=B[B.length-1],p=f;p<d+1;p++){this.pdf.setPage(p);var w=1===p?this.posY+this.margin[0]:this.margin[0],m=this.pdf.internal.pageSize.height-this.posY-this.margin[0]-this.margin[2],C=this.pdf.internal.pageSize.height-this.margin[2],Q=C-this.margin[0],y=this.pdf.internal.pageSize.width-this.margin[1],F=y-this.margin[3],m=1===p?0:m+(p-2)*Q,U=(0!==this.ctx.clip_path.length&&(b=this.path,U=JSON.parse(JSON.stringify(this.ctx.clip_path)),this.path=id(U,this.posX+this.margin[3],-1*m+w),ad.call(this,"fill",!0),this.path=b),id([JSON.parse(JSON.stringify(u))],this.posX+this.margin[3],-m+w+this.ctx.prevPageLastElemOffset)[0]),b=(.01<=A.scale&&(e=this.pdf.internal.getFontSize(),this.pdf.setFontSize(e*A.scale),r=this.lineWidth,this.lineWidth=r*A.scale),"text"!==this.autoPaging);b||U.y+U.h<=C?(b||U.y>=w&&U.x<=y)&&(y=b?A.text:this.pdf.splitTextToSize(A.text,A.maxWidth||y-U.x)[0],m=id([JSON.parse(JSON.stringify(l))],this.posX+this.margin[3],-m+w+this.ctx.prevPageLastElemOffset)[0],(w=b&&(f<p||p<d)&&ap.call(this))&&(this.pdf.saveGraphicsState(),this.pdf.rect(this.margin[3],this.margin[0],F,Q,null).clip().discardPath()),this.pdf.text(y,m.x,m.y,{angle:A.angle,align:t,renderingMode:A.renderingMode}),w)&&this.pdf.restoreGraphicsState():U.y<C&&(this.ctx.prevPageLastElemOffset+=C-U.y),.01<=A.scale&&(this.pdf.setFontSize(e),this.lineWidth=r)}}else.01<=A.scale&&(e=this.pdf.internal.getFontSize(),this.pdf.setFontSize(e*A.scale),r=this.lineWidth,this.lineWidth=r*A.scale),this.pdf.text(A.text,o.x+this.posX,o.y+this.posY,{angle:A.angle,align:t,renderingMode:A.renderingMode,maxWidth:A.maxWidth}),.01<=A.scale&&(this.pdf.setFontSize(e),this.lineWidth=r)},gd=function(A,t,e,r){r=r||0,this.pdf.internal.out(jf(A+(e=e||0))+" "+Xf(t+r)+" l")},fd=function(A,t,e){return this.pdf.lines(A,t,e,null,null)},dd=function(A,t,e,r,n,i,s,o){this.pdf.internal.out([Gf(Wf(e+A)),Gf(Jf(r+t)),Gf(Wf(n+A)),Gf(Jf(i+t)),Gf(Wf(s+A)),Gf(Jf(o+t)),"c"].join(" "))},pd=function(A,t,e,r){for(var n=2*Math.PI,i=Math.PI/2;e<t;)t-=n;var s=Math.abs(e-t);s<n&&r&&(s=n-s);for(var o=[],a=r?-1:1,c=t;1e-5<s;){var l=c+a*Math.min(s,i);o.push(wd.call(this,A,c,l)),s-=Math.abs(l-c),c=l}return o},wd=function(A,t,e){var r=(e-t)/2,n=A*Math.cos(r),i=A*Math.sin(r),s=n,o=-i,a=s*s+o*o,c=a+s*n+o*i,a=4/3*(Math.sqrt(2*a*c)-c)/(s*i-o*n),c=s-a*o,i=o+a*s,n=c,o=-i,a=r+t,s=Math.cos(a),r=Math.sin(a);return{x1:A*Math.cos(t),y1:A*Math.sin(t),x2:c*s-i*r,y2:c*r+i*s,x3:n*s-o*r,y3:n*r+o*s,x4:A*Math.cos(e),y4:A*Math.sin(e)}},md=function(A){return 180*A/Math.PI},Cd=function(A,t,e,r,n,i){var s=A+.5*(e-A),o=t+.5*(r-t),e=n+.5*(e-n),r=i+.5*(r-i),a=Math.min(A,n,s,e),A=Math.max(A,n,s,e),n=Math.min(t,i,o,r),s=Math.max(t,i,o,r);return new qf(a,n,A-a,s-n)},Qd=function(A,t,e,r,n,i,s,o){for(var a,c,l,u,h,B,g,f,d=e-A,p=r-t,w=n-e,m=i-r,C=s-n,Q=o-i,y=0;y<41;y++)l=(c=(c=A+(u=y/40)*d)+u*((l=e+u*w)-c))+u*(l+u*(n+u*C-l)-c),u=(c=(c=t+u*p)+u*((a=r+u*m)-c))+u*(a+u*(i+u*Q-a)-c),f=0==y?(g=h=l,B=u):(h=Math.min(h,l),B=Math.min(B,u),g=Math.max(g,l),Math.max(f,u));return new qf(Math.round(h),Math.round(B),Math.round(g-h),Math.round(f-B))},yd=function(){var A,t;(this.prevLineDash||this.ctx.lineDash.length||this.ctx.lineDashOffset)&&(t=this.ctx.lineDash,A=this.ctx.lineDashOffset,t=JSON.stringify({lineDash:t,lineDashOffset:A}),this.prevLineDash!==t)&&(this.pdf.setLineDash(this.ctx.lineDash,this.ctx.lineDashOffset),this.prevLineDash=t)},ue.API.processDataByFilters=function(A,t){var e=0,r=A||"",n=[];for("string"==typeof(t=t||[])&&(t=[t]),e=0;e<t.length;e+=1)switch(t[e]){case"ASCII85Decode":case"/ASCII85Decode":r=(A=>{var t,e,r,n,i,s=String,o="length",a="charCodeAt";for(A.slice(-2),A=A.slice(0,-2).replace(/\s/g,"").replace("z","!!!!!"),r=[],n=0,i=(A+=t="uuuuu".slice(A[o]%5||5))[o];n<i;n+=5)e=52200625*(A[a](n)-33)+614125*(A[a](n+1)-33)+7225*(A[a](n+2)-33)+85*(A[a](n+3)-33)+(A[a](n+4)-33),r.push(255&e>>24,255&e>>16,255&e>>8,255&e);for(var c=r,l=t[o];0<l;l--)c.pop();return s.fromCharCode.apply(s,r)})(r),n.push("/ASCII85Encode");break;case"ASCII85Encode":case"/ASCII85Encode":r=(A=>{var t,e,r,n,i,s,o,a,c;for(/[^\x00-\xFF]/.test(A),e=[],r=0,n=(A+=t="\0\0\0\0".slice(A.length%4||4)).length;r<n;r+=4)0!==(s=(A.charCodeAt(r)<<24)+(A.charCodeAt(r+1)<<16)+(A.charCodeAt(r+2)<<8)+A.charCodeAt(r+3))?(i=((s=((s=((s=(s-(c=s%85))/85)-(a=s%85))/85)-(o=s%85))/85)-(s=s%85))/85%85,e.push(33+i,33+s,33+o,33+a,33+c)):e.push(122);for(var l=e,u=t.length;0<u;u--)l.pop();return String.fromCharCode.apply(String,e)+"~>"})(r),n.push("/ASCII85Decode");break;case"ASCIIHexDecode":case"/ASCIIHexDecode":r=(A=>{var t=new RegExp(/^([0-9A-Fa-f]{2})+$/);if((A=-1!==(A=A.replace(/\s/g,"")).indexOf(">")?A.substr(0,A.indexOf(">")):A).length%2&&(A+="0"),!1===t.test(A))return"";for(var e="",r=0;r<A.length;r+=2)e+=String.fromCharCode("0x"+(A[r]+A[r+1]));return e})(r),n.push("/ASCIIHexEncode");break;case"ASCIIHexEncode":case"/ASCIIHexEncode":r=r.split("").map(function(A){return("0"+A.charCodeAt().toString(16)).slice(-2)}).join("")+">",n.push("/ASCIIHexDecode");break;case"FlateEncode":case"/FlateEncode":r=(A=>{for(var t=new Uint8Array(A.length),e=A.length;e--;)t[e]=A.charCodeAt(e);return(t=oc(t)).reduce(function(A,t){return A+String.fromCharCode(t)},"")})(r),n.push("/FlateDecode");break;default:throw new Error('The filter: "'+t[e]+'" is not implemented')}return{data:r,reverseChain:n.reverse().join(" ")}},(s=ue.API).loadFile=function(A,t,e){var r=void 0,n=void 0,t=(r=!1!==t,n="function"==typeof e?e:function(){},void 0);try{t=((A,t,e)=>{function r(A){var t=A.length,e=[],r=String.fromCharCode;for(i=0;i<t;i+=1)e.push(r(255&A.charCodeAt(i)));return e.join("")}var n=new XMLHttpRequest,i=0;if(n.open("GET",A,!t),n.overrideMimeType("text/plain; charset=x-user-defined"),!1==t&&(n.onload=function(){200===n.status?e(r(this.responseText)):e(void 0)}),n.send(null),t&&200===n.status)return r(n.responseText)})(A,r,n)}catch(A){}return t},s.allowFsRead=void 0,s.loadImageFile=s.loadFile,A=ue.API,((o.prototype=Object.create(Promise.prototype)).constructor=o).convert=function(A,t){return A.__proto__=t||o.prototype,A},o.template={prop:{src:null,container:null,overlay:null,canvas:null,img:null,pdf:null,pageSize:null,callback:function(){}},progress:{val:0,state:null,n:0,stack:[]},opt:{filename:"file.pdf",margin:[0,0,0,0],enableLinks:!0,x:0,y:0,html2canvas:{},jsPDF:{},backgroundColor:"transparent"}},o.prototype.from=function(t,A){return this.then(function(){switch(A=A||(A=>{switch(np(A)){case"string":return"string";case"element":return"canvas"===A.nodeName.toLowerCase()?"canvas":"element";default:return"unknown"}})(t)){case"string":return this.then(rp).then(function(A){return this.set({src:ip("div",{innerHTML:t,dompurify:A})})});case"element":return this.set({src:t});case"canvas":return this.set({canvas:t});case"img":return this.set({img:t});default:return this.error("Unknown source type.")}})},o.prototype.to=function(A){switch(A){case"container":return this.toContainer();case"canvas":return this.toCanvas();case"img":return this.toImg();case"pdf":return this.toPdf();default:return this.error("Invalid target.")}},o.prototype.toContainer=function(){return this.thenList([function(){return this.prop.src||this.error("Cannot duplicate - no source HTML.")},function(){return this.prop.pageSize||this.setPageSize()}]).then(function(){var A={position:"relative",display:"inline-block",width:("number"!=typeof this.opt.width||isNaN(this.opt.width)||"number"!=typeof this.opt.windowWidth||isNaN(this.opt.windowWidth)?Math.max(this.prop.src.clientWidth,this.prop.src.scrollWidth,this.prop.src.offsetWidth):this.opt.windowWidth)+"px",left:0,right:0,top:0,margin:"auto",backgroundColor:this.opt.backgroundColor},t=sp(this.prop.src,this.opt.html2canvas.javascriptEnabled);"BODY"===t.tagName&&(A.height=Math.max(document.body.scrollHeight,document.body.offsetHeight,document.documentElement.clientHeight,document.documentElement.scrollHeight,document.documentElement.offsetHeight)+"px"),this.prop.overlay=ip("div",{className:"html2pdf__overlay",style:{position:"fixed",overflow:"hidden",zIndex:1e3,left:"-100000px",right:0,bottom:0,top:0}}),this.prop.container=ip("div",{className:"html2pdf__container",style:A}),this.prop.container.appendChild(t),this.prop.container.firstChild.appendChild(ip("div",{style:{clear:"both",border:"0 none transparent",margin:0,padding:0,height:0}})),this.prop.container.style.float="none",this.prop.overlay.appendChild(this.prop.container),document.body.appendChild(this.prop.overlay),this.prop.container.firstChild.style.position="relative",this.prop.container.height=Math.max(this.prop.container.firstChild.clientHeight,this.prop.container.firstChild.scrollHeight,this.prop.container.firstChild.offsetHeight)+"px"})},o.prototype.toCanvas=function(){return this.thenList([function(){return document.body.contains(this.prop.container)||this.toContainer()}]).then(ep).then(function(A){var t=Object.assign({},this.opt.html2canvas);return delete t.onrendered,A(this.prop.container,t)}).then(function(A){(this.opt.html2canvas.onrendered||function(){})(A),this.prop.canvas=A,document.body.removeChild(this.prop.overlay)})},o.prototype.toContext2d=function(){return this.thenList([function(){return document.body.contains(this.prop.container)||this.toContainer()}]).then(ep).then(function(A){var t=this.opt.jsPDF,e=this.opt.fontFaces,r="number"!=typeof this.opt.width||isNaN(this.opt.width)||"number"!=typeof this.opt.windowWidth||isNaN(this.opt.windowWidth)?1:this.opt.width/this.opt.windowWidth,r=Object.assign({async:!0,allowTaint:!0,scale:r,scrollX:this.opt.scrollX||0,scrollY:this.opt.scrollY||0,backgroundColor:"#ffffff",imageTimeout:15e3,logging:!0,proxy:null,removeContainer:!0,foreignObjectRendering:!1,useCORS:!1},this.opt.html2canvas);if(delete r.onrendered,t.context2d.autoPaging=void 0===this.opt.autoPaging||this.opt.autoPaging,t.context2d.posX=this.opt.x,t.context2d.posY=this.opt.y,t.context2d.margin=this.opt.margin,t.context2d.fontFaces=e)for(var n=0;n<e.length;++n){var i=e[n],s=i.src.find(function(A){return"truetype"===A.format});s&&t.addFont(s.url,i.ref.name,i.ref.style)}return r.windowHeight=r.windowHeight||0,r.windowHeight=0==r.windowHeight?Math.max(this.prop.container.clientHeight,this.prop.container.scrollHeight,this.prop.container.offsetHeight):r.windowHeight,t.context2d.save(!0),A(this.prop.container,r)}).then(function(A){this.opt.jsPDF.context2d.restore(!0),(this.opt.html2canvas.onrendered||function(){})(A),this.prop.canvas=A,document.body.removeChild(this.prop.overlay)})},o.prototype.toImg=function(){return this.thenList([function(){return this.prop.canvas||this.toCanvas()}]).then(function(){var A=this.prop.canvas.toDataURL("image/"+this.opt.image.type,this.opt.image.quality);this.prop.img=document.createElement("img"),this.prop.img.src=A})},o.prototype.toPdf=function(){return this.thenList([function(){return this.toContext2d()}]).then(function(){this.prop.pdf=this.prop.pdf||this.opt.jsPDF})},o.prototype.output=function(A,t,e){return"img"===(e=e||"pdf").toLowerCase()||"image"===e.toLowerCase()?this.outputImg(A,t):this.outputPdf(A,t)},o.prototype.outputPdf=function(A,t){return this.thenList([function(){return this.prop.pdf||this.toPdf()}]).then(function(){return this.prop.pdf.output(A,t)})},o.prototype.outputImg=function(A){return this.thenList([function(){return this.prop.img||this.toImg()}]).then(function(){switch(A){case void 0:case"img":return this.prop.img;case"datauristring":case"dataurlstring":return this.prop.img.src;case"datauri":case"dataurl":return document.location.href=this.prop.img.src;default:throw'Image output type "'+A+'" is not supported.'}})},o.prototype.save=function(A){return this.thenList([function(){return this.prop.pdf||this.toPdf()}]).set(A?{filename:A}:null).then(function(){this.prop.pdf.save(this.opt.filename)})},o.prototype.doCallback=function(){return this.thenList([function(){return this.prop.pdf||this.toPdf()}]).then(function(){this.prop.callback(this.prop.pdf)})},o.prototype.set=function(t){var A;return"object"!==np(t)?this:(A=Object.keys(t||{}).map(function(A){if(A in o.template.prop)return function(){this.prop[A]=t[A]};switch(A){case"margin":return this.setMargin.bind(this,t.margin);case"jsPDF":return function(){return this.opt.jsPDF=t.jsPDF,this.setPageSize()};case"pageSize":return this.setPageSize.bind(this,t.pageSize);default:return function(){this.opt[A]=t[A]}}},this),this.then(function(){return this.thenList(A)}))},o.prototype.get=function(t,e){return this.then(function(){var A=(t in o.template.prop?this.prop:this.opt)[t];return e?e(A):A})},o.prototype.setMargin=function(A){return this.then(function(){switch(np(A)){case"number":A=[A,A,A,A];case"array":if(4===(A=2===A.length?[A[0],A[1],A[0],A[1]]:A).length)break;default:return this.error("Invalid margin array.")}this.opt.margin=A}).then(this.setPageSize)},o.prototype.setPageSize=function(A){function t(A,t){return Math.floor(A*t/72*96)}return this.then(function(){(A=A||ue.getPageSize(this.opt.jsPDF)).hasOwnProperty("inner")||(A.inner={width:A.width-this.opt.margin[1]-this.opt.margin[3],height:A.height-this.opt.margin[0]-this.opt.margin[2]},A.inner.px={width:t(A.inner.width,A.k),height:t(A.inner.height,A.k)},A.inner.ratio=A.inner.height/A.inner.width),this.prop.pageSize=A})},o.prototype.setProgress=function(A,t,e,r){return null!=A&&(this.progress.val=A),null!=t&&(this.progress.state=t),null!=e&&(this.progress.n=e),null!=r&&(this.progress.stack=r),this.progress.ratio=this.progress.val/this.progress.state,this},o.prototype.updateProgress=function(A,t,e,r){return this.setProgress(A?this.progress.val+A:null,t||null,e?this.progress.n+e:null,r?this.progress.stack.concat(r):null)},o.prototype.then=function(A,t){var e=this;return this.thenCore(A,t,function(t,A){return e.updateProgress(null,null,1,[t]),Promise.prototype.then.call(this,function(A){return e.updateProgress(null,t),A}).then(t,A).then(function(A){return e.updateProgress(1),A})})},o.prototype.thenCore=function(A,t,e){e=e||Promise.prototype.then;A=A&&A.bind(this),t=t&&t.bind(this);var r=-1!==Promise.toString().indexOf("[native code]")&&"Promise"===Promise.name?this:o.convert(Object.assign({},this),Promise.prototype),e=e.call(r,A,t);return o.convert(e,this.__proto__)},o.prototype.thenExternal=function(A,t){return Promise.prototype.then.call(this,A,t)},o.prototype.thenList=function(A){var t=this;return A.forEach(function(A){t=t.thenCore(A)}),t},o.prototype.catch=function(A){A=A&&A.bind(this);A=Promise.prototype.catch.call(this,A);return o.convert(A,this)},o.prototype.catchExternal=function(A){return Promise.prototype.catch.call(this,A)},o.prototype.error=function(A){return this.then(function(){throw new Error(A)})},o.prototype.using=o.prototype.set,o.prototype.saveAs=o.prototype.save,o.prototype.export=o.prototype.output,o.prototype.run=o.prototype.then,ue.getPageSize=function(A,t,e){"object"===Ea(A)&&(A=(n=A).orientation,t=n.unit||t,e=n.format||e),t=t||"mm",e=e||"a4",A=(""+(A||"P")).toLowerCase();var r,n=(""+e).toLowerCase(),i={a0:[2383.94,3370.39],a1:[1683.78,2383.94],a2:[1190.55,1683.78],a3:[841.89,1190.55],a4:[595.28,841.89],a5:[419.53,595.28],a6:[297.64,419.53],a7:[209.76,297.64],a8:[147.4,209.76],a9:[104.88,147.4],a10:[73.7,104.88],b0:[2834.65,4008.19],b1:[2004.09,2834.65],b2:[1417.32,2004.09],b3:[1000.63,1417.32],b4:[708.66,1000.63],b5:[498.9,708.66],b6:[354.33,498.9],b7:[249.45,354.33],b8:[175.75,249.45],b9:[124.72,175.75],b10:[87.87,124.72],c0:[2599.37,3676.54],c1:[1836.85,2599.37],c2:[1298.27,1836.85],c3:[918.43,1298.27],c4:[649.13,918.43],c5:[459.21,649.13],c6:[323.15,459.21],c7:[229.61,323.15],c8:[161.57,229.61],c9:[113.39,161.57],c10:[79.37,113.39],dl:[311.81,623.62],letter:[612,792],"government-letter":[576,756],legal:[612,1008],"junior-legal":[576,360],ledger:[1224,792],tabloid:[792,1224],"credit-card":[153,243]};switch(t){case"pt":r=1;break;case"mm":r=72/25.4;break;case"cm":r=72/2.54;break;case"in":r=72;break;case"px":r=.75;break;case"pc":case"em":r=12;break;case"ex":r=6;break;default:throw"Invalid unit: "+t}var s,o=0,a=0;if(i.hasOwnProperty(n))o=i[n][1]/r,a=i[n][0]/r;else try{o=e[1],a=e[0]}catch(A){throw new Error("Invalid format: "+e)}if("p"===A||"portrait"===A)A="p",o<a&&(s=a,a=o,o=s);else{if("l"!==A&&"landscape"!==A)throw"Invalid orientation: "+A;A="l",a<o&&(s=a,a=o,o=s)}return{width:a,height:o,unit:t,k:r,orientation:A}},A.html=function(A,t){(t=t||{}).callback=t.callback||function(){},t.html2canvas=t.html2canvas||{},t.html2canvas.canvas=t.html2canvas.canvas||this.canvas,t.jsPDF=t.jsPDF||this,t.fontFaces=t.fontFaces?t.fontFaces.map(yf):null;var e=new o(t);return t.worker?e:e.from(A).doCallback()},ue.API.addJS=function(A){return Hf=A,this.internal.events.subscribe("postPutResources",function(){xf=this.internal.newObject(),this.internal.out("<<"),this.internal.out("/Names [(EmbeddedJS) "+(xf+1)+" 0 R]"),this.internal.out(">>"),this.internal.out("endobj"),If=this.internal.newObject(),this.internal.out("<<"),this.internal.out("/S /JavaScript"),this.internal.out("/JS ("+Hf+")"),this.internal.out(">>"),this.internal.out("endobj")}),this.internal.events.subscribe("putCatalog",function(){void 0!==xf&&void 0!==If&&this.internal.out("/Names <</JavaScript "+xf+" 0 R>>")}),this},(e=ue.API).events.push(["postPutResources",function(){var A=this,t=/^(\d+) 0 obj$/;if(0<this.outline.root.children.length)for(var e=A.outline.render().split(/\r\n/),r=0;r<e.length;r++){var n=e[r],i=t.exec(n);null!=i&&(i=i[1],A.internal.newObjectDeferredBegin(i,!1)),A.internal.write(n)}if(this.outline.createNamedDestinations){for(var s=this.internal.pages.length,o=[],r=0;r<s;r++){var a=A.internal.newObject(),a=(o.push(a),A.internal.getPageInfo(r+1));A.internal.write("<< /D["+a.objId+" 0 R /XYZ null null null]>> endobj")}var c=A.internal.newObject();for(A.internal.write("<< /Names [ "),r=0;r<o.length;r++)A.internal.write("(page_"+(r+1)+")"+o[r]+" 0 R");A.internal.write(" ] >>","endobj"),Vf=A.internal.newObject(),A.internal.write("<< /Dests "+c+" 0 R"),A.internal.write(">>","endobj")}}]),e.events.push(["putCatalog",function(){0<this.outline.root.children.length&&(this.internal.write("/Outlines",this.outline.makeRef(this.outline.root)),this.outline.createNamedDestinations)&&this.internal.write("/Names "+Vf+" 0 R")}]),e.events.push(["initialized",function(){var s=this;s.outline={createNamedDestinations:!1,root:{children:[]}},s.outline.add=function(A,t,e){t={title:t,options:e,children:[]};return(A=null==A?this.root:A).children.push(t),t},s.outline.render=function(){return this.ctx={},this.ctx.val="",this.ctx.pdf=s,this.genIds_r(this.root),this.renderRoot(this.root),this.renderItems(this.root),this.ctx.val},s.outline.genIds_r=function(A){A.id=s.internal.newObjectDeferred();for(var t=0;t<A.children.length;t++)this.genIds_r(A.children[t])},s.outline.renderRoot=function(A){this.objStart(A),this.line("/Type /Outlines"),0<A.children.length&&(this.line("/First "+this.makeRef(A.children[0])),this.line("/Last "+this.makeRef(A.children[A.children.length-1]))),this.line("/Count "+this.count_r({count:0},A)),this.objEnd()},s.outline.renderItems=function(A){for(var t=this.ctx.pdf.internal.getVerticalCoordinateString,e=0;e<A.children.length;e++){var r=A.children[e],n=(this.objStart(r),this.line("/Title "+this.makeString(r.title)),this.line("/Parent "+this.makeRef(A)),0<e&&this.line("/Prev "+this.makeRef(A.children[e-1])),e<A.children.length-1&&this.line("/Next "+this.makeRef(A.children[e+1])),0<r.children.length&&(this.line("/First "+this.makeRef(r.children[0])),this.line("/Last "+this.makeRef(r.children[r.children.length-1]))),this.count=this.count_r({count:0},r));0<n&&this.line("/Count "+n),r.options&&r.options.pageNumber&&(n=s.internal.getPageInfo(r.options.pageNumber),this.line("/Dest ["+n.objId+" 0 R /XYZ 0 "+t(0)+" 0]")),this.objEnd()}for(var i=0;i<A.children.length;i++)this.renderItems(A.children[i])},s.outline.line=function(A){this.ctx.val+=A+"\r\n"},s.outline.makeRef=function(A){return A.id+" 0 R"},s.outline.makeString=function(A){return"("+s.internal.pdfEscape(A)+")"},s.outline.objStart=function(A){this.ctx.val+="\r\n"+A.id+" 0 obj\r\n<<\r\n"},s.outline.objEnd=function(){this.ctx.val+=">> \r\nendobj\r\n"},s.outline.count_r=function(A,t){for(var e=0;e<t.children.length;e++)A.count++,this.count_r(A,t.children[e]);return A.count}}]),Rf=[192,193,194,195,196,197,198,199],ue.API.processJPEG=function(A,t,e,r,n,i){var s=this.decode.DCT_DECODE,o=null;if("string"==typeof A||this.__addimage__.isArrayBuffer(A)||this.__addimage__.isArrayBufferView(A)){switch(A=this.__addimage__.isArrayBuffer(A=n||A)?new Uint8Array(A):A,(n=(A=>{for(var t,e=256*A.charCodeAt(4)+A.charCodeAt(5),r=A.length,n={width:0,height:0,numcomponents:1},i=4;i<r;i+=2){if(i+=e,-1!==Rf.indexOf(A.charCodeAt(i+1))){t=256*A.charCodeAt(i+5)+A.charCodeAt(i+6),n={width:256*A.charCodeAt(i+7)+A.charCodeAt(i+8),height:t,numcomponents:A.charCodeAt(i+9)};break}e=256*A.charCodeAt(i+2)+A.charCodeAt(i+3)}return n})(A=this.__addimage__.isArrayBufferView(A)?this.__addimage__.arrayBufferToBinaryString(A):A)).numcomponents){case 1:i=this.color_spaces.DEVICE_GRAY;break;case 4:i=this.color_spaces.DEVICE_CMYK;break;case 3:i=this.color_spaces.DEVICE_RGB}o={data:A,width:n.width,height:n.height,colorSpace:i,bitsPerComponent:8,filter:s,index:t,alias:e}}return o},ue.API.processPNG=function(A,t,e,r){var m,n,i,s,o,a,c,l,u,h,B,g,f,d,p,w,C;if(this.__addimage__.isArrayBuffer(A)&&(A=new Uint8Array(A)),this.__addimage__.isArrayBufferView(A))return w=A,C={checkCrc:!0},w=(m=new uB(w,C).decode()).width,C=m.height,d=m.channels,n=m.depth,d=(p=m.palette&&1===d?(()=>{for(var A=m.width,t=m.height,e=m.data,r=m.palette,n=m.depth,i=!1,s=[],o=[],a=void 0,c=!1,l=0,u=0;u<r.length;u++){var h=Bc(r[u],4),B=h[0],g=h[3];s.push(B,h[1],h[2]),null!=g&&(0===g?(l++,o.length<1&&o.push(u)):g<255&&(c=!0))}if(c||1<l)for(var i=!0,o=void 0,f=A*t,a=new Uint8Array(f),d=new DataView(e.buffer),p=0;p<f;p++){var w=Hd(d,p,n),w=Bc(r[w],4)[3];a[p]=w}else 0===l&&(o=void 0);return{colorSpace:"Indexed",colorsPerPixel:1,sMaskBitsPerComponent:i?8:void 0,colorBytes:e,alphaBytes:a,needSMask:i,palette:s,mask:o}})():2===d||4===d?(()=>{for(var A=m.data,t=m.channels,e=m.depth,r=2===t?"DeviceGray":"DeviceRGB",n=t-1,i=m.width*m.height,s=n,o=i,a=Math.ceil(i*s*e/8),o=Math.ceil(o*e/8),a=new Uint8Array(a),o=new Uint8Array(o),c=new DataView(A.buffer),l=new DataView(a.buffer),u=new DataView(o.buffer),h=!1,B=0;B<i;B++){for(var g=B*t,f=0;f<s;f++)Ld(l,Hd(c,g+f,e),B*s+f,e);var d=Hd(c,g+s,e);d<(1<<e)-1&&(h=!0),Ld(u,d,+B,e)}return{colorSpace:r,colorsPerPixel:n,sMaskBitsPerComponent:h?e:void 0,colorBytes:a,alphaBytes:o,needSMask:h}})():(d=m.data,{colorSpace:p=1===m.channels?"DeviceGray":"DeviceRGB",colorsPerPixel:"DeviceGray"==p?1:3,colorBytes:d instanceof Uint16Array?(A=>{for(var t=A.length,e=new Uint8Array(2*t),r=new DataView(e.buffer,e.byteOffset,e.byteLength),n=0;n<t;n++)r.setUint16(2*n,A[n],!1);return e})(d):d,needSMask:!1})).colorSpace,a=p.colorsPerPixel,c=p.sMaskBitsPerComponent,l=p.colorBytes,u=p.alphaBytes,h=p.needSMask,B=p.palette,g=p.mask,f=null,r!==ue.API.image_compression.NONE?(f=(()=>{var A;switch(r){case ue.API.image_compression.FAST:A=11;break;case ue.API.image_compression.MEDIUM:A=13;break;case ue.API.image_compression.SLOW:A=14;break;default:A=12}return A})(),i=this.decode.FLATE_DECODE,s="/Predictor ".concat(f," /Colors ").concat(a," /BitsPerComponent ").concat(n," /Columns ").concat(w),A=Ud(l,Math.ceil(w*a*n/8),a,n,r),h&&(o=Ud(u,Math.ceil(w*c/8),1,c,r))):(s=i=void 0,A=l,h&&(o=u)),{alias:e,data:A=this.__addimage__.isArrayBuffer(A)||this.__addimage__.isArrayBufferView(A)?this.__addimage__.arrayBufferToBinaryString(A):A,index:t,filter:i,decodeParameters:s,transparency:g,palette:B,sMask:o=o&&this.__addimage__.isArrayBuffer(o)||this.__addimage__.isArrayBufferView(o)?this.__addimage__.arrayBufferToBinaryString(o):o,predictor:f,width:w,height:C,bitsPerComponent:n,sMaskBitsPerComponent:c,colorSpace:d}},(Kf=ue.API).processGIF89A=function(A,t,e,r){var A=new Nd(A),n=A.width,i=A.height,s=[],A=(A.decodeAndBlitFrameRGBA(0,s),{data:s,width:n,height:i}),s=new Td(100).encode(A,100);return Kf.processJPEG.call(this,s,t,e,r)},Kf.processGIF87A=Kf.processGIF89A,Dd.prototype.parseHeader=function(){if(this.fileSize=this.datav.getUint32(this.pos,!0),this.pos+=4,this.reserved=this.datav.getUint32(this.pos,!0),this.pos+=4,this.offset=this.datav.getUint32(this.pos,!0),this.pos+=4,this.headerSize=this.datav.getUint32(this.pos,!0),this.pos+=4,this.width=this.datav.getUint32(this.pos,!0),this.pos+=4,this.height=this.datav.getInt32(this.pos,!0),this.pos+=4,this.planes=this.datav.getUint16(this.pos,!0),this.pos+=2,this.bitPP=this.datav.getUint16(this.pos,!0),this.pos+=2,this.compress=this.datav.getUint32(this.pos,!0),this.pos+=4,this.rawSize=this.datav.getUint32(this.pos,!0),this.pos+=4,this.hr=this.datav.getUint32(this.pos,!0),this.pos+=4,this.vr=this.datav.getUint32(this.pos,!0),this.pos+=4,this.colors=this.datav.getUint32(this.pos,!0),this.pos+=4,this.importantColors=this.datav.getUint32(this.pos,!0),this.pos+=4,16===this.bitPP&&this.is_with_alpha&&(this.bitPP=15),this.bitPP<15){var A=0===this.colors?1<<this.bitPP:this.colors;this.palette=new Array(A);for(var t=0;t<A;t++){var e=this.datav.getUint8(this.pos++,!0),r=this.datav.getUint8(this.pos++,!0),n=this.datav.getUint8(this.pos++,!0),i=this.datav.getUint8(this.pos++,!0);this.palette[t]={red:n,green:r,blue:e,quad:i}}}this.height<0&&(this.height*=-1,this.bottom_up=!1)},Dd.prototype.parseBGR=function(){this.pos=this.offset;try{var A="bit"+this.bitPP,t=this.width*this.height*4;this.data=new Uint8Array(t),this[A]()}catch(A){BB.log("bit decode error:"+A)}},Dd.prototype.bit1=function(){for(var A=Math.ceil(this.width/8),t=A%4,e=this.height-1;0<=e;e--){for(var r=this.bottom_up?e:this.height-1-e,n=0;n<A;n++)for(var i=this.datav.getUint8(this.pos++,!0),s=r*this.width*4+8*n*4,o=0;o<8&&8*n+o<this.width;o++){var a=this.palette[i>>7-o&1];this.data[s+4*o]=a.blue,this.data[s+4*o+1]=a.green,this.data[s+4*o+2]=a.red,this.data[s+4*o+3]=255}0!=t&&(this.pos+=4-t)}},Dd.prototype.bit4=function(){for(var A=Math.ceil(this.width/2),t=A%4,e=this.height-1;0<=e;e--){for(var r=this.bottom_up?e:this.height-1-e,n=0;n<A;n++){var i=this.datav.getUint8(this.pos++,!0),s=r*this.width*4+2*n*4,o=15&i,i=this.palette[i>>4];if(this.data[s]=i.blue,this.data[1+s]=i.green,this.data[2+s]=i.red,this.data[3+s]=255,2*n+1>=this.width)break;i=this.palette[o],this.data[4+s]=i.blue,this.data[4+s+1]=i.green,this.data[4+s+2]=i.red,this.data[4+s+3]=255}0!=t&&(this.pos+=4-t)}},Dd.prototype.bit8=function(){for(var A=this.width%4,t=this.height-1;0<=t;t--){for(var e=this.bottom_up?t:this.height-1-t,r=0;r<this.width;r++){var n=this.datav.getUint8(this.pos++,!0),i=e*this.width*4+4*r;n<this.palette.length?(n=this.palette[n],this.data[i]=n.red,this.data[1+i]=n.green,this.data[2+i]=n.blue):(this.data[i]=255,this.data[1+i]=255,this.data[2+i]=255),this.data[3+i]=255}0!=A&&(this.pos+=4-A)}},Dd.prototype.bit15=function(){for(var A=this.width%3,t=parseInt("11111",2),e=this.height-1;0<=e;e--){for(var r=this.bottom_up?e:this.height-1-e,n=0;n<this.width;n++){var i=this.datav.getUint16(this.pos,!0),s=(this.pos+=2,(i&t)/t*255|0),o=(i>>5&t)/t*255|0,a=i>>15?255:0,c=r*this.width*4+4*n;this.data[c]=(i>>10&t)/t*255|0,this.data[1+c]=o,this.data[2+c]=s,this.data[3+c]=a}this.pos+=A}},Dd.prototype.bit16=function(){for(var A=this.width%3,t=parseInt("11111",2),e=parseInt("111111",2),r=this.height-1;0<=r;r--){for(var n=this.bottom_up?r:this.height-1-r,i=0;i<this.width;i++){var s=this.datav.getUint16(this.pos,!0),o=(this.pos+=2,(s&t)/t*255|0),a=(s>>5&e)/e*255|0,c=n*this.width*4+4*i;this.data[c]=(s>>11)/t*255|0,this.data[1+c]=a,this.data[2+c]=o,this.data[3+c]=255}this.pos+=A}},Dd.prototype.bit24=function(){for(var A=this.height-1;0<=A;A--){for(var t=this.bottom_up?A:this.height-1-A,e=0;e<this.width;e++){var r=this.datav.getUint8(this.pos++,!0),n=this.datav.getUint8(this.pos++,!0),i=this.datav.getUint8(this.pos++,!0),s=t*this.width*4+4*e;this.data[s]=i,this.data[1+s]=n,this.data[2+s]=r,this.data[3+s]=255}this.pos+=this.width%4}},Dd.prototype.bit32=function(){for(var A=this.height-1;0<=A;A--)for(var t=this.bottom_up?A:this.height-1-A,e=0;e<this.width;e++){var r=this.datav.getUint8(this.pos++,!0),n=this.datav.getUint8(this.pos++,!0),i=this.datav.getUint8(this.pos++,!0),s=this.datav.getUint8(this.pos++,!0),o=t*this.width*4+4*e;this.data[o]=i,this.data[1+o]=n,this.data[2+o]=r,this.data[3+o]=s}},Dd.prototype.getData=function(){return this.data},(kf=ue.API).processBMP=function(A,t,e,r){var A=new Dd(A,!1),n=A.width,i=A.height,A={data:A.getData(),width:n,height:i},n=new Td(100).encode(A,100);return kf.processJPEG.call(this,n,t,e,r)},Od.prototype.getData=function(){return this.data},(Mf=ue.API).processWEBP=function(A,t,e,r){var A=new Od(A),n=A.width,i=A.height,A={data:A.getData(),width:n,height:i},n=new Td(100).encode(A,100);return Mf.processJPEG.call(this,n,t,e,r)},ue.API.processRGBA=function(A,t,e){for(var r=A.data,n=r.length,i=new Uint8Array(n/4*3),s=new Uint8Array(n/4),o=0,a=0,c=0;c<n;c+=4){var l=r[c],u=r[c+1],h=r[c+2],B=r[c+3];i[o++]=l,i[o++]=u,i[o++]=h,s[a++]=B}var g=this.__addimage__.arrayBufferToBinaryString(i);return{alpha:this.__addimage__.arrayBufferToBinaryString(s),data:g,index:t,alias:e,colorSpace:"DeviceRGB",bitsPerComponent:8,width:A.width,height:A.height}},ue.API.setLanguage=function(A){return void 0===this.internal.languageSettings&&(this.internal.languageSettings={},this.internal.languageSettings.isSubscribed=!1),void 0!=={af:"Afrikaans",sq:"Albanian",ar:"Arabic (Standard)","ar-DZ":"Arabic (Algeria)","ar-BH":"Arabic (Bahrain)","ar-EG":"Arabic (Egypt)","ar-IQ":"Arabic (Iraq)","ar-JO":"Arabic (Jordan)","ar-KW":"Arabic (Kuwait)","ar-LB":"Arabic (Lebanon)","ar-LY":"Arabic (Libya)","ar-MA":"Arabic (Morocco)","ar-OM":"Arabic (Oman)","ar-QA":"Arabic (Qatar)","ar-SA":"Arabic (Saudi Arabia)","ar-SY":"Arabic (Syria)","ar-TN":"Arabic (Tunisia)","ar-AE":"Arabic (U.A.E.)","ar-YE":"Arabic (Yemen)",an:"Aragonese",hy:"Armenian",as:"Assamese",ast:"Asturian",az:"Azerbaijani",eu:"Basque",be:"Belarusian",bn:"Bengali",bs:"Bosnian",br:"Breton",bg:"Bulgarian",my:"Burmese",ca:"Catalan",ch:"Chamorro",ce:"Chechen",zh:"Chinese","zh-HK":"Chinese (Hong Kong)","zh-CN":"Chinese (PRC)","zh-SG":"Chinese (Singapore)","zh-TW":"Chinese (Taiwan)",cv:"Chuvash",co:"Corsican",cr:"Cree",hr:"Croatian",cs:"Czech",da:"Danish",nl:"Dutch (Standard)","nl-BE":"Dutch (Belgian)",en:"English","en-AU":"English (Australia)","en-BZ":"English (Belize)","en-CA":"English (Canada)","en-IE":"English (Ireland)","en-JM":"English (Jamaica)","en-NZ":"English (New Zealand)","en-PH":"English (Philippines)","en-ZA":"English (South Africa)","en-TT":"English (Trinidad & Tobago)","en-GB":"English (United Kingdom)","en-US":"English (United States)","en-ZW":"English (Zimbabwe)",eo:"Esperanto",et:"Estonian",fo:"Faeroese",fj:"Fijian",fi:"Finnish",fr:"French (Standard)","fr-BE":"French (Belgium)","fr-CA":"French (Canada)","fr-FR":"French (France)","fr-LU":"French (Luxembourg)","fr-MC":"French (Monaco)","fr-CH":"French (Switzerland)",fy:"Frisian",fur:"Friulian",gd:"Gaelic (Scots)","gd-IE":"Gaelic (Irish)",gl:"Galacian",ka:"Georgian",de:"German (Standard)","de-AT":"German (Austria)","de-DE":"German (Germany)","de-LI":"German (Liechtenstein)","de-LU":"German (Luxembourg)","de-CH":"German (Switzerland)",el:"Greek",gu:"Gujurati",ht:"Haitian",he:"Hebrew",hi:"Hindi",hu:"Hungarian",is:"Icelandic",id:"Indonesian",iu:"Inuktitut",ga:"Irish",it:"Italian (Standard)","it-CH":"Italian (Switzerland)",ja:"Japanese",kn:"Kannada",ks:"Kashmiri",kk:"Kazakh",km:"Khmer",ky:"Kirghiz",tlh:"Klingon",ko:"Korean","ko-KP":"Korean (North Korea)","ko-KR":"Korean (South Korea)",la:"Latin",lv:"Latvian",lt:"Lithuanian",lb:"Luxembourgish",mk:"North Macedonia",ms:"Malay",ml:"Malayalam",mt:"Maltese",mi:"Maori",mr:"Marathi",mo:"Moldavian",nv:"Navajo",ng:"Ndonga",ne:"Nepali",no:"Norwegian",nb:"Norwegian (Bokmal)",nn:"Norwegian (Nynorsk)",oc:"Occitan",or:"Oriya",om:"Oromo",fa:"Persian","fa-IR":"Persian/Iran",pl:"Polish",pt:"Portuguese","pt-BR":"Portuguese (Brazil)",pa:"Punjabi","pa-IN":"Punjabi (India)","pa-PK":"Punjabi (Pakistan)",qu:"Quechua",rm:"Rhaeto-Romanic",ro:"Romanian","ro-MO":"Romanian (Moldavia)",ru:"Russian","ru-MO":"Russian (Moldavia)",sz:"Sami (Lappish)",sg:"Sango",sa:"Sanskrit",sc:"Sardinian",sd:"Sindhi",si:"Singhalese",sr:"Serbian",sk:"Slovak",sl:"Slovenian",so:"Somani",sb:"Sorbian",es:"Spanish","es-AR":"Spanish (Argentina)","es-BO":"Spanish (Bolivia)","es-CL":"Spanish (Chile)","es-CO":"Spanish (Colombia)","es-CR":"Spanish (Costa Rica)","es-DO":"Spanish (Dominican Republic)","es-EC":"Spanish (Ecuador)","es-SV":"Spanish (El Salvador)","es-GT":"Spanish (Guatemala)","es-HN":"Spanish (Honduras)","es-MX":"Spanish (Mexico)","es-NI":"Spanish (Nicaragua)","es-PA":"Spanish (Panama)","es-PY":"Spanish (Paraguay)","es-PE":"Spanish (Peru)","es-PR":"Spanish (Puerto Rico)","es-ES":"Spanish (Spain)","es-UY":"Spanish (Uruguay)","es-VE":"Spanish (Venezuela)",sx:"Sutu",sw:"Swahili",sv:"Swedish","sv-FI":"Swedish (Finland)","sv-SV":"Swedish (Sweden)",ta:"Tamil",tt:"Tatar",te:"Teluga",th:"Thai",tig:"Tigre",ts:"Tsonga",tn:"Tswana",tr:"Turkish",tk:"Turkmen",uk:"Ukrainian",hsb:"Upper Sorbian",ur:"Urdu",ve:"Venda",vi:"Vietnamese",vo:"Volapuk",wa:"Walloon",cy:"Welsh",xh:"Xhosa",ji:"Yiddish",zu:"Zulu"}[A]&&(this.internal.languageSettings.languageCode=A,!1===this.internal.languageSettings.isSubscribed)&&(this.internal.events.subscribe("putCatalog",function(){this.internal.write("/Lang ("+this.internal.languageSettings.languageCode+")")}),this.internal.languageSettings.isSubscribed=!0),this},Sf=(Lf=ue.API).getCharWidthsArray=function(A,t){for(var e,r,n=(t=t||{}).font||this.internal.getFont(),i=t.fontSize||this.internal.getFontSize(),s=t.charSpace||this.internal.getCharSpace(),o=t.widths||n.metadata.Unicode.widths,a=o.fof||1,c=t.kerning||n.metadata.Unicode.kerning,l=c.fof||1,u=!1!==t.doKerning,h=A.length,B=0,g=o[0]||a,f=[],d=0;d<h;d++)e=A.charCodeAt(d),"function"==typeof n.metadata.widthOfString?f.push((n.metadata.widthOfGlyph(n.metadata.characterToGlyph(e))+s*(1e3/i)||0)/1e3):(r=u&&"object"===Ea(c[e])&&!isNaN(parseInt(c[e][B],10))?c[e][B]/l:0,f.push((o[e]||g)/a+r)),B=e;return f},Nf=Lf.getStringUnitWidth=function(A,t){var e=(t=t||{}).fontSize||this.internal.getFontSize(),r=t.font||this.internal.getFont(),t=t.charSpace||this.internal.getCharSpace();return Lf.processArabic&&(A=Lf.processArabic(A)),"function"==typeof r.metadata.widthOfString?r.metadata.widthOfString(A,e,t)/e:Sf.apply(this,arguments).reduce(function(A,t){return A+t},0)},_f=function(A,t,e,r){for(var n=[],i=0,s=A.length,o=0;i!==s&&o+t[i]<e;)o+=t[i],i++;n.push(A.slice(0,i));for(var a=i,o=0;i!==s;)o+t[i]>r&&(n.push(A.slice(a,i)),o=0,a=i),o+=t[i],i++;return a!==i&&n.push(A.slice(a,i)),n},Tf=function(A,t,e){var r,n,i,s,o,a,c,l=[],u=[l],h=(e=e||{}).textIndent||0,B=0,g=0,f=A.split(" "),d=Sf.apply(this,[" ",e])[0];for((o=-1===e.lineIndent?f[0].length+2:e.lineIndent||0)&&(a=Array(o).join(" "),c=[],f.map(function(A){1<(A=A.split(/\s*\n/)).length?c=c.concat(A.map(function(A,t){return(t&&A.length?"\n":"")+A})):c.push(A[0])}),f=c,o=Nf.apply(this,[a,e])),n=0,i=f.length;n<i;n++){var p=0,w=f[n];if(o&&"\n"==w[0]&&(w=w.substr(1),p=1),h+B+(g=(r=Sf.apply(this,[w,e])).reduce(function(A,t){return A+t},0))>t||p){if(t<g){for(s=_f.apply(this,[w,r,t-(h+B),t]),l.push(s.shift()),l=[s.pop()];s.length;)u.push([s.shift()]);g=r.slice(w.length-(l[0]?l[0].length:0)).reduce(function(A,t){return A+t},0)}else l=[w];u.push(l),h=g+o}else l.push(w),h+=B+g;B=d}return u.map(o?function(A,t){return(t?a:"")+A.join(" ")}:function(A){return A.join(" ")})},Lf.splitTextToSize=function(A,t,e){var r=(e=e||{}).fontSize||this.internal.getFontSize(),n=function(A){var t;return A.widths&&A.kerning?{widths:A.widths,kerning:A.kerning}:(A=this.internal.getFont(A.fontName,A.fontStyle)).metadata[t="Unicode"]?{widths:A.metadata[t].widths||{0:1},kerning:A.metadata[t].kerning||{}}:{font:A.metadata,fontSize:this.internal.getFontSize(),charSpace:this.internal.getCharSpace()}}.call(this,e),i=Array.isArray(A)?A:String(A).split(/\r?\n/),s=+this.internal.scaleFactor*t/r;n.textIndent=e.textIndent?+e.textIndent*this.internal.scaleFactor/r:0,n.lineIndent=e.lineIndent;for(var o=[],a=0,c=i.length;a<c;a++)o=o.concat(Tf.apply(this,[i[a],s,n]));return o};t=ue.API;t.__fontmetrics__=t.__fontmetrics__||{};for(var Pd="0123456789abcdef",Md="klmnopqrstuvwxyz",kd={},Kd={},Rd=0;Rd<16;Rd++)kd[Md[Rd]]=Pd[Rd],Kd[Pd[Rd]]=Md[Rd];function Vd(A){return"0x"+parseInt(A,10).toString(16)}var Gd=t.__fontmetrics__.compress=function(A){var t,e,r,n,i=["{"];for(n in A){if(t=A[n],e=isNaN(parseInt(n,10))?"'"+n+"'":(n=parseInt(n,10),(e=Vd(n).slice(2)).slice(0,-1)+Kd[e.slice(-1)]),"number"==typeof t)r=(t<0?(r=Vd(t).slice(3),"-"):(r=Vd(t).slice(2),""))+r.slice(0,-1)+Kd[r.slice(-1)];else{if("object"!==Ea(t))throw new Error("Don't know what to do with value type "+Ea(t)+".");r=Gd(t)}i.push(e+r)}return i.push("}"),i.join("")},n=t.__fontmetrics__.uncompress=function(A){if("string"!=typeof A)throw new Error("Invalid argument passed to uncompress.");for(var t,e,r,n,i={},s=1,o=i,a=[],c="",l="",u=A.length-1,h=1;h<u;h+=1)"'"==(n=A[h])?t=t?void(r=t.join("")):[]:t?t.push(n):"{"==n?(a.push([o,r]),o={},r=void 0):"}"==n?((e=a.pop())[0][e[1]]=o,r=void 0,o=e[0]):"-"==n?s=-1:void 0===r?kd.hasOwnProperty(n)?(c+=kd[n],r=parseInt(c,16)*s,s=1,c=""):c+=n:kd.hasOwnProperty(n)?(l+=kd[n],o[r]=parseInt(l,16)*s,s=1,r=void 0,l=""):l+=n;return i},i={codePages:["WinAnsiEncoding"],WinAnsiEncoding:n("{19m8n201n9q201o9r201s9l201t9m201u8m201w9n201x9o201y8o202k8q202l8r202m9p202q8p20aw8k203k8t203t8v203u9v2cq8s212m9t15m8w15n9w2dw9s16k8u16l9u17s9z17x8y17y9y}")},jd={Unicode:{Courier:i,"Courier-Bold":i,"Courier-BoldOblique":i,"Courier-Oblique":i,Helvetica:i,"Helvetica-Bold":i,"Helvetica-BoldOblique":i,"Helvetica-Oblique":i,"Times-Roman":i,"Times-Bold":i,"Times-BoldItalic":i,"Times-Italic":i}},Xd={Unicode:{"Courier-Oblique":n("{'widths'{k3w'fof'6o}'kerning'{'fof'-6o}}"),"Times-BoldItalic":n("{'widths'{k3o2q4ycx2r201n3m201o6o201s2l201t2l201u2l201w3m201x3m201y3m2k1t2l2r202m2n2n3m2o3m2p5n202q6o2r1w2s2l2t2l2u3m2v3t2w1t2x2l2y1t2z1w3k3m3l3m3m3m3n3m3o3m3p3m3q3m3r3m3s3m203t2l203u2l3v2l3w3t3x3t3y3t3z3m4k5n4l4m4m4m4n4m4o4s4p4m4q4m4r4s4s4y4t2r4u3m4v4m4w3x4x5t4y4s4z4s5k3x5l4s5m4m5n3r5o3x5p4s5q4m5r5t5s4m5t3x5u3x5v2l5w1w5x2l5y3t5z3m6k2l6l3m6m3m6n2w6o3m6p2w6q2l6r3m6s3r6t1w6u1w6v3m6w1w6x4y6y3r6z3m7k3m7l3m7m2r7n2r7o1w7p3r7q2w7r4m7s3m7t2w7u2r7v2n7w1q7x2n7y3t202l3mcl4mal2ram3man3mao3map3mar3mas2lat4uau1uav3maw3way4uaz2lbk2sbl3t'fof'6obo2lbp3tbq3mbr1tbs2lbu1ybv3mbz3mck4m202k3mcm4mcn4mco4mcp4mcq5ycr4mcs4mct4mcu4mcv4mcw2r2m3rcy2rcz2rdl4sdm4sdn4sdo4sdp4sdq4sds4sdt4sdu4sdv4sdw4sdz3mek3mel3mem3men3meo3mep3meq4ser2wes2wet2weu2wev2wew1wex1wey1wez1wfl3rfm3mfn3mfo3mfp3mfq3mfr3tfs3mft3rfu3rfv3rfw3rfz2w203k6o212m6o2dw2l2cq2l3t3m3u2l17s3x19m3m}'kerning'{cl{4qu5kt5qt5rs17ss5ts}201s{201ss}201t{cks4lscmscnscoscpscls2wu2yu201ts}201x{2wu2yu}2k{201ts}2w{4qx5kx5ou5qx5rs17su5tu}2x{17su5tu5ou}2y{4qx5kx5ou5qx5rs17ss5ts}'fof'-6ofn{17sw5tw5ou5qw5rs}7t{cksclscmscnscoscps4ls}3u{17su5tu5os5qs}3v{17su5tu5os5qs}7p{17su5tu}ck{4qu5kt5qt5rs17ss5ts}4l{4qu5kt5qt5rs17ss5ts}cm{4qu5kt5qt5rs17ss5ts}cn{4qu5kt5qt5rs17ss5ts}co{4qu5kt5qt5rs17ss5ts}cp{4qu5kt5qt5rs17ss5ts}6l{4qu5ou5qw5rt17su5tu}5q{ckuclucmucnucoucpu4lu}5r{ckuclucmucnucoucpu4lu}7q{cksclscmscnscoscps4ls}6p{4qu5ou5qw5rt17sw5tw}ek{4qu5ou5qw5rt17su5tu}el{4qu5ou5qw5rt17su5tu}em{4qu5ou5qw5rt17su5tu}en{4qu5ou5qw5rt17su5tu}eo{4qu5ou5qw5rt17su5tu}ep{4qu5ou5qw5rt17su5tu}es{17ss5ts5qs4qu}et{4qu5ou5qw5rt17sw5tw}eu{4qu5ou5qw5rt17ss5ts}ev{17ss5ts5qs4qu}6z{17sw5tw5ou5qw5rs}fm{17sw5tw5ou5qw5rs}7n{201ts}fo{17sw5tw5ou5qw5rs}fp{17sw5tw5ou5qw5rs}fq{17sw5tw5ou5qw5rs}7r{cksclscmscnscoscps4ls}fs{17sw5tw5ou5qw5rs}ft{17su5tu}fu{17su5tu}fv{17su5tu}fw{17su5tu}fz{cksclscmscnscoscps4ls}}}"),"Helvetica-Bold":n("{'widths'{k3s2q4scx1w201n3r201o6o201s1w201t1w201u1w201w3m201x3m201y3m2k1w2l2l202m2n2n3r2o3r2p5t202q6o2r1s2s2l2t2l2u2r2v3u2w1w2x2l2y1w2z1w3k3r3l3r3m3r3n3r3o3r3p3r3q3r3r3r3s3r203t2l203u2l3v2l3w3u3x3u3y3u3z3x4k6l4l4s4m4s4n4s4o4s4p4m4q3x4r4y4s4s4t1w4u3r4v4s4w3x4x5n4y4s4z4y5k4m5l4y5m4s5n4m5o3x5p4s5q4m5r5y5s4m5t4m5u3x5v2l5w1w5x2l5y3u5z3r6k2l6l3r6m3x6n3r6o3x6p3r6q2l6r3x6s3x6t1w6u1w6v3r6w1w6x5t6y3x6z3x7k3x7l3x7m2r7n3r7o2l7p3x7q3r7r4y7s3r7t3r7u3m7v2r7w1w7x2r7y3u202l3rcl4sal2lam3ran3rao3rap3rar3ras2lat4tau2pav3raw3uay4taz2lbk2sbl3u'fof'6obo2lbp3xbq3rbr1wbs2lbu2obv3rbz3xck4s202k3rcm4scn4sco4scp4scq6ocr4scs4mct4mcu4mcv4mcw1w2m2zcy1wcz1wdl4sdm4ydn4ydo4ydp4ydq4yds4ydt4sdu4sdv4sdw4sdz3xek3rel3rem3ren3reo3rep3req5ter3res3ret3reu3rev3rew1wex1wey1wez1wfl3xfm3xfn3xfo3xfp3xfq3xfr3ufs3xft3xfu3xfv3xfw3xfz3r203k6o212m6o2dw2l2cq2l3t3r3u2l17s4m19m3r}'kerning'{cl{4qs5ku5ot5qs17sv5tv}201t{2ww4wy2yw}201w{2ks}201x{2ww4wy2yw}2k{201ts201xs}2w{7qs4qu5kw5os5qw5rs17su5tu7tsfzs}2x{5ow5qs}2y{7qs4qu5kw5os5qw5rs17su5tu7tsfzs}'fof'-6o7p{17su5tu5ot}ck{4qs5ku5ot5qs17sv5tv}4l{4qs5ku5ot5qs17sv5tv}cm{4qs5ku5ot5qs17sv5tv}cn{4qs5ku5ot5qs17sv5tv}co{4qs5ku5ot5qs17sv5tv}cp{4qs5ku5ot5qs17sv5tv}6l{17st5tt5os}17s{2kwclvcmvcnvcovcpv4lv4wwckv}5o{2kucltcmtcntcotcpt4lt4wtckt}5q{2ksclscmscnscoscps4ls4wvcks}5r{2ks4ws}5t{2kwclvcmvcnvcovcpv4lv4wwckv}eo{17st5tt5os}fu{17su5tu5ot}6p{17ss5ts}ek{17st5tt5os}el{17st5tt5os}em{17st5tt5os}en{17st5tt5os}6o{201ts}ep{17st5tt5os}es{17ss5ts}et{17ss5ts}eu{17ss5ts}ev{17ss5ts}6z{17su5tu5os5qt}fm{17su5tu5os5qt}fn{17su5tu5os5qt}fo{17su5tu5os5qt}fp{17su5tu5os5qt}fq{17su5tu5os5qt}fs{17su5tu5os5qt}ft{17su5tu5ot}7m{5os}fv{17su5tu5ot}fw{17su5tu5ot}}}"),Courier:n("{'widths'{k3w'fof'6o}'kerning'{'fof'-6o}}"),"Courier-BoldOblique":n("{'widths'{k3w'fof'6o}'kerning'{'fof'-6o}}"),"Times-Bold":n("{'widths'{k3q2q5ncx2r201n3m201o6o201s2l201t2l201u2l201w3m201x3m201y3m2k1t2l2l202m2n2n3m2o3m2p6o202q6o2r1w2s2l2t2l2u3m2v3t2w1t2x2l2y1t2z1w3k3m3l3m3m3m3n3m3o3m3p3m3q3m3r3m3s3m203t2l203u2l3v2l3w3t3x3t3y3t3z3m4k5x4l4s4m4m4n4s4o4s4p4m4q3x4r4y4s4y4t2r4u3m4v4y4w4m4x5y4y4s4z4y5k3x5l4y5m4s5n3r5o4m5p4s5q4s5r6o5s4s5t4s5u4m5v2l5w1w5x2l5y3u5z3m6k2l6l3m6m3r6n2w6o3r6p2w6q2l6r3m6s3r6t1w6u2l6v3r6w1w6x5n6y3r6z3m7k3r7l3r7m2w7n2r7o2l7p3r7q3m7r4s7s3m7t3m7u2w7v2r7w1q7x2r7y3o202l3mcl4sal2lam3man3mao3map3mar3mas2lat4uau1yav3maw3tay4uaz2lbk2sbl3t'fof'6obo2lbp3rbr1tbs2lbu2lbv3mbz3mck4s202k3mcm4scn4sco4scp4scq6ocr4scs4mct4mcu4mcv4mcw2r2m3rcy2rcz2rdl4sdm4ydn4ydo4ydp4ydq4yds4ydt4sdu4sdv4sdw4sdz3rek3mel3mem3men3meo3mep3meq4ser2wes2wet2weu2wev2wew1wex1wey1wez1wfl3rfm3mfn3mfo3mfp3mfq3mfr3tfs3mft3rfu3rfv3rfw3rfz3m203k6o212m6o2dw2l2cq2l3t3m3u2l17s4s19m3m}'kerning'{cl{4qt5ks5ot5qy5rw17sv5tv}201t{cks4lscmscnscoscpscls4wv}2k{201ts}2w{4qu5ku7mu5os5qx5ru17su5tu}2x{17su5tu5ou5qs}2y{4qv5kv7mu5ot5qz5ru17su5tu}'fof'-6o7t{cksclscmscnscoscps4ls}3u{17su5tu5os5qu}3v{17su5tu5os5qu}fu{17su5tu5ou5qu}7p{17su5tu5ou5qu}ck{4qt5ks5ot5qy5rw17sv5tv}4l{4qt5ks5ot5qy5rw17sv5tv}cm{4qt5ks5ot5qy5rw17sv5tv}cn{4qt5ks5ot5qy5rw17sv5tv}co{4qt5ks5ot5qy5rw17sv5tv}cp{4qt5ks5ot5qy5rw17sv5tv}6l{17st5tt5ou5qu}17s{ckuclucmucnucoucpu4lu4wu}5o{ckuclucmucnucoucpu4lu4wu}5q{ckzclzcmzcnzcozcpz4lz4wu}5r{ckxclxcmxcnxcoxcpx4lx4wu}5t{ckuclucmucnucoucpu4lu4wu}7q{ckuclucmucnucoucpu4lu}6p{17sw5tw5ou5qu}ek{17st5tt5qu}el{17st5tt5ou5qu}em{17st5tt5qu}en{17st5tt5qu}eo{17st5tt5qu}ep{17st5tt5ou5qu}es{17ss5ts5qu}et{17sw5tw5ou5qu}eu{17sw5tw5ou5qu}ev{17ss5ts5qu}6z{17sw5tw5ou5qu5rs}fm{17sw5tw5ou5qu5rs}fn{17sw5tw5ou5qu5rs}fo{17sw5tw5ou5qu5rs}fp{17sw5tw5ou5qu5rs}fq{17sw5tw5ou5qu5rs}7r{cktcltcmtcntcotcpt4lt5os}fs{17sw5tw5ou5qu5rs}ft{17su5tu5ou5qu}7m{5os}fv{17su5tu5ou5qu}fw{17su5tu5ou5qu}fz{cksclscmscnscoscps4ls}}}"),Symbol:n("{'widths'{k3uaw4r19m3m2k1t2l2l202m2y2n3m2p5n202q6o3k3m2s2l2t2l2v3r2w1t3m3m2y1t2z1wbk2sbl3r'fof'6o3n3m3o3m3p3m3q3m3r3m3s3m3t3m3u1w3v1w3w3r3x3r3y3r3z2wbp3t3l3m5v2l5x2l5z3m2q4yfr3r7v3k7w1o7x3k}'kerning'{'fof'-6o}}"),Helvetica:n("{'widths'{k3p2q4mcx1w201n3r201o6o201s1q201t1q201u1q201w2l201x2l201y2l2k1w2l1w202m2n2n3r2o3r2p5t202q6o2r1n2s2l2t2l2u2r2v3u2w1w2x2l2y1w2z1w3k3r3l3r3m3r3n3r3o3r3p3r3q3r3r3r3s3r203t2l203u2l3v1w3w3u3x3u3y3u3z3r4k6p4l4m4m4m4n4s4o4s4p4m4q3x4r4y4s4s4t1w4u3m4v4m4w3r4x5n4y4s4z4y5k4m5l4y5m4s5n4m5o3x5p4s5q4m5r5y5s4m5t4m5u3x5v1w5w1w5x1w5y2z5z3r6k2l6l3r6m3r6n3m6o3r6p3r6q1w6r3r6s3r6t1q6u1q6v3m6w1q6x5n6y3r6z3r7k3r7l3r7m2l7n3m7o1w7p3r7q3m7r4s7s3m7t3m7u3m7v2l7w1u7x2l7y3u202l3rcl4mal2lam3ran3rao3rap3rar3ras2lat4tau2pav3raw3uay4taz2lbk2sbl3u'fof'6obo2lbp3rbr1wbs2lbu2obv3rbz3xck4m202k3rcm4mcn4mco4mcp4mcq6ocr4scs4mct4mcu4mcv4mcw1w2m2ncy1wcz1wdl4sdm4ydn4ydo4ydp4ydq4yds4ydt4sdu4sdv4sdw4sdz3xek3rel3rem3ren3reo3rep3req5ter3mes3ret3reu3rev3rew1wex1wey1wez1wfl3rfm3rfn3rfo3rfp3rfq3rfr3ufs3xft3rfu3rfv3rfw3rfz3m203k6o212m6o2dw2l2cq2l3t3r3u1w17s4m19m3r}'kerning'{5q{4wv}cl{4qs5kw5ow5qs17sv5tv}201t{2wu4w1k2yu}201x{2wu4wy2yu}17s{2ktclucmucnu4otcpu4lu4wycoucku}2w{7qs4qz5k1m17sy5ow5qx5rsfsu5ty7tufzu}2x{17sy5ty5oy5qs}2y{7qs4qz5k1m17sy5ow5qx5rsfsu5ty7tufzu}'fof'-6o7p{17sv5tv5ow}ck{4qs5kw5ow5qs17sv5tv}4l{4qs5kw5ow5qs17sv5tv}cm{4qs5kw5ow5qs17sv5tv}cn{4qs5kw5ow5qs17sv5tv}co{4qs5kw5ow5qs17sv5tv}cp{4qs5kw5ow5qs17sv5tv}6l{17sy5ty5ow}do{17st5tt}4z{17st5tt}7s{fst}dm{17st5tt}dn{17st5tt}5o{ckwclwcmwcnwcowcpw4lw4wv}dp{17st5tt}dq{17st5tt}7t{5ow}ds{17st5tt}5t{2ktclucmucnu4otcpu4lu4wycoucku}fu{17sv5tv5ow}6p{17sy5ty5ow5qs}ek{17sy5ty5ow}el{17sy5ty5ow}em{17sy5ty5ow}en{5ty}eo{17sy5ty5ow}ep{17sy5ty5ow}es{17sy5ty5qs}et{17sy5ty5ow5qs}eu{17sy5ty5ow5qs}ev{17sy5ty5ow5qs}6z{17sy5ty5ow5qs}fm{17sy5ty5ow5qs}fn{17sy5ty5ow5qs}fo{17sy5ty5ow5qs}fp{17sy5ty5qs}fq{17sy5ty5ow5qs}7r{5ow}fs{17sy5ty5ow5qs}ft{17sv5tv5ow}7m{5ow}fv{17sv5tv5ow}fw{17sv5tv5ow}}}"),"Helvetica-BoldOblique":n("{'widths'{k3s2q4scx1w201n3r201o6o201s1w201t1w201u1w201w3m201x3m201y3m2k1w2l2l202m2n2n3r2o3r2p5t202q6o2r1s2s2l2t2l2u2r2v3u2w1w2x2l2y1w2z1w3k3r3l3r3m3r3n3r3o3r3p3r3q3r3r3r3s3r203t2l203u2l3v2l3w3u3x3u3y3u3z3x4k6l4l4s4m4s4n4s4o4s4p4m4q3x4r4y4s4s4t1w4u3r4v4s4w3x4x5n4y4s4z4y5k4m5l4y5m4s5n4m5o3x5p4s5q4m5r5y5s4m5t4m5u3x5v2l5w1w5x2l5y3u5z3r6k2l6l3r6m3x6n3r6o3x6p3r6q2l6r3x6s3x6t1w6u1w6v3r6w1w6x5t6y3x6z3x7k3x7l3x7m2r7n3r7o2l7p3x7q3r7r4y7s3r7t3r7u3m7v2r7w1w7x2r7y3u202l3rcl4sal2lam3ran3rao3rap3rar3ras2lat4tau2pav3raw3uay4taz2lbk2sbl3u'fof'6obo2lbp3xbq3rbr1wbs2lbu2obv3rbz3xck4s202k3rcm4scn4sco4scp4scq6ocr4scs4mct4mcu4mcv4mcw1w2m2zcy1wcz1wdl4sdm4ydn4ydo4ydp4ydq4yds4ydt4sdu4sdv4sdw4sdz3xek3rel3rem3ren3reo3rep3req5ter3res3ret3reu3rev3rew1wex1wey1wez1wfl3xfm3xfn3xfo3xfp3xfq3xfr3ufs3xft3xfu3xfv3xfw3xfz3r203k6o212m6o2dw2l2cq2l3t3r3u2l17s4m19m3r}'kerning'{cl{4qs5ku5ot5qs17sv5tv}201t{2ww4wy2yw}201w{2ks}201x{2ww4wy2yw}2k{201ts201xs}2w{7qs4qu5kw5os5qw5rs17su5tu7tsfzs}2x{5ow5qs}2y{7qs4qu5kw5os5qw5rs17su5tu7tsfzs}'fof'-6o7p{17su5tu5ot}ck{4qs5ku5ot5qs17sv5tv}4l{4qs5ku5ot5qs17sv5tv}cm{4qs5ku5ot5qs17sv5tv}cn{4qs5ku5ot5qs17sv5tv}co{4qs5ku5ot5qs17sv5tv}cp{4qs5ku5ot5qs17sv5tv}6l{17st5tt5os}17s{2kwclvcmvcnvcovcpv4lv4wwckv}5o{2kucltcmtcntcotcpt4lt4wtckt}5q{2ksclscmscnscoscps4ls4wvcks}5r{2ks4ws}5t{2kwclvcmvcnvcovcpv4lv4wwckv}eo{17st5tt5os}fu{17su5tu5ot}6p{17ss5ts}ek{17st5tt5os}el{17st5tt5os}em{17st5tt5os}en{17st5tt5os}6o{201ts}ep{17st5tt5os}es{17ss5ts}et{17ss5ts}eu{17ss5ts}ev{17ss5ts}6z{17su5tu5os5qt}fm{17su5tu5os5qt}fn{17su5tu5os5qt}fo{17su5tu5os5qt}fp{17su5tu5os5qt}fq{17su5tu5os5qt}fs{17su5tu5os5qt}ft{17su5tu5ot}7m{5os}fv{17su5tu5ot}fw{17su5tu5ot}}}"),ZapfDingbats:n("{'widths'{k4u2k1w'fof'6o}'kerning'{'fof'-6o}}"),"Courier-Bold":n("{'widths'{k3w'fof'6o}'kerning'{'fof'-6o}}"),"Times-Italic":n("{'widths'{k3n2q4ycx2l201n3m201o5t201s2l201t2l201u2l201w3r201x3r201y3r2k1t2l2l202m2n2n3m2o3m2p5n202q5t2r1p2s2l2t2l2u3m2v4n2w1t2x2l2y1t2z1w3k3m3l3m3m3m3n3m3o3m3p3m3q3m3r3m3s3m203t2l203u2l3v2l3w4n3x4n3y4n3z3m4k5w4l3x4m3x4n4m4o4s4p3x4q3x4r4s4s4s4t2l4u2w4v4m4w3r4x5n4y4m4z4s5k3x5l4s5m3x5n3m5o3r5p4s5q3x5r5n5s3x5t3r5u3r5v2r5w1w5x2r5y2u5z3m6k2l6l3m6m3m6n2w6o3m6p2w6q1w6r3m6s3m6t1w6u1w6v2w6w1w6x4s6y3m6z3m7k3m7l3m7m2r7n2r7o1w7p3m7q2w7r4m7s2w7t2w7u2r7v2s7w1v7x2s7y3q202l3mcl3xal2ram3man3mao3map3mar3mas2lat4wau1vav3maw4nay4waz2lbk2sbl4n'fof'6obo2lbp3mbq3obr1tbs2lbu1zbv3mbz3mck3x202k3mcm3xcn3xco3xcp3xcq5tcr4mcs3xct3xcu3xcv3xcw2l2m2ucy2lcz2ldl4mdm4sdn4sdo4sdp4sdq4sds4sdt4sdu4sdv4sdw4sdz3mek3mel3mem3men3meo3mep3meq4mer2wes2wet2weu2wev2wew1wex1wey1wez1wfl3mfm3mfn3mfo3mfp3mfq3mfr4nfs3mft3mfu3mfv3mfw3mfz2w203k6o212m6m2dw2l2cq2l3t3m3u2l17s3r19m3m}'kerning'{cl{5kt4qw}201s{201sw}201t{201tw2wy2yy6q-t}201x{2wy2yy}2k{201tw}2w{7qs4qy7rs5ky7mw5os5qx5ru17su5tu}2x{17ss5ts5os}2y{7qs4qy7rs5ky7mw5os5qx5ru17su5tu}'fof'-6o6t{17ss5ts5qs}7t{5os}3v{5qs}7p{17su5tu5qs}ck{5kt4qw}4l{5kt4qw}cm{5kt4qw}cn{5kt4qw}co{5kt4qw}cp{5kt4qw}6l{4qs5ks5ou5qw5ru17su5tu}17s{2ks}5q{ckvclvcmvcnvcovcpv4lv}5r{ckuclucmucnucoucpu4lu}5t{2ks}6p{4qs5ks5ou5qw5ru17su5tu}ek{4qs5ks5ou5qw5ru17su5tu}el{4qs5ks5ou5qw5ru17su5tu}em{4qs5ks5ou5qw5ru17su5tu}en{4qs5ks5ou5qw5ru17su5tu}eo{4qs5ks5ou5qw5ru17su5tu}ep{4qs5ks5ou5qw5ru17su5tu}es{5ks5qs4qs}et{4qs5ks5ou5qw5ru17su5tu}eu{4qs5ks5qw5ru17su5tu}ev{5ks5qs4qs}ex{17ss5ts5qs}6z{4qv5ks5ou5qw5ru17su5tu}fm{4qv5ks5ou5qw5ru17su5tu}fn{4qv5ks5ou5qw5ru17su5tu}fo{4qv5ks5ou5qw5ru17su5tu}fp{4qv5ks5ou5qw5ru17su5tu}fq{4qv5ks5ou5qw5ru17su5tu}7r{5os}fs{4qv5ks5ou5qw5ru17su5tu}ft{17su5tu5qs}fu{17su5tu5qs}fv{17su5tu5qs}fw{17su5tu5qs}}}"),"Times-Roman":n("{'widths'{k3n2q4ycx2l201n3m201o6o201s2l201t2l201u2l201w2w201x2w201y2w2k1t2l2l202m2n2n3m2o3m2p5n202q6o2r1m2s2l2t2l2u3m2v3s2w1t2x2l2y1t2z1w3k3m3l3m3m3m3n3m3o3m3p3m3q3m3r3m3s3m203t2l203u2l3v1w3w3s3x3s3y3s3z2w4k5w4l4s4m4m4n4m4o4s4p3x4q3r4r4s4s4s4t2l4u2r4v4s4w3x4x5t4y4s4z4s5k3r5l4s5m4m5n3r5o3x5p4s5q4s5r5y5s4s5t4s5u3x5v2l5w1w5x2l5y2z5z3m6k2l6l2w6m3m6n2w6o3m6p2w6q2l6r3m6s3m6t1w6u1w6v3m6w1w6x4y6y3m6z3m7k3m7l3m7m2l7n2r7o1w7p3m7q3m7r4s7s3m7t3m7u2w7v3k7w1o7x3k7y3q202l3mcl4sal2lam3man3mao3map3mar3mas2lat4wau1vav3maw3say4waz2lbk2sbl3s'fof'6obo2lbp3mbq2xbr1tbs2lbu1zbv3mbz2wck4s202k3mcm4scn4sco4scp4scq5tcr4mcs3xct3xcu3xcv3xcw2l2m2tcy2lcz2ldl4sdm4sdn4sdo4sdp4sdq4sds4sdt4sdu4sdv4sdw4sdz3mek2wel2wem2wen2weo2wep2weq4mer2wes2wet2weu2wev2wew1wex1wey1wez1wfl3mfm3mfn3mfo3mfp3mfq3mfr3sfs3mft3mfu3mfv3mfw3mfz3m203k6o212m6m2dw2l2cq2l3t3m3u1w17s4s19m3m}'kerning'{cl{4qs5ku17sw5ou5qy5rw201ss5tw201ws}201s{201ss}201t{ckw4lwcmwcnwcowcpwclw4wu201ts}2k{201ts}2w{4qs5kw5os5qx5ru17sx5tx}2x{17sw5tw5ou5qu}2y{4qs5kw5os5qx5ru17sx5tx}'fof'-6o7t{ckuclucmucnucoucpu4lu5os5rs}3u{17su5tu5qs}3v{17su5tu5qs}7p{17sw5tw5qs}ck{4qs5ku17sw5ou5qy5rw201ss5tw201ws}4l{4qs5ku17sw5ou5qy5rw201ss5tw201ws}cm{4qs5ku17sw5ou5qy5rw201ss5tw201ws}cn{4qs5ku17sw5ou5qy5rw201ss5tw201ws}co{4qs5ku17sw5ou5qy5rw201ss5tw201ws}cp{4qs5ku17sw5ou5qy5rw201ss5tw201ws}6l{17su5tu5os5qw5rs}17s{2ktclvcmvcnvcovcpv4lv4wuckv}5o{ckwclwcmwcnwcowcpw4lw4wu}5q{ckyclycmycnycoycpy4ly4wu5ms}5r{cktcltcmtcntcotcpt4lt4ws}5t{2ktclvcmvcnvcovcpv4lv4wuckv}7q{cksclscmscnscoscps4ls}6p{17su5tu5qw5rs}ek{5qs5rs}el{17su5tu5os5qw5rs}em{17su5tu5os5qs5rs}en{17su5qs5rs}eo{5qs5rs}ep{17su5tu5os5qw5rs}es{5qs}et{17su5tu5qw5rs}eu{17su5tu5qs5rs}ev{5qs}6z{17sv5tv5os5qx5rs}fm{5os5qt5rs}fn{17sv5tv5os5qx5rs}fo{17sv5tv5os5qx5rs}fp{5os5qt5rs}fq{5os5qt5rs}7r{ckuclucmucnucoucpu4lu5os}fs{17sv5tv5os5qx5rs}ft{17ss5ts5qs}fu{17sw5tw5qs}fv{17sw5tw5qs}fw{17ss5ts5qs}fz{ckuclucmucnucoucpu4lu5os5rs}}}"),"Helvetica-Oblique":n("{'widths'{k3p2q4mcx1w201n3r201o6o201s1q201t1q201u1q201w2l201x2l201y2l2k1w2l1w202m2n2n3r2o3r2p5t202q6o2r1n2s2l2t2l2u2r2v3u2w1w2x2l2y1w2z1w3k3r3l3r3m3r3n3r3o3r3p3r3q3r3r3r3s3r203t2l203u2l3v1w3w3u3x3u3y3u3z3r4k6p4l4m4m4m4n4s4o4s4p4m4q3x4r4y4s4s4t1w4u3m4v4m4w3r4x5n4y4s4z4y5k4m5l4y5m4s5n4m5o3x5p4s5q4m5r5y5s4m5t4m5u3x5v1w5w1w5x1w5y2z5z3r6k2l6l3r6m3r6n3m6o3r6p3r6q1w6r3r6s3r6t1q6u1q6v3m6w1q6x5n6y3r6z3r7k3r7l3r7m2l7n3m7o1w7p3r7q3m7r4s7s3m7t3m7u3m7v2l7w1u7x2l7y3u202l3rcl4mal2lam3ran3rao3rap3rar3ras2lat4tau2pav3raw3uay4taz2lbk2sbl3u'fof'6obo2lbp3rbr1wbs2lbu2obv3rbz3xck4m202k3rcm4mcn4mco4mcp4mcq6ocr4scs4mct4mcu4mcv4mcw1w2m2ncy1wcz1wdl4sdm4ydn4ydo4ydp4ydq4yds4ydt4sdu4sdv4sdw4sdz3xek3rel3rem3ren3reo3rep3req5ter3mes3ret3reu3rev3rew1wex1wey1wez1wfl3rfm3rfn3rfo3rfp3rfq3rfr3ufs3xft3rfu3rfv3rfw3rfz3m203k6o212m6o2dw2l2cq2l3t3r3u1w17s4m19m3r}'kerning'{5q{4wv}cl{4qs5kw5ow5qs17sv5tv}201t{2wu4w1k2yu}201x{2wu4wy2yu}17s{2ktclucmucnu4otcpu4lu4wycoucku}2w{7qs4qz5k1m17sy5ow5qx5rsfsu5ty7tufzu}2x{17sy5ty5oy5qs}2y{7qs4qz5k1m17sy5ow5qx5rsfsu5ty7tufzu}'fof'-6o7p{17sv5tv5ow}ck{4qs5kw5ow5qs17sv5tv}4l{4qs5kw5ow5qs17sv5tv}cm{4qs5kw5ow5qs17sv5tv}cn{4qs5kw5ow5qs17sv5tv}co{4qs5kw5ow5qs17sv5tv}cp{4qs5kw5ow5qs17sv5tv}6l{17sy5ty5ow}do{17st5tt}4z{17st5tt}7s{fst}dm{17st5tt}dn{17st5tt}5o{ckwclwcmwcnwcowcpw4lw4wv}dp{17st5tt}dq{17st5tt}7t{5ow}ds{17st5tt}5t{2ktclucmucnu4otcpu4lu4wycoucku}fu{17sv5tv5ow}6p{17sy5ty5ow5qs}ek{17sy5ty5ow}el{17sy5ty5ow}em{17sy5ty5ow}en{5ty}eo{17sy5ty5ow}ep{17sy5ty5ow}es{17sy5ty5qs}et{17sy5ty5ow5qs}eu{17sy5ty5ow5qs}ev{17sy5ty5ow5qs}6z{17sy5ty5ow5qs}fm{17sy5ty5ow5qs}fn{17sy5ty5ow5qs}fo{17sy5ty5ow5qs}fp{17sy5ty5qs}fq{17sy5ty5ow5qs}7r{5ow}fs{17sy5ty5ow5qs}ft{17sv5tv5ow}7m{5ow}fv{17sv5tv5ow}fw{17sv5tv5ow}}}")}},Wd=(t.events.push(["addFont",function(A){var A=A.font,t=Xd.Unicode[A.postScriptName],t=(t&&(A.metadata.Unicode={},A.metadata.Unicode.widths=t.widths,A.metadata.Unicode.kerning=t.kerning),jd.Unicode[A.postScriptName]);t&&(A.metadata.Unicode.encoding=t,A.encoding=t.codePages[0])}]),(Pf=ue).API.events.push(["addFont",function(A){var t=A.font,A=A.instance;if(!t.isStandardFont){if(void 0===A)throw new Error("Font does not exist in vFS, import fonts or remove declaration doc.addFont('"+t.postScriptName+"').");if("string"!=typeof(A=!1===A.existsFileInVFS(t.postScriptName)?A.loadFile(t.postScriptName):A.getFileFromVFS(t.postScriptName)))throw new Error("Font is not stored as string-data in vFS, import fonts or remove declaration doc.addFont('"+t.postScriptName+"').");t=t,A=/^\x00\x01\x00\x00/.test(A=A)?tp(A):tp(mB(A)),t.metadata=Pf.API.TTFFont.open(A),t.metadata.Unicode=t.metadata.Unicode||{encoding:{},kerning:{},widths:[]},t.metadata.glyIdsUsed=[0]}}]),ue.API.addSvgAsImage=function(t,A,e,r,n,i,s,o){if(isNaN(A)||isNaN(e))throw BB.error("jsPDF.addSvgAsImage: Invalid coordinates",arguments),new Error("Invalid coordinates passed to jsPDF.addSvgAsImage");if(isNaN(r)||isNaN(n))throw BB.error("jsPDF.addSvgAsImage: Invalid measurements",arguments),new Error("Invalid measurements (width and/or height) passed to jsPDF.addSvgAsImage");var a=document.createElement("canvas"),c=(a.width=r,a.height=n,a.getContext("2d")),l=(c.fillStyle="#fff",c.fillRect(0,0,a.width,a.height),{ignoreMouse:!0,ignoreAnimation:!0,ignoreDimensions:!0}),u=this;return(le.canvg?Promise.resolve(le.canvg):Promise.resolve().then(function(){return OR})).catch(function(A){return Promise.reject(new Error("Could not load canvg: "+A))}).then(function(A){return A.default||A}).then(function(A){return A.fromString(c,t,l)},function(){return Promise.reject(new Error("Could not load canvg."))}).then(function(A){return A.render(l)}).then(function(){u.addImage(a.toDataURL("image/jpeg",1),A,e,r,n,s,o)})},ue.API.putTotalPages=function(A){for(var t,e=0,e=parseInt(this.internal.getFont().id.substr(1),10)<15?(t=new RegExp(A,"g"),this.internal.getNumberOfPages()):(t=new RegExp(this.pdfEscape16(A,this.internal.getFont()),"g"),this.pdfEscape16(this.internal.getNumberOfPages()+"",this.internal.getFont())),r=1;r<=this.internal.getNumberOfPages();r++)for(var n=0;n<this.internal.pages[r].length;n++)this.internal.pages[r][n]=this.internal.pages[r][n].replace(t,e);return this},ue.API.viewerPreferences=function(A,t){var e;A=A||{},t=t||!1;var r,n,i,s={HideToolbar:{defaultValue:!1,value:!1,type:"boolean",explicitSet:!1,valueSet:[!0,!1],pdfVersion:1.3},HideMenubar:{defaultValue:!1,value:!1,type:"boolean",explicitSet:!1,valueSet:[!0,!1],pdfVersion:1.3},HideWindowUI:{defaultValue:!1,value:!1,type:"boolean",explicitSet:!1,valueSet:[!0,!1],pdfVersion:1.3},FitWindow:{defaultValue:!1,value:!1,type:"boolean",explicitSet:!1,valueSet:[!0,!1],pdfVersion:1.3},CenterWindow:{defaultValue:!1,value:!1,type:"boolean",explicitSet:!1,valueSet:[!0,!1],pdfVersion:1.3},DisplayDocTitle:{defaultValue:!1,value:!1,type:"boolean",explicitSet:!1,valueSet:[!0,!1],pdfVersion:1.4},NonFullScreenPageMode:{defaultValue:"UseNone",value:"UseNone",type:"name",explicitSet:!1,valueSet:["UseNone","UseOutlines","UseThumbs","UseOC"],pdfVersion:1.3},Direction:{defaultValue:"L2R",value:"L2R",type:"name",explicitSet:!1,valueSet:["L2R","R2L"],pdfVersion:1.3},ViewArea:{defaultValue:"CropBox",value:"CropBox",type:"name",explicitSet:!1,valueSet:["MediaBox","CropBox","TrimBox","BleedBox","ArtBox"],pdfVersion:1.4},ViewClip:{defaultValue:"CropBox",value:"CropBox",type:"name",explicitSet:!1,valueSet:["MediaBox","CropBox","TrimBox","BleedBox","ArtBox"],pdfVersion:1.4},PrintArea:{defaultValue:"CropBox",value:"CropBox",type:"name",explicitSet:!1,valueSet:["MediaBox","CropBox","TrimBox","BleedBox","ArtBox"],pdfVersion:1.4},PrintClip:{defaultValue:"CropBox",value:"CropBox",type:"name",explicitSet:!1,valueSet:["MediaBox","CropBox","TrimBox","BleedBox","ArtBox"],pdfVersion:1.4},PrintScaling:{defaultValue:"AppDefault",value:"AppDefault",type:"name",explicitSet:!1,valueSet:["AppDefault","None"],pdfVersion:1.6},Duplex:{defaultValue:"",value:"none",type:"name",explicitSet:!1,valueSet:["Simplex","DuplexFlipShortEdge","DuplexFlipLongEdge","none"],pdfVersion:1.7},PickTrayByPDFSize:{defaultValue:!1,value:!1,type:"boolean",explicitSet:!1,valueSet:[!0,!1],pdfVersion:1.7},PrintPageRange:{defaultValue:"",value:"",type:"array",explicitSet:!1,valueSet:null,pdfVersion:1.7},NumCopies:{defaultValue:1,value:1,type:"integer",explicitSet:!1,valueSet:null,pdfVersion:1.7}},o=Object.keys(s),a=[],c=0,l=0,u=0;function h(A,t){for(var e=!1,r=0;r<A.length;r+=1)A[r]===t&&(e=!0);return e}if(void 0===this.internal.viewerpreferences&&(this.internal.viewerpreferences={},this.internal.viewerpreferences.configuration=JSON.parse(JSON.stringify(s)),this.internal.viewerpreferences.isSubscribed=!1),e=this.internal.viewerpreferences.configuration,"reset"===A||!0===t)for(var B=o.length,u=0;u<B;u+=1)e[o[u]].value=e[o[u]].defaultValue,e[o[u]].explicitSet=!1;if("object"===Ea(A))for(n in A)if(i=A[n],h(o,n)&&void 0!==i){if("boolean"===e[n].type&&"boolean"==typeof i)e[n].value=i;else if("name"===e[n].type&&h(e[n].valueSet,i))e[n].value=i;else if("integer"===e[n].type&&Number.isInteger(i))e[n].value=i;else if("array"===e[n].type){for(c=0;c<i.length;c+=1)if(r=!0,1===i[c].length&&"number"==typeof i[c][0])a.push(String(i[c]-1));else if(1<i[c].length){for(l=0;l<i[c].length;l+=1)"number"!=typeof i[c][l]&&(r=!1);!0===r&&a.push([i[c][0]-1,i[c][1]-1].join(" "))}e[n].value="["+a.join(" ")+"]"}else e[n].value=e[n].defaultValue;e[n].explicitSet=!0}return!1===this.internal.viewerpreferences.isSubscribed&&(this.internal.events.subscribe("putCatalog",function(){var A,t=[];for(A in e)!0===e[A].explicitSet&&("name"===e[A].type?t.push("/"+A+" /"+e[A].value):t.push("/"+A+" "+e[A].value));0!==t.length&&this.internal.write("/ViewerPreferences\n<<\n"+t.join("\n")+"\n>>")}),this.internal.viewerpreferences.isSubscribed=!0),this.internal.viewerpreferences.configuration=e,this},ue.API.addMetadata=function(A,t){return void 0===this.internal.__metadata__&&(this.internal.__metadata__={metadata:A,namespaceuri:t||"http://jspdf.default.namespaceuri/"},this.internal.events.subscribe("putCatalog",Ap),this.internal.events.subscribe("postPutResources",$d)),this},ue);function Jd(A){for(var t,e,r,n="/CIDInit /ProcSet findresource begin\n12 dict begin\nbegincmap\n/CIDSystemInfo <<\n /Registry (Adobe)\n /Ordering (UCS)\n /Supplement 0\n>> def\n/CMapName /Adobe-Identity-UCS def\n/CMapType 2 def\n1 begincodespacerange\n<0000><ffff>\nendcodespacerange",i=[],s=0,o=(e=Object.keys(A).sort(function(A,t){return A-t})).length;s<o;s++)t=e[s],100<=i.length&&(n+="\n"+i.length+" beginbfchar\n"+i.join("\n")+"\nendbfchar",i=[]),null!=A[t]&&"function"==typeof A[t].toString&&(r=("0000"+A[t].toString(16)).slice(-4),t=("0000"+(+t).toString(16)).slice(-4),i.push("<"+t+"><"+r+">"));return i.length&&(n+="\n"+i.length+" beginbfchar\n"+i.join("\n")+"\nendbfchar\n"),n+"endcmap\nCMapName currentdict /CMap defineresource pop\nend\nend"}function Yd(A){var t,e=A.text||"",r=A.x,n=A.y,i=A.options||{},s=(A=A.mutex||{}).pdfEscape,o=A.activeFontKey,a=A.fonts,c=o,l="",u=0,h="",B=a[c].encoding;if("Identity-H"!==a[c].encoding)return{text:e,x:r,y:n,options:i,mutex:A};for(h=e,c=o,Array.isArray(e)&&(h=e[0]),u=0;u<h.length;u+=1)(t=a[c].metadata.hasOwnProperty("cmap")?a[c].metadata.cmap.unicode.codeMap[h[u].charCodeAt(0)]:t)||h[u].charCodeAt(0)<256&&a[c].metadata.hasOwnProperty("Unicode")?l+=h[u]:l+="";return o="",parseInt(c.slice(1))<14||"WinAnsiEncoding"===B?o=s(l,c).split("").map(function(A){return A.charCodeAt(0).toString(16)}).join(""):"Identity-H"===B&&(o=qd(l,a[c])),A.isHex=!0,{text:o,x:r,y:n,options:i,mutex:A}}var s=Wd.API,qd=s.pdfEscape16=function(A,t){for(var e,r=t.metadata.Unicode.widths,n=["","0","00","000","0000"],i=[""],s=0,o=A.length;s<o;++s){if(e=t.metadata.characterToGlyph(A.charCodeAt(s)),t.metadata.glyIdsUsed.push(e),t.metadata.toUnicode[e]=A.charCodeAt(s),-1==r.indexOf(e)&&(r.push(e),r.push([parseInt(t.metadata.widthOfGlyph(e),10)])),"0"==e)return i.join("");e=e.toString(16),i.push(n[4-e.length],e)}return i.join("")};function zd(A){if(this.rawData=A,A=this.contents=new up(A),this.contents.pos=4,"ttcf"===A.readString(4))throw new Error("TTCF not supported.");A.pos=0,this.parse(),this.subset=new Np(this),this.registerTTF()}function Zd(){return void 0===this.internal.vFS&&(this.internal.vFS={}),!0}function $d(){var A='<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><rdf:Description rdf:about="" xmlns:jspdf="'+this.internal.__metadata__.namespaceuri+'"><jspdf:metadata>',t=unescape(encodeURIComponent('<x:xmpmeta xmlns:x="adobe:ns:meta/">')),A=unescape(encodeURIComponent(A)),e=unescape(encodeURIComponent(this.internal.__metadata__.metadata)),r=unescape(encodeURIComponent("</jspdf:metadata></rdf:Description></rdf:RDF>")),n=unescape(encodeURIComponent("</x:xmpmeta>")),i=A.length+e.length+r.length+t.length+n.length;this.internal.__metadata__.metadata_object_number=this.internal.newObject(),this.internal.write("<< /Type /Metadata /Subtype /XML /Length "+i+" >>"),this.internal.write("stream"),this.internal.write(t+A+e+r+n),this.internal.write("endstream"),this.internal.write("endobj")}function Ap(){this.internal.__metadata__.metadata_object_number&&this.internal.write("/Metadata "+this.internal.__metadata__.metadata_object_number+" 0 R")}function tp(A){for(var t=A.length,e=new Uint8Array(t),r=0;r<t;r++)e[r]=A.charCodeAt(r);return e}function ep(){return(le.html2canvas?Promise.resolve(le.html2canvas):Promise.resolve().then(function(){return BO})).catch(function(A){return Promise.reject(new Error("Could not load html2canvas: "+A))}).then(function(A){return A.default||A})}function rp(){return(le.DOMPurify?Promise.resolve(le.DOMPurify):Promise.resolve().then(function(){return rP})).catch(function(A){return Promise.reject(new Error("Could not load dompurify: "+A))}).then(function(A){return A.default||A})}function np(A){var t=Ea(A);return"undefined"===t?"undefined":"string"===t||A instanceof String?"string":"number"===t||A instanceof Number?"number":"function"===t||A instanceof Function?"function":A&&A.constructor===Array?"array":A&&1===A.nodeType?"element":"object"===t?"object":"unknown"}function ip(A,t){var e,r=document.createElement(A);for(e in t.className&&(r.className=t.className),t.innerHTML&&t.dompurify&&(r.innerHTML=t.dompurify.sanitize(t.innerHTML)),t.style)r.style[e]=t.style[e];return r}function sp(A,t){for(var e=3===A.nodeType?document.createTextNode(A.nodeValue):A.cloneNode(!1),r=A.firstChild;r;r=r.nextSibling)!0!==t&&1===r.nodeType&&"SCRIPT"===r.nodeName||e.appendChild(sp(r,t));return 1===A.nodeType&&("CANVAS"===A.nodeName?(e.width=A.width,e.height=A.height,e.getContext("2d").drawImage(A,0,0)):"TEXTAREA"!==A.nodeName&&"SELECT"!==A.nodeName||(e.value=A.value),e.addEventListener("load",function(){e.scrollTop=A.scrollTop,e.scrollLeft=A.scrollLeft},!0)),e}function o(A){var t=Object.assign(o.convert(Promise.resolve()),JSON.parse(JSON.stringify(o.template)));return o.convert(Promise.resolve(),t).setProgress(1,o,1,[o]).set(A)}function op(A){return this.isStrokeTransparent=(A=A||{}).isStrokeTransparent||!1,this.strokeOpacity=A.strokeOpacity||1,this.strokeStyle=A.strokeStyle||"#000000",this.fillStyle=A.fillStyle||"#000000",this.isFillTransparent=A.isFillTransparent||!1,this.fillOpacity=A.fillOpacity||1,this.font=A.font||"10px sans-serif",this.textBaseline=A.textBaseline||"alphabetic",this.textAlign=A.textAlign||"left",this.lineWidth=A.lineWidth||1,this.lineJoin=A.lineJoin||"miter",this.lineCap=A.lineCap||"butt",this.path=A.path||[],this.transform=void 0!==A.transform?A.transform.clone():new zf,this.globalCompositeOperation=A.globalCompositeOperation||"normal",this.globalAlpha=A.globalAlpha||1,this.clip_path=A.clip_path||[],this.currentPoint=A.currentPoint||new Yf,this.miterLimit=A.miterLimit||10,this.lastPoint=A.lastPoint||new Yf,this.lineDashOffset=A.lineDashOffset||0,this.lineDash=A.lineDash||[],this.margin=A.margin||[0,0,0,0],this.prevPageLastElemOffset=A.prevPageLastElemOffset||0,this.ignoreClearRect="boolean"!=typeof A.ignoreClearRect||A.ignoreClearRect,this}function ap(){return 0<this.margin[0]||0<this.margin[1]||0<this.margin[2]||0<this.margin[3]}s.events.push(["putFont",function(A){var t=A.font,e=A.out,r=A.newObject,A=A.putStream;if(t.metadata instanceof Wd.API.TTFFont&&"Identity-H"===t.encoding){for(var n=t.metadata.Unicode.widths,i=t.metadata.subset.encode(t.metadata.glyIdsUsed,1),s="",o=0;o<i.length;o++)s+=String.fromCharCode(i[o]);var a=r(),c=(A({data:s,addLength1:!0,objectId:a}),e("endobj"),r()),A=(A({data:Jd(t.metadata.toUnicode),addLength1:!0,objectId:c}),e("endobj"),r()),a=(e("<<"),e("/Type /FontDescriptor"),e("/FontName /"+DB(t.fontName)),e("/FontFile2 "+a+" 0 R"),e("/FontBBox "+Wd.API.PDFObject.convert(t.metadata.bbox)),e("/Flags "+t.metadata.flags),e("/StemV "+t.metadata.stemV),e("/ItalicAngle "+t.metadata.italicAngle),e("/Ascent "+t.metadata.ascender),e("/Descent "+t.metadata.decender),e("/CapHeight "+t.metadata.capHeight),e(">>"),e("endobj"),r());e("<<"),e("/Type /Font"),e("/BaseFont /"+DB(t.fontName)),e("/FontDescriptor "+A+" 0 R"),e("/W "+Wd.API.PDFObject.convert(n)),e("/CIDToGIDMap /Identity"),e("/DW 1000"),e("/Subtype /CIDFontType2"),e("/CIDSystemInfo"),e("<<"),e("/Supplement 0"),e("/Registry (Adobe)"),e("/Ordering ("+t.encoding+")"),e(">>"),e(">>"),e("endobj"),t.objectNumber=r(),e("<<"),e("/Type /Font"),e("/Subtype /Type0"),e("/ToUnicode "+c+" 0 R"),e("/BaseFont /"+DB(t.fontName)),e("/Encoding /"+t.encoding),e("/DescendantFonts ["+a+" 0 R]"),e(">>"),e("endobj"),t.isAlreadyPutted=!0}}]),s.events.push(["putFont",function(A){var t=A.font,e=A.out,r=A.newObject,A=A.putStream;if(t.metadata instanceof Wd.API.TTFFont&&"WinAnsiEncoding"===t.encoding){for(var n=t.metadata.rawData,i="",s=0;s<n.length;s++)i+=String.fromCharCode(n[s]);var o=r(),a=(A({data:i,addLength1:!0,objectId:o}),e("endobj"),r()),A=(A({data:Jd(t.metadata.toUnicode),addLength1:!0,objectId:a}),e("endobj"),r());e("<<"),e("/Descent "+t.metadata.decender),e("/CapHeight "+t.metadata.capHeight),e("/StemV "+t.metadata.stemV),e("/Type /FontDescriptor"),e("/FontFile2 "+o+" 0 R"),e("/Flags 96"),e("/FontBBox "+Wd.API.PDFObject.convert(t.metadata.bbox)),e("/FontName /"+DB(t.fontName)),e("/ItalicAngle "+t.metadata.italicAngle),e("/Ascent "+t.metadata.ascender),e(">>"),e("endobj"),t.objectNumber=r();for(var c=0;c<t.metadata.hmtx.widths.length;c++)t.metadata.hmtx.widths[c]=parseInt(t.metadata.hmtx.widths[c]*(1e3/t.metadata.head.unitsPerEm));e("<</Subtype/TrueType/Type/Font/ToUnicode "+a+" 0 R/BaseFont/"+DB(t.fontName)+"/FontDescriptor "+A+" 0 R/Encoding/"+t.encoding+" /FirstChar 29 /LastChar 255 /Widths "+Wd.API.PDFObject.convert(t.metadata.hmtx.widths)+">>"),e("endobj"),t.isAlreadyPutted=!0}}]),s.events.push(["postProcessText",function(A){var t=A.text||"",e=[],r={text:t,x:A.x,y:A.y,options:A.options,mutex:A.mutex};if(Array.isArray(t)){for(var n=0,n=0;n<t.length;n+=1)Array.isArray(t[n])&&3===t[n].length?e.push([Yd(Object.assign({},r,{text:t[n][0]})).text,t[n][1],t[n][2]]):e.push(Yd(Object.assign({},r,{text:t[n]})).text);A.text=e}else A.text=Yd(Object.assign({},r,{text:t})).text}]),(A=ue.API).existsFileInVFS=function(A){return Zd.call(this),void 0!==this.internal.vFS[A]},A.addFileToVFS=function(A,t){return Zd.call(this),this.internal.vFS[A]=t,this},A.getFileFromVFS=function(A){return Zd.call(this),void 0!==this.internal.vFS[A]?this.internal.vFS[A]:null},(e=ue).__bidiEngine__=e.prototype.__bidiEngine__=function(A){function o(A){for(var t,e=0;e<A.length;e++){if("L"===(t=b(A.charAt(e))))return!1;if("R"===t)return!0}return!1}function a(A,t,e){return A=A.split(""),e&&d(A,e,{hiLevel:U}),A.reverse(),t&&t.reverse(),A.join("")}function c(A,t,e){var A=A.split(""),r={hiLevel:U},n=(d(A,e=e||[],r),A),i=e;if(0!==r.hiLevel&&g)for(var s,o=0;o<n.length;o++)1===i[o]&&0<=(s=f.indexOf(n[o]))&&(n[o]=f[s+1]);return p(2,A,t,e,r),p(1,A,t,e,r),A.join("")}var w,m,l,u,h,B,g,r=Df,C=[[0,3,0,1,0,0,0],[0,3,0,1,2,2,0],[0,3,0,17,2,0,1],[0,3,5,5,4,1,0],[0,3,21,21,4,0,1],[0,3,5,5,4,2,0]],Q=[[2,0,1,1,0,1,0],[2,0,1,1,0,2,0],[2,0,2,1,3,2,0],[2,0,2,33,3,1,1]],y={L:0,R:1,EN:2,AN:3,N:4,B:5,S:6},n={0:0,5:1,6:2,7:3,32:4,251:5,254:6,255:7},f=["(",")","(","<",">","<","[","]","[","{","}","{","«","»","«","‹","›","‹","⁅","⁆","⁅","⁽","⁾","⁽","₍","₎","₍","≤","≥","≤","〈","〉","〈","﹙","﹚","﹙","﹛","﹜","﹛","﹝","﹞","﹝","﹤","﹥","﹤"],i=new RegExp(/^([1-4|9]|1[0-9]|2[0-9]|3[0168]|4[04589]|5[012]|7[78]|159|16[0-9]|17[0-2]|21[569]|22[03489]|250)$/),F=!1,U=0,b=(this.__bidiEngine__={},function(A){var A=A.charCodeAt(),t=A>>8,e=n[t];return void 0!==e?r[256*e+(255&A)]:252==t||253==t?"AL":i.test(t)?"L":8==t?"R":"N"}),v=function(A,t,e,r){var n,i,s=t[r];switch(s){case"L":case"R":case"LRE":case"RLE":case"LRO":case"RLO":case"PDF":F=!1;break;case"N":case"AN":break;case"EN":F&&(s="AN");break;case"AL":F=!0,s="R";break;case"WS":case"BN":s="N";break;case"CS":r<1||r+1>=t.length||"EN"!==(a=e[r-1])&&"AN"!==a||"EN"!==(o=t[r+1])&&"AN"!==o?s="N":F&&(o="AN"),s=o===a?o:"N";break;case"ES":s="EN"===(a=0<r?e[r-1]:"B")&&r+1<t.length&&"EN"===t[r+1]?"EN":"N";break;case"ET":if(0<r&&"EN"===e[r-1])s="EN";else if(F)s="N";else{for(n=r+1,i=t.length;n<i&&"ET"===t[n];)n++;s=n<i&&"EN"===t[n]?"EN":"N"}break;case"NSM":if(l&&!u){for(i=t.length,n=r+1;n<i&&"NSM"===t[n];)n++;if(n<i){var o=A[r],a=t[n];if((1425<=o&&o<=2303||64286===o)&&("R"===a||"AL"===a)){s="R";break}}}s=r<1||"B"===(a=t[r-1])?"N":e[r-1];break;case"B":w=!(F=!1),s=U;break;case"S":m=!0,s="N"}return s},d=function(A,t,e){var r,n,i,s,o=-1,a=A.length,c=0,l=[],u=U?Q:C,h=[];for(m=w=F=!1,r=0;r<a;r++)h[r]=b(A[r]);for(n=0;n<a;n++){if(s=c,l[n]=v(A,h,l,n),s=240&(c=u[s][y[l[n]]]),c&=15,t[n]=i=u[c][5],0<s){if(16==s)for(r=o;r<n;r++)t[r]=1;o=-1}if(u[c][6])-1===o&&(o=n);else if(-1<o){for(r=o;r<n;r++)t[r]=i;o=-1}"B"===h[n]&&(t[n]=0),e.hiLevel|=i}if(m)for(var B=h,g=t,f=a,d=0;d<f;d++)if("S"===B[d]){g[d]=U;for(var p=d-1;0<=p&&"WS"===B[p];p--)g[p]=U}},p=function(A,t,e,r,n){if(!(n.hiLevel<A))if(1!==A||1!==U||w)for(var i,s,o,a,c=t.length,l=0;l<c;){if(r[l]>=A){for(o=l+1;o<c&&r[o]>=A;)o++;for(a=l,s=o-1;a<s;a++,s--)i=t[a],t[a]=t[s],t[s]=i,e&&(i=e[a],e[a]=e[s],e[s]=i);l=o}l++}else t.reverse(),e&&e.reverse()};return this.__bidiEngine__.doBidiReorder=function(A,t,e){var r,n=A,i=t;if(i)for(var s=0;s<n.length;s++)i[s]=s;return void 0===u&&(u=o(n)),void 0===B&&(B=o(n)),l||!h||B?l&&h&&u^B?(U=u?1:0,A=a(A,t,e)):!l&&h&&B?(U=u?1:0,A=c(A,t,e),A=a(A,t)):!l||u||h||B?l&&!h&&u^B?(A=a(A,t),A=u?(U=0,c(A,t,e)):(U=1,A=c(A,t,e),a(A,t))):l&&u&&!h&&B?(U=1,A=c(A,t,e),A=a(A,t)):!l&&!h&&u^B&&(r=g,u?(U=1,A=c(A,t,e),U=0,g=!1,A=c(A,t,e),g=r):(U=0,A=c(A,t,e),A=a(A,t),g=!(U=1),A=c(A,t,e),g=r,A=a(A,t))):(U=0,A=c(A,t,e)):(U=u?1:0,A=c(A,t,e)),A},this.__bidiEngine__.setOptions=function(A){A&&(l=A.isInputVisual,h=A.isOutputVisual,u=A.isInputRtl,B=A.isOutputRtl,g=A.isSymmetricSwapping)},this.__bidiEngine__.setOptions(A),this.__bidiEngine__},Df=["BN","BN","BN","BN","BN","BN","BN","BN","BN","S","B","S","WS","B","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","B","B","B","S","WS","N","N","ET","ET","ET","N","N","N","N","N","ES","CS","ES","CS","CS","EN","EN","EN","EN","EN","EN","EN","EN","EN","EN","CS","N","N","N","N","N","N","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","N","N","N","N","N","N","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","N","N","N","N","BN","BN","BN","BN","BN","BN","B","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","BN","CS","N","ET","ET","ET","ET","N","N","N","N","L","N","N","BN","N","N","ET","ET","EN","EN","N","L","N","N","N","EN","L","N","N","N","N","N","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","N","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","N","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","N","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","N","N","L","L","L","L","L","L","L","N","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","N","L","N","N","N","N","N","ET","N","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","R","NSM","R","NSM","NSM","R","NSM","NSM","R","NSM","N","N","N","N","N","N","N","N","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","N","N","N","N","N","R","R","R","R","R","N","N","N","N","N","N","N","N","N","N","N","AN","AN","AN","AN","AN","AN","N","N","AL","ET","ET","AL","CS","AL","N","N","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","AL","AL","N","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","AN","AN","AN","AN","AN","AN","AN","AN","AN","AN","ET","AN","AN","AL","AL","AL","NSM","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","NSM","NSM","NSM","NSM","NSM","NSM","NSM","AN","N","NSM","NSM","NSM","NSM","NSM","NSM","AL","AL","NSM","NSM","N","NSM","NSM","NSM","NSM","AL","AL","EN","EN","EN","EN","EN","EN","EN","EN","EN","EN","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","N","AL","AL","NSM","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","N","N","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","AL","N","N","N","N","N","N","N","N","N","N","N","N","N","N","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","R","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","R","R","N","N","N","N","R","N","N","N","N","N","WS","WS","WS","WS","WS","WS","WS","WS","WS","WS","WS","BN","BN","BN","L","R","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","WS","B","LRE","RLE","PDF","LRO","RLO","CS","ET","ET","ET","ET","ET","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","CS","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","WS","BN","BN","BN","BN","BN","N","LRI","RLI","FSI","PDI","BN","BN","BN","BN","BN","BN","EN","L","N","N","EN","EN","EN","EN","EN","EN","ES","ES","N","N","N","L","EN","EN","EN","EN","EN","EN","EN","EN","EN","EN","ES","ES","N","N","N","N","L","L","L","L","L","L","L","L","L","L","L","L","L","N","N","N","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","ET","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","L","L","L","L","L","L","L","N","N","N","N","N","N","N","N","N","N","N","N","L","L","L","L","L","N","N","N","N","N","R","NSM","R","R","R","R","R","R","R","R","R","R","ES","R","R","R","R","R","R","R","R","R","R","R","R","R","N","R","R","R","R","R","N","R","N","R","R","N","R","R","N","R","R","R","R","R","R","R","R","R","R","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","NSM","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","CS","N","CS","N","N","CS","N","N","N","N","N","N","N","N","N","ET","N","N","ES","ES","N","N","N","N","N","ET","ET","N","N","N","N","N","AL","AL","AL","AL","AL","N","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","AL","N","N","BN","N","N","N","ET","ET","ET","N","N","N","N","N","ES","CS","ES","CS","CS","EN","EN","EN","EN","EN","EN","EN","EN","EN","EN","CS","N","N","N","N","N","N","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","N","N","N","N","N","N","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","N","N","N","N","N","N","N","N","N","N","N","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","L","N","N","N","L","L","L","L","L","L","N","N","L","L","L","L","L","L","N","N","L","L","L","L","L","L","N","N","L","L","L","N","N","N","ET","ET","N","N","N","ET","ET","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N","N"],Of=new e.__bidiEngine__({isInputVisual:!0}),e.API.events.push(["postProcessText",function(A){var t=A.text,e=A.options||{},r=(e.lang,[]);if(e.isInputVisual="boolean"!=typeof e.isInputVisual||e.isInputVisual,Of.setOptions(e),"[object Array]"===Object.prototype.toString.call(t)){for(var n=0,r=[],n=0;n<t.length;n+=1)"[object Array]"===Object.prototype.toString.call(t[n])?r.push([Of.doBidiReorder(t[n][0]),t[n][1],t[n][2]]):r.push([Of.doBidiReorder(t[n])]);A.text=r}else A.text=Of.doBidiReorder(t);Of.setOptions({isInputVisual:!0})}]),ue.API.TTFFont=(zd.open=function(A){return new zd(A)},zd.prototype.parse=function(){return this.directory=new hp(this.contents),this.head=new mp(this),this.name=new bp(this),this.cmap=new Qp(this),this.toUnicode={},this.hhea=new yp(this),this.maxp=new vp(this),this.hmtx=new Ep(this),this.post=new Up(this),this.os2=new Fp(this),this.loca=new Sp(this),this.glyf=new Ip(this),this.ascender=this.os2.exists&&this.os2.ascender||this.hhea.ascender,this.decender=this.os2.exists&&this.os2.decender||this.hhea.decender,this.lineGap=this.os2.exists&&this.os2.lineGap||this.hhea.lineGap,this.bbox=[this.head.xMin,this.head.yMin,this.head.xMax,this.head.yMax]},zd.prototype.registerTTF=function(){var n,A,t;if(this.scaleFactor=1e3/this.head.unitsPerEm,this.bbox=function(){for(var A,t=[],e=0,r=(A=this.bbox).length;e<r;e++)n=A[e],t.push(Math.round(n*this.scaleFactor));return t}.call(this),this.stemV=0,this.post.exists?(A=255&(t=this.post.italic_angle),32768&(t=t>>16)&&(t=-(1+(65535^t))),this.italicAngle=+(t+"."+A)):this.italicAngle=0,this.ascender=Math.round(this.ascender*this.scaleFactor),this.decender=Math.round(this.decender*this.scaleFactor),this.lineGap=Math.round(this.lineGap*this.scaleFactor),this.capHeight=this.os2.exists&&this.os2.capHeight||this.ascender,this.xHeight=this.os2.exists&&this.os2.xHeight||0,this.familyClass=(this.os2.exists&&this.os2.familyClass||0)>>8,this.isSerif=1===(t=this.familyClass)||2===t||3===t||4===t||5===t||7===t,this.isScript=10===this.familyClass,this.flags=0,this.post.isFixedPitch&&(this.flags|=1),this.isSerif&&(this.flags|=2),this.isScript&&(this.flags|=8),0!==this.italicAngle&&(this.flags|=64),this.flags|=32,!this.cmap.unicode)throw new Error("No unicode cmap for font")},zd.prototype.characterToGlyph=function(A){var t;return(null!=(t=this.cmap.unicode)?t.codeMap[A]:void 0)||0},zd.prototype.widthOfGlyph=function(A){var t=1e3/this.head.unitsPerEm;return this.hmtx.forGlyph(A).advance*t},zd.prototype.widthOfString=function(A,t,e){for(var r,n=0,i=0,s=(A=""+A).length;0<=s?i<s:s<i;i=0<=s?++i:--i)r=A.charCodeAt(i),n+=this.widthOfGlyph(this.characterToGlyph(r))+e*(1e3/t)||0;return n*(t/1e3)},zd.prototype.lineHeight=function(A,t){t=(t=null==t?!1:t)?this.lineGap:0;return(this.ascender+t-this.decender)/1e3*A},zd);function cp(A,t){for(var e in t)Bp.call(t,e)&&(A[e]=t[e]);function r(){this.constructor=A}r.prototype=t.prototype,A.prototype=new r,A.__super__=t.prototype}fp.prototype.readByte=function(){return this.data[this.pos++]},fp.prototype.writeByte=function(A){return this.data[this.pos++]=A},fp.prototype.readUInt32=function(){return 16777216*this.readByte()+(this.readByte()<<16)+(this.readByte()<<8)+this.readByte()},fp.prototype.writeUInt32=function(A){return this.writeByte(A>>>24&255),this.writeByte(A>>16&255),this.writeByte(A>>8&255),this.writeByte(255&A)},fp.prototype.readInt32=function(){var A;return 2147483648<=(A=this.readUInt32())?A-4294967296:A},fp.prototype.writeInt32=function(A){return A<0&&(A+=4294967296),this.writeUInt32(A)},fp.prototype.readUInt16=function(){return this.readByte()<<8|this.readByte()},fp.prototype.writeUInt16=function(A){return this.writeByte(A>>8&255),this.writeByte(255&A)},fp.prototype.readInt16=function(){var A;return 32768<=(A=this.readUInt16())?A-65536:A},fp.prototype.writeInt16=function(A){return A<0&&(A+=65536),this.writeUInt16(A)},fp.prototype.readString=function(A){for(var t=[],e=0;0<=A?e<A:A<e;e=0<=A?++e:--e)t[e]=String.fromCharCode(this.readByte());return t.join("")},fp.prototype.writeString=function(A){for(var t=[],e=0,r=A.length;0<=r?e<r:r<e;e=0<=r?++e:--e)t.push(this.writeByte(A.charCodeAt(e)));return t},fp.prototype.readShort=function(){return this.readInt16()},fp.prototype.writeShort=function(A){return this.writeInt16(A)},fp.prototype.readLongLong=function(){var A=this.readByte(),t=this.readByte(),e=this.readByte(),r=this.readByte(),n=this.readByte(),i=this.readByte(),s=this.readByte(),o=this.readByte();return 128&A?-1*(72057594037927940*(255^A)+281474976710656*(255^t)+1099511627776*(255^e)+4294967296*(255^r)+16777216*(255^n)+65536*(255^i)+256*(255^s)+(255^o)+1):72057594037927940*A+281474976710656*t+1099511627776*e+4294967296*r+16777216*n+65536*i+256*s+o},fp.prototype.writeLongLong=function(A){var t=Math.floor(A/4294967296),A=4294967295&A;return this.writeByte(t>>24&255),this.writeByte(t>>16&255),this.writeByte(t>>8&255),this.writeByte(255&t),this.writeByte(A>>24&255),this.writeByte(A>>16&255),this.writeByte(A>>8&255),this.writeByte(255&A)},fp.prototype.readInt=function(){return this.readInt32()},fp.prototype.writeInt=function(A){return this.writeInt32(A)},fp.prototype.read=function(A){for(var t=[],e=0;0<=A?e<A:A<e;e=0<=A?++e:--e)t.push(this.readByte());return t},fp.prototype.write=function(A){for(var t,e=[],r=0,n=A.length;r<n;r++)t=A[r],e.push(this.writeByte(t));return e};var lp,up=fp,hp=(gp.prototype.encode=function(A){var t,e,r,n,i,s,o=Object.keys(A).length,a=Math.log(2),c=16*Math.floor(Math.log(o)/a),a=Math.floor(c/a),l=16*o-c;for(s in(t=new up).writeInt(this.scalarType),t.writeShort(o),t.writeShort(c),t.writeShort(a),t.writeShort(l),r=t.pos+16*o,e=null,i=[],A)for(n=A[s],t.writeString(s),t.writeInt(lp(n)),t.writeInt(r),t.writeInt(n.length),i=i.concat(n),"head"===s&&(e=r),r+=n.length;r%4;)i.push(0),r++;return t.write(i),c=2981146554-lp(t.data),t.pos=e+8,t.writeUInt32(c),t.data},lp=function(A){var t,e,r,n;for(A=xp.call(A);A.length%4;)A.push(0);for(r=new up(A),t=e=0,n=A.length;t<n;t+=4)e+=r.readUInt32();return 4294967295&e},gp),Bp={}.hasOwnProperty;function gp(A){var t,e,r;for(this.scalarType=A.readInt(),this.tableCount=A.readShort(),this.searchRange=A.readShort(),this.entrySelector=A.readShort(),this.rangeShift=A.readShort(),this.tables={},e=0,r=this.tableCount;0<=r?e<r:r<e;e=0<=r?++e:--e)t={tag:A.readString(4),checksum:A.readInt(),offset:A.readInt(),length:A.readInt()},this.tables[t.tag]=t}function fp(A){this.data=null!=A?A:[],this.pos=0,this.length=this.data.length}function dp(A){this.file=A,A=this.file.directory.tables[this.tag],this.exists=!!A,A&&(this.offset=A.offset,this.length=A.length,this.parse(this.file.contents))}dp.prototype.parse=function(){},dp.prototype.encode=function(){},dp.prototype.raw=function(){return this.exists?(this.file.contents.pos=this.offset,this.file.contents.read(this.length)):null};function pp(A,t){this.raw=A,this.length=A.length,this.platformID=t.platformID,this.encodingID=t.encodingID,this.languageID=t.languageID}cp(Wp,i=dp),Wp.prototype.tag="head",Wp.prototype.parse=function(A){return A.pos=this.offset,this.version=A.readInt(),this.revision=A.readInt(),this.checkSumAdjustment=A.readInt(),this.magicNumber=A.readInt(),this.flags=A.readShort(),this.unitsPerEm=A.readShort(),this.created=A.readLongLong(),this.modified=A.readLongLong(),this.xMin=A.readShort(),this.yMin=A.readShort(),this.xMax=A.readShort(),this.yMax=A.readShort(),this.macStyle=A.readShort(),this.lowestRecPPEM=A.readShort(),this.fontDirectionHint=A.readShort(),this.indexToLocFormat=A.readShort(),this.glyphDataFormat=A.readShort()},Wp.prototype.encode=function(A){var t;return(t=new up).writeInt(this.version),t.writeInt(this.revision),t.writeInt(this.checkSumAdjustment),t.writeInt(this.magicNumber),t.writeShort(this.flags),t.writeShort(this.unitsPerEm),t.writeLongLong(this.created),t.writeLongLong(this.modified),t.writeShort(this.xMin),t.writeShort(this.yMin),t.writeShort(this.xMax),t.writeShort(this.yMax),t.writeShort(this.macStyle),t.writeShort(this.lowestRecPPEM),t.writeShort(this.fontDirectionHint),t.writeShort(A),t.writeShort(this.glyphDataFormat),t.data};var wp,mp=Wp,Cp=(Xp.encode=function(A,D){var t,e,r,n,i,s,o,a,c,l,u,h,B,g,f,d,p,w,m,C,Q,y,F,U,O,b,v,E,x,P,M,k,K,R,V,G,j,I,H,X,L,S,N,_=new up,T=Object.keys(A).sort(function(A,t){return A-t});switch(D){case"macroman":for(h=0,B=(()=>{var A=[];for(u=0;u<256;++u)A.push(0);return A})(),f={0:0},r={},b=0,P=T.length;b<P;b++)null==f[X=A[e=T[b]]]&&(f[X]=++h),r[e]={old:A[e],new:f[A[e]]},B[e]=f[A[e]];return _.writeUInt16(1),_.writeUInt16(0),_.writeUInt32(12),_.writeUInt16(0),_.writeUInt16(262),_.writeUInt16(0),_.write(B),{charMap:r,subtable:_.data,maxGlyphID:h+1};case"unicode":for(U=[],a=[],f={},t={},g=s=null,v=d=0,M=T.length;v<M;v++)null==f[p=A[e=T[v]]]&&(f[p]=++d),t[e]={old:p,new:f[p]},n=f[p]-e,null!=g&&n===s||(g&&a.push(g),U.push(e),s=n),g=e;for(g&&a.push(g),a.push(65535),U.push(65535),y=2*(Q=U.length),C=2*Math.pow(Math.log(Q)/Math.LN2,2),c=Math.log(C/2)/Math.LN2,m=2*Q-C,i=[],w=[],l=[],u=E=0,k=U.length;E<k;u=++E){if(F=U[u],o=a[u],65535===F){i.push(0),w.push(0);break}if(32768<=F-(O=t[F].new))for(i.push(0),w.push(2*(l.length+Q-u)),e=x=F;F<=o?x<=o:o<=x;e=F<=o?++x:--x)l.push(t[e].new);else i.push(O-F),w.push(0)}for(_.writeUInt16(3),_.writeUInt16(1),_.writeUInt32(12),_.writeUInt16(4),_.writeUInt16(16+8*Q+2*l.length),_.writeUInt16(0),_.writeUInt16(y),_.writeUInt16(C),_.writeUInt16(c),_.writeUInt16(m),I=0,K=a.length;I<K;I++)_.writeUInt16(e=a[I]);for(_.writeUInt16(0),H=0,R=U.length;H<R;H++)_.writeUInt16(e=U[H]);for(L=0,V=i.length;L<V;L++)_.writeUInt16(n=i[L]);for(S=0,G=w.length;S<G;S++)_.writeUInt16(w[S]);for(N=0,j=l.length;N<j;N++)_.writeUInt16(h=l[N]);return{charMap:t,subtable:_.data,maxGlyphID:d+1}}},Xp),Qp=(cp(jp,i),jp.prototype.tag="cmap",jp.prototype.parse=function(A){var t,e,r;for(A.pos=this.offset,this.version=A.readUInt16(),r=A.readUInt16(),this.tables=[],this.unicode=null,e=0;0<=r?e<r:r<e;e=0<=r?++e:--e)t=new Cp(A,this.offset),this.tables.push(t),t.isUnicode&&null==this.unicode&&(this.unicode=t);return!0},jp.encode=function(A,t){A=Cp.encode(A,t=null==t?"macroman":t);return(t=new up).writeUInt16(0),t.writeUInt16(1),A.table=t.data.concat(A.subtable),A},jp),yp=(cp(Gp,i),Gp.prototype.tag="hhea",Gp.prototype.parse=function(A){return A.pos=this.offset,this.version=A.readInt(),this.ascender=A.readShort(),this.decender=A.readShort(),this.lineGap=A.readShort(),this.advanceWidthMax=A.readShort(),this.minLeftSideBearing=A.readShort(),this.minRightSideBearing=A.readShort(),this.xMaxExtent=A.readShort(),this.caretSlopeRise=A.readShort(),this.caretSlopeRun=A.readShort(),this.caretOffset=A.readShort(),A.pos+=8,this.metricDataFormat=A.readShort(),this.numberOfMetrics=A.readUInt16()},Gp),Fp=(cp(Vp,i),Vp.prototype.tag="OS/2",Vp.prototype.parse=function(e){if(e.pos=this.offset,this.version=e.readUInt16(),this.averageCharWidth=e.readShort(),this.weightClass=e.readUInt16(),this.widthClass=e.readUInt16(),this.type=e.readShort(),this.ySubscriptXSize=e.readShort(),this.ySubscriptYSize=e.readShort(),this.ySubscriptXOffset=e.readShort(),this.ySubscriptYOffset=e.readShort(),this.ySuperscriptXSize=e.readShort(),this.ySuperscriptYSize=e.readShort(),this.ySuperscriptXOffset=e.readShort(),this.ySuperscriptYOffset=e.readShort(),this.yStrikeoutSize=e.readShort(),this.yStrikeoutPosition=e.readShort(),this.familyClass=e.readShort(),this.panose=(()=>{for(var A=[],t=0;t<10;++t)A.push(e.readByte());return A})(),this.charRange=(()=>{for(var A=[],t=0;t<4;++t)A.push(e.readInt());return A})(),this.vendorID=e.readString(4),this.selection=e.readShort(),this.firstCharIndex=e.readShort(),this.lastCharIndex=e.readShort(),0<this.version&&(this.ascent=e.readShort(),this.descent=e.readShort(),this.lineGap=e.readShort(),this.winAscent=e.readShort(),this.winDescent=e.readShort(),this.codePageRange=(()=>{for(var A=[],t=0;t<2;t=++t)A.push(e.readInt());return A})(),1<this.version))return this.xHeight=e.readShort(),this.capHeight=e.readShort(),this.defaultChar=e.readShort(),this.breakChar=e.readShort(),this.maxContext=e.readShort()},Vp),Up=(cp(Rp,i),Rp.prototype.tag="post",Rp.prototype.parse=function(r){var A,t;switch(r.pos=this.offset,this.format=r.readInt(),this.italicAngle=r.readInt(),this.underlinePosition=r.readShort(),this.underlineThickness=r.readShort(),this.isFixedPitch=r.readInt(),this.minMemType42=r.readInt(),this.maxMemType42=r.readInt(),this.minMemType1=r.readInt(),this.maxMemType1=r.readInt(),this.format){case 65536:case 196608:break;case 131072:var n,e=r.readUInt16();for(this.glyphNameIndex=[],n=0;0<=e?n<e:e<n;n=0<=e?++n:--n)this.glyphNameIndex.push(r.readUInt16());for(this.names=[],t=[];r.pos<this.offset+this.length;)A=r.readByte(),t.push(this.names.push(r.readString(A)));return t;case 151552:return e=r.readUInt16(),this.offsets=r.read(e);case 262144:return this.map=function(){var A,t,e=[];for(n=A=0,t=this.file.maxp.numGlyphs;0<=t?A<t:t<A;n=0<=t?++A:--A)e.push(r.readUInt32());return e}.call(this)}},Rp),bp=(cp(Kp,i),Kp.prototype.tag="name",Kp.prototype.parse=function(A){var t,e,r,n,i,s,o,a,c,l;for(A.pos=this.offset,A.readShort(),t=A.readShort(),i=A.readShort(),e=[],n=0;0<=t?n<t:t<n;n=0<=t?++n:--n)e.push({platformID:A.readShort(),encodingID:A.readShort(),languageID:A.readShort(),nameID:A.readShort(),length:A.readShort(),offset:this.offset+i+A.readShort()});for(s={},n=a=0,c=e.length;a<c;n=++a)A.pos=(r=e[n]).offset,o=A.readString(r.length),o=new pp(o,r),null==s[l=r.nameID]&&(s[l]=[]),s[r.nameID].push(o);this.strings=s,this.copyright=s[0],this.fontFamily=s[1],this.fontSubfamily=s[2],this.uniqueSubfamily=s[3],this.fontName=s[4],this.version=s[5];try{this.postscriptName=s[6][0].raw.replace(/[\x00-\x19\x80-\xff]/g,"")}catch(A){this.postscriptName=s[4][0].raw.replace(/[\x00-\x19\x80-\xff]/g,"")}return this.trademark=s[7],this.manufacturer=s[8],this.designer=s[9],this.description=s[10],this.vendorUrl=s[11],this.designerUrl=s[12],this.license=s[13],this.licenseUrl=s[14],this.preferredFamily=s[15],this.preferredSubfamily=s[17],this.compatibleFull=s[18],this.sampleText=s[19]},Kp),vp=(cp(kp,i),kp.prototype.tag="maxp",kp.prototype.parse=function(A){return A.pos=this.offset,this.version=A.readInt(),this.numGlyphs=A.readUInt16(),this.maxPoints=A.readUInt16(),this.maxContours=A.readUInt16(),this.maxCompositePoints=A.readUInt16(),this.maxComponentContours=A.readUInt16(),this.maxZones=A.readUInt16(),this.maxTwilightPoints=A.readUInt16(),this.maxStorage=A.readUInt16(),this.maxFunctionDefs=A.readUInt16(),this.maxInstructionDefs=A.readUInt16(),this.maxStackElements=A.readUInt16(),this.maxSizeOfInstructions=A.readUInt16(),this.maxComponentElements=A.readUInt16(),this.maxComponentDepth=A.readUInt16()},kp),Ep=(cp(Mp,i),Mp.prototype.tag="hmtx",Mp.prototype.parse=function(e){var r,A,n,i,t,s,o;for(e.pos=this.offset,this.metrics=[],r=0,s=this.file.hhea.numberOfMetrics;0<=s?r<s:s<r;r=0<=s?++r:--r)this.metrics.push({advance:e.readUInt16(),lsb:e.readInt16()});for(n=this.file.maxp.numGlyphs-this.file.hhea.numberOfMetrics,this.leftSideBearings=(()=>{var A,t=[];for(r=A=0;0<=n?A<n:n<A;r=0<=n?++A:--A)t.push(e.readInt16());return t})(),this.widths=function(){for(var A,t=[],e=0,r=(A=this.metrics).length;e<r;e++)i=A[e],t.push(i.advance);return t}.call(this),A=this.widths[this.widths.length-1],o=[],r=t=0;0<=n?t<n:n<t;r=0<=n?++t:--t)o.push(this.widths.push(A));return o},Mp.prototype.forGlyph=function(A){return A in this.metrics?this.metrics[A]:{advance:this.metrics[this.metrics.length-1].advance,lsb:this.leftSideBearings[A-this.metrics.length]}},Mp),xp=[].slice,Ip=(cp(Pp,i),Pp.prototype.tag="glyf",Pp.prototype.parse=function(){return this.cache={}},Pp.prototype.glyphFor=function(A){var t,e,r,n,i,s;return A in this.cache?this.cache[A]:(n=this.file.loca,t=this.file.contents,e=n.indexOf(A),0===(n=n.lengthOf(A))?this.cache[A]=null:(t.pos=this.offset+e,t=(e=new up(t.read(n))).readShort(),n=e.readShort(),s=e.readShort(),r=e.readShort(),i=e.readShort(),this.cache[A]=-1===t?new Lp(e,n,s,r,i):new Hp(e,t,n,s,r,i),this.cache[A]))},Pp.prototype.encode=function(A,t,e){for(var r,n=[],i=[],s=0,o=t.length;s<o;s++)r=A[t[s]],i.push(n.length),r&&(n=n.concat(r.encode(e)));return i.push(n.length),{table:n,offsets:i}},Pp),Hp=(Op.prototype.encode=function(){return this.raw.data},Op),Lp=(Dp.prototype.encode=function(){for(var A=new up(xp.call(this.raw.data)),t=0,e=this.glyphIDs.length;t<e;++t)A.pos=this.glyphOffsets[t];return A.data},Dp),Sp=(cp(Tp,i),Tp.prototype.tag="loca",Tp.prototype.parse=function(e){var A,r;return e.pos=this.offset,A=this.file.head.indexToLocFormat,this.offsets=(0===A?function(){var A,t=[];for(r=0,A=this.length;r<A;r+=2)t.push(2*e.readUInt16());return t}:function(){var A,t=[];for(r=0,A=this.length;r<A;r+=4)t.push(e.readUInt32());return t}).call(this)},Tp.prototype.indexOf=function(A){return this.offsets[A]},Tp.prototype.lengthOf=function(A){return this.offsets[A+1]-this.offsets[A]},Tp.prototype.encode=function(A,t){for(var e,r=new Uint32Array(this.offsets.length),n=0,i=0,s=0;s<r.length;++s)r[s]=n,i<t.length&&t[i]==s&&(++i,r[s]=n,e=this.offsets[s],0<(e=this.offsets[s+1]-e))&&(n+=e);for(var o=new Array(4*r.length),a=0;a<r.length;++a)o[4*a+3]=255&r[a],o[4*a+2]=(65280&r[a])>>8,o[4*a+1]=(16711680&r[a])>>16,o[4*a]=(4278190080&r[a])>>24;return o},Tp),Np=(_p.prototype.generateCmap=function(){var A,t,e,r=this.font.cmap.tables[0].codeMap,n={};for(A in e=this.subset)t=e[A],n[A]=r[t];return n},_p.prototype.glyphsFor=function(A){for(var t,e,r,n,i={},s=0,o=A.length;s<o;s++)i[r=A[s]]=this.font.glyf.glyphFor(r);for(r in t=[],i)null!=(e=i[r])&&e.compound&&t.push.apply(t,e.glyphIDs);if(0<t.length)for(r in n=this.glyphsFor(t))e=n[r],i[r]=e;return i},_p.prototype.encode=function(A,t){var e,r,n,i,s,o,a,c,l=Qp.encode(this.generateCmap(),"unicode"),A=this.glyphsFor(A),u={0:0};for(e in c=l.charMap)u[(n=c[e]).old]=n.new;for(a in o=l.maxGlyphID,A)a in u||(u[a]=o++);return i=(A=>{var t,e={};for(t in A)e[A[t]]=t;return e})(u),s=Object.keys(i).sort(function(A,t){return A-t}),l=(()=>{for(var A=[],t=0,e=s.length;t<e;t++)r=s[t],A.push(i[r]);return A})(),A=this.font.glyf.encode(A,l,u),l=this.font.loca.encode(A.offsets,l),A={cmap:this.font.cmap.raw(),glyf:A.table,loca:l,hmtx:this.font.hmtx.raw(),hhea:this.font.hhea.raw(),maxp:this.font.maxp.raw(),post:this.font.post.raw(),name:this.font.name.raw(),head:this.font.head.encode(t)},this.font.os2.exists&&(A["OS/2"]=this.font.os2.raw()),this.font.directory.encode(A)},_p);function _p(A){this.font=A,this.subset={},this.unicodes={},this.next=33}function Tp(){return Tp.__super__.constructor.apply(this,arguments)}function Dp(A,t,e,r,n){var i,s;for(this.raw=A,this.xMin=t,this.yMin=e,this.xMax=r,this.yMax=n,this.compound=!0,this.glyphIDs=[],this.glyphOffsets=[],i=this.raw;s=i.readShort(),this.glyphOffsets.push(i.pos),this.glyphIDs.push(i.readUInt16()),32&s;)i.pos+=1&s?4:2,128&s?i.pos+=8:64&s?i.pos+=4:8&s&&(i.pos+=2)}function Op(A,t,e,r,n,i){this.raw=A,this.numberOfContours=t,this.xMin=e,this.yMin=r,this.xMax=n,this.yMax=i,this.compound=!1}function Pp(){return Pp.__super__.constructor.apply(this,arguments)}function Mp(){return Mp.__super__.constructor.apply(this,arguments)}function kp(){return kp.__super__.constructor.apply(this,arguments)}function Kp(){return Kp.__super__.constructor.apply(this,arguments)}function Rp(){return Rp.__super__.constructor.apply(this,arguments)}function Vp(){return Vp.__super__.constructor.apply(this,arguments)}function Gp(){return Gp.__super__.constructor.apply(this,arguments)}function jp(){return jp.__super__.constructor.apply(this,arguments)}function Xp(e,A){var t,r,n,i,s,o,a,c,l,u,h,B,g,f,d,p;switch(this.platformID=e.readUInt16(),this.encodingID=e.readShort(),this.offset=A+e.readInt(),A=e.pos,e.pos=this.offset,this.format=e.readUInt16(),this.length=e.readUInt16(),this.language=e.readUInt16(),this.isUnicode=3===this.platformID&&1===this.encodingID&&4===this.format||0===this.platformID&&4===this.format,this.codeMap={},this.format){case 0:for(o=0;o<256;++o)this.codeMap[o]=e.readByte();break;case 4:for(u=e.readUInt16(),l=u/2,e.pos+=6,n=(()=>{var A,t=[];for(o=A=0;0<=l?A<l:l<A;o=0<=l?++A:--A)t.push(e.readUInt16());return t})(),e.pos+=2,B=(()=>{var A,t=[];for(o=A=0;0<=l?A<l:l<A;o=0<=l?++A:--A)t.push(e.readUInt16());return t})(),a=(()=>{var A,t=[];for(o=A=0;0<=l?A<l:l<A;o=0<=l?++A:--A)t.push(e.readUInt16());return t})(),c=(()=>{var A,t=[];for(o=A=0;0<=l?A<l:l<A;o=0<=l?++A:--A)t.push(e.readUInt16());return t})(),r=(this.length-e.pos+this.offset)/2,s=(()=>{var A,t=[];for(o=A=0;0<=r?A<r:r<A;o=0<=r?++A:--A)t.push(e.readUInt16());return t})(),o=f=0,p=n.length;f<p;o=++f)for(g=n[o],t=d=h=B[o];h<=g?d<=g:g<=d;t=h<=g?++d:--d)0===c[o]?i=t+a[o]:0!==(i=s[c[o]/2+(t-h)-(l-o)]||0)&&(i+=a[o]),this.codeMap[t]=65535&i}e.pos=A}function Wp(){return Wp.__super__.constructor.apply(this,arguments)}function Jp(){}ue.API.PDFObject=(wp=function(A,t){return(Array(t+1).join("0")+A).slice(-t)},Jp.convert=function(r){var n,A,t,e;if(Array.isArray(r))return"["+(()=>{for(var A=[],t=0,e=r.length;t<e;t++)n=r[t],A.push(Jp.convert(n));return A})().join(" ")+"]";if("string"==typeof r)return"/"+r;if(null!=r&&r.isString)return"("+r+")";if(r instanceof Date)return"(D:"+wp(r.getUTCFullYear(),4)+wp(r.getUTCMonth(),2)+wp(r.getUTCDate(),2)+wp(r.getUTCHours(),2)+wp(r.getUTCMinutes(),2)+wp(r.getUTCSeconds(),2)+"Z)";if("[object Object]"!=={}.toString.call(r))return""+r;for(A in t=["<<"],r)e=r[A],t.push("/"+A+" "+Jp.convert(e));return t.push(">>"),t.join("\n")},Jp);function Yp(A){return A&&A.Math===Math&&A}function a(A){try{return!!A()}catch(A){return!0}}function qp(A,t){return{enumerable:!(1&A),configurable:!(2&A),writable:!(4&A),value:t}}function zp(A){return Nw(Sw(A),8,-1)}function Zp(A){return null==A}function $p(A){if(Ow(A))throw new Pw("Can't call method on "+A);return A}function Aw(A){return Mw(kw(A))}function tw(A){return"object"==typeof A?null!==A:Vw(A)}function ew(A,t){return arguments.length<2?(e=Gw[A],jw(e)?e:void 0):Gw[A]&&Gw[A][t];var e}function rw(A){try{return n1(A)}catch(A){return"Object"}}function nw(A){if(i1(A))return A;throw new o1(s1(A)+" is not a function")}function iw(A,t){return A=A[t],c1(A)?void 0:a1(A)}function sw(t,e){try{f1(g1,t,{value:e,configurable:!0,writable:!0})}catch(A){g1[t]=e}return e}function ow(A,t){return w1[A]||(w1[A]=t||{})}function aw(A){return C1(m1(A))}function cw(A){return"Symbol("+(void 0===A?"":A)+")_"+b1(++F1+U1,36)}function lw(A){return v1(I1,A)||(I1[A]=E1&&v1(x1,A)?x1[A]:H1("Symbol."+A)),I1[A]}function uw(A,t){if(!S1(A)||N1(A))return A;var e=_1(A,O1);if(e){if(e=L1(e,A,t=void 0===t?"default":t),!S1(e)||N1(e))return e;throw new D1("Can't convert object to primitive value")}return T1(A,t=void 0===t?"number":t)}function hw(A){return A=P1(A,"string"),M1(A)?A:A+""}function Bw(A){return K1?k1.createElement(A):{}}function gw(A){if(z1(A))return A;throw new $1(Z1(A)+" is not an object")}function fw(A){return d0[A]||(d0[A]=f0(A))}function dw(A,t,e,r){var n=(r=r||{}).enumerable,i=void 0!==r.name?r.name:t;if(k0(e)&&R0(e,i,r),r.global)n?A[t]=e:V0(t,e);else{try{r.unsafe?A[t]&&(n=!0):delete A[t]}catch(A){}n?A[t]=e:K0.f(A,t,{value:e,enumerable:!1,configurable:!r.nonConfigurable,writable:!r.nonWritable})}return A}function pw(A){return(A=+A)!=A||0==A?0:X0(A)}function ww(A,t){return(A=W0(A))<0?J0(A+t,0):Y0(A,t)}function mw(A){return 0<(A=q0(A))?z0(A,9007199254740991):0}function Cw(A){return Z0(A.length)}function Qw(o){return function(A,t,e){var r=$0(A),n=t2(r);if(0!==n){var i,s=A2(e,n);if(o&&t!=t){for(;s<n;)if((i=r[s++])!=i)return!0}else for(;s<n;s++)if((o||s in r)&&r[s]===t)return o||s||0}return!o&&-1}}function yw(A,t){var e,r=r2(A),n=0,i=[];for(e in r)!e2(i2,e)&&e2(r,e)&&s2(i,e);for(;t.length>n;)!e2(r,e=t[n++])||~n2(i,e)||s2(i,e);return i}function Fw(A,t,e){for(var r=f2(t),n=p2.f,i=d2.f,s=0;s<r.length;s++){var o=r[s];g2(A,o)||e&&g2(e,o)||n(A,o,i(t,o))}}function Uw(A,t){return(A=y2[Q2(A)])===U2||A!==F2&&(m2(t)?w2(t):!!t)}function c(A,t){var e,r,n,i=A.target,s=A.global,o=A.stat,a=s?b2:o?b2[i]||I2(i,{}):b2[i]&&b2[i].prototype;if(a)for(e in t){if(r=t[e],n=A.dontCallGetSet?(n=v2(a,e))&&n.value:a[e],!L2(s?e:i+(o?".":"#")+e,A.forced)&&void 0!==n){if(typeof r==typeof n)continue;H2(r,n)}(A.sham||n&&n.sham)&&E2(r,"sham",!0),x2(a,e,r,A)}}var bw,vw,Ew,xw,n=Yp("object"==typeof globalThis&&globalThis)||Yp("object"==typeof window&&window)||Yp("object"==typeof self&&self)||Yp("object"==typeof ya&&ya)||Yp("object"==typeof ya&&ya)||function(){return this}()||Function("return this")(),t={},s=!a(function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}),A=!a(function(){var A=function(){}.bind();return"function"!=typeof A||A.hasOwnProperty("prototype")}),Iw=Function.prototype.call,e=A?Iw.bind(Iw):function(){return Iw.apply(Iw,arguments)},i={},l={}.propertyIsEnumerable,Hw=Object.getOwnPropertyDescriptor,u=Hw&&!l.call({1:2},1),u=(i.f=u?function(A){A=Hw(this,A);return!!A&&A.enumerable}:l,A),l=Function.prototype,Lw=l.call,l=u&&l.bind.bind(Lw,Lw),u=u?l:function(A){return function(){return Lw.apply(A,arguments)}},l=u,Sw=l({}.toString),Nw=l("".slice),l=a,_w=zp,Tw=Object,Dw=u("".split),l=l(function(){return!Tw("z").propertyIsEnumerable(0)})?function(A){return"String"===_w(A)?Dw(A,""):Tw(A)}:Tw,Ow=Zp,Pw=TypeError,Mw=l,kw=$p,Kw="object"==typeof document&&document.all,Rw=void 0===Kw&&void 0!==Kw?function(A){return"function"==typeof A||A===Kw}:function(A){return"function"==typeof A},Vw=Rw,Gw=n,jw=Rw,Xw=u({}.isPrototypeOf),Ww=n.navigator,Ww=Ww&&Ww.userAgent,Ww=Ww?String(Ww):"",h=Ww,Jw=n.process,Yw=n.Deno,Jw=Jw&&Jw.versions||Yw&&Yw.version,Yw=Jw&&Jw.v8,Jw=r1=!(r1=Yw?0<(Zw=Yw.split("."))[0]&&Zw[0]<4?1:+(Zw[0]+Zw[1]):r1)&&h&&(!(Zw=h.match(/Edge\/(\d+)/))||74<=Zw[1])&&(Zw=h.match(/Chrome\/(\d+)/))?+Zw[1]:r1,qw=Jw,Yw=a,zw=n.String,h=!!Object.getOwnPropertySymbols&&!Yw(function(){var A=Symbol("symbol detection");return!zw(A)||!(Object(A)instanceof Symbol)||!Symbol.sham&&qw&&qw<41}),Zw=h&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,$w=ew,A1=Rw,t1=Xw,e1=Object,r1=Zw?function(A){return"symbol"==typeof A}:function(A){var t=$w("Symbol");return A1(t)&&t1(t.prototype,e1(A))},n1=String,i1=Rw,s1=rw,o1=TypeError,a1=nw,c1=Zp,l1=e,u1=Rw,h1=tw,B1=TypeError,Yw={exports:{}},g1=n,f1=Object.defineProperty,d1=sw,p1="__core-js_shared__",d1=Yw.exports=n[p1]||d1(p1,{}),w1=((d1.versions||(d1.versions=[])).push({version:"3.43.0",mode:"global",copyright:"© 2014-2025 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.43.0/LICENSE",source:"https://github.com/zloirock/core-js"}),Yw.exports),m1=$p,C1=Object,Q1=aw,y1=u({}.hasOwnProperty),p1=Object.hasOwn||function(A,t){return y1(Q1(A),t)},d1=u,F1=0,U1=Math.random(),b1=d1(1.1.toString),d1=ow,v1=p1,g=cw,E1=h,h=Zw,x1=n.Symbol,I1=d1("wks"),H1=h?x1.for||x1:x1&&x1.withoutSetter||g,L1=e,S1=tw,N1=r1,_1=iw,T1=function(A,t){var e,r;if("string"===t&&u1(e=A.toString)&&!h1(r=l1(e,A)))return r;if(u1(e=A.valueOf)&&!h1(r=l1(e,A)))return r;if("string"!==t&&u1(e=A.toString)&&!h1(r=l1(e,A)))return r;throw new B1("Can't convert object to primitive value")},D1=TypeError,O1=lw("toPrimitive"),P1=uw,M1=r1,Zw=tw,k1=n.document,K1=Zw(k1)&&Zw(k1.createElement),R1=Bw,d1=!s&&!a(function(){return 7!==Object.defineProperty(R1("div"),"a",{get:function(){return 7}}).a}),V1=e,G1=i,j1=qp,X1=Aw,W1=hw,J1=p1,Y1=d1,q1=Object.getOwnPropertyDescriptor,h=(t.f=s?q1:function(A,t){if(A=X1(A),t=W1(t),Y1)try{return q1(A,t)}catch(A){}if(J1(A,t))return j1(!V1(G1.f,A,t),A[t])},{}),g=s&&a(function(){return 42!==Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype}),z1=tw,Z1=String,$1=TypeError,A0=d1,t0=gw,e0=hw,r0=TypeError,n0=Object.defineProperty,i0=Object.getOwnPropertyDescriptor,s0="enumerable",o0="configurable",a0="writable",Zw=(h.f=s?g?function(A,t,e){var r;return t0(A),t=e0(t),t0(e),"function"==typeof A&&"prototype"===t&&"value"in e&&a0 in e&&!e[a0]&&(r=i0(A,t))&&r[a0]&&(A[t]=e.value,e={configurable:(o0 in e?e:r)[o0],enumerable:(s0 in e?e:r)[s0],writable:!1}),n0(A,t,e)}:n0:function(A,t,e){if(t0(A),t=e0(t),t0(e),A0)try{return n0(A,t,e)}catch(A){}if("get"in e||"set"in e)throw new r0("Accessors not supported");return"value"in e&&(A[t]=e.value),A},s),c0=h,l0=qp,d1=Zw?function(A,t,e){return c0.f(A,t,l0(1,e))}:function(A,t,e){return A[t]=e,A},Zw={exports:{}},u0=s,h0=p1,f=Function.prototype,B0=u0&&Object.getOwnPropertyDescriptor,h0=h0(f,"name"),h0={EXISTS:h0,PROPER:h0&&"something"===function(){}.name,CONFIGURABLE:h0&&(!u0||B0(f,"name").configurable)},u0=u,B0=Rw,f=Yw.exports,g0=u0(Function.toString),u0=(B0(f.inspectSource)||(f.inspectSource=function(A){return g0(A)}),f.inspectSource),B0=Rw,f=n.WeakMap,B0=B0(f)&&/native code/.test(String(f)),f0=cw,d0=ow("keys"),f={},p0=tw,w0=d1,m0=p1,Yw=Yw.exports,C0=fw,Q0=f,y0="Object already initialized",F0=n.TypeError,U0=n.WeakMap,b0=B0||Yw.state?((Ew=Yw.state||(Yw.state=new U0)).get=Ew.get,Ew.has=Ew.has,Ew.set=Ew.set,bw=function(A,t){if(Ew.has(A))throw new F0(y0);return t.facade=A,Ew.set(A,t),t},vw=function(A){return Ew.get(A)||{}},function(A){return Ew.has(A)}):(Q0[xw=C0("state")]=!0,bw=function(A,t){if(m0(A,xw))throw new F0(y0);return t.facade=A,w0(A,xw,t),t},vw=function(A){return m0(A,xw)?A[xw]:{}},function(A){return m0(A,xw)}),B0={set:bw,get:vw,has:b0,enforce:function(A){return b0(A)?vw(A):bw(A,{})},getterFor:function(t){return function(A){if(p0(A)&&(A=vw(A)).type===t)return A;throw new F0("Incompatible receiver, "+t+" required")}}},Yw=u,U0=a,v0=Rw,E0=p1,x0=s,I0=h0.CONFIGURABLE,H0=u0,L0=B0.enforce,S0=B0.get,N0=String,_0=Object.defineProperty,T0=Yw("".slice),D0=Yw("".replace),O0=Yw([].join),P0=x0&&!U0(function(){return 8!==_0(function(){},"length",{value:8}).length}),M0=String(String).split("String"),Q0=Zw.exports=function(A,t,e){"Symbol("===T0(N0(t),0,7)&&(t="["+D0(N0(t),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),e&&e.getter&&(t="get "+t),e&&e.setter&&(t="set "+t),(!E0(A,"name")||I0&&A.name!==t)&&(x0?_0(A,"name",{value:t,configurable:!0}):A.name=t),P0&&e&&E0(e,"arity")&&A.length!==e.arity&&_0(A,"length",{value:e.arity});try{e&&E0(e,"constructor")&&e.constructor?x0&&_0(A,"prototype",{writable:!1}):A.prototype&&(A.prototype=void 0)}catch(A){}e=L0(A);return E0(e,"source")||(e.source=O0(M0,"string"==typeof t?t:"")),A},k0=(Function.prototype.toString=Q0(function(){return v0(this)&&S0(this).source||H0(this)},"toString"),Rw),K0=h,R0=Zw.exports,V0=sw,C0={},G0=Math.ceil,j0=Math.floor,X0=Math.trunc||function(A){A=+A;return(0<A?j0:G0)(A)},W0=pw,J0=Math.max,Y0=Math.min,q0=pw,z0=Math.min,Z0=mw,$0=Aw,A2=ww,t2=Cw,Yw={includes:Qw(!0),indexOf:Qw(!1)},U0=u,e2=p1,r2=Aw,n2=Yw.indexOf,i2=f,s2=U0([].push),Q0=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],o2=yw,a2=Q0.concat("length","prototype"),U0=(C0.f=Object.getOwnPropertyNames||function(A){return o2(A,a2)},{}),c2=(U0.f=Object.getOwnPropertySymbols,ew),l2=C0,u2=U0,h2=gw,B2=u([].concat),c2=c2("Reflect","ownKeys")||function(A){var t=l2.f(h2(A)),e=u2.f;return e?B2(t,e(A)):t},g2=p1,f2=c2,d2=t,p2=h,w2=a,m2=Rw,C2=/#|\.prototype\./,Q2=Uw.normalize=function(A){return String(A).replace(C2,".").toLowerCase()},y2=Uw.data={},F2=Uw.NATIVE="N",U2=Uw.POLYFILL="P",c2=Uw,b2=n,v2=t.f,E2=d1,x2=dw,I2=sw,H2=Fw,L2=c2,S2=!a(function(){function A(){}return A.prototype.constructor=null,Object.getPrototypeOf(new A)!==A.prototype}),N2=p1,_2=Rw,T2=aw,D2=fw("IE_PROTO"),O2=Object,P2=O2.prototype,S2=S2?O2.getPrototypeOf:function(A){var t,A=T2(A);return N2(A,D2)?A[D2]:(t=A.constructor,_2(t)&&A instanceof t?t.prototype:A instanceof O2?P2:null)},M2=u,k2=nw,K2=tw,R2=function(A){return K2(A)||null===A},V2=String,G2=TypeError,j2=function(A,t,e){try{return M2(k2(Object.getOwnPropertyDescriptor(A,t)[e]))}catch(A){}},X2=tw,W2=$p,J2=function(A){if(R2(A))return A;throw new G2("Can't set "+V2(A)+" as a prototype")},Y2=Object.setPrototypeOf||("__proto__"in{}?(()=>{var e,r=!1,A={};try{(e=j2(Object.prototype,"__proto__","set"))(A,[]),r=A instanceof Array}catch(A){}return function(A,t){return W2(A),J2(t),X2(A)&&(r?e(A,t):A.__proto__=t),A}})():void 0),q2={},z2=yw,Z2=Q0,$2=Object.keys||function(A){return z2(A,Z2)},Am=h,tm=gw,em=Aw,rm=$2;q2.f=s&&!g?Object.defineProperties:function(A,t){tm(A);for(var e,r=em(t),n=rm(t),i=n.length,s=0;s<i;)Am.f(A,e=n[s++],r[e]);return A};function nm(){}function im(A){A.write(xm("")),A.close();var t=A.parentWindow.Object;return A=null,t}function sm(A){if("Function"===Km(A))return Rm(A)}function om(A,t){return Vm(A),void 0===t?A:Gm?jm(A,t):function(){return A.apply(t,arguments)}}function am(A){return void 0!==A&&(Xm.Array===A||Jm[Wm]===A)}function cm(A){if(!rC(A))return eC(A,iC)||eC(A,"@@iterator")||nC[tC(A)]}function lm(A,t){if(t=arguments.length<2?lC(A):t,oC(t))return aC(sC(t,A));throw new uC(cC(A)+" is not iterable")}function um(A,t){this.stopped=A,this.result=t}function hm(A,t,e){function r(A){return i&&UC(i,"normal"),new um(!0,A)}function n(A){return h?(pC(A),f?d(A[0],A[1],r):d(A[0],A[1])):f?d(A,r):d(A)}var i,s,o,a,c,l,u=e&&e.that,h=!(!e||!e.AS_ENTRIES),B=!(!e||!e.IS_RECORD),g=!(!e||!e.IS_ITERATOR),f=!(!e||!e.INTERRUPTED),d=fC(t,u);if(B)i=A.iterator;else if(g)i=A;else{if(!(e=FC(A)))throw new bC(wC(A)+" is not iterable");if(mC(e)){for(s=0,o=CC(A);s<o;s++)if((a=n(A[s]))&&QC(vC,a))return a;return new um(!1)}i=yC(A,e)}for(c=(B?A:i).next;!(l=dC(c,i)).done;){try{a=n(l.value)}catch(A){UC(i,"throw",A)}if("object"==typeof a&&a&&QC(vC,a))return a}return new um(!1)}function Bm(A){if("Symbol"===EC(A))throw new TypeError("Cannot convert a Symbol value to a string");return xC(A)}function gm(A,t){var e,r=HC(VC,this);return SC?e=SC(new KC,r?LC(this):VC):(e=r?this:_C(VC),TC(e,kC,"Error")),void 0!==t&&TC(e,"message",MC(t)),OC(e,gm,e.stack,1),2<arguments.length&&DC(e,arguments[2]),PC(A,RC,{that:r=[]}),TC(e,"errors",r),e}function fm(A){jC[GC][A]=!0}var dm,pm,g=ew("document","documentElement"),wm=gw,mm=q2,Cm=Q0,q2=f,Qm=g,ym=Bw,Fm=">",Um="<",bm="prototype",vm="script",Em=fw("IE_PROTO"),xm=function(A){return Um+vm+Fm+A+Um+"/"+vm+Fm},Im=function(){try{dm=new ActiveXObject("htmlfile")}catch(A){}Im="undefined"==typeof document||document.domain&&dm?im(dm):(A=ym("iframe"),t="java"+vm+":",A.style.display="none",Qm.appendChild(A),A.src=String(t),(t=A.contentWindow.document).open(),t.write(xm("document.F=Object")),t.close(),t.F);for(var A,t,e=Cm.length;e--;)delete Im[bm][Cm[e]];return Im()},Q0=(q2[Em]=!0,Object.create||function(A,t){var e;return null!==A?(nm[bm]=wm(A),e=new nm,nm[bm]=null,e[Em]=A):e=Im(),void 0===t?e:mm.f(e,t)}),Hm=tw,Lm=d1,Sm=Error,Nm=u("".replace),f=String(new Sm("zxcasd").stack),_m=/\n\s*at [^:]*:[^\n]*/,Tm=_m.test(f),Dm=qp,q2=!a(function(){var A=new Error("a");return!("stack"in A)||(Object.defineProperty(A,"stack",Dm(1,7)),7!==A.stack)}),Om=d1,Pm=function(A,t){if(Tm&&"string"==typeof A&&!Sm.prepareStackTrace)for(;t--;)A=Nm(A,_m,"");return A},Mm=q2,km=Error.captureStackTrace,Km=zp,Rm=u,Vm=nw,Gm=A,jm=sm(sm.bind),f={},Xm=f,Wm=lw("iterator"),Jm=Array.prototype,q2={},q2=(q2[lw("toStringTag")]="z","[object z]"===String(q2)),Ym=q2,qm=Rw,zm=zp,Zm=lw("toStringTag"),$m=Object,AC="Arguments"===zm(function(){return arguments}()),Ym=Ym?zm:function(A){var t;return void 0===A?"Undefined":null===A?"Null":"string"==typeof(t=((A,t)=>{try{return A[t]}catch(A){}})(A=$m(A),Zm))?t:AC?zm(A):"Object"===(t=zm(A))&&qm(A.callee)?"Arguments":t},tC=Ym,eC=iw,rC=Zp,nC=f,iC=lw("iterator"),sC=e,oC=nw,aC=gw,cC=rw,lC=cm,uC=TypeError,hC=e,BC=gw,gC=iw,fC=om,dC=e,pC=gw,wC=rw,mC=am,CC=Cw,QC=Xw,yC=lm,FC=cm,UC=function(A,t,e){var r,n;BC(A);try{if(!(r=gC(A,"return"))){if("throw"===t)throw e;return e}r=hC(r,A)}catch(A){n=!0,r=A}if("throw"===t)throw e;if(n)throw r;return BC(r),e},bC=TypeError,vC=um.prototype,EC=Ym,xC=String,IC=Bm,d=c,HC=Xw,LC=S2,SC=Y2,NC=Fw,_C=Q0,TC=d1,p=qp,DC=function(A,t){Hm(t)&&"cause"in t&&Lm(A,"cause",t.cause)},OC=function(A,t,e,r){Mm&&(km?km(A,t):Om(A,"stack",Pm(e,r)))},PC=hm,MC=function(A,t){return void 0===A?arguments.length<2?"":t:IC(A)},kC=lw("toStringTag"),KC=Error,RC=[].push,VC=(SC?SC(gm,KC):NC(gm,KC,{name:!0}),gm.prototype=_C(KC.prototype,{constructor:p(1,gm),message:p(1,""),name:p(1,"AggregateError")})),NC=(d({global:!0,constructor:!0,arity:2},{AggregateError:gm}),lw),p=Q0,d=h.f,GC=NC("unscopables"),jC=Array.prototype,NC=(void 0===jC[GC]&&d(jC,GC,{configurable:!0,value:p(null)}),a),d=Rw,p=tw,XC=S2,w=dw,WC=lw("iterator"),JC=!1;[].keys&&("next"in(m=[].keys())?(XC=XC(XC(m)))!==Object.prototype&&(pm=XC):JC=!0);function YC(A,t,e){(A=A&&!e?A.prototype:A)&&!tQ(A,eQ)&&AQ(A,eQ,{configurable:!0,value:t})}function qC(){return this}function zC(){return this}function ZC(A,t,e,r,n,i,s){function o(A){if(A===n&&B)return B;if(!QQ&&A&&A in u)return u[A];switch(A){case"keys":case FQ:case UQ:return function(){return new e(this,A)}}return function(){return new e(this)}}uQ(e,t,r);var a,c,r=t+" Iterator",l=!1,u=A.prototype,h=u[yQ]||u["@@iterator"]||n&&u[n],B=!QQ&&h||o(n),g="Array"===t&&u.entries||h;if(g&&(g=hQ(g.call(new A)))!==Object.prototype&&g.next&&(hQ(g)!==CQ&&(BQ?BQ(g,CQ):lQ(g[yQ])||dQ(g,yQ,zC)),gQ(g,r,!0)),wQ&&n===FQ&&h&&h.name!==FQ&&(mQ?fQ(u,"name",FQ):(l=!0,B=function(){return cQ(h,this)})),n)if(a={values:o(FQ),keys:i?B:o("keys"),entries:o(UQ)},s)for(c in a)!QQ&&!l&&c in u||dQ(u,c,a[c]);else aQ({target:t,proto:!0,forced:QQ||l},a);return u[yQ]!==B&&dQ(u,yQ,B,{name:n}),pQ[t]=B,a}function $C(A,t){return{value:A,done:t}}d((pm=!p(pm)||NC(function(){var A={};return pm[WC].call(A)!==A})?{}:pm)[WC])||w(pm,WC,function(){return this});var m={IteratorPrototype:pm,BUGGY_SAFARI_ITERATORS:JC},AQ=h.f,tQ=p1,eQ=lw("toStringTag"),rQ=m.IteratorPrototype,nQ=Q0,iQ=qp,sQ=YC,oQ=f,aQ=c,cQ=e,lQ=Rw,uQ=function(A,t,e,r){t+=" Iterator";return A.prototype=nQ(rQ,{next:iQ(+!r,e)}),sQ(A,t,!1),oQ[t]=qC,A},hQ=S2,BQ=Y2,gQ=YC,fQ=d1,dQ=dw,XC=lw,pQ=f,wQ=h0.PROPER,mQ=h0.CONFIGURABLE,CQ=m.IteratorPrototype,QQ=m.BUGGY_SAFARI_ITERATORS,yQ=XC("iterator"),FQ="values",UQ="entries",bQ=Aw,d=fm,p=f,NC=B0,w=h.f,JC=ZC,vQ=$C,m=s,EQ="Array Iterator",xQ=NC.set,IQ=NC.getterFor(EQ),XC=JC(Array,"Array",function(A,t){xQ(this,{type:EQ,target:bQ(A),index:0,kind:t})},function(){var A=IQ(this),t=A.target,e=A.index++;if(!t||e>=t.length)return A.target=null,vQ(void 0,!0);switch(A.kind){case"keys":return vQ(e,!1);case"values":return vQ(t[e],!1)}return vQ([e,t[e]],!1)},"values"),f=p.Arguments=p.Array;if(d("keys"),d("values"),d("entries"),m&&"values"!==f.name)try{w(f,"name",{value:"values"})}catch(A){}function HQ(A){return iy.slice(0,A.length)===A}function LQ(A,t,e){return e.get&&sy(e.get,t,{getter:!0}),e.set&&sy(e.set,t,{setter:!0}),oy.f(A,t,e)}function SQ(A){A=ay(A),ly&&A&&!A[uy]&&cy(A,uy,{configurable:!0,get:function(){return this}})}function NQ(A,t){if(hy(t,A))return A;throw new By("Incorrect invocation")}function _Q(){}function TQ(A){if(!gy(A))return!1;try{return py(_Q,[],A),!0}catch(A){return!1}}function DQ(A){if(!gy(A))return!1;switch(fy(A)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return Cy||!!my(wy,dy(A))}catch(A){return!0}}function OQ(A){if(Qy(A))return A;throw new Fy(yy(A)+" is not a constructor")}function PQ(A,t){return void 0===(A=Uy(A).constructor)||vy(A=Uy(A)[Ey])?t:by(A)}function MQ(A){return function(){Jy(A)}}function kQ(A){Jy(A.data)}function KQ(A){Ly.postMessage(Gy(A),XQ.protocol+"//"+XQ.host)}function RQ(){this.head=null,this.tail=null}function VQ(A){try{return{error:!1,value:A()}}catch(A){return{error:!0,value:A}}}function GQ(A){var e,r;this.promise=new A(function(A,t){if(void 0!==e||void 0!==r)throw new u5("Bad Promise constructor");e=A,r=t}),this.resolve=l5(e),this.reject=l5(r)}function jQ(t){g5(C5,B5,function(){var A=t.facade;h5?N5.emit("rejectionHandled",A):X5(P5,A,t.value)})}var XQ,WQ,JQ,YQ,qQ,zQ,ZQ,$Q,Ay,ty,ey,ry,ny=Ym,NC=(q2||dw(Object.prototype,"toString",q2?{}.toString:function(){return"[object "+ny(this)+"]"},{unsafe:!0}),n),iy=Ww,JC=zp,p=HQ("Bun/")?"BUN":HQ("Cloudflare-Workers")?"CLOUDFLARE":HQ("Deno/")?"DENO":HQ("Node.js/")?"NODE":NC.Bun&&"string"==typeof Bun.version?"BUN":NC.Deno&&"object"==typeof Deno.version?"DENO":"process"===JC(NC.process)?"NODE":NC.window&&NC.document?"BROWSER":"REST",d="NODE"==p,m=n,sy=Zw.exports,oy=h,ay=ew,cy=LQ,ly=s,uy=lw("species"),hy=Xw,By=TypeError,w=u,f=a,gy=Rw,fy=Ym,dy=u0,py=ew("Reflect","construct"),wy=/^\s*(?:class|function)\b/,my=w(wy.exec),Cy=!wy.test(_Q),q2=(DQ.sham=!0,!py||f(function(){var A;return TQ(TQ.call)||!TQ(Object)||!TQ(function(){A=!0})||A})?DQ:TQ),Qy=q2,yy=rw,Fy=TypeError,Uy=gw,by=OQ,vy=Zp,Ey=lw("species"),JC=Function.prototype,xy=JC.apply,Iy=JC.call,NC="object"==typeof Reflect&&Reflect.apply||(A?Iy.bind(xy):function(){return Iy.apply(xy,arguments)}),Zw=u([].slice),Hy=TypeError,w=/(?:ipad|iphone|ipod).*applewebkit/i.test(Ww),Ly=n,Sy=NC,f=om,Ny=Rw,_y=p1,JC=a,Ty=g,Dy=Zw,Oy=Bw,Py=function(A,t){if(A<t)throw new Hy("Not enough arguments");return A},A=w,g=d,C=Ly.setImmediate,My=Ly.clearImmediate,ky=Ly.process,Ky=Ly.Dispatch,Ry=Ly.Function,Vy=Ly.MessageChannel,Gy=Ly.String,jy=0,Xy={},Wy="onreadystatechange",Jy=(JC(function(){XQ=Ly.location}),function(A){var t;_y(Xy,A)&&(t=Xy[A],delete Xy[A],t())}),Vy=(C&&My||(C=function(A){Py(arguments.length,1);var t=Ny(A)?A:Ry(A),e=Dy(arguments,1);return Xy[++jy]=function(){Sy(t,void 0,e)},WQ(jy),jy},My=function(A){delete Xy[A]},g?WQ=function(A){ky.nextTick(MQ(A))}:Ky&&Ky.now?WQ=function(A){Ky.now(MQ(A))}:Vy&&!A?(A=(g=new Vy).port2,g.port1.onmessage=kQ,WQ=f(A.postMessage,A)):Ly.addEventListener&&Ny(Ly.postMessage)&&!Ly.importScripts&&XQ&&"file:"!==XQ.protocol&&!JC(KQ)?(WQ=KQ,Ly.addEventListener("message",kQ,!1)):WQ=Wy in Oy("script")?function(A){Ty.appendChild(Oy("script"))[Wy]=function(){Ty.removeChild(this),Jy(A)}}:function(A){setTimeout(MQ(A),0)}),{set:C,clear:My}),Yy=n,qy=s,zy=Object.getOwnPropertyDescriptor,g=(RQ.prototype={add:function(A){var A={item:A,next:null},t=this.tail;t?t.next=A:this.head=A,this.tail=A},get:function(){var A=this.head;if(A)return null===(this.head=A.next)&&(this.tail=null),A.item}},RQ),f=/ipad|iphone|ipod/i.test(Ww)&&"undefined"!=typeof Pebble,A=/web0s(?!.*chrome)/i.test(Ww),JC=n,C=function(A){var t;return qy?(t=zy(Yy,A))&&t.value:Yy[A]},My=om,Zy=Vy.set,Q=g,$y=d,A5=JC.MutationObserver||JC.WebKitMutationObserver,y=JC.document,t5=JC.process,e5=JC.Promise,C=C("queueMicrotask"),w=(C||(zQ=new Q,ZQ=function(){var A,t;for($y&&(A=t5.domain)&&A.exit();t=zQ.get();)try{t()}catch(A){throw zQ.head&&$Q(),A}A&&A.enter()},$Q=w||$y||A||!A5||!y?!f&&e5&&e5.resolve?((Q=e5.resolve(void 0)).constructor=e5,qQ=My(Q.then,Q),function(){qQ(ZQ)}):$y?function(){t5.nextTick(ZQ)}:(Zy=My(Zy,JC),function(){Zy(ZQ)}):(JQ=!0,YQ=y.createTextNode(""),new A5(ZQ).observe(YQ,{characterData:!0}),function(){YQ.data=JQ=!JQ}),C=function(A){zQ.head||$Q(),zQ.add(A)}),C),A=n.Promise,f=n,r5=A,e5=Rw,Q=c2,n5=u0,My=lw,i5=p,s5=Jw,o5=(r5&&r5.prototype,My("species")),a5=!1,c5=e5(f.PromiseRejectionEvent),JC={CONSTRUCTOR:Q("Promise",function(){var A=n5(r5),t=A!==String(r5);if(!t&&66===s5)return!0;if(!s5||s5<51||!/native code/.test(A)){var A=new r5(function(A){A(1)}),e=function(A){A(function(){},function(){})};if((A.constructor={})[o5]=e,!(a5=A.then(function(){})instanceof e))return!0}return!(t||"BROWSER"!=i5&&"DENO"!=i5||c5)}),REJECTION_EVENT:c5,SUBCLASSING:a5},y={},l5=nw,u5=TypeError,A5=(y.f=function(A){return new GQ(A)},c),h5=d,B5=n,C=m,g5=e,c2=dw,u0=Y2,p=YC,My=SQ,f5=nw,d5=Rw,p5=tw,w5=NQ,m5=PQ,C5=Vy.set,Q5=w,y5=function(A,t){try{1===arguments.length?console.error(A):console.error(A,t)}catch(A){}},F5=VQ,U5=g,e5=B0,f=A,Q=y,b5="Promise",Vy=JC.CONSTRUCTOR,v5=JC.REJECTION_EVENT,w=JC.SUBCLASSING,E5=e5.getterFor(b5),x5=e5.set,g=f&&f.prototype,I5=f,H5=g,L5=B5.TypeError,S5=B5.document,N5=B5.process,_5=Q.f,T5=_5,D5=!!(S5&&S5.createEvent&&B5.dispatchEvent),O5="unhandledrejection",P5="rejectionhandled",M5=1,k5=2,K5=1,R5=2,V5=function(A){var t;return!(!p5(A)||!d5(t=A.then))&&t},G5=function(A,t){var e,r,n,i=t.value,s=t.state===M5,o=s?A.ok:A.fail,a=A.resolve,c=A.reject,l=A.domain;try{o?(s||(t.rejection===R5&&jQ(t),t.rejection=K5),!0===o?e=i:(l&&l.enter(),e=o(i),l&&(l.exit(),n=!0)),e===A.promise?c(new L5("Promise-chain cycle")):(r=V5(e))?g5(r,e,a,c):a(e)):c(i)}catch(A){l&&!n&&l.exit(),c(A)}},j5=function(e,r){e.notified||(e.notified=!0,Q5(function(){for(var A,t=e.reactions;A=t.get();)G5(A,e);e.notified=!1,r&&!e.rejection&&W5(e)}))},X5=function(A,t,e){var r;D5?((r=S5.createEvent("Event")).promise=t,r.reason=e,r.initEvent(A,!1,!0),B5.dispatchEvent(r)):r={promise:t,reason:e},!v5&&(t=B5["on"+A])?t(r):A===O5&&y5("Unhandled promise rejection",e)},W5=function(r){g5(C5,B5,function(){var A=r.facade,t=r.value,e=J5(r);if(e&&(e=F5(function(){h5?N5.emit("unhandledRejection",t,A):X5(O5,A,t)}),r.rejection=h5||J5(r)?R5:K5,e.error))throw e.value})},J5=function(A){return A.rejection!==K5&&!A.parent},Y5=function(t,e,r){return function(A){t(e,A,r)}},q5=function(A,t,e){A.done||(A.done=!0,(A=e?e:A).value=t,A.state=k5,j5(A,!0))},z5=function(e,A,t){if(!e.done){e.done=!0,t&&(e=t);try{if(e.facade===A)throw new L5("Promise can't be resolved itself");var r=V5(A);r?Q5(function(){var t={done:!1};try{g5(r,A,Y5(z5,t,e),Y5(q5,t,e))}catch(A){q5(t,A,e)}}):(e.value=A,e.state=M5,j5(e,!1))}catch(A){q5({done:!1},A,e)}}};if(Vy&&(H5=(I5=function(A){w5(this,H5),f5(A),g5(Ay,this);var t=E5(this);try{A(Y5(z5,t),Y5(q5,t))}catch(A){q5(t,A)}}).prototype,(Ay=function(A){x5(this,{type:b5,done:!1,notified:!1,parent:!1,reactions:new U5,rejection:!1,state:0,value:null})}).prototype=c2(H5,"then",function(A,t){var e=E5(this),r=_5(m5(this,I5));return e.parent=!0,r.ok=!d5(A)||A,r.fail=d5(t)&&t,r.domain=h5?N5.domain:void 0,0===e.state?e.reactions.add(r):Q5(function(){G5(r,e)}),r.promise}),ty=function(){var A=new Ay,t=E5(A);this.promise=A,this.resolve=Y5(z5,t),this.reject=Y5(q5,t)},Q.f=_5=function(A){return A===I5||A===ey?new ty:T5(A)},d5(f))&&g!==Object.prototype){ry=g.then,w||c2(g,"then",function(A,t){var e=this;return new I5(function(A,t){g5(ry,e,A,t)}).then(A,t)},{unsafe:!0});try{delete g.constructor}catch(A){}u0&&u0(g,H5)}A5({global:!0,constructor:!0,wrap:!0,forced:Vy},{Promise:I5}),ey=C.Promise,p(I5,b5,!1),My(b5);var Z5=lw("iterator"),$5=!1;try{var AF=0,tF={next:function(){return{done:!!AF++}},return:function(){$5=!0}};tF[Z5]=function(){return this},Array.from(tF,function(){throw 2})}catch(A){}{{var e5=function(A,t){try{if(!t&&!$5)return!1}catch(A){return!1}var e=!1;try{var r={};r[Z5]=function(){return{next:function(){return{done:e=!0}}}},A(r)}catch(A){}return e},eF=A,Q=e5,f=JC.CONSTRUCTOR,w=f||!Q(function(A){eF.all(A).then(void 0,function(){})}),c2=c,rF=e,nF=nw,iF=y,sF=VQ,oF=hm,u0=w,g=(c2({target:"Promise",stat:!0,forced:u0},{all:function(A){var o=this,t=iF.f(o),a=t.resolve,c=t.reject,e=sF(function(){var r=nF(o.resolve),n=[],i=0,s=1;oF(A,function(A){var t=i++,e=!1;s++,rF(r,o,A).then(function(A){e||(e=!0,n[t]=A,--s)||a(n)},c)}),--s||a(n)});return e.error&&c(e.value),t.promise}}),c),A5=JC.CONSTRUCTOR,Vy=A,C=ew,p=Rw,My=dw,tF=Vy&&Vy.prototype,Q=(g({target:"Promise",proto:!0,forced:A5,real:!0},{catch:function(A){return this.then(void 0,A)}}),p(Vy)&&(f=C("Promise").prototype.catch,tF.catch!==f)&&My(tF,"catch",f,{unsafe:!0}),c),aF=e,cF=nw,lF=y,uF=VQ,hF=hm,c2=w,u0=(Q({target:"Promise",stat:!0,forced:c2},{race:function(A){var e=this,r=lF.f(e),n=r.reject,t=uF(function(){var t=cF(e.resolve);hF(A,function(A){aF(t,e,A).then(r.resolve,n)})});return t.error&&n(t.value),r.promise}}),c),BF=y,g=JC.CONSTRUCTOR,gF=(u0({target:"Promise",stat:!0,forced:g},{reject:function(A){var t=BF.f(this);return(0,t.reject)(A),t.promise}}),gw),fF=tw,dF=y,A5=function(A,t){return gF(A),fF(t)&&t.constructor===A?t:((0,(A=dF.f(A)).resolve)(t),A.promise)},p=c,Vy=ew,C=JC.CONSTRUCTOR,pF=A5;Vy("Promise"),p({target:"Promise",stat:!0,forced:C},{resolve:function(A){return pF(this,A)}});var My,wF=e,mF=nw,CF=y,QF=VQ,yF=hm,tF}(My=c)({target:"Promise",stat:!0,forced:tF=w},{allSettled:function(A){var o=this,t=CF.f(o),a=t.resolve,e=t.reject,r=QF(function(){var r=mF(o.resolve),n=[],i=0,s=1;yF(A,function(A){var t=i++,e=!1;s++,wF(r,o,A).then(function(A){e||(e=!0,n[t]={status:"fulfilled",value:A},--s)||a(n)},function(A){e||(e=!0,n[t]={status:"rejected",reason:A},--s)||a(n)})}),--s||a(n)});return r.error&&e(r.value),t.promise}});var f,FF=e,UF=nw,bF=ew,vF=y,EF=VQ,xF=hm,Q,IF="No one promise resolved",c2=((f=c)({target:"Promise",stat:!0,forced:Q=w},{any:function(A){var a=this,c=bF("AggregateError"),t=vF.f(a),l=t.resolve,u=t.reject,e=EF(function(){var r=UF(a.resolve),n=[],i=0,s=1,o=!1;xF(A,function(A){var t=i++,e=!1;s++,FF(r,a,A).then(function(A){e||o||(o=!0,l(A))},function(A){e||o||(e=!0,n[t]=A,--s)||u(new c(n,IF))})}),--s||u(new c(n,IF))});return e.error&&u(e.value),t.promise}}),c),u0,HF=NC,LF=Zw,SF=y,NF=nw,_F=VQ,TF=(u0=n).Promise,DF=!1,g=!TF||!TF.try||_F(function(){TF.try(function(A){DF=8===A},8)}).error||!DF;c2({target:"Promise",stat:!0,forced:g},{try:function(A){var t=1<arguments.length?LF(arguments,1):[],e=SF.f(this),r=_F(function(){return HF(NF(A),void 0,t)});return(r.error?e.reject:e.resolve)(r.value),e.promise}});var JC,OF=y,Vy=((JC=c)({target:"Promise",stat:!0},{withResolvers:function(){var A=OF.f(this);return{promise:A.promise,resolve:A.resolve,reject:A.reject}}}),c),p,C=a,PF=ew,MF=Rw,kF=PQ,KF=A5,My=dw,RF=(p=A)&&p.prototype,tF=!!p&&C(function(){RF.finally.call({then:function(){}},function(){})});Vy({target:"Promise",proto:!0,real:!0,forced:tF},{finally:function(t){var e=kF(this,PF("Promise")),A=MF(t);return this.then(A?function(A){return KF(e,t()).then(function(){return A})}:t,A?function(A){return KF(e,t()).then(function(){throw A})}:t)}}),MF(p)&&(w=PF("Promise").prototype.finally,RF.finally!==w)&&My(RF,"finally",w,{unsafe:!0});var f,VF=pw,GF=Bm,jF=$p,XF=(f=u)("".charAt),WF=f("".charCodeAt),JF=f("".slice),Q,u0,YF=(u0={codeAt:(Q=function(n){return function(A,t){var e,A=GF(jF(A)),t=VF(t),r=A.length;return t<0||r<=t?n?"":void 0:(e=WF(A,t))<55296||56319<e||t+1===r||(r=WF(A,t+1))<56320||57343<r?n?XF(A,t):e:n?JF(A,t,t+2):r-56320+(e-55296<<10)+65536}})(!1),charAt:Q(!0)}).charAt,qF=Bm,c2,g=ZC,zF=$C,ZF="String Iterator",$F=(c2=B0).set,AU=c2.getterFor(ZF);g(String,"String",function(A){$F(this,{type:ZF,string:qF(A),index:0})},function(){var A=AU(this),t=A.string,e=A.index;return e>=t.length?zF(void 0,!0):(t=YF(t,e),A.index+=t.length,zF(t,!1))});var y,tU=((y=m).Promise,zp),JC,eU=JC=Array.isArray||function(A){return"Array"===tU(A)},rU=q2,nU=tw,A,iU=(A=lw)("species"),sU=Array,oU=function(A){var t;return void 0===(t=eU(A)&&(t=A.constructor,rU(t)&&(t===sU||eU(t.prototype))||nU(t)&&null===(t=t[iU]))?void 0:t)?sU:t},aU=om,A5,cU=l,lU=aw,uU=Cw,hU=function(A,t){return new(oU(A))(0===t?0:t)},BU=(A5=u)([].push),C,Vy={forEach:(C=function(h){var B=1===h,g=2===h,f=3===h,d=4===h,p=6===h,w=7===h,m=5===h||p;return function(A,t,e,r){for(var n,i,s=lU(A),o=cU(s),a=uU(o),c=aU(t,e),l=0,t=r||hU,u=B?t(A,a):g||w?t(A,0):void 0;l<a;l++)if((m||l in o)&&(i=c(n=o[l],l,s),h))if(B)u[l]=i;else if(i)switch(h){case 3:return!0;case 5:return n;case 6:return l;case 2:BU(u,n)}else switch(h){case 4:return!1;case 7:BU(u,n)}return p?-1:f||d?d:u}})(0),map:C(1),filter:C(2),some:C(3),every:C(4),find:C(5),findIndex:C(6),filterReject:C(7)},gU=a,tF,fU=Jw,dU=(tF=lw)("species"),p=c,pU=Vy.map,My,w,wU=(p({target:"Array",proto:!0,forced:!(w=(My=function(t){return 51<=fU||!gU(function(){var A=[];return(A.constructor={})[dU]=function(){return{foo:1}},1!==A[t](Boolean).foo})})("map"))},{map:function(A){return pU(this,A,1<arguments.length?arguments[1]:void 0)}}),n),mU=u,f,Q,c2,g;(Q=f=function(A,t){return mU(wU[A].prototype[t])})("Array","map"),(c2=c)({target:"Array",stat:!0},{isArray:g=JC});var y,CU=((y=m).Array.isArray,nw),QU=aw,yU=l,FU=Cw,UU=TypeError,bU="Reduce of empty array with no initial value",q2,A={left:(q2=function(c){return function(A,t,e,r){var n=QU(A),i=yU(n),s=FU(n);if(CU(t),0===s&&e<2)throw new UU(bU);var o=c?s-1:0,a=c?-1:1;if(e<2)for(;;){if(o in i){r=i[o],o+=a;break}if(o+=a,c?o<0:s<=o)throw new UU(bU)}for(;c?0<=o:o<s;o+=a)o in i&&(r=t(r,i[o],o,n));return r}})(!1),right:q2(!0)},vU=a,A5=function(A,t){var e=[][A];return!!e&&vU(function(){e.call(null,t||function(){return 1},1)})},C=c,EU=A.left,tF=A5,My=Jw,p,w,Q=(w=!(p=d)&&79<My&&My<83)||!tF("reduce");C({target:"Array",proto:!0,forced:Q},{reduce:function(A){var t=arguments.length;return EU(this,A,t,1<t?arguments[1]:void 0)}});var c2,xU=((c2=f)("Array","reduce"),Vy.forEach),g,y=(g=A5)("forEach"),q2,d,p=q2=y?[].forEach:function(A){return xU(this,A,1<arguments.length?arguments[1]:void 0)};(d=c)({target:"Array",proto:!0,forced:[].forEach!==p},{forEach:p});var My,w=((My=f)("Array","forEach"),c),IU=Vy.find,tF=fm,C,HU=!0,Q,c2,g,y;(C="find")in[]&&Array(1)[C](function(){HU=!1}),w({target:"Array",proto:!0,forced:HU},{find:function(A){return IU(this,A,1<arguments.length?arguments[1]:void 0)}}),tF(C),(Q=f)("Array","find"),(c2=c)({target:"Object",stat:!0,sham:!(g=s)},{create:y=Q0})}m.Object;var LU=aw,SU=$2;c({target:"Object",stat:!0,forced:a(function(){SU(1)})},{keys:function(A){return SU(LU(A))}});function NU(a){return function(A){for(var t,e=OU(A),r=DU(e),n=kU&&null===TU(e),i=r.length,s=0,o=[];s<i;)t=r[s++],_U&&!(n?t in e:PU(e,t))||MU(o,a?[t,e[t]]:e[t]);return o}}m.Object.keys;var _U=s,q2=a,d=u,TU=S2,DU=$2,OU=Aw,PU=d(i.f),MU=d([].push),kU=_U&&q2(function(){var A=Object.create(null);return A[2]=2,!PU(A,2)}),p=c,KU={entries:NU(!0),values:NU(!1)}.values;p({target:"Object",stat:!0},{values:function(A){return KU(A)}});m.Object.values;var RU=s,My=u,VU=e,w=a,GU=$2,jU=U0,XU=i,WU=aw,JU=l,YU=Object.assign,qU=Object.defineProperty,zU=My([].concat),tF=!YU||w(function(){var A,t,e,r;return RU&&1!==YU({b:1},YU(qU({},"a",{enumerable:!0,get:function(){qU(this,"b",{value:3,enumerable:!1})}}),{b:2})).b||(t={},r="abcdefghijklmnopqrst",(A={})[e=Symbol("assign detection")]=7,r.split("").forEach(function(A){t[A]=A}),7!==YU({},A)[e])||GU(YU({},t)).join("")!==r})?function(A,t){for(var e=WU(A),r=arguments.length,n=1,i=jU.f,s=XU.f;n<r;)for(var o,a=JU(arguments[n++]),c=i?zU(GU(a),i(a)):GU(a),l=c.length,u=0;u<l;)o=c[u++],RU&&!VU(s,a,o)||(e[o]=a[o]);return e}:YU;c({target:"Object",stat:!0,arity:2,forced:Object.assign!==tF},{assign:tF});function ZU(t){return function(A){A=t4(A4(A));return 1&t&&(A=e4(A,r4,"")),A=2&t?e4(A,n4,"$1"):A}}function $U(A){return s4(function(){return!!o4[A]()||"
"!=="
"[A]()||i4&&o4[A].name!==A})}m.Object.assign;var C="\t\n\v\f\r \u2028\u2029\ufeff",A4=$p,t4=Bm,Q=C,e4=u("".replace),r4=RegExp("^["+Q+"]+"),n4=RegExp("(^|[^"+Q+"])["+Q+"]+$"),c2={start:ZU(1),end:ZU(2),trim:ZU(3)},i4=h0.PROPER,s4=a,o4=C,g=c,a4=c2.trim;g({target:"String",proto:!0,forced:$U("trim")},{trim:function(){return a4(this)}});f("String","trim");var c4=c2.start,y=$U("trimStart")?function(){return c4(this)}:"".trimStart;c({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==y},{trimLeft:y}),c({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==y},{trimStart:y});f("String","trimLeft");var l4=c2.end,d=$U("trimEnd")?function(){return l4(this)}:"".trimEnd;c({target:"String",proto:!0,name:"trimEnd",forced:"".trimRight!==d},{trimRight:d}),c({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==d},{trimEnd:d});f("String","trimRight");var u4=tw,h4=Math.floor,q2=Number.isInteger||function(A){return!u4(A)&&isFinite(A)&&h4(A)===A};c({target:"Number",stat:!0},{isInteger:q2});function B4(A){if(void 0===A)return 0;var A=N4(A),t=_4(A);if(A!==t)throw new T4("Wrong length or index");return t}function g4(A){for(var t=W4(this),e=Y4(t),r=arguments.length,n=J4(1<r?arguments[1]:void 0,e),i=void 0===(r=2<r?arguments[2]:void 0)?e:J4(r,e);n<i;)t[n++]=A;return t}function f4(A,t,e){return Z4&&q4(t=t.constructor)&&t!==e&&z4(t=t.prototype)&&t!==e.prototype&&Z4(A,t),A}function d4(A){return[255&A]}function p4(A){return[255&A,A>>8&255]}function w4(A){return[255&A,A>>8&255,A>>16&255,A>>24&255]}function m4(A){return A[3]<<24|A[2]<<16|A[1]<<8|A[0]}function C4(A){return bb(ib(A),23,4)}function Q4(A){return bb(A,52,8)}function y4(A,t,e){Ab(A[ub],t,{configurable:!0,get:function(){return e(this)[t]}})}function F4(A,t,e,r){if(A=gb(A),e=nb(e),r=!!r,e+t>A.byteLength)throw new yb(hb);var n=A.bytes,e=e+A.byteOffset,A=sb(n,e,e+t);return r?A:Ub(A)}function U4(A,t,e,r,n,i){var A=gb(A),e=nb(e),s=r(+n),o=!!i;if(e+t>A.byteLength)throw new yb(hb);for(var a=A.bytes,c=e+A.byteOffset,l=0;l<t;l++)a[c+l]=s[o?l:t-l-1]}function b4(A){var t,A=jb(A);if(Pb(A))return(t=Jb(A))&&Mb(t,Av)?t[Av]:b4(A)}function v4(A){return!!Pb(A)&&(A=kb(A),Mb(ev,A)||Mb(rv,A))}m.Number.isInteger;var E4,x4,I4,H4,L4,p="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView,S4=dw,N4=pw,_4=mw,T4=RangeError,$2=Math.sign||function(A){A=+A;return 0==A||A!=A?A:A<0?-1:1},D4=4503599627370496,O4=$2,P4=function(A){return A+D4-D4},M4=Math.abs,k4=function(A,t,e,r){var A=+A,n=M4(A),A=O4(A);return n<r?A*P4(n/r/t)*r*t:e<(e=(r=(1+t/2220446049250313e-31)*n)-(r-n))||e!=e?A*(1/0):A*e},K4=Array,R4=Math.abs,V4=Math.pow,G4=Math.floor,j4=Math.log,X4=Math.LN2,W4=aw,J4=ww,Y4=Cw,q4=Rw,z4=tw,Z4=Y2,U0=n,i=u,$4=s,My=p,w=d1,Ab=LQ,tF=function(A,t,e){for(var r in t)S4(A,r,t[r],e);return A},Q=a,tb=NQ,eb=pw,rb=mw,nb=B4,ib=Math.fround||function(A){return k4(A,1.1920928955078125e-7,34028234663852886e22,11754943508222875e-54)},C={pack:function(A,t,e){var r,n,i,s=K4(e),o=8*e-t-1,e=(1<<o)-1,a=e>>1,c=23===t?V4(2,-24)-V4(2,-77):0,l=A<0||0===A&&1/A<0?1:0,u=0;for((A=R4(A))!=A||A===1/0?(n=A!=A?1:0,r=e):(r=G4(j4(A)/X4),A*(i=V4(2,-r))<1&&(r--,i*=2),2<=(A+=1<=r+a?c/i:c*V4(2,1-a))*i&&(r++,i/=2),e<=r+a?(n=0,r=e):1<=r+a?(n=(A*i-1)*V4(2,t),r+=a):(n=A*V4(2,a-1)*V4(2,t),r=0));8<=t;)s[u++]=255&n,n/=256,t-=8;for(r=r<<t|n,o+=t;0<o;)s[u++]=255&r,r/=256,o-=8;return s[u-1]|=128*l,s},unpack:function(A,t){var e,r=A.length,n=8*r-t-1,i=(1<<n)-1,s=i>>1,o=n-7,a=r-1,n=A[a--],c=127&n;for(n>>=7;0<o;)c=256*c+A[a--],o-=8;for(e=c&(1<<-o)-1,c>>=-o,o+=t;0<o;)e=256*e+A[a--],o-=8;if(0===c)c=1-s;else{if(c===i)return e?NaN:n?-1/0:1/0;e+=V4(2,t),c-=s}return(n?-1:1)*e*V4(2,c-t)}},g=S2,y=Y2,c2=g4,sb=Zw,ob=f4,d=Fw,f=YC,m=B0,$2=h0.PROPER,ab=h0.CONFIGURABLE,cb="ArrayBuffer",lb="DataView",ub="prototype",hb="Wrong index",Bb=m.getterFor(cb),gb=m.getterFor(lb),fb=m.set,db=U0[cb],pb=db,wb=pb&&pb[ub],m=U0[lb],mb=m&&m[ub],Cb=Object.prototype,Qb=U0.Array,yb=U0.RangeError,Fb=i(c2),Ub=i([].reverse),bb=C.pack,vb=C.unpack,c2=(My?(E4=$2&&db.name!==cb,Q(function(){db(1)})&&Q(function(){new db(-1)})&&!Q(function(){return new db,new db(1.5),new db(NaN),1!==db.length||E4&&!ab})?E4&&ab&&w(db,"name",cb):d(((pb=function(A){return tb(this,wb),ob(new db(nb(A)),this,pb)})[ub]=wb).constructor=pb,db),y&&g(mb)!==Cb&&y(mb,Cb),U0=new m(new pb(2)),x4=i(mb.setInt8),U0.setInt8(0,2147483648),U0.setInt8(1,2147483649),!U0.getInt8(0)&&U0.getInt8(1)||tF(mb,{setInt8:function(A,t){x4(this,A,t<<24>>24)},setUint8:function(A,t){x4(this,A,t<<24>>24)}},{unsafe:!0})):(wb=(pb=function(A){tb(this,wb);A=nb(A);fb(this,{type:cb,bytes:Fb(Qb(A),0),byteLength:A}),$4||(this.byteLength=A,this.detached=!1)})[ub],mb=(m=function(A,t,e){tb(this,mb),tb(A,wb);var r=Bb(A),n=r.byteLength,t=eb(t);if(t<0||n<t)throw new yb("Wrong offset");if(n<t+(e=void 0===e?n-t:rb(e)))throw new yb("Wrong length");fb(this,{type:lb,buffer:A,byteLength:e,byteOffset:t,bytes:r.bytes}),$4||(this.buffer=A,this.byteLength=e,this.byteOffset=t)})[ub],$4&&(y4(pb,"byteLength",Bb),y4(m,"buffer",gb),y4(m,"byteLength",gb),y4(m,"byteOffset",gb)),tF(mb,{getInt8:function(A){return F4(this,1,A)[0]<<24>>24},getUint8:function(A){return F4(this,1,A)[0]},getInt16:function(A){A=F4(this,2,A,1<arguments.length&&arguments[1]);return(A[1]<<8|A[0])<<16>>16},getUint16:function(A){A=F4(this,2,A,1<arguments.length&&arguments[1]);return A[1]<<8|A[0]},getInt32:function(A){return m4(F4(this,4,A,1<arguments.length&&arguments[1]))},getUint32:function(A){return m4(F4(this,4,A,1<arguments.length&&arguments[1]))>>>0},getFloat32:function(A){return vb(F4(this,4,A,1<arguments.length&&arguments[1]),23)},getFloat64:function(A){return vb(F4(this,8,A,1<arguments.length&&arguments[1]),52)},setInt8:function(A,t){U4(this,1,A,d4,t)},setUint8:function(A,t){U4(this,1,A,d4,t)},setInt16:function(A,t){U4(this,2,A,p4,t,2<arguments.length&&arguments[2])},setUint16:function(A,t){U4(this,2,A,p4,t,2<arguments.length&&arguments[2])},setInt32:function(A,t){U4(this,4,A,w4,t,2<arguments.length&&arguments[2])},setUint32:function(A,t){U4(this,4,A,w4,t,2<arguments.length&&arguments[2])},setFloat32:function(A,t){U4(this,4,A,C4,t,2<arguments.length&&arguments[2])},setFloat64:function(A,t){U4(this,8,A,Q4,t,2<arguments.length&&arguments[2])}})),f(pb,cb),f(m,lb),{ArrayBuffer:pb,DataView:m}),C=c,My=SQ,$2="ArrayBuffer",Q=c2[$2],w=(C({global:!0,constructor:!0,forced:n[$2]!==Q},{ArrayBuffer:Q}),My($2),c),d=sm,g=a,Eb=gw,xb=ww,Ib=mw,Hb=c2.ArrayBuffer,Lb=c2.DataView,y=Lb.prototype,Sb=d(Hb.prototype.slice),Nb=d(y.getUint8),_b=d(y.setUint8),Cb=(w({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:g(function(){return!new Hb(2).slice(1,void 0).byteLength})},{slice:function(A,t){if(Sb&&void 0===t)return Sb(Eb(this),A);for(var e=Eb(this).byteLength,r=xb(A,e),n=xb(void 0===t?e:t,e),A=new Hb(Ib(n-r)),i=new Lb(this),s=new Lb(A),o=0;r<n;)_b(s,o++,Nb(i,r++));return A}}),{exports:{}}),i=p,Tb=s,Db=n,Ob=Rw,Pb=tw,Mb=p1,kb=Ym,Kb=rw,Rb=d1,Vb=dw,U0=LQ,Gb=Xw,jb=S2,Xb=Y2,tF=lw,f=cw,Wb=B0.enforce,Jb=B0.get,m=Db.Int8Array,Yb=m&&m.prototype,C=Db.Uint8ClampedArray,Q=C&&C.prototype,qb=m&&jb(m),zb=Yb&&jb(Yb),My=Object.prototype,Zb=Db.TypeError,$2=tF("toStringTag"),$b=f("TYPED_ARRAY_TAG"),Av="TypedArrayConstructor",tv=i&&!!Xb&&"Opera"!==kb(Db.opera),d=!1,ev={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},rv={BigInt64Array:8,BigUint64Array:8};for(I4 in ev)(L4=(H4=Db[I4])&&H4.prototype)?Wb(L4)[Av]=H4:tv=!1;for(I4 in rv)(L4=(H4=Db[I4])&&H4.prototype)&&(Wb(L4)[Av]=H4);if((!tv||!Ob(qb)||qb===Function.prototype)&&(qb=function(){throw new Zb("Incorrect invocation")},tv))for(I4 in ev)Db[I4]&&Xb(Db[I4],qb);if((!tv||!zb||zb===My)&&(zb=qb.prototype,tv))for(I4 in ev)Db[I4]&&Xb(Db[I4].prototype,zb);if(tv&&jb(Q)!==zb&&Xb(Q,zb),Tb&&!Mb(zb,$2))for(I4 in U0(zb,$2,{configurable:d=!0,get:function(){return Pb(this)?this[$b]:void 0}}),ev)Db[I4]&&Rb(Db[I4],$b,I4);{var y,w=n,g=a,p=e5,S2=(y={NATIVE_ARRAY_BUFFER_VIEWS:tv,TYPED_ARRAY_TAG:d&&$b,aTypedArray:function(A){if(v4(A))return A;throw new Zb("Target is not a typed array")},aTypedArrayConstructor:function(A){if(!Ob(A)||Xb&&!Gb(qb,A))throw new Zb(Kb(A)+" is not a typed array constructor");return A},exportTypedArrayMethod:function(t,e,A,r){if(Tb){if(A)for(var n in ev){n=Db[n];if(n&&Mb(n.prototype,t))try{delete n.prototype[t]}catch(A){try{n.prototype[t]=e}catch(A){}}}zb[t]&&!A||Vb(zb,t,!A&&tv&&Yb[t]||e,r)}},exportTypedArrayStaticMethod:function(A,t,e){var r,n;if(Tb){if(Xb){if(e)for(r in ev)if((n=Db[r])&&Mb(n,A))try{delete n[A]}catch(A){}if(qb[A]&&!e)return;try{return Vb(qb,A,!e&&tv&&qb[A]||t)}catch(A){}}for(r in ev)!(n=Db[r])||n[A]&&!e||Vb(n,A,t)}},getTypedArrayConstructor:b4,isView:function(A){return!!Pb(A)&&("DataView"===(A=kb(A))||Mb(ev,A)||Mb(rv,A))},isTypedArray:v4,TypedArray:qb,TypedArrayPrototype:zb}).NATIVE_ARRAY_BUFFER_VIEWS,nv=w.ArrayBuffer,iv=w.Int8Array,C=!S2||!g(function(){iv(1)})||!g(function(){new iv(-1)})||!p(function(A){new iv,new iv(null),new iv(1.5),new iv(A)},!0)||g(function(){return 1!==new iv(new nv(2),1,void 0).length}),sv=pw,ov=RangeError,av=function(A){A=sv(A);if(A<0)throw new ov("The argument can't be less than 0");return A},cv=RangeError,m=function(A,t){A=av(A);if(A%t)throw new cv("Wrong offset");return A},lv=Math.round,uv=Ym,tF=function(A){A=uv(A);return"BigInt64Array"===A||"BigUint64Array"===A},hv=uw,Bv=TypeError,f=function(A){A=hv(A,"number");if("number"==typeof A)throw new Bv("Can't convert number to bigint");return BigInt(A)},gv=om,fv=e,dv=OQ,pv=aw,wv=Cw,mv=lm,Cv=cm,Qv=am,yv=tF,Fv=y.aTypedArrayConstructor,Uv=f,i=function(A){var t,e,r,n,i,s,o,a,c=dv(this),l=pv(A),A=arguments.length,u=1<A?arguments[1]:void 0,h=void 0!==u,B=Cv(l);if(B&&!Qv(B))for(a=(o=mv(l,B)).next,l=[];!(s=fv(a,o)).done;)l.push(s.value);for(h&&2<A&&(u=gv(u,arguments[2])),e=wv(l),r=new(Fv(c))(e),n=yv(r),t=0;t<e;t++)i=h?u(l[t],t):l[t],r[t]=n?Uv(i):+i;return r},bv=Cw,My=function(A,t,e){for(var r=0,n=2<arguments.length?e:bv(t),i=new A(n);r<n;)i[r]=t[r++];return i},vv=c,Ev=n,xv=e,Q=s,Iv=C,U0=y,$2=c2,Hv=NQ,Lv=qp,Sv=d1,Nv=q2,_v=mw,Tv=B4,Dv=m,Ov=function(A){A=lv(A);return A<0?0:255<A?255:255&A},Pv=hw,Mv=p1,kv=Ym,Kv=tw,Rv=r1,Vv=Q0,Gv=Xw,jv=Y2,Xv=C0.f,Wv=i,Jv=Vy.forEach,Yv=SQ,qv=LQ,d=h,e5=t,zv=My,w,Zv=f4,$v=(w=B0).get,A3=w.set,t3=w.enforce,e3=d.f,r3=e5.f,n3=Ev.RangeError,i3=$2.ArrayBuffer,s3=i3.prototype,o3=$2.DataView,a3=U0.NATIVE_ARRAY_BUFFER_VIEWS,c3=U0.TYPED_ARRAY_TAG,l3=U0.TypedArray,u3=U0.TypedArrayPrototype,h3=U0.isTypedArray,B3="BYTES_PER_ELEMENT",g3="Wrong length",S2=function(A,t){qv(A,t,{configurable:!0,get:function(){return $v(this)[t]}})},f3=function(A){return Gv(s3,A)||"ArrayBuffer"===(A=kv(A))||"SharedArrayBuffer"===A},d3=function(A,t){return h3(A)&&!Rv(t)&&t in A&&Nv(+t)&&0<=t},p=function(A,t){return t=Pv(t),d3(A,t)?Lv(2,A[t]):r3(A,t)},g=function(A,t,e){return t=Pv(t),!(d3(A,t)&&Kv(e)&&Mv(e,"value"))||Mv(e,"get")||Mv(e,"set")||e.configurable||Mv(e,"writable")&&!e.writable||Mv(e,"enumerable")&&!e.enumerable?e3(A,t,e):(A[t]=e.value,A)};Q?(a3||(e5.f=p,d.f=g,S2(u3,"buffer"),S2(u3,"byteOffset"),S2(u3,"byteLength"),S2(u3,"length")),vv({target:"Object",stat:!0,forced:!a3},{getOwnPropertyDescriptor:p,defineProperty:g}),Cb.exports=function(A,t,n){function c(A,r){e3(A,r,{get:function(){var A=this,t=r;return(A=$v(A)).view[i](t*l+A.byteOffset,!0)},set:function(A){var t=this,e=r;(t=$v(t)).view[s](e*l+t.byteOffset,n?Ov(A):A,!0)},enumerable:!0})}var l=A.match(/\d+/)[0]/8,e=A+(n?"Clamped":"")+"Array",i="get"+A,s="set"+A,o=Ev[e],u=o,h=u&&u.prototype,A={},t=(a3?Iv&&(u=t(function(A,t,e,r){return Hv(A,h),Zv(Kv(t)?f3(t)?void 0!==r?new o(t,Dv(e,l),r):void 0!==e?new o(t,Dv(e,l)):new o(t):h3(t)?zv(u,t):xv(Wv,u,t):new o(Tv(t)),A,u)}),jv&&jv(u,l3),Jv(Xv(o),function(A){A in u||Sv(u,A,o[A])}),u.prototype=h):(u=t(function(A,t,e,r){Hv(A,h);var n,i,s=0,o=0;if(Kv(t)){if(!f3(t))return h3(t)?zv(u,t):xv(Wv,u,t);var a=t,o=Dv(e,l),e=t.byteLength;if(void 0===r){if(e%l)throw new n3(g3);if((n=e-o)<0)throw new n3(g3)}else if(e<(n=_v(r)*l)+o)throw new n3(g3);i=n/l}else i=Tv(t),a=new i3(n=i*l);for(A3(A,{buffer:a,byteOffset:o,byteLength:n,length:i,view:new o3(a)});s<i;)c(A,s++)}),jv&&jv(u,l3),h=u.prototype=Vv(u3)),h.constructor!==u&&Sv(h,"constructor",u),t3(h).TypedArrayConstructor=u,c3&&Sv(h,c3,e),u!==o);A[e]=u,vv({global:!0,constructor:!0,forced:t,sham:!a3},A),B3 in u||Sv(u,B3,l),B3 in h||Sv(h,B3,l),Yv(e)}):Cb.exports=function(){};var s,c2=((s=Cb.exports)("Uint8",function(r){return function(A,t,e){return r(this,A,t,e)}}),C),q2,r1;(q2=y.exportTypedArrayStaticMethod)("from",r1=i,c2);var Y2,C0=C,p3=(Y2=y).aTypedArrayConstructor,h;(h=Y2.exportTypedArrayStaticMethod)("of",function(){for(var A=0,t=arguments.length,e=new(p3(this))(t);A<t;)e[A]=arguments[A++];return e},C0);var w,w3=Cw,m3=pw,C3=(w=y).aTypedArray,$2,Q3=(($2=w.exportTypedArrayMethod)("at",function(A){var t=C3(this),e=w3(t),A=m3(A),A=0<=A?A:e+A;return A<0||e<=A?void 0:t[A]}),rw),y3=TypeError,F3=aw,U3=ww,b3=Cw,v3=function(A,t){if(!delete A[t])throw new y3("Cannot delete property "+Q3(t)+" of "+Q3(A))},E3=Math.min,U0,Q,e5=y,d,x3=(Q=u)(d=U0=[].copyWithin||function(A,t){var e=F3(this),r=b3(e),n=U3(A,r),i=U3(t,r),A=2<arguments.length?arguments[2]:void 0,s=E3((void 0===A?r:U3(A,r))-i,r-n),o=1;for(i<n&&n<i+s&&(o=-1,i+=s-1,n+=s-1);0<s--;)i in e?e[n]=e[i]:v3(e,n),n+=o,i+=o;return e}),I3=e5.aTypedArray,S2,p=((S2=e5.exportTypedArrayMethod)("copyWithin",function(A,t){return x3(I3(this),A,t,2<arguments.length?arguments[2]:void 0)}),y),H3=Vy.every,L3=p.aTypedArray,g;(g=p.exportTypedArrayMethod)("every",function(A){return H3(L3(this),A,1<arguments.length?arguments[1]:void 0)});var Cb,S3=g4,N3=f,_3=Ym,T3=e,s=u,i=a,D3=(Cb=y).aTypedArray,q2=Cb.exportTypedArrayMethod,O3=s("".slice),r1=i(function(){var A=0;return new Int8Array(2).fill({valueOf:function(){return A++}}),1!==A}),P3=(q2("fill",function(A){var t=arguments.length,A=(D3(this),"Big"===O3(_3(this),0,3)?N3(A):+A);return T3(S3,this,A,1<t?arguments[1]:void 0,2<t?arguments[2]:void 0)},r1),My),M3=y.getTypedArrayConstructor,c2=y,k3=Vy.filter,K3=function(A,t){return P3(M3(A),t)},R3=c2.aTypedArray,C,Y2=((C=c2.exportTypedArrayMethod)("filter",function(A){A=k3(R3(this),A,1<arguments.length?arguments[1]:void 0);return K3(this,A)}),y),V3=Vy.find,G3=Y2.aTypedArray,h,C0=((h=Y2.exportTypedArrayMethod)("find",function(A){return V3(G3(this),A,1<arguments.length?arguments[1]:void 0)}),y),j3=Vy.findIndex,X3=C0.aTypedArray,w,W3=((w=C0.exportTypedArrayMethod)("findIndex",function(A){return j3(X3(this),A,1<arguments.length?arguments[1]:void 0)}),om),J3=l,Y3=aw,q3=Cw,$2,U0={findLast:($2=function(a){var c=1===a;return function(A,t,e){for(var r,n=Y3(A),i=J3(n),s=q3(i),o=W3(t,e);0<s--;)if(o(r=i[s],s,n))switch(a){case 0:return r;case 1:return s}return c?-1:void 0}})(0),findLastIndex:$2(1)},Q=y,z3=U0.findLast,Z3=Q.aTypedArray,d,e5=((d=Q.exportTypedArrayMethod)("findLast",function(A){return z3(Z3(this),A,1<arguments.length?arguments[1]:void 0)}),y),$3=U0.findLastIndex,AE=e5.aTypedArray,S2,p=((S2=e5.exportTypedArrayMethod)("findLastIndex",function(A){return $3(AE(this),A,1<arguments.length?arguments[1]:void 0)}),y),tE=Vy.forEach,eE=p.aTypedArray,g,Ym=((g=p.exportTypedArrayMethod)("forEach",function(A){tE(eE(this),A,1<arguments.length?arguments[1]:void 0)}),y),rE=Yw.includes,nE=Ym.aTypedArray,Cb,iE=((Cb=Ym.exportTypedArrayMethod)("includes",function(A){return rE(nE(this),A,1<arguments.length?arguments[1]:void 0)}),Yw.indexOf),sE=y.aTypedArray}(0,y.exportTypedArrayMethod)("indexOf",function(A){return iE(sE(this),A,1<arguments.length?arguments[1]:void 0)});var s=u,oE=y.aTypedArray,i=y.exportTypedArrayMethod,aE=s([].join),cE=(i("join",function(A){return aE(oE(this),A)}),NC),lE=Aw,uE=pw,hE=Cw,q2=A5,BE=Math.min,gE=[].lastIndexOf,fE=!!gE&&1/[1].lastIndexOf(1,-0)<0,r1=q2("lastIndexOf"),dE=NC,pE=fE||!r1?function(A){if(fE)return cE(gE,this,arguments)||0;var t=lE(this),e=hE(t);if(0!==e){var r=e-1;for((r=1<arguments.length?BE(r,uE(arguments[1])):r)<0&&(r=e+r);0<=r;r--)if(r in t&&t[r]===A)return r||0}return-1}:gE,wE=y.aTypedArray;(0,y.exportTypedArrayMethod)("lastIndexOf",function(A){var t=arguments.length;return dE(pE,wE(this),1<t?[A,arguments[1]]:[A])});var mE=Vy.map,CE=y.aTypedArray,QE=y.getTypedArrayConstructor;(0,y.exportTypedArrayMethod)("map",function(A){return mE(CE(this),A,1<arguments.length?arguments[1]:void 0,function(A,t){return new(QE(A))(t)})});var yE=A.left,FE=y.aTypedArray;(0,y.exportTypedArrayMethod)("reduce",function(A){var t=arguments.length;return yE(FE(this),A,t,1<t?arguments[1]:void 0)});var UE=A.right,bE=y.aTypedArray;(0,y.exportTypedArrayMethod)("reduceRight",function(A){var t=arguments.length;return UE(bE(this),A,t,1<t?arguments[1]:void 0)});var vE=y.aTypedArray,c2=y.exportTypedArrayMethod,EE=Math.floor;c2("reverse",function(){for(var A,t=vE(this).length,e=EE(t/2),r=0;r<e;)A=this[r],this[r++]=this[--t],this[t]=A;return this});var xE=e,C=y,IE=Cw,HE=m,LE=aw,Y2=a,SE=n.RangeError,NE=n.Int8Array,h=NE&&NE.prototype,_E=h&&h.set,TE=C.aTypedArray,C0=C.exportTypedArrayMethod,DE=!Y2(function(){var A=new Uint8ClampedArray(2);return xE(_E,A,{length:1,0:3},1),3!==A[1]}),w=DE&&C.NATIVE_ARRAY_BUFFER_VIEWS&&Y2(function(){var A=new NE(2);return A.set(1),A.set("2",1),0!==A[0]||2!==A[1]}),l=(C0("set",function(A){TE(this);var t=HE(1<arguments.length?arguments[1]:void 0,1),e=LE(A);if(DE)return xE(_E,this,e,t);var A=this.length,r=IE(e),n=0;if(A<r+t)throw new SE("Wrong length");for(;n<r;)this[t+n]=e[n++]},!DE||w),y),$2=a,OE=Zw,PE=l.aTypedArray,ME=l.getTypedArrayConstructor;(0,l.exportTypedArrayMethod)("slice",function(A,t){for(var e=OE(PE(this),A,t),A=ME(this),r=0,n=e.length,i=new A(n);r<n;)i[r]=e[r++];return i},$2(function(){new Int8Array(1).slice()}));function kE(A,t){var e=A.length;if(e<8)for(var r,n,i=1;i<e;){for(r=A[n=i];n&&0<t(A[n-1],r);)A[n]=A[--n];n!==i++&&(A[n]=r)}else for(var s=GE(e/2),o=kE(VE(A,0,s),t),a=kE(VE(A,s),t),c=o.length,l=a.length,u=0,h=0;u<c||h<l;)A[u+h]=u<c&&h<l?t(o[u],a[h])<=0?o[u++]:a[h++]:u<c?o[u++]:a[h++];return A}var KE=Vy.some,RE=y.aTypedArray,VE=((0,y.exportTypedArrayMethod)("some",function(A){return KE(RE(this),A,1<arguments.length?arguments[1]:void 0)}),Zw),GE=Math.floor,Q=kE,d=Ww.match(/firefox\/(\d+)/i),U0=!!d&&+d[1],e5=/MSIE|Trident/.test(Ww),S2=Ww.match(/AppleWebKit\/(\d+)\./),p=!!S2&&+S2[1],g=sm,Ym=a,jE=nw,XE=Q,WE=U0,JE=e5,YE=Jw,qE=p,zE=y.aTypedArray,Cb=y.exportTypedArrayMethod,ZE=n.Uint16Array,$E=ZE&&g(ZE.prototype.sort),s=!(!$E||Ym(function(){$E(new ZE(2),null)})&&Ym(function(){$E(new ZE(2),{})})),Ax=!!$E&&!Ym(function(){if(YE)return YE<74;if(WE)return WE<67;if(JE)return!0;if(qE)return qE<602;for(var A,t=new ZE(516),e=Array(516),r=0;r<516;r++)A=r%4,t[r]=515-r,e[r]=r-2*A+3;for($E(t,function(A,t){return(A/4|0)-(t/4|0)}),r=0;r<516;r++)if(t[r]!==e[r])return!0}),i=(Cb("sort",function(A){return void 0!==A&&jE(A),Ax?$E(this,A):XE(zE(this),(e=A,function(A,t){return void 0!==e?+e(A,t)||0:t!=t?-1:A!=A?1:0===A&&0===t?0<1/A&&1/t<0?1:-1:t<A}));var e},!Ax||s),y),tx=mw,ex=ww,rx=i.aTypedArray,nx=i.getTypedArrayConstructor;(0,i.exportTypedArrayMethod)("subarray",function(A,t){var e=rx(this),r=e.length,A=ex(A,r);return new(nx(e))(e.buffer,e.byteOffset+A*e.BYTES_PER_ELEMENT,tx((void 0===t?r:ex(t,r))-A))});var ix=NC,q2=a,sx=Zw,ox=n.Int8Array,ax=y.aTypedArray,r1=y.exportTypedArrayMethod,cx=[].toLocaleString,lx=!!ox&&q2(function(){cx.call(new ox(1))}),A=(r1("toLocaleString",function(){return ix(cx,lx?sx(ax(this)):ax(this),sx(arguments))},q2(function(){return[1,2].toLocaleString()!==new ox([1,2]).toLocaleString()})||!q2(function(){ox.prototype.toLocaleString.call([1,2])})),y.exportTypedArrayMethod),c2=a,m=u,h=n.Uint8Array,C=h&&h.prototype||{},ux=[].toString,hx=m([].join),Y2=(c2(function(){ux.call({})})&&(ux=function(){return hx(this)}),C.toString!==ux),Bx=(A("toString",ux,Y2),Cw),gx=function(A,t){for(var e=Bx(A),r=new t(e),n=0;n<e;n++)r[n]=A[e-n-1];return r},fx=y.aTypedArray,C0=y.exportTypedArrayMethod,dx=y.getTypedArrayConstructor;C0("toReversed",function(){return gx(fx(this),dx(this))});function px(){return Nx(Dx(this))}var w=u,wx=nw,mx=My,Cx=y.aTypedArray,Qx=y.getTypedArrayConstructor,l=y.exportTypedArrayMethod,yx=w(y.TypedArrayPrototype.sort),Fx=(l("toSorted",function(A){void 0!==A&&wx(A);var t=Cx(this),t=mx(Qx(t),t);return yx(t,A)}),Cw),Ux=pw,bx=RangeError,vx=function(A,t,e,r){var n=Fx(A),e=Ux(e),i=e<0?n+e:e;if(n<=i||i<0)throw new bx("Incorrect index");for(var s=new t(n),o=0;o<n;o++)s[o]=o===i?r:A[o];return s},Ex=tF,xx=pw,Ix=f,Hx=y.aTypedArray,Lx=y.getTypedArrayConstructor,$2=y.exportTypedArrayMethod,Vy=(()=>{try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(A){return 8===A}})(),d=Vy&&(()=>{try{new Int8Array(1).with(-.5,1)}catch(A){return!0}})(),Ww=($2("with",function(A,t){var e=Hx(this),A=xx(A),t=Ex(e)?Ix(t):+t;return vx(e,Lx(e),A,t)},!Vy||d),n),S2=a,Q=u,U0=y,e5=XC,Sx=lw("iterator"),Jw=Ww.Uint8Array,Nx=Q(e5.values),_x=Q(e5.keys),Tx=Q(e5.entries),Dx=U0.aTypedArray,p=U0.exportTypedArrayMethod,Ox=Jw&&Jw.prototype,g=!S2(function(){Ox[Sx].call([1])}),Ym=!!Ox&&Ox.values&&Ox[Sx]===Ox.values&&"values"===Ox.values.name;p("entries",function(){return Tx(Dx(this))},g),p("keys",function(){return _x(Dx(this))},g),p("values",px,g||!Ym,{name:"values"}),p(Sx,px,g||!Ym,{name:"values"});n.Uint8Array;var Px=function(){return"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this}(),Mx=Px.BlobBuilder||Px.WebKitBlobBuilder||Px.MSBlobBuilder||Px.MozBlobBuilder,kx=(Px.URL=Px.URL||Px.webkitURL||function(A,t){return(t=document.createElement("a")).href=A,t},Px.Blob),Kx=URL.createObjectURL,Rx=URL.revokeObjectURL,Vx=Px.Symbol&&Px.Symbol.toStringTag,Cb=!1,s=!1,Gx=!!Px.ArrayBuffer,i=Mx&&Mx.prototype.append&&Mx.prototype.getBlob;try{Cb=2===new Blob(["ä"]).size,s=2===new Blob([new Uint8Array([1,2])]).size}catch(lk){}function jx(A){return A.map(function(A){var t,e;return A.buffer instanceof ArrayBuffer?(t=A.buffer,A.byteLength!==t.byteLength&&((e=new Uint8Array(A.byteLength)).set(new Uint8Array(t,A.byteOffset,A.byteLength)),t=e.buffer),t):A})}function Xx(A,t){t=t||{};var e=new Mx;return jx(A).forEach(function(A){e.append(A)}),t.type?e.getBlob(t.type):e.getBlob()}function Wx(A,t){return new kx(jx(A),t||{})}if(Px.Blob&&(Xx.prototype=Blob.prototype,Wx.prototype=Blob.prototype),Vx)try{File.prototype[Vx]="File",Blob.prototype[Vx]="Blob",FileReader.prototype[Vx]="FileReader"}catch(lk){}function Jx(){try{new File([],"")}catch(A){try{var t=new Function('class File extends Blob {constructor(chunks, name, opts) {opts = opts || {};super(chunks, opts || {});this.name = name;this.lastModifiedDate = opts.lastModified ? new Date(opts.lastModified) : new Date;this.lastModified = +this.lastModifiedDate;}};return new File([], ""), File')();Px.File=t}catch(A){Px.File=t=function(A,t,e){A=new Blob(A,e),e=e&&void 0!==e.lastModified?new Date(e.lastModified):new Date;return A.name=t,A.lastModifiedDate=e,A.lastModified=+e,A.toString=function(){return"[object File]"},Vx&&(A[Vx]="File"),A}}}}if(Cb)Jx(),Px.Blob=s?Px.Blob:Wx;else if(i)Jx(),Px.Blob=Xx;else{function Yx(A){for(var t=[],e=0;e<A.length;e++){var r=A.charCodeAt(e);r<128?t.push(r):r<2048?t.push(192|r>>6,128|63&r):r<55296||57344<=r?t.push(224|r>>12,128|r>>6&63,128|63&r):(e++,r=65536+((1023&r)<<10|1023&A.charCodeAt(e)),t.push(240|r>>18,128|r>>12&63,128|r>>6&63,128|63&r))}return t}function qx(A){for(var t,e,r,n="",i=A.length,s=0;s<i;)switch((t=A[s++])>>4){case 0:case 1:case 2:case 3:case 4:case 5:case 6:case 7:n+=String.fromCharCode(t);break;case 12:case 13:e=A[s++],n+=String.fromCharCode((31&t)<<6|63&e);break;case 14:e=A[s++],r=A[s++],n+=String.fromCharCode((15&t)<<12|(63&e)<<6|63&r)}return n}function zx(A){for(var t=new Array(A.byteLength),e=new Uint8Array(A),r=t.length;r--;)t[r]=e[r];return t}function Zx(A){for(var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",e=[],r=0;r<A.length;r+=3){var n=A[r],i=r+1<A.length,s=i?A[r+1]:0,o=r+2<A.length,a=o?A[r+2]:0,c=(15&s)<<2|a>>6,a=63&a;o||(a=64,i)||(c=64),e.push(t[n>>2],t[(3&n)<<4|s>>4],t[c],t[a])}return e.join("")}var $x,AI,Zw=Object.create||function(A){function t(){}return t.prototype=A,new t};function tI(A,t){for(var e,r=0,n=(A=A||[]).length;r<n;r++){var i=A[r];i instanceof tI?A[r]=i._buffer:"string"==typeof i?A[r]=Yx(i):Gx&&(ArrayBuffer.prototype.isPrototypeOf(i)||AI(i))?A[r]=zx(i):Gx&&(e=i)&&DataView.prototype.isPrototypeOf(e)?A[r]=zx(i.buffer):A[r]=Yx(String(i))}this._buffer=[].concat.apply([],A),this.size=this._buffer.length,this.type=t&&t.type||""}function eI(A,t,e){A=tI.call(this,A,e=e||{})||this;return A.name=t,A.lastModifiedDate=e.lastModified?new Date(e.lastModified):new Date,A.lastModified=+A.lastModifiedDate,A}if(Gx&&($x=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],AI=ArrayBuffer.isView||function(A){return A&&-1<$x.indexOf(Object.prototype.toString.call(A))}),tI.prototype.slice=function(A,t,e){return new tI([this._buffer.slice(A||0,t||this._buffer.length)],{type:e})},tI.prototype.toString=function(){return"[object Blob]"},(eI.prototype=Zw(tI.prototype)).constructor=eI,Object.setPrototypeOf)Object.setPrototypeOf(eI,tI);else try{eI.__proto__=tI}catch(A){}function rI(){if(!(this instanceof rI))throw new TypeError("Failed to construct 'FileReader': Please use the 'new' operator, this DOM object constructor cannot be called as a function.");var e=document.createDocumentFragment();this.addEventListener=e.addEventListener,this.dispatchEvent=function(A){var t=this["on"+A.type];"function"==typeof t&&t(A),e.dispatchEvent(A)},this.removeEventListener=e.removeEventListener}function nI(A,t,e){if(!(t instanceof tI))throw new TypeError("Failed to execute '"+e+"' on 'FileReader': parameter 1 is not of type 'Blob'.");A.result="",setTimeout(function(){this.readyState=rI.LOADING,A.dispatchEvent(new Event("load")),A.dispatchEvent(new Event("loadend"))})}eI.prototype.toString=function(){return"[object File]"},rI.EMPTY=0,rI.LOADING=1,rI.DONE=2,rI.prototype.error=null,rI.prototype.onabort=null,rI.prototype.onerror=null,rI.prototype.onload=null,rI.prototype.onloadend=null,rI.prototype.onloadstart=null,rI.prototype.onprogress=null,rI.prototype.readAsDataURL=function(A){nI(this,A,"readAsDataURL"),this.result="data:"+A.type+";base64,"+Zx(A._buffer)},rI.prototype.readAsText=function(A){nI(this,A,"readAsText"),this.result=qx(A._buffer)},rI.prototype.readAsArrayBuffer=function(A){nI(this,A,"readAsText"),this.result=A._buffer.slice()},rI.prototype.abort=function(){},URL.createObjectURL=function(A){return A instanceof tI?"data:"+A.type+";base64,"+Zx(A._buffer):Kx.call(URL,A)},URL.revokeObjectURL=function(A){Rx&&Rx.call(URL,A)};var iI=Px.XMLHttpRequest&&Px.XMLHttpRequest.prototype.send;iI&&(XMLHttpRequest.prototype.send=function(A){A instanceof tI?(this.setRequestHeader("Content-Type",A.type),iI.call(this,qx(A._buffer))):iI.call(this,A)}),Px.FileReader=rI,Px.File=eI,Px.Blob=tI}var sI="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",F=(void 0===Px.btoa&&(Px.btoa=function(A){var t,e,r,n,i=0,s=0,o="",a=[];if(!A)return A;for(;t=(n=A.charCodeAt(i++)<<16|A.charCodeAt(i++)<<8|A.charCodeAt(i++))>>18&63,e=n>>12&63,r=n>>6&63,n=63&n,a[s++]=sI.charAt(t)+sI.charAt(e)+sI.charAt(r)+sI.charAt(n),i<A.length;);var o=a.join(""),c=A.length%3;return(c?o.slice(0,c-3):o)+"===".slice(c||3)}),void 0===Px.atob&&(Px.atob=function(A){var t,e,r,n,i,s=0,o=0,a=[];if(!A)return A;for(A+="";t=(i=sI.indexOf(A.charAt(s++))<<18|sI.indexOf(A.charAt(s++))<<12|(r=sI.indexOf(A.charAt(s++)))<<6|(n=sI.indexOf(A.charAt(s++))))>>16&255,e=i>>8&255,i=255&i,a[o++]=64==r?String.fromCharCode(t):64==n?String.fromCharCode(t,e):String.fromCharCode(t,e,i),s<A.length;);return a.join("")}),oI.prototype.add=function(A,t){return new oI(this.x+A,this.y+t)},oI);function oI(A,t){this.type=0,this.x=A,this.y=t}function aI(A,t,e){var r=hI(pI(A.styles.backgroundOrigin,t),A),n=BI(pI(A.styles.backgroundClip,t),A),i=(e=dI(pI(A.styles.backgroundSize,t),e,r))[0],s=e[1],o=Ke(pI(A.styles.backgroundPosition,t),r.width-i,r.height-s);return[wI(pI(A.styles.backgroundRepeat,t),o,e,r,n),Math.round(r.left+o[0]),Math.round(r.top+o[1]),i,s]}function cI(A,t,e){return new F(A.x+(t.x-A.x)*e,A.y+(t.y-A.y)*e)}var lI=function(A){var t=A.bounds,A=A.styles;return t.add(A.borderLeftWidth,A.borderTopWidth,-(A.borderRightWidth+A.borderLeftWidth),-(A.borderTopWidth+A.borderBottomWidth))},uI=function(A){var t=A.styles,A=A.bounds,e=Re(t.paddingLeft,A.width),r=Re(t.paddingRight,A.width),n=Re(t.paddingTop,A.width),i=Re(t.paddingBottom,A.width);return A.add(e+t.borderLeftWidth,n+t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth+e+r),-(t.borderTopWidth+t.borderBottomWidth+n+i))},hI=function(A,t){return 0===A?t.bounds:(2===A?uI:lI)(t)},BI=function(A,t){return 0===A?t.bounds:(2===A?uI:lI)(t)},gI=function(A){return _e(A)&&A.value===sn.AUTO},fI=function(A){return"number"==typeof A},dI=function(A,t,e){var r=t[0],n=t[1],t=t[2],i=A[0],A=A[1];if(!i)return[0,0];if(Oe(i)&&A&&Oe(A))return[Re(i,e.width),Re(A,e.height)];var s=fI(t);if(_e(i)&&(i.value===sn.CONTAIN||i.value===sn.COVER))return fI(t)?e.width/e.height<t!=(i.value===sn.COVER)?[e.width,e.width/t]:[e.height*t,e.height]:[e.width,e.height];var o=fI(r),a=fI(n),c=o||a;if(gI(i)&&(!A||gI(A)))return o&&a?[r,n]:s||c?c&&s?[o?r:n*t,a?n:r/t]:[o?r:e.width,a?n:e.height]:[e.width,e.height];if(s)return s=c=0,Oe(i)?c=Re(i,e.width):Oe(A)&&(s=Re(A,e.height)),gI(i)?c=s*t:A&&!gI(A)||(s=c/t),[c,s];t=null,c=null;if(Oe(i)?t=Re(i,e.width):A&&Oe(A)&&(c=Re(A,e.height)),null!==(t=null!==(c=null===t||A&&!gI(A)?c:o&&a?t/r*n:e.height)&&gI(i)?o&&a?c/n*r:e.width:t)&&null!==c)return[t,c];throw new Error("Unable to calculate background-size for element")},pI=function(A,t){t=A[t];return void 0===t?A[0]:t},wI=function(A,t,e,r,n){var i=t[0],s=t[1],o=e[0],a=e[1];switch(A){case 2:return[new F(Math.round(r.left),Math.round(r.top+s)),new F(Math.round(r.left+r.width),Math.round(r.top+s)),new F(Math.round(r.left+r.width),Math.round(a+r.top+s)),new F(Math.round(r.left),Math.round(a+r.top+s))];case 3:return[new F(Math.round(r.left+i),Math.round(r.top)),new F(Math.round(r.left+i+o),Math.round(r.top)),new F(Math.round(r.left+i+o),Math.round(r.height+r.top)),new F(Math.round(r.left+i),Math.round(r.height+r.top))];case 1:return[new F(Math.round(r.left+i),Math.round(r.top+s)),new F(Math.round(r.left+i+o),Math.round(r.top+s)),new F(Math.round(r.left+i+o),Math.round(r.top+s+a)),new F(Math.round(r.left+i),Math.round(r.top+s+a))];default:return[new F(Math.round(n.left),Math.round(n.top)),new F(Math.round(n.left+n.width),Math.round(n.top)),new F(Math.round(n.left+n.width),Math.round(n.height+n.top)),new F(Math.round(n.left),Math.round(n.height+n.top))]}},mI=(CI.prototype.subdivide=function(A,t){var e=cI(this.start,this.startControl,A),r=cI(this.startControl,this.endControl,A),n=cI(this.endControl,this.end,A),i=cI(e,r,A),r=cI(r,n,A),A=cI(i,r,A);return t?new CI(this.start,e,i,A):new CI(A,r,n,this.end)},CI.prototype.add=function(A,t){return new CI(this.start.add(A,t),this.startControl.add(A,t),this.endControl.add(A,t),this.end.add(A,t))},CI.prototype.reverse=function(){return new CI(this.end,this.endControl,this.startControl,this.start)},CI);function CI(A,t,e,r){this.type=1,this.start=A,this.startControl=t,this.endControl=e,this.end=r}function QI(A,t){switch(t){case 0:return FI(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return FI(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return FI(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return FI(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}}function yI(A,t){var e=[];return xI(A)?e.push(A.subdivide(.5,!1)):e.push(A),xI(t)?e.push(t.subdivide(.5,!0)):e.push(t),e}function FI(A,t,e,r){var n=[];return xI(A)?n.push(A.subdivide(.5,!1)):n.push(A),xI(e)?n.push(e.subdivide(.5,!0)):n.push(e),xI(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),xI(t)?n.push(t.subdivide(.5,!1).reverse()):n.push(t),n}function UI(A){return[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox]}function bI(A){return[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox]}function vI(A){return 1===A.type}var EI,xI=function(A){return 1===A.type},II=function(A){var t=A.styles,e=A.bounds,r=(n=Ke(t.borderTopLeftRadius,e.width,e.height))[0],n=n[1],i=(s=Ke(t.borderTopRightRadius,e.width,e.height))[0],s=s[1],o=(a=Ke(t.borderBottomRightRadius,e.width,e.height))[0],a=a[1],c=(l=Ke(t.borderBottomLeftRadius,e.width,e.height))[0],l=l[1];(u=[]).push((r+i)/e.width),u.push((c+o)/e.width),u.push((n+l)/e.height),u.push((s+a)/e.height);1<(u=Math.max.apply(Math,u))&&(r/=u,n/=u,i/=u,s/=u,o/=u,a/=u,c/=u,l/=u);var u=e.width-i,h=e.height-a,B=e.width-o,g=e.height-l,f=t.borderTopWidth,d=t.borderRightWidth,p=t.borderBottomWidth,w=t.borderLeftWidth,m=Re(t.paddingTop,A.bounds.width),C=Re(t.paddingRight,A.bounds.width),Q=Re(t.paddingBottom,A.bounds.width),t=Re(t.paddingLeft,A.bounds.width);this.topLeftBorderDoubleOuterBox=0<r||0<n?HI(e.left+w/3,e.top+f/3,r-w/3,n-f/3,EI.TOP_LEFT):new F(e.left+w/3,e.top+f/3),this.topRightBorderDoubleOuterBox=0<r||0<n?HI(e.left+u,e.top+f/3,i-d/3,s-f/3,EI.TOP_RIGHT):new F(e.left+e.width-d/3,e.top+f/3),this.bottomRightBorderDoubleOuterBox=0<o||0<a?HI(e.left+B,e.top+h,o-d/3,a-p/3,EI.BOTTOM_RIGHT):new F(e.left+e.width-d/3,e.top+e.height-p/3),this.bottomLeftBorderDoubleOuterBox=0<c||0<l?HI(e.left+w/3,e.top+g,c-w/3,l-p/3,EI.BOTTOM_LEFT):new F(e.left+w/3,e.top+e.height-p/3),this.topLeftBorderDoubleInnerBox=0<r||0<n?HI(e.left+2*w/3,e.top+2*f/3,r-2*w/3,n-2*f/3,EI.TOP_LEFT):new F(e.left+2*w/3,e.top+2*f/3),this.topRightBorderDoubleInnerBox=0<r||0<n?HI(e.left+u,e.top+2*f/3,i-2*d/3,s-2*f/3,EI.TOP_RIGHT):new F(e.left+e.width-2*d/3,e.top+2*f/3),this.bottomRightBorderDoubleInnerBox=0<o||0<a?HI(e.left+B,e.top+h,o-2*d/3,a-2*p/3,EI.BOTTOM_RIGHT):new F(e.left+e.width-2*d/3,e.top+e.height-2*p/3),this.bottomLeftBorderDoubleInnerBox=0<c||0<l?HI(e.left+2*w/3,e.top+g,c-2*w/3,l-2*p/3,EI.BOTTOM_LEFT):new F(e.left+2*w/3,e.top+e.height-2*p/3),this.topLeftBorderStroke=0<r||0<n?HI(e.left+w/2,e.top+f/2,r-w/2,n-f/2,EI.TOP_LEFT):new F(e.left+w/2,e.top+f/2),this.topRightBorderStroke=0<r||0<n?HI(e.left+u,e.top+f/2,i-d/2,s-f/2,EI.TOP_RIGHT):new F(e.left+e.width-d/2,e.top+f/2),this.bottomRightBorderStroke=0<o||0<a?HI(e.left+B,e.top+h,o-d/2,a-p/2,EI.BOTTOM_RIGHT):new F(e.left+e.width-d/2,e.top+e.height-p/2),this.bottomLeftBorderStroke=0<c||0<l?HI(e.left+w/2,e.top+g,c-w/2,l-p/2,EI.BOTTOM_LEFT):new F(e.left+w/2,e.top+e.height-p/2),this.topLeftBorderBox=0<r||0<n?HI(e.left,e.top,r,n,EI.TOP_LEFT):new F(e.left,e.top),this.topRightBorderBox=0<i||0<s?HI(e.left+u,e.top,i,s,EI.TOP_RIGHT):new F(e.left+e.width,e.top),this.bottomRightBorderBox=0<o||0<a?HI(e.left+B,e.top+h,o,a,EI.BOTTOM_RIGHT):new F(e.left+e.width,e.top+e.height),this.bottomLeftBorderBox=0<c||0<l?HI(e.left,e.top+g,c,l,EI.BOTTOM_LEFT):new F(e.left,e.top+e.height),this.topLeftPaddingBox=0<r||0<n?HI(e.left+w,e.top+f,Math.max(0,r-w),Math.max(0,n-f),EI.TOP_LEFT):new F(e.left+w,e.top+f),this.topRightPaddingBox=0<i||0<s?HI(e.left+Math.min(u,e.width-d),e.top+f,u>e.width+d?0:Math.max(0,i-d),Math.max(0,s-f),EI.TOP_RIGHT):new F(e.left+e.width-d,e.top+f),this.bottomRightPaddingBox=0<o||0<a?HI(e.left+Math.min(B,e.width-w),e.top+Math.min(h,e.height-p),Math.max(0,o-d),Math.max(0,a-p),EI.BOTTOM_RIGHT):new F(e.left+e.width-d,e.top+e.height-p),this.bottomLeftPaddingBox=0<c||0<l?HI(e.left+w,e.top+Math.min(g,e.height-p),Math.max(0,c-w),Math.max(0,l-p),EI.BOTTOM_LEFT):new F(e.left+w,e.top+e.height-p),this.topLeftContentBox=0<r||0<n?HI(e.left+w+t,e.top+f+m,Math.max(0,r-(w+t)),Math.max(0,n-(f+m)),EI.TOP_LEFT):new F(e.left+w+t,e.top+f+m),this.topRightContentBox=0<i||0<s?HI(e.left+Math.min(u,e.width+w+t),e.top+f+m,u>e.width+w+t?0:i-w+t,s-(f+m),EI.TOP_RIGHT):new F(e.left+e.width-(d+C),e.top+f+m),this.bottomRightContentBox=0<o||0<a?HI(e.left+Math.min(B,e.width-(w+t)),e.top+Math.min(h,e.height+f+m),Math.max(0,o-(d+C)),a-(p+Q),EI.BOTTOM_RIGHT):new F(e.left+e.width-(d+C),e.top+e.height-(p+Q)),this.bottomLeftContentBox=0<c||0<l?HI(e.left+w+t,e.top+g,Math.max(0,c-(w+t)),l-(p+Q),EI.BOTTOM_LEFT):new F(e.left+w+t,e.top+e.height-(p+Q))},HI=((r1=EI=EI||{})[r1.TOP_LEFT=0]="TOP_LEFT",r1[r1.TOP_RIGHT=1]="TOP_RIGHT",r1[r1.BOTTOM_RIGHT=2]="BOTTOM_RIGHT",r1[r1.BOTTOM_LEFT=3]="BOTTOM_LEFT",function(A,t,e,r,n){var i=(Math.sqrt(2)-1)/3*4,s=e*i,o=r*i,a=A+e,c=t+r;switch(n){case EI.TOP_LEFT:return new mI(new F(A,c),new F(A,c-o),new F(a-s,t),new F(a,t));case EI.TOP_RIGHT:return new mI(new F(A,t),new F(A+s,t),new F(a,c-o),new F(a,c));case EI.BOTTOM_RIGHT:return new mI(new F(a,t),new F(a,t+o),new F(A+s,c),new F(A,c));default:EI.BOTTOM_LEFT;return new mI(new F(a,c),new F(a-s,c),new F(A,t+o),new F(A,t))}}),LI=function(A,t,e){this.offsetX=A,this.offsetY=t,this.matrix=e,this.type=0,this.target=6},SI=function(A,t){this.path=A,this.target=t,this.type=1},NI=function(A){this.opacity=A,this.type=2,this.target=6},_I="Hidden Text",TI=(DI.prototype.parseMetrics=function(A,t){var e=this._document.createElement("div"),r=this._document.createElement("img"),n=this._document.createElement("span"),i=this._document.body,A=(e.style.visibility="hidden",e.style.fontFamily=A,e.style.fontSize=t,e.style.margin="0",e.style.padding="0",e.style.whiteSpace="nowrap",i.appendChild(e),r.src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",r.width=1,r.height=1,r.style.margin="0",r.style.padding="0",r.style.verticalAlign="baseline",n.style.fontFamily=A,n.style.fontSize=t,n.style.margin="0",n.style.padding="0",n.appendChild(this._document.createTextNode(_I)),e.appendChild(n),e.appendChild(r),r.offsetTop-n.offsetTop+2),t=(e.removeChild(n),e.appendChild(this._document.createTextNode(_I)),e.style.lineHeight="normal",r.style.verticalAlign="super",r.offsetTop-e.offsetTop+2);return i.removeChild(e),{baseline:A,middle:t}},DI.prototype.getMetrics=function(A,t){var e="".concat(A," ").concat(t);return void 0===this._data[e]&&(this._data[e]=this.parseMetrics(A,t)),this._data[e]},DI);function DI(A){this._data={},this._document=A}function OI(A){return null==A||!1===A||""===A||PI(A)&&0===A.length||!(!MI(A)||"{}"!==JSON.stringify(A))}function PI(A){return"[object Array]"===Object.prototype.toString.call(A)}function MI(A){return"[object Object]"===Object.prototype.toString.call(A)}function kI(A){return"function"==typeof A}function KI(A){if((A=>{if(void 0!==A){for(var t=0,e=PI(A)?A:[A];t<e.length;t++){var r=e[t];if(!MI(r)||null===r)return;for(var n=0,i=[{key:"fontFamily",type:"string"},{key:"fontBase64",type:"string"},{key:"fontStyle",type:"string"},{key:"fontWeight",type:"number"}];n<i.length;n++){var s=i[n],o=s.key,s=s.type;if(!(o in r))return console.error("The font configuration is missing required fields: ".concat(o)),0;if(typeof r[o]!==s)return console.error("The field ".concat(o," has a type error. Expected ").concat(s,", but received ").concat(typeof r[o])),0}if(![400,700].includes(r.fontWeight))return console.error("The fontWeight value is invalid. It can only be 400 or 700. Actual value:".concat(r.fontWeight)),0;if(void 0!==r.iconFont&&"boolean"!=typeof r.iconFont)return console.error("The field iconFont has a type error. Expected boolean, but received ".concat(typeof r.iconFont)),0}return 1}})(A))return(PI(A)?A:[A]).map(function(A){return T(T({},A),{iconFont:null!=(A=A.iconFont)&&A})})}function RI(A,e){return A.length===e.length&&A.some(function(A,t){return A===e[t]})}function VI(A,e,r,n,i){return A.map(function(A,t){switch(t){case 0:return A.add(e,r);case 1:return A.add(e+n,r);case 2:return A.add(e+n,r+i);case 3:return A.add(e,r+i)}return A})}var GI=function(A){this.element=A,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]},jI=(XI.prototype.getEffects=function(t){for(var A=-1===[2,3].indexOf(this.container.styles.position),e=this.parent,r=this.effects.slice(0);e;){var n,i,s=e.effects.filter(function(A){return!vI(A)});A||0!==e.container.styles.position||!e.parent?(r.unshift.apply(r,s),A=-1===[2,3].indexOf(e.container.styles.position),0!==e.container.styles.overflowX&&(n=UI(e.curves),i=bI(e.curves),RI(n,i)||r.unshift(new SI(i,6)))):r.unshift.apply(r,s),e=e.parent}return r.filter(function(A){return Qi(A.target,t)})},XI);function XI(A,t){var e;this.container=A,this.parent=t,this.effects=[],this.curves=new II(this.container),this.container.styles.opacity<1&&this.effects.push(new NI(this.container.styles.opacity)),null!==this.container.styles.transform&&(A=this.container.bounds.left+this.container.styles.transformOrigin[0].number,t=this.container.bounds.top+this.container.styles.transformOrigin[1].number,e=this.container.styles.transform,this.effects.push(new LI(A,t,e))),0!==this.container.styles.overflowX&&(A=UI(this.curves),t=bI(this.curves),RI(A,t)?this.effects.push(new SI(A,6)):(this.effects.push(new SI(A,2)),this.effects.push(new SI(t,4))))}var WI,JI=function(c,l,u,h){c.container.elements.forEach(function(A){var t,e,r,n,i=Qi(A.flags,4),s=Qi(A.flags,2),o=new jI(A,c),a=(Qi(A.styles.display,2048)&&h.push(o),Qi(A.flags,8)?[]:h);i||s?(s=i||A.styles.isPositioned()?u:l,t=new GI(o),A.styles.isPositioned()||A.styles.opacity<1||A.styles.isTransformed()?(e=A.styles.zIndex.order)<0?(r=0,s.negativeZIndex.some(function(A,t){return e>A.element.container.styles.zIndex.order?(r=t,!1):0<r}),s.negativeZIndex.splice(r,0,t)):0<e?(n=0,s.positiveZIndex.some(function(A,t){return e>=A.element.container.styles.zIndex.order?(n=t+1,!1):0<n}),s.positiveZIndex.splice(n,0,t)):s.zeroOrAutoZIndexOrTransformedOrOpacity.push(t):(A.styles.isFloating()?s.nonPositionedFloats:s.nonPositionedInlineLevel).push(t),JI(o,t,i?t:u,a)):((A.styles.isInlineLevel()?l.inlineLevel:l.nonInlineLevel).push(o),JI(o,l,u,a)),Qi(A.flags,8)&&YI(A,a)})},YI=function(A,t){for(var e=A instanceof ki?A.start:1,r=A instanceof ki&&A.reversed,n=0;n<t.length;n++){var i=t[n];i.container instanceof Oi&&"number"==typeof i.container.value&&0!==i.container.value&&(e=i.container.value),i.listValue=$o(e,i.container.styles.listStyleType,!0),e+=r?-1:1}},qI=(_(U,WI=na),U.prototype.addFontToJsPDF=function(){var t=this;OI(this.options.fontConfig)||((MI(this.options.fontConfig)?[this.options.fontConfig]:this.options.fontConfig).forEach(function(A){t.jspdfCtx.addFileToVFS("".concat(A.fontFamily,".ttf"),A.fontBase64),t.jspdfCtx.addFont("".concat(A.fontFamily,".ttf"),A.fontFamily,"normal"),t.jspdfCtx.setFont(A.fontFamily)}),this.context.logger.debug("setFont renderer initialized"))},U.prototype.resetJsPDFFont=function(){var t=this;PI(this.options.fontConfig)&&!OI(this.options.fontConfig)&&this.options.fontConfig.forEach(function(A){A.fontFamily&&t.jspdfCtx.setFont(A.fontFamily)})},U.prototype.setTextFont=function(t){var e,A,r;return OI(this.options.fontConfig)?"":(A=this.options.fontConfig,e=A.find(function(A){return A.iconFont}),A=A.filter(function(A){return!A.iconFont}),e&&t.fontFamily.some(function(A){return A.includes(e.fontFamily)})?(e.fontFamily&&this.jspdfCtx.setFont(e.fontFamily),e.fontFamily):1===A.length?((r=null!=(r=A[0].fontFamily)?r:"")&&this.jspdfCtx.setFont(r),r):((r=null!=(A=null==(r=A.find(function(A){return A.fontWeight===(500<t.fontWeight?700:400)&&A.fontStyle===t.fontStyle}))?void 0:r.fontFamily)?A:"")&&this.jspdfCtx.setFont(r),r))},U.prototype.applyEffects=function(A){for(var t=this;this._activeEffects.length;)this.popEffect();A.forEach(function(A){return t.applyEffect(A)})},U.prototype.applyEffect=function(A){this.context2dCtx.save(),2===A.type&&(this.context2dCtx.globalAlpha=A.opacity),0===A.type&&(this.context2dCtx.translate(A.offsetX,A.offsetY),this.context2dCtx.transform(A.matrix[0],A.matrix[1],A.matrix[2],A.matrix[3],A.matrix[4],A.matrix[5]),this.context2dCtx.translate(-A.offsetX,-A.offsetY)),vI(A)&&(this.path(A.path),this.context2dCtx.clip()),this._activeEffects.push(A)},U.prototype.popEffect=function(){this._activeEffects.pop(),this.context2dCtx.restore(),this.resetJsPDFFont()},U.prototype.renderStack=function(t){return D(this,void 0,void 0,function(){return R(this,function(A){switch(A.label){case 0:return t.element.container.styles.isVisible()?[4,this.renderStackContent(t)]:[3,2];case 1:A.sent(),A.label=2;case 2:return[2]}})})},U.prototype.renderNode=function(t){return D(this,void 0,void 0,function(){return R(this,function(A){switch(A.label){case 0:return(Qi(t.container.flags,16),t.container.styles.isVisible())?[4,this.renderNodeBackgroundAndBorders(t)]:[3,3];case 1:return A.sent(),[4,this.renderNodeContent(t)];case 2:A.sent(),A.label=3;case 3:return[2]}})})},U.prototype.renderTextWithLetterSpacing=function(e,A,r){var n=this;0===A?this.context2dCtx.fillText(e.text,e.bounds.left,e.bounds.top+r):$s(e.text).reduce(function(A,t){return n.context2dCtx.fillText(t,A,e.bounds.top+r),A+n.context2dCtx.measureText(t)},e.bounds.left)},U.prototype.createFontStyle=function(A){var t=A.fontVariant.filter(function(A){return"normal"===A||"small-caps"===A}).join(""),e=tH(A.fontFamily).join(", "),r=Ne(A.fontSize)?"".concat(A.fontSize.number).concat(A.fontSize.unit):"".concat(A.fontSize.number,"px");return[[A.fontStyle,t,A.fontWeight,r,e].join(" "),e,r]},U.prototype.convertColor=function(A){var t,e;return qe(A)?"#FFFFFF":(t=255&A>>16,e=255&A>>8,"#".concat((255&A>>24).toString(16).padStart(2,"0")).concat(t.toString(16).padStart(2,"0")).concat(e.toString(16).padStart(2,"0")))},U.prototype.renderTextNode=function(s,l){return D(this,void 0,void 0,function(){var t,e,r,n,o,a,i,c=this;return R(this,function(A){return e=this.createFontStyle(l),n=e[0],t=e[1],e=e[2],r=this.setTextFont(l),this.context2dCtx.font=r||n,this.context2dCtx.textAlign="left",r=l.fontSize.number,this.jspdfCtx.setFontSize(r),n=this.fontMetrics.getMetrics(t,e),o=n.baseline,a=n.middle,i=l.paintOrder,s.textBounds.forEach(function(s){i.forEach(function(A){switch(A){case 0:c.context2dCtx.fillStyle=He(l.color),c.renderTextWithLetterSpacing(s,l.letterSpacing,o),l.textDecorationLine.length&&(c.context2dCtx.fillStyle=He(l.textDecorationColor||l.color),l.textDecorationLine.forEach(function(A){var t=s.bounds.left,e=s.bounds.width,r=Math.round(s.bounds.top+o),n=Math.round(s.bounds.top),i=Math.ceil(s.bounds.top+a);switch(A){case 1:c.context2dCtx.fillRect(t,r,e,1);break;case 2:c.context2dCtx.fillRect(t,n,e,1);break;case 3:c.context2dCtx.fillRect(t,i,e,1)}}));break;case 1:l.webkitTextStrokeWidth&&s.text.trim().length&&(c.context2dCtx.strokeStyle=He(l.webkitTextStrokeColor),c.context2dCtx.lineWidth=l.webkitTextStrokeWidth,c.context2dCtx.strokeText(s.text,s.bounds.left,s.bounds.top+o)),c.context2dCtx.strokeStyle="",c.context2dCtx.lineWidth=0,c.context2dCtx.lineJoin="miter"}})}),[2]})})},U.prototype.renderReplacedJsPdfImage=function(A,t){var e,r=uI(A),n=this.pxToPt(r.left-this.options.x),i=this.pxToPt(r.top-this.options.y),s=this.pxToPt(r.width),r=this.pxToPt(r.height);((A,t)=>A&&t&&(A=(null==(A=A.split("?")[0].split("#")[0].split(".").pop())?void 0:A.toLowerCase())||"","jpg"===t?"jpg"===A||"jpeg"===A:A===t))(A.src,"svg")?((A=document.createElement("canvas")).width=s,A.height=r,(e=A.getContext("2d"))&&(e.clearRect(0,0,s,r),e.drawImage(t,0,0,s,r),e=A.toDataURL("image/png",.8),this.addImagePdf(e,"PNG",n,i,s,r))):this.addImagePdf(t,"JPEG",n,i,s,r)},U.prototype.renderReplacedJsPdfSvg=function(A,t){var A=uI(A),e=this.pxToPt(A.left-this.options.x),r=this.pxToPt(A.top-this.options.y),n=this.pxToPt(A.width),A=this.pxToPt(A.height),i=document.createElement("canvas"),s=(i.width=n,i.height=A,i.getContext("2d"));s&&(s.clearRect(0,0,n,A),s.drawImage(t,0,0,n,A),s=i.toDataURL("image/png",.8),this.addImagePdf(s,"PNG",e,r,n,A))},U.prototype.renderReplacedJsPdfCanvasImage=function(A){var t=uI(A),e=this.pxToPt(t.left-this.options.x),r=this.pxToPt(t.top-this.options.y),n=this.pxToPt(t.width),t=this.pxToPt(t.height),A=A.canvas.toDataURL("image/png",.8);this.addImagePdf(A,"PNG",e,r,n,t)},U.prototype.renderNodeContent=function(f){return D(this,void 0,void 0,function(){var t,e,r,n,i,s,o,a,c,l,u,h,B,g;return R(this,function(A){switch(A.label){case 0:this.applyEffects(f.getEffects(4)),t=f.container,e=t.styles,this.resetJsPDFFont(),r=0,n=t.textNodes,A.label=1;case 1:return r<n.length?(i=n[r],[4,this.renderTextNode(i,e)]):[3,4];case 2:A.sent(),A.label=3;case 3:return r++,[3,1];case 4:if(!(t instanceof ts))return[3,8];A.label=5;case 5:return A.trys.push([5,7,,8]),[4,this.context.cache.match(t.src)];case 6:return c=A.sent(),this.renderReplacedJsPdfImage(t,c),[3,8];case 7:return A.sent(),this.context.logger.error("Error loading image ".concat(t)),[3,8];case 8:if(t instanceof Yi)try{this.renderReplacedJsPdfCanvasImage(t)}catch(A){this.context.logger.error("Error adding canvas to PDF: ".concat(A))}if(!(t instanceof Bs))return[3,12];A.label=9;case 9:return A.trys.push([9,11,,12]),[4,this.context.cache.match(t.svg)];case 10:return c=A.sent(),this.renderReplacedJsPdfSvg(t,c),[3,12];case 11:return i=A.sent(),this.context.logger.error("Error loading svg ".concat(i)),[3,12];case 12:if(t instanceof Zi&&t.tree,t instanceof ls&&(s=Math.min(t.bounds.width,t.bounds.height),t.type===ss?t.checked&&(this.context2dCtx.save(),this.path([new F(t.bounds.left+.39363*s,t.bounds.top+.79*s),new F(t.bounds.left+.16*s,t.bounds.top+.5549*s),new F(t.bounds.left+.27347*s,t.bounds.top+.44071*s),new F(t.bounds.left+.39694*s,t.bounds.top+.5649*s),new F(t.bounds.left+.72983*s,t.bounds.top+.23*s),new F(t.bounds.left+.84*s,t.bounds.top+.34085*s),new F(t.bounds.left+.39363*s,t.bounds.top+.79*s)]),this.context2dCtx.fillStyle=this.convertColor(cs),this.context2dCtx.fill(),this.context2dCtx.restore()):t.type===os&&t.checked&&(this.context2dCtx.save(),this.context2dCtx.beginPath(),this.context2dCtx.arc(t.bounds.left+s/2,t.bounds.top+s/2,s/4,0,2*Math.PI,!0),this.context2dCtx.fillStyle=this.convertColor(cs),this.context2dCtx.fill(),this.context2dCtx.restore())),zI(t)&&t.value.length){switch(s=this.createFontStyle(e),B=s[0],l=s[1],l=this.fontMetrics.getMetrics(B,l).baseline,this.context2dCtx.fillStyle=this.convertColor(e.color),this.context2dCtx.textBaseline="alphabetic",this.context2dCtx.textAlign=$I(t.styles.textAlign),g=uI(t),o=0,t.styles.textAlign){case 1:o+=g.width/2;break;case 2:o+=g.width}a=g.add(o,0,0,-g.height/2+1),this.context2dCtx.save(),this.path([new F(g.left,g.top),new F(g.left+g.width,g.top),new F(g.left+g.width,g.top+g.height),new F(g.left,g.top+g.height)]),this.context2dCtx.clip(),this.renderTextWithLetterSpacing(new qs(t.value,a),e.letterSpacing,l),this.context2dCtx.restore(),this.context2dCtx.textBaseline="alphabetic",this.context2dCtx.textAlign="left"}if(!Qi(t.styles.display,2048))return[3,18];if(null===t.styles.listStyleImage)return[3,17];if(0!==(a=t.styles.listStyleImage).type)return[3,16];c=void 0,l=a.url,A.label=13;case 13:return A.trys.push([13,15,,16]),[4,this.context.cache.match(l)];case 14:return c=A.sent(),u=c.width,h=c.height,this.context2dCtx.drawImage(c,t.bounds.left-(c.width+10),t.bounds.top,u,h),[3,16];case 15:return A.sent(),this.context.logger.error("Error loading list-style-image ".concat(l)),[3,16];case 16:return[3,18];case 17:f.listValue&&-1!==t.styles.listStyleType&&(B=this.createFontStyle(e)[0],this.context2dCtx.font=B,this.context2dCtx.fillStyle=this.convertColor(e.color),this.context2dCtx.textBaseline="middle",this.context2dCtx.textAlign="right",g=new bt(t.bounds.left,t.bounds.top+Re(t.styles.paddingTop,t.bounds.width),t.bounds.width,tn(e.lineHeight,e.fontSize.number)/2+1),this.renderTextWithLetterSpacing(new qs(f.listValue,g),e.letterSpacing,tn(e.lineHeight,e.fontSize.number)/2+2),this.context2dCtx.textBaseline="bottom",this.context2dCtx.textAlign="left"),A.label=18;case 18:return[2]}})})},U.prototype.renderStackContent=function(d){return D(this,void 0,void 0,function(){var t,e,r,n,i,s,o,a,c,l,u,h,B,g,f;return R(this,function(A){switch(A.label){case 0:return Qi(d.element.container.flags,16),[4,this.renderNodeBackgroundAndBorders(d.element)];case 1:A.sent(),t=0,e=d.negativeZIndex,A.label=2;case 2:return t<e.length?(f=e[t],[4,this.renderStack(f)]):[3,5];case 3:A.sent(),A.label=4;case 4:return t++,[3,2];case 5:return[4,this.renderNodeContent(d.element)];case 6:A.sent(),r=0,n=d.nonInlineLevel,A.label=7;case 7:return r<n.length?(f=n[r],[4,this.renderNode(f)]):[3,10];case 8:A.sent(),A.label=9;case 9:return r++,[3,7];case 10:i=0,s=d.nonPositionedFloats,A.label=11;case 11:return i<s.length?(f=s[i],[4,this.renderStack(f)]):[3,14];case 12:A.sent(),A.label=13;case 13:return i++,[3,11];case 14:o=0,a=d.nonPositionedInlineLevel,A.label=15;case 15:return o<a.length?(f=a[o],[4,this.renderStack(f)]):[3,18];case 16:A.sent(),A.label=17;case 17:return o++,[3,15];case 18:c=0,l=d.inlineLevel,A.label=19;case 19:return c<l.length?(f=l[c],[4,this.renderNode(f)]):[3,22];case 20:A.sent(),A.label=21;case 21:return c++,[3,19];case 22:u=0,h=d.zeroOrAutoZIndexOrTransformedOrOpacity,A.label=23;case 23:return u<h.length?(f=h[u],[4,this.renderStack(f)]):[3,26];case 24:A.sent(),A.label=25;case 25:return u++,[3,23];case 26:B=0,g=d.positiveZIndex,A.label=27;case 27:return B<g.length?(f=g[B],[4,this.renderStack(f)]):[3,30];case 28:A.sent(),A.label=29;case 29:return B++,[3,27];case 30:return[2]}})})},U.prototype.mask=function(A){this.context2dCtx.beginPath(),this.context2dCtx.moveTo(0,0),this.context2dCtx.lineTo(this.options.width,0),this.context2dCtx.lineTo(this.options.width,this.options.height),this.context2dCtx.lineTo(0,this.options.height),this.context2dCtx.lineTo(0,0),this.formatPath(A.slice(0).reverse()),this.context2dCtx.closePath()},U.prototype.path=function(A,t){t=t||this.context2dCtx;t.beginPath(),this.formatPath(A,t),t.closePath()},U.prototype.formatPath=function(A,t){var r=t||this.context2dCtx;A.forEach(function(A,t){var e=xI(A)?A.start:A;0===t?r.moveTo(e.x,e.y):r.lineTo(e.x,e.y),xI(A)&&r.bezierCurveTo(A.startControl.x,A.startControl.y,A.endControl.x,A.endControl.y,A.end.x,A.end.y)})},U.prototype.renderRepeat=function(A,t,e,r){this.path(e,t),t.fillStyle=r,t.translate(0,0),t.fillRect(0,0,A.width,A.height),t.translate(-0,-0)},U.prototype.resizeImage=function(A,t,e){var r;return A.width===t&&A.height===e?A:((r=(null!=(r=this.canvas.ownerDocument)?r:document).createElement("canvas")).width=Math.max(1,t),r.height=Math.max(1,e),r.getContext("2d").drawImage(A,0,0,A.width,A.height,0,0,t,e),r)},U.prototype.renderBackgroundImage=function(k){var K;return D(this,void 0,void 0,function(){var P,t,M,e,r,n;return R(this,function(A){switch(A.label){case 0:P=k.styles.backgroundImage.length-1,t=function(o){var a,c,l,u,h,B,g,f,d,p,w,m,C,Q,y,F,U,b,v,E,x,I,H,L,S,N,_,T,D,O;return R(this,function(A){switch(A.label){case 0:if(0!==o.type)return[3,5];a=void 0,c=o.url,A.label=1;case 1:return A.trys.push([1,3,,4]),[4,M.context.cache.match(c)];case 2:return(a=A.sent())&&(m=aI(k,P,[a.width,a.height,a.width/a.height]),f=m[0],Q=m[1],y=m[2],w=m[3],m=m[4],u=uI(k),U=null!=(K=M.canvas.ownerDocument)?K:document,(b=U.createElement("canvas")).width=Math.max(1,u.width),b.height=Math.max(1,u.height),(v=b.getContext("2d")).save(),l=(A=>{switch(A){case 1:return"no-repeat";case 2:return"repeat-x";case 3:return"repeat-y";case 0:return"repeat";default:return"no-repeat"}})(k.styles.backgroundRepeat[0]),1===k.styles.backgroundRepeat[0]?(_=M.pxToPt(Q-M.options.x),T=M.pxToPt(y-M.options.y),D=M.pxToPt(w),O=M.pxToPt(m),M.addImagePdf(a,"JPEG",_,T,D,O)):(B=M.resizeImage(a,w,m),B=v.createPattern(B,l),x=VI(f,-Q,-y,0,0),M.renderRepeat(u,v,x,B),N=b.toDataURL("image/jpeg",.8),v.restore(),_=M.pxToPt(u.left-M.options.x),T=M.pxToPt(u.top-M.options.y),D=M.pxToPt(u.width),O=M.pxToPt(u.height),M.addImagePdf(N,"JPEG",_,T,D,O))),[3,4];case 3:return A.sent(),M.context.logger.error("Error loading background-image ".concat(c)),[3,4];case 4:return[3,6];case 5:1===o.type?(l=aI(k,P,[null,null,null]),f=l[0],Q=l[1],y=l[2],w=l[3],m=l[4],t=o.angle,e=w,r=m,t="number"==typeof t?t:Kr(t,e,r),n=Math.abs(e*Math.sin(t))+Math.abs(r*Math.cos(t)),e/=2,r/=2,i=n/2,s=Math.sin(t-Math.PI/2)*i,t=Math.cos(t-Math.PI/2)*i,F=(C=[n,e-t,e+t,r-s,r+s])[0],g=C[1],p=C[2],d=C[3],C=C[4],u=uI(k),(b=document.createElement("canvas")).width=w,b.height=m,v=b.getContext("2d"),h=v.createLinearGradient(g,d,p,C),_r(o.stops,F).forEach(function(A){return h.addColorStop(A.stop,He(A.color))}),v.fillStyle=h,v.fillRect(0,0,w,m),0<w&&0<m&&(B=v.createPattern(b,"repeat"),x=VI(f,-Q,-y,0,0),M.renderRepeat(u,v,x,B)),N=b.toDataURL("image/jpeg",.8),v.restore(),_=M.pxToPt(Q-M.options.x),T=M.pxToPt(y-M.options.y),D=M.pxToPt(w),O=M.pxToPt(m),M.addImagePdf(N,"JPEG",_,T,D,O)):2===o.type&&(g=aI(k,P,[null,null,null]),f=g[0],d=g[1],p=g[2],w=g[3],m=g[4],C=0===o.position.length?[Me]:o.position,Q=Re(C[0],w),y=Re(C[C.length-1],m),F=((A,t,e,r,n)=>{var i,s,o,a=0,c=0;switch(A.size){case 0:0===A.shape?a=c=Math.min(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(a=Math.min(Math.abs(t),Math.abs(t-r)),c=Math.min(Math.abs(e),Math.abs(e-n)));break;case 2:0===A.shape?a=c=Math.min(Rr(t,e),Rr(t,e-n),Rr(t-r,e),Rr(t-r,e-n)):1===A.shape&&(i=Math.min(Math.abs(e),Math.abs(e-n))/Math.min(Math.abs(t),Math.abs(t-r)),o=(s=Vr(r,n,t,e,!0))[0],c=i*(a=Rr(o-t,(s[1]-e)/i)));break;case 1:0===A.shape?a=c=Math.max(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(a=Math.max(Math.abs(t),Math.abs(t-r)),c=Math.max(Math.abs(e),Math.abs(e-n)));break;case 3:0===A.shape?a=c=Math.max(Rr(t,e),Rr(t,e-n),Rr(t-r,e),Rr(t-r,e-n)):1===A.shape&&(i=Math.max(Math.abs(e),Math.abs(e-n))/Math.max(Math.abs(t),Math.abs(t-r)),o=(s=Vr(r,n,t,e,!1))[0],c=i*(a=Rr(o-t,(s[1]-e)/i)))}return Array.isArray(A.size)&&(a=Re(A.size[0],r),c=2===A.size.length?Re(A.size[1],n):a),[a,c]})(o,Q,y,w,m),S=F[0],L=F[1],U=null!=(K=M.canvas.ownerDocument)?K:document,(b=U.createElement("canvas")).width=Math.max(1,w),b.height=Math.max(1,m),v=b.getContext("2d"),0<S&&0<L&&(E=v.createRadialGradient(Q,y,0,Q,y,S),_r(o.stops,2*S).forEach(function(A){return E.addColorStop(A.stop,He(A.color))}),x=VI(f,-d,-p,0,0),M.path(x,v),v.fillStyle=E,S!==L?(I=0+.5*w,H=0+.5*m,S=1/(L=L/S),v.save(),v.translate(I,H),v.transform(1,0,0,L,0,0),v.translate(-I,-H),v.fillRect(0,S*(0-H)+H,w,m*S),v.restore()):v.fill()),N=b.toDataURL("image/jpeg",.8),_=M.pxToPt(d-M.options.x),T=M.pxToPt(p-M.options.y),D=M.pxToPt(w),O=M.pxToPt(m),M.addImagePdf(N,"JPEG",_,T,D,O)),A.label=6;case 6:return P--,[2]}var t,e,r,n,i,s})},M=this,e=0,r=k.styles.backgroundImage.slice(0).reverse(),A.label=1;case 1:return e<r.length?(n=r[e],[5,t(n)]):[3,4];case 2:A.sent(),A.label=3;case 3:return e++,[3,1];case 4:return[2]}})})},U.prototype.renderSolidBorder=function(t,e,r){return D(this,void 0,void 0,function(){return R(this,function(A){return this.path(QI(r,e)),this.context2dCtx.fillStyle=this.convertColor(t),this.jspdfCtx.fill(),this.context2dCtx.fill(),[2]})})},U.prototype.renderDoubleBorder=function(e,r,n,i){return D(this,void 0,void 0,function(){var t;return R(this,function(A){switch(A.label){case 0:return r<3?[4,this.renderSolidBorder(e,n,i)]:[3,2];case 1:return A.sent(),[2];case 2:return t=((A,t)=>{switch(t){case 0:return FI(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return FI(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return FI(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return FI(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}})(i,n),this.path(t),this.context2dCtx.fillStyle=this.convertColor(e),this.context2dCtx.fill(),t=((A,t)=>{switch(t){case 0:return FI(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return FI(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return FI(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return FI(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}})(i,n),this.path(t),this.context2dCtx.fill(),[2]}})})},U.prototype.renderNodeBackgroundAndBorders=function(l){return D(this,void 0,void 0,function(){var t,e,r,n,i,s,o,a,c;return R(this,function(A){switch(A.label){case 0:return(this.applyEffects(l.getEffects(2)),t=l.container.styles,e=!qe(t.backgroundColor)||t.backgroundImage.length,r=[{style:t.borderTopStyle,color:t.borderTopColor,width:t.borderTopWidth},{style:t.borderRightStyle,color:t.borderRightColor,width:t.borderRightWidth},{style:t.borderBottomStyle,color:t.borderBottomColor,width:t.borderBottomWidth},{style:t.borderLeftStyle,color:t.borderLeftColor,width:t.borderLeftWidth}],n=ZI(pI(t.backgroundClip,0),l.curves),i=l.container.foreignobjectrendering,e||t.boxShadow.length)?(i||(this.context2dCtx.save(),this.path(n),this.context2dCtx.clip(),qe(t.backgroundColor))||(this.context2dCtx.fillStyle=this.convertColor(t.backgroundColor),this.context2dCtx.fill()),[4,this.renderBackgroundImage(l.container)]):[3,2];case 1:A.sent(),this.context2dCtx.restore(),this.resetJsPDFFont(),A.label=2;case 2:o=s=0,a=r,A.label=3;case 3:return o<a.length?0!==(c=a[o]).style&&!qe(c.color)&&0<c.width?2!==c.style?[3,5]:[4,this.renderDashedDottedBorder(c.color,c.width,s,l.curves,2)]:[3,11]:[3,13];case 4:return A.sent(),[3,11];case 5:return 3!==c.style?[3,7]:[4,this.renderDashedDottedBorder(c.color,c.width,s,l.curves,3)];case 6:return A.sent(),[3,11];case 7:return 4!==c.style?[3,9]:[4,this.renderDoubleBorder(c.color,c.width,s,l.curves)];case 8:return A.sent(),[3,11];case 9:return i?[3,11]:[4,this.renderSolidBorder(c.color,s,l.curves)];case 10:A.sent(),A.label=11;case 11:s++,A.label=12;case 12:return o++,[3,3];case 13:return[2]}})})},U.prototype.renderDashedDottedBorder=function(h,B,g,f,d){return D(this,void 0,void 0,function(){var t,e,r,n,i,s,o,a,c,l,u;return R(this,function(A){return this.context2dCtx.save(),i=((A,t)=>{switch(t){case 0:return yI(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return yI(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return yI(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return yI(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}})(f,g),t=QI(f,g),2===d&&(this.path(t),this.context2dCtx.clip()),c=(xI(t[0])?(e=t[0].start.x,t[0].start):(e=t[0].x,t[0])).y,n=(xI(t[1])?(r=t[1].end.x,t[1].end):(r=t[1].x,t[1])).y,c=0===g||2===g?Math.abs(e-r):Math.abs(c-n),this.context2dCtx.beginPath(),3===d?this.formatPath(i):this.formatPath(t.slice(0,2)),n=B<3?3*B:2*B,i=B<3?2*B:B,3===d&&(i=n=B),s=!0,c<=2*n?s=!1:c<=2*n+i?(n*=o=c/(2*n+i),i*=o):(o=Math.floor((c+i)/(n+i)),a=(c-o*n)/(o-1),i=(c=(c-(o+1)*n)/o)<=0||Math.abs(i-a)<Math.abs(i-c)?a:c),s&&(3===d?this.context2dCtx.setLineDash([0,n+i]):this.context2dCtx.setLineDash([n,i])),3===d?(this.context2dCtx.lineCap="round",this.context2dCtx.lineWidth=B):this.context2dCtx.lineWidth=2*B+1.1,this.context2dCtx.strokeStyle=He(h),this.context2dCtx.stroke(),this.context2dCtx.setLineDash([]),2===d&&(xI(t[0])&&(l=t[3],u=t[0],this.context2dCtx.beginPath(),this.formatPath([new F(l.end.x,l.end.y),new F(u.start.x,u.start.y)]),this.context2dCtx.stroke()),xI(t[1]))&&(l=t[1],u=t[2],this.context2dCtx.beginPath(),this.formatPath([new F(l.end.x,l.end.y),new F(u.start.x,u.start.y)]),this.context2dCtx.stroke()),this.context2dCtx.restore(),[2]})})},U.prototype.addPage=function(t){return D(this,void 0,void 0,function(){return R(this,function(A){return this.context2dCtx.translate(0,-t),this.jspdfCtx.addPage(),[2]})})},U.prototype.renderPage=function(B,g){return D(this,void 0,void 0,function(){var n,i,s,o,a,c,l,u,h;return R(this,function(A){switch(A.label){case 0:return n=this.options.pageConfig,i=this.jspdfCtx.internal.pageSize.getWidth(),s=this.jspdfCtx.internal.pageSize.getHeight(),a=o=0,this.options.backgroundColor&&(this.jspdfCtx.setFillColor(this.convertColor(this.options.backgroundColor)),c=this.safe(this.options.x),l=this.safe(this.options.y),u=Math.max(1,this.safe(this.options.width,1)),h=Math.max(1,this.safe(this.options.height,1)),this.jspdfCtx.rect(c,l,u,h,"F")),t=new jI(t=B,null),e=new GI(t),JI(t,e,e,r=[]),YI(t.container,r),[4,this.renderStack(e)];case 1:return A.sent(),this.applyEffects([]),null!=n&&n.header&&("function"==typeof n.header.content?n.header.content(this,String(g)):(c=String(n.header.content).replace("${currentPage}",String(g)).replace("${totalPages}",String(this.totalPages)),this.jspdfCtx.setFontSize(this.safe(this.pxToPt(n.header.contentFontSize),1)),this.setTextColorFromString(n.header.contentColor),l=this.computeContentPosition(n.header.contentPosition,i,s,n.header.height,o,a,"header",n.header.padding),this.textPdf(c,l.x,l.y,l.align))),null!=n&&n.footer&&("function"==typeof n.footer.content?n.footer.content(this,String(g)):(u=String(n.footer.content).replace("${currentPage}",String(g)).replace("${totalPages}",String(this.totalPages)),this.jspdfCtx.setFontSize(this.safe(this.pxToPt(n.footer.contentFontSize),1)),this.setTextColorFromString(n.footer.contentColor),h=this.computeContentPosition(n.footer.contentPosition,i,s,n.footer.height,o,a,"footer",n.footer.padding),this.textPdf(u,h.x,h.y,h.align))),[2]}var t,e,r})})},U.prototype.setTotalPages=function(A){this.totalPages=A},U.prototype.setTextColorFromString=function(A){var t={black:[0,0,0],white:[255,255,255],red:[255,0,0],green:[0,128,0],blue:[0,0,255],gray:[128,128,128]},e=0,r=0,n=0,A=(null==A?void 0:A.toLowerCase())||"black";A in t?(e=(t=t[A])[0],r=t[1],n=t[2]):!A.startsWith("#")||7!==A.length&&4!==A.length||(t=4===A.length?"#".concat(A[1]).concat(A[1]).concat(A[2]).concat(A[2]).concat(A[3]).concat(A[3]):A,e=parseInt(t.slice(1,3),16),r=parseInt(t.slice(3,5),16),n=parseInt(t.slice(5,7),16)),this.jspdfCtx.setTextColor(e,r,n)},U.prototype.safe=function(A,t){void 0===t&&(t=0);A=Number(A);return Number.isFinite(A)?A:t},U.prototype.textPdf=function(A,t,e,r){t=this.safe(t),e=this.safe(e);this.jspdfCtx.text(String(A),t,e,{align:r})},U.prototype.computeContentPosition=function(A,t,e,r,n,i,s,o){var a=this,o=(null!=o?o:[24,24,24,24]).map(function(A){return a.pxToPt(A)}),c=o[0],l=o[1],u=o[2],h=o[3],B=this.pxToPt(r),g=this.pxToPt(n),f=this.pxToPt(i);if(Array.isArray(A)&&2<=A.length)return{x:this.pxToPt(A[0]),y:this.pxToPt(A[1]),align:"left"};if("header"===s)switch(A){case"center":return{x:t/2,y:g+c+(B-c-u)/2,align:"center"};case"centerLeft":return{x:h,y:g+c+(B-c-u)/2,align:"left"};case"centerRight":return{x:t-l,y:g+c+(B-c-u)/2,align:"right"};case"centerTop":return{x:t/2,y:g+c,align:"center"};case"centerBottom":return{x:t/2,y:g+B-u,align:"center"};case"leftTop":return{x:h,y:g+c,align:"left"};case"leftBottom":return{x:h,y:g+B-u,align:"left"};case"rightTop":return{x:t-l,y:g+c,align:"right"};case"rightBottom":return{x:t-l,y:g+B-u,align:"right"};default:return{x:h,y:g+c,align:"left"}}else switch(A){case"center":return{x:t/2,y:e-f-B+c+(B-c-u)/2,align:"center"};case"centerLeft":return{x:h,y:e-f-B+c+(B-c-u)/2,align:"left"};case"centerRight":return{x:t-l,y:e-f-B+c+(B-c-u)/2,align:"right"};case"centerTop":return{x:t/2,y:e-f-B+c,align:"center"};case"centerBottom":return{x:t/2,y:e-f-u,align:"center"};case"leftTop":return{x:h,y:e-f-B+c,align:"left"};case"leftBottom":return{x:h,y:e-f-u,align:"left"};case"rightTop":return{x:t-l,y:e-f-B+c,align:"right"};case"rightBottom":return{x:t-l,y:e-f-u,align:"right"};default:return{x:h,y:e-f-u,align:"left"}}},U.prototype.addImagePdf=function(A,t,e,r,n,i){e=this.safe(e),r=this.safe(r),n=Math.max(1,this.safe(n,1)),i=Math.max(1,this.safe(i,1));this.jspdfCtx.addImage(A,t,e,r,n,i,"","FAST")},U.prototype.output=function(){return D(this,void 0,void 0,function(){return R(this,function(A){return[2,this.jspdfCtx.output("blob")]})})},U);function U(A,t){var e=WI.call(this,A,t)||this,A=(e._activeEffects=[],e.totalPages=1,e.canvas=t.canvas||document.createElement("canvas"),e.pxToPt=function(A){return.75*A},e.pxToPt(t.width)),r=e.pxToPt(t.height),n=Array.isArray(t.format)?t.format.map(function(A){return e.pxToPt(A)}):t.format;if(e.jspdfCtx=new ue({unit:"pt",format:t.pagination&&n?n:[r,A],hotfixes:["px_scaling"],putOnlyUsedFonts:t.putOnlyUsedFonts,compress:t.compress,precision:t.precision,floatPrecision:t.floatPrecision,encryption:t.encryption}),e.context2dCtx=e.jspdfCtx.context2d,e.context2dCtx.scale(.75,.75),e.context2dCtx.translate(-t.x,-t.y),t.fontConfig)try{e.addFontToJsPDF()}catch(A){console.warn("Failed to set font:",A),e.jspdfCtx.setFont("Helvetica")}return t.canvas||(e.canvas.width=10,e.canvas.height=10,e.canvas.style.width="10px",e.canvas.style.height="10px"),e.fontMetrics=new TI(document),e.context2dCtx.textBaseline="bottom",e._activeEffects=[],e.context.logger.debug("Canvas renderer initialized (".concat(t.width,"x").concat(t.height,") with scale ").concat(t.scale)),e}var zI=function(A){return A instanceof Xi||A instanceof Vi||A instanceof ls&&A.type!==os&&A.type!==ss},ZI=function(A,t){switch(A){case 0:return UI(t);case 2:return[t.topLeftContentBox,t.topRightContentBox,t.bottomRightContentBox,t.bottomLeftContentBox];default:return bI(t)}},$I=function(A){switch(A){case 1:return"center";case 2:return"right";default:return"left"}},AH=["-apple-system","system-ui"],tH=function(A){return/iPhone OS 15_(0|1)/.test(window.navigator.userAgent)?A.filter(function(A){return-1===AH.indexOf(A)}):A},eH={a0:{width:3179,height:4494},a1:{width:2245,height:3179},a2:{width:1587,height:2245},a3:{width:1123,height:1587},a4:{width:794,height:1123},a5:{width:559,height:794},a6:{width:397,height:559},a7:{width:280,height:397},a8:{width:197,height:280},a9:{width:140,height:197},a10:{width:98,height:140},b0:{width:3780,height:5344},b1:{width:2672,height:3780},b2:{width:1890,height:2672},b3:{width:1334,height:1890},b4:{width:945,height:1334},b5:{width:665,height:945},b6:{width:472,height:665},b7:{width:333,height:472},b8:{width:234,height:333},b9:{width:166,height:234},b10:{width:117,height:166},c0:{width:3466,height:4902},c1:{width:2449,height:3466},c2:{width:1731,height:2449},c3:{width:1225,height:1731},c4:{width:865,height:1225},c5:{width:612,height:865},c6:{width:431,height:612},c7:{width:306,height:431},c8:{width:215,height:306},c9:{width:151,height:215},c10:{width:106,height:151},dl:{width:416,height:832},letter:{width:816,height:1056},"government-letter":{width:768,height:1008},legal:{width:816,height:1344},"junior-legal":{width:480,height:768},ledger:{width:1632,height:1056},tabloid:{width:1056,height:1632},"credit-card":{width:204,height:324},A4:{width:794,height:1123}},rH={},nH=0,iH=1123,sH=0,oH=0,aH=10,cH=function(A){for(var t=Object.create(Object.getPrototypeOf(A)),e=A,r=0,n=Object.keys(e);r<n.length;r++){var i=n[r];"elements"!==i&&"bounds"!==i&&"styles"!==i&&"textNodes"!==i&&(t[i]=e[i])}return t.context=A.context,t.styles=Object.assign(Object.create(Object.getPrototypeOf(A.styles)),A.styles),t.textNodes=A.textNodes,t.flags=A.flags,t.bounds=new bt(A.bounds.left,A.bounds.top,A.bounds.width,A.bounds.height),t.elements=[],t},lH=function(A){var t=Object.create(Object.getPrototypeOf(A));return t.text=A.text,t.textBounds=[],t},uH=function(A){for(var t=A.bounds.top+A.bounds.height,e=0,r=A.textNodes;e<r.length;e++)for(var n=0,i=r[e].textBounds;n<i.length;n++){var s=i[n];t<(c=s.bounds.top+s.bounds.height)&&(t=c)}for(var o=0,a=A.elements;o<a.length;o++){var c,l=a[o];t<(c=uH(l))&&(t=c)}return t},hH=function(A,a,c){for(var t=[],e=0,r=A.textNodes;e<r.length;e++){for(var n=r[e],l=[],i=0,s=n.textBounds;i<s.length;i++)(A=>{var t=Math.floor(c/iH),e=Math.max.apply(Math,Object.keys(rH).map(function(A){return+A})),e=1!==t&&rH[e]||0,r=Math.max.apply(Math,Object.keys(rH).filter(function(A){return+A<t}).map(function(A){return+A})),r=rH[r]||0,n=A.bounds.top+e,e=A.bounds.top+A.bounds.height+e;if(a<e&&n<c&&!(c<e)){if(n<a){if(r||1<t){var i=a-iH,s=c-iH,o=A.bounds.top+r,r=A.bounds.top+A.bounds.height+r;if(i<r&&o<s&&!(s<r))return}i=a-n+aH,o=rH[t]||0;(!rH[t]||o<i)&&(o<i?nH=nH-o+i:nH+=i,rH[t]=nH),e+=i,n+=i}s=Math.max(n,a),r=Math.min(e,c),o=s-a,i=Math.max(0,r-s),n=new bt(A.bounds.left,o+sH,A.bounds.width,i);l.push({text:A.text,bounds:n})}})(s[i]);0<l.length&&((n=lH(n)).textBounds=l,t.push(n))}return t},BH=function(A,t,e){var r=Math.floor(e/iH),n=Math.max.apply(Math,Object.keys(rH).map(function(A){return+A})),i=1!==r&&rH[n]||0,s=A.bounds.top+i,o=A.bounds.top+A.bounds.height+i;if(A.divisionDisable&&e<o&&s<e)return c=e-s+aH,B=rH[r]||0,(!rH[r]||B<c)&&(nH+=c-B,rH[r]=nH),null;for(var a=[],c=hH(A,t,e),l=0,u=A.elements;l<u.length;l++){var h=u[l],h=BH(h,t,e);h&&a.push(h)}var n=Math.max.apply(Math,Object.keys(rH).map(function(A){return+A})),i=1!==r&&rH[n]||0,s=A.bounds.top+i,o=A.bounds.top+A.bounds.height+i,B=Math.max(s,t),r=Math.min(o,e),n=Math.max(0,r-B);return 0<a.length||0<c.length||0<n?((i=cH(A)).elements=a,i.textNodes=c,i.bounds=new bt(A.bounds.left,(t<=B?B-t:0)+sH,A.bounds.width,n),i):null},gH=function(A,t,e,r,n){(e=void 0===e?0:e)<0&&(e=0),nH=0,rH={};for(var i,r=r||uH(A),s=(sH=(null==(i=null==n?void 0:n.header)?void 0:i.height)||0,oH=(null==(i=null==n?void 0:n.footer)?void 0:i.height)||0,iH=t-sH-oH,Math.max(1,Math.ceil((r-e)/iH))),o=[],a=0;a<s;a++){var c=e+a*iH,c=BH(A,c,c+iH);c&&o.push(c)}return o},fH=("undefined"!=typeof window&&ct.setContext(window),function(A,t,e){var r=t.ownerDocument,n=r.documentElement?tr(A,getComputedStyle(r.documentElement).backgroundColor):er.TRANSPARENT,i=r.body?tr(A,getComputedStyle(r.body).backgroundColor):er.TRANSPARENT,A="string"==typeof e?tr(A,e):null===e?er.TRANSPARENT:4294967295;return t===r.documentElement?qe(n)?qe(i)?A:i:n:A}),dH=function(A,t){return(dH=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(A,t){A.__proto__=t}:function(A,t){for(var e in t)Object.prototype.hasOwnProperty.call(t,e)&&(A[e]=t[e])}))(A,t)};function pH(A,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function e(){this.constructor=A}dH(A,t),A.prototype=null===t?Object.create(t):(e.prototype=t.prototype,new e)}var wH=function(){return(wH=Object.assign||function(A){for(var t,e=1,r=arguments.length;e<r;e++)for(var n in t=arguments[e])Object.prototype.hasOwnProperty.call(t,n)&&(A[n]=t[n]);return A}).apply(this,arguments)};function mH(A,s,o,a){return new(o=o||Promise)(function(e,t){function r(A){try{i(a.next(A))}catch(A){t(A)}}function n(A){try{i(a.throw(A))}catch(A){t(A)}}function i(A){var t;A.done?e(A.value):((t=A.value)instanceof o?t:new o(function(A){A(t)})).then(r,n)}i((a=a.apply(A,s||[])).next())})}function CH(r,n){var i,s,o,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]},A={next:t(0),throw:t(1),return:t(2)};return"function"==typeof Symbol&&(A[Symbol.iterator]=function(){return this}),A;function t(e){return function(A){var t=[e,A];if(i)throw new TypeError("Generator is already executing.");for(;a;)try{if(i=1,s&&(o=2&t[0]?s.return:t[0]?s.throw||((o=s.return)&&o.call(s),0):s.next)&&!(o=o.call(s,t[1])).done)return o;switch(s=0,(t=o?[2&t[0],o.value]:t)[0]){case 0:case 1:o=t;break;case 4:return a.label++,{value:t[1],done:!1};case 5:a.label++,s=t[1],t=[0];continue;case 7:t=a.ops.pop(),a.trys.pop();continue;default:if(!(o=0<(o=a.trys).length&&o[o.length-1])&&(6===t[0]||2===t[0])){a=0;continue}if(3===t[0]&&(!o||t[1]>o[0]&&t[1]<o[3]))a.label=t[1];else if(6===t[0]&&a.label<o[1])a.label=o[1],o=t;else{if(!(o&&a.label<o[2])){o[2]&&a.ops.pop(),a.trys.pop();continue}a.label=o[2],a.ops.push(t)}}t=n.call(r,a)}catch(A){t=[6,A],s=0}finally{i=o=0}if(5&t[0])throw t[1];return{value:t[0]?t[1]:void 0,done:!0}}}}function QH(A,t,e){if(e||2===arguments.length)for(var r,n=0,i=t.length;n<i;n++)!r&&n in t||((r=r||Array.prototype.slice.call(t,0,n))[n]=t[n]);return A.concat(r||t)}FH.prototype.add=function(A,t,e,r){return new FH(this.left+A,this.top+t,this.width+e,this.height+r)},FH.fromClientRect=function(A,t){return new FH(t.left+A.windowBounds.left,t.top+A.windowBounds.top,t.width,t.height)},FH.fromDOMRectList=function(A,t){t=Array.from(t).find(function(A){return 0!==A.width});return t?new FH(t.left+A.windowBounds.left,t.top+A.windowBounds.top,t.width,t.height):FH.EMPTY},FH.EMPTY=new FH(0,0,0,0);var yH=FH;function FH(A,t,e,r){this.left=A,this.top=t,this.width=e,this.height=r}for(var UH=function(A,t){return yH.fromClientRect(A,t.getBoundingClientRect())},bH=function(A){var t,e=A.body,A=A.documentElement;if(e&&A)return t=Math.max(Math.max(e.scrollWidth,A.scrollWidth),Math.max(e.offsetWidth,A.offsetWidth),Math.max(e.clientWidth,A.clientWidth)),e=Math.max(Math.max(e.scrollHeight,A.scrollHeight),Math.max(e.offsetHeight,A.offsetHeight),Math.max(e.clientHeight,A.clientHeight)),new yH(0,0,t,e);throw new Error("Unable to get document size")},vH=function(A){for(var t=[],e=0,r=A.length;e<r;){var n,i=A.charCodeAt(e++);55296<=i&&i<=56319&&e<r?56320==(64512&(n=A.charCodeAt(e++)))?t.push(((1023&i)<<10)+(1023&n)+65536):(t.push(i),e--):t.push(i)}return t},EH=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,i="";++n<e;){var s=A[n];s<=65535?r.push(s):r.push(55296+((s-=65536)>>10),s%1024+56320),(n+1===e||16384<r.length)&&(i+=String.fromCharCode.apply(String,r),r.length=0)}return i},xH="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",IH="undefined"==typeof Uint8Array?[]:new Uint8Array(256),HH=0;HH<xH.length;HH++)IH[xH.charCodeAt(HH)]=HH;for(var LH="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",SH="undefined"==typeof Uint8Array?[]:new Uint8Array(256),NH=0;NH<LH.length;NH++)SH[LH.charCodeAt(NH)]=NH;function _H(A,t,e){return A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e))}TH.prototype.get=function(A){var t;if(0<=A){if(A<55296||56319<A&&A<=65535)return t=this.index[A>>5],this.data[t=(t<<2)+(31&A)];if(A<=65535)return t=this.index[2048+(A-55296>>5)],this.data[t=(t<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],t=this.index[t+=A>>5&63],this.data[t=(t<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue};q2=TH;function TH(A,t,e,r,n,i){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=i}for(var DH="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",OH="undefined"==typeof Uint8Array?[]:new Uint8Array(256),PH=0;PH<DH.length;PH++)OH[DH.charCodeAt(PH)]=PH;var MH=50,kH=2,KH=3,RH=4,VH=7,GH=8,jH=9,XH=10,WH=11,JH=12,YH=13,qH=14,zH=15,ZH=16,$H=17,AL=18,tL=19,eL=20,rL=21,nL=22,iL=23,sL=24,oL=25,aL=26,cL=27,lL=28,uL=29,hL=30,BL=31,gL=32,fL=33,dL=34,pL=35,wL=36,mL=37,CL=38,QL=39,yL=40,FL=41,UL=42,bL=43,vL=[9001,65288],EL="!",b="×",xL="÷",IL=(h=(A=>{for(var t,e,r,n,i=.75*A.length,s=A.length,o=0,i=("="===A[A.length-1]&&(i--,"="===A[A.length-2])&&i--,new("undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?ArrayBuffer:Array)(i)),a=Array.isArray(i)?i:new Uint8Array(i),c=0;c<s;c+=4)t=SH[A.charCodeAt(c)],e=SH[A.charCodeAt(c+1)],r=SH[A.charCodeAt(c+2)],n=SH[A.charCodeAt(c+3)],a[o++]=t<<2|e>>4,a[o++]=(15&e)<<4|r>>2,a[o++]=(3&r)<<6|63&n;return i})(h="KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA=="),m=Array.isArray(h)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(h):new Uint32Array(h),h=Array.isArray(h)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(h):new Uint16Array(h),c2=_H(h,12,m[4]/2),h=2===m[5]?_H(h,(24+m[4])/2):(h=m,C=Math.ceil((24+m[4])/4),h.slice?h.slice(C,dP):new Uint32Array(Array.prototype.slice.call(h,C,dP))),new q2(m[0],m[1],m[2],m[3],c2,h)),HL=[hL,wL],LL=[1,kH,KH,5],SL=[XH,GH],NL=[cL,aL],_L=LL.concat(SL),TL=[CL,QL,yL,dL,pL],DL=[zH,YH],OL=function(A,r){void 0===r&&(r="strict");var n=[],i=[],s=[];return A.forEach(function(A,t){var e=IL.get(A);if(MH<e?(s.push(!0),e-=MH):s.push(!1),-1!==["normal","auto","loose"].indexOf(r)&&-1!==[8208,8211,12316,12448].indexOf(A))return i.push(t),n.push(ZH);if(e!==RH&&e!==WH)return i.push(t),e===BL?n.push("strict"===r?rL:mL):e===UL||e===uL?n.push(hL):e===bL?n.push(131072<=A&&A<=196605||196608<=A&&A<=262141?mL:hL):void n.push(e);if(0!==t&&-1===_L.indexOf(A=n[t-1]))return i.push(i[t-1]),n.push(A);return i.push(t),n.push(hL)}),[i,n,s]},PL=function(A,t,e,r){var n=r[e];if(Array.isArray(A)?-1!==A.indexOf(n):A===n)for(var i=e;i<=r.length;){if((o=r[++i])===t)return!0;if(o!==XH)break}if(n===XH)for(i=e;0<i;){var s=r[--i];if(Array.isArray(A)?-1!==A.indexOf(s):A===s)for(var o,a=e;a<=r.length;){if((o=r[++a])===t)return!0;if(o!==XH)break}if(s!==XH)break}return!1},ML=function(A,t){for(var e=A;0<=e;){var r=t[e];if(r!==XH)return r;e--}return 0},kL=function(A,t,e,r,n){if(0===e[r])return b;r-=1;if(Array.isArray(n)&&!0===n[r])return b;var n=r-1,i=1+r,s=t[r],o=0<=n?t[n]:0,a=t[i];if(s===kH&&a===KH)return b;if(-1!==LL.indexOf(s))return EL;if(-1!==LL.indexOf(a))return b;if(-1!==SL.indexOf(a))return b;if(ML(r,t)===GH)return xL;if(IL.get(A[r])===WH)return b;if((s===gL||s===fL)&&IL.get(A[i])===WH)return b;if(s===VH||a===VH)return b;if(s===jH)return b;if(-1===[XH,YH,zH].indexOf(s)&&a===jH)return b;
|
|
62
|
+
// LB13 Do not break before ‘]’ or ‘!’ or ‘;’ or ‘/’, even after spaces.
|
|
63
|
+
if(-1!==[$H,AL,tL,sL,lL].indexOf(a))return b;if(ML(r,t)===nL)return b;if(PL(iL,nL,r,t))return b;if(PL([$H,AL],rL,r,t))return b;if(PL(JH,JH,r,t))return b;if(s===XH)return xL;if(s===iL||a===iL)return b;if(a===ZH||s===ZH)return xL;if(-1!==[YH,zH,rL].indexOf(a)||s===qH)return b;if(o===wL&&-1!==DL.indexOf(s))return b;if(s===lL&&a===wL)return b;if(a===eL)return b;if(-1!==HL.indexOf(a)&&s===oL||-1!==HL.indexOf(s)&&a===oL)return b;if(s===cL&&-1!==[mL,gL,fL].indexOf(a)||-1!==[mL,gL,fL].indexOf(s)&&a===aL)return b;if(-1!==HL.indexOf(s)&&-1!==NL.indexOf(a)||-1!==NL.indexOf(s)&&-1!==HL.indexOf(a))return b;if(-1!==[cL,aL].indexOf(s)&&(a===oL||-1!==[nL,zH].indexOf(a)&&t[1+i]===oL)||-1!==[nL,zH].indexOf(s)&&a===oL||s===oL&&-1!==[oL,lL,sL].indexOf(a))return b;if(-1!==[oL,lL,sL,$H,AL].indexOf(a))for(var c=r;0<=c;){if((l=t[c])===oL)return b;if(-1===[lL,sL].indexOf(l))break;c--}if(-1!==[cL,aL].indexOf(a))for(var l,c=-1!==[$H,AL].indexOf(s)?n:r;0<=c;){if((l=t[c])===oL)return b;if(-1===[lL,sL].indexOf(l))break;c--}if(CL===s&&-1!==[CL,QL,dL,pL].indexOf(a)||-1!==[QL,dL].indexOf(s)&&-1!==[QL,yL].indexOf(a)||-1!==[yL,pL].indexOf(s)&&a===yL)return b;if(-1!==TL.indexOf(s)&&-1!==[eL,aL].indexOf(a)||-1!==TL.indexOf(a)&&s===cL)return b;if(-1!==HL.indexOf(s)&&-1!==HL.indexOf(a))return b;if(s===sL&&-1!==HL.indexOf(a))return b;if(-1!==HL.concat(oL).indexOf(s)&&a===nL&&-1===vL.indexOf(A[i])||-1!==HL.concat(oL).indexOf(a)&&s===AL)return b;if(s===FL&&a===FL){for(var u=e[r],h=1;0<u&&t[--u]===FL;)h++;if(h%2!=0)return b}return s===gL&&a===fL?b:xL},KL=function(e,A){var t=OL(e,(A=A||{lineBreak:"normal",wordBreak:"normal"}).lineBreak),r=t[0],n=t[1],t=t[2],A=("break-all"!==A.wordBreak&&"break-word"!==A.wordBreak||(n=n.map(function(A){return-1!==[oL,hL,UL].indexOf(A)?mL:A})),"keep-all"===A.wordBreak?t.map(function(A,t){return A&&19968<=e[t]&&e[t]<=40959}):void 0);return[r,n,A]},RL=(VL.prototype.slice=function(){return EH.apply(void 0,this.codePoints.slice(this.start,this.end))},VL);function VL(A,t,e,r){this.codePoints=A,this.required=t===EL,this.start=e,this.end=r}function GL(A){return t6<=A&&A<=57}function jL(A){return GL(A)||n6<=A&&A<=70||e6<=A&&A<=102}function XL(A){return 10===A||9===A||32===A}function WL(A){return a6(A)||c6(A)||A===$L}function JL(A){return WL(A)||GL(A)||45===A}function YL(A,t){return 92===A&&10!==t}function qL(A,t,e){return 45===A?WL(t)||YL(t,e):!!WL(A)||92===A&&10!==t}function zL(A,t,e){return 43===A||45===A?!!GL(t)||46===t&&GL(e):GL(46===A?t:A)}var ZL=function(A,t){var e=vH(A),A=KL(e,t),r=A[0],n=A[1],i=A[2],s=e.length,o=0,a=0;return{next:function(){if(s<=a)return{done:!0,value:null};for(var A,t=b;a<s&&(t=kL(e,n,r,++a,i))===b;);return t!==b||a===s?(A=new RL(e,t,o,a),o=a,{value:A,done:!1}):{done:!0,value:null}}}},$L=95,A6=128,t6=48,e6=97,r6=122,n6=65,i6=90,s6=function(A){return e6<=A&&A<=r6},o6=function(A){return n6<=A&&A<=i6},a6=function(A){return s6(A)||o6(A)},c6=function(A){return A6<=A},l6={type:2},u6={type:3},h6={type:4},B6={type:13},g6={type:8},f6={type:21},d6={type:9},p6={type:10},w6={type:11},m6={type:12},C6={type:14},Q6={type:23},y6={type:1},F6={type:25},U6={type:24},b6={type:26},v6={type:27},E6={type:28},x6={type:29},I6={type:31},H6={type:32},L6=(S6.prototype.write=function(A){this._value=this._value.concat(vH(A))},S6.prototype.read=function(){for(var A=[],t=this.consumeToken();t!==H6;)A.push(t),t=this.consumeToken();return A},S6.prototype.consumeToken=function(){var A=this.consumeCodePoint();switch(A){case 34:return this.consumeStringToken(34);case 35:var t=this.peekCodePoint(0),e=this.peekCodePoint(1),r=this.peekCodePoint(2);if(JL(t)||YL(e,r))return t=qL(t,e,r)?2:1,{type:5,value:this.consumeName(),flags:t};break;case 36:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),B6;break;case 39:return this.consumeStringToken(39);case 40:return l6;case 41:return u6;case 42:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),C6;break;case 43:if(zL(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 44:return h6;case 45:e=A,r=this.peekCodePoint(0),t=this.peekCodePoint(1);if(zL(e,r,t))return this.reconsumeCodePoint(A),this.consumeNumericToken();if(qL(e,r,t))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();if(45===r&&62===t)return this.consumeCodePoint(),this.consumeCodePoint(),U6;break;case 46:if(zL(A,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(A),this.consumeNumericToken();break;case 47:if(42===this.peekCodePoint(0))for(this.consumeCodePoint();;){var n=this.consumeCodePoint();if(42===n&&47===(n=this.consumeCodePoint()))return this.consumeToken();if(-1===n)return this.consumeToken()}break;case 58:return b6;case 59:return v6;case 60:if(33===this.peekCodePoint(0)&&45===this.peekCodePoint(1)&&45===this.peekCodePoint(2))return this.consumeCodePoint(),this.consumeCodePoint(),F6;break;case 64:e=this.peekCodePoint(0),r=this.peekCodePoint(1),t=this.peekCodePoint(2);if(qL(e,r,t))return{type:7,value:this.consumeName()};break;case 91:return E6;case 92:if(YL(A,this.peekCodePoint(0)))return this.reconsumeCodePoint(A),this.consumeIdentLikeToken();break;case 93:return x6;case 61:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),g6;break;case 123:return w6;case 125:return m6;case 117:case 85:e=this.peekCodePoint(0),r=this.peekCodePoint(1);return 43!==e||!jL(r)&&63!==r||(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(A),this.consumeIdentLikeToken();case 124:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),d6;if(124===this.peekCodePoint(0))return this.consumeCodePoint(),f6;break;case 126:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),p6;break;case-1:return H6}return XL(A)?(this.consumeWhiteSpace(),I6):GL(A)?(this.reconsumeCodePoint(A),this.consumeNumericToken()):WL(A)?(this.reconsumeCodePoint(A),this.consumeIdentLikeToken()):{type:6,value:EH(A)}},S6.prototype.consumeCodePoint=function(){var A=this._value.shift();return void 0===A?-1:A},S6.prototype.reconsumeCodePoint=function(A){this._value.unshift(A)},S6.prototype.peekCodePoint=function(A){return A>=this._value.length?-1:this._value[A]},S6.prototype.consumeUnicodeRangeToken=function(){for(var A=[],t=this.consumeCodePoint();jL(t)&&A.length<6;)A.push(t),t=this.consumeCodePoint();for(var e=!1;63===t&&A.length<6;)A.push(t),t=this.consumeCodePoint(),e=!0;if(e)return{type:30,start:parseInt(EH.apply(void 0,A.map(function(A){return 63===A?t6:A})),16),end:parseInt(EH.apply(void 0,A.map(function(A){return 63===A?70:A})),16)};var r=parseInt(EH.apply(void 0,A),16);if(45===this.peekCodePoint(0)&&jL(this.peekCodePoint(1))){this.consumeCodePoint();for(var t=this.consumeCodePoint(),n=[];jL(t)&&n.length<6;)n.push(t),t=this.consumeCodePoint();return{type:30,start:r,end:parseInt(EH.apply(void 0,n),16)}}return{type:30,start:r,end:r}},S6.prototype.consumeIdentLikeToken=function(){var A=this.consumeName();return"url"===A.toLowerCase()&&40===this.peekCodePoint(0)?(this.consumeCodePoint(),this.consumeUrlToken()):40===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:19,value:A}):{type:20,value:A}},S6.prototype.consumeUrlToken=function(){var A=[];if(this.consumeWhiteSpace(),-1===this.peekCodePoint(0))return{type:22,value:""};var t,e=this.peekCodePoint(0);if(39===e||34===e)return 0===(e=this.consumeStringToken(this.consumeCodePoint())).type&&(this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0))?(this.consumeCodePoint(),{type:22,value:e.value}):(this.consumeBadUrlRemnants(),Q6);for(;;){var r=this.consumeCodePoint();if(-1===r||41===r)return{type:22,value:EH.apply(void 0,A)};if(XL(r))return this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:22,value:EH.apply(void 0,A)}):(this.consumeBadUrlRemnants(),Q6);if(34===r||39===r||40===r||0<=(t=r)&&t<=8||11===t||14<=t&&t<=31||127===t)return this.consumeBadUrlRemnants(),Q6;if(92===r){if(!YL(r,this.peekCodePoint(0)))return this.consumeBadUrlRemnants(),Q6;A.push(this.consumeEscapedCodePoint())}else A.push(r)}},S6.prototype.consumeWhiteSpace=function(){for(;XL(this.peekCodePoint(0));)this.consumeCodePoint()},S6.prototype.consumeBadUrlRemnants=function(){for(;;){var A=this.consumeCodePoint();if(41===A||-1===A)return;YL(A,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}},S6.prototype.consumeStringSlice=function(A){for(var t="";0<A;){var e=Math.min(5e4,A);t+=EH.apply(void 0,this._value.splice(0,e)),A-=e}return this._value.shift(),t},S6.prototype.consumeStringToken=function(A){for(var t="",e=0;;){var r,n=this._value[e];if(-1===n||void 0===n||n===A)return{type:0,value:t+=this.consumeStringSlice(e)};if(10===n)return this._value.splice(0,e),y6;92===n&&-1!==(r=this._value[e+1])&&void 0!==r&&(10===r?(t+=this.consumeStringSlice(e),e=-1,this._value.shift()):YL(n,r)&&(t=(t+=this.consumeStringSlice(e))+EH(this.consumeEscapedCodePoint()),e=-1)),e++}},S6.prototype.consumeNumber=function(){var A=[],t=4;for(43!==(e=this.peekCodePoint(0))&&45!==e||A.push(this.consumeCodePoint());GL(this.peekCodePoint(0));)A.push(this.consumeCodePoint());var e=this.peekCodePoint(0),r=this.peekCodePoint(1);if(46===e&&GL(r))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;GL(this.peekCodePoint(0));)A.push(this.consumeCodePoint());e=this.peekCodePoint(0);var r=this.peekCodePoint(1),n=this.peekCodePoint(2);if((69===e||101===e)&&((43===r||45===r)&&GL(n)||GL(r)))for(A.push(this.consumeCodePoint(),this.consumeCodePoint()),t=8;GL(this.peekCodePoint(0));)A.push(this.consumeCodePoint());return[(A=>{for(var t=0,e=1,r=(43!==A[t]&&45!==A[t]||(45===A[t]&&(e=-1),t++),[]);GL(A[t]);)r.push(A[t++]);for(var n=r.length?parseInt(EH.apply(void 0,r),10):0,i=(46===A[t]&&t++,[]);GL(A[t]);)i.push(A[t++]);for(var s=i.length,o=s?parseInt(EH.apply(void 0,i),10):0,a=(69!==A[t]&&101!==A[t]||t++,1),c=(43!==A[t]&&45!==A[t]||(45===A[t]&&(a=-1),t++),[]);GL(A[t]);)c.push(A[t++]);var l=c.length?parseInt(EH.apply(void 0,c),10):0;return e*(n+o*Math.pow(10,-s))*Math.pow(10,a*l)})(A),t]},S6.prototype.consumeNumericToken=function(){var A=this.consumeNumber(),t=A[0],A=A[1],e=this.peekCodePoint(0),r=this.peekCodePoint(1),n=this.peekCodePoint(2);return qL(e,r,n)?{type:15,number:t,flags:A,unit:this.consumeName()}:37===e?(this.consumeCodePoint(),{type:16,number:t,flags:A}):{type:17,number:t,flags:A}},S6.prototype.consumeEscapedCodePoint=function(){var A,t=this.consumeCodePoint();if(jL(t)){for(var e=EH(t);jL(this.peekCodePoint(0))&&e.length<6;)e+=EH(this.consumeCodePoint());XL(this.peekCodePoint(0))&&this.consumeCodePoint();var r=parseInt(e,16);return 0===r||55296<=(A=r)&&A<=57343||1114111<r?65533:r}return-1===t?65533:t},S6.prototype.consumeName=function(){for(var A="";;){var t=this.consumeCodePoint();if(JL(t))A+=EH(t);else{if(!YL(t,this.peekCodePoint(0)))return this.reconsumeCodePoint(t),A;A+=EH(this.consumeEscapedCodePoint())}}},S6);function S6(){this._value=[]}_6.create=function(A){var t=new L6;return t.write(A),new _6(t.read())},_6.parseValue=function(A){return _6.create(A).parseComponentValue()},_6.parseValues=function(A){return _6.create(A).parseComponentValues()},_6.prototype.parseComponentValue=function(){for(var A=this.consumeToken();31===A.type;)A=this.consumeToken();if(32===A.type)throw new SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(A);for(var t=this.consumeComponentValue();31===(A=this.consumeToken()).type;);if(32===A.type)return t;throw new SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")},_6.prototype.parseComponentValues=function(){for(var A=[];;){var t=this.consumeComponentValue();if(32===t.type)return A;A.push(t),A.push()}},_6.prototype.consumeComponentValue=function(){var A=this.consumeToken();switch(A.type){case 11:case 28:case 2:return this.consumeSimpleBlock(A.type);case 19:return this.consumeFunction(A)}return A},_6.prototype.consumeSimpleBlock=function(A){for(var t={type:A,values:[]},e=this.consumeToken();;){if(32===e.type||Y6(e,A))return t;this.reconsumeToken(e),t.values.push(this.consumeComponentValue()),e=this.consumeToken()}},_6.prototype.consumeFunction=function(A){for(var t={name:A.value,values:[],type:18};;){var e=this.consumeToken();if(32===e.type||3===e.type)return t;this.reconsumeToken(e),t.values.push(this.consumeComponentValue())}},_6.prototype.consumeToken=function(){var A=this._tokens.shift();return void 0===A?H6:A},_6.prototype.reconsumeToken=function(A){this._tokens.unshift(A)};var N6=_6;function _6(A){this._tokens=A}function T6(A){return 17===A.type}function D6(A){return 0===A.type}function O6(A,t){return J6(A)&&A.value===t}function P6(A){return 31!==A.type}function M6(A){return 31!==A.type&&4!==A.type}function k6(A){var t=[],e=[];return A.forEach(function(A){if(4===A.type){if(0===e.length)throw new Error("Error parsing function args, zero tokens for arg");t.push(e),e=[]}else 31!==A.type&&e.push(A)}),e.length&&t.push(e),t}function K6(A){return 1<A.length?[A[0],A[1]]:[A[0]]}function R6(A){return 15===A.type&&(A.unit===rS||A.unit===nS||A.unit===iS||A.unit===sS)}function V6(A){switch(A.filter(J6).map(function(A){return A.value}).join(" ")){case"to bottom right":case"to right bottom":case"left top":case"top left":return[Z6,Z6];case"to top":case"bottom":return aS(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[Z6,AS];case"to right":case"left":return aS(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[AS,AS];case"to bottom":case"top":return aS(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[AS,Z6];case"to left":case"right":return aS(270)}return 0}function G6(A){var t=255&A,e=255&A>>8,r=255&A>>16,A=255&A>>24;return t<255?"rgba("+A+","+r+","+e+","+t/255+")":"rgb("+A+","+r+","+e+")"}function j6(A,t){var e;return 17===A.type?A.number:16===A.type?(e=3===t?1:255,3===t?A.number/100*e:Math.round(A.number/100*e)):0}function X6(A,t){var e,r;return 3===(t=t.filter(M6)).length?(r=(e=t.map(j6))[0],uS(r,e[1],e[2],1)):4===t.length?(r=(e=t.map(j6))[0],uS(r,e[1],e[2],e[3])):0}var W6=function(A){return 15===A.type},J6=function(A){return 20===A.type},Y6=function(A,t){return 11===t&&12===A.type||28===t&&29===A.type||2===t&&3===A.type},q6=function(A){return 17===A.type||15===A.type},z6=function(A){return 16===A.type||q6(A)},Z6={type:17,number:0,flags:4},$6={type:16,number:50,flags:4},AS={type:16,number:100,flags:4},tS=function(A,t,e){var r=A[0],A=A[1];return[eS(r,t),eS(void 0!==A?A:r,e)]},eS=function(A,t){if(16===A.type)return A.number/100*t;if(W6(A))switch(A.unit){case"rem":case"em":return 16*A.number;default:return A.number}return A.number},rS="deg",nS="grad",iS="rad",sS="turn",oS=function(A,t){if(15===t.type)switch(t.unit){case rS:return Math.PI*t.number/180;case nS:return Math.PI/200*t.number;case iS:return t.number;case sS:return 2*Math.PI*t.number}throw new Error("Unsupported angle type")},aS=function(A){return Math.PI*A/180},cS={name:"color",parse:function(A,t){if(18===t.type){var e=wS[t.name];if(void 0===e)throw new Error('Attempting to parse an unsupported color function "'+t.name+'"');return e(A,t.values)}if(5===t.type){var r,n,i,s;if(3===t.value.length)return r=t.value.substring(0,1),n=t.value.substring(1,2),i=t.value.substring(2,3),uS(parseInt(r+r,16),parseInt(n+n,16),parseInt(i+i,16),1);if(4===t.value.length)return r=t.value.substring(0,1),n=t.value.substring(1,2),i=t.value.substring(2,3),s=t.value.substring(3,4),uS(parseInt(r+r,16),parseInt(n+n,16),parseInt(i+i,16),parseInt(s+s,16)/255);if(6===t.value.length)return r=t.value.substring(0,2),n=t.value.substring(2,4),i=t.value.substring(4,6),uS(parseInt(r,16),parseInt(n,16),parseInt(i,16),1);if(8===t.value.length)return r=t.value.substring(0,2),n=t.value.substring(2,4),i=t.value.substring(4,6),s=t.value.substring(6,8),uS(parseInt(r,16),parseInt(n,16),parseInt(i,16),parseInt(s,16)/255)}if(20===t.type){e=CS[t.value.toUpperCase()];if(void 0!==e)return e}return CS.TRANSPARENT}},lS=function(A){return 0==(255&A)},uS=function(A,t,e,r){return(A<<24|t<<16|e<<8|Math.round(255*r)<<0)>>>0};function hS(A,t,e){return e<0&&(e+=1),1<=e&&--e,e<1/6?(t-A)*e*6+A:e<.5?t:e<2/3?6*(t-A)*(2/3-e)+A:A}function BS(A,t){var e,r=(t=t.filter(M6))[0],n=t[1],i=t[2],t=t[3],A=(17===r.type?aS(r.number):oS(A,r))/(2*Math.PI),r=z6(n)?n.number/100:0,n=z6(i)?i.number/100:0,i=void 0!==t&&z6(t)?eS(t,1):1;return 0==r?uS(255*n,255*n,255*n,1):(r=hS(n=2*n-(t=n<=.5?n*(1+r):n+r-n*r),t,A+1/3),e=hS(n,t,A),n=hS(n,t,A-1/3),uS(255*r,255*e,255*n,i))}function gS(A,t){return A=cS.parse(A,t[0]),(t=t[1])&&z6(t)?{color:A,stop:t}:{color:A,stop:null}}function fS(A,e){for(var t=A[0],r=A[A.length-1],n=(null===t.stop&&(t.stop=Z6),null===r.stop&&(r.stop=AS),[]),i=0,s=0;s<A.length;s++){var o=A[s].stop;null!==o?(o=eS(o,e),n.push(i<o?o:i),i=o):n.push(null)}for(var a=null,s=0;s<n.length;s++){var c=n[s];if(null===c)null===a&&(a=s);else if(null!==a){for(var l=s-a,u=(c-n[a-1])/(1+l),h=1;h<=l;h++)n[a+h-1]=u*h;a=null}}return A.map(function(A,t){return{color:A.color,stop:Math.max(Math.min(1,n[t]/e),0)}})}function dS(e,A){var r=aS(180),n=[];return k6(A).forEach(function(A,t){if(0===t){t=A[0];if(20===t.type&&-1!==["top","left","right","bottom"].indexOf(t.value))return void(r=V6(A));if(R6(t))return void(r=(oS(e,t)+aS(270))%aS(360))}t=gS(e,A);n.push(t)}),{angle:r,stops:n,type:1}}function pS(r,A){var n=0,i=3,s=[],o=[];return k6(A).forEach(function(A,t){var e=!0;0===t?e=A.reduce(function(A,t){if(J6(t))switch(t.value){case"center":return o.push($6),!1;case"top":case"left":return o.push(Z6),!1;case"right":case"bottom":return o.push(AS),!1}else if(z6(t)||q6(t))return o.push(t),!1;return A},e):1===t&&(e=A.reduce(function(A,t){if(J6(t))switch(t.value){case"circle":return n=0,!1;case HS:return!(n=1);case LS:case vS:return i=0,!1;case ES:return!(i=1);case xS:return!(i=2);case"cover":case IS:return!(i=3)}else if(q6(t)||z6(t))return(i=Array.isArray(i)?i:[]).push(t),!1;return A},e)),e&&(t=gS(r,A),s.push(t))}),{size:i,shape:n,stops:s,position:o,type:2}}var wS={hsl:BS,hsla:BS,rgb:X6,rgba:X6},mS=function(A,t){return cS.parse(A,N6.create(t).parseComponentValue())},CS={ALICEBLUE:4042850303,ANTIQUEWHITE:4209760255,AQUA:16777215,AQUAMARINE:2147472639,AZURE:4043309055,BEIGE:4126530815,BISQUE:4293182719,BLACK:255,BLANCHEDALMOND:4293643775,BLUE:65535,BLUEVIOLET:2318131967,BROWN:2771004159,BURLYWOOD:3736635391,CADETBLUE:1604231423,CHARTREUSE:2147418367,CHOCOLATE:3530104575,CORAL:4286533887,CORNFLOWERBLUE:1687547391,CORNSILK:4294499583,CRIMSON:3692313855,CYAN:16777215,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:3095837695,DARKGRAY:2846468607,DARKGREEN:6553855,DARKGREY:2846468607,DARKKHAKI:3182914559,DARKMAGENTA:2332068863,DARKOLIVEGREEN:1433087999,DARKORANGE:4287365375,DARKORCHID:2570243327,DARKRED:2332033279,DARKSALMON:3918953215,DARKSEAGREEN:2411499519,DARKSLATEBLUE:1211993087,DARKSLATEGRAY:793726975,DARKSLATEGREY:793726975,DARKTURQUOISE:13554175,DARKVIOLET:2483082239,DEEPPINK:4279538687,DEEPSKYBLUE:12582911,DIMGRAY:1768516095,DIMGREY:1768516095,DODGERBLUE:512819199,FIREBRICK:2988581631,FLORALWHITE:4294635775,FORESTGREEN:579543807,FUCHSIA:4278255615,GAINSBORO:3705462015,GHOSTWHITE:4177068031,GOLD:4292280575,GOLDENROD:3668254975,GRAY:2155905279,GREEN:8388863,GREENYELLOW:2919182335,GREY:2155905279,HONEYDEW:4043305215,HOTPINK:4285117695,INDIANRED:3445382399,INDIGO:1258324735,IVORY:4294963455,KHAKI:4041641215,LAVENDER:3873897215,LAVENDERBLUSH:4293981695,LAWNGREEN:2096890111,LEMONCHIFFON:4294626815,LIGHTBLUE:2916673279,LIGHTCORAL:4034953471,LIGHTCYAN:3774873599,LIGHTGOLDENRODYELLOW:4210742015,LIGHTGRAY:3553874943,LIGHTGREEN:2431553791,LIGHTGREY:3553874943,LIGHTPINK:4290167295,LIGHTSALMON:4288707327,LIGHTSEAGREEN:548580095,LIGHTSKYBLUE:2278488831,LIGHTSLATEGRAY:2005441023,LIGHTSLATEGREY:2005441023,LIGHTSTEELBLUE:2965692159,LIGHTYELLOW:4294959359,LIME:16711935,LIMEGREEN:852308735,LINEN:4210091775,MAGENTA:4278255615,MAROON:2147483903,MEDIUMAQUAMARINE:1724754687,MEDIUMBLUE:52735,MEDIUMORCHID:3126187007,MEDIUMPURPLE:2473647103,MEDIUMSEAGREEN:1018393087,MEDIUMSLATEBLUE:2070474495,MEDIUMSPRINGGREEN:16423679,MEDIUMTURQUOISE:1221709055,MEDIUMVIOLETRED:3340076543,MIDNIGHTBLUE:421097727,MINTCREAM:4127193855,MISTYROSE:4293190143,MOCCASIN:4293178879,NAVAJOWHITE:4292783615,NAVY:33023,OLDLACE:4260751103,OLIVE:2155872511,OLIVEDRAB:1804477439,ORANGE:4289003775,ORANGERED:4282712319,ORCHID:3664828159,PALEGOLDENROD:4008225535,PALEGREEN:2566625535,PALETURQUOISE:2951671551,PALEVIOLETRED:3681588223,PAPAYAWHIP:4293907967,PEACHPUFF:4292524543,PERU:3448061951,PINK:4290825215,PLUM:3718307327,POWDERBLUE:2967529215,PURPLE:2147516671,REBECCAPURPLE:1714657791,RED:4278190335,ROSYBROWN:3163525119,ROYALBLUE:1097458175,SADDLEBROWN:2336560127,SALMON:4202722047,SANDYBROWN:4104413439,SEAGREEN:780883967,SEASHELL:4294307583,SIENNA:2689740287,SILVER:3233857791,SKYBLUE:2278484991,SLATEBLUE:1784335871,SLATEGRAY:1887473919,SLATEGREY:1887473919,SNOW:4294638335,SPRINGGREEN:16744447,STEELBLUE:1182971135,TAN:3535047935,TEAL:8421631,THISTLE:3636451583,TOMATO:4284696575,TRANSPARENT:0,TURQUOISE:1088475391,VIOLET:4001558271,WHEAT:4125012991,WHITE:4294967295,WHITESMOKE:4126537215,YELLOW:4294902015,YELLOWGREEN:2597139199},QS={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:function(A,t){return t.map(function(A){if(J6(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},yS={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},FS=function(A,t,e){var r=t/2,n=e/2,t=eS(A[0],t)-r,r=n-eS(A[1],e);return(Math.atan2(r,t)+2*Math.PI)%(2*Math.PI)},US=function(A,t){return Math.sqrt(A*A+t*t)},bS=function(A,t,r,n,i){return[[0,0],[0,t],[A,0],[A,t]].reduce(function(A,t){var e=t[0],e=US(r-e,n-t[1]);return(i?e<A.optimumDistance:e>A.optimumDistance)?{optimumCorner:t,optimumDistance:e}:A},{optimumDistance:i?1/0:-1/0,optimumCorner:null}).optimumCorner},vS="closest-side",ES="farthest-side",xS="closest-corner",IS="farthest-corner",HS="ellipse",LS="contain",SS=function(A,t){if(22===t.type)return e={url:t.value,type:0},A.cache.addImage(t.value),e;if(18!==t.type)throw new Error("Unsupported image type "+t.type);var e=GS[t.name];if(void 0===e)throw new Error('Attempting to parse an unsupported image function "'+t.name+'"');return e(A,t.values)};function NS(A){return{name:"border-"+A+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}}function _S(A){return{name:"border-radius-"+A,initialValue:"0 0",prefix:!1,type:1,parse:function(A,t){return K6(t.filter(z6))}}}function TS(A){return{name:"border-"+A+"-style",initialValue:"solid",prefix:!1,type:2,parse:function(A,t){switch(t){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}}function DS(A){return{name:"border-"+A+"-width",initialValue:"0",type:0,prefix:!1,parse:function(A,t){return W6(t)?t.number:0}}}function OS(A,t){return J6(A)&&"normal"===A.value?1.2*t:17===A.type?t*A.number:z6(A)?eS(A,t):t}function PS(A){return{name:"margin-"+A,initialValue:"0",prefix:!1,type:4}}function MS(A){return{name:"padding-"+A,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}}function kS(A,t,e){return A&&(t=A[Math.min(t,A.length-1)])?e?t.open:t.close:""}var KS,RS,VS,GS={"linear-gradient":function(e,A){var r=aS(180),n=[];return k6(A).forEach(function(A,t){if(0===t){t=A[0];if(20===t.type&&"to"===t.value)return void(r=V6(A));if(R6(t))return void(r=oS(e,t))}t=gS(e,A);n.push(t)}),{angle:r,stops:n,type:1}},"-moz-linear-gradient":dS,"-ms-linear-gradient":dS,"-o-linear-gradient":dS,"-webkit-linear-gradient":dS,"radial-gradient":function(n,A){var i=0,s=3,o=[],a=[];return k6(A).forEach(function(A,t){var e,r=!0;0===t&&(e=!1,r=A.reduce(function(A,t){if(e)if(J6(t))switch(t.value){case"center":return a.push($6),A;case"top":case"left":return a.push(Z6),A;case"right":case"bottom":return a.push(AS),A}else(z6(t)||q6(t))&&a.push(t);else if(J6(t))switch(t.value){case"circle":return i=0,!1;case HS:return!(i=1);case"at":return!(e=!0);case vS:return s=0,!1;case"cover":case ES:return!(s=1);case LS:case xS:return!(s=2);case IS:return!(s=3)}else if(q6(t)||z6(t))return(s=Array.isArray(s)?s:[]).push(t),!1;return A},r)),r&&(t=gS(n,A),o.push(t))}),{size:s,shape:i,stops:o,position:a,type:2}},"-moz-radial-gradient":pS,"-ms-radial-gradient":pS,"-o-radial-gradient":pS,"-webkit-radial-gradient":pS,"-webkit-gradient":function(r,A){var t=aS(180),n=[],i=1;return k6(A).forEach(function(A,t){var e,A=A[0];if(0===t){if(J6(A)&&"linear"===A.value)return void(i=1);if(J6(A)&&"radial"===A.value)return void(i=2)}18===A.type&&("from"===A.name?(e=cS.parse(r,A.values[0]),n.push({stop:Z6,color:e})):"to"===A.name?(e=cS.parse(r,A.values[0]),n.push({stop:AS,color:e})):"color-stop"===A.name&&2===(t=A.values.filter(M6)).length&&(e=cS.parse(r,t[1]),A=t[0],T6(A))&&n.push({stop:{type:16,number:100*A.number,flags:A.flags},color:e}))}),1===i?{angle:(t+aS(180))%aS(360),stops:n,type:i}:{size:3,shape:0,stops:n,position:[],type:i}}},jS={name:"background-image",initialValue:"none",type:1,prefix:!1,parse:function(t,A){var e;return 0===A.length||20===(e=A[0]).type&&"none"===e.value?[]:A.filter(function(A){return M6(A)&&!(20===(A=A).type&&"none"===A.value||18===A.type&&!GS[A.name])}).map(function(A){return SS(t,A)})}},XS={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(A,t){return t.map(function(A){if(J6(A))switch(A.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},WS={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(A,t){return k6(t).map(function(A){return A.filter(z6)}).map(K6)}},JS={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(A,t){return k6(t).map(function(A){return A.filter(J6).map(function(A){return A.value}).join(" ")}).map(YS)}},YS=function(A){switch(A){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;default:return 0}},qS=((A=KS=KS||{}).AUTO="auto",A.CONTAIN="contain",{name:"background-size",initialValue:"0",prefix:!(A.COVER="cover"),type:1,parse:function(A,t){return k6(t).map(function(A){return A.filter(zS)})}}),zS=function(A){return J6(A)||z6(A)},ZS=NS("top"),$S=NS("right"),A8=NS("bottom"),t8=NS("left"),e8=_S("top-left"),r8=_S("top-right"),n8=_S("bottom-right"),i8=_S("bottom-left"),s8=TS("top"),o8=TS("right"),a8=TS("bottom"),c8=TS("left"),l8=DS("top"),u8=DS("right"),h8=DS("bottom"),B8=DS("left"),g8={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},f8={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(A,t){return"rtl"!==t?0:1}},d8={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(A,t){return t.filter(J6).reduce(function(A,t){return A|p8(t.value)},0)}},p8=function(A){switch(A){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 16777216;case"inline-block":return 33554432;case"inline-list-item":return 67108864;case"inline-table":return 134217728;case"inline-flex":return 268435456;case"inline-grid":return 536870912}return 0},w8={name:"float",initialValue:"none",prefix:!1,type:2,parse:function(A,t){switch(t){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},m8={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:function(A,t){return!(20===t.type&&"normal"===t.value||17!==t.type&&15!==t.type)?t.number:0}},C8={name:"line-break",initialValue:(Y2=RS=RS||{}).NORMAL="normal",prefix:!(Y2.STRICT="strict"),type:2,parse:function(A,t){return"strict"!==t?RS.NORMAL:RS.STRICT}},Q8={name:"line-height",initialValue:"normal",prefix:!1,type:4},y8={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(A,t){return 20===t.type&&"none"===t.value?null:SS(A,t)}},F8={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(A,t){return"inside"!==t?1:0}},U8={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:function(A,t){switch(t){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":case"hebrew":return 22;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;default:return-1}}},b8=PS("top"),v8=PS("right"),E8=PS("bottom"),x8=PS("left"),I8={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(A,t){return t.filter(J6).map(function(A){switch(A.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;default:return 0}})}},H8={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:function(A,t){return"break-word"!==t?"normal":"break-word"}},L8=MS("top"),S8=MS("right"),N8=MS("bottom"),_8=MS("left"),T8={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:function(A,t){switch(t){case"right":return 2;case"center":case"justify":return 1;default:return 0}}},D8={name:"position",initialValue:"static",prefix:!1,type:2,parse:function(A,t){switch(t){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},O8={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(i,A){return 1===A.length&&O6(A[0],"none")?[]:k6(A).map(function(A){for(var t={color:CS.TRANSPARENT,offsetX:Z6,offsetY:Z6,blur:Z6},e=0,r=0;r<A.length;r++){var n=A[r];q6(n)?(0===e?t.offsetX=n:1===e?t.offsetY=n:t.blur=n,e++):t.color=cS.parse(i,n)}return t})}},P8={name:"text-transform",initialValue:"none",prefix:!1,type:2,parse:function(A,t){switch(t){case"uppercase":return 2;case"lowercase":return 1;case"capitalize":return 3}return 0}},M8={name:"transform",initialValue:"none",prefix:!0,type:0,parse:function(A,t){if(20===t.type&&"none"===t.value)return null;if(18!==t.type)return null;var e=k8[t.name];if(void 0===e)throw new Error('Attempting to parse an unsupported transform function "'+t.name+'"');return e(t.values)}},k8={matrix:function(A){A=A.filter(function(A){return 17===A.type}).map(function(A){return A.number});return 6===A.length?A:null},matrix3d:function(A){var A=A.filter(function(A){return 17===A.type}).map(function(A){return A.number}),t=A[0];return 16===A.length?[t,A[1],A[4],A[5],A[12],A[13]]:null}},C0={type:16,number:50,flags:4},K8=[C0,C0],R8={name:"transform-origin",initialValue:"50% 50%",prefix:!0,type:1,parse:function(A,t){t=t.filter(z6);return 2!==t.length?K8:[t[0],t[1]]}},V8={name:"visible",initialValue:"none",prefix:!1,type:2,parse:function(A,t){switch(t){case"hidden":return 1;case"collapse":return 2;default:return 0}}},G8=((My=VS=VS||{}).NORMAL="normal",My.BREAK_ALL="break-all",{name:"word-break",initialValue:"normal",prefix:!(My.KEEP_ALL="keep-all"),type:2,parse:function(A,t){switch(t){case"break-all":return VS.BREAK_ALL;case"keep-all":return VS.KEEP_ALL;default:return VS.NORMAL}}}),j8={name:"z-index",initialValue:"auto",prefix:!1,type:0,parse:function(A,t){if(20===t.type)return{auto:!0,order:0};if(T6(t))return{auto:!1,order:t.number};throw new Error("Invalid z-index number parsed")}},X8=function(A,t){if(15===t.type)switch(t.unit.toLowerCase()){case"s":return 1e3*t.number;case"ms":return t.number}throw new Error("Unsupported time type")},W8={name:"opacity",initialValue:"1",type:0,prefix:!1,parse:function(A,t){return T6(t)?t.number:1}},J8={name:"text-decoration-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},Y8={name:"text-decoration-line",initialValue:"none",prefix:!1,type:1,parse:function(A,t){return t.filter(J6).map(function(A){switch(A.value){case"underline":return 1;case"overline":return 2;case"line-through":return 3;case"none":return 4}return 0}).filter(function(A){return 0!==A})}},q8={name:"font-family",initialValue:"",prefix:!1,type:1,parse:function(A,t){var e=[],r=[];return t.forEach(function(A){switch(A.type){case 20:case 0:e.push(A.value);break;case 17:e.push(A.number.toString());break;case 4:r.push(e.join(" ")),e.length=0}}),e.length&&r.push(e.join(" ")),r.map(function(A){return-1===A.indexOf(" ")?A:"'"+A+"'"})}},z8={name:"font-size",initialValue:"0",prefix:!1,type:3,format:"length"},Z8={name:"font-weight",initialValue:"normal",type:0,prefix:!1,parse:function(A,t){return T6(t)?t.number:!J6(t)||"bold"!==t.value?400:700}},$8={name:"font-variant",initialValue:"none",type:1,prefix:!1,parse:function(A,t){return t.filter(J6).map(function(A){return A.value})}},AN={name:"font-style",initialValue:"normal",prefix:!1,type:2,parse:function(A,t){switch(t){case"oblique":return"oblique";case"italic":return"italic";default:return"normal"}}},tN=function(A,t){return 0!=(A&t)},eN={name:"content",initialValue:"none",type:1,prefix:!1,parse:function(A,t){var e;return 0===t.length||20===(e=t[0]).type&&"none"===e.value?[]:t}},rN={name:"counter-increment",initialValue:"none",prefix:!0,type:1,parse:function(A,t){if(0===t.length)return null;var e=t[0];if(20===e.type&&"none"===e.value)return null;for(var r=[],n=t.filter(P6),i=0;i<n.length;i++){var s=n[i],o=n[i+1];20===s.type&&(o=o&&T6(o)?o.number:1,r.push({counter:s.value,increment:o}))}return r}},nN={name:"counter-reset",initialValue:"none",prefix:!0,type:1,parse:function(A,t){if(0===t.length)return[];for(var e=[],r=t.filter(P6),n=0;n<r.length;n++){var i=r[n],s=r[n+1];J6(i)&&"none"!==i.value&&(s=s&&T6(s)?s.number:0,e.push({counter:i.value,reset:s}))}return e}},iN={name:"duration",initialValue:"0s",prefix:!1,type:1,parse:function(t,A){return A.filter(W6).map(function(A){return X8(t,A)})}},sN={name:"quotes",initialValue:"none",prefix:!0,type:1,parse:function(A,t){if(0===t.length)return null;var e=t[0];if(20===e.type&&"none"===e.value)return null;var r=[],n=t.filter(D6);if(n.length%2!=0)return null;for(var i=0;i<n.length;i+=2){var s=n[i].value,o=n[i+1].value;r.push({open:s,close:o})}return r}},oN={name:"box-shadow",initialValue:"none",type:1,prefix:!1,parse:function(i,A){return 1===A.length&&O6(A[0],"none")?[]:k6(A).map(function(A){for(var t={color:255,offsetX:Z6,offsetY:Z6,blur:Z6,spread:Z6,inset:!1},e=0,r=0;r<A.length;r++){var n=A[r];O6(n,"inset")?t.inset=!0:q6(n)?(0===e?t.offsetX=n:1===e?t.offsetY=n:2===e?t.blur=n:t.spread=n,e++):t.color=cS.parse(i,n)}return t})}},aN={name:"paint-order",initialValue:"normal",prefix:!1,type:1,parse:function(A,t){var e=[];return t.filter(J6).forEach(function(A){switch(A.value){case"stroke":e.push(1);break;case"fill":e.push(0);break;case"markers":e.push(2)}}),[0,1,2].forEach(function(A){-1===e.indexOf(A)&&e.push(A)}),e}},cN={name:"-webkit-text-stroke-color",initialValue:"currentcolor",prefix:!1,type:3,format:"color"},lN={name:"-webkit-text-stroke-width",initialValue:"0",type:0,prefix:!1,parse:function(A,t){return W6(t)?t.number:0}},uN=(hN.prototype.isVisible=function(){return 0<this.display&&0<this.opacity&&0===this.visibility},hN.prototype.isTransparent=function(){return lS(this.backgroundColor)},hN.prototype.isTransformed=function(){return null!==this.transform},hN.prototype.isPositioned=function(){return 0!==this.position},hN.prototype.isPositionedWithZIndex=function(){return this.isPositioned()&&!this.zIndex.auto},hN.prototype.isFloating=function(){return 0!==this.float},hN.prototype.isInlineLevel=function(){return tN(this.display,4)||tN(this.display,33554432)||tN(this.display,268435456)||tN(this.display,536870912)||tN(this.display,67108864)||tN(this.display,134217728)},hN);function hN(A,t){this.animationDuration=v(A,iN,t.animationDuration),this.backgroundClip=v(A,QS,t.backgroundClip),this.backgroundColor=v(A,yS,t.backgroundColor),this.backgroundImage=v(A,jS,t.backgroundImage),this.backgroundOrigin=v(A,XS,t.backgroundOrigin),this.backgroundPosition=v(A,WS,t.backgroundPosition),this.backgroundRepeat=v(A,JS,t.backgroundRepeat),this.backgroundSize=v(A,qS,t.backgroundSize),this.borderTopColor=v(A,ZS,t.borderTopColor),this.borderRightColor=v(A,$S,t.borderRightColor),this.borderBottomColor=v(A,A8,t.borderBottomColor),this.borderLeftColor=v(A,t8,t.borderLeftColor),this.borderTopLeftRadius=v(A,e8,t.borderTopLeftRadius),this.borderTopRightRadius=v(A,r8,t.borderTopRightRadius),this.borderBottomRightRadius=v(A,n8,t.borderBottomRightRadius),this.borderBottomLeftRadius=v(A,i8,t.borderBottomLeftRadius),this.borderTopStyle=v(A,s8,t.borderTopStyle),this.borderRightStyle=v(A,o8,t.borderRightStyle),this.borderBottomStyle=v(A,a8,t.borderBottomStyle),this.borderLeftStyle=v(A,c8,t.borderLeftStyle),this.borderTopWidth=v(A,l8,t.borderTopWidth),this.borderRightWidth=v(A,u8,t.borderRightWidth),this.borderBottomWidth=v(A,h8,t.borderBottomWidth),this.borderLeftWidth=v(A,B8,t.borderLeftWidth),this.boxShadow=v(A,oN,t.boxShadow),this.color=v(A,g8,t.color),this.direction=v(A,f8,t.direction),this.display=v(A,d8,t.display),this.float=v(A,w8,t.cssFloat),this.fontFamily=v(A,q8,t.fontFamily),this.fontSize=v(A,z8,t.fontSize),this.fontStyle=v(A,AN,t.fontStyle),this.fontVariant=v(A,$8,t.fontVariant),this.fontWeight=v(A,Z8,t.fontWeight),this.letterSpacing=v(A,m8,t.letterSpacing),this.lineBreak=v(A,C8,t.lineBreak),this.lineHeight=v(A,Q8,t.lineHeight),this.listStyleImage=v(A,y8,t.listStyleImage),this.listStylePosition=v(A,F8,t.listStylePosition),this.listStyleType=v(A,U8,t.listStyleType),this.marginTop=v(A,b8,t.marginTop),this.marginRight=v(A,v8,t.marginRight),this.marginBottom=v(A,E8,t.marginBottom),this.marginLeft=v(A,x8,t.marginLeft),this.opacity=v(A,W8,t.opacity);var e=v(A,I8,t.overflow);this.overflowX=e[0],this.overflowY=e[1<e.length?1:0],this.overflowWrap=v(A,H8,t.overflowWrap),this.paddingTop=v(A,L8,t.paddingTop),this.paddingRight=v(A,S8,t.paddingRight),this.paddingBottom=v(A,N8,t.paddingBottom),this.paddingLeft=v(A,_8,t.paddingLeft),this.paintOrder=v(A,aN,t.paintOrder),this.position=v(A,D8,t.position),this.textAlign=v(A,T8,t.textAlign),this.textDecorationColor=v(A,J8,null!=(e=t.textDecorationColor)?e:t.color),this.textDecorationLine=v(A,Y8,null!=(e=t.textDecorationLine)?e:t.textDecoration),this.textShadow=v(A,O8,t.textShadow),this.textTransform=v(A,P8,t.textTransform),this.transform=v(A,M8,t.transform),this.transformOrigin=v(A,R8,t.transformOrigin),this.visibility=v(A,V8,t.visibility),this.webkitTextStrokeColor=v(A,cN,t.webkitTextStrokeColor),this.webkitTextStrokeWidth=v(A,lN,t.webkitTextStrokeWidth),this.wordBreak=v(A,G8,t.wordBreak),this.zIndex=v(A,j8,t.zIndex)}for(var BN=function(A,t){this.content=v(A,eN,t.content),this.quotes=v(A,sN,t.quotes)},gN=function(A,t){this.counterIncrement=v(A,rN,t.counterIncrement),this.counterReset=v(A,nN,t.counterReset)},v=function(A,t,e){var r=new L6,e=null!=e?e.toString():t.initialValue,n=(r.write(e),new N6(r.read()));switch(t.type){case 2:var i=n.parseComponentValue();return t.parse(A,J6(i)?i.value:t.initialValue);case 0:return t.parse(A,n.parseComponentValue());case 1:return t.parse(A,n.parseComponentValues());case 4:return n.parseComponentValue();case 3:switch(t.format){case"angle":return oS(A,n.parseComponentValue());case"color":return cS.parse(A,n.parseComponentValue());case"image":return SS(A,n.parseComponentValue());case"length":var s=n.parseComponentValue();return q6(s)?s:Z6;case"length-percentage":s=n.parseComponentValue();return z6(s)?s:Z6;case"time":return X8(A,n.parseComponentValue())}}},fN="data-html2canvas-debug",dN=function(A){switch(A.getAttribute(fN)){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}},pN=function(A,t){A=dN(A);return 1===A||t===A},wN=function(A,t){this.context=A,this.textNodes=[],this.elements=[],this.flags=0,pN(t,3),this.styles=new uN(A,window.getComputedStyle(t,null)),eT(t)&&(this.styles.animationDuration.some(function(A){return 0<A})&&(t.style.animationDuration="0s"),null!==this.styles.transform)&&(t.style.transform="none"),this.bounds=UH(this.context,t),pN(t,4)&&(this.flags|=16)},mN="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",CN="undefined"==typeof Uint8Array?[]:new Uint8Array(256),QN=0;QN<mN.length;QN++)CN[mN.charCodeAt(QN)]=QN;function yN(A,t,e){return A.slice?A.slice(t,e):new Uint16Array(Array.prototype.slice.call(A,t,e))}FN.prototype.get=function(A){var t;if(0<=A){if(A<55296||56319<A&&A<=65535)return t=this.index[A>>5],this.data[t=(t<<2)+(31&A)];if(A<=65535)return t=this.index[2048+(A-55296>>5)],this.data[t=(t<<2)+(31&A)];if(A<this.highStart)return t=this.index[t=2080+(A>>11)],t=this.index[t+=A>>5&63],this.data[t=(t<<2)+(31&A)];if(A<=1114111)return this.data[this.highValueIndex]}return this.errorValue};w=FN;function FN(A,t,e,r,n,i){this.initialValue=A,this.errorValue=t,this.highStart=e,this.highValueIndex=r,this.index=n,this.data=i}for(var UN="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",bN="undefined"==typeof Uint8Array?[]:new Uint8Array(256),vN=0;vN<UN.length;vN++)bN[UN.charCodeAt(vN)]=vN;function EN(A){for(var t,e=$N(A),r=[];!(t=e.next()).done;)t.value&&r.push(t.value.slice());return r}function xN(A){return 0===A[0]&&255===A[1]&&0===A[2]&&255===A[3]}function IN(A,t,e,r,n){var i="http://www.w3.org/2000/svg",s=document.createElementNS(i,"svg"),i=document.createElementNS(i,"foreignObject");return s.setAttributeNS(null,"width",A.toString()),s.setAttributeNS(null,"height",t.toString()),i.setAttributeNS(null,"width","100%"),i.setAttributeNS(null,"height","100%"),i.setAttributeNS(null,"x",e.toString()),i.setAttributeNS(null,"y",r.toString()),i.setAttributeNS(null,"externalResourcesRequired","true"),s.appendChild(i),i.appendChild(n),s}function HN(r){return new Promise(function(A,t){var e=new Image;e.onload=function(){return A(e)},e.onerror=t,e.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent((new XMLSerializer).serializeToString(r))})}var LN,SN=1,NN=2,_N=3,TN=4,DN=5,ON=7,PN=8,MN=9,kN=10,KN=11,RN=12,VN=13,GN=14,jN=15,XN=function(A){for(var t=[],e=0,r=A.length;e<r;){var n,i=A.charCodeAt(e++);55296<=i&&i<=56319&&e<r?56320==(64512&(n=A.charCodeAt(e++)))?t.push(((1023&i)<<10)+(1023&n)+65536):(t.push(i),e--):t.push(i)}return t},WN=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];if(String.fromCodePoint)return String.fromCodePoint.apply(String,A);var e=A.length;if(!e)return"";for(var r=[],n=-1,i="";++n<e;){var s=A[n];s<=65535?r.push(s):r.push(55296+((s-=65536)>>10),s%1024+56320),(n+1===e||16384<r.length)&&(i+=String.fromCharCode.apply(String,r),r.length=0)}return i},JN=(l=(A=>{for(var t,e,r,n,i=.75*A.length,s=A.length,o=0,i=("="===A[A.length-1]&&(i--,"="===A[A.length-2])&&i--,new("undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?ArrayBuffer:Array)(i)),a=Array.isArray(i)?i:new Uint8Array(i),c=0;c<s;c+=4)t=CN[A.charCodeAt(c)],e=CN[A.charCodeAt(c+1)],r=CN[A.charCodeAt(c+2)],n=CN[A.charCodeAt(c+3)],a[o++]=t<<2|e>>4,a[o++]=(15&e)<<4|r>>2,a[o++]=(3&r)<<6|63&n;return i})(l="AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA="),tF=Array.isArray(l)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=4)e.push(A[r+3]<<24|A[r+2]<<16|A[r+1]<<8|A[r]);return e})(l):new Uint32Array(l),l=Array.isArray(l)?(A=>{for(var t=A.length,e=[],r=0;r<t;r+=2)e.push(A[r+1]<<8|A[r]);return e})(l):new Uint16Array(l),f=yN(l,12,tF[4]/2),l=2===tF[5]?yN(l,(24+tF[4])/2):(l=tF,$2=Math.ceil((24+tF[4])/4),l.slice?l.slice($2,fM):new Uint32Array(Array.prototype.slice.call(l,$2,fM))),new w(tF[0],tF[1],tF[2],tF[3],f,l)),YN="×",qN="÷",zN=function(A){return JN.get(A)},ZN=function(A,t,e){var r=e-2,n=t[r],i=t[e-1],e=t[e];if(i===NN&&e===_N)return YN;if(i!==NN&&i!==_N&&i!==TN&&e!==NN&&e!==_N&&e!==TN){if(i===PN&&-1!==[PN,MN,KN,RN].indexOf(e))return YN;if(!(i!==KN&&i!==MN||e!==MN&&e!==kN))return YN;if((i===RN||i===kN)&&e===kN)return YN;if(e===VN||e===DN)return YN;if(e===ON)return YN;if(i===SN)return YN;if(i===VN&&e===GN){for(;n===DN;)n=t[--r];if(n===GN)return YN}if(i===jN&&e===jN){for(var s=0;n===jN;)s++,n=t[--r];if(s%2==0)return YN}}return qN},$N=function(A){var e=XN(A),r=e.length,n=0,i=0,s=e.map(zN);return{next:function(){if(r<=n)return{done:!0,value:null};for(var A,t=YN;n<r&&(t=ZN(e,s,++n))===YN;);return t!==YN||n===r?(A=WN.apply(null,e.slice(i,n)),i=n,{value:A,done:!1}):{done:!0,value:null}}}},A_={get SUPPORT_RANGE_BOUNDS(){var A=(A=>{if(A.createRange){var t=A.createRange();if(t.getBoundingClientRect){var e=A.createElement("boundtest"),t=(e.style.height="123px",e.style.display="block",A.body.appendChild(e),t.selectNode(e),t.getBoundingClientRect()),t=Math.round(t.height);if(A.body.removeChild(e),123===t)return!0}}return!1})(document);return Object.defineProperty(A_,"SUPPORT_RANGE_BOUNDS",{value:A}),A},get SUPPORT_WORD_BREAKING(){var A,r,n,t,i,s,e=A_.SUPPORT_RANGE_BOUNDS&&(e=document,(A=e.createElement("boundtest")).style.width="50px",A.style.display="block",A.style.fontSize="12px",A.style.letterSpacing="0px",A.style.wordSpacing="0px",e.body.appendChild(A),r=e.createRange(),A.innerHTML="function"==typeof"".repeat?"👨".repeat(10):"",n=A.firstChild,t=vH(n.data).map(function(A){return EH(A)}),i=0,s={},t=t.every(function(A,t){r.setStart(n,i),r.setEnd(n,i+A.length);var e=r.getBoundingClientRect(),A=(i+=A.length,e.x>s.x||e.y>s.y);return s=e,0===t||A}),e.body.removeChild(A),t);return Object.defineProperty(A_,"SUPPORT_WORD_BREAKING",{value:e}),e},get SUPPORT_SVG_DRAWING(){var A=(A=>{var t=new Image,e=(A=A.createElement("canvas")).getContext("2d");if(!e)return!1;t.src="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>";try{e.drawImage(t,0,0),A.toDataURL()}catch(A){return!1}return!0})(document);return Object.defineProperty(A_,"SUPPORT_SVG_DRAWING",{value:A}),A},get SUPPORT_FOREIGNOBJECT_DRAWING(){var A="function"==typeof Array.from&&"function"==typeof window.fetch?(e=>{(t=e.createElement("canvas")).width=100,t.height=100;var r=t.getContext("2d");if(!r)return Promise.reject(!1);r.fillStyle="rgb(0, 255, 0)",r.fillRect(0,0,100,100);var A=new Image,n=t.toDataURL(),t=(A.src=n,IN(100,100,0,0,A));return r.fillStyle="red",r.fillRect(0,0,100,100),HN(t).then(function(A){r.drawImage(A,0,0);var A=r.getImageData(0,0,100,100).data,t=(r.fillStyle="red",r.fillRect(0,0,100,100),e.createElement("div"));return t.style.backgroundImage="url("+n+")",t.style.height="100px",xN(A)?HN(IN(100,100,0,0,t)):Promise.reject(!1)}).then(function(A){return r.drawImage(A,0,0),xN(r.getImageData(0,0,100,100).data)}).catch(function(){return!1})})(document):Promise.resolve(!1);return Object.defineProperty(A_,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:A}),A},get SUPPORT_CORS_IMAGES(){var A=void 0!==(new Image).crossOrigin;return Object.defineProperty(A_,"SUPPORT_CORS_IMAGES",{value:A}),A},get SUPPORT_RESPONSE_TYPE(){var A="string"==typeof(new XMLHttpRequest).responseType;return Object.defineProperty(A_,"SUPPORT_RESPONSE_TYPE",{value:A}),A},get SUPPORT_CORS_XHR(){var A="withCredentials"in new XMLHttpRequest;return Object.defineProperty(A_,"SUPPORT_CORS_XHR",{value:A}),A},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var A=!("undefined"==typeof Intl||!Intl.Segmenter);return Object.defineProperty(A_,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:A}),A}},t_=function(A,t){this.text=A,this.bounds=t},e_=function(A,t){var e=t.ownerDocument;if(e){var e=e.createElement("html2canvaswrapper"),r=(e.appendChild(t.cloneNode(!0)),t.parentNode);if(r)return r.replaceChild(e,t),t=UH(A,e),e.firstChild&&r.replaceChild(e.firstChild,e),t}return yH.EMPTY},r_=function(A,t,e){var r=A.ownerDocument;if(r)return(r=r.createRange()).setStart(A,t),r.setEnd(A,t+e),r;throw new Error("Node has no owner document")},n_=function(A){var t;return A_.SUPPORT_NATIVE_TEXT_SEGMENTATION?(t=new Intl.Segmenter(void 0,{granularity:"grapheme"}),Array.from(t.segment(A)).map(function(A){return A.segment})):EN(A)},i_=function(A,t){var e;return A_.SUPPORT_NATIVE_TEXT_SEGMENTATION?(e=new Intl.Segmenter(void 0,{granularity:"word"}),Array.from(e.segment(A)).map(function(A){return A.segment})):a_(A,t)},s_=function(A,t){return 0!==t.letterSpacing?n_(A):i_(A,t)},o_=[32,160,4961,65792,65793,4153,4241],a_=function(A,t){for(var e,r=ZL(A,{lineBreak:t.lineBreak,wordBreak:"break-word"===t.overflowWrap?"break-word":t.wordBreak}),n=[];!(e=r.next()).done;)(()=>{var A,t;e.value&&(A=e.value.slice(),A=vH(A),t="",A.forEach(function(A){-1===o_.indexOf(A)?t+=EH(A):(t.length&&n.push(t),n.push(EH(A)),t="")}),t.length)&&n.push(t)})();return n},c_=function(A,t,e){var n,i,s,o,a;this.text=l_(t.data,e.textTransform),this.textBounds=(n=A,A=this.text,s=t,A=s_(A,i=e),o=[],a=0,A.forEach(function(A){var t,e,r;i.textDecorationLine.length||0<A.trim().length?A_.SUPPORT_RANGE_BOUNDS?1<(t=r_(s,a,A.length).getClientRects()).length?(r=n_(A),e=0,r.forEach(function(A){o.push(new t_(A,yH.fromDOMRectList(n,r_(s,e+a,A.length).getClientRects()))),e+=A.length})):o.push(new t_(A,yH.fromDOMRectList(n,t))):(r=s.splitText(A.length),o.push(new t_(A,e_(n,s))),s=r):A_.SUPPORT_RANGE_BOUNDS||(s=s.splitText(A.length)),a+=A.length}),o)},l_=function(A,t){switch(t){case 1:return A.toLowerCase();case 3:return A.replace(u_,h_);case 2:return A.toUpperCase();default:return A}},u_=/(^|\s|:|-|\(|\))([a-z])/g,h_=function(A,t,e){return 0<A.length?t+e.toUpperCase():A},B_=(pH(g_,LN=wN),g_);function g_(A,t){A=LN.call(this,A,t)||this;return A.src=t.currentSrc||t.src,A.intrinsicWidth=t.naturalWidth,A.intrinsicHeight=t.naturalHeight,A.context.cache.addImage(A.src),A}pH(p_,f_=wN);var f_,d_=p_;function p_(A,t){A=f_.call(this,A,t)||this;return A.canvas=t,A.intrinsicWidth=t.width,A.intrinsicHeight=t.height,A}pH(C_,w_=wN);var w_,m_=C_;function C_(A,t){var e=w_.call(this,A,t)||this,r=new XMLSerializer,A=UH(A,t);return t.setAttribute("width",A.width+"px"),t.setAttribute("height",A.height+"px"),e.svg="data:image/svg+xml,"+encodeURIComponent(r.serializeToString(t)),e.intrinsicWidth=t.width.baseVal.value,e.intrinsicHeight=t.height.baseVal.value,e.context.cache.addImage(e.svg),e}pH(F_,Q_=wN);var Q_,y_=F_;function F_(A,t){A=Q_.call(this,A,t)||this;return A.value=t.value,A}pH(v_,U_=wN);var U_,b_=v_;function v_(A,t){A=U_.call(this,A,t)||this;return A.start=t.start,A.reversed="boolean"==typeof t.reversed&&!0===t.reversed,A}var E_,x_=[{type:15,flags:0,unit:"px",number:3}],I_=[{type:16,flags:0,number:50}],H_="checkbox",L_="radio",S_="password",N_=707406591,__=(pH(T_,E_=wN),T_);function T_(A,t){var e=E_.call(this,A,t)||this;switch(e.type=t.type.toLowerCase(),e.checked=t.checked,e.value=0===(t=(A=t).type===S_?new Array(A.value.length+1).join("•"):A.value).length?A.placeholder||"":t,e.type!==H_&&e.type!==L_||(e.styles.backgroundColor=3739148031,e.styles.borderTopColor=e.styles.borderRightColor=e.styles.borderBottomColor=e.styles.borderLeftColor=2779096575,e.styles.borderTopWidth=e.styles.borderRightWidth=e.styles.borderBottomWidth=e.styles.borderLeftWidth=1,e.styles.borderTopStyle=e.styles.borderRightStyle=e.styles.borderBottomStyle=e.styles.borderLeftStyle=1,e.styles.backgroundClip=[0],e.styles.backgroundOrigin=[0],e.bounds=(A=e.bounds).width>A.height?new yH(A.left+(A.width-A.height)/2,A.top,A.height,A.height):A.width<A.height?new yH(A.left,A.top+(A.height-A.width)/2,A.width,A.width):A),e.type){case H_:e.styles.borderTopRightRadius=e.styles.borderTopLeftRadius=e.styles.borderBottomRightRadius=e.styles.borderBottomLeftRadius=x_;break;case L_:e.styles.borderTopRightRadius=e.styles.borderTopLeftRadius=e.styles.borderBottomRightRadius=e.styles.borderBottomLeftRadius=I_}return e}pH(P_,D_=wN);var D_,O_=P_;function P_(A,t){A=D_.call(this,A,t)||this,t=t.options[t.selectedIndex||0];return A.value=t&&t.text||"",A}pH(K_,M_=wN);var M_,k_=K_;function K_(A,t){A=M_.call(this,A,t)||this;return A.value=t.value,A}pH(G_,R_=wN);var R_,V_=G_;function G_(A,t){var e,r,n=R_.call(this,A,t)||this;n.src=t.src,n.width=parseInt(t.width,10)||0,n.height=parseInt(t.height,10)||0,n.backgroundColor=n.styles.backgroundColor;try{t.contentWindow&&t.contentWindow.document&&t.contentWindow.document.documentElement&&(n.tree=z_(A,t.contentWindow.document.documentElement),e=t.contentWindow.document.documentElement?mS(A,getComputedStyle(t.contentWindow.document.documentElement).backgroundColor):CS.TRANSPARENT,r=t.contentWindow.document.body?mS(A,getComputedStyle(t.contentWindow.document.body).backgroundColor):CS.TRANSPARENT,n.backgroundColor=lS(e)?lS(r)?n.styles.backgroundColor:r:e)}catch(A){}return n}function j_(A){return"VIDEO"===A.tagName}function X_(A){return"STYLE"===A.tagName}function W_(A){return 0<A.tagName.indexOf("-")}var J_=["OL","UL","MENU"],Y_=function(t,A,e,r){for(var n=A.firstChild;n;n=s){var i,s=n.nextSibling;AT(n)&&0<n.data.trim().length?e.textNodes.push(new c_(t,n,e.styles)):tT(n)&&(fT(n)&&n.assignedNodes?n.assignedNodes().forEach(function(A){return Y_(t,A,e,r)}):(i=q_(t,n)).styles.isVisible()&&(Z_(n,i,r)?i.flags|=4:$_(i.styles)&&(i.flags|=2),-1!==J_.indexOf(n.tagName)&&(i.flags|=8),e.elements.push(i),n.slot,n.shadowRoot?Y_(t,n.shadowRoot,i,r):BT(n)||aT(n)||gT(n)||Y_(t,n,i,r)))}},q_=function(A,t){return new(uT(t)?B_:lT(t)?d_:aT(t)?m_:nT(t)?y_:iT(t)?b_:sT(t)?__:gT(t)?O_:BT(t)?k_:hT(t)?V_:wN)(A,t)},z_=function(A,t){var e=q_(A,t);return e.flags|=4,Y_(A,t,e,e),e},Z_=function(A,t,e){return t.styles.isPositionedWithZIndex()||t.styles.opacity<1||t.styles.isTransformed()||cT(A)&&e.styles.isTransparent()},$_=function(A){return A.isPositioned()||A.isFloating()},AT=function(A){return A.nodeType===Node.TEXT_NODE},tT=function(A){return A.nodeType===Node.ELEMENT_NODE},eT=function(A){return tT(A)&&void 0!==A.style&&!rT(A)},rT=function(A){return"object"==typeof A.className},nT=function(A){return"LI"===A.tagName},iT=function(A){return"OL"===A.tagName},sT=function(A){return"INPUT"===A.tagName},oT=function(A){return"HTML"===A.tagName},aT=function(A){return"svg"===A.tagName},cT=function(A){return"BODY"===A.tagName},lT=function(A){return"CANVAS"===A.tagName},uT=function(A){return"IMG"===A.tagName},hT=function(A){return"IFRAME"===A.tagName},BT=function(A){return"TEXTAREA"===A.tagName},gT=function(A){return"SELECT"===A.tagName},fT=function(A){return"SLOT"===A.tagName},dT=(pT.prototype.getCounterValue=function(A){A=this.counters[A];return A&&A.length?A[A.length-1]:1},pT.prototype.getCounterValues=function(A){A=this.counters[A];return A||[]},pT.prototype.pop=function(A){var t=this;A.forEach(function(A){return t.counters[A].pop()})},pT.prototype.parse=function(A){var e=this,t=A.counterIncrement,A=A.counterReset,r=!0,n=(null!==t&&t.forEach(function(A){var t=e.counters[A.counter];t&&0!==A.increment&&(r=!1,t.length||t.push(1),t[Math.max(0,t.length-1)]+=A.increment)}),[]);return r&&A.forEach(function(A){var t=e.counters[A.counter];n.push(A.counter),(t=t||(e.counters[A.counter]=[])).push(A.reset)}),n},pT);function pT(){this.counters={}}function wT(r,A,t,n,e,i){return r<A||t<r?DT(r,e,0<i.length):n.integers.reduce(function(A,t,e){for(;t<=r;)r-=t,A+=n.values[e];return A},"")+i}function mT(A,t,e,r,n){var i=e-t+1;return(A<0?"-":"")+(ET(Math.abs(A),i,r,function(A){return EH(Math.floor(A%i)+t)})+n)}function CT(A,t,e){void 0===e&&(e=". ");var r=t.length;return ET(Math.abs(A),r,!1,function(A){return t[Math.floor(A%r)]})+e}function QT(A,t,e,r,n,i){if(A<-9999||9999<A)return DT(A,4,0<n.length);var s=Math.abs(A),o=n;if(0===s)return t[0]+o;for(var a=0;0<s&&a<=4;a++){var c=s%10;0==c&&tN(i,xT)&&""!==o?o=t[c]+o:1<c||1==c&&0===a||1==c&&1===a&&tN(i,IT)||1==c&&1===a&&tN(i,HT)&&100<A||1==c&&1<a&&tN(i,LT)?o=t[c]+(0<a?e[a-1]:"")+o:1==c&&0<a&&(o=e[a-1]+o),s=Math.floor(s/10)}return(A<0?r:"")+o}var yT,FT={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},UT={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["Ք","Փ","Ւ","Ց","Ր","Տ","Վ","Ս","Ռ","Ջ","Պ","Չ","Ո","Շ","Ն","Յ","Մ","Ճ","Ղ","Ձ","Հ","Կ","Ծ","Խ","Լ","Ի","Ժ","Թ","Ը","Է","Զ","Ե","Դ","Գ","Բ","Ա"]},bT={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["י׳","ט׳","ח׳","ז׳","ו׳","ה׳","ד׳","ג׳","ב׳","א׳","ת","ש","ר","ק","צ","פ","ע","ס","נ","מ","ל","כ","יט","יח","יז","טז","טו","י","ט","ח","ז","ו","ה","ד","ג","ב","א"]},vT={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["ჵ","ჰ","ჯ","ჴ","ხ","ჭ","წ","ძ","ც","ჩ","შ","ყ","ღ","ქ","ფ","ჳ","ტ","ს","რ","ჟ","პ","ო","ჲ","ნ","მ","ლ","კ","ი","თ","ჱ","ზ","ვ","ე","დ","გ","ბ","ა"]},ET=function(A,t,e,r){for(var n="";e||A--,n=r(A)+n,t<=(A/=t)*t;);return n},xT=1,IT=2,HT=4,LT=8,ST="十百千萬",NT="拾佰仟萬",_T="マイナス",TT="마이너스",DT=function(A,t,e){var r=e?". ":"",n=e?"、":"",i=e?", ":"",s=e?" ":"";switch(t){case 0:return"•"+s;case 1:return"◦"+s;case 2:return"◾"+s;case 5:var o=mT(A,48,57,!0,r);return o.length<4?"0"+o:o;case 4:return CT(A,"〇一二三四五六七八九",n);case 6:return wT(A,1,3999,FT,3,r).toLowerCase();case 7:return wT(A,1,3999,FT,3,r);case 8:return mT(A,945,969,!1,r);case 9:return mT(A,97,122,!1,r);case 10:return mT(A,65,90,!1,r);case 11:return mT(A,1632,1641,!0,r);case 12:case 49:return wT(A,1,9999,UT,3,r);case 35:return wT(A,1,9999,UT,3,r).toLowerCase();case 13:return mT(A,2534,2543,!0,r);case 14:case 30:return mT(A,6112,6121,!0,r);case 15:return CT(A,"子丑寅卯辰巳午未申酉戌亥",n);case 16:return CT(A,"甲乙丙丁戊己庚辛壬癸",n);case 17:case 48:return QT(A,"零一二三四五六七八九",ST,"負",n,IT|HT|LT);case 47:return QT(A,"零壹貳參肆伍陸柒捌玖",NT,"負",n,xT|IT|HT|LT);case 42:return QT(A,"零一二三四五六七八九",ST,"负",n,IT|HT|LT);case 41:return QT(A,"零壹贰叁肆伍陆柒捌玖",NT,"负",n,xT|IT|HT|LT);case 26:return QT(A,"〇一二三四五六七八九","十百千万",_T,n,0);case 25:return QT(A,"零壱弐参四伍六七八九","拾百千万",_T,n,xT|IT|HT);case 31:return QT(A,"영일이삼사오육칠팔구","십백천만",TT,i,xT|IT|HT);case 33:return QT(A,"零一二三四五六七八九","十百千萬",TT,i,0);case 32:return QT(A,"零壹貳參四五六七八九","拾百千",TT,i,xT|IT|HT);case 18:return mT(A,2406,2415,!0,r);case 20:return wT(A,1,19999,vT,3,r);case 21:return mT(A,2790,2799,!0,r);case 22:return mT(A,2662,2671,!0,r);case 22:return wT(A,1,10999,bT,3,r);case 23:return CT(A,"あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん");case 24:return CT(A,"いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす");case 27:return mT(A,3302,3311,!0,r);case 28:return CT(A,"アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン",n);case 29:return CT(A,"イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス",n);case 34:return mT(A,3792,3801,!0,r);case 37:return mT(A,6160,6169,!0,r);case 38:return mT(A,4160,4169,!0,r);case 39:return mT(A,2918,2927,!0,r);case 40:return mT(A,1776,1785,!0,r);case 43:return mT(A,3046,3055,!0,r);case 44:return mT(A,3174,3183,!0,r);case 45:return mT(A,3664,3673,!0,r);case 46:return mT(A,3872,3881,!0,r);default:return mT(A,48,57,!0,r)}},OT="data-html2canvas-ignore",PT=(MT.prototype.toIFrame=function(A,r){var t,n,i,e,s=this,o=KT(A,r);return o.contentWindow?(t=A.defaultView.pageXOffset,A=A.defaultView.pageYOffset,i=(n=o.contentWindow).document,e=VT(o).then(function(){return mH(s,void 0,void 0,function(){var t,e;return CH(this,function(A){switch(A.label){case 0:return(this.scrolledElements.forEach(JT),n&&(n.scrollTo(r.left,r.top),!/(iPad|iPhone|iPod)/g.test(navigator.userAgent)||n.scrollY===r.top&&n.scrollX===r.left||(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(n.scrollX-r.left,n.scrollY-r.top,0,0))),t=this.options.onclone,void 0===(e=this.clonedReferenceElement))?[2,Promise.reject("Error finding the "+this.referenceElement.nodeName+" in the cloned document")]:i.fonts&&i.fonts.ready?[4,i.fonts.ready]:[3,2];case 1:A.sent(),A.label=2;case 2:return/(AppleWebKit)/g.test(navigator.userAgent)?[4,RT(i)]:[3,4];case 3:A.sent(),A.label=4;case 4:return"function"==typeof t?[2,Promise.resolve().then(function(){return t(i,e)}).then(function(){return o})]:[2,o]}})})}),i.open(),i.write(XT(document.doctype)+"<html></html>"),WT(this.referenceElement.ownerDocument,t,A),i.replaceChild(i.adoptNode(this.documentElement),i.documentElement),i.close(),e):Promise.reject("Unable to find iframe window")},MT.prototype.createElementClone=function(A){var t;return pN(A,2),lT(A)?this.createCanvasClone(A):j_(A)?this.createVideoClone(A):X_(A)?this.createStyleClone(A):(t=A.cloneNode(!1),uT(t)&&(uT(A)&&A.currentSrc&&A.currentSrc!==A.src&&(t.src=A.currentSrc,t.srcset=""),"lazy"===t.loading)&&(t.loading="eager"),W_(t)?this.createCustomElementClone(t):t)},MT.prototype.createCustomElementClone=function(A){var t=document.createElement("html2canvascustomelement");return jT(A.style,t),t},MT.prototype.createStyleClone=function(A){try{var t,e,r=A.sheet;if(r&&r.cssRules)return t=[].slice.call(r.cssRules,0).reduce(function(A,t){return t&&"string"==typeof t.cssText?A+t.cssText:A},""),(e=A.cloneNode(!1)).textContent=t,e}catch(A){if(this.context.logger.error("Unable to access cssRules property",A),"SecurityError"!==A.name)throw A}return A.cloneNode(!1)},MT.prototype.createCanvasClone=function(t){var A;if(this.options.inlineImages&&t.ownerDocument){var e=t.ownerDocument.createElement("img");try{return e.src=t.toDataURL(),e}catch(A){this.context.logger.info("Unable to inline canvas contents, canvas is tainted",t)}}e=t.cloneNode(!1);try{e.width=t.width,e.height=t.height;var r,n,i=t.getContext("2d"),s=e.getContext("2d");s&&(!this.options.allowTaint&&i?s.putImageData(i.getImageData(0,0,t.width,t.height),0,0):((r=null!=(A=t.getContext("webgl2"))?A:t.getContext("webgl"))&&!1===(null==(n=r.getContextAttributes())?void 0:n.preserveDrawingBuffer)&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",t),s.drawImage(t,0,0)))}catch(A){this.context.logger.info("Unable to clone canvas as it is tainted",t)}return e},MT.prototype.createVideoClone=function(t){var A=t.ownerDocument.createElement("canvas"),e=(A.width=t.offsetWidth,A.height=t.offsetHeight,A.getContext("2d"));try{return e&&(e.drawImage(t,0,0,A.width,A.height),this.options.allowTaint||e.getImageData(0,0,A.width,A.height)),A}catch(A){this.context.logger.info("Unable to clone video as it is tainted",t)}e=t.ownerDocument.createElement("canvas");return e.width=t.offsetWidth,e.height=t.offsetHeight,e},MT.prototype.appendChildNode=function(A,t,e){tT(t)&&("SCRIPT"===t.tagName||t.hasAttribute(OT)||"function"==typeof this.options.ignoreElements&&this.options.ignoreElements(t))||this.options.copyStyles&&tT(t)&&X_(t)||A.appendChild(this.cloneNode(t,e))},MT.prototype.cloneChildNodes=function(A,t,e){for(var r,n=this,i=(A.shadowRoot||A).firstChild;i;i=i.nextSibling)tT(i)&&fT(i)&&"function"==typeof i.assignedNodes?(r=i.assignedNodes()).length&&r.forEach(function(A){return n.appendChildNode(t,A,e)}):this.appendChildNode(t,i,e)},MT.prototype.cloneNode=function(A,t){var e,r,n,i,s;return AT(A)?document.createTextNode(A.data):A.ownerDocument&&(n=A.ownerDocument.defaultView)&&tT(A)&&(eT(A)||rT(A))?((e=this.createElementClone(A)).style.transitionProperty="none",r=n.getComputedStyle(A),s=n.getComputedStyle(A,":before"),n=n.getComputedStyle(A,":after"),this.referenceElement===A&&eT(e)&&(this.clonedReferenceElement=e),cT(e)&&ZT(e),i=this.counters.parse(new gN(this.context,r)),s=this.resolvePseudoContent(A,e,s,yT.BEFORE),W_(A)&&(t=!0),j_(A)||this.cloneChildNodes(A,e,t),s&&e.insertBefore(s,e.firstChild),(s=this.resolvePseudoContent(A,e,n,yT.AFTER))&&e.appendChild(s),this.counters.pop(i),(r&&(this.options.copyStyles||rT(A))&&!hT(A)||t)&&jT(r,e),0===A.scrollTop&&0===A.scrollLeft||this.scrolledElements.push([e,A.scrollLeft,A.scrollTop]),(BT(A)||gT(A))&&(BT(e)||gT(e))&&(e.value=A.value),e):A.cloneNode(!1)},MT.prototype.resolvePseudoContent=function(s,A,t,e){var o=this;if(t){var a,c,r=t.content,l=A.ownerDocument;if(l&&r&&"none"!==r&&"-moz-alt-content"!==r&&"none"!==t.display)return this.counters.parse(new gN(this.context,t)),a=new BN(this.context,t),c=l.createElement("html2canvaspseudoelement"),jT(t,c),a.content.forEach(function(A){if(0===A.type)c.appendChild(l.createTextNode(A.value));else if(22===A.type){var t=l.createElement("img");t.src=A.value,t.style.opacity="1",c.appendChild(t)}else if(18===A.type){var e,r,n,i;"attr"===A.name?(t=A.values.filter(J6)).length&&c.appendChild(l.createTextNode(s.getAttribute(t[0].value)||"")):"counter"===A.name?(n=(t=A.values.filter(M6))[0],i=t[1],n&&J6(n)&&(t=o.counters.getCounterValue(n.value),e=i&&J6(i)?U8.parse(o.context,i.value):3,c.appendChild(l.createTextNode(DT(t,e,!1))))):"counters"===A.name&&(n=(t=A.values.filter(M6))[0],e=t[1],i=t[2],n)&&J6(n)&&(t=o.counters.getCounterValues(n.value),r=i&&J6(i)?U8.parse(o.context,i.value):3,n=e&&0===e.type?e.value:"",i=t.map(function(A){return DT(A,r,!1)}).join(n),c.appendChild(l.createTextNode(i)))}else if(20===A.type)switch(A.value){case"open-quote":c.appendChild(l.createTextNode(kS(a.quotes,o.quoteDepth++,!0)));break;case"close-quote":c.appendChild(l.createTextNode(kS(a.quotes,--o.quoteDepth,!1)));break;default:c.appendChild(l.createTextNode(A.value))}}),c.className=YT+" "+qT,r=e===yT.BEFORE?" "+YT:" "+qT,rT(A)?A.className.baseValue+=r:A.className+=r,c}},MT.destroy=function(A){return!!A.parentNode&&(A.parentNode.removeChild(A),!0)},MT);function MT(A,t,e){if(this.context=A,this.options=e,this.scrolledElements=[],this.referenceElement=t,this.counters=new dT,this.quoteDepth=0,!t.ownerDocument)throw new Error("Cloned element does not have an owner document");this.documentElement=this.cloneNode(t.ownerDocument.documentElement,!1)}(Vy=yT=yT||{})[Vy.BEFORE=0]="BEFORE",Vy[Vy.AFTER=1]="AFTER";function kT(t){return new Promise(function(A){!t.complete&&t.src?(t.onload=A,t.onerror=A):A()})}var KT=function(A,t){var e=A.createElement("iframe");return e.className="html2canvas-container",e.style.visibility="hidden",e.style.position="fixed",e.style.left="-10000px",e.style.top="0px",e.style.border="0",e.width=t.width.toString(),e.height=t.height.toString(),e.scrolling="no",e.setAttribute(OT,"true"),A.body.appendChild(e),e},RT=function(A){return Promise.all([].slice.call(A.images,0).map(kT))},VT=function(n){return new Promise(function(t,A){var e=n.contentWindow;if(!e)return A("No window assigned for iframe");var r=e.document;e.onload=n.onload=function(){e.onload=n.onload=null;var A=setInterval(function(){0<r.body.childNodes.length&&"complete"===r.readyState&&(clearInterval(A),t(n))},50)}})},GT=["all","d","content"],jT=function(A,t){for(var e=A.length-1;0<=e;e--){var r=A.item(e);-1===GT.indexOf(r)&&t.style.setProperty(r,A.getPropertyValue(r))}return t},XT=function(A){var t="";return A&&(t+="<!DOCTYPE ",A.name&&(t+=A.name),A.internalSubset&&(t+=A.internalSubset),A.publicId&&(t+='"'+A.publicId+'"'),A.systemId&&(t+='"'+A.systemId+'"'),t+=">"),t},WT=function(A,t,e){A&&A.defaultView&&(t!==A.defaultView.pageXOffset||e!==A.defaultView.pageYOffset)&&A.defaultView.scrollTo(t,e)},JT=function(A){var t=A[0],e=A[2];t.scrollLeft=A[1],t.scrollTop=e},YT="___html2canvas___pseudoelement_before",qT="___html2canvas___pseudoelement_after",zT='{\n content: "" !important;\n display: none !important;\n}',ZT=function(A){$T(A,"."+YT+":before"+zT+"\n ."+qT+":after"+zT)},$T=function(A,t){var e=A.ownerDocument;e&&((e=e.createElement("style")).textContent=t,A.appendChild(e))},AD=(tD.getOrigin=function(A){var t=tD._link;return t?(t.href=A,t.href=t.href,t.protocol+t.hostname+t.port):"about:blank"},tD.isSameOrigin=function(A){return tD.getOrigin(A)===tD._origin},tD.setContext=function(A){tD._link=A.document.createElement("a"),tD._origin=tD.getOrigin(A.location.href)},tD._origin="about:blank",tD);function tD(){}rD.prototype.addImage=function(A){var t=Promise.resolve();return this.has(A)||(lD(A)||oD(A))&&(this._cache[A]=this.loadImage(A)).catch(function(){}),t},rD.prototype.match=function(A){return this._cache[A]},rD.prototype.loadImage=function(s){return mH(this,void 0,void 0,function(){var t,r,e,n,i=this;return CH(this,function(A){switch(A.label){case 0:return(t=AD.isSameOrigin(s),r=!aD(s)&&!0===this._options.useCORS&&A_.SUPPORT_CORS_IMAGES&&!t,e=!aD(s)&&!t&&!lD(s)&&"string"==typeof this._options.proxy&&A_.SUPPORT_CORS_XHR&&!r,t||!1!==this._options.allowTaint||aD(s)||lD(s)||e||r)?(n=s,e?[4,this.proxy(n)]:[3,2]):[2];case 1:n=A.sent(),A.label=2;case 2:return this.context.logger.debug("Added image "+s.substring(0,256)),[4,new Promise(function(A,t){var e=new Image;e.onload=function(){return A(e)},e.onerror=t,(cD(n)||r)&&(e.crossOrigin="anonymous"),e.src=n,!0===e.complete&&setTimeout(function(){return A(e)},500),0<i._options.imageTimeout&&setTimeout(function(){return t("Timed out ("+i._options.imageTimeout+"ms) loading image")},i._options.imageTimeout)})];case 3:return[2,A.sent()]}})})},rD.prototype.has=function(A){return void 0!==this._cache[A]},rD.prototype.keys=function(){return Promise.resolve(Object.keys(this._cache))},rD.prototype.proxy=function(s){var o,a=this,c=this._options.proxy;if(c)return o=s.substring(0,256),new Promise(function(t,e){var A,r=A_.SUPPORT_RESPONSE_TYPE?"blob":"text",n=new XMLHttpRequest,i=(n.onload=function(){var A;200===n.status?"text"==r?t(n.response):((A=new FileReader).addEventListener("load",function(){return t(A.result)},!1),A.addEventListener("error",function(A){return e(A)},!1),A.readAsDataURL(n.response)):e("Failed to proxy resource "+o+" with status code "+n.status)},n.onerror=e,-1<c.indexOf("?")?"&":"?");n.open("GET",c+i+"url="+encodeURIComponent(s)+"&responseType="+r),"text"!=r&&n instanceof XMLHttpRequest&&(n.responseType=r),a._options.imageTimeout&&(A=a._options.imageTimeout,n.timeout=A,n.ontimeout=function(){return e("Timed out ("+A+"ms) proxying "+o)}),n.send()});throw new Error("No proxy defined")};var eD=rD;function rD(A,t){this.context=A,this._options=t,this._cache={}}var nD=/^data:image\/svg\+xml/i,iD=/^data:image\/.*;base64,/i,sD=/^data:image\/.*/i,oD=function(A){return A_.SUPPORT_SVG_DRAWING||!uD(A)},aD=function(A){return sD.test(A)},cD=function(A){return iD.test(A)},lD=function(A){return"blob"===A.substr(0,4)},uD=function(A){return"svg"===A.substr(-3).toLowerCase()||nD.test(A)},I=(hD.prototype.add=function(A,t){return new hD(this.x+A,this.y+t)},hD);function hD(A,t){this.type=0,this.x=A,this.y=t}function BD(A,t,e){return new I(A.x+(t.x-A.x)*e,A.y+(t.y-A.y)*e)}fD.prototype.subdivide=function(A,t){var e=BD(this.start,this.startControl,A),r=BD(this.startControl,this.endControl,A),n=BD(this.endControl,this.end,A),i=BD(e,r,A),r=BD(r,n,A),A=BD(i,r,A);return t?new fD(this.start,e,i,A):new fD(A,r,n,this.end)},fD.prototype.add=function(A,t){return new fD(this.start.add(A,t),this.startControl.add(A,t),this.endControl.add(A,t),this.end.add(A,t))},fD.prototype.reverse=function(){return new fD(this.end,this.endControl,this.startControl,this.start)};var gD=fD;function fD(A,t,e,r){this.type=1,this.start=A,this.startControl=t,this.endControl=e,this.end=r}function dD(A){return[A.topLeftBorderBox,A.topRightBorderBox,A.bottomRightBorderBox,A.bottomLeftBorderBox]}function pD(A){return[A.topLeftPaddingBox,A.topRightPaddingBox,A.bottomRightPaddingBox,A.bottomLeftPaddingBox]}function wD(A){return 1===A.type}function mD(A,e){return A.length===e.length&&A.some(function(A,t){return A===e[t]})}var CD,QD=function(A){return 1===A.type},yD=function(A){var t=A.styles,e=A.bounds,r=(n=tS(t.borderTopLeftRadius,e.width,e.height))[0],n=n[1],i=(s=tS(t.borderTopRightRadius,e.width,e.height))[0],s=s[1],o=(a=tS(t.borderBottomRightRadius,e.width,e.height))[0],a=a[1],c=(l=tS(t.borderBottomLeftRadius,e.width,e.height))[0],l=l[1];(u=[]).push((r+i)/e.width),u.push((c+o)/e.width),u.push((n+l)/e.height),u.push((s+a)/e.height);1<(u=Math.max.apply(Math,u))&&(r/=u,n/=u,i/=u,s/=u,o/=u,a/=u,c/=u,l/=u);var u=e.width-i,h=e.height-a,B=e.width-o,g=e.height-l,f=t.borderTopWidth,d=t.borderRightWidth,p=t.borderBottomWidth,w=t.borderLeftWidth,m=eS(t.paddingTop,A.bounds.width),C=eS(t.paddingRight,A.bounds.width),Q=eS(t.paddingBottom,A.bounds.width),t=eS(t.paddingLeft,A.bounds.width);this.topLeftBorderDoubleOuterBox=0<r||0<n?FD(e.left+w/3,e.top+f/3,r-w/3,n-f/3,CD.TOP_LEFT):new I(e.left+w/3,e.top+f/3),this.topRightBorderDoubleOuterBox=0<r||0<n?FD(e.left+u,e.top+f/3,i-d/3,s-f/3,CD.TOP_RIGHT):new I(e.left+e.width-d/3,e.top+f/3),this.bottomRightBorderDoubleOuterBox=0<o||0<a?FD(e.left+B,e.top+h,o-d/3,a-p/3,CD.BOTTOM_RIGHT):new I(e.left+e.width-d/3,e.top+e.height-p/3),this.bottomLeftBorderDoubleOuterBox=0<c||0<l?FD(e.left+w/3,e.top+g,c-w/3,l-p/3,CD.BOTTOM_LEFT):new I(e.left+w/3,e.top+e.height-p/3),this.topLeftBorderDoubleInnerBox=0<r||0<n?FD(e.left+2*w/3,e.top+2*f/3,r-2*w/3,n-2*f/3,CD.TOP_LEFT):new I(e.left+2*w/3,e.top+2*f/3),this.topRightBorderDoubleInnerBox=0<r||0<n?FD(e.left+u,e.top+2*f/3,i-2*d/3,s-2*f/3,CD.TOP_RIGHT):new I(e.left+e.width-2*d/3,e.top+2*f/3),this.bottomRightBorderDoubleInnerBox=0<o||0<a?FD(e.left+B,e.top+h,o-2*d/3,a-2*p/3,CD.BOTTOM_RIGHT):new I(e.left+e.width-2*d/3,e.top+e.height-2*p/3),this.bottomLeftBorderDoubleInnerBox=0<c||0<l?FD(e.left+2*w/3,e.top+g,c-2*w/3,l-2*p/3,CD.BOTTOM_LEFT):new I(e.left+2*w/3,e.top+e.height-2*p/3),this.topLeftBorderStroke=0<r||0<n?FD(e.left+w/2,e.top+f/2,r-w/2,n-f/2,CD.TOP_LEFT):new I(e.left+w/2,e.top+f/2),this.topRightBorderStroke=0<r||0<n?FD(e.left+u,e.top+f/2,i-d/2,s-f/2,CD.TOP_RIGHT):new I(e.left+e.width-d/2,e.top+f/2),this.bottomRightBorderStroke=0<o||0<a?FD(e.left+B,e.top+h,o-d/2,a-p/2,CD.BOTTOM_RIGHT):new I(e.left+e.width-d/2,e.top+e.height-p/2),this.bottomLeftBorderStroke=0<c||0<l?FD(e.left+w/2,e.top+g,c-w/2,l-p/2,CD.BOTTOM_LEFT):new I(e.left+w/2,e.top+e.height-p/2),this.topLeftBorderBox=0<r||0<n?FD(e.left,e.top,r,n,CD.TOP_LEFT):new I(e.left,e.top),this.topRightBorderBox=0<i||0<s?FD(e.left+u,e.top,i,s,CD.TOP_RIGHT):new I(e.left+e.width,e.top),this.bottomRightBorderBox=0<o||0<a?FD(e.left+B,e.top+h,o,a,CD.BOTTOM_RIGHT):new I(e.left+e.width,e.top+e.height),this.bottomLeftBorderBox=0<c||0<l?FD(e.left,e.top+g,c,l,CD.BOTTOM_LEFT):new I(e.left,e.top+e.height),this.topLeftPaddingBox=0<r||0<n?FD(e.left+w,e.top+f,Math.max(0,r-w),Math.max(0,n-f),CD.TOP_LEFT):new I(e.left+w,e.top+f),this.topRightPaddingBox=0<i||0<s?FD(e.left+Math.min(u,e.width-d),e.top+f,u>e.width+d?0:Math.max(0,i-d),Math.max(0,s-f),CD.TOP_RIGHT):new I(e.left+e.width-d,e.top+f),this.bottomRightPaddingBox=0<o||0<a?FD(e.left+Math.min(B,e.width-w),e.top+Math.min(h,e.height-p),Math.max(0,o-d),Math.max(0,a-p),CD.BOTTOM_RIGHT):new I(e.left+e.width-d,e.top+e.height-p),this.bottomLeftPaddingBox=0<c||0<l?FD(e.left+w,e.top+Math.min(g,e.height-p),Math.max(0,c-w),Math.max(0,l-p),CD.BOTTOM_LEFT):new I(e.left+w,e.top+e.height-p),this.topLeftContentBox=0<r||0<n?FD(e.left+w+t,e.top+f+m,Math.max(0,r-(w+t)),Math.max(0,n-(f+m)),CD.TOP_LEFT):new I(e.left+w+t,e.top+f+m),this.topRightContentBox=0<i||0<s?FD(e.left+Math.min(u,e.width+w+t),e.top+f+m,u>e.width+w+t?0:i-w+t,s-(f+m),CD.TOP_RIGHT):new I(e.left+e.width-(d+C),e.top+f+m),this.bottomRightContentBox=0<o||0<a?FD(e.left+Math.min(B,e.width-(w+t)),e.top+Math.min(h,e.height+f+m),Math.max(0,o-(d+C)),a-(p+Q),CD.BOTTOM_RIGHT):new I(e.left+e.width-(d+C),e.top+e.height-(p+Q)),this.bottomLeftContentBox=0<c||0<l?FD(e.left+w+t,e.top+g,Math.max(0,c-(w+t)),l-(p+Q),CD.BOTTOM_LEFT):new I(e.left+w+t,e.top+e.height-(p+Q))},FD=((d=CD=CD||{})[d.TOP_LEFT=0]="TOP_LEFT",d[d.TOP_RIGHT=1]="TOP_RIGHT",d[d.BOTTOM_RIGHT=2]="BOTTOM_RIGHT",d[d.BOTTOM_LEFT=3]="BOTTOM_LEFT",function(A,t,e,r,n){var i=(Math.sqrt(2)-1)/3*4,s=e*i,o=r*i,a=A+e,c=t+r;switch(n){case CD.TOP_LEFT:return new gD(new I(A,c),new I(A,c-o),new I(a-s,t),new I(a,t));case CD.TOP_RIGHT:return new gD(new I(A,t),new I(A+s,t),new I(a,c-o),new I(a,c));case CD.BOTTOM_RIGHT:return new gD(new I(a,t),new I(a,t+o),new I(A+s,c),new I(A,c));default:CD.BOTTOM_LEFT;return new gD(new I(a,c),new I(a-s,c),new I(A,t+o),new I(A,t))}}),UD=function(A,t,e){this.offsetX=A,this.offsetY=t,this.matrix=e,this.type=0,this.target=6},bD=function(A,t){this.path=A,this.target=t,this.type=1},vD=function(A){this.opacity=A,this.type=2,this.target=6},ED=function(A){this.element=A,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]},xD=(ID.prototype.getEffects=function(t){for(var A=-1===[2,3].indexOf(this.container.styles.position),e=this.parent,r=this.effects.slice(0);e;){var n,i,s=e.effects.filter(function(A){return!wD(A)});A||0!==e.container.styles.position||!e.parent?(r.unshift.apply(r,s),A=-1===[2,3].indexOf(e.container.styles.position),0!==e.container.styles.overflowX&&(n=dD(e.curves),i=pD(e.curves),mD(n,i)||r.unshift(new bD(i,6)))):r.unshift.apply(r,s),e=e.parent}return r.filter(function(A){return tN(A.target,t)})},ID);function ID(A,t){var e;this.container=A,this.parent=t,this.effects=[],this.curves=new yD(this.container),this.container.styles.opacity<1&&this.effects.push(new vD(this.container.styles.opacity)),null!==this.container.styles.transform&&(A=this.container.bounds.left+this.container.styles.transformOrigin[0].number,t=this.container.bounds.top+this.container.styles.transformOrigin[1].number,e=this.container.styles.transform,this.effects.push(new UD(A,t,e))),0!==this.container.styles.overflowX&&(A=dD(this.curves),t=pD(this.curves),mD(A,t)?this.effects.push(new bD(A,6)):(this.effects.push(new bD(A,2)),this.effects.push(new bD(t,4))))}function HD(A,t){switch(t){case 0:return SD(A.topLeftBorderBox,A.topLeftPaddingBox,A.topRightBorderBox,A.topRightPaddingBox);case 1:return SD(A.topRightBorderBox,A.topRightPaddingBox,A.bottomRightBorderBox,A.bottomRightPaddingBox);case 2:return SD(A.bottomRightBorderBox,A.bottomRightPaddingBox,A.bottomLeftBorderBox,A.bottomLeftPaddingBox);default:return SD(A.bottomLeftBorderBox,A.bottomLeftPaddingBox,A.topLeftBorderBox,A.topLeftPaddingBox)}}function LD(A,t){var e=[];return QD(A)?e.push(A.subdivide(.5,!1)):e.push(A),QD(t)?e.push(t.subdivide(.5,!0)):e.push(t),e}function SD(A,t,e,r){var n=[];return QD(A)?n.push(A.subdivide(.5,!1)):n.push(A),QD(e)?n.push(e.subdivide(.5,!0)):n.push(e),QD(r)?n.push(r.subdivide(.5,!0).reverse()):n.push(r),QD(t)?n.push(t.subdivide(.5,!1).reverse()):n.push(t),n}function ND(A,t,e){var r=PD(VD(A.styles.backgroundOrigin,t),A),n=MD(VD(A.styles.backgroundClip,t),A),i=(e=RD(VD(A.styles.backgroundSize,t),e,r))[0],s=e[1],o=tS(VD(A.styles.backgroundPosition,t),r.width-i,r.height-s);return[GD(VD(A.styles.backgroundRepeat,t),o,e,r,n),Math.round(r.left+o[0]),Math.round(r.top+o[1]),i,s]}var _D=function(c,l,u,h){c.container.elements.forEach(function(A){var t,e,r,n,i=tN(A.flags,4),s=tN(A.flags,2),o=new xD(A,c),a=(tN(A.styles.display,2048)&&h.push(o),tN(A.flags,8)?[]:h);i||s?(s=i||A.styles.isPositioned()?u:l,t=new ED(o),A.styles.isPositioned()||A.styles.opacity<1||A.styles.isTransformed()?(e=A.styles.zIndex.order)<0?(r=0,s.negativeZIndex.some(function(A,t){return e>A.element.container.styles.zIndex.order?(r=t,!1):0<r}),s.negativeZIndex.splice(r,0,t)):0<e?(n=0,s.positiveZIndex.some(function(A,t){return e>=A.element.container.styles.zIndex.order?(n=t+1,!1):0<n}),s.positiveZIndex.splice(n,0,t)):s.zeroOrAutoZIndexOrTransformedOrOpacity.push(t):(A.styles.isFloating()?s.nonPositionedFloats:s.nonPositionedInlineLevel).push(t),_D(o,t,i?t:u,a)):((A.styles.isInlineLevel()?l.inlineLevel:l.nonInlineLevel).push(o),_D(o,l,u,a)),tN(A.flags,8)&&TD(A,a)})},TD=function(A,t){for(var e=A instanceof b_?A.start:1,r=A instanceof b_&&A.reversed,n=0;n<t.length;n++){var i=t[n];i.container instanceof y_&&"number"==typeof i.container.value&&0!==i.container.value&&(e=i.container.value),i.listValue=DT(e,i.container.styles.listStyleType,!0),e+=r?-1:1}},DD=function(A){var t=A.bounds,A=A.styles;return t.add(A.borderLeftWidth,A.borderTopWidth,-(A.borderRightWidth+A.borderLeftWidth),-(A.borderTopWidth+A.borderBottomWidth))},OD=function(A){var t=A.styles,A=A.bounds,e=eS(t.paddingLeft,A.width),r=eS(t.paddingRight,A.width),n=eS(t.paddingTop,A.width),i=eS(t.paddingBottom,A.width);return A.add(e+t.borderLeftWidth,n+t.borderTopWidth,-(t.borderRightWidth+t.borderLeftWidth+e+r),-(t.borderTopWidth+t.borderBottomWidth+n+i))},PD=function(A,t){return 0===A?t.bounds:(2===A?OD:DD)(t)},MD=function(A,t){return 0===A?t.bounds:(2===A?OD:DD)(t)},kD=function(A){return J6(A)&&A.value===KS.AUTO},KD=function(A){return"number"==typeof A},RD=function(A,t,e){var r=t[0],n=t[1],t=t[2],i=A[0],A=A[1];if(!i)return[0,0];if(z6(i)&&A&&z6(A))return[eS(i,e.width),eS(A,e.height)];var s=KD(t);if(J6(i)&&(i.value===KS.CONTAIN||i.value===KS.COVER))return KD(t)?e.width/e.height<t!=(i.value===KS.COVER)?[e.width,e.width/t]:[e.height*t,e.height]:[e.width,e.height];var o=KD(r),a=KD(n),c=o||a;if(kD(i)&&(!A||kD(A)))return o&&a?[r,n]:s||c?c&&s?[o?r:n*t,a?n:r/t]:[o?r:e.width,a?n:e.height]:[e.width,e.height];if(s)return s=c=0,z6(i)?c=eS(i,e.width):z6(A)&&(s=eS(A,e.height)),kD(i)?c=s*t:A&&!kD(A)||(s=c/t),[c,s];t=null,c=null;if(z6(i)?t=eS(i,e.width):A&&z6(A)&&(c=eS(A,e.height)),null!==(t=null!==(c=null===t||A&&!kD(A)?c:o&&a?t/r*n:e.height)&&kD(i)?o&&a?c/n*r:e.width:t)&&null!==c)return[t,c];throw new Error("Unable to calculate background-size for element")},VD=function(A,t){t=A[t];return void 0===t?A[0]:t},GD=function(A,t,e,r,n){var i=t[0],s=t[1],o=e[0],a=e[1];switch(A){case 2:return[new I(Math.round(r.left),Math.round(r.top+s)),new I(Math.round(r.left+r.width),Math.round(r.top+s)),new I(Math.round(r.left+r.width),Math.round(a+r.top+s)),new I(Math.round(r.left),Math.round(a+r.top+s))];case 3:return[new I(Math.round(r.left+i),Math.round(r.top)),new I(Math.round(r.left+i+o),Math.round(r.top)),new I(Math.round(r.left+i+o),Math.round(r.height+r.top)),new I(Math.round(r.left+i),Math.round(r.height+r.top))];case 1:return[new I(Math.round(r.left+i),Math.round(r.top+s)),new I(Math.round(r.left+i+o),Math.round(r.top+s)),new I(Math.round(r.left+i+o),Math.round(r.top+s+a)),new I(Math.round(r.left+i),Math.round(r.top+s+a))];default:return[new I(Math.round(n.left),Math.round(n.top)),new I(Math.round(n.left+n.width),Math.round(n.top)),new I(Math.round(n.left+n.width),Math.round(n.height+n.top)),new I(Math.round(n.left),Math.round(n.height+n.top))]}},jD="Hidden Text",XD=(WD.prototype.parseMetrics=function(A,t){var e=this._document.createElement("div"),r=this._document.createElement("img"),n=this._document.createElement("span"),i=this._document.body,A=(e.style.visibility="hidden",e.style.fontFamily=A,e.style.fontSize=t,e.style.margin="0",e.style.padding="0",e.style.whiteSpace="nowrap",i.appendChild(e),r.src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",r.width=1,r.height=1,r.style.margin="0",r.style.padding="0",r.style.verticalAlign="baseline",n.style.fontFamily=A,n.style.fontSize=t,n.style.margin="0",n.style.padding="0",n.appendChild(this._document.createTextNode(jD)),e.appendChild(n),e.appendChild(r),r.offsetTop-n.offsetTop+2),t=(e.removeChild(n),e.appendChild(this._document.createTextNode(jD)),e.style.lineHeight="normal",r.style.verticalAlign="super",r.offsetTop-e.offsetTop+2);return i.removeChild(e),{baseline:A,middle:t}},WD.prototype.getMetrics=function(A,t){var e=A+" "+t;return void 0===this._data[e]&&(this._data[e]=this.parseMetrics(A,t)),this._data[e]},WD);function WD(A){this._data={},this._document=A}function JD(A,t){this.context=A,this.options=t}pH(zD,YD=JD),zD.prototype.applyEffects=function(A){for(var t=this;this._activeEffects.length;)this.popEffect();A.forEach(function(A){return t.applyEffect(A)})},zD.prototype.applyEffect=function(A){this.ctx.save(),2===A.type&&(this.ctx.globalAlpha=A.opacity),0===A.type&&(this.ctx.translate(A.offsetX,A.offsetY),this.ctx.transform(A.matrix[0],A.matrix[1],A.matrix[2],A.matrix[3],A.matrix[4],A.matrix[5]),this.ctx.translate(-A.offsetX,-A.offsetY)),wD(A)&&(this.path(A.path),this.ctx.clip()),this._activeEffects.push(A)},zD.prototype.popEffect=function(){this._activeEffects.pop(),this.ctx.restore()},zD.prototype.renderStack=function(t){return mH(this,void 0,void 0,function(){return CH(this,function(A){switch(A.label){case 0:return t.element.container.styles.isVisible()?[4,this.renderStackContent(t)]:[3,2];case 1:A.sent(),A.label=2;case 2:return[2]}})})},zD.prototype.renderNode=function(t){return mH(this,void 0,void 0,function(){return CH(this,function(A){switch(A.label){case 0:return(tN(t.container.flags,16),t.container.styles.isVisible())?[4,this.renderNodeBackgroundAndBorders(t)]:[3,3];case 1:return A.sent(),[4,this.renderNodeContent(t)];case 2:A.sent(),A.label=3;case 3:return[2]}})})},zD.prototype.renderTextWithLetterSpacing=function(e,A,r){var n=this;0===A?this.ctx.fillText(e.text,e.bounds.left,e.bounds.top+r):n_(e.text).reduce(function(A,t){return n.ctx.fillText(t,A,e.bounds.top+r),A+n.ctx.measureText(t).width},e.bounds.left)},zD.prototype.createFontStyle=function(A){var t=A.fontVariant.filter(function(A){return"normal"===A||"small-caps"===A}).join(""),e=rO(A.fontFamily).join(", "),r=W6(A.fontSize)?""+A.fontSize.number+A.fontSize.unit:A.fontSize.number+"px";return[[A.fontStyle,t,A.fontWeight,r,e].join(" "),e,r]},zD.prototype.renderTextNode=function(a,c){return mH(this,void 0,void 0,function(){var t,e,r,n,i,s,o=this;return CH(this,function(A){return e=this.createFontStyle(c),r=e[0],t=e[1],e=e[2],this.ctx.font=r,this.ctx.direction=1===c.direction?"rtl":"ltr",this.ctx.textAlign="left",this.ctx.textBaseline="alphabetic",r=this.fontMetrics.getMetrics(t,e),n=r.baseline,i=r.middle,s=c.paintOrder,a.textBounds.forEach(function(e){s.forEach(function(A){switch(A){case 0:o.ctx.fillStyle=G6(c.color),o.renderTextWithLetterSpacing(e,c.letterSpacing,n);var t=c.textShadow;t.length&&e.text.trim().length&&(t.slice(0).reverse().forEach(function(A){o.ctx.shadowColor=G6(A.color),o.ctx.shadowOffsetX=A.offsetX.number*o.options.scale,o.ctx.shadowOffsetY=A.offsetY.number*o.options.scale,o.ctx.shadowBlur=A.blur.number,o.renderTextWithLetterSpacing(e,c.letterSpacing,n)}),o.ctx.shadowColor="",o.ctx.shadowOffsetX=0,o.ctx.shadowOffsetY=0,o.ctx.shadowBlur=0),c.textDecorationLine.length&&(o.ctx.fillStyle=G6(c.textDecorationColor||c.color),c.textDecorationLine.forEach(function(A){switch(A){case 1:o.ctx.fillRect(e.bounds.left,Math.round(e.bounds.top+n),e.bounds.width,1);break;case 2:o.ctx.fillRect(e.bounds.left,Math.round(e.bounds.top),e.bounds.width,1);break;case 3:o.ctx.fillRect(e.bounds.left,Math.ceil(e.bounds.top+i),e.bounds.width,1)}}));break;case 1:c.webkitTextStrokeWidth&&e.text.trim().length&&(o.ctx.strokeStyle=G6(c.webkitTextStrokeColor),o.ctx.lineWidth=c.webkitTextStrokeWidth,o.ctx.lineJoin=window.chrome?"miter":"round",o.ctx.strokeText(e.text,e.bounds.left,e.bounds.top+n)),o.ctx.strokeStyle="",o.ctx.lineWidth=0,o.ctx.lineJoin="miter"}})}),[2]})})},zD.prototype.renderReplacedElement=function(A,t,e){var r;e&&0<A.intrinsicWidth&&0<A.intrinsicHeight&&(r=OD(A),t=pD(t),this.path(t),this.ctx.save(),this.ctx.clip(),this.ctx.drawImage(e,0,0,A.intrinsicWidth,A.intrinsicHeight,r.left,r.top,r.width,r.height),this.ctx.restore())},zD.prototype.renderNodeContent=function(g){return mH(this,void 0,void 0,function(){var t,e,r,n,i,s,o,a,c,l,u,h,B;return CH(this,function(A){switch(A.label){case 0:this.applyEffects(g.getEffects(4)),t=g.container,e=g.curves,r=t.styles,n=0,i=t.textNodes,A.label=1;case 1:return n<i.length?(s=i[n],[4,this.renderTextNode(s,r)]):[3,4];case 2:A.sent(),A.label=3;case 3:return n++,[3,1];case 4:if(!(t instanceof B_))return[3,8];A.label=5;case 5:return A.trys.push([5,7,,8]),[4,this.context.cache.match(t.src)];case 6:return l=A.sent(),this.renderReplacedElement(t,e,l),[3,8];case 7:return A.sent(),this.context.logger.error("Error loading image "+t.src),[3,8];case 8:if(t instanceof d_&&this.renderReplacedElement(t,e,t.canvas),!(t instanceof m_))return[3,12];A.label=9;case 9:return A.trys.push([9,11,,12]),[4,this.context.cache.match(t.svg)];case 10:return l=A.sent(),this.renderReplacedElement(t,e,l),[3,12];case 11:return A.sent(),this.context.logger.error("Error loading svg "+t.svg.substring(0,255)),[3,12];case 12:return t instanceof V_&&t.tree?[4,new zD(this.context,{scale:this.options.scale,backgroundColor:t.backgroundColor,x:0,y:0,width:t.width,height:t.height}).render(t.tree)]:[3,14];case 13:s=A.sent(),t.width&&t.height&&this.ctx.drawImage(s,0,0,t.width,t.height,t.bounds.left,t.bounds.top,t.bounds.width,t.bounds.height),A.label=14;case 14:if(t instanceof __&&(o=Math.min(t.bounds.width,t.bounds.height),t.type===H_?t.checked&&(this.ctx.save(),this.path([new I(t.bounds.left+.39363*o,t.bounds.top+.79*o),new I(t.bounds.left+.16*o,t.bounds.top+.5549*o),new I(t.bounds.left+.27347*o,t.bounds.top+.44071*o),new I(t.bounds.left+.39694*o,t.bounds.top+.5649*o),new I(t.bounds.left+.72983*o,t.bounds.top+.23*o),new I(t.bounds.left+.84*o,t.bounds.top+.34085*o),new I(t.bounds.left+.39363*o,t.bounds.top+.79*o)]),this.ctx.fillStyle=G6(N_),this.ctx.fill(),this.ctx.restore()):t.type===L_&&t.checked&&(this.ctx.save(),this.ctx.beginPath(),this.ctx.arc(t.bounds.left+o/2,t.bounds.top+o/2,o/4,0,2*Math.PI,!0),this.ctx.fillStyle=G6(N_),this.ctx.fill(),this.ctx.restore())),$D(t)&&t.value.length){switch(o=this.createFontStyle(r),h=o[0],u=o[1],u=this.fontMetrics.getMetrics(h,u).baseline,this.ctx.font=h,this.ctx.fillStyle=G6(r.color),this.ctx.textBaseline="alphabetic",this.ctx.textAlign=tO(t.styles.textAlign),B=OD(t),a=0,t.styles.textAlign){case 1:a+=B.width/2;break;case 2:a+=B.width}c=B.add(a,0,0,-B.height/2+1),this.ctx.save(),this.path([new I(B.left,B.top),new I(B.left+B.width,B.top),new I(B.left+B.width,B.top+B.height),new I(B.left,B.top+B.height)]),this.ctx.clip(),this.renderTextWithLetterSpacing(new t_(t.value,c),r.letterSpacing,u),this.ctx.restore(),this.ctx.textBaseline="alphabetic",this.ctx.textAlign="left"}if(!tN(t.styles.display,2048))return[3,20];if(null===t.styles.listStyleImage)return[3,19];if(0!==(c=t.styles.listStyleImage).type)return[3,18];l=void 0,u=c.url,A.label=15;case 15:return A.trys.push([15,17,,18]),[4,this.context.cache.match(u)];case 16:return l=A.sent(),this.ctx.drawImage(l,t.bounds.left-(l.width+10),t.bounds.top),[3,18];case 17:return A.sent(),this.context.logger.error("Error loading list-style-image "+u),[3,18];case 18:return[3,20];case 19:g.listValue&&-1!==t.styles.listStyleType&&(h=this.createFontStyle(r)[0],this.ctx.font=h,this.ctx.fillStyle=G6(r.color),this.ctx.textBaseline="middle",this.ctx.textAlign="right",B=new yH(t.bounds.left,t.bounds.top+eS(t.styles.paddingTop,t.bounds.width),t.bounds.width,OS(r.lineHeight,r.fontSize.number)/2+1),this.renderTextWithLetterSpacing(new t_(g.listValue,B),r.letterSpacing,OS(r.lineHeight,r.fontSize.number)/2+2),this.ctx.textBaseline="bottom",this.ctx.textAlign="left"),A.label=20;case 20:return[2]}})})},zD.prototype.renderStackContent=function(d){return mH(this,void 0,void 0,function(){var t,e,r,n,i,s,o,a,c,l,u,h,B,g,f;return CH(this,function(A){switch(A.label){case 0:return tN(d.element.container.flags,16),[4,this.renderNodeBackgroundAndBorders(d.element)];case 1:A.sent(),t=0,e=d.negativeZIndex,A.label=2;case 2:return t<e.length?(f=e[t],[4,this.renderStack(f)]):[3,5];case 3:A.sent(),A.label=4;case 4:return t++,[3,2];case 5:return[4,this.renderNodeContent(d.element)];case 6:A.sent(),r=0,n=d.nonInlineLevel,A.label=7;case 7:return r<n.length?(f=n[r],[4,this.renderNode(f)]):[3,10];case 8:A.sent(),A.label=9;case 9:return r++,[3,7];case 10:i=0,s=d.nonPositionedFloats,A.label=11;case 11:return i<s.length?(f=s[i],[4,this.renderStack(f)]):[3,14];case 12:A.sent(),A.label=13;case 13:return i++,[3,11];case 14:o=0,a=d.nonPositionedInlineLevel,A.label=15;case 15:return o<a.length?(f=a[o],[4,this.renderStack(f)]):[3,18];case 16:A.sent(),A.label=17;case 17:return o++,[3,15];case 18:c=0,l=d.inlineLevel,A.label=19;case 19:return c<l.length?(f=l[c],[4,this.renderNode(f)]):[3,22];case 20:A.sent(),A.label=21;case 21:return c++,[3,19];case 22:u=0,h=d.zeroOrAutoZIndexOrTransformedOrOpacity,A.label=23;case 23:return u<h.length?(f=h[u],[4,this.renderStack(f)]):[3,26];case 24:A.sent(),A.label=25;case 25:return u++,[3,23];case 26:B=0,g=d.positiveZIndex,A.label=27;case 27:return B<g.length?(f=g[B],[4,this.renderStack(f)]):[3,30];case 28:A.sent(),A.label=29;case 29:return B++,[3,27];case 30:return[2]}})})},zD.prototype.mask=function(A){this.ctx.beginPath(),this.ctx.moveTo(0,0),this.ctx.lineTo(this.canvas.width,0),this.ctx.lineTo(this.canvas.width,this.canvas.height),this.ctx.lineTo(0,this.canvas.height),this.ctx.lineTo(0,0),this.formatPath(A.slice(0).reverse()),this.ctx.closePath()},zD.prototype.path=function(A){this.ctx.beginPath(),this.formatPath(A),this.ctx.closePath()},zD.prototype.formatPath=function(A){var r=this;A.forEach(function(A,t){var e=QD(A)?A.start:A;0===t?r.ctx.moveTo(e.x,e.y):r.ctx.lineTo(e.x,e.y),QD(A)&&r.ctx.bezierCurveTo(A.startControl.x,A.startControl.y,A.endControl.x,A.endControl.y,A.end.x,A.end.y)})},zD.prototype.renderRepeat=function(A,t,e,r){this.path(A),this.ctx.fillStyle=t,this.ctx.translate(e,r),this.ctx.fill(),this.ctx.translate(-e,-r)},zD.prototype.resizeImage=function(A,t,e){var r;return A.width===t&&A.height===e?A:((r=(null!=(r=this.canvas.ownerDocument)?r:document).createElement("canvas")).width=Math.max(1,t),r.height=Math.max(1,e),r.getContext("2d").drawImage(A,0,0,A.width,A.height,0,0,t,e),r)},zD.prototype.renderBackgroundImage=function(L){return mH(this,void 0,void 0,function(){var I,t,H,e,r,n;return CH(this,function(A){switch(A.label){case 0:I=L.styles.backgroundImage.length-1,t=function(o){var a,c,l,u,h,B,g,f,d,p,w,m,C,Q,y,F,U,b,v,E,x;return CH(this,function(A){switch(A.label){case 0:if(0!==o.type)return[3,5];a=void 0,c=o.url,A.label=1;case 1:return A.trys.push([1,3,,4]),[4,H.context.cache.match(c)];case 2:return a=A.sent(),[3,4];case 3:return A.sent(),H.context.logger.error("Error loading background-image "+c),[3,4];case 4:return a&&(p=ND(L,I,[a.width,a.height,a.width/a.height]),B=p[0],m=p[1],C=p[2],d=p[3],p=p[4],u=H.ctx.createPattern(H.resizeImage(a,d,p),"repeat"),H.renderRepeat(B,u,m,C)),[3,6];case 5:1===o.type?(w=ND(L,I,[null,null,null]),B=w[0],m=w[1],C=w[2],d=w[3],p=w[4],t=o.angle,e=d,r=p,t="number"==typeof t?t:FS(t,e,r),n=Math.abs(e*Math.sin(t))+Math.abs(r*Math.cos(t)),e/=2,r/=2,i=n/2,s=Math.sin(t-Math.PI/2)*i,t=Math.cos(t-Math.PI/2)*i,Q=(w=[n,e-t,e+t,r-s,r+s])[0],h=w[1],f=w[2],g=w[3],w=w[4],(F=document.createElement("canvas")).width=d,F.height=p,y=F.getContext("2d"),l=y.createLinearGradient(h,g,f,w),fS(o.stops,Q).forEach(function(A){return l.addColorStop(A.stop,G6(A.color))}),y.fillStyle=l,y.fillRect(0,0,d,p),0<d&&0<p&&(u=H.ctx.createPattern(F,"repeat"),H.renderRepeat(B,u,m,C))):2===o.type&&(h=ND(L,I,[null,null,null]),B=h[0],g=h[1],f=h[2],d=h[3],p=h[4],w=0===o.position.length?[$6]:o.position,m=eS(w[0],d),C=eS(w[w.length-1],p),Q=((A,t,e,r,n)=>{var i,s,o,a=0,c=0;switch(A.size){case 0:0===A.shape?a=c=Math.min(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(a=Math.min(Math.abs(t),Math.abs(t-r)),c=Math.min(Math.abs(e),Math.abs(e-n)));break;case 2:0===A.shape?a=c=Math.min(US(t,e),US(t,e-n),US(t-r,e),US(t-r,e-n)):1===A.shape&&(i=Math.min(Math.abs(e),Math.abs(e-n))/Math.min(Math.abs(t),Math.abs(t-r)),o=(s=bS(r,n,t,e,!0))[0],c=i*(a=US(o-t,(s[1]-e)/i)));break;case 1:0===A.shape?a=c=Math.max(Math.abs(t),Math.abs(t-r),Math.abs(e),Math.abs(e-n)):1===A.shape&&(a=Math.max(Math.abs(t),Math.abs(t-r)),c=Math.max(Math.abs(e),Math.abs(e-n)));break;case 3:0===A.shape?a=c=Math.max(US(t,e),US(t,e-n),US(t-r,e),US(t-r,e-n)):1===A.shape&&(i=Math.max(Math.abs(e),Math.abs(e-n))/Math.max(Math.abs(t),Math.abs(t-r)),o=(s=bS(r,n,t,e,!1))[0],c=i*(a=US(o-t,(s[1]-e)/i)))}return Array.isArray(A.size)&&(a=eS(A.size[0],r),c=2===A.size.length?eS(A.size[1],n):a),[a,c]})(o,m,C,d,p),y=Q[0],F=Q[1],0<y)&&0<F&&(U=H.ctx.createRadialGradient(g+m,f+C,0,g+m,f+C,y),fS(o.stops,2*y).forEach(function(A){return U.addColorStop(A.stop,G6(A.color))}),H.path(B),H.ctx.fillStyle=U,y!==F?(b=L.bounds.left+.5*L.bounds.width,v=L.bounds.top+.5*L.bounds.height,x=1/(E=F/y),H.ctx.save(),H.ctx.translate(b,v),H.ctx.transform(1,0,0,E,0,0),H.ctx.translate(-b,-v),H.ctx.fillRect(g,x*(f-v)+v,d,p*x),H.ctx.restore()):H.ctx.fill()),A.label=6;case 6:return I--,[2]}var t,e,r,n,i,s})},H=this,e=0,r=L.styles.backgroundImage.slice(0).reverse(),A.label=1;case 1:return e<r.length?(n=r[e],[5,t(n)]):[3,4];case 2:A.sent(),A.label=3;case 3:return e++,[3,1];case 4:return[2]}})})},zD.prototype.renderSolidBorder=function(t,e,r){return mH(this,void 0,void 0,function(){return CH(this,function(A){return this.path(HD(r,e)),this.ctx.fillStyle=G6(t),this.ctx.fill(),[2]})})},zD.prototype.renderDoubleBorder=function(e,r,n,i){return mH(this,void 0,void 0,function(){var t;return CH(this,function(A){switch(A.label){case 0:return r<3?[4,this.renderSolidBorder(e,n,i)]:[3,2];case 1:return A.sent(),[2];case 2:return t=((A,t)=>{switch(t){case 0:return SD(A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox,A.topRightBorderBox,A.topRightBorderDoubleOuterBox);case 1:return SD(A.topRightBorderBox,A.topRightBorderDoubleOuterBox,A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox);case 2:return SD(A.bottomRightBorderBox,A.bottomRightBorderDoubleOuterBox,A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox);default:return SD(A.bottomLeftBorderBox,A.bottomLeftBorderDoubleOuterBox,A.topLeftBorderBox,A.topLeftBorderDoubleOuterBox)}})(i,n),this.path(t),this.ctx.fillStyle=G6(e),this.ctx.fill(),t=((A,t)=>{switch(t){case 0:return SD(A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox,A.topRightBorderDoubleInnerBox,A.topRightPaddingBox);case 1:return SD(A.topRightBorderDoubleInnerBox,A.topRightPaddingBox,A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox);case 2:return SD(A.bottomRightBorderDoubleInnerBox,A.bottomRightPaddingBox,A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox);default:return SD(A.bottomLeftBorderDoubleInnerBox,A.bottomLeftPaddingBox,A.topLeftBorderDoubleInnerBox,A.topLeftPaddingBox)}})(i,n),this.path(t),this.ctx.fill(),[2]}})})},zD.prototype.renderNodeBackgroundAndBorders=function(l){return mH(this,void 0,void 0,function(){var t,e,r,n,i,s,o,a,c=this;return CH(this,function(A){switch(A.label){case 0:return(this.applyEffects(l.getEffects(2)),t=l.container.styles,e=!lS(t.backgroundColor)||t.backgroundImage.length,r=[{style:t.borderTopStyle,color:t.borderTopColor,width:t.borderTopWidth},{style:t.borderRightStyle,color:t.borderRightColor,width:t.borderRightWidth},{style:t.borderBottomStyle,color:t.borderBottomColor,width:t.borderBottomWidth},{style:t.borderLeftStyle,color:t.borderLeftColor,width:t.borderLeftWidth}],n=AO(VD(t.backgroundClip,0),l.curves),e||t.boxShadow.length)?(this.ctx.save(),this.path(n),this.ctx.clip(),lS(t.backgroundColor)||(this.ctx.fillStyle=G6(t.backgroundColor),this.ctx.fill()),[4,this.renderBackgroundImage(l.container)]):[3,2];case 1:A.sent(),this.ctx.restore(),t.boxShadow.slice(0).reverse().forEach(function(A){c.ctx.save();var e,r,n,i,t=dD(l.curves),s=A.inset?0:1e4,o=(e=-s+(A.inset?1:-1)*A.spread.number,r=(A.inset?1:-1)*A.spread.number,n=A.spread.number*(A.inset?-2:2),i=A.spread.number*(A.inset?-2:2),t.map(function(A,t){switch(t){case 0:return A.add(e,r);case 1:return A.add(e+n,r);case 2:return A.add(e+n,r+i);case 3:return A.add(e,r+i)}return A}));A.inset?(c.path(t),c.ctx.clip(),c.mask(o)):(c.mask(t),c.ctx.clip(),c.path(o)),c.ctx.shadowOffsetX=A.offsetX.number+s,c.ctx.shadowOffsetY=A.offsetY.number,c.ctx.shadowColor=G6(A.color),c.ctx.shadowBlur=A.blur.number,c.ctx.fillStyle=A.inset?G6(A.color):"rgba(0,0,0,1)",c.ctx.fill(),c.ctx.restore()}),A.label=2;case 2:s=i=0,o=r,A.label=3;case 3:return s<o.length?0!==(a=o[s]).style&&!lS(a.color)&&0<a.width?2!==a.style?[3,5]:[4,this.renderDashedDottedBorder(a.color,a.width,i,l.curves,2)]:[3,11]:[3,13];case 4:return A.sent(),[3,11];case 5:return 3!==a.style?[3,7]:[4,this.renderDashedDottedBorder(a.color,a.width,i,l.curves,3)];case 6:return A.sent(),[3,11];case 7:return 4!==a.style?[3,9]:[4,this.renderDoubleBorder(a.color,a.width,i,l.curves)];case 8:return A.sent(),[3,11];case 9:return[4,this.renderSolidBorder(a.color,i,l.curves)];case 10:A.sent(),A.label=11;case 11:i++,A.label=12;case 12:return s++,[3,3];case 13:return[2]}})})},zD.prototype.renderDashedDottedBorder=function(h,B,g,f,d){return mH(this,void 0,void 0,function(){var t,e,r,n,i,s,o,a,c,l,u;return CH(this,function(A){return this.ctx.save(),i=((A,t)=>{switch(t){case 0:return LD(A.topLeftBorderStroke,A.topRightBorderStroke);case 1:return LD(A.topRightBorderStroke,A.bottomRightBorderStroke);case 2:return LD(A.bottomRightBorderStroke,A.bottomLeftBorderStroke);default:return LD(A.bottomLeftBorderStroke,A.topLeftBorderStroke)}})(f,g),t=HD(f,g),2===d&&(this.path(t),this.ctx.clip()),c=(QD(t[0])?(e=t[0].start.x,t[0].start):(e=t[0].x,t[0])).y,n=(QD(t[1])?(r=t[1].end.x,t[1].end):(r=t[1].x,t[1])).y,c=0===g||2===g?Math.abs(e-r):Math.abs(c-n),this.ctx.beginPath(),3===d?this.formatPath(i):this.formatPath(t.slice(0,2)),n=B<3?3*B:2*B,i=B<3?2*B:B,3===d&&(i=n=B),s=!0,c<=2*n?s=!1:c<=2*n+i?(n*=o=c/(2*n+i),i*=o):(o=Math.floor((c+i)/(n+i)),a=(c-o*n)/(o-1),i=(c=(c-(o+1)*n)/o)<=0||Math.abs(i-a)<Math.abs(i-c)?a:c),s&&(3===d?this.ctx.setLineDash([0,n+i]):this.ctx.setLineDash([n,i])),3===d?(this.ctx.lineCap="round",this.ctx.lineWidth=B):this.ctx.lineWidth=2*B+1.1,this.ctx.strokeStyle=G6(h),this.ctx.stroke(),this.ctx.setLineDash([]),2===d&&(QD(t[0])&&(l=t[3],u=t[0],this.ctx.beginPath(),this.formatPath([new I(l.end.x,l.end.y),new I(u.start.x,u.start.y)]),this.ctx.stroke()),QD(t[1]))&&(l=t[1],u=t[2],this.ctx.beginPath(),this.formatPath([new I(l.end.x,l.end.y),new I(u.start.x,u.start.y)]),this.ctx.stroke()),this.ctx.restore(),[2]})})},zD.prototype.render=function(n){return mH(this,void 0,void 0,function(){return CH(this,function(A){switch(A.label){case 0:return this.options.backgroundColor&&(this.ctx.fillStyle=G6(this.options.backgroundColor),this.ctx.fillRect(this.options.x,this.options.y,this.options.width,this.options.height)),t=new xD(t=n,null),e=new ED(t),_D(t,e,e,r=[]),TD(t.container,r),[4,this.renderStack(e)];case 1:return A.sent(),this.applyEffects([]),[2,this.canvas]}var t,e,r})})};var YD,qD=zD;function zD(A,t){A=YD.call(this,A,t)||this;return A._activeEffects=[],A.canvas=t.canvas||document.createElement("canvas"),A.ctx=A.canvas.getContext("2d"),t.canvas||(A.canvas.width=Math.floor(t.width*t.scale),A.canvas.height=Math.floor(t.height*t.scale),A.canvas.style.width=t.width+"px",A.canvas.style.height=t.height+"px"),A.fontMetrics=new XD(document),A.ctx.scale(A.options.scale,A.options.scale),A.ctx.translate(-t.x,-t.y),A.ctx.textBaseline="bottom",A._activeEffects=[],A.context.logger.debug("Canvas renderer initialized ("+t.width+"x"+t.height+") with scale "+t.scale),A}var ZD,$D=function(A){return A instanceof k_||A instanceof O_||A instanceof __&&A.type!==L_&&A.type!==H_},AO=function(A,t){switch(A){case 0:return dD(t);case 2:return[t.topLeftContentBox,t.topRightContentBox,t.bottomRightContentBox,t.bottomLeftContentBox];default:return pD(t)}},tO=function(A){switch(A){case 1:return"center";case 2:return"right";default:return"left"}},eO=["-apple-system","system-ui"],rO=function(A){return/iPhone OS 15_(0|1)/.test(window.navigator.userAgent)?A.filter(function(A){return-1===eO.indexOf(A)}):A},nO=(pH(iO,ZD=JD),iO.prototype.render=function(e){return mH(this,void 0,void 0,function(){var t;return CH(this,function(A){switch(A.label){case 0:return t=IN(this.options.width*this.options.scale,this.options.height*this.options.scale,this.options.scale,this.options.scale,e),[4,sO(t)];case 1:return t=A.sent(),this.options.backgroundColor&&(this.ctx.fillStyle=G6(this.options.backgroundColor),this.ctx.fillRect(0,0,this.options.width*this.options.scale,this.options.height*this.options.scale)),this.ctx.drawImage(t,-this.options.x*this.options.scale,-this.options.y*this.options.scale),[2,this.canvas]}})})},iO);function iO(A,t){A=ZD.call(this,A,t)||this;return A.canvas=t.canvas||document.createElement("canvas"),A.ctx=A.canvas.getContext("2d"),A.options=t,A.canvas.width=Math.floor(t.width*t.scale),A.canvas.height=Math.floor(t.height*t.scale),A.canvas.style.width=t.width+"px",A.canvas.style.height=t.height+"px",A.ctx.scale(A.options.scale,A.options.scale),A.ctx.translate(-t.x,-t.y),A.context.logger.debug("EXPERIMENTAL ForeignObject renderer initialized ("+t.width+"x"+t.height+" at "+t.x+","+t.y+") with scale "+t.scale),A}var sO=function(r){return new Promise(function(A,t){var e=new Image;e.onload=function(){A(e)},e.onerror=t,e.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent((new XMLSerializer).serializeToString(r))})},oO=(aO.prototype.debug=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.debug?console.debug.apply(console,QH([this.id,this.getTime()+"ms"],A)):this.info.apply(this,A))},aO.prototype.getTime=function(){return Date.now()-this.start},aO.prototype.info=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&"undefined"!=typeof window&&window.console&&"function"==typeof console.info&&console.info.apply(console,QH([this.id,this.getTime()+"ms"],A))},aO.prototype.warn=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.warn?console.warn.apply(console,QH([this.id,this.getTime()+"ms"],A)):this.info.apply(this,A))},aO.prototype.error=function(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];this.enabled&&("undefined"!=typeof window&&window.console&&"function"==typeof console.error?console.error.apply(console,QH([this.id,this.getTime()+"ms"],A)):this.info.apply(this,A))},aO.instances={},aO);function aO(A){var t=A.id,A=A.enabled;this.id=t,this.enabled=A,this.start=Date.now()}lO.instanceCount=1;var cO=lO;function lO(A,t){this.windowBounds=t,this.instanceName="#"+lO.instanceCount++,this.logger=new oO({id:this.instanceName,enabled:A.logging}),this.cache=null!=(t=A.cache)?t:new eD(this,A)}"undefined"!=typeof window&&AD.setContext(window);var uO,hO=function(A,t,e){var r=t.ownerDocument,n=r.documentElement?mS(A,getComputedStyle(r.documentElement).backgroundColor):CS.TRANSPARENT,i=r.body?mS(A,getComputedStyle(r.body).backgroundColor):CS.TRANSPARENT,A="string"==typeof e?mS(A,e):null===e?CS.TRANSPARENT:4294967295;return t===r.documentElement?lS(n)?lS(i)?A:i:n:A},BO=Object.freeze({__proto__:null,default:function(A,t){return p=A,w=t=void 0===t?{}:t,mH(void 0,void 0,void 0,function(){var t,e,r,n,i,s,o,a,c,l,u,h,B,g,f,d;return CH(this,function(A){switch(A.label){case 0:if(!p||"object"!=typeof p)return[2,Promise.reject("Invalid element provided as first argument")];if(!(B=p.ownerDocument))throw new Error("Element is not attached to a Document");if(t=B.defaultView)return g={allowTaint:null!=(g=w.allowTaint)&&g,imageTimeout:null!=(g=w.imageTimeout)?g:15e3,proxy:w.proxy,useCORS:null!=(g=w.useCORS)&&g},l=wH({logging:null==(l=w.logging)||l,cache:w.cache},g),g={windowWidth:null!=(g=w.windowWidth)?g:t.innerWidth,windowHeight:null!=(g=w.windowHeight)?g:t.innerHeight,scrollX:null!=(g=w.scrollX)?g:t.pageXOffset,scrollY:null!=(g=w.scrollY)?g:t.pageYOffset},g=new yH(g.scrollX,g.scrollY,g.windowWidth,g.windowHeight),l=new cO(l,g),u=null!=(u=w.foreignObjectRendering)&&u,h={allowTaint:null!=(h=w.allowTaint)&&h,onclone:w.onclone,ignoreElements:w.ignoreElements,inlineImages:u,copyStyles:u},l.logger.debug("Starting document clone with size "+g.width+"x"+g.height+" scrolled to "+-g.left+","+-g.top),h=new PT(l,p,h),(e=h.clonedReferenceElement)?[4,h.toIFrame(B,g)]:[2,Promise.reject("Unable to find element in cloned iframe")];throw new Error("Document is not attached to a Window");case 1:return(r=A.sent(),h=cT(e)||oT(e)?bH(e.ownerDocument):UH(l,e),n=h.width,i=h.height,s=h.left,o=h.top,a=hO(l,e,w.backgroundColor),f={canvas:w.canvas,backgroundColor:a,scale:null!=(g=null!=(B=w.scale)?B:t.devicePixelRatio)?g:1,x:(null!=(f=w.x)?f:0)+s,y:(null!=(f=w.y)?f:0)+o,width:null!=(f=w.width)?f:Math.ceil(n),height:null!=(f=w.height)?f:Math.ceil(i)},u)?(l.logger.debug("Document cloned, using foreign object rendering"),[4,new nO(l,f).render(e)]):[3,3];case 2:return c=A.sent(),[3,5];case 3:return l.logger.debug("Document cloned, element located at "+s+","+o+" with size "+n+"x"+i+" using computed rendering"),l.logger.debug("Starting DOM parsing"),d=z_(l,e),a===d.styles.backgroundColor&&(d.styles.backgroundColor=CS.TRANSPARENT),l.logger.debug("Starting renderer for element at "+f.x+","+f.y+" with size "+f.width+"x"+f.height),[4,new qD(l,f).render(d)];case 4:c=A.sent(),A.label=5;case 5:return null!=(d=w.removeContainer)&&!d||PT.destroy(r)||l.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore"),l.logger.debug("Finished rendering"),[2,c]}})});var p,w}});
|
|
64
|
+
/*! @license DOMPurify 3.3.1 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.3.1/LICENSE */
|
|
65
|
+
let{entries:gO,setPrototypeOf:fO,isFrozen:dO,getPrototypeOf:pO,getOwnPropertyDescriptor:wO}=Object,{freeze:mO,seal:CO,create:QO}=Object,{apply:yO,construct:FO}="undefined"!=typeof Reflect&&Reflect,UO=(mO=mO||function(A){return A},CO=CO||function(A){return A},yO=yO||function(A,t){for(var e=arguments.length,r=new Array(2<e?e-2:0),n=2;n<e;n++)r[n-2]=arguments[n];return A.apply(t,r)},FO=FO||function(A){for(var t=arguments.length,e=new Array(1<t?t-1:0),r=1;r<t;r++)e[r-1]=arguments[r];return new A(...e)},PO(Array.prototype.forEach)),bO=PO(Array.prototype.lastIndexOf),vO=PO(Array.prototype.pop),EO=PO(Array.prototype.push),xO=PO(Array.prototype.splice),IO=PO(String.prototype.toLowerCase),HO=PO(String.prototype.toString),LO=PO(String.prototype.match),SO=PO(String.prototype.replace),NO=PO(String.prototype.indexOf),_O=PO(String.prototype.trim),TO=PO(Object.prototype.hasOwnProperty),DO=PO(RegExp.prototype.test),OO=(uO=TypeError,function(){for(var A=arguments.length,t=new Array(A),e=0;e<A;e++)t[e]=arguments[e];return FO(uO,t)});function PO(n){return function(A){A instanceof RegExp&&(A.lastIndex=0);for(var t=arguments.length,e=new Array(1<t?t-1:0),r=1;r<t;r++)e[r-1]=arguments[r];return yO(n,A,e)}}function jA(t,e,A){var r,n=2<arguments.length&&void 0!==A?A:IO;fO&&fO(t,null);let i=e.length;for(;i--;){let A=e[i];"string"==typeof A&&(r=n(A))!==A&&(dO(e)||(e[i]=r),A=r),t[A]=!0}return t}function MO(A){var t,e,r=QO(null);for([t,e]of gO(A))TO(A,t)&&(Array.isArray(e)?r[t]=(t=>{for(let A=0;A<t.length;A++)TO(t,A)||(t[A]=null);return t})(e):e&&"object"==typeof e&&e.constructor===Object?r[t]=MO(e):r[t]=e);return r}function kO(A,t){for(;null!==A;){var e=wO(A,t);if(e){if(e.get)return PO(e.get);if("function"==typeof e.value)return PO(e.value)}A=pO(A)}return function(){return null}}let KO=mO(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","search","section","select","shadow","slot","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),RO=mO(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","enterkeyhint","exportparts","filter","font","g","glyph","glyphref","hkern","image","inputmode","line","lineargradient","marker","mask","metadata","mpath","part","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),VO=mO(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),GO=mO(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),jO=mO(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),XO=mO(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),WO=mO(["#text"]),JO=mO(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","exportparts","face","for","headers","height","hidden","high","href","hreflang","id","inert","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","part","pattern","placeholder","playsinline","popover","popovertarget","popovertargetaction","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","slot","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","wrap","xmlns","slot"]),YO=mO(["accent-height","accumulate","additive","alignment-baseline","amplitude","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","exponent","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","intercept","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","mask-type","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","slope","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),qO=mO(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),zO=mO(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]);y=CO(/\{\{[\w\W]*|[\w\W]*\}\}/gm),Ww=CO(/<%[\w\W]*|[\w\W]*%>/gm),Q=CO(/\$\{[\w\W]*/gm),e5=CO(/^data-[\-\w.\u00B7-\uFFFF]+$/),U0=CO(/^aria-[\-\w]+$/);let ZO=CO(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i);Jw=CO(/^(?:\w+script|data):/i),S2=CO(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g);let $O=CO(/^html$/i);var p=CO(/^[a-z][.\w]*(-[.\w]+)+$/i),AP=Object.freeze({__proto__:null,ARIA_ATTR:U0,ATTR_WHITESPACE:S2,CUSTOM_ELEMENT:p,DATA_ATTR:e5,DOCTYPE_NAME:$O,ERB_EXPR:Ww,IS_ALLOWED_URI:ZO,IS_SCRIPT_OR_DATA:Jw,MUSTACHE_EXPR:y,TMPLIT_EXPR:Q});function tP(){return{afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}}let eP={element:1,attribute:2,text:3,cdataSection:4,entityReference:5,entityNode:6,progressingInstruction:7,comment:8,document:9,documentType:10,documentFragment:11,notation:12};var g=function i(A){A=0<arguments.length&&void 0!==A?A:"undefined"==typeof window?null:window;let l=A=>i(A);if(l.version="3.3.1",l.removed=[],!A||!A.document||A.document.nodeType!==eP.document||!A.Element)return l.isSupported=!1,l;let n=A.document,o=n,O=o.currentScript,{DocumentFragment:P,HTMLTemplateElement:M,Node:k,Element:K,NodeFilter:t,NamedNodeMap:R=A.NamedNodeMap||A.MozNamedAttrMap,HTMLFormElement:V,DOMParser:G,trustedTypes:u}=A;A=K.prototype;let j=kO(A,"cloneNode"),X=kO(A,"remove"),W=kO(A,"nextSibling"),J=kO(A,"childNodes"),s=kO(A,"parentNode");"function"==typeof M&&(A=n.createElement("template")).content&&A.content.ownerDocument&&(n=A.content.ownerDocument);function Y(A){return A instanceof RegExp||A instanceof Function}function q(){let A=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};if(!r||r!==A){if(A=MO(A=A&&"object"==typeof A?A:{}),N=-1===DA.indexOf(A.PARSER_MEDIA_TYPE)?"text/html":A.PARSER_MEDIA_TYPE,_="application/xhtml+xml"===N?HO:IO,c=TO(A,"ALLOWED_TAGS")?jA({},A.ALLOWED_TAGS,_):fA,f=TO(A,"ALLOWED_ATTR")?jA({},A.ALLOWED_ATTR,_):dA,NA=TO(A,"ALLOWED_NAMESPACES")?jA({},A.ALLOWED_NAMESPACES,HO):_A,HA=TO(A,"ADD_URI_SAFE_ATTR")?jA(MO(LA),A.ADD_URI_SAFE_ATTR,_):LA,xA=TO(A,"ADD_DATA_URI_TAGS")?jA(MO(IA),A.ADD_DATA_URI_TAGS,_):IA,v=TO(A,"FORBID_CONTENTS")?jA({},A.FORBID_CONTENTS,_):EA,p=TO(A,"FORBID_TAGS")?jA({},A.FORBID_TAGS,_):MO({}),pA=TO(A,"FORBID_ATTR")?jA({},A.FORBID_ATTR,_):MO({}),e=!!TO(A,"USE_PROFILES")&&A.USE_PROFILES,wA=!1!==A.ALLOW_ARIA_ATTR,mA=!1!==A.ALLOW_DATA_ATTR,CA=A.ALLOW_UNKNOWN_PROTOCOLS||!1,QA=!1!==A.ALLOW_SELF_CLOSE_IN_ATTR,m=A.SAFE_FOR_TEMPLATES||!1,C=!1!==A.SAFE_FOR_XML,Q=A.WHOLE_DOCUMENT||!1,y=A.RETURN_DOM||!1,F=A.RETURN_DOM_FRAGMENT||!1,U=A.RETURN_TRUSTED_TYPE||!1,FA=A.FORCE_BODY||!1,UA=!1!==A.SANITIZE_DOM,bA=A.SANITIZE_NAMED_PROPS||!1,vA=!1!==A.KEEP_CONTENT,b=A.IN_PLACE||!1,gA=A.ALLOWED_URI_REGEXP||ZO,H=A.NAMESPACE||I,L=A.MATHML_TEXT_INTEGRATION_POINTS||L,S=A.HTML_INTEGRATION_POINTS||S,d=A.CUSTOM_ELEMENT_HANDLING||{},A.CUSTOM_ELEMENT_HANDLING&&Y(A.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(d.tagNameCheck=A.CUSTOM_ELEMENT_HANDLING.tagNameCheck),A.CUSTOM_ELEMENT_HANDLING&&Y(A.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(d.attributeNameCheck=A.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),A.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof A.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(d.allowCustomizedBuiltInElements=A.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),m&&(mA=!1),F&&(y=!0),e&&(c=jA({},WO),f=[],!0===e.html&&(jA(c,KO),jA(f,JO)),!0===e.svg&&(jA(c,RO),jA(f,YO),jA(f,zO)),!0===e.svgFilters&&(jA(c,VO),jA(f,YO),jA(f,zO)),!0===e.mathMl)&&(jA(c,jO),jA(f,qO),jA(f,zO)),A.ADD_TAGS&&("function"==typeof A.ADD_TAGS?w.tagCheck=A.ADD_TAGS:jA(c=c===fA?MO(c):c,A.ADD_TAGS,_)),A.ADD_ATTR&&("function"==typeof A.ADD_ATTR?w.attributeCheck=A.ADD_ATTR:jA(f=f===dA?MO(f):f,A.ADD_ATTR,_)),A.ADD_URI_SAFE_ATTR&&jA(HA,A.ADD_URI_SAFE_ATTR,_),A.FORBID_CONTENTS&&jA(v=v===EA?MO(v):v,A.FORBID_CONTENTS,_),A.ADD_FORBID_CONTENTS&&jA(v=v===EA?MO(v):v,A.ADD_FORBID_CONTENTS,_),vA&&(c["#text"]=!0),Q&&jA(c,["html","head","body"]),c.table&&(jA(c,["tbody"]),delete p.tbody),A.TRUSTED_TYPES_POLICY){if("function"!=typeof A.TRUSTED_TYPES_POLICY.createHTML)throw OO('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof A.TRUSTED_TYPES_POLICY.createScriptURL)throw OO('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');B=A.TRUSTED_TYPES_POLICY,a=B.createHTML("")}else null!==(B=void 0===B?((A,t)=>{if("object"!=typeof A||"function"!=typeof A.createPolicy)return null;let e=null;var r="data-tt-policy-suffix",t="dompurify"+((e=t&&t.hasAttribute(r)?t.getAttribute(r):e)?"#"+e:"");try{return A.createPolicy(t,{createHTML(A){return A},createScriptURL(A){return A}})}catch(A){return console.warn("TrustedTypes policy "+t+" could not be created."),null}})(u,O):B)&&"string"==typeof a&&(a=B.createHTML(""));mO&&mO(A),r=A}}function h(A,t){try{EO(l.removed,{attribute:t.getAttributeNode(A),from:t})}catch(A){EO(l.removed,{attribute:null,from:t})}if(t.removeAttribute(A),"is"===A)if(y||F)try{T(t)}catch(A){}else try{t.setAttribute(A,"")}catch(A){}}function z(A){let t=null,e=null;FA?A="<remove></remove>"+A:(r=LO(A,/^[\r\n\t ]+/),e=r&&r[0]),"application/xhtml+xml"===N&&H===I&&(A='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+A+"</body></html>");var r=B?B.createHTML(A):A;if(H===I)try{t=(new G).parseFromString(r,N)}catch(A){}if(!t||!t.documentElement){t=tA.createDocument(H,"template",null);try{t.documentElement.innerHTML=SA?a:r}catch(A){}}return r=t.body||t.documentElement,A&&e&&r.insertBefore(n.createTextNode(e),r.childNodes[0]||null),H===I?nA.call(t,Q?"html":"body")[0]:Q?t.documentElement:r}function Z(A){return eA.call(A.ownerDocument||A,A,t.SHOW_ELEMENT|t.SHOW_COMMENT|t.SHOW_TEXT|t.SHOW_PROCESSING_INSTRUCTION|t.SHOW_CDATA_SECTION,null)}function $(A){return A instanceof V&&("string"!=typeof A.nodeName||"string"!=typeof A.textContent||"function"!=typeof A.removeChild||!(A.attributes instanceof R)||"function"!=typeof A.removeAttribute||"function"!=typeof A.setAttribute||"string"!=typeof A.namespaceURI||"function"!=typeof A.insertBefore||"function"!=typeof A.hasChildNodes)}function AA(A){return"function"==typeof k&&A instanceof k}let B,a="",{implementation:tA,createNodeIterator:eA,createDocumentFragment:rA,getElementsByTagName:nA}=n,iA=o.importNode,g=tP(),{MUSTACHE_EXPR:sA,ERB_EXPR:oA,TMPLIT_EXPR:aA,DATA_ATTR:cA,ARIA_ATTR:lA,IS_SCRIPT_OR_DATA:uA,ATTR_WHITESPACE:hA,CUSTOM_ELEMENT:BA}=(l.isSupported="function"==typeof gO&&"function"==typeof s&&tA&&void 0!==tA.createHTMLDocument,AP),gA=AP.IS_ALLOWED_URI,c=null,fA=jA({},[...KO,...RO,...VO,...jO,...WO]),f=null,dA=jA({},[...JO,...YO,...qO,...zO]),d=Object.seal(QO(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),p=null,pA=null,w=Object.seal(QO(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}})),wA=!0,mA=!0,CA=!1,QA=!0,m=!1,C=!0,Q=!1,yA=!1,FA=!1,y=!1,F=!1,U=!1,UA=!0,bA=!1,vA=!0,b=!1,e={},v=null,EA=jA({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]),xA=null,IA=jA({},["audio","video","img","source","image","track"]),HA=null,LA=jA({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),E="http://www.w3.org/1998/Math/MathML",x="http://www.w3.org/2000/svg",I="http://www.w3.org/1999/xhtml",H=I,SA,NA=null,_A=jA({},[E,x,I],HO),L=jA({},["mi","mo","mn","ms","mtext"]),S=jA({},["annotation-xml"]),TA=jA({},["title","style","font","a","script"]),N=null,DA=["application/xhtml+xml","text/html"],_=null,r=null,OA=n.createElement("form"),PA=jA({},[...RO,...VO,...GO]),MA=jA({},[...jO,...XO]),T=function(t){EO(l.removed,{element:t});try{s(t).removeChild(t)}catch(A){X(t)}};function D(A,t,e){UO(A,A=>{A.call(l,t,e,r)})}function kA(t){let e=null;if(D(g.beforeSanitizeElements,t,null),!$(t)){var A=_(t.nodeName);if(D(g.uponSanitizeElement,t,{tagName:A,allowedTags:c}),!(C&&t.hasChildNodes()&&!AA(t.firstElementChild)&&DO(/<[/\w!]/g,t.innerHTML)&&DO(/<[/\w!]/g,t.textContent)||t.nodeType===eP.progressingInstruction||C&&t.nodeType===eP.comment&&DO(/<[/\w]/g,t.data))){if(w.tagCheck instanceof Function&&w.tagCheck(A)||c[A]&&!p[A])return t instanceof K&&!(A=>{let t=s(A);t&&t.tagName||(t={namespaceURI:H,tagName:"template"});var e=IO(A.tagName),r=IO(t.tagName);return!!NA[A.namespaceURI]&&(A.namespaceURI===x?t.namespaceURI===I?"svg"===e:t.namespaceURI===E?"svg"===e&&("annotation-xml"===r||L[r]):Boolean(PA[e]):A.namespaceURI===E?t.namespaceURI===I?"math"===e:t.namespaceURI===x?"math"===e&&S[r]:Boolean(MA[e]):A.namespaceURI===I?!(t.namespaceURI===x&&!S[r]||t.namespaceURI===E&&!L[r]||MA[e])&&(TA[e]||!PA[e]):!("application/xhtml+xml"!==N||!NA[A.namespaceURI]))})(t)||("noscript"===A||"noembed"===A||"noframes"===A)&&DO(/<\/no(script|embed|frames)/i,t.innerHTML)?T(t):(m&&t.nodeType===eP.text&&(e=t.textContent,UO([sA,oA,aA],A=>{e=SO(e,A," ")}),t.textContent!==e)&&(EO(l.removed,{element:t.cloneNode()}),t.textContent=e),D(g.afterSanitizeElements,t,null));if(!p[A]&&GA(A)){if(d.tagNameCheck instanceof RegExp&&DO(d.tagNameCheck,A))return;if(d.tagNameCheck instanceof Function&&d.tagNameCheck(A))return}if(vA&&!v[A]){var r=s(t)||t.parentNode,n=J(t)||t.childNodes;if(n&&r)for(let A=n.length-1;0<=A;--A){var i=j(n[A],!0);i.__removalCount=(t.__removalCount||0)+1,r.insertBefore(i,W(t))}}}}T(t)}function KA(A,t,e){if(UA&&("id"===t||"name"===t)&&(e in n||e in OA))return!1;if((!mA||pA[t]||!DO(cA,t))&&!(wA&&DO(lA,t)||w.attributeCheck instanceof Function&&w.attributeCheck(t,A)))if(!f[t]||pA[t]){if(!(GA(A)&&(d.tagNameCheck instanceof RegExp&&DO(d.tagNameCheck,A)||d.tagNameCheck instanceof Function&&d.tagNameCheck(A))&&(d.attributeNameCheck instanceof RegExp&&DO(d.attributeNameCheck,t)||d.attributeNameCheck instanceof Function&&d.attributeNameCheck(t,A))||"is"===t&&d.allowCustomizedBuiltInElements&&(d.tagNameCheck instanceof RegExp&&DO(d.tagNameCheck,e)||d.tagNameCheck instanceof Function&&d.tagNameCheck(e))))return!1}else if(!HA[t]&&!DO(gA,SO(e,hA,""))&&("src"!==t&&"xlink:href"!==t&&"href"!==t||"script"===A||0!==NO(e,"data:")||!xA[A])&&(!CA||DO(uA,SO(e,hA,"")))&&e)return!1;return!0}function RA(e){D(g.beforeSanitizeAttributes,e,null);var r=e.attributes;if(r&&!$(e)){var n={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:f,forceKeepAttr:void 0};let A=r.length;for(;A--;){var{name:i,namespaceURI:s,value:o}=r[A],a=_(i);let t="value"===i?o:_O(o);if(n.attrName=a,n.attrValue=t,n.keepAttr=!0,n.forceKeepAttr=void 0,D(g.uponSanitizeAttribute,e,n),t=n.attrValue,!bA||"id"!==a&&"name"!==a||(h(i,e),t="user-content-"+t),C&&DO(/((--!?|])>)|<\/(style|title|textarea)/i,t))h(i,e);else if("attributename"===a&&LO(t,"href"))h(i,e);else if(!n.forceKeepAttr)if(n.keepAttr)if(!QA&&DO(/\/>/i,t))h(i,e);else{m&&UO([sA,oA,aA],A=>{t=SO(t,A," ")});var c=_(e.nodeName);if(KA(c,a,t)){if(B&&"object"==typeof u&&"function"==typeof u.getAttributeType&&!s)switch(u.getAttributeType(c,a)){case"TrustedHTML":t=B.createHTML(t);break;case"TrustedScriptURL":t=B.createScriptURL(t)}if(t!==o)try{s?e.setAttributeNS(s,i,t):e.setAttribute(i,t),$(e)?T(e):vO(l.removed)}catch(A){h(i,e)}}else h(i,e)}else h(i,e)}D(g.afterSanitizeAttributes,e,null)}}function VA(A){var t,e=Z(A);for(D(g.beforeSanitizeShadowDOM,A,null);t=e.nextNode();)D(g.uponSanitizeShadowNode,t,null),kA(t),RA(t),t.content instanceof P&&VA(t.content);D(g.afterSanitizeShadowDOM,A,null)}let GA=function(A){return"annotation-xml"!==A&&LO(A,BA)};return l.sanitize=function(A){var t,e=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};let r=null,n=null;if("string"!=typeof(A=(SA=!A)?"\x3c!--\x3e":A)&&!AA(A)){if("function"!=typeof A.toString)throw OO("toString is not a function");if("string"!=typeof(A=A.toString()))throw OO("dirty is not a string, aborting")}if(!l.isSupported)return A;if(yA||q(e),l.removed=[],b="string"!=typeof A&&b){if(A.nodeName){e=_(A.nodeName);if(!c[e]||p[e])throw OO("root node is forbidden and cannot be sanitized in-place")}}else if(A instanceof k)(e=(r=z("\x3c!----\x3e")).ownerDocument.importNode(A,!0)).nodeType===eP.element&&"BODY"===e.nodeName||"HTML"===e.nodeName?r=e:r.appendChild(e);else{if(!y&&!m&&!Q&&-1===A.indexOf("<"))return B&&U?B.createHTML(A):A;if(!(r=z(A)))return y?null:U?a:""}r&&FA&&T(r.firstChild);for(var i=Z(b?A:r);t=i.nextNode();)kA(t),RA(t),t.content instanceof P&&VA(t.content);if(b)return A;if(y){if(F)for(n=rA.call(r.ownerDocument);r.firstChild;)n.appendChild(r.firstChild);else n=r;return n=f.shadowroot||f.shadowrootmode?iA.call(o,n,!0):n}let s=Q?r.outerHTML:r.innerHTML;return Q&&c["!doctype"]&&r.ownerDocument&&r.ownerDocument.doctype&&r.ownerDocument.doctype.name&&DO($O,r.ownerDocument.doctype.name)&&(s="<!DOCTYPE "+r.ownerDocument.doctype.name+">\n"+s),m&&UO([sA,oA,aA],A=>{s=SO(s,A," ")}),B&&U?B.createHTML(s):s},l.setConfig=function(){var A=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};q(A),yA=!0},l.clearConfig=function(){r=null,yA=!1},l.isValidAttribute=function(A,t,e){return r||q({}),A=_(A),t=_(t),KA(A,t,e)},l.addHook=function(A,t){"function"==typeof t&&EO(g[A],t)},l.removeHook=function(A,t){return void 0!==t?-1===(t=bO(g[A],t))?void 0:xO(g[A],t,1)[0]:vO(g[A])},l.removeHooks=function(A){g[A]=[]},l.removeAllHooks=function(){g=tP()},l}(),rP=Object.freeze({__proto__:null,default:g}),Ym={exports:{}};function nP(A,t,e,r,n,i,s){try{var o=A[i](s),a=o.value}catch(A){return e(A)}o.done?t(a):Promise.resolve(a).then(r,n)}(Cb=Ym).exports=function(o){return function(){var A=this,s=arguments;return new Promise(function(t,e){var r=o.apply(A,s);function n(A){nP(r,t,e,n,i,"next",A)}function i(A){nP(r,t,e,n,i,"throw",A)}n(void 0)})}},Cb.exports.__esModule=!0,Cb.exports.default=Cb.exports;function iP(){var A=gP(this),t="";return A.hasIndices&&(t+="d"),A.global&&(t+="g"),A.ignoreCase&&(t+="i"),A.multiline&&(t+="m"),A.dotAll&&(t+="s"),A.unicode&&(t+="u"),A.unicodeSets&&(t+="v"),A.sticky&&(t+="y"),t}function sP(e,A,t,r){var s,n=PP(e),o=!OP(function(){var A={};return A[n]=function(){return 7},7!==""[e](A)}),i=o&&!OP(function(){var A=!1,t=/a/;return"split"===e&&((t={constructor:{}}).constructor[kP]=function(){return t},t.flags="",t[n]=/./[n]),t.exec=function(){return A=!0,null},t[n](""),!A});o&&i&&!t||(s=/./[n],i=A(n,""[e],function(A,t,e,r,n){var i=t.exec;return i===DP||i===KP.exec?o&&!n?{done:!0,value:_P(s,t,e,r)}:{done:!0,value:_P(A,e,t,r)}:{done:!1}}),TP(String.prototype,e,i[0]),TP(KP,n,i[1])),r&&MP(KP[n],"sham",!0)}function oP(A,t,e){return t+(e?RP(A,t).length:1)}function aP(A,t){var e=A.exec;if(ZP(e))return null!==(e=qP(e,A,t))&&zP(e),e;if("RegExp"===$P(A))return qP(A7,A,t);throw new t7("RegExp#exec called on incompatible receiver")}function cP(A){if(j7(A))throw new X7("The method doesn't accept regular expressions");return A}function lP(t){var e=/./;try{"/./"[t](e)}catch(A){try{return e[W7]=!1,"/./"[t](e)}catch(A){}}return!1}function uP(t,A){if(t){if(t[iM]!==sM)try{rM(t,iM,sM)}catch(A){t[iM]=sM}if(nM(t,A,!0),tM[A])for(var e in eM)if(t[e]!==eM[e])try{rM(t,e,eM[e])}catch(A){t[e]=eM[e]}}}var hP,BP=Fa(Ym.exports),gP=gw,s=a,fP=n.RegExp,i=s(function(){var A=fP("a","y");return A.lastIndex=2,null!==A.exec("abcd")}),r1=i||s(function(){return!fP("a","y").sticky}),C={BROKEN_CARET:i||s(function(){var A=fP("^r","gy");return A.lastIndex=2,null!==A.exec("str")}),MISSED_STICKY:r1,UNSUPPORTED_Y:i},dP=a,pP=n.RegExp,q2=dP(function(){var A=pP(".","s");return!(A.dotAll&&A.test("\n")&&"s"===A.flags)}),c2=a,wP=n.RegExp,h=c2(function(){var A=wP("(?<a>b)","g");return"b"!==A.exec("b").groups.a||"bc"!=="b".replace(A,"$<a>c")}),mP=e,A=u,CP=Bm,QP=iP,Y2=C,C0=ow,yP=Q0,FP=B0.get,My=q2,$2=h,UP=C0("native-string-replace",String.prototype.replace),bP=RegExp.prototype.exec,vP=bP,EP=A("".charAt),xP=A("".indexOf),IP=A("".replace),HP=A("".slice),LP=(fM=/b*/g,mP(bP,w=/a/,"a"),mP(bP,fM,"a"),0!==w.lastIndex||0!==fM.lastIndex),SP=Y2.BROKEN_CARET,NP=void 0!==/()??/.exec("")[1],f=vP=LP||NP||SP||My||$2?function(A){var t,e,r,n,i,s,o=this,a=FP(o),A=CP(A),c=a.raw;if(c)return c.lastIndex=o.lastIndex,u=mP(vP,c,A),o.lastIndex=c.lastIndex,u;var l=a.groups,c=SP&&o.sticky,u=mP(QP,o),a=o.source,h=0,B=A;if(c&&(u=IP(u,"y",""),-1===xP(u,"g")&&(u+="g"),B=HP(A,o.lastIndex),0<o.lastIndex&&(!o.multiline||(o.multiline,"\n"!==EP(A,o.lastIndex-1)))&&(a="(?: "+a+")",B=" "+B,h++),t=new RegExp("^(?:"+a+")",u)),NP&&(t=new RegExp("^"+a+"$(?!\\s)",u)),LP&&(e=o.lastIndex),r=mP(bP,c?t:o,B),c?r?(r.input=HP(r.input,h),r[0]=HP(r[0],h),r.index=o.lastIndex,o.lastIndex+=r[0].length):o.lastIndex=0:LP&&r&&(o.lastIndex=o.global?r.index+r[0].length:e),NP&&r&&1<r.length&&mP(UP,r[0],t,function(){for(n=1;n<arguments.length-2;n++)void 0===arguments[n]&&(r[n]=void 0)}),r&&l)for(r.groups=i=yP(null),n=0;n<l.length;n++)i[(s=l[n])[0]]=r[s[1]];return r}:vP,_P=(c({target:"RegExp",proto:!0,forced:/./.exec!==f},{exec:f}),e),TP=dw,DP=f,OP=a,PP=lw,MP=d1,kP=PP("species"),KP=RegExp.prototype,RP=u0.charAt,l=a,VP=n.RegExp,Vy=!l(function(){var t=!0;try{VP(".","d")}catch(A){t=!1}var A,e={},r="",n=t?"dgimsy":"gimsy",i={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(A in t&&(i.hasIndices="d"),i)((A,t)=>{Object.defineProperty(e,A,{get:function(){return r+=t,!0}})})(A,i[A]);return Object.getOwnPropertyDescriptor(VP.prototype,"flags").get.call(e)!==n||r!==n}),GP=e,jP=p1,XP=Xw,WP={correct:Vy},JP=iP,YP=RegExp.prototype,d=WP.correct?function(A){return A.flags}:function(A){return WP.correct||!XP(YP,A)||jP(A,"flags")?A.flags:GP(JP,A)},qP=e,zP=gw,ZP=Rw,$P=zp,A7=f,t7=TypeError,e7=e,U0=sP,r7=gw,n7=tw,i7=mw,s7=Bm,o7=$p,a7=iw,c7=oP,l7=d,u7=aP,h7=u("".indexOf),S2=(U0("match",function(r,o,a){return[function(A){var t=o7(this),e=n7(A)?a7(A,r):void 0;return e?e7(e,A,t):new RegExp(A)[r](s7(t))},function(A){var t=r7(this),e=s7(A),A=a(o,t,e);if(A.done)return A.value;A=s7(l7(t));if(-1===h7(A,"g"))return u7(t,e);for(var r=-1!==h7(A,"u"),n=[],i=t.lastIndex=0;null!==(s=u7(t,e));){var s=s7(s[0]);""===(n[i]=s)&&(t.lastIndex=c7(e,i7(t.lastIndex),r)),i++}return 0===i?null:n}]}),u),B7=aw,g7=Math.floor,f7=S2("".charAt),d7=S2("".replace),p7=S2("".slice),w7=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,m7=/\$([$&'`]|\d{1,2})/g,C7=NC,Q7=e,p=u,e5=sP,Ww=a,y7=gw,F7=Rw,U7=tw,b7=pw,v7=mw,E7=Bm,x7=$p,I7=oP,H7=iw,L7=function(i,s,o,a,c,A){var l=o+i.length,u=a.length,t=m7;return void 0!==c&&(c=B7(c),t=w7),d7(A,t,function(A,t){var e;switch(f7(t,0)){case"$":return"$";case"&":return i;case"`":return p7(s,0,o);case"'":return p7(s,l);case"<":e=c[p7(t,1,-1)];break;default:var r,n=+t;if(0==n)return A;if(u<n)return 0!==(r=g7(n/10))&&r<=u?void 0===a[r-1]?f7(t,1):a[r-1]+f7(t,1):A;e=a[n-1]}return void 0===e?"":e})},S7=d,N7=aP,_7=lw("replace"),T7=Math.max,D7=Math.min,O7=p([].concat),P7=p([].push),M7=p("".indexOf),k7=p("".slice),Jw="$0"==="a".replace(/./,"$0"),K7=!!/./[_7]&&""===/./[_7]("a","$0"),R7=(e5("replace",function(A,m,C){var Q=K7?"$":"$0";return[function(A,t){var e=x7(this),r=U7(A)?H7(A,_7):void 0;return r?Q7(r,A,e,t):Q7(m,E7(e),A,t)},function(A,t){var e=y7(this),r=E7(A);if("string"==typeof t&&-1===M7(t,Q)&&-1===M7(t,"$<")){A=C(m,e,r,t);if(A.done)return A.value}for(var n,i=F7(t),A=(i||(t=E7(t)),E7(S7(e))),s=-1!==M7(A,"g"),o=(s&&(n=-1!==M7(A,"u"),e.lastIndex=0),[]);null!==(h=N7(e,r))&&(P7(o,h),s);)""===E7(h[0])&&(e.lastIndex=I7(r,v7(e.lastIndex),n));for(var a,c="",l=0,u=0;u<o.length;u++){for(var h,B=E7((h=o[u])[0]),g=T7(D7(b7(h.index),r.length),0),f=[],d=1;d<h.length;d++)P7(f,void 0===(a=h[d])?a:String(a));var p=h.groups,w=i?(w=O7([B],f,g,r),void 0!==p&&P7(w,p),E7(C7(t,void 0,w))):L7(B,r,g,f,p,t);l<=g&&(c+=k7(r,l,g)+w,l=g+B.length)}return c+k7(r,l)}]},!!Ww(function(){var A=/./;return A.exec=function(){var A=[];return A.groups={a:"7"},A},"7"!=="".replace(A,"$<a>")})||!Jw||K7),tw),V7=zp,G7=lw("match"),j7=function(A){var t;return R7(A)&&(void 0!==(t=A[G7])?!!t:"RegExp"===V7(A))},X7=TypeError,W7=lw("match"),y=c,Q=sm,g=t.f,J7=mw,Y7=Bm,q7=cP,z7=$p,Cb=lP,Z7=Q("".slice),$7=Math.min,Ym=Cb("startsWith"),r1=(y({target:"String",proto:!0,forced:!!(Ym||!(s=g(String.prototype,"startsWith"))||s.writable)&&!Ym},{startsWith:function(A){var t=Y7(z7(this)),e=(q7(A),J7($7(1<arguments.length?arguments[1]:void 0,t.length))),A=Y7(A);return Z7(t,e,e+A.length)===A}}),Bw("span").classList),i=r1&&r1.constructor&&r1.constructor.prototype,dP=i===Object.prototype?void 0:i,AM=n,tM={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},c2=dP,eM=XC,rM=d1,nM=YC,iM=lw("iterator"),sM=eM.values;for(hP in tM)uP(AM[hP]&&AM[hP].prototype,hP);uP(c2,"DOMTokenList");for(var oM,aM,cM,lM,uM,hM,BM,Q0={exports:{}},B0={exports:{}},q2={exports:{}},gM=(h=q2,oM=ms.exports.default,h.exports=function(A,t){if("object"!=oM(A)||!A)return A;var e=A[Symbol.toPrimitive];if(void 0===e)return("string"===t?String:Number)(A);if(e=e.call(A,t||"default"),"object"!=oM(e))return e;throw new TypeError("@@toPrimitive must return a primitive value.")},h.exports.__esModule=!0,h.exports.default=h.exports,C0=B0,aM=ms.exports.default,cM=q2.exports,C0.exports=function(A){return A=cM(A,"string"),"symbol"==aM(A)?A:A+""},C0.exports.__esModule=!0,C0.exports.default=C0.exports,lM=B0.exports,(A=Q0).exports=function(A,t,e){return(t=lM(t))in A?Object.defineProperty(A,t,{value:e,enumerable:!0,configurable:!0,writable:!0}):A[t]=e,A},A.exports.__esModule=!0,A.exports.default=A.exports,Fa(Q0.exports)),w=c,fM=sm,Y2=t.f,dM=mw,pM=Bm,wM=cP,mM=$p,My=lP,CM=fM("".slice),QM=Math.min,$2=My("endsWith"),yM=(w({target:"String",proto:!0,forced:!!($2||!(u0=Y2(String.prototype,"endsWith"))||u0.writable)&&!$2},{endsWith:function(A){var t=pM(mM(this)),e=(wM(A),1<arguments.length?arguments[1]:void 0),r=t.length,e=void 0===e?r:QM(dM(e),r),r=pM(A);return CM(t,e-r.length,e)===r}}),e),l=u,p1=sP,FM=gw,UM=tw,bM=$p,vM=PQ,EM=oP,xM=mw,IM=Bm,HM=iw,LM=aP,Xw=a,SM=C.UNSUPPORTED_Y,NM=Math.min,_M=l([].push),TM=l("".slice),Vy=!Xw(function(){var A=/(?:)/,t=A.exec,A=(A.exec=function(){return t.apply(this,arguments)},"ab".split(A));return 2!==A.length||"a"!==A[0]||"b"!==A[1]}),DM="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||1<".".split(/()()/).length||"".split(/.?/).length,f=(p1("split",function(n,g,f){var d="0".split(void 0,0).length?function(A,t){return void 0===A&&0===t?[]:yM(g,this,A,t)}:g;return[function(A,t){var e=bM(this),r=UM(A)?HM(A,n):void 0;return r?yM(r,A,e,t):yM(d,IM(e),A,t)},function(A,t){var e=FM(this),r=IM(A);if(!DM){A=f(d,e,r,t,d!==g);if(A.done)return A.value}var A=vM(e,RegExp),n=e.unicode,i=(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.unicode?"u":"")+(SM?"g":"y"),s=new A(SM?"^(?:"+e.source+")":e,i),o=void 0===t?4294967295:t>>>0;if(0==o)return[];if(0===r.length)return null===LM(s,r)?[r]:[];for(var a=0,c=0,l=[];c<r.length;){s.lastIndex=SM?0:c;var u,h=LM(s,SM?TM(r,c):r);if(null===h||(u=NM(xM(s.lastIndex+(SM?c:0)),r.length))===a)c=EM(r,c,n);else{if(_M(l,TM(r,a,c)),l.length===o)return l;for(var B=1;B<=h.length-1;B++)if(_M(l,h[B]),l.length===o)return l;c=a=u}}return _M(l,TM(r,a)),l}]},DM||!Vy,SM),{exports:{}}),OM={exports:{}},PM=(!function(){var A,t,e,r,n,i;"undefined"!=typeof performance&&null!==performance&&performance.now?OM.exports=function(){return performance.now()}:"undefined"!=typeof process&&null!==process&&process.hrtime?(OM.exports=function(){return(A()-n)/1e6},t=process.hrtime,r=(A=function(){var A=t();return 1e9*A[0]+A[1]})(),i=1e9*process.uptime(),n=r-i):e=Date.now?(OM.exports=function(){return Date.now()-e},Date.now()):(OM.exports=function(){return(new Date).getTime()-e},(new Date).getTime())}.call(ya),OM.exports),MM="undefined"==typeof window?ya:window,kM=["moz","webkit"],KM="AnimationFrame",RM=MM["request"+KM],VM=MM["cancel"+KM]||MM["cancelRequest"+KM],GM=0;!RM&&GM<kM.length;GM++)RM=MM[kM[GM]+"Request"+KM],VM=MM[kM[GM]+"Cancel"+KM]||MM[kM[GM]+"CancelRequest"+KM];RM&&VM||(hM=uM=0,BM=[],RM=function(A){var t,e;return 0===BM.length&&(t=PM(),e=Math.max(0,1e3/60-(t-uM)),uM=e+t,setTimeout(function(){for(var A=BM.slice(0),t=BM.length=0;t<A.length;t++)if(!A[t].cancelled)try{A[t].callback(uM)}catch(A){setTimeout(function(){throw A},0)}},Math.round(e))),BM.push({handle:++hM,callback:A,cancelled:!1}),hM},VM=function(A){for(var t=0;t<BM.length;t++)BM[t].handle===A&&(BM[t].cancelled=!0)}),f.exports=function(A){return RM.call(MM,A)},f.exports.cancel=function(){VM.apply(MM,arguments)},f.exports.polyfill=function(A){(A=A||MM).requestAnimationFrame=RM,A.cancelAnimationFrame=VM};function jM(A){this.ok=!1,this.alpha=1,A=(A=(A="#"==A.charAt(0)?A.substr(1,6):A).replace(/ /g,"")).toLowerCase();for(var l={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dodgerblue:"1e90ff",feldspar:"d19275",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgrey:"d3d3d3",lightgreen:"90ee90",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslateblue:"8470ff",lightslategray:"778899",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"00ff00",limegreen:"32cd32",linen:"faf0e6",magenta:"ff00ff",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370d8",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"d87093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"ff0000",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",violetred:"d02090",wheat:"f5deb3",white:"ffffff",whitesmoke:"f5f5f5",yellow:"ffff00",yellowgreen:"9acd32"},u=(A=l[A]||A,[{re:/^rgba\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3}),\s*((?:\d?\.)?\d)\)$/,example:["rgba(123, 234, 45, 0.8)","rgba(255,234,245,1.0)"],process:function(A){return[parseInt(A[1]),parseInt(A[2]),parseInt(A[3]),parseFloat(A[4])]}},{re:/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/,example:["rgb(123, 234, 45)","rgb(255,234,245)"],process:function(A){return[parseInt(A[1]),parseInt(A[2]),parseInt(A[3])]}},{re:/^([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,example:["#00ff00","336699"],process:function(A){return[parseInt(A[1],16),parseInt(A[2],16),parseInt(A[3],16)]}},{re:/^([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,example:["#fb0","f0f"],process:function(A){return[parseInt(A[1]+A[1],16),parseInt(A[2]+A[2],16),parseInt(A[3]+A[3],16)]}}]),t=0;t<u.length;t++){var e=u[t].re,r=u[t].process,e=e.exec(A);e&&(r=r(e),this.r=r[0],this.g=r[1],this.b=r[2],3<r.length&&(this.alpha=r[3]),this.ok=!0)}this.r=this.r<0||isNaN(this.r)?0:255<this.r?255:this.r,this.g=this.g<0||isNaN(this.g)?0:255<this.g?255:this.g,this.b=this.b<0||isNaN(this.b)?0:255<this.b?255:this.b,this.alpha=this.alpha<0?0:1<this.alpha||isNaN(this.alpha)?1:this.alpha,this.toRGB=function(){return"rgb("+this.r+", "+this.g+", "+this.b+")"},this.toRGBA=function(){return"rgba("+this.r+", "+this.g+", "+this.b+", "+this.alpha+")"},this.toHex=function(){var A=this.r.toString(16),t=this.g.toString(16),e=this.b.toString(16);return"#"+(A=1==A.length?"0"+A:A)+(t=1==t.length?"0"+t:t)+(e=1==e.length?"0"+e:e)},this.getHelpXML=function(){for(var A,t=new Array,e=0;e<u.length;e++)for(var r=u[e].example,n=0;n<r.length;n++)t[t.length]=r[n];for(A in l)t[t.length]=A;var i=document.createElement("ul");i.setAttribute("id","rgbcolor-examples");for(e=0;e<t.length;e++)try{var s=document.createElement("li"),o=new RGBColor(t[e]),a=document.createElement("div"),c=(a.style.cssText="margin: 3px; border: 1px solid black; background:"+o.toHex()+"; color:"+o.toHex(),a.appendChild(document.createTextNode("test")),document.createTextNode(" "+t[e]+" -> "+o.toRGB()+" -> "+o.toHex()));s.appendChild(a),s.appendChild(c),i.appendChild(s)}catch(A){}return i}}var XM=f.exports,U0=c,S2=sm,WM=Yw.indexOf,NC=A5,JM=S2([].indexOf),YM=!!JM&&1/JM([1],1,-0)<0,Rw=(U0({target:"Array",proto:!0,forced:YM||!NC("indexOf")},{indexOf:function(A){var t=1<arguments.length?arguments[1]:void 0;return YM?JM(this,A,t)||0:WM(this,A,t)}}),c),qM=cP,zM=$p,ZM=Bm,p=lP,$M=u("".indexOf),e5=(Rw({target:"String",proto:!0,forced:!p("includes")},{includes:function(A){return!!~$M(ZM(zM(this)),ZM(qM(A)),1<arguments.length?arguments[1]:void 0)}}),c),Ak=JC,tk=u([].reverse),Ww=[1,2],ek=(e5({target:"Array",proto:!0,forced:String(Ww)===String(Ww.reverse())},{reverse:function(){return Ak(this)&&(this.length=this.length),tk(this)}}),function(A,t){return(ek=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(A,t){A.__proto__=t}:function(A,t){for(var e in t)Object.prototype.hasOwnProperty.call(t,e)&&(A[e]=t[e])}))(A,t)});function rk(A,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function e(){this.constructor=A}ek(A,t),A.prototype=null===t?Object.create(t):(e.prototype=t.prototype,new e)}function nk(A,t){var e=A[0],A=A[1];return[e*Math.cos(t)-A*Math.sin(t),e*Math.sin(t)+A*Math.cos(t)]}function ik(){for(var A=[],t=0;t<arguments.length;t++)A[t]=arguments[t];for(var e=0;e<A.length;e++)if("number"!=typeof A[e])throw new Error("assertNumbers arguments["+e+"] is not a number. "+typeof A[e]+" == typeof "+A[e])}var sk=Math.PI;function ok(A,t,e){A.lArcFlag=0===A.lArcFlag?0:1,A.sweepFlag=0===A.sweepFlag?0:1;var r=A.rX,n=A.rY,i=A.x,s=A.y,r=Math.abs(A.rX),n=Math.abs(A.rY),o=nk([(t-i)/2,(e-s)/2],-A.xRot/180*sk),a=o[0],o=o[1],c=Math.pow(a,2)/Math.pow(r,2)+Math.pow(o,2)/Math.pow(n,2),c=(1<c&&(r*=Math.sqrt(c),n*=Math.sqrt(c)),A.rX=r,A.rY=n,Math.pow(r,2)*Math.pow(o,2)+Math.pow(n,2)*Math.pow(a,2)),c=(A.lArcFlag!==A.sweepFlag?1:-1)*Math.sqrt(Math.max(0,(Math.pow(r,2)*Math.pow(n,2)-c)/c)),l=r*o/n*c,c=-n*a/r*c,u=nk([l,c],A.xRot/180*sk);A.cX=u[0]+(t+i)/2,A.cY=u[1]+(e+s)/2,A.phi1=Math.atan2((o-c)/n,(a-l)/r),A.phi2=Math.atan2((-o-c)/n,(-a-l)/r),0===A.sweepFlag&&A.phi2>A.phi1&&(A.phi2-=2*sk),1===A.sweepFlag&&A.phi2<A.phi1&&(A.phi2+=2*sk),A.phi1*=180/sk,A.phi2*=180/sk}function ak(A,t,e){ik(A,t,e);var r=A*A+t*t-e*e;return r<0?[]:0==r?[[A*e/(A*A+t*t),t*e/(A*A+t*t)]]:[[(A*e+t*(r=Math.sqrt(r)))/(A*A+t*t),(t*e-A*r)/(A*A+t*t)],[(A*e-t*r)/(A*A+t*t),(t*e+A*r)/(A*A+t*t)]]}var ck,lk=Math.PI/180;function uk(A,t,e){return(1-e)*A+e*t}function hk(A,t,e,r){return A+Math.cos(r/180*sk)*t+Math.sin(r/180*sk)*e}function Bk(A,t,e,r){var n=1e-6,A=t-A,t=e-t,r=3*A+3*(r-e)-6*t,e=6*(t-A),t=3*A;return Math.abs(r)<1e-6?[-t/e]:(A=1e-6,(t=(e=e/r)*e/4-t/r)<-(A=void 0===n?1e-6:n)?[]:t<=A?[-e/2]:[-e/2-(A=Math.sqrt(t)),-e/2+A])}function gk(A,t,e,r,n){var i=1-n;return A*(i*i*i)+t*(3*i*i*n)+e*(3*i*n*n)+r*(n*n*n)}function fk(){return wk(function(A,t,e){return A.relative&&(void 0!==A.x1&&(A.x1+=t),void 0!==A.y1&&(A.y1+=e),void 0!==A.x2&&(A.x2+=t),void 0!==A.y2&&(A.y2+=e),void 0!==A.x&&(A.x+=t),void 0!==A.y&&(A.y+=e),A.relative=!1),A})}function dk(){var r=NaN,n=NaN,i=NaN,s=NaN;return wk(function(A,t,e){return A.type&H.SMOOTH_CURVE_TO&&(A.type=H.CURVE_TO,r=isNaN(r)?t:r,n=isNaN(n)?e:n,A.x1=A.relative?t-r:2*t-r,A.y1=A.relative?e-n:2*e-n),n=A.type&H.CURVE_TO?(r=A.relative?t+A.x2:A.x2,A.relative?e+A.y2:A.y2):r=NaN,A.type&H.SMOOTH_QUAD_TO&&(A.type=H.QUAD_TO,i=isNaN(i)?t:i,s=isNaN(s)?e:s,A.x1=A.relative?t-i:2*t-i,A.y1=A.relative?e-s:2*e-s),s=A.type&H.QUAD_TO?(i=A.relative?t+A.x1:A.x1,A.relative?e+A.y1:A.y1):i=NaN,A})}function pk(){var i=NaN,s=NaN;return wk(function(A,t,e){var r,n;return A.type&H.SMOOTH_QUAD_TO&&(A.type=H.QUAD_TO,i=isNaN(i)?t:i,s=isNaN(s)?e:s,A.x1=A.relative?t-i:2*t-i,A.y1=A.relative?e-s:2*e-s),A.type&H.QUAD_TO?(i=A.relative?t+A.x1:A.x1,s=A.relative?e+A.y1:A.y1,r=A.x1,n=A.y1,A.type=H.CURVE_TO,A.x1=((A.relative?0:t)+2*r)/3,A.y1=((A.relative?0:e)+2*n)/3,A.x2=(A.x+2*r)/3,A.y2=(A.y+2*n)/3):s=i=NaN,A})}function wk(e){var r=0,n=0,i=NaN,s=NaN;return function(A){var t;if(!isNaN(i)||A.type&H.MOVE_TO)return t=e(A,r,n,i,s),A.type&H.CLOSE_PATH&&(r=i,n=s),void 0!==A.x&&(r=A.relative?r+A.x:A.x),void 0!==A.y&&(n=A.relative?n+A.y:A.y),A.type&H.MOVE_TO&&(i=r,s=n),t;throw new Error("path must start with moveto")}}function mk(c,l,u,h,B,g){return ik(c,l,u,h,B,g),wk(function(A,t,e,r){var n=A.x1,i=A.x2,r=A.relative&&!isNaN(r),s=void 0!==A.x?A.x:r?0:t,o=void 0!==A.y?A.y:r?0:e;function a(A){return A*A}A.type&H.HORIZ_LINE_TO&&0!==l&&(A.type=H.LINE_TO,A.y=A.relative?0:e),A.type&H.VERT_LINE_TO&&0!==u&&(A.type=H.LINE_TO,A.x=A.relative?0:t),void 0!==A.x&&(A.x=A.x*c+o*u+(r?0:B)),void 0!==A.y&&(A.y=s*l+A.y*h+(r?0:g)),void 0!==A.x1&&(A.x1=A.x1*c+A.y1*u+(r?0:B)),void 0!==A.y1&&(A.y1=n*l+A.y1*h+(r?0:g)),void 0!==A.x2&&(A.x2=A.x2*c+A.y2*u+(r?0:B)),void 0!==A.y2&&(A.y2=i*l+A.y2*h+(r?0:g));e=c*h-l*u;return void 0===A.xRot||1===c&&0===l&&0===u&&1===h||(0==e?(delete A.rX,delete A.rY,delete A.xRot,delete A.lArcFlag,delete A.sweepFlag,A.type=H.LINE_TO):(t=A.xRot*Math.PI/180,o=Math.sin(t),s=Math.cos(t),n=1/a(A.rX),i=1/a(A.rY),r=a(s)*n+a(o)*i,t=a(o)*n+a(s)*i,s=r*h*h-(o=2*o*s*(n-i))*l*h+t*l*l,n=o*(c*h+l*u)-2*(r*u*h+t*c*l),i=r*u*u-o*c*u+t*c*c,r=(Math.atan2(n,s-i)+Math.PI)%Math.PI/2,o=Math.sin(r),t=Math.cos(r),A.rX=Math.abs(e)/Math.sqrt(s*a(t)+n*o*t+i*a(o)),A.rY=Math.abs(e)/Math.sqrt(s*a(o)-n*o*t+i*a(t)),A.xRot=180*r/Math.PI)),void 0!==A.sweepFlag&&e<0&&(A.sweepFlag=+!A.sweepFlag),A})}(Jw=ck=ck||{}).ROUND=function(t){function e(A){return Math.round(A*t)/t}return ik(t=void 0===t?1e13:t),function(A){return void 0!==A.x1&&(A.x1=e(A.x1)),void 0!==A.y1&&(A.y1=e(A.y1)),void 0!==A.x2&&(A.x2=e(A.x2)),void 0!==A.y2&&(A.y2=e(A.y2)),void 0!==A.x&&(A.x=e(A.x)),void 0!==A.y&&(A.y=e(A.y)),void 0!==A.rX&&(A.rX=e(A.rX)),void 0!==A.rY&&(A.rY=e(A.rY)),A}},Jw.TO_ABS=fk,Jw.TO_REL=function(){return wk(function(A,t,e){return A.relative||(void 0!==A.x1&&(A.x1-=t),void 0!==A.y1&&(A.y1-=e),void 0!==A.x2&&(A.x2-=t),void 0!==A.y2&&(A.y2-=e),void 0!==A.x&&(A.x-=t),void 0!==A.y&&(A.y-=e),A.relative=!0),A})},Jw.NORMALIZE_HVZ=function(i,s,o){return void 0===i&&(i=!0),void 0===s&&(s=!0),void 0===o&&(o=!0),wk(function(A,t,e,r,n){if(!isNaN(r)||A.type&H.MOVE_TO)return s&&A.type&H.HORIZ_LINE_TO&&(A.type=H.LINE_TO,A.y=A.relative?0:e),o&&A.type&H.VERT_LINE_TO&&(A.type=H.LINE_TO,A.x=A.relative?0:t),i&&A.type&H.CLOSE_PATH&&(A.type=H.LINE_TO,A.x=A.relative?r-t:r,A.y=A.relative?n-e:n),A.type&H.ARC&&(0===A.rX||0===A.rY)&&(A.type=H.LINE_TO,delete A.rX,delete A.rY,delete A.xRot,delete A.lArcFlag,delete A.sweepFlag),A;throw new Error("path must start with moveto")})},Jw.NORMALIZE_ST=dk,Jw.QT_TO_C=pk,Jw.INFO=wk,Jw.SANITIZE=function(B){ik(B=void 0===B?0:B);var g=NaN,f=NaN,d=NaN,p=NaN;return wk(function(A,t,e,r,n){var i,s,o,a,c=Math.abs,l=!1,u=0,h=0;return A.type&H.SMOOTH_CURVE_TO&&(u=isNaN(g)?0:t-g,h=isNaN(f)?0:e-f),f=A.type&(H.CURVE_TO|H.SMOOTH_CURVE_TO)?(g=A.relative?t+A.x2:A.x2,A.relative?e+A.y2:A.y2):g=NaN,p=A.type&H.SMOOTH_QUAD_TO?(d=isNaN(d)?t:2*t-d,isNaN(p)?e:2*e-p):A.type&H.QUAD_TO?(d=A.relative?t+A.x1:A.x1,A.relative?e+A.y1:A.y2):d=NaN,(A.type&H.LINE_COMMANDS||A.type&H.ARC&&(0===A.rX||0===A.rY||!A.lArcFlag)||A.type&H.CURVE_TO||A.type&H.SMOOTH_CURVE_TO||A.type&H.QUAD_TO||A.type&H.SMOOTH_QUAD_TO)&&(i=void 0===A.x?0:A.relative?A.x:A.x-t,s=void 0===A.y?0:A.relative?A.y:A.y-e,u=isNaN(d)?void 0===A.x1?u:A.relative?A.x:A.x1-t:d-t,h=isNaN(p)?void 0===A.y1?h:A.relative?A.y:A.y1-e:p-e,o=void 0===A.x2?0:A.relative?A.x:A.x2-t,a=void 0===A.y2?0:A.relative?A.y:A.y2-e,c(i)<=B)&&c(s)<=B&&c(u)<=B&&c(h)<=B&&c(o)<=B&&c(a)<=B&&(l=!0),(l=A.type&H.CLOSE_PATH&&c(t-r)<=B&&c(e-n)<=B?!0:l)?[]:A})},Jw.MATRIX=mk,Jw.ROTATE=function(A,t,e){ik(A,t=void 0===t?0:t,e=void 0===e?0:e);var r=Math.sin(A),A=Math.cos(A);return mk(A,r,-r,A,t-t*A+e*r,e-t*r-e*A)},Jw.TRANSLATE=function(A,t){return ik(A,t=void 0===t?0:t),mk(1,0,0,1,A,t)},Jw.SCALE=function(A,t){return ik(A,t=void 0===t?A:t),mk(A,0,0,t,0,0)},Jw.SKEW_X=function(A){return ik(A),mk(1,0,Math.atan(A),1,0,0)},Jw.SKEW_Y=function(A){return ik(A),mk(1,Math.atan(A),0,1,0,0)},Jw.X_AXIS_SYMMETRY=function(A){return ik(A=void 0===A?0:A),mk(-1,0,0,1,A,0)},Jw.Y_AXIS_SYMMETRY=function(A){return ik(A=void 0===A?0:A),mk(1,0,0,-1,0,A)},Jw.A_TO_C=function(){return wk(function(A,t,e){if(H.ARC!==A.type)return A;var r=A,t=A.relative?0:t,A=A.relative?0:e;r.cX||ok(r,t,A);for(var e=Math.min(r.phi1,r.phi2),e=Math.max(r.phi1,r.phi2)-e,n=Math.ceil(e/90),i=new Array(n),s=t,o=A,a=0;a<n;a++){var c=uk(r.phi1,r.phi2,a/n),l=uk(r.phi1,r.phi2,(a+1)/n),u=4/3*Math.tan((l-c)*lk/4),c=[Math.cos(c*lk)-u*Math.sin(c*lk),Math.sin(c*lk)+u*Math.cos(c*lk)],h=c[0],c=c[1],B=[Math.cos(l*lk),Math.sin(l*lk)],g=B[0],B=B[1],u=[g+u*Math.sin(l*lk),B-u*Math.cos(l*lk)],l=u[0],u=u[1],f=(i[a]={relative:r.relative,type:H.CURVE_TO},function(A,t){A=nk([A*r.rX,t*r.rY],r.xRot),t=A[0];return[r.cX+t,r.cY+A[1]]}),h=f(h,c);i[a].x1=h[0],i[a].y1=h[1],c=f(l,u),i[a].x2=c[0],i[a].y2=c[1],h=f(g,B),i[a].x=h[0],i[a].y=h[1],r.relative&&(i[a].x1-=s,i[a].y1-=o,i[a].x2-=s,i[a].y2-=o,i[a].x-=s,i[a].y-=o),s=(l=[i[a].x,i[a].y])[0],o=l[1]}return i})},Jw.ANNOTATE_ARCS=function(){return wk(function(A,t,e){return A.relative&&(e=t=0),H.ARC===A.type&&ok(A,t,e),A})},Jw.CLONE=function(){return function(A){var t,e={};for(t in A)e[t]=A[t];return e}},Jw.CALCULATE_BOUNDS=function(){var y=fk(),F=pk(),U=dk(),b=wk(function(A,t,e){var r=U(F(y((A=>{var t,e={};for(t in A)e[t]=A[t];return e})(A))));function n(A){A>b.maxX&&(b.maxX=A),A<b.minX&&(b.minX=A)}function i(A){A>b.maxY&&(b.maxY=A),A<b.minY&&(b.minY=A)}if(r.type&H.DRAWING_COMMANDS&&(n(t),i(e)),r.type&H.HORIZ_LINE_TO&&n(r.x),r.type&H.VERT_LINE_TO&&i(r.y),r.type&H.LINE_TO&&(n(r.x),i(r.y)),r.type&H.CURVE_TO){n(r.x),i(r.y);for(var s=0,o=Bk(t,r.x1,r.x2,r.x);s<o.length;s++)0<(m=o[s])&&m<1&&n(gk(t,r.x1,r.x2,r.x,m));for(var a=0,c=Bk(e,r.y1,r.y2,r.y);a<c.length;a++)0<(m=c[a])&&m<1&&i(gk(e,r.y1,r.y2,r.y,m))}if(r.type&H.ARC){n(r.x),i(r.y),ok(r,t,e);for(var l=r.xRot/180*Math.PI,u=Math.cos(l)*r.rX,h=Math.sin(l)*r.rX,B=-Math.sin(l)*r.rY,g=Math.cos(l)*r.rY,l=r.phi1<r.phi2?[r.phi1,r.phi2]:r.phi2<-180?[r.phi2+360,r.phi1+360]:[r.phi2,r.phi1],f=l[0],d=l[1],l=function(A){var t=A[0],A=180*Math.atan2(A[1],t)/Math.PI;return A<f?360+A:A},p=0,w=ak(B,-u,0).map(l);p<w.length;p++)(m=w[p])>f&&m<d&&n(hk(r.cX,u,B,m));for(var m,C=0,Q=ak(g,-h,0).map(l);C<Q.length;C++)(m=Q[C])>f&&m<d&&i(hk(r.cY,h,g,m))}return A});return b.minX=1/0,b.maxX=-1/0,b.minY=1/0,b.maxY=-1/0,b};function Ck(A){return"0".charCodeAt(0)<=A.charCodeAt(0)&&A.charCodeAt(0)<="9".charCodeAt(0)}Ek.prototype.round=function(A){return this.transform(ck.ROUND(A))},Ek.prototype.toAbs=function(){return this.transform(ck.TO_ABS())},Ek.prototype.toRel=function(){return this.transform(ck.TO_REL())},Ek.prototype.normalizeHVZ=function(A,t,e){return this.transform(ck.NORMALIZE_HVZ(A,t,e))},Ek.prototype.normalizeST=function(){return this.transform(ck.NORMALIZE_ST())},Ek.prototype.qtToC=function(){return this.transform(ck.QT_TO_C())},Ek.prototype.aToC=function(){return this.transform(ck.A_TO_C())},Ek.prototype.sanitize=function(A){return this.transform(ck.SANITIZE(A))},Ek.prototype.translate=function(A,t){return this.transform(ck.TRANSLATE(A,t))},Ek.prototype.scale=function(A,t){return this.transform(ck.SCALE(A,t))},Ek.prototype.rotate=function(A,t,e){return this.transform(ck.ROTATE(A,t,e))},Ek.prototype.matrix=function(A,t,e,r,n,i){return this.transform(ck.MATRIX(A,t,e,r,n,i))},Ek.prototype.skewX=function(A){return this.transform(ck.SKEW_X(A))},Ek.prototype.skewY=function(A){return this.transform(ck.SKEW_Y(A))},Ek.prototype.xSymmetry=function(A){return this.transform(ck.X_AXIS_SYMMETRY(A))},Ek.prototype.ySymmetry=function(A){return this.transform(ck.Y_AXIS_SYMMETRY(A))},Ek.prototype.annotateArcs=function(){return this.transform(ck.ANNOTATE_ARCS())};var Qk,yk,Q=Ek,Fk=(rk(vk,yk=Q),vk.prototype.finish=function(A){if(this.parse(" ",A=void 0===A?[]:A),0===this.curArgs.length&&this.canParseCommandOrComma)return A;throw new SyntaxError("Unterminated command at the path end.")},vk.prototype.parse=function(A,t){var e=this;void 0===t&&(t=[]);for(var r=function(A){t.push(A),e.curArgs.length=0,e.canParseCommandOrComma=!0},n=0;n<A.length;n++){var i=A[n],s=!(this.curCommandType!==H.ARC||3!==this.curArgs.length&&4!==this.curArgs.length||1!==this.curNumber.length||"0"!==this.curNumber&&"1"!==this.curNumber),o=Ck(i)&&("0"===this.curNumber&&"0"===i||s);if(!Ck(i)||o)if("e"!==i&&"E"!==i)if("-"!==i&&"+"!==i||!this.curNumberHasExp||this.curNumberHasExpDigits)if("."!==i||this.curNumberHasExp||this.curNumberHasDecimal||s){if(this.curNumber&&-1!==this.curCommandType){var s=Number(this.curNumber);if(isNaN(s))throw new SyntaxError("Invalid number ending at "+n);if(this.curCommandType===H.ARC)if(0===this.curArgs.length||1===this.curArgs.length){if(s<0)throw new SyntaxError('Expected positive number, got "'+s+'" at index "'+n+'"')}else if((3===this.curArgs.length||4===this.curArgs.length)&&"0"!==this.curNumber&&"1"!==this.curNumber)throw new SyntaxError('Expected a flag, got "'+this.curNumber+'" at index "'+n+'"');this.curArgs.push(s),this.curArgs.length===Uk[this.curCommandType]&&(H.HORIZ_LINE_TO===this.curCommandType?r({type:H.HORIZ_LINE_TO,relative:this.curCommandRelative,x:s}):H.VERT_LINE_TO===this.curCommandType?r({type:H.VERT_LINE_TO,relative:this.curCommandRelative,y:s}):this.curCommandType===H.MOVE_TO||this.curCommandType===H.LINE_TO||this.curCommandType===H.SMOOTH_QUAD_TO?(r({type:this.curCommandType,relative:this.curCommandRelative,x:this.curArgs[0],y:this.curArgs[1]}),H.MOVE_TO===this.curCommandType&&(this.curCommandType=H.LINE_TO)):this.curCommandType===H.CURVE_TO?r({type:H.CURVE_TO,relative:this.curCommandRelative,x1:this.curArgs[0],y1:this.curArgs[1],x2:this.curArgs[2],y2:this.curArgs[3],x:this.curArgs[4],y:this.curArgs[5]}):this.curCommandType===H.SMOOTH_CURVE_TO?r({type:H.SMOOTH_CURVE_TO,relative:this.curCommandRelative,x2:this.curArgs[0],y2:this.curArgs[1],x:this.curArgs[2],y:this.curArgs[3]}):this.curCommandType===H.QUAD_TO?r({type:H.QUAD_TO,relative:this.curCommandRelative,x1:this.curArgs[0],y1:this.curArgs[1],x:this.curArgs[2],y:this.curArgs[3]}):this.curCommandType===H.ARC&&r({type:H.ARC,relative:this.curCommandRelative,rX:this.curArgs[0],rY:this.curArgs[1],xRot:this.curArgs[2],lArcFlag:this.curArgs[3],sweepFlag:this.curArgs[4],x:this.curArgs[5],y:this.curArgs[6]})),this.curNumber="",this.curNumberHasExpDigits=!1,this.curNumberHasExp=!1,this.curNumberHasDecimal=!1,this.canParseCommandOrComma=!0}if(" "!==(s=i)&&"\t"!==s&&"\r"!==s&&"\n"!==s)if(","===i&&this.canParseCommandOrComma)this.canParseCommandOrComma=!1;else if("+"!==i&&"-"!==i&&"."!==i)if(o)this.curNumber=i,this.curNumberHasDecimal=!1;else{if(0!==this.curArgs.length)throw new SyntaxError("Unterminated command at index "+n+".");if(!this.canParseCommandOrComma)throw new SyntaxError('Unexpected character "'+i+'" at index '+n+". Command cannot follow comma");if(this.canParseCommandOrComma=!1,"z"!==i&&"Z"!==i)if("h"===i||"H"===i)this.curCommandType=H.HORIZ_LINE_TO,this.curCommandRelative="h"===i;else if("v"===i||"V"===i)this.curCommandType=H.VERT_LINE_TO,this.curCommandRelative="v"===i;else if("m"===i||"M"===i)this.curCommandType=H.MOVE_TO,this.curCommandRelative="m"===i;else if("l"===i||"L"===i)this.curCommandType=H.LINE_TO,this.curCommandRelative="l"===i;else if("c"===i||"C"===i)this.curCommandType=H.CURVE_TO,this.curCommandRelative="c"===i;else if("s"===i||"S"===i)this.curCommandType=H.SMOOTH_CURVE_TO,this.curCommandRelative="s"===i;else if("q"===i||"Q"===i)this.curCommandType=H.QUAD_TO,this.curCommandRelative="q"===i;else if("t"===i||"T"===i)this.curCommandType=H.SMOOTH_QUAD_TO,this.curCommandRelative="t"===i;else{if("a"!==i&&"A"!==i)throw new SyntaxError('Unexpected character "'+i+'" at index '+n+".");this.curCommandType=H.ARC,this.curCommandRelative="a"===i}else t.push({type:H.CLOSE_PATH}),this.canParseCommandOrComma=!0,this.curCommandType=-1}else this.curNumber=i,this.curNumberHasDecimal="."===i}else this.curNumber+=i,this.curNumberHasDecimal=!0;else this.curNumber+=i;else this.curNumber+=i,this.curNumberHasExp=!0;else this.curNumber+=i,this.curNumberHasExpDigits=this.curNumberHasExp}return t},vk.prototype.transform=function(i){return Object.create(this,{parse:{value:function(A,t){void 0===t&&(t=[]);for(var e=0,r=Object.getPrototypeOf(this).parse.call(this,A);e<r.length;e++){var n=r[e],n=i(n);Array.isArray(n)?t.push.apply(t,n):t.push(n)}return t}}})},vk),H=(rk(bk,Qk=Q),bk.prototype.encode=function(){return bk.encode(this.commands)},bk.prototype.getBounds=function(){var A=ck.CALCULATE_BOUNDS();return this.transform(A),A},bk.prototype.transform=function(A){for(var t=[],e=0,r=this.commands;e<r.length;e++){var n=A(r[e]);Array.isArray(n)?t.push.apply(t,n):t.push(n)}return this.commands=t,this},bk.encode=function(A){var t=A,e="";Array.isArray(t)||(t=[t]);for(var r=0;r<t.length;r++){var n=t[r];if(n.type===H.CLOSE_PATH)e+="z";else if(n.type===H.HORIZ_LINE_TO)e+=(n.relative?"h":"H")+n.x;else if(n.type===H.VERT_LINE_TO)e+=(n.relative?"v":"V")+n.y;else if(n.type===H.MOVE_TO)e+=(n.relative?"m":"M")+n.x+" "+n.y;else if(n.type===H.LINE_TO)e+=(n.relative?"l":"L")+n.x+" "+n.y;else if(n.type===H.CURVE_TO)e+=(n.relative?"c":"C")+n.x1+" "+n.y1+" "+n.x2+" "+n.y2+" "+n.x+" "+n.y;else if(n.type===H.SMOOTH_CURVE_TO)e+=(n.relative?"s":"S")+n.x2+" "+n.y2+" "+n.x+" "+n.y;else if(n.type===H.QUAD_TO)e+=(n.relative?"q":"Q")+n.x1+" "+n.y1+" "+n.x+" "+n.y;else if(n.type===H.SMOOTH_QUAD_TO)e+=(n.relative?"t":"T")+n.x+" "+n.y;else{if(n.type!==H.ARC)throw new Error('Unexpected command type "'+n.type+'" at index '+r+".");e+=(n.relative?"a":"A")+n.rX+" "+n.rY+" "+n.xRot+" "+ +n.lArcFlag+" "+ +n.sweepFlag+" "+n.x+" "+n.y}}return e},bk.parse=function(A){var t=new Fk,e=[];return t.parse(A,e),t.finish(e),e},bk.CLOSE_PATH=1,bk.MOVE_TO=2,bk.HORIZ_LINE_TO=4,bk.VERT_LINE_TO=8,bk.LINE_TO=16,bk.CURVE_TO=32,bk.SMOOTH_CURVE_TO=64,bk.QUAD_TO=128,bk.SMOOTH_QUAD_TO=256,bk.ARC=512,bk.LINE_COMMANDS=bk.LINE_TO|bk.HORIZ_LINE_TO|bk.VERT_LINE_TO,bk.DRAWING_COMMANDS=bk.HORIZ_LINE_TO|bk.VERT_LINE_TO|bk.LINE_TO|bk.CURVE_TO|bk.SMOOTH_CURVE_TO|bk.QUAD_TO|bk.SMOOTH_QUAD_TO|bk.ARC,bk),Uk=((Cb={})[H.MOVE_TO]=2,Cb[H.LINE_TO]=2,Cb[H.HORIZ_LINE_TO]=1,Cb[H.VERT_LINE_TO]=1,Cb[H.CLOSE_PATH]=0,Cb[H.QUAD_TO]=4,Cb[H.SMOOTH_QUAD_TO]=2,Cb[H.CURVE_TO]=6,Cb[H.SMOOTH_CURVE_TO]=4,Cb[H.ARC]=7,Cb);function bk(A){var t=Qk.call(this)||this;return t.commands="string"==typeof A?bk.parse(A):A,t}function vk(){var A=yk.call(this)||this;return A.curNumber="",A.curCommandType=-1,A.curCommandRelative=!1,A.canParseCommandOrComma=!0,A.curNumberHasExp=!1,A.curNumberHasExpDigits=!1,A.curNumberHasDecimal=!1,A.curArgs=[],A}function Ek(){}var y=h0.PROPER,g=dw,xk=gw,Ik=Bm,s=a,Hk=d,Ym="toString",r1=RegExp.prototype,Lk=r1[Ym],i=s(function(){return"/a/b"!==Lk.call({source:"a",flags:"b"})}),n=y&&Lk.name!==Ym;function Sk(A){return(Sk="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(A){return typeof A}:function(A){return A&&"function"==typeof Symbol&&A.constructor===Symbol&&A!==Symbol.prototype?"symbol":typeof A})(A)}(i||n)&&g(r1,Ym,function(){var A=xk(this);return"/"+Ik(A.source)+"/"+Ik(Hk(A))},{unsafe:!0});var Nk=[512,512,456,512,328,456,335,512,405,328,271,456,388,335,292,512,454,405,364,328,298,271,496,456,420,388,360,335,312,292,273,512,482,454,428,405,383,364,345,328,312,298,284,271,259,496,475,456,437,420,404,388,374,360,347,335,323,312,302,292,282,273,265,512,497,482,468,454,441,428,417,405,394,383,373,364,354,345,337,328,320,312,305,298,291,284,278,271,265,259,507,496,485,475,465,456,446,437,428,420,412,404,396,388,381,374,367,360,354,347,341,335,329,323,318,312,307,302,297,292,287,282,278,273,269,265,261,512,505,497,489,482,475,468,461,454,447,441,435,428,422,417,411,405,399,394,389,383,378,373,368,364,359,354,350,345,341,337,332,328,324,320,316,312,309,305,301,298,294,291,287,284,281,278,274,271,268,265,262,259,257,507,501,496,491,485,480,475,470,465,460,456,451,446,442,437,433,428,424,420,416,412,408,404,400,396,392,388,385,381,377,374,370,367,363,360,357,354,350,347,344,341,338,335,332,329,326,323,320,318,315,312,310,307,304,302,299,297,294,292,289,287,285,282,280,278,275,273,271,269,267,265,263,261,259],_k=[9,11,12,13,13,14,14,15,15,15,15,16,16,16,16,17,17,17,17,17,17,17,18,18,18,18,18,18,18,18,18,19,19,19,19,19,19,19,19,19,19,19,19,19,19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24];function Tk(A,t,e,r,n,i){var s;isNaN(i)||i<1||(i|=0,s=((D,A,O,t)=>{for(var P,e=D.data,M=2*t+1,r=A-1,k=O-1,n=t+1,i=n*(n+1)/2,s=new Dk,o=s,K=1;K<M;K++)o=o.next=new Dk,K===n&&(P=o);o.next=s;for(var a=null,c=null,R=0,l=0,u=Nk[t],h=_k[t],V=0;V<O;V++){o=s;for(var G=e[l],j=e[l+1],X=e[l+2],W=e[l+3],J=0;J<n;J++)o.r=G,o.g=j,o.b=X,o.a=W,o=o.next;for(var B=0,g=0,f=0,d=0,Y=n*G,q=n*j,z=n*X,Z=n*W,p=i*G,w=i*j,m=i*X,C=i*W,Q=1;Q<n;Q++){var y=l+((r<Q?r:Q)<<2),$=e[y],AA=e[y+1],tA=e[y+2],y=e[y+3],F=n-Q;p+=(o.r=$)*F,w+=(o.g=AA)*F,m+=(o.b=tA)*F,C+=(o.a=y)*F,B+=$,g+=AA,f+=tA,d+=y,o=o.next}a=s,c=P;for(var eA=0;eA<A;eA++){var U=C*u>>>h,U=(0!=(e[l+3]=U)?(U=255/U,e[l]=(p*u>>>h)*U,e[l+1]=(w*u>>>h)*U,e[l+2]=(m*u>>>h)*U):e[l]=e[l+1]=e[l+2]=0,p-=Y,w-=q,m-=z,C-=Z,Y-=a.r,q-=a.g,z-=a.b,Z-=a.a,eA+t+1);U=R+(U<r?U:r)<<2,B+=a.r=e[U],g+=a.g=e[1+U],f+=a.b=e[2+U],d+=a.a=e[3+U],p+=B,w+=g,m+=f,C+=d,a=a.next;var U=c.r,rA=c.g,nA=c.b,iA=c.a;Y+=U,q+=rA,z+=nA,Z+=iA,B-=U,g-=rA,f-=nA,d-=iA,c=c.next,l+=4}R+=A}for(var b=0;b<A;b++){var v=e[l=b<<2],E=e[l+1],x=e[l+2],I=e[l+3],sA=n*v,oA=n*E,aA=n*x,cA=n*I,H=i*v,L=i*E,S=i*x,N=i*I;o=s;for(var lA=0;lA<n;lA++)o.r=v,o.g=E,o.b=x,o.a=I,o=o.next;for(var uA=A,hA=0,BA=0,gA=0,fA=0,_=1;_<=t;_++){l=uA+b<<2;var dA=n-_;H+=(o.r=v=e[l])*dA,L+=(o.g=E=e[l+1])*dA,S+=(o.b=x=e[l+2])*dA,N+=(o.a=I=e[l+3])*dA,fA+=v,hA+=E,BA+=x,gA+=I,o=o.next,_<k&&(uA+=A)}l=b,a=s,c=P;for(var pA=0;pA<O;pA++){var T=l<<2;e[3+T]=I=N*u>>>h,0<I?(I=255/I,e[T]=(H*u>>>h)*I,e[1+T]=(L*u>>>h)*I,e[2+T]=(S*u>>>h)*I):e[T]=e[1+T]=e[2+T]=0,H-=sA,L-=oA,S-=aA,N-=cA,sA-=a.r,oA-=a.g,aA-=a.b,cA-=a.a,T=b+((T=pA+n)<k?T:k)*A<<2,H+=fA+=a.r=e[T],L+=hA+=a.g=e[1+T],S+=BA+=a.b=e[2+T],N+=gA+=a.a=e[3+T],a=a.next,sA+=v=c.r,oA+=E=c.g,aA+=x=c.b,cA+=I=c.a,fA-=v,hA-=E,BA-=x,gA-=I,c=c.next,l+=A}}return D})(s=((A,t,e,r,n)=>{if(!((A="string"==typeof A?document.getElementById(A):A)&&"object"===Sk(A)&&"getContext"in A))throw new TypeError("Expecting canvas with `getContext` method in processCanvasRGB(A) calls!");A=A.getContext("2d");try{return A.getImageData(t,e,r,n)}catch(A){throw new Error("unable to access image data: "+A)}})(A,t,e,r,n),r,n,i),A.getContext("2d").putImageData(s,t,e))}var Dk=function A(){if(!(this instanceof A))throw new TypeError("Cannot call a class as a function");this.r=0,this.g=0,this.b=0,this.a=0,this.next=null};dP=Object.freeze({__proto__:null,offscreen:function(){var A=(0<arguments.length&&void 0!==arguments[0]?arguments[0]:{}).DOMParser,t={window:null,ignoreAnimation:!0,ignoreMouse:!0,DOMParser:A,createCanvas(A,t){return new OffscreenCanvas(A,t)},createImage(t){return BP(function*(){var A=yield(yield fetch(t)).blob();return yield createImageBitmap(A)})()}};return"undefined"==typeof DOMParser&&void 0!==A||Reflect.deleteProperty(t,"DOMParser"),t},node:function(A){var{DOMParser:A,canvas:t,fetch:e}=A;return{window:null,ignoreAnimation:!0,ignoreMouse:!0,DOMParser:A,fetch:e,createCanvas:t.createCanvas,createImage:t.loadImage}}});function Ok(A){return A.replace(/(?!\u3000)\s+/gm," ")}function Pk(A){return A.replace(/^[\n \t]+/,"")}function Mk(A){return A.replace(/[\n \t]+$/,"")}function kk(A){return((A||"").match(/-?(\d+(?:\.\d*(?:[eE][+-]?\d+)?)?|\.\d+)(?=\D|$)/gm)||[]).map(parseFloat)}var Kk=/^[A-Z-]+$/;function Rk(A){return Kk.test(A)?A.toLowerCase():A}function Vk(A){A=/url\(('([^']+)'|"([^"]+)"|([^'")]+))\)/.exec(A)||[];return A[2]||A[3]||A[4]}function Gk(A){var e;return A.startsWith("rgb")?(e=3,A.replace(/\d+(\.\d+)?/g,(A,t)=>e--&&t?String(Math.round(parseFloat(A))):A)):A}var jk=/(\[[^\]]+\])/g,Xk=/(#[^\s+>~.[:]+)/g,Wk=/(\.[^\s+>~.[:]+)/g,Jk=/(::[^\s+>~.[:]+|:first-line|:first-letter|:before|:after)/gi,Yk=/(:[\w-]+\([^)]*\))/gi,qk=/(:[^\s+>~.[:]+)/g,zk=/([^\s+>~.[:]+)/g;function Zk(A,t){var e=t.exec(A);return e?[A.replace(t," "),e.length]:[A,0]}function $k(A){var t=[0,0,0],A=A.replace(/:not\(([^)]*)\)/g," $1 ").replace(/{[\s\S]*/gm," "),e=0;return[A,e]=Zk(A,jk),t[1]+=e,[A,e]=Zk(A,Xk),t[0]+=e,[A,e]=Zk(A,Wk),t[1]+=e,[A,e]=Zk(A,Jk),t[2]+=e,[A,e]=Zk(A,Yk),t[1]+=e,[A,e]=Zk(A,qk),t[1]+=e,A=A.replace(/[*\s+>~]/g," ").replace(/[#.]/g," "),[A,e]=Zk(A,zk),t[2]+=e,t.join("")}function AK(A){return Math.sqrt(Math.pow(A[0],2)+Math.pow(A[1],2))}function tK(A,t){return(A[0]*t[0]+A[1]*t[1])/(AK(A)*AK(t))}function eK(A,t){return(A[0]*t[1]<A[1]*t[0]?-1:1)*Math.acos(tK(A,t))}function rK(A){return A*A*A}function nK(A){return 3*A*A*(1-A)}function iK(A){return 3*A*(1-A)*(1-A)}function sK(A){return(1-A)*(1-A)*(1-A)}function oK(A){return A*A}function aK(A){return 2*A*(1-A)}function cK(A){return(1-A)*(1-A)}class L{constructor(A,t,e){this.document=A,this.name=t,this.value=e,this.isNormalizedColor=!1}static empty(A){return new L(A,"EMPTY","")}split(){var A=0<arguments.length&&void 0!==arguments[0]?arguments[0]:" ",{document:t,name:e}=this;return Ok(this.getString()).trim().split(A).map(A=>new L(t,e,A))}hasValue(A){var t=this.value;return null!==t&&""!==t&&(A||0!==t)&&void 0!==t}isString(A){var t=this.value,e="string"==typeof t;return e&&A?A.test(t):e}isUrlDefinition(){return this.isString(/^url\(/)}isPixels(){if(!this.hasValue())return!1;var A=this.getString();switch(!0){case A.endsWith("px"):case/^[0-9]+$/.test(A):return!0;default:return!1}}setValue(A){return this.value=A,this}getValue(A){return void 0===A||this.hasValue()?this.value:A}getNumber(A){var t;return this.hasValue()?(t=this.value,t=parseFloat(t),this.isString(/%$/)&&(t/=100),t):void 0===A?0:parseFloat(A)}getString(A){return void 0===A||this.hasValue()?void 0===this.value?"":String(this.value):String(A)}getColor(A){A=this.getString(A);return this.isNormalizedColor||(this.isNormalizedColor=!0,A=Gk(A),this.value=A),A}getDpi(){return 96}getRem(){return this.document.rootEmSize}getEm(){return this.document.emSize}getUnits(){return this.getString().replace(/[0-9.-]/g,"")}getPixels(A){var t=1<arguments.length&&void 0!==arguments[1]&&arguments[1];if(!this.hasValue())return 0;var[e,A]="boolean"==typeof A?[void 0,A]:[A],r=this.document.screen.viewPort;switch(!0){case this.isString(/vmin$/):return this.getNumber()/100*Math.min(r.computeSize("x"),r.computeSize("y"));case this.isString(/vmax$/):return this.getNumber()/100*Math.max(r.computeSize("x"),r.computeSize("y"));case this.isString(/vw$/):return this.getNumber()/100*r.computeSize("x");case this.isString(/vh$/):return this.getNumber()/100*r.computeSize("y");case this.isString(/rem$/):return this.getNumber()*this.getRem();case this.isString(/em$/):return this.getNumber()*this.getEm();case this.isString(/ex$/):return this.getNumber()*this.getEm()/2;case this.isString(/px$/):return this.getNumber();case this.isString(/pt$/):return this.getNumber()*this.getDpi()*(1/72);case this.isString(/pc$/):return 15*this.getNumber();case this.isString(/cm$/):return this.getNumber()*this.getDpi()/2.54;case this.isString(/mm$/):return this.getNumber()*this.getDpi()/25.4;case this.isString(/in$/):return this.getNumber()*this.getDpi();case this.isString(/%$/)&&A:return this.getNumber()*this.getEm();case this.isString(/%$/):return this.getNumber()*r.computeSize(e);default:var n=this.getNumber();return t&&n<1?n*r.computeSize(e):n}}getMilliseconds(){return this.hasValue()?this.isString(/ms$/)?this.getNumber():1e3*this.getNumber():0}getRadians(){if(!this.hasValue())return 0;switch(!0){case this.isString(/deg$/):return this.getNumber()*(Math.PI/180);case this.isString(/grad$/):return this.getNumber()*(Math.PI/200);case this.isString(/rad$/):return this.getNumber();default:return this.getNumber()*(Math.PI/180)}}getDefinition(){var A=this.getString(),t=(t=/#([^)'"]+)/.exec(A))&&t[1];return this.document.definitions[t=t||A]}getFillStyleDefinition(A,t){var e,r=this.getDefinition();return r?"function"==typeof r.createGradient?r.createGradient(this.document.ctx,A,t):"function"==typeof r.createPattern?(r.getHrefAttribute().hasValue()&&(e=r.getAttribute("patternTransform"),r=r.getHrefAttribute().getDefinition(),e.hasValue())&&r.getAttribute("patternTransform",!0).setValue(e.value),r.createPattern(this.document.ctx,A,t)):null:null}getTextBaseline(){return this.hasValue()?L.textBaselineMapping[this.getString()]:null}addOpacity(A){for(var t,e=this.getColor(),r=e.length,n=0,i=0;i<r&&(","===e[i]&&n++,3!==n);i++);return A.hasValue()&&this.isString()&&3!==n&&(t=new jM(e)).ok&&(t.alpha=A.getNumber(),e=t.toRGBA()),new L(this.document,this.name,e)}}L.textBaselineMapping={baseline:"alphabetic","before-edge":"top","text-before-edge":"top",middle:"middle",central:"middle","after-edge":"bottom","text-after-edge":"bottom",ideographic:"ideographic",alphabetic:"alphabetic",hanging:"hanging",mathematical:"alphabetic"};class lK{constructor(){this.viewPorts=[]}clear(){this.viewPorts=[]}setCurrent(A,t){this.viewPorts.push({width:A,height:t})}removeCurrent(){this.viewPorts.pop()}getCurrent(){var A=this.viewPorts;return A[A.length-1]}get width(){return this.getCurrent().width}get height(){return this.getCurrent().height}computeSize(A){return"number"==typeof A?A:"x"===A?this.width:"y"===A?this.height:Math.sqrt(Math.pow(this.width,2)+Math.pow(this.height,2))/Math.sqrt(2)}}class uK{constructor(A,t){this.x=A,this.y=t}static parse(A){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:0,[A=t,t=t]=kk(A);return new uK(A,t)}static parseScale(A){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:1,[A=t,t=A]=kk(A);return new uK(A,t)}static parsePath(A){for(var t=kk(A),e=t.length,r=[],n=0;n<e;n+=2)r.push(new uK(t[n],t[n+1]));return r}angleTo(A){return Math.atan2(A.y-this.y,A.x-this.x)}applyTransform(A){var{x:t,y:e}=this,r=t*A[0]+e*A[2]+A[4],t=t*A[1]+e*A[3]+A[5];this.x=r,this.y=t}}class hK{constructor(A){this.screen=A,this.working=!1,this.events=[],this.eventElements=[],this.onClick=this.onClick.bind(this),this.onMouseMove=this.onMouseMove.bind(this)}isWorking(){return this.working}start(){var A,t,e;this.working||({screen:e,onClick:A,onMouseMove:t}=this,(e=e.ctx.canvas).onclick=A,e.onmousemove=t,this.working=!0)}stop(){var A;this.working&&(A=this.screen.ctx.canvas,this.working=!1,A.onclick=null,A.onmousemove=null)}hasEvents(){return this.working&&0<this.events.length}runEvents(){var A,n,t;this.working&&({screen:t,events:A,eventElements:n}=this,t=t.ctx.canvas.style,t&&(t.cursor=""),A.forEach((A,t)=>{for(var e=A.run,r=n[t];r;)e(r),r=r.parent}),this.events=[],this.eventElements=[])}checkPath(r,n){var A,i;this.working&&n&&({events:A,eventElements:i}=this,A.forEach((A,t)=>{var{x:A,y:e}=A;!i[t]&&n.isPointInPath&&n.isPointInPath(A,e)&&(i[t]=r)}))}checkBoundingBox(r,n){var A,i;this.working&&n&&({events:A,eventElements:i}=this,A.forEach((A,t)=>{var{x:A,y:e}=A;!i[t]&&n.isPointInBox(A,e)&&(i[t]=r)}))}mapXY(A,t){for(var{window:e,ctx:r}=this.screen,n=new uK(A,t),i=r.canvas;i;)n.x-=i.offsetLeft,n.y-=i.offsetTop,i=i.offsetParent;return e.scrollX&&(n.x+=e.scrollX),e.scrollY&&(n.y+=e.scrollY),n}onClick(A){var{x:A,y:t}=this.mapXY(A.clientX,A.clientY);this.events.push({type:"onclick",x:A,y:t,run(A){A.onClick&&A.onClick()}})}onMouseMove(A){var{x:A,y:t}=this.mapXY(A.clientX,A.clientY);this.events.push({type:"onmousemove",x:A,y:t,run(A){A.onMouseMove&&A.onMouseMove()}})}}var BK="undefined"!=typeof window?window:null,gK="undefined"!=typeof fetch?fetch.bind(void 0):null;class fK{constructor(A){var{fetch:t=gK,window:e=BK}=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};this.ctx=A,this.FRAMERATE=30,this.MAX_VIRTUAL_PIXELS=3e4,this.CLIENT_WIDTH=800,this.CLIENT_HEIGHT=600,this.viewPort=new lK,this.mouse=new hK(this),this.animations=[],this.waits=[],this.frameDuration=0,this.isReadyLock=!1,this.isFirstRender=!0,this.intervalId=null,this.window=e,this.fetch=t}wait(A){this.waits.push(A)}ready(){return this.readyPromise||Promise.resolve()}isReady(){var A;return!!this.isReadyLock||((A=this.waits.every(A=>A()))&&(this.waits=[],this.resolveReady)&&this.resolveReady(),this.isReadyLock=A)}setDefaults(A){A.strokeStyle="rgba(0,0,0,0)",A.lineCap="butt",A.lineJoin="miter",A.miterLimit=4}setViewBox(A){var{document:A,ctx:t,aspectRatio:e,width:r,desiredWidth:n,height:i,desiredHeight:s,minX:o=0,minY:a=0,refX:c,refY:l,clip:u=!1,clipX:h=0,clipY:B=0}=A,[e,g]=Ok(e).replace(/^defer\s/,"").split(" "),e=e||"xMidYMid",g=g||"meet",f=r/n,d=i/s,p=Math.min(f,d),w=Math.max(f,d),c=("meet"===g&&(n*=p,s*=p),"slice"===g&&(n*=w,s*=w),new L(A,"refX",c)),A=new L(A,"refY",l),l=c.hasValue()&&A.hasValue();switch(l&&t.translate(-p*c.getPixels("x"),-p*A.getPixels("y")),u&&(c=p*h,A=p*B,t.beginPath(),t.moveTo(c,A),t.lineTo(r,A),t.lineTo(r,i),t.lineTo(c,i),t.closePath(),t.clip()),l||(u="meet"===g&&p===d,h="slice"===g&&w===d,B="meet"===g&&p===f,A="slice"===g&&w===f,e.startsWith("xMid")&&(u||h)&&t.translate(r/2-n/2,0),e.endsWith("YMid")&&(B||A)&&t.translate(0,i/2-s/2),e.startsWith("xMax")&&(u||h)&&t.translate(r-n,0),e.endsWith("YMax")&&(B||A)&&t.translate(0,i-s)),!0){case"none"===e:t.scale(f,d);break;case"meet"===g:t.scale(p,p);break;case"slice"===g:t.scale(w,w)}t.translate(-o,-a)}start(A){var t,e,r,n,{enableRedraw:i=!1,ignoreMouse:s=!1,ignoreAnimation:o=!1,ignoreDimensions:a=!1,ignoreClear:c=!1,forceRedraw:l,scaleWidth:u,scaleHeight:h,offsetX:B,offsetY:g}=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},{FRAMERATE:f,mouse:d}=this,p=1e3/f;this.frameDuration=p,this.readyPromise=new Promise(A=>{this.resolveReady=A}),this.isReady()&&this.render(A,a,c,u,h,B,g),i&&(t=Date.now(),e=t,r=0,n=()=>{t=Date.now(),p<=(r=t-e)&&(e=t-r%p,this.shouldUpdate(o,l))&&(this.render(A,a,c,u,h,B,g),d.runEvents()),this.intervalId=XM(n)},s||d.start(),this.intervalId=XM(n))}stop(){this.intervalId&&(XM.cancel(this.intervalId),this.intervalId=null),this.mouse.stop()}shouldUpdate(A,t){if(!A){var e=this.frameDuration;if(this.animations.reduce((A,t)=>t.update(e)||A,!1))return!0}return!("function"!=typeof t||!t())||!(this.isReadyLock||!this.isReady())||!!this.mouse.hasEvents()}render(A,t,e,r,n,i,s){var{CLIENT_WIDTH:o,CLIENT_HEIGHT:a,viewPort:c,ctx:l,isFirstRender:u}=this,h=l.canvas,o=(c.clear(),h.width&&h.height?c.setCurrent(h.width,h.height):c.setCurrent(o,a),A.getStyle("width")),a=A.getStyle("height"),B=(!t&&(u||"number"!=typeof r&&"number"!=typeof n)&&(o.hasValue()&&(h.width=o.getPixels("x"),h.style)&&(h.style.width="".concat(h.width,"px")),a.hasValue())&&(h.height=a.getPixels("y"),h.style)&&(h.style.height="".concat(h.height,"px")),h.clientWidth||h.width),h=h.clientHeight||h.height;t&&o.hasValue()&&a.hasValue()&&(B=o.getPixels("x"),h=a.getPixels("y")),c.setCurrent(B,h),"number"==typeof i&&A.getAttribute("x",!0).setValue(i),"number"==typeof s&&A.getAttribute("y",!0).setValue(s),"number"!=typeof r&&"number"!=typeof n||(t=kk(A.getAttribute("viewBox").getString()),a=o=0,"number"==typeof r&&((c=A.getStyle("width")).hasValue()?o=c.getPixels("x")/r:isNaN(t[2])||(o=t[2]/r)),"number"==typeof n&&((i=A.getStyle("height")).hasValue()?a=i.getPixels("y")/n:isNaN(t[3])||(a=t[3]/n)),o=o||a,a=a||o,A.getAttribute("width",!0).setValue(r),A.getAttribute("height",!0).setValue(n),(s=A.getStyle("transform",!0,!0)).setValue("".concat(s.getString()," scale(").concat(1/o,", ").concat(1/a,")"))),e||l.clearRect(0,0,B,h),A.render(l),u&&(this.isFirstRender=!1)}}fK.defaultWindow=BK,fK.defaultFetch=gK;var dK=fK.defaultFetch,pK="undefined"!=typeof DOMParser?DOMParser:null;class wK{constructor(){var{fetch:A=dK,DOMParser:t=pK}=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};this.fetch=A,this.DOMParser=t}parse(A){var t=this;return BP(function*(){return A.startsWith("<")?t.parseFromString(A):t.load(A)})()}parseFromString(t){var e=new this.DOMParser;try{return this.checkDocument(e.parseFromString(t,"image/svg+xml"))}catch(A){return this.checkDocument(e.parseFromString(t,"text/xml"))}}checkDocument(A){var t=A.getElementsByTagName("parsererror")[0];if(t)throw new Error(t.textContent);return A}load(t){var e=this;return BP(function*(){var A=yield(yield e.fetch(t)).text();return e.parseFromString(A)})()}}class mK{constructor(A,t){this.type="translate",this.point=null,this.point=uK.parse(t)}apply(A){var{x:t,y:e}=this.point;A.translate(t||0,e||0)}unapply(A){var{x:t,y:e}=this.point;A.translate(-1*t||0,-1*e||0)}applyToPoint(A){var{x:t,y:e}=this.point;A.applyTransform([1,0,0,1,t||0,e||0])}}class CK{constructor(A,t,e){this.type="rotate",this.angle=null,this.originX=null,this.originY=null,this.cx=0,this.cy=0;t=kk(t);this.angle=new L(A,"angle",t[0]),this.originX=e[0],this.originY=e[1],this.cx=t[1]||0,this.cy=t[2]||0}apply(A){var{cx:t,cy:e,originX:r,originY:n,angle:i}=this,t=t+r.getPixels("x"),r=e+n.getPixels("y");A.translate(t,r),A.rotate(i.getRadians()),A.translate(-t,-r)}unapply(A){var{cx:t,cy:e,originX:r,originY:n,angle:i}=this,t=t+r.getPixels("x"),r=e+n.getPixels("y");A.translate(t,r),A.rotate(-1*i.getRadians()),A.translate(-t,-r)}applyToPoint(A){var{cx:t,cy:e,angle:r}=this,r=r.getRadians();A.applyTransform([1,0,0,1,t||0,e||0]),A.applyTransform([Math.cos(r),Math.sin(r),-Math.sin(r),Math.cos(r),0,0]),A.applyTransform([1,0,0,1,-t||0,-e||0])}}class QK{constructor(A,t,e){this.type="scale",this.scale=null,this.originX=null,this.originY=null;t=uK.parseScale(t);0!==t.x&&0!==t.y||(t.x=1e-8,t.y=1e-8),this.scale=t,this.originX=e[0],this.originY=e[1]}apply(A){var{scale:{x:t,y:e},originX:r,originY:n}=this,r=r.getPixels("x"),n=n.getPixels("y");A.translate(r,n),A.scale(t,e||t),A.translate(-r,-n)}unapply(A){var{scale:{x:t,y:e},originX:r,originY:n}=this,r=r.getPixels("x"),n=n.getPixels("y");A.translate(r,n),A.scale(1/t,1/e||t),A.translate(-r,-n)}applyToPoint(A){var{x:t,y:e}=this.scale;A.applyTransform([t||0,0,0,e||0,0,0])}}class yK{constructor(A,t,e){this.type="matrix",this.matrix=[],this.originX=null,this.originY=null,this.matrix=kk(t),this.originX=e[0],this.originY=e[1]}apply(A){var{originX:t,originY:e,matrix:r}=this,t=t.getPixels("x"),e=e.getPixels("y");A.translate(t,e),A.transform(r[0],r[1],r[2],r[3],r[4],r[5]),A.translate(-t,-e)}unapply(A){var{originX:t,originY:e,matrix:r}=this,n=r[0],i=r[2],s=r[4],o=r[1],a=r[3],r=r[5],c=1/(n*(+a-0*r)-i*(+o-0*r)+s*(0*o-0*a)),t=t.getPixels("x"),e=e.getPixels("y");A.translate(t,e),A.transform(c*(+a-0*r),c*(0*r-+o),c*(0*s-+i),c*(+n-0*s),c*(i*r-s*a),c*(s*o-n*r)),A.translate(-t,-e)}applyToPoint(A){A.applyTransform(this.matrix)}}class FK extends yK{constructor(A,t,e){super(A,t,e),this.type="skew",this.angle=null,this.angle=new L(A,"angle",t)}}class UK extends FK{constructor(A,t,e){super(A,t,e),this.type="skewX",this.matrix=[1,0,Math.tan(this.angle.getRadians()),1,0,0]}}class bK extends FK{constructor(A,t,e){super(A,t,e),this.type="skewY",this.matrix=[1,Math.tan(this.angle.getRadians()),0,1,0,0]}}class vK{constructor(A,t,e){this.document=A,this.transforms=[],Ok(t).trim().replace(/\)([a-zA-Z])/g,") $1").replace(/\)(\s?,\s?)/g,") ").split(/\s(?=[a-z])/).forEach(A=>{var t;"none"!==A&&([A,t]=(A=>{var[A,t]=A.split("(");return[A.trim(),t.trim().replace(")","")]})(A),void 0!==(A=vK.transformTypes[A]))&&this.transforms.push(new A(this.document,t,e))})}static fromElement(A,t){var e=t.getStyle("transform",!1,!0),[t,r=t]=t.getStyle("transform-origin",!1,!0).split(),t=[t,r];return e.hasValue()?new vK(A,e.getString(),t):null}apply(A){for(var t=this.transforms,e=t.length,r=0;r<e;r++)t[r].apply(A)}unapply(A){for(var t=this.transforms,e=t.length-1;0<=e;e--)t[e].unapply(A)}applyToPoint(A){for(var t=this.transforms,e=t.length,r=0;r<e;r++)t[r].applyToPoint(A)}}vK.transformTypes={translate:mK,rotate:CK,scale:QK,matrix:yK,skewX:UK,skewY:bK};class EK{constructor(e,A){var t,r,n=2<arguments.length&&void 0!==arguments[2]&&arguments[2];this.document=e,this.node=A,this.captureTextNodes=n,this.attributes=Object.create(null),this.styles=Object.create(null),this.stylesSpecificity=Object.create(null),this.animationFrozen=!1,this.animationFrozenValue="",this.parent=null,this.children=[],A&&1===A.nodeType&&(t=(Array.from(A.attributes).forEach(A=>{var t=Rk(A.nodeName);this.attributes[t]=new L(e,t,A.value)}),this.addStylesFromStyleDefinition(),this.getAttribute("style").hasValue()&&this.getAttribute("style").getString().split(";").map(A=>A.trim()).forEach(A=>{var t;A&&([A,t]=A.split(":").map(A=>A.trim()),this.styles[A]=new L(e,A,t))}),e).definitions,(r=this.getAttribute("id")).hasValue()&&!t[r.getString()]&&(t[r.getString()]=this),Array.from(A.childNodes).forEach(A=>{1===A.nodeType?this.addChild(A):!n||3!==A.nodeType&&4!==A.nodeType||0<(A=e.createTextNode(A)).getText().length&&this.addChild(A)}))}getAttribute(A){var t,e=this.attributes[A];return!e&&(1<arguments.length&&void 0!==arguments[1]&&arguments[1])?(t=new L(this.document,A,""),this.attributes[A]=t):e||L.empty(this.document)}getHrefAttribute(){for(var A in this.attributes)if("href"===A||A.endsWith(":href"))return this.attributes[A];return L.empty(this.document)}getStyle(A){var t=1<arguments.length&&void 0!==arguments[1]&&arguments[1],e=2<arguments.length&&void 0!==arguments[2]&&arguments[2],r=this.styles[A];if(r)return r;var n=this.getAttribute(A);if(null!=n&&n.hasValue())return this.styles[A]=n;if(!e){var n=this.parent;if(n){e=n.getStyle(A);if(null!=e&&e.hasValue())return e}}return t?(n=new L(this.document,A,""),this.styles[A]=n):r||L.empty(this.document)}render(A){var t;"none"!==this.getStyle("display").getString()&&"hidden"!==this.getStyle("visibility").getString()&&(A.save(),this.getStyle("mask").hasValue()?(t=this.getStyle("mask").getDefinition())&&(this.applyEffects(A),t.apply(A,this)):"none"!==this.getStyle("filter").getValue("none")?(t=this.getStyle("filter").getDefinition())&&(this.applyEffects(A),t.apply(A,this)):(this.setContext(A),this.renderChildren(A),this.clearContext(A)),A.restore())}setContext(A){}applyEffects(A){var t=vK.fromElement(this.document,this),t=(t&&t.apply(A),this.getStyle("clip-path",!1,!0));t.hasValue()&&(t=t.getDefinition())&&t.apply(A)}clearContext(A){}renderChildren(t){this.children.forEach(A=>{A.render(t)})}addChild(A){A=A instanceof EK?A:this.document.createElement(A);A.parent=this,EK.ignoreChildTypes.includes(A.type)||this.children.push(A)}matchesSelector(t){var A,e=this.node;return"function"==typeof e.matches?e.matches(t):!(!(A=null==(A=e.getAttribute)?void 0:A.call(e,"class"))||""===A)&&A.split(" ").some(A=>".".concat(A)===t)}addStylesFromStyleDefinition(){var A,{styles:t,stylesSpecificity:e}=this.document;for(A in t)if(!A.startsWith("@")&&this.matchesSelector(A)){var r=t[A],n=e[A];if(r)for(var i in r){var s=this.stylesSpecificity[i];(s=void 0===s?"000":s)<=n&&(this.styles[i]=r[i],this.stylesSpecificity[i]=n)}}}removeStyles(n,A){return A.reduce((A,t)=>{var e,r=n.getStyle(t);return r.hasValue()?(e=r.getString(),r.setValue(""),[...A,[t,e]]):A},[])}restoreStyles(e,A){A.forEach(A=>{var[A,t]=A;e.getStyle(A,!0).setValue(t)})}isFirstChild(){var A;return 0===(null==(A=this.parent)?void 0:A.children.indexOf(this))}}EK.ignoreChildTypes=["title"];class xK extends EK{constructor(A,t,e){super(A,t,e)}}function IK(A){A=A.trim();return/^('|")/.test(A)?A:'"'.concat(A,'"')}class HK{constructor(A,t,e,r,n,i){i=i?"string"==typeof i?HK.parse(i):i:{};this.fontFamily=n||i.fontFamily,this.fontSize=r||i.fontSize,this.fontStyle=A||i.fontStyle,this.fontWeight=e||i.fontWeight,this.fontVariant=t||i.fontVariant}static parse(){var A=0<arguments.length&&void 0!==arguments[0]?arguments[0]:"",t=1<arguments.length?arguments[1]:void 0,e="",r="",n="",i="",s="",A=Ok(A).trim().split(" "),o={fontSize:!1,fontStyle:!1,fontWeight:!1,fontVariant:!1};return A.forEach(A=>{switch(!0){case!o.fontStyle&&HK.styles.includes(A):"inherit"!==A&&(e=A),o.fontStyle=!0;break;case!o.fontVariant&&HK.variants.includes(A):"inherit"!==A&&(r=A),o.fontStyle=!0,o.fontVariant=!0;break;case!o.fontWeight&&HK.weights.includes(A):"inherit"!==A&&(n=A),o.fontStyle=!0,o.fontVariant=!0,o.fontWeight=!0;break;case!o.fontSize:"inherit"!==A&&([i]=A.split("/")),o.fontStyle=!0,o.fontVariant=!0,o.fontWeight=!0,o.fontSize=!0;break;default:"inherit"!==A&&(s+=A)}}),new HK(e,r,n,i,s,t)}toString(){return[(A=>{if(!A)return"";var t=A.trim().toLowerCase();switch(t){case"normal":case"italic":case"oblique":case"inherit":case"initial":case"unset":return t;default:return/^oblique\s+(-|)\d+deg$/.test(t)?t:""}})(this.fontStyle),this.fontVariant,(A=>{if(!A)return"";var t=A.trim().toLowerCase();switch(t){case"normal":case"bold":case"lighter":case"bolder":case"inherit":case"initial":case"unset":return t;default:return/^[\d.]+$/.test(t)?t:""}})(this.fontWeight),this.fontSize,(A=this.fontFamily,"undefined"==typeof process?A:A.trim().split(",").map(IK).join(","))].join(" ").trim();var A}}HK.styles="normal|italic|oblique|inherit",HK.variants="normal|small-caps|inherit",HK.weights="normal|bold|bolder|lighter|100|200|300|400|500|600|700|800|900|inherit";class LK{constructor(){var A=0<arguments.length&&void 0!==arguments[0]?arguments[0]:Number.NaN,t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:Number.NaN,e=2<arguments.length&&void 0!==arguments[2]?arguments[2]:Number.NaN,r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:Number.NaN;this.x1=A,this.y1=t,this.x2=e,this.y2=r,this.addPoint(A,t),this.addPoint(e,r)}get x(){return this.x1}get y(){return this.y1}get width(){return this.x2-this.x1}get height(){return this.y2-this.y1}addPoint(A,t){void 0!==A&&((isNaN(this.x1)||isNaN(this.x2))&&(this.x1=A,this.x2=A),A<this.x1&&(this.x1=A),A>this.x2)&&(this.x2=A),void 0!==t&&((isNaN(this.y1)||isNaN(this.y2))&&(this.y1=t,this.y2=t),t<this.y1&&(this.y1=t),t>this.y2)&&(this.y2=t)}addX(A){this.addPoint(A,null)}addY(A){this.addPoint(null,A)}addBoundingBox(A){var t,e,r;A&&({x1:A,y1:t,x2:e,y2:r}=A,this.addPoint(A,t),this.addPoint(e,r))}sumCubic(A,t,e,r,n){return Math.pow(1-A,3)*t+3*Math.pow(1-A,2)*A*e+3*(1-A)*Math.pow(A,2)*r+Math.pow(A,3)*n}bezierCurveAdd(A,t,e,r,n){var i=6*t-12*e+6*r,s=-3*t+9*e-9*r+3*n,o=3*e-3*t;if(0==s)return 0==i?void 0:void(0<(a=-o/i)&&a<1&&(A?this.addX(this.sumCubic(a,t,e,r,n)):this.addY(this.sumCubic(a,t,e,r,n))));var a=Math.pow(i,2)-4*o*s;a<0||(0<(o=(-i+Math.sqrt(a))/(2*s))&&o<1&&(A?this.addX(this.sumCubic(o,t,e,r,n)):this.addY(this.sumCubic(o,t,e,r,n))),0<(o=(-i-Math.sqrt(a))/(2*s))&&o<1&&(A?this.addX(this.sumCubic(o,t,e,r,n)):this.addY(this.sumCubic(o,t,e,r,n))))}addBezierCurve(A,t,e,r,n,i,s,o){this.addPoint(A,t),this.addPoint(s,o),this.bezierCurveAdd(!0,A,e,n,s),this.bezierCurveAdd(!1,t,r,i,o)}addQuadraticCurve(A,t,e,r,n,i){e=A+2/3*(e-A),r=t+2/3*(r-t);this.addBezierCurve(A,t,e,e+1/3*(n-A),r,r+1/3*(i-t),n,i)}isPointInBox(A,t){var{x1:e,y1:r,x2:n,y2:i}=this;return e<=A&&A<=n&&r<=t&&t<=i}}class S extends H{constructor(A){super(A.replace(/([+\-.])\s+/gm,"$1").replace(/[^MmZzLlHhVvCcSsQqTtAae\d\s.,+-].*/g,"")),this.control=null,this.start=null,this.current=null,this.command=null,this.commands=this.commands,this.i=-1,this.previousCommand=null,this.points=[],this.angles=[]}reset(){this.i=-1,this.command=null,this.previousCommand=null,this.start=new uK(0,0),this.control=new uK(0,0),this.current=new uK(0,0),this.points=[],this.angles=[]}isEnd(){var{i:A,commands:t}=this;return A>=t.length-1}next(){var A=this.commands[++this.i];return this.previousCommand=this.command,this.command=A}getPoint(){var A=0<arguments.length&&void 0!==arguments[0]?arguments[0]:"x",t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:"y",A=new uK(this.command[A],this.command[t]);return this.makeAbsolute(A)}getAsControlPoint(A,t){A=this.getPoint(A,t);return this.control=A}getAsCurrentPoint(A,t){A=this.getPoint(A,t);return this.current=A}getReflectedControlPoint(){var A,t,e,r=this.previousCommand.type;return r!==H.CURVE_TO&&r!==H.SMOOTH_CURVE_TO&&r!==H.QUAD_TO&&r!==H.SMOOTH_QUAD_TO?this.current:({current:{x:r,y:A},control:{x:t,y:e}}=this,new uK(2*r-t,2*A-e))}makeAbsolute(A){var t,e;return this.command.relative&&({x:t,y:e}=this.current,A.x+=t,A.y+=e),A}addMarker(A,t,e){var{points:r,angles:n}=this;e&&0<n.length&&!n[n.length-1]&&(n[n.length-1]=r[r.length-1].angleTo(e)),this.addMarkerAngle(A,t?t.angleTo(A):null)}addMarkerAngle(A,t){this.points.push(A),this.angles.push(t)}getMarkerPoints(){return this.points}getMarkerAngles(){for(var A=this.angles,t=A.length,e=0;e<t;e++)if(!A[e])for(var r=e+1;r<t;r++)if(A[r]){A[e]=A[r];break}return A}}class SK extends EK{constructor(){super(...arguments),this.modifiedEmSizeStack=!1}calculateOpacity(){for(var A=1,t=this;t;){var e=t.getStyle("opacity",!1,!0);e.hasValue(!0)&&(A*=e.getNumber()),t=t.parent}return A}setContext(A){var t,e,r,n,i,s,o=1<arguments.length&&void 0!==arguments[1]&&arguments[1];o||(s=this.getStyle("fill"),e=this.getStyle("fill-opacity"),r=this.getStyle("stroke"),n=this.getStyle("stroke-opacity"),s.isUrlDefinition()?(t=s.getFillStyleDefinition(this,e))&&(A.fillStyle=t):s.hasValue()&&("currentColor"===s.getString()&&s.setValue(this.getStyle("color").getColor()),"inherit"!==(t=s.getColor()))&&(A.fillStyle="none"===t?"rgba(0,0,0,0)":t),e.hasValue()&&(s=new L(this.document,"fill",A.fillStyle).addOpacity(e).getColor(),A.fillStyle=s),r.isUrlDefinition()?(t=r.getFillStyleDefinition(this,n))&&(A.strokeStyle=t):r.hasValue()&&("currentColor"===r.getString()&&r.setValue(this.getStyle("color").getColor()),"inherit"!==(e=r.getString()))&&(A.strokeStyle="none"===e?"rgba(0,0,0,0)":e),n.hasValue()&&(s=new L(this.document,"stroke",A.strokeStyle).addOpacity(n).getString(),A.strokeStyle=s),(t=this.getStyle("stroke-width")).hasValue()&&(r=t.getPixels(),A.lineWidth=r||1e-8),e=this.getStyle("stroke-linecap"),n=this.getStyle("stroke-linejoin"),s=this.getStyle("stroke-miterlimit"),t=this.getStyle("stroke-dasharray"),r=this.getStyle("stroke-dashoffset"),e.hasValue()&&(A.lineCap=e.getString()),n.hasValue()&&(A.lineJoin=n.getString()),s.hasValue()&&(A.miterLimit=s.getNumber()),t.hasValue()&&"none"!==t.getString()&&(e=kk(t.getString()),void 0!==A.setLineDash?A.setLineDash(e):void 0!==A.webkitLineDash?A.webkitLineDash=e:void 0===A.mozDash||1===e.length&&0===e[0]||(A.mozDash=e),n=r.getPixels(),void 0!==A.lineDashOffset?A.lineDashOffset=n:void 0!==A.webkitLineDashOffset?A.webkitLineDashOffset=n:void 0!==A.mozDashOffset&&(A.mozDashOffset=n))),this.modifiedEmSizeStack=!1,void 0!==A.font&&(s=this.getStyle("font"),t=this.getStyle("font-style"),e=this.getStyle("font-variant"),r=this.getStyle("font-weight"),n=this.getStyle("font-size"),i=this.getStyle("font-family"),s=new HK(t.getString(),e.getString(),r.getString(),n.hasValue()?"".concat(n.getPixels(!0),"px"):"",i.getString(),HK.parse(s.getString(),A.font)),t.setValue(s.fontStyle),e.setValue(s.fontVariant),r.setValue(s.fontWeight),n.setValue(s.fontSize),i.setValue(s.fontFamily),A.font=s.toString(),n.isPixels())&&(this.document.emSize=n.getPixels(),this.modifiedEmSizeStack=!0),o||(this.applyEffects(A),A.globalAlpha=this.calculateOpacity())}clearContext(A){super.clearContext(A),this.modifiedEmSizeStack&&this.document.popEmSize()}}class NK extends SK{constructor(A,t,e){super(A,t,e),this.type="path",this.pathParser=null,this.pathParser=new S(this.getAttribute("d").getString())}path(A){var t=this.pathParser,e=new LK;for(t.reset(),A&&A.beginPath();!t.isEnd();)switch(t.next().type){case S.MOVE_TO:this.pathM(A,e);break;case S.LINE_TO:this.pathL(A,e);break;case S.HORIZ_LINE_TO:this.pathH(A,e);break;case S.VERT_LINE_TO:this.pathV(A,e);break;case S.CURVE_TO:this.pathC(A,e);break;case S.SMOOTH_CURVE_TO:this.pathS(A,e);break;case S.QUAD_TO:this.pathQ(A,e);break;case S.SMOOTH_QUAD_TO:this.pathT(A,e);break;case S.ARC:this.pathA(A,e);break;case S.CLOSE_PATH:this.pathZ(A,e)}return e}getBoundingBox(A){return this.path()}getMarkers(){var A=this.pathParser,t=A.getMarkerPoints(),e=A.getMarkerAngles();return t.map((A,t)=>[A,e[t]])}renderChildren(A){this.path(A),this.document.screen.mouse.checkPath(this,A);var t=this.getStyle("fill-rule"),e=(""!==A.fillStyle&&("inherit"!==t.getString("inherit")?A.fill(t.getString()):A.fill()),""!==A.strokeStyle&&("non-scaling-stroke"===this.getAttribute("vector-effect").getString()?(A.save(),A.setTransform(1,0,0,1,0,0),A.stroke(),A.restore()):A.stroke()),this.getMarkers());if(e){var r,n,i=e.length-1,t=this.getStyle("marker-start"),s=this.getStyle("marker-mid"),o=this.getStyle("marker-end");if(t.isUrlDefinition()&&(t=t.getDefinition(),[r,n]=e[0],t.render(A,r,n)),s.isUrlDefinition())for(var a=s.getDefinition(),c=1;c<i;c++){var[l,u]=e[c];a.render(A,l,u)}o.isUrlDefinition()&&(t=o.getDefinition(),[r,n]=e[i],t.render(A,r,n))}}static pathM(A){var t=A.getAsCurrentPoint();return A.start=A.current,{point:t}}pathM(A,t){var e=this.pathParser,r=NK.pathM(e).point,{x:n,y:i}=r;e.addMarker(r),t.addPoint(n,i),A&&A.moveTo(n,i)}static pathL(A){var t=A.current;return{current:t,point:A.getAsCurrentPoint()}}pathL(A,t){var e=this.pathParser,{current:r,point:n}=NK.pathL(e),{x:i,y:s}=n;e.addMarker(n,r),t.addPoint(i,s),A&&A.lineTo(i,s)}static pathH(A){var{current:t,command:e}=A,e=new uK((e.relative?t.x:0)+e.x,t.y);return{current:t,point:A.current=e}}pathH(A,t){var e=this.pathParser,{current:r,point:n}=NK.pathH(e),{x:i,y:s}=n;e.addMarker(n,r),t.addPoint(i,s),A&&A.lineTo(i,s)}static pathV(A){var{current:t,command:e}=A,e=new uK(t.x,(e.relative?t.y:0)+e.y);return{current:t,point:A.current=e}}pathV(A,t){var e=this.pathParser,{current:r,point:n}=NK.pathV(e),{x:i,y:s}=n;e.addMarker(n,r),t.addPoint(i,s),A&&A.lineTo(i,s)}static pathC(A){var t=A.current;return{current:t,point:A.getPoint("x1","y1"),controlPoint:A.getAsControlPoint("x2","y2"),currentPoint:A.getAsCurrentPoint()}}pathC(A,t){var e=this.pathParser,{current:r,point:n,controlPoint:i,currentPoint:s}=NK.pathC(e);e.addMarker(s,i,n),t.addBezierCurve(r.x,r.y,n.x,n.y,i.x,i.y,s.x,s.y),A&&A.bezierCurveTo(n.x,n.y,i.x,i.y,s.x,s.y)}static pathS(A){var t=A.current;return{current:t,point:A.getReflectedControlPoint(),controlPoint:A.getAsControlPoint("x2","y2"),currentPoint:A.getAsCurrentPoint()}}pathS(A,t){var e=this.pathParser,{current:r,point:n,controlPoint:i,currentPoint:s}=NK.pathS(e);e.addMarker(s,i,n),t.addBezierCurve(r.x,r.y,n.x,n.y,i.x,i.y,s.x,s.y),A&&A.bezierCurveTo(n.x,n.y,i.x,i.y,s.x,s.y)}static pathQ(A){var t=A.current;return{current:t,controlPoint:A.getAsControlPoint("x1","y1"),currentPoint:A.getAsCurrentPoint()}}pathQ(A,t){var e=this.pathParser,{current:r,controlPoint:n,currentPoint:i}=NK.pathQ(e);e.addMarker(i,n,n),t.addQuadraticCurve(r.x,r.y,n.x,n.y,i.x,i.y),A&&A.quadraticCurveTo(n.x,n.y,i.x,i.y)}static pathT(A){var t=A.current,e=A.getReflectedControlPoint();return{current:t,controlPoint:A.control=e,currentPoint:A.getAsCurrentPoint()}}pathT(A,t){var e=this.pathParser,{current:r,controlPoint:n,currentPoint:i}=NK.pathT(e);e.addMarker(i,n,n),t.addQuadraticCurve(r.x,r.y,n.x,n.y,i.x,i.y),A&&A.quadraticCurveTo(n.x,n.y,i.x,i.y)}static pathA(A){var{current:t,command:e}=A,{rX:e,rY:r,xRot:n,lArcFlag:i,sweepFlag:s}=e,n=n*(Math.PI/180),A=A.getAsCurrentPoint(),o=new uK(Math.cos(n)*(t.x-A.x)/2+Math.sin(n)*(t.y-A.y)/2,-Math.sin(n)*(t.x-A.x)/2+Math.cos(n)*(t.y-A.y)/2),a=Math.pow(o.x,2)/Math.pow(e,2)+Math.pow(o.y,2)/Math.pow(r,2),a=(1<a&&(e*=Math.sqrt(a),r*=Math.sqrt(a)),(i===s?-1:1)*Math.sqrt((Math.pow(e,2)*Math.pow(r,2)-Math.pow(e,2)*Math.pow(o.y,2)-Math.pow(r,2)*Math.pow(o.x,2))/(Math.pow(e,2)*Math.pow(o.y,2)+Math.pow(r,2)*Math.pow(o.x,2)))),i=(isNaN(a)&&(a=0),new uK(a*e*o.y/r,a*-r*o.x/e)),a=new uK((t.x+A.x)/2+Math.cos(n)*i.x-Math.sin(n)*i.y,(t.y+A.y)/2+Math.sin(n)*i.x+Math.cos(n)*i.y),t=eK([1,0],[(o.x-i.x)/e,(o.y-i.y)/r]),c=[(o.x-i.x)/e,(o.y-i.y)/r],o=[(-o.x-i.x)/e,(-o.y-i.y)/r],i=eK(c,o);return tK(c,o)<=-1&&(i=Math.PI),{currentPoint:A,rX:e,rY:r,sweepFlag:s,xAxisRotation:n,centp:a,a1:t,ad:i=1<=tK(c,o)?0:i}}pathA(A,t){var e=this.pathParser,{currentPoint:r,rX:n,rY:i,sweepFlag:s,xAxisRotation:o,centp:a,a1:c,ad:l}=NK.pathA(e),u=1-s?1:-1,h=c+l/2*u,B=new uK(a.x+n*Math.cos(h),a.y+i*Math.sin(h));e.addMarkerAngle(B,h-u*Math.PI/2),e.addMarkerAngle(r,h-u*Math.PI),t.addPoint(r.x,r.y),!A||isNaN(c)||isNaN(l)||(B=i<n?n:i,e=i<n?1:n/i,h=i<n?i/n:1,A.translate(a.x,a.y),A.rotate(o),A.scale(e,h),A.arc(0,0,B,c,c+l,Boolean(1-s)),A.scale(1/e,1/h),A.rotate(-o),A.translate(-a.x,-a.y))}static pathZ(A){A.current=A.start}pathZ(A,t){NK.pathZ(this.pathParser),A&&t.x1!==t.x2&&t.y1!==t.y2&&A.closePath()}}class _K extends NK{constructor(A,t,e){super(A,t,e),this.type="glyph",this.horizAdvX=this.getAttribute("horiz-adv-x").getNumber(),this.unicode=this.getAttribute("unicode").getString(),this.arabicForm=this.getAttribute("arabic-form").getString()}}class TK extends SK{constructor(A,t,e){super(A,t,new.target===TK||e),this.type="text",this.x=0,this.y=0,this.measureCache=-1}setContext(A){super.setContext(A,1<arguments.length&&void 0!==arguments[1]&&arguments[1]);var t=this.getStyle("dominant-baseline").getTextBaseline()||this.getStyle("alignment-baseline").getTextBaseline();t&&(A.textBaseline=t)}initializeCoordinates(){this.x=0,this.y=0,this.leafTexts=[],this.textChunkStart=0,this.minX=Number.POSITIVE_INFINITY,this.maxX=Number.NEGATIVE_INFINITY}getBoundingBox(e){if("text"!==this.type)return this.getTElementBoundingBox(e);this.initializeCoordinates(),this.adjustChildCoordinatesRecursive(e);var r=null;return this.children.forEach((A,t)=>{t=this.getChildBoundingBox(e,this,this,t);r?r.addBoundingBox(t):r=t}),r}getFontSize(){var{document:A,parent:t}=this,A=HK.parse(A.ctx.font).fontSize;return t.getStyle("font-size").getNumber(A)}getTElementBoundingBox(A){var t=this.getFontSize();return new LK(this.x,this.y-t,this.x+this.measureText(A),this.y)}getGlyph(A,t,e){var r,n,i=t[e],s=null;return A.isArabic?(r=t.length,n=t[e-1],t=t[e+1],n=0<e&&" "!==n&&(e===r-1||" "===t)?"initial":0<e&&" "!==n&&e<r-1&&" "!==t?"medial":(0===e||" "===n)&&e<r-1&&" "!==t?"terminal":"isolated",void 0!==A.glyphs[i]&&(s=(e=A.glyphs[i])instanceof _K?e:e[n])):s=A.glyphs[i],s=s||A.missingGlyph}getText(){return""}getTextFromNode(A){var A=A||this.node,t=Array.from(A.parentNode.childNodes),e=t.indexOf(A),t=t.length-1,A=Ok(A.textContent||"");return 0===e&&(A=Pk(A)),A=e===t?Mk(A):A}renderChildren(e){var A;"text"!==this.type?this.renderTElementChildren(e):(this.initializeCoordinates(),this.adjustChildCoordinatesRecursive(e),this.children.forEach((A,t)=>{this.renderChild(e,this,this,t)}),A=this.document.screen.mouse,A.isWorking()&&A.checkBoundingBox(this,this.getBoundingBox(e)))}renderTElementChildren(A){var{document:t,parent:e}=this,r=this.getText(),n=e.getStyle("font-family").getDefinition();if(n)for(var i=n.fontFace.unitsPerEm,t=HK.parse(t.ctx.font),s=e.getStyle("font-size").getNumber(t.fontSize),o=e.getStyle("font-style").getString(t.fontStyle),a=s/i,c=n.isRTL?r.split("").reverse().join(""):r,l=kk(e.getAttribute("dx").getString()),u=c.length,h=0;h<u;h++){var B=this.getGlyph(n,c,h),g=(A.translate(this.x,this.y),A.scale(a,-a),A.lineWidth);A.lineWidth=A.lineWidth*i/s,"italic"===o&&A.transform(1,0,.4,1,0,0),B.render(A),"italic"===o&&A.transform(1,0,-.4,1,0,0),A.lineWidth=g,A.scale(1/a,-1/a),A.translate(-this.x,-this.y),this.x+=s*(B.horizAdvX||n.horizAdvX)/i,void 0===l[h]||isNaN(l[h])||(this.x+=l[h])}else{var{x:t,y:e}=this;A.fillStyle&&A.fillText(r,t,e),A.strokeStyle&&A.strokeText(r,t,e)}}applyAnchoring(){if(!(this.textChunkStart>=this.leafTexts.length)){for(var A=this.leafTexts[this.textChunkStart],t=A.getStyle("text-anchor").getString("start"),e=0,e="start"===t?A.x-this.minX:"end"===t?A.x-this.maxX:A.x-(this.minX+this.maxX)/2,r=this.textChunkStart;r<this.leafTexts.length;r++)this.leafTexts[r].x+=e;this.minX=Number.POSITIVE_INFINITY,this.maxX=Number.NEGATIVE_INFINITY,this.textChunkStart=this.leafTexts.length}}adjustChildCoordinatesRecursive(e){this.children.forEach((A,t)=>{this.adjustChildCoordinatesRecursiveCore(e,this,this,t)}),this.applyAnchoring()}adjustChildCoordinatesRecursiveCore(e,r,A,t){var n=A.children[t];0<n.children.length?n.children.forEach((A,t)=>{r.adjustChildCoordinatesRecursiveCore(e,r,n,t)}):this.adjustChildCoordinates(e,r,A,t)}adjustChildCoordinates(A,t,e,r){var n,i,s,o,a,e=e.children[r];return"function"==typeof e.measureText&&(A.save(),e.setContext(A,!0),n=e.getAttribute("x"),i=e.getAttribute("y"),s=e.getAttribute("dx"),o=e.getAttribute("dy"),a=e.getStyle("font-family").getDefinition(),a=Boolean(a)&&a.isRTL,0===r&&(n.hasValue()||n.setValue(e.getInheritedAttribute("x")),i.hasValue()||i.setValue(e.getInheritedAttribute("y")),s.hasValue()||s.setValue(e.getInheritedAttribute("dx")),o.hasValue()||o.setValue(e.getInheritedAttribute("dy"))),r=e.measureText(A),a&&(t.x-=r),n.hasValue()?(t.applyAnchoring(),e.x=n.getPixels("x"),s.hasValue()&&(e.x+=s.getPixels("x"))):(s.hasValue()&&(t.x+=s.getPixels("x")),e.x=t.x),t.x=e.x,a||(t.x+=r),i.hasValue()?(e.y=i.getPixels("y"),o.hasValue()&&(e.y+=o.getPixels("y"))):(o.hasValue()&&(t.y+=o.getPixels("y")),e.y=t.y),t.y=e.y,t.leafTexts.push(e),t.minX=Math.min(t.minX,e.x,e.x+r),t.maxX=Math.max(t.maxX,e.x,e.x+r),e.clearContext(A),A.restore()),e}getChildBoundingBox(e,r,A,t){var n,i=A.children[t];return"function"==typeof i.getBoundingBox&&(n=i.getBoundingBox(e))?(i.children.forEach((A,t)=>{t=r.getChildBoundingBox(e,r,i,t);n.addBoundingBox(t)}),n):null}renderChild(e,r,A,t){var n=A.children[t];n.render(e),n.children.forEach((A,t)=>{r.renderChild(e,r,n,t)})}measureText(A){var t=this.measureCache;return~t?t:(t=this.getText(),A=this.measureTargetText(A,t),this.measureCache=A)}measureTargetText(A,t){if(!t.length)return 0;var e=this.parent,r=e.getStyle("font-family").getDefinition();if(r){for(var n=this.getFontSize(),i=r.isRTL?t.split("").reverse().join(""):t,s=kk(e.getAttribute("dx").getString()),o=i.length,a=0,c=0;c<o;c++)a+=(this.getGlyph(r,i,c).horizAdvX||r.horizAdvX)*n/r.fontFace.unitsPerEm,void 0===s[c]||isNaN(s[c])||(a+=s[c]);return a}if(!A.measureText)return 10*t.length;A.save(),this.setContext(A,!0);e=A.measureText(t).width;return this.clearContext(A),A.restore(),e}getInheritedAttribute(A){for(var t=this;t instanceof TK&&t.isFirstChild();){var e=t.parent.getAttribute(A);if(e.hasValue(!0))return e.getValue("0");t=t.parent}return null}}class DK extends TK{constructor(A,t,e){super(A,t,new.target===DK||e),this.type="tspan",this.text=0<this.children.length?"":this.getTextFromNode()}getText(){return this.text}}class OK extends DK{constructor(){super(...arguments),this.type="textNode"}}class PK extends SK{constructor(){super(...arguments),this.type="svg",this.root=!1}setContext(A){var t,e=this.document,{screen:r,window:n}=e,i=A.canvas,{width:i,height:n}=(r.setDefaults(A),i.style&&void 0!==A.font&&n&&void 0!==n.getComputedStyle&&(A.font=n.getComputedStyle(i).getPropertyValue("font"),(n=new L(e,"fontSize",HK.parse(A.font).fontSize)).hasValue())&&(e.rootEmSize=n.getPixels("y"),e.emSize=e.rootEmSize),this.getAttribute("x").hasValue()||this.getAttribute("x",!0).setValue(0),this.getAttribute("y").hasValue()||this.getAttribute("y",!0).setValue(0),r.viewPort),s=(this.getStyle("width").hasValue()||this.getStyle("width",!0).setValue("100%"),this.getStyle("height").hasValue()||this.getStyle("height",!0).setValue("100%"),this.getStyle("color").hasValue()||this.getStyle("color",!0).setValue("black"),this.getAttribute("refX")),o=this.getAttribute("refY"),a=this.getAttribute("viewBox"),a=a.hasValue()?kk(a.getString()):null,c=!this.root&&"visible"!==this.getStyle("overflow").getValue("hidden"),l=0,u=0,h=0,B=0;a&&(l=a[0],u=a[1]),this.root||(i=this.getStyle("width").getPixels("x"),n=this.getStyle("height").getPixels("y"),"marker"===this.type&&(h=l,B=u,u=l=0)),r.viewPort.setCurrent(i,n),!this.node||this.parent&&"foreignObject"!==(null==(t=this.node.parentNode)?void 0:t.nodeName)||!this.getStyle("transform",!1,!0).hasValue()||this.getStyle("transform-origin",!1,!0).hasValue()||this.getStyle("transform-origin",!0,!0).setValue("50% 50%"),super.setContext(A),A.translate(this.getAttribute("x").getPixels("x"),this.getAttribute("y").getPixels("y")),a&&(i=a[2],n=a[3]),e.setViewBox({ctx:A,aspectRatio:this.getAttribute("preserveAspectRatio").getString(),width:r.viewPort.width,desiredWidth:i,height:r.viewPort.height,desiredHeight:n,minX:l,minY:u,refX:s.getValue(),refY:o.getValue(),clip:c,clipX:h,clipY:B}),a&&(r.viewPort.removeCurrent(),r.viewPort.setCurrent(i,n))}clearContext(A){super.clearContext(A),this.document.screen.viewPort.removeCurrent()}resize(A){var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:A,e=2<arguments.length&&void 0!==arguments[2]&&arguments[2],r=this.getAttribute("width",!0),n=this.getAttribute("height",!0),i=this.getAttribute("viewBox"),s=this.getAttribute("style"),o=r.getNumber(0),a=n.getNumber(0);e&&("string"==typeof e?this.getAttribute("preserveAspectRatio",!0).setValue(e):(e=this.getAttribute("preserveAspectRatio")).hasValue()&&e.setValue(e.getString().replace(/^\s*(\S.*\S)\s*$/,"$1"))),r.setValue(A),n.setValue(t),i.hasValue()||i.setValue("0 0 ".concat(o||A," ").concat(a||t)),s.hasValue()&&(e=this.getStyle("width"),r=this.getStyle("height"),e.hasValue()&&e.setValue("".concat(A,"px")),r.hasValue())&&r.setValue("".concat(t,"px"))}}class MK extends NK{constructor(){super(...arguments),this.type="rect"}path(A){var t=this.getAttribute("x").getPixels("x"),e=this.getAttribute("y").getPixels("y"),r=this.getStyle("width",!1,!0).getPixels("x"),n=this.getStyle("height",!1,!0).getPixels("y"),i=this.getAttribute("rx"),s=this.getAttribute("ry"),o=i.getPixels("x"),a=s.getPixels("y");return i.hasValue()&&!s.hasValue()&&(a=o),s.hasValue()&&!i.hasValue()&&(o=a),o=Math.min(o,r/2),a=Math.min(a,n/2),A&&(s=(Math.sqrt(2)-1)/3*4,A.beginPath(),0<n)&&0<r&&(A.moveTo(t+o,e),A.lineTo(t+r-o,e),A.bezierCurveTo(t+r-o+s*o,e,t+r,e+a-s*a,t+r,e+a),A.lineTo(t+r,e+n-a),A.bezierCurveTo(t+r,e+n-a+s*a,t+r-o+s*o,e+n,t+r-o,e+n),A.lineTo(t+o,e+n),A.bezierCurveTo(t+o-s*o,e+n,t,e+n-a+s*a,t,e+n-a),A.lineTo(t,e+a),A.bezierCurveTo(t,e+a-s*a,t+o-s*o,e,t+o,e),A.closePath()),new LK(t,e,t+r,e+n)}getMarkers(){return null}}class kK extends NK{constructor(){super(...arguments),this.type="circle"}path(A){var t=this.getAttribute("cx").getPixels("x"),e=this.getAttribute("cy").getPixels("y"),r=this.getAttribute("r").getPixels();return A&&0<r&&(A.beginPath(),A.arc(t,e,r,0,2*Math.PI,!1),A.closePath()),new LK(t-r,e-r,t+r,e+r)}getMarkers(){return null}}class KK extends NK{constructor(){super(...arguments),this.type="ellipse"}path(A){var t=(Math.sqrt(2)-1)/3*4,e=this.getAttribute("rx").getPixels("x"),r=this.getAttribute("ry").getPixels("y"),n=this.getAttribute("cx").getPixels("x"),i=this.getAttribute("cy").getPixels("y");return A&&0<e&&0<r&&(A.beginPath(),A.moveTo(n+e,i),A.bezierCurveTo(n+e,i+t*r,n+t*e,i+r,n,i+r),A.bezierCurveTo(n-t*e,i+r,n-e,i+t*r,n-e,i),A.bezierCurveTo(n-e,i-t*r,n-t*e,i-r,n,i-r),A.bezierCurveTo(n+t*e,i-r,n+e,i-t*r,n+e,i),A.closePath()),new LK(n-e,i-r,n+e,i+r)}getMarkers(){return null}}class RK extends NK{constructor(){super(...arguments),this.type="line"}getPoints(){return[new uK(this.getAttribute("x1").getPixels("x"),this.getAttribute("y1").getPixels("y")),new uK(this.getAttribute("x2").getPixels("x"),this.getAttribute("y2").getPixels("y"))]}path(A){var[{x:t,y:e},{x:r,y:n}]=this.getPoints();return A&&(A.beginPath(),A.moveTo(t,e),A.lineTo(r,n)),new LK(t,e,r,n)}getMarkers(){var[A,t]=this.getPoints(),e=A.angleTo(t);return[[A,e],[t,e]]}}class VK extends NK{constructor(A,t,e){super(A,t,e),this.type="polyline",this.points=[],this.points=uK.parsePath(this.getAttribute("points").getString())}path(e){var A=this.points,[{x:t,y:r}]=A,n=new LK(t,r);return e&&(e.beginPath(),e.moveTo(t,r)),A.forEach(A=>{var{x:A,y:t}=A;n.addPoint(A,t),e&&e.lineTo(A,t)}),n}getMarkers(){var e=this.points,r=e.length-1,n=[];return e.forEach((A,t)=>{t!==r&&n.push([A,A.angleTo(e[t+1])])}),0<n.length&&n.push([e[e.length-1],n[n.length-1][1]]),n}}class GK extends VK{constructor(){super(...arguments),this.type="polygon"}path(A){var t=super.path(A),[{x:e,y:r}]=this.points;return A&&(A.lineTo(e,r),A.closePath()),t}}class jK extends EK{constructor(){super(...arguments),this.type="pattern"}createPattern(A,t,e){var r=this.getStyle("width").getPixels("x",!0),n=this.getStyle("height").getPixels("y",!0),i=new PK(this.document,null),s=(i.attributes.viewBox=new L(this.document,"viewBox",this.getAttribute("viewBox").getValue()),i.attributes.width=new L(this.document,"width","".concat(r,"px")),i.attributes.height=new L(this.document,"height","".concat(n,"px")),i.attributes.transform=new L(this.document,"transform",this.getAttribute("patternTransform").getValue()),i.children=this.children,this.document.createCanvas(r,n)),o=s.getContext("2d"),r=this.getAttribute("x"),n=this.getAttribute("y");r.hasValue()&&n.hasValue()&&o.translate(r.getPixels("x",!0),n.getPixels("y",!0)),e.hasValue()?this.styles["fill-opacity"]=e:Reflect.deleteProperty(this.styles,"fill-opacity");for(var a=-1;a<=1;a++)for(var c=-1;c<=1;c++)o.save(),i.attributes.x=new L(this.document,"x",a*s.width),i.attributes.y=new L(this.document,"y",c*s.height),i.render(o),o.restore();return A.createPattern(s,"repeat")}}class XK extends EK{constructor(){super(...arguments),this.type="marker"}render(A,t,e){var r,n,i,s;t&&({x:t,y:r}=t,n=this.getAttribute("orient").getString("auto"),i=this.getAttribute("markerUnits").getString("strokeWidth"),A.translate(t,r),"auto"===n&&A.rotate(e),"strokeWidth"===i&&A.scale(A.lineWidth,A.lineWidth),A.save(),(s=new PK(this.document,null)).type=this.type,s.attributes.viewBox=new L(this.document,"viewBox",this.getAttribute("viewBox").getValue()),s.attributes.refX=new L(this.document,"refX",this.getAttribute("refX").getValue()),s.attributes.refY=new L(this.document,"refY",this.getAttribute("refY").getValue()),s.attributes.width=new L(this.document,"width",this.getAttribute("markerWidth").getValue()),s.attributes.height=new L(this.document,"height",this.getAttribute("markerHeight").getValue()),s.attributes.overflow=new L(this.document,"overflow",this.getAttribute("overflow").getValue()),s.attributes.fill=new L(this.document,"fill",this.getAttribute("fill").getColor("black")),s.attributes.stroke=new L(this.document,"stroke",this.getAttribute("stroke").getValue("none")),s.children=this.children,s.render(A),A.restore(),"strokeWidth"===i&&A.scale(1/A.lineWidth,1/A.lineWidth),"auto"===n&&A.rotate(-e),A.translate(-t,-r))}}class WK extends EK{constructor(){super(...arguments),this.type="defs"}render(){}}class JK extends SK{constructor(){super(...arguments),this.type="g"}getBoundingBox(t){var e=new LK;return this.children.forEach(A=>{e.addBoundingBox(A.getBoundingBox(t))}),e}}class YK extends EK{constructor(A,t,e){super(A,t,e),this.attributesToInherit=["gradientUnits"],this.stops=[];var{stops:r,children:A}=this;A.forEach(A=>{"stop"===A.type&&r.push(A)})}getGradientUnits(){return this.getAttribute("gradientUnits").getString("objectBoundingBox")}createGradient(A,t,e){var r,n,i=this,i=(this.getHrefAttribute().hasValue()&&(i=this.getHrefAttribute().getDefinition(),this.inheritStopContainer(i)),i).stops,s=this.getGradient(A,t);return s?(i.forEach(A=>{s.addColorStop(A.offset,this.addParentOpacity(e,A.color))}),this.getAttribute("gradientTransform").hasValue()?(A=this.document,{MAX_VIRTUAL_PIXELS:t,viewPort:r}=A.screen,[r]=r.viewPorts,(n=new MK(A,null)).attributes.x=new L(A,"x",-t/3),n.attributes.y=new L(A,"y",-t/3),n.attributes.width=new L(A,"width",t),n.attributes.height=new L(A,"height",t),(t=new JK(A,null)).attributes.transform=new L(A,"transform",this.getAttribute("gradientTransform").getValue()),t.children=[n],(n=new PK(A,null)).attributes.x=new L(A,"x",0),n.attributes.y=new L(A,"y",0),n.attributes.width=new L(A,"width",r.width),n.attributes.height=new L(A,"height",r.height),n.children=[t],(A=(t=A.createCanvas(r.width,r.height)).getContext("2d")).fillStyle=s,n.render(A),A.createPattern(t,"no-repeat")):s):this.addParentOpacity(e,i[i.length-1].color)}inheritStopContainer(t){this.attributesToInherit.forEach(A=>{!this.getAttribute(A).hasValue()&&t.getAttribute(A).hasValue()&&this.getAttribute(A,!0).setValue(t.getAttribute(A).getValue())})}addParentOpacity(A,t){return A.hasValue()?new L(this.document,"color",t).addOpacity(A).getColor():t}}class qK extends YK{constructor(A,t,e){super(A,t,e),this.type="linearGradient",this.attributesToInherit.push("x1","y1","x2","y2")}getGradient(A,t){var e="objectBoundingBox"===this.getGradientUnits(),t=e?t.getBoundingBox(A):null;if(e&&!t)return null;this.getAttribute("x1").hasValue()||this.getAttribute("y1").hasValue()||this.getAttribute("x2").hasValue()||this.getAttribute("y2").hasValue()||(this.getAttribute("x1",!0).setValue(0),this.getAttribute("y1",!0).setValue(0),this.getAttribute("x2",!0).setValue(1),this.getAttribute("y2",!0).setValue(0));var r=e?t.x+t.width*this.getAttribute("x1").getNumber():this.getAttribute("x1").getPixels("x"),n=e?t.y+t.height*this.getAttribute("y1").getNumber():this.getAttribute("y1").getPixels("y"),i=e?t.x+t.width*this.getAttribute("x2").getNumber():this.getAttribute("x2").getPixels("x"),e=e?t.y+t.height*this.getAttribute("y2").getNumber():this.getAttribute("y2").getPixels("y");return r===i&&n===e?null:A.createLinearGradient(r,n,i,e)}}class zK extends YK{constructor(A,t,e){super(A,t,e),this.type="radialGradient",this.attributesToInherit.push("cx","cy","r","fx","fy","fr")}getGradient(A,t){var e="objectBoundingBox"===this.getGradientUnits(),t=t.getBoundingBox(A);if(e&&!t)return null;this.getAttribute("cx").hasValue()||this.getAttribute("cx",!0).setValue("50%"),this.getAttribute("cy").hasValue()||this.getAttribute("cy",!0).setValue("50%"),this.getAttribute("r").hasValue()||this.getAttribute("r",!0).setValue("50%");var r=e?t.x+t.width*this.getAttribute("cx").getNumber():this.getAttribute("cx").getPixels("x"),n=e?t.y+t.height*this.getAttribute("cy").getNumber():this.getAttribute("cy").getPixels("y"),i=r,s=n,e=(this.getAttribute("fx").hasValue()&&(i=e?t.x+t.width*this.getAttribute("fx").getNumber():this.getAttribute("fx").getPixels("x")),this.getAttribute("fy").hasValue()&&(s=e?t.y+t.height*this.getAttribute("fy").getNumber():this.getAttribute("fy").getPixels("y")),e?(t.width+t.height)/2*this.getAttribute("r").getNumber():this.getAttribute("r").getPixels()),t=this.getAttribute("fr").getPixels();return A.createRadialGradient(i,s,t,r,n,e)}}class ZK extends EK{constructor(A,t,e){super(A,t,e),this.type="stop";A=Math.max(0,Math.min(1,this.getAttribute("offset").getNumber())),t=this.getStyle("stop-opacity"),e=this.getStyle("stop-color",!0);""===e.getString()&&e.setValue("#000"),t.hasValue()&&(e=e.addOpacity(t)),this.offset=A,this.color=e.getColor()}}class $K extends EK{constructor(A,t,e){super(A,t,e),this.type="animate",this.duration=0,this.initialValue=null,this.initialUnits="",this.removed=!1,this.frozen=!1,A.screen.animations.push(this),this.begin=this.getAttribute("begin").getMilliseconds(),this.maxDuration=this.begin+this.getAttribute("dur").getMilliseconds(),this.from=this.getAttribute("from"),this.to=this.getAttribute("to"),this.values=new L(A,"values",null);t=this.getAttribute("values");t.hasValue()&&this.values.setValue(t.getString().split(";"))}getProperty(){var A=this.getAttribute("attributeType").getString(),t=this.getAttribute("attributeName").getString();return"CSS"===A?this.parent.getStyle(t,!0):this.parent.getAttribute(t,!0)}calcValue(){var A=this.initialUnits,{progress:t,from:e,to:r}=this.getProgress(),r=e.getNumber()+(r.getNumber()-e.getNumber())*t;return"%"===A&&(r*=100),"".concat(r).concat(A)}update(A){var t=this.parent,e=this.getProperty();if(this.initialValue||(this.initialValue=e.getString(),this.initialUnits=e.getUnits()),this.duration>this.maxDuration){var r=this.getAttribute("fill").getString("remove");if("indefinite"===this.getAttribute("repeatCount").getString()||"indefinite"===this.getAttribute("repeatDur").getString())this.duration=0;else if("freeze"!==r||this.frozen){if("remove"===r&&!this.removed)return this.removed=!0,e.setValue(t.animationFrozen?t.animationFrozenValue:this.initialValue),!0}else this.frozen=!0,t.animationFrozen=!0,t.animationFrozenValue=e.getString();return!1}this.duration+=A;r=!1;return this.begin<this.duration&&(t=this.calcValue(),(A=this.getAttribute("type")).hasValue()&&(A=A.getString(),t="".concat(A,"(").concat(t,")")),e.setValue(t),r=!0),r}getProgress(){var A,t,e,{document:r,values:n}=this,i={progress:(this.duration-this.begin)/(this.maxDuration-this.begin)};return n.hasValue()?(A=i.progress*(n.getValue().length-1),t=Math.floor(A),e=Math.ceil(A),i.from=new L(r,"from",parseFloat(n.getValue()[t])),i.to=new L(r,"to",parseFloat(n.getValue()[e])),i.progress=(A-t)/(e-t)):(i.from=this.from,i.to=this.to),i}}class AR extends $K{constructor(){super(...arguments),this.type="animateColor"}calcValue(){var A,t,{progress:e,from:r,to:n}=this.getProgress(),r=new jM(r.getColor()),n=new jM(n.getColor());return r.ok&&n.ok?(A=r.r+(n.r-r.r)*e,t=r.g+(n.g-r.g)*e,n=r.b+(n.b-r.b)*e,"rgb(".concat(Math.floor(A),", ").concat(Math.floor(t),", ").concat(Math.floor(n),")")):this.getAttribute("from").getColor()}}class tR extends $K{constructor(){super(...arguments),this.type="animateTransform"}calcValue(){var{progress:e,from:A,to:t}=this.getProgress(),A=kk(A.getString()),r=kk(t.getString());return A.map((A,t)=>A+(r[t]-A)*e).join(" ")}}class eR extends EK{constructor(A,t,e){super(A,t,e),this.type="font",this.glyphs=Object.create(null),this.horizAdvX=this.getAttribute("horiz-adv-x").getNumber();var r,n=A.definitions,t=this.children;for(r of t)switch(r.type){case"font-face":var i=(this.fontFace=r).getStyle("font-family");i.hasValue()&&(n[i.getString()]=this);break;case"missing-glyph":this.missingGlyph=r;break;case"glyph":i=r;i.arabicForm?(this.isRTL=!0,this.isArabic=!0,void 0===this.glyphs[i.unicode]&&(this.glyphs[i.unicode]=Object.create(null)),this.glyphs[i.unicode][i.arabicForm]=i):this.glyphs[i.unicode]=i}}render(){}}class rR extends EK{constructor(A,t,e){super(A,t,e),this.type="font-face",this.ascent=this.getAttribute("ascent").getNumber(),this.descent=this.getAttribute("descent").getNumber(),this.unitsPerEm=this.getAttribute("units-per-em").getNumber()}}class nR extends NK{constructor(){super(...arguments),this.type="missing-glyph",this.horizAdvX=0}}class iR extends TK{constructor(){super(...arguments),this.type="tref"}getText(){var A=this.getHrefAttribute().getDefinition();if(A){A=A.children[0];if(A)return A.getText()}return""}}class sR extends TK{constructor(A,t,e){super(A,t,e),this.type="a";A=t.childNodes,e=A[0],t=0<A.length&&Array.from(A).every(A=>3===A.nodeType);this.hasText=t,this.text=t?this.getTextFromNode(e):""}getText(){return this.text}renderChildren(A){var t,e,r,n;this.hasText?(super.renderChildren(A),{document:r,x:t,y:e}=this,n=r.screen.mouse,r=new L(r,"fontSize",HK.parse(r.ctx.font).fontSize),n.isWorking()&&n.checkBoundingBox(this,new LK(t,e-r.getPixels("y"),t+this.measureText(A),e))):0<this.children.length&&((n=new JK(this.document,null)).children=this.children,n.parent=this,n.render(A))}onClick(){var A=this.document.window;A&&A.open(this.getHrefAttribute().getString())}onMouseMove(){this.document.ctx.canvas.style.cursor="pointer"}}function oR(t,A){var e,r=Object.keys(t);return Object.getOwnPropertySymbols&&(e=Object.getOwnPropertySymbols(t),A&&(e=e.filter(function(A){return Object.getOwnPropertyDescriptor(t,A).enumerable})),r.push.apply(r,e)),r}function aR(t){for(var A=1;A<arguments.length;A++){var e=null!=arguments[A]?arguments[A]:{};A%2?oR(Object(e),!0).forEach(function(A){gM(t,A,e[A])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):oR(Object(e)).forEach(function(A){Object.defineProperty(t,A,Object.getOwnPropertyDescriptor(e,A))})}return t}class cR extends TK{constructor(A,t,e){super(A,t,e),this.type="textPath",this.textWidth=0,this.textHeight=0,this.pathLength=-1,this.glyphInfo=null,this.letterSpacingCache=[],this.measuresCache=new Map([["",0]]);A=this.getHrefAttribute().getDefinition();this.text=this.getTextFromNode(),this.dataArray=this.parsePathData(A)}getText(){return this.text}path(h){var A=this.dataArray;h&&h.beginPath(),A.forEach(A=>{var{type:A,points:t}=A;switch(A){case S.LINE_TO:h&&h.lineTo(t[0],t[1]);break;case S.MOVE_TO:h&&h.moveTo(t[0],t[1]);break;case S.CURVE_TO:h&&h.bezierCurveTo(t[0],t[1],t[2],t[3],t[4],t[5]);break;case S.QUAD_TO:h&&h.quadraticCurveTo(t[0],t[1],t[2],t[3]);break;case S.ARC:var[e,r,n,i,s,o,a,c]=t,l=i<n?n:i,u=i<n?1:n/i,i=i<n?i/n:1;h&&(h.translate(e,r),h.rotate(a),h.scale(u,i),h.arc(0,0,l,s,s+o,Boolean(1-c)),h.scale(1/u,1/i),h.rotate(-a),h.translate(-e,-r));break;case S.CLOSE_PATH:h&&h.closePath()}})}renderChildren(i){this.setTextData(i),i.save();var s=this.parent.getStyle("text-decoration").getString(),o=this.getFontSize(),A=this.glyphInfo,t=i.fillStyle;"underline"===s&&i.beginPath(),A.forEach((A,t)=>{var{p0:A,p1:e,rotation:r,text:n}=A;i.save(),i.translate(A.x,A.y),i.rotate(r),i.fillStyle&&i.fillText(n,0,0),i.strokeStyle&&i.strokeText(n,0,0),i.restore(),"underline"===s&&(0===t&&i.moveTo(A.x,A.y+o/8),i.lineTo(e.x,e.y+o/5))}),"underline"===s&&(i.lineWidth=o/20,i.strokeStyle=t,i.stroke(),i.closePath()),i.restore()}getLetterSpacingAt(){return this.letterSpacingCache[0<arguments.length&&void 0!==arguments[0]?arguments[0]:0]||0}findSegmentToFitChar(A,t,e,r,n,i,s,o,a){var A=this.measureText(A,o),o=(" "===o&&"justify"===t&&e<r&&(A+=(r-e)/n),-1<a&&(i+=this.getLetterSpacingAt(a)),this.textHeight/20),t=this.getEquidistantPointOnPath(i,o,0),r=this.getEquidistantPointOnPath(i+A,o,0),e={p0:t,p1:r},n=t&&r?Math.atan2(r.y-t.y,r.x-t.x):0;return s&&(a=Math.cos(Math.PI/2+n)*s,o=Math.cos(-n)*s,e.p0=aR(aR({},t),{},{x:t.x+a,y:t.y+o}),e.p1=aR(aR({},r),{},{x:r.x+a,y:r.y+o})),{offset:i+=A,segment:e,rotation:n}}measureText(A,t){var e=this.measuresCache,t=t||this.getText();return e.has(t)?e.get(t):(A=this.measureTargetText(A,t),e.set(t,A),A)}setTextData(n){if(!this.glyphInfo){var A=this.getText(),i=A.split(""),s=A.split(" ").length-1,t=this.parent.getAttribute("dx").split().map(A=>A.getPixels("x")),o=this.parent.getAttribute("dy").getPixels("y"),a=this.parent.getStyle("text-anchor").getString("start"),e=this.getStyle("letter-spacing"),r=this.parent.getStyle("letter-spacing"),c=0,l=(e.hasValue()&&"inherit"!==e.getValue()?e.hasValue()&&"initial"!==e.getValue()&&"unset"!==e.getValue()&&(c=e.getPixels()):c=r.getPixels(),[]),u=A.length;this.letterSpacingCache=l;for(var h=0;h<u;h++)l.push(void 0!==t[h]?t[h]:c);var e=l.reduce((A,t,e)=>0!==e&&A+t||0,0),r=this.measureText(n),B=Math.max(r+e,0),g=(this.textWidth=r,this.textHeight=this.getFontSize(),this.glyphInfo=[],this.getPathLength()),A=this.getStyle("startOffset").getNumber(0)*g,f="end"!==a&&"right"!==a?"middle"!==a&&"center"!==a?0:-B/2:-B;f+=A,i.forEach((A,t)=>{var{offset:A,segment:e,rotation:r}=this.findSegmentToFitChar(n,a,B,g,s,f,o,A,t);f=A,e.p0&&e.p1&&this.glyphInfo.push({text:i[t],p0:e.p0,p1:e.p1,rotation:r})})}}parsePathData(A){if(this.pathLength=-1,!A)return[];var t=[],e=A.pathParser;for(e.reset();!e.isEnd();){var r=e.current,n=r?r.x:0,r=r?r.y:0,i=e.next(),s=i.type,o=[];switch(i.type){case S.MOVE_TO:this.pathM(e,o);break;case S.LINE_TO:s=this.pathL(e,o);break;case S.HORIZ_LINE_TO:s=this.pathH(e,o);break;case S.VERT_LINE_TO:s=this.pathV(e,o);break;case S.CURVE_TO:this.pathC(e,o);break;case S.SMOOTH_CURVE_TO:s=this.pathS(e,o);break;case S.QUAD_TO:this.pathQ(e,o);break;case S.SMOOTH_QUAD_TO:s=this.pathT(e,o);break;case S.ARC:o=this.pathA(e);break;case S.CLOSE_PATH:NK.pathZ(e)}i.type!==S.CLOSE_PATH?t.push({type:s,points:o,start:{x:n,y:r},pathLength:this.calcLength(n,r,s,o)}):t.push({type:S.CLOSE_PATH,points:[],pathLength:0})}return t}pathM(A,t){var{x:A,y:e}=NK.pathM(A).point;t.push(A,e)}pathL(A,t){var{x:A,y:e}=NK.pathL(A).point;return t.push(A,e),S.LINE_TO}pathH(A,t){var{x:A,y:e}=NK.pathH(A).point;return t.push(A,e),S.LINE_TO}pathV(A,t){var{x:A,y:e}=NK.pathV(A).point;return t.push(A,e),S.LINE_TO}pathC(A,t){var{point:A,controlPoint:e,currentPoint:r}=NK.pathC(A);t.push(A.x,A.y,e.x,e.y,r.x,r.y)}pathS(A,t){var{point:A,controlPoint:e,currentPoint:r}=NK.pathS(A);return t.push(A.x,A.y,e.x,e.y,r.x,r.y),S.CURVE_TO}pathQ(A,t){var{controlPoint:A,currentPoint:e}=NK.pathQ(A);t.push(A.x,A.y,e.x,e.y)}pathT(A,t){var{controlPoint:A,currentPoint:e}=NK.pathT(A);return t.push(A.x,A.y,e.x,e.y),S.QUAD_TO}pathA(A){var{rX:A,rY:t,sweepFlag:e,xAxisRotation:r,centp:n,a1:i,ad:s}=NK.pathA(A);return 0===e&&0<s&&(s-=2*Math.PI),1===e&&s<0&&(s+=2*Math.PI),[n.x,n.y,A,t,i,s,r,e]}calcLength(A,t,e,r){var n=0,i=null,s=null,o=0;switch(e){case S.LINE_TO:return this.getLineLength(A,t,r[0],r[1]);case S.CURVE_TO:for(i=this.getPointOnCubicBezier(n=0,A,t,r[0],r[1],r[2],r[3],r[4],r[5]),o=.01;o<=1;o+=.01)s=this.getPointOnCubicBezier(o,A,t,r[0],r[1],r[2],r[3],r[4],r[5]),n+=this.getLineLength(i.x,i.y,s.x,s.y),i=s;return n;case S.QUAD_TO:for(i=this.getPointOnQuadraticBezier(n=0,A,t,r[0],r[1],r[2],r[3]),o=.01;o<=1;o+=.01)s=this.getPointOnQuadraticBezier(o,A,t,r[0],r[1],r[2],r[3]),n+=this.getLineLength(i.x,i.y,s.x,s.y),i=s;return n;case S.ARC:var n=0,a=r[4],c=r[5],l=r[4]+c,u=Math.PI/180;if(Math.abs(a-l)<u&&(u=Math.abs(a-l)),i=this.getPointOnEllipticalArc(r[0],r[1],r[2],r[3],a,0),c<0)for(o=a-u;l<o;o-=u)s=this.getPointOnEllipticalArc(r[0],r[1],r[2],r[3],o,0),n+=this.getLineLength(i.x,i.y,s.x,s.y),i=s;else for(o=a+u;o<l;o+=u)s=this.getPointOnEllipticalArc(r[0],r[1],r[2],r[3],o,0),n+=this.getLineLength(i.x,i.y,s.x,s.y),i=s;return s=this.getPointOnEllipticalArc(r[0],r[1],r[2],r[3],l,0),n+=this.getLineLength(i.x,i.y,s.x,s.y)}return 0}getPointOnLine(A,t,e,r,n){var i=5<arguments.length&&void 0!==arguments[5]?arguments[5]:t,s=6<arguments.length&&void 0!==arguments[6]?arguments[6]:e,o=(n-e)/(r-t+1e-8),a=Math.sqrt(A*A/(1+o*o)),c=(r<t&&(a*=-1),o*a),l=null;if(r===t)l={x:i,y:s+c};else if((s-e)/(i-t+1e-8)==o)l={x:i+a,y:s+c};else{c=this.getLineLength(t,e,r,n);if(c<1e-8)return null;var u=(i-t)*(r-t)+(s-e)*(n-e),c=this.getLineLength(i,s,i=t+(u/=c*c)*(r-t),s=e+u*(n-e)),u=Math.sqrt(A*A-c*c),a=Math.sqrt(u*u/(1+o*o));r<t&&(a*=-1),l={x:i+a,y:s+o*a}}return l}getPointOnPath(A){var t=this.getPathLength(),e=0,r=null;if(!(A<-5e-5||t<A-5e-5)){var n,t=this.dataArray;for(n of t){if(!n||!(n.pathLength<5e-5||e+n.pathLength+5e-5<A)){var i=A-e,s=0;switch(n.type){case S.LINE_TO:r=this.getPointOnLine(i,n.start.x,n.start.y,n.points[0],n.points[1],n.start.x,n.start.y);break;case S.ARC:var o=n.points[4],a=n.points[5],c=n.points[4]+a,s=o+i/n.pathLength*a;a<0&&s<c||0<=a&&c<s||(r=this.getPointOnEllipticalArc(n.points[0],n.points[1],n.points[2],n.points[3],s,n.points[6]));break;case S.CURVE_TO:1<(s=i/n.pathLength)&&(s=1),r=this.getPointOnCubicBezier(s,n.start.x,n.start.y,n.points[0],n.points[1],n.points[2],n.points[3],n.points[4],n.points[5]);break;case S.QUAD_TO:1<(s=i/n.pathLength)&&(s=1),r=this.getPointOnQuadraticBezier(s,n.start.x,n.start.y,n.points[0],n.points[1],n.points[2],n.points[3])}if(r)return r;break}e+=n.pathLength}}return null}getLineLength(A,t,e,r){return Math.sqrt((e-A)*(e-A)+(r-t)*(r-t))}getPathLength(){return-1===this.pathLength&&(this.pathLength=this.dataArray.reduce((A,t)=>0<t.pathLength?A+t.pathLength:A,0)),this.pathLength}getPointOnCubicBezier(A,t,e,r,n,i,s,o,a){return{x:o*rK(A)+i*nK(A)+r*iK(A)+t*sK(A),y:a*rK(A)+s*nK(A)+n*iK(A)+e*sK(A)}}getPointOnQuadraticBezier(A,t,e,r,n,i,s){return{x:i*oK(A)+r*aK(A)+t*cK(A),y:s*oK(A)+n*aK(A)+e*cK(A)}}getPointOnEllipticalArc(A,t,e,r,n,i){var s=Math.cos(i),i=Math.sin(i),e=e*Math.cos(n),r=r*Math.sin(n);return{x:A+(e*s-r*i),y:t+(e*i+r*s)}}buildEquidistantCache(A,t){var e=this.getPathLength(),r=t||.25,n=A||e/100;if(!this.equidistantCache||this.equidistantCache.step!==n||this.equidistantCache.precision!==r){this.equidistantCache={step:n,precision:r,points:[]};for(var i=0,s=0;s<=e;s+=r){var o=this.getPointOnPath(s),a=this.getPointOnPath(s+r);o&&a&&n<=(i+=this.getLineLength(o.x,o.y,a.x,a.y))&&(this.equidistantCache.points.push({x:o.x,y:o.y,distance:s}),i-=n)}}}getEquidistantPointOnPath(A,t,e){return this.buildEquidistantCache(t,e),!(A<0||5e-5<A-this.getPathLength())&&(t=Math.round(A/this.getPathLength()*(this.equidistantCache.points.length-1)),this.equidistantCache.points[t])||null}}var lR=/^\s*data:(([^/,;]+\/[^/,;]+)(?:;([^,;=]+=[^,;=]+))?)?(?:;(base64))?,(.*)$/i;class uR extends SK{constructor(A,t,e){super(A,t,e),this.type="image",this.loaded=!1;t=this.getHrefAttribute().getString();t&&(e=t.endsWith(".svg")||/^\s*data:image\/svg\+xml/i.test(t),A.images.push(this),e?this.loadSvg(t):this.loadImage(t),this.isSvg=e)}loadImage(t){var e=this;return BP(function*(){try{var A=yield e.document.createImage(t);e.image=A}catch(A){console.error('Error while loading image "'.concat(t,'":'),A)}e.loaded=!0})()}loadSvg(r){var n=this;return BP(function*(){var A=lR.exec(r);if(A){var t=A[5];"base64"===A[4]?n.image=atob(t):n.image=decodeURIComponent(t)}else try{var e=yield(yield n.document.fetch(r)).text();n.image=e}catch(A){console.error('Error while loading image "'.concat(r,'":'),A)}n.loaded=!0})()}renderChildren(A){var{document:t,image:e,loaded:r}=this,n=this.getAttribute("x").getPixels("x"),i=this.getAttribute("y").getPixels("y"),s=this.getStyle("width").getPixels("x"),o=this.getStyle("height").getPixels("y");r&&e&&s&&o&&(A.save(),A.translate(n,i),this.isSvg?((r=t.canvg.forkString(A,this.image,{ignoreMouse:!0,ignoreAnimation:!0,ignoreDimensions:!0,ignoreClear:!0,offsetX:0,offsetY:0,scaleWidth:s,scaleHeight:o})).document.documentElement.parent=this,r.render()):(e=this.image,t.setViewBox({ctx:A,aspectRatio:this.getAttribute("preserveAspectRatio").getString(),width:s,desiredWidth:e.width,height:o,desiredHeight:e.height}),this.loaded&&(void 0===e.complete||e.complete)&&A.drawImage(e,0,0)),A.restore())}getBoundingBox(){var A=this.getAttribute("x").getPixels("x"),t=this.getAttribute("y").getPixels("y"),e=this.getStyle("width").getPixels("x"),r=this.getStyle("height").getPixels("y");return new LK(A,t,A+e,t+r)}}class hR extends SK{constructor(){super(...arguments),this.type="symbol"}render(A){}}class BR{constructor(A){this.document=A,this.loaded=!1,A.fonts.push(this)}load(e,r){var n=this;return BP(function*(){try{var t=n.document,A=(yield t.canvg.parser.load(r)).getElementsByTagName("font");Array.from(A).forEach(A=>{A=t.createElement(A);t.definitions[e]=A})}catch(A){console.error('Error while loading font "'.concat(r,'":'),A)}n.loaded=!0})()}}class gR extends EK{constructor(n,A,t){super(n,A,t),this.type="style",Ok(Array.from(A.childNodes).map(A=>A.textContent).join("").replace(/(\/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+\/)|(^[\s]*\/\/.*)/gm,"").replace(/@import.*;/g,"")).split("}").forEach(A=>{var t,e,A=A.trim();A&&(t=(A=A.split("{"))[0].split(","),e=A[1].split(";"),t.forEach(A=>{var r,t,A=A.trim();A&&(r=n.styles[A]||{},e.forEach(A=>{var t=A.indexOf(":"),e=A.substr(0,t).trim(),A=A.substr(t+1,A.length-t).trim();e&&A&&(r[e]=new L(n,e,A))}),n.styles[A]=r,n.stylesSpecificity[A]=$k(A),"@font-face"===A)&&(t=r["font-family"].getString().replace(/"|'/g,""),r.src.getString().split(",").forEach(A=>{0<A.indexOf('format("svg")')&&(A=Vk(A))&&new BR(n).load(t,A)}))}))})}}gR.parseExternalUrl=Vk;class fR extends SK{constructor(){super(...arguments),this.type="use"}setContext(A){super.setContext(A);var t=this.getAttribute("x"),e=this.getAttribute("y");t.hasValue()&&A.translate(t.getPixels("x"),0),e.hasValue()&&A.translate(0,e.getPixels("y"))}path(A){var t=this.element;t&&t.path(A)}renderChildren(A){var t,e,{document:r,element:n}=this;n&&("symbol"===(t=n).type&&((t=new PK(r,null)).attributes.viewBox=new L(r,"viewBox",n.getAttribute("viewBox").getString()),t.attributes.preserveAspectRatio=new L(r,"preserveAspectRatio",n.getAttribute("preserveAspectRatio").getString()),t.attributes.overflow=new L(r,"overflow",n.getAttribute("overflow").getString()),t.children=n.children,n.styles.opacity=new L(r,"opacity",this.calculateOpacity())),"svg"===t.type&&(n=this.getStyle("width",!1,!0),e=this.getStyle("height",!1,!0),n.hasValue()&&(t.attributes.width=new L(r,"width",n.getString())),e.hasValue())&&(t.attributes.height=new L(r,"height",e.getString())),n=t.parent,t.parent=this,t.render(A),t.parent=n)}getBoundingBox(A){var t=this.element;return t?t.getBoundingBox(A):null}elementTransform(){var{document:A,element:t}=this;return vK.fromElement(A,t)}get element(){return this.cachedElement||(this.cachedElement=this.getHrefAttribute().getDefinition()),this.cachedElement}}function dR(A,t,e,r,n,i){return A[e*r*4+4*t+i]}function pR(A,t,e,r,n,i,s){A[e*r*4+4*t+i]=s}function wR(A,t,e){return A[t]*e}function mR(A,t,e,r){return t+Math.cos(A)*e+Math.sin(A)*r}class CR extends EK{constructor(A,t,e){super(A,t,e),this.type="feColorMatrix";var r=kk(this.getAttribute("values").getString());switch(this.getAttribute("type").getString("matrix")){case"saturate":var n=r[0],r=[.213+.787*n,.715-.715*n,.072-.072*n,0,0,.213-.213*n,.715+.285*n,.072-.072*n,0,0,.213-.213*n,.715-.715*n,.072+.928*n,0,0,0,0,0,1,0,0,0,0,0,1];break;case"hueRotate":n=r[0]*Math.PI/180;r=[mR(n,.213,.787,-.213),mR(n,.715,-.715,-.715),mR(n,.072,-.072,.928),0,0,mR(n,.213,-.213,.143),mR(n,.715,.285,.14),mR(n,.072,-.072,-.283),0,0,mR(n,.213,-.213,-.787),mR(n,.715,-.715,.715),mR(n,.072,.928,.072),0,0,0,0,0,1,0,0,0,0,0,1];break;case"luminanceToAlpha":r=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.2125,.7154,.0721,0,0,0,0,0,0,1]}this.matrix=r,this.includeOpacity=this.getAttribute("includeOpacity").hasValue()}apply(A,t,e,r,n){for(var{includeOpacity:i,matrix:s}=this,o=A.getImageData(0,0,r,n),a=0;a<n;a++)for(var c=0;c<r;c++){var l=dR(o.data,c,a,r,0,0),u=dR(o.data,c,a,r,0,1),h=dR(o.data,c,a,r,0,2),B=dR(o.data,c,a,r,0,3),g=wR(s,0,l)+wR(s,1,u)+wR(s,2,h)+wR(s,3,B)+wR(s,4,1),f=wR(s,5,l)+wR(s,6,u)+wR(s,7,h)+wR(s,8,B)+wR(s,9,1),d=wR(s,10,l)+wR(s,11,u)+wR(s,12,h)+wR(s,13,B)+wR(s,14,1),l=wR(s,15,l)+wR(s,16,u)+wR(s,17,h)+wR(s,18,B)+wR(s,19,1);i&&(d=f=g=0,l*=B/255),pR(o.data,c,a,r,0,0,g),pR(o.data,c,a,r,0,1,f),pR(o.data,c,a,r,0,2,d),pR(o.data,c,a,r,0,3,l)}A.clearRect(0,0,r,n),A.putImageData(o,0,0)}}class QR extends EK{constructor(){super(...arguments),this.type="mask"}apply(t,A){var e,r=this.document,n=this.getAttribute("x").getPixels("x"),i=this.getAttribute("y").getPixels("y"),s=this.getStyle("width").getPixels("x"),o=this.getStyle("height").getPixels("y"),a=(s||o||(e=new LK,this.children.forEach(A=>{e.addBoundingBox(A.getBoundingBox(t))}),n=Math.floor(e.x1),i=Math.floor(e.y1),s=Math.floor(e.width),o=Math.floor(e.height)),this.removeStyles(A,QR.ignoreStyles)),c=r.createCanvas(n+s,i+o),l=c.getContext("2d"),u=(r.screen.setDefaults(l),this.renderChildren(l),new CR(r,{nodeType:1,childNodes:[],attributes:[{nodeName:"type",value:"luminanceToAlpha"},{nodeName:"includeOpacity",value:"true"}]}).apply(l,0,0,n+s,i+o),r.createCanvas(n+s,i+o)),h=u.getContext("2d");r.screen.setDefaults(h),A.render(h),h.globalCompositeOperation="destination-in",h.fillStyle=l.createPattern(c,"no-repeat"),h.fillRect(0,0,n+s,i+o),t.fillStyle=h.createPattern(u,"no-repeat"),t.fillRect(0,0,n+s,i+o),this.restoreStyles(A,a)}render(A){}}QR.ignoreStyles=["mask","transform","clip-path"];var yR=()=>{};class FR extends EK{constructor(){super(...arguments),this.type="clipPath"}apply(e){var r=this.document,n=Reflect.getPrototypeOf(e),{beginPath:A,closePath:i}=e;n&&(n.beginPath=yR,n.closePath=yR),Reflect.apply(A,e,[]),this.children.forEach(A=>{var t;void 0!==A.path&&((t=(t=void 0!==A.elementTransform?A.elementTransform():null)||vK.fromElement(r,A))&&t.apply(e),A.path(e),n&&(n.closePath=i),t)&&t.unapply(e)}),Reflect.apply(i,e,[]),e.clip(),n&&(n.beginPath=A,n.closePath=i)}render(A){}}class UR extends EK{constructor(){super(...arguments),this.type="filter"}apply(A,t){var e,r,n,i,s,o,a,c,{document:l,children:u}=this,h=t.getBoundingBox(A);h&&(r=e=0,u.forEach(A=>{A=A.extraFilterDistance||0;e=Math.max(e,A),r=Math.max(r,A)}),o=Math.floor(h.width),s=Math.floor(h.height),i=s+2*r,(n=o+2*e)<1||i<1||(s=Math.floor(h.x),o=Math.floor(h.y),h=this.removeStyles(t,UR.ignoreStyles),a=l.createCanvas(n,i),c=a.getContext("2d"),l.screen.setDefaults(c),c.translate(-s+e,-o+r),t.render(c),u.forEach(A=>{"function"==typeof A.apply&&A.apply(c,0,0,n,i)}),A.drawImage(a,0,0,n,i,s-e,o-r,n,i),this.restoreStyles(t,h)))}render(A){}}UR.ignoreStyles=["filter","transform","clip-path"];class bR extends EK{constructor(A,t,e){super(A,t,e),this.type="feDropShadow",this.addStylesFromStyleDefinition()}apply(A,t,e,r,n){}}class vR extends EK{constructor(){super(...arguments),this.type="feMorphology"}apply(A,t,e,r,n){}}class ER extends EK{constructor(){super(...arguments),this.type="feComposite"}apply(A,t,e,r,n){}}class xR extends EK{constructor(A,t,e){super(A,t,e),this.type="feGaussianBlur",this.blurRadius=Math.floor(this.getAttribute("stdDeviation").getNumber()),this.extraFilterDistance=this.blurRadius}apply(A,t,e,r,n){var{document:i,blurRadius:s}=this,o=i.window?i.window.document.body:null,A=A.canvas;A.id=i.getUniqueId(),o&&(A.style.display="none",o.appendChild(A)),Tk(A,t,e,r,n,s),o&&o.removeChild(A)}}class IR extends EK{constructor(){super(...arguments),this.type="title"}}class HR extends EK{constructor(){super(...arguments),this.type="desc"}}XC={svg:PK,rect:MK,circle:kK,ellipse:KK,line:RK,polyline:VK,polygon:GK,path:NK,pattern:jK,marker:XK,defs:WK,linearGradient:qK,radialGradient:zK,stop:ZK,animate:$K,animateColor:AR,animateTransform:tR,font:eR,"font-face":rR,"missing-glyph":nR,glyph:_K,text:TK,tspan:DK,tref:iR,a:sR,textPath:cR,image:uR,g:JK,symbol:hR,style:gR,use:fR,mask:QR,clipPath:FR,filter:UR,feDropShadow:bR,feMorphology:vR,feComposite:ER,feColorMatrix:CR,feGaussianBlur:xR,title:IR,desc:HR};function LR(t,A){var e,r=Object.keys(t);return Object.getOwnPropertySymbols&&(e=Object.getOwnPropertySymbols(t),A&&(e=e.filter(function(A){return Object.getOwnPropertyDescriptor(t,A).enumerable})),r.push.apply(r,e)),r}function SR(){return(SR=BP(function*(t){var A=1<arguments.length&&void 0!==arguments[1]&&arguments[1],e=document.createElement("img");return A&&(e.crossOrigin="Anonymous"),new Promise((A,i)=>{e.onload=()=>{A(e)},e.onerror=(A,t,e,r,n)=>{i(n)},e.src=t})})).apply(this,arguments)}class NR{constructor(A){var{rootEmSize:t=12,emSize:e=12,createCanvas:r=NR.createCanvas,createImage:n=NR.createImage,anonymousCrossOrigin:i}=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{};this.canvg=A,this.definitions=Object.create(null),this.styles=Object.create(null),this.stylesSpecificity=Object.create(null),this.images=[],this.fonts=[],this.emSizeStack=[],this.uniqueId=0,this.screen=A.screen,this.rootEmSize=t,this.emSize=e,this.createCanvas=r,this.createImage=this.bindCreateImage(n,i),this.screen.wait(this.isImagesLoaded.bind(this)),this.screen.wait(this.isFontsLoaded.bind(this))}bindCreateImage(e,r){return"boolean"==typeof r?(A,t)=>e(A,"boolean"==typeof t?t:r):e}get window(){return this.screen.window}get fetch(){return this.screen.fetch}get ctx(){return this.screen.ctx}get emSize(){var A=this.emSizeStack;return A[A.length-1]}set emSize(A){var t=this.emSizeStack;t.push(A)}popEmSize(){var A=this.emSizeStack;A.pop()}getUniqueId(){return"canvg".concat(++this.uniqueId)}isImagesLoaded(){return this.images.every(A=>A.loaded)}isFontsLoaded(){return this.fonts.every(A=>A.loaded)}createDocumentElement(A){A=this.createElement(A.documentElement);return A.root=!0,A.addStylesFromStyleDefinition(),this.documentElement=A}createElement(A){var t=A.nodeName.replace(/^[^:]+:/,""),t=NR.elementTypes[t];return new(void 0!==t?t:xK)(this,A)}createTextNode(A){return new OK(this,A)}setViewBox(A){this.screen.setViewBox(function(t){for(var A=1;A<arguments.length;A++){var e=null!=arguments[A]?arguments[A]:{};A%2?LR(Object(e),!0).forEach(function(A){gM(t,A,e[A])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):LR(Object(e)).forEach(function(A){Object.defineProperty(t,A,Object.getOwnPropertyDescriptor(e,A))})}return t}({document:this},A))}}function _R(t,A){var e,r=Object.keys(t);return Object.getOwnPropertySymbols&&(e=Object.getOwnPropertySymbols(t),A&&(e=e.filter(function(A){return Object.getOwnPropertyDescriptor(t,A).enumerable})),r.push.apply(r,e)),r}function TR(t){for(var A=1;A<arguments.length;A++){var e=null!=arguments[A]?arguments[A]:{};A%2?_R(Object(e),!0).forEach(function(A){gM(t,A,e[A])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):_R(Object(e)).forEach(function(A){Object.defineProperty(t,A,Object.getOwnPropertyDescriptor(e,A))})}return t}NR.createCanvas=function(A,t){var e=document.createElement("canvas");return e.width=A,e.height=t,e},NR.createImage=function(A){return SR.apply(this,arguments)},NR.elementTypes=XC;class DR{constructor(A,t){var e=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{},A=(this.parser=new wK(e),this.screen=new fK(A,e),this.options=e,new NR(this,e)),e=A.createDocumentElement(t);this.document=A,this.documentElement=e}static from(e,r){var n=arguments;return BP(function*(){var A=2<n.length&&void 0!==n[2]?n[2]:{},t=yield new wK(A).parse(r);return new DR(e,t,A)})()}static fromString(A,t){var e=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{},t=new wK(e).parseFromString(t);return new DR(A,t,e)}fork(A,t){var e=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{};return DR.from(A,t,TR(TR({},this.options),e))}forkString(A,t){var e=2<arguments.length&&void 0!==arguments[2]?arguments[2]:{};return DR.fromString(A,t,TR(TR({},this.options),e))}ready(){return this.screen.ready()}isReady(){return this.screen.isReady()}render(){var A=arguments,t=this;return BP(function*(){t.start(TR({enableRedraw:!0,ignoreAnimation:!0,ignoreMouse:!0},0<A.length&&void 0!==A[0]?A[0]:{})),yield t.ready(),t.stop()})()}start(){var A=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{},{documentElement:t,screen:e,options:r}=this;e.start(t,TR(TR({enableRedraw:!0},r),A))}stop(){this.screen.stop()}resize(A){this.documentElement.resize(A,1<arguments.length&&void 0!==arguments[1]?arguments[1]:A,2<arguments.length&&void 0!==arguments[2]&&arguments[2])}}var OR=Object.freeze({__proto__:null,AElement:sR,AnimateColorElement:AR,AnimateElement:$K,AnimateTransformElement:tR,BoundingBox:LK,CB1:rK,CB2:nK,CB3:iK,CB4:sK,Canvg:DR,CircleElement:kK,ClipPathElement:FR,DefsElement:WK,DescElement:HR,Document:NR,Element:EK,EllipseElement:KK,FeColorMatrixElement:CR,FeCompositeElement:ER,FeDropShadowElement:bR,FeGaussianBlurElement:xR,FeMorphologyElement:vR,FilterElement:UR,Font:HK,FontElement:eR,FontFaceElement:rR,GElement:JK,GlyphElement:_K,GradientElement:YK,ImageElement:uR,LineElement:RK,LinearGradientElement:qK,MarkerElement:XK,MaskElement:QR,Matrix:yK,MissingGlyphElement:nR,Mouse:hK,PSEUDO_ZERO:1e-8,Parser:wK,PathElement:NK,PathParser:S,PatternElement:jK,Point:uK,PolygonElement:GK,PolylineElement:VK,Property:L,QB1:oK,QB2:aK,QB3:cK,RadialGradientElement:zK,RectElement:MK,RenderedElement:SK,Rotate:CK,SVGElement:PK,SVGFontLoader:BR,Scale:QK,Screen:fK,Skew:FK,SkewX:UK,SkewY:bK,StopElement:ZK,StyleElement:gR,SymbolElement:hR,TRefElement:iR,TSpanElement:DK,TextElement:TK,TextPathElement:cR,TitleElement:IR,Transform:vK,Translate:mK,UnknownElement:xK,UseElement:fR,ViewPort:lK,compressSpaces:Ok,default:DR,getSelectorSpecificity:$k,normalizeAttributeName:Rk,normalizeColor:Gk,parseExternalUrl:Vk,presets:dP,toNumbers:kk,trimLeft:Pk,trimRight:Mk,vectorMagnitude:AK,vectorsAngle:eK,vectorsRatio:tK});return function(A,t){return y=A,F=t=void 0===t?{}:t,D(void 0,void 0,void 0,function(){var t,e,r,n,i,s,o,a,c,l,u,h,B,g,f,d,p,w,m,C,Q;return R(this,function(A){switch(A.label){case 0:if(!y||"object"!=typeof y)return[2,Promise.reject("Invalid element provided as first argument")];if(!(w=y.ownerDocument))throw new Error("Element is not attached to a Document");if(t=w.defaultView)return m={allowTaint:null!=(m=F.allowTaint)&&m,imageTimeout:null!=(m=F.imageTimeout)?m:15e3,proxy:F.proxy,useCORS:null!=(m=F.useCORS)&&m},f=T({logging:null==(f=F.logging)||f,cache:F.cache},m),m={windowWidth:null!=(m=F.windowWidth)?m:t.innerWidth,windowHeight:null!=(m=F.windowHeight)?m:t.innerHeight,scrollX:null!=(m=F.scrollX)?m:t.pageXOffset,scrollY:null!=(m=F.scrollY)?m:t.pageYOffset},m=new bt(m.scrollX,m.scrollY,m.windowWidth,m.windowHeight),f=new Ft(f,m),d=null!=(d=F.foreignObjectRendering)&&d,p={allowTaint:null!=(p=F.allowTaint)&&p,onclone:F.onclone,ignoreElements:F.ignoreElements,inlineImages:d,copyStyles:d},f.logger.debug("Starting document clone with size ".concat(m.width,"x").concat(m.height," scrolled to ").concat(-m.left,",").concat(-m.top)),p=new ta(f,y,p),(e=p.clonedReferenceElement)&&e.style&&(e.style.border="none",e.style.boxShadow="none",OI(F.fontConfig))&&(e.style.fontFamily="Helvetica"),e?[4,p.toIFrame(w,m)]:[2,Promise.reject("Unable to find element in cloned iframe")];throw new Error("Document is not attached to a Window");case 1:return(r=A.sent(),p=vo(e)||Uo(e)?Dt(e.ownerDocument):Tt(f,e),n=p.width,i=p.height,s=p.left,o=p.top,a=fH(f,e,F.backgroundColor),C={canvas:F.canvas,backgroundColor:a,scale:null!=(m=null!=(w=F.scale)?w:t.devicePixelRatio)?m:1,x:(null!=(C=F.x)?C:0)+s,y:(null!=(C=F.y)?C:0)+o,width:null!=(C=F.width)?C:Math.ceil(n),height:null!=(C=F.height)?C:Math.ceil(i),fontConfig:KI(F.fontConfig),encryption:OI(F.encryption)?void 0:F.encryption,precision:null!=(C=F.precision)?C:16,floatPrecision:null!=(C=F.floatPrecision)?C:16,compress:null!=(C=F.compress)&&C,putOnlyUsedFonts:null!=(C=F.putOnlyUsedFonts)&&C,pagination:null!=(C=F.pagination)&&C,format:null!=(C=F.format)?C:"a4",pageConfig:null!=(C=F.pageConfig)?C:{header:{content:"",height:50,contentPosition:"centerRight",contentColor:"#333333",contentFontSize:16,padding:[0,24,0,24]},footer:{content:"${currentPage}/${totalPages}",height:50,contentPosition:"center",contentColor:"#333333",contentFontSize:16,padding:[0,24,0,24]}}},d)?(f.logger.debug("Document cloned, using foreign object rendering"),[4,(B=new ma(f,C)).render(e)]):[3,3];case 2:return c=A.sent(),[3,11];case 3:return f.logger.debug("Document cloned, element located at ".concat(s,",").concat(o," with size ").concat(n,"x").concat(i," using computed rendering")),f.logger.debug("Starting DOM parsing",f,e),[4,ho(f,e)];case 4:return(l=A.sent(),Q=PI(C.format)?C.format[1]:eH[C.format||"a4"].height,0!==C.y&&(h=C.y,C.y=0,(u=function(A,t){A.bounds.top=A.bounds.top-t;for(var e=0,r=A.textNodes;e<r.length;e++)for(var n=0,i=r[e].textBounds;n<i.length;n++){var s=i[n];s.bounds.top=s.bounds.top-t}for(var o=0,a=A.elements;o<a.length;o++){var c=a[o];u(c,t)}})(l,h)),h=gH(l,Q,C.y,C.height,C.pageConfig),Reflect.deleteProperty(l,"context"),a===l.styles.backgroundColor&&(l.styles.backgroundColor=er.TRANSPARENT),f.logger.debug("Starting renderer for element at ".concat(C.x,",").concat(C.y," with size ").concat(C.width,"x").concat(C.height)),C.y=0,B=new qI(f,C),kI(F.onJspdfReady)&&F.onJspdfReady(B.jspdfCtx),
|
|
66
|
+
// const renderPageRoots = pageRoots.filter((v) => !checkAllTextNodesEmpty(v));
|
|
67
|
+
f.logger.info("pdf render totalPage is ".concat(h.length)),B.setTotalPages(h.length),0<h.length)?[4,B.renderPage(h[0],1)]:[3,9];case 5:A.sent(),g=1,A.label=6;case 6:return g<h.length?(B.addPage(0),[4,B.renderPage(h[g],g+1)]):[3,9];case 7:A.sent(),A.label=8;case 8:return g++,[3,6];case 9:return kI(F.onJspdfFinish)&&F.onJspdfFinish(B.jspdfCtx),[4,B.output()];case 10:c=A.sent(),A.label=11;case 11:return null!=(Q=F.removeContainer)&&!Q||ta.destroy(r)||f.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore"),f.logger.debug("Finished rendering"),[2,c]}})});var y,F}});
|