@plattar/plattar-ar-adapter 1.118.3 → 1.121.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.
@@ -34,6 +34,140 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
34
34
  return (mod && mod.__esModule) ? mod : { "default": mod };
35
35
  };
36
36
  Object.defineProperty(exports, "__esModule", { value: true });
37
+ exports.ModelAR = void 0;
38
+ const plattar_api_1 = require("@plattar/plattar-api");
39
+ const plattar_analytics_1 = require("@plattar/plattar-analytics");
40
+ const util_1 = require("../util/util");
41
+ const quicklook_viewer_1 = __importDefault(require("../viewers/quicklook-viewer"));
42
+ const reality_viewer_1 = __importDefault(require("../viewers/reality-viewer"));
43
+ const scene_viewer_1 = __importDefault(require("../viewers/scene-viewer"));
44
+ const launcher_ar_1 = require("./launcher-ar");
45
+ /**
46
+ * Performs AT Functionality using Plattar FileModel types
47
+ */
48
+ class ModelAR extends launcher_ar_1.LauncherAR {
49
+ constructor(modelID = null) {
50
+ super();
51
+ // analytics instance
52
+ this._analytics = null;
53
+ if (!modelID) {
54
+ throw new Error("ModelAR.constructor(modelID) - modelID must be defined");
55
+ }
56
+ this._modelID = modelID;
57
+ this._ar = null;
58
+ }
59
+ get modelID() {
60
+ return this._modelID;
61
+ }
62
+ _SetupAnalytics(model) {
63
+ let analytics = null;
64
+ const project = model.relationships.find(plattar_api_1.Project);
65
+ // setup scene stuff (if any)
66
+ if (project) {
67
+ analytics = new plattar_analytics_1.Analytics(project.id);
68
+ analytics.origin = plattar_api_1.Server.location().type;
69
+ analytics.data.push("applicationId", project.id);
70
+ analytics.data.push("applicationTitle", project.attributes.title);
71
+ analytics.data.push("modelId", model.id);
72
+ analytics.data.push("modelTitle", model.attributes.title);
73
+ this._analytics = analytics;
74
+ }
75
+ }
76
+ /**
77
+ * Initialise the ModelAR instance. This returns a Promise that resolves
78
+ * successfully if initialisation is successful, otherwise it will fail.
79
+ *
80
+ * filure can occur for a number of reasons but it generally means that AR
81
+ * cannot be performed.
82
+ */
83
+ init() {
84
+ return new Promise((accept, reject) => {
85
+ if (!util_1.Util.canAugment()) {
86
+ return reject(new Error("ModelAR.init() - cannot proceed as AR not available in context"));
87
+ }
88
+ const model = new plattar_api_1.FileModel(this.modelID);
89
+ model.include(plattar_api_1.Project);
90
+ model.get().then((model) => {
91
+ // setup the analytics data
92
+ this._SetupAnalytics(model);
93
+ // we need to define our AR module here
94
+ // we are in Safari/Quicklook mode here
95
+ if (util_1.Util.isSafari() || util_1.Util.isChromeOnIOS()) {
96
+ // model needs to have either USDZ or REALITY files defined
97
+ // we load REALITY stuff first if available
98
+ if (model.attributes.reality_filename && util_1.Util.canRealityViewer()) {
99
+ this._ar = new reality_viewer_1.default();
100
+ this._ar.modelUrl = plattar_api_1.Server.location().cdn + model.attributes.path + model.attributes.reality_filename;
101
+ return accept(this);
102
+ }
103
+ // otherwise, load the USDZ stuff second if available
104
+ if (model.attributes.usdz_filename && util_1.Util.canQuicklook()) {
105
+ this._ar = new quicklook_viewer_1.default();
106
+ this._ar.modelUrl = plattar_api_1.Server.location().cdn + model.attributes.path + model.attributes.usdz_filename;
107
+ return accept(this);
108
+ }
109
+ return reject(new Error("ModelAR.init() - cannot proceed as ModelFile does not have a defined .usdz or .reality file"));
110
+ }
111
+ // check android
112
+ if (util_1.Util.canSceneViewer()) {
113
+ this._ar = new scene_viewer_1.default();
114
+ this._ar.modelUrl = plattar_api_1.Server.location().cdn + model.attributes.path + model.attributes.original_filename;
115
+ return accept(this);
116
+ }
117
+ // otherwise, we didn't have AR available - it should never really reach this stage as this should be caught
118
+ // earlier in the process
119
+ return reject(new Error("ModelAR.init() - could not initialise AR correctly, check values"));
120
+ }).catch(reject);
121
+ });
122
+ }
123
+ /**
124
+ * Initialise and launch with a single function call. this is mostly for convenience.
125
+ * Use .init() and .start() separately for fine-grained control
126
+ */
127
+ launch() {
128
+ return new Promise((accept, reject) => {
129
+ this.init().then((value) => {
130
+ value.start();
131
+ return accept();
132
+ }).catch(reject);
133
+ });
134
+ }
135
+ /**
136
+ * Launches the internal AR instance using an appropriate version of AR Viewers
137
+ */
138
+ start() {
139
+ if (!this._ar) {
140
+ throw new Error("ModelAR.start() - cannot proceed as AR instance is null");
141
+ }
142
+ const analytics = this._analytics;
143
+ if (analytics) {
144
+ analytics.data.push("device", this._ar.device);
145
+ analytics.data.push("eventCategory", this._ar.nodeType);
146
+ analytics.data.push("eventAction", "Start Model Augment");
147
+ analytics.write();
148
+ analytics.startRecordEngagement();
149
+ }
150
+ // this was initialised via the init() function
151
+ this._ar.start();
152
+ }
153
+ canQuicklook() {
154
+ return this._ar && this._ar.nodeType === "Quick Look" ? true : false;
155
+ }
156
+ canRealityViewer() {
157
+ return this._ar && this._ar.nodeType === "Reality Viewer" ? true : false;
158
+ }
159
+ canSceneViewer() {
160
+ return this._ar && this._ar.nodeType === "Scene Viewer" ? true : false;
161
+ }
162
+ }
163
+ exports.ModelAR = ModelAR;
164
+
165
+ },{"../util/util":8,"../viewers/quicklook-viewer":11,"../viewers/reality-viewer":12,"../viewers/scene-viewer":13,"./launcher-ar":2,"@plattar/plattar-analytics":31,"@plattar/plattar-api":35}],4:[function(require,module,exports){
166
+ "use strict";
167
+ var __importDefault = (this && this.__importDefault) || function (mod) {
168
+ return (mod && mod.__esModule) ? mod : { "default": mod };
169
+ };
170
+ Object.defineProperty(exports, "__esModule", { value: true });
37
171
  exports.ProductAR = void 0;
38
172
  const plattar_api_1 = require("@plattar/plattar-api");
39
173
  const plattar_analytics_1 = require("@plattar/plattar-analytics");
@@ -134,7 +268,7 @@ class ProductAR extends launcher_ar_1.LauncherAR {
134
268
  this._setupAnalytics(product, variation);
135
269
  // we need to define our AR module here
136
270
  // we are in Safari/Quicklook mode here
137
- if (util_1.Util.isSafari()) {
271
+ if (util_1.Util.isSafari() || util_1.Util.isChromeOnIOS()) {
138
272
  // model needs to have either USDZ or REALITY files defined
139
273
  // we load REALITY stuff first if available
140
274
  if (model.attributes.reality_filename && util_1.Util.canRealityViewer()) {
@@ -204,7 +338,7 @@ class ProductAR extends launcher_ar_1.LauncherAR {
204
338
  }
205
339
  exports.ProductAR = ProductAR;
206
340
 
207
- },{"../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){
341
+ },{"../util/util":8,"../viewers/quicklook-viewer":11,"../viewers/reality-viewer":12,"../viewers/scene-viewer":13,"./launcher-ar":2,"@plattar/plattar-analytics":31,"@plattar/plattar-api":35}],5:[function(require,module,exports){
208
342
  "use strict";
209
343
  Object.defineProperty(exports, "__esModule", { value: true });
210
344
  exports.SceneAR = void 0;
@@ -225,7 +359,7 @@ class SceneAR extends launcher_ar_1.LauncherAR {
225
359
  }
226
360
  exports.SceneAR = SceneAR;
227
361
 
228
- },{"./launcher-ar":2}],5:[function(require,module,exports){
362
+ },{"./launcher-ar":2}],6:[function(require,module,exports){
229
363
  "use strict";
230
364
  Object.defineProperty(exports, "__esModule", { value: true });
231
365
  const plattar_api_1 = require("@plattar/plattar-api");
@@ -436,7 +570,7 @@ class PlattarEmbed extends HTMLElement {
436
570
  }
437
571
  exports.default = PlattarEmbed;
438
572
 
439
- },{"../ar/product-ar":3,"@plattar/plattar-api":34}],6:[function(require,module,exports){
573
+ },{"../ar/product-ar":4,"@plattar/plattar-api":35}],7:[function(require,module,exports){
440
574
  "use strict";
441
575
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
442
576
  if (k2 === undefined) k2 = k;
@@ -461,7 +595,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
461
595
  return (mod && mod.__esModule) ? mod : { "default": mod };
462
596
  };
463
597
  Object.defineProperty(exports, "__esModule", { value: true });
464
- exports.Util = exports.SceneAR = exports.ProductAR = exports.ConfiguratorAR = exports.version = exports.PlattarQRCode = exports.PlattarWeb = void 0;
598
+ exports.Util = exports.ModelAR = exports.SceneAR = exports.ProductAR = exports.ConfiguratorAR = exports.version = exports.PlattarQRCode = exports.PlattarWeb = void 0;
465
599
  exports.PlattarWeb = __importStar(require("@plattar/plattar-web"));
466
600
  exports.PlattarQRCode = __importStar(require("@plattar/plattar-qrcode"));
467
601
  exports.version = __importStar(require("./version"));
@@ -471,16 +605,20 @@ var product_ar_1 = require("./ar/product-ar");
471
605
  Object.defineProperty(exports, "ProductAR", { enumerable: true, get: function () { return product_ar_1.ProductAR; } });
472
606
  var scene_ar_1 = require("./ar/scene-ar");
473
607
  Object.defineProperty(exports, "SceneAR", { enumerable: true, get: function () { return scene_ar_1.SceneAR; } });
608
+ var model_ar_1 = require("./ar/model-ar");
609
+ Object.defineProperty(exports, "ModelAR", { enumerable: true, get: function () { return model_ar_1.ModelAR; } });
474
610
  var util_1 = require("./util/util");
475
611
  Object.defineProperty(exports, "Util", { enumerable: true, get: function () { return util_1.Util; } });
476
612
  const plattar_embed_1 = __importDefault(require("./embed/plattar-embed"));
477
613
  const version_1 = __importDefault(require("./version"));
478
614
  if (customElements) {
479
- customElements.define("plattar-embed", plattar_embed_1.default);
615
+ if (customElements.get("plattar-embed") === undefined) {
616
+ customElements.define("plattar-embed", plattar_embed_1.default);
617
+ }
480
618
  }
481
619
  console.log("using @plattar/plattar-ar-adapter v" + version_1.default);
482
620
 
483
- },{"./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":112}],7:[function(require,module,exports){
621
+ },{"./ar/configurator-ar":1,"./ar/model-ar":3,"./ar/product-ar":4,"./ar/scene-ar":5,"./embed/plattar-embed":6,"./util/util":8,"./version":9,"@plattar/plattar-qrcode":101,"@plattar/plattar-web":114}],8:[function(require,module,exports){
484
622
  "use strict";
485
623
  Object.defineProperty(exports, "__esModule", { value: true });
486
624
  exports.Util = void 0;
@@ -489,18 +627,20 @@ exports.Util = void 0;
489
627
  */
490
628
  class Util {
491
629
  static canAugment() {
492
- if (/Macintosh|iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream) {
630
+ const userAgent = navigator.userAgent;
631
+ // test google chrome on IOS and standard IOS test
632
+ if ((/CriOS/i.test(userAgent) || /Macintosh|iPad|iPhone|iPod/.test(userAgent)) && !window.MSStream) {
493
633
  // inside facebook browser
494
- if (/\bFB[\w_]+\//.test(navigator.userAgent)) {
634
+ if (/\bFB[\w_]+\//.test(userAgent)) {
495
635
  return false;
496
636
  }
497
637
  // inside instagram browser
498
- if (/\bInstagram/i.test(navigator.userAgent)) {
638
+ if (/\bInstagram/i.test(userAgent)) {
499
639
  return false;
500
640
  }
501
641
  return Util.canQuicklook();
502
642
  }
503
- else if (/android/i.test(navigator.userAgent)) {
643
+ else if (/android/i.test(userAgent)) {
504
644
  return true;
505
645
  }
506
646
  return false;
@@ -533,6 +673,13 @@ class Util {
533
673
  }
534
674
  return false;
535
675
  }
676
+ static isChromeOnIOS() {
677
+ const userAgent = navigator.userAgent;
678
+ if (userAgent) {
679
+ return Util.canAugment() && /CriOS/i.test(userAgent);
680
+ }
681
+ return false;
682
+ }
536
683
  static getIOSVersion() {
537
684
  if (/iP(hone|od|ad)/.test(navigator.platform)) {
538
685
  const v = (navigator.appVersion).match(/OS (\d+)_(\d+)_?(\d+)?/);
@@ -558,12 +705,12 @@ class Util {
558
705
  }
559
706
  exports.Util = Util;
560
707
 
561
- },{}],8:[function(require,module,exports){
708
+ },{}],9:[function(require,module,exports){
562
709
  "use strict";
563
710
  Object.defineProperty(exports, "__esModule", { value: true });
564
- exports.default = "1.118.3";
711
+ exports.default = "1.121.1";
565
712
 
566
- },{}],9:[function(require,module,exports){
713
+ },{}],10:[function(require,module,exports){
567
714
  "use strict";
568
715
  Object.defineProperty(exports, "__esModule", { value: true });
569
716
  class ARViewer {
@@ -574,7 +721,7 @@ class ARViewer {
574
721
  }
575
722
  exports.default = ARViewer;
576
723
 
577
- },{}],10:[function(require,module,exports){
724
+ },{}],11:[function(require,module,exports){
578
725
  "use strict";
579
726
  var __importDefault = (this && this.__importDefault) || function (mod) {
580
727
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -624,7 +771,7 @@ class QuicklookViewer extends ar_viewer_1.default {
624
771
  }
625
772
  exports.default = QuicklookViewer;
626
773
 
627
- },{"./ar-viewer":9}],11:[function(require,module,exports){
774
+ },{"./ar-viewer":10}],12:[function(require,module,exports){
628
775
  "use strict";
629
776
  var __importDefault = (this && this.__importDefault) || function (mod) {
630
777
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -654,7 +801,7 @@ class RealityViewer extends ar_viewer_1.default {
654
801
  }
655
802
  exports.default = RealityViewer;
656
803
 
657
- },{"./ar-viewer":9}],12:[function(require,module,exports){
804
+ },{"./ar-viewer":10}],13:[function(require,module,exports){
658
805
  "use strict";
659
806
  var __importDefault = (this && this.__importDefault) || function (mod) {
660
807
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -707,7 +854,7 @@ class SceneViewer extends ar_viewer_1.default {
707
854
  }
708
855
  exports.default = SceneViewer;
709
856
 
710
- },{"./ar-viewer":9}],13:[function(require,module,exports){
857
+ },{"./ar-viewer":10}],14:[function(require,module,exports){
711
858
  "use strict";
712
859
  const Messenger = require("./messenger/messenger.js");
713
860
  const Memory = require("./memory/memory.js");
@@ -741,7 +888,7 @@ module.exports = {
741
888
  memory: GlobalEventHandler.instance().memoryInstance,
742
889
  version: Version
743
890
  }
744
- },{"./memory/memory.js":14,"./messenger/global-event-handler.js":21,"./messenger/messenger.js":22,"./version":27}],14:[function(require,module,exports){
891
+ },{"./memory/memory.js":15,"./messenger/global-event-handler.js":22,"./messenger/messenger.js":23,"./version":28}],15:[function(require,module,exports){
745
892
  const PermanentMemory = require("./permanent-memory");
746
893
  const TemporaryMemory = require("./temporary-memory");
747
894
 
@@ -775,7 +922,7 @@ class Memory {
775
922
  }
776
923
 
777
924
  module.exports = Memory;
778
- },{"./permanent-memory":15,"./temporary-memory":16}],15:[function(require,module,exports){
925
+ },{"./permanent-memory":16,"./temporary-memory":17}],16:[function(require,module,exports){
779
926
  const WrappedValue = require("./wrapped-value");
780
927
 
781
928
  class PermanentMemory {
@@ -844,7 +991,7 @@ class PermanentMemory {
844
991
  }
845
992
 
846
993
  module.exports = PermanentMemory;
847
- },{"./wrapped-value":17}],16:[function(require,module,exports){
994
+ },{"./wrapped-value":18}],17:[function(require,module,exports){
848
995
  const WrappedValue = require("./wrapped-value");
849
996
 
850
997
  class TemporaryMemory {
@@ -901,7 +1048,7 @@ class TemporaryMemory {
901
1048
  }
902
1049
 
903
1050
  module.exports = TemporaryMemory;
904
- },{"./wrapped-value":17}],17:[function(require,module,exports){
1051
+ },{"./wrapped-value":18}],18:[function(require,module,exports){
905
1052
  /**
906
1053
  * WrappedValue represents a generic value type with a callback function
907
1054
  * for when the value has changed
@@ -1013,7 +1160,7 @@ class WrappedValue {
1013
1160
  }
1014
1161
 
1015
1162
  module.exports = WrappedValue;
1016
- },{}],18:[function(require,module,exports){
1163
+ },{}],19:[function(require,module,exports){
1017
1164
  /**
1018
1165
  * Broadcaster is used to call functions in multiple contexts at the
1019
1166
  * same time. This can be useful without having to handle complex logic
@@ -1066,7 +1213,7 @@ class Broadcaster {
1066
1213
  }
1067
1214
 
1068
1215
  module.exports = Broadcaster;
1069
- },{}],19:[function(require,module,exports){
1216
+ },{}],20:[function(require,module,exports){
1070
1217
  const WrappedFunction = require("./wrapped-local-function");
1071
1218
 
1072
1219
  class CurrentFunctionList {
@@ -1117,7 +1264,7 @@ class CurrentFunctionList {
1117
1264
  }
1118
1265
 
1119
1266
  module.exports = CurrentFunctionList;
1120
- },{"./wrapped-local-function":20}],20:[function(require,module,exports){
1267
+ },{"./wrapped-local-function":21}],21:[function(require,module,exports){
1121
1268
  const Util = require("../util/util.js");
1122
1269
 
1123
1270
  /**
@@ -1204,7 +1351,7 @@ class WrappedLocalFunction {
1204
1351
  }
1205
1352
 
1206
1353
  module.exports = WrappedLocalFunction;
1207
- },{"../util/util.js":26}],21:[function(require,module,exports){
1354
+ },{"../util/util.js":27}],22:[function(require,module,exports){
1208
1355
  const RemoteInterface = require("./remote-interface.js");
1209
1356
 
1210
1357
  /**
@@ -1289,7 +1436,7 @@ GlobalEventHandler.instance = () => {
1289
1436
  };
1290
1437
 
1291
1438
  module.exports = GlobalEventHandler;
1292
- },{"./remote-interface.js":23}],22:[function(require,module,exports){
1439
+ },{"./remote-interface.js":24}],23:[function(require,module,exports){
1293
1440
  const CurrentFunctionList = require("./current/current-function-list");
1294
1441
  const RemoteInterface = require("./remote-interface");
1295
1442
  const RemoteFunctionList = require("./remote/remote-function-list");
@@ -1588,7 +1735,7 @@ class Messenger {
1588
1735
  }
1589
1736
 
1590
1737
  module.exports = Messenger;
1591
- },{"./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){
1738
+ },{"./broadcaster.js":19,"./current/current-function-list":20,"./global-event-handler.js":22,"./remote-interface":24,"./remote/remote-function-list":25,"./util/util.js":27}],24:[function(require,module,exports){
1592
1739
  /**
1593
1740
  * Provides a single useful interface for performing remote function calls
1594
1741
  */
@@ -1647,7 +1794,7 @@ class RemoteInterface {
1647
1794
  }
1648
1795
 
1649
1796
  module.exports = RemoteInterface;
1650
- },{}],24:[function(require,module,exports){
1797
+ },{}],25:[function(require,module,exports){
1651
1798
  const WrappedFunction = require("./wrapped-remote-function");
1652
1799
 
1653
1800
  class RemoteFunctionList {
@@ -1726,7 +1873,7 @@ class RemoteFunctionList {
1726
1873
  }
1727
1874
 
1728
1875
  module.exports = RemoteFunctionList;
1729
- },{"./wrapped-remote-function":25}],25:[function(require,module,exports){
1876
+ },{"./wrapped-remote-function":26}],26:[function(require,module,exports){
1730
1877
  const Util = require("../util/util.js");
1731
1878
  const GlobalEventHandler = require("../global-event-handler.js");
1732
1879
 
@@ -1807,7 +1954,7 @@ class WrappedRemoteFunction {
1807
1954
  }
1808
1955
 
1809
1956
  module.exports = WrappedRemoteFunction;
1810
- },{"../global-event-handler.js":21,"../util/util.js":26}],26:[function(require,module,exports){
1957
+ },{"../global-event-handler.js":22,"../util/util.js":27}],27:[function(require,module,exports){
1811
1958
  class Util {
1812
1959
 
1813
1960
  /**
@@ -1833,10 +1980,10 @@ class Util {
1833
1980
  }
1834
1981
 
1835
1982
  module.exports = Util;
1836
- },{}],27:[function(require,module,exports){
1983
+ },{}],28:[function(require,module,exports){
1837
1984
  module.exports = "1.113.6";
1838
1985
 
1839
- },{}],28:[function(require,module,exports){
1986
+ },{}],29:[function(require,module,exports){
1840
1987
  "use strict";
1841
1988
  Object.defineProperty(exports, "__esModule", { value: true });
1842
1989
  exports.AnalyticsData = void 0;
@@ -1883,7 +2030,7 @@ class AnalyticsData {
1883
2030
  }
1884
2031
  exports.AnalyticsData = AnalyticsData;
1885
2032
 
1886
- },{"../util/util":32}],29:[function(require,module,exports){
2033
+ },{"../util/util":33}],30:[function(require,module,exports){
1887
2034
  "use strict";
1888
2035
  var __importDefault = (this && this.__importDefault) || function (mod) {
1889
2036
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -1970,7 +2117,7 @@ class Analytics {
1970
2117
  }
1971
2118
  exports.Analytics = Analytics;
1972
2119
 
1973
- },{"../util/basic-http":31,"./analytics-data":28}],30:[function(require,module,exports){
2120
+ },{"../util/basic-http":32,"./analytics-data":29}],31:[function(require,module,exports){
1974
2121
  "use strict";
1975
2122
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
1976
2123
  if (k2 === undefined) k2 = k;
@@ -2002,7 +2149,7 @@ Object.defineProperty(exports, "Analytics", { enumerable: true, get: function ()
2002
2149
  const version_1 = __importDefault(require("./version"));
2003
2150
  console.log("using @plattar/plattar-analytics v" + version_1.default);
2004
2151
 
2005
- },{"./analytics/analytics":29,"./version":33}],31:[function(require,module,exports){
2152
+ },{"./analytics/analytics":30,"./version":34}],32:[function(require,module,exports){
2006
2153
  "use strict";
2007
2154
  Object.defineProperty(exports, "__esModule", { value: true });
2008
2155
  /**
@@ -2068,7 +2215,7 @@ class BasicHTTP {
2068
2215
  }
2069
2216
  exports.default = BasicHTTP;
2070
2217
 
2071
- },{}],32:[function(require,module,exports){
2218
+ },{}],33:[function(require,module,exports){
2072
2219
  "use strict";
2073
2220
  Object.defineProperty(exports, "__esModule", { value: true });
2074
2221
  exports.Util = void 0;
@@ -2094,12 +2241,12 @@ class Util {
2094
2241
  }
2095
2242
  exports.Util = Util;
2096
2243
 
2097
- },{}],33:[function(require,module,exports){
2244
+ },{}],34:[function(require,module,exports){
2098
2245
  "use strict";
2099
2246
  Object.defineProperty(exports, "__esModule", { value: true });
2100
2247
  exports.default = "1.117.2";
2101
2248
 
2102
- },{}],34:[function(require,module,exports){
2249
+ },{}],35:[function(require,module,exports){
2103
2250
  "use strict";
2104
2251
  const Server = require("./server/plattar-server.js");
2105
2252
  const Util = require("./util/plattar-util.js");
@@ -2168,6 +2315,7 @@ const PipelineUser = require("./types/content-pipeline/pipeline-user.js");
2168
2315
  const Quote = require("./types/content-pipeline/quote.js");
2169
2316
  const Rating = require("./types/content-pipeline/rating.js");
2170
2317
  const Solution = require("./types/content-pipeline/solution.js");
2318
+ const Folder = require("./types/content-pipeline/folder.js");
2171
2319
 
2172
2320
  // base types
2173
2321
  const SceneObject = require("./types/scene/scene-base.js");
@@ -2245,6 +2393,7 @@ module.exports = {
2245
2393
  Quote,
2246
2394
  Rating,
2247
2395
  Solution,
2396
+ Folder,
2248
2397
  // base types
2249
2398
  SceneObject,
2250
2399
  CardObject,
@@ -2252,7 +2401,7 @@ module.exports = {
2252
2401
  version: Version
2253
2402
  };
2254
2403
 
2255
- },{"./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){
2404
+ },{"./server/plattar-server.js":37,"./types/application.js":38,"./types/content-pipeline/brief.js":39,"./types/content-pipeline/comment-brief.js":40,"./types/content-pipeline/comment-quote.js":41,"./types/content-pipeline/comment-solution.js":42,"./types/content-pipeline/folder.js":43,"./types/content-pipeline/pipeline-user.js":44,"./types/content-pipeline/quote.js":45,"./types/content-pipeline/rating.js":46,"./types/content-pipeline/solution.js":47,"./types/file/file-audio.js":48,"./types/file/file-base.js":49,"./types/file/file-image.js":50,"./types/file/file-model.js":51,"./types/file/file-script.js":52,"./types/file/file-video.js":53,"./types/misc/application-build.js":57,"./types/misc/asset-library.js":58,"./types/misc/async-job.js":59,"./types/misc/script-event.js":60,"./types/misc/tag.js":61,"./types/page/card-base.js":62,"./types/page/card-button.js":63,"./types/page/card-html.js":64,"./types/page/card-iframe.js":65,"./types/page/card-image.js":66,"./types/page/card-map.js":67,"./types/page/card-paragraph.js":68,"./types/page/card-row.js":69,"./types/page/card-slider.js":70,"./types/page/card-title.js":71,"./types/page/card-video.js":72,"./types/page/card-youtube.js":73,"./types/page/page.js":74,"./types/product/product-annotation.js":75,"./types/product/product-base.js":76,"./types/product/product-variation.js":77,"./types/product/product.js":78,"./types/scene/scene-annotation.js":79,"./types/scene/scene-audio.js":80,"./types/scene/scene-base.js":81,"./types/scene/scene-button.js":82,"./types/scene/scene-camera.js":83,"./types/scene/scene-carousel.js":84,"./types/scene/scene-image.js":85,"./types/scene/scene-model.js":86,"./types/scene/scene-panorama.js":87,"./types/scene/scene-poller.js":88,"./types/scene/scene-product.js":89,"./types/scene/scene-script.js":90,"./types/scene/scene-shadow.js":91,"./types/scene/scene-video.js":92,"./types/scene/scene-volumetric.js":93,"./types/scene/scene-youtube.js":94,"./types/scene/scene.js":95,"./types/trigger/trigger-image.js":96,"./util/plattar-util.js":97,"./version":98}],36:[function(require,module,exports){
2256
2405
  const fetch = require("node-fetch");
2257
2406
 
2258
2407
  class PlattarQuery {
@@ -2744,7 +2893,7 @@ PlattarQuery._DeleteGlobalCachedObject = (obj) => {
2744
2893
  };
2745
2894
 
2746
2895
  module.exports = PlattarQuery;
2747
- },{"../util/plattar-util.js":95,"node-fetch":115}],36:[function(require,module,exports){
2896
+ },{"../util/plattar-util.js":97,"node-fetch":117}],37:[function(require,module,exports){
2748
2897
  (function (process){(function (){
2749
2898
  const fetch = require("node-fetch");
2750
2899
 
@@ -2884,7 +3033,7 @@ PlattarServer.match = (serverName) => {
2884
3033
  api_read: "https://staging.plattar.space/api/v2/",
2885
3034
  api_write: "https://cms.plattar.space/api/v2/",
2886
3035
  cdn: "https://cdn-staging.plattar.space/",
2887
- cdn_image: "http://plattar-staging.s3-website-ap-southeast-2.amazonaws.com/",
3036
+ cdn_image: "https://images.plattar.space/",
2888
3037
  analytics: "https://c.plattar.space/api/v2/analytics",
2889
3038
  type: "staging"
2890
3039
  }
@@ -2897,7 +3046,7 @@ PlattarServer.match = (serverName) => {
2897
3046
  api_read: "https://app.plattar.com/api/v2/",
2898
3047
  api_write: "https://cms.plattar.com/api/v2/",
2899
3048
  cdn: "https://cdn.plattar.com/",
2900
- cdn_image: "http://plattar-production.s3-website-ap-southeast-2.amazonaws.com/",
3049
+ cdn_image: "https://images.plattar.com/",
2901
3050
  analytics: "https://c.plattar.space/api/v2/analytics",
2902
3051
  type: "production"
2903
3052
  }
@@ -2912,7 +3061,7 @@ PlattarServer.match = (serverName) => {
2912
3061
  api_read: "https://localhost/api/v2/",
2913
3062
  api_write: "https://localhost/api/v2/",
2914
3063
  cdn: "https://cdn-dev.plattar.space/",
2915
- cdn_image: "http://plattar-dev.s3-website-ap-southeast-2.amazonaws.com/",
3064
+ cdn_image: "https://images-dev.plattar.space/'",
2916
3065
  analytics: "https://localhost:3000/api/v2/analytics/",
2917
3066
  type: "dev"
2918
3067
  }
@@ -2949,7 +3098,7 @@ PlattarServer.location = () => {
2949
3098
 
2950
3099
  module.exports = PlattarServer;
2951
3100
  }).call(this)}).call(this,require('_process'))
2952
- },{"_process":116,"node-fetch":115}],37:[function(require,module,exports){
3101
+ },{"_process":118,"node-fetch":117}],38:[function(require,module,exports){
2953
3102
  const PlattarBase = require("./interfaces/plattar-base.js");
2954
3103
 
2955
3104
  class Application extends PlattarBase {
@@ -2959,7 +3108,7 @@ class Application extends PlattarBase {
2959
3108
  }
2960
3109
 
2961
3110
  module.exports = Application;
2962
- },{"./interfaces/plattar-base.js":52}],38:[function(require,module,exports){
3111
+ },{"./interfaces/plattar-base.js":54}],39:[function(require,module,exports){
2963
3112
  const PlattarBase = require("../interfaces/plattar-base");
2964
3113
 
2965
3114
  class Brief extends PlattarBase {
@@ -2969,7 +3118,7 @@ class Brief extends PlattarBase {
2969
3118
  }
2970
3119
 
2971
3120
  module.exports = Brief;
2972
- },{"../interfaces/plattar-base":52}],39:[function(require,module,exports){
3121
+ },{"../interfaces/plattar-base":54}],40:[function(require,module,exports){
2973
3122
  const PlattarBase = require("../interfaces/plattar-base");
2974
3123
 
2975
3124
  class CommentBrief extends PlattarBase {
@@ -2979,7 +3128,7 @@ class CommentBrief extends PlattarBase {
2979
3128
  }
2980
3129
 
2981
3130
  module.exports = CommentBrief;
2982
- },{"../interfaces/plattar-base":52}],40:[function(require,module,exports){
3131
+ },{"../interfaces/plattar-base":54}],41:[function(require,module,exports){
2983
3132
  const PlattarBase = require("../interfaces/plattar-base");
2984
3133
 
2985
3134
  class CommentQuote extends PlattarBase {
@@ -2989,7 +3138,7 @@ class CommentQuote extends PlattarBase {
2989
3138
  }
2990
3139
 
2991
3140
  module.exports = CommentQuote;
2992
- },{"../interfaces/plattar-base":52}],41:[function(require,module,exports){
3141
+ },{"../interfaces/plattar-base":54}],42:[function(require,module,exports){
2993
3142
  const PlattarBase = require("../interfaces/plattar-base");
2994
3143
 
2995
3144
  class CommentSolution extends PlattarBase {
@@ -2999,7 +3148,17 @@ class CommentSolution extends PlattarBase {
2999
3148
  }
3000
3149
 
3001
3150
  module.exports = CommentSolution;
3002
- },{"../interfaces/plattar-base":52}],42:[function(require,module,exports){
3151
+ },{"../interfaces/plattar-base":54}],43:[function(require,module,exports){
3152
+ const PlattarBase = require("../interfaces/plattar-base");
3153
+
3154
+ class Folder extends PlattarBase {
3155
+ static type() {
3156
+ return "folder";
3157
+ }
3158
+ }
3159
+
3160
+ module.exports = Folder;
3161
+ },{"../interfaces/plattar-base":54}],44:[function(require,module,exports){
3003
3162
  const PlattarBase = require("../interfaces/plattar-base");
3004
3163
 
3005
3164
  class PipelineUser extends PlattarBase {
@@ -3009,7 +3168,7 @@ class PipelineUser extends PlattarBase {
3009
3168
  }
3010
3169
 
3011
3170
  module.exports = PipelineUser;
3012
- },{"../interfaces/plattar-base":52}],43:[function(require,module,exports){
3171
+ },{"../interfaces/plattar-base":54}],45:[function(require,module,exports){
3013
3172
  const PlattarBase = require("../interfaces/plattar-base");
3014
3173
 
3015
3174
  class Quote extends PlattarBase {
@@ -3019,7 +3178,7 @@ class Quote extends PlattarBase {
3019
3178
  }
3020
3179
 
3021
3180
  module.exports = Quote;
3022
- },{"../interfaces/plattar-base":52}],44:[function(require,module,exports){
3181
+ },{"../interfaces/plattar-base":54}],46:[function(require,module,exports){
3023
3182
  const PlattarBase = require("../interfaces/plattar-base");
3024
3183
 
3025
3184
  class Rating extends PlattarBase {
@@ -3029,7 +3188,7 @@ class Rating extends PlattarBase {
3029
3188
  }
3030
3189
 
3031
3190
  module.exports = Rating;
3032
- },{"../interfaces/plattar-base":52}],45:[function(require,module,exports){
3191
+ },{"../interfaces/plattar-base":54}],47:[function(require,module,exports){
3033
3192
  const PlattarBase = require("../interfaces/plattar-base");
3034
3193
 
3035
3194
  class Solution extends PlattarBase {
@@ -3039,7 +3198,7 @@ class Solution extends PlattarBase {
3039
3198
  }
3040
3199
 
3041
3200
  module.exports = Solution;
3042
- },{"../interfaces/plattar-base":52}],46:[function(require,module,exports){
3201
+ },{"../interfaces/plattar-base":54}],48:[function(require,module,exports){
3043
3202
  const FileBase = require("./file-base.js");
3044
3203
 
3045
3204
  class FileAudio extends FileBase {
@@ -3049,7 +3208,7 @@ class FileAudio extends FileBase {
3049
3208
  }
3050
3209
 
3051
3210
  module.exports = FileAudio;
3052
- },{"./file-base.js":47}],47:[function(require,module,exports){
3211
+ },{"./file-base.js":49}],49:[function(require,module,exports){
3053
3212
  const PlattarBase = require("../interfaces/plattar-base.js");
3054
3213
  const Server = require("../../server/plattar-server.js");
3055
3214
 
@@ -3109,7 +3268,7 @@ class FileBase extends PlattarBase {
3109
3268
  }
3110
3269
 
3111
3270
  module.exports = FileBase;
3112
- },{"../../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){
3271
+ },{"../../server/plattar-server.js":37,"../interfaces/plattar-base.js":54,"./file-audio.js":48,"./file-image.js":50,"./file-model.js":51,"./file-video.js":53}],50:[function(require,module,exports){
3113
3272
  const FileBase = require("./file-base.js");
3114
3273
 
3115
3274
  class FileImage extends FileBase {
@@ -3119,7 +3278,7 @@ class FileImage extends FileBase {
3119
3278
  }
3120
3279
 
3121
3280
  module.exports = FileImage;
3122
- },{"./file-base.js":47}],49:[function(require,module,exports){
3281
+ },{"./file-base.js":49}],51:[function(require,module,exports){
3123
3282
  const FileBase = require("./file-base.js");
3124
3283
 
3125
3284
  class FileModel extends FileBase {
@@ -3129,7 +3288,7 @@ class FileModel extends FileBase {
3129
3288
  }
3130
3289
 
3131
3290
  module.exports = FileModel;
3132
- },{"./file-base.js":47}],50:[function(require,module,exports){
3291
+ },{"./file-base.js":49}],52:[function(require,module,exports){
3133
3292
  const FileBase = require("./file-base.js");
3134
3293
 
3135
3294
  class FileScript extends FileBase {
@@ -3139,7 +3298,7 @@ class FileScript extends FileBase {
3139
3298
  }
3140
3299
 
3141
3300
  module.exports = FileScript;
3142
- },{"./file-base.js":47}],51:[function(require,module,exports){
3301
+ },{"./file-base.js":49}],53:[function(require,module,exports){
3143
3302
  const FileBase = require("./file-base.js");
3144
3303
 
3145
3304
  class FileVideo extends FileBase {
@@ -3149,7 +3308,7 @@ class FileVideo extends FileBase {
3149
3308
  }
3150
3309
 
3151
3310
  module.exports = FileVideo;
3152
- },{"./file-base.js":47}],52:[function(require,module,exports){
3311
+ },{"./file-base.js":49}],54:[function(require,module,exports){
3153
3312
  const PlattarObject = require("./plattar-object.js");
3154
3313
  const Server = require("../../server/plattar-server.js");
3155
3314
 
@@ -3164,7 +3323,7 @@ class PlattarBase extends PlattarObject {
3164
3323
  }
3165
3324
 
3166
3325
  module.exports = PlattarBase;
3167
- },{"../../server/plattar-server.js":36,"./plattar-object.js":54}],53:[function(require,module,exports){
3326
+ },{"../../server/plattar-server.js":37,"./plattar-object.js":56}],55:[function(require,module,exports){
3168
3327
  /**
3169
3328
  * Handles the list of relationships for the provided object
3170
3329
  */
@@ -3285,7 +3444,7 @@ class PlattarObjectRelations {
3285
3444
  }
3286
3445
 
3287
3446
  module.exports = PlattarObjectRelations;
3288
- },{"../../util/plattar-util.js":95}],54:[function(require,module,exports){
3447
+ },{"../../util/plattar-util.js":97}],56:[function(require,module,exports){
3289
3448
  const PlattarQuery = require("../../server/plattar-query.js");
3290
3449
  const PlattarObjectRelations = require("./plattar-object-relations.js");
3291
3450
 
@@ -3428,7 +3587,7 @@ class PlattarObject {
3428
3587
  }
3429
3588
 
3430
3589
  module.exports = PlattarObject;
3431
- },{"../../server/plattar-query.js":35,"./plattar-object-relations.js":53}],55:[function(require,module,exports){
3590
+ },{"../../server/plattar-query.js":36,"./plattar-object-relations.js":55}],57:[function(require,module,exports){
3432
3591
  const PlattarBase = require("../interfaces/plattar-base.js");
3433
3592
 
3434
3593
  class ApplicationBuild extends PlattarBase {
@@ -3438,7 +3597,7 @@ class ApplicationBuild extends PlattarBase {
3438
3597
  }
3439
3598
 
3440
3599
  module.exports = ApplicationBuild;
3441
- },{"../interfaces/plattar-base.js":52}],56:[function(require,module,exports){
3600
+ },{"../interfaces/plattar-base.js":54}],58:[function(require,module,exports){
3442
3601
  const PlattarBase = require("../interfaces/plattar-base.js");
3443
3602
 
3444
3603
  class AssetLibrary extends PlattarBase {
@@ -3448,7 +3607,7 @@ class AssetLibrary extends PlattarBase {
3448
3607
  }
3449
3608
 
3450
3609
  module.exports = AssetLibrary;
3451
- },{"../interfaces/plattar-base.js":52}],57:[function(require,module,exports){
3610
+ },{"../interfaces/plattar-base.js":54}],59:[function(require,module,exports){
3452
3611
  const PlattarBase = require("../interfaces/plattar-base.js");
3453
3612
 
3454
3613
  class AsyncJob extends PlattarBase {
@@ -3462,7 +3621,7 @@ class AsyncJob extends PlattarBase {
3462
3621
  }
3463
3622
 
3464
3623
  module.exports = AsyncJob;
3465
- },{"../interfaces/plattar-base.js":52}],58:[function(require,module,exports){
3624
+ },{"../interfaces/plattar-base.js":54}],60:[function(require,module,exports){
3466
3625
  const PlattarBase = require("../interfaces/plattar-base.js");
3467
3626
 
3468
3627
  class ScriptEvent extends PlattarBase {
@@ -3472,7 +3631,7 @@ class ScriptEvent extends PlattarBase {
3472
3631
  }
3473
3632
 
3474
3633
  module.exports = ScriptEvent;
3475
- },{"../interfaces/plattar-base.js":52}],59:[function(require,module,exports){
3634
+ },{"../interfaces/plattar-base.js":54}],61:[function(require,module,exports){
3476
3635
  const PlattarBase = require("../interfaces/plattar-base.js");
3477
3636
 
3478
3637
  class Tag extends PlattarBase {
@@ -3482,7 +3641,7 @@ class Tag extends PlattarBase {
3482
3641
  }
3483
3642
 
3484
3643
  module.exports = Tag;
3485
- },{"../interfaces/plattar-base.js":52}],60:[function(require,module,exports){
3644
+ },{"../interfaces/plattar-base.js":54}],62:[function(require,module,exports){
3486
3645
  const PlattarBase = require("../interfaces/plattar-base.js");
3487
3646
  const Server = require("../../server/plattar-server.js");
3488
3647
 
@@ -3513,7 +3672,7 @@ class CardBase extends PlattarBase {
3513
3672
  }
3514
3673
 
3515
3674
  module.exports = CardBase;
3516
- },{"../../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){
3675
+ },{"../../server/plattar-server.js":37,"../interfaces/plattar-base.js":54,"./card-button.js":63,"./card-html.js":64,"./card-iframe.js":65,"./card-image.js":66,"./card-map.js":67,"./card-paragraph.js":68,"./card-row.js":69,"./card-slider.js":70,"./card-title.js":71,"./card-video.js":72,"./card-youtube.js":73}],63:[function(require,module,exports){
3517
3676
  const CardBase = require("./card-base.js");
3518
3677
 
3519
3678
  class CardButton extends CardBase {
@@ -3523,7 +3682,7 @@ class CardButton extends CardBase {
3523
3682
  }
3524
3683
 
3525
3684
  module.exports = CardButton;
3526
- },{"./card-base.js":60}],62:[function(require,module,exports){
3685
+ },{"./card-base.js":62}],64:[function(require,module,exports){
3527
3686
  const CardBase = require("./card-base.js");
3528
3687
 
3529
3688
  class CardHTML extends CardBase {
@@ -3533,7 +3692,7 @@ class CardHTML extends CardBase {
3533
3692
  }
3534
3693
 
3535
3694
  module.exports = CardHTML;
3536
- },{"./card-base.js":60}],63:[function(require,module,exports){
3695
+ },{"./card-base.js":62}],65:[function(require,module,exports){
3537
3696
  const CardBase = require("./card-base.js");
3538
3697
 
3539
3698
  class CardIFrame extends CardBase {
@@ -3543,7 +3702,7 @@ class CardIFrame extends CardBase {
3543
3702
  }
3544
3703
 
3545
3704
  module.exports = CardIFrame;
3546
- },{"./card-base.js":60}],64:[function(require,module,exports){
3705
+ },{"./card-base.js":62}],66:[function(require,module,exports){
3547
3706
  const CardBase = require("./card-base.js");
3548
3707
 
3549
3708
  class CardImage extends CardBase {
@@ -3553,7 +3712,7 @@ class CardImage extends CardBase {
3553
3712
  }
3554
3713
 
3555
3714
  module.exports = CardImage;
3556
- },{"./card-base.js":60}],65:[function(require,module,exports){
3715
+ },{"./card-base.js":62}],67:[function(require,module,exports){
3557
3716
  const CardBase = require("./card-base.js");
3558
3717
 
3559
3718
  class CardMap extends CardBase {
@@ -3563,7 +3722,7 @@ class CardMap extends CardBase {
3563
3722
  }
3564
3723
 
3565
3724
  module.exports = CardMap;
3566
- },{"./card-base.js":60}],66:[function(require,module,exports){
3725
+ },{"./card-base.js":62}],68:[function(require,module,exports){
3567
3726
  const CardBase = require("./card-base.js");
3568
3727
 
3569
3728
  class CardParagraph extends CardBase {
@@ -3573,7 +3732,7 @@ class CardParagraph extends CardBase {
3573
3732
  }
3574
3733
 
3575
3734
  module.exports = CardParagraph;
3576
- },{"./card-base.js":60}],67:[function(require,module,exports){
3735
+ },{"./card-base.js":62}],69:[function(require,module,exports){
3577
3736
  const CardBase = require("./card-base.js");
3578
3737
 
3579
3738
  class CardRow extends CardBase {
@@ -3583,7 +3742,7 @@ class CardRow extends CardBase {
3583
3742
  }
3584
3743
 
3585
3744
  module.exports = CardRow;
3586
- },{"./card-base.js":60}],68:[function(require,module,exports){
3745
+ },{"./card-base.js":62}],70:[function(require,module,exports){
3587
3746
  const CardBase = require("./card-base.js");
3588
3747
 
3589
3748
  class CardSlider extends CardBase {
@@ -3593,7 +3752,7 @@ class CardSlider extends CardBase {
3593
3752
  }
3594
3753
 
3595
3754
  module.exports = CardSlider;
3596
- },{"./card-base.js":60}],69:[function(require,module,exports){
3755
+ },{"./card-base.js":62}],71:[function(require,module,exports){
3597
3756
  const CardBase = require("./card-base.js");
3598
3757
 
3599
3758
  class CardTitle extends CardBase {
@@ -3603,7 +3762,7 @@ class CardTitle extends CardBase {
3603
3762
  }
3604
3763
 
3605
3764
  module.exports = CardTitle;
3606
- },{"./card-base.js":60}],70:[function(require,module,exports){
3765
+ },{"./card-base.js":62}],72:[function(require,module,exports){
3607
3766
  const CardBase = require("./card-base.js");
3608
3767
 
3609
3768
  class CardVideo extends CardBase {
@@ -3613,7 +3772,7 @@ class CardVideo extends CardBase {
3613
3772
  }
3614
3773
 
3615
3774
  module.exports = CardVideo;
3616
- },{"./card-base.js":60}],71:[function(require,module,exports){
3775
+ },{"./card-base.js":62}],73:[function(require,module,exports){
3617
3776
  const CardBase = require("./card-base.js");
3618
3777
 
3619
3778
  class CardYoutube extends CardBase {
@@ -3623,7 +3782,7 @@ class CardYoutube extends CardBase {
3623
3782
  }
3624
3783
 
3625
3784
  module.exports = CardYoutube;
3626
- },{"./card-base.js":60}],72:[function(require,module,exports){
3785
+ },{"./card-base.js":62}],74:[function(require,module,exports){
3627
3786
  const PlattarBase = require("../interfaces/plattar-base.js");
3628
3787
 
3629
3788
  class Page extends PlattarBase {
@@ -3633,7 +3792,7 @@ class Page extends PlattarBase {
3633
3792
  }
3634
3793
 
3635
3794
  module.exports = Page;
3636
- },{"../interfaces/plattar-base.js":52}],73:[function(require,module,exports){
3795
+ },{"../interfaces/plattar-base.js":54}],75:[function(require,module,exports){
3637
3796
  const ProductBase = require("./product-base.js");
3638
3797
 
3639
3798
  class ProductAnnotation extends ProductBase {
@@ -3643,7 +3802,7 @@ class ProductAnnotation extends ProductBase {
3643
3802
  }
3644
3803
 
3645
3804
  module.exports = ProductAnnotation;
3646
- },{"./product-base.js":74}],74:[function(require,module,exports){
3805
+ },{"./product-base.js":76}],76:[function(require,module,exports){
3647
3806
  const PlattarBase = require("../interfaces/plattar-base.js");
3648
3807
  const Server = require("../../server/plattar-server.js");
3649
3808
 
@@ -3665,7 +3824,7 @@ class ProductBase extends PlattarBase {
3665
3824
  }
3666
3825
 
3667
3826
  module.exports = ProductBase;
3668
- },{"../../server/plattar-server.js":36,"../interfaces/plattar-base.js":52,"./product-annotation.js":73,"./product-variation.js":75}],75:[function(require,module,exports){
3827
+ },{"../../server/plattar-server.js":37,"../interfaces/plattar-base.js":54,"./product-annotation.js":75,"./product-variation.js":77}],77:[function(require,module,exports){
3669
3828
  const ProductBase = require("./product-base.js");
3670
3829
 
3671
3830
  class ProductVariation extends ProductBase {
@@ -3675,7 +3834,7 @@ class ProductVariation extends ProductBase {
3675
3834
  }
3676
3835
 
3677
3836
  module.exports = ProductVariation;
3678
- },{"./product-base.js":74}],76:[function(require,module,exports){
3837
+ },{"./product-base.js":76}],78:[function(require,module,exports){
3679
3838
  const PlattarBase = require("../interfaces/plattar-base.js");
3680
3839
 
3681
3840
  class Product extends PlattarBase {
@@ -3685,7 +3844,7 @@ class Product extends PlattarBase {
3685
3844
  }
3686
3845
 
3687
3846
  module.exports = Product;
3688
- },{"../interfaces/plattar-base.js":52}],77:[function(require,module,exports){
3847
+ },{"../interfaces/plattar-base.js":54}],79:[function(require,module,exports){
3689
3848
  const SceneBase = require("./scene-base.js");
3690
3849
 
3691
3850
  class SceneAnnotation extends SceneBase {
@@ -3695,7 +3854,7 @@ class SceneAnnotation extends SceneBase {
3695
3854
  }
3696
3855
 
3697
3856
  module.exports = SceneAnnotation;
3698
- },{"./scene-base.js":79}],78:[function(require,module,exports){
3857
+ },{"./scene-base.js":81}],80:[function(require,module,exports){
3699
3858
  const SceneBase = require("./scene-base.js");
3700
3859
 
3701
3860
  class SceneAudio extends SceneBase {
@@ -3705,7 +3864,7 @@ class SceneAudio extends SceneBase {
3705
3864
  }
3706
3865
 
3707
3866
  module.exports = SceneAudio;
3708
- },{"./scene-base.js":79}],79:[function(require,module,exports){
3867
+ },{"./scene-base.js":81}],81:[function(require,module,exports){
3709
3868
  const PlattarBase = require("../interfaces/plattar-base.js");
3710
3869
  const Server = require("../../server/plattar-server.js");
3711
3870
 
@@ -3739,7 +3898,7 @@ class SceneBase extends PlattarBase {
3739
3898
  }
3740
3899
 
3741
3900
  module.exports = SceneBase;
3742
- },{"../../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){
3901
+ },{"../../server/plattar-server.js":37,"../interfaces/plattar-base.js":54,"./scene-annotation.js":79,"./scene-audio.js":80,"./scene-button.js":82,"./scene-camera.js":83,"./scene-carousel.js":84,"./scene-image.js":85,"./scene-model.js":86,"./scene-panorama.js":87,"./scene-poller.js":88,"./scene-product.js":89,"./scene-shadow.js":91,"./scene-video.js":92,"./scene-volumetric.js":93,"./scene-youtube.js":94}],82:[function(require,module,exports){
3743
3902
  const SceneBase = require("./scene-base.js");
3744
3903
 
3745
3904
  class SceneButton extends SceneBase {
@@ -3749,7 +3908,7 @@ class SceneButton extends SceneBase {
3749
3908
  }
3750
3909
 
3751
3910
  module.exports = SceneButton;
3752
- },{"./scene-base.js":79}],81:[function(require,module,exports){
3911
+ },{"./scene-base.js":81}],83:[function(require,module,exports){
3753
3912
  const SceneBase = require("./scene-base.js");
3754
3913
 
3755
3914
  class SceneCamera extends SceneBase {
@@ -3759,7 +3918,7 @@ class SceneCamera extends SceneBase {
3759
3918
  }
3760
3919
 
3761
3920
  module.exports = SceneCamera;
3762
- },{"./scene-base.js":79}],82:[function(require,module,exports){
3921
+ },{"./scene-base.js":81}],84:[function(require,module,exports){
3763
3922
  const SceneBase = require("./scene-base.js");
3764
3923
 
3765
3924
  class SceneCarousel extends SceneBase {
@@ -3769,7 +3928,7 @@ class SceneCarousel extends SceneBase {
3769
3928
  }
3770
3929
 
3771
3930
  module.exports = SceneCarousel;
3772
- },{"./scene-base.js":79}],83:[function(require,module,exports){
3931
+ },{"./scene-base.js":81}],85:[function(require,module,exports){
3773
3932
  const SceneBase = require("./scene-base.js");
3774
3933
 
3775
3934
  class SceneImage extends SceneBase {
@@ -3779,7 +3938,7 @@ class SceneImage extends SceneBase {
3779
3938
  }
3780
3939
 
3781
3940
  module.exports = SceneImage;
3782
- },{"./scene-base.js":79}],84:[function(require,module,exports){
3941
+ },{"./scene-base.js":81}],86:[function(require,module,exports){
3783
3942
  const SceneBase = require("./scene-base.js");
3784
3943
 
3785
3944
  class SceneModel extends SceneBase {
@@ -3789,7 +3948,7 @@ class SceneModel extends SceneBase {
3789
3948
  }
3790
3949
 
3791
3950
  module.exports = SceneModel;
3792
- },{"./scene-base.js":79}],85:[function(require,module,exports){
3951
+ },{"./scene-base.js":81}],87:[function(require,module,exports){
3793
3952
  const SceneBase = require("./scene-base.js");
3794
3953
 
3795
3954
  class ScenePanorama extends SceneBase {
@@ -3799,7 +3958,7 @@ class ScenePanorama extends SceneBase {
3799
3958
  }
3800
3959
 
3801
3960
  module.exports = ScenePanorama;
3802
- },{"./scene-base.js":79}],86:[function(require,module,exports){
3961
+ },{"./scene-base.js":81}],88:[function(require,module,exports){
3803
3962
  const SceneBase = require("./scene-base.js");
3804
3963
 
3805
3964
  class ScenePoller extends SceneBase {
@@ -3809,7 +3968,7 @@ class ScenePoller extends SceneBase {
3809
3968
  }
3810
3969
 
3811
3970
  module.exports = ScenePoller;
3812
- },{"./scene-base.js":79}],87:[function(require,module,exports){
3971
+ },{"./scene-base.js":81}],89:[function(require,module,exports){
3813
3972
  const SceneBase = require("./scene-base.js");
3814
3973
 
3815
3974
  class SceneProduct extends SceneBase {
@@ -3819,7 +3978,7 @@ class SceneProduct extends SceneBase {
3819
3978
  }
3820
3979
 
3821
3980
  module.exports = SceneProduct;
3822
- },{"./scene-base.js":79}],88:[function(require,module,exports){
3981
+ },{"./scene-base.js":81}],90:[function(require,module,exports){
3823
3982
  const SceneBase = require("./scene-base.js");
3824
3983
 
3825
3984
  class SceneScript extends SceneBase {
@@ -3829,7 +3988,7 @@ class SceneScript extends SceneBase {
3829
3988
  }
3830
3989
 
3831
3990
  module.exports = SceneScript;
3832
- },{"./scene-base.js":79}],89:[function(require,module,exports){
3991
+ },{"./scene-base.js":81}],91:[function(require,module,exports){
3833
3992
  const SceneBase = require("./scene-base.js");
3834
3993
 
3835
3994
  class SceneShadow extends SceneBase {
@@ -3839,7 +3998,7 @@ class SceneShadow extends SceneBase {
3839
3998
  }
3840
3999
 
3841
4000
  module.exports = SceneShadow;
3842
- },{"./scene-base.js":79}],90:[function(require,module,exports){
4001
+ },{"./scene-base.js":81}],92:[function(require,module,exports){
3843
4002
  const SceneBase = require("./scene-base.js");
3844
4003
 
3845
4004
  class SceneVideo extends SceneBase {
@@ -3849,7 +4008,7 @@ class SceneVideo extends SceneBase {
3849
4008
  }
3850
4009
 
3851
4010
  module.exports = SceneVideo;
3852
- },{"./scene-base.js":79}],91:[function(require,module,exports){
4011
+ },{"./scene-base.js":81}],93:[function(require,module,exports){
3853
4012
  const SceneBase = require("./scene-base.js");
3854
4013
 
3855
4014
  class SceneVolumetric extends SceneBase {
@@ -3859,7 +4018,7 @@ class SceneVolumetric extends SceneBase {
3859
4018
  }
3860
4019
 
3861
4020
  module.exports = SceneVolumetric;
3862
- },{"./scene-base.js":79}],92:[function(require,module,exports){
4021
+ },{"./scene-base.js":81}],94:[function(require,module,exports){
3863
4022
  const SceneBase = require("./scene-base.js");
3864
4023
 
3865
4024
  class SceneYoutube extends SceneBase {
@@ -3869,7 +4028,7 @@ class SceneYoutube extends SceneBase {
3869
4028
  }
3870
4029
 
3871
4030
  module.exports = SceneYoutube;
3872
- },{"./scene-base.js":79}],93:[function(require,module,exports){
4031
+ },{"./scene-base.js":81}],95:[function(require,module,exports){
3873
4032
  const PlattarBase = require("../interfaces/plattar-base.js");
3874
4033
 
3875
4034
  class Scene extends PlattarBase {
@@ -3879,7 +4038,7 @@ class Scene extends PlattarBase {
3879
4038
  }
3880
4039
 
3881
4040
  module.exports = Scene;
3882
- },{"../interfaces/plattar-base.js":52}],94:[function(require,module,exports){
4041
+ },{"../interfaces/plattar-base.js":54}],96:[function(require,module,exports){
3883
4042
  const PlattarBase = require("../interfaces/plattar-base.js");
3884
4043
 
3885
4044
  class TriggerImage extends PlattarBase {
@@ -3889,7 +4048,7 @@ class TriggerImage extends PlattarBase {
3889
4048
  }
3890
4049
 
3891
4050
  module.exports = TriggerImage;
3892
- },{"../interfaces/plattar-base.js":52}],95:[function(require,module,exports){
4051
+ },{"../interfaces/plattar-base.js":54}],97:[function(require,module,exports){
3893
4052
  const Application = require("../types/application.js");
3894
4053
 
3895
4054
  // import Scene types and its children
@@ -3948,6 +4107,7 @@ const PipelineUser = require("../types/content-pipeline/pipeline-user.js");
3948
4107
  const Quote = require("../types/content-pipeline/quote.js");
3949
4108
  const Rating = require("../types/content-pipeline/rating.js");
3950
4109
  const Solution = require("../types/content-pipeline/solution.js");
4110
+ const Folder = require("../types/content-pipeline/folder.js");
3951
4111
 
3952
4112
  // misc
3953
4113
  const ScriptEvent = require("../types/misc/script-event.js");
@@ -4108,16 +4268,17 @@ PlattarUtil.match = (type) => {
4108
4268
  case Quote.type(): return Quote;
4109
4269
  case Rating.type(): return Rating;
4110
4270
  case Solution.type(): return Solution;
4271
+ case Folder.type(): return Folder;
4111
4272
  default: throw new Error("PlattarUtil.match(type) - provided type of \"" + type + "\" does not exist and cannot be created");
4112
4273
  }
4113
4274
  };
4114
4275
 
4115
4276
 
4116
4277
  module.exports = PlattarUtil;
4117
- },{"../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){
4118
- module.exports = "1.116.3";
4278
+ },{"../types/application.js":38,"../types/content-pipeline/brief.js":39,"../types/content-pipeline/comment-brief.js":40,"../types/content-pipeline/comment-quote.js":41,"../types/content-pipeline/comment-solution.js":42,"../types/content-pipeline/folder.js":43,"../types/content-pipeline/pipeline-user.js":44,"../types/content-pipeline/quote.js":45,"../types/content-pipeline/rating.js":46,"../types/content-pipeline/solution.js":47,"../types/file/file-audio.js":48,"../types/file/file-image.js":50,"../types/file/file-model.js":51,"../types/file/file-script.js":52,"../types/file/file-video.js":53,"../types/interfaces/plattar-object.js":56,"../types/misc/application-build.js":57,"../types/misc/asset-library":58,"../types/misc/async-job.js":59,"../types/misc/script-event.js":60,"../types/misc/tag.js":61,"../types/page/card-button.js":63,"../types/page/card-html.js":64,"../types/page/card-iframe.js":65,"../types/page/card-image.js":66,"../types/page/card-map.js":67,"../types/page/card-paragraph.js":68,"../types/page/card-row.js":69,"../types/page/card-slider.js":70,"../types/page/card-title.js":71,"../types/page/card-video.js":72,"../types/page/card-youtube.js":73,"../types/page/page.js":74,"../types/product/product-annotation.js":75,"../types/product/product-variation.js":77,"../types/product/product.js":78,"../types/scene/scene-annotation.js":79,"../types/scene/scene-audio.js":80,"../types/scene/scene-button.js":82,"../types/scene/scene-camera.js":83,"../types/scene/scene-carousel.js":84,"../types/scene/scene-image.js":85,"../types/scene/scene-model.js":86,"../types/scene/scene-panorama.js":87,"../types/scene/scene-poller.js":88,"../types/scene/scene-product.js":89,"../types/scene/scene-script.js":90,"../types/scene/scene-shadow.js":91,"../types/scene/scene-video.js":92,"../types/scene/scene-volumetric.js":93,"../types/scene/scene-youtube.js":94,"../types/scene/scene.js":95,"../types/trigger/trigger-image.js":96}],98:[function(require,module,exports){
4279
+ module.exports = "1.120.1";
4119
4280
 
4120
- },{}],97:[function(require,module,exports){
4281
+ },{}],99:[function(require,module,exports){
4121
4282
  const QRCodeStyling = require("qr-code-styling");
4122
4283
 
4123
4284
  class BaseElement extends HTMLElement {
@@ -4129,6 +4290,20 @@ class BaseElement extends HTMLElement {
4129
4290
  if (this.hasAttribute("url")) {
4130
4291
  this.renderQRCode();
4131
4292
  }
4293
+
4294
+ const observer = new MutationObserver((mutations) => {
4295
+ mutations.forEach((mutation) => {
4296
+ if (mutation.type === "attributes") {
4297
+ if (this.hasAttribute("url")) {
4298
+ this.renderQRCode();
4299
+ }
4300
+ }
4301
+ });
4302
+ });
4303
+
4304
+ observer.observe(this, {
4305
+ attributes: true
4306
+ });
4132
4307
  }
4133
4308
 
4134
4309
  download(options) {
@@ -4146,7 +4321,8 @@ class BaseElement extends HTMLElement {
4146
4321
  const url = this.hasAttribute("url") ? this.getAttribute("url") : undefined;
4147
4322
 
4148
4323
  if (!url) {
4149
- throw new Error("BaseElement.renderQRCode() - required attribute \"url\" is missing or invalid");
4324
+ console.warn("PlattarQR.renderQRCode() - required attribute \"url\" is missing or invalid, QR Code will not render");
4325
+ return;
4150
4326
  }
4151
4327
 
4152
4328
  const width = this.hasAttribute("width") ? parseInt(this.getAttribute("width")) : 512;
@@ -4225,11 +4401,12 @@ class BaseElement extends HTMLElement {
4225
4401
  color2: "#ffffff",
4226
4402
  rotation: "0"
4227
4403
  }
4228
- }
4404
+ },
4405
+ width: 1024,
4406
+ height: 1024,
4407
+ type: "canvas"
4229
4408
  };
4230
4409
 
4231
- this._options.width = width || 512;
4232
- this._options.height = height || 512;
4233
4410
  this._options.data = url;
4234
4411
  this._options.margin = margin;
4235
4412
  this._options.image = image;
@@ -4253,19 +4430,46 @@ class BaseElement extends HTMLElement {
4253
4430
  const qrCode = this._qrCode;
4254
4431
 
4255
4432
  if (!qrCode) {
4433
+ const div = document.createElement("div");
4434
+ shadow.appendChild(div);
4435
+
4436
+ this._divContainer = div;
4256
4437
  this._qrCode = new QRCodeStyling(this._options);
4438
+ this._qrCode.append(div);
4257
4439
 
4258
- this._qrCode.append(shadow);
4440
+ this._UpdateCanvas(width, height);
4259
4441
 
4260
4442
  return;
4261
4443
  }
4262
4444
 
4263
4445
  this._qrCode.update(this._options);
4446
+
4447
+ this._UpdateCanvas(width, height);
4448
+ }
4449
+
4450
+ _UpdateCanvas(width, height) {
4451
+ if (!this._qrCode) {
4452
+ return;
4453
+ }
4454
+
4455
+ const canvas = this._qrCode._canvas;
4456
+
4457
+ if (canvas) {
4458
+ canvas.style.width = "100%";
4459
+ canvas.style.height = "100%";
4460
+ }
4461
+
4462
+ if (this._divContainer) {
4463
+ const div = this._divContainer;
4464
+
4465
+ div.style.width = width + "px";
4466
+ div.style.height = height + "px";
4467
+ }
4264
4468
  }
4265
4469
  }
4266
4470
 
4267
4471
  module.exports = BaseElement;
4268
- },{"qr-code-styling":117}],98:[function(require,module,exports){
4472
+ },{"qr-code-styling":119}],100:[function(require,module,exports){
4269
4473
  const BaseElement = require("./base/base-element.js");
4270
4474
 
4271
4475
  class QRCodeElement extends BaseElement {
@@ -4275,7 +4479,7 @@ class QRCodeElement extends BaseElement {
4275
4479
  }
4276
4480
 
4277
4481
  module.exports = QRCodeElement;
4278
- },{"./base/base-element.js":97}],99:[function(require,module,exports){
4482
+ },{"./base/base-element.js":99}],101:[function(require,module,exports){
4279
4483
  "use strict";
4280
4484
  const QRCodeElement = require("./elements/qrcode-element.js");
4281
4485
  const Version = require("./version");
@@ -4287,10 +4491,10 @@ customElements.define("plattar-qrcode", QRCodeElement);
4287
4491
  module.exports = {
4288
4492
  version: Version
4289
4493
  };
4290
- },{"./elements/qrcode-element.js":98,"./version":100}],100:[function(require,module,exports){
4291
- module.exports = "1.118.1";
4494
+ },{"./elements/qrcode-element.js":100,"./version":102}],102:[function(require,module,exports){
4495
+ module.exports = "1.120.3";
4292
4496
 
4293
- },{}],101:[function(require,module,exports){
4497
+ },{}],103:[function(require,module,exports){
4294
4498
  const ElementController = require("../controllers/element-controller");
4295
4499
 
4296
4500
  class BaseElement extends HTMLElement {
@@ -4427,7 +4631,7 @@ class BaseElement extends HTMLElement {
4427
4631
  }
4428
4632
 
4429
4633
  module.exports = BaseElement;
4430
- },{"../controllers/element-controller":102}],102:[function(require,module,exports){
4634
+ },{"../controllers/element-controller":104}],104:[function(require,module,exports){
4431
4635
  const Util = require("../../util/util.js");
4432
4636
  const { messenger } = require("@plattar/context-messenger");
4433
4637
  const IFrameController = require("./iframe-controller.js");
@@ -4520,7 +4724,7 @@ class ElementController {
4520
4724
  }
4521
4725
 
4522
4726
  module.exports = ElementController;
4523
- },{"../../util/util.js":113,"./iframe-controller.js":103,"@plattar/context-messenger":13}],103:[function(require,module,exports){
4727
+ },{"../../util/util.js":115,"./iframe-controller.js":105,"@plattar/context-messenger":14}],105:[function(require,module,exports){
4524
4728
  const Util = require("../../util/util.js");
4525
4729
 
4526
4730
  class IFrameController {
@@ -4630,7 +4834,7 @@ class IFrameController {
4630
4834
  }
4631
4835
 
4632
4836
  module.exports = IFrameController;
4633
- },{"../../util/util.js":113}],104:[function(require,module,exports){
4837
+ },{"../../util/util.js":115}],106:[function(require,module,exports){
4634
4838
  const BaseElement = require("./base/base-element.js");
4635
4839
 
4636
4840
  class EditorElement extends BaseElement {
@@ -4648,7 +4852,7 @@ class EditorElement extends BaseElement {
4648
4852
  }
4649
4853
 
4650
4854
  module.exports = EditorElement;
4651
- },{"./base/base-element.js":101}],105:[function(require,module,exports){
4855
+ },{"./base/base-element.js":103}],107:[function(require,module,exports){
4652
4856
  const BaseElement = require("./base/base-element.js");
4653
4857
 
4654
4858
  class EWallElement extends BaseElement {
@@ -4685,7 +4889,7 @@ class EWallElement extends BaseElement {
4685
4889
  }
4686
4890
 
4687
4891
  module.exports = EWallElement;
4688
- },{"./base/base-element.js":101}],106:[function(require,module,exports){
4892
+ },{"./base/base-element.js":103}],108:[function(require,module,exports){
4689
4893
  const BaseElement = require("./base/base-element.js");
4690
4894
 
4691
4895
  class FaceARElement extends BaseElement {
@@ -4700,10 +4904,20 @@ class FaceARElement extends BaseElement {
4700
4904
  get elementType() {
4701
4905
  return "facear";
4702
4906
  }
4907
+
4908
+ get optionalAttributes() {
4909
+ return [{
4910
+ key: "variation-id",
4911
+ map: "variationId"
4912
+ }, {
4913
+ key: "product-id",
4914
+ map: "productId"
4915
+ }];
4916
+ }
4703
4917
  }
4704
4918
 
4705
4919
  module.exports = FaceARElement;
4706
- },{"./base/base-element.js":101}],107:[function(require,module,exports){
4920
+ },{"./base/base-element.js":103}],109:[function(require,module,exports){
4707
4921
  const BaseElement = require("./base/base-element.js");
4708
4922
 
4709
4923
  class ModelElement extends BaseElement {
@@ -4728,7 +4942,7 @@ class ModelElement extends BaseElement {
4728
4942
  }
4729
4943
 
4730
4944
  module.exports = ModelElement;
4731
- },{"./base/base-element.js":101}],108:[function(require,module,exports){
4945
+ },{"./base/base-element.js":103}],110:[function(require,module,exports){
4732
4946
  const BaseElement = require("./base/base-element.js");
4733
4947
 
4734
4948
  class ProductElement extends BaseElement {
@@ -4760,7 +4974,7 @@ class ProductElement extends BaseElement {
4760
4974
  }
4761
4975
 
4762
4976
  module.exports = ProductElement;
4763
- },{"./base/base-element.js":101}],109:[function(require,module,exports){
4977
+ },{"./base/base-element.js":103}],111:[function(require,module,exports){
4764
4978
  const BaseElement = require("./base/base-element.js");
4765
4979
 
4766
4980
  class StudioElement extends BaseElement {
@@ -4778,7 +4992,7 @@ class StudioElement extends BaseElement {
4778
4992
  }
4779
4993
 
4780
4994
  module.exports = StudioElement;
4781
- },{"./base/base-element.js":101}],110:[function(require,module,exports){
4995
+ },{"./base/base-element.js":103}],112:[function(require,module,exports){
4782
4996
  const BaseElement = require("./base/base-element.js");
4783
4997
 
4784
4998
  class ViewerElement extends BaseElement {
@@ -4796,7 +5010,7 @@ class ViewerElement extends BaseElement {
4796
5010
  }
4797
5011
 
4798
5012
  module.exports = ViewerElement;
4799
- },{"./base/base-element.js":101}],111:[function(require,module,exports){
5013
+ },{"./base/base-element.js":103}],113:[function(require,module,exports){
4800
5014
  const BaseElement = require("./base/base-element.js");
4801
5015
 
4802
5016
  class WebXRElement extends BaseElement {
@@ -4814,7 +5028,7 @@ class WebXRElement extends BaseElement {
4814
5028
  }
4815
5029
 
4816
5030
  module.exports = WebXRElement;
4817
- },{"./base/base-element.js":101}],112:[function(require,module,exports){
5031
+ },{"./base/base-element.js":103}],114:[function(require,module,exports){
4818
5032
  "use strict";
4819
5033
  const WebXRElement = require("./elements/webxr-element.js");
4820
5034
  const ViewerElement = require("./elements/viewer-element.js");
@@ -4826,21 +5040,44 @@ const StudioElement = require("./elements/studio-element.js");
4826
5040
  const ModelElement = require("./elements/model-element.js");
4827
5041
  const Version = require("./version");
4828
5042
 
4829
- customElements.define("plattar-webxr", WebXRElement);
4830
- customElements.define("plattar-viewer", ViewerElement);
4831
- customElements.define("plattar-product", ProductElement);
4832
- customElements.define("plattar-editor", EditorElement);
4833
- customElements.define("plattar-facear", FaceARElement);
4834
- customElements.define("plattar-8wall", EWallElement);
4835
- customElements.define("plattar-studio", StudioElement);
4836
- customElements.define("plattar-model", ModelElement);
5043
+ if (customElements.get("plattar-webxr") === undefined) {
5044
+ customElements.define("plattar-webxr", WebXRElement);
5045
+ }
5046
+
5047
+ if (customElements.get("plattar-viewer") === undefined) {
5048
+ customElements.define("plattar-viewer", ViewerElement);
5049
+ }
5050
+
5051
+ if (customElements.get("plattar-product") === undefined) {
5052
+ customElements.define("plattar-product", ProductElement);
5053
+ }
5054
+
5055
+ if (customElements.get("plattar-editor") === undefined) {
5056
+ customElements.define("plattar-editor", EditorElement);
5057
+ }
5058
+
5059
+ if (customElements.get("plattar-facear") === undefined) {
5060
+ customElements.define("plattar-facear", FaceARElement);
5061
+ }
5062
+
5063
+ if (customElements.get("plattar-8wall") === undefined) {
5064
+ customElements.define("plattar-8wall", EWallElement);
5065
+ }
5066
+
5067
+ if (customElements.get("plattar-studio") === undefined) {
5068
+ customElements.define("plattar-studio", StudioElement);
5069
+ }
5070
+
5071
+ if (customElements.get("plattar-model") === undefined) {
5072
+ customElements.define("plattar-model", ModelElement);
5073
+ }
4837
5074
 
4838
5075
  console.log("using @plattar/plattar-web v" + Version);
4839
5076
 
4840
5077
  module.exports = {
4841
5078
  version: Version
4842
5079
  };
4843
- },{"./elements/editor-element.js":104,"./elements/ewall-element.js":105,"./elements/facear-element.js":106,"./elements/model-element.js":107,"./elements/product-element.js":108,"./elements/studio-element.js":109,"./elements/viewer-element.js":110,"./elements/webxr-element.js":111,"./version":114}],113:[function(require,module,exports){
5080
+ },{"./elements/editor-element.js":106,"./elements/ewall-element.js":107,"./elements/facear-element.js":108,"./elements/model-element.js":109,"./elements/product-element.js":110,"./elements/studio-element.js":111,"./elements/viewer-element.js":112,"./elements/webxr-element.js":113,"./version":116}],115:[function(require,module,exports){
4844
5081
  class Util {
4845
5082
  static getServerLocation(server) {
4846
5083
  switch (server) {
@@ -4914,10 +5151,10 @@ class Util {
4914
5151
  }
4915
5152
 
4916
5153
  module.exports = Util;
4917
- },{}],114:[function(require,module,exports){
4918
- module.exports = "1.117.1";
5154
+ },{}],116:[function(require,module,exports){
5155
+ module.exports = "1.121.2";
4919
5156
 
4920
- },{}],115:[function(require,module,exports){
5157
+ },{}],117:[function(require,module,exports){
4921
5158
  (function (global){(function (){
4922
5159
  "use strict";
4923
5160
 
@@ -4945,7 +5182,7 @@ exports.Headers = global.Headers;
4945
5182
  exports.Request = global.Request;
4946
5183
  exports.Response = global.Response;
4947
5184
  }).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
4948
- },{}],116:[function(require,module,exports){
5185
+ },{}],118:[function(require,module,exports){
4949
5186
  // shim for using process in browser
4950
5187
  var process = module.exports = {};
4951
5188
 
@@ -5131,8 +5368,8 @@ process.chdir = function (dir) {
5131
5368
  };
5132
5369
  process.umask = function() { return 0; };
5133
5370
 
5134
- },{}],117:[function(require,module,exports){
5135
- !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+="&lt;";break;case">":e+="&gt;";break;case"&":e+="&amp;";break;case'"':e+="&quot;";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}));
5371
+ },{}],119:[function(require,module,exports){
5372
+ !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.QRCodeStyling=e():t.QRCodeStyling=e()}(self,(function(){return(()=>{var t={192:(t,e)=>{var r,n,o=function(){var t=function(t,e){var r=t,n=a[e],o=null,i=0,u=null,v=[],w={},m=function(t,e){o=function(t){for(var e=new Array(t),r=0;r<t;r+=1){e[r]=new Array(t);for(var n=0;n<t;n+=1)e[r][n]=null}return e}(i=4*r+17),b(0,0),b(i-7,0),b(0,i-7),x(),_(),M(t,e),r>=7&&S(t),null==u&&(u=A(r,n,v)),C(u,e)},b=function(t,e){for(var r=-1;r<=7;r+=1)if(!(t+r<=-1||i<=t+r))for(var n=-1;n<=7;n+=1)e+n<=-1||i<=e+n||(o[t+r][e+n]=0<=r&&r<=6&&(0==n||6==n)||0<=n&&n<=6&&(0==r||6==r)||2<=r&&r<=4&&2<=n&&n<=4)},_=function(){for(var t=8;t<i-8;t+=1)null==o[t][6]&&(o[t][6]=t%2==0);for(var e=8;e<i-8;e+=1)null==o[6][e]&&(o[6][e]=e%2==0)},x=function(){for(var t=s.getPatternPosition(r),e=0;e<t.length;e+=1)for(var n=0;n<t.length;n+=1){var i=t[e],a=t[n];if(null==o[i][a])for(var u=-2;u<=2;u+=1)for(var h=-2;h<=2;h+=1)o[i+u][a+h]=-2==u||2==u||-2==h||2==h||0==u&&0==h}},S=function(t){for(var e=s.getBCHTypeNumber(r),n=0;n<18;n+=1){var a=!t&&1==(e>>n&1);o[Math.floor(n/3)][n%3+i-8-3]=a}for(n=0;n<18;n+=1)a=!t&&1==(e>>n&1),o[n%3+i-8-3][Math.floor(n/3)]=a},M=function(t,e){for(var r=n<<3|e,a=s.getBCHTypeInfo(r),u=0;u<15;u+=1){var h=!t&&1==(a>>u&1);u<6?o[u][8]=h:u<8?o[u+1][8]=h:o[i-15+u][8]=h}for(u=0;u<15;u+=1)h=!t&&1==(a>>u&1),u<8?o[8][i-u-1]=h:u<9?o[8][15-u-1+1]=h:o[8][15-u-1]=h;o[i-8][8]=!t},C=function(t,e){for(var r=-1,n=i-1,a=7,u=0,h=s.getMaskFunction(e),c=i-1;c>0;c-=2)for(6==c&&(c-=1);;){for(var l=0;l<2;l+=1)if(null==o[n][c-l]){var d=!1;u<t.length&&(d=1==(t[u]>>>a&1)),h(n,c-l)&&(d=!d),o[n][c-l]=d,-1==(a-=1)&&(u+=1,a=7)}if((n+=r)<0||i<=n){n-=r,r=-r;break}}},A=function(t,e,r){for(var n=c.getRSBlocks(t,e),o=l(),i=0;i<r.length;i+=1){var a=r[i];o.put(a.getMode(),4),o.put(a.getLength(),s.getLengthInBits(a.getMode(),t)),a.write(o)}var u=0;for(i=0;i<n.length;i+=1)u+=n[i].dataCount;if(o.getLengthInBits()>8*u)throw"code length overflow. ("+o.getLengthInBits()+">"+8*u+")";for(o.getLengthInBits()+4<=8*u&&o.put(0,4);o.getLengthInBits()%8!=0;)o.putBit(!1);for(;!(o.getLengthInBits()>=8*u||(o.put(236,8),o.getLengthInBits()>=8*u));)o.put(17,8);return function(t,e){for(var r=0,n=0,o=0,i=new Array(e.length),a=new Array(e.length),u=0;u<e.length;u+=1){var c=e[u].dataCount,l=e[u].totalCount-c;n=Math.max(n,c),o=Math.max(o,l),i[u]=new Array(c);for(var d=0;d<i[u].length;d+=1)i[u][d]=255&t.getBuffer()[d+r];r+=c;var f=s.getErrorCorrectPolynomial(l),g=h(i[u],f.getLength()-1).mod(f);for(a[u]=new Array(f.getLength()-1),d=0;d<a[u].length;d+=1){var p=d+g.getLength()-a[u].length;a[u][d]=p>=0?g.getAt(p):0}}var v=0;for(d=0;d<e.length;d+=1)v+=e[d].totalCount;var w=new Array(v),y=0;for(d=0;d<n;d+=1)for(u=0;u<e.length;u+=1)d<i[u].length&&(w[y]=i[u][d],y+=1);for(d=0;d<o;d+=1)for(u=0;u<e.length;u+=1)d<a[u].length&&(w[y]=a[u][d],y+=1);return w}(o,n)};w.addData=function(t,e){var r=null;switch(e=e||"Byte"){case"Numeric":r=d(t);break;case"Alphanumeric":r=f(t);break;case"Byte":r=g(t);break;case"Kanji":r=p(t);break;default:throw"mode:"+e}v.push(r),u=null},w.isDark=function(t,e){if(t<0||i<=t||e<0||i<=e)throw t+","+e;return o[t][e]},w.getModuleCount=function(){return i},w.make=function(){if(r<1){for(var t=1;t<40;t++){for(var e=c.getRSBlocks(t,n),o=l(),i=0;i<v.length;i++){var a=v[i];o.put(a.getMode(),4),o.put(a.getLength(),s.getLengthInBits(a.getMode(),t)),a.write(o)}var u=0;for(i=0;i<e.length;i++)u+=e[i].dataCount;if(o.getLengthInBits()<=8*u)break}r=t}m(!1,function(){for(var t=0,e=0,r=0;r<8;r+=1){m(!0,r);var n=s.getLostPoint(w);(0==r||t>n)&&(t=n,e=r)}return e}())},w.createTableTag=function(t,e){t=t||2;var r="";r+='<table style="',r+=" border-width: 0px; border-style: none;",r+=" border-collapse: collapse;",r+=" padding: 0px; margin: "+(e=void 0===e?4*t:e)+"px;",r+='">',r+="<tbody>";for(var n=0;n<w.getModuleCount();n+=1){r+="<tr>";for(var o=0;o<w.getModuleCount();o+=1)r+='<td style="',r+=" border-width: 0px; border-style: none;",r+=" border-collapse: collapse;",r+=" padding: 0px; margin: 0px;",r+=" width: "+t+"px;",r+=" height: "+t+"px;",r+=" background-color: ",r+=w.isDark(n,o)?"#000000":"#ffffff",r+=";",r+='"/>';r+="</tr>"}return(r+="</tbody>")+"</table>"},w.createSvgTag=function(t,e,r,n){var o={};"object"==typeof arguments[0]&&(t=(o=arguments[0]).cellSize,e=o.margin,r=o.alt,n=o.title),t=t||2,e=void 0===e?4*t:e,(r="string"==typeof r?{text:r}:r||{}).text=r.text||null,r.id=r.text?r.id||"qrcode-description":null,(n="string"==typeof n?{text:n}:n||{}).text=n.text||null,n.id=n.text?n.id||"qrcode-title":null;var i,a,s,u,h=w.getModuleCount()*t+2*e,c="";for(u="l"+t+",0 0,"+t+" -"+t+",0 0,-"+t+"z ",c+='<svg version="1.1" xmlns="http://www.w3.org/2000/svg"',c+=o.scalable?"":' width="'+h+'px" height="'+h+'px"',c+=' viewBox="0 0 '+h+" "+h+'" ',c+=' preserveAspectRatio="xMinYMin meet"',c+=n.text||r.text?' role="img" aria-labelledby="'+k([n.id,r.id].join(" ").trim())+'"':"",c+=">",c+=n.text?'<title id="'+k(n.id)+'">'+k(n.text)+"</title>":"",c+=r.text?'<description id="'+k(r.id)+'">'+k(r.text)+"</description>":"",c+='<rect width="100%" height="100%" fill="white" cx="0" cy="0"/>',c+='<path d="',a=0;a<w.getModuleCount();a+=1)for(s=a*t+e,i=0;i<w.getModuleCount();i+=1)w.isDark(a,i)&&(c+="M"+(i*t+e)+","+s+u);return(c+='" stroke="transparent" fill="black"/>')+"</svg>"},w.createDataURL=function(t,e){t=t||2,e=void 0===e?4*t:e;var r=w.getModuleCount()*t+2*e,n=e,o=r-e;return y(r,r,(function(e,r){if(n<=e&&e<o&&n<=r&&r<o){var i=Math.floor((e-n)/t),a=Math.floor((r-n)/t);return w.isDark(a,i)?0:1}return 1}))},w.createImgTag=function(t,e,r){t=t||2,e=void 0===e?4*t:e;var n=w.getModuleCount()*t+2*e,o="";return o+="<img",o+=' src="',o+=w.createDataURL(t,e),o+='"',o+=' width="',o+=n,o+='"',o+=' height="',o+=n,o+='"',r&&(o+=' alt="',o+=k(r),o+='"'),o+"/>"};var k=function(t){for(var e="",r=0;r<t.length;r+=1){var n=t.charAt(r);switch(n){case"<":e+="&lt;";break;case">":e+="&gt;";break;case"&":e+="&amp;";break;case'"':e+="&quot;";break;default:e+=n}}return e};return w.createASCII=function(t,e){if((t=t||1)<2)return function(t){t=void 0===t?2:t;var e,r,n,o,i,a=1*w.getModuleCount()+2*t,s=t,u=a-t,h={"██":"█","█ ":"▀"," █":"▄"," ":" "},c={"██":"▀","█ ":"▀"," █":" "," ":" "},l="";for(e=0;e<a;e+=2){for(n=Math.floor((e-s)/1),o=Math.floor((e+1-s)/1),r=0;r<a;r+=1)i="█",s<=r&&r<u&&s<=e&&e<u&&w.isDark(n,Math.floor((r-s)/1))&&(i=" "),s<=r&&r<u&&s<=e+1&&e+1<u&&w.isDark(o,Math.floor((r-s)/1))?i+=" ":i+="█",l+=t<1&&e+1>=u?c[i]:h[i];l+="\n"}return a%2&&t>0?l.substring(0,l.length-a-1)+Array(a+1).join("▀"):l.substring(0,l.length-1)}(e);t-=1,e=void 0===e?2*t:e;var r,n,o,i,a=w.getModuleCount()*t+2*e,s=e,u=a-e,h=Array(t+1).join("██"),c=Array(t+1).join(" "),l="",d="";for(r=0;r<a;r+=1){for(o=Math.floor((r-s)/t),d="",n=0;n<a;n+=1)i=1,s<=n&&n<u&&s<=r&&r<u&&w.isDark(o,Math.floor((n-s)/t))&&(i=0),d+=i?h:c;for(o=0;o<t;o+=1)l+=d+"\n"}return l.substring(0,l.length-1)},w.renderTo2dContext=function(t,e){e=e||2;for(var r=w.getModuleCount(),n=0;n<r;n++)for(var o=0;o<r;o++)t.fillStyle=w.isDark(n,o)?"black":"white",t.fillRect(n*e,o*e,e,e)},w};t.stringToBytes=(t.stringToBytesFuncs={default:function(t){for(var e=[],r=0;r<t.length;r+=1){var n=t.charCodeAt(r);e.push(255&n)}return e}}).default,t.createStringToBytes=function(t,e){var r=function(){for(var r=w(t),n=function(){var t=r.read();if(-1==t)throw"eof";return t},o=0,i={};;){var a=r.read();if(-1==a)break;var s=n(),u=n()<<8|n();i[String.fromCharCode(a<<8|s)]=u,o+=1}if(o!=e)throw o+" != "+e;return i}(),n="?".charCodeAt(0);return function(t){for(var e=[],o=0;o<t.length;o+=1){var i=t.charCodeAt(o);if(i<128)e.push(i);else{var a=r[t.charAt(o)];"number"==typeof a?(255&a)==a?e.push(a):(e.push(a>>>8),e.push(255&a)):e.push(n)}}return e}};var e,r,n,o,i,a={L:1,M:0,Q:3,H:2},s=(e=[[],[6,18],[6,22],[6,26],[6,30],[6,34],[6,22,38],[6,24,42],[6,26,46],[6,28,50],[6,30,54],[6,32,58],[6,34,62],[6,26,46,66],[6,26,48,70],[6,26,50,74],[6,30,54,78],[6,30,56,82],[6,30,58,86],[6,34,62,90],[6,28,50,72,94],[6,26,50,74,98],[6,30,54,78,102],[6,28,54,80,106],[6,32,58,84,110],[6,30,58,86,114],[6,34,62,90,118],[6,26,50,74,98,122],[6,30,54,78,102,126],[6,26,52,78,104,130],[6,30,56,82,108,134],[6,34,60,86,112,138],[6,30,58,86,114,142],[6,34,62,90,118,146],[6,30,54,78,102,126,150],[6,24,50,76,102,128,154],[6,28,54,80,106,132,158],[6,32,58,84,110,136,162],[6,26,54,82,110,138,166],[6,30,58,86,114,142,170]],r=1335,n=7973,i=function(t){for(var e=0;0!=t;)e+=1,t>>>=1;return e},(o={}).getBCHTypeInfo=function(t){for(var e=t<<10;i(e)-i(r)>=0;)e^=r<<i(e)-i(r);return 21522^(t<<10|e)},o.getBCHTypeNumber=function(t){for(var e=t<<12;i(e)-i(n)>=0;)e^=n<<i(e)-i(n);return t<<12|e},o.getPatternPosition=function(t){return e[t-1]},o.getMaskFunction=function(t){switch(t){case 0:return function(t,e){return(t+e)%2==0};case 1:return function(t,e){return t%2==0};case 2:return function(t,e){return e%3==0};case 3:return function(t,e){return(t+e)%3==0};case 4:return function(t,e){return(Math.floor(t/2)+Math.floor(e/3))%2==0};case 5:return function(t,e){return t*e%2+t*e%3==0};case 6:return function(t,e){return(t*e%2+t*e%3)%2==0};case 7:return function(t,e){return(t*e%3+(t+e)%2)%2==0};default:throw"bad maskPattern:"+t}},o.getErrorCorrectPolynomial=function(t){for(var e=h([1],0),r=0;r<t;r+=1)e=e.multiply(h([1,u.gexp(r)],0));return e},o.getLengthInBits=function(t,e){if(1<=e&&e<10)switch(t){case 1:return 10;case 2:return 9;case 4:case 8:return 8;default:throw"mode:"+t}else if(e<27)switch(t){case 1:return 12;case 2:return 11;case 4:return 16;case 8:return 10;default:throw"mode:"+t}else{if(!(e<41))throw"type:"+e;switch(t){case 1:return 14;case 2:return 13;case 4:return 16;case 8:return 12;default:throw"mode:"+t}}},o.getLostPoint=function(t){for(var e=t.getModuleCount(),r=0,n=0;n<e;n+=1)for(var o=0;o<e;o+=1){for(var i=0,a=t.isDark(n,o),s=-1;s<=1;s+=1)if(!(n+s<0||e<=n+s))for(var u=-1;u<=1;u+=1)o+u<0||e<=o+u||0==s&&0==u||a==t.isDark(n+s,o+u)&&(i+=1);i>5&&(r+=3+i-5)}for(n=0;n<e-1;n+=1)for(o=0;o<e-1;o+=1){var h=0;t.isDark(n,o)&&(h+=1),t.isDark(n+1,o)&&(h+=1),t.isDark(n,o+1)&&(h+=1),t.isDark(n+1,o+1)&&(h+=1),0!=h&&4!=h||(r+=3)}for(n=0;n<e;n+=1)for(o=0;o<e-6;o+=1)t.isDark(n,o)&&!t.isDark(n,o+1)&&t.isDark(n,o+2)&&t.isDark(n,o+3)&&t.isDark(n,o+4)&&!t.isDark(n,o+5)&&t.isDark(n,o+6)&&(r+=40);for(o=0;o<e;o+=1)for(n=0;n<e-6;n+=1)t.isDark(n,o)&&!t.isDark(n+1,o)&&t.isDark(n+2,o)&&t.isDark(n+3,o)&&t.isDark(n+4,o)&&!t.isDark(n+5,o)&&t.isDark(n+6,o)&&(r+=40);var c=0;for(o=0;o<e;o+=1)for(n=0;n<e;n+=1)t.isDark(n,o)&&(c+=1);return r+Math.abs(100*c/e/e-50)/5*10},o),u=function(){for(var t=new Array(256),e=new Array(256),r=0;r<8;r+=1)t[r]=1<<r;for(r=8;r<256;r+=1)t[r]=t[r-4]^t[r-5]^t[r-6]^t[r-8];for(r=0;r<255;r+=1)e[t[r]]=r;return{glog:function(t){if(t<1)throw"glog("+t+")";return e[t]},gexp:function(e){for(;e<0;)e+=255;for(;e>=256;)e-=255;return t[e]}}}();function h(t,e){if(void 0===t.length)throw t.length+"/"+e;var r=function(){for(var r=0;r<t.length&&0==t[r];)r+=1;for(var n=new Array(t.length-r+e),o=0;o<t.length-r;o+=1)n[o]=t[o+r];return n}(),n={getAt:function(t){return r[t]},getLength:function(){return r.length},multiply:function(t){for(var e=new Array(n.getLength()+t.getLength()-1),r=0;r<n.getLength();r+=1)for(var o=0;o<t.getLength();o+=1)e[r+o]^=u.gexp(u.glog(n.getAt(r))+u.glog(t.getAt(o)));return h(e,0)},mod:function(t){if(n.getLength()-t.getLength()<0)return n;for(var e=u.glog(n.getAt(0))-u.glog(t.getAt(0)),r=new Array(n.getLength()),o=0;o<n.getLength();o+=1)r[o]=n.getAt(o);for(o=0;o<t.getLength();o+=1)r[o]^=u.gexp(u.glog(t.getAt(o))+e);return h(r,0).mod(t)}};return n}var c=function(){var t=[[1,26,19],[1,26,16],[1,26,13],[1,26,9],[1,44,34],[1,44,28],[1,44,22],[1,44,16],[1,70,55],[1,70,44],[2,35,17],[2,35,13],[1,100,80],[2,50,32],[2,50,24],[4,25,9],[1,134,108],[2,67,43],[2,33,15,2,34,16],[2,33,11,2,34,12],[2,86,68],[4,43,27],[4,43,19],[4,43,15],[2,98,78],[4,49,31],[2,32,14,4,33,15],[4,39,13,1,40,14],[2,121,97],[2,60,38,2,61,39],[4,40,18,2,41,19],[4,40,14,2,41,15],[2,146,116],[3,58,36,2,59,37],[4,36,16,4,37,17],[4,36,12,4,37,13],[2,86,68,2,87,69],[4,69,43,1,70,44],[6,43,19,2,44,20],[6,43,15,2,44,16],[4,101,81],[1,80,50,4,81,51],[4,50,22,4,51,23],[3,36,12,8,37,13],[2,116,92,2,117,93],[6,58,36,2,59,37],[4,46,20,6,47,21],[7,42,14,4,43,15],[4,133,107],[8,59,37,1,60,38],[8,44,20,4,45,21],[12,33,11,4,34,12],[3,145,115,1,146,116],[4,64,40,5,65,41],[11,36,16,5,37,17],[11,36,12,5,37,13],[5,109,87,1,110,88],[5,65,41,5,66,42],[5,54,24,7,55,25],[11,36,12,7,37,13],[5,122,98,1,123,99],[7,73,45,3,74,46],[15,43,19,2,44,20],[3,45,15,13,46,16],[1,135,107,5,136,108],[10,74,46,1,75,47],[1,50,22,15,51,23],[2,42,14,17,43,15],[5,150,120,1,151,121],[9,69,43,4,70,44],[17,50,22,1,51,23],[2,42,14,19,43,15],[3,141,113,4,142,114],[3,70,44,11,71,45],[17,47,21,4,48,22],[9,39,13,16,40,14],[3,135,107,5,136,108],[3,67,41,13,68,42],[15,54,24,5,55,25],[15,43,15,10,44,16],[4,144,116,4,145,117],[17,68,42],[17,50,22,6,51,23],[19,46,16,6,47,17],[2,139,111,7,140,112],[17,74,46],[7,54,24,16,55,25],[34,37,13],[4,151,121,5,152,122],[4,75,47,14,76,48],[11,54,24,14,55,25],[16,45,15,14,46,16],[6,147,117,4,148,118],[6,73,45,14,74,46],[11,54,24,16,55,25],[30,46,16,2,47,17],[8,132,106,4,133,107],[8,75,47,13,76,48],[7,54,24,22,55,25],[22,45,15,13,46,16],[10,142,114,2,143,115],[19,74,46,4,75,47],[28,50,22,6,51,23],[33,46,16,4,47,17],[8,152,122,4,153,123],[22,73,45,3,74,46],[8,53,23,26,54,24],[12,45,15,28,46,16],[3,147,117,10,148,118],[3,73,45,23,74,46],[4,54,24,31,55,25],[11,45,15,31,46,16],[7,146,116,7,147,117],[21,73,45,7,74,46],[1,53,23,37,54,24],[19,45,15,26,46,16],[5,145,115,10,146,116],[19,75,47,10,76,48],[15,54,24,25,55,25],[23,45,15,25,46,16],[13,145,115,3,146,116],[2,74,46,29,75,47],[42,54,24,1,55,25],[23,45,15,28,46,16],[17,145,115],[10,74,46,23,75,47],[10,54,24,35,55,25],[19,45,15,35,46,16],[17,145,115,1,146,116],[14,74,46,21,75,47],[29,54,24,19,55,25],[11,45,15,46,46,16],[13,145,115,6,146,116],[14,74,46,23,75,47],[44,54,24,7,55,25],[59,46,16,1,47,17],[12,151,121,7,152,122],[12,75,47,26,76,48],[39,54,24,14,55,25],[22,45,15,41,46,16],[6,151,121,14,152,122],[6,75,47,34,76,48],[46,54,24,10,55,25],[2,45,15,64,46,16],[17,152,122,4,153,123],[29,74,46,14,75,47],[49,54,24,10,55,25],[24,45,15,46,46,16],[4,152,122,18,153,123],[13,74,46,32,75,47],[48,54,24,14,55,25],[42,45,15,32,46,16],[20,147,117,4,148,118],[40,75,47,7,76,48],[43,54,24,22,55,25],[10,45,15,67,46,16],[19,148,118,6,149,119],[18,75,47,31,76,48],[34,54,24,34,55,25],[20,45,15,61,46,16]],e=function(t,e){var r={};return r.totalCount=t,r.dataCount=e,r},r={getRSBlocks:function(r,n){var o=function(e,r){switch(r){case a.L:return t[4*(e-1)+0];case a.M:return t[4*(e-1)+1];case a.Q:return t[4*(e-1)+2];case a.H:return t[4*(e-1)+3];default:return}}(r,n);if(void 0===o)throw"bad rs block @ typeNumber:"+r+"/errorCorrectionLevel:"+n;for(var i=o.length/3,s=[],u=0;u<i;u+=1)for(var h=o[3*u+0],c=o[3*u+1],l=o[3*u+2],d=0;d<h;d+=1)s.push(e(c,l));return s}};return r}(),l=function(){var t=[],e=0,r={getBuffer:function(){return t},getAt:function(e){var r=Math.floor(e/8);return 1==(t[r]>>>7-e%8&1)},put:function(t,e){for(var n=0;n<e;n+=1)r.putBit(1==(t>>>e-n-1&1))},getLengthInBits:function(){return e},putBit:function(r){var n=Math.floor(e/8);t.length<=n&&t.push(0),r&&(t[n]|=128>>>e%8),e+=1}};return r},d=function(t){var e=t,r={getMode:function(){return 1},getLength:function(t){return e.length},write:function(t){for(var r=e,o=0;o+2<r.length;)t.put(n(r.substring(o,o+3)),10),o+=3;o<r.length&&(r.length-o==1?t.put(n(r.substring(o,o+1)),4):r.length-o==2&&t.put(n(r.substring(o,o+2)),7))}},n=function(t){for(var e=0,r=0;r<t.length;r+=1)e=10*e+o(t.charAt(r));return e},o=function(t){if("0"<=t&&t<="9")return t.charCodeAt(0)-"0".charCodeAt(0);throw"illegal char :"+t};return r},f=function(t){var e=t,r={getMode:function(){return 2},getLength:function(t){return e.length},write:function(t){for(var r=e,o=0;o+1<r.length;)t.put(45*n(r.charAt(o))+n(r.charAt(o+1)),11),o+=2;o<r.length&&t.put(n(r.charAt(o)),6)}},n=function(t){if("0"<=t&&t<="9")return t.charCodeAt(0)-"0".charCodeAt(0);if("A"<=t&&t<="Z")return t.charCodeAt(0)-"A".charCodeAt(0)+10;switch(t){case" ":return 36;case"$":return 37;case"%":return 38;case"*":return 39;case"+":return 40;case"-":return 41;case".":return 42;case"/":return 43;case":":return 44;default:throw"illegal char :"+t}};return r},g=function(e){var r=t.stringToBytes(e);return{getMode:function(){return 4},getLength:function(t){return r.length},write:function(t){for(var e=0;e<r.length;e+=1)t.put(r[e],8)}}},p=function(e){var r=t.stringToBytesFuncs.SJIS;if(!r)throw"sjis not supported.";!function(t,e){var n=r("友");if(2!=n.length||38726!=(n[0]<<8|n[1]))throw"sjis not supported."}();var n=r(e);return{getMode:function(){return 8},getLength:function(t){return~~(n.length/2)},write:function(t){for(var e=n,r=0;r+1<e.length;){var o=(255&e[r])<<8|255&e[r+1];if(33088<=o&&o<=40956)o-=33088;else{if(!(57408<=o&&o<=60351))throw"illegal char at "+(r+1)+"/"+o;o-=49472}o=192*(o>>>8&255)+(255&o),t.put(o,13),r+=2}if(r<e.length)throw"illegal char at "+(r+1)}}},v=function(){var t=[],e={writeByte:function(e){t.push(255&e)},writeShort:function(t){e.writeByte(t),e.writeByte(t>>>8)},writeBytes:function(t,r,n){r=r||0,n=n||t.length;for(var o=0;o<n;o+=1)e.writeByte(t[o+r])},writeString:function(t){for(var r=0;r<t.length;r+=1)e.writeByte(t.charCodeAt(r))},toByteArray:function(){return t},toString:function(){var e="";e+="[";for(var r=0;r<t.length;r+=1)r>0&&(e+=","),e+=t[r];return e+"]"}};return e},w=function(t){var e=t,r=0,n=0,o=0,i={read:function(){for(;o<8;){if(r>=e.length){if(0==o)return-1;throw"unexpected end of file./"+o}var t=e.charAt(r);if(r+=1,"="==t)return o=0,-1;t.match(/^\s$/)||(n=n<<6|a(t.charCodeAt(0)),o+=6)}var i=n>>>o-8&255;return o-=8,i}},a=function(t){if(65<=t&&t<=90)return t-65;if(97<=t&&t<=122)return t-97+26;if(48<=t&&t<=57)return t-48+52;if(43==t)return 62;if(47==t)return 63;throw"c:"+t};return i},y=function(t,e,r){for(var n=function(t,e){var r=t,n=e,o=new Array(t*e),i={setPixel:function(t,e,n){o[e*r+t]=n},write:function(t){t.writeString("GIF87a"),t.writeShort(r),t.writeShort(n),t.writeByte(128),t.writeByte(0),t.writeByte(0),t.writeByte(0),t.writeByte(0),t.writeByte(0),t.writeByte(255),t.writeByte(255),t.writeByte(255),t.writeString(","),t.writeShort(0),t.writeShort(0),t.writeShort(r),t.writeShort(n),t.writeByte(0);var e=a(2);t.writeByte(2);for(var o=0;e.length-o>255;)t.writeByte(255),t.writeBytes(e,o,255),o+=255;t.writeByte(e.length-o),t.writeBytes(e,o,e.length-o),t.writeByte(0),t.writeString(";")}},a=function(t){for(var e=1<<t,r=1+(1<<t),n=t+1,i=s(),a=0;a<e;a+=1)i.add(String.fromCharCode(a));i.add(String.fromCharCode(e)),i.add(String.fromCharCode(r));var u,h,c,l=v(),d=(u=l,h=0,c=0,{write:function(t,e){if(t>>>e!=0)throw"length over";for(;h+e>=8;)u.writeByte(255&(t<<h|c)),e-=8-h,t>>>=8-h,c=0,h=0;c|=t<<h,h+=e},flush:function(){h>0&&u.writeByte(c)}});d.write(e,n);var f=0,g=String.fromCharCode(o[f]);for(f+=1;f<o.length;){var p=String.fromCharCode(o[f]);f+=1,i.contains(g+p)?g+=p:(d.write(i.indexOf(g),n),i.size()<4095&&(i.size()==1<<n&&(n+=1),i.add(g+p)),g=p)}return d.write(i.indexOf(g),n),d.write(r,n),d.flush(),l.toByteArray()},s=function(){var t={},e=0,r={add:function(n){if(r.contains(n))throw"dup key:"+n;t[n]=e,e+=1},size:function(){return e},indexOf:function(e){return t[e]},contains:function(e){return void 0!==t[e]}};return r};return i}(t,e),o=0;o<e;o+=1)for(var i=0;i<t;i+=1)n.setPixel(i,o,r(i,o));var a=v();n.write(a);for(var s=function(){var t=0,e=0,r=0,n="",o={},i=function(t){n+=String.fromCharCode(a(63&t))},a=function(t){if(t<0);else{if(t<26)return 65+t;if(t<52)return t-26+97;if(t<62)return t-52+48;if(62==t)return 43;if(63==t)return 47}throw"n:"+t};return o.writeByte=function(n){for(t=t<<8|255&n,e+=8,r+=1;e>=6;)i(t>>>e-6),e-=6},o.flush=function(){if(e>0&&(i(t<<6-e),t=0,e=0),r%3!=0)for(var o=3-r%3,a=0;a<o;a+=1)n+="="},o.toString=function(){return n},o}(),u=a.toByteArray(),h=0;h<u.length;h+=1)s.writeByte(u[h]);return s.flush(),"data:image/gif;base64,"+s};return t}();o.stringToBytesFuncs["UTF-8"]=function(t){return function(t){for(var e=[],r=0;r<t.length;r++){var n=t.charCodeAt(r);n<128?e.push(n):n<2048?e.push(192|n>>6,128|63&n):n<55296||n>=57344?e.push(224|n>>12,128|n>>6&63,128|63&n):(r++,n=65536+((1023&n)<<10|1023&t.charCodeAt(r)),e.push(240|n>>18,128|n>>12&63,128|n>>6&63,128|63&n))}return e}(t)},void 0===(n="function"==typeof(r=function(){return o})?r.apply(e,[]):r)||(t.exports=n)},676:(t,e,r)=>{"use strict";r.d(e,{default:()=>q});var n=function(){return(n=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)},o=function(){for(var t=0,e=0,r=arguments.length;e<r;e++)t+=arguments[e].length;var n=Array(t),o=0;for(e=0;e<r;e++)for(var i=arguments[e],a=0,s=i.length;a<s;a++,o++)n[o]=i[a];return n},i=function(t){return!!t&&"object"==typeof t&&!Array.isArray(t)};function a(t){for(var e=[],r=1;r<arguments.length;r++)e[r-1]=arguments[r];if(!e.length)return t;var s=e.shift();return void 0!==s&&i(t)&&i(s)?(t=n({},t),Object.keys(s).forEach((function(e){var r=t[e],n=s[e];Array.isArray(r)&&Array.isArray(n)?t[e]=n:i(r)&&i(n)?t[e]=a(Object.assign({},r),n):t[e]=n})),a.apply(void 0,o([t],e))):t}function s(t,e){var r=document.createElement("a");r.download=e,r.href=t,document.body.appendChild(r),r.click(),document.body.removeChild(r)}function u(t){return e=this,r=void 0,o=function(){return function(t,e){var r,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((o=(o=a.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=e.call(t,a)}catch(t){i=[6,t],n=0}finally{r=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}}(this,(function(e){return[2,new Promise((function(e){var r=new XMLHttpRequest;r.onload=function(){var t=new FileReader;t.onloadend=function(){e(t.result)},t.readAsDataURL(r.response)},r.open("GET",t),r.responseType="blob",r.send()}))]}))},new((n=void 0)||(n=Promise))((function(t,i){function a(t){try{u(o.next(t))}catch(t){i(t)}}function s(t){try{u(o.throw(t))}catch(t){i(t)}}function u(e){var r;e.done?t(e.value):(r=e.value,r instanceof n?r:new n((function(t){t(r)}))).then(a,s)}u((o=o.apply(e,r||[])).next())}));var e,r,n,o}const h={L:.07,M:.15,Q:.25,H:.3};var c=function(){return(c=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};const l=function(){function t(t){var e=t.svg,r=t.type;this._svg=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o;switch(this._type){case"dots":o=this._drawDot;break;case"classy":o=this._drawClassy;break;case"classy-rounded":o=this._drawClassyRounded;break;case"rounded":o=this._drawRounded;break;case"extra-rounded":o=this._drawExtraRounded;break;case"square":default:o=this._drawSquare}o.call(this,{x:t,y:e,size:r,getNeighbor:n})},t.prototype._rotateFigure=function(t){var e,r=t.x,n=t.y,o=t.size,i=t.rotation,a=void 0===i?0:i,s=r+o/2,u=n+o/2;(0,t.draw)(),null===(e=this._element)||void 0===e||e.setAttribute("transform","rotate("+180*a/Math.PI+","+s+","+u+")")},t.prototype._basicDot=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","circle"),e._element.setAttribute("cx",String(n+r/2)),e._element.setAttribute("cy",String(o+r/2)),e._element.setAttribute("r",String(r/2))}}))},t.prototype._basicSquare=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","rect"),e._element.setAttribute("x",String(n)),e._element.setAttribute("y",String(o)),e._element.setAttribute("width",String(r)),e._element.setAttribute("height",String(r))}}))},t.prototype._basicSideRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r/2+"a "+r/2+" "+r/2+", 0, 0, 0, 0 "+-r)}}))},t.prototype._basicCornerRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r+"v "+-r/2+"a "+r/2+" "+r/2+", 0, 0, 0, "+-r/2+" "+-r/2)}}))},t.prototype._basicCornerExtraRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r+"a "+r+" "+r+", 0, 0, 0, "+-r+" "+-r)}}))},t.prototype._basicCornersRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(c(c({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("d","M "+n+" "+o+"v "+r/2+"a "+r/2+" "+r/2+", 0, 0, 0, "+r/2+" "+r/2+"h "+r/2+"v "+-r/2+"a "+r/2+" "+r/2+", 0, 0, 0, "+-r/2+" "+-r/2)}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size;this._basicDot({x:e,y:r,size:n,rotation:0})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size;this._basicSquare({x:e,y:r,size:n,rotation:0})},t.prototype._drawRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0,h=i+a+s+u;if(0!==h)if(h>2||i&&a||s&&u)this._basicSquare({x:e,y:r,size:n,rotation:0});else{if(2===h){var c=0;return i&&s?c=Math.PI/2:s&&a?c=Math.PI:a&&u&&(c=-Math.PI/2),void this._basicCornerRounded({x:e,y:r,size:n,rotation:c})}if(1===h)return c=0,s?c=Math.PI/2:a?c=Math.PI:u&&(c=-Math.PI/2),void this._basicSideRounded({x:e,y:r,size:n,rotation:c})}else this._basicDot({x:e,y:r,size:n,rotation:0})},t.prototype._drawExtraRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0,h=i+a+s+u;if(0!==h)if(h>2||i&&a||s&&u)this._basicSquare({x:e,y:r,size:n,rotation:0});else{if(2===h){var c=0;return i&&s?c=Math.PI/2:s&&a?c=Math.PI:a&&u&&(c=-Math.PI/2),void this._basicCornerExtraRounded({x:e,y:r,size:n,rotation:c})}if(1===h)return c=0,s?c=Math.PI/2:a?c=Math.PI:u&&(c=-Math.PI/2),void this._basicSideRounded({x:e,y:r,size:n,rotation:c})}else this._basicDot({x:e,y:r,size:n,rotation:0})},t.prototype._drawClassy=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0;0!==i+a+s+u?i||s?a||u?this._basicSquare({x:e,y:r,size:n,rotation:0}):this._basicCornerRounded({x:e,y:r,size:n,rotation:Math.PI/2}):this._basicCornerRounded({x:e,y:r,size:n,rotation:-Math.PI/2}):this._basicCornersRounded({x:e,y:r,size:n,rotation:Math.PI/2})},t.prototype._drawClassyRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.getNeighbor,i=o?+o(-1,0):0,a=o?+o(1,0):0,s=o?+o(0,-1):0,u=o?+o(0,1):0;0!==i+a+s+u?i||s?a||u?this._basicSquare({x:e,y:r,size:n,rotation:0}):this._basicCornerExtraRounded({x:e,y:r,size:n,rotation:Math.PI/2}):this._basicCornerExtraRounded({x:e,y:r,size:n,rotation:-Math.PI/2}):this._basicCornersRounded({x:e,y:r,size:n,rotation:Math.PI/2})},t}();var d=function(){return(d=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};const f=function(){function t(t){var e=t.svg,r=t.type;this._svg=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o;switch(this._type){case"square":o=this._drawSquare;break;case"extra-rounded":o=this._drawExtraRounded;break;case"dot":default:o=this._drawDot}o.call(this,{x:t,y:e,size:r,rotation:n})},t.prototype._rotateFigure=function(t){var e,r=t.x,n=t.y,o=t.size,i=t.rotation,a=void 0===i?0:i,s=r+o/2,u=n+o/2;(0,t.draw)(),null===(e=this._element)||void 0===e||e.setAttribute("transform","rotate("+180*a/Math.PI+","+s+","+u+")")},t.prototype._basicDot=function(t){var e=this,r=t.size,n=t.x,o=t.y,i=r/7;this._rotateFigure(d(d({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("clip-rule","evenodd"),e._element.setAttribute("d","M "+(n+r/2)+" "+o+"a "+r/2+" "+r/2+" 0 1 0 0.1 0zm 0 "+i+"a "+(r/2-i)+" "+(r/2-i)+" 0 1 1 -0.1 0Z")}}))},t.prototype._basicSquare=function(t){var e=this,r=t.size,n=t.x,o=t.y,i=r/7;this._rotateFigure(d(d({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("clip-rule","evenodd"),e._element.setAttribute("d","M "+n+" "+o+"v "+r+"h "+r+"v "+-r+"zM "+(n+i)+" "+(o+i)+"h "+(r-2*i)+"v "+(r-2*i)+"h "+(2*i-r)+"z")}}))},t.prototype._basicExtraRounded=function(t){var e=this,r=t.size,n=t.x,o=t.y,i=r/7;this._rotateFigure(d(d({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","path"),e._element.setAttribute("clip-rule","evenodd"),e._element.setAttribute("d","M "+n+" "+(o+2.5*i)+"v "+2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*i+" "+2.5*i+"h "+2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*i+" "+2.5*-i+"v "+-2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*-i+" "+2.5*-i+"h "+-2*i+"a "+2.5*i+" "+2.5*i+", 0, 0, 0, "+2.5*-i+" "+2.5*i+"M "+(n+2.5*i)+" "+(o+i)+"h "+2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*i+" "+1.5*i+"v "+2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*-i+" "+1.5*i+"h "+-2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*-i+" "+1.5*-i+"v "+-2*i+"a "+1.5*i+" "+1.5*i+", 0, 0, 1, "+1.5*i+" "+1.5*-i)}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicDot({x:e,y:r,size:n,rotation:o})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicSquare({x:e,y:r,size:n,rotation:o})},t.prototype._drawExtraRounded=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicExtraRounded({x:e,y:r,size:n,rotation:o})},t}();var g=function(){return(g=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};const p=function(){function t(t){var e=t.svg,r=t.type;this._svg=e,this._type=r}return t.prototype.draw=function(t,e,r,n){var o;switch(this._type){case"square":o=this._drawSquare;break;case"dot":default:o=this._drawDot}o.call(this,{x:t,y:e,size:r,rotation:n})},t.prototype._rotateFigure=function(t){var e,r=t.x,n=t.y,o=t.size,i=t.rotation,a=void 0===i?0:i,s=r+o/2,u=n+o/2;(0,t.draw)(),null===(e=this._element)||void 0===e||e.setAttribute("transform","rotate("+180*a/Math.PI+","+s+","+u+")")},t.prototype._basicDot=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(g(g({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","circle"),e._element.setAttribute("cx",String(n+r/2)),e._element.setAttribute("cy",String(o+r/2)),e._element.setAttribute("r",String(r/2))}}))},t.prototype._basicSquare=function(t){var e=this,r=t.size,n=t.x,o=t.y;this._rotateFigure(g(g({},t),{draw:function(){e._element=document.createElementNS("http://www.w3.org/2000/svg","rect"),e._element.setAttribute("x",String(n)),e._element.setAttribute("y",String(o)),e._element.setAttribute("width",String(r)),e._element.setAttribute("height",String(r))}}))},t.prototype._drawDot=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicDot({x:e,y:r,size:n,rotation:o})},t.prototype._drawSquare=function(t){var e=t.x,r=t.y,n=t.size,o=t.rotation;this._basicSquare({x:e,y:r,size:n,rotation:o})},t}(),v="circle";var w=function(t,e,r,n){return new(r||(r=Promise))((function(o,i){function a(t){try{u(n.next(t))}catch(t){i(t)}}function s(t){try{u(n.throw(t))}catch(t){i(t)}}function u(t){var e;t.done?o(t.value):(e=t.value,e instanceof r?e:new r((function(t){t(e)}))).then(a,s)}u((n=n.apply(t,e||[])).next())}))},y=function(t,e){var r,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((o=(o=a.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=e.call(t,a)}catch(t){i=[6,t],n=0}finally{r=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}},m=[[1,1,1,1,1,1,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,0,0,0,0,0,1],[1,1,1,1,1,1,1]],b=[[0,0,0,0,0,0,0],[0,0,0,0,0,0,0],[0,0,1,1,1,0,0],[0,0,1,1,1,0,0],[0,0,1,1,1,0,0],[0,0,0,0,0,0,0],[0,0,0,0,0,0,0]];const _=function(){function t(t){this._element=document.createElementNS("http://www.w3.org/2000/svg","svg"),this._element.setAttribute("width",String(t.width)),this._element.setAttribute("height",String(t.height)),this._defs=document.createElementNS("http://www.w3.org/2000/svg","defs"),this._element.appendChild(this._defs),this._options=t}return Object.defineProperty(t.prototype,"width",{get:function(){return this._options.width},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"height",{get:function(){return this._options.height},enumerable:!1,configurable:!0}),t.prototype.getElement=function(){return this._element},t.prototype.drawQR=function(t){return w(this,void 0,void 0,(function(){var e,r,n,o,i,a,s,u,c,l,d=this;return y(this,(function(f){switch(f.label){case 0:return e=t.getModuleCount(),r=Math.min(this._options.width,this._options.height)-2*this._options.margin,n=this._options.shape===v?r/Math.sqrt(2):r,o=Math.floor(n/e),i={hideXDots:0,hideYDots:0,width:0,height:0},this._qr=t,this._options.image?[4,this.loadImage()]:[3,2];case 1:if(f.sent(),!this._image)return[2];a=this._options,s=a.imageOptions,u=a.qrOptions,c=s.imageSize*h[u.errorCorrectionLevel],l=Math.floor(c*e*e),i=function(t){var e=t.originalHeight,r=t.originalWidth,n=t.maxHiddenDots,o=t.maxHiddenAxisDots,i=t.dotSize,a={x:0,y:0},s={x:0,y:0};if(e<=0||r<=0||n<=0||i<=0)return{height:0,width:0,hideYDots:0,hideXDots:0};var u=e/r;return a.x=Math.floor(Math.sqrt(n/u)),a.x<=0&&(a.x=1),o&&o<a.x&&(a.x=o),a.x%2==0&&a.x--,s.x=a.x*i,a.y=1+2*Math.ceil((a.x*u-1)/2),s.y=Math.round(s.x*u),(a.y*a.x>n||o&&o<a.y)&&(o&&o<a.y?(a.y=o,a.y%2==0&&a.x--):a.y-=2,s.y=a.y*i,a.x=1+2*Math.ceil((a.y/u-1)/2),s.x=Math.round(s.y/u)),{height:s.y,width:s.x,hideYDots:a.y,hideXDots:a.x}}({originalWidth:this._image.width,originalHeight:this._image.height,maxHiddenDots:l,maxHiddenAxisDots:e-14,dotSize:o}),f.label=2;case 2:return this.drawBackground(),this.drawDots((function(t,r){var n,o,a,s,u,h;return!(d._options.imageOptions.hideBackgroundDots&&t>=(e-i.hideXDots)/2&&t<(e+i.hideXDots)/2&&r>=(e-i.hideYDots)/2&&r<(e+i.hideYDots)/2||(null===(n=m[t])||void 0===n?void 0:n[r])||(null===(o=m[t-e+7])||void 0===o?void 0:o[r])||(null===(a=m[t])||void 0===a?void 0:a[r-e+7])||(null===(s=b[t])||void 0===s?void 0:s[r])||(null===(u=b[t-e+7])||void 0===u?void 0:u[r])||(null===(h=b[t])||void 0===h?void 0:h[r-e+7]))})),this.drawCorners(),this._options.image?[4,this.drawImage({width:i.width,height:i.height,count:e,dotSize:o})]:[3,4];case 3:f.sent(),f.label=4;case 4:return[2]}}))}))},t.prototype.drawBackground=function(){var t,e,r,n=this._element,o=this._options;if(n){var i=null===(t=o.backgroundOptions)||void 0===t?void 0:t.gradient,a=null===(e=o.backgroundOptions)||void 0===e?void 0:e.color;if((i||a)&&this._createColor({options:i,color:a,additionalRotation:0,x:0,y:0,height:o.height,width:o.width,name:"background-color"}),null===(r=o.backgroundOptions)||void 0===r?void 0:r.round){var s=Math.min(o.width,o.height),u=document.createElementNS("http://www.w3.org/2000/svg","rect");this._backgroundClipPath=document.createElementNS("http://www.w3.org/2000/svg","clipPath"),this._backgroundClipPath.setAttribute("id","clip-path-background-color"),this._defs.appendChild(this._backgroundClipPath),u.setAttribute("x",String((o.width-s)/2)),u.setAttribute("y",String((o.height-s)/2)),u.setAttribute("width",String(s)),u.setAttribute("height",String(s)),u.setAttribute("rx",String(s/2*o.backgroundOptions.round)),this._backgroundClipPath.appendChild(u)}}},t.prototype.drawDots=function(t){var e,r,n=this;if(!this._qr)throw"QR code is not defined";var o=this._options,i=this._qr.getModuleCount();if(i>o.width||i>o.height)throw"The canvas is too small.";var a=Math.min(o.width,o.height)-2*o.margin,s=o.shape===v?a/Math.sqrt(2):a,u=Math.floor(s/i),h=Math.floor((o.width-i*u)/2),c=Math.floor((o.height-i*u)/2),d=new l({svg:this._element,type:o.dotsOptions.type});this._dotsClipPath=document.createElementNS("http://www.w3.org/2000/svg","clipPath"),this._dotsClipPath.setAttribute("id","clip-path-dot-color"),this._defs.appendChild(this._dotsClipPath),this._createColor({options:null===(e=o.dotsOptions)||void 0===e?void 0:e.gradient,color:o.dotsOptions.color,additionalRotation:0,x:0,y:0,height:o.height,width:o.width,name:"dot-color"});for(var f=function(e){for(var o=function(o){return t&&!t(e,o)?"continue":(null===(r=g._qr)||void 0===r?void 0:r.isDark(e,o))?(d.draw(h+e*u,c+o*u,u,(function(r,a){return!(e+r<0||o+a<0||e+r>=i||o+a>=i)&&!(t&&!t(e+r,o+a))&&!!n._qr&&n._qr.isDark(e+r,o+a)})),void(d._element&&g._dotsClipPath&&g._dotsClipPath.appendChild(d._element))):"continue"},a=0;a<i;a++)o(a)},g=this,p=0;p<i;p++)f(p);if(o.shape===v){var w=Math.floor((a/u-i)/2),y=i+2*w,m=h-w*u,b=c-w*u,_=[],x=Math.floor(y/2);for(p=0;p<y;p++){_[p]=[];for(var S=0;S<y;S++)p>=w-1&&p<=y-w&&S>=w-1&&S<=y-w||Math.sqrt((p-x)*(p-x)+(S-x)*(S-x))>x?_[p][S]=0:_[p][S]=this._qr.isDark(S-2*w<0?S:S>=i?S-2*w:S-w,p-2*w<0?p:p>=i?p-2*w:p-w)?1:0}var M=function(t){for(var e=function(e){if(!_[t][e])return"continue";d.draw(m+t*u,b+e*u,u,(function(r,n){var o;return!!(null===(o=_[t+r])||void 0===o?void 0:o[e+n])})),d._element&&C._dotsClipPath&&C._dotsClipPath.appendChild(d._element)},r=0;r<y;r++)e(r)},C=this;for(p=0;p<y;p++)M(p)}},t.prototype.drawCorners=function(){var t=this;if(!this._qr)throw"QR code is not defined";var e=this._element,r=this._options;if(!e)throw"Element code is not defined";var n=this._qr.getModuleCount(),o=Math.min(r.width,r.height)-2*r.margin,i=r.shape===v?o/Math.sqrt(2):o,a=Math.floor(i/n),s=7*a,u=3*a,h=Math.floor((r.width-n*a)/2),c=Math.floor((r.height-n*a)/2);[[0,0,0],[1,0,Math.PI/2],[0,1,-Math.PI/2]].forEach((function(e){var o,i,d,g,v,w,y,_,x,S,M,C,A=e[0],k=e[1],O=e[2],D=h+A*a*(n-7),P=c+k*a*(n-7),z=t._dotsClipPath,B=t._dotsClipPath;if(((null===(o=r.cornersSquareOptions)||void 0===o?void 0:o.gradient)||(null===(i=r.cornersSquareOptions)||void 0===i?void 0:i.color))&&((z=document.createElementNS("http://www.w3.org/2000/svg","clipPath")).setAttribute("id","clip-path-corners-square-color-"+A+"-"+k),t._defs.appendChild(z),t._cornersSquareClipPath=t._cornersDotClipPath=B=z,t._createColor({options:null===(d=r.cornersSquareOptions)||void 0===d?void 0:d.gradient,color:null===(g=r.cornersSquareOptions)||void 0===g?void 0:g.color,additionalRotation:O,x:D,y:P,height:s,width:s,name:"corners-square-color-"+A+"-"+k})),null===(v=r.cornersSquareOptions)||void 0===v?void 0:v.type){var q=new f({svg:t._element,type:r.cornersSquareOptions.type});q.draw(D,P,s,O),q._element&&z&&z.appendChild(q._element)}else for(var I=new l({svg:t._element,type:r.dotsOptions.type}),E=function(t){for(var e=function(e){if(!(null===(w=m[t])||void 0===w?void 0:w[e]))return"continue";I.draw(D+t*a,P+e*a,a,(function(r,n){var o;return!!(null===(o=m[t+r])||void 0===o?void 0:o[e+n])})),I._element&&z&&z.appendChild(I._element)},r=0;r<m[t].length;r++)e(r)},L=0;L<m.length;L++)E(L);if(((null===(y=r.cornersDotOptions)||void 0===y?void 0:y.gradient)||(null===(_=r.cornersDotOptions)||void 0===_?void 0:_.color))&&((B=document.createElementNS("http://www.w3.org/2000/svg","clipPath")).setAttribute("id","clip-path-corners-dot-color-"+A+"-"+k),t._defs.appendChild(B),t._cornersDotClipPath=B,t._createColor({options:null===(x=r.cornersDotOptions)||void 0===x?void 0:x.gradient,color:null===(S=r.cornersDotOptions)||void 0===S?void 0:S.color,additionalRotation:O,x:D+2*a,y:P+2*a,height:u,width:u,name:"corners-dot-color-"+A+"-"+k})),null===(M=r.cornersDotOptions)||void 0===M?void 0:M.type){var R=new p({svg:t._element,type:r.cornersDotOptions.type});R.draw(D+2*a,P+2*a,u,O),R._element&&B&&B.appendChild(R._element)}else{I=new l({svg:t._element,type:r.dotsOptions.type});var N=function(t){for(var e=function(e){if(!(null===(C=b[t])||void 0===C?void 0:C[e]))return"continue";I.draw(D+t*a,P+e*a,a,(function(r,n){var o;return!!(null===(o=b[t+r])||void 0===o?void 0:o[e+n])})),I._element&&B&&B.appendChild(I._element)},r=0;r<b[t].length;r++)e(r)};for(L=0;L<b.length;L++)N(L)}}))},t.prototype.loadImage=function(){var t=this;return new Promise((function(e,r){var n=t._options,o=new Image;if(!n.image)return r("Image is not defined");"string"==typeof n.imageOptions.crossOrigin&&(o.crossOrigin=n.imageOptions.crossOrigin),t._image=o,o.onload=function(){e()},o.src=n.image}))},t.prototype.drawImage=function(t){var e=t.width,r=t.height,n=t.count,o=t.dotSize;return w(this,void 0,void 0,(function(){var t,i,a,s,h,c,l,d,f;return y(this,(function(g){switch(g.label){case 0:return t=this._options,i=Math.floor((t.width-n*o)/2),a=Math.floor((t.height-n*o)/2),s=i+t.imageOptions.margin+(n*o-e)/2,h=a+t.imageOptions.margin+(n*o-r)/2,c=e-2*t.imageOptions.margin,l=r-2*t.imageOptions.margin,(d=document.createElementNS("http://www.w3.org/2000/svg","image")).setAttribute("x",String(s)),d.setAttribute("y",String(h)),d.setAttribute("width",c+"px"),d.setAttribute("height",l+"px"),[4,u(t.image||"")];case 1:return f=g.sent(),d.setAttribute("href",f||""),this._element.appendChild(d),[2]}}))}))},t.prototype._createColor=function(t){var e=t.options,r=t.color,n=t.additionalRotation,o=t.x,i=t.y,a=t.height,s=t.width,u=t.name,h=s>a?s:a,c=document.createElementNS("http://www.w3.org/2000/svg","rect");if(c.setAttribute("x",String(o)),c.setAttribute("y",String(i)),c.setAttribute("height",String(a)),c.setAttribute("width",String(s)),c.setAttribute("clip-path","url('#clip-path-"+u+"')"),e){var l;if("radial"===e.type)(l=document.createElementNS("http://www.w3.org/2000/svg","radialGradient")).setAttribute("id",u),l.setAttribute("gradientUnits","userSpaceOnUse"),l.setAttribute("fx",String(o+s/2)),l.setAttribute("fy",String(i+a/2)),l.setAttribute("cx",String(o+s/2)),l.setAttribute("cy",String(i+a/2)),l.setAttribute("r",String(h/2));else{var d=((e.rotation||0)+n)%(2*Math.PI),f=(d+2*Math.PI)%(2*Math.PI),g=o+s/2,p=i+a/2,v=o+s/2,w=i+a/2;f>=0&&f<=.25*Math.PI||f>1.75*Math.PI&&f<=2*Math.PI?(g-=s/2,p-=a/2*Math.tan(d),v+=s/2,w+=a/2*Math.tan(d)):f>.25*Math.PI&&f<=.75*Math.PI?(p-=a/2,g-=s/2/Math.tan(d),w+=a/2,v+=s/2/Math.tan(d)):f>.75*Math.PI&&f<=1.25*Math.PI?(g+=s/2,p+=a/2*Math.tan(d),v-=s/2,w-=a/2*Math.tan(d)):f>1.25*Math.PI&&f<=1.75*Math.PI&&(p+=a/2,g+=s/2/Math.tan(d),w-=a/2,v-=s/2/Math.tan(d)),(l=document.createElementNS("http://www.w3.org/2000/svg","linearGradient")).setAttribute("id",u),l.setAttribute("gradientUnits","userSpaceOnUse"),l.setAttribute("x1",String(Math.round(g))),l.setAttribute("y1",String(Math.round(p))),l.setAttribute("x2",String(Math.round(v))),l.setAttribute("y2",String(Math.round(w)))}e.colorStops.forEach((function(t){var e=t.offset,r=t.color,n=document.createElementNS("http://www.w3.org/2000/svg","stop");n.setAttribute("offset",100*e+"%"),n.setAttribute("stop-color",r),l.appendChild(n)})),c.setAttribute("fill","url('#"+u+"')"),this._defs.appendChild(l)}else r&&c.setAttribute("fill",r);this._element.appendChild(c)},t}(),x="canvas";for(var S={},M=0;M<=40;M++)S[M]=M;const C={type:x,shape:"square",width:300,height:300,data:"",margin:0,qrOptions:{typeNumber:S[0],mode:void 0,errorCorrectionLevel:"Q"},imageOptions:{hideBackgroundDots:!0,imageSize:.4,crossOrigin:void 0,margin:0},dotsOptions:{type:"square",color:"#000"},backgroundOptions:{round:0,color:"#fff"}};var A=function(){return(A=Object.assign||function(t){for(var e,r=1,n=arguments.length;r<n;r++)for(var o in e=arguments[r])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)};function k(t){var e=A({},t);if(!e.colorStops||!e.colorStops.length)throw"Field 'colorStops' is required in gradient";return e.rotation?e.rotation=Number(e.rotation):e.rotation=0,e.colorStops=e.colorStops.map((function(t){return A(A({},t),{offset:Number(t.offset)})})),e}function O(t){var e=A({},t);return e.width=Number(e.width),e.height=Number(e.height),e.margin=Number(e.margin),e.imageOptions=A(A({},e.imageOptions),{hideBackgroundDots:Boolean(e.imageOptions.hideBackgroundDots),imageSize:Number(e.imageOptions.imageSize),margin:Number(e.imageOptions.margin)}),e.margin>Math.min(e.width,e.height)&&(e.margin=Math.min(e.width,e.height)),e.dotsOptions=A({},e.dotsOptions),e.dotsOptions.gradient&&(e.dotsOptions.gradient=k(e.dotsOptions.gradient)),e.cornersSquareOptions&&(e.cornersSquareOptions=A({},e.cornersSquareOptions),e.cornersSquareOptions.gradient&&(e.cornersSquareOptions.gradient=k(e.cornersSquareOptions.gradient))),e.cornersDotOptions&&(e.cornersDotOptions=A({},e.cornersDotOptions),e.cornersDotOptions.gradient&&(e.cornersDotOptions.gradient=k(e.cornersDotOptions.gradient))),e.backgroundOptions&&(e.backgroundOptions=A({},e.backgroundOptions),e.backgroundOptions.gradient&&(e.backgroundOptions.gradient=k(e.backgroundOptions.gradient))),e}var D=r(192),P=r.n(D),z=function(t,e,r,n){return new(r||(r=Promise))((function(o,i){function a(t){try{u(n.next(t))}catch(t){i(t)}}function s(t){try{u(n.throw(t))}catch(t){i(t)}}function u(t){var e;t.done?o(t.value):(e=t.value,e instanceof r?e:new r((function(t){t(e)}))).then(a,s)}u((n=n.apply(t,e||[])).next())}))},B=function(t,e){var r,n,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(r)throw new TypeError("Generator is already executing.");for(;a;)try{if(r=1,n&&(o=2&i[0]?n.return:i[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,i[1])).done)return o;switch(n=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,n=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!((o=(o=a.trys).length>0&&o[o.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]<o[3])){a.label=i[1];break}if(6===i[0]&&a.label<o[1]){a.label=o[1],o=i;break}if(o&&a.label<o[2]){a.label=o[2],a.ops.push(i);break}o[2]&&a.ops.pop(),a.trys.pop();continue}i=e.call(t,a)}catch(t){i=[6,t],n=0}finally{r=o=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}};const q=function(){function t(t){this._options=t?O(a(C,t)):C,this.update()}return t._clearContainer=function(t){t&&(t.innerHTML="")},t.prototype._setupSvg=function(){var t=this;if(this._qr){var e=new _(this._options);this._svg=e.getElement(),this._svgDrawingPromise=e.drawQR(this._qr).then((function(){var r;t._svg&&(null===(r=t._extension)||void 0===r||r.call(t,e.getElement(),t._options))}))}},t.prototype._setupCanvas=function(){var t,e=this;this._qr&&(this._canvas=document.createElement("canvas"),this._canvas.width=this._options.width,this._canvas.height=this._options.height,this._setupSvg(),this._canvasDrawingPromise=null===(t=this._svgDrawingPromise)||void 0===t?void 0:t.then((function(){if(e._svg){var t=e._svg,r=(new XMLSerializer).serializeToString(t),n="data:image/svg+xml;base64,"+btoa(r),o=new Image;return new Promise((function(t){o.onload=function(){var r,n;null===(n=null===(r=e._canvas)||void 0===r?void 0:r.getContext("2d"))||void 0===n||n.drawImage(o,0,0),t()},o.src=n}))}})))},t.prototype._getElement=function(t){return void 0===t&&(t="png"),z(this,void 0,void 0,(function(){return B(this,(function(e){switch(e.label){case 0:if(!this._qr)throw"QR code is empty";return"svg"!==t.toLowerCase()?[3,2]:(this._svg&&this._svgDrawingPromise||this._setupSvg(),[4,this._svgDrawingPromise]);case 1:return e.sent(),[2,this._svg];case 2:return this._canvas&&this._canvasDrawingPromise||this._setupCanvas(),[4,this._canvasDrawingPromise];case 3:return e.sent(),[2,this._canvas]}}))}))},t.prototype.update=function(e){t._clearContainer(this._container),this._options=e?O(a(this._options,e)):this._options,this._options.data&&(this._qr=P()(this._options.qrOptions.typeNumber,this._options.qrOptions.errorCorrectionLevel),this._qr.addData(this._options.data,this._options.qrOptions.mode||function(t){switch(!0){case/^[0-9]*$/.test(t):return"Numeric";case/^[0-9A-Z $%*+\-./:]*$/.test(t):return"Alphanumeric";default:return"Byte"}}(this._options.data)),this._qr.make(),this._options.type===x?this._setupCanvas():this._setupSvg(),this.append(this._container))},t.prototype.append=function(t){if(t){if("function"!=typeof t.appendChild)throw"Container should be a single DOM node";this._options.type===x?this._canvas&&t.appendChild(this._canvas):this._svg&&t.appendChild(this._svg),this._container=t}},t.prototype.applyExtension=function(t){if(!t)throw"Extension function should be defined.";this._extension=t,this.update()},t.prototype.deleteExtension=function(){this._extension=void 0,this.update()},t.prototype.getRawData=function(t){return void 0===t&&(t="png"),z(this,void 0,void 0,(function(){var e,r,n;return B(this,(function(o){switch(o.label){case 0:if(!this._qr)throw"QR code is empty";return[4,this._getElement(t)];case 1:return(e=o.sent())?"svg"===t.toLowerCase()?(r=new XMLSerializer,n=r.serializeToString(e),[2,new Blob(['<?xml version="1.0" standalone="no"?>\r\n'+n],{type:"image/svg+xml"})]):[2,new Promise((function(r){return e.toBlob(r,"image/"+t,1)}))]:[2,null]}}))}))},t.prototype.download=function(t){return z(this,void 0,void 0,(function(){var e,r,n,o,i;return B(this,(function(a){switch(a.label){case 0:if(!this._qr)throw"QR code is empty";return e="png",r="qr","string"==typeof t?(e=t,console.warn("Extension is deprecated as argument for 'download' method, please pass object { name: '...', extension: '...' } as argument")):"object"==typeof t&&null!==t&&(t.name&&(r=t.name),t.extension&&(e=t.extension)),[4,this._getElement(e)];case 1:return(n=a.sent())?("svg"===e.toLowerCase()?(o=new XMLSerializer,i='<?xml version="1.0" standalone="no"?>\r\n'+(i=o.serializeToString(n)),s("data:image/svg+xml;charset=utf-8,"+encodeURIComponent(i),r+".svg")):s(n.toDataURL("image/"+e),r+"."+e),[2]):[2]}}))}))},t}()}},e={};function r(n){if(e[n])return e[n].exports;var o=e[n]={exports:{}};return t[n](o,o.exports,r),o.exports}return r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r(676)})().default}));
5136
5373
 
5137
- },{}]},{},[6])(6)
5374
+ },{}]},{},[7])(7)
5138
5375
  });