@plattar/plattar-ar-adapter 1.168.2 → 1.169.1
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/build/es2015/plattar-ar-adapter.js +1206 -1041
- package/build/es2015/plattar-ar-adapter.min.js +1 -1
- package/build/es2019/plattar-ar-adapter.js +295 -159
- package/build/es2019/plattar-ar-adapter.min.js +1 -1
- package/dist/embed/controllers/configurator-controller.js +2 -2
- package/dist/embed/controllers/webxr-controller.d.ts +16 -0
- package/dist/embed/controllers/webxr-controller.js +144 -0
- package/dist/embed/plattar-embed.js +9 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +6 -6
|
@@ -170,7 +170,7 @@ class ConfiguratorAR extends launcher_ar_1.LauncherAR {
|
|
|
170
170
|
}
|
|
171
171
|
exports.ConfiguratorAR = ConfiguratorAR;
|
|
172
172
|
|
|
173
|
-
},{"../util/util":
|
|
173
|
+
},{"../util/util":16,"../version":17,"../viewers/quicklook-viewer":19,"../viewers/scene-viewer":21,"./launcher-ar":2,"@plattar/plattar-analytics":41,"@plattar/plattar-api":45,"@plattar/plattar-services":116}],2:[function(require,module,exports){
|
|
174
174
|
"use strict";
|
|
175
175
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
176
176
|
exports.LauncherAR = void 0;
|
|
@@ -335,7 +335,7 @@ class ModelAR extends launcher_ar_1.LauncherAR {
|
|
|
335
335
|
}
|
|
336
336
|
exports.ModelAR = ModelAR;
|
|
337
337
|
|
|
338
|
-
},{"../util/util":
|
|
338
|
+
},{"../util/util":16,"../version":17,"../viewers/quicklook-viewer":19,"../viewers/reality-viewer":20,"../viewers/scene-viewer":21,"./launcher-ar":2,"@plattar/plattar-analytics":41,"@plattar/plattar-api":45}],4:[function(require,module,exports){
|
|
339
339
|
"use strict";
|
|
340
340
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
341
341
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -550,7 +550,7 @@ class ProductAR extends launcher_ar_1.LauncherAR {
|
|
|
550
550
|
}
|
|
551
551
|
exports.ProductAR = ProductAR;
|
|
552
552
|
|
|
553
|
-
},{"../util/util":
|
|
553
|
+
},{"../util/util":16,"../version":17,"../viewers/quicklook-viewer":19,"../viewers/reality-viewer":20,"../viewers/scene-viewer":21,"./launcher-ar":2,"@plattar/plattar-analytics":41,"@plattar/plattar-api":45}],5:[function(require,module,exports){
|
|
554
554
|
"use strict";
|
|
555
555
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
556
556
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -705,7 +705,7 @@ class RawAR extends launcher_ar_1.LauncherAR {
|
|
|
705
705
|
}
|
|
706
706
|
exports.RawAR = RawAR;
|
|
707
707
|
|
|
708
|
-
},{"../util/util":
|
|
708
|
+
},{"../util/util":16,"../version":17,"../viewers/quicklook-viewer":19,"../viewers/reality-viewer":20,"../viewers/scene-viewer":21,"./launcher-ar":2,"@plattar/plattar-analytics":41,"@plattar/plattar-api":45}],6:[function(require,module,exports){
|
|
709
709
|
"use strict";
|
|
710
710
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
711
711
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -916,7 +916,7 @@ class SceneAR extends launcher_ar_1.LauncherAR {
|
|
|
916
916
|
}
|
|
917
917
|
exports.SceneAR = SceneAR;
|
|
918
918
|
|
|
919
|
-
},{"../util/util":
|
|
919
|
+
},{"../util/util":16,"../version":17,"../viewers/quicklook-viewer":19,"../viewers/scene-viewer":21,"./launcher-ar":2,"@plattar/plattar-analytics":41,"@plattar/plattar-api":45,"@plattar/plattar-services":116}],7:[function(require,module,exports){
|
|
920
920
|
"use strict";
|
|
921
921
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
922
922
|
exports.SceneProductAR = void 0;
|
|
@@ -967,7 +967,7 @@ class SceneProductAR extends product_ar_1.ProductAR {
|
|
|
967
967
|
}
|
|
968
968
|
exports.SceneProductAR = SceneProductAR;
|
|
969
969
|
|
|
970
|
-
},{"../util/util":
|
|
970
|
+
},{"../util/util":16,"./product-ar":4,"@plattar/plattar-api":45}],8:[function(require,module,exports){
|
|
971
971
|
"use strict";
|
|
972
972
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
973
973
|
exports.ConfiguratorController = void 0;
|
|
@@ -1180,9 +1180,9 @@ class ConfiguratorController extends plattar_controller_1.PlattarController {
|
|
|
1180
1180
|
const showAR = this.getAttribute("show-ar");
|
|
1181
1181
|
const showUI = this.getAttribute("show-ui");
|
|
1182
1182
|
if (configState) {
|
|
1183
|
-
|
|
1183
|
+
const encodedState = configState.state.encode();
|
|
1184
1184
|
if (encodedState.length < 6000) {
|
|
1185
|
-
viewer.setAttribute("config-state",
|
|
1185
|
+
viewer.setAttribute("config-state", encodedState);
|
|
1186
1186
|
}
|
|
1187
1187
|
}
|
|
1188
1188
|
if (showAR) {
|
|
@@ -1272,7 +1272,7 @@ class ConfiguratorController extends plattar_controller_1.PlattarController {
|
|
|
1272
1272
|
}
|
|
1273
1273
|
exports.ConfiguratorController = ConfiguratorController;
|
|
1274
1274
|
|
|
1275
|
-
},{"../../ar/configurator-ar":1,"../../ar/scene-product-ar":7,"../../util/util":
|
|
1275
|
+
},{"../../ar/configurator-ar":1,"../../ar/scene-product-ar":7,"../../util/util":16,"./plattar-controller":9,"@plattar/plattar-api":45}],9:[function(require,module,exports){
|
|
1276
1276
|
"use strict";
|
|
1277
1277
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1278
1278
|
exports.PlattarController = exports.ControllerState = void 0;
|
|
@@ -1568,7 +1568,7 @@ class PlattarController {
|
|
|
1568
1568
|
}
|
|
1569
1569
|
exports.PlattarController = PlattarController;
|
|
1570
1570
|
|
|
1571
|
-
},{"../../util/configurator-state":
|
|
1571
|
+
},{"../../util/configurator-state":15,"@plattar/plattar-api":45}],10:[function(require,module,exports){
|
|
1572
1572
|
"use strict";
|
|
1573
1573
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1574
1574
|
exports.ProductController = void 0;
|
|
@@ -1798,7 +1798,7 @@ class ProductController extends plattar_controller_1.PlattarController {
|
|
|
1798
1798
|
}
|
|
1799
1799
|
exports.ProductController = ProductController;
|
|
1800
1800
|
|
|
1801
|
-
},{"../../ar/product-ar":4,"../../util/util":
|
|
1801
|
+
},{"../../ar/product-ar":4,"../../util/util":16,"./plattar-controller":9,"@plattar/plattar-api":45}],11:[function(require,module,exports){
|
|
1802
1802
|
"use strict";
|
|
1803
1803
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1804
1804
|
exports.VTOController = void 0;
|
|
@@ -2038,7 +2038,153 @@ class VTOController extends plattar_controller_1.PlattarController {
|
|
|
2038
2038
|
}
|
|
2039
2039
|
exports.VTOController = VTOController;
|
|
2040
2040
|
|
|
2041
|
-
},{"../..":
|
|
2041
|
+
},{"../..":14,"../../ar/configurator-ar":1,"../../util/util":16,"./plattar-controller":9,"@plattar/plattar-api":45}],12:[function(require,module,exports){
|
|
2042
|
+
"use strict";
|
|
2043
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2044
|
+
exports.WebXRController = void 0;
|
|
2045
|
+
const util_1 = require("../../util/util");
|
|
2046
|
+
const plattar_controller_1 = require("./plattar-controller");
|
|
2047
|
+
/**
|
|
2048
|
+
* Manages an instance of the <plattar-ewall> HTML Element
|
|
2049
|
+
*/
|
|
2050
|
+
class WebXRController extends plattar_controller_1.PlattarController {
|
|
2051
|
+
constructor() {
|
|
2052
|
+
super(...arguments);
|
|
2053
|
+
this._cachedConfigState = null;
|
|
2054
|
+
}
|
|
2055
|
+
async getConfiguratorState() {
|
|
2056
|
+
if (this._cachedConfigState) {
|
|
2057
|
+
return this._cachedConfigState;
|
|
2058
|
+
}
|
|
2059
|
+
this._cachedConfigState = this.createConfiguratorState();
|
|
2060
|
+
return this._cachedConfigState;
|
|
2061
|
+
}
|
|
2062
|
+
async onAttributesUpdated(attributeName) {
|
|
2063
|
+
const state = this._state;
|
|
2064
|
+
if (state === plattar_controller_1.ControllerState.Renderer) {
|
|
2065
|
+
const viewer = this.element;
|
|
2066
|
+
if (viewer) {
|
|
2067
|
+
if (attributeName === "variation-id") {
|
|
2068
|
+
const variationIDs = this.getAttribute("variation-id");
|
|
2069
|
+
const variationIDsList = variationIDs ? variationIDs.split(",") : [];
|
|
2070
|
+
if (variationIDsList.length > 0) {
|
|
2071
|
+
await viewer.messenger.selectVariationID(variationIDsList);
|
|
2072
|
+
}
|
|
2073
|
+
}
|
|
2074
|
+
if (attributeName === "variation-sku") {
|
|
2075
|
+
const variationSKUs = this.getAttribute("variation-sku");
|
|
2076
|
+
const variationSKUList = variationSKUs ? variationSKUs.split(",") : [];
|
|
2077
|
+
if (variationSKUList.length > 0) {
|
|
2078
|
+
await viewer.messenger.selectVariationSKU(variationSKUList);
|
|
2079
|
+
}
|
|
2080
|
+
}
|
|
2081
|
+
}
|
|
2082
|
+
return;
|
|
2083
|
+
}
|
|
2084
|
+
// re-render the QR Code when attributes have changed
|
|
2085
|
+
if (state === plattar_controller_1.ControllerState.QRCode) {
|
|
2086
|
+
if (attributeName === "variation-id") {
|
|
2087
|
+
const configState = await this.getConfiguratorState();
|
|
2088
|
+
const variationIDs = this.getAttribute("variation-id");
|
|
2089
|
+
const variationIDsList = variationIDs ? variationIDs.split(",") : [];
|
|
2090
|
+
variationIDsList.forEach((variationID) => {
|
|
2091
|
+
configState.state.setVariationID(variationID);
|
|
2092
|
+
});
|
|
2093
|
+
}
|
|
2094
|
+
if (attributeName === "variation-sku") {
|
|
2095
|
+
const configState = await this.getConfiguratorState();
|
|
2096
|
+
const variationSKUs = this.getAttribute("variation-sku");
|
|
2097
|
+
const variationSKUList = variationSKUs ? variationSKUs.split(",") : [];
|
|
2098
|
+
variationSKUList.forEach((variationSKU) => {
|
|
2099
|
+
configState.state.setVariationSKU(variationSKU);
|
|
2100
|
+
});
|
|
2101
|
+
}
|
|
2102
|
+
this.startQRCode(this._prevQROpt);
|
|
2103
|
+
return;
|
|
2104
|
+
}
|
|
2105
|
+
}
|
|
2106
|
+
startViewerQRCode(options) {
|
|
2107
|
+
return this.startQRCode(options);
|
|
2108
|
+
}
|
|
2109
|
+
get element() {
|
|
2110
|
+
return this._element;
|
|
2111
|
+
}
|
|
2112
|
+
async startQRCode(options) {
|
|
2113
|
+
// remove the old renderer instance if any
|
|
2114
|
+
this.removeRenderer();
|
|
2115
|
+
const sceneID = this.getAttribute("scene-id");
|
|
2116
|
+
if (!sceneID) {
|
|
2117
|
+
throw new Error("WebXRController.startQRCode() - minimum required attributes not set, use scene-id as a minimum");
|
|
2118
|
+
}
|
|
2119
|
+
const opt = options || this._GetDefaultQROptions();
|
|
2120
|
+
const viewer = document.createElement("plattar-qrcode");
|
|
2121
|
+
this._element = viewer;
|
|
2122
|
+
// required attributes with defaults for plattar-viewer node
|
|
2123
|
+
const width = this.getAttribute("width") || "500px";
|
|
2124
|
+
const height = this.getAttribute("height") || "500px";
|
|
2125
|
+
viewer.setAttribute("width", width);
|
|
2126
|
+
viewer.setAttribute("height", height);
|
|
2127
|
+
if (opt.color) {
|
|
2128
|
+
viewer.setAttribute("color", opt.color);
|
|
2129
|
+
}
|
|
2130
|
+
if (opt.margin) {
|
|
2131
|
+
viewer.setAttribute("margin", "" + opt.margin);
|
|
2132
|
+
}
|
|
2133
|
+
if (opt.qrType) {
|
|
2134
|
+
viewer.setAttribute("qr-type", opt.qrType);
|
|
2135
|
+
}
|
|
2136
|
+
viewer.setAttribute("shorten", (opt.shorten && (opt.shorten === true || opt.shorten === "true")) ? "true" : "false");
|
|
2137
|
+
const dst = location.href;
|
|
2138
|
+
viewer.setAttribute("url", opt.url || dst);
|
|
2139
|
+
this._state = plattar_controller_1.ControllerState.QRCode;
|
|
2140
|
+
this._prevQROpt = opt;
|
|
2141
|
+
return new Promise((accept, reject) => {
|
|
2142
|
+
viewer.onload = () => {
|
|
2143
|
+
return accept(viewer);
|
|
2144
|
+
};
|
|
2145
|
+
this.append(viewer);
|
|
2146
|
+
});
|
|
2147
|
+
}
|
|
2148
|
+
async startRenderer() {
|
|
2149
|
+
// remove the old renderer instance if any
|
|
2150
|
+
this.removeRenderer();
|
|
2151
|
+
if (!util_1.Util.canAugment()) {
|
|
2152
|
+
return this.startQRCode(this._GetDefaultQROptions());
|
|
2153
|
+
}
|
|
2154
|
+
const sceneID = this.getAttribute("scene-id");
|
|
2155
|
+
if (!sceneID) {
|
|
2156
|
+
throw new Error("WebXRController.startRenderer() - minimum required attributes not set, use scene-id as a minimum");
|
|
2157
|
+
}
|
|
2158
|
+
// required attributes with defaults for plattar-configurator node
|
|
2159
|
+
const width = this.getAttribute("width") || "500px";
|
|
2160
|
+
const height = this.getAttribute("height") || "500px";
|
|
2161
|
+
const server = this.getAttribute("server") || "production";
|
|
2162
|
+
const viewer = document.createElement("plattar-8wall");
|
|
2163
|
+
this._element = viewer;
|
|
2164
|
+
viewer.setAttribute("width", width);
|
|
2165
|
+
viewer.setAttribute("height", height);
|
|
2166
|
+
viewer.setAttribute("server", server);
|
|
2167
|
+
viewer.setAttribute("scene-id", sceneID);
|
|
2168
|
+
const showAR = this.getAttribute("show-ar");
|
|
2169
|
+
const showUI = this.getAttribute("show-ui");
|
|
2170
|
+
if (showAR) {
|
|
2171
|
+
viewer.setAttribute("show-ar", showAR);
|
|
2172
|
+
}
|
|
2173
|
+
if (showUI) {
|
|
2174
|
+
viewer.setAttribute("show-ui", showUI);
|
|
2175
|
+
}
|
|
2176
|
+
return new Promise((accept, reject) => {
|
|
2177
|
+
this.append(viewer);
|
|
2178
|
+
return accept(viewer);
|
|
2179
|
+
});
|
|
2180
|
+
}
|
|
2181
|
+
async initAR() {
|
|
2182
|
+
throw new Error("WebXRController.initAR() - cannot proceed as AR not available in webxr");
|
|
2183
|
+
}
|
|
2184
|
+
}
|
|
2185
|
+
exports.WebXRController = WebXRController;
|
|
2186
|
+
|
|
2187
|
+
},{"../../util/util":16,"./plattar-controller":9}],13:[function(require,module,exports){
|
|
2042
2188
|
"use strict";
|
|
2043
2189
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2044
2190
|
const plattar_api_1 = require("@plattar/plattar-api");
|
|
@@ -2046,6 +2192,7 @@ const configurator_controller_1 = require("./controllers/configurator-controller
|
|
|
2046
2192
|
const vto_controller_1 = require("./controllers/vto-controller");
|
|
2047
2193
|
const product_controller_1 = require("./controllers/product-controller");
|
|
2048
2194
|
const util_1 = require("../util/util");
|
|
2195
|
+
const webxr_controller_1 = require("./controllers/webxr-controller");
|
|
2049
2196
|
/**
|
|
2050
2197
|
* This tracks the current embed type
|
|
2051
2198
|
*/
|
|
@@ -2054,7 +2201,8 @@ var EmbedType;
|
|
|
2054
2201
|
EmbedType[EmbedType["Configurator"] = 0] = "Configurator";
|
|
2055
2202
|
EmbedType[EmbedType["Legacy"] = 1] = "Legacy";
|
|
2056
2203
|
EmbedType[EmbedType["VTO"] = 2] = "VTO";
|
|
2057
|
-
EmbedType[EmbedType["
|
|
2204
|
+
EmbedType[EmbedType["WebXR"] = 3] = "WebXR";
|
|
2205
|
+
EmbedType[EmbedType["None"] = 4] = "None";
|
|
2058
2206
|
})(EmbedType || (EmbedType = {}));
|
|
2059
2207
|
/**
|
|
2060
2208
|
* Controls the state of the observer
|
|
@@ -2194,6 +2342,9 @@ class PlattarEmbed extends HTMLElement {
|
|
|
2194
2342
|
case "vto":
|
|
2195
2343
|
this._currentType = EmbedType.VTO;
|
|
2196
2344
|
break;
|
|
2345
|
+
case "webxr":
|
|
2346
|
+
this._currentType = EmbedType.WebXR;
|
|
2347
|
+
break;
|
|
2197
2348
|
case "viewer":
|
|
2198
2349
|
case "configurator":
|
|
2199
2350
|
default:
|
|
@@ -2222,6 +2373,9 @@ class PlattarEmbed extends HTMLElement {
|
|
|
2222
2373
|
case EmbedType.Configurator:
|
|
2223
2374
|
this._controller = new configurator_controller_1.ConfiguratorController(this);
|
|
2224
2375
|
break;
|
|
2376
|
+
case EmbedType.WebXR:
|
|
2377
|
+
this._controller = new webxr_controller_1.WebXRController(this);
|
|
2378
|
+
break;
|
|
2225
2379
|
case EmbedType.VTO:
|
|
2226
2380
|
this._controller = new vto_controller_1.VTOController(this);
|
|
2227
2381
|
break;
|
|
@@ -2305,7 +2459,7 @@ class PlattarEmbed extends HTMLElement {
|
|
|
2305
2459
|
}
|
|
2306
2460
|
exports.default = PlattarEmbed;
|
|
2307
2461
|
|
|
2308
|
-
},{"../util/util":
|
|
2462
|
+
},{"../util/util":16,"./controllers/configurator-controller":8,"./controllers/product-controller":10,"./controllers/vto-controller":11,"./controllers/webxr-controller":12,"@plattar/plattar-api":45}],14:[function(require,module,exports){
|
|
2309
2463
|
"use strict";
|
|
2310
2464
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
2311
2465
|
if (k2 === undefined) k2 = k;
|
|
@@ -2363,7 +2517,7 @@ if (customElements) {
|
|
|
2363
2517
|
}
|
|
2364
2518
|
console.log("using @plattar/plattar-ar-adapter v" + version_1.default);
|
|
2365
2519
|
|
|
2366
|
-
},{"./ar/launcher-ar":2,"./ar/model-ar":3,"./ar/product-ar":4,"./ar/raw-ar":5,"./ar/scene-ar":6,"./ar/scene-product-ar":7,"./embed/plattar-embed":
|
|
2520
|
+
},{"./ar/launcher-ar":2,"./ar/model-ar":3,"./ar/product-ar":4,"./ar/raw-ar":5,"./ar/scene-ar":6,"./ar/scene-product-ar":7,"./embed/plattar-embed":13,"./util/configurator-state":15,"./util/util":16,"./version":17,"@plattar/plattar-qrcode":111,"@plattar/plattar-web":130}],15:[function(require,module,exports){
|
|
2367
2521
|
"use strict";
|
|
2368
2522
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2369
2523
|
exports.ConfiguratorState = void 0;
|
|
@@ -2783,7 +2937,7 @@ class ConfiguratorState {
|
|
|
2783
2937
|
}
|
|
2784
2938
|
exports.ConfiguratorState = ConfiguratorState;
|
|
2785
2939
|
|
|
2786
|
-
},{"@plattar/plattar-api":
|
|
2940
|
+
},{"@plattar/plattar-api":45}],16:[function(require,module,exports){
|
|
2787
2941
|
"use strict";
|
|
2788
2942
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2789
2943
|
exports.Util = void 0;
|
|
@@ -2881,12 +3035,12 @@ class Util {
|
|
|
2881
3035
|
}
|
|
2882
3036
|
exports.Util = Util;
|
|
2883
3037
|
|
|
2884
|
-
},{}],
|
|
3038
|
+
},{}],17:[function(require,module,exports){
|
|
2885
3039
|
"use strict";
|
|
2886
3040
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2887
|
-
exports.default = "1.
|
|
3041
|
+
exports.default = "1.169.1";
|
|
2888
3042
|
|
|
2889
|
-
},{}],
|
|
3043
|
+
},{}],18:[function(require,module,exports){
|
|
2890
3044
|
"use strict";
|
|
2891
3045
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2892
3046
|
exports.ARViewer = void 0;
|
|
@@ -2903,7 +3057,7 @@ class ARViewer {
|
|
|
2903
3057
|
}
|
|
2904
3058
|
exports.ARViewer = ARViewer;
|
|
2905
3059
|
|
|
2906
|
-
},{}],
|
|
3060
|
+
},{}],19:[function(require,module,exports){
|
|
2907
3061
|
"use strict";
|
|
2908
3062
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2909
3063
|
const ar_viewer_1 = require("./ar-viewer");
|
|
@@ -2944,7 +3098,7 @@ class QuicklookViewer extends ar_viewer_1.ARViewer {
|
|
|
2944
3098
|
}
|
|
2945
3099
|
exports.default = QuicklookViewer;
|
|
2946
3100
|
|
|
2947
|
-
},{"./ar-viewer":
|
|
3101
|
+
},{"./ar-viewer":18}],20:[function(require,module,exports){
|
|
2948
3102
|
"use strict";
|
|
2949
3103
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2950
3104
|
const ar_viewer_1 = require("./ar-viewer");
|
|
@@ -2971,7 +3125,7 @@ class RealityViewer extends ar_viewer_1.ARViewer {
|
|
|
2971
3125
|
}
|
|
2972
3126
|
exports.default = RealityViewer;
|
|
2973
3127
|
|
|
2974
|
-
},{"./ar-viewer":
|
|
3128
|
+
},{"./ar-viewer":18}],21:[function(require,module,exports){
|
|
2975
3129
|
"use strict";
|
|
2976
3130
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2977
3131
|
const ar_viewer_1 = require("./ar-viewer");
|
|
@@ -3010,7 +3164,7 @@ class SceneViewer extends ar_viewer_1.ARViewer {
|
|
|
3010
3164
|
}
|
|
3011
3165
|
exports.default = SceneViewer;
|
|
3012
3166
|
|
|
3013
|
-
},{"./ar-viewer":
|
|
3167
|
+
},{"./ar-viewer":18}],22:[function(require,module,exports){
|
|
3014
3168
|
"use strict";
|
|
3015
3169
|
const Messenger = require("./messenger/messenger.js");
|
|
3016
3170
|
const Memory = require("./memory/memory.js");
|
|
@@ -3044,7 +3198,7 @@ module.exports = {
|
|
|
3044
3198
|
memory: GlobalEventHandler.instance().memoryInstance,
|
|
3045
3199
|
version: Version
|
|
3046
3200
|
}
|
|
3047
|
-
},{"./memory/memory.js":
|
|
3201
|
+
},{"./memory/memory.js":23,"./messenger/global-event-handler.js":31,"./messenger/messenger.js":32,"./version":37}],23:[function(require,module,exports){
|
|
3048
3202
|
const PermanentMemory = require("./permanent-memory");
|
|
3049
3203
|
const TemporaryMemory = require("./temporary-memory");
|
|
3050
3204
|
|
|
@@ -3078,7 +3232,7 @@ class Memory {
|
|
|
3078
3232
|
}
|
|
3079
3233
|
|
|
3080
3234
|
module.exports = Memory;
|
|
3081
|
-
},{"./permanent-memory":
|
|
3235
|
+
},{"./permanent-memory":24,"./temporary-memory":25}],24:[function(require,module,exports){
|
|
3082
3236
|
const WrappedValue = require("./wrapped-value");
|
|
3083
3237
|
|
|
3084
3238
|
class PermanentMemory {
|
|
@@ -3147,7 +3301,7 @@ class PermanentMemory {
|
|
|
3147
3301
|
}
|
|
3148
3302
|
|
|
3149
3303
|
module.exports = PermanentMemory;
|
|
3150
|
-
},{"./wrapped-value":
|
|
3304
|
+
},{"./wrapped-value":26}],25:[function(require,module,exports){
|
|
3151
3305
|
const WrappedValue = require("./wrapped-value");
|
|
3152
3306
|
|
|
3153
3307
|
class TemporaryMemory {
|
|
@@ -3204,7 +3358,7 @@ class TemporaryMemory {
|
|
|
3204
3358
|
}
|
|
3205
3359
|
|
|
3206
3360
|
module.exports = TemporaryMemory;
|
|
3207
|
-
},{"./wrapped-value":
|
|
3361
|
+
},{"./wrapped-value":26}],26:[function(require,module,exports){
|
|
3208
3362
|
/**
|
|
3209
3363
|
* WrappedValue represents a generic value type with a callback function
|
|
3210
3364
|
* for when the value has changed
|
|
@@ -3316,7 +3470,7 @@ class WrappedValue {
|
|
|
3316
3470
|
}
|
|
3317
3471
|
|
|
3318
3472
|
module.exports = WrappedValue;
|
|
3319
|
-
},{}],
|
|
3473
|
+
},{}],27:[function(require,module,exports){
|
|
3320
3474
|
/**
|
|
3321
3475
|
* Broadcaster is used to call functions in multiple contexts at the
|
|
3322
3476
|
* same time. This can be useful without having to handle complex logic
|
|
@@ -3369,7 +3523,7 @@ class Broadcaster {
|
|
|
3369
3523
|
}
|
|
3370
3524
|
|
|
3371
3525
|
module.exports = Broadcaster;
|
|
3372
|
-
},{}],
|
|
3526
|
+
},{}],28:[function(require,module,exports){
|
|
3373
3527
|
const WrappedFunction = require("./wrapped-local-function");
|
|
3374
3528
|
|
|
3375
3529
|
class CurrentFunctionList {
|
|
@@ -3420,7 +3574,7 @@ class CurrentFunctionList {
|
|
|
3420
3574
|
}
|
|
3421
3575
|
|
|
3422
3576
|
module.exports = CurrentFunctionList;
|
|
3423
|
-
},{"./wrapped-local-function":
|
|
3577
|
+
},{"./wrapped-local-function":29}],29:[function(require,module,exports){
|
|
3424
3578
|
const Util = require("../util/util.js");
|
|
3425
3579
|
|
|
3426
3580
|
/**
|
|
@@ -3507,7 +3661,7 @@ class WrappedLocalFunction {
|
|
|
3507
3661
|
}
|
|
3508
3662
|
|
|
3509
3663
|
module.exports = WrappedLocalFunction;
|
|
3510
|
-
},{"../util/util.js":
|
|
3664
|
+
},{"../util/util.js":36}],30:[function(require,module,exports){
|
|
3511
3665
|
const Util = require("./util/util");
|
|
3512
3666
|
|
|
3513
3667
|
class FunctionObserver {
|
|
@@ -3595,7 +3749,7 @@ class FunctionObserver {
|
|
|
3595
3749
|
}
|
|
3596
3750
|
|
|
3597
3751
|
module.exports = FunctionObserver;
|
|
3598
|
-
},{"./util/util":
|
|
3752
|
+
},{"./util/util":36}],31:[function(require,module,exports){
|
|
3599
3753
|
const RemoteInterface = require("./remote-interface.js");
|
|
3600
3754
|
|
|
3601
3755
|
/**
|
|
@@ -3680,7 +3834,7 @@ GlobalEventHandler.instance = () => {
|
|
|
3680
3834
|
};
|
|
3681
3835
|
|
|
3682
3836
|
module.exports = GlobalEventHandler;
|
|
3683
|
-
},{"./remote-interface.js":
|
|
3837
|
+
},{"./remote-interface.js":33}],32:[function(require,module,exports){
|
|
3684
3838
|
const CurrentFunctionList = require("./current/current-function-list");
|
|
3685
3839
|
const RemoteInterface = require("./remote-interface");
|
|
3686
3840
|
const RemoteFunctionList = require("./remote/remote-function-list");
|
|
@@ -3992,7 +4146,7 @@ class Messenger {
|
|
|
3992
4146
|
}
|
|
3993
4147
|
|
|
3994
4148
|
module.exports = Messenger;
|
|
3995
|
-
},{"./broadcaster.js":
|
|
4149
|
+
},{"./broadcaster.js":27,"./current/current-function-list":28,"./function-observer.js":30,"./global-event-handler.js":31,"./remote-interface":33,"./remote/remote-function-list":34,"./util/util.js":36}],33:[function(require,module,exports){
|
|
3996
4150
|
/**
|
|
3997
4151
|
* Provides a single useful interface for performing remote function calls
|
|
3998
4152
|
*/
|
|
@@ -4051,7 +4205,7 @@ class RemoteInterface {
|
|
|
4051
4205
|
}
|
|
4052
4206
|
|
|
4053
4207
|
module.exports = RemoteInterface;
|
|
4054
|
-
},{}],
|
|
4208
|
+
},{}],34:[function(require,module,exports){
|
|
4055
4209
|
const WrappedFunction = require("./wrapped-remote-function");
|
|
4056
4210
|
|
|
4057
4211
|
class RemoteFunctionList {
|
|
@@ -4131,7 +4285,7 @@ class RemoteFunctionList {
|
|
|
4131
4285
|
}
|
|
4132
4286
|
|
|
4133
4287
|
module.exports = RemoteFunctionList;
|
|
4134
|
-
},{"./wrapped-remote-function":
|
|
4288
|
+
},{"./wrapped-remote-function":35}],35:[function(require,module,exports){
|
|
4135
4289
|
const Util = require("../util/util.js");
|
|
4136
4290
|
const GlobalEventHandler = require("../global-event-handler.js");
|
|
4137
4291
|
|
|
@@ -4234,7 +4388,7 @@ class WrappedRemoteFunction {
|
|
|
4234
4388
|
}
|
|
4235
4389
|
|
|
4236
4390
|
module.exports = WrappedRemoteFunction;
|
|
4237
|
-
},{"../global-event-handler.js":
|
|
4391
|
+
},{"../global-event-handler.js":31,"../util/util.js":36}],36:[function(require,module,exports){
|
|
4238
4392
|
class Util {
|
|
4239
4393
|
|
|
4240
4394
|
/**
|
|
@@ -4267,10 +4421,10 @@ class Util {
|
|
|
4267
4421
|
}
|
|
4268
4422
|
|
|
4269
4423
|
module.exports = Util;
|
|
4270
|
-
},{}],
|
|
4424
|
+
},{}],37:[function(require,module,exports){
|
|
4271
4425
|
module.exports = "1.153.3";
|
|
4272
4426
|
|
|
4273
|
-
},{}],
|
|
4427
|
+
},{}],38:[function(require,module,exports){
|
|
4274
4428
|
"use strict";
|
|
4275
4429
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4276
4430
|
exports.AnalyticsData = void 0;
|
|
@@ -4323,7 +4477,7 @@ class AnalyticsData {
|
|
|
4323
4477
|
}
|
|
4324
4478
|
exports.AnalyticsData = AnalyticsData;
|
|
4325
4479
|
|
|
4326
|
-
},{"../util/util":
|
|
4480
|
+
},{"../util/util":43}],39:[function(require,module,exports){
|
|
4327
4481
|
"use strict";
|
|
4328
4482
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4329
4483
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -4422,7 +4576,7 @@ class Analytics {
|
|
|
4422
4576
|
}
|
|
4423
4577
|
exports.Analytics = Analytics;
|
|
4424
4578
|
|
|
4425
|
-
},{"../util/basic-http":
|
|
4579
|
+
},{"../util/basic-http":42,"./analytics-data":38,"./google/google-analytics":40}],40:[function(require,module,exports){
|
|
4426
4580
|
"use strict";
|
|
4427
4581
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4428
4582
|
exports.GoogleAnalytics = void 0;
|
|
@@ -4494,7 +4648,7 @@ class GoogleAnalytics {
|
|
|
4494
4648
|
}
|
|
4495
4649
|
exports.GoogleAnalytics = GoogleAnalytics;
|
|
4496
4650
|
|
|
4497
|
-
},{}],
|
|
4651
|
+
},{}],41:[function(require,module,exports){
|
|
4498
4652
|
"use strict";
|
|
4499
4653
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4500
4654
|
if (k2 === undefined) k2 = k;
|
|
@@ -4532,7 +4686,7 @@ Object.defineProperty(exports, "AnalyticsData", { enumerable: true, get: functio
|
|
|
4532
4686
|
const version_1 = __importDefault(require("./version"));
|
|
4533
4687
|
console.log("using @plattar/plattar-analytics v" + version_1.default);
|
|
4534
4688
|
|
|
4535
|
-
},{"./analytics/analytics":
|
|
4689
|
+
},{"./analytics/analytics":39,"./analytics/analytics-data":38,"./version":44}],42:[function(require,module,exports){
|
|
4536
4690
|
"use strict";
|
|
4537
4691
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4538
4692
|
/**
|
|
@@ -4598,7 +4752,7 @@ class BasicHTTP {
|
|
|
4598
4752
|
}
|
|
4599
4753
|
exports.default = BasicHTTP;
|
|
4600
4754
|
|
|
4601
|
-
},{}],
|
|
4755
|
+
},{}],43:[function(require,module,exports){
|
|
4602
4756
|
"use strict";
|
|
4603
4757
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4604
4758
|
exports.Util = void 0;
|
|
@@ -4624,12 +4778,12 @@ class Util {
|
|
|
4624
4778
|
}
|
|
4625
4779
|
exports.Util = Util;
|
|
4626
4780
|
|
|
4627
|
-
},{}],
|
|
4781
|
+
},{}],44:[function(require,module,exports){
|
|
4628
4782
|
"use strict";
|
|
4629
4783
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4630
4784
|
exports.default = "1.152.2";
|
|
4631
4785
|
|
|
4632
|
-
},{}],
|
|
4786
|
+
},{}],45:[function(require,module,exports){
|
|
4633
4787
|
"use strict";
|
|
4634
4788
|
const Server = require("./server/plattar-server.js");
|
|
4635
4789
|
const Util = require("./util/plattar-util.js");
|
|
@@ -4784,7 +4938,7 @@ module.exports = {
|
|
|
4784
4938
|
version: Version
|
|
4785
4939
|
};
|
|
4786
4940
|
|
|
4787
|
-
},{"./server/plattar-server.js":
|
|
4941
|
+
},{"./server/plattar-server.js":47,"./types/application.js":48,"./types/content-pipeline/brief.js":49,"./types/content-pipeline/comment-brief.js":50,"./types/content-pipeline/comment-quote.js":51,"./types/content-pipeline/comment-solution.js":52,"./types/content-pipeline/folder.js":53,"./types/content-pipeline/pipeline-user.js":54,"./types/content-pipeline/quote.js":55,"./types/content-pipeline/rating.js":56,"./types/content-pipeline/solution.js":57,"./types/file/file-audio.js":58,"./types/file/file-base.js":59,"./types/file/file-image.js":60,"./types/file/file-model.js":61,"./types/file/file-script.js":62,"./types/file/file-video.js":63,"./types/misc/application-build.js":67,"./types/misc/asset-library.js":68,"./types/misc/async-job.js":69,"./types/misc/script-event.js":70,"./types/misc/tag.js":71,"./types/page/card-base.js":72,"./types/page/card-button.js":73,"./types/page/card-html.js":74,"./types/page/card-iframe.js":75,"./types/page/card-image.js":76,"./types/page/card-map.js":77,"./types/page/card-paragraph.js":78,"./types/page/card-row.js":79,"./types/page/card-slider.js":80,"./types/page/card-title.js":81,"./types/page/card-video.js":82,"./types/page/card-youtube.js":83,"./types/page/page.js":84,"./types/product/product-annotation.js":85,"./types/product/product-base.js":86,"./types/product/product-variation.js":87,"./types/product/product.js":88,"./types/scene/scene-annotation.js":89,"./types/scene/scene-audio.js":90,"./types/scene/scene-base.js":91,"./types/scene/scene-button.js":92,"./types/scene/scene-camera.js":93,"./types/scene/scene-carousel.js":94,"./types/scene/scene-image.js":95,"./types/scene/scene-model.js":96,"./types/scene/scene-panorama.js":97,"./types/scene/scene-poller.js":98,"./types/scene/scene-product.js":99,"./types/scene/scene-script.js":100,"./types/scene/scene-shadow.js":101,"./types/scene/scene-video.js":102,"./types/scene/scene-volumetric.js":103,"./types/scene/scene-youtube.js":104,"./types/scene/scene.js":105,"./types/trigger/trigger-image.js":106,"./util/plattar-util.js":107,"./version":108}],46:[function(require,module,exports){
|
|
4788
4942
|
const fetch = require("node-fetch");
|
|
4789
4943
|
|
|
4790
4944
|
class PlattarQuery {
|
|
@@ -5276,7 +5430,7 @@ PlattarQuery._DeleteGlobalCachedObject = (obj) => {
|
|
|
5276
5430
|
};
|
|
5277
5431
|
|
|
5278
5432
|
module.exports = PlattarQuery;
|
|
5279
|
-
},{"../util/plattar-util.js":
|
|
5433
|
+
},{"../util/plattar-util.js":107,"node-fetch":133}],47:[function(require,module,exports){
|
|
5280
5434
|
(function (process){(function (){
|
|
5281
5435
|
const fetch = require("node-fetch");
|
|
5282
5436
|
|
|
@@ -5501,7 +5655,7 @@ PlattarServer.location = () => {
|
|
|
5501
5655
|
|
|
5502
5656
|
module.exports = PlattarServer;
|
|
5503
5657
|
}).call(this)}).call(this,require('_process'))
|
|
5504
|
-
},{"_process":
|
|
5658
|
+
},{"_process":135,"node-fetch":133}],48:[function(require,module,exports){
|
|
5505
5659
|
const PlattarBase = require("./interfaces/plattar-base.js");
|
|
5506
5660
|
|
|
5507
5661
|
class Application extends PlattarBase {
|
|
@@ -5511,7 +5665,7 @@ class Application extends PlattarBase {
|
|
|
5511
5665
|
}
|
|
5512
5666
|
|
|
5513
5667
|
module.exports = Application;
|
|
5514
|
-
},{"./interfaces/plattar-base.js":
|
|
5668
|
+
},{"./interfaces/plattar-base.js":64}],49:[function(require,module,exports){
|
|
5515
5669
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
5516
5670
|
|
|
5517
5671
|
class Brief extends PlattarBase {
|
|
@@ -5521,7 +5675,7 @@ class Brief extends PlattarBase {
|
|
|
5521
5675
|
}
|
|
5522
5676
|
|
|
5523
5677
|
module.exports = Brief;
|
|
5524
|
-
},{"../interfaces/plattar-base":
|
|
5678
|
+
},{"../interfaces/plattar-base":64}],50:[function(require,module,exports){
|
|
5525
5679
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
5526
5680
|
|
|
5527
5681
|
class CommentBrief extends PlattarBase {
|
|
@@ -5531,7 +5685,7 @@ class CommentBrief extends PlattarBase {
|
|
|
5531
5685
|
}
|
|
5532
5686
|
|
|
5533
5687
|
module.exports = CommentBrief;
|
|
5534
|
-
},{"../interfaces/plattar-base":
|
|
5688
|
+
},{"../interfaces/plattar-base":64}],51:[function(require,module,exports){
|
|
5535
5689
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
5536
5690
|
|
|
5537
5691
|
class CommentQuote extends PlattarBase {
|
|
@@ -5541,7 +5695,7 @@ class CommentQuote extends PlattarBase {
|
|
|
5541
5695
|
}
|
|
5542
5696
|
|
|
5543
5697
|
module.exports = CommentQuote;
|
|
5544
|
-
},{"../interfaces/plattar-base":
|
|
5698
|
+
},{"../interfaces/plattar-base":64}],52:[function(require,module,exports){
|
|
5545
5699
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
5546
5700
|
|
|
5547
5701
|
class CommentSolution extends PlattarBase {
|
|
@@ -5551,7 +5705,7 @@ class CommentSolution extends PlattarBase {
|
|
|
5551
5705
|
}
|
|
5552
5706
|
|
|
5553
5707
|
module.exports = CommentSolution;
|
|
5554
|
-
},{"../interfaces/plattar-base":
|
|
5708
|
+
},{"../interfaces/plattar-base":64}],53:[function(require,module,exports){
|
|
5555
5709
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
5556
5710
|
|
|
5557
5711
|
class Folder extends PlattarBase {
|
|
@@ -5561,7 +5715,7 @@ class Folder extends PlattarBase {
|
|
|
5561
5715
|
}
|
|
5562
5716
|
|
|
5563
5717
|
module.exports = Folder;
|
|
5564
|
-
},{"../interfaces/plattar-base":
|
|
5718
|
+
},{"../interfaces/plattar-base":64}],54:[function(require,module,exports){
|
|
5565
5719
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
5566
5720
|
|
|
5567
5721
|
class PipelineUser extends PlattarBase {
|
|
@@ -5571,7 +5725,7 @@ class PipelineUser extends PlattarBase {
|
|
|
5571
5725
|
}
|
|
5572
5726
|
|
|
5573
5727
|
module.exports = PipelineUser;
|
|
5574
|
-
},{"../interfaces/plattar-base":
|
|
5728
|
+
},{"../interfaces/plattar-base":64}],55:[function(require,module,exports){
|
|
5575
5729
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
5576
5730
|
|
|
5577
5731
|
class Quote extends PlattarBase {
|
|
@@ -5581,7 +5735,7 @@ class Quote extends PlattarBase {
|
|
|
5581
5735
|
}
|
|
5582
5736
|
|
|
5583
5737
|
module.exports = Quote;
|
|
5584
|
-
},{"../interfaces/plattar-base":
|
|
5738
|
+
},{"../interfaces/plattar-base":64}],56:[function(require,module,exports){
|
|
5585
5739
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
5586
5740
|
|
|
5587
5741
|
class Rating extends PlattarBase {
|
|
@@ -5591,7 +5745,7 @@ class Rating extends PlattarBase {
|
|
|
5591
5745
|
}
|
|
5592
5746
|
|
|
5593
5747
|
module.exports = Rating;
|
|
5594
|
-
},{"../interfaces/plattar-base":
|
|
5748
|
+
},{"../interfaces/plattar-base":64}],57:[function(require,module,exports){
|
|
5595
5749
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
5596
5750
|
|
|
5597
5751
|
class Solution extends PlattarBase {
|
|
@@ -5601,7 +5755,7 @@ class Solution extends PlattarBase {
|
|
|
5601
5755
|
}
|
|
5602
5756
|
|
|
5603
5757
|
module.exports = Solution;
|
|
5604
|
-
},{"../interfaces/plattar-base":
|
|
5758
|
+
},{"../interfaces/plattar-base":64}],58:[function(require,module,exports){
|
|
5605
5759
|
const FileBase = require("./file-base.js");
|
|
5606
5760
|
|
|
5607
5761
|
class FileAudio extends FileBase {
|
|
@@ -5611,7 +5765,7 @@ class FileAudio extends FileBase {
|
|
|
5611
5765
|
}
|
|
5612
5766
|
|
|
5613
5767
|
module.exports = FileAudio;
|
|
5614
|
-
},{"./file-base.js":
|
|
5768
|
+
},{"./file-base.js":59}],59:[function(require,module,exports){
|
|
5615
5769
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
5616
5770
|
const Server = require("../../server/plattar-server.js");
|
|
5617
5771
|
|
|
@@ -5671,7 +5825,7 @@ class FileBase extends PlattarBase {
|
|
|
5671
5825
|
}
|
|
5672
5826
|
|
|
5673
5827
|
module.exports = FileBase;
|
|
5674
|
-
},{"../../server/plattar-server.js":
|
|
5828
|
+
},{"../../server/plattar-server.js":47,"../interfaces/plattar-base.js":64,"./file-audio.js":58,"./file-image.js":60,"./file-model.js":61,"./file-video.js":63}],60:[function(require,module,exports){
|
|
5675
5829
|
const FileBase = require("./file-base.js");
|
|
5676
5830
|
|
|
5677
5831
|
class FileImage extends FileBase {
|
|
@@ -5681,7 +5835,7 @@ class FileImage extends FileBase {
|
|
|
5681
5835
|
}
|
|
5682
5836
|
|
|
5683
5837
|
module.exports = FileImage;
|
|
5684
|
-
},{"./file-base.js":
|
|
5838
|
+
},{"./file-base.js":59}],61:[function(require,module,exports){
|
|
5685
5839
|
const FileBase = require("./file-base.js");
|
|
5686
5840
|
|
|
5687
5841
|
class FileModel extends FileBase {
|
|
@@ -5691,7 +5845,7 @@ class FileModel extends FileBase {
|
|
|
5691
5845
|
}
|
|
5692
5846
|
|
|
5693
5847
|
module.exports = FileModel;
|
|
5694
|
-
},{"./file-base.js":
|
|
5848
|
+
},{"./file-base.js":59}],62:[function(require,module,exports){
|
|
5695
5849
|
const FileBase = require("./file-base.js");
|
|
5696
5850
|
|
|
5697
5851
|
class FileScript extends FileBase {
|
|
@@ -5701,7 +5855,7 @@ class FileScript extends FileBase {
|
|
|
5701
5855
|
}
|
|
5702
5856
|
|
|
5703
5857
|
module.exports = FileScript;
|
|
5704
|
-
},{"./file-base.js":
|
|
5858
|
+
},{"./file-base.js":59}],63:[function(require,module,exports){
|
|
5705
5859
|
const FileBase = require("./file-base.js");
|
|
5706
5860
|
|
|
5707
5861
|
class FileVideo extends FileBase {
|
|
@@ -5711,7 +5865,7 @@ class FileVideo extends FileBase {
|
|
|
5711
5865
|
}
|
|
5712
5866
|
|
|
5713
5867
|
module.exports = FileVideo;
|
|
5714
|
-
},{"./file-base.js":
|
|
5868
|
+
},{"./file-base.js":59}],64:[function(require,module,exports){
|
|
5715
5869
|
const PlattarObject = require("./plattar-object.js");
|
|
5716
5870
|
const Server = require("../../server/plattar-server.js");
|
|
5717
5871
|
|
|
@@ -5726,7 +5880,7 @@ class PlattarBase extends PlattarObject {
|
|
|
5726
5880
|
}
|
|
5727
5881
|
|
|
5728
5882
|
module.exports = PlattarBase;
|
|
5729
|
-
},{"../../server/plattar-server.js":
|
|
5883
|
+
},{"../../server/plattar-server.js":47,"./plattar-object.js":66}],65:[function(require,module,exports){
|
|
5730
5884
|
/**
|
|
5731
5885
|
* Handles the list of relationships for the provided object
|
|
5732
5886
|
*/
|
|
@@ -5847,7 +6001,7 @@ class PlattarObjectRelations {
|
|
|
5847
6001
|
}
|
|
5848
6002
|
|
|
5849
6003
|
module.exports = PlattarObjectRelations;
|
|
5850
|
-
},{"../../util/plattar-util.js":
|
|
6004
|
+
},{"../../util/plattar-util.js":107}],66:[function(require,module,exports){
|
|
5851
6005
|
const PlattarQuery = require("../../server/plattar-query.js");
|
|
5852
6006
|
const PlattarObjectRelations = require("./plattar-object-relations.js");
|
|
5853
6007
|
|
|
@@ -5990,7 +6144,7 @@ class PlattarObject {
|
|
|
5990
6144
|
}
|
|
5991
6145
|
|
|
5992
6146
|
module.exports = PlattarObject;
|
|
5993
|
-
},{"../../server/plattar-query.js":
|
|
6147
|
+
},{"../../server/plattar-query.js":46,"./plattar-object-relations.js":65}],67:[function(require,module,exports){
|
|
5994
6148
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
5995
6149
|
|
|
5996
6150
|
class ApplicationBuild extends PlattarBase {
|
|
@@ -6000,7 +6154,7 @@ class ApplicationBuild extends PlattarBase {
|
|
|
6000
6154
|
}
|
|
6001
6155
|
|
|
6002
6156
|
module.exports = ApplicationBuild;
|
|
6003
|
-
},{"../interfaces/plattar-base.js":
|
|
6157
|
+
},{"../interfaces/plattar-base.js":64}],68:[function(require,module,exports){
|
|
6004
6158
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6005
6159
|
|
|
6006
6160
|
class AssetLibrary extends PlattarBase {
|
|
@@ -6010,7 +6164,7 @@ class AssetLibrary extends PlattarBase {
|
|
|
6010
6164
|
}
|
|
6011
6165
|
|
|
6012
6166
|
module.exports = AssetLibrary;
|
|
6013
|
-
},{"../interfaces/plattar-base.js":
|
|
6167
|
+
},{"../interfaces/plattar-base.js":64}],69:[function(require,module,exports){
|
|
6014
6168
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6015
6169
|
|
|
6016
6170
|
class AsyncJob extends PlattarBase {
|
|
@@ -6024,7 +6178,7 @@ class AsyncJob extends PlattarBase {
|
|
|
6024
6178
|
}
|
|
6025
6179
|
|
|
6026
6180
|
module.exports = AsyncJob;
|
|
6027
|
-
},{"../interfaces/plattar-base.js":
|
|
6181
|
+
},{"../interfaces/plattar-base.js":64}],70:[function(require,module,exports){
|
|
6028
6182
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6029
6183
|
|
|
6030
6184
|
class ScriptEvent extends PlattarBase {
|
|
@@ -6034,7 +6188,7 @@ class ScriptEvent extends PlattarBase {
|
|
|
6034
6188
|
}
|
|
6035
6189
|
|
|
6036
6190
|
module.exports = ScriptEvent;
|
|
6037
|
-
},{"../interfaces/plattar-base.js":
|
|
6191
|
+
},{"../interfaces/plattar-base.js":64}],71:[function(require,module,exports){
|
|
6038
6192
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6039
6193
|
|
|
6040
6194
|
class Tag extends PlattarBase {
|
|
@@ -6044,7 +6198,7 @@ class Tag extends PlattarBase {
|
|
|
6044
6198
|
}
|
|
6045
6199
|
|
|
6046
6200
|
module.exports = Tag;
|
|
6047
|
-
},{"../interfaces/plattar-base.js":
|
|
6201
|
+
},{"../interfaces/plattar-base.js":64}],72:[function(require,module,exports){
|
|
6048
6202
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6049
6203
|
const Server = require("../../server/plattar-server.js");
|
|
6050
6204
|
|
|
@@ -6075,7 +6229,7 @@ class CardBase extends PlattarBase {
|
|
|
6075
6229
|
}
|
|
6076
6230
|
|
|
6077
6231
|
module.exports = CardBase;
|
|
6078
|
-
},{"../../server/plattar-server.js":
|
|
6232
|
+
},{"../../server/plattar-server.js":47,"../interfaces/plattar-base.js":64,"./card-button.js":73,"./card-html.js":74,"./card-iframe.js":75,"./card-image.js":76,"./card-map.js":77,"./card-paragraph.js":78,"./card-row.js":79,"./card-slider.js":80,"./card-title.js":81,"./card-video.js":82,"./card-youtube.js":83}],73:[function(require,module,exports){
|
|
6079
6233
|
const CardBase = require("./card-base.js");
|
|
6080
6234
|
|
|
6081
6235
|
class CardButton extends CardBase {
|
|
@@ -6085,7 +6239,7 @@ class CardButton extends CardBase {
|
|
|
6085
6239
|
}
|
|
6086
6240
|
|
|
6087
6241
|
module.exports = CardButton;
|
|
6088
|
-
},{"./card-base.js":
|
|
6242
|
+
},{"./card-base.js":72}],74:[function(require,module,exports){
|
|
6089
6243
|
const CardBase = require("./card-base.js");
|
|
6090
6244
|
|
|
6091
6245
|
class CardHTML extends CardBase {
|
|
@@ -6095,7 +6249,7 @@ class CardHTML extends CardBase {
|
|
|
6095
6249
|
}
|
|
6096
6250
|
|
|
6097
6251
|
module.exports = CardHTML;
|
|
6098
|
-
},{"./card-base.js":
|
|
6252
|
+
},{"./card-base.js":72}],75:[function(require,module,exports){
|
|
6099
6253
|
const CardBase = require("./card-base.js");
|
|
6100
6254
|
|
|
6101
6255
|
class CardIFrame extends CardBase {
|
|
@@ -6105,7 +6259,7 @@ class CardIFrame extends CardBase {
|
|
|
6105
6259
|
}
|
|
6106
6260
|
|
|
6107
6261
|
module.exports = CardIFrame;
|
|
6108
|
-
},{"./card-base.js":
|
|
6262
|
+
},{"./card-base.js":72}],76:[function(require,module,exports){
|
|
6109
6263
|
const CardBase = require("./card-base.js");
|
|
6110
6264
|
|
|
6111
6265
|
class CardImage extends CardBase {
|
|
@@ -6115,7 +6269,7 @@ class CardImage extends CardBase {
|
|
|
6115
6269
|
}
|
|
6116
6270
|
|
|
6117
6271
|
module.exports = CardImage;
|
|
6118
|
-
},{"./card-base.js":
|
|
6272
|
+
},{"./card-base.js":72}],77:[function(require,module,exports){
|
|
6119
6273
|
const CardBase = require("./card-base.js");
|
|
6120
6274
|
|
|
6121
6275
|
class CardMap extends CardBase {
|
|
@@ -6125,7 +6279,7 @@ class CardMap extends CardBase {
|
|
|
6125
6279
|
}
|
|
6126
6280
|
|
|
6127
6281
|
module.exports = CardMap;
|
|
6128
|
-
},{"./card-base.js":
|
|
6282
|
+
},{"./card-base.js":72}],78:[function(require,module,exports){
|
|
6129
6283
|
const CardBase = require("./card-base.js");
|
|
6130
6284
|
|
|
6131
6285
|
class CardParagraph extends CardBase {
|
|
@@ -6135,7 +6289,7 @@ class CardParagraph extends CardBase {
|
|
|
6135
6289
|
}
|
|
6136
6290
|
|
|
6137
6291
|
module.exports = CardParagraph;
|
|
6138
|
-
},{"./card-base.js":
|
|
6292
|
+
},{"./card-base.js":72}],79:[function(require,module,exports){
|
|
6139
6293
|
const CardBase = require("./card-base.js");
|
|
6140
6294
|
|
|
6141
6295
|
class CardRow extends CardBase {
|
|
@@ -6145,7 +6299,7 @@ class CardRow extends CardBase {
|
|
|
6145
6299
|
}
|
|
6146
6300
|
|
|
6147
6301
|
module.exports = CardRow;
|
|
6148
|
-
},{"./card-base.js":
|
|
6302
|
+
},{"./card-base.js":72}],80:[function(require,module,exports){
|
|
6149
6303
|
const CardBase = require("./card-base.js");
|
|
6150
6304
|
|
|
6151
6305
|
class CardSlider extends CardBase {
|
|
@@ -6155,7 +6309,7 @@ class CardSlider extends CardBase {
|
|
|
6155
6309
|
}
|
|
6156
6310
|
|
|
6157
6311
|
module.exports = CardSlider;
|
|
6158
|
-
},{"./card-base.js":
|
|
6312
|
+
},{"./card-base.js":72}],81:[function(require,module,exports){
|
|
6159
6313
|
const CardBase = require("./card-base.js");
|
|
6160
6314
|
|
|
6161
6315
|
class CardTitle extends CardBase {
|
|
@@ -6165,7 +6319,7 @@ class CardTitle extends CardBase {
|
|
|
6165
6319
|
}
|
|
6166
6320
|
|
|
6167
6321
|
module.exports = CardTitle;
|
|
6168
|
-
},{"./card-base.js":
|
|
6322
|
+
},{"./card-base.js":72}],82:[function(require,module,exports){
|
|
6169
6323
|
const CardBase = require("./card-base.js");
|
|
6170
6324
|
|
|
6171
6325
|
class CardVideo extends CardBase {
|
|
@@ -6175,7 +6329,7 @@ class CardVideo extends CardBase {
|
|
|
6175
6329
|
}
|
|
6176
6330
|
|
|
6177
6331
|
module.exports = CardVideo;
|
|
6178
|
-
},{"./card-base.js":
|
|
6332
|
+
},{"./card-base.js":72}],83:[function(require,module,exports){
|
|
6179
6333
|
const CardBase = require("./card-base.js");
|
|
6180
6334
|
|
|
6181
6335
|
class CardYoutube extends CardBase {
|
|
@@ -6185,7 +6339,7 @@ class CardYoutube extends CardBase {
|
|
|
6185
6339
|
}
|
|
6186
6340
|
|
|
6187
6341
|
module.exports = CardYoutube;
|
|
6188
|
-
},{"./card-base.js":
|
|
6342
|
+
},{"./card-base.js":72}],84:[function(require,module,exports){
|
|
6189
6343
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6190
6344
|
|
|
6191
6345
|
class Page extends PlattarBase {
|
|
@@ -6195,7 +6349,7 @@ class Page extends PlattarBase {
|
|
|
6195
6349
|
}
|
|
6196
6350
|
|
|
6197
6351
|
module.exports = Page;
|
|
6198
|
-
},{"../interfaces/plattar-base.js":
|
|
6352
|
+
},{"../interfaces/plattar-base.js":64}],85:[function(require,module,exports){
|
|
6199
6353
|
const ProductBase = require("./product-base.js");
|
|
6200
6354
|
|
|
6201
6355
|
class ProductAnnotation extends ProductBase {
|
|
@@ -6205,7 +6359,7 @@ class ProductAnnotation extends ProductBase {
|
|
|
6205
6359
|
}
|
|
6206
6360
|
|
|
6207
6361
|
module.exports = ProductAnnotation;
|
|
6208
|
-
},{"./product-base.js":
|
|
6362
|
+
},{"./product-base.js":86}],86:[function(require,module,exports){
|
|
6209
6363
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6210
6364
|
const Server = require("../../server/plattar-server.js");
|
|
6211
6365
|
|
|
@@ -6227,7 +6381,7 @@ class ProductBase extends PlattarBase {
|
|
|
6227
6381
|
}
|
|
6228
6382
|
|
|
6229
6383
|
module.exports = ProductBase;
|
|
6230
|
-
},{"../../server/plattar-server.js":
|
|
6384
|
+
},{"../../server/plattar-server.js":47,"../interfaces/plattar-base.js":64,"./product-annotation.js":85,"./product-variation.js":87}],87:[function(require,module,exports){
|
|
6231
6385
|
const ProductBase = require("./product-base.js");
|
|
6232
6386
|
|
|
6233
6387
|
class ProductVariation extends ProductBase {
|
|
@@ -6237,7 +6391,7 @@ class ProductVariation extends ProductBase {
|
|
|
6237
6391
|
}
|
|
6238
6392
|
|
|
6239
6393
|
module.exports = ProductVariation;
|
|
6240
|
-
},{"./product-base.js":
|
|
6394
|
+
},{"./product-base.js":86}],88:[function(require,module,exports){
|
|
6241
6395
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6242
6396
|
|
|
6243
6397
|
class Product extends PlattarBase {
|
|
@@ -6247,7 +6401,7 @@ class Product extends PlattarBase {
|
|
|
6247
6401
|
}
|
|
6248
6402
|
|
|
6249
6403
|
module.exports = Product;
|
|
6250
|
-
},{"../interfaces/plattar-base.js":
|
|
6404
|
+
},{"../interfaces/plattar-base.js":64}],89:[function(require,module,exports){
|
|
6251
6405
|
const SceneBase = require("./scene-base.js");
|
|
6252
6406
|
|
|
6253
6407
|
class SceneAnnotation extends SceneBase {
|
|
@@ -6257,7 +6411,7 @@ class SceneAnnotation extends SceneBase {
|
|
|
6257
6411
|
}
|
|
6258
6412
|
|
|
6259
6413
|
module.exports = SceneAnnotation;
|
|
6260
|
-
},{"./scene-base.js":
|
|
6414
|
+
},{"./scene-base.js":91}],90:[function(require,module,exports){
|
|
6261
6415
|
const SceneBase = require("./scene-base.js");
|
|
6262
6416
|
|
|
6263
6417
|
class SceneAudio extends SceneBase {
|
|
@@ -6267,7 +6421,7 @@ class SceneAudio extends SceneBase {
|
|
|
6267
6421
|
}
|
|
6268
6422
|
|
|
6269
6423
|
module.exports = SceneAudio;
|
|
6270
|
-
},{"./scene-base.js":
|
|
6424
|
+
},{"./scene-base.js":91}],91:[function(require,module,exports){
|
|
6271
6425
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6272
6426
|
const Server = require("../../server/plattar-server.js");
|
|
6273
6427
|
|
|
@@ -6301,7 +6455,7 @@ class SceneBase extends PlattarBase {
|
|
|
6301
6455
|
}
|
|
6302
6456
|
|
|
6303
6457
|
module.exports = SceneBase;
|
|
6304
|
-
},{"../../server/plattar-server.js":
|
|
6458
|
+
},{"../../server/plattar-server.js":47,"../interfaces/plattar-base.js":64,"./scene-annotation.js":89,"./scene-audio.js":90,"./scene-button.js":92,"./scene-camera.js":93,"./scene-carousel.js":94,"./scene-image.js":95,"./scene-model.js":96,"./scene-panorama.js":97,"./scene-poller.js":98,"./scene-product.js":99,"./scene-shadow.js":101,"./scene-video.js":102,"./scene-volumetric.js":103,"./scene-youtube.js":104}],92:[function(require,module,exports){
|
|
6305
6459
|
const SceneBase = require("./scene-base.js");
|
|
6306
6460
|
|
|
6307
6461
|
class SceneButton extends SceneBase {
|
|
@@ -6311,7 +6465,7 @@ class SceneButton extends SceneBase {
|
|
|
6311
6465
|
}
|
|
6312
6466
|
|
|
6313
6467
|
module.exports = SceneButton;
|
|
6314
|
-
},{"./scene-base.js":
|
|
6468
|
+
},{"./scene-base.js":91}],93:[function(require,module,exports){
|
|
6315
6469
|
const SceneBase = require("./scene-base.js");
|
|
6316
6470
|
|
|
6317
6471
|
class SceneCamera extends SceneBase {
|
|
@@ -6321,7 +6475,7 @@ class SceneCamera extends SceneBase {
|
|
|
6321
6475
|
}
|
|
6322
6476
|
|
|
6323
6477
|
module.exports = SceneCamera;
|
|
6324
|
-
},{"./scene-base.js":
|
|
6478
|
+
},{"./scene-base.js":91}],94:[function(require,module,exports){
|
|
6325
6479
|
const SceneBase = require("./scene-base.js");
|
|
6326
6480
|
|
|
6327
6481
|
class SceneCarousel extends SceneBase {
|
|
@@ -6331,7 +6485,7 @@ class SceneCarousel extends SceneBase {
|
|
|
6331
6485
|
}
|
|
6332
6486
|
|
|
6333
6487
|
module.exports = SceneCarousel;
|
|
6334
|
-
},{"./scene-base.js":
|
|
6488
|
+
},{"./scene-base.js":91}],95:[function(require,module,exports){
|
|
6335
6489
|
const SceneBase = require("./scene-base.js");
|
|
6336
6490
|
|
|
6337
6491
|
class SceneImage extends SceneBase {
|
|
@@ -6341,7 +6495,7 @@ class SceneImage extends SceneBase {
|
|
|
6341
6495
|
}
|
|
6342
6496
|
|
|
6343
6497
|
module.exports = SceneImage;
|
|
6344
|
-
},{"./scene-base.js":
|
|
6498
|
+
},{"./scene-base.js":91}],96:[function(require,module,exports){
|
|
6345
6499
|
const SceneBase = require("./scene-base.js");
|
|
6346
6500
|
|
|
6347
6501
|
class SceneModel extends SceneBase {
|
|
@@ -6351,7 +6505,7 @@ class SceneModel extends SceneBase {
|
|
|
6351
6505
|
}
|
|
6352
6506
|
|
|
6353
6507
|
module.exports = SceneModel;
|
|
6354
|
-
},{"./scene-base.js":
|
|
6508
|
+
},{"./scene-base.js":91}],97:[function(require,module,exports){
|
|
6355
6509
|
const SceneBase = require("./scene-base.js");
|
|
6356
6510
|
|
|
6357
6511
|
class ScenePanorama extends SceneBase {
|
|
@@ -6361,7 +6515,7 @@ class ScenePanorama extends SceneBase {
|
|
|
6361
6515
|
}
|
|
6362
6516
|
|
|
6363
6517
|
module.exports = ScenePanorama;
|
|
6364
|
-
},{"./scene-base.js":
|
|
6518
|
+
},{"./scene-base.js":91}],98:[function(require,module,exports){
|
|
6365
6519
|
const SceneBase = require("./scene-base.js");
|
|
6366
6520
|
|
|
6367
6521
|
class ScenePoller extends SceneBase {
|
|
@@ -6371,7 +6525,7 @@ class ScenePoller extends SceneBase {
|
|
|
6371
6525
|
}
|
|
6372
6526
|
|
|
6373
6527
|
module.exports = ScenePoller;
|
|
6374
|
-
},{"./scene-base.js":
|
|
6528
|
+
},{"./scene-base.js":91}],99:[function(require,module,exports){
|
|
6375
6529
|
const SceneBase = require("./scene-base.js");
|
|
6376
6530
|
|
|
6377
6531
|
class SceneProduct extends SceneBase {
|
|
@@ -6381,7 +6535,7 @@ class SceneProduct extends SceneBase {
|
|
|
6381
6535
|
}
|
|
6382
6536
|
|
|
6383
6537
|
module.exports = SceneProduct;
|
|
6384
|
-
},{"./scene-base.js":
|
|
6538
|
+
},{"./scene-base.js":91}],100:[function(require,module,exports){
|
|
6385
6539
|
const SceneBase = require("./scene-base.js");
|
|
6386
6540
|
|
|
6387
6541
|
class SceneScript extends SceneBase {
|
|
@@ -6391,7 +6545,7 @@ class SceneScript extends SceneBase {
|
|
|
6391
6545
|
}
|
|
6392
6546
|
|
|
6393
6547
|
module.exports = SceneScript;
|
|
6394
|
-
},{"./scene-base.js":
|
|
6548
|
+
},{"./scene-base.js":91}],101:[function(require,module,exports){
|
|
6395
6549
|
const SceneBase = require("./scene-base.js");
|
|
6396
6550
|
|
|
6397
6551
|
class SceneShadow extends SceneBase {
|
|
@@ -6401,7 +6555,7 @@ class SceneShadow extends SceneBase {
|
|
|
6401
6555
|
}
|
|
6402
6556
|
|
|
6403
6557
|
module.exports = SceneShadow;
|
|
6404
|
-
},{"./scene-base.js":
|
|
6558
|
+
},{"./scene-base.js":91}],102:[function(require,module,exports){
|
|
6405
6559
|
const SceneBase = require("./scene-base.js");
|
|
6406
6560
|
|
|
6407
6561
|
class SceneVideo extends SceneBase {
|
|
@@ -6411,7 +6565,7 @@ class SceneVideo extends SceneBase {
|
|
|
6411
6565
|
}
|
|
6412
6566
|
|
|
6413
6567
|
module.exports = SceneVideo;
|
|
6414
|
-
},{"./scene-base.js":
|
|
6568
|
+
},{"./scene-base.js":91}],103:[function(require,module,exports){
|
|
6415
6569
|
const SceneBase = require("./scene-base.js");
|
|
6416
6570
|
|
|
6417
6571
|
class SceneVolumetric extends SceneBase {
|
|
@@ -6421,7 +6575,7 @@ class SceneVolumetric extends SceneBase {
|
|
|
6421
6575
|
}
|
|
6422
6576
|
|
|
6423
6577
|
module.exports = SceneVolumetric;
|
|
6424
|
-
},{"./scene-base.js":
|
|
6578
|
+
},{"./scene-base.js":91}],104:[function(require,module,exports){
|
|
6425
6579
|
const SceneBase = require("./scene-base.js");
|
|
6426
6580
|
|
|
6427
6581
|
class SceneYoutube extends SceneBase {
|
|
@@ -6431,7 +6585,7 @@ class SceneYoutube extends SceneBase {
|
|
|
6431
6585
|
}
|
|
6432
6586
|
|
|
6433
6587
|
module.exports = SceneYoutube;
|
|
6434
|
-
},{"./scene-base.js":
|
|
6588
|
+
},{"./scene-base.js":91}],105:[function(require,module,exports){
|
|
6435
6589
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6436
6590
|
|
|
6437
6591
|
class Scene extends PlattarBase {
|
|
@@ -6441,7 +6595,7 @@ class Scene extends PlattarBase {
|
|
|
6441
6595
|
}
|
|
6442
6596
|
|
|
6443
6597
|
module.exports = Scene;
|
|
6444
|
-
},{"../interfaces/plattar-base.js":
|
|
6598
|
+
},{"../interfaces/plattar-base.js":64}],106:[function(require,module,exports){
|
|
6445
6599
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
6446
6600
|
|
|
6447
6601
|
class TriggerImage extends PlattarBase {
|
|
@@ -6451,7 +6605,7 @@ class TriggerImage extends PlattarBase {
|
|
|
6451
6605
|
}
|
|
6452
6606
|
|
|
6453
6607
|
module.exports = TriggerImage;
|
|
6454
|
-
},{"../interfaces/plattar-base.js":
|
|
6608
|
+
},{"../interfaces/plattar-base.js":64}],107:[function(require,module,exports){
|
|
6455
6609
|
const Application = require("../types/application.js");
|
|
6456
6610
|
|
|
6457
6611
|
// import Scene types and its children
|
|
@@ -6678,10 +6832,10 @@ PlattarUtil.match = (type) => {
|
|
|
6678
6832
|
|
|
6679
6833
|
|
|
6680
6834
|
module.exports = PlattarUtil;
|
|
6681
|
-
},{"../types/application.js":
|
|
6835
|
+
},{"../types/application.js":48,"../types/content-pipeline/brief.js":49,"../types/content-pipeline/comment-brief.js":50,"../types/content-pipeline/comment-quote.js":51,"../types/content-pipeline/comment-solution.js":52,"../types/content-pipeline/folder.js":53,"../types/content-pipeline/pipeline-user.js":54,"../types/content-pipeline/quote.js":55,"../types/content-pipeline/rating.js":56,"../types/content-pipeline/solution.js":57,"../types/file/file-audio.js":58,"../types/file/file-image.js":60,"../types/file/file-model.js":61,"../types/file/file-script.js":62,"../types/file/file-video.js":63,"../types/interfaces/plattar-object.js":66,"../types/misc/application-build.js":67,"../types/misc/asset-library":68,"../types/misc/async-job.js":69,"../types/misc/script-event.js":70,"../types/misc/tag.js":71,"../types/page/card-button.js":73,"../types/page/card-html.js":74,"../types/page/card-iframe.js":75,"../types/page/card-image.js":76,"../types/page/card-map.js":77,"../types/page/card-paragraph.js":78,"../types/page/card-row.js":79,"../types/page/card-slider.js":80,"../types/page/card-title.js":81,"../types/page/card-video.js":82,"../types/page/card-youtube.js":83,"../types/page/page.js":84,"../types/product/product-annotation.js":85,"../types/product/product-variation.js":87,"../types/product/product.js":88,"../types/scene/scene-annotation.js":89,"../types/scene/scene-audio.js":90,"../types/scene/scene-button.js":92,"../types/scene/scene-camera.js":93,"../types/scene/scene-carousel.js":94,"../types/scene/scene-image.js":95,"../types/scene/scene-model.js":96,"../types/scene/scene-panorama.js":97,"../types/scene/scene-poller.js":98,"../types/scene/scene-product.js":99,"../types/scene/scene-script.js":100,"../types/scene/scene-shadow.js":101,"../types/scene/scene-video.js":102,"../types/scene/scene-volumetric.js":103,"../types/scene/scene-youtube.js":104,"../types/scene/scene.js":105,"../types/trigger/trigger-image.js":106}],108:[function(require,module,exports){
|
|
6682
6836
|
module.exports = "1.159.1";
|
|
6683
6837
|
|
|
6684
|
-
},{}],
|
|
6838
|
+
},{}],109:[function(require,module,exports){
|
|
6685
6839
|
const QRCodeStyling = require("qr-code-styling");
|
|
6686
6840
|
const hash = require("object-hash");
|
|
6687
6841
|
|
|
@@ -6972,7 +7126,7 @@ class BaseElement extends HTMLElement {
|
|
|
6972
7126
|
}
|
|
6973
7127
|
|
|
6974
7128
|
module.exports = BaseElement;
|
|
6975
|
-
},{"object-hash":
|
|
7129
|
+
},{"object-hash":134,"qr-code-styling":136}],110:[function(require,module,exports){
|
|
6976
7130
|
const BaseElement = require("./base/base-element.js");
|
|
6977
7131
|
|
|
6978
7132
|
class QRCodeElement extends BaseElement {
|
|
@@ -6982,7 +7136,7 @@ class QRCodeElement extends BaseElement {
|
|
|
6982
7136
|
}
|
|
6983
7137
|
|
|
6984
7138
|
module.exports = QRCodeElement;
|
|
6985
|
-
},{"./base/base-element.js":
|
|
7139
|
+
},{"./base/base-element.js":109}],111:[function(require,module,exports){
|
|
6986
7140
|
"use strict";
|
|
6987
7141
|
const QRCodeElement = require("./elements/qrcode-element.js");
|
|
6988
7142
|
const Version = require("./version");
|
|
@@ -6998,10 +7152,10 @@ console.log("using @plattar/plattar-qrcode v" + Version);
|
|
|
6998
7152
|
module.exports = {
|
|
6999
7153
|
version: Version
|
|
7000
7154
|
};
|
|
7001
|
-
},{"./elements/qrcode-element.js":
|
|
7155
|
+
},{"./elements/qrcode-element.js":110,"./version":112}],112:[function(require,module,exports){
|
|
7002
7156
|
module.exports = "1.165.1";
|
|
7003
7157
|
|
|
7004
|
-
},{}],
|
|
7158
|
+
},{}],113:[function(require,module,exports){
|
|
7005
7159
|
"use strict";
|
|
7006
7160
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7007
7161
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7158,7 +7312,7 @@ class Configurator {
|
|
|
7158
7312
|
}
|
|
7159
7313
|
exports.Configurator = Configurator;
|
|
7160
7314
|
|
|
7161
|
-
},{"./remote-request":
|
|
7315
|
+
},{"./remote-request":115,"@plattar/plattar-api":45,"object-hash":134}],114:[function(require,module,exports){
|
|
7162
7316
|
"use strict";
|
|
7163
7317
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7164
7318
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7222,7 +7376,7 @@ class ModelConverter {
|
|
|
7222
7376
|
}
|
|
7223
7377
|
exports.ModelConverter = ModelConverter;
|
|
7224
7378
|
|
|
7225
|
-
},{"./remote-request":
|
|
7379
|
+
},{"./remote-request":115,"@plattar/plattar-api":45,"object-hash":134}],115:[function(require,module,exports){
|
|
7226
7380
|
"use strict";
|
|
7227
7381
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
7228
7382
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -7290,7 +7444,7 @@ class RemoteRequest {
|
|
|
7290
7444
|
}
|
|
7291
7445
|
exports.RemoteRequest = RemoteRequest;
|
|
7292
7446
|
|
|
7293
|
-
},{"node-fetch":
|
|
7447
|
+
},{"node-fetch":133}],116:[function(require,module,exports){
|
|
7294
7448
|
"use strict";
|
|
7295
7449
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
7296
7450
|
if (k2 === undefined) k2 = k;
|
|
@@ -7328,12 +7482,12 @@ exports.version = __importStar(require("./version"));
|
|
|
7328
7482
|
const version_1 = __importDefault(require("./version"));
|
|
7329
7483
|
console.log("using @plattar/plattar-services v" + version_1.default);
|
|
7330
7484
|
|
|
7331
|
-
},{"./core/configurator":
|
|
7485
|
+
},{"./core/configurator":113,"./core/model-converter":114,"./version":117}],117:[function(require,module,exports){
|
|
7332
7486
|
"use strict";
|
|
7333
7487
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7334
7488
|
exports.default = "1.157.1";
|
|
7335
7489
|
|
|
7336
|
-
},{}],
|
|
7490
|
+
},{}],118:[function(require,module,exports){
|
|
7337
7491
|
const Util = require("../../util/util");
|
|
7338
7492
|
const ElementController = require("../controllers/element-controller");
|
|
7339
7493
|
const { messenger } = require("@plattar/context-messenger");
|
|
@@ -7502,7 +7656,7 @@ class BaseElement extends HTMLElement {
|
|
|
7502
7656
|
}
|
|
7503
7657
|
|
|
7504
7658
|
module.exports = BaseElement;
|
|
7505
|
-
},{"../../util/util":
|
|
7659
|
+
},{"../../util/util":131,"../controllers/element-controller":120,"@plattar/context-messenger":22}],119:[function(require,module,exports){
|
|
7506
7660
|
const BaseElement = require("./base/base-element.js");
|
|
7507
7661
|
|
|
7508
7662
|
class ConfiguratorElement extends BaseElement {
|
|
@@ -7540,7 +7694,7 @@ class ConfiguratorElement extends BaseElement {
|
|
|
7540
7694
|
}
|
|
7541
7695
|
|
|
7542
7696
|
module.exports = ConfiguratorElement;
|
|
7543
|
-
},{"./base/base-element.js":
|
|
7697
|
+
},{"./base/base-element.js":118}],120:[function(require,module,exports){
|
|
7544
7698
|
const Util = require("../../util/util.js");
|
|
7545
7699
|
const { messenger } = require("@plattar/context-messenger");
|
|
7546
7700
|
const IFrameController = require("./iframe-controller.js");
|
|
@@ -7637,7 +7791,7 @@ class ElementController {
|
|
|
7637
7791
|
}
|
|
7638
7792
|
|
|
7639
7793
|
module.exports = ElementController;
|
|
7640
|
-
},{"../../util/util.js":
|
|
7794
|
+
},{"../../util/util.js":131,"./iframe-controller.js":121,"@plattar/context-messenger":22}],121:[function(require,module,exports){
|
|
7641
7795
|
const Util = require("../../util/util.js");
|
|
7642
7796
|
|
|
7643
7797
|
class IFrameController {
|
|
@@ -7739,7 +7893,7 @@ class IFrameController {
|
|
|
7739
7893
|
}
|
|
7740
7894
|
|
|
7741
7895
|
module.exports = IFrameController;
|
|
7742
|
-
},{"../../util/util.js":
|
|
7896
|
+
},{"../../util/util.js":131}],122:[function(require,module,exports){
|
|
7743
7897
|
const BaseElement = require("./base/base-element.js");
|
|
7744
7898
|
|
|
7745
7899
|
class EditorElement extends BaseElement {
|
|
@@ -7757,35 +7911,16 @@ class EditorElement extends BaseElement {
|
|
|
7757
7911
|
}
|
|
7758
7912
|
|
|
7759
7913
|
module.exports = EditorElement;
|
|
7760
|
-
},{"./base/base-element.js":
|
|
7914
|
+
},{"./base/base-element.js":118}],123:[function(require,module,exports){
|
|
7761
7915
|
const BaseElement = require("./base/base-element.js");
|
|
7762
7916
|
|
|
7763
7917
|
class EWallElement extends BaseElement {
|
|
7764
7918
|
constructor() {
|
|
7765
7919
|
super();
|
|
7766
|
-
|
|
7767
|
-
const tag = document.createElement("script");
|
|
7768
|
-
tag.src = "https://cdn.8thwall.com/web/iframe/iframe.js";
|
|
7769
|
-
tag.defer = true;
|
|
7770
|
-
}
|
|
7771
|
-
|
|
7772
|
-
connectedCallback() {
|
|
7773
|
-
super.connectedCallback();
|
|
7774
|
-
|
|
7775
|
-
// this is the iframe ID
|
|
7776
|
-
const id = this.element.controller.id;
|
|
7777
|
-
|
|
7778
|
-
const onLoad = () => {
|
|
7779
|
-
if (window.XRIFrame) {
|
|
7780
|
-
window.XRIFrame.registerXRIFrame(id);
|
|
7781
|
-
}
|
|
7782
|
-
}
|
|
7783
|
-
|
|
7784
|
-
window.addEventListener("load", onLoad, false)
|
|
7785
7920
|
}
|
|
7786
7921
|
|
|
7787
7922
|
get permissions() {
|
|
7788
|
-
return ["camera", "autoplay", "xr-spatial-tracking", "gyroscope", "accelerometer"];
|
|
7923
|
+
return ["camera *", "autoplay *", "xr-spatial-tracking *", "gyroscope *", "accelerometer *", "magnetometer *"];
|
|
7789
7924
|
}
|
|
7790
7925
|
|
|
7791
7926
|
get elementType() {
|
|
@@ -7794,7 +7929,7 @@ class EWallElement extends BaseElement {
|
|
|
7794
7929
|
}
|
|
7795
7930
|
|
|
7796
7931
|
module.exports = EWallElement;
|
|
7797
|
-
},{"./base/base-element.js":
|
|
7932
|
+
},{"./base/base-element.js":118}],124:[function(require,module,exports){
|
|
7798
7933
|
const BaseElement = require("./base/base-element.js");
|
|
7799
7934
|
|
|
7800
7935
|
class FaceARElement extends BaseElement {
|
|
@@ -7831,7 +7966,7 @@ class FaceARElement extends BaseElement {
|
|
|
7831
7966
|
}
|
|
7832
7967
|
|
|
7833
7968
|
module.exports = FaceARElement;
|
|
7834
|
-
},{"./base/base-element.js":
|
|
7969
|
+
},{"./base/base-element.js":118}],125:[function(require,module,exports){
|
|
7835
7970
|
const BaseElement = require("./base/base-element.js");
|
|
7836
7971
|
|
|
7837
7972
|
class ModelElement extends BaseElement {
|
|
@@ -7866,7 +8001,7 @@ class ModelElement extends BaseElement {
|
|
|
7866
8001
|
}
|
|
7867
8002
|
|
|
7868
8003
|
module.exports = ModelElement;
|
|
7869
|
-
},{"./base/base-element.js":
|
|
8004
|
+
},{"./base/base-element.js":118}],126:[function(require,module,exports){
|
|
7870
8005
|
const BaseElement = require("./base/base-element.js");
|
|
7871
8006
|
|
|
7872
8007
|
class ProductElement extends BaseElement {
|
|
@@ -7904,7 +8039,7 @@ class ProductElement extends BaseElement {
|
|
|
7904
8039
|
}
|
|
7905
8040
|
|
|
7906
8041
|
module.exports = ProductElement;
|
|
7907
|
-
},{"./base/base-element.js":
|
|
8042
|
+
},{"./base/base-element.js":118}],127:[function(require,module,exports){
|
|
7908
8043
|
const BaseElement = require("./base/base-element.js");
|
|
7909
8044
|
|
|
7910
8045
|
class StudioElement extends BaseElement {
|
|
@@ -7932,7 +8067,7 @@ class StudioElement extends BaseElement {
|
|
|
7932
8067
|
}
|
|
7933
8068
|
|
|
7934
8069
|
module.exports = StudioElement;
|
|
7935
|
-
},{"./base/base-element.js":
|
|
8070
|
+
},{"./base/base-element.js":118}],128:[function(require,module,exports){
|
|
7936
8071
|
const BaseElement = require("./base/base-element.js");
|
|
7937
8072
|
|
|
7938
8073
|
class ViewerElement extends BaseElement {
|
|
@@ -7966,7 +8101,7 @@ class ViewerElement extends BaseElement {
|
|
|
7966
8101
|
}
|
|
7967
8102
|
|
|
7968
8103
|
module.exports = ViewerElement;
|
|
7969
|
-
},{"./base/base-element.js":
|
|
8104
|
+
},{"./base/base-element.js":118}],129:[function(require,module,exports){
|
|
7970
8105
|
const BaseElement = require("./base/base-element.js");
|
|
7971
8106
|
|
|
7972
8107
|
class WebXRElement extends BaseElement {
|
|
@@ -7984,7 +8119,7 @@ class WebXRElement extends BaseElement {
|
|
|
7984
8119
|
}
|
|
7985
8120
|
|
|
7986
8121
|
module.exports = WebXRElement;
|
|
7987
|
-
},{"./base/base-element.js":
|
|
8122
|
+
},{"./base/base-element.js":118}],130:[function(require,module,exports){
|
|
7988
8123
|
"use strict";
|
|
7989
8124
|
const WebXRElement = require("./elements/webxr-element.js");
|
|
7990
8125
|
const ViewerElement = require("./elements/viewer-element.js");
|
|
@@ -8038,7 +8173,7 @@ console.log("using @plattar/plattar-web v" + Version);
|
|
|
8038
8173
|
module.exports = {
|
|
8039
8174
|
version: Version
|
|
8040
8175
|
};
|
|
8041
|
-
},{"./elements/configurator-element.js":
|
|
8176
|
+
},{"./elements/configurator-element.js":119,"./elements/editor-element.js":122,"./elements/ewall-element.js":123,"./elements/facear-element.js":124,"./elements/model-element.js":125,"./elements/product-element.js":126,"./elements/studio-element.js":127,"./elements/viewer-element.js":128,"./elements/webxr-element.js":129,"./version":132}],131:[function(require,module,exports){
|
|
8042
8177
|
class Util {
|
|
8043
8178
|
static getServerLocation(server) {
|
|
8044
8179
|
switch (server) {
|
|
@@ -8096,9 +8231,10 @@ class Util {
|
|
|
8096
8231
|
}
|
|
8097
8232
|
|
|
8098
8233
|
module.exports = Util;
|
|
8099
|
-
},{}],
|
|
8100
|
-
|
|
8101
|
-
|
|
8234
|
+
},{}],132:[function(require,module,exports){
|
|
8235
|
+
module.exports = "1.169.1";
|
|
8236
|
+
|
|
8237
|
+
},{}],133:[function(require,module,exports){
|
|
8102
8238
|
(function (global){(function (){
|
|
8103
8239
|
"use strict";
|
|
8104
8240
|
|
|
@@ -8127,11 +8263,11 @@ exports.Request = globalObject.Request;
|
|
|
8127
8263
|
exports.Response = globalObject.Response;
|
|
8128
8264
|
|
|
8129
8265
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
8130
|
-
},{}],
|
|
8266
|
+
},{}],134:[function(require,module,exports){
|
|
8131
8267
|
(function (global){(function (){
|
|
8132
8268
|
!function(e){var t;"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):("undefined"!=typeof window?t=window:"undefined"!=typeof global?t=global:"undefined"!=typeof self&&(t=self),t.objectHash=e())}(function(){return function r(o,i,u){function s(n,e){if(!i[n]){if(!o[n]){var t="function"==typeof require&&require;if(!e&&t)return t(n,!0);if(a)return a(n,!0);throw new Error("Cannot find module '"+n+"'")}e=i[n]={exports:{}};o[n][0].call(e.exports,function(e){var t=o[n][1][e];return s(t||e)},e,e.exports,r,o,i,u)}return i[n].exports}for(var a="function"==typeof require&&require,e=0;e<u.length;e++)s(u[e]);return s}({1:[function(w,b,m){!function(e,n,s,c,d,h,p,g,y){"use strict";var r=w("crypto");function t(e,t){t=u(e,t);var n;return void 0===(n="passthrough"!==t.algorithm?r.createHash(t.algorithm):new l).write&&(n.write=n.update,n.end=n.update),f(t,n).dispatch(e),n.update||n.end(""),n.digest?n.digest("buffer"===t.encoding?void 0:t.encoding):(e=n.read(),"buffer"!==t.encoding?e.toString(t.encoding):e)}(m=b.exports=t).sha1=function(e){return t(e)},m.keys=function(e){return t(e,{excludeValues:!0,algorithm:"sha1",encoding:"hex"})},m.MD5=function(e){return t(e,{algorithm:"md5",encoding:"hex"})},m.keysMD5=function(e){return t(e,{algorithm:"md5",encoding:"hex",excludeValues:!0})};var o=r.getHashes?r.getHashes().slice():["sha1","md5"],i=(o.push("passthrough"),["buffer","hex","binary","base64"]);function u(e,t){var n={};if(n.algorithm=(t=t||{}).algorithm||"sha1",n.encoding=t.encoding||"hex",n.excludeValues=!!t.excludeValues,n.algorithm=n.algorithm.toLowerCase(),n.encoding=n.encoding.toLowerCase(),n.ignoreUnknown=!0===t.ignoreUnknown,n.respectType=!1!==t.respectType,n.respectFunctionNames=!1!==t.respectFunctionNames,n.respectFunctionProperties=!1!==t.respectFunctionProperties,n.unorderedArrays=!0===t.unorderedArrays,n.unorderedSets=!1!==t.unorderedSets,n.unorderedObjects=!1!==t.unorderedObjects,n.replacer=t.replacer||void 0,n.excludeKeys=t.excludeKeys||void 0,void 0===e)throw new Error("Object argument required.");for(var r=0;r<o.length;++r)o[r].toLowerCase()===n.algorithm.toLowerCase()&&(n.algorithm=o[r]);if(-1===o.indexOf(n.algorithm))throw new Error('Algorithm "'+n.algorithm+'" not supported. supported values: '+o.join(", "));if(-1===i.indexOf(n.encoding)&&"passthrough"!==n.algorithm)throw new Error('Encoding "'+n.encoding+'" not supported. supported values: '+i.join(", "));return n}function a(e){if("function"==typeof e)return null!=/^function\s+\w*\s*\(\s*\)\s*{\s+\[native code\]\s+}$/i.exec(Function.prototype.toString.call(e))}function f(o,t,i){i=i||[];function u(e){return t.update?t.update(e,"utf8"):t.write(e,"utf8")}return{dispatch:function(e){return this["_"+(null===(e=o.replacer?o.replacer(e):e)?"null":typeof e)](e)},_object:function(t){var n,e=Object.prototype.toString.call(t),r=/\[object (.*)\]/i.exec(e);r=(r=r?r[1]:"unknown:["+e+"]").toLowerCase();if(0<=(e=i.indexOf(t)))return this.dispatch("[CIRCULAR:"+e+"]");if(i.push(t),void 0!==s&&s.isBuffer&&s.isBuffer(t))return u("buffer:"),u(t);if("object"===r||"function"===r||"asyncfunction"===r)return e=Object.keys(t),o.unorderedObjects&&(e=e.sort()),!1===o.respectType||a(t)||e.splice(0,0,"prototype","__proto__","constructor"),o.excludeKeys&&(e=e.filter(function(e){return!o.excludeKeys(e)})),u("object:"+e.length+":"),n=this,e.forEach(function(e){n.dispatch(e),u(":"),o.excludeValues||n.dispatch(t[e]),u(",")});if(!this["_"+r]){if(o.ignoreUnknown)return u("["+r+"]");throw new Error('Unknown object type "'+r+'"')}this["_"+r](t)},_array:function(e,t){t=void 0!==t?t:!1!==o.unorderedArrays;var n=this;if(u("array:"+e.length+":"),!t||e.length<=1)return e.forEach(function(e){return n.dispatch(e)});var r=[],t=e.map(function(e){var t=new l,n=i.slice();return f(o,t,n).dispatch(e),r=r.concat(n.slice(i.length)),t.read().toString()});return i=i.concat(r),t.sort(),this._array(t,!1)},_date:function(e){return u("date:"+e.toJSON())},_symbol:function(e){return u("symbol:"+e.toString())},_error:function(e){return u("error:"+e.toString())},_boolean:function(e){return u("bool:"+e.toString())},_string:function(e){u("string:"+e.length+":"),u(e.toString())},_function:function(e){u("fn:"),a(e)?this.dispatch("[native]"):this.dispatch(e.toString()),!1!==o.respectFunctionNames&&this.dispatch("function-name:"+String(e.name)),o.respectFunctionProperties&&this._object(e)},_number:function(e){return u("number:"+e.toString())},_xml:function(e){return u("xml:"+e.toString())},_null:function(){return u("Null")},_undefined:function(){return u("Undefined")},_regexp:function(e){return u("regex:"+e.toString())},_uint8array:function(e){return u("uint8array:"),this.dispatch(Array.prototype.slice.call(e))},_uint8clampedarray:function(e){return u("uint8clampedarray:"),this.dispatch(Array.prototype.slice.call(e))},_int8array:function(e){return u("int8array:"),this.dispatch(Array.prototype.slice.call(e))},_uint16array:function(e){return u("uint16array:"),this.dispatch(Array.prototype.slice.call(e))},_int16array:function(e){return u("int16array:"),this.dispatch(Array.prototype.slice.call(e))},_uint32array:function(e){return u("uint32array:"),this.dispatch(Array.prototype.slice.call(e))},_int32array:function(e){return u("int32array:"),this.dispatch(Array.prototype.slice.call(e))},_float32array:function(e){return u("float32array:"),this.dispatch(Array.prototype.slice.call(e))},_float64array:function(e){return u("float64array:"),this.dispatch(Array.prototype.slice.call(e))},_arraybuffer:function(e){return u("arraybuffer:"),this.dispatch(new Uint8Array(e))},_url:function(e){return u("url:"+e.toString())},_map:function(e){u("map:");e=Array.from(e);return this._array(e,!1!==o.unorderedSets)},_set:function(e){u("set:");e=Array.from(e);return this._array(e,!1!==o.unorderedSets)},_file:function(e){return u("file:"),this.dispatch([e.name,e.size,e.type,e.lastModfied])},_blob:function(){if(o.ignoreUnknown)return u("[blob]");throw Error('Hashing Blob objects is currently not supported\n(see https://github.com/puleos/object-hash/issues/26)\nUse "options.replacer" or "options.ignoreUnknown"\n')},_domwindow:function(){return u("domwindow")},_bigint:function(e){return u("bigint:"+e.toString())},_process:function(){return u("process")},_timer:function(){return u("timer")},_pipe:function(){return u("pipe")},_tcp:function(){return u("tcp")},_udp:function(){return u("udp")},_tty:function(){return u("tty")},_statwatcher:function(){return u("statwatcher")},_securecontext:function(){return u("securecontext")},_connection:function(){return u("connection")},_zlib:function(){return u("zlib")},_context:function(){return u("context")},_nodescript:function(){return u("nodescript")},_httpparser:function(){return u("httpparser")},_dataview:function(){return u("dataview")},_signal:function(){return u("signal")},_fsevent:function(){return u("fsevent")},_tlswrap:function(){return u("tlswrap")}}}function l(){return{buf:"",write:function(e){this.buf+=e},end:function(e){this.buf+=e},read:function(){return this.buf}}}m.writeToStream=function(e,t,n){return void 0===n&&(n=t,t={}),f(t=u(e,t),n).dispatch(e)}}.call(this,w("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},w("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/fake_9a5aa49d.js","/")},{buffer:3,crypto:5,lYpoI2:11}],2:[function(e,t,f){!function(e,t,n,r,o,i,u,s,a){!function(e){"use strict";var a="undefined"!=typeof Uint8Array?Uint8Array:Array,t="+".charCodeAt(0),n="/".charCodeAt(0),r="0".charCodeAt(0),o="a".charCodeAt(0),i="A".charCodeAt(0),u="-".charCodeAt(0),s="_".charCodeAt(0);function f(e){e=e.charCodeAt(0);return e===t||e===u?62:e===n||e===s?63:e<r?-1:e<r+10?e-r+26+26:e<i+26?e-i:e<o+26?e-o+26:void 0}e.toByteArray=function(e){var t,n;if(0<e.length%4)throw new Error("Invalid string. Length must be a multiple of 4");var r=e.length,r="="===e.charAt(r-2)?2:"="===e.charAt(r-1)?1:0,o=new a(3*e.length/4-r),i=0<r?e.length-4:e.length,u=0;function s(e){o[u++]=e}for(t=0;t<i;t+=4,0)s((16711680&(n=f(e.charAt(t))<<18|f(e.charAt(t+1))<<12|f(e.charAt(t+2))<<6|f(e.charAt(t+3))))>>16),s((65280&n)>>8),s(255&n);return 2==r?s(255&(n=f(e.charAt(t))<<2|f(e.charAt(t+1))>>4)):1==r&&(s((n=f(e.charAt(t))<<10|f(e.charAt(t+1))<<4|f(e.charAt(t+2))>>2)>>8&255),s(255&n)),o},e.fromByteArray=function(e){var t,n,r,o,i=e.length%3,u="";function s(e){return"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(e)}for(t=0,r=e.length-i;t<r;t+=3)n=(e[t]<<16)+(e[t+1]<<8)+e[t+2],u+=s((o=n)>>18&63)+s(o>>12&63)+s(o>>6&63)+s(63&o);switch(i){case 1:u=(u+=s((n=e[e.length-1])>>2))+s(n<<4&63)+"==";break;case 2:u=(u=(u+=s((n=(e[e.length-2]<<8)+e[e.length-1])>>10))+s(n>>4&63))+s(n<<2&63)+"="}return u}}(void 0===f?this.base64js={}:f)}.call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/base64-js/lib/b64.js","/node_modules/gulp-browserify/node_modules/base64-js/lib")},{buffer:3,lYpoI2:11}],3:[function(O,e,H){!function(e,n,f,r,h,p,g,y,w){var a=O("base64-js"),i=O("ieee754");function f(e,t,n){if(!(this instanceof f))return new f(e,t,n);var r,o,i,u,s=typeof e;if("base64"===t&&"string"==s)for(e=(u=e).trim?u.trim():u.replace(/^\s+|\s+$/g,"");e.length%4!=0;)e+="=";if("number"==s)r=j(e);else if("string"==s)r=f.byteLength(e,t);else{if("object"!=s)throw new Error("First argument needs to be a number, array or string.");r=j(e.length)}if(f._useTypedArrays?o=f._augment(new Uint8Array(r)):((o=this).length=r,o._isBuffer=!0),f._useTypedArrays&&"number"==typeof e.byteLength)o._set(e);else if(C(u=e)||f.isBuffer(u)||u&&"object"==typeof u&&"number"==typeof u.length)for(i=0;i<r;i++)f.isBuffer(e)?o[i]=e.readUInt8(i):o[i]=e[i];else if("string"==s)o.write(e,0,t);else if("number"==s&&!f._useTypedArrays&&!n)for(i=0;i<r;i++)o[i]=0;return o}function b(e,t,n,r){return f._charsWritten=c(function(e){for(var t=[],n=0;n<e.length;n++)t.push(255&e.charCodeAt(n));return t}(t),e,n,r)}function m(e,t,n,r){return f._charsWritten=c(function(e){for(var t,n,r=[],o=0;o<e.length;o++)n=e.charCodeAt(o),t=n>>8,n=n%256,r.push(n),r.push(t);return r}(t),e,n,r)}function v(e,t,n){var r="";n=Math.min(e.length,n);for(var o=t;o<n;o++)r+=String.fromCharCode(e[o]);return r}function o(e,t,n,r){r||(d("boolean"==typeof n,"missing or invalid endian"),d(null!=t,"missing offset"),d(t+1<e.length,"Trying to read beyond buffer length"));var o,r=e.length;if(!(r<=t))return n?(o=e[t],t+1<r&&(o|=e[t+1]<<8)):(o=e[t]<<8,t+1<r&&(o|=e[t+1])),o}function u(e,t,n,r){r||(d("boolean"==typeof n,"missing or invalid endian"),d(null!=t,"missing offset"),d(t+3<e.length,"Trying to read beyond buffer length"));var o,r=e.length;if(!(r<=t))return n?(t+2<r&&(o=e[t+2]<<16),t+1<r&&(o|=e[t+1]<<8),o|=e[t],t+3<r&&(o+=e[t+3]<<24>>>0)):(t+1<r&&(o=e[t+1]<<16),t+2<r&&(o|=e[t+2]<<8),t+3<r&&(o|=e[t+3]),o+=e[t]<<24>>>0),o}function _(e,t,n,r){if(r||(d("boolean"==typeof n,"missing or invalid endian"),d(null!=t,"missing offset"),d(t+1<e.length,"Trying to read beyond buffer length")),!(e.length<=t))return r=o(e,t,n,!0),32768&r?-1*(65535-r+1):r}function E(e,t,n,r){if(r||(d("boolean"==typeof n,"missing or invalid endian"),d(null!=t,"missing offset"),d(t+3<e.length,"Trying to read beyond buffer length")),!(e.length<=t))return r=u(e,t,n,!0),2147483648&r?-1*(4294967295-r+1):r}function I(e,t,n,r){return r||(d("boolean"==typeof n,"missing or invalid endian"),d(t+3<e.length,"Trying to read beyond buffer length")),i.read(e,t,n,23,4)}function A(e,t,n,r){return r||(d("boolean"==typeof n,"missing or invalid endian"),d(t+7<e.length,"Trying to read beyond buffer length")),i.read(e,t,n,52,8)}function s(e,t,n,r,o){o||(d(null!=t,"missing value"),d("boolean"==typeof r,"missing or invalid endian"),d(null!=n,"missing offset"),d(n+1<e.length,"trying to write beyond buffer length"),Y(t,65535));o=e.length;if(!(o<=n))for(var i=0,u=Math.min(o-n,2);i<u;i++)e[n+i]=(t&255<<8*(r?i:1-i))>>>8*(r?i:1-i)}function l(e,t,n,r,o){o||(d(null!=t,"missing value"),d("boolean"==typeof r,"missing or invalid endian"),d(null!=n,"missing offset"),d(n+3<e.length,"trying to write beyond buffer length"),Y(t,4294967295));o=e.length;if(!(o<=n))for(var i=0,u=Math.min(o-n,4);i<u;i++)e[n+i]=t>>>8*(r?i:3-i)&255}function B(e,t,n,r,o){o||(d(null!=t,"missing value"),d("boolean"==typeof r,"missing or invalid endian"),d(null!=n,"missing offset"),d(n+1<e.length,"Trying to write beyond buffer length"),F(t,32767,-32768)),e.length<=n||s(e,0<=t?t:65535+t+1,n,r,o)}function L(e,t,n,r,o){o||(d(null!=t,"missing value"),d("boolean"==typeof r,"missing or invalid endian"),d(null!=n,"missing offset"),d(n+3<e.length,"Trying to write beyond buffer length"),F(t,2147483647,-2147483648)),e.length<=n||l(e,0<=t?t:4294967295+t+1,n,r,o)}function U(e,t,n,r,o){o||(d(null!=t,"missing value"),d("boolean"==typeof r,"missing or invalid endian"),d(null!=n,"missing offset"),d(n+3<e.length,"Trying to write beyond buffer length"),D(t,34028234663852886e22,-34028234663852886e22)),e.length<=n||i.write(e,t,n,r,23,4)}function x(e,t,n,r,o){o||(d(null!=t,"missing value"),d("boolean"==typeof r,"missing or invalid endian"),d(null!=n,"missing offset"),d(n+7<e.length,"Trying to write beyond buffer length"),D(t,17976931348623157e292,-17976931348623157e292)),e.length<=n||i.write(e,t,n,r,52,8)}H.Buffer=f,H.SlowBuffer=f,H.INSPECT_MAX_BYTES=50,f.poolSize=8192,f._useTypedArrays=function(){try{var e=new ArrayBuffer(0),t=new Uint8Array(e);return t.foo=function(){return 42},42===t.foo()&&"function"==typeof t.subarray}catch(e){return!1}}(),f.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"raw":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},f.isBuffer=function(e){return!(null==e||!e._isBuffer)},f.byteLength=function(e,t){var n;switch(e+="",t||"utf8"){case"hex":n=e.length/2;break;case"utf8":case"utf-8":n=T(e).length;break;case"ascii":case"binary":case"raw":n=e.length;break;case"base64":n=M(e).length;break;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":n=2*e.length;break;default:throw new Error("Unknown encoding")}return n},f.concat=function(e,t){if(d(C(e),"Usage: Buffer.concat(list, [totalLength])\nlist should be an Array."),0===e.length)return new f(0);if(1===e.length)return e[0];if("number"!=typeof t)for(o=t=0;o<e.length;o++)t+=e[o].length;for(var n=new f(t),r=0,o=0;o<e.length;o++){var i=e[o];i.copy(n,r),r+=i.length}return n},f.prototype.write=function(e,t,n,r){isFinite(t)?isFinite(n)||(r=n,n=void 0):(a=r,r=t,t=n,n=a),t=Number(t)||0;var o,i,u,s,a=this.length-t;switch((!n||a<(n=Number(n)))&&(n=a),r=String(r||"utf8").toLowerCase()){case"hex":o=function(e,t,n,r){n=Number(n)||0;var o=e.length-n;(!r||o<(r=Number(r)))&&(r=o),d((o=t.length)%2==0,"Invalid hex string"),o/2<r&&(r=o/2);for(var i=0;i<r;i++){var u=parseInt(t.substr(2*i,2),16);d(!isNaN(u),"Invalid hex string"),e[n+i]=u}return f._charsWritten=2*i,i}(this,e,t,n);break;case"utf8":case"utf-8":i=this,u=t,s=n,o=f._charsWritten=c(T(e),i,u,s);break;case"ascii":case"binary":o=b(this,e,t,n);break;case"base64":i=this,u=t,s=n,o=f._charsWritten=c(M(e),i,u,s);break;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":o=m(this,e,t,n);break;default:throw new Error("Unknown encoding")}return o},f.prototype.toString=function(e,t,n){var r,o,i,u,s=this;if(e=String(e||"utf8").toLowerCase(),t=Number(t)||0,(n=void 0!==n?Number(n):s.length)===t)return"";switch(e){case"hex":r=function(e,t,n){var r=e.length;(!t||t<0)&&(t=0);(!n||n<0||r<n)&&(n=r);for(var o="",i=t;i<n;i++)o+=k(e[i]);return o}(s,t,n);break;case"utf8":case"utf-8":r=function(e,t,n){var r="",o="";n=Math.min(e.length,n);for(var i=t;i<n;i++)e[i]<=127?(r+=N(o)+String.fromCharCode(e[i]),o=""):o+="%"+e[i].toString(16);return r+N(o)}(s,t,n);break;case"ascii":case"binary":r=v(s,t,n);break;case"base64":o=s,u=n,r=0===(i=t)&&u===o.length?a.fromByteArray(o):a.fromByteArray(o.slice(i,u));break;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":r=function(e,t,n){for(var r=e.slice(t,n),o="",i=0;i<r.length;i+=2)o+=String.fromCharCode(r[i]+256*r[i+1]);return o}(s,t,n);break;default:throw new Error("Unknown encoding")}return r},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},f.prototype.copy=function(e,t,n,r){if(t=t||0,(r=r||0===r?r:this.length)!==(n=n||0)&&0!==e.length&&0!==this.length){d(n<=r,"sourceEnd < sourceStart"),d(0<=t&&t<e.length,"targetStart out of bounds"),d(0<=n&&n<this.length,"sourceStart out of bounds"),d(0<=r&&r<=this.length,"sourceEnd out of bounds"),r>this.length&&(r=this.length);var o=(r=e.length-t<r-n?e.length-t+n:r)-n;if(o<100||!f._useTypedArrays)for(var i=0;i<o;i++)e[i+t]=this[i+n];else e._set(this.subarray(n,n+o),t)}},f.prototype.slice=function(e,t){var n=this.length;if(e=S(e,n,0),t=S(t,n,n),f._useTypedArrays)return f._augment(this.subarray(e,t));for(var r=t-e,o=new f(r,void 0,!0),i=0;i<r;i++)o[i]=this[i+e];return o},f.prototype.get=function(e){return console.log(".get() is deprecated. Access using array indexes instead."),this.readUInt8(e)},f.prototype.set=function(e,t){return console.log(".set() is deprecated. Access using array indexes instead."),this.writeUInt8(e,t)},f.prototype.readUInt8=function(e,t){if(t||(d(null!=e,"missing offset"),d(e<this.length,"Trying to read beyond buffer length")),!(e>=this.length))return this[e]},f.prototype.readUInt16LE=function(e,t){return o(this,e,!0,t)},f.prototype.readUInt16BE=function(e,t){return o(this,e,!1,t)},f.prototype.readUInt32LE=function(e,t){return u(this,e,!0,t)},f.prototype.readUInt32BE=function(e,t){return u(this,e,!1,t)},f.prototype.readInt8=function(e,t){if(t||(d(null!=e,"missing offset"),d(e<this.length,"Trying to read beyond buffer length")),!(e>=this.length))return 128&this[e]?-1*(255-this[e]+1):this[e]},f.prototype.readInt16LE=function(e,t){return _(this,e,!0,t)},f.prototype.readInt16BE=function(e,t){return _(this,e,!1,t)},f.prototype.readInt32LE=function(e,t){return E(this,e,!0,t)},f.prototype.readInt32BE=function(e,t){return E(this,e,!1,t)},f.prototype.readFloatLE=function(e,t){return I(this,e,!0,t)},f.prototype.readFloatBE=function(e,t){return I(this,e,!1,t)},f.prototype.readDoubleLE=function(e,t){return A(this,e,!0,t)},f.prototype.readDoubleBE=function(e,t){return A(this,e,!1,t)},f.prototype.writeUInt8=function(e,t,n){n||(d(null!=e,"missing value"),d(null!=t,"missing offset"),d(t<this.length,"trying to write beyond buffer length"),Y(e,255)),t>=this.length||(this[t]=e)},f.prototype.writeUInt16LE=function(e,t,n){s(this,e,t,!0,n)},f.prototype.writeUInt16BE=function(e,t,n){s(this,e,t,!1,n)},f.prototype.writeUInt32LE=function(e,t,n){l(this,e,t,!0,n)},f.prototype.writeUInt32BE=function(e,t,n){l(this,e,t,!1,n)},f.prototype.writeInt8=function(e,t,n){n||(d(null!=e,"missing value"),d(null!=t,"missing offset"),d(t<this.length,"Trying to write beyond buffer length"),F(e,127,-128)),t>=this.length||(0<=e?this.writeUInt8(e,t,n):this.writeUInt8(255+e+1,t,n))},f.prototype.writeInt16LE=function(e,t,n){B(this,e,t,!0,n)},f.prototype.writeInt16BE=function(e,t,n){B(this,e,t,!1,n)},f.prototype.writeInt32LE=function(e,t,n){L(this,e,t,!0,n)},f.prototype.writeInt32BE=function(e,t,n){L(this,e,t,!1,n)},f.prototype.writeFloatLE=function(e,t,n){U(this,e,t,!0,n)},f.prototype.writeFloatBE=function(e,t,n){U(this,e,t,!1,n)},f.prototype.writeDoubleLE=function(e,t,n){x(this,e,t,!0,n)},f.prototype.writeDoubleBE=function(e,t,n){x(this,e,t,!1,n)},f.prototype.fill=function(e,t,n){if(t=t||0,n=n||this.length,d("number"==typeof(e="string"==typeof(e=e||0)?e.charCodeAt(0):e)&&!isNaN(e),"value is not a number"),d(t<=n,"end < start"),n!==t&&0!==this.length){d(0<=t&&t<this.length,"start out of bounds"),d(0<=n&&n<=this.length,"end out of bounds");for(var r=t;r<n;r++)this[r]=e}},f.prototype.inspect=function(){for(var e=[],t=this.length,n=0;n<t;n++)if(e[n]=k(this[n]),n===H.INSPECT_MAX_BYTES){e[n+1]="...";break}return"<Buffer "+e.join(" ")+">"},f.prototype.toArrayBuffer=function(){if("undefined"==typeof Uint8Array)throw new Error("Buffer.toArrayBuffer not supported in this browser");if(f._useTypedArrays)return new f(this).buffer;for(var e=new Uint8Array(this.length),t=0,n=e.length;t<n;t+=1)e[t]=this[t];return e.buffer};var t=f.prototype;function S(e,t,n){return"number"!=typeof e?n:t<=(e=~~e)?t:0<=e||0<=(e+=t)?e:0}function j(e){return(e=~~Math.ceil(+e))<0?0:e}function C(e){return(Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)})(e)}function k(e){return e<16?"0"+e.toString(16):e.toString(16)}function T(e){for(var t=[],n=0;n<e.length;n++){var r=e.charCodeAt(n);if(r<=127)t.push(e.charCodeAt(n));else for(var o=n,i=(55296<=r&&r<=57343&&n++,encodeURIComponent(e.slice(o,n+1)).substr(1).split("%")),u=0;u<i.length;u++)t.push(parseInt(i[u],16))}return t}function M(e){return a.toByteArray(e)}function c(e,t,n,r){for(var o=0;o<r&&!(o+n>=t.length||o>=e.length);o++)t[o+n]=e[o];return o}function N(e){try{return decodeURIComponent(e)}catch(e){return String.fromCharCode(65533)}}function Y(e,t){d("number"==typeof e,"cannot write a non-number as a number"),d(0<=e,"specified a negative value for writing an unsigned value"),d(e<=t,"value is larger than maximum value for type"),d(Math.floor(e)===e,"value has a fractional component")}function F(e,t,n){d("number"==typeof e,"cannot write a non-number as a number"),d(e<=t,"value larger than maximum allowed value"),d(n<=e,"value smaller than minimum allowed value"),d(Math.floor(e)===e,"value has a fractional component")}function D(e,t,n){d("number"==typeof e,"cannot write a non-number as a number"),d(e<=t,"value larger than maximum allowed value"),d(n<=e,"value smaller than minimum allowed value")}function d(e,t){if(!e)throw new Error(t||"Failed assertion")}f._augment=function(e){return e._isBuffer=!0,e._get=e.get,e._set=e.set,e.get=t.get,e.set=t.set,e.write=t.write,e.toString=t.toString,e.toLocaleString=t.toString,e.toJSON=t.toJSON,e.copy=t.copy,e.slice=t.slice,e.readUInt8=t.readUInt8,e.readUInt16LE=t.readUInt16LE,e.readUInt16BE=t.readUInt16BE,e.readUInt32LE=t.readUInt32LE,e.readUInt32BE=t.readUInt32BE,e.readInt8=t.readInt8,e.readInt16LE=t.readInt16LE,e.readInt16BE=t.readInt16BE,e.readInt32LE=t.readInt32LE,e.readInt32BE=t.readInt32BE,e.readFloatLE=t.readFloatLE,e.readFloatBE=t.readFloatBE,e.readDoubleLE=t.readDoubleLE,e.readDoubleBE=t.readDoubleBE,e.writeUInt8=t.writeUInt8,e.writeUInt16LE=t.writeUInt16LE,e.writeUInt16BE=t.writeUInt16BE,e.writeUInt32LE=t.writeUInt32LE,e.writeUInt32BE=t.writeUInt32BE,e.writeInt8=t.writeInt8,e.writeInt16LE=t.writeInt16LE,e.writeInt16BE=t.writeInt16BE,e.writeInt32LE=t.writeInt32LE,e.writeInt32BE=t.writeInt32BE,e.writeFloatLE=t.writeFloatLE,e.writeFloatBE=t.writeFloatBE,e.writeDoubleLE=t.writeDoubleLE,e.writeDoubleBE=t.writeDoubleBE,e.fill=t.fill,e.inspect=t.inspect,e.toArrayBuffer=t.toArrayBuffer,e}}.call(this,O("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},O("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/buffer/index.js","/node_modules/gulp-browserify/node_modules/buffer")},{"base64-js":2,buffer:3,ieee754:10,lYpoI2:11}],4:[function(c,d,e){!function(e,t,a,n,r,o,i,u,s){var a=c("buffer").Buffer,f=4,l=new a(f);l.fill(0);d.exports={hash:function(e,t,n,r){for(var o=t(function(e,t){e.length%f!=0&&(n=e.length+(f-e.length%f),e=a.concat([e,l],n));for(var n,r=[],o=t?e.readInt32BE:e.readInt32LE,i=0;i<e.length;i+=f)r.push(o.call(e,i));return r}(e=a.isBuffer(e)?e:new a(e),r),8*e.length),t=r,i=new a(n),u=t?i.writeInt32BE:i.writeInt32LE,s=0;s<o.length;s++)u.call(i,o[s],4*s,!0);return i}}}.call(this,c("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},c("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/helpers.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{buffer:3,lYpoI2:11}],5:[function(v,e,_){!function(l,c,u,d,h,p,g,y,w){var u=v("buffer").Buffer,e=v("./sha"),t=v("./sha256"),n=v("./rng"),b={sha1:e,sha256:t,md5:v("./md5")},s=64,a=new u(s);function r(e,n){var r=b[e=e||"sha1"],o=[];return r||i("algorithm:",e,"is not yet supported"),{update:function(e){return u.isBuffer(e)||(e=new u(e)),o.push(e),e.length,this},digest:function(e){var t=u.concat(o),t=n?function(e,t,n){u.isBuffer(t)||(t=new u(t)),u.isBuffer(n)||(n=new u(n)),t.length>s?t=e(t):t.length<s&&(t=u.concat([t,a],s));for(var r=new u(s),o=new u(s),i=0;i<s;i++)r[i]=54^t[i],o[i]=92^t[i];return n=e(u.concat([r,n])),e(u.concat([o,n]))}(r,n,t):r(t);return o=null,e?t.toString(e):t}}}function i(){var e=[].slice.call(arguments).join(" ");throw new Error([e,"we accept pull requests","http://github.com/dominictarr/crypto-browserify"].join("\n"))}a.fill(0),_.createHash=function(e){return r(e)},_.createHmac=r,_.randomBytes=function(e,t){if(!t||!t.call)return new u(n(e));try{t.call(this,void 0,new u(n(e)))}catch(e){t(e)}};var o,f=["createCredentials","createCipher","createCipheriv","createDecipher","createDecipheriv","createSign","createVerify","createDiffieHellman","pbkdf2"],m=function(e){_[e]=function(){i("sorry,",e,"is not implemented yet")}};for(o in f)m(f[o],o)}.call(this,v("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},v("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/index.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./md5":6,"./rng":7,"./sha":8,"./sha256":9,buffer:3,lYpoI2:11}],6:[function(w,b,e){!function(e,r,o,i,u,a,f,l,y){var t=w("./helpers");function n(e,t){e[t>>5]|=128<<t%32,e[14+(t+64>>>9<<4)]=t;for(var n=1732584193,r=-271733879,o=-1732584194,i=271733878,u=0;u<e.length;u+=16){var s=n,a=r,f=o,l=i,n=c(n,r,o,i,e[u+0],7,-680876936),i=c(i,n,r,o,e[u+1],12,-389564586),o=c(o,i,n,r,e[u+2],17,606105819),r=c(r,o,i,n,e[u+3],22,-1044525330);n=c(n,r,o,i,e[u+4],7,-176418897),i=c(i,n,r,o,e[u+5],12,1200080426),o=c(o,i,n,r,e[u+6],17,-1473231341),r=c(r,o,i,n,e[u+7],22,-45705983),n=c(n,r,o,i,e[u+8],7,1770035416),i=c(i,n,r,o,e[u+9],12,-1958414417),o=c(o,i,n,r,e[u+10],17,-42063),r=c(r,o,i,n,e[u+11],22,-1990404162),n=c(n,r,o,i,e[u+12],7,1804603682),i=c(i,n,r,o,e[u+13],12,-40341101),o=c(o,i,n,r,e[u+14],17,-1502002290),n=d(n,r=c(r,o,i,n,e[u+15],22,1236535329),o,i,e[u+1],5,-165796510),i=d(i,n,r,o,e[u+6],9,-1069501632),o=d(o,i,n,r,e[u+11],14,643717713),r=d(r,o,i,n,e[u+0],20,-373897302),n=d(n,r,o,i,e[u+5],5,-701558691),i=d(i,n,r,o,e[u+10],9,38016083),o=d(o,i,n,r,e[u+15],14,-660478335),r=d(r,o,i,n,e[u+4],20,-405537848),n=d(n,r,o,i,e[u+9],5,568446438),i=d(i,n,r,o,e[u+14],9,-1019803690),o=d(o,i,n,r,e[u+3],14,-187363961),r=d(r,o,i,n,e[u+8],20,1163531501),n=d(n,r,o,i,e[u+13],5,-1444681467),i=d(i,n,r,o,e[u+2],9,-51403784),o=d(o,i,n,r,e[u+7],14,1735328473),n=h(n,r=d(r,o,i,n,e[u+12],20,-1926607734),o,i,e[u+5],4,-378558),i=h(i,n,r,o,e[u+8],11,-2022574463),o=h(o,i,n,r,e[u+11],16,1839030562),r=h(r,o,i,n,e[u+14],23,-35309556),n=h(n,r,o,i,e[u+1],4,-1530992060),i=h(i,n,r,o,e[u+4],11,1272893353),o=h(o,i,n,r,e[u+7],16,-155497632),r=h(r,o,i,n,e[u+10],23,-1094730640),n=h(n,r,o,i,e[u+13],4,681279174),i=h(i,n,r,o,e[u+0],11,-358537222),o=h(o,i,n,r,e[u+3],16,-722521979),r=h(r,o,i,n,e[u+6],23,76029189),n=h(n,r,o,i,e[u+9],4,-640364487),i=h(i,n,r,o,e[u+12],11,-421815835),o=h(o,i,n,r,e[u+15],16,530742520),n=p(n,r=h(r,o,i,n,e[u+2],23,-995338651),o,i,e[u+0],6,-198630844),i=p(i,n,r,o,e[u+7],10,1126891415),o=p(o,i,n,r,e[u+14],15,-1416354905),r=p(r,o,i,n,e[u+5],21,-57434055),n=p(n,r,o,i,e[u+12],6,1700485571),i=p(i,n,r,o,e[u+3],10,-1894986606),o=p(o,i,n,r,e[u+10],15,-1051523),r=p(r,o,i,n,e[u+1],21,-2054922799),n=p(n,r,o,i,e[u+8],6,1873313359),i=p(i,n,r,o,e[u+15],10,-30611744),o=p(o,i,n,r,e[u+6],15,-1560198380),r=p(r,o,i,n,e[u+13],21,1309151649),n=p(n,r,o,i,e[u+4],6,-145523070),i=p(i,n,r,o,e[u+11],10,-1120210379),o=p(o,i,n,r,e[u+2],15,718787259),r=p(r,o,i,n,e[u+9],21,-343485551),n=g(n,s),r=g(r,a),o=g(o,f),i=g(i,l)}return Array(n,r,o,i)}function s(e,t,n,r,o,i){return g((t=g(g(t,e),g(r,i)))<<o|t>>>32-o,n)}function c(e,t,n,r,o,i,u){return s(t&n|~t&r,e,t,o,i,u)}function d(e,t,n,r,o,i,u){return s(t&r|n&~r,e,t,o,i,u)}function h(e,t,n,r,o,i,u){return s(t^n^r,e,t,o,i,u)}function p(e,t,n,r,o,i,u){return s(n^(t|~r),e,t,o,i,u)}function g(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}b.exports=function(e){return t.hash(e,n,16)}}.call(this,w("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},w("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/md5.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./helpers":4,buffer:3,lYpoI2:11}],7:[function(e,l,t){!function(e,t,n,r,o,i,u,s,f){var a;l.exports=a||function(e){for(var t,n=new Array(e),r=0;r<e;r++)0==(3&r)&&(t=4294967296*Math.random()),n[r]=t>>>((3&r)<<3)&255;return n}}.call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/rng.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{buffer:3,lYpoI2:11}],8:[function(c,d,e){!function(e,t,n,r,o,s,a,f,l){var i=c("./helpers");function u(l,c){l[c>>5]|=128<<24-c%32,l[15+(c+64>>9<<4)]=c;for(var e,t,n,r=Array(80),o=1732584193,i=-271733879,u=-1732584194,s=271733878,d=-1009589776,h=0;h<l.length;h+=16){for(var p=o,g=i,y=u,w=s,b=d,a=0;a<80;a++){r[a]=a<16?l[h+a]:v(r[a-3]^r[a-8]^r[a-14]^r[a-16],1);var f=m(m(v(o,5),(f=i,t=u,n=s,(e=a)<20?f&t|~f&n:!(e<40)&&e<60?f&t|f&n|t&n:f^t^n)),m(m(d,r[a]),(e=a)<20?1518500249:e<40?1859775393:e<60?-1894007588:-899497514)),d=s,s=u,u=v(i,30),i=o,o=f}o=m(o,p),i=m(i,g),u=m(u,y),s=m(s,w),d=m(d,b)}return Array(o,i,u,s,d)}function m(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function v(e,t){return e<<t|e>>>32-t}d.exports=function(e){return i.hash(e,u,20,!0)}}.call(this,c("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},c("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/sha.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./helpers":4,buffer:3,lYpoI2:11}],9:[function(c,d,e){!function(e,t,n,r,u,s,a,f,l){function b(e,t){var n=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(n>>16)<<16|65535&n}function o(e,l){var c,d=new Array(1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298),t=new Array(1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225),n=new Array(64);e[l>>5]|=128<<24-l%32,e[15+(l+64>>9<<4)]=l;for(var r,o,h=0;h<e.length;h+=16){for(var i=t[0],u=t[1],s=t[2],p=t[3],a=t[4],g=t[5],y=t[6],w=t[7],f=0;f<64;f++)n[f]=f<16?e[f+h]:b(b(b((o=n[f-2],m(o,17)^m(o,19)^v(o,10)),n[f-7]),(o=n[f-15],m(o,7)^m(o,18)^v(o,3))),n[f-16]),c=b(b(b(b(w,m(o=a,6)^m(o,11)^m(o,25)),a&g^~a&y),d[f]),n[f]),r=b(m(r=i,2)^m(r,13)^m(r,22),i&u^i&s^u&s),w=y,y=g,g=a,a=b(p,c),p=s,s=u,u=i,i=b(c,r);t[0]=b(i,t[0]),t[1]=b(u,t[1]),t[2]=b(s,t[2]),t[3]=b(p,t[3]),t[4]=b(a,t[4]),t[5]=b(g,t[5]),t[6]=b(y,t[6]),t[7]=b(w,t[7])}return t}var i=c("./helpers"),m=function(e,t){return e>>>t|e<<32-t},v=function(e,t){return e>>>t};d.exports=function(e){return i.hash(e,o,32,!0)}}.call(this,c("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},c("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/crypto-browserify/sha256.js","/node_modules/gulp-browserify/node_modules/crypto-browserify")},{"./helpers":4,buffer:3,lYpoI2:11}],10:[function(e,t,f){!function(e,t,n,r,o,i,u,s,a){f.read=function(e,t,n,r,o){var i,u,l=8*o-r-1,c=(1<<l)-1,d=c>>1,s=-7,a=n?o-1:0,f=n?-1:1,o=e[t+a];for(a+=f,i=o&(1<<-s)-1,o>>=-s,s+=l;0<s;i=256*i+e[t+a],a+=f,s-=8);for(u=i&(1<<-s)-1,i>>=-s,s+=r;0<s;u=256*u+e[t+a],a+=f,s-=8);if(0===i)i=1-d;else{if(i===c)return u?NaN:1/0*(o?-1:1);u+=Math.pow(2,r),i-=d}return(o?-1:1)*u*Math.pow(2,i-r)},f.write=function(e,t,l,n,r,c){var o,i,u=8*c-r-1,s=(1<<u)-1,a=s>>1,d=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,f=n?0:c-1,h=n?1:-1,c=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(i=isNaN(t)?1:0,o=s):(o=Math.floor(Math.log(t)/Math.LN2),t*(n=Math.pow(2,-o))<1&&(o--,n*=2),2<=(t+=1<=o+a?d/n:d*Math.pow(2,1-a))*n&&(o++,n/=2),s<=o+a?(i=0,o=s):1<=o+a?(i=(t*n-1)*Math.pow(2,r),o+=a):(i=t*Math.pow(2,a-1)*Math.pow(2,r),o=0));8<=r;e[l+f]=255&i,f+=h,i/=256,r-=8);for(o=o<<r|i,u+=r;0<u;e[l+f]=255&o,f+=h,o/=256,u-=8);e[l+f-h]|=128*c}}.call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/ieee754/index.js","/node_modules/gulp-browserify/node_modules/ieee754")},{buffer:3,lYpoI2:11}],11:[function(e,h,t){!function(e,t,n,r,o,f,l,c,d){var i,u,s;function a(){}(e=h.exports={}).nextTick=(u="undefined"!=typeof window&&window.setImmediate,s="undefined"!=typeof window&&window.postMessage&&window.addEventListener,u?function(e){return window.setImmediate(e)}:s?(i=[],window.addEventListener("message",function(e){var t=e.source;t!==window&&null!==t||"process-tick"!==e.data||(e.stopPropagation(),0<i.length&&i.shift()())},!0),function(e){i.push(e),window.postMessage("process-tick","*")}):function(e){setTimeout(e,0)}),e.title="browser",e.browser=!0,e.env={},e.argv=[],e.on=a,e.addListener=a,e.once=a,e.off=a,e.removeListener=a,e.removeAllListeners=a,e.emit=a,e.binding=function(e){throw new Error("process.binding is not supported")},e.cwd=function(){return"/"},e.chdir=function(e){throw new Error("process.chdir is not supported")}}.call(this,e("lYpoI2"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},e("buffer").Buffer,arguments[3],arguments[4],arguments[5],arguments[6],"/node_modules/gulp-browserify/node_modules/process/browser.js","/node_modules/gulp-browserify/node_modules/process")},{buffer:3,lYpoI2:11}]},{},[1])(1)});
|
|
8133
8269
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
8134
|
-
},{}],
|
|
8270
|
+
},{}],135:[function(require,module,exports){
|
|
8135
8271
|
// shim for using process in browser
|
|
8136
8272
|
var process = module.exports = {};
|
|
8137
8273
|
|
|
@@ -8317,8 +8453,8 @@ process.chdir = function (dir) {
|
|
|
8317
8453
|
};
|
|
8318
8454
|
process.umask = function() { return 0; };
|
|
8319
8455
|
|
|
8320
|
-
},{}],
|
|
8456
|
+
},{}],136:[function(require,module,exports){
|
|
8321
8457
|
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.QRCodeStyling=e():t.QRCodeStyling=e()}(self,(function(){return(()=>{var t={192:(t,e)=>{var r,n,o=function(){var t=function(t,e){var r=t,n=a[e],o=null,i=0,u=null,v=[],w={},m=function(t,e){o=function(t){for(var e=new Array(t),r=0;r<t;r+=1){e[r]=new Array(t);for(var n=0;n<t;n+=1)e[r][n]=null}return e}(i=4*r+17),b(0,0),b(i-7,0),b(0,i-7),x(),_(),M(t,e),r>=7&&S(t),null==u&&(u=A(r,n,v)),C(u,e)},b=function(t,e){for(var r=-1;r<=7;r+=1)if(!(t+r<=-1||i<=t+r))for(var n=-1;n<=7;n+=1)e+n<=-1||i<=e+n||(o[t+r][e+n]=0<=r&&r<=6&&(0==n||6==n)||0<=n&&n<=6&&(0==r||6==r)||2<=r&&r<=4&&2<=n&&n<=4)},_=function(){for(var t=8;t<i-8;t+=1)null==o[t][6]&&(o[t][6]=t%2==0);for(var e=8;e<i-8;e+=1)null==o[6][e]&&(o[6][e]=e%2==0)},x=function(){for(var t=s.getPatternPosition(r),e=0;e<t.length;e+=1)for(var n=0;n<t.length;n+=1){var i=t[e],a=t[n];if(null==o[i][a])for(var u=-2;u<=2;u+=1)for(var h=-2;h<=2;h+=1)o[i+u][a+h]=-2==u||2==u||-2==h||2==h||0==u&&0==h}},S=function(t){for(var e=s.getBCHTypeNumber(r),n=0;n<18;n+=1){var a=!t&&1==(e>>n&1);o[Math.floor(n/3)][n%3+i-8-3]=a}for(n=0;n<18;n+=1)a=!t&&1==(e>>n&1),o[n%3+i-8-3][Math.floor(n/3)]=a},M=function(t,e){for(var r=n<<3|e,a=s.getBCHTypeInfo(r),u=0;u<15;u+=1){var h=!t&&1==(a>>u&1);u<6?o[u][8]=h:u<8?o[u+1][8]=h:o[i-15+u][8]=h}for(u=0;u<15;u+=1)h=!t&&1==(a>>u&1),u<8?o[8][i-u-1]=h:u<9?o[8][15-u-1+1]=h:o[8][15-u-1]=h;o[i-8][8]=!t},C=function(t,e){for(var r=-1,n=i-1,a=7,u=0,h=s.getMaskFunction(e),c=i-1;c>0;c-=2)for(6==c&&(c-=1);;){for(var l=0;l<2;l+=1)if(null==o[n][c-l]){var d=!1;u<t.length&&(d=1==(t[u]>>>a&1)),h(n,c-l)&&(d=!d),o[n][c-l]=d,-1==(a-=1)&&(u+=1,a=7)}if((n+=r)<0||i<=n){n-=r,r=-r;break}}},A=function(t,e,r){for(var n=c.getRSBlocks(t,e),o=l(),i=0;i<r.length;i+=1){var a=r[i];o.put(a.getMode(),4),o.put(a.getLength(),s.getLengthInBits(a.getMode(),t)),a.write(o)}var u=0;for(i=0;i<n.length;i+=1)u+=n[i].dataCount;if(o.getLengthInBits()>8*u)throw"code length overflow. ("+o.getLengthInBits()+">"+8*u+")";for(o.getLengthInBits()+4<=8*u&&o.put(0,4);o.getLengthInBits()%8!=0;)o.putBit(!1);for(;!(o.getLengthInBits()>=8*u||(o.put(236,8),o.getLengthInBits()>=8*u));)o.put(17,8);return function(t,e){for(var r=0,n=0,o=0,i=new Array(e.length),a=new Array(e.length),u=0;u<e.length;u+=1){var c=e[u].dataCount,l=e[u].totalCount-c;n=Math.max(n,c),o=Math.max(o,l),i[u]=new Array(c);for(var d=0;d<i[u].length;d+=1)i[u][d]=255&t.getBuffer()[d+r];r+=c;var f=s.getErrorCorrectPolynomial(l),g=h(i[u],f.getLength()-1).mod(f);for(a[u]=new Array(f.getLength()-1),d=0;d<a[u].length;d+=1){var p=d+g.getLength()-a[u].length;a[u][d]=p>=0?g.getAt(p):0}}var v=0;for(d=0;d<e.length;d+=1)v+=e[d].totalCount;var w=new Array(v),y=0;for(d=0;d<n;d+=1)for(u=0;u<e.length;u+=1)d<i[u].length&&(w[y]=i[u][d],y+=1);for(d=0;d<o;d+=1)for(u=0;u<e.length;u+=1)d<a[u].length&&(w[y]=a[u][d],y+=1);return w}(o,n)};w.addData=function(t,e){var r=null;switch(e=e||"Byte"){case"Numeric":r=d(t);break;case"Alphanumeric":r=f(t);break;case"Byte":r=g(t);break;case"Kanji":r=p(t);break;default:throw"mode:"+e}v.push(r),u=null},w.isDark=function(t,e){if(t<0||i<=t||e<0||i<=e)throw t+","+e;return o[t][e]},w.getModuleCount=function(){return i},w.make=function(){if(r<1){for(var t=1;t<40;t++){for(var e=c.getRSBlocks(t,n),o=l(),i=0;i<v.length;i++){var a=v[i];o.put(a.getMode(),4),o.put(a.getLength(),s.getLengthInBits(a.getMode(),t)),a.write(o)}var u=0;for(i=0;i<e.length;i++)u+=e[i].dataCount;if(o.getLengthInBits()<=8*u)break}r=t}m(!1,function(){for(var t=0,e=0,r=0;r<8;r+=1){m(!0,r);var n=s.getLostPoint(w);(0==r||t>n)&&(t=n,e=r)}return e}())},w.createTableTag=function(t,e){t=t||2;var r="";r+='<table style="',r+=" border-width: 0px; border-style: none;",r+=" border-collapse: collapse;",r+=" padding: 0px; margin: "+(e=void 0===e?4*t:e)+"px;",r+='">',r+="<tbody>";for(var n=0;n<w.getModuleCount();n+=1){r+="<tr>";for(var o=0;o<w.getModuleCount();o+=1)r+='<td style="',r+=" border-width: 0px; border-style: none;",r+=" border-collapse: collapse;",r+=" padding: 0px; margin: 0px;",r+=" width: "+t+"px;",r+=" height: "+t+"px;",r+=" background-color: ",r+=w.isDark(n,o)?"#000000":"#ffffff",r+=";",r+='"/>';r+="</tr>"}return(r+="</tbody>")+"</table>"},w.createSvgTag=function(t,e,r,n){var o={};"object"==typeof arguments[0]&&(t=(o=arguments[0]).cellSize,e=o.margin,r=o.alt,n=o.title),t=t||2,e=void 0===e?4*t:e,(r="string"==typeof r?{text:r}:r||{}).text=r.text||null,r.id=r.text?r.id||"qrcode-description":null,(n="string"==typeof n?{text:n}:n||{}).text=n.text||null,n.id=n.text?n.id||"qrcode-title":null;var i,a,s,u,h=w.getModuleCount()*t+2*e,c="";for(u="l"+t+",0 0,"+t+" -"+t+",0 0,-"+t+"z ",c+='<svg version="1.1" xmlns="http://www.w3.org/2000/svg"',c+=o.scalable?"":' width="'+h+'px" height="'+h+'px"',c+=' viewBox="0 0 '+h+" "+h+'" ',c+=' preserveAspectRatio="xMinYMin meet"',c+=n.text||r.text?' role="img" aria-labelledby="'+k([n.id,r.id].join(" ").trim())+'"':"",c+=">",c+=n.text?'<title id="'+k(n.id)+'">'+k(n.text)+"</title>":"",c+=r.text?'<description id="'+k(r.id)+'">'+k(r.text)+"</description>":"",c+='<rect width="100%" height="100%" fill="white" cx="0" cy="0"/>',c+='<path d="',a=0;a<w.getModuleCount();a+=1)for(s=a*t+e,i=0;i<w.getModuleCount();i+=1)w.isDark(a,i)&&(c+="M"+(i*t+e)+","+s+u);return(c+='" stroke="transparent" fill="black"/>')+"</svg>"},w.createDataURL=function(t,e){t=t||2,e=void 0===e?4*t:e;var r=w.getModuleCount()*t+2*e,n=e,o=r-e;return y(r,r,(function(e,r){if(n<=e&&e<o&&n<=r&&r<o){var i=Math.floor((e-n)/t),a=Math.floor((r-n)/t);return w.isDark(a,i)?0:1}return 1}))},w.createImgTag=function(t,e,r){t=t||2,e=void 0===e?4*t:e;var n=w.getModuleCount()*t+2*e,o="";return o+="<img",o+=' src="',o+=w.createDataURL(t,e),o+='"',o+=' width="',o+=n,o+='"',o+=' height="',o+=n,o+='"',r&&(o+=' alt="',o+=k(r),o+='"'),o+"/>"};var k=function(t){for(var e="",r=0;r<t.length;r+=1){var n=t.charAt(r);switch(n){case"<":e+="<";break;case">":e+=">";break;case"&":e+="&";break;case'"':e+=""";break;default:e+=n}}return e};return w.createASCII=function(t,e){if((t=t||1)<2)return function(t){t=void 0===t?2:t;var e,r,n,o,i,a=1*w.getModuleCount()+2*t,s=t,u=a-t,h={"██":"█","█ ":"▀"," █":"▄"," ":" "},c={"██":"▀","█ ":"▀"," █":" "," ":" "},l="";for(e=0;e<a;e+=2){for(n=Math.floor((e-s)/1),o=Math.floor((e+1-s)/1),r=0;r<a;r+=1)i="█",s<=r&&r<u&&s<=e&&e<u&&w.isDark(n,Math.floor((r-s)/1))&&(i=" "),s<=r&&r<u&&s<=e+1&&e+1<u&&w.isDark(o,Math.floor((r-s)/1))?i+=" ":i+="█",l+=t<1&&e+1>=u?c[i]:h[i];l+="\n"}return a%2&&t>0?l.substring(0,l.length-a-1)+Array(a+1).join("▀"):l.substring(0,l.length-1)}(e);t-=1,e=void 0===e?2*t:e;var r,n,o,i,a=w.getModuleCount()*t+2*e,s=e,u=a-e,h=Array(t+1).join("██"),c=Array(t+1).join(" "),l="",d="";for(r=0;r<a;r+=1){for(o=Math.floor((r-s)/t),d="",n=0;n<a;n+=1)i=1,s<=n&&n<u&&s<=r&&r<u&&w.isDark(o,Math.floor((n-s)/t))&&(i=0),d+=i?h:c;for(o=0;o<t;o+=1)l+=d+"\n"}return l.substring(0,l.length-1)},w.renderTo2dContext=function(t,e){e=e||2;for(var r=w.getModuleCount(),n=0;n<r;n++)for(var o=0;o<r;o++)t.fillStyle=w.isDark(n,o)?"black":"white",t.fillRect(n*e,o*e,e,e)},w};t.stringToBytes=(t.stringToBytesFuncs={default:function(t){for(var e=[],r=0;r<t.length;r+=1){var n=t.charCodeAt(r);e.push(255&n)}return e}}).default,t.createStringToBytes=function(t,e){var r=function(){for(var r=w(t),n=function(){var t=r.read();if(-1==t)throw"eof";return t},o=0,i={};;){var a=r.read();if(-1==a)break;var s=n(),u=n()<<8|n();i[String.fromCharCode(a<<8|s)]=u,o+=1}if(o!=e)throw o+" != "+e;return i}(),n="?".charCodeAt(0);return function(t){for(var e=[],o=0;o<t.length;o+=1){var i=t.charCodeAt(o);if(i<128)e.push(i);else{var a=r[t.charAt(o)];"number"==typeof a?(255&a)==a?e.push(a):(e.push(a>>>8),e.push(255&a)):e.push(n)}}return e}};var e,r,n,o,i,a={L:1,M:0,Q:3,H:2},s=(e=[[],[6,18],[6,22],[6,26],[6,30],[6,34],[6,22,38],[6,24,42],[6,26,46],[6,28,50],[6,30,54],[6,32,58],[6,34,62],[6,26,46,66],[6,26,48,70],[6,26,50,74],[6,30,54,78],[6,30,56,82],[6,30,58,86],[6,34,62,90],[6,28,50,72,94],[6,26,50,74,98],[6,30,54,78,102],[6,28,54,80,106],[6,32,58,84,110],[6,30,58,86,114],[6,34,62,90,118],[6,26,50,74,98,122],[6,30,54,78,102,126],[6,26,52,78,104,130],[6,30,56,82,108,134],[6,34,60,86,112,138],[6,30,58,86,114,142],[6,34,62,90,118,146],[6,30,54,78,102,126,150],[6,24,50,76,102,128,154],[6,28,54,80,106,132,158],[6,32,58,84,110,136,162],[6,26,54,82,110,138,166],[6,30,58,86,114,142,170]],r=1335,n=7973,i=function(t){for(var e=0;0!=t;)e+=1,t>>>=1;return e},(o={}).getBCHTypeInfo=function(t){for(var e=t<<10;i(e)-i(r)>=0;)e^=r<<i(e)-i(r);return 21522^(t<<10|e)},o.getBCHTypeNumber=function(t){for(var e=t<<12;i(e)-i(n)>=0;)e^=n<<i(e)-i(n);return t<<12|e},o.getPatternPosition=function(t){return e[t-1]},o.getMaskFunction=function(t){switch(t){case 0:return function(t,e){return(t+e)%2==0};case 1:return function(t,e){return t%2==0};case 2:return function(t,e){return e%3==0};case 3:return function(t,e){return(t+e)%3==0};case 4:return function(t,e){return(Math.floor(t/2)+Math.floor(e/3))%2==0};case 5:return function(t,e){return t*e%2+t*e%3==0};case 6:return function(t,e){return(t*e%2+t*e%3)%2==0};case 7:return function(t,e){return(t*e%3+(t+e)%2)%2==0};default:throw"bad maskPattern:"+t}},o.getErrorCorrectPolynomial=function(t){for(var e=h([1],0),r=0;r<t;r+=1)e=e.multiply(h([1,u.gexp(r)],0));return e},o.getLengthInBits=function(t,e){if(1<=e&&e<10)switch(t){case 1:return 10;case 2:return 9;case 4:case 8:return 8;default:throw"mode:"+t}else if(e<27)switch(t){case 1:return 12;case 2:return 11;case 4:return 16;case 8:return 10;default:throw"mode:"+t}else{if(!(e<41))throw"type:"+e;switch(t){case 1:return 14;case 2:return 13;case 4:return 16;case 8:return 12;default:throw"mode:"+t}}},o.getLostPoint=function(t){for(var e=t.getModuleCount(),r=0,n=0;n<e;n+=1)for(var o=0;o<e;o+=1){for(var i=0,a=t.isDark(n,o),s=-1;s<=1;s+=1)if(!(n+s<0||e<=n+s))for(var u=-1;u<=1;u+=1)o+u<0||e<=o+u||0==s&&0==u||a==t.isDark(n+s,o+u)&&(i+=1);i>5&&(r+=3+i-5)}for(n=0;n<e-1;n+=1)for(o=0;o<e-1;o+=1){var h=0;t.isDark(n,o)&&(h+=1),t.isDark(n+1,o)&&(h+=1),t.isDark(n,o+1)&&(h+=1),t.isDark(n+1,o+1)&&(h+=1),0!=h&&4!=h||(r+=3)}for(n=0;n<e;n+=1)for(o=0;o<e-6;o+=1)t.isDark(n,o)&&!t.isDark(n,o+1)&&t.isDark(n,o+2)&&t.isDark(n,o+3)&&t.isDark(n,o+4)&&!t.isDark(n,o+5)&&t.isDark(n,o+6)&&(r+=40);for(o=0;o<e;o+=1)for(n=0;n<e-6;n+=1)t.isDark(n,o)&&!t.isDark(n+1,o)&&t.isDark(n+2,o)&&t.isDark(n+3,o)&&t.isDark(n+4,o)&&!t.isDark(n+5,o)&&t.isDark(n+6,o)&&(r+=40);var c=0;for(o=0;o<e;o+=1)for(n=0;n<e;n+=1)t.isDark(n,o)&&(c+=1);return r+Math.abs(100*c/e/e-50)/5*10},o),u=function(){for(var t=new Array(256),e=new Array(256),r=0;r<8;r+=1)t[r]=1<<r;for(r=8;r<256;r+=1)t[r]=t[r-4]^t[r-5]^t[r-6]^t[r-8];for(r=0;r<255;r+=1)e[t[r]]=r;return{glog:function(t){if(t<1)throw"glog("+t+")";return e[t]},gexp:function(e){for(;e<0;)e+=255;for(;e>=256;)e-=255;return t[e]}}}();function h(t,e){if(void 0===t.length)throw t.length+"/"+e;var r=function(){for(var r=0;r<t.length&&0==t[r];)r+=1;for(var n=new Array(t.length-r+e),o=0;o<t.length-r;o+=1)n[o]=t[o+r];return n}(),n={getAt:function(t){return r[t]},getLength:function(){return r.length},multiply:function(t){for(var e=new Array(n.getLength()+t.getLength()-1),r=0;r<n.getLength();r+=1)for(var o=0;o<t.getLength();o+=1)e[r+o]^=u.gexp(u.glog(n.getAt(r))+u.glog(t.getAt(o)));return h(e,0)},mod:function(t){if(n.getLength()-t.getLength()<0)return n;for(var e=u.glog(n.getAt(0))-u.glog(t.getAt(0)),r=new Array(n.getLength()),o=0;o<n.getLength();o+=1)r[o]=n.getAt(o);for(o=0;o<t.getLength();o+=1)r[o]^=u.gexp(u.glog(t.getAt(o))+e);return h(r,0).mod(t)}};return n}var c=function(){var t=[[1,26,19],[1,26,16],[1,26,13],[1,26,9],[1,44,34],[1,44,28],[1,44,22],[1,44,16],[1,70,55],[1,70,44],[2,35,17],[2,35,13],[1,100,80],[2,50,32],[2,50,24],[4,25,9],[1,134,108],[2,67,43],[2,33,15,2,34,16],[2,33,11,2,34,12],[2,86,68],[4,43,27],[4,43,19],[4,43,15],[2,98,78],[4,49,31],[2,32,14,4,33,15],[4,39,13,1,40,14],[2,121,97],[2,60,38,2,61,39],[4,40,18,2,41,19],[4,40,14,2,41,15],[2,146,116],[3,58,36,2,59,37],[4,36,16,4,37,17],[4,36,12,4,37,13],[2,86,68,2,87,69],[4,69,43,1,70,44],[6,43,19,2,44,20],[6,43,15,2,44,16],[4,101,81],[1,80,50,4,81,51],[4,50,22,4,51,23],[3,36,12,8,37,13],[2,116,92,2,117,93],[6,58,36,2,59,37],[4,46,20,6,47,21],[7,42,14,4,43,15],[4,133,107],[8,59,37,1,60,38],[8,44,20,4,45,21],[12,33,11,4,34,12],[3,145,115,1,146,116],[4,64,40,5,65,41],[11,36,16,5,37,17],[11,36,12,5,37,13],[5,109,87,1,110,88],[5,65,41,5,66,42],[5,54,24,7,55,25],[11,36,12,7,37,13],[5,122,98,1,123,99],[7,73,45,3,74,46],[15,43,19,2,44,20],[3,45,15,13,46,16],[1,135,107,5,136,108],[10,74,46,1,75,47],[1,50,22,15,51,23],[2,42,14,17,43,15],[5,150,120,1,151,121],[9,69,43,4,70,44],[17,50,22,1,51,23],[2,42,14,19,43,15],[3,141,113,4,142,114],[3,70,44,11,71,45],[17,47,21,4,48,22],[9,39,13,16,40,14],[3,135,107,5,136,108],[3,67,41,13,68,42],[15,54,24,5,55,25],[15,43,15,10,44,16],[4,144,116,4,145,117],[17,68,42],[17,50,22,6,51,23],[19,46,16,6,47,17],[2,139,111,7,140,112],[17,74,46],[7,54,24,16,55,25],[34,37,13],[4,151,121,5,152,122],[4,75,47,14,76,48],[11,54,24,14,55,25],[16,45,15,14,46,16],[6,147,117,4,148,118],[6,73,45,14,74,46],[11,54,24,16,55,25],[30,46,16,2,47,17],[8,132,106,4,133,107],[8,75,47,13,76,48],[7,54,24,22,55,25],[22,45,15,13,46,16],[10,142,114,2,143,115],[19,74,46,4,75,47],[28,50,22,6,51,23],[33,46,16,4,47,17],[8,152,122,4,153,123],[22,73,45,3,74,46],[8,53,23,26,54,24],[12,45,15,28,46,16],[3,147,117,10,148,118],[3,73,45,23,74,46],[4,54,24,31,55,25],[11,45,15,31,46,16],[7,146,116,7,147,117],[21,73,45,7,74,46],[1,53,23,37,54,24],[19,45,15,26,46,16],[5,145,115,10,146,116],[19,75,47,10,76,48],[15,54,24,25,55,25],[23,45,15,25,46,16],[13,145,115,3,146,116],[2,74,46,29,75,47],[42,54,24,1,55,25],[23,45,15,28,46,16],[17,145,115],[10,74,46,23,75,47],[10,54,24,35,55,25],[19,45,15,35,46,16],[17,145,115,1,146,116],[14,74,46,21,75,47],[29,54,24,19,55,25],[11,45,15,46,46,16],[13,145,115,6,146,116],[14,74,46,23,75,47],[44,54,24,7,55,25],[59,46,16,1,47,17],[12,151,121,7,152,122],[12,75,47,26,76,48],[39,54,24,14,55,25],[22,45,15,41,46,16],[6,151,121,14,152,122],[6,75,47,34,76,48],[46,54,24,10,55,25],[2,45,15,64,46,16],[17,152,122,4,153,123],[29,74,46,14,75,47],[49,54,24,10,55,25],[24,45,15,46,46,16],[4,152,122,18,153,123],[13,74,46,32,75,47],[48,54,24,14,55,25],[42,45,15,32,46,16],[20,147,117,4,148,118],[40,75,47,7,76,48],[43,54,24,22,55,25],[10,45,15,67,46,16],[19,148,118,6,149,119],[18,75,47,31,76,48],[34,54,24,34,55,25],[20,45,15,61,46,16]],e=function(t,e){var r={};return r.totalCount=t,r.dataCount=e,r},r={getRSBlocks:function(r,n){var o=function(e,r){switch(r){case a.L:return t[4*(e-1)+0];case a.M:return t[4*(e-1)+1];case a.Q:return t[4*(e-1)+2];case a.H:return t[4*(e-1)+3];default:return}}(r,n);if(void 0===o)throw"bad rs block @ typeNumber:"+r+"/errorCorrectionLevel:"+n;for(var i=o.length/3,s=[],u=0;u<i;u+=1)for(var h=o[3*u+0],c=o[3*u+1],l=o[3*u+2],d=0;d<h;d+=1)s.push(e(c,l));return s}};return r}(),l=function(){var t=[],e=0,r={getBuffer:function(){return t},getAt:function(e){var r=Math.floor(e/8);return 1==(t[r]>>>7-e%8&1)},put:function(t,e){for(var n=0;n<e;n+=1)r.putBit(1==(t>>>e-n-1&1))},getLengthInBits:function(){return e},putBit:function(r){var n=Math.floor(e/8);t.length<=n&&t.push(0),r&&(t[n]|=128>>>e%8),e+=1}};return r},d=function(t){var e=t,r={getMode:function(){return 1},getLength:function(t){return e.length},write:function(t){for(var r=e,o=0;o+2<r.length;)t.put(n(r.substring(o,o+3)),10),o+=3;o<r.length&&(r.length-o==1?t.put(n(r.substring(o,o+1)),4):r.length-o==2&&t.put(n(r.substring(o,o+2)),7))}},n=function(t){for(var e=0,r=0;r<t.length;r+=1)e=10*e+o(t.charAt(r));return e},o=function(t){if("0"<=t&&t<="9")return t.charCodeAt(0)-"0".charCodeAt(0);throw"illegal char :"+t};return r},f=function(t){var e=t,r={getMode:function(){return 2},getLength:function(t){return e.length},write:function(t){for(var r=e,o=0;o+1<r.length;)t.put(45*n(r.charAt(o))+n(r.charAt(o+1)),11),o+=2;o<r.length&&t.put(n(r.charAt(o)),6)}},n=function(t){if("0"<=t&&t<="9")return t.charCodeAt(0)-"0".charCodeAt(0);if("A"<=t&&t<="Z")return t.charCodeAt(0)-"A".charCodeAt(0)+10;switch(t){case" ":return 36;case"$":return 37;case"%":return 38;case"*":return 39;case"+":return 40;case"-":return 41;case".":return 42;case"/":return 43;case":":return 44;default:throw"illegal char :"+t}};return r},g=function(e){var r=t.stringToBytes(e);return{getMode:function(){return 4},getLength:function(t){return r.length},write:function(t){for(var e=0;e<r.length;e+=1)t.put(r[e],8)}}},p=function(e){var r=t.stringToBytesFuncs.SJIS;if(!r)throw"sjis not supported.";!function(t,e){var n=r("友");if(2!=n.length||38726!=(n[0]<<8|n[1]))throw"sjis not supported."}();var n=r(e);return{getMode:function(){return 8},getLength:function(t){return~~(n.length/2)},write:function(t){for(var e=n,r=0;r+1<e.length;){var o=(255&e[r])<<8|255&e[r+1];if(33088<=o&&o<=40956)o-=33088;else{if(!(57408<=o&&o<=60351))throw"illegal char at "+(r+1)+"/"+o;o-=49472}o=192*(o>>>8&255)+(255&o),t.put(o,13),r+=2}if(r<e.length)throw"illegal char at "+(r+1)}}},v=function(){var t=[],e={writeByte:function(e){t.push(255&e)},writeShort:function(t){e.writeByte(t),e.writeByte(t>>>8)},writeBytes:function(t,r,n){r=r||0,n=n||t.length;for(var o=0;o<n;o+=1)e.writeByte(t[o+r])},writeString:function(t){for(var r=0;r<t.length;r+=1)e.writeByte(t.charCodeAt(r))},toByteArray:function(){return t},toString:function(){var e="";e+="[";for(var r=0;r<t.length;r+=1)r>0&&(e+=","),e+=t[r];return e+"]"}};return e},w=function(t){var e=t,r=0,n=0,o=0,i={read:function(){for(;o<8;){if(r>=e.length){if(0==o)return-1;throw"unexpected end of file./"+o}var t=e.charAt(r);if(r+=1,"="==t)return o=0,-1;t.match(/^\s$/)||(n=n<<6|a(t.charCodeAt(0)),o+=6)}var i=n>>>o-8&255;return o-=8,i}},a=function(t){if(65<=t&&t<=90)return t-65;if(97<=t&&t<=122)return t-97+26;if(48<=t&&t<=57)return t-48+52;if(43==t)return 62;if(47==t)return 63;throw"c:"+t};return i},y=function(t,e,r){for(var n=function(t,e){var r=t,n=e,o=new Array(t*e),i={setPixel:function(t,e,n){o[e*r+t]=n},write:function(t){t.writeString("GIF87a"),t.writeShort(r),t.writeShort(n),t.writeByte(128),t.writeByte(0),t.writeByte(0),t.writeByte(0),t.writeByte(0),t.writeByte(0),t.writeByte(255),t.writeByte(255),t.writeByte(255),t.writeString(","),t.writeShort(0),t.writeShort(0),t.writeShort(r),t.writeShort(n),t.writeByte(0);var e=a(2);t.writeByte(2);for(var o=0;e.length-o>255;)t.writeByte(255),t.writeBytes(e,o,255),o+=255;t.writeByte(e.length-o),t.writeBytes(e,o,e.length-o),t.writeByte(0),t.writeString(";")}},a=function(t){for(var e=1<<t,r=1+(1<<t),n=t+1,i=s(),a=0;a<e;a+=1)i.add(String.fromCharCode(a));i.add(String.fromCharCode(e)),i.add(String.fromCharCode(r));var u,h,c,l=v(),d=(u=l,h=0,c=0,{write:function(t,e){if(t>>>e!=0)throw"length over";for(;h+e>=8;)u.writeByte(255&(t<<h|c)),e-=8-h,t>>>=8-h,c=0,h=0;c|=t<<h,h+=e},flush:function(){h>0&&u.writeByte(c)}});d.write(e,n);var f=0,g=String.fromCharCode(o[f]);for(f+=1;f<o.length;){var p=String.fromCharCode(o[f]);f+=1,i.contains(g+p)?g+=p:(d.write(i.indexOf(g),n),i.size()<4095&&(i.size()==1<<n&&(n+=1),i.add(g+p)),g=p)}return d.write(i.indexOf(g),n),d.write(r,n),d.flush(),l.toByteArray()},s=function(){var t={},e=0,r={add:function(n){if(r.contains(n))throw"dup key:"+n;t[n]=e,e+=1},size:function(){return e},indexOf:function(e){return t[e]},contains:function(e){return void 0!==t[e]}};return r};return i}(t,e),o=0;o<e;o+=1)for(var i=0;i<t;i+=1)n.setPixel(i,o,r(i,o));var a=v();n.write(a);for(var s=function(){var t=0,e=0,r=0,n="",o={},i=function(t){n+=String.fromCharCode(a(63&t))},a=function(t){if(t<0);else{if(t<26)return 65+t;if(t<52)return t-26+97;if(t<62)return t-52+48;if(62==t)return 43;if(63==t)return 47}throw"n:"+t};return o.writeByte=function(n){for(t=t<<8|255&n,e+=8,r+=1;e>=6;)i(t>>>e-6),e-=6},o.flush=function(){if(e>0&&(i(t<<6-e),t=0,e=0),r%3!=0)for(var o=3-r%3,a=0;a<o;a+=1)n+="="},o.toString=function(){return n},o}(),u=a.toByteArray(),h=0;h<u.length;h+=1)s.writeByte(u[h]);return s.flush(),"data:image/gif;base64,"+s};return t}();o.stringToBytesFuncs["UTF-8"]=function(t){return function(t){for(var e=[],r=0;r<t.length;r++){var n=t.charCodeAt(r);n<128?e.push(n):n<2048?e.push(192|n>>6,128|63&n):n<55296||n>=57344?e.push(224|n>>12,128|n>>6&63,128|63&n):(r++,n=65536+((1023&n)<<10|1023&t.charCodeAt(r)),e.push(240|n>>18,128|n>>12&63,128|n>>6&63,128|63&n))}return e}(t)},void 0===(n="function"==typeof(r=function(){return o})?r.apply(e,[]):r)||(t.exports=n)},676:(t,e,r)=>{"use strict";r.d(e,{default:()=>q});var n=function(){return(n=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)},o=function(){for(var t=0,e=0,r=arguments.length;e<r;e++)t+=arguments[e].length;var n=Array(t),o=0;for(e=0;e<r;e++)for(var i=arguments[e],a=0,s=i.length;a<s;a++,o++)n[o]=i[a];return n},i=function(t){return!!t&&"object"==typeof t&&!Array.isArray(t)};function a(t){for(var e=[],r=1;r<arguments.length;r++)e[r-1]=arguments[r];if(!e.length)return t;var s=e.shift();return void 0!==s&&i(t)&&i(s)?(t=n({},t),Object.keys(s).forEach((function(e){var r=t[e],n=s[e];Array.isArray(r)&&Array.isArray(n)?t[e]=n:i(r)&&i(n)?t[e]=a(Object.assign({},r),n):t[e]=n})),a.apply(void 0,o([t],e))):t}function s(t,e){var r=document.createElement("a");r.download=e,r.href=t,document.body.appendChild(r),r.click(),document.body.removeChild(r)}function u(t){return e=this,r=void 0,o=function(){return function(t,e){var r,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((o=(o=a.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=e.call(t,a)}catch(t){i=[6,t],n=0}finally{r=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}}(this,(function(e){return[2,new Promise((function(e){var r=new XMLHttpRequest;r.onload=function(){var t=new FileReader;t.onloadend=function(){e(t.result)},t.readAsDataURL(r.response)},r.open("GET",t),r.responseType="blob",r.send()}))]}))},new((n=void 0)||(n=Promise))((function(t,i){function a(t){try{u(o.next(t))}catch(t){i(t)}}function s(t){try{u(o.throw(t))}catch(t){i(t)}}function u(e){var r;e.done?t(e.value):(r=e.value,r instanceof n?r:new n((function(t){t(r)}))).then(a,s)}u((o=o.apply(e,r||[])).next())}));var e,r,n,o}const h={L:.07,M:.15,Q:.25,H:.3};var c=function(){return(c=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};const l=function(){function t(t){var e=t.svg,r=t.type;this._svg=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o;switch(this._type){case"dots":o=this._drawDot;break;case"classy":o=this._drawClassy;break;case"classy-rounded":o=this._drawClassyRounded;break;case"rounded":o=this._drawRounded;break;case"extra-rounded":o=this._drawExtraRounded;break;case"square":default:o=this._drawSquare}o.call(this,{x:t,y:e,size:r,getNeighbor:n})},t.prototype._rotateFigure=function(t){var e,r=t.x,n=t.y,o=t.size,i=t.rotation,a=void 0===i?0:i,s=r+o/2,u=n+o/2;(0,t.draw)(),null===(e=this._element)||void 0===e||e.setAttribute("transform","rotate("+180*a/Math.PI+","+s+","+u+")")},t.prototype._basicDot=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","circle"),e._element.setAttribute("cx",String(n+r/2)),e._element.setAttribute("cy",String(o+r/2)),e._element.setAttribute("r",String(r/2))}}))},t.prototype._basicSquare=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","rect"),e._element.setAttribute("x",String(n)),e._element.setAttribute("y",String(o)),e._element.setAttribute("width",String(r)),e._element.setAttribute("height",String(r))}}))},t.prototype._basicSideRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r/2+"a "+r/2+" "+r/2+", 0, 0, 0, 0 "+-r)}}))},t.prototype._basicCornerRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r+"v "+-r/2+"a "+r/2+" "+r/2+", 0, 0, 0, "+-r/2+" "+-r/2)}}))},t.prototype._basicCornerExtraRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r+"a "+r+" "+r+", 0, 0, 0, "+-r+" "+-r)}}))},t.prototype._basicCornersRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r/2+"a "+r/2+" "+r/2+", 0, 0, 0, "+r/2+" "+r/2+"h "+r/2+"v "+-r/2+"a "+r/2+" "+r/2+", 0, 0, 0, "+-r/2+" "+-r/2)}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size;this._basicDot({x:e,y:r,size:n,rotation:0})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size;this._basicSquare({x:e,y:r,size:n,rotation:0})},t.prototype._drawRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0,h=i+a+s+u;if(0!==h)if(h>2||i&&a||s&&u)this._basicSquare({x:e,y:r,size:n,rotation:0});else{if(2===h){var c=0;return i&&s?c=Math.PI/2:s&&a?c=Math.PI:a&&u&&(c=-Math.PI/2),void this._basicCornerRounded({x:e,y:r,size:n,rotation:c})}if(1===h)return c=0,s?c=Math.PI/2:a?c=Math.PI:u&&(c=-Math.PI/2),void this._basicSideRounded({x:e,y:r,size:n,rotation:c})}else this._basicDot({x:e,y:r,size:n,rotation:0})},t.prototype._drawExtraRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0,h=i+a+s+u;if(0!==h)if(h>2||i&&a||s&&u)this._basicSquare({x:e,y:r,size:n,rotation:0});else{if(2===h){var c=0;return i&&s?c=Math.PI/2:s&&a?c=Math.PI:a&&u&&(c=-Math.PI/2),void this._basicCornerExtraRounded({x:e,y:r,size:n,rotation:c})}if(1===h)return c=0,s?c=Math.PI/2:a?c=Math.PI:u&&(c=-Math.PI/2),void this._basicSideRounded({x:e,y:r,size:n,rotation:c})}else this._basicDot({x:e,y:r,size:n,rotation:0})},t.prototype._drawClassy=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0;0!==i+a+s+u?i||s?a||u?this._basicSquare({x:e,y:r,size:n,rotation:0}):this._basicCornerRounded({x:e,y:r,size:n,rotation:Math.PI/2}):this._basicCornerRounded({x:e,y:r,size:n,rotation:-Math.PI/2}):this._basicCornersRounded({x:e,y:r,size:n,rotation:Math.PI/2})},t.prototype._drawClassyRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0;0!==i+a+s+u?i||s?a||u?this._basicSquare({x:e,y:r,size:n,rotation:0}):this._basicCornerExtraRounded({x:e,y:r,size:n,rotation:Math.PI/2}):this._basicCornerExtraRounded({x:e,y:r,size:n,rotation:-Math.PI/2}):this._basicCornersRounded({x:e,y:r,size:n,rotation:Math.PI/2})},t}();var d=function(){return(d=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};const f=function(){function t(t){var e=t.svg,r=t.type;this._svg=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o;switch(this._type){case"square":o=this._drawSquare;break;case"extra-rounded":o=this._drawExtraRounded;break;case"dot":default:o=this._drawDot}o.call(this,{x:t,y:e,size:r,rotation:n})},t.prototype._rotateFigure=function(t){var e,r=t.x,n=t.y,o=t.size,i=t.rotation,a=void 0===i?0:i,s=r+o/2,u=n+o/2;(0,t.draw)(),null===(e=this._element)||void 0===e||e.setAttribute("transform","rotate("+180*a/Math.PI+","+s+","+u+")")},t.prototype._basicDot=function(t){var e=this,r=t.size,n=t.x,o=t.y,i=r/7;this._rotateFigure(d(d({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("clip-rule","evenodd"),e._element.setAttribute("d","M "+(n+r/2)+" "+o+"a "+r/2+" "+r/2+" 0 1 0 0.1 0zm 0 "+i+"a "+(r/2-i)+" "+(r/2-i)+" 0 1 1 -0.1 0Z")}}))},t.prototype._basicSquare=function(t){var e=this,r=t.size,n=t.x,o=t.y,i=r/7;this._rotateFigure(d(d({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("clip-rule","evenodd"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r+"v "+-r+"zM "+(n+i)+" "+(o+i)+"h "+(r-2*i)+"v "+(r-2*i)+"h "+(2*i-r)+"z")}}))},t.prototype._basicExtraRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y,i=r/7;this._rotateFigure(d(d({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("clip-rule","evenodd"),e._element.setAttribute("d","M "+n+" "+(o+2.5*i)+"v "+2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*i+" "+2.5*i+"h "+2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*i+" "+2.5*-i+"v "+-2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*-i+" "+2.5*-i+"h "+-2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*-i+" "+2.5*i+"M "+(n+2.5*i)+" "+(o+i)+"h "+2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*i+" "+1.5*i+"v "+2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*-i+" "+1.5*i+"h "+-2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*-i+" "+1.5*-i+"v "+-2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*i+" "+1.5*-i)}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicDot({x:e,y:r,size:n,rotation:o})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicSquare({x:e,y:r,size:n,rotation:o})},t.prototype._drawExtraRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicExtraRounded({x:e,y:r,size:n,rotation:o})},t}();var g=function(){return(g=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};const p=function(){function t(t){var e=t.svg,r=t.type;this._svg=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o;switch(this._type){case"square":o=this._drawSquare;break;case"dot":default:o=this._drawDot}o.call(this,{x:t,y:e,size:r,rotation:n})},t.prototype._rotateFigure=function(t){var e,r=t.x,n=t.y,o=t.size,i=t.rotation,a=void 0===i?0:i,s=r+o/2,u=n+o/2;(0,t.draw)(),null===(e=this._element)||void 0===e||e.setAttribute("transform","rotate("+180*a/Math.PI+","+s+","+u+")")},t.prototype._basicDot=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(g(g({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","circle"),e._element.setAttribute("cx",String(n+r/2)),e._element.setAttribute("cy",String(o+r/2)),e._element.setAttribute("r",String(r/2))}}))},t.prototype._basicSquare=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(g(g({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","rect"),e._element.setAttribute("x",String(n)),e._element.setAttribute("y",String(o)),e._element.setAttribute("width",String(r)),e._element.setAttribute("height",String(r))}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicDot({x:e,y:r,size:n,rotation:o})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicSquare({x:e,y:r,size:n,rotation:o})},t}(),v="circle";var w=function(t,e,r,n){return new(r||(r=Promise))((function(o,i){function a(t){try{u(n.next(t))}catch(t){i(t)}}function s(t){try{u(n.throw(t))}catch(t){i(t)}}function u(t){var e;t.done?o(t.value):(e=t.value,e instanceof r?e:new r((function(t){t(e)}))).then(a,s)}u((n=n.apply(t,e||[])).next())}))},y=function(t,e){var r,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((o=(o=a.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=e.call(t,a)}catch(t){i=[6,t],n=0}finally{r=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}},m=[[1,1,1,1,1,1,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,1,1,1,1,1,1]],b=[[0,0,0,0,0,0,0],[0,0,0,0,0,0,0],[0,0,1,1,1,0,0],[0,0,1,1,1,0,0],[0,0,1,1,1,0,0],[0,0,0,0,0,0,0],[0,0,0,0,0,0,0]];const _=function(){function t(t){this._element=document.createElementNS("http://www.w3.org/2000/svg","svg"),this._element.setAttribute("width",String(t.width)),this._element.setAttribute("height",String(t.height)),this._defs=document.createElementNS("http://www.w3.org/2000/svg","defs"),this._element.appendChild(this._defs),this._options=t}return Object.defineProperty(t.prototype,"width",{get:function(){return this._options.width},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"height",{get:function(){return this._options.height},enumerable:!1,configurable:!0}),t.prototype.getElement=function(){return this._element},t.prototype.drawQR=function(t){return w(this,void 0,void 0,(function(){var e,r,n,o,i,a,s,u,c,l,d=this;return y(this,(function(f){switch(f.label){case 0:return e=t.getModuleCount(),r=Math.min(this._options.width,this._options.height)-2*this._options.margin,n=this._options.shape===v?r/Math.sqrt(2):r,o=Math.floor(n/e),i={hideXDots:0,hideYDots:0,width:0,height:0},this._qr=t,this._options.image?[4,this.loadImage()]:[3,2];case 1:if(f.sent(),!this._image)return[2];a=this._options,s=a.imageOptions,u=a.qrOptions,c=s.imageSize*h[u.errorCorrectionLevel],l=Math.floor(c*e*e),i=function(t){var e=t.originalHeight,r=t.originalWidth,n=t.maxHiddenDots,o=t.maxHiddenAxisDots,i=t.dotSize,a={x:0,y:0},s={x:0,y:0};if(e<=0||r<=0||n<=0||i<=0)return{height:0,width:0,hideYDots:0,hideXDots:0};var u=e/r;return a.x=Math.floor(Math.sqrt(n/u)),a.x<=0&&(a.x=1),o&&o<a.x&&(a.x=o),a.x%2==0&&a.x--,s.x=a.x*i,a.y=1+2*Math.ceil((a.x*u-1)/2),s.y=Math.round(s.x*u),(a.y*a.x>n||o&&o<a.y)&&(o&&o<a.y?(a.y=o,a.y%2==0&&a.x--):a.y-=2,s.y=a.y*i,a.x=1+2*Math.ceil((a.y/u-1)/2),s.x=Math.round(s.y/u)),{height:s.y,width:s.x,hideYDots:a.y,hideXDots:a.x}}({originalWidth:this._image.width,originalHeight:this._image.height,maxHiddenDots:l,maxHiddenAxisDots:e-14,dotSize:o}),f.label=2;case 2:return this.drawBackground(),this.drawDots((function(t,r){var n,o,a,s,u,h;return!(d._options.imageOptions.hideBackgroundDots&&t>=(e-i.hideXDots)/2&&t<(e+i.hideXDots)/2&&r>=(e-i.hideYDots)/2&&r<(e+i.hideYDots)/2||(null===(n=m[t])||void 0===n?void 0:n[r])||(null===(o=m[t-e+7])||void 0===o?void 0:o[r])||(null===(a=m[t])||void 0===a?void 0:a[r-e+7])||(null===(s=b[t])||void 0===s?void 0:s[r])||(null===(u=b[t-e+7])||void 0===u?void 0:u[r])||(null===(h=b[t])||void 0===h?void 0:h[r-e+7]))})),this.drawCorners(),this._options.image?[4,this.drawImage({width:i.width,height:i.height,count:e,dotSize:o})]:[3,4];case 3:f.sent(),f.label=4;case 4:return[2]}}))}))},t.prototype.drawBackground=function(){var t,e,r,n=this._element,o=this._options;if(n){var i=null===(t=o.backgroundOptions)||void 0===t?void 0:t.gradient,a=null===(e=o.backgroundOptions)||void 0===e?void 0:e.color;if((i||a)&&this._createColor({options:i,color:a,additionalRotation:0,x:0,y:0,height:o.height,width:o.width,name:"background-color"}),null===(r=o.backgroundOptions)||void 0===r?void 0:r.round){var s=Math.min(o.width,o.height),u=document.createElementNS("http://www.w3.org/2000/svg","rect");this._backgroundClipPath=document.createElementNS("http://www.w3.org/2000/svg","clipPath"),this._backgroundClipPath.setAttribute("id","clip-path-background-color"),this._defs.appendChild(this._backgroundClipPath),u.setAttribute("x",String((o.width-s)/2)),u.setAttribute("y",String((o.height-s)/2)),u.setAttribute("width",String(s)),u.setAttribute("height",String(s)),u.setAttribute("rx",String(s/2*o.backgroundOptions.round)),this._backgroundClipPath.appendChild(u)}}},t.prototype.drawDots=function(t){var e,r,n=this;if(!this._qr)throw"QR code is not defined";var o=this._options,i=this._qr.getModuleCount();if(i>o.width||i>o.height)throw"The canvas is too small.";var a=Math.min(o.width,o.height)-2*o.margin,s=o.shape===v?a/Math.sqrt(2):a,u=Math.floor(s/i),h=Math.floor((o.width-i*u)/2),c=Math.floor((o.height-i*u)/2),d=new l({svg:this._element,type:o.dotsOptions.type});this._dotsClipPath=document.createElementNS("http://www.w3.org/2000/svg","clipPath"),this._dotsClipPath.setAttribute("id","clip-path-dot-color"),this._defs.appendChild(this._dotsClipPath),this._createColor({options:null===(e=o.dotsOptions)||void 0===e?void 0:e.gradient,color:o.dotsOptions.color,additionalRotation:0,x:0,y:0,height:o.height,width:o.width,name:"dot-color"});for(var f=function(e){for(var o=function(o){return t&&!t(e,o)?"continue":(null===(r=g._qr)||void 0===r?void 0:r.isDark(e,o))?(d.draw(h+e*u,c+o*u,u,(function(r,a){return!(e+r<0||o+a<0||e+r>=i||o+a>=i)&&!(t&&!t(e+r,o+a))&&!!n._qr&&n._qr.isDark(e+r,o+a)})),void(d._element&&g._dotsClipPath&&g._dotsClipPath.appendChild(d._element))):"continue"},a=0;a<i;a++)o(a)},g=this,p=0;p<i;p++)f(p);if(o.shape===v){var w=Math.floor((a/u-i)/2),y=i+2*w,m=h-w*u,b=c-w*u,_=[],x=Math.floor(y/2);for(p=0;p<y;p++){_[p]=[];for(var S=0;S<y;S++)p>=w-1&&p<=y-w&&S>=w-1&&S<=y-w||Math.sqrt((p-x)*(p-x)+(S-x)*(S-x))>x?_[p][S]=0:_[p][S]=this._qr.isDark(S-2*w<0?S:S>=i?S-2*w:S-w,p-2*w<0?p:p>=i?p-2*w:p-w)?1:0}var M=function(t){for(var e=function(e){if(!_[t][e])return"continue";d.draw(m+t*u,b+e*u,u,(function(r,n){var o;return!!(null===(o=_[t+r])||void 0===o?void 0:o[e+n])})),d._element&&C._dotsClipPath&&C._dotsClipPath.appendChild(d._element)},r=0;r<y;r++)e(r)},C=this;for(p=0;p<y;p++)M(p)}},t.prototype.drawCorners=function(){var t=this;if(!this._qr)throw"QR code is not defined";var e=this._element,r=this._options;if(!e)throw"Element code is not defined";var n=this._qr.getModuleCount(),o=Math.min(r.width,r.height)-2*r.margin,i=r.shape===v?o/Math.sqrt(2):o,a=Math.floor(i/n),s=7*a,u=3*a,h=Math.floor((r.width-n*a)/2),c=Math.floor((r.height-n*a)/2);[[0,0,0],[1,0,Math.PI/2],[0,1,-Math.PI/2]].forEach((function(e){var o,i,d,g,v,w,y,_,x,S,M,C,A=e[0],k=e[1],O=e[2],D=h+A*a*(n-7),P=c+k*a*(n-7),z=t._dotsClipPath,B=t._dotsClipPath;if(((null===(o=r.cornersSquareOptions)||void 0===o?void 0:o.gradient)||(null===(i=r.cornersSquareOptions)||void 0===i?void 0:i.color))&&((z=document.createElementNS("http://www.w3.org/2000/svg","clipPath")).setAttribute("id","clip-path-corners-square-color-"+A+"-"+k),t._defs.appendChild(z),t._cornersSquareClipPath=t._cornersDotClipPath=B=z,t._createColor({options:null===(d=r.cornersSquareOptions)||void 0===d?void 0:d.gradient,color:null===(g=r.cornersSquareOptions)||void 0===g?void 0:g.color,additionalRotation:O,x:D,y:P,height:s,width:s,name:"corners-square-color-"+A+"-"+k})),null===(v=r.cornersSquareOptions)||void 0===v?void 0:v.type){var q=new f({svg:t._element,type:r.cornersSquareOptions.type});q.draw(D,P,s,O),q._element&&z&&z.appendChild(q._element)}else for(var I=new l({svg:t._element,type:r.dotsOptions.type}),E=function(t){for(var e=function(e){if(!(null===(w=m[t])||void 0===w?void 0:w[e]))return"continue";I.draw(D+t*a,P+e*a,a,(function(r,n){var o;return!!(null===(o=m[t+r])||void 0===o?void 0:o[e+n])})),I._element&&z&&z.appendChild(I._element)},r=0;r<m[t].length;r++)e(r)},L=0;L<m.length;L++)E(L);if(((null===(y=r.cornersDotOptions)||void 0===y?void 0:y.gradient)||(null===(_=r.cornersDotOptions)||void 0===_?void 0:_.color))&&((B=document.createElementNS("http://www.w3.org/2000/svg","clipPath")).setAttribute("id","clip-path-corners-dot-color-"+A+"-"+k),t._defs.appendChild(B),t._cornersDotClipPath=B,t._createColor({options:null===(x=r.cornersDotOptions)||void 0===x?void 0:x.gradient,color:null===(S=r.cornersDotOptions)||void 0===S?void 0:S.color,additionalRotation:O,x:D+2*a,y:P+2*a,height:u,width:u,name:"corners-dot-color-"+A+"-"+k})),null===(M=r.cornersDotOptions)||void 0===M?void 0:M.type){var R=new p({svg:t._element,type:r.cornersDotOptions.type});R.draw(D+2*a,P+2*a,u,O),R._element&&B&&B.appendChild(R._element)}else{I=new l({svg:t._element,type:r.dotsOptions.type});var N=function(t){for(var e=function(e){if(!(null===(C=b[t])||void 0===C?void 0:C[e]))return"continue";I.draw(D+t*a,P+e*a,a,(function(r,n){var o;return!!(null===(o=b[t+r])||void 0===o?void 0:o[e+n])})),I._element&&B&&B.appendChild(I._element)},r=0;r<b[t].length;r++)e(r)};for(L=0;L<b.length;L++)N(L)}}))},t.prototype.loadImage=function(){var t=this;return new Promise((function(e,r){var n=t._options,o=new Image;if(!n.image)return r("Image is not defined");"string"==typeof n.imageOptions.crossOrigin&&(o.crossOrigin=n.imageOptions.crossOrigin),t._image=o,o.onload=function(){e()},o.src=n.image}))},t.prototype.drawImage=function(t){var e=t.width,r=t.height,n=t.count,o=t.dotSize;return w(this,void 0,void 0,(function(){var t,i,a,s,h,c,l,d,f;return y(this,(function(g){switch(g.label){case 0:return t=this._options,i=Math.floor((t.width-n*o)/2),a=Math.floor((t.height-n*o)/2),s=i+t.imageOptions.margin+(n*o-e)/2,h=a+t.imageOptions.margin+(n*o-r)/2,c=e-2*t.imageOptions.margin,l=r-2*t.imageOptions.margin,(d=document.createElementNS("http://www.w3.org/2000/svg","image")).setAttribute("x",String(s)),d.setAttribute("y",String(h)),d.setAttribute("width",c+"px"),d.setAttribute("height",l+"px"),[4,u(t.image||"")];case 1:return f=g.sent(),d.setAttribute("href",f||""),this._element.appendChild(d),[2]}}))}))},t.prototype._createColor=function(t){var e=t.options,r=t.color,n=t.additionalRotation,o=t.x,i=t.y,a=t.height,s=t.width,u=t.name,h=s>a?s:a,c=document.createElementNS("http://www.w3.org/2000/svg","rect");if(c.setAttribute("x",String(o)),c.setAttribute("y",String(i)),c.setAttribute("height",String(a)),c.setAttribute("width",String(s)),c.setAttribute("clip-path","url('#clip-path-"+u+"')"),e){var l;if("radial"===e.type)(l=document.createElementNS("http://www.w3.org/2000/svg","radialGradient")).setAttribute("id",u),l.setAttribute("gradientUnits","userSpaceOnUse"),l.setAttribute("fx",String(o+s/2)),l.setAttribute("fy",String(i+a/2)),l.setAttribute("cx",String(o+s/2)),l.setAttribute("cy",String(i+a/2)),l.setAttribute("r",String(h/2));else{var d=((e.rotation||0)+n)%(2*Math.PI),f=(d+2*Math.PI)%(2*Math.PI),g=o+s/2,p=i+a/2,v=o+s/2,w=i+a/2;f>=0&&f<=.25*Math.PI||f>1.75*Math.PI&&f<=2*Math.PI?(g-=s/2,p-=a/2*Math.tan(d),v+=s/2,w+=a/2*Math.tan(d)):f>.25*Math.PI&&f<=.75*Math.PI?(p-=a/2,g-=s/2/Math.tan(d),w+=a/2,v+=s/2/Math.tan(d)):f>.75*Math.PI&&f<=1.25*Math.PI?(g+=s/2,p+=a/2*Math.tan(d),v-=s/2,w-=a/2*Math.tan(d)):f>1.25*Math.PI&&f<=1.75*Math.PI&&(p+=a/2,g+=s/2/Math.tan(d),w-=a/2,v-=s/2/Math.tan(d)),(l=document.createElementNS("http://www.w3.org/2000/svg","linearGradient")).setAttribute("id",u),l.setAttribute("gradientUnits","userSpaceOnUse"),l.setAttribute("x1",String(Math.round(g))),l.setAttribute("y1",String(Math.round(p))),l.setAttribute("x2",String(Math.round(v))),l.setAttribute("y2",String(Math.round(w)))}e.colorStops.forEach((function(t){var e=t.offset,r=t.color,n=document.createElementNS("http://www.w3.org/2000/svg","stop");n.setAttribute("offset",100*e+"%"),n.setAttribute("stop-color",r),l.appendChild(n)})),c.setAttribute("fill","url('#"+u+"')"),this._defs.appendChild(l)}else r&&c.setAttribute("fill",r);this._element.appendChild(c)},t}(),x="canvas";for(var S={},M=0;M<=40;M++)S[M]=M;const C={type:x,shape:"square",width:300,height:300,data:"",margin:0,qrOptions:{typeNumber:S[0],mode:void 0,errorCorrectionLevel:"Q"},imageOptions:{hideBackgroundDots:!0,imageSize:.4,crossOrigin:void 0,margin:0},dotsOptions:{type:"square",color:"#000"},backgroundOptions:{round:0,color:"#fff"}};var A=function(){return(A=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};function k(t){var e=A({},t);if(!e.colorStops||!e.colorStops.length)throw"Field 'colorStops' is required in gradient";return e.rotation?e.rotation=Number(e.rotation):e.rotation=0,e.colorStops=e.colorStops.map((function(t){return A(A({},t),{offset:Number(t.offset)})})),e}function O(t){var e=A({},t);return e.width=Number(e.width),e.height=Number(e.height),e.margin=Number(e.margin),e.imageOptions=A(A({},e.imageOptions),{hideBackgroundDots:Boolean(e.imageOptions.hideBackgroundDots),imageSize:Number(e.imageOptions.imageSize),margin:Number(e.imageOptions.margin)}),e.margin>Math.min(e.width,e.height)&&(e.margin=Math.min(e.width,e.height)),e.dotsOptions=A({},e.dotsOptions),e.dotsOptions.gradient&&(e.dotsOptions.gradient=k(e.dotsOptions.gradient)),e.cornersSquareOptions&&(e.cornersSquareOptions=A({},e.cornersSquareOptions),e.cornersSquareOptions.gradient&&(e.cornersSquareOptions.gradient=k(e.cornersSquareOptions.gradient))),e.cornersDotOptions&&(e.cornersDotOptions=A({},e.cornersDotOptions),e.cornersDotOptions.gradient&&(e.cornersDotOptions.gradient=k(e.cornersDotOptions.gradient))),e.backgroundOptions&&(e.backgroundOptions=A({},e.backgroundOptions),e.backgroundOptions.gradient&&(e.backgroundOptions.gradient=k(e.backgroundOptions.gradient))),e}var D=r(192),P=r.n(D),z=function(t,e,r,n){return new(r||(r=Promise))((function(o,i){function a(t){try{u(n.next(t))}catch(t){i(t)}}function s(t){try{u(n.throw(t))}catch(t){i(t)}}function u(t){var e;t.done?o(t.value):(e=t.value,e instanceof r?e:new r((function(t){t(e)}))).then(a,s)}u((n=n.apply(t,e||[])).next())}))},B=function(t,e){var r,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((o=(o=a.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=e.call(t,a)}catch(t){i=[6,t],n=0}finally{r=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}};const q=function(){function t(t){this._options=t?O(a(C,t)):C,this.update()}return t._clearContainer=function(t){t&&(t.innerHTML="")},t.prototype._setupSvg=function(){var t=this;if(this._qr){var e=new _(this._options);this._svg=e.getElement(),this._svgDrawingPromise=e.drawQR(this._qr).then((function(){var r;t._svg&&(null===(r=t._extension)||void 0===r||r.call(t,e.getElement(),t._options))}))}},t.prototype._setupCanvas=function(){var t,e=this;this._qr&&(this._canvas=document.createElement("canvas"),this._canvas.width=this._options.width,this._canvas.height=this._options.height,this._setupSvg(),this._canvasDrawingPromise=null===(t=this._svgDrawingPromise)||void 0===t?void 0:t.then((function(){if(e._svg){var t=e._svg,r=(new XMLSerializer).serializeToString(t),n="data:image/svg+xml;base64,"+btoa(r),o=new Image;return new Promise((function(t){o.onload=function(){var r,n;null===(n=null===(r=e._canvas)||void 0===r?void 0:r.getContext("2d"))||void 0===n||n.drawImage(o,0,0),t()},o.src=n}))}})))},t.prototype._getElement=function(t){return void 0===t&&(t="png"),z(this,void 0,void 0,(function(){return B(this,(function(e){switch(e.label){case 0:if(!this._qr)throw"QR code is empty";return"svg"!==t.toLowerCase()?[3,2]:(this._svg&&this._svgDrawingPromise||this._setupSvg(),[4,this._svgDrawingPromise]);case 1:return e.sent(),[2,this._svg];case 2:return this._canvas&&this._canvasDrawingPromise||this._setupCanvas(),[4,this._canvasDrawingPromise];case 3:return e.sent(),[2,this._canvas]}}))}))},t.prototype.update=function(e){t._clearContainer(this._container),this._options=e?O(a(this._options,e)):this._options,this._options.data&&(this._qr=P()(this._options.qrOptions.typeNumber,this._options.qrOptions.errorCorrectionLevel),this._qr.addData(this._options.data,this._options.qrOptions.mode||function(t){switch(!0){case/^[0-9]*$/.test(t):return"Numeric";case/^[0-9A-Z $%*+\-./:]*$/.test(t):return"Alphanumeric";default:return"Byte"}}(this._options.data)),this._qr.make(),this._options.type===x?this._setupCanvas():this._setupSvg(),this.append(this._container))},t.prototype.append=function(t){if(t){if("function"!=typeof t.appendChild)throw"Container should be a single DOM node";this._options.type===x?this._canvas&&t.appendChild(this._canvas):this._svg&&t.appendChild(this._svg),this._container=t}},t.prototype.applyExtension=function(t){if(!t)throw"Extension function should be defined.";this._extension=t,this.update()},t.prototype.deleteExtension=function(){this._extension=void 0,this.update()},t.prototype.getRawData=function(t){return void 0===t&&(t="png"),z(this,void 0,void 0,(function(){var e,r,n;return B(this,(function(o){switch(o.label){case 0:if(!this._qr)throw"QR code is empty";return[4,this._getElement(t)];case 1:return(e=o.sent())?"svg"===t.toLowerCase()?(r=new XMLSerializer,n=r.serializeToString(e),[2,new Blob(['<?xml version="1.0" standalone="no"?>\r\n'+n],{type:"image/svg+xml"})]):[2,new Promise((function(r){return e.toBlob(r,"image/"+t,1)}))]:[2,null]}}))}))},t.prototype.download=function(t){return z(this,void 0,void 0,(function(){var e,r,n,o,i;return B(this,(function(a){switch(a.label){case 0:if(!this._qr)throw"QR code is empty";return e="png",r="qr","string"==typeof t?(e=t,console.warn("Extension is deprecated as argument for 'download' method, please pass object { name: '...', extension: '...' } as argument")):"object"==typeof t&&null!==t&&(t.name&&(r=t.name),t.extension&&(e=t.extension)),[4,this._getElement(e)];case 1:return(n=a.sent())?("svg"===e.toLowerCase()?(o=new XMLSerializer,i='<?xml version="1.0" standalone="no"?>\r\n'+(i=o.serializeToString(n)),s("data:image/svg+xml;charset=utf-8,"+encodeURIComponent(i),r+".svg")):s(n.toDataURL("image/"+e),r+"."+e),[2]):[2]}}))}))},t}()}},e={};function r(n){if(e[n])return e[n].exports;var o=e[n]={exports:{}};return t[n](o,o.exports,r),o.exports}return r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r(676)})().default}));
|
|
8322
8458
|
|
|
8323
|
-
},{}]},{},[
|
|
8459
|
+
},{}]},{},[14])(14)
|
|
8324
8460
|
});
|