@plattar/plattar-ar-adapter 1.115.2 → 1.116.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 +1059 -814
- package/build/es2015/plattar-ar-adapter.min.js +1 -1
- package/build/es2019/plattar-ar-adapter.js +399 -245
- package/build/es2019/plattar-ar-adapter.min.js +1 -1
- package/dist/ar/product-ar.d.ts +1 -1
- package/dist/ar/product-ar.js +29 -21
- package/dist/util/util.d.ts +0 -1
- package/dist/util/util.js +0 -15
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +4 -3
- package/dist/analytics/analytics.d.ts +0 -10
- package/dist/analytics/analytics.js +0 -92
- package/dist/util/basic-http.d.ts +0 -6
- package/dist/util/basic-http.js +0 -38
|
@@ -1,100 +1,6 @@
|
|
|
1
1
|
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.PlattarARAdapter = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
|
2
2
|
"use strict";
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
const util_1 = require("../util/util");
|
|
5
|
-
const plattar_api_1 = require("@plattar/plattar-api");
|
|
6
|
-
class Analytics {
|
|
7
|
-
constructor() {
|
|
8
|
-
this._map = new Map();
|
|
9
|
-
this.push("source", "embed");
|
|
10
|
-
this.push("pageTitle", document.title);
|
|
11
|
-
this.push("pageURL", location.href);
|
|
12
|
-
this.push("referrer", document.referrer);
|
|
13
|
-
this.push("user_id", this.getUserID());
|
|
14
|
-
}
|
|
15
|
-
track(dataSet = null) {
|
|
16
|
-
this._send("track", dataSet);
|
|
17
|
-
}
|
|
18
|
-
pageview(dataSet = null) {
|
|
19
|
-
this._send("pageview", dataSet);
|
|
20
|
-
}
|
|
21
|
-
_send(event, dataSet = null) {
|
|
22
|
-
const url = plattar_api_1.Server.location().analytics;
|
|
23
|
-
const data = dataSet || {};
|
|
24
|
-
const dims = Object.fromEntries(this._map);
|
|
25
|
-
const cData = Object.assign(data, dims);
|
|
26
|
-
const analytic = {
|
|
27
|
-
event: event,
|
|
28
|
-
origin: plattar_api_1.Server.location().type,
|
|
29
|
-
application_id: cData.applicationId,
|
|
30
|
-
data: cData
|
|
31
|
-
};
|
|
32
|
-
// NOTE - Consider switching this to navigator.sendBeacon which is designed
|
|
33
|
-
// for sending analytics data even when page is unloaded
|
|
34
|
-
// see https://stackoverflow.com/questions/40523469/navigator-sendbeacon-to-pass-header-information
|
|
35
|
-
// see https://developer.mozilla.org/en-US/docs/Web/API/Beacon_API
|
|
36
|
-
try {
|
|
37
|
-
const xmlhttp = new XMLHttpRequest();
|
|
38
|
-
xmlhttp.open("POST", url);
|
|
39
|
-
xmlhttp.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
|
|
40
|
-
xmlhttp.send(JSON.stringify(analytic));
|
|
41
|
-
}
|
|
42
|
-
catch (err) {
|
|
43
|
-
console.error("Analytics.send(" + event + ") - Error during POST - " + err);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
push(key, value) {
|
|
47
|
-
this._map.set(key, value);
|
|
48
|
-
}
|
|
49
|
-
getUserID() {
|
|
50
|
-
const key = "plattar_user_id";
|
|
51
|
-
let userID = null;
|
|
52
|
-
try {
|
|
53
|
-
userID = localStorage.getItem(key);
|
|
54
|
-
}
|
|
55
|
-
catch (err) {
|
|
56
|
-
userID = util_1.Util.generateUUID();
|
|
57
|
-
// try storing if just generated
|
|
58
|
-
try {
|
|
59
|
-
localStorage.setItem(key, userID);
|
|
60
|
-
}
|
|
61
|
-
catch (_err) { /* silent */ }
|
|
62
|
-
}
|
|
63
|
-
if (!userID) {
|
|
64
|
-
userID = util_1.Util.generateUUID();
|
|
65
|
-
// try storing if just generated
|
|
66
|
-
try {
|
|
67
|
-
localStorage.setItem(key, userID);
|
|
68
|
-
}
|
|
69
|
-
catch (_err) { /*silent */ }
|
|
70
|
-
}
|
|
71
|
-
return userID;
|
|
72
|
-
}
|
|
73
|
-
startRecordEngagement() {
|
|
74
|
-
let time;
|
|
75
|
-
const handlePageHide = () => {
|
|
76
|
-
if (document.visibilityState === "hidden") {
|
|
77
|
-
time = new Date();
|
|
78
|
-
}
|
|
79
|
-
else {
|
|
80
|
-
const time2 = new Date();
|
|
81
|
-
const diff = time2.getTime() - time.getTime();
|
|
82
|
-
this.track({
|
|
83
|
-
eventAction: "View Time",
|
|
84
|
-
viewTime: diff,
|
|
85
|
-
eventLabel: diff
|
|
86
|
-
});
|
|
87
|
-
document.removeEventListener("visibilitychange", handlePageHide, false);
|
|
88
|
-
}
|
|
89
|
-
};
|
|
90
|
-
document.addEventListener("visibilitychange", handlePageHide, false);
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
exports.default = Analytics;
|
|
94
|
-
|
|
95
|
-
},{"../util/util":8,"@plattar/plattar-api":29}],2:[function(require,module,exports){
|
|
96
|
-
"use strict";
|
|
97
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
98
4
|
exports.ConfiguratorAR = void 0;
|
|
99
5
|
const launcher_ar_1 = require("./launcher-ar");
|
|
100
6
|
/**
|
|
@@ -113,7 +19,7 @@ class ConfiguratorAR extends launcher_ar_1.LauncherAR {
|
|
|
113
19
|
}
|
|
114
20
|
exports.ConfiguratorAR = ConfiguratorAR;
|
|
115
21
|
|
|
116
|
-
},{"./launcher-ar":
|
|
22
|
+
},{"./launcher-ar":2}],2:[function(require,module,exports){
|
|
117
23
|
"use strict";
|
|
118
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
119
25
|
exports.LauncherAR = void 0;
|
|
@@ -122,7 +28,7 @@ class LauncherAR {
|
|
|
122
28
|
}
|
|
123
29
|
exports.LauncherAR = LauncherAR;
|
|
124
30
|
|
|
125
|
-
},{}],
|
|
31
|
+
},{}],3:[function(require,module,exports){
|
|
126
32
|
"use strict";
|
|
127
33
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
128
34
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -130,7 +36,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
130
36
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
131
37
|
exports.ProductAR = void 0;
|
|
132
38
|
const plattar_api_1 = require("@plattar/plattar-api");
|
|
133
|
-
const
|
|
39
|
+
const plattar_analytics_1 = require("@plattar/plattar-analytics");
|
|
134
40
|
const util_1 = require("../util/util");
|
|
135
41
|
const quicklook_viewer_1 = __importDefault(require("../viewers/quicklook-viewer"));
|
|
136
42
|
const reality_viewer_1 = __importDefault(require("../viewers/reality-viewer"));
|
|
@@ -142,12 +48,13 @@ const launcher_ar_1 = require("./launcher-ar");
|
|
|
142
48
|
class ProductAR extends launcher_ar_1.LauncherAR {
|
|
143
49
|
constructor(productID = null, variationID = null) {
|
|
144
50
|
super();
|
|
51
|
+
// analytics instance
|
|
52
|
+
this._analytics = null;
|
|
145
53
|
if (!productID) {
|
|
146
54
|
throw new Error("ProductAR.constructor(productID, variationID) - productID must be defined");
|
|
147
55
|
}
|
|
148
56
|
this._productID = productID;
|
|
149
57
|
this._variationID = variationID ? variationID : "default";
|
|
150
|
-
this._analytics = new analytics_1.default();
|
|
151
58
|
this._ar = null;
|
|
152
59
|
}
|
|
153
60
|
get productID() {
|
|
@@ -157,27 +64,32 @@ class ProductAR extends launcher_ar_1.LauncherAR {
|
|
|
157
64
|
return this._variationID;
|
|
158
65
|
}
|
|
159
66
|
_setupAnalytics(product, variation) {
|
|
160
|
-
|
|
67
|
+
let analytics = null;
|
|
161
68
|
const scene = product.relationships.find(plattar_api_1.Scene);
|
|
162
69
|
// setup scene stuff (if any)
|
|
163
70
|
if (scene) {
|
|
164
|
-
analytics.
|
|
165
|
-
analytics.
|
|
71
|
+
analytics = new plattar_analytics_1.Analytics(scene.attributes.application_id);
|
|
72
|
+
analytics.origin = plattar_api_1.Server.location().type;
|
|
73
|
+
this._analytics = analytics;
|
|
74
|
+
analytics.data.push("sceneId", scene.id);
|
|
75
|
+
analytics.data.push("sceneTitle", scene.attributes.title);
|
|
166
76
|
const application = scene.relationships.find(plattar_api_1.Project);
|
|
167
77
|
// setup application stuff (if any)
|
|
168
78
|
if (application) {
|
|
169
|
-
analytics.push("applicationId", application.id);
|
|
170
|
-
analytics.push("applicationTitle", application.attributes.title);
|
|
79
|
+
analytics.data.push("applicationId", application.id);
|
|
80
|
+
analytics.data.push("applicationTitle", application.attributes.title);
|
|
171
81
|
}
|
|
172
82
|
}
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
83
|
+
if (analytics) {
|
|
84
|
+
// set product stuff
|
|
85
|
+
analytics.data.push("productId", product.id);
|
|
86
|
+
analytics.data.push("productTitle", product.attributes.title);
|
|
87
|
+
analytics.data.push("productSKU", product.attributes.sku);
|
|
88
|
+
// set variation stuff
|
|
89
|
+
analytics.data.push("variationId", variation.id);
|
|
90
|
+
analytics.data.push("variationTitle", variation.attributes.title);
|
|
91
|
+
analytics.data.push("variationSKU", variation.attributes.sku);
|
|
92
|
+
}
|
|
181
93
|
}
|
|
182
94
|
/**
|
|
183
95
|
* Initialise the ProductAR instance. This returns a Promise that resolves
|
|
@@ -269,19 +181,21 @@ class ProductAR extends launcher_ar_1.LauncherAR {
|
|
|
269
181
|
if (!this._ar) {
|
|
270
182
|
throw new Error("ProductAR.start() - cannot proceed as AR instance is null");
|
|
271
183
|
}
|
|
184
|
+
const analytics = this._analytics;
|
|
185
|
+
if (analytics) {
|
|
186
|
+
analytics.data.push("device", this._ar.device);
|
|
187
|
+
analytics.data.push("eventCategory", this._ar.nodeType);
|
|
188
|
+
analytics.data.push("eventAction", "Start Augment");
|
|
189
|
+
analytics.write();
|
|
190
|
+
analytics.startRecordEngagement();
|
|
191
|
+
}
|
|
272
192
|
// this was initialised via the init() function
|
|
273
193
|
this._ar.start();
|
|
274
|
-
this._analytics.track({
|
|
275
|
-
device: this._ar.device,
|
|
276
|
-
eventCategory: this._ar.nodeType,
|
|
277
|
-
eventAction: "Start Augment"
|
|
278
|
-
});
|
|
279
|
-
this._analytics.startRecordEngagement();
|
|
280
194
|
}
|
|
281
195
|
}
|
|
282
196
|
exports.ProductAR = ProductAR;
|
|
283
197
|
|
|
284
|
-
},{"../
|
|
198
|
+
},{"../util/util":7,"../viewers/quicklook-viewer":10,"../viewers/reality-viewer":11,"../viewers/scene-viewer":12,"./launcher-ar":2,"@plattar/plattar-analytics":30,"@plattar/plattar-api":34}],4:[function(require,module,exports){
|
|
285
199
|
"use strict";
|
|
286
200
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
287
201
|
exports.SceneAR = void 0;
|
|
@@ -302,7 +216,7 @@ class SceneAR extends launcher_ar_1.LauncherAR {
|
|
|
302
216
|
}
|
|
303
217
|
exports.SceneAR = SceneAR;
|
|
304
218
|
|
|
305
|
-
},{"./launcher-ar":
|
|
219
|
+
},{"./launcher-ar":2}],5:[function(require,module,exports){
|
|
306
220
|
"use strict";
|
|
307
221
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
308
222
|
const plattar_api_1 = require("@plattar/plattar-api");
|
|
@@ -506,7 +420,7 @@ class PlattarEmbed extends HTMLElement {
|
|
|
506
420
|
}
|
|
507
421
|
exports.default = PlattarEmbed;
|
|
508
422
|
|
|
509
|
-
},{"../ar/product-ar":
|
|
423
|
+
},{"../ar/product-ar":3,"@plattar/plattar-api":34}],6:[function(require,module,exports){
|
|
510
424
|
"use strict";
|
|
511
425
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
512
426
|
if (k2 === undefined) k2 = k;
|
|
@@ -550,14 +464,10 @@ if (customElements) {
|
|
|
550
464
|
}
|
|
551
465
|
console.log("using @plattar/plattar-ar-adapter v" + version_1.default);
|
|
552
466
|
|
|
553
|
-
},{"./ar/configurator-ar":
|
|
467
|
+
},{"./ar/configurator-ar":1,"./ar/product-ar":3,"./ar/scene-ar":4,"./embed/plattar-embed":5,"./util/util":7,"./version":8,"@plattar/plattar-qrcode":99,"@plattar/plattar-web":111}],7:[function(require,module,exports){
|
|
554
468
|
"use strict";
|
|
555
469
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
556
470
|
exports.Util = void 0;
|
|
557
|
-
const _lut = [];
|
|
558
|
-
for (let i = 0; i < 256; i++) {
|
|
559
|
-
_lut[i] = (i < 16 ? '0' : '') + (i).toString(16);
|
|
560
|
-
}
|
|
561
471
|
/**
|
|
562
472
|
* Static Utility Functions
|
|
563
473
|
*/
|
|
@@ -607,17 +517,6 @@ class Util {
|
|
|
607
517
|
}
|
|
608
518
|
return false;
|
|
609
519
|
}
|
|
610
|
-
static generateUUID() {
|
|
611
|
-
const d0 = Math.random() * 0xffffffff | 0;
|
|
612
|
-
const d1 = Math.random() * 0xffffffff | 0;
|
|
613
|
-
const d2 = Math.random() * 0xffffffff | 0;
|
|
614
|
-
const d3 = Math.random() * 0xffffffff | 0;
|
|
615
|
-
const uuid = _lut[d0 & 0xff] + _lut[d0 >> 8 & 0xff] + _lut[d0 >> 16 & 0xff] + _lut[d0 >> 24 & 0xff] + '-' +
|
|
616
|
-
_lut[d1 & 0xff] + _lut[d1 >> 8 & 0xff] + '-' + _lut[d1 >> 16 & 0x0f | 0x40] + _lut[d1 >> 24 & 0xff] + '-' +
|
|
617
|
-
_lut[d2 & 0x3f | 0x80] + _lut[d2 >> 8 & 0xff] + '-' + _lut[d2 >> 16 & 0xff] + _lut[d2 >> 24 & 0xff] +
|
|
618
|
-
_lut[d3 & 0xff] + _lut[d3 >> 8 & 0xff] + _lut[d3 >> 16 & 0xff] + _lut[d3 >> 24 & 0xff];
|
|
619
|
-
return uuid.toLowerCase();
|
|
620
|
-
}
|
|
621
520
|
static getIOSVersion() {
|
|
622
521
|
if (/iP(hone|od|ad)/.test(navigator.platform)) {
|
|
623
522
|
const v = (navigator.appVersion).match(/OS (\d+)_(\d+)_?(\d+)?/);
|
|
@@ -643,12 +542,12 @@ class Util {
|
|
|
643
542
|
}
|
|
644
543
|
exports.Util = Util;
|
|
645
544
|
|
|
646
|
-
},{}],
|
|
545
|
+
},{}],8:[function(require,module,exports){
|
|
647
546
|
"use strict";
|
|
648
547
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
649
|
-
exports.default = "1.
|
|
548
|
+
exports.default = "1.116.1";
|
|
650
549
|
|
|
651
|
-
},{}],
|
|
550
|
+
},{}],9:[function(require,module,exports){
|
|
652
551
|
"use strict";
|
|
653
552
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
654
553
|
class ARViewer {
|
|
@@ -659,7 +558,7 @@ class ARViewer {
|
|
|
659
558
|
}
|
|
660
559
|
exports.default = ARViewer;
|
|
661
560
|
|
|
662
|
-
},{}],
|
|
561
|
+
},{}],10:[function(require,module,exports){
|
|
663
562
|
"use strict";
|
|
664
563
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
665
564
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -709,7 +608,7 @@ class QuicklookViewer extends ar_viewer_1.default {
|
|
|
709
608
|
}
|
|
710
609
|
exports.default = QuicklookViewer;
|
|
711
610
|
|
|
712
|
-
},{"./ar-viewer":
|
|
611
|
+
},{"./ar-viewer":9}],11:[function(require,module,exports){
|
|
713
612
|
"use strict";
|
|
714
613
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
715
614
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -739,7 +638,7 @@ class RealityViewer extends ar_viewer_1.default {
|
|
|
739
638
|
}
|
|
740
639
|
exports.default = RealityViewer;
|
|
741
640
|
|
|
742
|
-
},{"./ar-viewer":
|
|
641
|
+
},{"./ar-viewer":9}],12:[function(require,module,exports){
|
|
743
642
|
"use strict";
|
|
744
643
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
745
644
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
@@ -792,7 +691,7 @@ class SceneViewer extends ar_viewer_1.default {
|
|
|
792
691
|
}
|
|
793
692
|
exports.default = SceneViewer;
|
|
794
693
|
|
|
795
|
-
},{"./ar-viewer":
|
|
694
|
+
},{"./ar-viewer":9}],13:[function(require,module,exports){
|
|
796
695
|
"use strict";
|
|
797
696
|
const Messenger = require("./messenger/messenger.js");
|
|
798
697
|
const Memory = require("./memory/memory.js");
|
|
@@ -826,7 +725,7 @@ module.exports = {
|
|
|
826
725
|
memory: GlobalEventHandler.instance().memoryInstance,
|
|
827
726
|
version: Version
|
|
828
727
|
}
|
|
829
|
-
},{"./memory/memory.js":
|
|
728
|
+
},{"./memory/memory.js":14,"./messenger/global-event-handler.js":21,"./messenger/messenger.js":22,"./version":27}],14:[function(require,module,exports){
|
|
830
729
|
const PermanentMemory = require("./permanent-memory");
|
|
831
730
|
const TemporaryMemory = require("./temporary-memory");
|
|
832
731
|
|
|
@@ -860,7 +759,7 @@ class Memory {
|
|
|
860
759
|
}
|
|
861
760
|
|
|
862
761
|
module.exports = Memory;
|
|
863
|
-
},{"./permanent-memory":
|
|
762
|
+
},{"./permanent-memory":15,"./temporary-memory":16}],15:[function(require,module,exports){
|
|
864
763
|
const WrappedValue = require("./wrapped-value");
|
|
865
764
|
|
|
866
765
|
class PermanentMemory {
|
|
@@ -929,7 +828,7 @@ class PermanentMemory {
|
|
|
929
828
|
}
|
|
930
829
|
|
|
931
830
|
module.exports = PermanentMemory;
|
|
932
|
-
},{"./wrapped-value":
|
|
831
|
+
},{"./wrapped-value":17}],16:[function(require,module,exports){
|
|
933
832
|
const WrappedValue = require("./wrapped-value");
|
|
934
833
|
|
|
935
834
|
class TemporaryMemory {
|
|
@@ -986,7 +885,7 @@ class TemporaryMemory {
|
|
|
986
885
|
}
|
|
987
886
|
|
|
988
887
|
module.exports = TemporaryMemory;
|
|
989
|
-
},{"./wrapped-value":
|
|
888
|
+
},{"./wrapped-value":17}],17:[function(require,module,exports){
|
|
990
889
|
/**
|
|
991
890
|
* WrappedValue represents a generic value type with a callback function
|
|
992
891
|
* for when the value has changed
|
|
@@ -1098,7 +997,7 @@ class WrappedValue {
|
|
|
1098
997
|
}
|
|
1099
998
|
|
|
1100
999
|
module.exports = WrappedValue;
|
|
1101
|
-
},{}],
|
|
1000
|
+
},{}],18:[function(require,module,exports){
|
|
1102
1001
|
/**
|
|
1103
1002
|
* Broadcaster is used to call functions in multiple contexts at the
|
|
1104
1003
|
* same time. This can be useful without having to handle complex logic
|
|
@@ -1151,7 +1050,7 @@ class Broadcaster {
|
|
|
1151
1050
|
}
|
|
1152
1051
|
|
|
1153
1052
|
module.exports = Broadcaster;
|
|
1154
|
-
},{}],
|
|
1053
|
+
},{}],19:[function(require,module,exports){
|
|
1155
1054
|
const WrappedFunction = require("./wrapped-local-function");
|
|
1156
1055
|
|
|
1157
1056
|
class CurrentFunctionList {
|
|
@@ -1202,7 +1101,7 @@ class CurrentFunctionList {
|
|
|
1202
1101
|
}
|
|
1203
1102
|
|
|
1204
1103
|
module.exports = CurrentFunctionList;
|
|
1205
|
-
},{"./wrapped-local-function":
|
|
1104
|
+
},{"./wrapped-local-function":20}],20:[function(require,module,exports){
|
|
1206
1105
|
const Util = require("../util/util.js");
|
|
1207
1106
|
|
|
1208
1107
|
/**
|
|
@@ -1289,7 +1188,7 @@ class WrappedLocalFunction {
|
|
|
1289
1188
|
}
|
|
1290
1189
|
|
|
1291
1190
|
module.exports = WrappedLocalFunction;
|
|
1292
|
-
},{"../util/util.js":
|
|
1191
|
+
},{"../util/util.js":26}],21:[function(require,module,exports){
|
|
1293
1192
|
const RemoteInterface = require("./remote-interface.js");
|
|
1294
1193
|
|
|
1295
1194
|
/**
|
|
@@ -1374,7 +1273,7 @@ GlobalEventHandler.instance = () => {
|
|
|
1374
1273
|
};
|
|
1375
1274
|
|
|
1376
1275
|
module.exports = GlobalEventHandler;
|
|
1377
|
-
},{"./remote-interface.js":
|
|
1276
|
+
},{"./remote-interface.js":23}],22:[function(require,module,exports){
|
|
1378
1277
|
const CurrentFunctionList = require("./current/current-function-list");
|
|
1379
1278
|
const RemoteInterface = require("./remote-interface");
|
|
1380
1279
|
const RemoteFunctionList = require("./remote/remote-function-list");
|
|
@@ -1673,7 +1572,7 @@ class Messenger {
|
|
|
1673
1572
|
}
|
|
1674
1573
|
|
|
1675
1574
|
module.exports = Messenger;
|
|
1676
|
-
},{"./broadcaster.js":
|
|
1575
|
+
},{"./broadcaster.js":18,"./current/current-function-list":19,"./global-event-handler.js":21,"./remote-interface":23,"./remote/remote-function-list":24,"./util/util.js":26}],23:[function(require,module,exports){
|
|
1677
1576
|
/**
|
|
1678
1577
|
* Provides a single useful interface for performing remote function calls
|
|
1679
1578
|
*/
|
|
@@ -1732,7 +1631,7 @@ class RemoteInterface {
|
|
|
1732
1631
|
}
|
|
1733
1632
|
|
|
1734
1633
|
module.exports = RemoteInterface;
|
|
1735
|
-
},{}],
|
|
1634
|
+
},{}],24:[function(require,module,exports){
|
|
1736
1635
|
const WrappedFunction = require("./wrapped-remote-function");
|
|
1737
1636
|
|
|
1738
1637
|
class RemoteFunctionList {
|
|
@@ -1811,7 +1710,7 @@ class RemoteFunctionList {
|
|
|
1811
1710
|
}
|
|
1812
1711
|
|
|
1813
1712
|
module.exports = RemoteFunctionList;
|
|
1814
|
-
},{"./wrapped-remote-function":
|
|
1713
|
+
},{"./wrapped-remote-function":25}],25:[function(require,module,exports){
|
|
1815
1714
|
const Util = require("../util/util.js");
|
|
1816
1715
|
const GlobalEventHandler = require("../global-event-handler.js");
|
|
1817
1716
|
|
|
@@ -1892,7 +1791,7 @@ class WrappedRemoteFunction {
|
|
|
1892
1791
|
}
|
|
1893
1792
|
|
|
1894
1793
|
module.exports = WrappedRemoteFunction;
|
|
1895
|
-
},{"../global-event-handler.js":
|
|
1794
|
+
},{"../global-event-handler.js":21,"../util/util.js":26}],26:[function(require,module,exports){
|
|
1896
1795
|
class Util {
|
|
1897
1796
|
|
|
1898
1797
|
/**
|
|
@@ -1918,10 +1817,238 @@ class Util {
|
|
|
1918
1817
|
}
|
|
1919
1818
|
|
|
1920
1819
|
module.exports = Util;
|
|
1921
|
-
},{}],
|
|
1820
|
+
},{}],27:[function(require,module,exports){
|
|
1922
1821
|
module.exports = "1.113.6";
|
|
1923
1822
|
|
|
1924
|
-
},{}],
|
|
1823
|
+
},{}],28:[function(require,module,exports){
|
|
1824
|
+
"use strict";
|
|
1825
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1826
|
+
exports.AnalyticsData = void 0;
|
|
1827
|
+
const util_1 = require("../util/util");
|
|
1828
|
+
class AnalyticsData {
|
|
1829
|
+
constructor() {
|
|
1830
|
+
this._map = new Map();
|
|
1831
|
+
this.push("source", "embed");
|
|
1832
|
+
this.push("pageTitle", document.title);
|
|
1833
|
+
this.push("pageURL", location.href);
|
|
1834
|
+
this.push("referrer", document.referrer);
|
|
1835
|
+
this.push("user_id", AnalyticsData._GetUserID());
|
|
1836
|
+
}
|
|
1837
|
+
push(key, value) {
|
|
1838
|
+
this._map.set(key, value);
|
|
1839
|
+
}
|
|
1840
|
+
get data() {
|
|
1841
|
+
return Object.fromEntries(this._map);
|
|
1842
|
+
}
|
|
1843
|
+
static _GetUserID() {
|
|
1844
|
+
const key = "plattar_user_id";
|
|
1845
|
+
let userID = null;
|
|
1846
|
+
try {
|
|
1847
|
+
userID = localStorage.getItem(key);
|
|
1848
|
+
}
|
|
1849
|
+
catch (err) {
|
|
1850
|
+
userID = util_1.Util.generateUUID();
|
|
1851
|
+
// try storing if just generated
|
|
1852
|
+
try {
|
|
1853
|
+
localStorage.setItem(key, userID);
|
|
1854
|
+
}
|
|
1855
|
+
catch (_err) { /* silent */ }
|
|
1856
|
+
}
|
|
1857
|
+
if (!userID) {
|
|
1858
|
+
userID = util_1.Util.generateUUID();
|
|
1859
|
+
// try storing if just generated
|
|
1860
|
+
try {
|
|
1861
|
+
localStorage.setItem(key, userID);
|
|
1862
|
+
}
|
|
1863
|
+
catch (_err) { /*silent */ }
|
|
1864
|
+
}
|
|
1865
|
+
return userID;
|
|
1866
|
+
}
|
|
1867
|
+
}
|
|
1868
|
+
exports.AnalyticsData = AnalyticsData;
|
|
1869
|
+
|
|
1870
|
+
},{"../util/util":32}],29:[function(require,module,exports){
|
|
1871
|
+
"use strict";
|
|
1872
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
1873
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
1874
|
+
};
|
|
1875
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1876
|
+
exports.Analytics = void 0;
|
|
1877
|
+
const basic_http_1 = __importDefault(require("../util/basic-http"));
|
|
1878
|
+
const analytics_data_1 = require("./analytics-data");
|
|
1879
|
+
class Analytics {
|
|
1880
|
+
constructor(applicationID) {
|
|
1881
|
+
this._pageTime = null;
|
|
1882
|
+
this.origin = "production";
|
|
1883
|
+
this.event = "track";
|
|
1884
|
+
this._applicationID = applicationID;
|
|
1885
|
+
this._data = new analytics_data_1.AnalyticsData();
|
|
1886
|
+
this._handlePageHide = () => {
|
|
1887
|
+
if (document.visibilityState === "hidden") {
|
|
1888
|
+
this._pageTime = new Date();
|
|
1889
|
+
}
|
|
1890
|
+
else if (this._pageTime) {
|
|
1891
|
+
const time2 = new Date();
|
|
1892
|
+
const diff = time2.getTime() - this._pageTime.getTime();
|
|
1893
|
+
const data = this.data;
|
|
1894
|
+
data.push("eventAction", "View Time");
|
|
1895
|
+
data.push("viewTime", diff);
|
|
1896
|
+
data.push("eventLabel", diff);
|
|
1897
|
+
this.write();
|
|
1898
|
+
this._pageTime = null;
|
|
1899
|
+
document.removeEventListener("visibilitychange", this._handlePageHide, false);
|
|
1900
|
+
}
|
|
1901
|
+
};
|
|
1902
|
+
}
|
|
1903
|
+
query(query = null) {
|
|
1904
|
+
return new Promise((accept, reject) => {
|
|
1905
|
+
if (!query) {
|
|
1906
|
+
return reject(new Error("Analytics.query() - provided query was null"));
|
|
1907
|
+
}
|
|
1908
|
+
const url = this.origin === "dev" ? "http://localhost:9000/2015-03-31/functions/function/invocations" : "https://oyywgrj9ki.execute-api.ap-southeast-2.amazonaws.com/main/analytics";
|
|
1909
|
+
const data = {
|
|
1910
|
+
type: "read",
|
|
1911
|
+
application_id: this._applicationID,
|
|
1912
|
+
event: this.event,
|
|
1913
|
+
data: query
|
|
1914
|
+
};
|
|
1915
|
+
basic_http_1.default.exec("POST", url, data).then((result) => {
|
|
1916
|
+
accept(((result && result.results) ? result.results : {}));
|
|
1917
|
+
}).catch(reject);
|
|
1918
|
+
});
|
|
1919
|
+
}
|
|
1920
|
+
write() {
|
|
1921
|
+
return new Promise((accept, reject) => {
|
|
1922
|
+
const data = this._data;
|
|
1923
|
+
const url = this.origin === "dev" ? "http://localhost:9000/2015-03-31/functions/function/invocations" : "https://oyywgrj9ki.execute-api.ap-southeast-2.amazonaws.com/main/analytics";
|
|
1924
|
+
data.push("applicationId", this._applicationID);
|
|
1925
|
+
const sendData = {
|
|
1926
|
+
type: "write",
|
|
1927
|
+
application_id: this._applicationID,
|
|
1928
|
+
origin: this.origin,
|
|
1929
|
+
event: this.event,
|
|
1930
|
+
data: data.data
|
|
1931
|
+
};
|
|
1932
|
+
basic_http_1.default.exec("POST", url, sendData).then((result) => {
|
|
1933
|
+
accept(((result && result.results) ? result.results : {}));
|
|
1934
|
+
}).catch(reject);
|
|
1935
|
+
});
|
|
1936
|
+
}
|
|
1937
|
+
startRecordEngagement() {
|
|
1938
|
+
document.addEventListener("visibilitychange", this._handlePageHide, false);
|
|
1939
|
+
}
|
|
1940
|
+
get data() {
|
|
1941
|
+
return this._data;
|
|
1942
|
+
}
|
|
1943
|
+
}
|
|
1944
|
+
exports.Analytics = Analytics;
|
|
1945
|
+
|
|
1946
|
+
},{"../util/basic-http":31,"./analytics-data":28}],30:[function(require,module,exports){
|
|
1947
|
+
"use strict";
|
|
1948
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
1949
|
+
if (k2 === undefined) k2 = k;
|
|
1950
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
1951
|
+
}) : (function(o, m, k, k2) {
|
|
1952
|
+
if (k2 === undefined) k2 = k;
|
|
1953
|
+
o[k2] = m[k];
|
|
1954
|
+
}));
|
|
1955
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
1956
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
1957
|
+
}) : function(o, v) {
|
|
1958
|
+
o["default"] = v;
|
|
1959
|
+
});
|
|
1960
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
1961
|
+
if (mod && mod.__esModule) return mod;
|
|
1962
|
+
var result = {};
|
|
1963
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
1964
|
+
__setModuleDefault(result, mod);
|
|
1965
|
+
return result;
|
|
1966
|
+
};
|
|
1967
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
1968
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
1969
|
+
};
|
|
1970
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1971
|
+
exports.Analytics = exports.version = void 0;
|
|
1972
|
+
exports.version = __importStar(require("./version"));
|
|
1973
|
+
var analytics_1 = require("./analytics/analytics");
|
|
1974
|
+
Object.defineProperty(exports, "Analytics", { enumerable: true, get: function () { return analytics_1.Analytics; } });
|
|
1975
|
+
const version_1 = __importDefault(require("./version"));
|
|
1976
|
+
console.log("using @plattar/plattar-analytics v" + version_1.default);
|
|
1977
|
+
|
|
1978
|
+
},{"./analytics/analytics":29,"./version":33}],31:[function(require,module,exports){
|
|
1979
|
+
"use strict";
|
|
1980
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1981
|
+
/**
|
|
1982
|
+
* Simple HTTP interaction module
|
|
1983
|
+
*/
|
|
1984
|
+
class BasicHTTP {
|
|
1985
|
+
static exec(protocol, path, data = null) {
|
|
1986
|
+
return new Promise((accept, reject) => {
|
|
1987
|
+
try {
|
|
1988
|
+
const http = new XMLHttpRequest();
|
|
1989
|
+
http.open(protocol, path, true);
|
|
1990
|
+
http.setRequestHeader("Content-Type", "application/json");
|
|
1991
|
+
http.setRequestHeader("Accept", "application/json");
|
|
1992
|
+
http.onload = (e) => {
|
|
1993
|
+
if (http.status === 200) {
|
|
1994
|
+
if (http.response) {
|
|
1995
|
+
try {
|
|
1996
|
+
const resp = JSON.parse(http.response);
|
|
1997
|
+
return accept(resp);
|
|
1998
|
+
}
|
|
1999
|
+
catch (_err) { /* silent */ }
|
|
2000
|
+
}
|
|
2001
|
+
return accept({});
|
|
2002
|
+
}
|
|
2003
|
+
else {
|
|
2004
|
+
return reject(e);
|
|
2005
|
+
}
|
|
2006
|
+
};
|
|
2007
|
+
http.onerror = (e) => {
|
|
2008
|
+
return reject(e);
|
|
2009
|
+
};
|
|
2010
|
+
http.send(data ? JSON.stringify(data) : null);
|
|
2011
|
+
}
|
|
2012
|
+
catch (e) {
|
|
2013
|
+
return reject(e);
|
|
2014
|
+
}
|
|
2015
|
+
});
|
|
2016
|
+
}
|
|
2017
|
+
}
|
|
2018
|
+
exports.default = BasicHTTP;
|
|
2019
|
+
|
|
2020
|
+
},{}],32:[function(require,module,exports){
|
|
2021
|
+
"use strict";
|
|
2022
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2023
|
+
exports.Util = void 0;
|
|
2024
|
+
const _lut = [];
|
|
2025
|
+
for (let i = 0; i < 256; i++) {
|
|
2026
|
+
_lut[i] = (i < 16 ? '0' : '') + (i).toString(16);
|
|
2027
|
+
}
|
|
2028
|
+
/**
|
|
2029
|
+
* Static Utility Functions
|
|
2030
|
+
*/
|
|
2031
|
+
class Util {
|
|
2032
|
+
static generateUUID() {
|
|
2033
|
+
const d0 = Math.random() * 0xffffffff | 0;
|
|
2034
|
+
const d1 = Math.random() * 0xffffffff | 0;
|
|
2035
|
+
const d2 = Math.random() * 0xffffffff | 0;
|
|
2036
|
+
const d3 = Math.random() * 0xffffffff | 0;
|
|
2037
|
+
const uuid = _lut[d0 & 0xff] + _lut[d0 >> 8 & 0xff] + _lut[d0 >> 16 & 0xff] + _lut[d0 >> 24 & 0xff] + '-' +
|
|
2038
|
+
_lut[d1 & 0xff] + _lut[d1 >> 8 & 0xff] + '-' + _lut[d1 >> 16 & 0x0f | 0x40] + _lut[d1 >> 24 & 0xff] + '-' +
|
|
2039
|
+
_lut[d2 & 0x3f | 0x80] + _lut[d2 >> 8 & 0xff] + '-' + _lut[d2 >> 16 & 0xff] + _lut[d2 >> 24 & 0xff] +
|
|
2040
|
+
_lut[d3 & 0xff] + _lut[d3 >> 8 & 0xff] + _lut[d3 >> 16 & 0xff] + _lut[d3 >> 24 & 0xff];
|
|
2041
|
+
return uuid.toLowerCase();
|
|
2042
|
+
}
|
|
2043
|
+
}
|
|
2044
|
+
exports.Util = Util;
|
|
2045
|
+
|
|
2046
|
+
},{}],33:[function(require,module,exports){
|
|
2047
|
+
"use strict";
|
|
2048
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
2049
|
+
exports.default = "1.116.2";
|
|
2050
|
+
|
|
2051
|
+
},{}],34:[function(require,module,exports){
|
|
1925
2052
|
"use strict";
|
|
1926
2053
|
const Server = require("./server/plattar-server.js");
|
|
1927
2054
|
const Util = require("./util/plattar-util.js");
|
|
@@ -2074,7 +2201,7 @@ module.exports = {
|
|
|
2074
2201
|
version: Version
|
|
2075
2202
|
};
|
|
2076
2203
|
|
|
2077
|
-
},{"./server/plattar-server.js":
|
|
2204
|
+
},{"./server/plattar-server.js":36,"./types/application.js":37,"./types/content-pipeline/brief.js":38,"./types/content-pipeline/comment-brief.js":39,"./types/content-pipeline/comment-quote.js":40,"./types/content-pipeline/comment-solution.js":41,"./types/content-pipeline/pipeline-user.js":42,"./types/content-pipeline/quote.js":43,"./types/content-pipeline/rating.js":44,"./types/content-pipeline/solution.js":45,"./types/file/file-audio.js":46,"./types/file/file-base.js":47,"./types/file/file-image.js":48,"./types/file/file-model.js":49,"./types/file/file-script.js":50,"./types/file/file-video.js":51,"./types/misc/application-build.js":55,"./types/misc/asset-library.js":56,"./types/misc/async-job.js":57,"./types/misc/script-event.js":58,"./types/misc/tag.js":59,"./types/page/card-base.js":60,"./types/page/card-button.js":61,"./types/page/card-html.js":62,"./types/page/card-iframe.js":63,"./types/page/card-image.js":64,"./types/page/card-map.js":65,"./types/page/card-paragraph.js":66,"./types/page/card-row.js":67,"./types/page/card-slider.js":68,"./types/page/card-title.js":69,"./types/page/card-video.js":70,"./types/page/card-youtube.js":71,"./types/page/page.js":72,"./types/product/product-annotation.js":73,"./types/product/product-base.js":74,"./types/product/product-variation.js":75,"./types/product/product.js":76,"./types/scene/scene-annotation.js":77,"./types/scene/scene-audio.js":78,"./types/scene/scene-base.js":79,"./types/scene/scene-button.js":80,"./types/scene/scene-camera.js":81,"./types/scene/scene-carousel.js":82,"./types/scene/scene-image.js":83,"./types/scene/scene-model.js":84,"./types/scene/scene-panorama.js":85,"./types/scene/scene-poller.js":86,"./types/scene/scene-product.js":87,"./types/scene/scene-script.js":88,"./types/scene/scene-shadow.js":89,"./types/scene/scene-video.js":90,"./types/scene/scene-volumetric.js":91,"./types/scene/scene-youtube.js":92,"./types/scene/scene.js":93,"./types/trigger/trigger-image.js":94,"./util/plattar-util.js":95,"./version":96}],35:[function(require,module,exports){
|
|
2078
2205
|
const fetch = require("node-fetch");
|
|
2079
2206
|
|
|
2080
2207
|
class PlattarQuery {
|
|
@@ -2101,6 +2228,24 @@ class PlattarQuery {
|
|
|
2101
2228
|
return this._server;
|
|
2102
2229
|
}
|
|
2103
2230
|
|
|
2231
|
+
getCookie(cname) {
|
|
2232
|
+
let name = cname + "=";
|
|
2233
|
+
let decodedCookie = decodeURIComponent(document.cookie);
|
|
2234
|
+
let ca = decodedCookie.split(';');
|
|
2235
|
+
|
|
2236
|
+
for (let i = 0; i < ca.length; i++) {
|
|
2237
|
+
let c = ca[i];
|
|
2238
|
+
while (c.charAt(0) == ' ') {
|
|
2239
|
+
c = c.substring(1);
|
|
2240
|
+
}
|
|
2241
|
+
if (c.indexOf(name) == 0) {
|
|
2242
|
+
return c.substring(name.length, c.length);
|
|
2243
|
+
}
|
|
2244
|
+
}
|
|
2245
|
+
|
|
2246
|
+
return "";
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2104
2249
|
_get(opt) {
|
|
2105
2250
|
return new Promise((resolve, reject) => {
|
|
2106
2251
|
const target = this.target;
|
|
@@ -2129,9 +2274,15 @@ class PlattarQuery {
|
|
|
2129
2274
|
const origin = server.originLocation.api_read;
|
|
2130
2275
|
const auth = server.authToken;
|
|
2131
2276
|
|
|
2277
|
+
const headers = {
|
|
2278
|
+
'cookie': 'laravel_session=' + this.getCookie('laravel_session')
|
|
2279
|
+
};
|
|
2280
|
+
|
|
2281
|
+
Object.assign(headers, auth);
|
|
2282
|
+
|
|
2132
2283
|
const reqopts = {
|
|
2133
2284
|
method: "GET",
|
|
2134
|
-
headers:
|
|
2285
|
+
headers: headers
|
|
2135
2286
|
};
|
|
2136
2287
|
|
|
2137
2288
|
const includeQuery = this._IncludeQuery;
|
|
@@ -2198,7 +2349,8 @@ class PlattarQuery {
|
|
|
2198
2349
|
|
|
2199
2350
|
const headers = {
|
|
2200
2351
|
'Accept': 'application/json',
|
|
2201
|
-
'Content-Type': 'application/json'
|
|
2352
|
+
'Content-Type': 'application/json',
|
|
2353
|
+
'cookie': 'laravel_session=' + this.getCookie('laravel_session')
|
|
2202
2354
|
};
|
|
2203
2355
|
|
|
2204
2356
|
Object.assign(headers, auth);
|
|
@@ -2272,7 +2424,8 @@ class PlattarQuery {
|
|
|
2272
2424
|
|
|
2273
2425
|
const headers = {
|
|
2274
2426
|
'Accept': 'application/json',
|
|
2275
|
-
'Content-Type': 'application/json'
|
|
2427
|
+
'Content-Type': 'application/json',
|
|
2428
|
+
'cookie': 'laravel_session=' + this.getCookie('laravel_session')
|
|
2276
2429
|
};
|
|
2277
2430
|
|
|
2278
2431
|
Object.assign(headers, auth);
|
|
@@ -2323,6 +2476,7 @@ class PlattarQuery {
|
|
|
2323
2476
|
}
|
|
2324
2477
|
else {
|
|
2325
2478
|
if (json.data) {
|
|
2479
|
+
target._id = json.data.id;
|
|
2326
2480
|
const PlattarUtil = require("../util/plattar-util.js");
|
|
2327
2481
|
|
|
2328
2482
|
PlattarUtil.reconstruct(target, json, { cache: true });
|
|
@@ -2458,7 +2612,7 @@ PlattarQuery._DeleteGlobalCachedObject = (obj) => {
|
|
|
2458
2612
|
};
|
|
2459
2613
|
|
|
2460
2614
|
module.exports = PlattarQuery;
|
|
2461
|
-
},{"../util/plattar-util.js":
|
|
2615
|
+
},{"../util/plattar-util.js":95,"node-fetch":114}],36:[function(require,module,exports){
|
|
2462
2616
|
(function (process){(function (){
|
|
2463
2617
|
const fetch = require("node-fetch");
|
|
2464
2618
|
|
|
@@ -2663,7 +2817,7 @@ PlattarServer.location = () => {
|
|
|
2663
2817
|
|
|
2664
2818
|
module.exports = PlattarServer;
|
|
2665
2819
|
}).call(this)}).call(this,require('_process'))
|
|
2666
|
-
},{"_process":
|
|
2820
|
+
},{"_process":115,"node-fetch":114}],37:[function(require,module,exports){
|
|
2667
2821
|
const PlattarBase = require("./interfaces/plattar-base.js");
|
|
2668
2822
|
|
|
2669
2823
|
class Application extends PlattarBase {
|
|
@@ -2673,7 +2827,7 @@ class Application extends PlattarBase {
|
|
|
2673
2827
|
}
|
|
2674
2828
|
|
|
2675
2829
|
module.exports = Application;
|
|
2676
|
-
},{"./interfaces/plattar-base.js":
|
|
2830
|
+
},{"./interfaces/plattar-base.js":52}],38:[function(require,module,exports){
|
|
2677
2831
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
2678
2832
|
|
|
2679
2833
|
class Brief extends PlattarBase {
|
|
@@ -2683,7 +2837,7 @@ class Brief extends PlattarBase {
|
|
|
2683
2837
|
}
|
|
2684
2838
|
|
|
2685
2839
|
module.exports = Brief;
|
|
2686
|
-
},{"../interfaces/plattar-base":
|
|
2840
|
+
},{"../interfaces/plattar-base":52}],39:[function(require,module,exports){
|
|
2687
2841
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
2688
2842
|
|
|
2689
2843
|
class CommentBrief extends PlattarBase {
|
|
@@ -2693,7 +2847,7 @@ class CommentBrief extends PlattarBase {
|
|
|
2693
2847
|
}
|
|
2694
2848
|
|
|
2695
2849
|
module.exports = CommentBrief;
|
|
2696
|
-
},{"../interfaces/plattar-base":
|
|
2850
|
+
},{"../interfaces/plattar-base":52}],40:[function(require,module,exports){
|
|
2697
2851
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
2698
2852
|
|
|
2699
2853
|
class CommentQuote extends PlattarBase {
|
|
@@ -2703,7 +2857,7 @@ class CommentQuote extends PlattarBase {
|
|
|
2703
2857
|
}
|
|
2704
2858
|
|
|
2705
2859
|
module.exports = CommentQuote;
|
|
2706
|
-
},{"../interfaces/plattar-base":
|
|
2860
|
+
},{"../interfaces/plattar-base":52}],41:[function(require,module,exports){
|
|
2707
2861
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
2708
2862
|
|
|
2709
2863
|
class CommentSolution extends PlattarBase {
|
|
@@ -2713,7 +2867,7 @@ class CommentSolution extends PlattarBase {
|
|
|
2713
2867
|
}
|
|
2714
2868
|
|
|
2715
2869
|
module.exports = CommentSolution;
|
|
2716
|
-
},{"../interfaces/plattar-base":
|
|
2870
|
+
},{"../interfaces/plattar-base":52}],42:[function(require,module,exports){
|
|
2717
2871
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
2718
2872
|
|
|
2719
2873
|
class PipelineUser extends PlattarBase {
|
|
@@ -2723,7 +2877,7 @@ class PipelineUser extends PlattarBase {
|
|
|
2723
2877
|
}
|
|
2724
2878
|
|
|
2725
2879
|
module.exports = PipelineUser;
|
|
2726
|
-
},{"../interfaces/plattar-base":
|
|
2880
|
+
},{"../interfaces/plattar-base":52}],43:[function(require,module,exports){
|
|
2727
2881
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
2728
2882
|
|
|
2729
2883
|
class Quote extends PlattarBase {
|
|
@@ -2733,7 +2887,7 @@ class Quote extends PlattarBase {
|
|
|
2733
2887
|
}
|
|
2734
2888
|
|
|
2735
2889
|
module.exports = Quote;
|
|
2736
|
-
},{"../interfaces/plattar-base":
|
|
2890
|
+
},{"../interfaces/plattar-base":52}],44:[function(require,module,exports){
|
|
2737
2891
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
2738
2892
|
|
|
2739
2893
|
class Rating extends PlattarBase {
|
|
@@ -2743,7 +2897,7 @@ class Rating extends PlattarBase {
|
|
|
2743
2897
|
}
|
|
2744
2898
|
|
|
2745
2899
|
module.exports = Rating;
|
|
2746
|
-
},{"../interfaces/plattar-base":
|
|
2900
|
+
},{"../interfaces/plattar-base":52}],45:[function(require,module,exports){
|
|
2747
2901
|
const PlattarBase = require("../interfaces/plattar-base");
|
|
2748
2902
|
|
|
2749
2903
|
class Solution extends PlattarBase {
|
|
@@ -2753,7 +2907,7 @@ class Solution extends PlattarBase {
|
|
|
2753
2907
|
}
|
|
2754
2908
|
|
|
2755
2909
|
module.exports = Solution;
|
|
2756
|
-
},{"../interfaces/plattar-base":
|
|
2910
|
+
},{"../interfaces/plattar-base":52}],46:[function(require,module,exports){
|
|
2757
2911
|
const FileBase = require("./file-base.js");
|
|
2758
2912
|
|
|
2759
2913
|
class FileAudio extends FileBase {
|
|
@@ -2763,7 +2917,7 @@ class FileAudio extends FileBase {
|
|
|
2763
2917
|
}
|
|
2764
2918
|
|
|
2765
2919
|
module.exports = FileAudio;
|
|
2766
|
-
},{"./file-base.js":
|
|
2920
|
+
},{"./file-base.js":47}],47:[function(require,module,exports){
|
|
2767
2921
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
2768
2922
|
const Server = require("../../server/plattar-server.js");
|
|
2769
2923
|
|
|
@@ -2823,7 +2977,7 @@ class FileBase extends PlattarBase {
|
|
|
2823
2977
|
}
|
|
2824
2978
|
|
|
2825
2979
|
module.exports = FileBase;
|
|
2826
|
-
},{"../../server/plattar-server.js":
|
|
2980
|
+
},{"../../server/plattar-server.js":36,"../interfaces/plattar-base.js":52,"./file-audio.js":46,"./file-image.js":48,"./file-model.js":49,"./file-video.js":51}],48:[function(require,module,exports){
|
|
2827
2981
|
const FileBase = require("./file-base.js");
|
|
2828
2982
|
|
|
2829
2983
|
class FileImage extends FileBase {
|
|
@@ -2833,7 +2987,7 @@ class FileImage extends FileBase {
|
|
|
2833
2987
|
}
|
|
2834
2988
|
|
|
2835
2989
|
module.exports = FileImage;
|
|
2836
|
-
},{"./file-base.js":
|
|
2990
|
+
},{"./file-base.js":47}],49:[function(require,module,exports){
|
|
2837
2991
|
const FileBase = require("./file-base.js");
|
|
2838
2992
|
|
|
2839
2993
|
class FileModel extends FileBase {
|
|
@@ -2843,7 +2997,7 @@ class FileModel extends FileBase {
|
|
|
2843
2997
|
}
|
|
2844
2998
|
|
|
2845
2999
|
module.exports = FileModel;
|
|
2846
|
-
},{"./file-base.js":
|
|
3000
|
+
},{"./file-base.js":47}],50:[function(require,module,exports){
|
|
2847
3001
|
const FileBase = require("./file-base.js");
|
|
2848
3002
|
|
|
2849
3003
|
class FileScript extends FileBase {
|
|
@@ -2853,7 +3007,7 @@ class FileScript extends FileBase {
|
|
|
2853
3007
|
}
|
|
2854
3008
|
|
|
2855
3009
|
module.exports = FileScript;
|
|
2856
|
-
},{"./file-base.js":
|
|
3010
|
+
},{"./file-base.js":47}],51:[function(require,module,exports){
|
|
2857
3011
|
const FileBase = require("./file-base.js");
|
|
2858
3012
|
|
|
2859
3013
|
class FileVideo extends FileBase {
|
|
@@ -2863,7 +3017,7 @@ class FileVideo extends FileBase {
|
|
|
2863
3017
|
}
|
|
2864
3018
|
|
|
2865
3019
|
module.exports = FileVideo;
|
|
2866
|
-
},{"./file-base.js":
|
|
3020
|
+
},{"./file-base.js":47}],52:[function(require,module,exports){
|
|
2867
3021
|
const PlattarObject = require("./plattar-object.js");
|
|
2868
3022
|
const Server = require("../../server/plattar-server.js");
|
|
2869
3023
|
|
|
@@ -2878,7 +3032,7 @@ class PlattarBase extends PlattarObject {
|
|
|
2878
3032
|
}
|
|
2879
3033
|
|
|
2880
3034
|
module.exports = PlattarBase;
|
|
2881
|
-
},{"../../server/plattar-server.js":
|
|
3035
|
+
},{"../../server/plattar-server.js":36,"./plattar-object.js":54}],53:[function(require,module,exports){
|
|
2882
3036
|
/**
|
|
2883
3037
|
* Handles the list of relationships for the provided object
|
|
2884
3038
|
*/
|
|
@@ -2999,7 +3153,7 @@ class PlattarObjectRelations {
|
|
|
2999
3153
|
}
|
|
3000
3154
|
|
|
3001
3155
|
module.exports = PlattarObjectRelations;
|
|
3002
|
-
},{"../../util/plattar-util.js":
|
|
3156
|
+
},{"../../util/plattar-util.js":95}],54:[function(require,module,exports){
|
|
3003
3157
|
const PlattarQuery = require("../../server/plattar-query.js");
|
|
3004
3158
|
const PlattarObjectRelations = require("./plattar-object-relations.js");
|
|
3005
3159
|
|
|
@@ -3142,7 +3296,7 @@ class PlattarObject {
|
|
|
3142
3296
|
}
|
|
3143
3297
|
|
|
3144
3298
|
module.exports = PlattarObject;
|
|
3145
|
-
},{"../../server/plattar-query.js":
|
|
3299
|
+
},{"../../server/plattar-query.js":35,"./plattar-object-relations.js":53}],55:[function(require,module,exports){
|
|
3146
3300
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3147
3301
|
|
|
3148
3302
|
class ApplicationBuild extends PlattarBase {
|
|
@@ -3152,7 +3306,7 @@ class ApplicationBuild extends PlattarBase {
|
|
|
3152
3306
|
}
|
|
3153
3307
|
|
|
3154
3308
|
module.exports = ApplicationBuild;
|
|
3155
|
-
},{"../interfaces/plattar-base.js":
|
|
3309
|
+
},{"../interfaces/plattar-base.js":52}],56:[function(require,module,exports){
|
|
3156
3310
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3157
3311
|
|
|
3158
3312
|
class AssetLibrary extends PlattarBase {
|
|
@@ -3162,7 +3316,7 @@ class AssetLibrary extends PlattarBase {
|
|
|
3162
3316
|
}
|
|
3163
3317
|
|
|
3164
3318
|
module.exports = AssetLibrary;
|
|
3165
|
-
},{"../interfaces/plattar-base.js":
|
|
3319
|
+
},{"../interfaces/plattar-base.js":52}],57:[function(require,module,exports){
|
|
3166
3320
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3167
3321
|
|
|
3168
3322
|
class AsyncJob extends PlattarBase {
|
|
@@ -3176,7 +3330,7 @@ class AsyncJob extends PlattarBase {
|
|
|
3176
3330
|
}
|
|
3177
3331
|
|
|
3178
3332
|
module.exports = AsyncJob;
|
|
3179
|
-
},{"../interfaces/plattar-base.js":
|
|
3333
|
+
},{"../interfaces/plattar-base.js":52}],58:[function(require,module,exports){
|
|
3180
3334
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3181
3335
|
|
|
3182
3336
|
class ScriptEvent extends PlattarBase {
|
|
@@ -3186,7 +3340,7 @@ class ScriptEvent extends PlattarBase {
|
|
|
3186
3340
|
}
|
|
3187
3341
|
|
|
3188
3342
|
module.exports = ScriptEvent;
|
|
3189
|
-
},{"../interfaces/plattar-base.js":
|
|
3343
|
+
},{"../interfaces/plattar-base.js":52}],59:[function(require,module,exports){
|
|
3190
3344
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3191
3345
|
|
|
3192
3346
|
class Tag extends PlattarBase {
|
|
@@ -3196,7 +3350,7 @@ class Tag extends PlattarBase {
|
|
|
3196
3350
|
}
|
|
3197
3351
|
|
|
3198
3352
|
module.exports = Tag;
|
|
3199
|
-
},{"../interfaces/plattar-base.js":
|
|
3353
|
+
},{"../interfaces/plattar-base.js":52}],60:[function(require,module,exports){
|
|
3200
3354
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3201
3355
|
const Server = require("../../server/plattar-server.js");
|
|
3202
3356
|
|
|
@@ -3227,7 +3381,7 @@ class CardBase extends PlattarBase {
|
|
|
3227
3381
|
}
|
|
3228
3382
|
|
|
3229
3383
|
module.exports = CardBase;
|
|
3230
|
-
},{"../../server/plattar-server.js":
|
|
3384
|
+
},{"../../server/plattar-server.js":36,"../interfaces/plattar-base.js":52,"./card-button.js":61,"./card-html.js":62,"./card-iframe.js":63,"./card-image.js":64,"./card-map.js":65,"./card-paragraph.js":66,"./card-row.js":67,"./card-slider.js":68,"./card-title.js":69,"./card-video.js":70,"./card-youtube.js":71}],61:[function(require,module,exports){
|
|
3231
3385
|
const CardBase = require("./card-base.js");
|
|
3232
3386
|
|
|
3233
3387
|
class CardButton extends CardBase {
|
|
@@ -3237,7 +3391,7 @@ class CardButton extends CardBase {
|
|
|
3237
3391
|
}
|
|
3238
3392
|
|
|
3239
3393
|
module.exports = CardButton;
|
|
3240
|
-
},{"./card-base.js":
|
|
3394
|
+
},{"./card-base.js":60}],62:[function(require,module,exports){
|
|
3241
3395
|
const CardBase = require("./card-base.js");
|
|
3242
3396
|
|
|
3243
3397
|
class CardHTML extends CardBase {
|
|
@@ -3247,7 +3401,7 @@ class CardHTML extends CardBase {
|
|
|
3247
3401
|
}
|
|
3248
3402
|
|
|
3249
3403
|
module.exports = CardHTML;
|
|
3250
|
-
},{"./card-base.js":
|
|
3404
|
+
},{"./card-base.js":60}],63:[function(require,module,exports){
|
|
3251
3405
|
const CardBase = require("./card-base.js");
|
|
3252
3406
|
|
|
3253
3407
|
class CardIFrame extends CardBase {
|
|
@@ -3257,7 +3411,7 @@ class CardIFrame extends CardBase {
|
|
|
3257
3411
|
}
|
|
3258
3412
|
|
|
3259
3413
|
module.exports = CardIFrame;
|
|
3260
|
-
},{"./card-base.js":
|
|
3414
|
+
},{"./card-base.js":60}],64:[function(require,module,exports){
|
|
3261
3415
|
const CardBase = require("./card-base.js");
|
|
3262
3416
|
|
|
3263
3417
|
class CardImage extends CardBase {
|
|
@@ -3267,7 +3421,7 @@ class CardImage extends CardBase {
|
|
|
3267
3421
|
}
|
|
3268
3422
|
|
|
3269
3423
|
module.exports = CardImage;
|
|
3270
|
-
},{"./card-base.js":
|
|
3424
|
+
},{"./card-base.js":60}],65:[function(require,module,exports){
|
|
3271
3425
|
const CardBase = require("./card-base.js");
|
|
3272
3426
|
|
|
3273
3427
|
class CardMap extends CardBase {
|
|
@@ -3277,7 +3431,7 @@ class CardMap extends CardBase {
|
|
|
3277
3431
|
}
|
|
3278
3432
|
|
|
3279
3433
|
module.exports = CardMap;
|
|
3280
|
-
},{"./card-base.js":
|
|
3434
|
+
},{"./card-base.js":60}],66:[function(require,module,exports){
|
|
3281
3435
|
const CardBase = require("./card-base.js");
|
|
3282
3436
|
|
|
3283
3437
|
class CardParagraph extends CardBase {
|
|
@@ -3287,7 +3441,7 @@ class CardParagraph extends CardBase {
|
|
|
3287
3441
|
}
|
|
3288
3442
|
|
|
3289
3443
|
module.exports = CardParagraph;
|
|
3290
|
-
},{"./card-base.js":
|
|
3444
|
+
},{"./card-base.js":60}],67:[function(require,module,exports){
|
|
3291
3445
|
const CardBase = require("./card-base.js");
|
|
3292
3446
|
|
|
3293
3447
|
class CardRow extends CardBase {
|
|
@@ -3297,7 +3451,7 @@ class CardRow extends CardBase {
|
|
|
3297
3451
|
}
|
|
3298
3452
|
|
|
3299
3453
|
module.exports = CardRow;
|
|
3300
|
-
},{"./card-base.js":
|
|
3454
|
+
},{"./card-base.js":60}],68:[function(require,module,exports){
|
|
3301
3455
|
const CardBase = require("./card-base.js");
|
|
3302
3456
|
|
|
3303
3457
|
class CardSlider extends CardBase {
|
|
@@ -3307,7 +3461,7 @@ class CardSlider extends CardBase {
|
|
|
3307
3461
|
}
|
|
3308
3462
|
|
|
3309
3463
|
module.exports = CardSlider;
|
|
3310
|
-
},{"./card-base.js":
|
|
3464
|
+
},{"./card-base.js":60}],69:[function(require,module,exports){
|
|
3311
3465
|
const CardBase = require("./card-base.js");
|
|
3312
3466
|
|
|
3313
3467
|
class CardTitle extends CardBase {
|
|
@@ -3317,7 +3471,7 @@ class CardTitle extends CardBase {
|
|
|
3317
3471
|
}
|
|
3318
3472
|
|
|
3319
3473
|
module.exports = CardTitle;
|
|
3320
|
-
},{"./card-base.js":
|
|
3474
|
+
},{"./card-base.js":60}],70:[function(require,module,exports){
|
|
3321
3475
|
const CardBase = require("./card-base.js");
|
|
3322
3476
|
|
|
3323
3477
|
class CardVideo extends CardBase {
|
|
@@ -3327,7 +3481,7 @@ class CardVideo extends CardBase {
|
|
|
3327
3481
|
}
|
|
3328
3482
|
|
|
3329
3483
|
module.exports = CardVideo;
|
|
3330
|
-
},{"./card-base.js":
|
|
3484
|
+
},{"./card-base.js":60}],71:[function(require,module,exports){
|
|
3331
3485
|
const CardBase = require("./card-base.js");
|
|
3332
3486
|
|
|
3333
3487
|
class CardYoutube extends CardBase {
|
|
@@ -3337,7 +3491,7 @@ class CardYoutube extends CardBase {
|
|
|
3337
3491
|
}
|
|
3338
3492
|
|
|
3339
3493
|
module.exports = CardYoutube;
|
|
3340
|
-
},{"./card-base.js":
|
|
3494
|
+
},{"./card-base.js":60}],72:[function(require,module,exports){
|
|
3341
3495
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3342
3496
|
|
|
3343
3497
|
class Page extends PlattarBase {
|
|
@@ -3347,7 +3501,7 @@ class Page extends PlattarBase {
|
|
|
3347
3501
|
}
|
|
3348
3502
|
|
|
3349
3503
|
module.exports = Page;
|
|
3350
|
-
},{"../interfaces/plattar-base.js":
|
|
3504
|
+
},{"../interfaces/plattar-base.js":52}],73:[function(require,module,exports){
|
|
3351
3505
|
const ProductBase = require("./product-base.js");
|
|
3352
3506
|
|
|
3353
3507
|
class ProductAnnotation extends ProductBase {
|
|
@@ -3357,7 +3511,7 @@ class ProductAnnotation extends ProductBase {
|
|
|
3357
3511
|
}
|
|
3358
3512
|
|
|
3359
3513
|
module.exports = ProductAnnotation;
|
|
3360
|
-
},{"./product-base.js":
|
|
3514
|
+
},{"./product-base.js":74}],74:[function(require,module,exports){
|
|
3361
3515
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3362
3516
|
const Server = require("../../server/plattar-server.js");
|
|
3363
3517
|
|
|
@@ -3379,7 +3533,7 @@ class ProductBase extends PlattarBase {
|
|
|
3379
3533
|
}
|
|
3380
3534
|
|
|
3381
3535
|
module.exports = ProductBase;
|
|
3382
|
-
},{"../../server/plattar-server.js":
|
|
3536
|
+
},{"../../server/plattar-server.js":36,"../interfaces/plattar-base.js":52,"./product-annotation.js":73,"./product-variation.js":75}],75:[function(require,module,exports){
|
|
3383
3537
|
const ProductBase = require("./product-base.js");
|
|
3384
3538
|
|
|
3385
3539
|
class ProductVariation extends ProductBase {
|
|
@@ -3389,7 +3543,7 @@ class ProductVariation extends ProductBase {
|
|
|
3389
3543
|
}
|
|
3390
3544
|
|
|
3391
3545
|
module.exports = ProductVariation;
|
|
3392
|
-
},{"./product-base.js":
|
|
3546
|
+
},{"./product-base.js":74}],76:[function(require,module,exports){
|
|
3393
3547
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3394
3548
|
|
|
3395
3549
|
class Product extends PlattarBase {
|
|
@@ -3399,7 +3553,7 @@ class Product extends PlattarBase {
|
|
|
3399
3553
|
}
|
|
3400
3554
|
|
|
3401
3555
|
module.exports = Product;
|
|
3402
|
-
},{"../interfaces/plattar-base.js":
|
|
3556
|
+
},{"../interfaces/plattar-base.js":52}],77:[function(require,module,exports){
|
|
3403
3557
|
const SceneBase = require("./scene-base.js");
|
|
3404
3558
|
|
|
3405
3559
|
class SceneAnnotation extends SceneBase {
|
|
@@ -3409,7 +3563,7 @@ class SceneAnnotation extends SceneBase {
|
|
|
3409
3563
|
}
|
|
3410
3564
|
|
|
3411
3565
|
module.exports = SceneAnnotation;
|
|
3412
|
-
},{"./scene-base.js":
|
|
3566
|
+
},{"./scene-base.js":79}],78:[function(require,module,exports){
|
|
3413
3567
|
const SceneBase = require("./scene-base.js");
|
|
3414
3568
|
|
|
3415
3569
|
class SceneAudio extends SceneBase {
|
|
@@ -3419,7 +3573,7 @@ class SceneAudio extends SceneBase {
|
|
|
3419
3573
|
}
|
|
3420
3574
|
|
|
3421
3575
|
module.exports = SceneAudio;
|
|
3422
|
-
},{"./scene-base.js":
|
|
3576
|
+
},{"./scene-base.js":79}],79:[function(require,module,exports){
|
|
3423
3577
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3424
3578
|
const Server = require("../../server/plattar-server.js");
|
|
3425
3579
|
|
|
@@ -3453,7 +3607,7 @@ class SceneBase extends PlattarBase {
|
|
|
3453
3607
|
}
|
|
3454
3608
|
|
|
3455
3609
|
module.exports = SceneBase;
|
|
3456
|
-
},{"../../server/plattar-server.js":
|
|
3610
|
+
},{"../../server/plattar-server.js":36,"../interfaces/plattar-base.js":52,"./scene-annotation.js":77,"./scene-audio.js":78,"./scene-button.js":80,"./scene-camera.js":81,"./scene-carousel.js":82,"./scene-image.js":83,"./scene-model.js":84,"./scene-panorama.js":85,"./scene-poller.js":86,"./scene-product.js":87,"./scene-shadow.js":89,"./scene-video.js":90,"./scene-volumetric.js":91,"./scene-youtube.js":92}],80:[function(require,module,exports){
|
|
3457
3611
|
const SceneBase = require("./scene-base.js");
|
|
3458
3612
|
|
|
3459
3613
|
class SceneButton extends SceneBase {
|
|
@@ -3463,7 +3617,7 @@ class SceneButton extends SceneBase {
|
|
|
3463
3617
|
}
|
|
3464
3618
|
|
|
3465
3619
|
module.exports = SceneButton;
|
|
3466
|
-
},{"./scene-base.js":
|
|
3620
|
+
},{"./scene-base.js":79}],81:[function(require,module,exports){
|
|
3467
3621
|
const SceneBase = require("./scene-base.js");
|
|
3468
3622
|
|
|
3469
3623
|
class SceneCamera extends SceneBase {
|
|
@@ -3473,7 +3627,7 @@ class SceneCamera extends SceneBase {
|
|
|
3473
3627
|
}
|
|
3474
3628
|
|
|
3475
3629
|
module.exports = SceneCamera;
|
|
3476
|
-
},{"./scene-base.js":
|
|
3630
|
+
},{"./scene-base.js":79}],82:[function(require,module,exports){
|
|
3477
3631
|
const SceneBase = require("./scene-base.js");
|
|
3478
3632
|
|
|
3479
3633
|
class SceneCarousel extends SceneBase {
|
|
@@ -3483,7 +3637,7 @@ class SceneCarousel extends SceneBase {
|
|
|
3483
3637
|
}
|
|
3484
3638
|
|
|
3485
3639
|
module.exports = SceneCarousel;
|
|
3486
|
-
},{"./scene-base.js":
|
|
3640
|
+
},{"./scene-base.js":79}],83:[function(require,module,exports){
|
|
3487
3641
|
const SceneBase = require("./scene-base.js");
|
|
3488
3642
|
|
|
3489
3643
|
class SceneImage extends SceneBase {
|
|
@@ -3493,7 +3647,7 @@ class SceneImage extends SceneBase {
|
|
|
3493
3647
|
}
|
|
3494
3648
|
|
|
3495
3649
|
module.exports = SceneImage;
|
|
3496
|
-
},{"./scene-base.js":
|
|
3650
|
+
},{"./scene-base.js":79}],84:[function(require,module,exports){
|
|
3497
3651
|
const SceneBase = require("./scene-base.js");
|
|
3498
3652
|
|
|
3499
3653
|
class SceneModel extends SceneBase {
|
|
@@ -3503,7 +3657,7 @@ class SceneModel extends SceneBase {
|
|
|
3503
3657
|
}
|
|
3504
3658
|
|
|
3505
3659
|
module.exports = SceneModel;
|
|
3506
|
-
},{"./scene-base.js":
|
|
3660
|
+
},{"./scene-base.js":79}],85:[function(require,module,exports){
|
|
3507
3661
|
const SceneBase = require("./scene-base.js");
|
|
3508
3662
|
|
|
3509
3663
|
class ScenePanorama extends SceneBase {
|
|
@@ -3513,7 +3667,7 @@ class ScenePanorama extends SceneBase {
|
|
|
3513
3667
|
}
|
|
3514
3668
|
|
|
3515
3669
|
module.exports = ScenePanorama;
|
|
3516
|
-
},{"./scene-base.js":
|
|
3670
|
+
},{"./scene-base.js":79}],86:[function(require,module,exports){
|
|
3517
3671
|
const SceneBase = require("./scene-base.js");
|
|
3518
3672
|
|
|
3519
3673
|
class ScenePoller extends SceneBase {
|
|
@@ -3523,7 +3677,7 @@ class ScenePoller extends SceneBase {
|
|
|
3523
3677
|
}
|
|
3524
3678
|
|
|
3525
3679
|
module.exports = ScenePoller;
|
|
3526
|
-
},{"./scene-base.js":
|
|
3680
|
+
},{"./scene-base.js":79}],87:[function(require,module,exports){
|
|
3527
3681
|
const SceneBase = require("./scene-base.js");
|
|
3528
3682
|
|
|
3529
3683
|
class SceneProduct extends SceneBase {
|
|
@@ -3533,7 +3687,7 @@ class SceneProduct extends SceneBase {
|
|
|
3533
3687
|
}
|
|
3534
3688
|
|
|
3535
3689
|
module.exports = SceneProduct;
|
|
3536
|
-
},{"./scene-base.js":
|
|
3690
|
+
},{"./scene-base.js":79}],88:[function(require,module,exports){
|
|
3537
3691
|
const SceneBase = require("./scene-base.js");
|
|
3538
3692
|
|
|
3539
3693
|
class SceneScript extends SceneBase {
|
|
@@ -3543,7 +3697,7 @@ class SceneScript extends SceneBase {
|
|
|
3543
3697
|
}
|
|
3544
3698
|
|
|
3545
3699
|
module.exports = SceneScript;
|
|
3546
|
-
},{"./scene-base.js":
|
|
3700
|
+
},{"./scene-base.js":79}],89:[function(require,module,exports){
|
|
3547
3701
|
const SceneBase = require("./scene-base.js");
|
|
3548
3702
|
|
|
3549
3703
|
class SceneShadow extends SceneBase {
|
|
@@ -3553,7 +3707,7 @@ class SceneShadow extends SceneBase {
|
|
|
3553
3707
|
}
|
|
3554
3708
|
|
|
3555
3709
|
module.exports = SceneShadow;
|
|
3556
|
-
},{"./scene-base.js":
|
|
3710
|
+
},{"./scene-base.js":79}],90:[function(require,module,exports){
|
|
3557
3711
|
const SceneBase = require("./scene-base.js");
|
|
3558
3712
|
|
|
3559
3713
|
class SceneVideo extends SceneBase {
|
|
@@ -3563,7 +3717,7 @@ class SceneVideo extends SceneBase {
|
|
|
3563
3717
|
}
|
|
3564
3718
|
|
|
3565
3719
|
module.exports = SceneVideo;
|
|
3566
|
-
},{"./scene-base.js":
|
|
3720
|
+
},{"./scene-base.js":79}],91:[function(require,module,exports){
|
|
3567
3721
|
const SceneBase = require("./scene-base.js");
|
|
3568
3722
|
|
|
3569
3723
|
class SceneVolumetric extends SceneBase {
|
|
@@ -3573,7 +3727,7 @@ class SceneVolumetric extends SceneBase {
|
|
|
3573
3727
|
}
|
|
3574
3728
|
|
|
3575
3729
|
module.exports = SceneVolumetric;
|
|
3576
|
-
},{"./scene-base.js":
|
|
3730
|
+
},{"./scene-base.js":79}],92:[function(require,module,exports){
|
|
3577
3731
|
const SceneBase = require("./scene-base.js");
|
|
3578
3732
|
|
|
3579
3733
|
class SceneYoutube extends SceneBase {
|
|
@@ -3583,7 +3737,7 @@ class SceneYoutube extends SceneBase {
|
|
|
3583
3737
|
}
|
|
3584
3738
|
|
|
3585
3739
|
module.exports = SceneYoutube;
|
|
3586
|
-
},{"./scene-base.js":
|
|
3740
|
+
},{"./scene-base.js":79}],93:[function(require,module,exports){
|
|
3587
3741
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3588
3742
|
|
|
3589
3743
|
class Scene extends PlattarBase {
|
|
@@ -3593,7 +3747,7 @@ class Scene extends PlattarBase {
|
|
|
3593
3747
|
}
|
|
3594
3748
|
|
|
3595
3749
|
module.exports = Scene;
|
|
3596
|
-
},{"../interfaces/plattar-base.js":
|
|
3750
|
+
},{"../interfaces/plattar-base.js":52}],94:[function(require,module,exports){
|
|
3597
3751
|
const PlattarBase = require("../interfaces/plattar-base.js");
|
|
3598
3752
|
|
|
3599
3753
|
class TriggerImage extends PlattarBase {
|
|
@@ -3603,7 +3757,7 @@ class TriggerImage extends PlattarBase {
|
|
|
3603
3757
|
}
|
|
3604
3758
|
|
|
3605
3759
|
module.exports = TriggerImage;
|
|
3606
|
-
},{"../interfaces/plattar-base.js":
|
|
3760
|
+
},{"../interfaces/plattar-base.js":52}],95:[function(require,module,exports){
|
|
3607
3761
|
const Application = require("../types/application.js");
|
|
3608
3762
|
|
|
3609
3763
|
// import Scene types and its children
|
|
@@ -3828,10 +3982,10 @@ PlattarUtil.match = (type) => {
|
|
|
3828
3982
|
|
|
3829
3983
|
|
|
3830
3984
|
module.exports = PlattarUtil;
|
|
3831
|
-
},{"../types/application.js":
|
|
3832
|
-
module.exports = "1.
|
|
3985
|
+
},{"../types/application.js":37,"../types/content-pipeline/brief.js":38,"../types/content-pipeline/comment-brief.js":39,"../types/content-pipeline/comment-quote.js":40,"../types/content-pipeline/comment-solution.js":41,"../types/content-pipeline/pipeline-user.js":42,"../types/content-pipeline/quote.js":43,"../types/content-pipeline/rating.js":44,"../types/content-pipeline/solution.js":45,"../types/file/file-audio.js":46,"../types/file/file-image.js":48,"../types/file/file-model.js":49,"../types/file/file-script.js":50,"../types/file/file-video.js":51,"../types/interfaces/plattar-object.js":54,"../types/misc/application-build.js":55,"../types/misc/asset-library":56,"../types/misc/async-job.js":57,"../types/misc/script-event.js":58,"../types/misc/tag.js":59,"../types/page/card-button.js":61,"../types/page/card-html.js":62,"../types/page/card-iframe.js":63,"../types/page/card-image.js":64,"../types/page/card-map.js":65,"../types/page/card-paragraph.js":66,"../types/page/card-row.js":67,"../types/page/card-slider.js":68,"../types/page/card-title.js":69,"../types/page/card-video.js":70,"../types/page/card-youtube.js":71,"../types/page/page.js":72,"../types/product/product-annotation.js":73,"../types/product/product-variation.js":75,"../types/product/product.js":76,"../types/scene/scene-annotation.js":77,"../types/scene/scene-audio.js":78,"../types/scene/scene-button.js":80,"../types/scene/scene-camera.js":81,"../types/scene/scene-carousel.js":82,"../types/scene/scene-image.js":83,"../types/scene/scene-model.js":84,"../types/scene/scene-panorama.js":85,"../types/scene/scene-poller.js":86,"../types/scene/scene-product.js":87,"../types/scene/scene-script.js":88,"../types/scene/scene-shadow.js":89,"../types/scene/scene-video.js":90,"../types/scene/scene-volumetric.js":91,"../types/scene/scene-youtube.js":92,"../types/scene/scene.js":93,"../types/trigger/trigger-image.js":94}],96:[function(require,module,exports){
|
|
3986
|
+
module.exports = "1.115.2";
|
|
3833
3987
|
|
|
3834
|
-
},{}],
|
|
3988
|
+
},{}],97:[function(require,module,exports){
|
|
3835
3989
|
const QRCodeStyling = require("qr-code-styling");
|
|
3836
3990
|
|
|
3837
3991
|
class BaseElement extends HTMLElement {
|
|
@@ -3969,7 +4123,7 @@ class BaseElement extends HTMLElement {
|
|
|
3969
4123
|
}
|
|
3970
4124
|
|
|
3971
4125
|
module.exports = BaseElement;
|
|
3972
|
-
},{"qr-code-styling":
|
|
4126
|
+
},{"qr-code-styling":116}],98:[function(require,module,exports){
|
|
3973
4127
|
const BaseElement = require("./base/base-element.js");
|
|
3974
4128
|
|
|
3975
4129
|
class QRCodeElement extends BaseElement {
|
|
@@ -3979,7 +4133,7 @@ class QRCodeElement extends BaseElement {
|
|
|
3979
4133
|
}
|
|
3980
4134
|
|
|
3981
4135
|
module.exports = QRCodeElement;
|
|
3982
|
-
},{"./base/base-element.js":
|
|
4136
|
+
},{"./base/base-element.js":97}],99:[function(require,module,exports){
|
|
3983
4137
|
"use strict";
|
|
3984
4138
|
const QRCodeElement = require("./elements/qrcode-element.js");
|
|
3985
4139
|
const Version = require("./version");
|
|
@@ -3991,10 +4145,10 @@ customElements.define("plattar-qrcode", QRCodeElement);
|
|
|
3991
4145
|
module.exports = {
|
|
3992
4146
|
version: Version
|
|
3993
4147
|
};
|
|
3994
|
-
},{"./elements/qrcode-element.js":
|
|
4148
|
+
},{"./elements/qrcode-element.js":98,"./version":100}],100:[function(require,module,exports){
|
|
3995
4149
|
module.exports = "1.114.1";
|
|
3996
4150
|
|
|
3997
|
-
},{}],
|
|
4151
|
+
},{}],101:[function(require,module,exports){
|
|
3998
4152
|
const ElementController = require("../controllers/element-controller");
|
|
3999
4153
|
|
|
4000
4154
|
class BaseElement extends HTMLElement {
|
|
@@ -4131,7 +4285,7 @@ class BaseElement extends HTMLElement {
|
|
|
4131
4285
|
}
|
|
4132
4286
|
|
|
4133
4287
|
module.exports = BaseElement;
|
|
4134
|
-
},{"../controllers/element-controller":
|
|
4288
|
+
},{"../controllers/element-controller":102}],102:[function(require,module,exports){
|
|
4135
4289
|
const Util = require("../../util/util.js");
|
|
4136
4290
|
const { messenger } = require("@plattar/context-messenger");
|
|
4137
4291
|
const IFrameController = require("./iframe-controller.js");
|
|
@@ -4224,7 +4378,7 @@ class ElementController {
|
|
|
4224
4378
|
}
|
|
4225
4379
|
|
|
4226
4380
|
module.exports = ElementController;
|
|
4227
|
-
},{"../../util/util.js":
|
|
4381
|
+
},{"../../util/util.js":112,"./iframe-controller.js":103,"@plattar/context-messenger":13}],103:[function(require,module,exports){
|
|
4228
4382
|
const Util = require("../../util/util.js");
|
|
4229
4383
|
|
|
4230
4384
|
class IFrameController {
|
|
@@ -4334,7 +4488,7 @@ class IFrameController {
|
|
|
4334
4488
|
}
|
|
4335
4489
|
|
|
4336
4490
|
module.exports = IFrameController;
|
|
4337
|
-
},{"../../util/util.js":
|
|
4491
|
+
},{"../../util/util.js":112}],104:[function(require,module,exports){
|
|
4338
4492
|
const BaseElement = require("./base/base-element.js");
|
|
4339
4493
|
|
|
4340
4494
|
class EditorElement extends BaseElement {
|
|
@@ -4352,7 +4506,7 @@ class EditorElement extends BaseElement {
|
|
|
4352
4506
|
}
|
|
4353
4507
|
|
|
4354
4508
|
module.exports = EditorElement;
|
|
4355
|
-
},{"./base/base-element.js":
|
|
4509
|
+
},{"./base/base-element.js":101}],105:[function(require,module,exports){
|
|
4356
4510
|
const BaseElement = require("./base/base-element.js");
|
|
4357
4511
|
|
|
4358
4512
|
class EWallElement extends BaseElement {
|
|
@@ -4389,7 +4543,7 @@ class EWallElement extends BaseElement {
|
|
|
4389
4543
|
}
|
|
4390
4544
|
|
|
4391
4545
|
module.exports = EWallElement;
|
|
4392
|
-
},{"./base/base-element.js":
|
|
4546
|
+
},{"./base/base-element.js":101}],106:[function(require,module,exports){
|
|
4393
4547
|
const BaseElement = require("./base/base-element.js");
|
|
4394
4548
|
|
|
4395
4549
|
class FaceARElement extends BaseElement {
|
|
@@ -4407,7 +4561,7 @@ class FaceARElement extends BaseElement {
|
|
|
4407
4561
|
}
|
|
4408
4562
|
|
|
4409
4563
|
module.exports = FaceARElement;
|
|
4410
|
-
},{"./base/base-element.js":
|
|
4564
|
+
},{"./base/base-element.js":101}],107:[function(require,module,exports){
|
|
4411
4565
|
const BaseElement = require("./base/base-element.js");
|
|
4412
4566
|
|
|
4413
4567
|
class ProductElement extends BaseElement {
|
|
@@ -4439,7 +4593,7 @@ class ProductElement extends BaseElement {
|
|
|
4439
4593
|
}
|
|
4440
4594
|
|
|
4441
4595
|
module.exports = ProductElement;
|
|
4442
|
-
},{"./base/base-element.js":
|
|
4596
|
+
},{"./base/base-element.js":101}],108:[function(require,module,exports){
|
|
4443
4597
|
const BaseElement = require("./base/base-element.js");
|
|
4444
4598
|
|
|
4445
4599
|
class StudioElement extends BaseElement {
|
|
@@ -4457,7 +4611,7 @@ class StudioElement extends BaseElement {
|
|
|
4457
4611
|
}
|
|
4458
4612
|
|
|
4459
4613
|
module.exports = StudioElement;
|
|
4460
|
-
},{"./base/base-element.js":
|
|
4614
|
+
},{"./base/base-element.js":101}],109:[function(require,module,exports){
|
|
4461
4615
|
const BaseElement = require("./base/base-element.js");
|
|
4462
4616
|
|
|
4463
4617
|
class ViewerElement extends BaseElement {
|
|
@@ -4475,7 +4629,7 @@ class ViewerElement extends BaseElement {
|
|
|
4475
4629
|
}
|
|
4476
4630
|
|
|
4477
4631
|
module.exports = ViewerElement;
|
|
4478
|
-
},{"./base/base-element.js":
|
|
4632
|
+
},{"./base/base-element.js":101}],110:[function(require,module,exports){
|
|
4479
4633
|
const BaseElement = require("./base/base-element.js");
|
|
4480
4634
|
|
|
4481
4635
|
class WebXRElement extends BaseElement {
|
|
@@ -4493,7 +4647,7 @@ class WebXRElement extends BaseElement {
|
|
|
4493
4647
|
}
|
|
4494
4648
|
|
|
4495
4649
|
module.exports = WebXRElement;
|
|
4496
|
-
},{"./base/base-element.js":
|
|
4650
|
+
},{"./base/base-element.js":101}],111:[function(require,module,exports){
|
|
4497
4651
|
"use strict";
|
|
4498
4652
|
const WebXRElement = require("./elements/webxr-element.js");
|
|
4499
4653
|
const ViewerElement = require("./elements/viewer-element.js");
|
|
@@ -4517,7 +4671,7 @@ console.log("using @plattar/plattar-web v" + Version);
|
|
|
4517
4671
|
module.exports = {
|
|
4518
4672
|
version: Version
|
|
4519
4673
|
};
|
|
4520
|
-
},{"./elements/editor-element.js":
|
|
4674
|
+
},{"./elements/editor-element.js":104,"./elements/ewall-element.js":105,"./elements/facear-element.js":106,"./elements/product-element.js":107,"./elements/studio-element.js":108,"./elements/viewer-element.js":109,"./elements/webxr-element.js":110,"./version":113}],112:[function(require,module,exports){
|
|
4521
4675
|
class Util {
|
|
4522
4676
|
static getServerLocation(server) {
|
|
4523
4677
|
switch (server) {
|
|
@@ -4590,10 +4744,10 @@ class Util {
|
|
|
4590
4744
|
}
|
|
4591
4745
|
|
|
4592
4746
|
module.exports = Util;
|
|
4593
|
-
},{}],
|
|
4747
|
+
},{}],113:[function(require,module,exports){
|
|
4594
4748
|
module.exports = "1.113.10";
|
|
4595
4749
|
|
|
4596
|
-
},{}],
|
|
4750
|
+
},{}],114:[function(require,module,exports){
|
|
4597
4751
|
(function (global){(function (){
|
|
4598
4752
|
"use strict";
|
|
4599
4753
|
|
|
@@ -4621,7 +4775,7 @@ exports.Headers = global.Headers;
|
|
|
4621
4775
|
exports.Request = global.Request;
|
|
4622
4776
|
exports.Response = global.Response;
|
|
4623
4777
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
4624
|
-
},{}],
|
|
4778
|
+
},{}],115:[function(require,module,exports){
|
|
4625
4779
|
// shim for using process in browser
|
|
4626
4780
|
var process = module.exports = {};
|
|
4627
4781
|
|
|
@@ -4807,8 +4961,8 @@ process.chdir = function (dir) {
|
|
|
4807
4961
|
};
|
|
4808
4962
|
process.umask = function() { return 0; };
|
|
4809
4963
|
|
|
4810
|
-
},{}],
|
|
4964
|
+
},{}],116:[function(require,module,exports){
|
|
4811
4965
|
!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=[],y={},_=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),m(0,0),m(i-7,0),m(0,i-7),x(),b(),S(t,e),r>=7&&M(t),null==u&&(u=P(r,n,v)),C(u,e)},m=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)},b=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 c=-2;c<=2;c+=1)o[i+u][a+c]=-2==u||2==u||-2==c||2==c||0==u&&0==c}},M=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},S=function(t,e){for(var r=n<<3|e,a=s.getBCHTypeInfo(r),u=0;u<15;u+=1){var c=!t&&1==(a>>u&1);u<6?o[u][8]=c:u<8?o[u+1][8]=c:o[i-15+u][8]=c}for(u=0;u<15;u+=1)c=!t&&1==(a>>u&1),u<8?o[8][i-u-1]=c:u<9?o[8][15-u-1+1]=c:o[8][15-u-1]=c;o[i-8][8]=!t},C=function(t,e){for(var r=-1,n=i-1,a=7,u=0,c=s.getMaskFunction(e),h=i-1;h>0;h-=2)for(6==h&&(h-=1);;){for(var d=0;d<2;d+=1)if(null==o[n][h-d]){var l=!1;u<t.length&&(l=1==(t[u]>>>a&1)),c(n,h-d)&&(l=!l),o[n][h-d]=l,-1==(a-=1)&&(u+=1,a=7)}if((n+=r)<0||i<=n){n-=r,r=-r;break}}},P=function(t,e,r){for(var n=h.getRSBlocks(t,e),o=d(),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 h=e[u].dataCount,d=e[u].totalCount-h;n=Math.max(n,h),o=Math.max(o,d),i[u]=new Array(h);for(var l=0;l<i[u].length;l+=1)i[u][l]=255&t.getBuffer()[l+r];r+=h;var f=s.getErrorCorrectPolynomial(d),p=c(i[u],f.getLength()-1).mod(f);for(a[u]=new Array(f.getLength()-1),l=0;l<a[u].length;l+=1){var g=l+p.getLength()-a[u].length;a[u][l]=g>=0?p.getAt(g):0}}var v=0;for(l=0;l<e.length;l+=1)v+=e[l].totalCount;var y=new Array(v),w=0;for(l=0;l<n;l+=1)for(u=0;u<e.length;u+=1)l<i[u].length&&(y[w]=i[u][l],w+=1);for(l=0;l<o;l+=1)for(u=0;u<e.length;u+=1)l<a[u].length&&(y[w]=a[u][l],w+=1);return y}(o,n)};y.addData=function(t,e){var r=null;switch(e=e||"Byte"){case"Numeric":r=l(t);break;case"Alphanumeric":r=f(t);break;case"Byte":r=p(t);break;case"Kanji":r=g(t);break;default:throw"mode:"+e}v.push(r),u=null},y.isDark=function(t,e){if(t<0||i<=t||e<0||i<=e)throw t+","+e;return o[t][e]},y.getModuleCount=function(){return i},y.make=function(){if(r<1){for(var t=1;t<40;t++){for(var e=h.getRSBlocks(t,n),o=d(),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}_(!1,function(){for(var t=0,e=0,r=0;r<8;r+=1){_(!0,r);var n=s.getLostPoint(y);(0==r||t>n)&&(t=n,e=r)}return e}())},y.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<y.getModuleCount();n+=1){r+="<tr>";for(var o=0;o<y.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+=y.isDark(n,o)?"#000000":"#ffffff",r+=";",r+='"/>';r+="</tr>"}return(r+="</tbody>")+"</table>"},y.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,c=y.getModuleCount()*t+2*e,h="";for(u="l"+t+",0 0,"+t+" -"+t+",0 0,-"+t+"z ",h+='<svg version="1.1" xmlns="http://www.w3.org/2000/svg"',h+=o.scalable?"":' width="'+c+'px" height="'+c+'px"',h+=' viewBox="0 0 '+c+" "+c+'" ',h+=' preserveAspectRatio="xMinYMin meet"',h+=n.text||r.text?' role="img" aria-labelledby="'+O([n.id,r.id].join(" ").trim())+'"':"",h+=">",h+=n.text?'<title id="'+O(n.id)+'">'+O(n.text)+"</title>":"",h+=r.text?'<description id="'+O(r.id)+'">'+O(r.text)+"</description>":"",h+='<rect width="100%" height="100%" fill="white" cx="0" cy="0"/>',h+='<path d="',a=0;a<y.getModuleCount();a+=1)for(s=a*t+e,i=0;i<y.getModuleCount();i+=1)y.isDark(a,i)&&(h+="M"+(i*t+e)+","+s+u);return(h+='" stroke="transparent" fill="black"/>')+"</svg>"},y.createDataURL=function(t,e){t=t||2,e=void 0===e?4*t:e;var r=y.getModuleCount()*t+2*e,n=e,o=r-e;return w(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 y.isDark(a,i)?0:1}return 1}))},y.createImgTag=function(t,e,r){t=t||2,e=void 0===e?4*t:e;var n=y.getModuleCount()*t+2*e,o="";return o+="<img",o+=' src="',o+=y.createDataURL(t,e),o+='"',o+=' width="',o+=n,o+='"',o+=' height="',o+=n,o+='"',r&&(o+=' alt="',o+=O(r),o+='"'),o+"/>"};var O=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 y.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*y.getModuleCount()+2*t,s=t,u=a-t,c={"██":"█","█ ":"▀"," █":"▄"," ":" "},h={"██":"▀","█ ":"▀"," █":" "," ":" "},d="";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&&y.isDark(n,Math.floor((r-s)/1))&&(i=" "),s<=r&&r<u&&s<=e+1&&e+1<u&&y.isDark(o,Math.floor((r-s)/1))?i+=" ":i+="█",d+=t<1&&e+1>=u?h[i]:c[i];d+="\n"}return a%2&&t>0?d.substring(0,d.length-a-1)+Array(a+1).join("▀"):d.substring(0,d.length-1)}(e);t-=1,e=void 0===e?2*t:e;var r,n,o,i,a=y.getModuleCount()*t+2*e,s=e,u=a-e,c=Array(t+1).join("██"),h=Array(t+1).join(" "),d="",l="";for(r=0;r<a;r+=1){for(o=Math.floor((r-s)/t),l="",n=0;n<a;n+=1)i=1,s<=n&&n<u&&s<=r&&r<u&&y.isDark(o,Math.floor((n-s)/t))&&(i=0),l+=i?c:h;for(o=0;o<t;o+=1)d+=l+"\n"}return d.substring(0,d.length-1)},y.renderTo2dContext=function(t,e){e=e||2;for(var r=y.getModuleCount(),n=0;n<r;n++)for(var o=0;o<r;o++)t.fillStyle=y.isDark(n,o)?"black":"white",t.fillRect(n*e,o*e,e,e)},y};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=y(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=c([1],0),r=0;r<t;r+=1)e=e.multiply(c([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 c=0;t.isDark(n,o)&&(c+=1),t.isDark(n+1,o)&&(c+=1),t.isDark(n,o+1)&&(c+=1),t.isDark(n+1,o+1)&&(c+=1),0!=c&&4!=c||(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 h=0;for(o=0;o<e;o+=1)for(n=0;n<e;n+=1)t.isDark(n,o)&&(h+=1);return r+Math.abs(100*h/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 c(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 c(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 c(r,0).mod(t)}};return n}var h=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 c=o[3*u+0],h=o[3*u+1],d=o[3*u+2],l=0;l<c;l+=1)s.push(e(h,d));return s}};return r}(),d=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},l=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},p=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)}}},g=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},y=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},w=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,c,h,d=v(),l=(u=d,c=0,h=0,{write:function(t,e){if(t>>>e!=0)throw"length over";for(;c+e>=8;)u.writeByte(255&(t<<c|h)),e-=8-c,t>>>=8-c,h=0,c=0;h|=t<<c,c+=e},flush:function(){c>0&&u.writeByte(h)}});l.write(e,n);var f=0,p=String.fromCharCode(o[f]);for(f+=1;f<o.length;){var g=String.fromCharCode(o[f]);f+=1,i.contains(p+g)?p+=g:(l.write(i.indexOf(p),n),i.size()<4095&&(i.size()==1<<n&&(n+=1),i.add(p+g)),p=g)}return l.write(i.indexOf(p),n),l.write(r,n),l.flush(),d.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(),c=0;c<u.length;c+=1)s.writeByte(u[c]);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)},796:(t,e,r)=>{"use strict";r.d(e,{default:()=>W});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){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}}const c={L:.07,M:.15,Q:.25,H:.3},h="dots",d="rounded",l="classy",f="classy-rounded",p="square",g="extra-rounded";var v=function(){return(v=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 y=function(){function t(t){var e=t.context,r=t.type;this._context=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o,i=this._context;switch(this._type){case h:o=this._drawDot;break;case l:o=this._drawClassy;break;case f:o=this._drawClassyRounded;break;case d:o=this._drawRounded;break;case g:o=this._drawExtraRounded;break;case p:default:o=this._drawSquare}o.call(this,{x:t,y:e,size:r,context:i,getNeighbor:n})},t.prototype._rotateFigure=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.rotation,a=void 0===i?0:i,s=t.draw,u=e+n/2,c=r+n/2;o.translate(u,c),a&&o.rotate(a),s(),o.closePath(),a&&o.rotate(-a),o.translate(-u,-c)},t.prototype._basicDot=function(t){var e=t.size,r=t.context;this._rotateFigure(v(v({},t),{draw:function(){r.arc(0,0,e/2,0,2*Math.PI)}}))},t.prototype._basicSquare=function(t){var e=t.size,r=t.context;this._rotateFigure(v(v({},t),{draw:function(){r.rect(-e/2,-e/2,e,e)}}))},t.prototype._basicSideRounded=function(t){var e=t.size,r=t.context;this._rotateFigure(v(v({},t),{draw:function(){r.arc(0,0,e/2,-Math.PI/2,Math.PI/2),r.lineTo(-e/2,e/2),r.lineTo(-e/2,-e/2),r.lineTo(0,-e/2)}}))},t.prototype._basicCornerRounded=function(t){var e=t.size,r=t.context;this._rotateFigure(v(v({},t),{draw:function(){r.arc(0,0,e/2,-Math.PI/2,0),r.lineTo(e/2,e/2),r.lineTo(-e/2,e/2),r.lineTo(-e/2,-e/2),r.lineTo(0,-e/2)}}))},t.prototype._basicCornerExtraRounded=function(t){var e=t.size,r=t.context;this._rotateFigure(v(v({},t),{draw:function(){r.arc(-e/2,e/2,e,-Math.PI/2,0),r.lineTo(-e/2,e/2),r.lineTo(-e/2,-e/2)}}))},t.prototype._basicCornersRounded=function(t){var e=t.size,r=t.context;this._rotateFigure(v(v({},t),{draw:function(){r.arc(0,0,e/2,-Math.PI/2,0),r.lineTo(e/2,e/2),r.lineTo(0,e/2),r.arc(0,0,e/2,Math.PI/2,Math.PI),r.lineTo(-e/2,-e/2),r.lineTo(0,-e/2)}}))},t.prototype._basicCornersExtraRounded=function(t){var e=t.size,r=t.context;this._rotateFigure(v(v({},t),{draw:function(){r.arc(-e/2,e/2,e,-Math.PI/2,0),r.arc(e/2,-e/2,e,Math.PI/2,Math.PI)}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size,o=t.context;this._basicDot({x:e,y:r,size:n,context:o,rotation:0})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size,o=t.context;this._basicSquare({x:e,y:r,size:n,context:o,rotation:0})},t.prototype._drawRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.getNeighbor,a=i?+i(-1,0):0,s=i?+i(1,0):0,u=i?+i(0,-1):0,c=i?+i(0,1):0,h=a+s+u+c;if(0!==h)if(h>2||a&&s||u&&c)this._basicSquare({x:e,y:r,size:n,context:o,rotation:0});else{if(2===h){var d=0;return a&&u?d=Math.PI/2:u&&s?d=Math.PI:s&&c&&(d=-Math.PI/2),void this._basicCornerRounded({x:e,y:r,size:n,context:o,rotation:d})}if(1===h)return d=0,u?d=Math.PI/2:s?d=Math.PI:c&&(d=-Math.PI/2),void this._basicSideRounded({x:e,y:r,size:n,context:o,rotation:d})}else this._basicDot({x:e,y:r,size:n,context:o,rotation:0})},t.prototype._drawExtraRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.getNeighbor,a=i?+i(-1,0):0,s=i?+i(1,0):0,u=i?+i(0,-1):0,c=i?+i(0,1):0,h=a+s+u+c;if(0!==h)if(h>2||a&&s||u&&c)this._basicSquare({x:e,y:r,size:n,context:o,rotation:0});else{if(2===h){var d=0;return a&&u?d=Math.PI/2:u&&s?d=Math.PI:s&&c&&(d=-Math.PI/2),void this._basicCornerExtraRounded({x:e,y:r,size:n,context:o,rotation:d})}if(1===h)return d=0,u?d=Math.PI/2:s?d=Math.PI:c&&(d=-Math.PI/2),void this._basicSideRounded({x:e,y:r,size:n,context:o,rotation:d})}else this._basicDot({x:e,y:r,size:n,context:o,rotation:0})},t.prototype._drawClassy=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.getNeighbor,a=i?+i(-1,0):0,s=i?+i(1,0):0,u=i?+i(0,-1):0,c=i?+i(0,1):0;0!==a+s+u+c?a||u?s||c?this._basicSquare({x:e,y:r,size:n,context:o,rotation:0}):this._basicCornerRounded({x:e,y:r,size:n,context:o,rotation:Math.PI/2}):this._basicCornerRounded({x:e,y:r,size:n,context:o,rotation:-Math.PI/2}):this._basicCornersRounded({x:e,y:r,size:n,context:o,rotation:Math.PI/2})},t.prototype._drawClassyRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.getNeighbor,a=i?+i(-1,0):0,s=i?+i(1,0):0,u=i?+i(0,-1):0,c=i?+i(0,1):0;0!==a+s+u+c?a||u?s||c?this._basicSquare({x:e,y:r,size:n,context:o,rotation:0}):this._basicCornerExtraRounded({x:e,y:r,size:n,context:o,rotation:Math.PI/2}):this._basicCornerExtraRounded({x:e,y:r,size:n,context:o,rotation:-Math.PI/2}):this._basicCornersRounded({x:e,y:r,size:n,context:o,rotation:Math.PI/2})},t}(),w="square",_="extra-rounded";var m=function(){return(m=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 b=function(){function t(t){var e=t.context,r=t.type;this._context=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o,i=this._context;switch(this._type){case w:o=this._drawSquare;break;case _:o=this._drawExtraRounded;break;case"dot":default:o=this._drawDot}o.call(this,{x:t,y:e,size:r,context:i,rotation:n})},t.prototype._rotateFigure=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.rotation,a=void 0===i?0:i,s=t.draw,u=e+n/2,c=r+n/2;o.translate(u,c),a&&o.rotate(a),s(),o.closePath(),a&&o.rotate(-a),o.translate(-u,-c)},t.prototype._basicDot=function(t){var e=t.size,r=t.context,n=e/7;this._rotateFigure(m(m({},t),{draw:function(){r.arc(0,0,e/2,0,2*Math.PI),r.arc(0,0,e/2-n,0,2*Math.PI)}}))},t.prototype._basicSquare=function(t){var e=t.size,r=t.context,n=e/7;this._rotateFigure(m(m({},t),{draw:function(){r.rect(-e/2,-e/2,e,e),r.rect(-e/2+n,-e/2+n,e-2*n,e-2*n)}}))},t.prototype._basicExtraRounded=function(t){var e=t.size,r=t.context,n=e/7;this._rotateFigure(m(m({},t),{draw:function(){r.arc(-n,-n,2.5*n,Math.PI,-Math.PI/2),r.lineTo(n,-3.5*n),r.arc(n,-n,2.5*n,-Math.PI/2,0),r.lineTo(3.5*n,-n),r.arc(n,n,2.5*n,0,Math.PI/2),r.lineTo(-n,3.5*n),r.arc(-n,n,2.5*n,Math.PI/2,Math.PI),r.lineTo(-3.5*n,-n),r.arc(-n,-n,1.5*n,Math.PI,-Math.PI/2),r.lineTo(n,-2.5*n),r.arc(n,-n,1.5*n,-Math.PI/2,0),r.lineTo(2.5*n,-n),r.arc(n,n,1.5*n,0,Math.PI/2),r.lineTo(-n,2.5*n),r.arc(-n,n,1.5*n,Math.PI/2,Math.PI),r.lineTo(-2.5*n,-n)}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.rotation;this._basicDot({x:e,y:r,size:n,context:o,rotation:i})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.rotation;this._basicSquare({x:e,y:r,size:n,context:o,rotation:i})},t.prototype._drawExtraRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.rotation;this._basicExtraRounded({x:e,y:r,size:n,context:o,rotation:i})},t}(),x="square";var M=function(){return(M=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 S=function(){function t(t){var e=t.context,r=t.type;this._context=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o,i=this._context;switch(this._type){case x:o=this._drawSquare;break;case"dot":default:o=this._drawDot}o.call(this,{x:t,y:e,size:r,context:i,rotation:n})},t.prototype._rotateFigure=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.rotation,a=void 0===i?0:i,s=t.draw,u=e+n/2,c=r+n/2;o.translate(u,c),a&&o.rotate(a),s(),o.closePath(),a&&o.rotate(-a),o.translate(-u,-c)},t.prototype._basicDot=function(t){var e=t.size,r=t.context;this._rotateFigure(M(M({},t),{draw:function(){r.arc(0,0,e/2,0,2*Math.PI)}}))},t.prototype._basicSquare=function(t){var e=t.size,r=t.context;this._rotateFigure(M(M({},t),{draw:function(){r.rect(-e/2,-e/2,e,e)}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.rotation;this._basicDot({x:e,y:r,size:n,context:o,rotation:i})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size,o=t.context,i=t.rotation;this._basicSquare({x:e,y:r,size:n,context:o,rotation:i})},t}(),C="radial";var P=[[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]],O=[[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 z=function(){function t(t){this._canvas=document.createElement("canvas"),this._canvas.width=t.width,this._canvas.height=t.height,this._options=t}return Object.defineProperty(t.prototype,"context",{get:function(){return this._canvas.getContext("2d")},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"width",{get:function(){return this._canvas.width},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"height",{get:function(){return this._canvas.height},enumerable:!1,configurable:!0}),t.prototype.getCanvas=function(){return this._canvas},t.prototype.clear=function(){var t=this.context;t&&t.clearRect(0,0,this._canvas.width,this._canvas.height)},t.prototype.drawQR=function(t){return e=this,r=void 0,o=function(){var e,r,n,o,i,a,s,h,d,l=this;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(f){switch(f.label){case 0:return e=t.getModuleCount(),r=Math.min(this._options.width,this._options.height)-2*this._options.margin,n=Math.floor(r/e),o={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];i=this._options,a=i.imageOptions,s=i.qrOptions,h=a.imageSize*c[s.errorCorrectionLevel],d=Math.floor(h*e*e),o=u({originalWidth:this._image.width,originalHeight:this._image.height,maxHiddenDots:d,maxHiddenAxisDots:e-14,dotSize:n}),f.label=2;case 2:return this.clear(),this.drawBackground(),this.drawDots((function(t,r){var n,i,a,s,u,c;return!(l._options.imageOptions.hideBackgroundDots&&t>=(e-o.hideXDots)/2&&t<(e+o.hideXDots)/2&&r>=(e-o.hideYDots)/2&&r<(e+o.hideYDots)/2||(null===(n=P[t])||void 0===n?void 0:n[r])||(null===(i=P[t-e+7])||void 0===i?void 0:i[r])||(null===(a=P[t])||void 0===a?void 0:a[r-e+7])||(null===(s=O[t])||void 0===s?void 0:s[r])||(null===(u=O[t-e+7])||void 0===u?void 0:u[r])||(null===(c=O[t])||void 0===c?void 0:c[r-e+7]))})),this.drawCorners(),this._options.image&&this.drawImage({width:o.width,height:o.height,count:e,dotSize:n}),[2]}}))},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},t.prototype.drawBackground=function(){var t=this.context,e=this._options;if(t){if(e.backgroundOptions.gradient){var r=e.backgroundOptions.gradient,n=this._createGradient({context:t,options:r,additionalRotation:0,x:0,y:0,size:this._canvas.width>this._canvas.height?this._canvas.width:this._canvas.height});r.colorStops.forEach((function(t){var e=t.offset,r=t.color;n.addColorStop(e,r)})),t.fillStyle=n}else e.backgroundOptions.color&&(t.fillStyle=e.backgroundOptions.color);t.fillRect(0,0,this._canvas.width,this._canvas.height)}},t.prototype.drawDots=function(t){var e=this;if(!this._qr)throw"QR code is not defined";var r=this.context;if(!r)throw"QR code is not defined";var n=this._options,o=this._qr.getModuleCount();if(o>n.width||o>n.height)throw"The canvas is too small.";var i=Math.min(n.width,n.height)-2*n.margin,a=Math.floor(i/o),s=Math.floor((n.width-o*a)/2),u=Math.floor((n.height-o*a)/2),c=new y({context:r,type:n.dotsOptions.type});r.beginPath();for(var h=function(r){for(var n=function(n){return t&&!t(r,n)?"continue":d._qr.isDark(r,n)?void c.draw(s+r*a,u+n*a,a,(function(i,a){return!(r+i<0||n+a<0||r+i>=o||n+a>=o)&&!(t&&!t(r+i,n+a))&&!!e._qr&&e._qr.isDark(r+i,n+a)})):"continue"},i=0;i<o;i++)n(i)},d=this,l=0;l<o;l++)h(l);if(n.dotsOptions.gradient){var f=n.dotsOptions.gradient,p=this._createGradient({context:r,options:f,additionalRotation:0,x:s,y:u,size:o*a});f.colorStops.forEach((function(t){var e=t.offset,r=t.color;p.addColorStop(e,r)})),r.fillStyle=r.strokeStyle=p}else n.dotsOptions.color&&(r.fillStyle=r.strokeStyle=n.dotsOptions.color);r.fill("evenodd")},t.prototype.drawCorners=function(t){var e=this;if(!this._qr)throw"QR code is not defined";var r=this.context;if(!r)throw"QR code is not defined";var n=this._options,o=this._qr.getModuleCount(),i=Math.min(n.width,n.height)-2*n.margin,a=Math.floor(i/o),s=7*a,u=3*a,c=Math.floor((n.width-o*a)/2),h=Math.floor((n.height-o*a)/2);[[0,0,0],[1,0,Math.PI/2],[0,1,-Math.PI/2]].forEach((function(i){var d,l,f,p,g,v,w,_,m,x,M=i[0],C=i[1],z=i[2];if(!t||t(M,C)){var D=c+M*a*(o-7),I=h+C*a*(o-7);if(null===(d=n.cornersSquareOptions)||void 0===d?void 0:d.type){var A=new b({context:r,type:null===(l=n.cornersSquareOptions)||void 0===l?void 0:l.type});r.beginPath(),A.draw(D,I,s,z)}else{var k=new y({context:r,type:n.dotsOptions.type});r.beginPath();for(var q=function(t){for(var e=function(e){if(!(null===(f=P[t])||void 0===f?void 0:f[e]))return"continue";k.draw(D+t*a,I+e*a,a,(function(r,n){var o;return!!(null===(o=P[t+r])||void 0===o?void 0:o[e+n])}))},r=0;r<P[t].length;r++)e(r)},R=0;R<P.length;R++)q(R)}if(null===(p=n.cornersSquareOptions)||void 0===p?void 0:p.gradient){var B=n.cornersSquareOptions.gradient,E=e._createGradient({context:r,options:B,additionalRotation:z,x:D,y:I,size:s});B.colorStops.forEach((function(t){var e=t.offset,r=t.color;E.addColorStop(e,r)})),r.fillStyle=r.strokeStyle=E}else(null===(g=n.cornersSquareOptions)||void 0===g?void 0:g.color)&&(r.fillStyle=r.strokeStyle=n.cornersSquareOptions.color);if(r.fill("evenodd"),null===(v=n.cornersDotOptions)||void 0===v?void 0:v.type){var L=new S({context:r,type:null===(w=n.cornersDotOptions)||void 0===w?void 0:w.type});r.beginPath(),L.draw(D+2*a,I+2*a,u,z)}else{k=new y({context:r,type:n.dotsOptions.type}),r.beginPath();var N=function(t){for(var e=function(e){if(!(null===(_=O[t])||void 0===_?void 0:_[e]))return"continue";k.draw(D+t*a,I+e*a,a,(function(r,n){var o;return!!(null===(o=O[t+r])||void 0===o?void 0:o[e+n])}))},r=0;r<O[t].length;r++)e(r)};for(R=0;R<O.length;R++)N(R)}if(null===(m=n.cornersDotOptions)||void 0===m?void 0:m.gradient){B=n.cornersDotOptions.gradient;var T=e._createGradient({context:r,options:B,additionalRotation:z,x:D+2*a,y:I+2*a,size:u});B.colorStops.forEach((function(t){var e=t.offset,r=t.color;T.addColorStop(e,r)})),r.fillStyle=r.strokeStyle=T}else(null===(x=n.cornersDotOptions)||void 0===x?void 0:x.color)&&(r.fillStyle=r.strokeStyle=n.cornersDotOptions.color);r.fill("evenodd")}}))},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,i=this.context;if(!i)throw"canvasContext is not defined";if(!this._image)throw"image is not defined";var a=this._options,s=Math.floor((a.width-n*o)/2),u=Math.floor((a.height-n*o)/2),c=s+a.imageOptions.margin+(n*o-e)/2,h=u+a.imageOptions.margin+(n*o-r)/2,d=e-2*a.imageOptions.margin,l=r-2*a.imageOptions.margin;i.drawImage(this._image,c,h,d<0?0:d,l<0?0:l)},t.prototype._createGradient=function(t){var e,r=t.context,n=t.options,o=t.additionalRotation,i=t.x,a=t.y,s=t.size;if(n.type===C)e=r.createRadialGradient(i+s/2,a+s/2,0,i+s/2,a+s/2,s/2);else{var u=((n.rotation||0)+o)%(2*Math.PI),c=(u+2*Math.PI)%(2*Math.PI),h=i+s/2,d=a+s/2,l=i+s/2,f=a+s/2;c>=0&&c<=.25*Math.PI||c>1.75*Math.PI&&c<=2*Math.PI?(h-=s/2,d-=s/2*Math.tan(u),l+=s/2,f+=s/2*Math.tan(u)):c>.25*Math.PI&&c<=.75*Math.PI?(d-=s/2,h-=s/2/Math.tan(u),f+=s/2,l+=s/2/Math.tan(u)):c>.75*Math.PI&&c<=1.25*Math.PI?(h+=s/2,d+=s/2*Math.tan(u),l-=s/2,f-=s/2*Math.tan(u)):c>1.25*Math.PI&&c<=1.75*Math.PI&&(d+=s/2,h+=s/2/Math.tan(u),f-=s/2,l-=s/2/Math.tan(u)),e=r.createLinearGradient(Math.round(h),Math.round(d),Math.round(l),Math.round(f))}return e},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 I=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 h:o=this._drawDot;break;case l:o=this._drawClassy;break;case f:o=this._drawClassyRounded;break;case d:o=this._drawRounded;break;case g:o=this._drawExtraRounded;break;case p: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(D(D({},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(D(D({},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(D(D({},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(D(D({},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(D(D({},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(D(D({},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,c=i+a+s+u;if(0!==c)if(c>2||i&&a||s&&u)this._basicSquare({x:e,y:r,size:n,rotation:0});else{if(2===c){var h=0;return i&&s?h=Math.PI/2:s&&a?h=Math.PI:a&&u&&(h=-Math.PI/2),void this._basicCornerRounded({x:e,y:r,size:n,rotation:h})}if(1===c)return h=0,s?h=Math.PI/2:a?h=Math.PI:u&&(h=-Math.PI/2),void this._basicSideRounded({x:e,y:r,size:n,rotation:h})}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,c=i+a+s+u;if(0!==c)if(c>2||i&&a||s&&u)this._basicSquare({x:e,y:r,size:n,rotation:0});else{if(2===c){var h=0;return i&&s?h=Math.PI/2:s&&a?h=Math.PI:a&&u&&(h=-Math.PI/2),void this._basicCornerExtraRounded({x:e,y:r,size:n,rotation:h})}if(1===c)return h=0,s?h=Math.PI/2:a?h=Math.PI:u&&(h=-Math.PI/2),void this._basicSideRounded({x:e,y:r,size:n,rotation:h})}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 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)};const k=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 w:o=this._drawSquare;break;case _: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(A(A({},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(A(A({},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(A(A({},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 q=function(){return(q=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 R=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 x: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(q(q({},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(q(q({},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}();var B=[[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]],E=[[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 L=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.clear=function(){var t,e=this._element;this._element=e.cloneNode(!1),null===(t=null==e?void 0:e.parentNode)||void 0===t||t.replaceChild(this._element,e),this._defs=document.createElementNS("http://www.w3.org/2000/svg","defs"),this._element.appendChild(this._defs)},t.prototype.drawQR=function(t){return e=this,r=void 0,o=function(){var e,r,n,o,i,a,s,h,d,l=this;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(f){switch(f.label){case 0:return e=t.getModuleCount(),r=Math.min(this._options.width,this._options.height)-2*this._options.margin,n=Math.floor(r/e),o={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];i=this._options,a=i.imageOptions,s=i.qrOptions,h=a.imageSize*c[s.errorCorrectionLevel],d=Math.floor(h*e*e),o=u({originalWidth:this._image.width,originalHeight:this._image.height,maxHiddenDots:d,maxHiddenAxisDots:e-14,dotSize:n}),f.label=2;case 2:return this.clear(),this.drawBackground(),this.drawDots((function(t,r){var n,i,a,s,u,c;return!(l._options.imageOptions.hideBackgroundDots&&t>=(e-o.hideXDots)/2&&t<(e+o.hideXDots)/2&&r>=(e-o.hideYDots)/2&&r<(e+o.hideYDots)/2||(null===(n=B[t])||void 0===n?void 0:n[r])||(null===(i=B[t-e+7])||void 0===i?void 0:i[r])||(null===(a=B[t])||void 0===a?void 0:a[r-e+7])||(null===(s=E[t])||void 0===s?void 0:s[r])||(null===(u=E[t-e+7])||void 0===u?void 0:u[r])||(null===(c=E[t])||void 0===c?void 0:c[r-e+7]))})),this.drawCorners(),this._options.image&&this.drawImage({width:o.width,height:o.height,count:e,dotSize:n}),[2]}}))},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},t.prototype.drawBackground=function(){var t,e,r=this._element,n=this._options;if(r){var o=null===(t=n.backgroundOptions)||void 0===t?void 0:t.gradient,i=null===(e=n.backgroundOptions)||void 0===e?void 0:e.color;(o||i)&&this._createColor({options:o,color:i,additionalRotation:0,x:0,y:0,height:n.height,width:n.width,name:"background-color"})}},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=Math.floor(a/i),u=Math.floor((o.width-i*s)/2),c=Math.floor((o.height-i*s)/2),h=new I({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:u,y:c,height:i*s,width:i*s,name:"dot-color"});for(var d=function(e){for(var o=function(o){return t&&!t(e,o)?"continue":(null===(r=l._qr)||void 0===r?void 0:r.isDark(e,o))?(h.draw(u+e*s,c+o*s,s,(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(h._element&&l._dotsClipPath&&l._dotsClipPath.appendChild(h._element))):"continue"},a=0;a<i;a++)o(a)},l=this,f=0;f<i;f++)d(f)},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=Math.floor(o/n),a=7*i,s=3*i,u=Math.floor((r.width-n*i)/2),c=Math.floor((r.height-n*i)/2);[[0,0,0],[1,0,Math.PI/2],[0,1,-Math.PI/2]].forEach((function(e){var o,h,d,l,f,p,g,v,y,w,_,m,b=e[0],x=e[1],M=e[2],S=u+b*i*(n-7),C=c+x*i*(n-7),P=t._dotsClipPath,O=t._dotsClipPath;if(((null===(o=r.cornersSquareOptions)||void 0===o?void 0:o.gradient)||(null===(h=r.cornersSquareOptions)||void 0===h?void 0:h.color))&&((P=document.createElementNS("http://www.w3.org/2000/svg","clipPath")).setAttribute("id","clip-path-corners-square-color-"+b+"-"+x),t._defs.appendChild(P),t._cornersSquareClipPath=t._cornersDotClipPath=O=P,t._createColor({options:null===(d=r.cornersSquareOptions)||void 0===d?void 0:d.gradient,color:null===(l=r.cornersSquareOptions)||void 0===l?void 0:l.color,additionalRotation:M,x:S,y:C,height:a,width:a,name:"corners-square-color-"+b+"-"+x})),null===(f=r.cornersSquareOptions)||void 0===f?void 0:f.type){var z=new k({svg:t._element,type:r.cornersSquareOptions.type});z.draw(S,C,a,M),z._element&&P&&P.appendChild(z._element)}else for(var D=new I({svg:t._element,type:r.dotsOptions.type}),A=function(t){for(var e=function(e){if(!(null===(p=B[t])||void 0===p?void 0:p[e]))return"continue";D.draw(S+t*i,C+e*i,i,(function(r,n){var o;return!!(null===(o=B[t+r])||void 0===o?void 0:o[e+n])})),D._element&&P&&P.appendChild(D._element)},r=0;r<B[t].length;r++)e(r)},q=0;q<B.length;q++)A(q);if(((null===(g=r.cornersDotOptions)||void 0===g?void 0:g.gradient)||(null===(v=r.cornersDotOptions)||void 0===v?void 0:v.color))&&((O=document.createElementNS("http://www.w3.org/2000/svg","clipPath")).setAttribute("id","clip-path-corners-dot-color-"+b+"-"+x),t._defs.appendChild(O),t._cornersDotClipPath=O,t._createColor({options:null===(y=r.cornersDotOptions)||void 0===y?void 0:y.gradient,color:null===(w=r.cornersDotOptions)||void 0===w?void 0:w.color,additionalRotation:M,x:S+2*i,y:C+2*i,height:s,width:s,name:"corners-dot-color-"+b+"-"+x})),null===(_=r.cornersDotOptions)||void 0===_?void 0:_.type){var L=new R({svg:t._element,type:r.cornersDotOptions.type});L.draw(S+2*i,C+2*i,s,M),L._element&&O&&O.appendChild(L._element)}else{D=new I({svg:t._element,type:r.dotsOptions.type});var N=function(t){for(var e=function(e){if(!(null===(m=E[t])||void 0===m?void 0:m[e]))return"continue";D.draw(S+t*i,C+e*i,i,(function(r,n){var o;return!!(null===(o=E[t+r])||void 0===o?void 0:o[e+n])})),D._element&&O&&O.appendChild(D._element)},r=0;r<E[t].length;r++)e(r)};for(q=0;q<E.length;q++)N(q)}}))},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,i=this._options,a=Math.floor((i.width-n*o)/2),s=Math.floor((i.height-n*o)/2),u=a+i.imageOptions.margin+(n*o-e)/2,c=s+i.imageOptions.margin+(n*o-r)/2,h=e-2*i.imageOptions.margin,d=r-2*i.imageOptions.margin,l=document.createElementNS("http://www.w3.org/2000/svg","image");l.setAttribute("href",i.image||""),l.setAttribute("x",String(u)),l.setAttribute("y",String(c)),l.setAttribute("width",h+"px"),l.setAttribute("height",d+"px"),this._element.appendChild(l)},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,c=s>a?s:a,h=document.createElementNS("http://www.w3.org/2000/svg","rect");if(h.setAttribute("x",String(o)),h.setAttribute("y",String(i)),h.setAttribute("height",String(a)),h.setAttribute("width",String(s)),h.setAttribute("clip-path","url('#clip-path-"+u+"')"),e){var d;if(e.type===C)(d=document.createElementNS("http://www.w3.org/2000/svg","radialGradient")).setAttribute("id",u),d.setAttribute("gradientUnits","userSpaceOnUse"),d.setAttribute("fx",String(o+s/2)),d.setAttribute("fy",String(i+a/2)),d.setAttribute("cx",String(o+s/2)),d.setAttribute("cy",String(i+a/2)),d.setAttribute("r",String(c/2));else{var l=((e.rotation||0)+n)%(2*Math.PI),f=(l+2*Math.PI)%(2*Math.PI),p=o+s/2,g=i+a/2,v=o+s/2,y=i+a/2;f>=0&&f<=.25*Math.PI||f>1.75*Math.PI&&f<=2*Math.PI?(p-=s/2,g-=a/2*Math.tan(l),v+=s/2,y+=a/2*Math.tan(l)):f>.25*Math.PI&&f<=.75*Math.PI?(g-=a/2,p-=s/2/Math.tan(l),y+=a/2,v+=s/2/Math.tan(l)):f>.75*Math.PI&&f<=1.25*Math.PI?(p+=s/2,g+=a/2*Math.tan(l),v-=s/2,y-=a/2*Math.tan(l)):f>1.25*Math.PI&&f<=1.75*Math.PI&&(g+=a/2,p+=s/2/Math.tan(l),y-=a/2,v-=s/2/Math.tan(l)),(d=document.createElementNS("http://www.w3.org/2000/svg","linearGradient")).setAttribute("id",u),d.setAttribute("gradientUnits","userSpaceOnUse"),d.setAttribute("x1",String(Math.round(p))),d.setAttribute("y1",String(Math.round(g))),d.setAttribute("x2",String(Math.round(v))),d.setAttribute("y2",String(Math.round(y)))}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),d.appendChild(n)})),h.setAttribute("fill","url('#"+u+"')"),this._defs.appendChild(d)}else r&&h.setAttribute("fill",r);this._element.appendChild(h)},t}(),N="canvas";for(var T={},j=0;j<=40;j++)T[j]=j;const F={type:N,width:300,height:300,data:"",margin:0,qrOptions:{typeNumber:T[0],mode:void 0,errorCorrectionLevel:"Q"},imageOptions:{hideBackgroundDots:!0,imageSize:.4,crossOrigin:void 0,margin:0},dotsOptions:{type:"square",color:"#000"},backgroundOptions:{color:"#fff"}};var Q=function(){return(Q=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 H(t){var e=Q({},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 Q(Q({},t),{offset:Number(t.offset)})})),e}function G(t){var e=Q({},t);return e.width=Number(e.width),e.height=Number(e.height),e.margin=Number(e.margin),e.imageOptions=Q(Q({},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=Q({},e.dotsOptions),e.dotsOptions.gradient&&(e.dotsOptions.gradient=H(e.dotsOptions.gradient)),e.cornersSquareOptions&&(e.cornersSquareOptions=Q({},e.cornersSquareOptions),e.cornersSquareOptions.gradient&&(e.cornersSquareOptions.gradient=H(e.cornersSquareOptions.gradient))),e.cornersDotOptions&&(e.cornersDotOptions=Q({},e.cornersDotOptions),e.cornersDotOptions.gradient&&(e.cornersDotOptions.gradient=H(e.cornersDotOptions.gradient))),e.backgroundOptions&&(e.backgroundOptions=Q({},e.backgroundOptions),e.backgroundOptions.gradient&&(e.backgroundOptions.gradient=H(e.backgroundOptions.gradient))),e}var X=r(192),U=r.n(X),Y=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())}))},$=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 W=function(){function t(t){this._options=t?G(a(F,t)):F,this.update()}return t._clearContainer=function(t){t&&(t.innerHTML="")},t.prototype._getQRStylingElement=function(t){return void 0===t&&(t="png"),Y(this,void 0,void 0,(function(){var e,r,n;return $(this,(function(o){switch(o.label){case 0:if(!this._qr)throw"QR code is empty";return"svg"!==t.toLowerCase()?[3,2]:(r=void 0,e=void 0,this._svg&&this._svgDrawingPromise?(e=this._svg,r=this._svgDrawingPromise):(e=new L(this._options),r=e.drawQR(this._qr)),[4,r]);case 1:return o.sent(),[2,e];case 2:return r=void 0,n=void 0,this._canvas&&this._canvasDrawingPromise?(n=this._canvas,r=this._canvasDrawingPromise):(n=new z(this._options),r=n.drawQR(this._qr)),[4,r];case 3:return o.sent(),[2,n]}}))}))},t.prototype.update=function(e){t._clearContainer(this._container),this._options=e?G(a(this._options,e)):this._options,this._options.data&&(this._qr=U()(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===N?(this._canvas=new z(this._options),this._canvasDrawingPromise=this._canvas.drawQR(this._qr),this._svgDrawingPromise=void 0,this._svg=void 0):(this._svg=new L(this._options),this._svgDrawingPromise=this._svg.drawQR(this._qr),this._canvasDrawingPromise=void 0,this._canvas=void 0),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===N?this._canvas&&t.appendChild(this._canvas.getCanvas()):this._svg&&t.appendChild(this._svg.getElement()),this._container=t}},t.prototype.getRawData=function(t){return void 0===t&&(t="png"),Y(this,void 0,void 0,(function(){var e,r,n;return $(this,(function(o){switch(o.label){case 0:if(!this._qr)throw"QR code is empty";return[4,this._getQRStylingElement(t)];case 1:return e=o.sent(),"svg"===t.toLowerCase()?(r=new XMLSerializer,n=r.serializeToString(e.getElement()),[2,new Blob(['<?xml version="1.0" standalone="no"?>\r\n'+n],{type:"image/svg+xml"})]):[2,new Promise((function(r){return e.getCanvas().toBlob(r,"image/"+t,1)}))]}}))}))},t.prototype.download=function(t){return Y(this,void 0,void 0,(function(){var e,r,n,o,i;return $(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._getQRStylingElement(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.getElement())),s("data:image/svg+xml;charset=utf-8,"+encodeURIComponent(i),r+".svg")):s(n.getCanvas().toDataURL("image/"+e),r+"."+e),[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(796)})().default}));
|
|
4812
4966
|
|
|
4813
|
-
},{}]},{},[
|
|
4967
|
+
},{}]},{},[6])(6)
|
|
4814
4968
|
});
|