wp_back/wp-content/plugins/squeeze/assets/js/script.bundle.js

428 lines
836 KiB
JavaScript
Raw Normal View History

2024-05-20 15:37:46 +03:00
/*
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
/******/ (() => { // webpackBootstrap
/******/ "use strict";
/******/ var __webpack_modules__ = ({
/***/ "./assets/js/script.js":
/*!*****************************!*\
!*** ./assets/js/script.js ***!
\*****************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _jsquash_jpeg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @jsquash/jpeg */ \"./node_modules/@jsquash/jpeg/decode.js\");\n/* harmony import */ var _jsquash_jpeg__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @jsquash/jpeg */ \"./node_modules/@jsquash/jpeg/encode.js\");\n/* harmony import */ var _jsquash_png__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @jsquash/png */ \"./node_modules/@jsquash/png/decode.js\");\n/* harmony import */ var _jsquash_png__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @jsquash/png */ \"./node_modules/@jsquash/png/encode.js\");\n/* harmony import */ var _jsquash_oxipng_optimise__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @jsquash/oxipng/optimise */ \"./node_modules/@jsquash/oxipng/optimise.js\");\n//import * as avif from '@jsquash/avif'; // TBD\r\n//import * as webp from '@jsquash/webp'; // TBD\r\n\r\n\r\n\r\nconst { __ } = wp.i18n; // Import __() from wp.i18n\r\n\r\n(function () {\r\n\r\n const bulkBtn = document.querySelector(\"input[name='squeeze_bulk']\")\r\n const bulkLogInput = document.querySelector(\"[name='squeeze_bulk_log']\")\r\n const squeeze_bulk_ids = document.querySelector(\"input[name='squeeze_bulk_ids']\")?.value ?? null;\r\n const uncompressedIDs = squeeze_bulk_ids ? squeeze_bulk_ids.split(\",\") : [];\r\n\r\n async function decode(sourceType, fileBuffer) {\r\n switch (sourceType) {\r\n //case 'avif':\r\n // return await avif.decode(fileBuffer);\r\n case 'jpeg':\r\n return await _jsquash_jpeg__WEBPACK_IMPORTED_MODULE_0__[\"default\"](fileBuffer);\r\n case 'png':\r\n return await _jsquash_png__WEBPACK_IMPORTED_MODULE_1__[\"default\"](fileBuffer);\r\n //case 'webp':\r\n // return await webp.decode(fileBuffer);\r\n default:\r\n throw new Error(`Unknown source type: ${sourceType}`);\r\n }\r\n }\r\n\r\n async function encode(outputType, imageData) {\r\n const options = JSON.parse(squeeze.options);\r\n\r\n switch (outputType) {\r\n //case 'avif':\r\n // return await avif.encode(imageData);\r\n case 'jpeg':\r\n const jpegOptions = {}\r\n for (const [key, value] of Object.entries(options)) {\r\n if (key.includes('jpeg')) {\r\n const keyName = key.replace('jpeg_', '')\r\n jpegOptions[keyName] = value\r\n }\r\n }\r\n return await _jsquash_jpeg__WEBPACK_IMPORTED_MODULE_2__[\"default\"](imageData, jpegOptions);\r\n case 'png':\r\n const pngOptions = {}\r\n for (const [key, value] of Object.entries(options)) {\r\n if (key.includes('png')) {\r\n const keyName = key.replace('png_', '')\r\n pngOptions[keyName] = value\r\n }\r\n }\r\n return await _jsquash_png__WEBPACK_IMPORTED_MODULE_3__[\"default\"](imageData, pngOptions);\r\n //case 'webp':\r\n // return await webp.encode(imageData);\r\n default:\r\n throw new Error(`Unknown output type: ${outputType}`);\r\n }\r\n }\r\n\r\n async function convert(sourceType, outputType, fileBuffer) {\r\n const imageData = await decode(sourceType, fileBuffer);\r\n return encode(outputType, imageData);\r\n }\r\n\r\n function blobToBase64(blob) {\r\n return new Promise((resolve, _) => {\r\n const reader = new FileReader();\r\n reader.onloadend = () => resolve(reader.result);\r\n reader.readAsDataURL(blob);\r\n });\r\n }\r\n\r\n async function showOutput(imageBuffer, outputType) {\r\n const imageBlob = new Blob([imageBuffer], { type: `image/${outputType}` });\r\n const base64String = await blobToBase64(imageBlob);\r\n\r\n return base64String;\r\n }\r\n\r\n async function handleUpload(attachment, isBulk = false, isSingle = false, target = null) {\r\n const attachmentData = attachment.attributes;\r\n const url = attachmentData?.originalImageURL ?? attachmentData.url;\r\n const mime = attachmentData.mime;\r\n const name = attachmentD
/***/ }),
/***/ "./node_modules/@jsquash/png/codec/squoosh_png.js":
/*!********************************************************!*\
!*** ./node_modules/@jsquash/png/codec/squoosh_png.js ***!
\********************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"decode\": () => (/* binding */ decode),\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__),\n/* harmony export */ \"encode\": () => (/* binding */ encode)\n/* harmony export */ });\n\nlet wasm;\n\nlet cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });\n\ncachedTextDecoder.decode();\n\nlet cachegetUint8Memory0 = null;\nfunction getUint8Memory0() {\n if (cachegetUint8Memory0 === null || cachegetUint8Memory0.buffer !== wasm.memory.buffer) {\n cachegetUint8Memory0 = new Uint8Array(wasm.memory.buffer);\n }\n return cachegetUint8Memory0;\n}\n\nfunction getStringFromWasm0(ptr, len) {\n return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));\n}\n\nlet cachegetUint8ClampedMemory0 = null;\nfunction getUint8ClampedMemory0() {\n if (cachegetUint8ClampedMemory0 === null || cachegetUint8ClampedMemory0.buffer !== wasm.memory.buffer) {\n cachegetUint8ClampedMemory0 = new Uint8ClampedArray(wasm.memory.buffer);\n }\n return cachegetUint8ClampedMemory0;\n}\n\nfunction getClampedArrayU8FromWasm0(ptr, len) {\n return getUint8ClampedMemory0().subarray(ptr / 1, ptr / 1 + len);\n}\n\nconst heap = new Array(32).fill(undefined);\n\nheap.push(undefined, null, true, false);\n\nlet heap_next = heap.length;\n\nfunction addHeapObject(obj) {\n if (heap_next === heap.length) heap.push(heap.length + 1);\n const idx = heap_next;\n heap_next = heap[idx];\n\n heap[idx] = obj;\n return idx;\n}\n\nlet WASM_VECTOR_LEN = 0;\n\nfunction passArray8ToWasm0(arg, malloc) {\n const ptr = malloc(arg.length * 1);\n getUint8Memory0().set(arg, ptr / 1);\n WASM_VECTOR_LEN = arg.length;\n return ptr;\n}\n\nlet cachegetInt32Memory0 = null;\nfunction getInt32Memory0() {\n if (cachegetInt32Memory0 === null || cachegetInt32Memory0.buffer !== wasm.memory.buffer) {\n cachegetInt32Memory0 = new Int32Array(wasm.memory.buffer);\n }\n return cachegetInt32Memory0;\n}\n\nfunction getArrayU8FromWasm0(ptr, len) {\n return getUint8Memory0().subarray(ptr / 1, ptr / 1 + len);\n}\n/**\n* @param {Uint8Array} data\n* @param {number} width\n* @param {number} height\n* @returns {Uint8Array}\n*/\nfunction encode(data, width, height) {\n try {\n const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);\n var ptr0 = passArray8ToWasm0(data, wasm.__wbindgen_malloc);\n var len0 = WASM_VECTOR_LEN;\n wasm.encode(retptr, ptr0, len0, width, height);\n var r0 = getInt32Memory0()[retptr / 4 + 0];\n var r1 = getInt32Memory0()[retptr / 4 + 1];\n var v1 = getArrayU8FromWasm0(r0, r1).slice();\n wasm.__wbindgen_free(r0, r1 * 1);\n return v1;\n } finally {\n wasm.__wbindgen_add_to_stack_pointer(16);\n }\n}\n\nfunction getObject(idx) { return heap[idx]; }\n\nfunction dropObject(idx) {\n if (idx < 36) return;\n heap[idx] = heap_next;\n heap_next = idx;\n}\n\nfunction takeObject(idx) {\n const ret = getObject(idx);\n dropObject(idx);\n return ret;\n}\n/**\n* @param {Uint8Array} data\n* @returns {ImageData}\n*/\nfunction decode(data) {\n var ptr0 = passArray8ToWasm0(data, wasm.__wbindgen_malloc);\n var len0 = WASM_VECTOR_LEN;\n var ret = wasm.decode(ptr0, len0);\n return takeObject(ret);\n}\n\nasync function load(module, imports) {\n if (typeof Response === 'function' && module instanceof Response) {\n if (typeof WebAssembly.instantiateStreaming === 'function') {\n try {\n return await WebAssembly.instantiateStreaming(module, imports);\n\n } catch (e) {\n if (module.headers.get('Content-Type') != 'application/wasm') {\n console.warn(\"`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\\n\", e);\n
/***/ }),
/***/ "./node_modules/@jsquash/jpeg/codec/dec/mozjpeg_dec.wasm":
/*!***************************************************************!*\
!*** ./node_modules/@jsquash/jpeg/codec/dec/mozjpeg_dec.wasm ***!
\***************************************************************/
/***/ ((module) => {
eval("module.exports = \"data:application/wasm;base64,AGFzbQEAAAABqAEZYAF/AGABfwF/YAN/f38Bf2ACf38AYAV/f39/fwBgBH9/f38AYAJ/fwF/YAV/f39/fwF/YAd/f39/f39/AGAEf39/fwF/YAZ/f39/f38AYAN/f38AYAV/fn5+fgBgAABgBn9/f39/fwF/YAR/fn5/AGADf35/AX5gAn98AGACf34AYAR+fn5+AX9gAX8BfGADfn5+AX9gBH9/fn4AYAF/AX5gA39/fgAClwEZAWEBYQALAWEBYgAEAWEBYwAAAWEBZAABAWEBZQACAWEBZgABAWEBZwALAWEBaAADAWEBaQAAAWEBagAJAWEBawANAWEBbAALAWEBbQAEAWEBbgADAWEBbwAKAWEBcAAHAWEBcQAIAWEBcgAAAWEBcwACAWEBdAAGAWEBdQAGAWEBdgABAWEBdwAJAWEBeAADAWEBeQAAA88BzQECAQwCCQwPAQIMAwAREg8CBAATAwsHAQIEAAUUAwECDBUKCwUHDQAMDAUAAAADCxYDBRcPDAYYCwYGCwEAAAAAAAANDQEBBQUFBQUACAQEBAQEBAQEBAQEBAQFBQgFBQUIBQAFAAUFAwAABQUFBQUDAwEAAAEBAQEBAAYJCQ4OAAcHAAADAAMABwoKBAQFBQUECgICAQIBAhACAQAAAwYAAAUFBQMGAQYBBgAABgYGBgAABgAEBAQEBAQEBAQEBAQEBAQEBAQICAgDBQUFBAcBcAGVAZUBBQcBAYACgIACBgkBfwFB0N/AAgsHIwgBegIAAUEAPgFCACABQwAkAUQAswEBRQBbAUYBAAFHAKEBCf8BAQBBAQuUAZsBRpoBmQGYAZcBlgGVAZQBNyiNAYcBhgGFAYQBgwGBAYABf34qfXx7enl4d3Z1dHMqcnFwb25tbGtqaWhnZmVkY2JhYF/lAeQB4wHhAeAB3wHcAd0B1wHeAdgB2QHaAdsBzgHNAdYB1QHUAdMB0gHRAdABzwHLAcoByAHHAcYBxQHEAcMBwgHBAcABvwG+Ab0BvAG7AboBuQG4AYIBKogB4gHMAckBtwG2AZwBnQGeAZ8BoAGPAZABkQGSAY4BiwFFjAEqKpMBiQGKAbUBtAGwAa8BsgGxAa4BrQEyKiqsATKrAaIBpAGnATKqAakBqAEyowGlAaYBCtipCc0B8gICAn8BfgJAIAJFDQAgACACaiIDQQFrIAE6AAAgACABOgAAIAJBA0kNACADQQJrIAE6AAAgACABOgABIANBA2sgAToAACAAIAE6AAIgAkEHSQ0AIANBBGsgAToAACAAIAE6AAMgAkEJSQ0AIABBACAAa0EDcSIEaiIDIAFB/wFxQYGChAhsIgE2AgAgAyACIARrQXxxIgRqIgJBBGsgATYCACAEQQlJDQAgAyABNgIIIAMgATYCBCACQQhrIAE2AgAgAkEMayABNgIAIARBGUkNACADIAE2AhggAyABNgIUIAMgATYCECADIAE2AgwgAkEQayABNgIAIAJBFGsgATYCACACQRhrIAE2AgAgAkEcayABNgIAIAQgA0EEcUEYciIEayICQSBJDQAgAa1CgYCAgBB+IQUgAyAEaiEBA0AgASAFNwMYIAEgBTcDECABIAU3AwggASAFNwMAIAFBIGohASACQSBrIgJBH0sNAAsLIAAL2QICBH8BfgJAAkAgACkDcCIFUEUEQCAAKQN4IAVZDQELIwBBEGsiASQAQX8hAwJAAn8gACAALQBKIgJBAWsgAnI6AEogACgCFCAAKAIcSwRAIABBAEEAIAAoAiQRAgAaCyAAQQA2AhwgAEIANwMQIAAoAgAiAkEEcQRAIAAgAkEgcjYCAEF/DAELIAAgACgCLCAAKAIwaiIENgIIIAAgBDYCBCACQRt0QR91Cw0AIAAgAUEPakEBIAAoAiARAgBBAUcNACABLQAPIQMLIAFBEGokACADIgJBf0oNAQsgAEEANgJoQX8PCyAAKAIEIQEgAAJ/IAAoAggiAyAAKQNwIgVQDQAaIAMgBSAAKQN4Qn+FfCIFIAMgAWusWQ0AGiABIAWnags2AmggAwRAIAAgACkDeCADIAFrQQFqrHw3A3gLIAFBAWsiAC0AACACRwRAIAAgAjoAAAsgAguYCwIFfw9+IwBB4ABrIgUkACACQiCGIAFCIIiEIQ8gBEIvhiADQhGIhCEMIARC////////P4MiDUIPhiADQjGIhCEQIAIgBIVCgICAgICAgICAf4MhCiACQv///////z+DIgtCIIghESANQhGIIRIgBEIwiKdB//8BcSEHAkACfyACQjCIp0H//wFxIglBAWtB/f8BTQRAQQAgB0EBa0H+/wFJDQEaCyABUCACQv///////////wCDIg5CgICAgICAwP//AFQgDkKAgICAgIDA//8AURtFBEAgAkKAgICAgIAghCEKDAILIANQIARC////////////AIMiAkKAgICAgIDA//8AVCACQoCAgICAgMD//wBRG0UEQCAEQoCAgICAgCCEIQogAyEBDAILIAEgDkKAgICAgIDA//8AhYRQBEAgAiADhFAEQEKAgICAgIDg//8AIQpCACEBDAMLIApCgICAgICAwP//AIQhCkIAIQEMAgsgAyACQoCAgICAgMD//wCFhFAEQCABIA6EIQJCACEBIAJQBEBCgICAgICA4P//ACEKDAMLIApCgICAgICAwP//AIQhCgwCCyABIA6EUARAQgAhAQwCCyACIAOEUARAQgAhAQwCCyAOQv///////z9YBEAgBUHQAGogASALIAEgCyALUCIGG3kgBkEGdK18pyIGQQ9rEB8gBSkDWCILQiCGIAUpA1AiAUIgiIQhDyALQiCIIRFBECAGayEGCyAGIAJC////////P1YNABogBUFAayADIA0gAyANIA1QIggbeSAIQQZ0rXynIghBD2sQHyAFKQNIIgJCD4YgBSkDQCIDQjGIhCEQIAJCL4YgA0IRiIQhDCACQhGIIRIgBiAIa0EQagshBiAMQv////8PgyICIAFC/////w+DIgF+IhMgA0IPhkKAgP7/D4MiAyAPQv////8PgyIOfnwiBEIghiINIAEgA358IgwgDVStIAIgDn4iFSADIAtC/////w+DIgt+fCIUIBBC/////w+DIg0gAX58IhAgBCATVK1CIIYgBEIgiIR8IhMgAiALfiIWIAMgEUKAgASEIg9+fCIDIA0gDn58IhEgASASQv////8Hg0KAgICACIQiAX58IhJCIIZ8Ihd8IQQgByAJaiAGakH//wBrIQYCQCALIA1+IhggAiAPfnwiAiAYVK0gAiACIAEgDn58IgJWrXwgAiACIBQgFVStIBAgFFStfHwiAlatfCABIA9+fCABIAt+IgsgDSAPfnwiASALVK1CIIYgAUIgiIR8IAIgAUIghnwiASACVK18IAEgASARIBJWrSADIBZUrSADIBFWrXx8QiCGIBJCIIiEfCIBVq18IAEgECATVq0gEyAXVq18fCICIAFUrXwiAUKAgICAgIDAAINQRQRAIAZBAWohBgwBCyAMQj+IIQMgAUIBhiACQj+IhCEBIAJCAYYgBEI/iIQhAiAMQgGGIQwgAyAEQgGGhCEECyAGQf//AU4EQCAKQoCAgICAgMD//wCEIQpCACEBDAELAn4gBkEATARAQQEgBmsiB0GAAU8EQEIAIQEMAwsgBUEwaiAMIAQgBkH/AGoiBhAfIAVBIGogAiABIAYQHyAFQRBqIAwgBCAHECcgBSACIAEgBxAnIAUpAzAgBSkDOIRCAFKtIAUpAyAgBSkDEISEIQwgBSkDKCAFKQMYhCEEIAUpAwAhAiAFKQMIDAELIAFC////////P4MgBq1CMIaECyAKhCEKIAxQIARCf1UgBEKAgICAgICAgIB/URtFBEAgCiACQgF8IgEgAlStfCEKDAELIAwgBEKAgICAgICAgIB/hYRQRQRAIAIhAQwBCyAKIAIgAkIBg3wiASACVK18IQoLIAAgATcDACAAIAo3AwggBUHgAGokAAuDBAEDf
/***/ }),
/***/ "./node_modules/@jsquash/jpeg/codec/enc/mozjpeg_enc.wasm":
/*!***************************************************************!*\
!*** ./node_modules/@jsquash/jpeg/codec/enc/mozjpeg_enc.wasm ***!
\***************************************************************/
/***/ ((module) => {
eval("module.exports = \"data:application/wasm;base64,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//8AVCAOQoCAgICAgMD//wBRG0UEQCACQoCAgICAgCCEIQoMAgsgA1AgBEL///////////8AgyICQoCAgICAgMD//wBUIAJCgICAgICAwP//AFEbRQRAIARCgICAgICAIIQhCiADIQEMAgsgASAOQoCAgICAgMD//wCFhFAEQCACIAOEUARAQoCAgICAgOD//wAhCkIAIQEMAwsgCkKAgICAgIDA//8AhCEKQgAhAQwCCyADIAJCgICAgICAwP//AIWEUARAIAEgDoQhAkIAIQEgAlAEQEKAgICAgIDg//8AIQoMAwsgCkKAgICAgIDA//8AhCEKDAILIAEgDoRQBEBCACEBDAILIAIgA4RQBEBCACEBDAILIA5C////////P1gEQCAFQdAAaiABIAsgASALIAtQIgYbeSAGQQZ0rXynIgZBD2sQJSAFKQNYIgtCIIYgBSkDUCIBQiCIhCEPIAtCIIghEUEQIAZrIQYLIAYgAkL///////8/Vg0AGiAFQUBrIAMgDSADIA0gDVAiCBt5IAhBBnStfKciCEEPaxAlIAUpA0giAkIPhiAFKQNAIgNCMYiEIRAgAkIvhiADQhGIhCEMIAJCEYghEiAGIAhrQRBqCyEGIAxC/////w+DIgIgAUL/////D4MiAX4iEyADQg+GQoCA/v8PgyIDIA9C/////w+DIg5+fCIEQiCGIg0gASADfnwiDCANVK0gAiAOfiIVIAMgC0L/////D4MiC358IhQgEEL/////D4MiDSABfnwiECAEIBNUrUIghiAEQiCIhHwiEyACIAt+IhYgAyARQoCABIQiD358IgMgDSAOfnwiESABIBJC/////weDQoCAgIAIhCIBfnwiEkIghnwiF3whBCAHIAlqIAZqQf//AGshBgJAIAsgDX4iGCACIA9+fCICIBhUrSACIAIgASAOfnwiAlatfCACIAIgFCAVVK0gECAUVK18fCICVq18IAEgD358IAEgC34iCyANIA9+fCIBIAtUrUIghiABQiCIhHwgAiABQiCGfCIBIAJUrXwgASABIBEgElatIAMgFlStIAMgEVatfHxCIIYgEkIgiIR8IgFWrXwgASAQIBNWrSATIBdWrXx8IgIgAVStfCIBQoCAgICAgMAAg1BFBEAgBkEBaiEGDAELIAxCP4ghAyABQgGGIAJCP4iEIQEgAkIBhiAEQj+IhCECIAxCAYYhDCADIARCAYaEIQQLIAZB//8BTgRAIApCgICAgICAwP//AIQhCkIAIQEMAQsCfiAGQQBMBEBBASAGayIHQYABTwRAQgAhAQwDCyAFQTBqIAwgBCAGQf8AaiIGECUgBUEgaiACIAEgBhAlIAVBEGogDCAEIAcQLiAFIAIgASAHEC4gBSkDMCAFKQM4hEIAUq0gBSkDICAFKQMQhIQhDCAFKQMoIAUpAxiEIQQgBSkDACECIAUpAwgMAQsgAUL///////8/gyAGrUIwhoQLIAqEIQogDFAgBEJ/VSAEQoCAgICAgICAgH9RG0UEQCAKIAJCAXwiASACVK18IQoMAQsgDCAEQoCAgICAgICAgH+FhFBFBEAgAiEBDAELIAogAiACQgGDfCIBIAJUrXwhCgsgACABNwMAIAAgCjcDC
/***/ }),
/***/ "./node_modules/@jsquash/png/codec/squoosh_png_bg.wasm":
/*!*************************************************************!*\
!*** ./node_modules/@jsquash/png/codec/squoosh_png_bg.wasm ***!
\*************************************************************/
/***/ ((module) => {
eval("module.exports = \"data:application/wasm;base64,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
/***/ }),
/***/ "./node_modules/@jsquash/jpeg/codec/dec/mozjpeg_dec.js":
/*!*************************************************************!*\
!*** ./node_modules/@jsquash/jpeg/codec/dec/mozjpeg_dec.js ***!
\*************************************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n\nvar Module = (function() {\n var _scriptDir = \"file:///E:/Extra-Time/test/wp-content/plugins/squeeze/node_modules/@jsquash/jpeg/codec/dec/mozjpeg_dec.js\";\n \n return (\nfunction(Module) {\n Module = Module || {};\n\nvar Module=typeof Module!==\"undefined\"?Module:{};var readyPromiseResolve,readyPromiseReject;Module[\"ready\"]=new Promise(function(resolve,reject){readyPromiseResolve=resolve;readyPromiseReject=reject});var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}var arguments_=[];var thisProgram=\"./this.program\";var quit_=function(status,toThrow){throw toThrow};var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window===\"object\";ENVIRONMENT_IS_WORKER=typeof importScripts===\"function\";ENVIRONMENT_IS_NODE=typeof process===\"object\"&&typeof process.versions===\"object\"&&typeof process.versions.node===\"string\";ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory=\"\";function locateFile(path){if(Module[\"locateFile\"]){return Module[\"locateFile\"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!==\"undefined\"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf(\"blob:\")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf(\"/\")+1)}else{scriptDirectory=\"\"}{read_=function(url){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=function(url){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=function(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=function(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=function(title){document.title=title}}else{}var out=Module[\"print\"]||console.log.bind(console);var err=Module[\"printErr\"]||console.warn.bind(console);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=null;if(Module[\"arguments\"])arguments_=Module[\"arguments\"];if(Module[\"thisProgram\"])thisProgram=Module[\"thisProgram\"];if(Module[\"quit\"])quit_=Module[\"quit\"];var tempRet0=0;var setTempRet0=function(value){tempRet0=value};var wasmBinary;if(Module[\"wasmBinary\"])wasmBinary=Module[\"wasmBinary\"];var noExitRuntime=Module[\"noExitRuntime\"]||true;if(typeof WebAssembly!==\"object\"){abort(\"no native wasm support detected\")}var wasmMemory;var ABORT=false;var EXITSTATUS;function UTF8ArrayToString(heap,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var str=\"\";while(!(idx>=endIdx)){var u0=heap[idx++];if(!u0)return str;if(!(u0&128)){str+=String.fromCharCode(u0);continue}var u1=heap[idx++]&63;if((u0&224)==192){str+=String.fromCharCode((u0&31)<<6|u1);continue}var u2=heap[idx++]&63;if((u0&240)==224){u0=(u0&15)<<12|u1<<6|u2}else{u0=(u0&7)<<18|u1<<12|u2<<6|heap[idx++]&63}if(u0<65536){str+=String.fromCharCode(u0)}else{var ch=u0-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):\"\"}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i<str.length;++i){var u=str.charCo
/***/ }),
/***/ "./node_modules/@jsquash/jpeg/codec/enc/mozjpeg_enc.js":
/*!*************************************************************!*\
!*** ./node_modules/@jsquash/jpeg/codec/enc/mozjpeg_enc.js ***!
\*************************************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n\nvar Module = (function() {\n var _scriptDir = \"file:///E:/Extra-Time/test/wp-content/plugins/squeeze/node_modules/@jsquash/jpeg/codec/enc/mozjpeg_enc.js\";\n \n return (\nfunction(Module) {\n Module = Module || {};\n\nvar Module=typeof Module!==\"undefined\"?Module:{};var readyPromiseResolve,readyPromiseReject;Module[\"ready\"]=new Promise(function(resolve,reject){readyPromiseResolve=resolve;readyPromiseReject=reject});var moduleOverrides={};var key;for(key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}var arguments_=[];var thisProgram=\"./this.program\";var quit_=function(status,toThrow){throw toThrow};var ENVIRONMENT_IS_WEB=false;var ENVIRONMENT_IS_WORKER=false;var ENVIRONMENT_IS_NODE=false;var ENVIRONMENT_IS_SHELL=false;ENVIRONMENT_IS_WEB=typeof window===\"object\";ENVIRONMENT_IS_WORKER=typeof importScripts===\"function\";ENVIRONMENT_IS_NODE=typeof process===\"object\"&&typeof process.versions===\"object\"&&typeof process.versions.node===\"string\";ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;var scriptDirectory=\"\";function locateFile(path){if(Module[\"locateFile\"]){return Module[\"locateFile\"](path,scriptDirectory)}return scriptDirectory+path}var read_,readAsync,readBinary,setWindowTitle;if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){if(ENVIRONMENT_IS_WORKER){scriptDirectory=self.location.href}else if(typeof document!==\"undefined\"&&document.currentScript){scriptDirectory=document.currentScript.src}if(_scriptDir){scriptDirectory=_scriptDir}if(scriptDirectory.indexOf(\"blob:\")!==0){scriptDirectory=scriptDirectory.substr(0,scriptDirectory.lastIndexOf(\"/\")+1)}else{scriptDirectory=\"\"}{read_=function(url){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.send(null);return xhr.responseText};if(ENVIRONMENT_IS_WORKER){readBinary=function(url){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,false);xhr.responseType=\"arraybuffer\";xhr.send(null);return new Uint8Array(xhr.response)}}readAsync=function(url,onload,onerror){var xhr=new XMLHttpRequest;xhr.open(\"GET\",url,true);xhr.responseType=\"arraybuffer\";xhr.onload=function(){if(xhr.status==200||xhr.status==0&&xhr.response){onload(xhr.response);return}onerror()};xhr.onerror=onerror;xhr.send(null)}}setWindowTitle=function(title){document.title=title}}else{}var out=Module[\"print\"]||console.log.bind(console);var err=Module[\"printErr\"]||console.warn.bind(console);for(key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}moduleOverrides=null;if(Module[\"arguments\"])arguments_=Module[\"arguments\"];if(Module[\"thisProgram\"])thisProgram=Module[\"thisProgram\"];if(Module[\"quit\"])quit_=Module[\"quit\"];var tempRet0=0;var setTempRet0=function(value){tempRet0=value};var wasmBinary;if(Module[\"wasmBinary\"])wasmBinary=Module[\"wasmBinary\"];var noExitRuntime=Module[\"noExitRuntime\"]||true;if(typeof WebAssembly!==\"object\"){abort(\"no native wasm support detected\")}var wasmMemory;var ABORT=false;var EXITSTATUS;function UTF8ArrayToString(heap,idx,maxBytesToRead){var endIdx=idx+maxBytesToRead;var str=\"\";while(!(idx>=endIdx)){var u0=heap[idx++];if(!u0)return str;if(!(u0&128)){str+=String.fromCharCode(u0);continue}var u1=heap[idx++]&63;if((u0&224)==192){str+=String.fromCharCode((u0&31)<<6|u1);continue}var u2=heap[idx++]&63;if((u0&240)==224){u0=(u0&15)<<12|u1<<6|u2}else{u0=(u0&7)<<18|u1<<12|u2<<6|heap[idx++]&63}if(u0<65536){str+=String.fromCharCode(u0)}else{var ch=u0-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}}return str}function UTF8ToString(ptr,maxBytesToRead){return ptr?UTF8ArrayToString(HEAPU8,ptr,maxBytesToRead):\"\"}function stringToUTF8Array(str,heap,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i<str.length;++i){var u=str.charCo
/***/ }),
/***/ "./node_modules/@jsquash/jpeg/decode.js":
/*!**********************************************!*\
!*** ./node_modules/@jsquash/jpeg/decode.js ***!
\**********************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ decode),\n/* harmony export */ \"init\": () => (/* binding */ init)\n/* harmony export */ });\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils */ \"./node_modules/@jsquash/jpeg/utils.js\");\n/* harmony import */ var _codec_dec_mozjpeg_dec__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./codec/dec/mozjpeg_dec */ \"./node_modules/@jsquash/jpeg/codec/dec/mozjpeg_dec.js\");\n/**\n * Copyright 2020 Google Inc. All Rights Reserved.\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * http://www.apache.org/licenses/LICENSE-2.0\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n\nlet emscriptenModule;\nasync function init(module) {\n emscriptenModule = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.initEmscriptenModule)(_codec_dec_mozjpeg_dec__WEBPACK_IMPORTED_MODULE_1__[\"default\"], module);\n}\nasync function decode(buffer) {\n if (!emscriptenModule)\n init();\n const module = await emscriptenModule;\n const result = module.decode(buffer);\n if (!result)\n throw new Error('Decoding error');\n return result;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@jsquash/jpeg/decode.js?");
/***/ }),
/***/ "./node_modules/@jsquash/jpeg/encode.js":
/*!**********************************************!*\
!*** ./node_modules/@jsquash/jpeg/encode.js ***!
\**********************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ encode),\n/* harmony export */ \"init\": () => (/* binding */ init)\n/* harmony export */ });\n/* harmony import */ var _codec_enc_mozjpeg_enc__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./codec/enc/mozjpeg_enc */ \"./node_modules/@jsquash/jpeg/codec/enc/mozjpeg_enc.js\");\n/* harmony import */ var _meta__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./meta */ \"./node_modules/@jsquash/jpeg/meta.js\");\n/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils */ \"./node_modules/@jsquash/jpeg/utils.js\");\n/**\n * Copyright 2020 Google Inc. All Rights Reserved.\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * http://www.apache.org/licenses/LICENSE-2.0\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n\n\nlet emscriptenModule;\nasync function init(module) {\n emscriptenModule = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.initEmscriptenModule)(_codec_enc_mozjpeg_enc__WEBPACK_IMPORTED_MODULE_1__[\"default\"], module);\n}\nasync function encode(data, options = {}) {\n if (!emscriptenModule)\n init();\n const module = await emscriptenModule;\n const _options = { ..._meta__WEBPACK_IMPORTED_MODULE_2__.defaultOptions, ...options };\n const resultView = module.encode(data.data, data.width, data.height, _options);\n // wasm cant run on SharedArrayBuffers, so we hard-cast to ArrayBuffer.\n return resultView.buffer;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@jsquash/jpeg/encode.js?");
/***/ }),
/***/ "./node_modules/@jsquash/jpeg/meta.js":
/*!********************************************!*\
!*** ./node_modules/@jsquash/jpeg/meta.js ***!
\********************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"defaultOptions\": () => (/* binding */ defaultOptions),\n/* harmony export */ \"extension\": () => (/* binding */ extension),\n/* harmony export */ \"label\": () => (/* binding */ label),\n/* harmony export */ \"mimeType\": () => (/* binding */ mimeType)\n/* harmony export */ });\nconst label = 'MozJPEG';\nconst mimeType = 'image/jpeg';\nconst extension = 'jpg';\nconst defaultOptions = {\n quality: 75,\n baseline: false,\n arithmetic: false,\n progressive: true,\n optimize_coding: true,\n smoothing: 0,\n color_space: 3 /* YCbCr */,\n quant_table: 3,\n trellis_multipass: false,\n trellis_opt_zero: false,\n trellis_opt_table: false,\n trellis_loops: 1,\n auto_subsample: true,\n chroma_subsample: 2,\n separate_chroma_quality: false,\n chroma_quality: 75,\n};\n\n\n//# sourceURL=webpack:///./node_modules/@jsquash/jpeg/meta.js?");
/***/ }),
/***/ "./node_modules/@jsquash/jpeg/utils.js":
/*!*********************************************!*\
!*** ./node_modules/@jsquash/jpeg/utils.js ***!
\*********************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"initEmscriptenModule\": () => (/* binding */ initEmscriptenModule)\n/* harmony export */ });\n/**\n * Copyright 2020 Google Inc. All Rights Reserved.\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * http://www.apache.org/licenses/LICENSE-2.0\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n/**\n * Notice: I (Jamie Sinclair) have modified this file to allow manual instantiation of the Wasm Module.\n */\nfunction initEmscriptenModule(moduleFactory, wasmModule) {\n let instantiateWasm;\n if (wasmModule) {\n instantiateWasm = (imports, callback) => {\n const instance = new WebAssembly.Instance(wasmModule, imports);\n callback(instance);\n return instance.exports;\n };\n }\n return moduleFactory({\n // Just to be safe, don't automatically invoke any wasm functions\n noInitialRun: true,\n instantiateWasm\n });\n}\n\n\n//# sourceURL=webpack:///./node_modules/@jsquash/jpeg/utils.js?");
/***/ }),
/***/ "./node_modules/@jsquash/oxipng/meta.js":
/*!**********************************************!*\
!*** ./node_modules/@jsquash/oxipng/meta.js ***!
\**********************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"defaultOptions\": () => (/* binding */ defaultOptions),\n/* harmony export */ \"extension\": () => (/* binding */ extension),\n/* harmony export */ \"label\": () => (/* binding */ label),\n/* harmony export */ \"mimeType\": () => (/* binding */ mimeType)\n/* harmony export */ });\nconst label = 'OXIPNG';\nconst mimeType = 'image/png';\nconst extension = 'png';\nconst defaultOptions = {\n level: 2,\n interlace: false\n};\n\n\n//# sourceURL=webpack:///./node_modules/@jsquash/oxipng/meta.js?");
/***/ }),
/***/ "./node_modules/@jsquash/oxipng/optimise.js":
/*!**************************************************!*\
!*** ./node_modules/@jsquash/oxipng/optimise.js ***!
\**************************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ optimise),\n/* harmony export */ \"init\": () => (/* binding */ init)\n/* harmony export */ });\n/* harmony import */ var _meta__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./meta */ \"./node_modules/@jsquash/oxipng/meta.js\");\n/* harmony import */ var wasm_feature_detect__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! wasm-feature-detect */ \"./node_modules/wasm-feature-detect/dist/esm/index.js\");\n/**\n * Copyright 2020 Google Inc. All Rights Reserved.\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * http://www.apache.org/licenses/LICENSE-2.0\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n\nasync function initMT(moduleOrPath) {\n const { default: init, initThreadPool, optimise, } = await Promise.all(/*! import() */[__webpack_require__.e(\"vendors-node_modules_jsquash_oxipng_codec_pkg-parallel_squoosh_oxipng_js\"), __webpack_require__.e(\"node_modules_jsquash_oxipng_codec_pkg-parallel_snippets_wasm-bindgen-rayon-3d2df09ebec17a22_s-312b0a1\")]).then(__webpack_require__.bind(__webpack_require__, /*! ./codec/pkg-parallel/squoosh_oxipng */ \"./node_modules/@jsquash/oxipng/codec/pkg-parallel/squoosh_oxipng.js\"));\n await init(moduleOrPath);\n await initThreadPool(globalThis.navigator.hardwareConcurrency);\n return optimise;\n}\nasync function initST(moduleOrPath) {\n const { default: init, optimise } = await __webpack_require__.e(/*! import() */ \"vendors-node_modules_jsquash_oxipng_codec_pkg_squoosh_oxipng_js\").then(__webpack_require__.bind(__webpack_require__, /*! ./codec/pkg/squoosh_oxipng */ \"./node_modules/@jsquash/oxipng/codec/pkg/squoosh_oxipng.js\"));\n await init(moduleOrPath);\n return optimise;\n}\nlet wasmReady;\nfunction init(moduleOrPath) {\n var _a;\n if (!wasmReady) {\n const hasHardwareConcurrency = ((_a = globalThis.navigator) === null || _a === void 0 ? void 0 : _a.hardwareConcurrency) > 1;\n wasmReady = hasHardwareConcurrency ? (0,wasm_feature_detect__WEBPACK_IMPORTED_MODULE_0__.threads)().then((hasThreads) => hasThreads ? initMT(moduleOrPath) : initST(moduleOrPath)) : initST(moduleOrPath);\n }\n}\nasync function optimise(data, options = {}) {\n init();\n const _options = { ..._meta__WEBPACK_IMPORTED_MODULE_1__.defaultOptions, ...options };\n const optimise = await wasmReady;\n return optimise(new Uint8Array(data), _options.level, _options.interlace)\n .buffer;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@jsquash/oxipng/optimise.js?");
/***/ }),
/***/ "./node_modules/@jsquash/png/decode.js":
/*!*********************************************!*\
!*** ./node_modules/@jsquash/png/decode.js ***!
\*********************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ decode),\n/* harmony export */ \"init\": () => (/* binding */ init)\n/* harmony export */ });\n/* harmony import */ var _codec_squoosh_png__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./codec/squoosh_png */ \"./node_modules/@jsquash/png/codec/squoosh_png.js\");\n/**\n * Copyright 2020 Google Inc. All Rights Reserved.\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * http://www.apache.org/licenses/LICENSE-2.0\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nlet pngModule;\nasync function init(moduleOrPath) {\n if (!pngModule) {\n pngModule = (0,_codec_squoosh_png__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(moduleOrPath);\n }\n return pngModule;\n}\nasync function decode(data) {\n await init();\n const imageData = await (0,_codec_squoosh_png__WEBPACK_IMPORTED_MODULE_0__.decode)(new Uint8Array(data));\n if (!imageData)\n throw new Error('Encoding error.');\n return imageData;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@jsquash/png/decode.js?");
/***/ }),
/***/ "./node_modules/@jsquash/png/encode.js":
/*!*********************************************!*\
!*** ./node_modules/@jsquash/png/encode.js ***!
\*********************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (/* binding */ encode),\n/* harmony export */ \"init\": () => (/* binding */ init)\n/* harmony export */ });\n/* harmony import */ var _codec_squoosh_png__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./codec/squoosh_png */ \"./node_modules/@jsquash/png/codec/squoosh_png.js\");\n/**\n * Copyright 2020 Google Inc. All Rights Reserved.\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n * http://www.apache.org/licenses/LICENSE-2.0\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nlet pngModule;\nasync function init(moduleOrPath) {\n if (!pngModule) {\n pngModule = (0,_codec_squoosh_png__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(moduleOrPath);\n }\n return pngModule;\n}\nasync function encode(data) {\n await init();\n // @ts-ignore - pngEncode expects a Uint8Array, check if mistake or whether we need to convert from Uint8ClampedArray\n const buffer = await (0,_codec_squoosh_png__WEBPACK_IMPORTED_MODULE_0__.encode)(data.data, data.width, data.height);\n if (!buffer)\n throw new Error('Encoding error.');\n return buffer;\n}\n\n\n//# sourceURL=webpack:///./node_modules/@jsquash/png/encode.js?");
/***/ }),
/***/ "./node_modules/wasm-feature-detect/dist/esm/index.js":
/*!************************************************************!*\
!*** ./node_modules/wasm-feature-detect/dist/esm/index.js ***!
\************************************************************/
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"bigInt\": () => (/* binding */ bigInt),\n/* harmony export */ \"bulkMemory\": () => (/* binding */ bulkMemory),\n/* harmony export */ \"exceptions\": () => (/* binding */ exceptions),\n/* harmony export */ \"extendedConst\": () => (/* binding */ extendedConst),\n/* harmony export */ \"gc\": () => (/* binding */ gc),\n/* harmony export */ \"memory64\": () => (/* binding */ memory64),\n/* harmony export */ \"multiValue\": () => (/* binding */ multiValue),\n/* harmony export */ \"mutableGlobals\": () => (/* binding */ mutableGlobals),\n/* harmony export */ \"referenceTypes\": () => (/* binding */ referenceTypes),\n/* harmony export */ \"relaxedSimd\": () => (/* binding */ relaxedSimd),\n/* harmony export */ \"saturatedFloatToInt\": () => (/* binding */ saturatedFloatToInt),\n/* harmony export */ \"signExtensions\": () => (/* binding */ signExtensions),\n/* harmony export */ \"simd\": () => (/* binding */ simd),\n/* harmony export */ \"streamingCompilation\": () => (/* binding */ streamingCompilation),\n/* harmony export */ \"tailCall\": () => (/* binding */ tailCall),\n/* harmony export */ \"threads\": () => (/* binding */ threads)\n/* harmony export */ });\nconst bigInt=()=>(async e=>{try{return(await WebAssembly.instantiate(e)).instance.exports.b(BigInt(0))===BigInt(0)}catch(e){return!1}})(new Uint8Array([0,97,115,109,1,0,0,0,1,6,1,96,1,126,1,126,3,2,1,0,7,5,1,1,98,0,0,10,6,1,4,0,32,0,11])),bulkMemory=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,5,3,1,0,1,10,14,1,12,0,65,0,65,0,65,0,252,10,0,0,11])),exceptions=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,8,1,6,0,6,64,25,11,11])),extendedConst=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,5,3,1,0,1,11,9,1,0,65,1,65,2,106,11,0])),gc=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,10,2,95,1,125,0,96,0,1,107,0,3,2,1,1,10,12,1,10,0,67,0,0,0,0,251,7,0,11])),memory64=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,5,3,1,4,1])),multiValue=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,6,1,96,0,2,127,127,3,2,1,0,10,8,1,6,0,65,0,65,0,11])),mutableGlobals=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,2,8,1,1,97,1,98,3,127,1,6,6,1,127,1,65,0,11,7,5,1,1,97,3,1])),referenceTypes=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,7,1,5,0,208,112,26,11])),relaxedSimd=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,15,1,13,0,65,1,253,15,65,2,253,15,253,128,2,11])),saturatedFloatToInt=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,12,1,10,0,67,0,0,0,0,252,0,26,11])),signExtensions=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,8,1,6,0,65,0,192,26,11])),simd=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,5,1,96,0,1,123,3,2,1,0,10,10,1,8,0,65,0,253,15,253,98,11])),streamingCompilation=()=>(async()=>\"compileStreaming\"in WebAssembly)(),tailCall=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,10,6,1,4,0,18,0,11])),threads=()=>(async e=>{try{return\"undefined\"!=typeof MessageChannel&&(new MessageChannel).port1.postMessage(new SharedArrayBuffer(1)),WebAssembly.validate(e)}catch(e){return!1}})(new Uint8Array([0,97,115,109,1,0,0,0,1,4,1,96,0,0,3,2,1,0,5,4,1,3,1,1,10,11,1,9,0,65,0,254,16,2,0,26,11]));\n\n\n//# sourceURL=webpack:///./node_modules/wasm-feature-detect/dist/esm/index.js?");
/***/ })
/******/ });
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ var cachedModule = __webpack_module_cache__[moduleId];
/******/ if (cachedModule !== undefined) {
/******/ return cachedModule.exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ // no module.id needed
/******/ // no module.loaded needed
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = __webpack_modules__;
/******/
/************************************************************************/
/******/ /* webpack/runtime/define property getters */
/******/ (() => {
/******/ // define getter functions for harmony exports
/******/ __webpack_require__.d = (exports, definition) => {
/******/ for(var key in definition) {
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
/******/ }
/******/ }
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/ensure chunk */
/******/ (() => {
/******/ __webpack_require__.f = {};
/******/ // This file contains only the entry chunk.
/******/ // The chunk loading function for additional chunks
/******/ __webpack_require__.e = (chunkId) => {
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
/******/ __webpack_require__.f[key](chunkId, promises);
/******/ return promises;
/******/ }, []));
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/get javascript chunk filename */
/******/ (() => {
/******/ // This function allow to reference async chunks
/******/ __webpack_require__.u = (chunkId) => {
/******/ // return url for filenames based on template
/******/ return "" + chunkId + ".script.bundle.js";
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/global */
/******/ (() => {
/******/ __webpack_require__.g = (function() {
/******/ if (typeof globalThis === 'object') return globalThis;
/******/ try {
/******/ return this || new Function('return this')();
/******/ } catch (e) {
/******/ if (typeof window === 'object') return window;
/******/ }
/******/ })();
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
/******/ (() => {
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
/******/ })();
/******/
/******/ /* webpack/runtime/load script */
/******/ (() => {
/******/ var inProgress = {};
/******/ // data-webpack is not used as build has no uniqueName
/******/ // loadScript function to load a script via script tag
/******/ __webpack_require__.l = (url, done, key, chunkId) => {
/******/ if(inProgress[url]) { inProgress[url].push(done); return; }
/******/ var script, needAttach;
/******/ if(key !== undefined) {
/******/ var scripts = document.getElementsByTagName("script");
/******/ for(var i = 0; i < scripts.length; i++) {
/******/ var s = scripts[i];
/******/ if(s.getAttribute("src") == url) { script = s; break; }
/******/ }
/******/ }
/******/ if(!script) {
/******/ needAttach = true;
/******/ script = document.createElement('script');
/******/
/******/ script.charset = 'utf-8';
/******/ script.timeout = 120;
/******/ if (__webpack_require__.nc) {
/******/ script.setAttribute("nonce", __webpack_require__.nc);
/******/ }
/******/
/******/ script.src = url;
/******/ }
/******/ inProgress[url] = [done];
/******/ var onScriptComplete = (prev, event) => {
/******/ // avoid mem leaks in IE.
/******/ script.onerror = script.onload = null;
/******/ clearTimeout(timeout);
/******/ var doneFns = inProgress[url];
/******/ delete inProgress[url];
/******/ script.parentNode && script.parentNode.removeChild(script);
/******/ doneFns && doneFns.forEach((fn) => (fn(event)));
/******/ if(prev) return prev(event);
/******/ }
/******/ var timeout = setTimeout(onScriptComplete.bind(null, undefined, { type: 'timeout', target: script }), 120000);
/******/ script.onerror = onScriptComplete.bind(null, script.onerror);
/******/ script.onload = onScriptComplete.bind(null, script.onload);
/******/ needAttach && document.head.appendChild(script);
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/make namespace object */
/******/ (() => {
/******/ // define __esModule on exports
/******/ __webpack_require__.r = (exports) => {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/ })();
/******/
/******/ /* webpack/runtime/publicPath */
/******/ (() => {
/******/ var scriptUrl;
/******/ if (__webpack_require__.g.importScripts) scriptUrl = __webpack_require__.g.location + "";
/******/ var document = __webpack_require__.g.document;
/******/ if (!scriptUrl && document) {
/******/ if (document.currentScript)
/******/ scriptUrl = document.currentScript.src;
/******/ if (!scriptUrl) {
/******/ var scripts = document.getElementsByTagName("script");
/******/ if(scripts.length) scriptUrl = scripts[scripts.length - 1].src
/******/ }
/******/ }
/******/ // When supporting browsers where an automatic publicPath is not supported you must specify an output.publicPath manually via configuration
/******/ // or pass an empty string ("") and set the __webpack_public_path__ variable from your code to use your own logic.
/******/ if (!scriptUrl) throw new Error("Automatic publicPath is not supported in this browser");
/******/ scriptUrl = scriptUrl.replace(/#.*$/, "").replace(/\?.*$/, "").replace(/\/[^\/]+$/, "/");
/******/ __webpack_require__.p = scriptUrl;
/******/ })();
/******/
/******/ /* webpack/runtime/jsonp chunk loading */
/******/ (() => {
/******/ __webpack_require__.b = document.baseURI || self.location.href;
/******/
/******/ // object to store loaded and loading chunks
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
/******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
/******/ var installedChunks = {
/******/ "main": 0
/******/ };
/******/
/******/ __webpack_require__.f.j = (chunkId, promises) => {
/******/ // JSONP chunk loading for javascript
/******/ var installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;
/******/ if(installedChunkData !== 0) { // 0 means "already installed".
/******/
/******/ // a Promise means "currently loading".
/******/ if(installedChunkData) {
/******/ promises.push(installedChunkData[2]);
/******/ } else {
/******/ if(true) { // all chunks have JS
/******/ // setup Promise in chunk cache
/******/ var promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));
/******/ promises.push(installedChunkData[2] = promise);
/******/
/******/ // start chunk loading
/******/ var url = __webpack_require__.p + __webpack_require__.u(chunkId);
/******/ // create error before stack unwound to get useful stacktrace later
/******/ var error = new Error();
/******/ var loadingEnded = (event) => {
/******/ if(__webpack_require__.o(installedChunks, chunkId)) {
/******/ installedChunkData = installedChunks[chunkId];
/******/ if(installedChunkData !== 0) installedChunks[chunkId] = undefined;
/******/ if(installedChunkData) {
/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
/******/ var realSrc = event && event.target && event.target.src;
/******/ error.message = 'Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')';
/******/ error.name = 'ChunkLoadError';
/******/ error.type = errorType;
/******/ error.request = realSrc;
/******/ installedChunkData[1](error);
/******/ }
/******/ }
/******/ };
/******/ __webpack_require__.l(url, loadingEnded, "chunk-" + chunkId, chunkId);
/******/ } else installedChunks[chunkId] = 0;
/******/ }
/******/ }
/******/ };
/******/
/******/ // no prefetching
/******/
/******/ // no preloaded
/******/
/******/ // no HMR
/******/
/******/ // no HMR manifest
/******/
/******/ // no on chunks loaded
/******/
/******/ // install a JSONP callback for chunk loading
/******/ var webpackJsonpCallback = (parentChunkLoadingFunction, data) => {
/******/ var [chunkIds, moreModules, runtime] = data;
/******/ // add "moreModules" to the modules object,
/******/ // then flag all "chunkIds" as loaded and fire callback
/******/ var moduleId, chunkId, i = 0;
/******/ if(chunkIds.some((id) => (installedChunks[id] !== 0))) {
/******/ for(moduleId in moreModules) {
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
/******/ }
/******/ }
/******/ if(runtime) var result = runtime(__webpack_require__);
/******/ }
/******/ if(parentChunkLoadingFunction) parentChunkLoadingFunction(data);
/******/ for(;i < chunkIds.length; i++) {
/******/ chunkId = chunkIds[i];
/******/ if(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {
/******/ installedChunks[chunkId][0]();
/******/ }
/******/ installedChunks[chunkId] = 0;
/******/ }
/******/
/******/ }
/******/
/******/ var chunkLoadingGlobal = self["webpackChunk"] = self["webpackChunk"] || [];
/******/ chunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));
/******/ chunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));
/******/ })();
/******/
/************************************************************************/
/******/
/******/ // startup
/******/ // Load entry module and return exports
/******/ // This entry module can't be inlined because the eval devtool is used.
/******/ var __webpack_exports__ = __webpack_require__("./assets/js/script.js");
/******/
/******/ })()
;